diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..77d1a69 --- /dev/null +++ b/.babelrc @@ -0,0 +1,25 @@ +{ + "presets": [ + [ + "@babel/preset-env", + { + "targets": "> 0.25%, not dead", + "useBuiltIns": "usage", + "corejs": "3.18", + } + ] + ], + "exclude": [ + "node_modules/**" + ], + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-syntax-jsx", + [ + "@babel/plugin-transform-react-jsx", + { + "pragma": "MotorCortex.utils.createDOMElement" + } + ] + ] +} diff --git a/.browserlistrc b/.browserlistrc new file mode 100644 index 0000000..5e9641b --- /dev/null +++ b/.browserlistrc @@ -0,0 +1,6 @@ +{ +"browserslist": [ + ">0.2%", + "not ie <= 11" + ] +} \ No newline at end of file diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..4187d67 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +bundle.js \ No newline at end of file diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..30ff6ca --- /dev/null +++ b/.eslintrc @@ -0,0 +1,60 @@ +{ + "parser": "@babel/eslint-parser", + "extends": [ + "eslint:recommended", + "prettier" + ], + "plugins": [ + "babel", + "prettier" + ], + "env": { + "browser": true, + "node": true + }, + "globals": { + "document": false, + "escape": false, + "navigator": false, + "unescape": false, + "window": false, + "describe": true, + "before": true, + "it": true, + "expect": true, + "sinon": true + }, + "rules": { + "prettier/prettier": [ + "error" + ], + "linebreak-style": [ + "error", + "unix" + ], + "semi": [ + "error", + "always" + ], + "no-console": [ + "error", + { + "allow": [ + "warn", + "error", + "info" + ] + } + ], + "prefer-promise-reject-errors": "error", + "prefer-const": [ + "error", + { + "destructuring": "any", + "ignoreReadBeforeAssign": false + } + ], + "no-var": "error", + "no-unused-vars": "error" + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32662e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# Node modules +node_modules +demo/bundle.js +demo/bundle.js.LICENSE.txt + +#Package JSON Lock +package-lock.json + +# Coverage +coverage + +# Output folders +build +compiled +.nyc_output + +# Cachses +.awcache +.rpt2_cache + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +# VSCode +.vscode + +# Cloud9 +.c9revisions +.c9 + +# Intelij +.idea +cmake-build-*/ + +# Sublime text +*.iws +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace + +# OSX +.DS_Store +.AppleDouble +.LSOverride +._* +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Windows +*.lnk +Thumbs.db +ehthumbs.db +ehthumbs_vista.db +$RECYCLE.BIN/ +[Dd]esktop.ini +*.cab +*.msi +*.msix +*.msm +*.msp \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..58be884 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# motorcortex-clip-starter + +## Purpose + +This repository is a starter boilerplate for creating MotorCortex Clips with DCode. Do not use this repo directly. Instead, use it from the **[Donkeyclip CLI](https://github.com/donkeyclip/cli)** + +## Structure and Contents + +It includes: + +- a pre-configured webpack so you don't have to care about setting up your project +- pre-configured eslint and babel +- a "clip" folder in order for you to use to define your Clip and Incidents. The folder + contains the `clip.js` file which is just a starting point for your Clip. +- a "demo" folder that is there just for the needs of viewing, debugging and creating + your Clip through DCode. + +## How to use + +Once you've created your new Clip you have the ability to publish it through the [donkeyclip](https://donkeyclip.com) page. You can then embed your clip in any site you want!. + +## Commands + +- `npm run build`: builds the demo +- `npm start`: builds and starts the demo +- `npm render`: render the demo to mp4 video see [@donkeyclip/video-renderer](https://github.com/donkeyclip/video-renderer) from more + +## Have fun!!! + +## License + +[MIT License](https://opensource.org/licenses/MIT) + +[](https://donkeyclip.com) diff --git a/clip/clip.css b/clip/clip.css new file mode 100644 index 0000000..3e7d147 --- /dev/null +++ b/clip/clip.css @@ -0,0 +1,12 @@ +* { + --color: {{ initParams.color }}; +} + +.container { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + height: 100%; + color: var(--color); +} diff --git a/clip/clip.html b/clip/clip.html new file mode 100644 index 0000000..584204e --- /dev/null +++ b/clip/clip.html @@ -0,0 +1 @@ +
diff --git a/clip/clip.js b/clip/clip.js new file mode 100644 index 0000000..c8bea06 --- /dev/null +++ b/clip/clip.js @@ -0,0 +1,110 @@ +import { HTMLClip, loadPlugin } from "@donkeyclip/motorcortex"; +import html from "./clip.html"; +import css from "!!raw-loader!./clip.css"; +import { initParamsValidationRules, initParams } from "./initParams"; +import threejsDefinition from "@donkeyclip/motorcortex-threejs"; +const threejs = loadPlugin(threejsDefinition); +import { + city, + cityBurn, + scrow, + scrowWalk, + manWalk1, + cameraAnimation1, +} from "./incidents"; + +export const clip = new HTMLClip({ + html, + css, + host: document.getElementById("clip"), + initParamsValidationRules, + initParams: initParams[1].value, + containerParams: { + width: "1920px", + height: "1080px", + }, +}); + +const threeClip = new threejs.Clip( + { + renderers: { + parameters: [], + settings: { + setClearColor: ["#010101"], + }, + }, + scenes: { + fog: ["#010101", 0, 100], + }, + lights: [ + { + type: "HemisphereLight", + parameters: ["#fff", "#fff", 0.1], + }, + ], + cameras: [ + { + id: "camera_1", + type: "PerspectiveCamera", + parameters: [45, 1920 / 1080, 0.01, 1000], + settings: { + position: { x: 85, y: 10, z: 2 }, + far: 10000000, + near: 1, + }, + }, + ], + entities: [ + city, + scrow, + // { + // geometry: { type: "PlaneBufferGeometry", parameters: [200, 200, 1] }, + // material: { + // type: "MeshBasicMaterial", + // parameters: [ + // { + // color: "#010101", + // textureMap: "./assets/snow-texture.jpg", + // }, + // ], + // }, + // settings: { + // position: { set: [0, 0, 0] }, + // rotation: { set: [-Math.PI / 2, 0, 0] }, + // }, + // }, + { + geometry: { type: "SphereBufferGeometry", parameters: [200, 32, 16] }, + material: { + type: "MeshBasicMaterial", + parameters: [ + { + color: "#fff", + textureMap: "./assets/skybox.jpg", + side: "DoubleSide", + }, + ], + }, + settings: { + position: { set: [0, 0, 0] }, + rotation: { set: [0, -Math.PI / 2, 0] }, + }, + }, + ], + controls: { maxDistance: 50000, enable: true, enableEvents: true }, + }, + { + selector: ".container", + containerParams: { + width: "1920px", + height: "1080px", + }, + } +); + +threeClip.addIncident(scrowWalk, 0); +threeClip.addIncident(manWalk1, 0); +threeClip.addIncident(cityBurn, 0); +threeClip.addIncident(cameraAnimation1, 0); +clip.addIncident(threeClip, 0); +window.clip = threeClip; diff --git a/clip/incidents.js b/clip/incidents.js new file mode 100644 index 0000000..b51587f --- /dev/null +++ b/clip/incidents.js @@ -0,0 +1,90 @@ +import { loadPlugin } from "@donkeyclip/motorcortex"; +import threejsDefinition from "@donkeyclip/motorcortex-threejs"; +const threejs = loadPlugin(threejsDefinition); + +export const city = { + id: "city", + model: { + loader: "GLTFLoader", + file: "./assets/city/city.glb", + }, + settings: { + position: { x: 0, y: 0, z: 0 }, + }, +}; +export const scrow = { + id: "scrow", + model: { + loader: "GLTFLoader", + file: "./assets/scrow/scarecrow.glb", + }, + settings: { + position: { x: 0, y: 0, z: -7 }, + }, +}; + +export const scrowWalk = new threejs.MorphAnimation( + { + attrs: { + singleLoopDuration: 1000, + animationName: "Take 001", + }, + animatedAttrs: { + time: 25000, + }, + }, + { + selector: "!#scrow", + duration: 25000, + } +); + +export const cityBurn = new threejs.MorphAnimation( + { + attrs: { + singleLoopDuration: 1500, + animationName: "Default Take", + }, + animatedAttrs: { + time: 25000, + }, + }, + { + selector: "!#city", + duration: 25000, + } +); + +const manWalk = (position) => { + return new threejs.ObjectAnimation( + { + animatedAttrs: { + position, + }, + }, + { + selector: "!#scrow", + duration: 25000, + } + ); +}; +const cameraAnimation = (position) => { + return new threejs.ObjectAnimation( + { + animatedAttrs: { + position, + targetEntity: "!#scrow", + }, + }, + { + selector: "!#camera_1", + duration: 25000, + } + ); +}; +export const manWalk1 = manWalk({ x: -4.42, y: 0.43, z: 22.44 }); +export const cameraAnimation1 = cameraAnimation({ + x: -4.91, + y: 1.69, + z: 31.66, +}); diff --git a/clip/initParams.js b/clip/initParams.js new file mode 100644 index 0000000..70a712e --- /dev/null +++ b/clip/initParams.js @@ -0,0 +1,23 @@ +export const initParamsValidationRules = { + color: { + label: "Text Color", + type: "color", + optional: true, + default: "white", + }, +}; + +export const initParams = [ + { + name: "Default", + value: { + color: "white", + }, + }, + { + name: "Red Color", + value: { + color: "red", + }, + }, +]; diff --git a/demo/assets/anime-character/license.txt b/demo/assets/anime-character/license.txt new file mode 100644 index 0000000..3df9997 --- /dev/null +++ b/demo/assets/anime-character/license.txt @@ -0,0 +1,11 @@ +Model Information: +* title: Claris - Epic Conquest 2 +* source: https://sketchfab.com/3d-models/claris-epic-conquest-2-296b84fba1d8465c857bd3968f06b5a4 +* author: gacogames (https://sketchfab.com/gacogames) + +Model License: +* license type: CC-BY-NC-4.0 (http://creativecommons.org/licenses/by-nc/4.0/) +* requirements: Author must be credited. No commercial use. + +If you use this 3D model in your project be sure to copy paste this credit wherever you share it: +This work is based on "Claris - Epic Conquest 2" (https://sketchfab.com/3d-models/claris-epic-conquest-2-296b84fba1d8465c857bd3968f06b5a4) by gacogames (https://sketchfab.com/gacogames) licensed under CC-BY-NC-4.0 (http://creativecommons.org/licenses/by-nc/4.0/) \ No newline at end of file diff --git a/demo/assets/anime-character/scene.bin b/demo/assets/anime-character/scene.bin new file mode 100644 index 0000000..79e7a84 Binary files /dev/null and b/demo/assets/anime-character/scene.bin differ diff --git a/demo/assets/anime-character/scene.gltf b/demo/assets/anime-character/scene.gltf new file mode 100644 index 0000000..69fe81b --- /dev/null +++ b/demo/assets/anime-character/scene.gltf @@ -0,0 +1,239439 @@ +{ + "accessors": [ + { + "bufferView": 3, + "componentType": 5126, + "count": 2312, + "max": [ + 1.4945383071899414, + 2.5448906421661377, + 0.3330193758010864 + ], + "min": [ + -1.4945383071899414, + -0.013000011444091797, + -0.2559303939342499 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 27744, + "componentType": 5126, + "count": 2312, + "max": [ + 0.9999406337738037, + 0.9997974038124084, + 0.9999481439590454 + ], + "min": [ + -0.9999406337738037, + -0.9994908571243286, + -0.9999685287475586 + ], + "type": "VEC3" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 2312, + "max": [ + 0.9962127804756165, + 0.9920647144317627 + ], + "min": [ + 0.008761048316955566, + 0.00504390150308609 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "componentType": 5125, + "count": 8622, + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 55488, + "componentType": 5126, + "count": 679, + "max": [ + 0.4863439202308655, + 3.251826763153076, + 0.4729648232460022 + ], + "min": [ + -0.4863439202308655, + 1.701393723487854, + -0.6724939346313477 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 63636, + "componentType": 5126, + "count": 679, + "max": [ + 0.9971035718917847, + 0.995833158493042, + 0.9998601078987122 + ], + "min": [ + -0.9988758563995361, + -0.9774584770202637, + -0.9989800453186035 + ], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 18496, + "componentType": 5126, + "count": 679, + "max": [ + 0.966313898563385, + 0.9917339086532593 + ], + "min": [ + 0.013824135065078735, + 0.018414322286844254 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 34488, + "componentType": 5125, + "count": 2343, + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 71784, + "componentType": 5126, + "count": 280, + "max": [ + 0.27429747581481934, + 3.0682549476623535, + 0.25419166684150696 + ], + "min": [ + -0.27429747581481934, + 2.4996118545532227, + -0.23040002584457397 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 75144, + "componentType": 5126, + "count": 280, + "max": [ + 0.99897700548172, + 0.8357652425765991, + 0.9999983906745911 + ], + "min": [ + -0.99897700548172, + -0.9914200901985168, + -0.9836863279342651 + ], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 23928, + "componentType": 5126, + "count": 280, + "max": [ + 0.9609507322311401, + 0.9628455638885498 + ], + "min": [ + 0.026686789467930794, + 0.04836536943912506 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 43860, + "componentType": 5125, + "count": 1038, + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 78504, + "componentType": 5126, + "count": 462, + "max": [ + -0.8920036554336548, + 2.307111978530884, + 2.6741368770599365 + ], + "min": [ + -1.6451724767684937, + 2.2296013832092285, + -0.48251789808273315 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 84048, + "componentType": 5126, + "count": 462, + "max": [ + 0.9997671842575073, + 1.0, + 1.0 + ], + "min": [ + -0.9997671842575073, + -1.0, + -1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 26168, + "componentType": 5126, + "count": 462, + "max": [ + 0.47584736347198486, + 0.9537269473075867 + ], + "min": [ + 0.02410285919904709, + 0.028854940086603165 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 48012, + "componentType": 5125, + "count": 1368, + "type": "SCALAR" + }, + { + "bufferView": 5, + "componentType": 5126, + "count": 52, + "max": [ + 1.0, + 1.0, + 0.1917424350976944, + 0.0, + 0.3743974566459656, + 1.0000001192092896, + 1.0, + 0.0, + 1.0, + 1.0, + 1.0000001192092896, + 0.0, + 1.2504860162734985, + 2.728346347808838, + 2.6458263397216797, + 1.0 + ], + "min": [ + -1.0, + -1.0, + -0.1917424499988556, + 0.0, + -0.19638919830322266, + -1.0, + -1.0, + 0.0, + -1.0, + -1.0, + -1.0, + 0.0, + -1.3072365522384644, + -2.9000000953674316, + -2.442539930343628, + 1.0 + ], + "type": "MAT4" + }, + { + "bufferView": 0, + "componentType": 5123, + "count": 2312, + "type": "VEC4" + }, + { + "bufferView": 4, + "componentType": 5126, + "count": 2312, + "max": [ + 1.0, + 0.5, + 0.3331003189086914, + 0.06561976671218872 + ], + "min": [ + 0.3337993919849396, + 0.0, + 0.0, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 18496, + "componentType": 5123, + "count": 679, + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 36992, + "componentType": 5126, + "count": 679, + "max": [ + 1.0, + 0.5, + 0.25999879837036133, + 0.13106635212898254 + ], + "min": [ + 0.3271152973175049, + 0.0, + 0.0, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 23928, + "componentType": 5123, + "count": 280, + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 47856, + "componentType": 5126, + "count": 280, + "max": [ + 1.0, + 0.19565023481845856, + 0.0, + 0.0 + ], + "min": [ + 0.8043497204780579, + 0.0, + 0.0, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 26168, + "componentType": 5123, + "count": 462, + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 52336, + "componentType": 5126, + "count": 462, + "max": [ + 1.0, + 0.0, + 0.0, + 0.0 + ], + "min": [ + 1.0, + 0.0, + 0.0, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "componentType": 5126, + "count": 81, + "max": [ + 0.030920235440135002, + -0.0797351598739624, + -1.3846598863601685 + ], + "min": [ + 0.030920160934329033, + -0.08483370393514633, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 324, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "componentType": 5126, + "count": 81, + "max": [ + -0.027459783479571342, + 0.010921822860836983, + 0.22766061127185822, + 0.9733113646507263 + ], + "min": [ + -0.03552567958831787, + 0.009035272523760796, + 0.22757799923419952, + 0.9730502963066101 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 648, + "componentType": 5126, + "count": 76, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 972, + "componentType": 5126, + "count": 76, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 952, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1884, + "componentType": 5126, + "count": 80, + "max": [ + 7.450683625620513e-09, + 0.00212740246206522, + 2.384185791015625e-07 + ], + "min": [ + -7.450787542495618e-09, + 0.002127378713339567, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1272, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1296, + "componentType": 5126, + "count": 81, + "max": [ + 0.7071067690849304, + 3.1801707223166886e-07, + -2.9449466865116847e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.996807211275154e-07, + -3.1221364338307467e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2844, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1920, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 3816, + "componentType": 5126, + "count": 81, + "max": [ + 0.17381834983825684, + 0.13409876823425293, + 3.198564968442952e-08 + ], + "min": [ + 0.17381827533245087, + 0.13409793376922607, + 2.4723985081465116e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2244, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 2592, + "componentType": 5126, + "count": 81, + "max": [ + -0.13052892684936523, + 0.007585030514746904, + -0.20721040666103363, + 0.9695424437522888 + ], + "min": [ + -0.23537003993988037, + 0.00368653517216444, + -0.22317147254943848, + 0.9459065794944763 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2568, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 4788, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2892, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 5760, + "componentType": 5126, + "count": 81, + "max": [ + 9.08086690287746e-08, + 0.6356115341186523, + 9.890975860571416e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.635611355304718, + -6.463307045123656e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3216, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 3888, + "componentType": 5126, + "count": 81, + "max": [ + 0.34591808915138245, + 1.777492464327679e-08, + -1.734904131467374e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.1531109339889554e-08, + -6.383465489534501e-08, + 0.9382647275924683 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 3540, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 6732, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999994039535522, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3864, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 7704, + "componentType": 5126, + "count": 81, + "max": [ + -0.17381834983825684, + 0.13409888744354248, + 4.7957779969465264e-08 + ], + "min": [ + -0.1738184094429016, + 0.13409781455993652, + -9.892996422067313e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4188, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 5184, + "componentType": 5126, + "count": 81, + "max": [ + 0.0693177655339241, + -0.23742727935314178, + 0.21133063733577728, + 0.9479077458381653 + ], + "min": [ + -0.013770767487585545, + -0.24528297781944275, + 0.20371590554714203, + 0.945601761341095 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 4512, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 8676, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4836, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 9648, + "componentType": 5126, + "count": 81, + "max": [ + 1.4033184925210662e-07, + 0.6356115937232971, + 3.378714197310728e-08 + ], + "min": [ + -9.808672984945588e-08, + 0.635611355304718, + -3.77583617705568e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5160, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 6480, + "componentType": 5126, + "count": 81, + "max": [ + 0.3436654508113861, + 1.981557318231353e-08, + 2.625792774324509e-07, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + 9.918011967258167e-10, + 1.0449217313635017e-07, + 0.9390921592712402 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 5484, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 10620, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5808, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 11592, + "componentType": 5126, + "count": 81, + "max": [ + 7.450580596923828e-09, + 0.00212740246206522, + 2.3841823804104934e-07 + ], + "min": [ + -1.1175975700439267e-08, + 0.002127379411831498, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6132, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 7776, + "componentType": 5126, + "count": 80, + "max": [ + -0.6495169997215271, + -0.10214788466691971, + 0.05446396395564079, + 0.7514832615852356 + ], + "min": [ + -0.6495170593261719, + -0.10214792937040329, + 0.054463934153318405, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 6452, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 12564, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6776, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 13536, + "componentType": 5126, + "count": 81, + "max": [ + 1.4901162970204496e-08, + 0.2726660966873169, + 1.89757436430682e-08 + ], + "min": [ + -7.450581485102248e-09, + 0.27266550064086914, + -2.375859153858073e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 7100, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 9056, + "componentType": 5126, + "count": 81, + "max": [ + 0.11539002507925034, + 0.05683112144470215, + 0.02510380744934082, + 0.9944412708282471 + ], + "min": [ + 0.08500942587852478, + 0.053063519299030304, + 0.0032920290250331163, + 0.9918964505195618 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7424, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 14508, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 7748, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 15480, + "componentType": 5126, + "count": 81, + "max": [ + 0.044816210865974426, + 0.5170735716819763, + 0.010738103650510311 + ], + "min": [ + 0.044816069304943085, + 0.517072856426239, + 0.010737796314060688 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8072, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 10352, + "componentType": 5126, + "count": 73, + "max": [ + -0.4904356002807617, + -0.49043551087379456, + -0.5093847513198853, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.5093848705291748, + 0.5093848705291748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 8364, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 16452, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 17412, + "componentType": 5126, + "count": 81, + "max": [ + 0.023541152477264404, + 0.23826159536838531, + -0.0913519486784935 + ], + "min": [ + 0.01772337593138218, + 0.23651327192783356, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 11520, + "componentType": 5126, + "count": 81, + "max": [ + -0.5880163908004761, + -0.020786812528967857, + -0.403313010931015, + 0.6283246278762817 + ], + "min": [ + -0.705502986907959, + -0.10908813029527664, + -0.497538685798645, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 9332, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 18384, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9656, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 19356, + "componentType": 5126, + "count": 81, + "max": [ + 2.3724059872165526e-07, + 0.4048615097999573, + 2.6223949589621043e-07 + ], + "min": [ + -1.4931352154690103e-07, + 0.40486103296279907, + 1.579645214633274e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9980, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 12816, + "componentType": 5126, + "count": 81, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.2353183478116989, + 0.8191515207290649 + ], + "min": [ + -0.03989352658390999, + 0.5165404677391052, + -0.2461407333612442, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10304, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 20328, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 10628, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 21300, + "componentType": 5126, + "count": 81, + "max": [ + 1.785893175565434e-07, + 0.4032706022262573, + 7.339086494084768e-08 + ], + "min": [ + -1.1221399631722306e-07, + 0.40327033400535583, + -1.8284522695921623e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 10952, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 14112, + "componentType": 5126, + "count": 81, + "max": [ + -0.11016573756933212, + 0.39465609192848206, + 0.12396225333213806, + 0.9143141508102417 + ], + "min": [ + -0.11170236766338348, + 0.37747761607170105, + 0.09519892930984497, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 11276, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 22272, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 11600, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 23244, + "componentType": 5126, + "count": 81, + "max": [ + 0.09804274141788483, + 0.21963080763816833, + -0.0024724858812987804 + ], + "min": [ + 0.09804238379001617, + 0.21963030099868774, + -0.002472880994901061 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 11924, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 15408, + "componentType": 5126, + "count": 81, + "max": [ + -0.622336745262146, + -0.0009816616075113416, + 0.033664219081401825, + 0.7820248007774353 + ], + "min": [ + -0.6223368644714355, + -0.000981710385531187, + 0.033664166927337646, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 12248, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 24216, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 12572, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 25188, + "componentType": 5126, + "count": 81, + "max": [ + 7.79874440581807e-08, + 0.09750291705131531, + 4.17428680066223e-07 + ], + "min": [ + -4.734664571515168e-08, + 0.0975024402141571, + 2.6847902745430474e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 12896, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 16704, + "componentType": 5126, + "count": 81, + "max": [ + -0.5302280187606812, + 0.002465934259817004, + -0.05339593440294266, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658977054059505, + -0.053395967930555344, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 13220, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 26160, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 13544, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 27132, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226647421717644, + 0.21308626234531403, + -0.0035593367647379637 + ], + "min": [ + -0.01622702181339264, + 0.2130858451128006, + -0.00355965131893754 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 13868, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 18000, + "componentType": 5126, + "count": 81, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273838043213, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 14192, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 28104, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 14516, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 29076, + "componentType": 5126, + "count": 81, + "max": [ + 1.1228281238118143e-07, + 0.0846501961350441, + -2.1770728153569507e-07 + ], + "min": [ + -1.2527819137631013e-07, + 0.0846497192978859, + -3.775219852286682e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 14840, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 19296, + "componentType": 5126, + "count": 81, + "max": [ + -0.5015431642532349, + -0.0011796405306085944, + -0.008244012482464314, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011796909384429455, + -0.008244067430496216, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 15164, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 30048, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 15488, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 31020, + "componentType": 5126, + "count": 81, + "max": [ + 0.11189688742160797, + 0.10988958179950714, + -0.0516311377286911 + ], + "min": [ + 0.11189643293619156, + 0.10988891124725342, + -0.05163155123591423 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 15812, + "componentType": 5126, + "count": 70, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 20592, + "componentType": 5126, + "count": 70, + "max": [ + -0.4573034942150116, + 0.1649329662322998, + -0.31590890884399414, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 16092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 31992, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 16416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 32964, + "componentType": 5126, + "count": 81, + "max": [ + 7.304574012323428e-08, + 0.08512423187494278, + 5.268141478609323e-08 + ], + "min": [ + -1.0486827761724271e-07, + 0.08512363582849503, + -4.0145327062646174e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 16740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 21712, + "componentType": 5126, + "count": 81, + "max": [ + 0.02291056327521801, + 0.012835775502026081, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910505533218384, + 0.012835720553994179, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 17064, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 33936, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 17388, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 34908, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585092585533857, + 0.16604474186897278, + -0.04539324343204498 + ], + "min": [ + 0.005584703292697668, + 0.16604433953762054, + -0.04539373517036438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 17712, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 23008, + "componentType": 5126, + "count": 80, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188210606575, + 0.023865394294261932 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 18032, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 35880, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 18356, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 36852, + "componentType": 5126, + "count": 81, + "max": [ + 5.2154067731180476e-08, + 0.5450077652931213, + 1.1353573370342929e-07 + ], + "min": [ + -5.587936513506975e-08, + 0.545007050037384, + -7.41838732665201e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 18680, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 24288, + "componentType": 5126, + "count": 81, + "max": [ + -0.007215075194835663, + 0.13072367012500763, + -0.04222819581627846, + 0.9904928803443909 + ], + "min": [ + -0.007215131539851427, + 0.13072361052036285, + -0.042228225618600845, + 0.9904928207397461 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 19004, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 37824, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 19328, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 38796, + "componentType": 5126, + "count": 81, + "max": [ + 4.0978193283081055e-08, + 0.11002850532531738, + 5.7742006731587026e-08 + ], + "min": [ + -4.284084553773937e-08, + 0.11002779006958008, + -1.210719347000122e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 19652, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 25584, + "componentType": 5126, + "count": 81, + "max": [ + -0.02598290517926216, + 0.1299000084400177, + -0.04469770938158035, + 0.9901782870292664 + ], + "min": [ + -0.02598300389945507, + 0.12989988923072815, + -0.04469776898622513, + 0.9901782870292664 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 19976, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 39768, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 20300, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 40740, + "componentType": 5126, + "count": 81, + "max": [ + 2.623949058033759e-07, + 0.3614466190338135, + 0.026841305196285248 + ], + "min": [ + 2.3259259762653528e-07, + 0.36144518852233887, + 0.02684115618467331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 20624, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 26880, + "componentType": 5126, + "count": 81, + "max": [ + 7.450580596923828e-09, + -4.3655123960206765e-09, + -1.3969838619232178e-09, + 1.0 + ], + "min": [ + -2.2351738238057806e-08, + -6.4027814161704555e-09, + -3.725290742551124e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 20948, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 41712, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 21272, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 42684, + "componentType": 5126, + "count": 81, + "max": [ + 1.9461273836895998e-07, + -0.1583395004272461, + -0.25376465916633606 + ], + "min": [ + 1.4990922636570758e-07, + -0.1583409309387207, + -0.2537649869918823 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 21596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 28176, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + -2.072461535718162e-09, + -2.2506705477098876e-07, + 0.061296749860048294 + ], + "min": [ + -0.998119592666626, + -4.482017867957211e-09, + -2.290177434360885e-07, + 0.061296720057725906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 21920, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 43656, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.999971866607666 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999715685844421 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 22240, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 44616, + "componentType": 5126, + "count": 81, + "max": [ + 2.235172225084625e-08, + 0.25394749641418457, + 2.1673761807505798e-07 + ], + "min": [ + -1.4901171851988693e-08, + 0.2539469599723816, + -1.5713297329966736e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 22564, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 29472, + "componentType": 5126, + "count": 81, + "max": [ + 0.15613587200641632, + -1.317112889864802e-07, + -2.1253934168186106e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3569355417075712e-07, + -4.861383295917676e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 22888, + "componentType": 5126, + "count": 77, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 45588, + "componentType": 5126, + "count": 77, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000008344650269 + ], + "min": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 23196, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 46512, + "componentType": 5126, + "count": 81, + "max": [ + 2.2351741790771484e-08, + 0.2533194422721863, + 2.1243953085559042e-07 + ], + "min": [ + -1.4901161193847656e-08, + 0.2533189356327057, + -1.6100848654332367e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 23520, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 30768, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231437742710114, + -1.7076215996780775e-08, + -1.8821528779966457e-09, + 0.995729923248291 + ], + "min": [ + -0.09231442958116531, + -2.1335246458420443e-08, + -3.8013250325263925e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 23844, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 47484, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 24168, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 48456, + "componentType": 5126, + "count": 80, + "max": [ + 1.4901170075631853e-08, + 0.2637789249420166, + 1.5059610802836687e-07 + ], + "min": [ + -2.2351732908987287e-08, + 0.2637784481048584, + -5.470110409078188e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 24488, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 32064, + "componentType": 5126, + "count": 81, + "max": [ + 9.480240592552036e-09, + -0.9896631240844727, + 0.1434117704629898, + 8.774608062367406e-08 + ], + "min": [ + 7.10922298807759e-09, + -0.9896631240844727, + 0.14341172575950623, + 8.549945107461099e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 24812, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 49416, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000005960464478, + 1.000001072883606, + 1.0000008344650269 + ], + "min": [ + 1.000000238418579, + 1.0000007152557373, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 25128, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 50364, + "componentType": 5126, + "count": 81, + "max": [ + -3.270838249136432e-07, + 0.24314215779304504, + 0.1870316118001938 + ], + "min": [ + -6.870743050058081e-07, + 0.24314117431640625, + 0.18703106045722961 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 25452, + "componentType": 5126, + "count": 58, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 33360, + "componentType": 5126, + "count": 58, + "max": [ + 0.44783368706703186, + -0.23266471922397614, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 25684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 51336, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999997615814209, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999992251396179, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 26008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 52308, + "componentType": 5126, + "count": 81, + "max": [ + -0.24418959021568298, + -0.1304626315832138, + 0.02965037152171135 + ], + "min": [ + -0.24418994784355164, + -0.13046427071094513, + 0.029650110751390457 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 26332, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 34288, + "componentType": 5126, + "count": 81, + "max": [ + 0.007415748201310635, + -0.0742839127779007, + -0.9923430681228638, + 0.09839731454849243 + ], + "min": [ + 0.007415739819407463, + -0.07428392767906189, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 26656, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 53280, + "componentType": 5126, + "count": 80, + "max": [ + 0.9999982714653015, + 1.0000009536743164, + 0.9999991059303284 + ], + "min": [ + 0.9999978542327881, + 1.0000004768371582, + 0.9999986290931702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 26976, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 54240, + "componentType": 5126, + "count": 81, + "max": [ + 0.24341878294944763, + -0.1304633915424347, + 0.02964998409152031 + ], + "min": [ + 0.24341842532157898, + -0.1304646134376526, + 0.02964976616203785 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 27300, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 35584, + "componentType": 5126, + "count": 78, + "max": [ + 0.0074174171313643456, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417414337396622, + 0.07428368926048279, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 27612, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 55212, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999979138374329, + 1.0000011920928955, + 0.9999988675117493 + ], + "min": [ + 0.9999974370002747, + 1.0000005960464478, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 27936, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 56184, + "componentType": 5126, + "count": 81, + "max": [ + -0.04481608420610428, + 0.5170733332633972, + 0.010738170705735683 + ], + "min": [ + -0.044816210865974426, + 0.5170723795890808, + 0.010737803764641285 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 28260, + "componentType": 5126, + "count": 75, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 36832, + "componentType": 5126, + "count": 75, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555121660232544 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 28560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 57156, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 28884, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 58128, + "componentType": 5126, + "count": 81, + "max": [ + 0.017870359122753143, + 0.23643112182617188, + -0.035273805260658264 + ], + "min": [ + 0.015504196286201477, + 0.23250827193260193, + -0.059702418744564056 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 29208, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 38032, + "componentType": 5126, + "count": 81, + "max": [ + -0.5603393912315369, + 0.5143935084342957, + -0.32813236117362976, + 0.5601324439048767 + ], + "min": [ + -0.5929579734802246, + 0.48461225628852844, + -0.35442695021629333, + 0.5365942120552063 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 29532, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 59100, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 29856, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 60072, + "componentType": 5126, + "count": 81, + "max": [ + 1.0088865565194283e-07, + 0.4048615097999573, + 2.206382703207055e-07 + ], + "min": [ + -7.640377219786387e-08, + 0.40486103296279907, + 1.9129417694330186e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 30180, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 39328, + "componentType": 5126, + "count": 81, + "max": [ + -0.07451161742210388, + 0.4991835951805115, + 0.006814117077738047, + 0.9055825471878052 + ], + "min": [ + -0.22664542496204376, + 0.35847675800323486, + -0.05700935795903206, + 0.8614022135734558 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 30504, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 61044, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 30828, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 62016, + "componentType": 5126, + "count": 81, + "max": [ + 3.370670142999188e-08, + 0.4032707214355469, + 2.886703853732797e-08 + ], + "min": [ + -6.771097815772009e-08, + 0.40327024459838867, + -1.6947551273460704e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 31152, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 40624, + "componentType": 5126, + "count": 81, + "max": [ + 0.034998148679733276, + 0.21462596952915192, + 0.04945632442831993, + 0.9994465708732605 + ], + "min": [ + 0.023212525993585587, + 0.004205347504466772, + -0.023572074249386787, + 0.974815309047699 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 31476, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 62988, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 31800, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 63960, + "componentType": 5126, + "count": 81, + "max": [ + -0.09804247319698334, + 0.2196308821439743, + -0.0024725671391934156 + ], + "min": [ + -0.09804262965917587, + 0.21963034570217133, + -0.0024728563148528337 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 32124, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 41920, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488483786583, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 32448, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 64932, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 32768, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 65892, + "componentType": 5126, + "count": 81, + "max": [ + 7.439138016707147e-08, + 0.09750267118215561, + 4.865466394221585e-07 + ], + "min": [ + -7.58289857571981e-08, + 0.09750252217054367, + 2.3784205893662147e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 33092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 43216, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731831960380077, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.0627320259809494, + 0.009731789119541645, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 33416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 66864, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 33740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 67836, + "componentType": 5126, + "count": 81, + "max": [ + 0.016226869076490402, + 0.21308641135692596, + -0.0035593665670603514 + ], + "min": [ + 0.016226710751652718, + 0.2130858153104782, + -0.003559621050953865 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 34064, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 44512, + "componentType": 5126, + "count": 81, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 34388, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 68808, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 34712, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 69780, + "componentType": 5126, + "count": 81, + "max": [ + 7.191531636863147e-08, + 0.08465000987052917, + -1.281305088696172e-07 + ], + "min": [ + -4.969155753542509e-08, + 0.08464986085891724, + -3.839697626517591e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 35036, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 45808, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.0020274559501558542, + 0.008077428676187992, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274114795029163, + 0.008077390491962433, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 35360, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 70752, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 35684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 71724, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189650744199753, + 0.10988955944776535, + -0.05163107439875603 + ], + "min": [ + -0.11189687997102737, + 0.10988911986351013, + -0.05163150653243065 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 36008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 47104, + "componentType": 5126, + "count": 81, + "max": [ + -0.432245671749115, + -0.12903620302677155, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.12903635203838348, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 36332, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 72696, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 36652, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 73656, + "componentType": 5126, + "count": 80, + "max": [ + 6.303172028765403e-08, + 0.08512397855520248, + 1.1262730481576e-07 + ], + "min": [ + -9.43563378541512e-08, + 0.08512379974126816, + -1.284890061015176e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 36972, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 48400, + "componentType": 5126, + "count": 81, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 37296, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 74616, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 37620, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 75588, + "componentType": 5126, + "count": 81, + "max": [ + -0.00558473402634263, + 0.1660449057817459, + -0.04539339616894722 + ], + "min": [ + -0.00558499526232481, + 0.1660442054271698, + -0.04539356380701065 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 37944, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 49696, + "componentType": 5126, + "count": 81, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350191190838814, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350188955664635, + 0.02386537194252014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 38268, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 76560, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 38592, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 77532, + "componentType": 5126, + "count": 81, + "max": [ + 0.13640330731868744, + 0.2850474715232849, + 0.0019399170996621251 + ], + "min": [ + 0.13640320301055908, + 0.28504687547683716, + 0.0019395551644265652 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 38916, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 50992, + "componentType": 5126, + "count": 81, + "max": [ + -5.87466821855287e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.5604283021275478e-07 + ], + "min": [ + -1.0482182233317872e-07, + -0.693580687046051, + -0.7203789949417114, + 1.2282605155178317e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 39240, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 78504, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 39560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 79464, + "componentType": 5126, + "count": 81, + "max": [ + -0.13640320301055908, + 0.28504759073257446, + 0.0019399863667786121 + ], + "min": [ + -0.13640330731868744, + 0.2850469946861267, + 0.0019396244315430522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 39884, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 52288, + "componentType": 5126, + "count": 81, + "max": [ + -5.579396855637242e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.671187773894417e-08 + ], + "min": [ + -9.879737916662634e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.982732721397042e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 40208, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 80436, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 40528, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 81396, + "componentType": 5126, + "count": 81, + "max": [ + 2.0429491996765137e-05, + -1.0246051829199132e-07, + -2.0260310407138604e-07 + ], + "min": [ + 2.8312206268310547e-07, + -1.0987892892444506e-05, + -4.395814903546125e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 40852, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 82368, + "componentType": 5126, + "count": 80, + "max": [ + 1.1920928955078125e-07, + 0.28249993920326233, + 5.08360429307686e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.282499760389328, + -3.229202150123456e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41172, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 83328, + "componentType": 5126, + "count": 81, + "max": [ + -8.791685104370117e-07, + 1.148273531725863e-05, + -1.4795447214055457e-06 + ], + "min": [ + -2.346932888031006e-05, + 4.102334116851125e-07, + -4.052236909046769e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41496, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 84300, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920928955078125e-07, + 0.28249990940093994, + 2.5912216372603325e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.2824997901916504, + -1.568831109466373e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41820, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85272, + "componentType": 5126, + "count": 1, + "max": [ + -1.7798922726797173e-06, + -0.007859840989112854, + -1.6112432479858398 + ], + "min": [ + -1.7798922726797173e-06, + -0.007859840989112854, + -1.6112432479858398 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41824, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53584, + "componentType": 5126, + "count": 1, + "max": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "min": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41828, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53600, + "componentType": 5126, + "count": 1, + "max": [ + 0.008914555422961712, + -2.1801051630632173e-08, + -6.227720117379931e-09, + 0.9999603033065796 + ], + "min": [ + 0.008914555422961712, + -2.1801051630632173e-08, + -6.227720117379931e-09, + 0.9999603033065796 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41832, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53616, + "componentType": 5126, + "count": 1, + "max": [ + 0.05147712305188179, + -1.3779739502228772e-11, + -2.250926112168372e-09, + 0.998674213886261 + ], + "min": [ + 0.05147712305188179, + -1.3779739502228772e-11, + -2.250926112168372e-09, + 0.998674213886261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41836, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53632, + "componentType": 5126, + "count": 1, + "max": [ + 0.008914555422961712, + -2.180410874075278e-08, + -5.883473264134409e-09, + 0.9999603033065796 + ], + "min": [ + 0.008914555422961712, + -2.180410874075278e-08, + -5.883473264134409e-09, + 0.9999603033065796 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41840, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53648, + "componentType": 5126, + "count": 1, + "max": [ + 0.05147712305188179, + -1.3164825132805369e-11, + 2.1806819461289706e-08, + 0.998674213886261 + ], + "min": [ + 0.05147712305188179, + -1.3164825132805369e-11, + 2.1806819461289706e-08, + 0.998674213886261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41844, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53664, + "componentType": 5126, + "count": 1, + "max": [ + -0.7076997756958008, + 2.2185388104389858e-07, + 3.908876067271194e-07, + 0.7065133452415466 + ], + "min": [ + -0.7076997756958008, + 2.2185388104389858e-07, + 3.908876067271194e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41848, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53680, + "componentType": 5126, + "count": 1, + "max": [ + -0.018110565841197968, + 4.45522702063883e-10, + 4.7621937504516154e-09, + 0.9998360276222229 + ], + "min": [ + -0.018110565841197968, + 4.45522702063883e-10, + 4.7621937504516154e-09, + 0.9998360276222229 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41852, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85284, + "componentType": 5126, + "count": 1, + "max": [ + -7.279356672995618e-09, + 0.23812519013881683, + -0.07664728164672852 + ], + "min": [ + -7.279356672995618e-09, + 0.23812519013881683, + -0.07664728164672852 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41856, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53696, + "componentType": 5126, + "count": 1, + "max": [ + 0.004500929266214371, + -1.2479351596539345e-07, + -1.366630364429966e-08, + 0.9999898672103882 + ], + "min": [ + 0.004500929266214371, + -1.2479351596539345e-07, + -1.366630364429966e-08, + 0.9999898672103882 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41860, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53712, + "componentType": 5126, + "count": 1, + "max": [ + -0.007783614564687014, + -0.009917165152728558, + -0.06778709590435028, + 0.997620165348053 + ], + "min": [ + -0.007783614564687014, + -0.009917165152728558, + -0.06778709590435028, + 0.997620165348053 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41864, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53728, + "componentType": 5126, + "count": 1, + "max": [ + 0.04346289485692978, + 0.0037713516503572464, + -0.050706151872873306, + 0.9977603554725647 + ], + "min": [ + 0.04346289485692978, + 0.0037713516503572464, + -0.050706151872873306, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41868, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53744, + "componentType": 5126, + "count": 1, + "max": [ + -0.07486837357282639, + 0.04316416382789612, + 0.05985839292407036, + 0.9944589734077454 + ], + "min": [ + -0.07486837357282639, + 0.04316416382789612, + 0.05985839292407036, + 0.9944589734077454 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41872, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53760, + "componentType": 5126, + "count": 1, + "max": [ + 0.0374150425195694, + -0.006611219607293606, + -0.011429760605096817, + 0.9992126226425171 + ], + "min": [ + 0.0374150425195694, + -0.006611219607293606, + -0.011429760605096817, + 0.9992126226425171 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41876, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53776, + "componentType": 5126, + "count": 1, + "max": [ + -0.08286043256521225, + -0.016650792211294174, + 0.10185594856739044, + 0.9912024736404419 + ], + "min": [ + -0.08286043256521225, + -0.016650792211294174, + 0.10185594856739044, + 0.9912024736404419 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41880, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53792, + "componentType": 5126, + "count": 1, + "max": [ + 0.07249855250120163, + -0.005616058595478535, + -0.006149403750896454, + 0.9973337650299072 + ], + "min": [ + 0.07249855250120163, + -0.005616058595478535, + -0.006149403750896454, + 0.9973337650299072 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41884, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53808, + "componentType": 5126, + "count": 1, + "max": [ + -0.20384040474891663, + 0.048187725245952606, + -0.37991443276405334, + 0.9009950757026672 + ], + "min": [ + -0.20384040474891663, + 0.048187725245952606, + -0.37991443276405334, + 0.9009950757026672 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41888, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53824, + "componentType": 5126, + "count": 1, + "max": [ + 0.008094356395304203, + 0.024982623755931854, + 0.02306516282260418, + 0.9993889927864075 + ], + "min": [ + 0.008094356395304203, + 0.024982623755931854, + 0.02306516282260418, + 0.9993889927864075 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41892, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53840, + "componentType": 5126, + "count": 1, + "max": [ + 0.01894928514957428, + 1.186950981946211e-07, + -2.75173372976667e-09, + 0.9998204708099365 + ], + "min": [ + 0.01894928514957428, + 1.186950981946211e-07, + -2.75173372976667e-09, + 0.9998204708099365 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41896, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53856, + "componentType": 5126, + "count": 1, + "max": [ + 6.661298972477129e-16, + 1.1920922560193503e-07, + 4.4408640405342484e-16, + 1.0 + ], + "min": [ + 6.661298972477129e-16, + 1.1920922560193503e-07, + 4.4408640405342484e-16, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41900, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85296, + "componentType": 5126, + "count": 1, + "max": [ + -5.825987248186948e-09, + 0.3614470958709717, + 0.026841185986995697 + ], + "min": [ + -5.825987248186948e-09, + 0.3614470958709717, + 0.026841185986995697 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41904, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85308, + "componentType": 5126, + "count": 1, + "max": [ + 6.050230183518579e-08, + -0.1583423614501953, + -0.2537649869918823 + ], + "min": [ + 6.050230183518579e-08, + -0.1583423614501953, + -0.2537649869918823 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41908, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85320, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41912, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85332, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41916, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85344, + "componentType": 5126, + "count": 1, + "max": [ + 2.2316565662094945e-07, + 0.24314254522323608, + 0.18703238666057587 + ], + "min": [ + 2.2316565662094945e-07, + 0.24314254522323608, + 0.18703238666057587 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41920, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85356, + "componentType": 5126, + "count": 1, + "max": [ + -0.24418975412845612, + -0.1304636001586914, + 0.029650168493390083 + ], + "min": [ + -0.24418975412845612, + -0.1304636001586914, + 0.029650168493390083 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41924, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85368, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999966025352478, + 0.9999998211860657, + 0.9999979734420776 + ], + "min": [ + 0.9999966025352478, + 0.9999998211860657, + 0.9999979734420776 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41928, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85380, + "componentType": 5126, + "count": 1, + "max": [ + 0.24341879785060883, + -0.1304636001586914, + 0.029650254175066948 + ], + "min": [ + 0.24341879785060883, + -0.1304636001586914, + 0.029650254175066948 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41932, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85392, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999969601631165, + 0.9999999403953552, + 0.9999983906745911 + ], + "min": [ + 0.9999969601631165, + 0.9999999403953552, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41936, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53872, + "componentType": 5126, + "count": 1, + "max": [ + -0.49043551087379456, + 0.4904356300830841, + 0.5093849897384644, + 0.50938481092453 + ], + "min": [ + -0.49043551087379456, + 0.4904356300830841, + 0.5093849897384644, + 0.50938481092453 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41940, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85404, + "componentType": 5126, + "count": 1, + "max": [ + 8.857036881693148e-09, + 0.23812519013881683, + -0.07664728164672852 + ], + "min": [ + 8.857036881693148e-09, + 0.23812519013881683, + -0.07664728164672852 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41944, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53888, + "componentType": 5126, + "count": 1, + "max": [ + 0.004500929266214371, + 1.303458248003153e-07, + 5.7388453988949095e-09, + 0.9999898672103882 + ], + "min": [ + 0.004500929266214371, + 1.303458248003153e-07, + 5.7388453988949095e-09, + 0.9999898672103882 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41948, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53904, + "componentType": 5126, + "count": 1, + "max": [ + -0.007783612702041864, + 0.009917165152728558, + 0.06778709590435028, + 0.997620165348053 + ], + "min": [ + -0.007783612702041864, + 0.009917165152728558, + 0.06778709590435028, + 0.997620165348053 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41952, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53920, + "componentType": 5126, + "count": 1, + "max": [ + 0.04346289485692978, + -0.0037713509518653154, + 0.050706151872873306, + 0.9977603554725647 + ], + "min": [ + 0.04346289485692978, + -0.0037713509518653154, + 0.050706151872873306, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41956, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53936, + "componentType": 5126, + "count": 1, + "max": [ + -0.07486838847398758, + -0.04316418617963791, + -0.059858404099941254, + 0.9944589138031006 + ], + "min": [ + -0.07486838847398758, + -0.04316418617963791, + -0.059858404099941254, + 0.9944589138031006 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41960, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53952, + "componentType": 5126, + "count": 1, + "max": [ + 0.037415046244859695, + 0.006611238233745098, + 0.011429774574935436, + 0.9992126226425171 + ], + "min": [ + 0.037415046244859695, + 0.006611238233745098, + 0.011429774574935436, + 0.9992126226425171 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41964, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53968, + "componentType": 5126, + "count": 1, + "max": [ + -0.08286044746637344, + 0.016650788486003876, + -0.10185594856739044, + 0.9912024736404419 + ], + "min": [ + -0.08286044746637344, + 0.016650788486003876, + -0.10185594856739044, + 0.9912024736404419 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41968, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 53984, + "componentType": 5126, + "count": 1, + "max": [ + 0.07249855995178223, + 0.0056160567328333855, + 0.006149400025606155, + 0.9973337650299072 + ], + "min": [ + 0.07249855995178223, + 0.0056160567328333855, + 0.006149400025606155, + 0.9973337650299072 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41972, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54000, + "componentType": 5126, + "count": 1, + "max": [ + -0.20384040474891663, + -0.04818771034479141, + 0.3799144923686981, + 0.9009950160980225 + ], + "min": [ + -0.20384040474891663, + -0.04818771034479141, + 0.3799144923686981, + 0.9009950160980225 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41976, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54016, + "componentType": 5126, + "count": 1, + "max": [ + 0.00809431355446577, + -0.024982627481222153, + -0.023065345361828804, + 0.9993889927864075 + ], + "min": [ + 0.00809431355446577, + -0.024982627481222153, + -0.023065345361828804, + 0.9993889927864075 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41980, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85416, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "min": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41984, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85428, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381805181503296, + -0.08968925476074219, + -0.24350830912590027 + ], + "min": [ + 0.17381805181503296, + -0.08968925476074219, + -0.24350830912590027 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41988, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54032, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41992, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85440, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41996, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85452, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381858825683594, + -0.08968925476074219, + -0.24350792169570923 + ], + "min": [ + -0.17381858825683594, + -0.08968925476074219, + -0.24350792169570923 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42000, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54048, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42004, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85464, + "componentType": 5126, + "count": 1, + "max": [ + 2.9802322387695313e-08, + 6.456838264057296e-08, + -2.2703723345784965e-07 + ], + "min": [ + 2.9802322387695313e-08, + 6.456838264057296e-08, + -2.2703723345784965e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42008, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85476, + "componentType": 5126, + "count": 1, + "max": [ + 0.02585381455719471, + -0.11239229142665863, + -1.595173954963684 + ], + "min": [ + 0.02585381455719471, + -0.11239229142665863, + -1.595173954963684 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42012, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54064, + "componentType": 5126, + "count": 1, + "max": [ + -0.03757026791572571, + -0.01614704728126526, + 0.08386404067277908, + 0.9956377744674683 + ], + "min": [ + -0.03757026791572571, + -0.01614704728126526, + 0.08386404067277908, + 0.9956377744674683 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42016, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54080, + "componentType": 5126, + "count": 1, + "max": [ + 0.0754677951335907, + -0.19598060846328735, + -0.10507411509752274, + 0.9720368981361389 + ], + "min": [ + 0.0754677951335907, + -0.19598060846328735, + -0.10507411509752274, + 0.9720368981361389 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42020, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54096, + "componentType": 5126, + "count": 1, + "max": [ + 0.02953692525625229, + 2.25114016316752e-09, + 9.05701291742389e-09, + 0.9995636940002441 + ], + "min": [ + 0.02953692525625229, + 2.25114016316752e-09, + 9.05701291742389e-09, + 0.9995636940002441 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42024, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54112, + "componentType": 5126, + "count": 1, + "max": [ + 0.1275406926870346, + -0.09525386244058609, + 0.018605364486575127, + 0.9870734214782715 + ], + "min": [ + 0.1275406926870346, + -0.09525386244058609, + 0.018605364486575127, + 0.9870734214782715 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42028, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54128, + "componentType": 5126, + "count": 1, + "max": [ + 0.0025915964506566525, + 8.815210228441117e-10, + -1.173137054166773e-08, + 0.9999966621398926 + ], + "min": [ + 0.0025915964506566525, + 8.815210228441117e-10, + -1.173137054166773e-08, + 0.9999966621398926 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42032, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54144, + "componentType": 5126, + "count": 1, + "max": [ + -0.7076997756958008, + 2.2469200189334515e-07, + 3.8870376783961547e-07, + 0.7065133452415466 + ], + "min": [ + -0.7076997756958008, + 2.2469200189334515e-07, + 3.8870376783961547e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42036, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54160, + "componentType": 5126, + "count": 1, + "max": [ + -0.04389650747179985, + -0.0003346396842971444, + -3.7017616705270484e-05, + 0.9990360140800476 + ], + "min": [ + -0.04389650747179985, + -0.0003346396842971444, + -3.7017616705270484e-05, + 0.9990360140800476 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42040, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85488, + "componentType": 5126, + "count": 1, + "max": [ + -1.691540241210987e-09, + 0.23812519013881683, + -0.07664680480957031 + ], + "min": [ + -1.691540241210987e-09, + 0.23812519013881683, + -0.07664680480957031 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42044, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54176, + "componentType": 5126, + "count": 1, + "max": [ + -0.6008332371711731, + 0.08056044578552246, + 0.14490611851215363, + 0.7819920182228088 + ], + "min": [ + -0.6008332371711731, + 0.08056044578552246, + 0.14490611851215363, + 0.7819920182228088 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42048, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54192, + "componentType": 5126, + "count": 1, + "max": [ + -0.007783610839396715, + -0.009917167015373707, + -0.06778708100318909, + 0.997620165348053 + ], + "min": [ + -0.007783610839396715, + -0.009917167015373707, + -0.06778708100318909, + 0.997620165348053 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42052, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54208, + "componentType": 5126, + "count": 1, + "max": [ + -0.12403074651956558, + 0.019416343420743942, + -0.10705237090587616, + 0.9862957000732422 + ], + "min": [ + -0.12403074651956558, + 0.019416343420743942, + -0.10705237090587616, + 0.9862957000732422 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42056, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54224, + "componentType": 5126, + "count": 1, + "max": [ + -0.693438708782196, + 0.06566399335861206, + 0.005987249314785004, + 0.7174923419952393 + ], + "min": [ + -0.693438708782196, + 0.06566399335861206, + 0.005987249314785004, + 0.7174923419952393 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42060, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54240, + "componentType": 5126, + "count": 1, + "max": [ + -0.6016789674758911, + 0.07979518175125122, + -0.07210475951433182, + 0.7914645075798035 + ], + "min": [ + -0.6016789674758911, + 0.07979518175125122, + -0.07210475951433182, + 0.7914645075798035 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42064, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54256, + "componentType": 5126, + "count": 1, + "max": [ + -0.6905080676078796, + -0.0027877476532012224, + 0.062682144343853, + 0.7205982208251953 + ], + "min": [ + -0.6905080676078796, + -0.0027877476532012224, + 0.062682144343853, + 0.7205982208251953 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42068, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54272, + "componentType": 5126, + "count": 1, + "max": [ + -0.5654464960098267, + 0.07364371418952942, + -0.0028958849143236876, + 0.8214855790138245 + ], + "min": [ + -0.5654464960098267, + 0.07364371418952942, + -0.0028958849143236876, + 0.8214855790138245 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42072, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54288, + "componentType": 5126, + "count": 1, + "max": [ + -0.30924534797668457, + 0.00774196395650506, + -0.3147730529308319, + 0.8973434567451477 + ], + "min": [ + -0.30924534797668457, + 0.00774196395650506, + -0.3147730529308319, + 0.8973434567451477 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42076, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54304, + "componentType": 5126, + "count": 1, + "max": [ + -0.36635899543762207, + -0.07056263089179993, + 0.5832507014274597, + 0.7215405106544495 + ], + "min": [ + -0.36635899543762207, + -0.07056263089179993, + 0.5832507014274597, + 0.7215405106544495 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42080, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54320, + "componentType": 5126, + "count": 1, + "max": [ + 0.07222648710012436, + 1.1075682948558097e-07, + -1.0619594981164937e-08, + 0.9973882436752319 + ], + "min": [ + 0.07222648710012436, + 1.1075682948558097e-07, + -1.0619594981164937e-08, + 0.9973882436752319 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42084, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54336, + "componentType": 5126, + "count": 1, + "max": [ + 0.04247473552823067, + 0.31936055421829224, + 0.010932374745607376, + 0.9466177821159363 + ], + "min": [ + 0.04247473552823067, + 0.31936055421829224, + 0.010932374745607376, + 0.9466177821159363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42088, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85500, + "componentType": 5126, + "count": 1, + "max": [ + -3.562831096814989e-08, + 0.3614468574523926, + 0.026841215789318085 + ], + "min": [ + -3.562831096814989e-08, + 0.3614468574523926, + 0.026841215789318085 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42092, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85512, + "componentType": 5126, + "count": 1, + "max": [ + 4.560108379791927e-08, + -0.1583423763513565, + -0.2537648677825928 + ], + "min": [ + 4.560108379791927e-08, + -0.1583423763513565, + -0.2537648677825928 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42096, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85524, + "componentType": 5126, + "count": 1, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42100, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85536, + "componentType": 5126, + "count": 1, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42104, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85548, + "componentType": 5126, + "count": 1, + "max": [ + -1.4311206086858874e-07, + 0.2431422621011734, + 0.18703235685825348 + ], + "min": [ + -1.4311206086858874e-07, + 0.2431422621011734, + 0.18703235685825348 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42108, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85560, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999968409538269, + 0.9999999403953552, + 0.9999979734420776 + ], + "min": [ + 0.9999968409538269, + 0.9999999403953552, + 0.9999979734420776 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42112, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85572, + "componentType": 5126, + "count": 1, + "max": [ + 0.24341873824596405, + -0.13046382367610931, + 0.029650289565324783 + ], + "min": [ + 0.24341873824596405, + -0.13046382367610931, + 0.029650289565324783 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42116, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85584, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999969601631165, + 1.0000001192092896, + 0.9999983906745911 + ], + "min": [ + 0.9999969601631165, + 1.0000001192092896, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42120, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54352, + "componentType": 5126, + "count": 1, + "max": [ + -0.5312724113464355, + 0.44651833176612854, + 0.45431408286094666, + 0.5585424900054932 + ], + "min": [ + -0.5312724113464355, + 0.44651833176612854, + 0.45431408286094666, + 0.5585424900054932 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42124, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85596, + "componentType": 5126, + "count": 1, + "max": [ + -3.3983678093818526e-08, + 0.23812519013881683, + -0.07664680480957031 + ], + "min": [ + -3.3983678093818526e-08, + 0.23812519013881683, + -0.07664680480957031 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42128, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54368, + "componentType": 5126, + "count": 1, + "max": [ + -0.682091474533081, + -0.44322240352630615, + 0.1788683533668518, + 0.5534538626670837 + ], + "min": [ + -0.682091474533081, + -0.44322240352630615, + 0.1788683533668518, + 0.5534538626670837 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42132, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54384, + "componentType": 5126, + "count": 1, + "max": [ + 0.6640188097953796, + 0.09902379661798477, + 0.43549302220344543, + 0.5996825695037842 + ], + "min": [ + 0.6640188097953796, + 0.09902379661798477, + 0.43549302220344543, + 0.5996825695037842 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42136, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54400, + "componentType": 5126, + "count": 1, + "max": [ + -0.0636875182390213, + 0.7806095480918884, + 0.19802424311637878, + 0.5893886685371399 + ], + "min": [ + -0.0636875182390213, + 0.7806095480918884, + 0.19802424311637878, + 0.5893886685371399 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42140, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54416, + "componentType": 5126, + "count": 1, + "max": [ + -0.6934385299682617, + -0.06566403061151505, + -0.005987245123833418, + 0.717492401599884 + ], + "min": [ + -0.6934385299682617, + -0.06566403061151505, + -0.005987245123833418, + 0.717492401599884 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42144, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54432, + "componentType": 5126, + "count": 1, + "max": [ + -0.6016789078712463, + -0.07979520410299301, + 0.0721048042178154, + 0.7914645671844482 + ], + "min": [ + -0.6016789078712463, + -0.07979520410299301, + 0.0721048042178154, + 0.7914645671844482 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42148, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54448, + "componentType": 5126, + "count": 1, + "max": [ + -0.6905081272125244, + 0.0027877893298864365, + -0.06268211454153061, + 0.7205981612205505 + ], + "min": [ + -0.6905081272125244, + 0.0027877893298864365, + -0.06268211454153061, + 0.7205981612205505 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42152, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54464, + "componentType": 5126, + "count": 1, + "max": [ + -0.5654464960098267, + -0.07364372164011002, + 0.002895875833928585, + 0.8214855790138245 + ], + "min": [ + -0.5654464960098267, + -0.07364372164011002, + 0.002895875833928585, + 0.8214855790138245 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42156, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54480, + "componentType": 5126, + "count": 1, + "max": [ + -0.3092453181743622, + -0.007741968147456646, + 0.3147731125354767, + 0.8973434567451477 + ], + "min": [ + -0.3092453181743622, + -0.007741968147456646, + 0.3147731125354767, + 0.8973434567451477 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42160, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54496, + "componentType": 5126, + "count": 1, + "max": [ + -0.36635902523994446, + 0.07056259363889694, + -0.5832507610321045, + 0.7215404510498047 + ], + "min": [ + -0.36635902523994446, + 0.07056259363889694, + -0.5832507610321045, + 0.7215404510498047 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42164, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85608, + "componentType": 5126, + "count": 1, + "max": [ + -0.7984924912452698, + 0.09894980490207672, + -0.5347265601158142 + ], + "min": [ + -0.7984924912452698, + 0.09894980490207672, + -0.5347265601158142 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42168, + "componentType": 5126, + "count": 2, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54512, + "componentType": 5126, + "count": 2, + "max": [ + 0.6781771183013916, + 0.327921986579895, + -0.5719456672668457, + 0.32468634843826294 + ], + "min": [ + 0.6781771183013916, + 0.327921986579895, + -0.5719456672668457, + 0.32468631863594055 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42176, + "componentType": 5126, + "count": 2, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85620, + "componentType": 5126, + "count": 2, + "max": [ + 0.9999999403953552, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42184, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85644, + "componentType": 5126, + "count": 1, + "max": [ + 0.44101518392562866, + 0.45546749234199524, + -0.7924572229385376 + ], + "min": [ + 0.44101518392562866, + 0.45546749234199524, + -0.7924572229385376 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42188, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85656, + "componentType": 5126, + "count": 1, + "max": [ + 0.3887481689453125, + -0.21188753843307495, + -0.24350854754447937 + ], + "min": [ + 0.3887481689453125, + -0.21188753843307495, + -0.24350854754447937 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42192, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54544, + "componentType": 5126, + "count": 1, + "max": [ + 0.9697481393814087, + -0.24410764873027802, + -5.356259293876064e-07, + 1.348292215652691e-07 + ], + "min": [ + 0.9697481393814087, + -0.24410764873027802, + -5.356259293876064e-07, + 1.348292215652691e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42196, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85668, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42200, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85680, + "componentType": 5126, + "count": 1, + "max": [ + -0.22099357843399048, + -0.3631075620651245, + -0.24350787699222565 + ], + "min": [ + -0.22099357843399048, + -0.3631075620651245, + -0.24350787699222565 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42204, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54560, + "componentType": 5126, + "count": 1, + "max": [ + -0.9569471478462219, + -0.2902621626853943, + 5.285555175760237e-07, + 1.6032197436288698e-07 + ], + "min": [ + -0.9569471478462219, + -0.2902621626853943, + 5.285555175760237e-07, + 1.6032197436288698e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42208, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85692, + "componentType": 5126, + "count": 1, + "max": [ + 0.0012933462858200073, + -0.0010692949872463942, + 0.008398951962590218 + ], + "min": [ + 0.0012933462858200073, + -0.0010692949872463942, + 0.008398951962590218 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42212, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85704, + "componentType": 5126, + "count": 1, + "max": [ + 0.02585381455719471, + -0.11239229142665863, + -1.595173954963684 + ], + "min": [ + 0.02585381455719471, + -0.11239229142665863, + -1.595173954963684 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42216, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54576, + "componentType": 5126, + "count": 1, + "max": [ + -0.03757026791572571, + -0.01614704728126526, + 0.08386404067277908, + 0.9956377744674683 + ], + "min": [ + -0.03757026791572571, + -0.01614704728126526, + 0.08386404067277908, + 0.9956377744674683 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42220, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54592, + "componentType": 5126, + "count": 1, + "max": [ + 0.07546856999397278, + -0.1959807127714157, + -0.1050739586353302, + 0.9720368385314941 + ], + "min": [ + 0.07546856999397278, + -0.1959807127714157, + -0.1050739586353302, + 0.9720368385314941 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42224, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54608, + "componentType": 5126, + "count": 1, + "max": [ + 0.02953529544174671, + -1.0116258053471938e-08, + 4.688396781915571e-09, + 0.9995637536048889 + ], + "min": [ + 0.02953529544174671, + -1.0116258053471938e-08, + 4.688396781915571e-09, + 0.9995637536048889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42228, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54624, + "componentType": 5126, + "count": 1, + "max": [ + 0.1275406926870346, + -0.09525386244058609, + 0.018605364486575127, + 0.9870734214782715 + ], + "min": [ + 0.1275406926870346, + -0.09525386244058609, + 0.018605364486575127, + 0.9870734214782715 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42232, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54640, + "componentType": 5126, + "count": 1, + "max": [ + 0.0025915964506566525, + 4.229530059518538e-09, + -8.757775837864301e-09, + 0.9999966621398926 + ], + "min": [ + 0.0025915964506566525, + 4.229530059518538e-09, + -8.757775837864301e-09, + 0.9999966621398926 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42236, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54656, + "componentType": 5126, + "count": 1, + "max": [ + -0.7076997756958008, + 2.273651205086935e-07, + 3.8602621543759597e-07, + 0.7065133452415466 + ], + "min": [ + -0.7076997756958008, + 2.273651205086935e-07, + 3.8602621543759597e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42240, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54672, + "componentType": 5126, + "count": 1, + "max": [ + -0.04389650374650955, + -0.0003346396260894835, + -3.701575406012125e-05, + 0.9990360140800476 + ], + "min": [ + -0.04389650374650955, + -0.0003346396260894835, + -3.701575406012125e-05, + 0.9990360140800476 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42244, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85716, + "componentType": 5126, + "count": 1, + "max": [ + 2.0660202437738917e-08, + 0.2381252497434616, + -0.07664680480957031 + ], + "min": [ + 2.0660202437738917e-08, + 0.2381252497434616, + -0.07664680480957031 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42248, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54688, + "componentType": 5126, + "count": 1, + "max": [ + -0.6008332967758179, + 0.08056044578552246, + 0.1449061781167984, + 0.7819920778274536 + ], + "min": [ + -0.6008332967758179, + 0.08056044578552246, + 0.1449061781167984, + 0.7819920778274536 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42252, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54704, + "componentType": 5126, + "count": 1, + "max": [ + -0.007783614564687014, + -0.009917165152728558, + -0.06778708100318909, + 0.997620165348053 + ], + "min": [ + -0.007783614564687014, + -0.009917165152728558, + -0.06778708100318909, + 0.997620165348053 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42256, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54720, + "componentType": 5126, + "count": 1, + "max": [ + -0.12403074651956558, + 0.019416337832808495, + -0.10705237835645676, + 0.9862957000732422 + ], + "min": [ + -0.12403074651956558, + 0.019416337832808495, + -0.10705237835645676, + 0.9862957000732422 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42260, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54736, + "componentType": 5126, + "count": 1, + "max": [ + -0.6934386491775513, + 0.06566400080919266, + 0.005987241398543119, + 0.717492401599884 + ], + "min": [ + -0.6934386491775513, + 0.06566400080919266, + 0.005987241398543119, + 0.717492401599884 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42264, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54752, + "componentType": 5126, + "count": 1, + "max": [ + -0.6016789674758911, + 0.07979518920183182, + -0.07210474461317062, + 0.7914645075798035 + ], + "min": [ + -0.6016789674758911, + 0.07979518920183182, + -0.07210474461317062, + 0.7914645075798035 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42268, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54768, + "componentType": 5126, + "count": 1, + "max": [ + -0.6905081272125244, + -0.0027877555694431067, + 0.0626821368932724, + 0.7205981612205505 + ], + "min": [ + -0.6905081272125244, + -0.0027877555694431067, + 0.0626821368932724, + 0.7205981612205505 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42272, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54784, + "componentType": 5126, + "count": 1, + "max": [ + -0.5654464960098267, + 0.07364370673894882, + -0.0028958849143236876, + 0.8214855790138245 + ], + "min": [ + -0.5654464960098267, + 0.07364370673894882, + -0.0028958849143236876, + 0.8214855790138245 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42276, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54800, + "componentType": 5126, + "count": 1, + "max": [ + -0.30924534797668457, + 0.007741975598037243, + -0.31477296352386475, + 0.8973435163497925 + ], + "min": [ + -0.30924534797668457, + 0.007741975598037243, + -0.31477296352386475, + 0.8973435163497925 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42280, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54816, + "componentType": 5126, + "count": 1, + "max": [ + -0.36635902523994446, + -0.07056263089179993, + 0.5832506418228149, + 0.7215405106544495 + ], + "min": [ + -0.36635902523994446, + -0.07056263089179993, + 0.5832506418228149, + 0.7215405106544495 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42284, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54832, + "componentType": 5126, + "count": 1, + "max": [ + 0.07222648710012436, + 1.2202258403704036e-07, + -1.133889515614328e-08, + 0.9973882436752319 + ], + "min": [ + 0.07222648710012436, + 1.2202258403704036e-07, + -1.133889515614328e-08, + 0.9973882436752319 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42288, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54848, + "componentType": 5126, + "count": 1, + "max": [ + 0.04247473552823067, + 0.31936055421829224, + 0.010932371951639652, + 0.9466177821159363 + ], + "min": [ + 0.04247473552823067, + 0.31936055421829224, + 0.010932371951639652, + 0.9466177821159363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42292, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85728, + "componentType": 5126, + "count": 1, + "max": [ + -5.825987248186948e-09, + 0.3614468574523926, + 0.026841215789318085 + ], + "min": [ + -5.825987248186948e-09, + 0.3614468574523926, + 0.026841215789318085 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42296, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85740, + "componentType": 5126, + "count": 1, + "max": [ + 3.06999083932169e-08, + -0.1583418995141983, + -0.253764808177948 + ], + "min": [ + 3.06999083932169e-08, + -0.1583418995141983, + -0.253764808177948 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42300, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85752, + "componentType": 5126, + "count": 1, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42304, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85764, + "componentType": 5126, + "count": 1, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42308, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85776, + "componentType": 5126, + "count": 1, + "max": [ + -2.1803400329645228e-07, + 0.24314215779304504, + 0.18703263998031616 + ], + "min": [ + -2.1803400329645228e-07, + 0.24314215779304504, + 0.18703263998031616 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42312, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85788, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999968409538269, + 1.0, + 0.9999982714653015 + ], + "min": [ + 0.9999968409538269, + 1.0, + 0.9999982714653015 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42316, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85800, + "componentType": 5126, + "count": 1, + "max": [ + 0.2434188574552536, + -0.1304633617401123, + 0.029650278389453888 + ], + "min": [ + 0.2434188574552536, + -0.1304633617401123, + 0.029650278389453888 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42320, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85812, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999969601631165, + 1.000000238418579, + 0.9999983906745911 + ], + "min": [ + 0.9999969601631165, + 1.000000238418579, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42324, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54864, + "componentType": 5126, + "count": 1, + "max": [ + -0.5312724113464355, + 0.44651833176612854, + 0.45431408286094666, + 0.5585424900054932 + ], + "min": [ + -0.5312724113464355, + 0.44651833176612854, + 0.45431408286094666, + 0.5585424900054932 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42328, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85824, + "componentType": 5126, + "count": 1, + "max": [ + 1.0719744203413484e-08, + 0.23812519013881683, + -0.07664704322814941 + ], + "min": [ + 1.0719744203413484e-08, + 0.23812519013881683, + -0.07664704322814941 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42332, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54880, + "componentType": 5126, + "count": 1, + "max": [ + -0.6008332967758179, + -0.08056046068668365, + -0.1449061781167984, + 0.7819920778274536 + ], + "min": [ + -0.6008332967758179, + -0.08056046068668365, + -0.1449061781167984, + 0.7819920778274536 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42336, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54896, + "componentType": 5126, + "count": 1, + "max": [ + -0.007783620618283749, + 0.00991716980934143, + 0.06778708100318909, + 0.997620165348053 + ], + "min": [ + -0.007783620618283749, + 0.00991716980934143, + 0.06778708100318909, + 0.997620165348053 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42340, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54912, + "componentType": 5126, + "count": 1, + "max": [ + -0.12403076142072678, + -0.01941636949777603, + 0.10705236345529556, + 0.9862957000732422 + ], + "min": [ + -0.12403076142072678, + -0.01941636949777603, + 0.10705236345529556, + 0.9862957000732422 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42344, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54928, + "componentType": 5126, + "count": 1, + "max": [ + -0.6934384703636169, + -0.06566400080919266, + -0.0059872884303331375, + 0.7174924612045288 + ], + "min": [ + -0.6934384703636169, + -0.06566400080919266, + -0.0059872884303331375, + 0.7174924612045288 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42348, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54944, + "componentType": 5126, + "count": 1, + "max": [ + -0.6016789674758911, + -0.07979516685009003, + 0.07210474461317062, + 0.7914645075798035 + ], + "min": [ + -0.6016789674758911, + -0.07979516685009003, + 0.07210474461317062, + 0.7914645075798035 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42352, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54960, + "componentType": 5126, + "count": 1, + "max": [ + -0.6905081272125244, + 0.0027877555694431067, + -0.062682144343853, + 0.7205981612205505 + ], + "min": [ + -0.6905081272125244, + 0.0027877555694431067, + -0.062682144343853, + 0.7205981612205505 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42356, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54976, + "componentType": 5126, + "count": 1, + "max": [ + -0.5654464960098267, + -0.07364368438720703, + 0.0028958667535334826, + 0.8214855790138245 + ], + "min": [ + -0.5654464960098267, + -0.07364368438720703, + 0.0028958667535334826, + 0.8214855790138245 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42360, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54992, + "componentType": 5126, + "count": 1, + "max": [ + -0.3092453181743622, + -0.007741955574601889, + 0.31477314233779907, + 0.8973434567451477 + ], + "min": [ + -0.3092453181743622, + -0.007741955574601889, + 0.31477314233779907, + 0.8973434567451477 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42364, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55008, + "componentType": 5126, + "count": 1, + "max": [ + -0.36635902523994446, + 0.07056260854005814, + -0.5832507610321045, + 0.7215404510498047 + ], + "min": [ + -0.36635902523994446, + 0.07056260854005814, + -0.5832507610321045, + 0.7215404510498047 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42368, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85836, + "componentType": 5126, + "count": 1, + "max": [ + -0.22896654903888702, + -1.0679384469985962, + 0.2068067044019699 + ], + "min": [ + -0.22896654903888702, + -1.0679384469985962, + 0.2068067044019699 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42372, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55024, + "componentType": 5126, + "count": 1, + "max": [ + -0.11296927183866501, + 0.6128737926483154, + -0.35983505845069885, + 0.6943647265434265 + ], + "min": [ + -0.11296927183866501, + 0.6128737926483154, + -0.35983505845069885, + 0.6943647265434265 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42376, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85848, + "componentType": 5126, + "count": 1, + "max": [ + 0.44101518392562866, + 0.45546749234199524, + -0.7924572229385376 + ], + "min": [ + 0.44101518392562866, + 0.45546749234199524, + -0.7924572229385376 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42380, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85860, + "componentType": 5126, + "count": 1, + "max": [ + 0.3887481689453125, + -0.21188753843307495, + -0.24350854754447937 + ], + "min": [ + 0.3887481689453125, + -0.21188753843307495, + -0.24350854754447937 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42384, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55040, + "componentType": 5126, + "count": 1, + "max": [ + 0.9697481393814087, + -0.24410764873027802, + -5.356259293876064e-07, + 1.348292215652691e-07 + ], + "min": [ + 0.9697481393814087, + -0.24410764873027802, + -5.356259293876064e-07, + 1.348292215652691e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42388, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85872, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42392, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85884, + "componentType": 5126, + "count": 1, + "max": [ + -0.22099357843399048, + -0.3631075620651245, + -0.24350787699222565 + ], + "min": [ + -0.22099357843399048, + -0.3631075620651245, + -0.24350787699222565 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42396, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55056, + "componentType": 5126, + "count": 1, + "max": [ + -0.9569471478462219, + -0.2902621626853943, + 5.285555175760237e-07, + 1.6032197436288698e-07 + ], + "min": [ + -0.9569471478462219, + -0.2902621626853943, + 5.285555175760237e-07, + 1.6032197436288698e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 42400, + "componentType": 5126, + "count": 1, + "max": [ + 0.01666666753590107 + ], + "min": [ + 0.01666666753590107 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85896, + "componentType": 5126, + "count": 1, + "max": [ + 0.0012933462858200073, + -0.0010693322401493788, + 0.00839905347675085 + ], + "min": [ + 0.0012933462858200073, + -0.0010693322401493788, + 0.00839905347675085 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42404, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85908, + "componentType": 5126, + "count": 51, + "max": [ + 0.0, + 0.0, + 2.5416412353515625 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42608, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 86520, + "componentType": 5126, + "count": 51, + "max": [ + 0.17401376366615295, + 0.5208398103713989, + -1.1009986400604248 + ], + "min": [ + 0.030920162796974182, + -0.08483370393514633, + -1.5084227323532104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42812, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55072, + "componentType": 5126, + "count": 51, + "max": [ + 0.09938555955886841, + 0.10275551676750183, + 0.2720021903514862, + 0.9986441731452942 + ], + "min": [ + -0.03552567958831787, + 0.009734874591231346, + -0.12641000747680664, + 0.9570250511169434 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 43016, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 87132, + "componentType": 5126, + "count": 40, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 43176, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 87612, + "componentType": 5126, + "count": 51, + "max": [ + 2.384184796255795e-07, + 0.00212763249874115, + 2.384185791015625e-07 + ], + "min": [ + -1.1920938902676426e-07, + 0.0021271556615829468, + -1.1920950271360198e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 43380, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55888, + "componentType": 5126, + "count": 51, + "max": [ + 0.7071067690849304, + 3.15732734179619e-07, + -2.948239341549197e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.986928961945523e-07, + -3.142509967801743e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 43584, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 88224, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 43780, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 88812, + "componentType": 5126, + "count": 51, + "max": [ + 0.1738189160823822, + 0.13409888744354248, + 7.295775503735058e-07 + ], + "min": [ + 0.17381784319877625, + 0.13409781455993652, + -6.964558565414336e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 43984, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 56704, + "componentType": 5126, + "count": 51, + "max": [ + 0.01976153813302517, + 0.26003697514533997, + -0.03737170994281769, + 0.9957374930381775 + ], + "min": [ + -0.503278374671936, + -0.17965161800384521, + -0.3538982570171356, + 0.7675886154174805 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 44188, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 89424, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 44392, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 90036, + "componentType": 5126, + "count": 51, + "max": [ + 2.1001795857955585e-07, + 0.6356119513511658, + 2.869660704618582e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.6356112360954285, + -4.7352597221106407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 44596, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 57520, + "componentType": 5126, + "count": 51, + "max": [ + 0.712442934513092, + 3.661054392978258e-08, + 8.234601978074352e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -1.677809535749475e-08, + -7.845007417017769e-07, + 0.7017300724983215 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 44800, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 90648, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 45004, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 91260, + "componentType": 5126, + "count": 51, + "max": [ + -0.17381784319877625, + 0.13409878313541412, + 7.232015377667267e-07 + ], + "min": [ + -0.1738186776638031, + 0.13409803807735443, + -4.623258575975342e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 45208, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 58336, + "componentType": 5126, + "count": 51, + "max": [ + 0.0693177655339241, + 0.08587721735239029, + 0.25590062141418457, + 0.9813441038131714 + ], + "min": [ + -0.49331122636795044, + -0.3389415144920349, + 0.15510782599449158, + 0.8320832848548889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 45412, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 91872, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 45616, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 92484, + "componentType": 5126, + "count": 51, + "max": [ + 1.4033184925210662e-07, + 0.6356115937232971, + 2.459419476963376e-07 + ], + "min": [ + -9.808672984945588e-08, + 0.635611355304718, + -2.4450295654787624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 45820, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 59152, + "componentType": 5126, + "count": 51, + "max": [ + 0.6977635622024536, + 3.041506957401907e-08, + 5.97320706674509e-07, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + -2.734071813392802e-08, + 2.1540573769129878e-08, + 0.7163281440734863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 46024, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 93096, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999998211860657, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 46228, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 93708, + "componentType": 5126, + "count": 51, + "max": [ + 2.384185791015625e-07, + 0.0021276327315717936, + 1.192094316593284e-07 + ], + "min": [ + -3.5762775496550603e-07, + 0.0021271556615829468, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 46432, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 59968, + "componentType": 5126, + "count": 51, + "max": [ + -0.6495170593261719, + 0.1911236047744751, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7039599418640137, + -0.1021478995680809, + -0.18154917657375336, + 0.6969379782676697 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 46636, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 94320, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 46840, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 94932, + "componentType": 5126, + "count": 51, + "max": [ + 2.384185791015625e-07, + 0.2726660966873169, + 2.3802935800176783e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.27266550064086914, + -2.384950334999303e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 47044, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 60784, + "componentType": 5126, + "count": 51, + "max": [ + 0.2137846201658249, + 0.20540422201156616, + 0.051200494170188904, + 0.9994429349899292 + ], + "min": [ + -0.14019331336021423, + -0.30748867988586426, + -0.10715553909540176, + 0.9329813718795776 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 47248, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 95544, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 47452, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 96156, + "componentType": 5126, + "count": 51, + "max": [ + 0.04481638967990875, + 0.5181844830513, + 0.014210175722837448 + ], + "min": [ + 0.04466761648654938, + 0.5170567035675049, + 0.01073748990893364 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 47656, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 61600, + "componentType": 5126, + "count": 51, + "max": [ + -0.40363752841949463, + -0.4897896349430084, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.49053117632865906, + -0.5878686308860779, + -0.5935590863227844, + 0.38844117522239685 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 47860, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 96768, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48064, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 97380, + "componentType": 5126, + "count": 51, + "max": [ + 0.04141075909137726, + 0.2381257861852646, + -0.059216201305389404 + ], + "min": [ + -9.62816329774796e-07, + 0.20391225814819336, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48268, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 62416, + "componentType": 5126, + "count": 51, + "max": [ + -0.26803386211395264, + 0.018121572211384773, + -0.1284189671278, + 0.9499017596244812 + ], + "min": [ + -0.705502986907959, + -0.23821386694908142, + -0.5685606598854065, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 48472, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 97992, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48676, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 98604, + "componentType": 5126, + "count": 51, + "max": [ + 4.745376429582393e-07, + 0.404861718416214, + 4.4358517925502383e-07 + ], + "min": [ + -2.4499374262632045e-07, + 0.4048609137535095, + -3.896714773077292e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48880, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 63232, + "componentType": 5126, + "count": 51, + "max": [ + 0.49240341782569885, + 0.5269917249679565, + -0.10201721638441086, + 0.9886587858200073 + ], + "min": [ + -0.31821802258491516, + -0.32696542143821716, + -0.7817835807800293, + 0.4055098295211792 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 49084, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 99216, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 49288, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 99828, + "componentType": 5126, + "count": 51, + "max": [ + 2.643702430304984e-07, + 0.40327075123786926, + 1.9374428461560456e-07 + ], + "min": [ + -2.5757017851901765e-07, + 0.40327000617980957, + -2.88733815523301e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 49492, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 64048, + "componentType": 5126, + "count": 51, + "max": [ + 0.14158369600772858, + 0.3979201912879944, + 0.36847901344299316, + 0.9972350001335144 + ], + "min": [ + -0.39766138792037964, + -0.49649810791015625, + -0.2655097246170044, + 0.6779220700263977 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 49696, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 100440, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 49900, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 101052, + "componentType": 5126, + "count": 51, + "max": [ + 0.09804292768239975, + 0.21963171660900116, + -0.0024724046234041452 + ], + "min": [ + 0.0980418473482132, + 0.21963012218475342, + -0.002473191823810339 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 50104, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 64864, + "componentType": 5126, + "count": 51, + "max": [ + -0.6223366260528564, + -0.000981667311862111, + 0.03366422280669212, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817163227126002, + 0.03366414085030556, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 50308, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 101664, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 50508, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 102264, + "componentType": 5126, + "count": 51, + "max": [ + 2.589837322375388e-07, + 0.0975029245018959, + 8.390271091229806e-07 + ], + "min": [ + -2.294521408430228e-07, + 0.0975022092461586, + 1.0949316475716842e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 50712, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 65680, + "componentType": 5126, + "count": 51, + "max": [ + -0.5302280187606812, + 0.002465951954945922, + -0.05339590832591057, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.002465896075591445, + -0.053396034985780716, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 50916, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 102876, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51120, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 103488, + "componentType": 5126, + "count": 51, + "max": [ + -0.016226261854171753, + 0.2130865603685379, + -0.00355923711322248 + ], + "min": [ + -0.01622731424868107, + 0.2130856066942215, + -0.003559764940291643 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51324, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 66496, + "componentType": 5126, + "count": 51, + "max": [ + -0.6264929175376892, + -0.07110268622636795, + 0.07480835914611816, + 0.7725637555122375 + ], + "min": [ + -0.626492977142334, + -0.07110273092985153, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 51528, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 104100, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51732, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 104712, + "componentType": 5126, + "count": 51, + "max": [ + 4.6642119855277997e-07, + 0.08465023338794708, + -4.199079839395381e-08 + ], + "min": [ + -3.692773873353872e-07, + 0.08464963734149933, + -5.716920554732496e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51936, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 67312, + "componentType": 5126, + "count": 51, + "max": [ + -0.5015431642532349, + -0.0011796618346124887, + -0.008243976160883904, + 0.8650925755500793 + ], + "min": [ + -0.5015433430671692, + -0.001179719576612115, + -0.008244029246270657, + 0.8650924563407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 52140, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 105324, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 52344, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 105936, + "componentType": 5126, + "count": 51, + "max": [ + 0.11189720034599304, + 0.1098899394273758, + -0.051630981266498566 + ], + "min": [ + 0.11189617961645126, + 0.10988881438970566, + -0.051631879061460495 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 52548, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 68128, + "componentType": 5126, + "count": 51, + "max": [ + -0.4573034942150116, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 52752, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 106548, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 52956, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 107160, + "componentType": 5126, + "count": 51, + "max": [ + 2.329575607973311e-07, + 0.08512423932552338, + 2.8942784524588205e-07 + ], + "min": [ + -4.795198833562608e-07, + 0.08512376248836517, + -2.403101575509936e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 53160, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 68944, + "componentType": 5126, + "count": 51, + "max": [ + 0.02291056327521801, + 0.012835778295993805, + 0.6957964301109314, + 0.7177590131759644 + ], + "min": [ + 0.02291051670908928, + 0.012835728004574776, + 0.6957962512969971, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 53364, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 107772, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 53568, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 108384, + "componentType": 5126, + "count": 51, + "max": [ + 0.005585832055658102, + 0.16604498028755188, + -0.045393094420433044 + ], + "min": [ + 0.005584441125392914, + 0.16604384779930115, + -0.04539371281862259 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 53772, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 69760, + "componentType": 5126, + "count": 51, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.023865409195423126 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865360766649246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 53976, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 108996, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 54180, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 109608, + "componentType": 5126, + "count": 51, + "max": [ + 2.3841860752327193e-07, + 0.5450075268745422, + 2.2362529250585794e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.545007050037384, + -2.3480120603380783e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 54384, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 70576, + "componentType": 5126, + "count": 51, + "max": [ + 0.14185352623462677, + 0.13072361052036285, + 0.12735657393932343, + 0.9988195300102234 + ], + "min": [ + -0.007215114776045084, + -0.21528321504592896, + -0.07582128793001175, + 0.9577635526657104 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 54588, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 110220, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 54792, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 110832, + "componentType": 5126, + "count": 51, + "max": [ + 2.980231954552437e-07, + 0.11002898216247559, + 2.365559055306221e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.11002779006958008, + -2.402812526725029e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 54996, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 71392, + "componentType": 5126, + "count": 51, + "max": [ + 0.123679019510746, + 0.12989991903305054, + 0.13141316175460815, + 0.9994659423828125 + ], + "min": [ + -0.025982949882745743, + -0.2128312736749649, + -0.07695949822664261, + 0.960279643535614 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 55200, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 111444, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 55404, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 112056, + "componentType": 5126, + "count": 51, + "max": [ + 1.7298795285114466e-07, + 0.3614480495452881, + 0.02684154361486435 + ], + "min": [ + -3.0384921956283506e-07, + 0.36144566535949707, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 55608, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 72208, + "componentType": 5126, + "count": 51, + "max": [ + 1.4901161193847656e-08, + 7.450639216699528e-09, + 7.450580596923828e-09, + 1.0 + ], + "min": [ + -2.9802322387695313e-08, + -2.048903269269431e-08, + -1.4901158529312397e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 55812, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 112668, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56008, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 113256, + "componentType": 5126, + "count": 51, + "max": [ + 3.138219142329035e-07, + -0.1583409309387207, + -0.2537643611431122 + ], + "min": [ + -2.077186707083456e-07, + -0.15834328532218933, + -0.2537653148174286 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56212, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 73024, + "componentType": 5126, + "count": 51, + "max": [ + -0.998119592666626, + 1.3731205505962407e-08, + -2.0450231374979921e-07, + 0.06129678711295128 + ], + "min": [ + -0.998119592666626, + -1.5101688788377032e-08, + -2.3516199121331738e-07, + 0.061296720057725906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 56416, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 113868, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 0.9999721050262451 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56612, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 114456, + "componentType": 5126, + "count": 51, + "max": [ + 1.1920928244535389e-07, + 0.2539476454257965, + 2.9027589221186645e-07 + ], + "min": [ + -1.7881392011531716e-07, + 0.2539467513561249, + -1.854822642144427e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56816, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 73840, + "componentType": 5126, + "count": 51, + "max": [ + 0.15613587200641632, + -9.450589288917399e-08, + 1.9775152182432976e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3323654002306284e-07, + -5.982053963293765e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 57020, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 115068, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.9999998211860657, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 57224, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 115680, + "componentType": 5126, + "count": 51, + "max": [ + 1.1920928955078125e-07, + 0.2533196806907654, + 2.488916095444438e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2533186972141266, + -3.5885611282537866e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 57428, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 74656, + "componentType": 5126, + "count": 51, + "max": [ + -0.09231436997652054, + 6.906961114161447e-10, + 1.6901195110108347e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -3.035995987943352e-08, + -1.380556913233022e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 57632, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 116292, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 57836, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 116904, + "componentType": 5126, + "count": 51, + "max": [ + 1.1920926823449918e-07, + 0.2637791633605957, + 4.235704693655862e-07 + ], + "min": [ + -1.1920930376163597e-07, + 0.2637781500816345, + -2.833126018231269e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 58040, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 75472, + "componentType": 5126, + "count": 51, + "max": [ + 4.454104640672085e-09, + -0.9896631240844727, + 0.14341172575950623, + 8.577783461305444e-08 + ], + "min": [ + -2.6375772677056375e-08, + -0.9896631240844727, + 0.14341171085834503, + 6.443203659500796e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 58244, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 117516, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 58436, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 118092, + "componentType": 5126, + "count": 51, + "max": [ + 4.867573579758755e-07, + 0.24314264953136444, + 0.18703323602676392 + ], + "min": [ + -7.21619358046155e-07, + 0.24314162135124207, + 0.18703195452690125 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 58640, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 76288, + "componentType": 5126, + "count": 50, + "max": [ + 0.44783374667167664, + -0.23266471922397614, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.4478336572647095, + -0.23266476392745972, + 0.3746444284915924, + 0.7777876257896423 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 58840, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 118704, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 59040, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 119304, + "componentType": 5126, + "count": 51, + "max": [ + -0.24418939650058746, + -0.13046196103096008, + 0.029650738462805748 + ], + "min": [ + -0.24419008195400238, + -0.13046404719352722, + 0.029649725183844566 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 59244, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 77088, + "componentType": 5126, + "count": 51, + "max": [ + 0.007415724452584982, + -0.07428384572267532, + -0.9923430681228638, + 0.09839733690023422 + ], + "min": [ + 0.00741569884121418, + -0.0742838978767395, + -0.9923431873321533, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 59448, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 119916, + "componentType": 5126, + "count": 51, + "max": [ + 0.9999971389770508, + 1.000000238418579, + 0.9999983906745911 + ], + "min": [ + 0.9999966025352478, + 0.9999997019767761, + 0.9999979734420776 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 59652, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 120528, + "componentType": 5126, + "count": 51, + "max": [ + 0.24341905117034912, + -0.1304628998041153, + 0.029650725424289703 + ], + "min": [ + 0.2434186339378357, + -0.13046428561210632, + 0.029649747535586357 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 59856, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 77904, + "componentType": 5126, + "count": 51, + "max": [ + 0.007417443674057722, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417423650622368, + 0.0742836445569992, + 0.9923431277275085, + 0.09839747846126556 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 60060, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 121140, + "componentType": 5126, + "count": 50, + "max": [ + 0.999997079372406, + 1.0000003576278687, + 0.9999986290931702 + ], + "min": [ + 0.9999966621398926, + 0.9999999403953552, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 60260, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 121740, + "componentType": 5126, + "count": 51, + "max": [ + -0.04466760903596878, + 0.5170897245407104, + 0.010738357901573181 + ], + "min": [ + -0.04481662064790726, + 0.5159617066383362, + 0.00726561201736331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 60464, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 78720, + "componentType": 5126, + "count": 50, + "max": [ + -0.4885677993297577, + 0.5097403526306152, + 0.5511830449104309, + 0.5100312232971191 + ], + "min": [ + -0.5661126971244812, + 0.4722764492034912, + 0.4830397665500641, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 60664, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 122352, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 60868, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 122964, + "componentType": 5126, + "count": 51, + "max": [ + 0.017870448529720306, + 0.24287059903144836, + -0.035273805260658264 + ], + "min": [ + -0.018316730856895447, + 0.23250827193260193, + -0.10004206001758575 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 61072, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 79520, + "componentType": 5126, + "count": 51, + "max": [ + -0.4485569894313812, + 0.5143935084342957, + 0.6463446021080017, + 0.8483297228813171 + ], + "min": [ + -0.7432543635368347, + 0.11731678992509842, + -0.32813236117362976, + 0.5294756889343262 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 61276, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 123576, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 61480, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 124188, + "componentType": 5126, + "count": 51, + "max": [ + 2.420748899112368e-07, + 0.40486153960227966, + 4.4732740889230627e-07 + ], + "min": [ + -2.3584490804751113e-07, + 0.40486082434654236, + -3.926122715824931e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 61684, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 80336, + "componentType": 5126, + "count": 49, + "max": [ + 0.16283391416072845, + 0.831330418586731, + 0.6872951984405518, + 0.8614022135734558 + ], + "min": [ + -0.2882993221282959, + -0.25487056374549866, + -0.05700935795903206, + 0.5415950417518616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 61880, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 124800, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 62084, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 125412, + "componentType": 5126, + "count": 51, + "max": [ + 2.4560827682762465e-07, + 0.40327078104019165, + 4.235019730458589e-07 + ], + "min": [ + -4.780969220519182e-07, + 0.40326979756355286, + -3.026933654837194e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 62288, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 81120, + "componentType": 5126, + "count": 51, + "max": [ + 0.13021312654018402, + 0.1220691055059433, + 0.23887106776237488, + 0.9994990825653076 + ], + "min": [ + -0.17535854876041412, + -0.19347020983695984, + -0.17424063384532928, + 0.9581349492073059 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 62492, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 126024, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 62696, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 126636, + "componentType": 5126, + "count": 51, + "max": [ + -0.09804185479879379, + 0.21963123977184296, + -0.0024724325630813837 + ], + "min": [ + -0.09804325550794601, + 0.21963027119636536, + -0.002473131287842989 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 62900, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 81936, + "componentType": 5126, + "count": 51, + "max": [ + -0.5146673321723938, + 0.049974966794252396, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997487738728523, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 63104, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 127248, + "componentType": 5126, + "count": 50, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 63304, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 127848, + "componentType": 5126, + "count": 51, + "max": [ + 4.590818036831479e-07, + 0.09750308096408844, + 6.050551633052237e-07 + ], + "min": [ + -5.034855803387472e-07, + 0.09750211983919144, + 1.1584090486849163e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 63508, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 82752, + "componentType": 5126, + "count": 51, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731868281960487, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273198872804642, + 0.00973172951489687, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 63712, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 128460, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 63916, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 129072, + "componentType": 5126, + "count": 51, + "max": [ + 0.01622731238603592, + 0.2130865454673767, + -0.0035589742474257946 + ], + "min": [ + 0.01622607186436653, + 0.21308565139770508, + -0.003559937933459878 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 64120, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 83568, + "componentType": 5126, + "count": 51, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430819988250732, + 0.06296970695257187, + -0.08177224546670914, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 64324, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 129684, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 64528, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 130296, + "componentType": 5126, + "count": 51, + "max": [ + 4.889707270194776e-07, + 0.08465016633272171, + 7.684771041738259e-09 + ], + "min": [ + -3.4640240187400195e-07, + 0.0846494734287262, + -4.817118224309525e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 64732, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 84384, + "componentType": 5126, + "count": 51, + "max": [ + -0.4092182219028473, + 0.0020274617709219456, + 0.008077450096607208, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274126436561346, + 0.008077399805188179, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 64936, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 130908, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65140, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 131520, + "componentType": 5126, + "count": 51, + "max": [ + -0.11189600080251694, + 0.10988985002040863, + -0.051631148904561996 + ], + "min": [ + -0.11189718544483185, + 0.10988887399435043, + -0.051631756126880646 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65344, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 85200, + "componentType": 5126, + "count": 51, + "max": [ + -0.43224573135375977, + -0.12903623282909393, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363222360611, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 65548, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 132132, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65752, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 132744, + "componentType": 5126, + "count": 51, + "max": [ + 4.4281921418587444e-07, + 0.08512413501739502, + 2.3167217477748636e-07 + ], + "min": [ + -2.769799039015197e-07, + 0.08512365072965622, + -2.434459531741595e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65956, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 86016, + "componentType": 5126, + "count": 50, + "max": [ + 0.14811435341835022, + -0.12198015302419662, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219802051782608, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 66156, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 133356, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 66360, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 133968, + "componentType": 5126, + "count": 51, + "max": [ + -0.00558440200984478, + 0.16604509949684143, + -0.03689408674836159 + ], + "min": [ + -0.006523141637444496, + 0.14337776601314545, + -0.045393768697977066 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 66564, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 86816, + "componentType": 5126, + "count": 51, + "max": [ + 0.6181666851043701, + 0.9173552989959717, + 0.24978695809841156, + 0.3435755968093872 + ], + "min": [ + -0.5829561352729797, + -0.9087004065513611, + -0.09044133871793747, + 0.0007967433775775135 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 66768, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 134580, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 66972, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 135192, + "componentType": 5126, + "count": 51, + "max": [ + 0.13640372455120087, + 0.285047709941864, + 0.001940205809660256 + ], + "min": [ + 0.1364026516675949, + 0.2850467562675476, + 0.0019392619142308831 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 67176, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 87632, + "componentType": 5126, + "count": 51, + "max": [ + -5.8522061863186536e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.5162504496402107e-07 + ], + "min": [ + -1.0022827723332739e-07, + -0.693580687046051, + -0.7203789949417114, + 1.165592635743451e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 67380, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 135804, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 67580, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 136404, + "componentType": 5126, + "count": 51, + "max": [ + -0.13640253245830536, + 0.285047709941864, + 0.001940517919138074 + ], + "min": [ + -0.13640360534191132, + 0.2850469946861267, + 0.00193920754827559 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 67784, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 88448, + "componentType": 5126, + "count": 51, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789949417114, + 6.950588726795104e-08 + ], + "min": [ + -8.824694930353871e-08, + -0.6935806274414063, + -0.7203789949417114, + 2.716197933239073e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 67988, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 137016, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 68192, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 137628, + "componentType": 5126, + "count": 42, + "max": [ + 0.6391620635986328, + 1.3529030084609985, + -0.5495588779449463 + ], + "min": [ + 0.27831587195396423, + -0.20644617080688477, + -0.7378857135772705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 68360, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 138132, + "componentType": 5126, + "count": 42, + "max": [ + 0.7805294394493103, + 0.8475151062011719, + -0.24350875616073608 + ], + "min": [ + 0.5804783701896667, + -0.5184624195098877, + -0.3652375340461731 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 68528, + "componentType": 5126, + "count": 32, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 89264, + "componentType": 5126, + "count": 32, + "max": [ + 1.0, + 0.0, + 0.12307075411081314, + 0.6320153474807739 + ], + "min": [ + -0.9998979568481445, + -0.09270712733268738, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 68656, + "componentType": 5126, + "count": 29, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 138636, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 68772, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 138984, + "componentType": 5126, + "count": 51, + "max": [ + 5.327165126800537e-05, + -1.2889506706414977e-07, + -2.0260310407138604e-07 + ], + "min": [ + 4.470348358154297e-08, + -2.7252997824689373e-05, + -9.926430357154459e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 68976, + "componentType": 5126, + "count": 33, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 89776, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503704309463501, + 3.814319082806605e-09, + 5.461425089947625e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.250461423296656e-08, + -5.584521733936754e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 69108, + "componentType": 5126, + "count": 32, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 139596, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 69236, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 139980, + "componentType": 5126, + "count": 50, + "max": [ + 1.1920928955078125e-07, + 0.28250032663345337, + 1.1436799951525245e-07 + ], + "min": [ + -5.960475135680099e-08, + 0.28249961137771606, + -1.0691746865632012e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 69436, + "componentType": 5126, + "count": 33, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 90304, + "componentType": 5126, + "count": 33, + "max": [ + -8.147585361939491e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.05137897655367851 + ], + "min": [ + -0.10723292827606201, + 0.8047910332679749, + -0.5815262198448181, + 4.2395276977913454e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 69568, + "componentType": 5126, + "count": 32, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 140580, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 69696, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 140964, + "componentType": 5126, + "count": 42, + "max": [ + -0.09779655933380127, + 1.1454490423202515, + -0.5811216831207275 + ], + "min": [ + -0.37548133730888367, + 0.3470693826675415, + -0.6873507499694824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 69864, + "componentType": 5126, + "count": 41, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 141468, + "componentType": 5126, + "count": 41, + "max": [ + -0.3315192461013794, + 0.734381914138794, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.3474441468715668 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 70028, + "componentType": 5126, + "count": 38, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 90832, + "componentType": 5126, + "count": 38, + "max": [ + 0.9929701089859009, + 0.11903512477874756, + 0.051588937640190125, + 0.4362110197544098 + ], + "min": [ + -0.9934486150741577, + -0.17863965034484863, + -0.011298113502562046, + 6.537721475297076e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 70180, + "componentType": 5126, + "count": 29, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 141960, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 70296, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 142308, + "componentType": 5126, + "count": 51, + "max": [ + -8.791685104370117e-07, + 7.4998606578446925e-06, + -1.4795447214055457e-06 + ], + "min": [ + -2.8118491172790527e-05, + -4.785550481756218e-05, + -9.355258225696161e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 70500, + "componentType": 5126, + "count": 39, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 91440, + "componentType": 5126, + "count": 39, + "max": [ + -0.9503704309463501, + -4.82334083784508e-09, + 1.7282874020807526e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.5412608906094647e-08, + -1.566814411546602e-08, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 70656, + "componentType": 5126, + "count": 37, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 142920, + "componentType": 5126, + "count": 37, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 70804, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 143364, + "componentType": 5126, + "count": 50, + "max": [ + 5.960464477539063e-08, + 0.2825000584125519, + 2.2501075136460713e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.28249964118003845, + -2.397470950654679e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71004, + "componentType": 5126, + "count": 43, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 92064, + "componentType": 5126, + "count": 43, + "max": [ + -8.301529419441067e-08, + 0.9814077019691467, + 0.4495232105255127, + 0.09776406735181808 + ], + "min": [ + -0.04113644361495972, + -0.9818702340126038, + -0.5997859239578247, + 4.217117464122566e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 71176, + "componentType": 5126, + "count": 43, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 143964, + "componentType": 5126, + "count": 43, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71348, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 144480, + "componentType": 5126, + "count": 32, + "max": [ + 0.0, + 0.0, + 1.7413641214370728 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71476, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 144864, + "componentType": 5126, + "count": 33, + "max": [ + 0.17401376366615295, + 0.5208398103713989, + -1.1009985208511353 + ], + "min": [ + 0.17401330173015594, + 0.02890394628047943, + -1.5298038721084595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71608, + "componentType": 5126, + "count": 24, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 92752, + "componentType": 5126, + "count": 24, + "max": [ + 0.09938555955886841, + 0.07410639524459839, + 0.2720021903514862, + 0.9980465173721313 + ], + "min": [ + -0.0030972007662057877, + 0.009734874591231346, + -0.12641000747680664, + 0.9570249319076538 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 71704, + "componentType": 5126, + "count": 16, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 145260, + "componentType": 5126, + "count": 16, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71768, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 145452, + "componentType": 5126, + "count": 32, + "max": [ + 1.1920938902676426e-07, + 0.0021273940801620483, + 2.384185791015625e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.0021273940801620483, + -1.1920938902676426e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 71896, + "componentType": 5126, + "count": 24, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 93136, + "componentType": 5126, + "count": 24, + "max": [ + 0.7071067690849304, + 3.211657144674973e-07, + -2.900495132962533e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9902216169830353e-07, + -3.1159626701082743e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 71992, + "componentType": 5126, + "count": 24, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 145836, + "componentType": 5126, + "count": 24, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 72088, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 146124, + "componentType": 5126, + "count": 33, + "max": [ + 0.1738189160823822, + 0.13409864902496338, + 2.5281616444772226e-07 + ], + "min": [ + 0.17381802201271057, + 0.13409793376922607, + -2.2819588707534422e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 72220, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 93520, + "componentType": 5126, + "count": 33, + "max": [ + 0.07406450808048248, + 0.26003679633140564, + -0.029465412721037865, + 0.9917988777160645 + ], + "min": [ + -0.5032780170440674, + -0.17965170741081238, + -0.35389837622642517, + 0.76758873462677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 72352, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 146520, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 72484, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 146916, + "componentType": 5126, + "count": 33, + "max": [ + 9.08086690287746e-08, + 0.6356117129325867, + 2.6245257345181017e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356112360954285, + -2.3637096546735847e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 72616, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 94048, + "componentType": 5126, + "count": 33, + "max": [ + 0.712442934513092, + 4.298793498946907e-08, + 6.148248843373949e-08, + 0.9628794193267822 + ], + "min": [ + 0.26993200182914734, + -1.3511230356755277e-08, + -3.5527833119886054e-07, + 0.7017300724983215 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 72748, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 147312, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 72880, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 147708, + "componentType": 5126, + "count": 33, + "max": [ + -0.1738179624080658, + 0.13409888744354248, + 3.7200652514002286e-07 + ], + "min": [ + -0.17381855845451355, + 0.13409805297851563, + -4.644512046070304e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 73012, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 94576, + "componentType": 5126, + "count": 33, + "max": [ + 0.05433535575866699, + -0.019917281344532967, + 0.21959595382213593, + 0.9816997051239014 + ], + "min": [ + -0.19319801032543182, + -0.33894082903862, + 0.15595945715904236, + 0.8990710973739624 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 73144, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 148104, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 73276, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 148500, + "componentType": 5126, + "count": 33, + "max": [ + 1.4033184925210662e-07, + 0.6356115937232971, + 2.412977835319907e-07 + ], + "min": [ + -9.808672984945588e-08, + 0.6356114149093628, + -2.360764455033859e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 73408, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 95104, + "componentType": 5126, + "count": 33, + "max": [ + 0.6966301798820496, + 3.195717823700761e-08, + 5.286344162414025e-07, + 0.9585966467857361 + ], + "min": [ + 0.28476741909980774, + -3.38921815057347e-08, + 1.3669307463715086e-07, + 0.7174304723739624 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 73540, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 148896, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 73672, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 149292, + "componentType": 5126, + "count": 33, + "max": [ + 5.960464477539063e-08, + 0.0021275135222822428, + 1.1940912258978642e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.0021272748708724976, + -1.1940912258978642e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 73804, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 95632, + "componentType": 5126, + "count": 33, + "max": [ + -0.6658596396446228, + 0.19112356007099152, + -0.07420546561479568, + 0.7150253653526306 + ], + "min": [ + -0.6894406080245972, + 0.08890436589717865, + -0.1815491020679474, + 0.6979560852050781 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 73936, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 149688, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74064, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 150072, + "componentType": 5126, + "count": 33, + "max": [ + 5.960464477539063e-08, + 0.2726660966873169, + 1.2321545739268913e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2726656198501587, + -1.2368111867999687e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74196, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 96160, + "componentType": 5126, + "count": 33, + "max": [ + 0.2137846201658249, + 0.20540425181388855, + 0.021698221564292908, + 0.9962517619132996 + ], + "min": [ + -0.14019332826137543, + -0.1326407939195633, + -0.10715552419424057, + 0.9626383781433105 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 74328, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 150468, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74456, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 150852, + "componentType": 5126, + "count": 33, + "max": [ + 0.0448165088891983, + 0.5170738101005554, + 0.010738222859799862 + ], + "min": [ + 0.044815793633461, + 0.517072856426239, + 0.010737686417996883 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74588, + "componentType": 5126, + "count": 31, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 96688, + "componentType": 5126, + "count": 31, + "max": [ + -0.44474679231643677, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356300830841, + -0.5278288125991821, + -0.5935590863227844, + 0.38844117522239685 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 74712, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 151248, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74844, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 151644, + "componentType": 5126, + "count": 33, + "max": [ + 2.2927652310045232e-07, + 0.23812566697597504, + -0.07664655894041061 + ], + "min": [ + -3.07165294088918e-07, + 0.23812495172023773, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 74976, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 97184, + "componentType": 5126, + "count": 33, + "max": [ + -0.31706464290618896, + 0.018121592700481415, + -0.10747160017490387, + 0.9276626706123352 + ], + "min": [ + -0.6424115300178528, + -0.23821386694908142, + -0.4460134208202362, + 0.6983411312103271 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 75108, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 152040, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 75240, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 152436, + "componentType": 5126, + "count": 33, + "max": [ + 4.746074466766004e-07, + 0.4048614203929901, + 3.268983732596098e-07 + ], + "min": [ + -2.3735353238407697e-07, + 0.40486103296279907, + 8.099779336134816e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 75372, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 97712, + "componentType": 5126, + "count": 33, + "max": [ + 0.48459354043006897, + 0.23339666426181793, + -0.18117590248584747, + 0.9615857005119324 + ], + "min": [ + -0.31821802258491516, + -0.3269655704498291, + -0.7939639687538147, + 0.3936314284801483 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 75504, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 152832, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 75636, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 153228, + "componentType": 5126, + "count": 33, + "max": [ + 2.5310529849775776e-07, + 0.40327098965644836, + 1.9658189387428138e-07 + ], + "min": [ + -1.924557864185772e-07, + 0.4032702147960663, + -1.5968471700489317e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 75768, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 98240, + "componentType": 5126, + "count": 33, + "max": [ + 0.14158369600772858, + -0.040939249098300934, + 0.3591582179069519, + 0.9972350001335144 + ], + "min": [ + -0.3087913990020752, + -0.41812196373939514, + -0.265509694814682, + 0.7751305103302002 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 75900, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 153624, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76032, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 154020, + "componentType": 5126, + "count": 33, + "max": [ + 0.09804289788007736, + 0.21963107585906982, + -0.002472483552992344 + ], + "min": [ + 0.09804197400808334, + 0.2196298986673355, + -0.0024728362914174795 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76164, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 98768, + "componentType": 5126, + "count": 33, + "max": [ + -0.6223366856575012, + -0.000981673365458846, + 0.03366418927907944, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817281970754266, + 0.03366414085030556, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 76296, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 154416, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76428, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 154812, + "componentType": 5126, + "count": 33, + "max": [ + 4.917385467706481e-07, + 0.09750289469957352, + 6.139574679764337e-07 + ], + "min": [ + -2.2427276746839198e-07, + 0.0975024551153183, + 1.0203476819015123e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76560, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 99296, + "componentType": 5126, + "count": 33, + "max": [ + -0.5302281379699707, + 0.0024659312330186367, + -0.05339595675468445, + 0.8461683988571167 + ], + "min": [ + -0.5302281975746155, + 0.002465839497745037, + -0.05339600145816803, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 76692, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 155208, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76820, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 155592, + "componentType": 5126, + "count": 33, + "max": [ + -0.016226472333073616, + 0.21308673918247223, + -0.0035592333879321814 + ], + "min": [ + -0.01622728258371353, + 0.2130856066942215, + -0.003559625009074807 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 76952, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 99824, + "componentType": 5126, + "count": 33, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110273092985153, + 0.07480830699205399, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 77084, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 155988, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 77216, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 156384, + "componentType": 5126, + "count": 33, + "max": [ + 2.310298157226498e-07, + 0.08465028554201126, + -3.891802435873615e-08 + ], + "min": [ + -2.472012283760705e-07, + 0.08464975655078888, + -5.538303753382934e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 77348, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 100352, + "componentType": 5126, + "count": 33, + "max": [ + -0.5015431642532349, + -0.00117964087985456, + -0.00824401993304491, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.001179691986180842, + -0.008244087919592857, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 77480, + "componentType": 5126, + "count": 31, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 156780, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 77604, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 157152, + "componentType": 5126, + "count": 33, + "max": [ + 0.11189717799425125, + 0.10988974571228027, + -0.05163096264004707 + ], + "min": [ + 0.11189626902341843, + 0.10988879948854446, + -0.05163152888417244 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 77736, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 100880, + "componentType": 5126, + "count": 32, + "max": [ + -0.4573034942150116, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493290662765503, + -0.3159089982509613, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 77864, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 157548, + "componentType": 5126, + "count": 32, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 77992, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 157932, + "componentType": 5126, + "count": 33, + "max": [ + 2.1823936435794167e-07, + 0.08512423932552338, + 2.3756608413805225e-07 + ], + "min": [ + -2.716638505262381e-07, + 0.08512382954359055, + -2.3389225134451408e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 78124, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 101392, + "componentType": 5126, + "count": 33, + "max": [ + 0.022910581901669502, + 0.012835780158638954, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910520434379578, + 0.012835724279284477, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 78256, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 158328, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 78388, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 158724, + "componentType": 5126, + "count": 33, + "max": [ + 0.005585335660725832, + 0.16604502499103546, + -0.04539322853088379 + ], + "min": [ + 0.005584382917732, + 0.16604381799697876, + -0.04539371654391289 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 78520, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 101920, + "componentType": 5126, + "count": 41, + "max": [ + 0.6181666851043701, + 0.8707951307296753, + -0.03350188583135605, + 0.07020683586597443 + ], + "min": [ + 0.4159708023071289, + 0.7849701046943665, + -0.25249776244163513, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 78684, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 159120, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 78848, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 159612, + "componentType": 5126, + "count": 33, + "max": [ + 2.3841855067985307e-07, + 0.5450075268745422, + 1.2256980141955864e-07 + ], + "min": [ + -1.192093463942001e-07, + 0.545007050037384, + -2.5286934146606654e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 78980, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 102576, + "componentType": 5126, + "count": 33, + "max": [ + 0.14185352623462677, + 0.06078566238284111, + 0.127356618642807, + 0.9979251623153687 + ], + "min": [ + 0.030376939103007317, + -0.21528325974941254, + -0.07582128793001175, + 0.9577635526657104 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 79112, + "componentType": 5126, + "count": 31, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 160008, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 79236, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 160380, + "componentType": 5126, + "count": 33, + "max": [ + 1.1920928955078125e-07, + 0.11002850532531738, + 1.1734665150697765e-07 + ], + "min": [ + -1.7881392011531716e-07, + 0.11002779006958008, + -1.8067657947540283e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 79368, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 103104, + "componentType": 5126, + "count": 33, + "max": [ + 0.1236790120601654, + 0.05933798849582672, + 0.13141316175460815, + 0.9987490177154541 + ], + "min": [ + 0.011520635336637497, + -0.21283118426799774, + -0.0769595056772232, + 0.960279643535614 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 79500, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 160776, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 79632, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 161172, + "componentType": 5126, + "count": 33, + "max": [ + 5.377865619493605e-08, + 0.3614480495452881, + 0.026841901242733 + ], + "min": [ + -2.4424457478744444e-07, + 0.3614461421966553, + 0.026841185986995697 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 79764, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 103632, + "componentType": 5126, + "count": 33, + "max": [ + 1.4901159417490817e-08, + -1.8625845310538125e-09, + 7.450580152834618e-09, + 1.0 + ], + "min": [ + -3.725289943190546e-08, + -3.7252835483059243e-08, + -1.4901162970204496e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 79896, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 161568, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80028, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 161964, + "componentType": 5126, + "count": 33, + "max": [ + 6.050220946463014e-08, + -0.15834163129329681, + -0.2537645697593689 + ], + "min": [ + -1.332128363173979e-07, + -0.1583431214094162, + -0.2537652254104614 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80160, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 104160, + "componentType": 5126, + "count": 33, + "max": [ + -0.998119592666626, + 1.4644592205570461e-08, + -2.2855701331536693e-07, + 0.061296772211790085 + ], + "min": [ + -0.998119592666626, + -1.4873348774813167e-08, + -2.5005130055433256e-07, + 0.0612967275083065 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 80292, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 162360, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80420, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 162744, + "componentType": 5126, + "count": 33, + "max": [ + 7.450580596923828e-08, + 0.2539476752281189, + 3.301346396256122e-07 + ], + "min": [ + -1.1920928244535389e-07, + 0.2539467513561249, + -1.5713297329966736e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80552, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 104688, + "componentType": 5126, + "count": 33, + "max": [ + 0.15613587200641632, + -1.1057729665253646e-07, + 1.841586971806919e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3623966310660762e-07, + -5.210707865188624e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 80684, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 163140, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80812, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 163524, + "componentType": 5126, + "count": 33, + "max": [ + 5.960464477539063e-08, + 0.25331947207450867, + 2.929437528109702e-07 + ], + "min": [ + -8.940696716308594e-08, + 0.2533189356327057, + -1.6100848654332367e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 80944, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 105216, + "componentType": 5126, + "count": 33, + "max": [ + -0.09231440722942352, + 4.1973017061991413e-08, + 1.3118317987448336e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + 3.196435116592511e-09, + -1.1373324504404536e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 81076, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 163920, + "componentType": 5126, + "count": 33, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 81208, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 164316, + "componentType": 5126, + "count": 33, + "max": [ + 1.1920928244535389e-07, + 0.263778954744339, + 2.844522271061578e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.2637782394886017, + -1.5471863434868283e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 81340, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 105744, + "componentType": 5126, + "count": 33, + "max": [ + 1.7828506448935855e-09, + -0.9896631240844727, + 0.14341172575950623, + 1.0408631823111136e-07 + ], + "min": [ + -2.1673459471571732e-08, + -0.9896631240844727, + 0.14341169595718384, + 7.364899090589461e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 81472, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 164712, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000007152557373, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 81604, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 165108, + "componentType": 5126, + "count": 33, + "max": [ + 1.52447967138869e-07, + 0.24314306676387787, + 0.18703320622444153 + ], + "min": [ + -6.702572363792569e-07, + 0.24314193427562714, + 0.18703192472457886 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 81736, + "componentType": 5126, + "count": 27, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 106272, + "componentType": 5126, + "count": 27, + "max": [ + 0.447833776473999, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 81844, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 165504, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 81976, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 165900, + "componentType": 5126, + "count": 33, + "max": [ + -0.2441893368959427, + -0.13046236336231232, + 0.029650337994098663 + ], + "min": [ + -0.2441897988319397, + -0.1304636299610138, + 0.029649678617715836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 82108, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 106704, + "componentType": 5126, + "count": 33, + "max": [ + 0.0074157132767140865, + -0.07428388297557831, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415674161165953, + -0.0742839127779007, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 82240, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 166296, + "componentType": 5126, + "count": 32, + "max": [ + 0.9999971985816956, + 1.0000001192092896, + 0.9999985098838806 + ], + "min": [ + 0.9999968409538269, + 0.9999997019767761, + 0.9999979734420776 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 82368, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 166680, + "componentType": 5126, + "count": 33, + "max": [ + 0.24341891705989838, + -0.1304631382226944, + 0.029650961980223656 + ], + "min": [ + 0.2434185892343521, + -0.13046452403068542, + 0.029649829491972923 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 82500, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 107232, + "componentType": 5126, + "count": 33, + "max": [ + 0.00741746136918664, + 0.07428370416164398, + 0.9923431277275085, + 0.09839750081300735 + ], + "min": [ + 0.007417428307235241, + 0.0742836445569992, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 82632, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 167076, + "componentType": 5126, + "count": 33, + "max": [ + 0.9999972581863403, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999968409538269, + 0.9999999403953552, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 82764, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 167472, + "componentType": 5126, + "count": 33, + "max": [ + -0.04481590539216995, + 0.5170735716819763, + 0.010738230310380459 + ], + "min": [ + -0.044816382229328156, + 0.5170727372169495, + 0.010737447068095207 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 82896, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 107760, + "componentType": 5126, + "count": 32, + "max": [ + -0.4885677993297577, + 0.5097403526306152, + 0.5511829853057861, + 0.5100313425064087 + ], + "min": [ + -0.5382573008537292, + 0.4722764492034912, + 0.5019243359565735, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 83024, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 167868, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 83152, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 168252, + "componentType": 5126, + "count": 33, + "max": [ + 0.011996648274362087, + 0.23416458070278168, + -0.03592190518975258 + ], + "min": [ + -0.018316850066184998, + 0.23292644321918488, + -0.06317096948623657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 83284, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 108272, + "componentType": 5126, + "count": 33, + "max": [ + -0.4485569894313812, + 0.25771763920783997, + 0.6840518712997437, + 0.8480995893478394 + ], + "min": [ + -0.5068991184234619, + 0.13565880060195923, + -0.12366031110286713, + 0.528911292552948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 83416, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 168648, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 83548, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 169044, + "componentType": 5126, + "count": 34, + "max": [ + 4.7130112079685205e-07, + 0.4048615097999573, + 4.445074068826216e-07 + ], + "min": [ + -4.7118808765844733e-07, + 0.40486103296279907, + -3.508555579401218e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 83684, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 108800, + "componentType": 5126, + "count": 33, + "max": [ + 0.16283386945724487, + 0.8195310831069946, + 0.6844664216041565, + 0.8590582609176636 + ], + "min": [ + -0.2882993817329407, + -0.25487056374549866, + 0.09411469101905823, + 0.556259036064148 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 83816, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 169452, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 83944, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 169836, + "componentType": 5126, + "count": 34, + "max": [ + 2.4120967623275646e-07, + 0.40327075123786926, + 1.037133685599656e-07 + ], + "min": [ + -2.5924887836481503e-07, + 0.4032703638076782, + -2.8938688956259284e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 84080, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 109328, + "componentType": 5126, + "count": 33, + "max": [ + 0.13021311163902283, + 0.14532309770584106, + -0.061739012598991394, + 0.993473470211029 + ], + "min": [ + 0.0632505938410759, + -0.19347018003463745, + -0.17424066364765167, + 0.9664468169212341 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 84212, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 170244, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 84344, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 170640, + "componentType": 5126, + "count": 32, + "max": [ + -0.0980420634150505, + 0.21963106095790863, + -0.0024725215043872595 + ], + "min": [ + -0.0980430319905281, + 0.21963036060333252, + -0.0024728705175220966 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 84472, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 109856, + "componentType": 5126, + "count": 33, + "max": [ + -0.5146673321723938, + 0.0499749518930912, + -0.08315925300121307, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997486621141434, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 84604, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 171024, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 84736, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 171420, + "componentType": 5126, + "count": 34, + "max": [ + 2.2160881485433492e-07, + 0.09750283509492874, + 6.017058353791072e-07 + ], + "min": [ + -2.52570629299953e-07, + 0.09750235080718994, + 1.1953515866025555e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 84872, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 110384, + "componentType": 5126, + "count": 33, + "max": [ + -0.4217608571052551, + 0.06273206323385239, + 0.00973181240260601, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273201107978821, + 0.009731699712574482, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 85004, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 171828, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 85136, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 172224, + "componentType": 5126, + "count": 34, + "max": [ + 0.016227198764681816, + 0.21308636665344238, + -0.003559231059625745 + ], + "min": [ + 0.016226325184106827, + 0.2130856215953827, + -0.0035597390960901976 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 85272, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 110912, + "componentType": 5126, + "count": 33, + "max": [ + -0.5430818200111389, + 0.06296975910663605, + -0.08177220076322556, + 0.8333128094673157 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 85404, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 172632, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 85532, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 173016, + "componentType": 5126, + "count": 34, + "max": [ + 2.4990265501401154e-07, + 0.0846501886844635, + -7.104162591531349e-09 + ], + "min": [ + -2.296751944186326e-07, + 0.0846494808793068, + -7.318491270780214e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 85668, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 111440, + "componentType": 5126, + "count": 33, + "max": [ + -0.4092182219028473, + 0.00202743848785758, + 0.008077453821897507, + 0.9123985767364502 + ], + "min": [ + -0.40921831130981445, + 0.002027380047366023, + 0.00807739794254303, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 85800, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 173424, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 85932, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 173820, + "componentType": 5126, + "count": 34, + "max": [ + -0.1118960902094841, + 0.10988978296518326, + -0.05163099989295006 + ], + "min": [ + -0.11189722269773483, + 0.109888955950737, + -0.05163154751062393 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 86068, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 111968, + "componentType": 5126, + "count": 33, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030042827129364, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363222360611, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 86200, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 174228, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 86332, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 174624, + "componentType": 5126, + "count": 34, + "max": [ + 2.070634792517012e-07, + 0.08512412756681442, + 6.440470912139062e-08 + ], + "min": [ + -5.066757466920535e-07, + 0.08512317389249802, + -2.594227055396914e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 86468, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 112496, + "componentType": 5126, + "count": 33, + "max": [ + 0.14811435341835022, + -0.12198015302419662, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 86600, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 175032, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 86732, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 175428, + "componentType": 5126, + "count": 34, + "max": [ + -0.005584577098488808, + 0.16604524850845337, + -0.03689396008849144 + ], + "min": [ + -0.006523285526782274, + 0.14337773621082306, + -0.045393746346235275 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 86868, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 113024, + "componentType": 5126, + "count": 33, + "max": [ + 0.6181666851043701, + 0.919834554195404, + 0.24978694319725037, + 0.3435755968093872 + ], + "min": [ + -0.5829432606697083, + -0.8982492089271545, + -0.02984294854104519, + 0.0010024461662396789 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 87000, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 175836, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 87132, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 176232, + "componentType": 5126, + "count": 33, + "max": [ + 0.13640360534191132, + 0.2850479483604431, + 0.0019401047611609101 + ], + "min": [ + 0.13640300929546356, + 0.2850469946861267, + 0.0019393900875002146 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 87264, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 113552, + "componentType": 5126, + "count": 33, + "max": [ + -5.89955284624466e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.4756768962342903e-07 + ], + "min": [ + -8.98347494171503e-08, + -0.693580687046051, + -0.7203789949417114, + 1.1716925030214043e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 87396, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 176628, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 87528, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 177024, + "componentType": 5126, + "count": 33, + "max": [ + -0.13640300929546356, + 0.2850474715232849, + 0.0019402886973693967 + ], + "min": [ + -0.13640348613262177, + 0.2850467562675476, + 0.0019395053386688232 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 87660, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 114080, + "componentType": 5126, + "count": 33, + "max": [ + -5.3942006417173616e-08, + -0.6935806274414063, + -0.7203789949417114, + 6.356959403319706e-08 + ], + "min": [ + -8.549728391926692e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.7082795500964494e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 87792, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 177420, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 87920, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 177804, + "componentType": 5126, + "count": 23, + "max": [ + 0.6391620635986328, + 1.3529030084609985, + -0.5495588779449463 + ], + "min": [ + 0.5208719968795776, + 0.28071069717407227, + -0.7378857135772705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88012, + "componentType": 5126, + "count": 31, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 178080, + "componentType": 5126, + "count": 31, + "max": [ + 0.7805294394493103, + 0.847515344619751, + -0.2435089349746704 + ], + "min": [ + 0.5804783701896667, + -0.5192721486091614, + -0.3652375340461731 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88136, + "componentType": 5126, + "count": 12, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 114608, + "componentType": 5126, + "count": 12, + "max": [ + 1.0, + 0.0, + 0.10972446948289871, + 0.6772181987762451 + ], + "min": [ + -0.9998824000358582, + -0.04675465077161789, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 88184, + "componentType": 5126, + "count": 7, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 178452, + "componentType": 5126, + "count": 7, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88212, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 178536, + "componentType": 5126, + "count": 32, + "max": [ + 5.2794814109802246e-05, + -3.376708264113404e-07, + -8.219868504966144e-06 + ], + "min": [ + -7.450580596923828e-08, + -2.807150849548634e-05, + -9.961678006220609e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88340, + "componentType": 5126, + "count": 13, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 114800, + "componentType": 5126, + "count": 13, + "max": [ + -0.9503704309463501, + 1.0236423264586847e-08, + 2.093656359392071e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -4.328151614885201e-09, + -1.3308199875439186e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 88392, + "componentType": 5126, + "count": 10, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 178920, + "componentType": 5126, + "count": 10, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999996423721313, + 0.9999999403953552, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88432, + "componentType": 5126, + "count": 31, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 179040, + "componentType": 5126, + "count": 31, + "max": [ + 5.960469451338213e-08, + 0.28250008821487427, + 9.247318644156621e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.28249964118003845, + -1.4034395690032397e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88556, + "componentType": 5126, + "count": 13, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 115008, + "componentType": 5126, + "count": 13, + "max": [ + -8.210087543147893e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.05137895420193672 + ], + "min": [ + -0.10723292082548141, + 0.8047910332679749, + -0.5815262198448181, + 4.2527329924268997e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 88608, + "componentType": 5126, + "count": 12, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 179412, + "componentType": 5126, + "count": 12, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88656, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 179556, + "componentType": 5126, + "count": 23, + "max": [ + -0.09779655933380127, + 0.3762730360031128, + -0.5952984690666199 + ], + "min": [ + -0.1404869556427002, + 0.3470693826675415, + -0.6873507499694824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88748, + "componentType": 5126, + "count": 12, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 179832, + "componentType": 5126, + "count": 12, + "max": [ + -0.33660733699798584, + 0.12358832359313965, + -0.2435077428817749 + ], + "min": [ + -0.3366074562072754, + -0.10095727443695068, + -0.3471442759037018 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88796, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 115216, + "componentType": 5126, + "count": 23, + "max": [ + 0.9929701089859009, + 0.11903512477874756, + 0.051588937640190125, + 0.4362110197544098 + ], + "min": [ + -0.9929081201553345, + -0.11836513131856918, + -0.011298115365207195, + 6.537721475297076e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 88888, + "componentType": 5126, + "count": 18, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 179976, + "componentType": 5126, + "count": 18, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 88960, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 180192, + "componentType": 5126, + "count": 33, + "max": [ + -3.11434268951416e-06, + 7.217877282528207e-06, + -9.361081538372673e-06 + ], + "min": [ + -3.294646739959717e-05, + -5.370295184548013e-06, + -9.300943929702044e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 89092, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 115584, + "componentType": 5126, + "count": 23, + "max": [ + -0.9503704309463501, + -4.715260626397821e-09, + 1.1021851875625543e-08, + 0.31112074851989746 + ], + "min": [ + -0.9503704309463501, + -2.7390623102974132e-08, + -3.640321377673672e-09, + 0.3111206591129303 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 89184, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 180588, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 89276, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 180864, + "componentType": 5126, + "count": 33, + "max": [ + 5.9604850832784e-08, + 0.2824999988079071, + 2.2501066609947884e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.2824997901916504, + -1.1801090238350298e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 89408, + "componentType": 5126, + "count": 22, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 115952, + "componentType": 5126, + "count": 22, + "max": [ + -7.650709932249811e-08, + 0.9799736142158508, + 0.1895543485879898, + 0.09776406735181808 + ], + "min": [ + -0.04113643988966942, + -0.9818702340126038, + -0.5997859239578247, + 4.29782232913567e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 89496, + "componentType": 5126, + "count": 23, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 181260, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 89588, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 181536, + "componentType": 5126, + "count": 51, + "max": [ + 0.17401377856731415, + 0.6346738934516907, + -1.1009986400604248 + ], + "min": [ + 0.17401336133480072, + 0.3868374824523926, + -1.4458401203155518 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 89792, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 116304, + "componentType": 5126, + "count": 42, + "max": [ + 0.09938555955886841, + 0.02604241669178009, + 0.3412596583366394, + 0.9957106113433838 + ], + "min": [ + 0.08201290667057037, + -0.0006885497132316232, + 0.034001726657152176, + 0.9360222220420837 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 89960, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 182148, + "componentType": 5126, + "count": 40, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 90120, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 182628, + "componentType": 5126, + "count": 51, + "max": [ + 5.960475135680099e-08, + 0.0021274536848068237, + 1.192093463942001e-07 + ], + "min": [ + -5.960454174669394e-08, + 0.0021273046731948853, + -1.1920930376163597e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 90324, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 116976, + "componentType": 5126, + "count": 42, + "max": [ + 0.7071067690849304, + 3.3618877637309197e-07, + -2.8292899401094473e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9002890755691624e-07, + -3.2200949817706714e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 90492, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 183240, + "componentType": 5126, + "count": 40, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 90652, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 183720, + "componentType": 5126, + "count": 51, + "max": [ + 0.173818439245224, + 0.13409864902496338, + 9.105481524329662e-08 + ], + "min": [ + 0.1738182008266449, + 0.13409805297851563, + -1.4092847777646966e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 90856, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 117648, + "componentType": 5126, + "count": 51, + "max": [ + -0.3123283386230469, + 0.013014927506446838, + -0.18857485055923462, + 0.9185805320739746 + ], + "min": [ + -0.5032782554626465, + -0.2617306411266327, + -0.3538982570171356, + 0.7675886750221252 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 91060, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 184332, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 91264, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 184944, + "componentType": 5126, + "count": 51, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 1.7558613762957975e-07 + ], + "min": [ + -8.800526529739727e-08, + 0.635611355304718, + -1.2009158467662928e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 91468, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 118464, + "componentType": 5126, + "count": 51, + "max": [ + 0.7124428749084473, + 2.3378872171520015e-08, + 9.129527001050519e-08, + 0.9829415082931519 + ], + "min": [ + 0.18391864001750946, + -1.5563992761258305e-08, + -3.3653418540779967e-07, + 0.7017301321029663 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 91672, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 185556, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999994039535522, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 91876, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 186168, + "componentType": 5126, + "count": 51, + "max": [ + -0.17381829023361206, + 0.13409876823425293, + 7.828137427168258e-08 + ], + "min": [ + -0.17381834983825684, + 0.13409793376922607, + -1.0050413834505889e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 92080, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 119280, + "componentType": 5126, + "count": 51, + "max": [ + 0.15266430377960205, + -0.24702133238315582, + 0.20662106573581696, + 0.9659742712974548 + ], + "min": [ + -0.2593625783920288, + -0.43020424246788025, + 0.058350078761577606, + 0.8510810136795044 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 92284, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 186780, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000001192092896 + ], + "min": [ + 0.999999463558197, + 0.999999463558197, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 92488, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 187392, + "componentType": 5126, + "count": 51, + "max": [ + 5.092488564173436e-08, + 0.6356115937232971, + 3.5568611167491326e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.635611355304718, + -2.8565800391788798e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 92692, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 120096, + "componentType": 5126, + "count": 51, + "max": [ + 0.6991674900054932, + 2.2661140519630862e-08, + 7.078975841068313e-07, + 0.9771717190742493 + ], + "min": [ + 0.21245092153549194, + -3.5063028036574906e-08, + 1.566301932598435e-08, + 0.7149579524993896 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 92896, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 188004, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000009536743164 + ], + "min": [ + 0.9999997615814209, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 93100, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 188616, + "componentType": 5126, + "count": 51, + "max": [ + 5.960453464126658e-08, + 0.0021274308674037457, + 2.3841825225190405e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.002127378946170211, + -2.3848070895837736e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 93304, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 120912, + "componentType": 5126, + "count": 42, + "max": [ + -0.6632264852523804, + 0.08890437334775925, + -0.07420548051595688, + 0.7400888204574585 + ], + "min": [ + -0.6894406080245972, + 0.07421103864908218, + -0.0830177590250969, + 0.7150253057479858 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 93472, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 189228, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 93632, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 189708, + "componentType": 5126, + "count": 51, + "max": [ + 5.960464477539063e-08, + 0.2726660966873169, + 5.9332716517701556e-08 + ], + "min": [ + -2.980232594040899e-08, + 0.2726656198501587, + -4.490699012649202e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 93836, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 121584, + "componentType": 5126, + "count": 51, + "max": [ + 0.32226499915122986, + -0.12260671705007553, + 0.01280413381755352, + 0.9911590814590454 + ], + "min": [ + -0.01226209569722414, + -0.1326945722103119, + 0.003351052524521947, + 0.9386171102523804 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 94040, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 190320, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 94244, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 190932, + "componentType": 5126, + "count": 51, + "max": [ + 0.044816210865974426, + 0.5170735716819763, + 0.010738268494606018 + ], + "min": [ + 0.044816091656684875, + 0.5170726180076599, + 0.010737727396190166 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 94448, + "componentType": 5126, + "count": 45, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 122400, + "componentType": 5126, + "count": 45, + "max": [ + -0.48639869689941406, + -0.407898485660553, + -0.5077667832374573, + 0.4933369755744934 + ], + "min": [ + -0.5765504240989685, + -0.5101151466369629, + -0.5935590863227844, + 0.38844114542007446 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 94628, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 191544, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 94832, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 192156, + "componentType": 5126, + "count": 51, + "max": [ + 1.696718783250617e-07, + 0.271640419960022, + -0.07664656639099121 + ], + "min": [ + -0.003994293976575136, + 0.23812510073184967, + -0.07722858339548111 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 95036, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 123120, + "componentType": 5126, + "count": 51, + "max": [ + -0.11852431297302246, + 0.1319573074579239, + -0.3151170313358307, + 0.7096253633499146 + ], + "min": [ + -0.642411470413208, + -0.26214760541915894, + -0.7733848690986633, + 0.56489497423172 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 95240, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 192768, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 95444, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 193380, + "componentType": 5126, + "count": 51, + "max": [ + 2.3140277960465028e-07, + 0.4048615097999573, + 3.2563008289798745e-07 + ], + "min": [ + -1.412427081959322e-07, + 0.40486103296279907, + 8.313804045201323e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 95648, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 123936, + "componentType": 5126, + "count": 51, + "max": [ + -0.1449689120054245, + -0.03892313688993454, + -0.13755248486995697, + 0.9615857005119324 + ], + "min": [ + -0.2603476643562317, + -0.35824787616729736, + -0.21301016211509705, + 0.8974026441574097 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 95852, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 193992, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 96056, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 194604, + "componentType": 5126, + "count": 51, + "max": [ + 2.3772435042701545e-07, + 0.4032706022262573, + 1.2691056383573596e-07 + ], + "min": [ + -2.42536486894096e-07, + 0.40327024459838867, + -1.8169441773352446e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 96260, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 124752, + "componentType": 5126, + "count": 51, + "max": [ + 0.027184706181287766, + -0.04093925282359123, + 0.17102262377738953, + 0.9842103123664856 + ], + "min": [ + -0.31580978631973267, + -0.6445266008377075, + -0.2925696074962616, + 0.6813332438468933 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 96464, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 195216, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 96668, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 195828, + "componentType": 5126, + "count": 51, + "max": [ + 0.09804292768239975, + 0.21963073313236237, + -0.002472464693710208 + ], + "min": [ + 0.0980423167347908, + 0.2196304202079773, + -0.002472908701747656 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 96872, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 125568, + "componentType": 5126, + "count": 51, + "max": [ + -0.622336745262146, + -0.0009816745296120644, + 0.03366420418024063, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817329701036215, + 0.033664148300886154, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 97076, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 196440, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 97280, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 197052, + "componentType": 5126, + "count": 51, + "max": [ + 2.5840728312687133e-07, + 0.09750291705131531, + 4.7202726705108944e-07 + ], + "min": [ + -2.1873525213322864e-07, + 0.09750255197286606, + 2.978270572384645e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 97484, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 126384, + "componentType": 5126, + "count": 51, + "max": [ + -0.5302280783653259, + 0.002465976169332862, + -0.053395938128232956, + 0.8461683988571167 + ], + "min": [ + -0.5302281975746155, + 0.002465900033712387, + -0.05339599773287773, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 97688, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 197664, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 97892, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 198276, + "componentType": 5126, + "count": 51, + "max": [ + -0.016226477921009064, + 0.21308621764183044, + -0.003559259232133627 + ], + "min": [ + -0.016227178275585175, + 0.21308594942092896, + -0.003559740027412772 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 98096, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 127200, + "componentType": 5126, + "count": 49, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480834424495697, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480830699205399, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 98292, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 198888, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 98496, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 199500, + "componentType": 5126, + "count": 51, + "max": [ + 1.1310732617175745e-07, + 0.08465008437633514, + -2.0660282018525322e-07 + ], + "min": [ + -2.475616724950669e-07, + 0.0846497192978859, + -4.1924914739865926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 98700, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 127984, + "componentType": 5126, + "count": 51, + "max": [ + -0.5015431642532349, + -0.001179647515527904, + -0.00824400968849659, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797113111242652, + -0.008244043216109276, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 98904, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 200112, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 99108, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 200724, + "componentType": 5126, + "count": 51, + "max": [ + 0.11189700663089752, + 0.10988953709602356, + -0.05163111910223961 + ], + "min": [ + 0.11189638823270798, + 0.10988903045654297, + -0.051631636917591095 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 99312, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 128800, + "componentType": 5126, + "count": 50, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.8147835731506348 + ], + "min": [ + -0.45730361342430115, + 0.16493290662765503, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 99512, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 201336, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 99716, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 201948, + "componentType": 5126, + "count": 51, + "max": [ + 1.0897640123630481e-07, + 0.08512447774410248, + 2.4849438773344446e-07 + ], + "min": [ + -2.58251219520389e-07, + 0.08512351661920547, + -8.714319221780897e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 99920, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 129600, + "componentType": 5126, + "count": 51, + "max": [ + 0.022910596802830696, + 0.012835810892283916, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.02291051484644413, + 0.012835728004574776, + 0.6957961916923523, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 100124, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 202560, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 100328, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 203172, + "componentType": 5126, + "count": 51, + "max": [ + 0.0055852592922747135, + 0.16604463756084442, + -0.04539324715733528 + ], + "min": [ + 0.00558455940335989, + 0.16604435443878174, + -0.045393720269203186 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 100532, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 130416, + "componentType": 5126, + "count": 51, + "max": [ + 0.6181666851043701, + 0.8707951903343201, + -0.03350188955664635, + 0.07020688056945801 + ], + "min": [ + 0.4159707725048065, + 0.7849701046943665, + -0.2524978220462799, + 0.023865368217229843 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 100736, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 203784, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 100940, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 204396, + "componentType": 5126, + "count": 51, + "max": [ + 1.1920930376163597e-07, + 0.5450077652931213, + 1.821316573114018e-07 + ], + "min": [ + -8.940699558479537e-08, + 0.5450068116188049, + -2.438352737499372e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 101144, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 131232, + "componentType": 5126, + "count": 51, + "max": [ + 0.05530843883752823, + 0.06078564003109932, + 0.0030450269114226103, + 0.9987399578094482 + ], + "min": [ + -0.06648373603820801, + 0.049561381340026855, + -0.07582127302885056, + 0.994803249835968 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 101348, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 205008, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 101552, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 205620, + "componentType": 5126, + "count": 51, + "max": [ + 8.940696716308594e-08, + 0.11002874374389648, + 1.1734664440155029e-07 + ], + "min": [ + -8.940695295223122e-08, + 0.11002779006958008, + -1.8067657947540283e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 101756, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 132048, + "componentType": 5126, + "count": 51, + "max": [ + 0.03640257567167282, + 0.05933791771531105, + 0.0021049240604043007, + 0.998732328414917 + ], + "min": [ + -0.08535563200712204, + 0.04959733039140701, + -0.07695947587490082, + 0.9951114058494568 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 101960, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 206232, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 102164, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 206844, + "componentType": 5126, + "count": 51, + "max": [ + -5.825987248186948e-09, + 0.361447811126709, + 0.02684193104505539 + ], + "min": [ + -2.7404689717513975e-07, + 0.3614463806152344, + 0.0268414244055748 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 102368, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 132864, + "componentType": 5126, + "count": 51, + "max": [ + 3.725289587919178e-08, + -7.4505175362560294e-09, + 1.5366818928441717e-08, + 1.0 + ], + "min": [ + -2.9802322387695313e-08, + -4.0512471599640776e-08, + -7.916241884231567e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 102572, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 207456, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 102776, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 208068, + "componentType": 5126, + "count": 51, + "max": [ + 1.2010688976715755e-07, + -0.1583413928747177, + -0.2537645697593689 + ], + "min": [ + -1.4003667558881716e-08, + -0.15834306180477142, + -0.2537651062011719 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 102980, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 133680, + "componentType": 5126, + "count": 51, + "max": [ + -0.998119592666626, + 7.081492725546923e-09, + -2.156571810019159e-07, + 0.061296772211790085 + ], + "min": [ + -0.998119592666626, + -1.4400461267882747e-08, + -2.354910719759573e-07, + 0.061296720057725906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 103184, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 208680, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 0.9999719858169556 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 103388, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 209292, + "componentType": 5126, + "count": 51, + "max": [ + 5.960467319710006e-08, + 0.25394749641418457, + 2.565963654888037e-07 + ], + "min": [ + -8.940699558479537e-08, + 0.2539469599723816, + -1.2036383623126312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 103592, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 134496, + "componentType": 5126, + "count": 51, + "max": [ + 0.15613587200641632, + -1.2123042836265085e-07, + 3.4054171038633285e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613581240177155, + -1.404787752790071e-07, + -2.305596158436174e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 103796, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 209904, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 104000, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 210516, + "componentType": 5126, + "count": 51, + "max": [ + 5.960464477539063e-08, + 0.25331953167915344, + 1.3909300378145417e-07 + ], + "min": [ + -4.470348358154297e-08, + 0.2533189654350281, + -1.8292398351604788e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 104204, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 135312, + "componentType": 5126, + "count": 51, + "max": [ + -0.09231439977884293, + 1.143204553244459e-08, + 1.6597338614587898e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -1.727277698648777e-08, + -1.543982186547055e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 104408, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 211128, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 104612, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 211740, + "componentType": 5126, + "count": 51, + "max": [ + 5.960463411724959e-08, + 0.26377883553504944, + 2.415875428596337e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.263778418302536, + -8.853969291067187e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 104816, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 136128, + "componentType": 5126, + "count": 51, + "max": [ + 1.5340306802613668e-08, + -0.9896631240844727, + 0.1434117704629898, + 9.01441623568644e-08 + ], + "min": [ + -1.2136409210938837e-08, + -0.9896631240844727, + 0.14341171085834503, + 4.674898690382179e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 105020, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 212352, + "componentType": 5126, + "count": 50, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 105220, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 212952, + "componentType": 5126, + "count": 51, + "max": [ + 2.724447654145479e-07, + 0.24314305186271667, + 0.18703308701515198 + ], + "min": [ + -1.860656766439206e-07, + 0.2431420385837555, + 0.18703220784664154 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 105424, + "componentType": 5126, + "count": 29, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 136944, + "componentType": 5126, + "count": 29, + "max": [ + 0.44783374667167664, + -0.23266471922397614, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 105540, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 213564, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 105744, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 214176, + "componentType": 5126, + "count": 51, + "max": [ + -0.24418926239013672, + -0.1304623782634735, + 0.029650336131453514 + ], + "min": [ + -0.24418959021568298, + -0.13046403229236603, + 0.029649866744875908 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 105948, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 137408, + "componentType": 5126, + "count": 51, + "max": [ + 0.007415720261633396, + -0.0742838978767395, + -0.9923430681228638, + 0.09839732199907303 + ], + "min": [ + 0.0074156904593110085, + -0.07428395003080368, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 106152, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 214788, + "componentType": 5126, + "count": 51, + "max": [ + 0.9999974370002747, + 1.0000003576278687, + 0.9999985098838806 + ], + "min": [ + 0.9999970197677612, + 0.9999997019767761, + 0.9999980926513672 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 106356, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 215400, + "componentType": 5126, + "count": 51, + "max": [ + 0.2434188574552536, + -0.1304635852575302, + 0.029650559648871422 + ], + "min": [ + 0.24341847002506256, + -0.1304648071527481, + 0.029649870470166206 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 106560, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 138224, + "componentType": 5126, + "count": 51, + "max": [ + 0.0074174548499286175, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417423650622368, + 0.0742836445569992, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 106764, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 216012, + "componentType": 5126, + "count": 50, + "max": [ + 0.9999974370002747, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999968409538269, + 0.9999999403953552, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 106964, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 216612, + "componentType": 5126, + "count": 51, + "max": [ + -0.04481605440378189, + 0.5170735716819763, + 0.010738239623606205 + ], + "min": [ + -0.04481629282236099, + 0.517072856426239, + 0.010737762786448002 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 107168, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 139040, + "componentType": 5126, + "count": 48, + "max": [ + -0.4946054220199585, + 0.4722765386104584, + 0.5511830449104309, + 0.4780353605747223 + ], + "min": [ + -0.49460554122924805, + 0.47227638959884644, + 0.5511829257011414, + 0.47803521156311035 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 107360, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 217224, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 107564, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 217836, + "componentType": 5126, + "count": 51, + "max": [ + -0.01529525313526392, + 0.23431745171546936, + -0.06294260174036026 + ], + "min": [ + -0.018316730856895447, + 0.23416422307491302, + -0.06317073106765747 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 107768, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 139808, + "componentType": 5126, + "count": 51, + "max": [ + -0.3277077078819275, + 0.6286129951477051, + 0.643722653388977, + 0.8598234057426453 + ], + "min": [ + -0.5230222344398499, + 0.23874224722385406, + -0.1480710655450821, + 0.12952421605587006 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 107972, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 218448, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 108176, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 219060, + "componentType": 5126, + "count": 51, + "max": [ + 2.6684560339163e-07, + 0.40486153960227966, + 2.9348132102313684e-07 + ], + "min": [ + -2.3835704610064568e-07, + 0.40486103296279907, + 8.338473378444178e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 108380, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 140624, + "componentType": 5126, + "count": 51, + "max": [ + -0.07846454530954361, + -0.06849706172943115, + 0.5789021849632263, + 0.9695003032684326 + ], + "min": [ + -0.47058966755867004, + -0.5579801201820374, + -0.011231588199734688, + 0.640453040599823 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 108584, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 219672, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 108788, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 220284, + "componentType": 5126, + "count": 51, + "max": [ + 2.4556180733270594e-07, + 0.40327075123786926, + 7.788456457547e-08 + ], + "min": [ + -2.529775429138681e-07, + 0.40327024459838867, + -1.72053944424988e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 108992, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 141440, + "componentType": 5126, + "count": 51, + "max": [ + 0.13021311163902283, + 0.07506401091814041, + -0.1742406040430069, + 0.9771276712417603 + ], + "min": [ + -0.1991860717535019, + -0.20300211012363434, + -0.3494303524494171, + 0.9349989891052246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 109196, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 220896, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 109396, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 221496, + "componentType": 5126, + "count": 51, + "max": [ + -0.09804220497608185, + 0.21963100135326385, + -0.0024724225513637066 + ], + "min": [ + -0.0980430394411087, + 0.2196303904056549, + -0.0024729561991989613 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 109600, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 142256, + "componentType": 5126, + "count": 51, + "max": [ + -0.5146673321723938, + 0.04997498542070389, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997490346431732, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 109804, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 222108, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 110008, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 222720, + "componentType": 5126, + "count": 51, + "max": [ + 2.2497587792713603e-07, + 0.09750283509492874, + 4.820809067496157e-07 + ], + "min": [ + -2.5407507564523257e-07, + 0.09750247001647949, + 2.1168833086449013e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 110212, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 143072, + "componentType": 5126, + "count": 51, + "max": [ + -0.4217608869075775, + 0.06273211538791656, + 0.009731821715831757, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320408821106, + 0.009731721132993698, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 110416, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 223332, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 110620, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 223944, + "componentType": 5126, + "count": 51, + "max": [ + 0.01622752472758293, + 0.21308645606040955, + -0.0035594054497778416 + ], + "min": [ + 0.01622656174004078, + 0.2130858451128006, + -0.0035597372334450483 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 110824, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 143888, + "componentType": 5126, + "count": 50, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177221566438675, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296968460083008, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 111024, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 224556, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 111228, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 225168, + "componentType": 5126, + "count": 51, + "max": [ + 4.868002179136965e-07, + 0.08465012162923813, + -7.654571021475931e-08 + ], + "min": [ + -2.2929563670004427e-07, + 0.0846497043967247, + -3.720317920397065e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 111432, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 144688, + "componentType": 5126, + "count": 51, + "max": [ + -0.4092182219028473, + 0.0020274657290428877, + 0.008077441714704037, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274242851883173, + 0.008077388629317284, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 111636, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 225780, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 111840, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 226392, + "componentType": 5126, + "count": 51, + "max": [ + -0.1118963360786438, + 0.10988972336053848, + -0.051630955189466476 + ], + "min": [ + -0.11189714074134827, + 0.10988905280828476, + -0.05163167789578438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 112044, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 145504, + "componentType": 5126, + "count": 51, + "max": [ + -0.432245671749115, + -0.12903624773025513, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363371372223, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 112248, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 227004, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 112452, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 227616, + "componentType": 5126, + "count": 51, + "max": [ + 2.0638253772631288e-07, + 0.08512405306100845, + 1.2341062927134772e-07 + ], + "min": [ + -2.816092035118345e-07, + 0.08512368053197861, + -1.3934480591615284e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 112656, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 146320, + "componentType": 5126, + "count": 51, + "max": [ + 0.1481143981218338, + -0.12198014557361603, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.1219802126288414, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 112860, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 228228, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 113064, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 228840, + "componentType": 5126, + "count": 51, + "max": [ + -0.006522390525788069, + 0.14337845146656036, + -0.036893993616104126 + ], + "min": [ + -0.030217362567782402, + 0.12311173230409622, + -0.08224636316299438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 113268, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 147136, + "componentType": 5126, + "count": 51, + "max": [ + 0.36276766657829285, + 0.9225618243217468, + 0.24978694319725037, + 0.3363419771194458 + ], + "min": [ + -0.5989674925804138, + -0.9243639707565308, + -0.12073811888694763, + 0.008884135633707047 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 113472, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 229452, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 113676, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 230064, + "componentType": 5126, + "count": 51, + "max": [ + 0.13640330731868744, + 0.2850474715232849, + 0.0019400957971811295 + ], + "min": [ + 0.1364031285047531, + 0.28504687547683716, + 0.0019395551644265652 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 113880, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 147952, + "componentType": 5126, + "count": 51, + "max": [ + -6.104420435804059e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.529598847582747e-07 + ], + "min": [ + -9.924466581878733e-08, + -0.693580687046051, + -0.7203789949417114, + 1.2869647036950482e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 114084, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 230676, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 114288, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 231288, + "componentType": 5126, + "count": 51, + "max": [ + -0.1364031583070755, + 0.2850474715232849, + 0.0019399818265810609 + ], + "min": [ + -0.13640332221984863, + 0.2850469946861267, + 0.0019395648268982768 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 114492, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 148768, + "componentType": 5126, + "count": 51, + "max": [ + -4.468660108614131e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.533272767228482e-08 + ], + "min": [ + -9.544780965597965e-08, + -0.693580687046051, + -0.7203789949417114, + 4.252490626299732e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 114696, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 231900, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 114900, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 232512, + "componentType": 5126, + "count": 1, + "max": [ + 0.6391620635986328, + 1.352902889251709, + -0.5495589971542358 + ], + "min": [ + 0.6391620635986328, + 1.352902889251709, + -0.5495589971542358 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 114904, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 232524, + "componentType": 5126, + "count": 1, + "max": [ + 0.7422959208488464, + 0.8475151062011719, + -0.2435089349746704 + ], + "min": [ + 0.7422959208488464, + 0.8475151062011719, + -0.2435089349746704 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 114908, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 149584, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 114912, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 232536, + "componentType": 5126, + "count": 51, + "max": [ + 5.303323268890381e-05, + -8.888227966963314e-07, + -3.8063071770011447e-06 + ], + "min": [ + 1.0579824447631836e-06, + -1.404939393978566e-05, + -9.981224866351113e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115116, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 233148, + "componentType": 5126, + "count": 51, + "max": [ + 5.960467319710006e-08, + 0.2824999690055847, + 7.575991389785486e-08 + ], + "min": [ + -2.5816310623549138e-14, + 0.2824997305870056, + -6.830933330093103e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115320, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 233760, + "componentType": 5126, + "count": 1, + "max": [ + -0.09779655933380127, + 0.37627315521240234, + -0.6873507499694824 + ], + "min": [ + -0.09779655933380127, + 0.37627315521240234, + -0.6873507499694824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115324, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 233772, + "componentType": 5126, + "count": 1, + "max": [ + -0.3366074562072754, + -0.10095727443695068, + -0.3471442759037018 + ], + "min": [ + -0.3366074562072754, + -0.10095727443695068, + -0.3471442759037018 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115328, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 149600, + "componentType": 5126, + "count": 1, + "max": [ + -0.8957051038742065, + 0.08558553457260132, + -0.011298113502562046, + 0.4361879229545593 + ], + "min": [ + -0.8957051038742065, + 0.08558553457260132, + -0.011298113502562046, + 0.4361879229545593 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 115332, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 233784, + "componentType": 5126, + "count": 51, + "max": [ + -1.5944242477416992e-06, + 6.912661774549633e-06, + -7.122822353267111e-06 + ], + "min": [ + -3.133714199066162e-05, + -1.5524088667007163e-05, + -9.539666643831879e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115536, + "componentType": 5126, + "count": 50, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 234396, + "componentType": 5126, + "count": 50, + "max": [ + 5.960464477539063e-08, + 0.28249984979629517, + 1.755562806238231e-08 + ], + "min": [ + -2.980233659855003e-08, + 0.2824998199939728, + -1.5651815843398253e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115736, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 149616, + "componentType": 5126, + "count": 1, + "max": [ + -0.04113643243908882, + 0.793099582195282, + -0.5997858047485352, + 0.09776405245065689 + ], + "min": [ + -0.04113643243908882, + 0.793099582195282, + -0.5997858047485352, + 0.09776405245065689 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 115740, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 234996, + "componentType": 5126, + "count": 32, + "max": [ + 0.0, + 0.0, + 3.175144910812378 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 115868, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 149632, + "componentType": 5126, + "count": 33, + "max": [ + 0.7071067690849304, + 0.7032986879348755, + 0.7066393494606018, + 0.7071067690849304 + ], + "min": [ + 0.025707682594656944, + -0.7066393494606018, + -0.7032987475395203, + 0.025706902146339417 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 116000, + "componentType": 5126, + "count": 27, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 235380, + "componentType": 5126, + "count": 27, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 116108, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 235704, + "componentType": 5126, + "count": 41, + "max": [ + 0.17401336133480072, + 0.3868374824523926, + -1.108318567276001 + ], + "min": [ + -0.2148650735616684, + -0.01811172068119049, + -1.5585050582885742 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 116272, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 150160, + "componentType": 5126, + "count": 41, + "max": [ + 0.08542833477258682, + 0.0667368471622467, + 0.34705257415771484, + 0.9841102361679077 + ], + "min": [ + -0.18403750658035278, + 0.010309961624443531, + 0.14161641895771027, + 0.9331964254379272 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 116436, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 236196, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 116600, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 236688, + "componentType": 5126, + "count": 41, + "max": [ + 2.384185791015625e-07, + 0.00212763249874115, + 3.576279254957626e-07 + ], + "min": [ + -1.1920938902676426e-07, + 0.0021271556615829468, + -2.3841863594498136e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 116764, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 150816, + "componentType": 5126, + "count": 41, + "max": [ + 0.7071067690849304, + 0.12842774391174316, + 0.271192729473114, + 0.7171277403831482 + ], + "min": [ + 0.6370629072189331, + 3.0138880902086385e-07, + -3.1262521815733635e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 116928, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 237180, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 117092, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 237672, + "componentType": 5126, + "count": 41, + "max": [ + 0.17381855845451355, + 0.13409863412380219, + 7.274521749423002e-07 + ], + "min": [ + 0.17381814122200012, + 0.13409782946109772, + -9.412125905328139e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 117256, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 151472, + "componentType": 5126, + "count": 41, + "max": [ + 0.1214720830321312, + 0.24454940855503082, + 0.03538309410214424, + 0.9736804366111755 + ], + "min": [ + -0.5842591524124146, + -0.36890658736228943, + -0.2181294709444046, + 0.7572445869445801 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 117420, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 238164, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999992251396179, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 117584, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 238656, + "componentType": 5126, + "count": 41, + "max": [ + 1.5041331380416523e-07, + 0.6356117129325867, + 2.4406745069427416e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356112360954285, + -2.608844624774065e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 117748, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 152128, + "componentType": 5126, + "count": 41, + "max": [ + 0.6241153478622437, + 4.3702101493181544e-08, + 1.1514605802176447e-07, + 0.9829381704330444 + ], + "min": [ + 0.18393652141094208, + -3.0373982440323744e-08, + -1.18474204668928e-07, + 0.78133225440979 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 117912, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 239148, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 118076, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 239640, + "componentType": 5126, + "count": 41, + "max": [ + -0.17381808161735535, + 0.13409876823425293, + 4.911968858323235e-07 + ], + "min": [ + -0.173818439245224, + 0.13409805297851563, + -4.6870189862602274e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 118240, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 152784, + "componentType": 5126, + "count": 41, + "max": [ + 0.20890681445598602, + 0.102475605905056, + 0.3412047028541565, + 0.9950087070465088 + ], + "min": [ + -0.17641401290893555, + -0.3106015920639038, + 0.004919618833810091, + 0.9241477847099304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 118404, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 240132, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999993443489075, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 118568, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 240624, + "componentType": 5126, + "count": 41, + "max": [ + 2.5954113880288787e-07, + 0.6356115341186523, + 2.4436198486910143e-07 + ], + "min": [ + -9.808672274402852e-08, + 0.6356114149093628, + -2.391406326296419e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 118732, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 153440, + "componentType": 5126, + "count": 41, + "max": [ + 0.6187312006950378, + 7.401055768241349e-08, + 4.7308080297625565e-07, + 0.9735745191574097 + ], + "min": [ + 0.22836950421333313, + -3.274327653457476e-08, + 1.5415224652315374e-07, + 0.7856028079986572 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 118896, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 241116, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999993443489075, + 0.9999992847442627, + 0.9999990463256836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 119060, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 241608, + "componentType": 5126, + "count": 41, + "max": [ + 2.384185791015625e-07, + 0.0021276322659105062, + 1.1950918121783616e-07 + ], + "min": [ + -5.960475846222835e-08, + 0.0021271556615829468, + -2.388183020229917e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 119224, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 154096, + "componentType": 5126, + "count": 41, + "max": [ + -0.5735625624656677, + 0.07421106845140457, + 0.08642063289880753, + 0.8143857717514038 + ], + "min": [ + -0.6632264852523804, + 0.018257619813084602, + -0.0830177441239357, + 0.7400888204574585 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 119388, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 242100, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 119552, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 242592, + "componentType": 5126, + "count": 41, + "max": [ + 1.1920928955078125e-07, + 0.2726660966873169, + 2.4666374542903213e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2726653814315796, + -4.853915811509069e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 119716, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 154752, + "componentType": 5126, + "count": 41, + "max": [ + 0.17607004940509796, + 7.702494198014165e-10, + 0.10286854952573776, + 0.9998360276222229 + ], + "min": [ + -0.11634451150894165, + -0.11554925888776779, + 6.619262915563695e-09, + 0.9770765900611877 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 119880, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 243084, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 120044, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 243576, + "componentType": 5126, + "count": 41, + "max": [ + 0.0448165088891983, + 0.5170735716819763, + 0.010738290846347809 + ], + "min": [ + 0.044815793633461, + 0.5170726180076599, + 0.01073748990893364 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 120208, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 155408, + "componentType": 5126, + "count": 41, + "max": [ + -0.1853695809841156, + -0.40789851546287537, + -0.5077667832374573, + 0.5093849301338196 + ], + "min": [ + -0.5765504240989685, + -0.6581334471702576, + -0.6756433248519897, + 0.27568936347961426 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 120372, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 244068, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 120536, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 244560, + "componentType": 5126, + "count": 41, + "max": [ + 0.014178977347910404, + 0.27157512307167053, + -0.0565364696085453 + ], + "min": [ + -0.0009781798580661416, + 0.2375803142786026, + -0.07722858339548111 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 120700, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 156064, + "componentType": 5126, + "count": 41, + "max": [ + 0.17361557483673096, + 0.11239829659461975, + -0.5367972254753113, + 0.817520022392273 + ], + "min": [ + -0.6005299687385559, + -0.1236649826169014, + -0.6489506363868713, + 0.5789843797683716 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 120864, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 245052, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 121028, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 245544, + "componentType": 5126, + "count": 41, + "max": [ + 1.7819546371811157e-07, + 0.4048615097999573, + 6.810304284954327e-07 + ], + "min": [ + -1.9221702984850708e-07, + 0.40486079454421997, + -3.615469168494201e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 121192, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 156720, + "componentType": 5126, + "count": 41, + "max": [ + 0.3022707998752594, + 0.2697996497154236, + -0.20304878056049347, + 0.9362457394599915 + ], + "min": [ + -0.2603476345539093, + -0.12014267593622208, + -0.5606059432029724, + 0.7752666473388672 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 121356, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 246036, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 121520, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 246528, + "componentType": 5126, + "count": 41, + "max": [ + 1.465207759565601e-07, + 0.4032707214355469, + 1.9658189387428138e-07 + ], + "min": [ + -2.342039380209826e-07, + 0.40327003598213196, + -2.990273628711293e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 121684, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 157376, + "componentType": 5126, + "count": 41, + "max": [ + 0.2022227793931961, + 0.43629467487335205, + 0.11546798050403595, + 0.9897404313087463 + ], + "min": [ + -0.3158074915409088, + -0.48108646273612976, + -0.16346879303455353, + 0.8096225261688232 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 121848, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 247020, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 122012, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 247512, + "componentType": 5126, + "count": 41, + "max": [ + 0.09804306924343109, + 0.21963101625442505, + -0.0024722458329051733 + ], + "min": [ + 0.09804187715053558, + 0.21963027119636536, + -0.00247317086905241 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 122176, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 158032, + "componentType": 5126, + "count": 41, + "max": [ + -0.6223368048667908, + -0.0009816496167331934, + 0.03366421163082123, + 0.7820247411727905 + ], + "min": [ + -0.6223368644714355, + -0.0009817281970754266, + 0.033664144575595856, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 122340, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 248004, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 122504, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 248496, + "componentType": 5126, + "count": 41, + "max": [ + 3.6791490742871247e-07, + 0.09750314801931381, + 8.152254622473265e-07 + ], + "min": [ + -2.3043912733555771e-07, + 0.097502201795578, + 2.2964718482398894e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 122668, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 158688, + "componentType": 5126, + "count": 41, + "max": [ + -0.9149541258811951, + -0.007575351279228926, + -0.035511117428541183, + 0.40192103385925293 + ], + "min": [ + -0.9149541258811951, + -0.0075754146091639996, + -0.035511188209056854, + 0.40192097425460815 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 122832, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 248988, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 122996, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 249480, + "componentType": 5126, + "count": 41, + "max": [ + -0.016226308420300484, + 0.21308644115924835, + -0.0035592180211097 + ], + "min": [ + -0.01622738130390644, + 0.21308566629886627, + -0.0035599449183791876 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 123160, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 159344, + "componentType": 5126, + "count": 40, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835169553757, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273838043213, + 0.07480830699205399, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 123320, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 249972, + "componentType": 5126, + "count": 41, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 123484, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 250464, + "componentType": 5126, + "count": 41, + "max": [ + 2.3366523294043873e-07, + 0.08465022593736649, + -1.2432747276136524e-08 + ], + "min": [ + -4.813381906387804e-07, + 0.0846497043967247, + -7.755531896691537e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 123648, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 159984, + "componentType": 5126, + "count": 41, + "max": [ + -0.9015315175056458, + 0.0036661215126514435, + -0.007477611768990755, + 0.43263334035873413 + ], + "min": [ + -0.9015316367149353, + 0.003666051896288991, + -0.007477653678506613, + 0.43263304233551025 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 123812, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 250956, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 123976, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 251448, + "componentType": 5126, + "count": 41, + "max": [ + 0.11189693957567215, + 0.10988966375589371, + -0.05163070186972618 + ], + "min": [ + 0.11189619451761246, + 0.10988900065422058, + -0.05163179710507393 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 124140, + "componentType": 5126, + "count": 39, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 160640, + "componentType": 5126, + "count": 39, + "max": [ + -0.4573034942150116, + 0.1649329960346222, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493292152881622, + -0.3159090578556061, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 124296, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 251940, + "componentType": 5126, + "count": 41, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 124460, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 252432, + "componentType": 5126, + "count": 41, + "max": [ + 2.201508664256835e-07, + 0.08512423932552338, + 1.3446965851926507e-07 + ], + "min": [ + -2.6961492949340027e-07, + 0.08512374758720398, + -2.3026989026675437e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 124624, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 161264, + "componentType": 5126, + "count": 41, + "max": [ + 0.022910570725798607, + 0.012835774570703506, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.022910503670573235, + 0.012835726141929626, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 124788, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 252924, + "componentType": 5126, + "count": 40, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 124948, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 253404, + "componentType": 5126, + "count": 41, + "max": [ + 0.005585396196693182, + 0.16604486107826233, + -0.045393019914627075 + ], + "min": [ + 0.005584439728409052, + 0.16604430973529816, + -0.04539373144507408 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 125112, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 161920, + "componentType": 5126, + "count": 41, + "max": [ + 0.4159708023071289, + 0.8707951903343201, + -0.25249776244163513, + 0.0702068880200386 + ], + "min": [ + 0.41597071290016174, + 0.8707951307296753, + -0.2524978220462799, + 0.07020684331655502 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 125276, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 253896, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 125440, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 254388, + "componentType": 5126, + "count": 41, + "max": [ + 2.3841860752327193e-07, + 0.5450077652931213, + 1.3160388334654272e-07 + ], + "min": [ + -1.7881393432617188e-07, + 0.5450068116188049, + -1.3374570073665382e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 125604, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 162576, + "componentType": 5126, + "count": 41, + "max": [ + 0.05530841276049614, + 0.05868598818778992, + 0.03053372912108898, + 0.9984166026115417 + ], + "min": [ + -0.04150380566716194, + -0.21098090708255768, + -0.08263406157493591, + 0.9760681390762329 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 125768, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 254880, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 125932, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 255372, + "componentType": 5126, + "count": 41, + "max": [ + 2.384185791015625e-07, + 0.11002874374389648, + 3.5576528034653165e-07 + ], + "min": [ + -2.086161714487389e-07, + 0.11002779006958008, + -2.402812526725029e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 126096, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 163232, + "componentType": 5126, + "count": 41, + "max": [ + 0.03640252351760864, + 0.05725902318954468, + 0.03452618420124054, + 0.9986857175827026 + ], + "min": [ + -0.0603434257209301, + -0.21036435663700104, + -0.08345863223075867, + 0.9767069816589355 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 126260, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 255864, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995231628418, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 126424, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 256356, + "componentType": 5126, + "count": 41, + "max": [ + -5.825987248186948e-09, + 0.3614475727081299, + 0.026841901242733 + ], + "min": [ + -3.634538643382257e-07, + 0.36144566535949707, + 0.026841066777706146 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 126588, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 163888, + "componentType": 5126, + "count": 41, + "max": [ + 2.2351734685344127e-08, + 2.121674747002089e-08, + 1.4901156752955558e-08, + 1.0 + ], + "min": [ + -2.9802322387695313e-08, + -2.793960618419078e-08, + -7.450580596923828e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 126752, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 256848, + "componentType": 5126, + "count": 40, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.9999998807907104, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 126912, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 257328, + "componentType": 5126, + "count": 41, + "max": [ + 2.393161651070841e-07, + -0.1583414226770401, + -0.25376445055007935 + ], + "min": [ + -2.6732317337518907e-07, + -0.15834327042102814, + -0.2537654638290405 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 127076, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 164544, + "componentType": 5126, + "count": 41, + "max": [ + -0.998119592666626, + 1.3046173918951354e-08, + -2.0730722383177635e-07, + 0.061296772211790085 + ], + "min": [ + -0.998119592666626, + -8.806848583731153e-09, + -2.488077939233335e-07, + 0.0612967349588871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 127240, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 257820, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 0.9999719858169556 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 127404, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 258312, + "componentType": 5126, + "count": 41, + "max": [ + 1.7881390590446244e-07, + 0.2539477050304413, + 2.565963654888037e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2539467513561249, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 127568, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 165200, + "componentType": 5126, + "count": 41, + "max": [ + 0.15613587200641632, + -1.1038760305837059e-07, + 2.7144897885023056e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.4718359864218655e-07, + 2.8755573477923235e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 127732, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 258804, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 127896, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 259296, + "componentType": 5126, + "count": 40, + "max": [ + 1.1920928955078125e-07, + 0.253319650888443, + 2.1959723994768865e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.253318727016449, + -2.0506064402070479e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 128056, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 165856, + "componentType": 5126, + "count": 41, + "max": [ + -0.09231440722942352, + 1.5046182966216293e-08, + 8.106835203136598e-09, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -1.761667434152514e-08, + -7.762392506549531e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 128220, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 259776, + "componentType": 5126, + "count": 41, + "max": [ + 0.9999999403953552, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 128384, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 260268, + "componentType": 5126, + "count": 41, + "max": [ + 1.1920930376163597e-07, + 0.2637791633605957, + 3.558932917258062e-07 + ], + "min": [ + -1.1920931797249068e-07, + 0.263778418302536, + -2.833126018231269e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 128548, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 166512, + "componentType": 5126, + "count": 41, + "max": [ + 2.6574783262844903e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.935091244666182e-08 + ], + "min": [ + -1.1895772367154223e-08, + -0.9896631240844727, + 0.14341171085834503, + 5.612145415057057e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 128712, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 260760, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000007152557373, + 1.0000007152557373, + 1.0000005960464478 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 128876, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 261252, + "componentType": 5126, + "count": 41, + "max": [ + 6.051649279470439e-07, + 0.24314291775226593, + 0.18703332543373108 + ], + "min": [ + -5.245793204267102e-07, + 0.24314166605472565, + 0.18703188002109528 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 129040, + "componentType": 5126, + "count": 8, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 167168, + "componentType": 5126, + "count": 8, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 129072, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 261744, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 129236, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 262236, + "componentType": 5126, + "count": 41, + "max": [ + -0.24418902397155762, + -0.1304626166820526, + 0.029650337994098663 + ], + "min": [ + -0.2441897839307785, + -0.1304643303155899, + 0.029649702832102776 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 129400, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 167296, + "componentType": 5126, + "count": 41, + "max": [ + 0.007415717467665672, + -0.0742839053273201, + -0.9923430681228638, + 0.09839731454849243 + ], + "min": [ + 0.007415683474391699, + -0.07428395748138428, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 129564, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 262728, + "componentType": 5126, + "count": 41, + "max": [ + 0.9999974370002747, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999971389770508, + 0.9999999403953552, + 0.9999980926513672 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 129728, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 263220, + "componentType": 5126, + "count": 41, + "max": [ + 0.24341902136802673, + -0.13046309351921082, + 0.029650725424289703 + ], + "min": [ + 0.24341844022274017, + -0.13046476244926453, + 0.029649417847394943 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 129892, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 167952, + "componentType": 5126, + "count": 41, + "max": [ + 0.007417455315589905, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750081300735 + ], + "min": [ + 0.007417418994009495, + 0.0742836445569992, + 0.9923431277275085, + 0.09839747846126556 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 130056, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 263712, + "componentType": 5126, + "count": 40, + "max": [ + 0.9999974370002747, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999969601631165, + 0.9999999403953552, + 0.9999980926513672 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 130216, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 264192, + "componentType": 5126, + "count": 41, + "max": [ + -0.04481590539216995, + 0.5170735716819763, + 0.010738230310380459 + ], + "min": [ + -0.044816382229328156, + 0.5170726180076599, + 0.010737634263932705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 130380, + "componentType": 5126, + "count": 39, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 168608, + "componentType": 5126, + "count": 39, + "max": [ + -0.488522469997406, + 0.50974041223526, + 0.5511829853057861, + 0.5100313425064087 + ], + "min": [ + -0.5382573008537292, + 0.4722764790058136, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 130536, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 264684, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 130700, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 265176, + "componentType": 5126, + "count": 41, + "max": [ + 0.03191472589969635, + 0.23818336427211761, + -0.0400262176990509 + ], + "min": [ + -0.015295476652681828, + 0.23313723504543304, + -0.07664704322814941 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 130864, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 169232, + "componentType": 5126, + "count": 41, + "max": [ + 0.23446311056613922, + 0.5224842429161072, + 0.5394653677940369, + 0.9507612586021423 + ], + "min": [ + -0.32770782709121704, + 0.023540185764431953, + 0.1761331856250763, + 0.6212701201438904 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 131028, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 265668, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 131192, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 266160, + "componentType": 5126, + "count": 41, + "max": [ + 4.7130112079685205e-07, + 0.4048614203929901, + 4.440846339548443e-07 + ], + "min": [ + -2.453113552292052e-07, + 0.4048607647418976, + -3.570670870089998e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 131356, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 169888, + "componentType": 5126, + "count": 41, + "max": [ + 0.04452786594629288, + 0.05412360280752182, + 0.4741482734680176, + 0.999864399433136 + ], + "min": [ + -0.11233577877283096, + -0.6731143593788147, + -0.01312313787639141, + 0.6079869866371155 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 131520, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 266652, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 131684, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 267144, + "componentType": 5126, + "count": 41, + "max": [ + 2.3383222469419707e-07, + 0.4032708406448364, + 1.9838435605379345e-07 + ], + "min": [ + -4.659956118757691e-07, + 0.40327030420303345, + -2.9331494033613126e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 131848, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 170544, + "componentType": 5126, + "count": 41, + "max": [ + 0.08498362451791763, + 0.2805235683917999, + 0.16482940316200256, + 0.9982038736343384 + ], + "min": [ + -0.20329222083091736, + -0.22402724623680115, + -0.3879202902317047, + 0.9137201309204102 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 132012, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 267636, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 132176, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 268128, + "componentType": 5126, + "count": 41, + "max": [ + -0.0980420708656311, + 0.2196311205625534, + -0.002472212538123131 + ], + "min": [ + -0.0980430617928505, + 0.21963027119636536, + -0.0024729848373681307 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 132340, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 171200, + "componentType": 5126, + "count": 41, + "max": [ + -0.5146673321723938, + 0.04997492954134941, + -0.08315926045179367, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488483786583, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 132504, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 268620, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 1.0, + 1.0, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 132664, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 269100, + "componentType": 5126, + "count": 41, + "max": [ + 2.2442127090016584e-07, + 0.09750284254550934, + 8.222864380513784e-07 + ], + "min": [ + -2.5590054519852856e-07, + 0.09750213474035263, + 9.123287014745074e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 132828, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 171856, + "componentType": 5126, + "count": 41, + "max": [ + -0.7917519807815552, + 0.056910160928964615, + -0.02441774494946003, + 0.6076955199241638 + ], + "min": [ + -0.7917522192001343, + 0.05691005289554596, + -0.02441783994436264, + 0.6076952219009399 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 132992, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 269592, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 133156, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 270084, + "componentType": 5126, + "count": 41, + "max": [ + 0.016227243468165398, + 0.21308644115924835, + -0.0035592014901340008 + ], + "min": [ + 0.01622586138546467, + 0.21308545768260956, + -0.0035597661044448614 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 133320, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 172512, + "componentType": 5126, + "count": 41, + "max": [ + -0.5430818796157837, + 0.06296975910663605, + -0.08177220076322556, + 0.8333128094673157 + ], + "min": [ + -0.543082058429718, + 0.06296972185373306, + -0.08177225291728973, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 133484, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 270576, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 133648, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 271068, + "componentType": 5126, + "count": 41, + "max": [ + 2.4956136712717125e-07, + 0.0846504271030426, + 2.1771127478587005e-07 + ], + "min": [ + -2.271330998837584e-07, + 0.08464968204498291, + -5.244747285360063e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 133812, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 173168, + "componentType": 5126, + "count": 41, + "max": [ + -0.7930166721343994, + -0.0020462654065340757, + 0.00807272084057331, + 0.6091430187225342 + ], + "min": [ + -0.7930169105529785, + -0.0020463645923882723, + 0.008072525262832642, + 0.6091427206993103 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 133976, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 271560, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 134140, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 272052, + "componentType": 5126, + "count": 41, + "max": [ + -0.11189647763967514, + 0.1098896712064743, + -0.051630813628435135 + ], + "min": [ + -0.11189717054367065, + 0.10988902300596237, + -0.05163168907165527 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 134304, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 173824, + "componentType": 5126, + "count": 41, + "max": [ + -0.43224576115608215, + -0.12903627753257751, + 0.15030041337013245, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 134468, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 272544, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 134632, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 273036, + "componentType": 5126, + "count": 41, + "max": [ + 2.0733827454932907e-07, + 0.08512413501739502, + 2.3089741318926826e-07 + ], + "min": [ + -5.224063670539181e-07, + 0.08512352406978607, + -2.558716971634567e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 134796, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 174480, + "componentType": 5126, + "count": 41, + "max": [ + 0.14811435341835022, + -0.12198016792535782, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811424911022186, + -0.121980220079422, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 134960, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 273528, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 135120, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 274008, + "componentType": 5126, + "count": 41, + "max": [ + -0.00558434659615159, + 0.166045144200325, + -0.03689447045326233 + ], + "min": [ + -0.006523090414702892, + 0.1433781236410141, + -0.04539373144507408 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 135284, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 175136, + "componentType": 5126, + "count": 41, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.0383622981607914, + 0.2852521240711212 + ], + "min": [ + 0.33727410435676575, + -0.9143344759941101, + -0.08889198303222656, + 0.016480350866913795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 135448, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 274500, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 135612, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 274992, + "componentType": 5126, + "count": 41, + "max": [ + 0.13640360534191132, + 0.2850477397441864, + 0.0019402744947001338 + ], + "min": [ + 0.13640300929546356, + 0.2850467562675476, + 0.0019392799586057663 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 135776, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 175792, + "componentType": 5126, + "count": 41, + "max": [ + -5.5105889629203375e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5591508883971983e-07 + ], + "min": [ + -9.960728419855513e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1840022295928065e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 135940, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 275484, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 136104, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 275976, + "componentType": 5126, + "count": 41, + "max": [ + -0.136402890086174, + 0.285047709941864, + 0.001940050395205617 + ], + "min": [ + -0.13640348613262177, + 0.2850469946861267, + 0.001939326641149819 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 136268, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 176448, + "componentType": 5126, + "count": 41, + "max": [ + -6.076336234173141e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.59174696440823e-08 + ], + "min": [ + -1.0444117037877731e-07, + -0.6935806274414063, + -0.7203789949417114, + 3.82748588378945e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 136432, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 276468, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 136596, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 276960, + "componentType": 5126, + "count": 33, + "max": [ + 0.6391620635986328, + 1.352902889251709, + -0.49229151010513306 + ], + "min": [ + -0.6220531463623047, + 0.8740103840827942, + -0.9431103467941284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 136728, + "componentType": 5126, + "count": 18, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 177104, + "componentType": 5126, + "count": 18, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 136800, + "componentType": 5126, + "count": 28, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 277356, + "componentType": 5126, + "count": 28, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 136912, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 277692, + "componentType": 5126, + "count": 33, + "max": [ + 0.7422959208488464, + 1.1675806045532227, + -0.2355172336101532 + ], + "min": [ + -0.01280742883682251, + -0.09494459629058838, + -0.6149620413780212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 137044, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 177392, + "componentType": 5126, + "count": 33, + "max": [ + 1.0, + 0.04964100569486618, + 0.28185588121414185, + 0.4896843731403351 + ], + "min": [ + -1.0, + -0.33491456508636475, + -0.026582831516861916, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 137176, + "componentType": 5126, + "count": 30, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 278088, + "componentType": 5126, + "count": 30, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 137296, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 278448, + "componentType": 5126, + "count": 41, + "max": [ + 2.905726432800293e-06, + 5.404175453804783e-07, + 2.776480698685191e-07 + ], + "min": [ + -1.0266900062561035e-05, + -5.2873176173307e-05, + -1.4050434401724488e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 137460, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 177920, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503703713417053, + 2.2243183295245217e-08, + 1.8346513641631645e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.749378952808911e-08, + -2.199850079875887e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 137592, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 278940, + "componentType": 5126, + "count": 32, + "max": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999997615814209 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 137720, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 279324, + "componentType": 5126, + "count": 41, + "max": [ + 1.1920938902676426e-07, + 0.2824999690055847, + 2.918637846960337e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.28249937295913696, + -1.9537324646989873e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 137884, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 178448, + "componentType": 5126, + "count": 33, + "max": [ + -6.101217309151252e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.3457137621771835e-07 + ], + "min": [ + -9.053910332568194e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.1911229686775187e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 138016, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 279816, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 138148, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 280212, + "componentType": 5126, + "count": 33, + "max": [ + -0.09779655933380127, + 0.5460785627365112, + -0.5553272366523743 + ], + "min": [ + -0.9907413721084595, + 0.1441277265548706, + -0.6873507499694824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 138280, + "componentType": 5126, + "count": 18, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 178976, + "componentType": 5126, + "count": 18, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 138352, + "componentType": 5126, + "count": 28, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 280608, + "componentType": 5126, + "count": 28, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 138464, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 280944, + "componentType": 5126, + "count": 33, + "max": [ + 0.023928260430693626, + 0.03836581110954285, + -0.2069084346294403 + ], + "min": [ + -0.3366074562072754, + -0.6955450773239136, + -0.3471442759037018 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 138596, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 179264, + "componentType": 5126, + "count": 33, + "max": [ + -0.8440345525741577, + 0.08558553457260132, + 5.487062253450858e-07, + 0.4361879229545593 + ], + "min": [ + -0.993429958820343, + -0.5362887978553772, + -0.011298113502562046, + 6.32101517794581e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 138728, + "componentType": 5126, + "count": 30, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 281340, + "componentType": 5126, + "count": 30, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 138848, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 281700, + "componentType": 5126, + "count": 41, + "max": [ + 4.917383193969727e-07, + 8.288113804155728e-07, + 8.464262464258354e-07 + ], + "min": [ + -7.003545761108398e-07, + -7.733733582426794e-07, + -6.371966492224601e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 139012, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 179792, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503704309463501, + 9.740656281564952e-09, + 2.5167636863443477e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.856985226173947e-08, + -3.2544915651300244e-09, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 139144, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 282192, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999997615814209 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 139276, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 282588, + "componentType": 5126, + "count": 41, + "max": [ + 2.384185791015625e-07, + 0.2825002670288086, + 1.477944522321195e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.28249964118003845, + -2.2909195251941128e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 139440, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 180320, + "componentType": 5126, + "count": 33, + "max": [ + -5.365236432908205e-08, + 0.9814087748527527, + 0.1895543485879898, + 0.09776405990123749 + ], + "min": [ + -0.04113643243908882, + -0.9818702340126038, + -0.5997858047485352, + 4.2046897874570277e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 139572, + "componentType": 5126, + "count": 33, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 283080, + "componentType": 5126, + "count": 33, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 139704, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 283476, + "componentType": 5126, + "count": 92, + "max": [ + 0.0, + 0.0, + 3.7056033611297607 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 140072, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 284580, + "componentType": 5126, + "count": 92, + "max": [ + 0.1684071570634842, + 0.5437940359115601, + -1.0754191875457764 + ], + "min": [ + 0.030920162796974182, + -0.08483375608921051, + -1.521918773651123 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 140440, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 180848, + "componentType": 5126, + "count": 92, + "max": [ + 0.16570642590522766, + 0.07106945663690567, + 0.22757799923419952, + 0.9996991157531738 + ], + "min": [ + -0.11758127063512802, + -0.11224508285522461, + -0.6955810785293579, + 0.6900067925453186 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 140808, + "componentType": 5126, + "count": 86, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 285684, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 141152, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 286716, + "componentType": 5126, + "count": 92, + "max": [ + 4.76837158203125e-07, + 0.002127513289451599, + 2.384187780535285e-07 + ], + "min": [ + -4.768370445162873e-07, + 0.0021271556615829468, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 141520, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 182320, + "componentType": 5126, + "count": 92, + "max": [ + 0.7071067690849304, + 3.1499186547989666e-07, + -2.986928961945523e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.883208196635678e-07, + -3.218242738967092e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 141888, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 287820, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 142288, + "componentType": 5126, + "count": 98, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 289020, + "componentType": 5126, + "count": 98, + "max": [ + 0.17381879687309265, + 0.13409876823425293, + 7.295775503735058e-07 + ], + "min": [ + 0.17381712794303894, + 0.13409793376922607, + -3.473862193459354e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 142680, + "componentType": 5126, + "count": 98, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 183792, + "componentType": 5126, + "count": 98, + "max": [ + 0.16044844686985016, + 0.2235279232263565, + -0.015220952220261097, + 0.9940626621246338 + ], + "min": [ + -0.5842351913452148, + -0.022816646844148636, + -0.42109987139701843, + 0.7573572993278503 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 143072, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 290196, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000001192092896, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999991059303284, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 143472, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 291396, + "componentType": 5126, + "count": 99, + "max": [ + 2.696226033549465e-07, + 0.6356118321418762, + 2.5019582494678616e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.6356112360954285, + -4.7352597221106407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 143868, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 185360, + "componentType": 5126, + "count": 100, + "max": [ + 0.6754391193389893, + 3.481398636040467e-08, + 9.289710334314805e-09, + 0.9915180206298828 + ], + "min": [ + 0.12996892631053925, + -1.9639681880789794e-08, + -2.3231595491779444e-07, + 0.7374157309532166 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 144268, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 292584, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 144668, + "componentType": 5126, + "count": 98, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 293784, + "componentType": 5126, + "count": 98, + "max": [ + -0.17381712794303894, + 0.13409900665283203, + 7.274521749423002e-07 + ], + "min": [ + -0.17381903529167175, + 0.13409793376922607, + -6.985812319726392e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 145060, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 186960, + "componentType": 5126, + "count": 100, + "max": [ + 0.23840738832950592, + 0.44960343837738037, + 0.34346073865890503, + 0.9962648749351501 + ], + "min": [ + -0.5285191535949707, + -0.23742882907390594, + -0.04007954150438309, + 0.7224045395851135 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 145460, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 294960, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000008344650269 + ], + "min": [ + 0.999999463558197, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 145860, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 296160, + "componentType": 5126, + "count": 100, + "max": [ + 2.5954113880288787e-07, + 0.6356119513511658, + 2.8726060463668546e-07 + ], + "min": [ + -2.172960051893824e-07, + 0.6356112360954285, + -4.854882149629702e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 146260, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 188560, + "componentType": 5126, + "count": 100, + "max": [ + 0.7693824768066406, + 1.8691321201913524e-07, + 5.944837084825849e-07, + 0.9844047427177429 + ], + "min": [ + 0.17591862380504608, + -7.301581206320407e-08, + 1.0780439652080531e-07, + 0.6387884020805359 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 146660, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 297360, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999992251396179, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 147060, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 298560, + "componentType": 5126, + "count": 92, + "max": [ + 4.768372150465439e-07, + 0.0021276327315717936, + 2.3841823804104934e-07 + ], + "min": [ + -4.768372718899627e-07, + 0.0021271556615829468, + -2.386182416103111e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 147428, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 190160, + "componentType": 5126, + "count": 97, + "max": [ + -0.5735625624656677, + 0.14720183610916138, + 0.08642062544822693, + 0.8143857717514038 + ], + "min": [ + -0.7076997756958008, + -0.1021478995680809, + -0.052902042865753174, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 147816, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 299664, + "componentType": 5126, + "count": 97, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 148204, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 300828, + "componentType": 5126, + "count": 97, + "max": [ + 2.384185791015625e-07, + 0.2726660966873169, + 2.423465446099726e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2726656198501587, + -2.384950334999303e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 148592, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 191712, + "componentType": 5126, + "count": 97, + "max": [ + 0.17607001960277557, + 0.05683112144470215, + 0.03112935833632946, + 0.9993295669555664 + ], + "min": [ + -0.04168624430894852, + -0.259358674287796, + -0.12460340559482574, + 0.9568036198616028 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 148980, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 301992, + "componentType": 5126, + "count": 97, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 149368, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 303156, + "componentType": 5126, + "count": 97, + "max": [ + 0.044816866517066956, + 0.5170735716819763, + 0.010738681070506573 + ], + "min": [ + 0.044815436005592346, + 0.5170726180076599, + 0.01073760911822319 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 149756, + "componentType": 5126, + "count": 83, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 193264, + "componentType": 5126, + "count": 83, + "max": [ + -0.4904356002807617, + -0.49043548107147217, + -0.5093847513198853, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.5093848705291748, + 0.5093848705291748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 150088, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 304320, + "componentType": 5126, + "count": 99, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 150484, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 305508, + "componentType": 5126, + "count": 100, + "max": [ + 0.023540973663330078, + 0.23811979591846466, + -0.04789081588387489 + ], + "min": [ + 0.00013922725338488817, + 0.22055011987686157, + -0.11545263230800629 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 150884, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 194592, + "componentType": 5126, + "count": 101, + "max": [ + -0.16677185893058777, + 0.11239834874868393, + 0.019708815962076187, + 0.8586182594299316 + ], + "min": [ + -0.705502986907959, + -0.5088304281234741, + -0.8818104863166809, + 0.258905827999115 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 151288, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 306708, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 151692, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 307920, + "componentType": 5126, + "count": 101, + "max": [ + 4.654898759781645e-07, + 0.4048617482185364, + 4.462421543394157e-07 + ], + "min": [ + -2.431913230793725e-07, + 0.40486079454421997, + -2.7730993679142557e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 152096, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 196208, + "componentType": 5126, + "count": 99, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.06778708100318909, + 0.997620165348053 + ], + "min": [ + -0.2828879654407501, + -0.04373706132173538, + -0.7725046277046204, + 0.44027945399284363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 152492, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 309132, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 152892, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 310332, + "componentType": 5126, + "count": 101, + "max": [ + 3.648111999154935e-07, + 0.403270959854126, + 4.5468007670024235e-07 + ], + "min": [ + -2.5766308908714564e-07, + 0.40327000617980957, + -3.31330653580153e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 153296, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 197792, + "componentType": 5126, + "count": 101, + "max": [ + 0.20222274959087372, + 0.43629464507102966, + 0.27743709087371826, + 0.9977603554725647 + ], + "min": [ + -0.11016573756933212, + -0.3208499252796173, + -0.29414939880371094, + 0.8738507628440857 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 153700, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 311544, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 154104, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 312756, + "componentType": 5126, + "count": 101, + "max": [ + 0.09804347157478333, + 0.21963126957416534, + -0.002472249325364828 + ], + "min": [ + 0.09804181754589081, + 0.21962977945804596, + -0.002473355270922184 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 154508, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 199408, + "componentType": 5126, + "count": 101, + "max": [ + -0.622336745262146, + -0.0009816293604671955, + 0.03366417810320854, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817092213779688, + 0.033664122223854065, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 154912, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 313968, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 155316, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 315180, + "componentType": 5126, + "count": 101, + "max": [ + 4.915720523968048e-07, + 0.0975029319524765, + 6.007852562106564e-07 + ], + "min": [ + -4.652721656839276e-07, + 0.09750242531299591, + 1.035078085465102e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 155720, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 201024, + "componentType": 5126, + "count": 101, + "max": [ + 0.981583833694458, + -0.062187597155570984, + -0.00994163192808628, + 0.1803528219461441 + ], + "min": [ + 0.981583833694458, + -0.062187645584344864, + -0.009941698983311653, + 0.18035253882408142 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 156124, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 316392, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999993443489075, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 156528, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 317604, + "componentType": 5126, + "count": 101, + "max": [ + -0.016226284205913544, + 0.21308653056621552, + -0.003558977972716093 + ], + "min": [ + -0.016227617859840393, + 0.21308539807796478, + -0.0035599679686129093 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 156932, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 202640, + "componentType": 5126, + "count": 100, + "max": [ + -0.626492977142334, + -0.07110267877578735, + 0.07480834424495697, + 0.7725636959075928 + ], + "min": [ + -0.6264930963516235, + -0.07110274583101273, + 0.0748082846403122, + 0.7725635170936584 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 157332, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 318816, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 157736, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 320028, + "componentType": 5126, + "count": 101, + "max": [ + 2.338183264782856e-07, + 0.08465023338794708, + -1.6120077717118875e-08 + ], + "min": [ + -4.856632926930615e-07, + 0.0846497192978859, + -5.371977636059455e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 158140, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 204240, + "componentType": 5126, + "count": 101, + "max": [ + 0.988656222820282, + -0.007239530328661203, + 0.004116291180253029, + 0.14996562898159027 + ], + "min": [ + 0.9886561036109924, + -0.007239586673676968, + 0.004116223659366369, + 0.14996539056301117 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 158544, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 321240, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 158944, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 322440, + "componentType": 5126, + "count": 101, + "max": [ + 0.11189708113670349, + 0.10988958179950714, + -0.051630597561597824 + ], + "min": [ + 0.11189582943916321, + 0.1098884865641594, + -0.05163140222430229 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 159348, + "componentType": 5126, + "count": 98, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 205856, + "componentType": 5126, + "count": 98, + "max": [ + -0.4573034942150116, + 0.16493292152881622, + -0.31590890884399414, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493283212184906, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 159740, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 323652, + "componentType": 5126, + "count": 101, + "max": [ + 0.9999999403953552, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999993443489075, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 160144, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 324864, + "componentType": 5126, + "count": 101, + "max": [ + 4.7517326606794086e-07, + 0.08512435108423233, + 2.4613382265670225e-07 + ], + "min": [ + -2.722134411214938e-07, + 0.08512353897094727, + -2.3935641024763754e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 160548, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 207424, + "componentType": 5126, + "count": 101, + "max": [ + 0.022910580039024353, + 0.01283577736467123, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.02291051484644413, + 0.012835717760026455, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 160952, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 326076, + "componentType": 5126, + "count": 99, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 161348, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 327264, + "componentType": 5126, + "count": 101, + "max": [ + 0.005585655570030212, + 0.1660452038049698, + -0.04539301618933678 + ], + "min": [ + 0.00558397825807333, + 0.16604360938072205, + -0.045394182205200195 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 161752, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 209040, + "componentType": 5126, + "count": 100, + "max": [ + 0.41597089171409607, + 0.8707951307296753, + -0.25249770283699036, + 0.07020693272352219 + ], + "min": [ + 0.41597074270248413, + 0.8707951307296753, + -0.2524977922439575, + 0.07020684331655502 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 162152, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 328476, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 162556, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 329688, + "componentType": 5126, + "count": 97, + "max": [ + 2.384185791015625e-07, + 0.5450077652931213, + 2.4169349899239023e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.5450068116188049, + -2.438353021716466e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 162944, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 210640, + "componentType": 5126, + "count": 100, + "max": [ + 0.11112231761217117, + 0.13072361052036285, + 0.006728124804794788, + 0.9981290102005005 + ], + "min": [ + -0.04150381684303284, + -0.09639720618724823, + -0.0747465118765831, + 0.9894044399261475 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 163344, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 330852, + "componentType": 5126, + "count": 99, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 163740, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 332040, + "componentType": 5126, + "count": 100, + "max": [ + 3.5762786865234375e-07, + 0.11002874374389648, + 2.3655604763916926e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.11002779006958008, + -2.4028122425079346e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 164140, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 212240, + "componentType": 5126, + "count": 101, + "max": [ + 0.09228555113077164, + 0.12989991903305054, + 0.0054976013489067554, + 0.9983051419258118 + ], + "min": [ + -0.06034349650144577, + -0.0967569500207901, + -0.07584508508443832, + 0.9901782870292664 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 164544, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 333240, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 164944, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 334440, + "componentType": 5126, + "count": 101, + "max": [ + 2.3259259762653528e-07, + 0.3614475727081299, + 0.026842139661312103 + ], + "min": [ + -7.210817329905694e-07, + 0.36144590377807617, + 0.026840709149837494 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 165348, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 213856, + "componentType": 5126, + "count": 101, + "max": [ + 5.21540464148984e-08, + 7.450639216699528e-09, + 2.2351736461700966e-08, + 1.0 + ], + "min": [ + -2.2351738238057806e-08, + -3.7252828377631886e-08, + -1.4901156752955558e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 165752, + "componentType": 5126, + "count": 94, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 335652, + "componentType": 5126, + "count": 94, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 166128, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 336780, + "componentType": 5126, + "count": 101, + "max": [ + 7.757579965073091e-07, + -0.1583419144153595, + -0.2537645399570465 + ], + "min": [ + -5.355439043341903e-07, + -0.15834307670593262, + -0.2537654936313629 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 166532, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 215472, + "componentType": 5126, + "count": 101, + "max": [ + -0.998119592666626, + 2.036857260634406e-08, + -2.0404561951181677e-07, + 0.061296772211790085 + ], + "min": [ + -0.998119592666626, + -1.2525128489926374e-08, + -2.60276578956109e-07, + 0.061296720057725906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 166936, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 337992, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999721050262451 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 167336, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 339192, + "componentType": 5126, + "count": 101, + "max": [ + 4.76837158203125e-07, + 0.25394776463508606, + 2.841731827629701e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2539467215538025, + -4.054012379128835e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 167740, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 217088, + "componentType": 5126, + "count": 101, + "max": [ + 0.15613587200641632, + -9.421507485285474e-08, + 3.333024878315882e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613581240177155, + -1.4660194835869333e-07, + 5.828096227844526e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 168144, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 340404, + "componentType": 5126, + "count": 99, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 168540, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 341592, + "componentType": 5126, + "count": 101, + "max": [ + 3.5762786865234375e-07, + 0.25331947207450867, + 2.4120359398693836e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.253318727016449, + -4.769283350469777e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 168944, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 218704, + "componentType": 5126, + "count": 101, + "max": [ + -0.09231439977884293, + 2.9677970303509937e-08, + 2.958937095343117e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -3.035997409028823e-08, + -1.8546646884942675e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 169348, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 342804, + "componentType": 5126, + "count": 100, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.999999463558197, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 169748, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 344004, + "componentType": 5126, + "count": 101, + "max": [ + 4.76837158203125e-07, + 0.2637791335582733, + 5.506662432708254e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2637782394886017, + -4.6529549990736996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 170152, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 220320, + "componentType": 5126, + "count": 101, + "max": [ + 1.4980194862346252e-08, + -0.9896631240844727, + 0.14341172575950623, + 1.0421173612940038e-07 + ], + "min": [ + -2.7477661035391066e-08, + -0.9896631240844727, + 0.14341169595718384, + 5.147372661440386e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 170556, + "componentType": 5126, + "count": 96, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 345216, + "componentType": 5126, + "count": 96, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 170940, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 346368, + "componentType": 5126, + "count": 101, + "max": [ + 5.307333594828378e-07, + 0.24314270913600922, + 0.18703262507915497 + ], + "min": [ + -5.643893246087828e-07, + 0.24314157664775848, + 0.18703177571296692 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 171344, + "componentType": 5126, + "count": 51, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 221936, + "componentType": 5126, + "count": 51, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 171548, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 347580, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 171952, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 348792, + "componentType": 5126, + "count": 101, + "max": [ + -0.24418905377388, + -0.13046306371688843, + 0.029650846496224403 + ], + "min": [ + -0.24419046938419342, + -0.13046422600746155, + 0.029649831354618073 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 172356, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 222752, + "componentType": 5126, + "count": 100, + "max": [ + 0.0074157314375042915, + -0.0742838978767395, + -0.9923430681228638, + 0.09839733690023422 + ], + "min": [ + 0.007415680214762688, + -0.07428397983312607, + -0.9923431277275085, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 172756, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 350004, + "componentType": 5126, + "count": 100, + "max": [ + 0.9999974370002747, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999970197677612, + 1.0, + 0.9999982714653015 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 173156, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 351204, + "componentType": 5126, + "count": 101, + "max": [ + 0.2434193640947342, + -0.1304626315832138, + 0.029651032760739326 + ], + "min": [ + 0.24341841042041779, + -0.13046392798423767, + 0.029649946838617325 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 173560, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 224352, + "componentType": 5126, + "count": 99, + "max": [ + 0.007417461834847927, + 0.07428368926048279, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417415734380484, + 0.0742836445569992, + 0.9923431277275085, + 0.09839747101068497 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 173956, + "componentType": 5126, + "count": 96, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 352416, + "componentType": 5126, + "count": 96, + "max": [ + 0.9999974370002747, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.999997079372406, + 0.9999999403953552, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 174340, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 353568, + "componentType": 5126, + "count": 97, + "max": [ + -0.04481542855501175, + 0.5170735716819763, + 0.01073872484266758 + ], + "min": [ + -0.04481685906648636, + 0.5170726180076599, + 0.010737268254160881 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 174728, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 225936, + "componentType": 5126, + "count": 100, + "max": [ + -0.43095165491104126, + 0.5592597126960754, + 0.5500203371047974, + 0.44674426317214966 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019243359565735, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 175128, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 354732, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 175528, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 355932, + "componentType": 5126, + "count": 100, + "max": [ + 0.0319146066904068, + 0.23808276653289795, + -0.03527356684207916 + ], + "min": [ + 0.000312815944198519, + 0.23250827193260193, + -0.07646431773900986 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 175928, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 227536, + "componentType": 5126, + "count": 99, + "max": [ + 0.13094639778137207, + 0.5406680107116699, + 0.615107536315918, + 0.9772137403488159 + ], + "min": [ + -0.611640989780426, + -0.059734877198934555, + -0.32813236117362976, + 0.5601324439048767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 176324, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 357132, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 176724, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 358332, + "componentType": 5126, + "count": 101, + "max": [ + 4.874427759204991e-07, + 0.4048617482185364, + 5.644983502861578e-07 + ], + "min": [ + -4.855273232351465e-07, + 0.40486079454421997, + -1.4466330355844548e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 177128, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 229120, + "componentType": 5126, + "count": 101, + "max": [ + 0.1389554738998413, + 0.7487745881080627, + 0.4238200783729553, + 0.9983879327774048 + ], + "min": [ + -0.07451161742210388, + 0.049057893455028534, + -0.05700935795903206, + 0.5286275148391724 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 177532, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 359544, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 177932, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 360744, + "componentType": 5126, + "count": 101, + "max": [ + 4.774403805640759e-07, + 0.403270959854126, + 1.9948525675772544e-07 + ], + "min": [ + -5.022994855607976e-07, + 0.40327000617980957, + -3.9686580066700117e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 178336, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 230736, + "componentType": 5126, + "count": 101, + "max": [ + 0.03250930830836296, + 0.45029667019844055, + 0.08154264837503433, + 0.999446451663971 + ], + "min": [ + -0.1850730925798416, + -0.04596051201224327, + -0.38792023062705994, + 0.8694161176681519 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 178740, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 361956, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 179144, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 363168, + "componentType": 5126, + "count": 101, + "max": [ + -0.09804202616214752, + 0.2196318656206131, + -0.0024722847156226635 + ], + "min": [ + -0.09804320335388184, + 0.219630628824234, + -0.002473497064784169 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 179548, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 232352, + "componentType": 5126, + "count": 101, + "max": [ + -0.5146673321723938, + 0.04997493326663971, + -0.08315926045179367, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997487738728523, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 179952, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 364380, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 180352, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 365580, + "componentType": 5126, + "count": 101, + "max": [ + 4.685038561547117e-07, + 0.09750285744667053, + 8.423821782344021e-07 + ], + "min": [ + -7.272435027516622e-07, + 0.09750212728977203, + -1.1818342215974553e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 180756, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 233968, + "componentType": 5126, + "count": 101, + "max": [ + -0.9813976287841797, + -0.04183981195092201, + 0.03999293968081474, + 0.1830538809299469 + ], + "min": [ + -0.9813976287841797, + -0.04183986410498619, + 0.03999289497733116, + 0.18305367231369019 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 181160, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 366792, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999994039535522, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 181564, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 368004, + "componentType": 5126, + "count": 101, + "max": [ + 0.016227278858423233, + 0.21308664977550507, + -0.0035589924082159996 + ], + "min": [ + 0.016226118430495262, + 0.21308566629886627, + -0.003559777280315757 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 181968, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 235584, + "componentType": 5126, + "count": 100, + "max": [ + -0.5430818200111389, + 0.06296975165605545, + -0.08177217841148376, + 0.8333128094673157 + ], + "min": [ + -0.543082058429718, + 0.06296969950199127, + -0.08177224546670914, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 182368, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 369216, + "componentType": 5126, + "count": 97, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 182756, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 370380, + "componentType": 5126, + "count": 101, + "max": [ + 4.879468633589568e-07, + 0.084650419652462, + 2.126238598521013e-07 + ], + "min": [ + -4.681372445247689e-07, + 0.084649458527565, + -7.320430199797556e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 183160, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 237184, + "componentType": 5126, + "count": 101, + "max": [ + -0.9870606660842896, + -0.005630379542708397, + 0.006136324722319841, + 0.1601308435201645 + ], + "min": [ + -0.9870607256889343, + -0.005630431696772575, + 0.0061362734995782375, + 0.16013051569461823 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 183564, + "componentType": 5126, + "count": 98, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 371592, + "componentType": 5126, + "count": 98, + "max": [ + 1.0000008344650269, + 1.0000007152557373, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 183956, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 372768, + "componentType": 5126, + "count": 101, + "max": [ + -0.1118965670466423, + 0.10988978296518326, + -0.051630545407533646 + ], + "min": [ + -0.11189791560173035, + 0.10988858342170715, + -0.0516316220164299 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 184360, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 238800, + "componentType": 5126, + "count": 100, + "max": [ + -0.43224582076072693, + -0.12903624773025513, + 0.15030041337013245, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363222360611, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 184760, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 373980, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 185164, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 375192, + "componentType": 5126, + "count": 101, + "max": [ + 4.4765457118955965e-07, + 0.08512438088655472, + 2.3772531676513609e-07 + ], + "min": [ + -5.207069762036554e-07, + 0.08512340486049652, + -2.5735667463777645e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 185568, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 240400, + "componentType": 5126, + "count": 101, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739083170890808, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802051782608, + -0.12739090621471405, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 185972, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 376404, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 186376, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 377616, + "componentType": 5126, + "count": 101, + "max": [ + -0.005584085360169411, + 0.16604509949684143, + -0.045392751693725586 + ], + "min": [ + -0.005585561506450176, + 0.16604383289813995, + -0.045393988490104675 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 186780, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 242016, + "componentType": 5126, + "count": 101, + "max": [ + 0.6181666851043701, + 0.8978073000907898, + 0.3722488582134247, + 0.608323335647583 + ], + "min": [ + -0.7046427130699158, + -0.9143344759941101, + -0.10504142194986343, + 0.00014184047176968306 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 187184, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 378828, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 187588, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 380040, + "componentType": 5126, + "count": 97, + "max": [ + 0.13640420138835907, + 0.2850474715232849, + 0.001940691377967596 + ], + "min": [ + 0.13640300929546356, + 0.2850467264652252, + 0.001939500099979341 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 187976, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 243632, + "componentType": 5126, + "count": 97, + "max": [ + -4.970929623482334e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.6233309452218236e-07 + ], + "min": [ + -8.459780076464085e-08, + -0.693580687046051, + -0.7203789949417114, + 1.2297083173962164e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 188364, + "componentType": 5126, + "count": 94, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 381204, + "componentType": 5126, + "count": 94, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 188740, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 382332, + "componentType": 5126, + "count": 97, + "max": [ + -0.13640253245830536, + 0.28504782915115356, + 0.0019402886973693967 + ], + "min": [ + -0.13640372455120087, + 0.28504711389541626, + 0.001938859117217362 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 189128, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 245184, + "componentType": 5126, + "count": 97, + "max": [ + -5.176706352472138e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.368308274635638e-08 + ], + "min": [ + -8.709746168733545e-08, + -0.693580687046051, + -0.7203789949417114, + 3.3678347222121374e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 189516, + "componentType": 5126, + "count": 97, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 383496, + "componentType": 5126, + "count": 97, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 189904, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 384660, + "componentType": 5126, + "count": 77, + "max": [ + 1.046465277671814, + 1.4983421564102173, + -0.6094132661819458 + ], + "min": [ + 0.27831587195396423, + 0.5460788011550903, + -0.8110530972480774 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 190212, + "componentType": 5126, + "count": 32, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 246736, + "componentType": 5126, + "count": 32, + "max": [ + -0.6735637187957764, + 0.21520279347896576, + 4.0205048890129547e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 4.0205048890129547e-07, + -0.21520201861858368, + 0.6735634803771973 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 190340, + "componentType": 5126, + "count": 14, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 385584, + "componentType": 5126, + "count": 14, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 190396, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 385752, + "componentType": 5126, + "count": 77, + "max": [ + 0.6489073038101196, + 0.9046833515167236, + -0.2245018184185028 + ], + "min": [ + 0.49666157364845276, + -0.47755861282348633, + -0.31081220507621765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 190704, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 247248, + "componentType": 5126, + "count": 77, + "max": [ + 1.0, + 0.31032097339630127, + 5.523291406461794e-07, + 0.242860347032547 + ], + "min": [ + -0.9999890327453613, + -0.09270712733268738, + -0.06547189503908157, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 191012, + "componentType": 5126, + "count": 62, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 386676, + "componentType": 5126, + "count": 62, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 191260, + "componentType": 5126, + "count": 93, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 387420, + "componentType": 5126, + "count": 93, + "max": [ + 5.811452865600586e-07, + 7.839515205887437e-07, + 8.656505201543041e-07 + ], + "min": [ + -5.21540641784668e-07, + -8.566815949961892e-07, + -7.910056751825323e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 191632, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 248480, + "componentType": 5126, + "count": 77, + "max": [ + -0.9503704309463501, + 1.498336565930458e-08, + 1.7678269514931344e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.246258468119322e-08, + -7.394324708087652e-09, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 191940, + "componentType": 5126, + "count": 76, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 388536, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999995231628418, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 192244, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 389448, + "componentType": 5126, + "count": 92, + "max": [ + 1.7881383485018887e-07, + 0.28250032663345337, + 2.6938465680359513e-07 + ], + "min": [ + -1.1920950271360198e-07, + 0.2824995219707489, + -1.95665336377715e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 192612, + "componentType": 5126, + "count": 84, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 249712, + "componentType": 5126, + "count": 84, + "max": [ + -8.113079275062773e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.021472761407494545 + ], + "min": [ + -0.07457304000854492, + 0.8801702857017517, + -0.4682713747024536, + 4.2404334976708924e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 192948, + "componentType": 5126, + "count": 84, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 390552, + "componentType": 5126, + "count": 84, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 193284, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 391560, + "componentType": 5126, + "count": 77, + "max": [ + 0.04477321356534958, + 1.678944706916809, + -0.3068447411060333 + ], + "min": [ + -0.5082187056541443, + 0.5460788011550903, + -0.6843864917755127 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 193592, + "componentType": 5126, + "count": 32, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 251056, + "componentType": 5126, + "count": 32, + "max": [ + -0.6735637187957764, + 0.21520279347896576, + 4.0205048890129547e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 4.0205048890129547e-07, + -0.21520201861858368, + 0.6735634803771973 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 193720, + "componentType": 5126, + "count": 14, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 392484, + "componentType": 5126, + "count": 14, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 193776, + "componentType": 5126, + "count": 88, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 392652, + "componentType": 5126, + "count": 88, + "max": [ + -0.09613833576440811, + 1.0190993547439575, + -0.22901223599910736 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.6394086480140686 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 194128, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 251568, + "componentType": 5126, + "count": 77, + "max": [ + 0.999999463558197, + 0.07889600098133087, + 0.008096861653029919, + 0.3648182153701782 + ], + "min": [ + -0.9998576045036316, + -0.25679630041122437, + -0.09579461812973022, + 5.731214947068963e-10 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 194436, + "componentType": 5126, + "count": 47, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 393708, + "componentType": 5126, + "count": 47, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 194624, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 394272, + "componentType": 5126, + "count": 92, + "max": [ + 8.493661880493164e-07, + 1.3607392475023516e-06, + 1.1604556675592903e-06 + ], + "min": [ + -5.21540641784668e-07, + -1.0553557103776257e-06, + -7.108978934411425e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 194992, + "componentType": 5126, + "count": 77, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 252800, + "componentType": 5126, + "count": 77, + "max": [ + -0.9503704309463501, + -3.1526459220998504e-09, + 2.2526778664655467e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -4.934161168534956e-08, + -2.3981574059916966e-08, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 195300, + "componentType": 5126, + "count": 75, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 395376, + "componentType": 5126, + "count": 75, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999995231628418, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 195600, + "componentType": 5126, + "count": 92, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 396276, + "componentType": 5126, + "count": 92, + "max": [ + 1.192093463942001e-07, + 0.28250032663345337, + 2.918638983828714e-07 + ], + "min": [ + -2.3841863594498136e-07, + 0.28249940276145935, + -2.4003927023841243e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 195968, + "componentType": 5126, + "count": 82, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 254032, + "componentType": 5126, + "count": 82, + "max": [ + -6.866253698945002e-08, + -0.884895384311676, + 0.44108662009239197, + 0.13796056807041168 + ], + "min": [ + -0.05804863199591637, + -0.9818702340126038, + 0.1895543485879898, + 4.218321123516944e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 196296, + "componentType": 5126, + "count": 83, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 397380, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 196628, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 398376, + "componentType": 5126, + "count": 149, + "max": [ + 0.0, + 0.0, + 6.926512718200684 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 197224, + "componentType": 5126, + "count": 58, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 255344, + "componentType": 5126, + "count": 58, + "max": [ + 0.7071067690849304, + 0.7070189118385315, + 0.7066393494606018, + 0.7071067690849304 + ], + "min": [ + 0.011147105135023594, + -0.7066393494606018, + -0.7070189118385315, + 0.011147890239953995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 197456, + "componentType": 5126, + "count": 36, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 400164, + "componentType": 5126, + "count": 36, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 197600, + "componentType": 5126, + "count": 135, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 400596, + "componentType": 5126, + "count": 135, + "max": [ + 0.17401376366615295, + 0.7280114889144897, + -0.9799129366874695 + ], + "min": [ + -0.21486447751522064, + -0.1892700046300888, + -2.463075876235962 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 198140, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 256272, + "componentType": 5126, + "count": 138, + "max": [ + 0.8206836581230164, + 0.4282090365886688, + 0.9915186166763306, + 1.0 + ], + "min": [ + -0.18417052924633026, + -0.43156737089157104, + -0.9716628193855286, + 0.005668972618877888 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 198692, + "componentType": 5126, + "count": 132, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 402216, + "componentType": 5126, + "count": 132, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 199220, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 403800, + "componentType": 5126, + "count": 148, + "max": [ + 4.76837556107057e-07, + 0.0021278709173202515, + 9.536745437799254e-07 + ], + "min": [ + -4.76837556107057e-07, + 0.002126917243003845, + -9.536745437799254e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 199812, + "componentType": 5126, + "count": 141, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 258480, + "componentType": 5126, + "count": 141, + "max": [ + 0.7071067690849304, + 0.15821991860866547, + 0.2711927592754364, + 0.869128406047821 + ], + "min": [ + 0.4936820864677429, + -0.1520664095878601, + -0.07408466190099716, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 200376, + "componentType": 5126, + "count": 140, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 405576, + "componentType": 5126, + "count": 140, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 200936, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 407256, + "componentType": 5126, + "count": 149, + "max": [ + 0.17381903529167175, + 0.1341003179550171, + 1.001963823910046e-06 + ], + "min": [ + 0.17381712794303894, + 0.13409602642059326, + -1.4190366073307814e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 201532, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 260736, + "componentType": 5126, + "count": 149, + "max": [ + 0.16169345378875732, + 0.6970439553260803, + 0.3737041652202606, + 0.9902600646018982 + ], + "min": [ + -0.8423998951911926, + -0.45028117299079895, + -0.41811975836753845, + 0.16320489346981049 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 202128, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 409044, + "componentType": 5126, + "count": 149, + "max": [ + 1.0, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.999998927116394, + 0.9999995231628418, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 202724, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 410832, + "componentType": 5126, + "count": 149, + "max": [ + 4.4843653768111835e-07, + 0.6356119513511658, + 5.241211056272732e-07 + ], + "min": [ + -7.436563578266941e-07, + 0.6356105208396912, + -9.600927342034993e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 203320, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 263120, + "componentType": 5126, + "count": 149, + "max": [ + 0.9681602120399475, + 1.222622216801028e-07, + 1.3977212631743896e-07, + 0.9999972581863403 + ], + "min": [ + 0.002347721951082349, + -1.0810609296640905e-07, + -7.971776199156011e-07, + 0.25033146142959595 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 203916, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 412620, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000009536743164, + 1.0000014305114746, + 1.0000007152557373 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 204512, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 414408, + "componentType": 5126, + "count": 149, + "max": [ + -0.17381760478019714, + 0.1341007947921753, + 1.4447196008404717e-06 + ], + "min": [ + -0.17381951212882996, + 0.13409604132175446, + -1.4158486010273919e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 205108, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 265504, + "componentType": 5126, + "count": 149, + "max": [ + 0.19705086946487427, + 0.39277976751327515, + 0.36646461486816406, + 0.9951674342155457 + ], + "min": [ + -0.8539280295372009, + -0.33684128522872925, + -0.40106162428855896, + 0.47589266300201416 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 205704, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 416196, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999992847442627, + 0.9999995827674866, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 206300, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 417984, + "componentType": 5126, + "count": 149, + "max": [ + 4.979597179044504e-07, + 0.6356124877929688, + 9.496986876911251e-07 + ], + "min": [ + -4.5571459850179963e-07, + 0.6356109976768494, + -4.977449634679942e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 206896, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 267888, + "componentType": 5126, + "count": 149, + "max": [ + 0.9669424891471863, + 1.6263960844753456e-07, + 1.250595801138843e-06, + 0.9844054579734802 + ], + "min": [ + 0.17591466009616852, + -1.8417797775782674e-07, + 1.0059478228185981e-07, + 0.25499460101127625 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 207492, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 419772, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000009536743164, + 1.000000238418579, + 1.0000009536743164 + ], + "min": [ + 0.9999998807907104, + 0.999998927116394, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 208088, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 421560, + "componentType": 5126, + "count": 149, + "max": [ + 7.152561352086195e-07, + 0.002127871150150895, + 4.772366537508788e-07 + ], + "min": [ + -7.152557941481064e-07, + 0.0021269170101732016, + -9.536731795378728e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 208684, + "componentType": 5126, + "count": 141, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 270272, + "componentType": 5126, + "count": 141, + "max": [ + -0.5695310831069946, + 0.2263178825378418, + 0.16930751502513885, + 0.8143857717514038 + ], + "min": [ + -0.7076997756958008, + -0.22954237461090088, + -0.365450382232666, + 0.7004920840263367 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 209248, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 423348, + "componentType": 5126, + "count": 148, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 209840, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 425124, + "componentType": 5126, + "count": 148, + "max": [ + 4.76837158203125e-07, + 0.2726668417453766, + 9.61450268732733e-07 + ], + "min": [ + -7.152557373046875e-07, + 0.2726644277572632, + -9.705503316581598e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 210432, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 272528, + "componentType": 5126, + "count": 148, + "max": [ + 0.36788082122802734, + 0.24711871147155762, + 0.19612592458724976, + 0.9987602829933167 + ], + "min": [ + -0.30093422532081604, + -0.1326407939195633, + -0.045496296137571335, + 0.908672571182251 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 211024, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 426900, + "componentType": 5126, + "count": 148, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 211616, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 428676, + "componentType": 5126, + "count": 149, + "max": [ + 0.04481710493564606, + 0.5170745253562927, + 0.010739386081695557 + ], + "min": [ + 0.04481495916843414, + 0.5170721411705017, + 0.01073700375854969 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 212212, + "componentType": 5126, + "count": 132, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 274896, + "componentType": 5126, + "count": 132, + "max": [ + -0.1853695809841156, + -0.49043548107147217, + -0.5093847513198853, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.6581334471702576, + -0.6756433248519897, + 0.27568936347961426 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 212740, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 430464, + "componentType": 5126, + "count": 148, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 213332, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 432240, + "componentType": 5126, + "count": 149, + "max": [ + 0.023542404174804688, + 0.24887752532958984, + -0.07664680480957031 + ], + "min": [ + -0.00429499801248312, + 0.23651321232318878, + -0.11545286327600479 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 213928, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 277008, + "componentType": 5126, + "count": 148, + "max": [ + 0.22522328794002533, + 0.3263132572174072, + 0.279843807220459, + 0.9906296133995056 + ], + "min": [ + -0.7055028676986694, + -0.1676858514547348, + -0.9208177924156189, + 0.3688261806964874 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 214520, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 434028, + "componentType": 5126, + "count": 148, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 215112, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 435804, + "componentType": 5126, + "count": 149, + "max": [ + 9.477999469709175e-07, + 0.40486183762550354, + 1.1727275932571501e-06 + ], + "min": [ + -5.035843742007273e-07, + 0.4048605263233185, + -7.456441721842566e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 215708, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 279376, + "componentType": 5126, + "count": 149, + "max": [ + 0.32898426055908203, + 0.5269917845726013, + -0.06778706610202789, + 0.997620165348053 + ], + "min": [ + -0.26146799325942993, + -0.6968709826469421, + -0.677847683429718, + 0.6263001561164856 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 216304, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 437592, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 216900, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 439380, + "componentType": 5126, + "count": 148, + "max": [ + 5.026711846767284e-07, + 0.4032714366912842, + 4.6568493416998535e-07 + ], + "min": [ + -9.571192549628904e-07, + 0.4032699763774872, + -1.4750024774912163e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 217492, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 281760, + "componentType": 5126, + "count": 149, + "max": [ + 0.5158865451812744, + 0.43629464507102966, + 0.15030266344547272, + 0.9978938102722168 + ], + "min": [ + -0.2826054096221924, + -0.7242268323898315, + -0.17892900109291077, + 0.669049084186554 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 218088, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 441156, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 218684, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 442944, + "componentType": 5126, + "count": 149, + "max": [ + 0.09804441779851913, + 0.21963128447532654, + -0.0024722032248973846 + ], + "min": [ + 0.0980411246418953, + 0.21962979435920715, + -0.002474241890013218 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 219280, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 284144, + "componentType": 5126, + "count": 149, + "max": [ + -0.622336745262146, + -0.0009816329693421721, + 0.03366417437791824, + 0.7820247411727905 + ], + "min": [ + -0.6223368048667908, + -0.000981715158559382, + 0.03366410732269287, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 219876, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 444732, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.000000238418579, + 0.9999999403953552 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 220472, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 446520, + "componentType": 5126, + "count": 149, + "max": [ + 9.702168881631223e-07, + 0.09750320017337799, + 8.405001494793396e-07 + ], + "min": [ + -9.454454925617028e-07, + 0.0975017175078392, + -1.1884531403438814e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 221068, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 286528, + "componentType": 5126, + "count": 149, + "max": [ + 0.7120715975761414, + -0.01432507298886776, + -0.04958083853125572, + 0.7002077698707581 + ], + "min": [ + 0.7120713591575623, + -0.014325227588415146, + -0.04958093538880348, + 0.7002075910568237 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 221664, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 448308, + "componentType": 5126, + "count": 149, + "max": [ + 1.0, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999991059303284, + 0.9999998807907104, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 222260, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 450096, + "componentType": 5126, + "count": 149, + "max": [ + -0.016225285828113556, + 0.21308684349060059, + -0.003558296477422118 + ], + "min": [ + -0.016228215768933296, + 0.21308493614196777, + -0.0035603942815214396 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 222856, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 288912, + "componentType": 5126, + "count": 149, + "max": [ + -0.6264929175376892, + -0.07110267132520676, + 0.07480835914611816, + 0.7725637555122375 + ], + "min": [ + -0.6264930367469788, + -0.07110274583101273, + 0.07480829954147339, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 223452, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 451884, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 224048, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 453672, + "componentType": 5126, + "count": 149, + "max": [ + 9.501869158157206e-07, + 0.08465065062046051, + 1.8097107101766596e-07 + ], + "min": [ + -9.638760047891992e-07, + 0.08464901894330978, + -8.075892878878221e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 224644, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 291296, + "componentType": 5126, + "count": 149, + "max": [ + 0.7326818108558655, + -0.00830067228525877, + -0.0006735415081493556, + 0.6805204749107361 + ], + "min": [ + 0.7326817512512207, + -0.008300743997097015, + -0.0006736400537192822, + 0.6805204749107361 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 225240, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 455460, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 225836, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 457248, + "componentType": 5126, + "count": 149, + "max": [ + 0.11189756542444229, + 0.10989029705524445, + -0.051629699766635895 + ], + "min": [ + 0.11189478635787964, + 0.10988812148571014, + -0.05163157358765602 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 226432, + "componentType": 5126, + "count": 140, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 293680, + "componentType": 5126, + "count": 140, + "max": [ + -0.4573034942150116, + 0.16493293642997742, + -0.31590890884399414, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493287682533264, + -0.3159089684486389, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 226992, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 459036, + "componentType": 5126, + "count": 149, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.9999993443489075, + 0.9999993443489075, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 227588, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 460824, + "componentType": 5126, + "count": 149, + "max": [ + 4.6673918063788733e-07, + 0.08512449264526367, + 5.093287427371251e-07 + ], + "min": [ + -9.727217502586427e-07, + 0.08512328565120697, + -9.45488295656105e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 228184, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 295920, + "componentType": 5126, + "count": 149, + "max": [ + 0.02291060797870159, + 0.012835816480219364, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.022910527884960175, + 0.012835744768381119, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 228780, + "componentType": 5126, + "count": 147, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 462612, + "componentType": 5126, + "count": 147, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 229368, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 464376, + "componentType": 5126, + "count": 149, + "max": [ + 0.005586182698607445, + 0.1660458892583847, + -0.04539206251502037 + ], + "min": [ + 0.005583893973380327, + 0.16604359447956085, + -0.045394934713840485 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 229964, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 298304, + "componentType": 5126, + "count": 148, + "max": [ + 0.41597089171409607, + 0.8707951903343201, + -0.25249776244163513, + 0.07020694017410278 + ], + "min": [ + 0.41597071290016174, + 0.8707951307296753, + -0.2524978220462799, + 0.07020682096481323 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 230556, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 466164, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 231152, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 467952, + "componentType": 5126, + "count": 148, + "max": [ + 9.5367431640625e-07, + 0.5450082421302795, + 9.474014746047033e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.5450063347816467, + -5.001508043278591e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 231744, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 300672, + "componentType": 5126, + "count": 149, + "max": [ + 0.04296256601810455, + 0.2976109981536865, + 0.030533697456121445, + 0.999828040599823 + ], + "min": [ + -0.09808667749166489, + -0.2109808772802353, + -0.08263406157493591, + 0.9517008662223816 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 232340, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 469728, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 232936, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 471516, + "componentType": 5126, + "count": 149, + "max": [ + 9.536742595628311e-07, + 0.11002922058105469, + 4.749745698973129e-07 + ], + "min": [ + -4.768372150465439e-07, + 0.11002731323242188, + -4.78699803352356e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 233532, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 303056, + "componentType": 5126, + "count": 149, + "max": [ + 0.024459032341837883, + 0.2979108393192291, + 0.03452615812420845, + 1.0 + ], + "min": [ + -0.11688962578773499, + -0.210364431142807, + -0.08345863968133926, + 0.9501445293426514 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 234128, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 473304, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 234724, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 475092, + "componentType": 5126, + "count": 149, + "max": [ + 9.478483207203681e-07, + 0.3614475727081299, + 0.026842139661312103 + ], + "min": [ + -1.436337470295257e-06, + 0.36144328117370605, + 0.026840470731258392 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 235320, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 305440, + "componentType": 5126, + "count": 149, + "max": [ + 3.725289587919178e-08, + 2.2351798634190345e-08, + 1.4901159417490817e-08, + 1.0 + ], + "min": [ + -2.9802315282267955e-08, + -3.166490003536637e-08, + -2.2351738238057806e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 235916, + "componentType": 5126, + "count": 146, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 476880, + "componentType": 5126, + "count": 146, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.9999998807907104, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 236500, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 478632, + "componentType": 5126, + "count": 149, + "max": [ + 7.757582807244034e-07, + -0.15834090113639832, + -0.2537640929222107 + ], + "min": [ + -8.931717161431152e-07, + -0.15834428369998932, + -0.2537664771080017 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 237096, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 307824, + "componentType": 5126, + "count": 149, + "max": [ + -0.998119592666626, + 2.5799449687724518e-08, + -1.9426083497364743e-07, + 0.06129677966237068 + ], + "min": [ + -0.998119592666626, + -2.110108887620754e-08, + -2.4726259084673075e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 237692, + "componentType": 5126, + "count": 147, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 480420, + "componentType": 5126, + "count": 147, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 0.9999721050262451 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 238280, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 482184, + "componentType": 5126, + "count": 149, + "max": [ + 3.576279254957626e-07, + 0.2539481222629547, + 5.507494051926187e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.25394633412361145, + -6.50579750072211e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 238876, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 310208, + "componentType": 5126, + "count": 149, + "max": [ + 0.15613587200641632, + -9.19896052664626e-08, + 4.1460797461922994e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.4631112321694673e-07, + -4.480498194681104e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 239472, + "componentType": 5126, + "count": 146, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 483972, + "componentType": 5126, + "count": 146, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000005960464478 + ], + "min": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 240056, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 485724, + "componentType": 5126, + "count": 149, + "max": [ + 4.76837158203125e-07, + 0.2533201277256012, + 5.563720151258167e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.25331825017929077, + -4.6871002723491983e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 240652, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 312592, + "componentType": 5126, + "count": 149, + "max": [ + -0.09231439232826233, + 3.2355654155935554e-08, + 1.6901196886465186e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144668340683, + -2.9328282025176122e-08, + -2.289936595900599e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 241248, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 487512, + "componentType": 5126, + "count": 149, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 241844, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 489300, + "componentType": 5126, + "count": 149, + "max": [ + 4.7683712978141557e-07, + 0.2637796103954315, + 9.063734864867001e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.26377809047698975, + -4.6529549990736996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 242440, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 314976, + "componentType": 5126, + "count": 149, + "max": [ + 2.3903531598534755e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.0651266535433024e-07 + ], + "min": [ + -2.9047022565009684e-08, + -0.9896631240844727, + 0.14341169595718384, + 5.2863931898627925e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 243036, + "componentType": 5126, + "count": 142, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 491088, + "componentType": 5126, + "count": 142, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 243604, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 492792, + "componentType": 5126, + "count": 149, + "max": [ + 1.301839915868186e-06, + 0.24314379692077637, + 0.18703404068946838 + ], + "min": [ + -1.2100151707272744e-06, + 0.24314090609550476, + 0.1870308816432953 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 244200, + "componentType": 5126, + "count": 133, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 317360, + "componentType": 5126, + "count": 133, + "max": [ + 0.44783374667167664, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777875661849976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 244732, + "componentType": 5126, + "count": 145, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 494580, + "componentType": 5126, + "count": 145, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 1.0, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 245312, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 496320, + "componentType": 5126, + "count": 149, + "max": [ + -0.2441888302564621, + -0.13046182692050934, + 0.029651260003447533 + ], + "min": [ + -0.2441900372505188, + -0.13046488165855408, + 0.029648687690496445 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 245908, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 319488, + "componentType": 5126, + "count": 149, + "max": [ + 0.007415729109197855, + -0.0742839053273201, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415672764182091, + -0.07428396493196487, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 246504, + "componentType": 5126, + "count": 142, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 498108, + "componentType": 5126, + "count": 142, + "max": [ + 0.9999976754188538, + 1.0000005960464478, + 0.9999987483024597 + ], + "min": [ + 0.9999971389770508, + 1.0000001192092896, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 247072, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 499812, + "componentType": 5126, + "count": 149, + "max": [ + 0.2434195578098297, + -0.13046182692050934, + 0.029651090502738953 + ], + "min": [ + 0.243418350815773, + -0.13046495616436005, + 0.02964920364320278 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 247668, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 321872, + "componentType": 5126, + "count": 149, + "max": [ + 0.007417459972202778, + 0.07428370416164398, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417406886816025, + 0.0742836445569992, + 0.9923431277275085, + 0.09839746356010437 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 248264, + "componentType": 5126, + "count": 147, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 501600, + "componentType": 5126, + "count": 147, + "max": [ + 0.9999975562095642, + 1.0000005960464478, + 0.9999987483024597 + ], + "min": [ + 0.9999969601631165, + 0.9999999403953552, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 248852, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 503364, + "componentType": 5126, + "count": 149, + "max": [ + -0.04481542855501175, + 0.5170740485191345, + 0.010738963261246681 + ], + "min": [ + -0.04481733590364456, + 0.5170721411705017, + 0.010737020522356033 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 249448, + "componentType": 5126, + "count": 139, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 324256, + "componentType": 5126, + "count": 139, + "max": [ + -0.46021807193756104, + 0.5295888185501099, + 0.5511829853057861, + 0.5365169048309326 + ], + "min": [ + -0.6241976618766785, + 0.4245080351829529, + 0.4341067671775818, + 0.44555118680000305 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 250004, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 505152, + "componentType": 5126, + "count": 148, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 250596, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 506928, + "componentType": 5126, + "count": 149, + "max": [ + 0.017871879041194916, + 0.23814813792705536, + -0.03310174494981766 + ], + "min": [ + -0.018316373229026794, + 0.2259102761745453, + -0.07099871337413788 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 251192, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 326480, + "componentType": 5126, + "count": 148, + "max": [ + 0.2346448451280594, + 0.5143933296203613, + 0.5793777704238892, + 0.987484335899353 + ], + "min": [ + -0.6218317747116089, + -0.12911267578601837, + -0.36249324679374695, + 0.5601324439048767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 251784, + "componentType": 5126, + "count": 147, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 508716, + "componentType": 5126, + "count": 147, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 252372, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 510480, + "componentType": 5126, + "count": 149, + "max": [ + 9.642699296819046e-07, + 0.4048617482185364, + 6.849640499240195e-07 + ], + "min": [ + -9.619238880986813e-07, + 0.4048607647418976, + -2.7839755034619884e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 252968, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 328848, + "componentType": 5126, + "count": 149, + "max": [ + 0.24598786234855652, + 0.887157142162323, + 0.763057291507721, + 0.9982805848121643 + ], + "min": [ + -0.423275887966156, + -0.15322931110858917, + -0.06088864430785179, + 0.077107734978199 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 253564, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 512268, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 254160, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 514056, + "componentType": 5126, + "count": 148, + "max": [ + 5.197949235480337e-07, + 0.40327098965644836, + 4.707221705757547e-07 + ], + "min": [ + -9.524684969619557e-07, + 0.40327000617980957, + -5.481963967213233e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 254752, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 331232, + "componentType": 5126, + "count": 149, + "max": [ + 0.3982604742050171, + 0.5700093507766724, + 0.2777266800403595, + 0.999443769454956 + ], + "min": [ + -0.0677051916718483, + -0.8181317448616028, + -0.34662753343582153, + 0.5471659898757935 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 255348, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 515832, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 255944, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 517620, + "componentType": 5126, + "count": 149, + "max": [ + -0.09804154932498932, + 0.21963202953338623, + -0.0024718078784644604 + ], + "min": [ + -0.09804395586252213, + 0.21963055431842804, + -0.002474207431077957 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 256540, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 333616, + "componentType": 5126, + "count": 148, + "max": [ + -0.5146673917770386, + 0.049974970519542694, + -0.08315926790237427, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997489973902702, + -0.08315935730934143, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 257132, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 519408, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 257728, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 521196, + "componentType": 5126, + "count": 149, + "max": [ + 9.399822147315717e-07, + 0.09750311076641083, + 1.0764065336843487e-06 + ], + "min": [ + -9.769247526492109e-07, + 0.09750166535377502, + -1.4502431611163047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 258324, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 335984, + "componentType": 5126, + "count": 149, + "max": [ + 0.9579117894172668, + -0.02503804676234722, + -0.026632817462086678, + 0.284726083278656 + ], + "min": [ + 0.9579116702079773, + -0.025038113817572594, + -0.02663288079202175, + 0.28472578525543213 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 258920, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 522984, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 259516, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 524772, + "componentType": 5126, + "count": 149, + "max": [ + 0.016227755695581436, + 0.21308685839176178, + -0.0035580890253186226 + ], + "min": [ + 0.01622541807591915, + 0.21308523416519165, + -0.0035604240838438272 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 260112, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 338368, + "componentType": 5126, + "count": 148, + "max": [ + -0.5430819988250732, + 0.06296975910663605, + -0.08177219331264496, + 0.8333126902580261 + ], + "min": [ + -0.543082058429718, + 0.06296969950199127, + -0.08177224546670914, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 260704, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 526560, + "componentType": 5126, + "count": 148, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 261296, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 528336, + "componentType": 5126, + "count": 149, + "max": [ + 4.934074695484014e-07, + 0.0846509262919426, + 5.18909814672952e-07 + ], + "min": [ + -9.437313224225363e-07, + 0.08464900404214859, + -9.630040267438744e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 261892, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 340736, + "componentType": 5126, + "count": 149, + "max": [ + 0.9449191689491272, + 0.007867262698709965, + -0.002731499494984746, + 0.32719817757606506 + ], + "min": [ + 0.9449190497398376, + 0.007867196574807167, + -0.002731562126427889, + 0.32719793915748596 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 262488, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 530124, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000008344650269, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 1.0000001192092896, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 263084, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 531912, + "componentType": 5126, + "count": 149, + "max": [ + -0.11189509183168411, + 0.10988982766866684, + -0.05163015425205231 + ], + "min": [ + -0.11189830303192139, + 0.10988796502351761, + -0.05163221061229706 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 263680, + "componentType": 5126, + "count": 146, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 343120, + "componentType": 5126, + "count": 146, + "max": [ + -0.4322458803653717, + -0.12903623282909393, + 0.15030041337013245, + 0.8797289133071899 + ], + "min": [ + -0.43224599957466125, + -0.1290363222360611, + 0.1503002941608429, + 0.8797287940979004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 264264, + "componentType": 5126, + "count": 147, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 533700, + "componentType": 5126, + "count": 147, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 264852, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 535464, + "componentType": 5126, + "count": 149, + "max": [ + 9.288367550652765e-07, + 0.08512438833713531, + 4.805452249456721e-07 + ], + "min": [ + -9.958920372810098e-07, + 0.08512291312217712, + -4.924922905047424e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 265448, + "componentType": 5126, + "count": 145, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 345456, + "componentType": 5126, + "count": 145, + "max": [ + 0.1481143832206726, + -0.12198016792535782, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.12198023498058319, + -0.12739090621471405, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 266028, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 537252, + "componentType": 5126, + "count": 149, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 266624, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 539040, + "componentType": 5126, + "count": 149, + "max": [ + -0.005583866965025663, + 0.16604503989219666, + -0.036894239485263824 + ], + "min": [ + -0.006522882729768753, + 0.14337824285030365, + -0.04539443552494049 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 267220, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 347776, + "componentType": 5126, + "count": 149, + "max": [ + 0.6181666851043701, + 0.8245868682861328, + 0.24978694319725037, + 0.3363420367240906 + ], + "min": [ + -0.7073023319244385, + -0.9143344759941101, + -0.13806338608264923, + 0.0005129888304509223 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 267816, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 540828, + "componentType": 5126, + "count": 149, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 268412, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 542616, + "componentType": 5126, + "count": 149, + "max": [ + 0.13640420138835907, + 0.2850491404533386, + 0.0019407094223424792 + ], + "min": [ + 0.13640277087688446, + 0.2850462794303894, + 0.0019387492211535573 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 269008, + "componentType": 5126, + "count": 146, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 350160, + "componentType": 5126, + "count": 146, + "max": [ + -5.2793673432915966e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.640657814050428e-07 + ], + "min": [ + -1.0795469052027329e-07, + -0.693580687046051, + -0.7203789949417114, + 1.212556099972062e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 269592, + "componentType": 5126, + "count": 146, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 544404, + "componentType": 5126, + "count": 146, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 270176, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 546156, + "componentType": 5126, + "count": 149, + "max": [ + -0.13640229403972626, + 0.2850486636161804, + 0.0019412506371736526 + ], + "min": [ + -0.13640467822551727, + 0.2850462794303894, + 0.0019379152217879891 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 270772, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 352496, + "componentType": 5126, + "count": 148, + "max": [ + -5.285929205456341e-08, + -0.6935806274414063, + -0.7203789353370667, + 8.228006009858291e-08 + ], + "min": [ + -1.0056547949943706e-07, + -0.693580687046051, + -0.7203789949417114, + 3.223670930196931e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 271364, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 547944, + "componentType": 5126, + "count": 148, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 271956, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 549720, + "componentType": 5126, + "count": 138, + "max": [ + 1.4745912551879883, + 1.470528244972229, + -0.49229151010513306 + ], + "min": [ + -0.7786130309104919, + -1.4698480367660522, + -2.9905097484588623 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 272508, + "componentType": 5126, + "count": 22, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 354864, + "componentType": 5126, + "count": 22, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 272596, + "componentType": 5126, + "count": 44, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 551376, + "componentType": 5126, + "count": 44, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 272772, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 551904, + "componentType": 5126, + "count": 149, + "max": [ + 0.7422959208488464, + 1.167580485343933, + -0.2306215763092041 + ], + "min": [ + -0.853446364402771, + -0.653813362121582, + -2.0276856422424316 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 273368, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 355216, + "componentType": 5126, + "count": 149, + "max": [ + 1.0, + 0.9392013549804688, + 0.533401370048523, + 0.993672251701355 + ], + "min": [ + -1.0, + -0.9697262644767761, + -0.6024565696716309, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 273964, + "componentType": 5126, + "count": 133, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 553692, + "componentType": 5126, + "count": 133, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 274496, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 555288, + "componentType": 5126, + "count": 149, + "max": [ + 5.911290645599365e-05, + 0.10661743581295013, + 0.09870307147502899 + ], + "min": [ + -0.05921007692813873, + -0.00012018822599202394, + -0.0001063779927790165 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 275092, + "componentType": 5126, + "count": 143, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 357600, + "componentType": 5126, + "count": 143, + "max": [ + -0.9503703713417053, + 2.0217857610305145e-08, + 1.8355132525016415e-08, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -2.153218936484791e-08, + -1.4451376983970476e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 275664, + "componentType": 5126, + "count": 145, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 557076, + "componentType": 5126, + "count": 145, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 276244, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 558816, + "componentType": 5126, + "count": 148, + "max": [ + 4.768373855768004e-07, + 0.2825007438659668, + 5.350440233087284e-07 + ], + "min": [ + -2.384187780535285e-07, + 0.28249895572662354, + -4.3884554656870023e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 276836, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 359888, + "componentType": 5126, + "count": 149, + "max": [ + 7.99932990958041e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.91070068164845e-07 + ], + "min": [ + -1.0250806070644103e-07, + 0.9410185813903809, + -0.33835500478744507, + 4.106422863969783e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 277432, + "componentType": 5126, + "count": 148, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 560592, + "componentType": 5126, + "count": 148, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 278024, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 562368, + "componentType": 5126, + "count": 138, + "max": [ + 1.1866446733474731, + 1.4896436929702759, + -0.42050203680992126 + ], + "min": [ + -0.9907415509223938, + -1.0829814672470093, + -2.9670679569244385 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 278576, + "componentType": 5126, + "count": 22, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 362272, + "componentType": 5126, + "count": 22, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 278664, + "componentType": 5126, + "count": 45, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 564024, + "componentType": 5126, + "count": 45, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 278844, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 564564, + "componentType": 5126, + "count": 138, + "max": [ + 0.3057379424571991, + 0.7813920974731445, + -0.2069084346294403 + ], + "min": [ + -0.9623720049858093, + -0.9694123268127441, + -2.062227249145508 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 279396, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 362624, + "componentType": 5126, + "count": 138, + "max": [ + 1.0, + 0.9761806130409241, + 0.29089370369911194, + 0.9789946675300598 + ], + "min": [ + -0.9999998807907104, + -0.9790038466453552, + -0.5054757595062256, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 279948, + "componentType": 5126, + "count": 111, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 566220, + "componentType": 5126, + "count": 111, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 280392, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 567552, + "componentType": 5126, + "count": 149, + "max": [ + 3.9950013160705566e-05, + 2.8020833269692957e-05, + 7.889741027611308e-06 + ], + "min": [ + -3.8430094718933105e-05, + -9.593681170372292e-05, + -0.0001046089455485344 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 280988, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 364832, + "componentType": 5126, + "count": 138, + "max": [ + -0.9503704309463501, + 1.5447362500253803e-08, + 2.7562045090689935e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -4.358053473652035e-08, + -1.9645989723926505e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 281540, + "componentType": 5126, + "count": 139, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 569340, + "componentType": 5126, + "count": 139, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 282096, + "componentType": 5126, + "count": 149, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 571008, + "componentType": 5126, + "count": 149, + "max": [ + 4.76837158203125e-07, + 0.2825007438659668, + 4.6935969066908e-07 + ], + "min": [ + -4.768372150465439e-07, + 0.28249895572662354, + -4.6190896796360903e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 282692, + "componentType": 5126, + "count": 138, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 367040, + "componentType": 5126, + "count": 138, + "max": [ + -6.015436326833878e-08, + 0.979973554611206, + 0.6099730730056763, + 0.10605498403310776 + ], + "min": [ + -0.10634380578994751, + -0.9818702340126038, + -0.5997858047485352, + 4.019145194433804e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 283244, + "componentType": 5126, + "count": 140, + "max": [ + 2.4666666984558105 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 572796, + "componentType": 5126, + "count": 140, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 283804, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 574476, + "componentType": 5126, + "count": 33, + "max": [ + 0.0, + 0.0, + 2.759199619293213 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 283936, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 574872, + "componentType": 5126, + "count": 81, + "max": [ + 0.08250679820775986, + 0.051746711134910583, + -1.1470673084259033 + ], + "min": [ + -0.2199064940214157, + -0.10920019447803497, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 284260, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 369248, + "componentType": 5126, + "count": 81, + "max": [ + 0.1306525021791458, + 0.06648915261030197, + 0.34350934624671936, + 0.9997872710227966 + ], + "min": [ + -0.03552567958831787, + 0.006664292886853218, + -0.2625446915626526, + 0.9345064759254456 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 284584, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 575844, + "componentType": 5126, + "count": 71, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 284868, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 576696, + "componentType": 5126, + "count": 81, + "max": [ + 2.384185791015625e-07, + 0.00212763249874115, + 2.384185791015625e-07 + ], + "min": [ + -2.384186927884002e-07, + 0.0021271556615829468, + -2.3841863594498136e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 285192, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 370544, + "componentType": 5126, + "count": 81, + "max": [ + 0.7071067690849304, + 3.335957501349185e-07, + -2.8157074893897516e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.8058292400601204e-07, + -3.319493941944529e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 285516, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 577668, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 285840, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 578640, + "componentType": 5126, + "count": 81, + "max": [ + 0.17381879687309265, + 0.13409900665283203, + 9.658328963269014e-07 + ], + "min": [ + 0.17381784319877625, + 0.13409793376922607, + -9.412125905328139e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 286164, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 371840, + "componentType": 5126, + "count": 81, + "max": [ + -0.08463507890701294, + 0.28355181217193604, + -0.0956118181347847, + 0.9695424437522888 + ], + "min": [ + -0.392628014087677, + 0.00368653517216444, + -0.29126179218292236, + 0.8901738524436951 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 286488, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 579612, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999995231628418, + 0.9999995231628418, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 286812, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 580584, + "componentType": 5126, + "count": 81, + "max": [ + 4.4843653768111835e-07, + 0.6356117129325867, + 1.3161832157493336e-07 + ], + "min": [ + -5.052377787251316e-07, + 0.6356111168861389, + -1.4230694489469897e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 287136, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 373136, + "componentType": 5126, + "count": 81, + "max": [ + 0.6437515020370483, + 6.487439918601012e-08, + 6.697689514112426e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.6167114697273064e-08, + -1.1107276804978028e-06, + 0.765234649181366 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 287460, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 581556, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999992847442627, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 287784, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 582528, + "componentType": 5126, + "count": 81, + "max": [ + -0.17381784319877625, + 0.13409876823425293, + 7.295775503735058e-07 + ], + "min": [ + -0.1738186776638031, + 0.13409803807735443, + -7.00706550560426e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 288108, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 374432, + "componentType": 5126, + "count": 81, + "max": [ + 0.0693177655339241, + 0.12879395484924316, + 0.41604411602020264, + 0.960454523563385 + ], + "min": [ + -0.5192772150039673, + -0.23742727935314178, + 0.18893519043922424, + 0.7730752825737 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 288432, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 583500, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 288756, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 584472, + "componentType": 5126, + "count": 81, + "max": [ + 1.4033184925210662e-07, + 0.6356116533279419, + 2.5661873337412544e-07 + ], + "min": [ + -9.808672984945588e-08, + 0.6356112957000732, + -2.4373690621359856e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 289080, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 375728, + "componentType": 5126, + "count": 81, + "max": [ + 0.691176176071167, + 4.002909648193054e-08, + 1.3993175116411294e-06, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + -5.755767062964878e-08, + 9.900475816948529e-08, + 0.7226863503456116 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 289404, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 585444, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999992847442627, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 289728, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 586416, + "componentType": 5126, + "count": 80, + "max": [ + 1.1920944587018312e-07, + 0.0021276327315717936, + 2.3841823804104934e-07 + ], + "min": [ + -2.384187496318191e-07, + 0.0021271551959216595, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 290048, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 377024, + "componentType": 5126, + "count": 81, + "max": [ + -0.5735625624656677, + 0.04819715395569801, + 0.08642065525054932, + 0.8143857717514038 + ], + "min": [ + -0.6495170593261719, + -0.1021478995680809, + 0.0460655614733696, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 290372, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 587376, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 290696, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 588348, + "componentType": 5126, + "count": 81, + "max": [ + 2.384185791015625e-07, + 0.2726660966873169, + 2.509809178263822e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.27266550064086914, + -2.4281220589728036e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 291020, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 378320, + "componentType": 5126, + "count": 81, + "max": [ + 0.19022397696971893, + 0.0997157171368599, + 0.08555883914232254, + 0.9944412708282471 + ], + "min": [ + 0.08500942587852478, + -0.12215319275856018, + 0.02510380744934082, + 0.9726698398590088 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 291344, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 589320, + "componentType": 5126, + "count": 79, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 291660, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 590268, + "componentType": 5126, + "count": 81, + "max": [ + 0.044816628098487854, + 0.5170735716819763, + 0.010738330893218517 + ], + "min": [ + 0.04481567442417145, + 0.5170723795890808, + 0.010737732984125614 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 291984, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 379616, + "componentType": 5126, + "count": 73, + "max": [ + -0.4904356002807617, + -0.49043551087379456, + -0.5019241571426392, + 0.5093849301338196 + ], + "min": [ + -0.5382574200630188, + -0.5097403526306152, + -0.5093848705291748, + 0.4455512762069702 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 292276, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 591240, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 292596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 592200, + "componentType": 5126, + "count": 81, + "max": [ + 0.023541152477264404, + 0.23812638223171234, + -0.07664657384157181 + ], + "min": [ + -3.07165294088918e-07, + 0.23651327192783356, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 292920, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 380784, + "componentType": 5126, + "count": 81, + "max": [ + 0.09923525154590607, + -0.0023498565424233675, + 0.41736945509910583, + 0.8971870541572571 + ], + "min": [ + -0.705502986907959, + -0.09807991236448288, + -0.8363106846809387, + 0.5325630307197571 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 293244, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 593172, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 293568, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 594144, + "componentType": 5126, + "count": 80, + "max": [ + 2.4574202939220413e-07, + 0.40486156940460205, + 4.451722475096176e-07 + ], + "min": [ + -3.532107939463458e-07, + 0.40486103296279907, + -3.875576481959797e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 293888, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 382080, + "componentType": 5126, + "count": 81, + "max": [ + 0.4837333559989929, + 0.5269917249679565, + -0.2353183478116989, + 0.855968177318573 + ], + "min": [ + 0.07776038348674774, + -0.4298876225948334, + -0.6708504557609558, + 0.6652452945709229 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 294212, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 595104, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 294536, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 596076, + "componentType": 5126, + "count": 81, + "max": [ + 4.81493941606459e-07, + 0.4032709300518036, + 1.058618721572202e-07 + ], + "min": [ + -4.94663026984199e-07, + 0.4032702147960663, + -1.9341055690347275e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 294860, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 383376, + "componentType": 5126, + "count": 81, + "max": [ + 0.21410295367240906, + 0.39465609192848206, + 0.12396225333213806, + 0.9990854263305664 + ], + "min": [ + -0.11016573756933212, + -0.15764398872852325, + -0.14216406643390656, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 295184, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 597048, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 295508, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 598020, + "componentType": 5126, + "count": 81, + "max": [ + 0.09804357588291168, + 0.2196311354637146, + -0.002472521970048547 + ], + "min": [ + 0.0980420708656311, + 0.21963022649288177, + -0.0024729256983846426 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 295832, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 384672, + "componentType": 5126, + "count": 81, + "max": [ + -0.2870813310146332, + 0.029087182134389877, + 0.06515243649482727, + 0.9552452564239502 + ], + "min": [ + -0.6223368048667908, + -0.0009816805832087994, + 0.033664196729660034, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 296156, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 598992, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 296480, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 599964, + "componentType": 5126, + "count": 81, + "max": [ + 2.6024144972325303e-07, + 0.0975029245018959, + 5.871631856280146e-07 + ], + "min": [ + -4.6009276388758735e-07, + 0.0975022092461586, + 1.2137067528783518e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 296804, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 385968, + "componentType": 5126, + "count": 81, + "max": [ + -0.17831791937351227, + 0.002465917496010661, + -0.015183928422629833, + 0.9838480353355408 + ], + "min": [ + -0.5302280187606812, + -0.00390129373408854, + -0.05339593067765236, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 297128, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 600936, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 297452, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 601908, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226056963205338, + 0.21308687329292297, + -0.0035592273343354464 + ], + "min": [ + -0.016227716580033302, + 0.21308556199073792, + -0.003559785196557641 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 297776, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 387264, + "componentType": 5126, + "count": 81, + "max": [ + -0.5064972043037415, + -0.05937062203884125, + 0.08442164957523346, + 0.8560424447059631 + ], + "min": [ + -0.626492977142334, + -0.07110272347927094, + 0.07480833679437637, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 298100, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 602880, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 298420, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 603840, + "componentType": 5126, + "count": 81, + "max": [ + 4.7493412580479344e-07, + 0.08465021848678589, + -1.3661857423130641e-08 + ], + "min": [ + -4.842215730604948e-07, + 0.08464960753917694, + -5.371977636059455e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 298744, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 388560, + "componentType": 5126, + "count": 81, + "max": [ + -0.3693353831768036, + -0.0011796727776527405, + -0.007981983944773674, + 0.9292588829994202 + ], + "min": [ + -0.5015432834625244, + -0.002375239972025156, + -0.008244025520980358, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 299068, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 604812, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 299392, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 605784, + "componentType": 5126, + "count": 81, + "max": [ + 0.11189712584018707, + 0.10988982021808624, + -0.05163092166185379 + ], + "min": [ + 0.11189626902341843, + 0.10988891869783401, + -0.05163173750042915 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 299716, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 389856, + "componentType": 5126, + "count": 79, + "max": [ + -0.17811895906925201, + 0.16493292152881622, + -0.2554427981376648, + 0.9478383660316467 + ], + "min": [ + -0.4573034942150116, + 0.06800766289234161, + -0.31590893864631653, + 0.81478351354599 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 300032, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 606756, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 300356, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 607728, + "componentType": 5126, + "count": 79, + "max": [ + 2.269603527338404e-07, + 0.08512423932552338, + 1.9886724089701602e-07 + ], + "min": [ + -2.6853390977521485e-07, + 0.08512351661920547, + -1.5955862409100519e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 300672, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 391120, + "componentType": 5126, + "count": 81, + "max": [ + 0.022910531610250473, + 0.023211471736431122, + 0.6957963705062866, + 0.9804226756095886 + ], + "min": [ + 0.01228323858231306, + 0.012835758738219738, + 0.1951453983783722, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 300996, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 608676, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 301320, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 609648, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585831589996815, + 0.16604503989219666, + -0.04539325088262558 + ], + "min": [ + 0.005584153812378645, + 0.1660439521074295, + -0.04539372771978378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 301644, + "componentType": 5126, + "count": 74, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 392416, + "componentType": 5126, + "count": 74, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865412920713425 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193426012993, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 301940, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 610620, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 302264, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 611592, + "componentType": 5126, + "count": 81, + "max": [ + 2.3841863594498136e-07, + 0.5450077652931213, + 2.28664291057612e-07 + ], + "min": [ + -2.3841860752327193e-07, + 0.545007050037384, + -1.3215682770351123e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 302588, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 393600, + "componentType": 5126, + "count": 81, + "max": [ + 0.0008335413876920938, + 0.13072361052036285, + -0.008705902844667435, + 0.9988816380500793 + ], + "min": [ + -0.07266714423894882, + -0.14810976386070251, + -0.08263407647609711, + 0.9862592220306396 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 302912, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 612564, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 303236, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 613536, + "componentType": 5126, + "count": 81, + "max": [ + 2.3841860752327193e-07, + 0.11002874374389648, + 2.0675372525147395e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.11002755165100098, + -1.8067657947540283e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 303560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 394896, + "componentType": 5126, + "count": 81, + "max": [ + -0.018032360821962357, + 0.12989991903305054, + -0.005897752940654755, + 0.9980399012565613 + ], + "min": [ + -0.09134304523468018, + -0.14824816584587097, + -0.08345870673656464, + 0.9847051501274109 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 303884, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 614508, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 304208, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 615480, + "componentType": 5126, + "count": 81, + "max": [ + 4.7101116251724306e-07, + 0.3614468574523926, + 0.026841484010219574 + ], + "min": [ + -6.018724434397882e-07, + 0.36144542694091797, + 0.026840709149837494 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 304532, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 396192, + "componentType": 5126, + "count": 81, + "max": [ + 2.2351738238057806e-08, + 1.8627064335419163e-09, + 1.5832480215749456e-08, + 1.0 + ], + "min": [ + -6.705520405603238e-08, + -2.142034993823927e-08, + -1.6763806343078613e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 304856, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 616452, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 1.0, + 0.9999998807907104, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 305180, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 617424, + "componentType": 5126, + "count": 81, + "max": [ + 5.373394742491655e-07, + -0.158341646194458, + -0.25376462936401367 + ], + "min": [ + -5.355441885512846e-07, + -0.1583433300256729, + -0.2537655234336853 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 305504, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 397488, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + 2.1983174391948523e-08, + -2.1317009668564424e-07, + 0.06129675731062889 + ], + "min": [ + -0.998119592666626, + -2.1706673791754838e-08, + -2.4388683073084394e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 305828, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 618396, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999719858169556 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 306152, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 619368, + "componentType": 5126, + "count": 81, + "max": [ + 3.576278970740532e-07, + 0.2539478838443756, + 3.071156413625431e-07 + ], + "min": [ + -1.1920930376163597e-07, + 0.2539467513561249, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 306476, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 398784, + "componentType": 5126, + "count": 81, + "max": [ + 0.15613587200641632, + -1.1919465237042459e-07, + 3.238349677303631e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613581240177155, + -1.467252275233477e-07, + -8.01782729098477e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 306800, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 620340, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000007152557373, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 307120, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 621300, + "componentType": 5126, + "count": 81, + "max": [ + 2.384185791015625e-07, + 0.2533196806907654, + 2.1959723994768865e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2533186972141266, + -1.903028561400788e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 307444, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 400080, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231440722942352, + 3.95807253639191e-09, + 2.722177327996178e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -3.0065294254200126e-08, + -2.7958254378290803e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 307768, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 622272, + "componentType": 5126, + "count": 81, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 308092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 623244, + "componentType": 5126, + "count": 81, + "max": [ + 2.3841856489070778e-07, + 0.2637791931629181, + 2.6640003625288955e-07 + ], + "min": [ + -2.3841856489070778e-07, + 0.2637782394886017, + -1.261421971321397e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 308416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 401376, + "componentType": 5126, + "count": 81, + "max": [ + 1.3417168709395355e-08, + -0.9896631240844727, + 0.1434117704629898, + 9.62774464596805e-08 + ], + "min": [ + -3.0890404900674184e-08, + -0.9896631240844727, + 0.14341171085834503, + 6.30025809300605e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 308740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 624216, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 309064, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 625188, + "componentType": 5126, + "count": 81, + "max": [ + 3.861160848828149e-07, + 0.24314261972904205, + 0.18703222274780273 + ], + "min": [ + -7.604069196531782e-07, + 0.24314160645008087, + 0.18703098595142365 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 309388, + "componentType": 5126, + "count": 74, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 402672, + "componentType": 5126, + "count": 74, + "max": [ + 0.44783368706703186, + -0.23266471922397614, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.4478336572647095, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 309684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 626160, + "componentType": 5126, + "count": 81, + "max": [ + 1.0, + 1.0000005960464478, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 310008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 627132, + "componentType": 5126, + "count": 81, + "max": [ + -0.24418924748897552, + -0.13046272099018097, + 0.029651034623384476 + ], + "min": [ + -0.2441900074481964, + -0.13046416640281677, + 0.029650291427969933 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 310332, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 403856, + "componentType": 5126, + "count": 81, + "max": [ + 0.007415734231472015, + -0.07428388297557831, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415687665343285, + -0.07428394258022308, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 310656, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 628104, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999978542327881, + 1.0000004768371582, + 0.9999988675117493 + ], + "min": [ + 0.9999971985816956, + 1.0000001192092896, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 310980, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 629076, + "componentType": 5126, + "count": 81, + "max": [ + 0.24341922998428345, + -0.13046243786811829, + 0.029650608077645302 + ], + "min": [ + 0.24341854453086853, + -0.13046440482139587, + 0.029649628326296806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 311304, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 405152, + "componentType": 5126, + "count": 79, + "max": [ + 0.007417451590299606, + 0.07428368926048279, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417420856654644, + 0.0742836445569992, + 0.9923431277275085, + 0.09839747101068497 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 311620, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 630048, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999975562095642, + 1.0000005960464478, + 0.9999986290931702 + ], + "min": [ + 0.999997079372406, + 1.000000238418579, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 311944, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 631020, + "componentType": 5126, + "count": 81, + "max": [ + -0.04481542855501175, + 0.5170735716819763, + 0.010738304816186428 + ], + "min": [ + -0.04481662064790726, + 0.5170726180076599, + 0.010737703181803226 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 312268, + "componentType": 5126, + "count": 75, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 406416, + "componentType": 5126, + "count": 75, + "max": [ + -0.49043548107147217, + 0.50974041223526, + 0.5093849897384644, + 0.50938481092453 + ], + "min": [ + -0.5382573008537292, + 0.4904356300830841, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 312568, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 631992, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 312892, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 632964, + "componentType": 5126, + "count": 81, + "max": [ + 0.017870359122753143, + 0.23416444659233093, + -0.035273805260658264 + ], + "min": [ + -0.018316611647605896, + 0.23250827193260193, + -0.06317096948623657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 313216, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 407616, + "componentType": 5126, + "count": 81, + "max": [ + 0.24263660609722137, + 0.5143935084342957, + 0.6681728363037109, + 0.9608516097068787 + ], + "min": [ + -0.5603393912315369, + -0.26475033164024353, + -0.36278119683265686, + 0.5601324439048767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 313540, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 633936, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 313864, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 634908, + "componentType": 5126, + "count": 81, + "max": [ + 2.4722680791455787e-07, + 0.4048615097999573, + 4.4577569724424393e-07 + ], + "min": [ + -2.3947353611220024e-07, + 0.40486103296279907, + -3.9683992980599214e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 314188, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 408912, + "componentType": 5126, + "count": 81, + "max": [ + 0.018846197053790092, + 0.4991835951805115, + 0.6775574684143066, + 0.9983207583427429 + ], + "min": [ + -0.07451161742210388, + 0.05412358418107033, + -0.05700935795903206, + 0.7323013544082642 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 314512, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 635880, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 314836, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 636852, + "componentType": 5126, + "count": 81, + "max": [ + 2.3271708471384045e-07, + 0.40327075123786926, + 1.9592880562413484e-07 + ], + "min": [ + -1.8161463799515332e-07, + 0.40327024459838867, + -2.986135143601132e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 315160, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 410208, + "componentType": 5126, + "count": 81, + "max": [ + 0.09931372106075287, + 0.004205347504466772, + 0.052420053631067276, + 0.9994767904281616 + ], + "min": [ + -0.13569587469100952, + -0.33844539523124695, + -0.15418130159378052, + 0.9389777779579163 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 315484, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 637824, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 315808, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 638796, + "componentType": 5126, + "count": 81, + "max": [ + -0.0980420634150505, + 0.2196313738822937, + -0.002472221851348877 + ], + "min": [ + -0.09804338216781616, + 0.2196303755044937, + -0.002473139902576804 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 316132, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 411504, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488483786583, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 316456, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 639768, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 316776, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 640728, + "componentType": 5126, + "count": 81, + "max": [ + 2.234342844076309e-07, + 0.09750306606292725, + 6.009460093991947e-07 + ], + "min": [ + -2.5523456770315534e-07, + 0.09750235080718994, + 1.21019851917481e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 317100, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 412800, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217609167098999, + 0.06273210048675537, + 0.00973182637244463, + 0.9044820070266724 + ], + "min": [ + -0.4217611849308014, + 0.0627320185303688, + 0.009731785394251347, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 317424, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 641700, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 317748, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 642672, + "componentType": 5126, + "count": 81, + "max": [ + 0.016227174550294876, + 0.21308642625808716, + -0.0035590145271271467 + ], + "min": [ + 0.016226351261138916, + 0.21308588981628418, + -0.003559779142960906 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 318072, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 414096, + "componentType": 5126, + "count": 80, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969205141068, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 318392, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 643644, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 318708, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 644592, + "componentType": 5126, + "count": 80, + "max": [ + 2.509265186745324e-07, + 0.0846504345536232, + 1.384022407791008e-08 + ], + "min": [ + -4.6449474666587776e-07, + 0.0846497118473053, + -4.009852148101345e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 319028, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 415376, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.0020274906419217587, + 0.008077427744865417, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027414971962571, + 0.008077387697994709, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 319352, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 645552, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 319676, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 646524, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189635097980499, + 0.10988970845937729, + -0.05163101851940155 + ], + "min": [ + -0.11189708858728409, + 0.10988902300596237, + -0.05163159593939781 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 320000, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 416672, + "componentType": 5126, + "count": 81, + "max": [ + -0.432245671749115, + -0.12903623282909393, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363371372223, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 320324, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 647496, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 320648, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 648468, + "componentType": 5126, + "count": 81, + "max": [ + 2.0733827454932907e-07, + 0.08512436598539352, + 2.337382056794013e-07 + ], + "min": [ + -2.7656773227136e-07, + 0.08512353152036667, + -1.711372732415839e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 320972, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 417968, + "componentType": 5126, + "count": 81, + "max": [ + 0.14811435341835022, + -0.12198012322187424, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802126288414, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 321296, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 649440, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 321620, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 650412, + "componentType": 5126, + "count": 81, + "max": [ + -0.005584184546023607, + 0.1660449206829071, + -0.04539322480559349 + ], + "min": [ + -0.0055853575468063354, + 0.166044220328331, + -0.04539383202791214 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 321944, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 419264, + "componentType": 5126, + "count": 80, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350191190838814, + 0.034723903983831406 + ], + "min": [ + 0.3005203306674957, + -0.9529386758804321, + -0.019742315635085106, + 0.02386537566781044 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 322264, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 651384, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 322588, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 652356, + "componentType": 5126, + "count": 81, + "max": [ + 0.13640420138835907, + 0.2850474715232849, + 0.0019399767043069005 + ], + "min": [ + 0.13640253245830536, + 0.2850467562675476, + 0.0019394166301935911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 322912, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 420544, + "componentType": 5126, + "count": 81, + "max": [ + -5.691893889547828e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5591508883971983e-07 + ], + "min": [ + -9.955737567679535e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.139754743917365e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 323236, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 653328, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 323556, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 654288, + "componentType": 5126, + "count": 81, + "max": [ + -0.13640253245830536, + 0.285047709941864, + 0.0019401052268221974 + ], + "min": [ + -0.13640396296977997, + 0.2850467562675476, + 0.0019395053386688232 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 323880, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 421840, + "componentType": 5126, + "count": 81, + "max": [ + -6.047708467349366e-08, + -0.6935806274414063, + -0.7203789353370667, + 8.436765597252815e-08 + ], + "min": [ + -1.0036582409611583e-07, + -0.693580687046051, + -0.7203789949417114, + 3.666146497494083e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 324204, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 655260, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 324524, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 656220, + "componentType": 5126, + "count": 33, + "max": [ + 0.33675286173820496, + 0.5460788011550903, + -0.5052628517150879 + ], + "min": [ + 0.00856134481728077, + 0.5460788011550903, + -0.7300586700439453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 324656, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 656616, + "componentType": 5126, + "count": 52, + "max": [ + 0.5804785490036011, + 0.493499755859375, + -0.2435087412595749 + ], + "min": [ + 0.5662499666213989, + -0.5383205413818359, + -0.24350875616073608 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 324864, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 423136, + "componentType": 5126, + "count": 33, + "max": [ + 0.999779224395752, + -0.0006549795507453382, + 5.523349386749032e-07, + 9.866893435628299e-08 + ], + "min": [ + -0.9999997615814209, + -0.17863965034484863, + -5.522130663848657e-07, + 3.6176814321997597e-10 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 324996, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 657240, + "componentType": 5126, + "count": 13, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 325048, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 657396, + "componentType": 5126, + "count": 81, + "max": [ + 4.4152140617370605e-05, + 2.5345136236865073e-05, + -2.0260310407138604e-07 + ], + "min": [ + 2.8312206268310547e-07, + -6.441622645070311e-06, + -7.493048906326294e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 325372, + "componentType": 5126, + "count": 34, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 423664, + "componentType": 5126, + "count": 34, + "max": [ + -0.9503704309463501, + 8.772541804091816e-09, + 6.326691170954746e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -7.707112281707396e-09, + -4.231165195989206e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 325508, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 658368, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999996423721313 + ], + "min": [ + 0.9999996423721313, + 0.9999999403953552, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 325636, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 658752, + "componentType": 5126, + "count": 81, + "max": [ + 1.192093463942001e-07, + 0.28250008821487427, + 9.247309407101056e-08 + ], + "min": [ + -2.384185791015625e-07, + 0.28249961137771606, + -1.4034415585229e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 325960, + "componentType": 5126, + "count": 41, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 424208, + "componentType": 5126, + "count": 41, + "max": [ + -6.869118607255587e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.32633555647044e-07 + ], + "min": [ + -8.993153244318819e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.224304177569138e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 326124, + "componentType": 5126, + "count": 40, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 659724, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 326284, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 660204, + "componentType": 5126, + "count": 33, + "max": [ + -0.27831748127937317, + 0.5460788011550903, + -0.5765281915664673 + ], + "min": [ + -0.9907413125038147, + 0.5460788011550903, + -0.7300580739974976 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 326416, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 660600, + "componentType": 5126, + "count": 52, + "max": [ + -0.5662504434585571, + 0.5894253253936768, + -0.2435074746608734 + ], + "min": [ + -0.8455309867858887, + -0.7451257705688477, + -0.374582439661026 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 326624, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 424864, + "componentType": 5126, + "count": 52, + "max": [ + 0.9956933856010437, + 0.09128110855817795, + 5.434504828372155e-07, + 0.5757161974906921 + ], + "min": [ + -0.997098445892334, + -0.17863965034484863, + -0.10452660918235779, + 5.12053830448167e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 326832, + "componentType": 5126, + "count": 41, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 661224, + "componentType": 5126, + "count": 41, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 326996, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 661716, + "componentType": 5126, + "count": 81, + "max": [ + -8.791685104370117e-07, + 1.5692021406721324e-06, + -1.4795447214055457e-06 + ], + "min": [ + -3.8430094718933105e-05, + -4.507237463258207e-05, + -8.248624362749979e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 327320, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 425696, + "componentType": 5126, + "count": 52, + "max": [ + -0.9503704309463501, + 4.889505245131431e-09, + 3.295930994795526e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -3.283258465103245e-08, + 1.5905749606304198e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 327528, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 662688, + "componentType": 5126, + "count": 52, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 327736, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 663312, + "componentType": 5126, + "count": 81, + "max": [ + 8.94070737444963e-08, + 0.2824999690055847, + 1.5874186942710367e-07 + ], + "min": [ + -1.1920930376163597e-07, + 0.28249964118003845, + -2.3974715190888674e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 328060, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 426528, + "componentType": 5126, + "count": 52, + "max": [ + -8.197927314768094e-08, + -0.7019332051277161, + 0.683036744594574, + 0.18606793880462646 + ], + "min": [ + -0.07829011231660843, + -0.9818702340126038, + 0.1895543485879898, + 4.20352506580457e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 328268, + "componentType": 5126, + "count": 58, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 664284, + "componentType": 5126, + "count": 58, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 328500, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 664980, + "componentType": 5126, + "count": 76, + "max": [ + 0.0, + 0.0, + 4.404688835144043 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 328804, + "componentType": 5126, + "count": 33, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 427360, + "componentType": 5126, + "count": 33, + "max": [ + 0.7071067690849304, + 0.7067916393280029, + 0.7064332962036133, + 0.7071067690849304 + ], + "min": [ + 0.021107224747538567, + -0.7064332962036133, + -0.7067916989326477, + 0.021108007058501244 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 328936, + "componentType": 5126, + "count": 28, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 665892, + "componentType": 5126, + "count": 28, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 329048, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 666228, + "componentType": 5126, + "count": 76, + "max": [ + 0.3055782914161682, + 0.7886914014816284, + -1.0693899393081665 + ], + "min": [ + 0.030920162796974182, + -0.2637823820114136, + -1.5298041105270386 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 329352, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 427888, + "componentType": 5126, + "count": 76, + "max": [ + 0.18887867033481598, + 0.10927049815654755, + 0.22757799923419952, + 0.9986441731452942 + ], + "min": [ + -0.29027488827705383, + -0.05093260109424591, + -0.404877245426178, + 0.8675503134727478 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 329656, + "componentType": 5126, + "count": 71, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 667140, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 329940, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 667992, + "componentType": 5126, + "count": 76, + "max": [ + 2.384185791015625e-07, + 0.0021278709173202515, + 2.384186927884002e-07 + ], + "min": [ + -2.384186927884002e-07, + 0.0021271556615829468, + -4.768370445162873e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 330244, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 429104, + "componentType": 5126, + "count": 76, + "max": [ + 0.7071067690849304, + 3.189431367900397e-07, + -2.981166744575603e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.8782690719708626e-07, + -3.3260792520195537e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 330548, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 668904, + "componentType": 5126, + "count": 75, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 330848, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 669804, + "componentType": 5126, + "count": 76, + "max": [ + 0.17381903529167175, + 0.13409914076328278, + 1.4277168247645022e-06 + ], + "min": [ + 0.17381784319877625, + 0.13409742712974548, + -9.475886599830119e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 331152, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 430320, + "componentType": 5126, + "count": 76, + "max": [ + 0.18211492896080017, + 0.15815003216266632, + 0.10888121277093887, + 0.9966022372245789 + ], + "min": [ + -0.2384922057390213, + -0.17464621365070343, + -0.22737139463424683, + 0.9574669599533081 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 331456, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 670716, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000007152557373, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999992251396179, + 0.9999995827674866, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 331760, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 671628, + "componentType": 5126, + "count": 76, + "max": [ + 2.1001795857955585e-07, + 0.6356119513511658, + 4.996076086172252e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356112360954285, + -4.980394692211121e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 332064, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 431536, + "componentType": 5126, + "count": 76, + "max": [ + 0.6393222808837891, + 3.1227106234155144e-08, + 8.5611496558613e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -1.8204545426669938e-08, + -4.418604362399492e-07, + 0.7689388990402222 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 332368, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 672540, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999993443489075, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 332672, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 673452, + "componentType": 5126, + "count": 76, + "max": [ + -0.17381760478019714, + 0.13409890234470367, + 1.4404688499780605e-06 + ], + "min": [ + -0.17381975054740906, + 0.13409745693206787, + -9.47588603139593e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 332976, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 432752, + "componentType": 5126, + "count": 76, + "max": [ + 0.08156013488769531, + 0.08587721735239029, + 0.3130559027194977, + 0.9692856669425964 + ], + "min": [ + -0.7423698306083679, + -0.24436581134796143, + -0.03770442679524422, + 0.6294358372688293 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 333280, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 674364, + "componentType": 5126, + "count": 75, + "max": [ + 1.0000008344650269, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 333580, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 675264, + "componentType": 5126, + "count": 76, + "max": [ + 3.787504283536691e-07, + 0.6356119513511658, + 2.8726060463668546e-07 + ], + "min": [ + -2.1729603361109184e-07, + 0.6356109976768494, + -2.851034253126272e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 333884, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 433968, + "componentType": 5126, + "count": 76, + "max": [ + 0.8905355930328369, + 3.7878336911489896e-08, + 5.97320706674509e-07, + 0.996625542640686 + ], + "min": [ + 0.08208249509334564, + -4.1947657791752135e-08, + -4.623874758635793e-07, + 0.45491352677345276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 334188, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 676176, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000001192092896 + ], + "min": [ + 0.9999995231628418, + 0.9999993443489075, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 334492, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 677088, + "componentType": 5126, + "count": 76, + "max": [ + 3.5762786865234375e-07, + 0.0021278713829815388, + 2.3841845120387006e-07 + ], + "min": [ + -2.384186927884002e-07, + 0.002126916777342558, + -4.776365472025645e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 334796, + "componentType": 5126, + "count": 73, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 435184, + "componentType": 5126, + "count": 73, + "max": [ + -0.6495170593261719, + 0.1911235749721527, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7121493816375732, + -0.1021478995680809, + -0.21017833054065704, + 0.6783255338668823 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 335088, + "componentType": 5126, + "count": 74, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 678000, + "componentType": 5126, + "count": 74, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 335384, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 678888, + "componentType": 5126, + "count": 75, + "max": [ + 2.384185791015625e-07, + 0.2726661264896393, + 4.7629154664718953e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.27266550064086914, + -4.681228347180877e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 335684, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 436352, + "componentType": 5126, + "count": 76, + "max": [ + 0.17993049323558807, + 0.2287692129611969, + 0.05130595713853836, + 0.9995599389076233 + ], + "min": [ + -0.10107404738664627, + -0.30748867988586426, + -0.14770245552062988, + 0.9329813718795776 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 335988, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 679788, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 336292, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 680700, + "componentType": 5126, + "count": 76, + "max": [ + 0.044816866517066956, + 0.5181844830513, + 0.014210175722837448 + ], + "min": [ + 0.04466761648654938, + 0.5170567035675049, + 0.010737251490354538 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 336596, + "componentType": 5126, + "count": 71, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 437568, + "componentType": 5126, + "count": 71, + "max": [ + -0.40363752841949463, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.5878686308860779, + -0.5395230650901794, + 0.4476630389690399 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 336880, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 681612, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 337184, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 682524, + "componentType": 5126, + "count": 76, + "max": [ + 0.04141075909137726, + 0.23812590539455414, + -0.059216201305389404 + ], + "min": [ + -7.243978643600713e-07, + 0.20391225814819336, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 337488, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 438704, + "componentType": 5126, + "count": 76, + "max": [ + 0.3952026069164276, + 0.15064091980457306, + 0.15349169075489044, + 0.9906989932060242 + ], + "min": [ + -0.705502986907959, + -0.12244429439306259, + -0.5685606598854065, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 337792, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 683436, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 338096, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 684348, + "componentType": 5126, + "count": 76, + "max": [ + 9.630404065319453e-07, + 0.4048616886138916, + 5.568898018282198e-07 + ], + "min": [ + -9.458951808483107e-07, + 0.40486079454421997, + -3.7354066506622985e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 338400, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 439920, + "componentType": 5126, + "count": 76, + "max": [ + 0.3727971911430359, + 0.5269917249679565, + -0.10201721638441086, + 0.9886587858200073 + ], + "min": [ + -0.0682058334350586, + -0.12734322249889374, + -0.7931042313575745, + 0.4688510298728943 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 338704, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 685260, + "componentType": 5126, + "count": 75, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 339004, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 686160, + "componentType": 5126, + "count": 76, + "max": [ + 5.030428837926593e-07, + 0.403270959854126, + 2.0118513077704847e-07 + ], + "min": [ + -5.190514684727532e-07, + 0.40327000617980957, + -2.782624335395667e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 339308, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 441136, + "componentType": 5126, + "count": 76, + "max": [ + -0.03862059861421585, + 0.3991090953350067, + 0.12396225333213806, + 0.993491530418396 + ], + "min": [ + -0.3849433362483978, + -0.5742750763893127, + -0.069236621260643, + 0.7191892266273499 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 339612, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 687072, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 339916, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 687984, + "componentType": 5126, + "count": 76, + "max": [ + 0.09804350882768631, + 0.2196311056613922, + -0.0024721696972846985 + ], + "min": [ + 0.09804171323776245, + 0.21962960064411163, + -0.0024730151053518057 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 340220, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 442352, + "componentType": 5126, + "count": 76, + "max": [ + -0.6223366260528564, + -0.0009816529927775264, + 0.03366421163082123, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817281970754266, + 0.03366413712501526, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 340524, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 688896, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 340828, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 689808, + "componentType": 5126, + "count": 76, + "max": [ + 5.055817382526584e-07, + 0.0975031703710556, + 8.509512099408312e-07 + ], + "min": [ + -7.001051471888786e-07, + 0.09750232100486755, + 1.9079500646057568e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 341132, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 443568, + "componentType": 5126, + "count": 76, + "max": [ + -0.5302280187606812, + 0.0024659631308168173, + -0.053395915776491165, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658883921802044, + -0.05339602008461952, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 341436, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 690720, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 341740, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 691632, + "componentType": 5126, + "count": 76, + "max": [ + -0.016225511208176613, + 0.21308693289756775, + -0.003559013130143285 + ], + "min": [ + -0.016227809712290764, + 0.21308542788028717, + -0.003559988923370838 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 342044, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 444784, + "componentType": 5126, + "count": 76, + "max": [ + -0.626492977142334, + -0.07110267877578735, + 0.07480836659669876, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110274583101273, + 0.07480830699205399, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 342348, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 692544, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 342652, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 693456, + "componentType": 5126, + "count": 76, + "max": [ + 4.747810464778013e-07, + 0.0846504345536232, + -4.246161822152317e-08 + ], + "min": [ + -4.898353154203505e-07, + 0.0846496969461441, + -5.544449095395976e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 342956, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 446000, + "componentType": 5126, + "count": 76, + "max": [ + -0.5015431642532349, + -0.0011796563630923629, + -0.008243975229561329, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.001179710030555725, + -0.00824403204023838, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 343260, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 694368, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 343564, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 695280, + "componentType": 5126, + "count": 76, + "max": [ + 0.11189735680818558, + 0.1098899245262146, + -0.051630351692438126 + ], + "min": [ + 0.11189576238393784, + 0.10988841205835342, + -0.0516318678855896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 343868, + "componentType": 5126, + "count": 73, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 447216, + "componentType": 5126, + "count": 73, + "max": [ + -0.4573034942150116, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 344160, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 696192, + "componentType": 5126, + "count": 76, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 344464, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 697104, + "componentType": 5126, + "count": 76, + "max": [ + 4.601923819791409e-07, + 0.08512447774410248, + 4.836300604438293e-07 + ], + "min": [ + -2.722134411214938e-07, + 0.08512304723262787, + -2.471675770721049e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 344768, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 448384, + "componentType": 5126, + "count": 76, + "max": [ + 0.022910568863153458, + 0.012835776433348656, + 0.6957964301109314, + 0.7177590131759644 + ], + "min": [ + 0.02291051484644413, + 0.01283571682870388, + 0.6957962512969971, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 345072, + "componentType": 5126, + "count": 74, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 698016, + "componentType": 5126, + "count": 74, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 345368, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 698904, + "componentType": 5126, + "count": 76, + "max": [ + 0.005586352664977312, + 0.16604523360729218, + -0.04539302736520767 + ], + "min": [ + 0.005583921913057566, + 0.16604380309581757, + -0.04539397731423378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 345672, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 449600, + "componentType": 5126, + "count": 76, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.02386540360748768 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 345976, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 699816, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 346280, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 700728, + "componentType": 5126, + "count": 76, + "max": [ + 7.152557373046875e-07, + 0.5450077652931213, + 2.4169349899239023e-07 + ], + "min": [ + -2.3841860752327193e-07, + 0.545007050037384, + -2.52869369887776e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 346584, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 450816, + "componentType": 5126, + "count": 76, + "max": [ + 0.05103972554206848, + 0.13072361052036285, + 0.02325511910021305, + 0.9993342757225037 + ], + "min": [ + -0.007215114776045084, + -0.03731948137283325, + -0.04222821071743965, + 0.9904928803443909 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 346888, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 701640, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 347192, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 702552, + "componentType": 5126, + "count": 76, + "max": [ + 4.768372718899627e-07, + 0.11002874374389648, + 3.5576510981627507e-07 + ], + "min": [ + -2.3841863594498136e-07, + 0.11002779006958008, + -2.402813379376312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 347496, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 452032, + "componentType": 5126, + "count": 76, + "max": [ + 0.03212087228894234, + 0.12989991903305054, + 0.02280726656317711, + 0.9998319149017334 + ], + "min": [ + -0.025982949882745743, + -0.037063118070364, + -0.04469774663448334, + 0.9901782870292664 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 347800, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 703464, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 348104, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 704376, + "componentType": 5126, + "count": 76, + "max": [ + 9.478483207203681e-07, + 0.3614473342895508, + 0.026842139661312103 + ], + "min": [ + -9.59500312092132e-07, + 0.36144518852233887, + 0.026840589940547943 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 348408, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 453248, + "componentType": 5126, + "count": 76, + "max": [ + 2.9802318834981634e-08, + 3.632163725342252e-08, + 1.7695127141337252e-08, + 1.0 + ], + "min": [ + -2.2351745343485163e-08, + -3.492452549380687e-08, + -2.7939677238464355e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 348712, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 705288, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 349016, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 706200, + "componentType": 5126, + "count": 76, + "max": [ + 1.0141767461391282e-06, + -0.1583416610956192, + -0.2537645101547241 + ], + "min": [ + -4.163349274222128e-07, + -0.15834374725818634, + -0.2537654638290405 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 349320, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 454464, + "componentType": 5126, + "count": 76, + "max": [ + -0.998119592666626, + 1.6519928536240513e-08, + -2.154288267774973e-07, + 0.06129676476120949 + ], + "min": [ + -0.998119592666626, + -4.181472235131878e-08, + -2.59890867937429e-07, + 0.061296720057725906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 349624, + "componentType": 5126, + "count": 74, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 707112, + "componentType": 5126, + "count": 74, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999721050262451 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 349920, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 708000, + "componentType": 5126, + "count": 76, + "max": [ + 4.76837158203125e-07, + 0.2539481818675995, + 2.198272568421089e-07 + ], + "min": [ + -7.152556804612686e-07, + 0.25394630432128906, + -2.643509162680857e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 350224, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 455680, + "componentType": 5126, + "count": 76, + "max": [ + 0.15613587200641632, + -1.1232225460844347e-07, + 4.1629917291174934e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.6792877488569502e-07, + -2.3378724733902345e-08, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 350528, + "componentType": 5126, + "count": 74, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 708912, + "componentType": 5126, + "count": 74, + "max": [ + 1.0000007152557373, + 1.0000007152557373, + 1.0000005960464478 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 350824, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 709800, + "componentType": 5126, + "count": 76, + "max": [ + 2.384185791015625e-07, + 0.2533196806907654, + 4.391944798953773e-07 + ], + "min": [ + -7.152557373046875e-07, + 0.2533186972141266, + -4.6871002723491983e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 351128, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 456896, + "componentType": 5126, + "count": 76, + "max": [ + -0.09231440722942352, + 2.0935781108732954e-08, + 2.3632166445963776e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -3.386065117183534e-08, + -1.8546643332228996e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 351432, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 710712, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 351736, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 711624, + "componentType": 5126, + "count": 76, + "max": [ + 4.76837158203125e-07, + 0.26377931237220764, + 4.957790338266932e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2637782394886017, + -2.3668401638587966e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 352040, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 458112, + "componentType": 5126, + "count": 76, + "max": [ + 2.193981885056928e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.0729691979349809e-07 + ], + "min": [ + -1.7800143581325756e-08, + -0.9896631240844727, + 0.14341171085834503, + 5.458700158555985e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 352344, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 712536, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 352648, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 713448, + "componentType": 5126, + "count": 76, + "max": [ + 1.0337136018279125e-06, + 0.24314269423484802, + 0.18703234195709229 + ], + "min": [ + -8.224692464864347e-07, + 0.24314142763614655, + 0.18703092634677887 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 352952, + "componentType": 5126, + "count": 29, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 459328, + "componentType": 5126, + "count": 29, + "max": [ + 0.44783374667167664, + -0.23266470432281494, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266476392745972, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 353068, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 714360, + "componentType": 5126, + "count": 76, + "max": [ + 1.0, + 1.0000005960464478, + 1.0000001192092896 + ], + "min": [ + 0.999999463558197, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 353372, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 715272, + "componentType": 5126, + "count": 76, + "max": [ + -0.244188591837883, + -0.13046309351921082, + 0.02965104579925537 + ], + "min": [ + -0.24419018626213074, + -0.13046470284461975, + 0.02965010330080986 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 353676, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 459792, + "componentType": 5126, + "count": 76, + "max": [ + 0.007415764965116978, + -0.0742838978767395, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.007415706291794777, + -0.07428397238254547, + -0.9923431277275085, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 353980, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 716184, + "componentType": 5126, + "count": 76, + "max": [ + 0.9999976754188538, + 1.0000005960464478, + 0.9999989867210388 + ], + "min": [ + 0.9999973177909851, + 1.0000001192092896, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 354284, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 717096, + "componentType": 5126, + "count": 76, + "max": [ + 0.24341976642608643, + -0.13046292960643768, + 0.029650866985321045 + ], + "min": [ + 0.243417888879776, + -0.1304648071527481, + 0.02964966557919979 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 354588, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 461008, + "componentType": 5126, + "count": 76, + "max": [ + 0.007417458109557629, + 0.07428368926048279, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417404092848301, + 0.0742836445569992, + 0.9923431277275085, + 0.09839747101068497 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 354892, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 718008, + "componentType": 5126, + "count": 76, + "max": [ + 0.9999976754188538, + 1.0000007152557373, + 0.9999986290931702 + ], + "min": [ + 0.999997079372406, + 1.0000001192092896, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 355196, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 718920, + "componentType": 5126, + "count": 75, + "max": [ + -0.04466760903596878, + 0.5170894861221313, + 0.010738486424088478 + ], + "min": [ + -0.04481709748506546, + 0.5159617066383362, + 0.00726561201736331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 355496, + "componentType": 5126, + "count": 67, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 462224, + "componentType": 5126, + "count": 67, + "max": [ + -0.5382572412490845, + 0.5097404718399048, + 0.5019243359565735, + 0.4573745131492615 + ], + "min": [ + -0.5661126971244812, + 0.4883803129196167, + 0.4830397665500641, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 355764, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 719820, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 356068, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 720732, + "componentType": 5126, + "count": 76, + "max": [ + 0.017870686948299408, + 0.24287067353725433, + -0.012744349427521229 + ], + "min": [ + -0.00718710059300065, + 0.22735664248466492, + -0.10004206001758575 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 356372, + "componentType": 5126, + "count": 74, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 463296, + "componentType": 5126, + "count": 74, + "max": [ + -0.45636868476867676, + 0.5143935084342957, + 0.7267783880233765, + 0.6292240023612976 + ], + "min": [ + -0.7432543635368347, + -0.12243437021970749, + -0.32813236117362976, + 0.3209723234176636 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 356668, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 721644, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 356972, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 722556, + "componentType": 5126, + "count": 76, + "max": [ + 2.6379905193607556e-07, + 0.40486153960227966, + 6.86603073063452e-07 + ], + "min": [ + -5.04587887917296e-07, + 0.4048607647418976, + -2.7015019554710307e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 357276, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 464480, + "componentType": 5126, + "count": 76, + "max": [ + 0.05486687272787094, + 0.7740964889526367, + 0.2573752701282501, + 0.8614022135734558 + ], + "min": [ + -0.11283116042613983, + 0.4991835951805115, + -0.05700935795903206, + 0.6156339645385742 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 357580, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 723468, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.999999463558197, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 357884, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 724380, + "componentType": 5126, + "count": 76, + "max": [ + 4.919165235151013e-07, + 0.40327075123786926, + 1.9948525675772544e-07 + ], + "min": [ + -4.872425733992714e-07, + 0.40327000617980957, + -3.310946112833335e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 358188, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 465696, + "componentType": 5126, + "count": 76, + "max": [ + 0.29475781321525574, + 0.1883694976568222, + 0.2134593427181244, + 0.9995030164718628 + ], + "min": [ + -0.12885573506355286, + -0.22739145159721375, + -0.250949501991272, + 0.9434798955917358 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 358492, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 725292, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 358796, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 726204, + "componentType": 5126, + "count": 76, + "max": [ + -0.0980415791273117, + 0.2196311503648758, + -0.002472042804583907 + ], + "min": [ + -0.09804310649633408, + 0.21962985396385193, + -0.0024732225574553013 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 359100, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 466912, + "componentType": 5126, + "count": 76, + "max": [ + -0.5146673321723938, + 0.0499749593436718, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997486621141434, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 359404, + "componentType": 5126, + "count": 71, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 727116, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 359688, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 727968, + "componentType": 5126, + "count": 76, + "max": [ + 4.6793610408712993e-07, + 0.09750331193208694, + 6.217550208020839e-07 + ], + "min": [ + -2.568875459019182e-07, + 0.09750213474035263, + 8.975982979109176e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 359992, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 468128, + "componentType": 5126, + "count": 76, + "max": [ + -0.4217608869075775, + 0.06273208558559418, + 0.009731884114444256, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320185303688, + 0.009731701575219631, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 360296, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 728880, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 360600, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 729792, + "componentType": 5126, + "count": 76, + "max": [ + 0.016228219494223595, + 0.2130870372056961, + -0.0035590217448771 + ], + "min": [ + 0.016226256266236305, + 0.21308566629886627, + -0.003560149110853672 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 360904, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 469344, + "componentType": 5126, + "count": 76, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430819392204285, + 0.06296969205141068, + -0.08177224546670914, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 361208, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 730704, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 361512, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 731616, + "componentType": 5126, + "count": 76, + "max": [ + 9.689664466350223e-07, + 0.08465045690536499, + -1.6956846593529917e-08 + ], + "min": [ + -4.6574822931688686e-07, + 0.08464943617582321, + -5.183291591492889e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 361816, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 470560, + "componentType": 5126, + "count": 76, + "max": [ + -0.4092182219028473, + 0.0020274685230106115, + 0.008077466860413551, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027407754212618, + 0.008077386766672134, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 362120, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 732528, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 362424, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 733440, + "componentType": 5126, + "count": 76, + "max": [ + -0.11189591884613037, + 0.10989007353782654, + -0.051630884408950806 + ], + "min": [ + -0.1118977889418602, + 0.1098882183432579, + -0.051631901413202286 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 362728, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 471776, + "componentType": 5126, + "count": 76, + "max": [ + -0.4322457015514374, + -0.12903624773025513, + 0.1503005027770996, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363371372223, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 363032, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 734352, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 363336, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 735264, + "componentType": 5126, + "count": 76, + "max": [ + 9.179415201288066e-07, + 0.08512460440397263, + 2.5272231596318306e-07 + ], + "min": [ + -1.0018892453445005e-06, + 0.08512364327907562, + -2.4554032052037655e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 363640, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 472992, + "componentType": 5126, + "count": 76, + "max": [ + 0.14811435341835022, + -0.12198012322187424, + -0.12739083170890808, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 363944, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 736176, + "componentType": 5126, + "count": 75, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 364244, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 737076, + "componentType": 5126, + "count": 76, + "max": [ + -0.005584022495895624, + 0.16604553163051605, + -0.04539303854107857 + ], + "min": [ + -0.005586257204413414, + 0.1660439670085907, + -0.04539397358894348 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 364548, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 474208, + "componentType": 5126, + "count": 76, + "max": [ + 0.7616315484046936, + 0.919834554195404, + 0.3294592797756195, + 0.15499891340732574 + ], + "min": [ + -0.42356425523757935, + -0.9059540629386902, + -0.03228095546364784, + 0.0006628765258938074 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 364852, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 737988, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 365156, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 738900, + "componentType": 5126, + "count": 76, + "max": [ + 0.13640372455120087, + 0.2850479781627655, + 0.0019404621561989188 + ], + "min": [ + 0.13640277087688446, + 0.2850467562675476, + 0.0019388125510886312 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 365460, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 475424, + "componentType": 5126, + "count": 76, + "max": [ + -5.5676956378647446e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.740934010285855e-07 + ], + "min": [ + -1.0151573803796055e-07, + -0.693580687046051, + -0.7203789949417114, + 1.1867181370917024e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 365764, + "componentType": 5126, + "count": 75, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 739812, + "componentType": 5126, + "count": 75, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 366064, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 740712, + "componentType": 5126, + "count": 76, + "max": [ + -0.13640229403972626, + 0.2850477397441864, + 0.0019402886973693967 + ], + "min": [ + -0.13640420138835907, + 0.2850467562675476, + 0.0019390793750062585 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 366368, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 476640, + "componentType": 5126, + "count": 76, + "max": [ + -4.789137975080848e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.558230580822055e-08 + ], + "min": [ + -1.0066531075381135e-07, + -0.693580687046051, + -0.7203789949417114, + 2.8610614322133188e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 366672, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 741624, + "componentType": 5126, + "count": 76, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 366976, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 742536, + "componentType": 5126, + "count": 76, + "max": [ + 0.7193544507026672, + 1.0800386667251587, + -0.19169294834136963 + ], + "min": [ + 0.27831587195396423, + -0.20644617080688477, + -0.7378857135772705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 367280, + "componentType": 5126, + "count": 21, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 477856, + "componentType": 5126, + "count": 21, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 367364, + "componentType": 5126, + "count": 25, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 743448, + "componentType": 5126, + "count": 25, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 367464, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 743748, + "componentType": 5126, + "count": 76, + "max": [ + 0.5804785490036011, + 0.417879581451416, + -0.2172333002090454 + ], + "min": [ + -0.03268669545650482, + -0.620297908782959, + -0.45107924938201904 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 367768, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 478192, + "componentType": 5126, + "count": 76, + "max": [ + 0.8024908900260925, + 0.5931999683380127, + 0.12307075411081314, + 0.6772181987762451 + ], + "min": [ + -0.9958001971244812, + -0.6130399107933044, + -0.19925816357135773, + 5.1205397255671414e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 368072, + "componentType": 5126, + "count": 72, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 744660, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 368360, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 745524, + "componentType": 5126, + "count": 76, + "max": [ + 2.0131468772888184e-05, + 1.2018219422316179e-05, + -2.0260310407138604e-07 + ], + "min": [ + -4.723668098449707e-06, + -4.454367081052624e-05, + -8.353158773388714e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 368664, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 479408, + "componentType": 5126, + "count": 76, + "max": [ + -0.9503704309463501, + 1.5140122044954296e-08, + 1.5352316751204853e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.2287297401769592e-08, + -5.088176546763634e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 368968, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 746436, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 369272, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 747348, + "componentType": 5126, + "count": 76, + "max": [ + 2.3841863594498136e-07, + 0.28250014781951904, + 2.25010808208026e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2824995517730713, + -4.4993893766331894e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 369576, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 480624, + "componentType": 5126, + "count": 76, + "max": [ + -8.148405328256558e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.051378995180130005 + ], + "min": [ + -0.10723293572664261, + 0.6982809901237488, + -0.7156752347946167, + 4.2505294572947605e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 369880, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 748260, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 370184, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 749172, + "componentType": 5126, + "count": 76, + "max": [ + 0.33902034163475037, + 1.6990991830825806, + -0.3692683279514313 + ], + "min": [ + -0.37548133730888367, + 0.33566081523895264, + -0.8974727392196655 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 370488, + "componentType": 5126, + "count": 21, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 481840, + "componentType": 5126, + "count": 21, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 370572, + "componentType": 5126, + "count": 25, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 750084, + "componentType": 5126, + "count": 25, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 370672, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 750384, + "componentType": 5126, + "count": 76, + "max": [ + 0.08156158030033112, + 1.525681972503662, + -0.22831718623638153 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.6435737609863281 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 370976, + "componentType": 5126, + "count": 48, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 482176, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 0.17843592166900635, + 5.434504828372155e-07, + 0.6558785438537598 + ], + "min": [ + -0.9954996109008789, + -0.17863965034484863, + -0.5257194638252258, + 4.235164736271502e-22 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 371168, + "componentType": 5126, + "count": 48, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 751296, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 371360, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 751872, + "componentType": 5126, + "count": 76, + "max": [ + 1.6838312149047852e-06, + 3.4745389712043107e-06, + 2.9527444667110103e-07 + ], + "min": [ + -2.6807188987731934e-05, + -5.3389205277198926e-05, + -8.612620149506256e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 371664, + "componentType": 5126, + "count": 53, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 482944, + "componentType": 5126, + "count": 53, + "max": [ + -0.9503704309463501, + 2.0188661409292763e-08, + 3.194246289695002e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.1802886607247274e-08, + -1.52572798839401e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 371876, + "componentType": 5126, + "count": 51, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 752784, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 372080, + "componentType": 5126, + "count": 76, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 753396, + "componentType": 5126, + "count": 76, + "max": [ + 2.384185791015625e-07, + 0.2825007438659668, + 1.812210825846705e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.28249940276145935, + -4.3884554656870023e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 372384, + "componentType": 5126, + "count": 53, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 483792, + "componentType": 5126, + "count": 53, + "max": [ + -6.195626411908961e-08, + -0.8931142091751099, + 0.44952332973480225, + 0.015307438559830189 + ], + "min": [ + -0.00644039548933506, + -0.9818702340126038, + 0.1895543485879898, + 4.187909610209317e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 372596, + "componentType": 5126, + "count": 53, + "max": [ + 1.25 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 754308, + "componentType": 5126, + "count": 53, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 372808, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 754944, + "componentType": 5126, + "count": 58, + "max": [ + 0.0, + 0.0, + 1.1245381832122803 + ], + "min": [ + 0.0, + 0.0, + -0.2978436350822449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 373040, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 755640, + "componentType": 5126, + "count": 87, + "max": [ + 0.03092038445174694, + 0.6121888160705566, + -0.14093206822872162 + ], + "min": [ + -0.06511902809143066, + -0.23719342052936554, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 373388, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 484640, + "componentType": 5126, + "count": 58, + "max": [ + 0.559507429599762, + 0.10348439961671829, + 0.22758322954177856, + 0.9779234528541565 + ], + "min": [ + -0.11711513251066208, + 0.010921822860836983, + 0.13045093417167664, + 0.8151721954345703 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 373620, + "componentType": 5126, + "count": 44, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 756684, + "componentType": 5126, + "count": 44, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 373796, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 757212, + "componentType": 5126, + "count": 87, + "max": [ + 8.940696716308594e-08, + 0.0021274536848068237, + 2.3841863594498136e-07 + ], + "min": [ + -8.940717322047931e-08, + 0.0021273642778396606, + -2.3841863594498136e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 374144, + "componentType": 5126, + "count": 59, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 485568, + "componentType": 5126, + "count": 59, + "max": [ + 0.7071067690849304, + 3.1746142781230446e-07, + -2.9572944981737237e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.8585128575286944e-07, + -3.171321338868438e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 374380, + "componentType": 5126, + "count": 57, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 758256, + "componentType": 5126, + "count": 57, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 374608, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 758940, + "componentType": 5126, + "count": 87, + "max": [ + 0.17381849884986877, + 0.13409888744354248, + 1.315004851676349e-07 + ], + "min": [ + 0.1738182008266449, + 0.13409793376922607, + -4.5159673334183026e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 374956, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 486512, + "componentType": 5126, + "count": 87, + "max": [ + 0.09270772337913513, + 0.11672292649745941, + -0.06939901411533356, + 0.9958653450012207 + ], + "min": [ + -0.3772524297237396, + -0.19043807685375214, + -0.23322170972824097, + 0.9110669493675232 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 375304, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 759984, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 375652, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 761028, + "componentType": 5126, + "count": 87, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 6.62011885310676e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.6356112957000732, + -5.927073942757488e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 376000, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 487904, + "componentType": 5126, + "count": 87, + "max": [ + 0.7978456020355225, + 3.626098532549804e-08, + 1.6895775445391337e-07, + 0.9916532635688782 + ], + "min": [ + 0.1289328932762146, + -2.9272097634702732e-08, + -3.738507245998335e-07, + 0.6028618812561035 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 376348, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 762072, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000005960464478, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 376696, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 763116, + "componentType": 5126, + "count": 87, + "max": [ + -0.17381823062896729, + 0.13409888744354248, + 1.0595360322440683e-07 + ], + "min": [ + -0.173818439245224, + 0.13409799337387085, + -7.92079646316779e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 377044, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 489296, + "componentType": 5126, + "count": 87, + "max": [ + 0.18606171011924744, + 0.06196553260087967, + 0.3313451111316681, + 0.9828013181686401 + ], + "min": [ + -0.08833404630422592, + -0.2419961392879486, + 0.17817066609859467, + 0.9050723314285278 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 377392, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 764160, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 377740, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 765204, + "componentType": 5126, + "count": 87, + "max": [ + 8.0727204476716e-08, + 0.6356115341186523, + 1.2042212915730488e-07 + ], + "min": [ + -9.808672274402852e-08, + 0.635611355304718, + -6.4338550487264e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 378088, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 490688, + "componentType": 5126, + "count": 87, + "max": [ + 0.7068074941635132, + 2.876681293173533e-08, + 7.343165862039314e-07, + 0.9907408952713013 + ], + "min": [ + 0.13576656579971313, + -1.2605425148137783e-08, + 1.3288480538165004e-08, + 0.7074059844017029 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 378436, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 766248, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999993443489075, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 378784, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 767292, + "componentType": 5126, + "count": 86, + "max": [ + 5.960464477539063e-08, + 0.00212745345197618, + 2.3851828245824436e-07 + ], + "min": [ + -5.96047655676557e-08, + 0.0021273342426866293, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 379128, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 492080, + "componentType": 5126, + "count": 87, + "max": [ + -0.5796440243721008, + -0.011803802102804184, + 0.09325075894594193, + 0.8006651401519775 + ], + "min": [ + -0.7941721081733704, + -0.14115560054779053, + 0.054463934153318405, + 0.6044718027114868 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 379476, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 768324, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 379820, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 769356, + "componentType": 5126, + "count": 87, + "max": [ + 6.146728992462158e-08, + 0.2726660966873169, + 9.343267493022722e-08 + ], + "min": [ + -5.977926775813103e-08, + 0.27266550064086914, + -6.843275457413256e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 380168, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 493472, + "componentType": 5126, + "count": 87, + "max": [ + 0.08500942587852478, + 0.08523884415626526, + 0.10174921154975891, + 0.9956725239753723 + ], + "min": [ + -0.0319475419819355, + 0.05101903900504112, + 0.02510380744934082, + 0.9906365871429443 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 380516, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 770400, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 380864, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 771444, + "componentType": 5126, + "count": 87, + "max": [ + 0.04481633007526398, + 0.5170735716819763, + 0.010738163255155087 + ], + "min": [ + 0.044815972447395325, + 0.517072856426239, + 0.010737706907093525 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 381212, + "componentType": 5126, + "count": 65, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 494864, + "componentType": 5126, + "count": 65, + "max": [ + -0.4904356002807617, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 381472, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 772488, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 381820, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 773532, + "componentType": 5126, + "count": 87, + "max": [ + 0.023541271686553955, + 0.23651356995105743, + -0.11545191705226898 + ], + "min": [ + 0.023540973663330078, + 0.23651297390460968, + -0.11545310914516449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 382168, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 495904, + "componentType": 5126, + "count": 87, + "max": [ + -0.5686259269714355, + 0.4074714481830597, + 0.03465447574853897, + 0.7813968062400818 + ], + "min": [ + -0.7312874794006348, + -0.020786812528967857, + -0.403313010931015, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 382516, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 774576, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 382864, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 775620, + "componentType": 5126, + "count": 87, + "max": [ + 1.9210408197523066e-07, + 0.4048616290092468, + 3.8310196259772056e-07 + ], + "min": [ + -1.4931352154690103e-07, + 0.40486103296279907, + 2.38967032828441e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 383212, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 497296, + "componentType": 5126, + "count": 87, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + 0.05527215451002121, + 0.997620165348053 + ], + "min": [ + -0.06240452453494072, + -0.2130410075187683, + -0.2353183478116989, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 383560, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 776664, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 383908, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 777708, + "componentType": 5126, + "count": 87, + "max": [ + 1.2836883911404584e-07, + 0.4032707214355469, + 2.0616415952190437e-07 + ], + "min": [ + -1.7379234407144395e-07, + 0.40327024459838867, + -3.09320938640667e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 384256, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 498688, + "componentType": 5126, + "count": 87, + "max": [ + 0.04346291720867157, + 0.39465609192848206, + 0.12396225333213806, + 0.9979783296585083 + ], + "min": [ + -0.11016573756933212, + -0.20724858343601227, + -0.08126500993967056, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 384604, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 778752, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 384952, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 779796, + "componentType": 5126, + "count": 87, + "max": [ + 0.09804274886846542, + 0.21963092684745789, + -0.002472556196153164 + ], + "min": [ + 0.09804243594408035, + 0.21963024139404297, + -0.0024729541037231684 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 385300, + "componentType": 5126, + "count": 81, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 500080, + "componentType": 5126, + "count": 81, + "max": [ + -0.07486835867166519, + 0.043164193630218506, + 0.05985840782523155, + 0.9944589734077454 + ], + "min": [ + -0.6223368048667908, + -0.0009816805832087994, + 0.033664196729660034, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 385624, + "componentType": 5126, + "count": 83, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 780840, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 385956, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 781836, + "componentType": 5126, + "count": 87, + "max": [ + 1.949847074911304e-07, + 0.09750279784202576, + 4.861609568251879e-07 + ], + "min": [ + -1.0594351351755904e-07, + 0.09750255197286606, + 2.298313148685338e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 386304, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 501376, + "componentType": 5126, + "count": 87, + "max": [ + 0.037415072321891785, + 0.002465923083946109, + -0.011429737322032452, + 0.9997770190238953 + ], + "min": [ + -0.5302280187606812, + -0.006611242424696684, + -0.053395938128232956, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 386652, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 782880, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 387000, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 783924, + "componentType": 5126, + "count": 87, + "max": [ + -0.016226623207330704, + 0.21308633685112, + -0.0035591982305049896 + ], + "min": [ + -0.016227085143327713, + 0.2130858302116394, + -0.0035596326924860477 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 387348, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 502768, + "componentType": 5126, + "count": 86, + "max": [ + -0.21145854890346527, + -0.029795987531542778, + 0.09881338477134705, + 0.9719225764274597 + ], + "min": [ + -0.626492977142334, + -0.07110272347927094, + 0.07480833679437637, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 387692, + "componentType": 5126, + "count": 85, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 784968, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 388032, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 785988, + "componentType": 5126, + "count": 87, + "max": [ + 1.6993513440866082e-07, + 0.08465009182691574, + -1.4885762311678263e-07 + ], + "min": [ + -1.2876760990820912e-07, + 0.08464982360601425, + -4.1924914739865926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 388380, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 504144, + "componentType": 5126, + "count": 87, + "max": [ + -0.058227039873600006, + -0.001179684535600245, + -0.0068294634111225605, + 0.9982686638832092 + ], + "min": [ + -0.5015432834625244, + -0.004765898920595646, + -0.008243990130722523, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 388728, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 787032, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 389076, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 788076, + "componentType": 5126, + "count": 87, + "max": [ + 0.11189692467451096, + 0.10988955199718475, + -0.0516311414539814 + ], + "min": [ + 0.11189636588096619, + 0.10988911241292953, + -0.051631562411785126 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 389424, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 505536, + "componentType": 5126, + "count": 87, + "max": [ + -0.011854810640215874, + 0.16493292152881622, + -0.026263341307640076, + 0.9982081055641174 + ], + "min": [ + -0.4573034942150116, + 0.05244385078549385, + -0.31590893864631653, + 0.81478351354599 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 389772, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 789120, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 390120, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 790164, + "componentType": 5126, + "count": 87, + "max": [ + 1.0257910787458968e-07, + 0.0851241797208786, + 1.294495319825728e-07 + ], + "min": [ + -1.4455879693286988e-07, + 0.08512381464242935, + -1.1750245221264777e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 390468, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 506928, + "componentType": 5126, + "count": 87, + "max": [ + 0.022910531610250473, + 0.024982646107673645, + 0.6957963705062866, + 0.9993889927864075 + ], + "min": [ + 0.008094334974884987, + 0.012835758738219738, + 0.02306515723466873, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 390816, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 791208, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 391164, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 792252, + "componentType": 5126, + "count": 86, + "max": [ + 0.005585178732872009, + 0.16604484617710114, + -0.04539324343204498 + ], + "min": [ + 0.005584645085036755, + 0.16604427993297577, + -0.04539361223578453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 391508, + "componentType": 5126, + "count": 77, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 508320, + "componentType": 5126, + "count": 77, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865360766649246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 391816, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 793284, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 392164, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 794328, + "componentType": 5126, + "count": 87, + "max": [ + 1.1920930376163597e-07, + 0.5450075268745422, + 7.472069540881421e-08 + ], + "min": [ + -1.1920931797249068e-07, + 0.5450068116188049, + -1.0396475857987753e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 392512, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 509552, + "componentType": 5126, + "count": 87, + "max": [ + 0.017687276005744934, + 0.13072361052036285, + 0.01121872290968895, + 0.9995014667510986 + ], + "min": [ + -0.12913274765014648, + 0.014090685173869133, + -0.04222821071743965, + 0.98859703540802 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 392860, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 795372, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 393208, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 796416, + "componentType": 5126, + "count": 87, + "max": [ + 1.7881393432617188e-07, + 0.11002874374389648, + 1.1734664440155029e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.11002779006958008, + -1.210719347000122e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 393556, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 510944, + "componentType": 5126, + "count": 87, + "max": [ + -0.0012534523848444223, + 0.12989991903305054, + 0.010347211733460426, + 0.9995368123054504 + ], + "min": [ + -0.14784276485443115, + 0.013577567413449287, + -0.04469774663448334, + 0.98597252368927 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 393904, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 797460, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 394252, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 798504, + "componentType": 5126, + "count": 87, + "max": [ + 4.7101116251724306e-07, + 0.3614468574523926, + 0.0268414244055748 + ], + "min": [ + -9.523295574354051e-08, + 0.36144542694091797, + 0.02684076875448227 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 394600, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 512336, + "componentType": 5126, + "count": 87, + "max": [ + 2.2351738238057806e-08, + 1.1175931291518282e-08, + 1.2107192581822801e-08, + 1.0 + ], + "min": [ + -2.2351741790771484e-08, + -2.60769645876735e-08, + -2.3283064365386963e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 394948, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 799548, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 395296, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 800592, + "componentType": 5126, + "count": 87, + "max": [ + 2.691184874947794e-07, + -0.1583416610956192, + -0.2537645995616913 + ], + "min": [ + -1.7791629147723143e-07, + -0.1583430916070938, + -0.2537652254104614 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 395644, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 513728, + "componentType": 5126, + "count": 87, + "max": [ + -0.998119592666626, + 1.2389894443742833e-08, + -2.0332821293322922e-07, + 0.0612967349588871 + ], + "min": [ + -0.998119592666626, + -3.1344892903462096e-08, + -2.509484886559221e-07, + 0.06129668280482292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 395992, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 801636, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999719858169556 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 396340, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 802680, + "componentType": 5126, + "count": 87, + "max": [ + 1.1920926823449918e-07, + 0.2539476752281189, + 2.1673761807505798e-07 + ], + "min": [ + -1.1920928244535389e-07, + 0.2539469599723816, + -8.359472047914096e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 396688, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 515120, + "componentType": 5126, + "count": 87, + "max": [ + 0.15613587200641632, + -1.112537972858263e-07, + 2.548424404835714e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.487397014443559e-07, + -1.6459685170389093e-08, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 397036, + "componentType": 5126, + "count": 85, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 803724, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000005960464478, + 1.0000009536743164, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 397376, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 804744, + "componentType": 5126, + "count": 87, + "max": [ + 8.940696716308594e-08, + 0.2533196806907654, + 1.3909300378145417e-07 + ], + "min": [ + -8.940696716308594e-08, + 0.253318727016449, + -1.6100848654332367e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 397724, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 516512, + "componentType": 5126, + "count": 87, + "max": [ + -0.09231440722942352, + -4.185585211757825e-09, + 1.742475141952582e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -3.406935533689648e-08, + -2.0364591790666964e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 398072, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 805788, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 398420, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 806832, + "componentType": 5126, + "count": 87, + "max": [ + 8.940696716308594e-08, + 0.2637791633605957, + 2.3782362745805585e-07 + ], + "min": [ + -8.940696005765858e-08, + 0.2637782096862793, + -8.853969291067187e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 398768, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 517904, + "componentType": 5126, + "count": 87, + "max": [ + 1.7999157719827963e-08, + -0.9896631240844727, + 0.14341172575950623, + 1.05814478956745e-07 + ], + "min": [ + -1.403277227751687e-08, + -0.9896631240844727, + 0.14341171085834503, + 7.738873364360188e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 399116, + "componentType": 5126, + "count": 84, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 807876, + "componentType": 5126, + "count": 84, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 399452, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 808884, + "componentType": 5126, + "count": 87, + "max": [ + -4.144841980746605e-08, + 0.24314254522323608, + 0.1870325654745102 + ], + "min": [ + -9.186593956655997e-07, + 0.24314123392105103, + 0.18703149259090424 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 399800, + "componentType": 5126, + "count": 49, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 519296, + "componentType": 5126, + "count": 49, + "max": [ + 0.447833776473999, + -0.23266470432281494, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266476392745972, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 399996, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 809928, + "componentType": 5126, + "count": 86, + "max": [ + 1.0, + 1.0000007152557373, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 1.000000238418579, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 400340, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 810960, + "componentType": 5126, + "count": 86, + "max": [ + -0.24418948590755463, + -0.13046327233314514, + 0.029650846496224403 + ], + "min": [ + -0.24418999254703522, + -0.1304645836353302, + 0.029650021344423294 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 400684, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 520080, + "componentType": 5126, + "count": 87, + "max": [ + 0.007415761239826679, + -0.0742839127779007, + -0.9923430681228638, + 0.09839734435081482 + ], + "min": [ + 0.00741572305560112, + -0.07428397983312607, + -0.9923431277275085, + 0.09839729219675064 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 401032, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 811992, + "componentType": 5126, + "count": 86, + "max": [ + 0.9999978542327881, + 1.0000005960464478, + 0.9999988675117493 + ], + "min": [ + 0.9999971985816956, + 1.0000001192092896, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 401376, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 813024, + "componentType": 5126, + "count": 87, + "max": [ + 0.24341902136802673, + -0.1304628998041153, + 0.029650678858160973 + ], + "min": [ + 0.24341855943202972, + -0.13046452403068542, + 0.02965005300939083 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 401724, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 521472, + "componentType": 5126, + "count": 87, + "max": [ + 0.007417440414428711, + 0.07428370416164398, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417408283799887, + 0.0742836445569992, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 402072, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 814068, + "componentType": 5126, + "count": 87, + "max": [ + 0.9999975562095642, + 1.0000005960464478, + 0.9999988675117493 + ], + "min": [ + 0.999997079372406, + 1.000000238418579, + 0.9999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 402420, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 815112, + "componentType": 5126, + "count": 87, + "max": [ + -0.044815994799137115, + 0.5170735716819763, + 0.01073808129876852 + ], + "min": [ + -0.04481632262468338, + 0.5170723795890808, + 0.010737634263932705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 402768, + "componentType": 5126, + "count": 85, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 522864, + "componentType": 5126, + "count": 85, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555121660232544 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 403108, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 816156, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 403456, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 817200, + "componentType": 5126, + "count": 87, + "max": [ + 0.017870545387268066, + 0.23250862956047058, + -0.03527309373021126 + ], + "min": [ + 0.01787015050649643, + 0.23250797390937805, + -0.03527428209781647 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 403804, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 524224, + "componentType": 5126, + "count": 87, + "max": [ + -0.2943666875362396, + 0.5143935680389404, + -0.06873898953199387, + 0.8530277013778687 + ], + "min": [ + -0.5603394508361816, + 0.15381893515586853, + -0.46069586277008057, + 0.5601322054862976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 404152, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 818244, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 404500, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 819288, + "componentType": 5126, + "count": 87, + "max": [ + 1.1758854867593982e-07, + 0.4048615097999573, + 3.266042938321334e-07 + ], + "min": [ + -1.0576933107131481e-07, + 0.40486103296279907, + 8.657044503479483e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 404848, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 525616, + "componentType": 5126, + "count": 87, + "max": [ + 0.10352224111557007, + 0.49918365478515625, + 0.08722421526908875, + 0.9935076832771301 + ], + "min": [ + -0.20884865522384644, + -0.09372234344482422, + -0.05700938031077385, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 405196, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 820332, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 405544, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 821376, + "componentType": 5126, + "count": 87, + "max": [ + 1.0276632167460775e-07, + 0.4032707214355469, + 7.788456457547e-08 + ], + "min": [ + -1.1024012991356358e-07, + 0.40327024459838867, + -1.8056927331144834e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 405892, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 527008, + "componentType": 5126, + "count": 87, + "max": [ + 0.04346290975809097, + 0.0042053465731441975, + 0.06368782371282578, + 0.9995754957199097 + ], + "min": [ + -0.02875804528594017, + -0.23053008317947388, + -0.023572074249386787, + 0.9705528020858765 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 406240, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 822420, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 406588, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 823464, + "componentType": 5126, + "count": 87, + "max": [ + -0.09804245084524155, + 0.21963095664978027, + -0.002472521271556616 + ], + "min": [ + -0.0980428159236908, + 0.21963034570217133, + -0.002472866326570511 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 406936, + "componentType": 5126, + "count": 85, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 528400, + "componentType": 5126, + "count": 85, + "max": [ + -0.07486840337514877, + 0.12892527878284454, + -0.05985838547348976, + 0.9944589138031006 + ], + "min": [ + -0.5146675109863281, + -0.04316418990492821, + -0.11866270005702972, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 407276, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 824508, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 407624, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 825552, + "componentType": 5126, + "count": 87, + "max": [ + 1.0076413303750087e-07, + 0.09750283509492874, + 4.813443865714362e-07 + ], + "min": [ + -1.314049313805299e-07, + 0.09750235080718994, + 2.3988496877791476e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 407972, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 529760, + "componentType": 5126, + "count": 87, + "max": [ + 0.0374150425195694, + 0.18032871186733246, + 0.011429770849645138, + 0.9998608231544495 + ], + "min": [ + -0.42176109552383423, + 0.006611238233745098, + -0.02703927457332611, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 408320, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 826596, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 408668, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 827640, + "componentType": 5126, + "count": 87, + "max": [ + 0.0162268728017807, + 0.21308636665344238, + -0.003559346543624997 + ], + "min": [ + 0.016226697713136673, + 0.21308575570583344, + -0.0035596806555986404 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 409016, + "componentType": 5126, + "count": 85, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 531152, + "componentType": 5126, + "count": 85, + "max": [ + -0.1625269502401352, + 0.06296971440315247, + -0.08177222311496735, + 0.9812915325164795 + ], + "min": [ + -0.5430818200111389, + 0.0248107947409153, + -0.10018137097358704, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 409356, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 828684, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 409700, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 829716, + "componentType": 5126, + "count": 87, + "max": [ + 7.195718154662245e-08, + 0.0846501886844635, + -1.3059367631740315e-07 + ], + "min": [ + -4.9141352320702936e-08, + 0.08464982360601425, + -3.7757766335744236e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 410048, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 532512, + "componentType": 5126, + "count": 87, + "max": [ + -0.008168427273631096, + 0.00510186143219471, + 0.008077399805188179, + 0.9999319911003113 + ], + "min": [ + -0.40921831130981445, + 0.0020274389535188675, + 0.006582255475223064, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 410396, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 830760, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 410744, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 831804, + "componentType": 5126, + "count": 87, + "max": [ + -0.11189639568328857, + 0.10988960415124893, + -0.051631197333335876 + ], + "min": [ + -0.11189695447683334, + 0.10988897830247879, + -0.05163147673010826 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 411092, + "componentType": 5126, + "count": 86, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 533904, + "componentType": 5126, + "count": 86, + "max": [ + -0.01185491494834423, + -0.047397103160619736, + 0.15030042827129364, + 0.9982080459594727 + ], + "min": [ + -0.43224573135375977, + -0.1372312754392624, + 0.026263562962412834, + 0.8797289729118347 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 411436, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 832848, + "componentType": 5126, + "count": 87, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 411784, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 833892, + "componentType": 5126, + "count": 87, + "max": [ + 7.968361614985042e-08, + 0.08512412756681442, + 1.1100529917484891e-07 + ], + "min": [ + -1.360721313403701e-07, + 0.08512353897094727, + -1.3092657979996147e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 412132, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 535280, + "componentType": 5126, + "count": 87, + "max": [ + 0.14811435341835022, + -0.024982593953609467, + -0.023065315559506416, + 0.9993889927864075 + ], + "min": [ + 0.008094297721982002, + -0.12198018282651901, + -0.12739089131355286, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 412480, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 834936, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 412828, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 835980, + "componentType": 5126, + "count": 87, + "max": [ + -0.005584808997809887, + 0.16604478657245636, + -0.04539330303668976 + ], + "min": [ + -0.005585006903856993, + 0.1660442054271698, + -0.04539361223578453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 413176, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 536672, + "componentType": 5126, + "count": 87, + "max": [ + 0.6181666851043701, + 0.8566927313804626, + 0.03350192308425903, + 0.02386540360748768 + ], + "min": [ + -0.5194603800773621, + -0.8532639145851135, + -0.025194451212882996, + 3.546062725945376e-05 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 413524, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 837024, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 413872, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 838068, + "componentType": 5126, + "count": 87, + "max": [ + 0.136403426527977, + 0.2850474715232849, + 0.0019399260636419058 + ], + "min": [ + 0.13640306890010834, + 0.2850465178489685, + 0.0019395551644265652 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 414220, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 538064, + "componentType": 5126, + "count": 87, + "max": [ + -5.4335146160156e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5975079747931886e-07 + ], + "min": [ + -1.006349208410029e-07, + -0.6935806274414063, + -0.7203789949417114, + 1.2115724246086756e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 414568, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 839112, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 414916, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 840156, + "componentType": 5126, + "count": 87, + "max": [ + -0.13640306890010834, + 0.28504759073257446, + 0.001939931302331388 + ], + "min": [ + -0.13640336692333221, + 0.2850465178489685, + 0.0019396840361878276 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 415264, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 539456, + "componentType": 5126, + "count": 87, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.725883139324651e-08 + ], + "min": [ + -9.189363225914349e-08, + -0.693580687046051, + -0.7203789949417114, + 3.4848412155952246e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 415612, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 841200, + "componentType": 5126, + "count": 87, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 415960, + "componentType": 5126, + "count": 29, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 842244, + "componentType": 5126, + "count": 29, + "max": [ + 0.47929900884628296, + 0.5460788011550903, + 0.15874697268009186 + ], + "min": [ + 0.27831587195396423, + 0.001357436180114746, + -0.7300586700439453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 416076, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 842592, + "componentType": 5126, + "count": 87, + "max": [ + 0.6245324015617371, + 0.5249680876731873, + -0.06159990280866623 + ], + "min": [ + 0.5804785490036011, + -0.5790356397628784, + -0.34987783432006836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 416424, + "componentType": 5126, + "count": 42, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 540848, + "componentType": 5126, + "count": 42, + "max": [ + -0.3543916940689087, + -0.04084138944745064, + 0.2060364931821823, + 0.9112011194229126 + ], + "min": [ + -0.9956933856010437, + -0.11469826102256775, + 5.499563826560916e-07, + 5.1205397255671414e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 416592, + "componentType": 5126, + "count": 39, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 843636, + "componentType": 5126, + "count": 39, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 416748, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 844104, + "componentType": 5126, + "count": 87, + "max": [ + 6.161630153656006e-05, + 1.5629501604053075e-07, + 1.2664406767726177e-07 + ], + "min": [ + -3.129243850708008e-07, + -6.747557927155867e-05, + -9.762062109075487e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 417096, + "componentType": 5126, + "count": 49, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 541520, + "componentType": 5126, + "count": 49, + "max": [ + -0.9503704309463501, + 1.2849811881210371e-08, + 1.0992484256178159e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.2264488919176983e-08, + -7.1998869088929496e-09, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 417292, + "componentType": 5126, + "count": 44, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 845148, + "componentType": 5126, + "count": 44, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 417468, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 845676, + "componentType": 5126, + "count": 87, + "max": [ + 1.1920928955078125e-07, + 0.28249990940093994, + 5.0836138854037927e-08 + ], + "min": [ + -1.7881393432617188e-07, + 0.282499760389328, + -3.229207123922606e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 417816, + "componentType": 5126, + "count": 54, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 542304, + "componentType": 5126, + "count": 54, + "max": [ + 0.08838255703449249, + 0.9818702340126038, + -0.1895543485879898, + 0.019318824633955956 + ], + "min": [ + -9.768694297918046e-08, + 0.8722405433654785, + -0.4806368350982666, + 4.183743840258103e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 418032, + "componentType": 5126, + "count": 52, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 846720, + "componentType": 5126, + "count": 52, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 418240, + "componentType": 5126, + "count": 30, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 847344, + "componentType": 5126, + "count": 30, + "max": [ + -0.3367530405521393, + 0.6563407182693481, + 0.51426762342453 + ], + "min": [ + -0.33675435185432434, + 0.5460788011550903, + -0.6843864917755127 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 418360, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 847704, + "componentType": 5126, + "count": 87, + "max": [ + -0.22658678889274597, + -0.5383205413818359, + -0.11110690236091614 + ], + "min": [ + -0.5662504434585571, + -0.8795249462127686, + -0.38061127066612244 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 418708, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 543168, + "componentType": 5126, + "count": 58, + "max": [ + -0.37932896614074707, + 0.016111230477690697, + 5.434504828372155e-07, + 0.9245073795318604 + ], + "min": [ + -0.9839257597923279, + -0.17863965034484863, + -0.041924308985471725, + 9.866893435628299e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 418940, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 848748, + "componentType": 5126, + "count": 58, + "max": [ + 1.0, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 419172, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 849444, + "componentType": 5126, + "count": 87, + "max": [ + 2.0712614059448242e-06, + 1.8915688997367397e-05, + 1.2989723074952053e-08 + ], + "min": [ + -3.413856029510498e-05, + -2.4360970201087184e-05, + -0.00010057080362457782 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 419520, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 544096, + "componentType": 5126, + "count": 58, + "max": [ + -0.9503704309463501, + 5.342290609888778e-09, + 2.5941854886468718e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.1048673087543648e-08, + 7.62863905379163e-09, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 419752, + "componentType": 5126, + "count": 58, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 850488, + "componentType": 5126, + "count": 58, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 419984, + "componentType": 5126, + "count": 87, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 851184, + "componentType": 5126, + "count": 87, + "max": [ + 1.1920930376163597e-07, + 0.2824999690055847, + 6.740323499343503e-08 + ], + "min": [ + -5.960467319710006e-08, + 0.2824997901916504, + -5.721584983575667e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 420332, + "componentType": 5126, + "count": 66, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 545024, + "componentType": 5126, + "count": 66, + "max": [ + -7.15689623120852e-08, + -0.9818702340126038, + 0.1895543783903122, + 4.296778399748291e-07 + ], + "min": [ + -1.046404989324401e-07, + -0.9818702340126038, + 0.1895543485879898, + 4.14282311567149e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 420596, + "componentType": 5126, + "count": 66, + "max": [ + 1.4333332777023315 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 852228, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 420860, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 853020, + "componentType": 5126, + "count": 56, + "max": [ + 0.0, + 0.0, + 10.442506790161133 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 421084, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 853692, + "componentType": 5126, + "count": 56, + "max": [ + 0.03092149831354618, + 0.2721933126449585, + -0.24525845050811768 + ], + "min": [ + 0.030920162796974182, + -0.17556346952915192, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 421308, + "componentType": 5126, + "count": 47, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 546080, + "componentType": 5126, + "count": 47, + "max": [ + 0.9999297261238098, + 0.010921822860836983, + 0.22757799923419952, + 0.9950284957885742 + ], + "min": [ + -0.9996090531349182, + 1.4132880421513505e-09, + -9.685211352916667e-07, + 0.011855760589241982 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 421496, + "componentType": 5126, + "count": 42, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 854364, + "componentType": 5126, + "count": 42, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 421664, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 854868, + "componentType": 5126, + "count": 56, + "max": [ + 7.450580596923828e-09, + 0.002129301428794861, + 2.384185791015625e-07 + ], + "min": [ + -7.450580596923828e-09, + 0.002126917243003845, + -9.5367431640625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 421888, + "componentType": 5126, + "count": 10, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 546832, + "componentType": 5126, + "count": 10, + "max": [ + 0.7071067690849304, + 3.065748614972108e-07, + -3.056076138818753e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.009952251886716e-07, + -3.1153709301179333e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 421928, + "componentType": 5126, + "count": 42, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 855540, + "componentType": 5126, + "count": 42, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 422096, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 856044, + "componentType": 5126, + "count": 56, + "max": [ + 0.17381834983825684, + 0.13409888744354248, + 9.722089089336805e-07 + ], + "min": [ + 0.17381827533245087, + 0.13409650325775146, + -3.801780621870421e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 422320, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 546992, + "componentType": 5126, + "count": 56, + "max": [ + -0.13052892684936523, + 0.06485561281442642, + 0.08312267810106277, + 0.9695424437522888 + ], + "min": [ + -0.834445059299469, + -0.14375990629196167, + -0.20721040666103363, + 0.5410006046295166 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 422544, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 856716, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999994039535522, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 422768, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 857388, + "componentType": 5126, + "count": 56, + "max": [ + 9.080867613420196e-08, + 0.635612428188324, + 3.7704012356698513e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.6356104612350464, + -9.968630365619902e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 422992, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 547888, + "componentType": 5126, + "count": 56, + "max": [ + 0.8338964581489563, + 2.2434454294284478e-08, + -2.501630458340287e-09, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -5.399669156247455e-09, + -1.7817002628817136e-07, + 0.5519209504127502 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 423216, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 858060, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999991655349731 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 423440, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 858732, + "componentType": 5126, + "count": 55, + "max": [ + -0.17381829023361206, + 0.13409888744354248, + 9.722089089336805e-07 + ], + "min": [ + -0.1738184094429016, + 0.13409650325775146, + -3.801780621870421e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 423660, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 548784, + "componentType": 5126, + "count": 56, + "max": [ + 0.0693177655339241, + 0.11448831111192703, + 0.21133063733577728, + 0.9977796673774719 + ], + "min": [ + -0.7169796228408813, + -0.23742727935314178, + -0.03360999375581741, + 0.6952772736549377 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 423884, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 859392, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999993443489075, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 424108, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 860064, + "componentType": 5126, + "count": 56, + "max": [ + 1.4033184925210662e-07, + 0.6356133818626404, + 1.0967796697514132e-06 + ], + "min": [ + -3.8482113495774684e-08, + 0.6356095671653748, + -5.712854544981383e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 424332, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 549680, + "componentType": 5126, + "count": 56, + "max": [ + 0.8623005747795105, + 4.587591639904076e-09, + 5.149228741174738e-07, + 0.9844071865081787 + ], + "min": [ + 0.17590491473674774, + -1.6200644381569873e-08, + 2.17338538277545e-08, + 0.5063967108726501 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 424556, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 860736, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.999999463558197, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 424780, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 861408, + "componentType": 5126, + "count": 56, + "max": [ + 7.450580596923828e-09, + 0.0021283477544784546, + 2.3841823804104934e-07 + ], + "min": [ + -3.725290298461914e-09, + 0.002126916777342558, + -9.536729521641973e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 425004, + "componentType": 5126, + "count": 14, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 550576, + "componentType": 5126, + "count": 14, + "max": [ + -0.6495170593261719, + 2.2185388104389858e-07, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.1021478995680809, + 3.908876067271194e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 425060, + "componentType": 5126, + "count": 28, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 862080, + "componentType": 5126, + "count": 28, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 425172, + "componentType": 5126, + "count": 54, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 862416, + "componentType": 5126, + "count": 54, + "max": [ + 2.1420420992512845e-08, + 0.2726668119430542, + 9.441815222999139e-07 + ], + "min": [ + -5.587935447692871e-09, + 0.2726653814315796, + -4.853915811509069e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 425388, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 550800, + "componentType": 5126, + "count": 56, + "max": [ + 0.4594426453113556, + 0.05683112144470215, + 0.02510380744934082, + 0.9944412708282471 + ], + "min": [ + 0.08500942587852478, + -5.050565521358408e-10, + -1.0889250035006626e-07, + 0.8882074356079102 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 425612, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 863064, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 425836, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 863736, + "componentType": 5126, + "count": 56, + "max": [ + 0.044816166162490845, + 0.5170735716819763, + 0.010738946497440338 + ], + "min": [ + 0.04481612145900726, + 0.5170721411705017, + 0.010737019591033459 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 426060, + "componentType": 5126, + "count": 30, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 551696, + "componentType": 5126, + "count": 30, + "max": [ + -0.4904356002807617, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 426180, + "componentType": 5126, + "count": 42, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 864408, + "componentType": 5126, + "count": 42, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 426348, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 864912, + "componentType": 5126, + "count": 56, + "max": [ + 0.023541152477264404, + 0.2381252497434616, + -0.07664656639099121 + ], + "min": [ + -3.8238395063672215e-06, + 0.23651327192783356, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 426572, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 552176, + "componentType": 5126, + "count": 56, + "max": [ + 0.19988691806793213, + -0.0032970940228551626, + -0.403313010931015, + 0.706487238407135 + ], + "min": [ + -0.705502986907959, + -0.34316396713256836, + -0.73304283618927, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 426796, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 865584, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 427020, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 866256, + "componentType": 5126, + "count": 56, + "max": [ + 4.7342115294668474e-07, + 0.4048622250556946, + 6.837914270363399e-07 + ], + "min": [ + -5.358676276046026e-07, + 0.40486031770706177, + -2.8586924827322946e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 427244, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 553072, + "componentType": 5126, + "count": 56, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.22551314532756805, + 0.9526495337486267 + ], + "min": [ + -0.14938786625862122, + 0.12191911041736603, + -0.6925627589225769, + 0.7108815312385559 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 427468, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 866928, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 427692, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 867600, + "componentType": 5126, + "count": 56, + "max": [ + 9.524684969619557e-07, + 0.40327146649360657, + 8.988215540739475e-07 + ], + "min": [ + -1.8941328789878753e-06, + 0.40326988697052, + -5.319351998878119e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 427916, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 553968, + "componentType": 5126, + "count": 56, + "max": [ + 0.04346290975809097, + 0.39465609192848206, + 0.12396225333213806, + 0.9981614351272583 + ], + "min": [ + -0.11016573756933212, + 0.003771321615204215, + -0.0507061742246151, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 428140, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 868272, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 428364, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 868944, + "componentType": 5126, + "count": 56, + "max": [ + 0.0980440229177475, + 0.21963146328926086, + -0.0024717117194086313 + ], + "min": [ + 0.09804071485996246, + 0.21962997317314148, + -0.0024736810009926558 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 428588, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 554864, + "componentType": 5126, + "count": 56, + "max": [ + -0.622336745262146, + -0.0009816591627895832, + 0.03366422653198242, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817365789785981, + 0.03366416320204735, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 428812, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 869616, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 429036, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 870288, + "componentType": 5126, + "count": 56, + "max": [ + 9.709068535812548e-07, + 0.0975031927227974, + 8.688140837875835e-07 + ], + "min": [ + -9.589136880094884e-07, + 0.0975017249584198, + -8.210686530674138e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 429260, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 555760, + "componentType": 5126, + "count": 56, + "max": [ + -0.5302280187606812, + 0.0024659738410264254, + -0.05339592695236206, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658935144543648, + -0.05339600518345833, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 429484, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 870960, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 429708, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 871632, + "componentType": 5126, + "count": 56, + "max": [ + -0.016225794330239296, + 0.21308720111846924, + -0.003558532567694783 + ], + "min": [ + -0.016228223219513893, + 0.21308530867099762, + -0.00356087414547801 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 429932, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 556656, + "componentType": 5126, + "count": 56, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110273092985153, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 430156, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 872304, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 430380, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 872976, + "componentType": 5126, + "count": 56, + "max": [ + 4.747810464778013e-07, + 0.0846509039402008, + 1.926575237121142e-07 + ], + "min": [ + -4.883935957877839e-07, + 0.08464904129505157, + -1.227642314916011e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 430604, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 557552, + "componentType": 5126, + "count": 56, + "max": [ + -0.5015432238578796, + -0.0011796443723142147, + -0.008244003169238567, + 0.8650925159454346 + ], + "min": [ + -0.5015433430671692, + -0.0011797139886766672, + -0.008244066499173641, + 0.8650924563407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 430828, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 873648, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 431052, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 874320, + "componentType": 5126, + "count": 56, + "max": [ + 0.11189764738082886, + 0.10989032685756683, + -0.05163061246275902 + ], + "min": [ + 0.11189562827348709, + 0.10988816618919373, + -0.051632143557071686 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 431276, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 558448, + "componentType": 5126, + "count": 56, + "max": [ + -0.4573034942150116, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493287682533264, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 431500, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 874992, + "componentType": 5126, + "count": 56, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 431724, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 875664, + "componentType": 5126, + "count": 56, + "max": [ + 9.629022770241136e-07, + 0.08512450754642487, + 4.812740144188865e-07 + ], + "min": [ + -1.9252902347943746e-06, + 0.08512304723262787, + -4.944275815432775e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 431948, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 559344, + "componentType": 5126, + "count": 56, + "max": [ + 0.022910574451088905, + 0.012835775502026081, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910498082637787, + 0.012835722416639328, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 432172, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 876336, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 432396, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 877008, + "componentType": 5126, + "count": 56, + "max": [ + 0.005586629267781973, + 0.16604533791542053, + -0.045392777770757675 + ], + "min": [ + 0.005582938902080059, + 0.16604284942150116, + -0.045393988490104675 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 432620, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 560240, + "componentType": 5126, + "count": 56, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188955664635, + 0.02386540174484253 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865357041358948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 432844, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 877680, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 433068, + "componentType": 5126, + "count": 54, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 878352, + "componentType": 5126, + "count": 54, + "max": [ + 1.4901162970204496e-08, + 0.5450078248977661, + 2.3265940285455144e-07 + ], + "min": [ + -3.72550967853158e-09, + 0.5450063943862915, + -9.947136732080253e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 433284, + "componentType": 5126, + "count": 50, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 561136, + "componentType": 5126, + "count": 50, + "max": [ + 0.2568091154098511, + 0.13072361052036285, + 9.99514426780479e-09, + 0.9999583959579468 + ], + "min": [ + -0.0894029438495636, + 1.1461519022759603e-07, + -0.04222821071743965, + 0.9664621949195862 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 433484, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 879000, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 433708, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 879672, + "componentType": 5126, + "count": 56, + "max": [ + 1.955776696149769e-08, + 0.11002922058105469, + 9.51811671257019e-07 + ], + "min": [ + -2.2351734685344127e-08, + 0.11002779006958008, + -9.55536961555481e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 433932, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 561936, + "componentType": 5126, + "count": 56, + "max": [ + 0.2384493499994278, + 0.12989991903305054, + 1.2905630342174845e-08, + 0.9999517202377319 + ], + "min": [ + -0.10826031863689423, + 1.1577058955936081e-07, + -0.04469774663448334, + 0.9711549282073975 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 434156, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 880344, + "componentType": 5126, + "count": 55, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 434376, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 881004, + "componentType": 5126, + "count": 56, + "max": [ + 2.400431640126044e-07, + 0.3614470958709717, + 0.026842139661312103 + ], + "min": [ + 2.2886730732807337e-07, + 0.36144423484802246, + 0.02684023231267929 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 434600, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 562832, + "componentType": 5126, + "count": 56, + "max": [ + 2.2351734685344127e-08, + -5.878912023860039e-09, + -2.7939675018018306e-09, + 1.0 + ], + "min": [ + -1.4901159417490817e-08, + -6.98485758121592e-09, + -5.122273272206712e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 434824, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 881676, + "componentType": 5126, + "count": 53, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 1.0, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 435036, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 882312, + "componentType": 5126, + "count": 56, + "max": [ + 1.8157416548092442e-07, + -0.15833903849124908, + -0.2537643313407898 + ], + "min": [ + 1.5735984959519556e-07, + -0.15834428369998932, + -0.2537654638290405 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 435260, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 563728, + "componentType": 5126, + "count": 56, + "max": [ + -0.998119592666626, + -1.7004323504821173e-09, + -2.2497938800825068e-07, + 0.061296749860048294 + ], + "min": [ + -0.998119592666626, + -3.589134989212539e-09, + -2.2605728133839875e-07, + 0.06129669025540352 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 435484, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 882984, + "componentType": 5126, + "count": 53, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999719858169556 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 435696, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 883620, + "componentType": 5126, + "count": 56, + "max": [ + 7.45063388762901e-09, + 0.2539481222629547, + 6.30466956863529e-07 + ], + "min": [ + -7.450573047407261e-09, + 0.2539454400539398, + -6.719008069921983e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 435920, + "componentType": 5126, + "count": 54, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 564624, + "componentType": 5126, + "count": 54, + "max": [ + 0.15613587200641632, + -1.3160222067654104e-07, + -1.7017961484455668e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3292201117565128e-07, + -4.086109672840621e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 436136, + "componentType": 5126, + "count": 48, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 884292, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 436328, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 884868, + "componentType": 5126, + "count": 56, + "max": [ + 1.4901161193847656e-08, + 0.25332018733024597, + 5.125410211803683e-07 + ], + "min": [ + -5.587935447692871e-09, + 0.25331827998161316, + -5.563720151258167e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 436552, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 565488, + "componentType": 5126, + "count": 56, + "max": [ + -0.09231439232826233, + -2.1386858506389217e-08, + -3.586389407672641e-09, + 0.995729923248291 + ], + "min": [ + -0.0923144668340683, + -2.336188664742167e-08, + -4.848446089056324e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 436776, + "componentType": 5126, + "count": 51, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 885540, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 436980, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 886152, + "componentType": 5126, + "count": 56, + "max": [ + 3.725290298461914e-09, + 0.2637796700000763, + 7.875362939557817e-07 + ], + "min": [ + -7.450589478708025e-09, + 0.2637777626514435, + -4.6529549990736996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 437204, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 566384, + "componentType": 5126, + "count": 53, + "max": [ + 8.845824517322853e-09, + -0.9896631240844727, + 0.14341172575950623, + 9.15664202238986e-08 + ], + "min": [ + 6.591670320688081e-09, + -0.9896631240844727, + 0.14341171085834503, + 9.088687846769972e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 437416, + "componentType": 5126, + "count": 49, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 886824, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 437612, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 887412, + "componentType": 5126, + "count": 56, + "max": [ + 7.036467195575824e-07, + 0.24314375221729279, + 0.1870339810848236 + ], + "min": [ + -1.7319686094197095e-06, + 0.24314013123512268, + 0.18703040480613708 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 437836, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 567232, + "componentType": 5126, + "count": 53, + "max": [ + 0.447833776473999, + -0.23266468942165375, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 438048, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 888084, + "componentType": 5126, + "count": 56, + "max": [ + 0.9999998211860657, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 438272, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 888756, + "componentType": 5126, + "count": 56, + "max": [ + -0.2441890835762024, + -0.1304609775543213, + 0.02965204231441021 + ], + "min": [ + -0.2441905289888382, + -0.13046663999557495, + 0.029649043455719948 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 438496, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 568080, + "componentType": 5126, + "count": 56, + "max": [ + 0.007415752857923508, + -0.0742839127779007, + -0.9923430681228638, + 0.09839731454849243 + ], + "min": [ + 0.007415739819407463, + -0.07428397238254547, + -0.9923430681228638, + 0.09839729219675064 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 438720, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 889428, + "componentType": 5126, + "count": 56, + "max": [ + 0.9999978542327881, + 1.0000003576278687, + 0.9999988675117493 + ], + "min": [ + 0.9999971985816956, + 0.9999999403953552, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 438944, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 890100, + "componentType": 5126, + "count": 56, + "max": [ + 0.24341943860054016, + -0.13046295940876007, + 0.029652176424860954 + ], + "min": [ + 0.24341827630996704, + -0.13046640157699585, + 0.029648732393980026 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 439168, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 568976, + "componentType": 5126, + "count": 56, + "max": [ + 0.007417425513267517, + 0.07428370416164398, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417413406074047, + 0.0742836445569992, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 439392, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 890772, + "componentType": 5126, + "count": 56, + "max": [ + 0.9999975562095642, + 1.0000007152557373, + 0.9999987483024597 + ], + "min": [ + 0.999997079372406, + 1.000000238418579, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 439616, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 891444, + "componentType": 5126, + "count": 56, + "max": [ + -0.04481611028313637, + 0.5170741081237793, + 0.010739427991211414 + ], + "min": [ + -0.04481615871191025, + 0.5170726180076599, + 0.010736067779362202 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 439840, + "componentType": 5126, + "count": 50, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 569872, + "componentType": 5126, + "count": 50, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555118680000305 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 440040, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 892116, + "componentType": 5126, + "count": 55, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 440260, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 892776, + "componentType": 5126, + "count": 56, + "max": [ + 0.017872832715511322, + 0.2325083464384079, + -0.035272613167762756 + ], + "min": [ + 0.01786806434392929, + 0.23250821232795715, + -0.03527452051639557 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 440484, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 570672, + "componentType": 5126, + "count": 56, + "max": [ + -0.13255512714385986, + 0.8817692399024963, + 0.17373092472553253, + 0.5601324439048767 + ], + "min": [ + -0.5781164169311523, + 0.5143935084342957, + -0.32813236117362976, + 0.19777968525886536 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 440708, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 893448, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 440932, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 894120, + "componentType": 5126, + "count": 56, + "max": [ + 9.113789474213263e-07, + 0.4048619568347931, + 1.1657732557068812e-06 + ], + "min": [ + -9.538530321151484e-07, + 0.4048609733581543, + -7.534960673183377e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 441156, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 571568, + "componentType": 5126, + "count": 56, + "max": [ + -0.07451161742210388, + 0.4991835951805115, + 0.04873761534690857, + 0.9681572318077087 + ], + "min": [ + -0.17515096068382263, + 0.1999528557062149, + -0.0703321248292923, + 0.8614022135734558 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 441380, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 894792, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 441604, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 895464, + "componentType": 5126, + "count": 56, + "max": [ + 8.980995858109964e-07, + 0.40327152609825134, + 4.7641250944252533e-07 + ], + "min": [ + -9.539553502690978e-07, + 0.40326985716819763, + -5.822577122671646e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 441828, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 572464, + "componentType": 5126, + "count": 56, + "max": [ + 0.023212525993585587, + 0.08102957904338837, + 0.04071532189846039, + 0.9997878074645996 + ], + "min": [ + -0.12721262872219086, + -0.01692916639149189, + -0.2340768724679947, + 0.9718603491783142 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 442052, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 896136, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 442276, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 896808, + "componentType": 5126, + "count": 56, + "max": [ + -0.09804148972034454, + 0.2196352630853653, + -0.0024717366322875023 + ], + "min": [ + -0.09804362803697586, + 0.21962790191173553, + -0.002473521279171109 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 442500, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 573360, + "componentType": 5126, + "count": 56, + "max": [ + -0.514667272567749, + 0.0499749630689621, + -0.08315922319889069, + 0.8518829941749573 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 442724, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 897480, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 442948, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 898152, + "componentType": 5126, + "count": 56, + "max": [ + 4.6847756607348856e-07, + 0.09750358015298843, + 8.751385394134559e-07 + ], + "min": [ + -4.915720523968048e-07, + 0.09750161319971085, + -5.966365392851003e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 443172, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 574256, + "componentType": 5126, + "count": 56, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731844998896122, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.06273201107978821, + 0.009731787256896496, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 443396, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 898824, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 443620, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 899496, + "componentType": 5126, + "count": 56, + "max": [ + 0.016227899119257927, + 0.2130887508392334, + -0.003558035008609295 + ], + "min": [ + 0.016226056963205338, + 0.2130843549966812, + -0.003560437588021159 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 443844, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 575152, + "componentType": 5126, + "count": 56, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177217841148376, + 0.8333128690719604 + ], + "min": [ + -0.543082058429718, + 0.06296970695257187, + -0.08177222311496735, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 444068, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 900168, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 444292, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 900840, + "componentType": 5126, + "count": 56, + "max": [ + 2.550219733166159e-07, + 0.08465096354484558, + 3.5691761013367795e-07 + ], + "min": [ + -7.039806746433896e-07, + 0.08464900404214859, + -1.195213940263784e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 444516, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 576048, + "componentType": 5126, + "count": 56, + "max": [ + -0.4092182219028473, + 0.0020274585112929344, + 0.008077433332800865, + 0.9123985767364502 + ], + "min": [ + -0.40921831130981445, + 0.0020274014677852392, + 0.00807738397270441, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 444740, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 901512, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 444964, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 902184, + "componentType": 5126, + "count": 56, + "max": [ + -0.111894391477108, + 0.10989128053188324, + -0.05163060873746872 + ], + "min": [ + -0.11189824342727661, + 0.1098875030875206, + -0.051632191985845566 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 445188, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 576944, + "componentType": 5126, + "count": 55, + "max": [ + -0.43224573135375977, + -0.12903623282909393, + 0.150300532579422, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 445408, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 902856, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 445632, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 903528, + "componentType": 5126, + "count": 56, + "max": [ + 9.235639026883291e-07, + 0.08512488752603531, + 4.728609610538115e-07 + ], + "min": [ + -9.414156920684036e-07, + 0.08512289077043533, + -5.072627686786291e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 445856, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 577824, + "componentType": 5126, + "count": 56, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 446080, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 904200, + "componentType": 5126, + "count": 56, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 446304, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 904872, + "componentType": 5126, + "count": 56, + "max": [ + -0.005583982914686203, + 0.1660473793745041, + -0.04539254680275917 + ], + "min": [ + -0.005585465580224991, + 0.16604365408420563, + -0.0453948937356472 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 446528, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 578720, + "componentType": 5126, + "count": 56, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.059302762150764465, + 0.03839623183012009 + ], + "min": [ + 0.5081205368041992, + -0.8583836555480957, + 0.03350190818309784, + 0.02386537939310074 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 446752, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 905544, + "componentType": 5126, + "count": 55, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 446972, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 906204, + "componentType": 5126, + "count": 56, + "max": [ + 0.13640327751636505, + 0.2850481867790222, + 0.0019416263094171882 + ], + "min": [ + 0.1364031881093979, + 0.2850462794303894, + 0.0019387673819437623 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 447196, + "componentType": 5126, + "count": 32, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 579616, + "componentType": 5126, + "count": 32, + "max": [ + -5.897056354342567e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.44791215461737e-07 + ], + "min": [ + -7.588926109747263e-08, + -0.693580687046051, + -0.7203789949417114, + 1.252046786248684e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 447324, + "componentType": 5126, + "count": 49, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 906876, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 447520, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 907464, + "componentType": 5126, + "count": 56, + "max": [ + -0.13640323281288147, + 0.2850481867790222, + 0.001941691036336124 + ], + "min": [ + -0.13640327751636505, + 0.2850462794303894, + 0.0019379152217879891 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 447744, + "componentType": 5126, + "count": 42, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 580128, + "componentType": 5126, + "count": 42, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789353370667, + 5.411508041675006e-08 + ], + "min": [ + -7.64246479434405e-08, + -0.693580687046051, + -0.7203789949417114, + 3.999505793217395e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 447912, + "componentType": 5126, + "count": 49, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 908136, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 448108, + "componentType": 5126, + "count": 46, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 908724, + "componentType": 5126, + "count": 46, + "max": [ + 0.27831587195396423, + 1.4653550386428833, + -0.5674521923065186 + ], + "min": [ + 0.20172500610351563, + -1.314468264579773, + -1.570373773574829 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 448292, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 909276, + "componentType": 5126, + "count": 56, + "max": [ + 0.5804785490036011, + 0.7688169479370117, + -0.24345582723617554 + ], + "min": [ + 0.08314379304647446, + -0.8183627128601074, + -1.418529748916626 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 448516, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 580800, + "componentType": 5126, + "count": 56, + "max": [ + 1.0, + 0.14007285237312317, + 5.499563826560916e-07, + 0.9956015944480896 + ], + "min": [ + -0.9956933856010437, + -0.09270712733268738, + -0.09269853681325912, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 448740, + "componentType": 5126, + "count": 49, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 909948, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 448936, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 910536, + "componentType": 5126, + "count": 56, + "max": [ + 3.1575560569763184e-05, + -1.2889506706414977e-07, + -2.0260310407138604e-07 + ], + "min": [ + -1.2129545211791992e-05, + -8.15300882095471e-05, + -0.00010813059634529054 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 449160, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 581696, + "componentType": 5126, + "count": 55, + "max": [ + -0.9503704309463501, + 5.9217977188552595e-09, + 1.4635848977206933e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.0671050709731844e-08, + -7.413621383456359e-10, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 449380, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 911208, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 449604, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 911880, + "componentType": 5126, + "count": 56, + "max": [ + 1.7881434644095862e-07, + 0.28250083327293396, + 8.888669640327862e-07 + ], + "min": [ + -1.7881380642847944e-07, + 0.282499223947525, + -5.725516984966816e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 449828, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 582576, + "componentType": 5126, + "count": 56, + "max": [ + -7.077455421722334e-08, + 0.9818702340126038, + 0.26340779662132263, + 0.013122396543622017 + ], + "min": [ + -0.005521660670638084, + -0.9816817045211792, + -0.1895543783903122, + 4.199949614758225e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 450052, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 912552, + "componentType": 5126, + "count": 53, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 450264, + "componentType": 5126, + "count": 44, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 913188, + "componentType": 5126, + "count": 44, + "max": [ + -0.2542727291584015, + 1.3934775590896606, + -0.5724473595619202 + ], + "min": [ + -0.33675435185432434, + -1.5689829587936401, + -1.6653274297714233 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 450440, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 913716, + "componentType": 5126, + "count": 56, + "max": [ + -0.0831446573138237, + 1.016261100769043, + -0.22996267676353455 + ], + "min": [ + -0.5662504434585571, + -0.8694248199462891, + -1.6004725694656372 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 450664, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 583472, + "componentType": 5126, + "count": 56, + "max": [ + 1.0, + 5.523201025425806e-07, + 5.52335052361741e-07, + 0.9999728202819824 + ], + "min": [ + -1.0, + -0.17863965034484863, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 450888, + "componentType": 5126, + "count": 39, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 914388, + "componentType": 5126, + "count": 39, + "max": [ + 1.0, + 1.0000007152557373, + 1.0000007152557373 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 451044, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 914856, + "componentType": 5126, + "count": 56, + "max": [ + 1.714378595352173e-05, + 1.6344021787517704e-05, + 1.1094989531557076e-05 + ], + "min": [ + -9.998679161071777e-06, + -0.00011155493120895699, + -0.00010914621088886634 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 451268, + "componentType": 5126, + "count": 53, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 584368, + "componentType": 5126, + "count": 53, + "max": [ + -0.9503704309463501, + -8.361400460898949e-09, + 2.588409309112194e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -3.280563376506507e-08, + 1.3444577007248881e-08, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 451480, + "componentType": 5126, + "count": 55, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 915528, + "componentType": 5126, + "count": 55, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 451700, + "componentType": 5126, + "count": 56, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 916188, + "componentType": 5126, + "count": 56, + "max": [ + 2.9802322387695313e-08, + 0.2825007438659668, + 6.237918910301232e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.28249892592430115, + -3.9505590621047304e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 451924, + "componentType": 5126, + "count": 51, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 585216, + "componentType": 5126, + "count": 51, + "max": [ + 0.00863775983452797, + -0.7891743183135986, + 0.6042425632476807, + 0.10963665693998337 + ], + "min": [ + -8.2100896747761e-08, + -0.9818702340126038, + 0.1895543336868286, + 4.2527329924268997e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452128, + "componentType": 5126, + "count": 52, + "max": [ + 0.9166666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 916860, + "componentType": 5126, + "count": 52, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452336, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917484, + "componentType": 5126, + "count": 1, + "max": [ + 0.030919769778847694, + -0.02694559469819069, + -1.811525821685791 + ], + "min": [ + 0.030919769778847694, + -0.02694559469819069, + -1.811525821685791 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452340, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586032, + "componentType": 5126, + "count": 3, + "max": [ + 0.10918883234262466, + -0.02295302227139473, + 0.22668056190013885, + 0.9675571918487549 + ], + "min": [ + 0.10918880999088287, + -0.022953025996685028, + 0.22668050229549408, + 0.9675571918487549 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452352, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917496, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 1.0, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452364, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917532, + "componentType": 5126, + "count": 3, + "max": [ + 2.9802322387695313e-08, + 0.0021273940801620483, + 1.1920927533992653e-07 + ], + "min": [ + 1.490126422254434e-08, + 0.0021273940801620483, + -2.581630723541735e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452376, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586080, + "componentType": 5126, + "count": 3, + "max": [ + 0.7071067690849304, + 3.1054671012498147e-07, + -2.993514556237642e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.0000998663126666e-07, + -3.098881506957696e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452388, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917568, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452400, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917604, + "componentType": 5126, + "count": 3, + "max": [ + 0.17381833493709564, + 0.13409817218780518, + 3.998238184976799e-08 + ], + "min": [ + 0.17381832003593445, + 0.13409817218780518, + 1.0184797005763357e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452412, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586128, + "componentType": 5126, + "count": 3, + "max": [ + -0.334473192691803, + -0.24807338416576385, + -0.01798650622367859, + 0.9089905619621277 + ], + "min": [ + -0.33447322249412537, + -0.24807338416576385, + -0.017986515536904335, + 0.9089905023574829 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452424, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917640, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452436, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917676, + "componentType": 5126, + "count": 3, + "max": [ + -2.3744007648929255e-08, + 0.6356115937232971, + 6.00728142785556e-08 + ], + "min": [ + -3.305723339508404e-08, + 0.6356114745140076, + 1.3040809321296365e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452448, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586176, + "componentType": 5126, + "count": 3, + "max": [ + 0.1619357168674469, + 1.8446933980342806e-09, + -3.403064852136595e-08, + 0.9868013262748718 + ], + "min": [ + 0.1619357019662857, + 7.71342933969521e-10, + -3.596267106331652e-08, + 0.9868013262748718 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452460, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917712, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 0.999999463558197, + 0.9999998211860657 + ], + "min": [ + 1.0, + 0.9999993443489075, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452472, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917748, + "componentType": 5126, + "count": 3, + "max": [ + -0.17381834983825684, + 0.13409841060638428, + -1.5362086713821554e-08 + ], + "min": [ + -0.17381834983825684, + 0.13409841060638428, + -4.515966978146935e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452484, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586224, + "componentType": 5126, + "count": 1, + "max": [ + -0.5675499439239502, + -0.18173548579216003, + -0.08760014921426773, + 0.79823899269104 + ], + "min": [ + -0.5675499439239502, + -0.18173548579216003, + -0.08760014921426773, + 0.79823899269104 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452488, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917784, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999998211860657, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452500, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586240, + "componentType": 5126, + "count": 3, + "max": [ + 0.8685107231140137, + 4.441340450966891e-08, + 3.809697091128328e-07, + 0.49567046761512756 + ], + "min": [ + 0.8685107231140137, + 4.078918180994151e-08, + 3.7770078620269487e-07, + 0.49567046761512756 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452512, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917820, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999996423721313, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999996423721313, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452524, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917856, + "componentType": 5126, + "count": 3, + "max": [ + 1.49012713279717e-08, + 0.0021273940801620483, + 1.1925911280741275e-07 + ], + "min": [ + 0.0, + 0.0021273645106703043, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452536, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586288, + "componentType": 5126, + "count": 3, + "max": [ + -0.6495169997215271, + -0.1021479144692421, + 0.05446396395564079, + 0.7514832615852356 + ], + "min": [ + -0.6495169997215271, + -0.1021479144692421, + 0.0544639527797699, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452548, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917892, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999999403953552 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452560, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917928, + "componentType": 5126, + "count": 3, + "max": [ + -2.9802322387695313e-08, + 0.2726658582687378, + -2.328305742649306e-10 + ], + "min": [ + -5.960464477539063e-08, + 0.2726658582687378, + -2.3283061589829401e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452572, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586336, + "componentType": 5126, + "count": 3, + "max": [ + 0.09988786280155182, + 0.05499795451760292, + 0.014437132515013218, + 0.9933726787567139 + ], + "min": [ + 0.09988782554864883, + 0.05499791353940964, + 0.014437119476497173, + 0.9933726787567139 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452584, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 917964, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 1.0, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452596, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918000, + "componentType": 5126, + "count": 3, + "max": [ + 0.044816210865974426, + 0.5170733332633972, + 0.010738094337284565 + ], + "min": [ + 0.04481612145900726, + 0.5170730948448181, + 0.01073798444122076 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452608, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586384, + "componentType": 5126, + "count": 3, + "max": [ + -0.4904356300830841, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.50938481092453, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452620, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918036, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 0.9999998807907104 + ], + "min": [ + 1.0, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452632, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918072, + "componentType": 5126, + "count": 3, + "max": [ + 0.023540973663330078, + 0.23651331663131714, + -0.11545215547084808 + ], + "min": [ + 0.023540854454040527, + 0.23651325702667236, + -0.11545239388942719 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452644, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586432, + "componentType": 5126, + "count": 3, + "max": [ + -0.7055028676986694, + -0.02078678458929062, + -0.4033129811286926, + 0.5823850035667419 + ], + "min": [ + -0.7055028676986694, + -0.020786812528967857, + -0.4033131003379822, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452656, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918108, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452668, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918144, + "componentType": 5126, + "count": 3, + "max": [ + 7.624682041296182e-08, + 0.4048613905906677, + 2.038960928985034e-07 + ], + "min": [ + 1.7201681856704454e-08, + 0.4048613905906677, + 2.0265379419015517e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452680, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586480, + "componentType": 5126, + "count": 3, + "max": [ + -0.08616179972887039, + 0.46205198764801025, + -0.20991362631320953, + 0.8573333024978638 + ], + "min": [ + -0.08616182208061218, + 0.4620519280433655, + -0.20991365611553192, + 0.8573333024978638 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452692, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918180, + "componentType": 5126, + "count": 3, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452704, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918216, + "componentType": 5126, + "count": 3, + "max": [ + 1.5919509266382192e-08, + 0.4032706022262573, + -1.124029669341553e-08 + ], + "min": [ + -2.3253550196500328e-09, + 0.403270423412323, + -5.6369522383192816e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452716, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586528, + "componentType": 5126, + "count": 3, + "max": [ + -0.11016567051410675, + 0.39465606212615967, + 0.12396226823329926, + 0.9037386178970337 + ], + "min": [ + -0.11016575992107391, + 0.3946560323238373, + 0.12396218627691269, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452728, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918252, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452740, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918288, + "componentType": 5126, + "count": 3, + "max": [ + 0.09804259985685349, + 0.21963068842887878, + -0.0024726621340960264 + ], + "min": [ + 0.09804248809814453, + 0.21963034570217133, + -0.0024727664422243834 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452752, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586576, + "componentType": 5126, + "count": 3, + "max": [ + -0.6223368048667908, + -0.0009816758101806045, + 0.03366416320204735, + 0.7820247411727905 + ], + "min": [ + -0.6223368048667908, + -0.0009816925739869475, + 0.03366415575146675, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452764, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918324, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 0.9999998807907104 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452776, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918360, + "componentType": 5126, + "count": 3, + "max": [ + 7.79874440581807e-08, + 0.09750279784202576, + 3.078632744291099e-07 + ], + "min": [ + 7.5323498549551e-08, + 0.0975026786327362, + 2.989318375057337e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452788, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586624, + "componentType": 5126, + "count": 3, + "max": [ + -0.5302281379699707, + 0.0024659112095832825, + -0.05339598283171654, + 0.8461683988571167 + ], + "min": [ + -0.5302281975746155, + 0.0024659004993736744, + -0.053395986557006836, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452800, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918396, + "componentType": 5126, + "count": 3, + "max": [ + -0.01622677966952324, + 0.2130863070487976, + -0.003559563308954239 + ], + "min": [ + -0.0162268728017807, + 0.21308617293834686, + -0.003559581469744444 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452812, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586672, + "componentType": 5126, + "count": 3, + "max": [ + -0.626492977142334, + -0.07110271602869034, + 0.07480836659669876, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110272347927094, + 0.07480834424495697, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452824, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918432, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999998211860657, + 0.9999998211860657, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452836, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918468, + "componentType": 5126, + "count": 3, + "max": [ + -6.085432602276342e-09, + 0.0846501886844635, + -1.911993336989326e-07 + ], + "min": [ + -6.503751137643121e-08, + 0.08465007692575455, + -2.668062393240689e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452848, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586720, + "componentType": 5126, + "count": 3, + "max": [ + -0.5015432834625244, + -0.0011797018814831972, + -0.008243996649980545, + 0.8650925159454346 + ], + "min": [ + -0.5015432834625244, + -0.0011797097977250814, + -0.008244010619819164, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452860, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918504, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 0.9999999403953552 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452872, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918540, + "componentType": 5126, + "count": 3, + "max": [ + 0.11189663410186768, + 0.10988949984312057, + -0.051631372421979904 + ], + "min": [ + 0.11189653724431992, + 0.1098894327878952, + -0.05163143202662468 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452884, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586768, + "componentType": 5126, + "count": 3, + "max": [ + -0.4573034942150116, + 0.16493292152881622, + -0.3159089982509613, + 0.81478351354599 + ], + "min": [ + -0.457303524017334, + 0.16493292152881622, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452896, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918576, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999998807907104, + 1.0, + 0.9999999403953552 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452908, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918612, + "componentType": 5126, + "count": 3, + "max": [ + -2.1602092559191988e-08, + 0.08512399345636368, + 2.2331189342139623e-08 + ], + "min": [ + -1.4128539760349668e-07, + 0.08512398600578308, + 1.335874877383958e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452920, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586816, + "componentType": 5126, + "count": 3, + "max": [ + 0.022910548374056816, + 0.012835747562348843, + 0.6957963705062866, + 0.7177588939666748 + ], + "min": [ + 0.02291053533554077, + 0.0128357307985425, + 0.6957963705062866, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452932, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918648, + "componentType": 5126, + "count": 3, + "max": [ + 0.00558490538969636, + 0.16604475677013397, + -0.04539342597126961 + ], + "min": [ + 0.005584849044680595, + 0.16604451835155487, + -0.0453934445977211 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452944, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586864, + "componentType": 5126, + "count": 3, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350190073251724, + 0.023865388706326485 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.02386537753045559 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452956, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918684, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 1.0, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452968, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918720, + "componentType": 5126, + "count": 3, + "max": [ + 2.8006637875260983e-14, + 0.545007050037384, + 1.0450163046016314e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.545007050037384, + -1.4622021815569042e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 452980, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586912, + "componentType": 5126, + "count": 3, + "max": [ + 0.061220791190862656, + 0.12094816565513611, + -0.07283096015453339, + 0.9880886673927307 + ], + "min": [ + 0.06122077628970146, + 0.12094815820455551, + -0.07283096015453339, + 0.9880886673927307 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 452992, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918756, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999998807907104 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453004, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918792, + "componentType": 5126, + "count": 3, + "max": [ + 2.980235080940474e-08, + 0.11002850532531738, + 1.1734663729612294e-07 + ], + "min": [ + -5.960467319710006e-08, + 0.11002826690673828, + -1.210719204891575e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453016, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 586960, + "componentType": 5126, + "count": 3, + "max": [ + 0.04248629882931709, + 0.11954636126756668, + -0.07510973513126373, + 0.9890713691711426 + ], + "min": [ + 0.0424862764775753, + 0.11954634636640549, + -0.07510974258184433, + 0.9890713691711426 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453028, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918828, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 1.0 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453040, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918864, + "componentType": 5126, + "count": 3, + "max": [ + 2.3259259762653528e-07, + 0.3614466190338135, + 0.026841305196285248 + ], + "min": [ + 2.3259259762653528e-07, + 0.3614463806152344, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453052, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587008, + "componentType": 5126, + "count": 3, + "max": [ + 7.450584149637507e-09, + -3.7252292361955597e-09, + -1.862645149230957e-09, + 1.0 + ], + "min": [ + -7.450578376477779e-09, + -6.519195849818971e-09, + -5.587935003603661e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453064, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918900, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 1.0000003576278687 + ], + "min": [ + 1.0, + 0.9999999403953552, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453076, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918936, + "componentType": 5126, + "count": 1, + "max": [ + 1.797115487534029e-07, + -0.1583409309387207, + -0.253764808177948 + ], + "min": [ + 1.797115487534029e-07, + -0.1583409309387207, + -0.253764808177948 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453080, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587056, + "componentType": 5126, + "count": 3, + "max": [ + -0.998119592666626, + -3.5310316892633864e-09, + -2.2605371441386524e-07, + 0.06129670515656471 + ], + "min": [ + -0.998119592666626, + -4.403511333350707e-09, + -2.270403740567417e-07, + 0.06129668280482292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453092, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918948, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999718070030212 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453104, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 918984, + "componentType": 5126, + "count": 3, + "max": [ + 2.9802276202417488e-08, + 0.25394725799560547, + 2.9336550255720795e-07 + ], + "min": [ + -5.528144267222604e-14, + 0.2539471685886383, + 2.565963654888037e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453116, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587104, + "componentType": 5126, + "count": 3, + "max": [ + 0.15613584220409393, + -1.3485822591974284e-07, + -4.365077632684233e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3662531728186877e-07, + -5.115855294945959e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453128, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919020, + "componentType": 5126, + "count": 1, + "max": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000005960464478 + ], + "min": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453132, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919032, + "componentType": 5126, + "count": 3, + "max": [ + 2.9802322387695313e-08, + 0.25331932306289673, + 2.1915489867296856e-08 + ], + "min": [ + 6.101463075998597e-19, + 0.2533190846443176, + -2.1915489867296856e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453144, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587152, + "componentType": 5126, + "count": 3, + "max": [ + -0.09231443703174591, + -2.091455542085896e-08, + -3.672363080298169e-09, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -2.1927881732608512e-08, + -4.513735163413912e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453156, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919068, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453168, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919104, + "componentType": 5126, + "count": 3, + "max": [ + -1.0587913860162672e-21, + 0.2637788951396942, + 2.576606306092799e-08 + ], + "min": [ + -1.8000104038589163e-14, + 0.26377880573272705, + -1.2237826751970715e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453180, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587200, + "componentType": 5126, + "count": 3, + "max": [ + 6.404565322526423e-09, + -0.9896631240844727, + 0.14341172575950623, + 8.752738267503446e-08 + ], + "min": [ + 6.137442110087932e-09, + -0.9896631240844727, + 0.14341172575950623, + 8.56839932339426e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453192, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919140, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000007152557373 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453204, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919176, + "componentType": 5126, + "count": 3, + "max": [ + -4.7266041747207055e-07, + 0.24314182996749878, + 0.18703128397464752 + ], + "min": [ + -4.896861014458409e-07, + 0.24314166605472565, + 0.187031090259552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453216, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919212, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999997019767761, + 1.0000004768371582, + 0.9999998807907104 + ], + "min": [ + 0.9999996423721313, + 1.0000004768371582, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453228, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587248, + "componentType": 5126, + "count": 3, + "max": [ + 0.007415743079036474, + -0.07428392767906189, + -0.9923430681228638, + 0.09839730709791183 + ], + "min": [ + 0.0074157421477139, + -0.07428395748138428, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453240, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919248, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999976754188538, + 1.0000003576278687, + 0.9999986290931702 + ], + "min": [ + 0.9999975562095642, + 1.000000238418579, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453252, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919284, + "componentType": 5126, + "count": 3, + "max": [ + 0.2434186339378357, + -0.1304634064435959, + 0.029649971053004265 + ], + "min": [ + 0.2434186041355133, + -0.1304640918970108, + 0.029649747535586357 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453264, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587296, + "componentType": 5126, + "count": 3, + "max": [ + 0.007417415268719196, + 0.0742836743593216, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417413871735334, + 0.0742836520075798, + 0.9923431277275085, + 0.09839750826358795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453276, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919320, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999972581863403, + 1.0000004768371582, + 0.9999986290931702 + ], + "min": [ + 0.9999972581863403, + 1.0000004768371582, + 0.9999986290931702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453280, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919332, + "componentType": 5126, + "count": 3, + "max": [ + -0.044815994799137115, + 0.5170730948448181, + 0.010737991891801357 + ], + "min": [ + -0.04481608420610428, + 0.5170730948448181, + 0.010737872682511806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453292, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587344, + "componentType": 5126, + "count": 3, + "max": [ + -0.5382573008537292, + 0.50974041223526, + 0.5019243359565735, + 0.44555115699768066 + ], + "min": [ + -0.5382573008537292, + 0.50974041223526, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453304, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919368, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453316, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919404, + "componentType": 5126, + "count": 3, + "max": [ + 0.017870448529720306, + 0.23250824213027954, + -0.035274047404527664 + ], + "min": [ + 0.01787026971578598, + 0.23250824213027954, + -0.035274047404527664 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453328, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587392, + "componentType": 5126, + "count": 3, + "max": [ + -0.4589879512786865, + 0.4803188741207123, + -0.36938995122909546, + 0.6497499346733093 + ], + "min": [ + -0.4589879810810089, + 0.4803188145160675, + -0.36939001083374023, + 0.6497498750686646 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453340, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919440, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453352, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919476, + "componentType": 5126, + "count": 3, + "max": [ + 5.798515800847781e-08, + 0.4048612713813782, + 2.05741841341478e-07 + ], + "min": [ + -1.0599814359579796e-09, + 0.4048612713813782, + 2.0449954263312975e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453364, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587440, + "componentType": 5126, + "count": 3, + "max": [ + -0.07451159507036209, + 0.49918368458747864, + -0.05700934678316116, + 0.861402153968811 + ], + "min": [ + -0.07451160252094269, + 0.4991835951805115, + -0.05700934678316116, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453376, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919512, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999998807907104, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453388, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919548, + "componentType": 5126, + "count": 3, + "max": [ + 1.1489084528193416e-07, + 0.4032704830169678, + -5.2587115106916826e-08 + ], + "min": [ + -1.22318198236826e-07, + 0.4032704830169678, + -5.716417206258484e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453400, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587488, + "componentType": 5126, + "count": 3, + "max": [ + 0.023212529718875885, + 0.004205356817692518, + -0.023572081699967384, + 0.999443769454956 + ], + "min": [ + 0.023212524130940437, + 0.004205350764095783, + -0.023572081699967384, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453412, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919584, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453424, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919620, + "componentType": 5126, + "count": 3, + "max": [ + -0.09804245829582214, + 0.21963097155094147, + -0.002472742460668087 + ], + "min": [ + -0.0980425477027893, + 0.21963074803352356, + -0.0024727710988372564 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453436, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587536, + "componentType": 5126, + "count": 3, + "max": [ + -0.5146675109863281, + 0.049974922090768814, + -0.08315926790237427, + 0.8518828749656677 + ], + "min": [ + -0.5146675109863281, + 0.04997490718960762, + -0.08315928280353546, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453448, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919656, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453460, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919692, + "componentType": 5126, + "count": 3, + "max": [ + 4.4682700206521986e-08, + 0.09750259667634964, + 3.6247928392185713e-07 + ], + "min": [ + -1.2237212132504283e-08, + 0.09750247746706009, + 3.5428436717666045e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453472, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587584, + "componentType": 5126, + "count": 3, + "max": [ + -0.42176109552383423, + 0.06273207813501358, + 0.009731808677315712, + 0.9044819474220276 + ], + "min": [ + -0.4217611253261566, + 0.06273206323385239, + 0.009731799364089966, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453484, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919728, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999998211860657, + 0.9999999403953552 + ], + "min": [ + 1.0, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453496, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919764, + "componentType": 5126, + "count": 3, + "max": [ + 0.016226865351200104, + 0.21308633685112, + -0.003559454809874296 + ], + "min": [ + 0.016226820647716522, + 0.2130861133337021, + -0.003559524193406105 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453508, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587632, + "componentType": 5126, + "count": 3, + "max": [ + -0.5430818796157837, + 0.06296972930431366, + -0.08177220821380615, + 0.8333128094673157 + ], + "min": [ + -0.5430818796157837, + 0.06296972930431366, + -0.08177221566438675, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453520, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919800, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453532, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919836, + "componentType": 5126, + "count": 3, + "max": [ + 6.728283352686049e-08, + 0.08465014398097992, + -2.6147765197492845e-07 + ], + "min": [ + 1.1858444892709485e-08, + 0.08464989066123962, + -3.4554651051621477e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453544, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587680, + "componentType": 5126, + "count": 3, + "max": [ + -0.40921831130981445, + 0.0020274464040994644, + 0.008077411912381649, + 0.9123985171318054 + ], + "min": [ + -0.40921831130981445, + 0.0020274342969059944, + 0.008077401667833328, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453556, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919872, + "componentType": 5126, + "count": 3, + "max": [ + -0.11189664155244827, + 0.10988932847976685, + -0.05163128674030304 + ], + "min": [ + -0.11189664900302887, + 0.10988931357860565, + -0.051631294190883636 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453568, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587728, + "componentType": 5126, + "count": 3, + "max": [ + -0.4322458505630493, + -0.12903627753257751, + 0.15030041337013245, + 0.8797289133071899 + ], + "min": [ + -0.4322458505630493, + -0.1290363073348999, + 0.15030041337013245, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453580, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919908, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 0.9999998807907104, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453592, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919944, + "componentType": 5126, + "count": 3, + "max": [ + -3.0803796846612386e-08, + 0.0851239487528801, + -6.417562925520315e-09 + ], + "min": [ + -3.897524081253323e-08, + 0.08512376993894577, + -9.516615939730855e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453604, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587776, + "componentType": 5126, + "count": 3, + "max": [ + 0.14811433851718903, + -0.12198016792535782, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.12198018282651901, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453616, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 919980, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453628, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920016, + "componentType": 5126, + "count": 3, + "max": [ + -0.0055848658084869385, + 0.1660446673631668, + -0.04539348557591438 + ], + "min": [ + -0.005584951490163803, + 0.16604456305503845, + -0.04539352282881737 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453640, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587824, + "componentType": 5126, + "count": 3, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350191190838814, + 0.023865384981036186 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350190073251724, + 0.02386537939310074 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453652, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920052, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453664, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920088, + "componentType": 5126, + "count": 3, + "max": [ + 0.13640324771404266, + 0.2850474715232849, + 0.0019397384021431208 + ], + "min": [ + 0.13640323281288147, + 0.2850472331047058, + 0.0019395091803744435 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453676, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587872, + "componentType": 5126, + "count": 3, + "max": [ + -6.104419725261323e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3742923954396247e-07 + ], + "min": [ + -7.6946257365762e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3246132368749386e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453688, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920124, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 1.0000001192092896, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453700, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920160, + "componentType": 5126, + "count": 3, + "max": [ + -0.13640324771404266, + 0.2850474715232849, + 0.001939931302331388 + ], + "min": [ + -0.13640327751636505, + 0.2850474715232849, + 0.001939812209457159 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453712, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587920, + "componentType": 5126, + "count": 3, + "max": [ + -6.647706385365382e-08, + -0.6935806274414063, + -0.7203789949417114, + 6.299851662561196e-08 + ], + "min": [ + -7.939600976669681e-08, + -0.6935806274414063, + -0.7203789949417114, + 4.9580414440697496e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453724, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920196, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.000000238418579, + 0.9999999403953552 + ], + "min": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453736, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920232, + "componentType": 5126, + "count": 3, + "max": [ + 0.10143556445837021, + 0.5460788011550903, + -0.7193384766578674 + ], + "min": [ + 0.10143555700778961, + 0.5460788011550903, + -0.7193384766578674 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453748, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920268, + "componentType": 5126, + "count": 1, + "max": [ + 0.06591729819774628, + 0.3755355179309845, + -0.5011460185050964 + ], + "min": [ + 0.06591729819774628, + 0.3755355179309845, + -0.5011460185050964 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453752, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 587968, + "componentType": 5126, + "count": 3, + "max": [ + -0.9635462164878845, + -0.07729190587997437, + 0.023960363119840622, + 0.2550107538700104 + ], + "min": [ + -0.9635462760925293, + -0.07729192823171616, + 0.023960351943969727, + 0.2550106644630432 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453764, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588016, + "componentType": 5126, + "count": 3, + "max": [ + -0.9503704309463501, + -2.1533530514261656e-09, + 1.031958252184495e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -3.000254933382962e-09, + 1.0287322993463022e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453776, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920280, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 0.9999996423721313 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453788, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920316, + "componentType": 5126, + "count": 3, + "max": [ + 1.4901109679499314e-08, + 0.28249984979629517, + 6.459340085029908e-08 + ], + "min": [ + -5.16326144708347e-14, + 0.28249984979629517, + 6.459338663944436e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453800, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588064, + "componentType": 5126, + "count": 3, + "max": [ + -8.024596098721304e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.261056858467782e-07 + ], + "min": [ + -8.095958037301898e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.218181288706546e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453812, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920352, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453824, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920388, + "componentType": 5126, + "count": 1, + "max": [ + -0.2241942435503006, + 0.5460788011550903, + -0.7433466911315918 + ], + "min": [ + -0.2241942435503006, + 0.5460788011550903, + -0.7433466911315918 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453828, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920400, + "componentType": 5126, + "count": 1, + "max": [ + -0.16961070895195007, + -0.1363198161125183, + -1.0839574337005615 + ], + "min": [ + -0.16961070895195007, + -0.1363198161125183, + -1.0839574337005615 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453832, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588112, + "componentType": 5126, + "count": 3, + "max": [ + -0.7671512961387634, + -0.12532173097133636, + -0.013319878838956356, + 0.6289641261100769 + ], + "min": [ + -0.7671513557434082, + -0.12532176077365875, + -0.013319880701601505, + 0.6289640665054321 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453844, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920412, + "componentType": 5126, + "count": 3, + "max": [ + 9.685754776000977e-07, + -2.3713515474810265e-05, + -1.9382621758268215e-05 + ], + "min": [ + 9.685754776000977e-07, + -2.377439886913635e-05, + -1.950118166860193e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453856, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588160, + "componentType": 5126, + "count": 3, + "max": [ + -0.9503704309463501, + -5.215566201144384e-09, + 1.5931822971992915e-08, + 0.31112074851989746 + ], + "min": [ + -0.9503704309463501, + -8.176463950348989e-09, + 1.3002606102929803e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453868, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920448, + "componentType": 5126, + "count": 3, + "max": [ + -2.5816305541351454e-14, + 0.2824997901916504, + -1.7484129699596451e-09 + ], + "min": [ + -3.872446254719192e-14, + 0.2824997901916504, + -1.5578752510236882e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453880, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588208, + "componentType": 5126, + "count": 3, + "max": [ + -8.776135018706555e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.1563106378816883e-07 + ], + "min": [ + -8.782755145375631e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.15288155863891e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 453892, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920484, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999998807907104 + ], + "min": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 453904, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 920520, + "componentType": 5126, + "count": 48, + "max": [ + 0.030920615419745445, + 0.24444954097270966, + -1.0616604089736938 + ], + "min": [ + 0.030920160934329033, + -0.08483369648456573, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 454096, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 588256, + "componentType": 5126, + "count": 49, + "max": [ + 0.26906540989875793, + 0.010921821929514408, + 0.22783711552619934, + 0.9736908674240112 + ], + "min": [ + -0.03552567958831787, + -0.06044594943523407, + 0.21967507898807526, + 0.9357846975326538 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 454292, + "componentType": 5126, + "count": 39, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 921096, + "componentType": 5126, + "count": 39, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 454448, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 921564, + "componentType": 5126, + "count": 48, + "max": [ + 2.9802322387695313e-08, + 0.002127397805452347, + 1.1920931797249068e-07 + ], + "min": [ + -4.470348358154297e-08, + 0.0021273642778396606, + -1.1920930376163597e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 454640, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 589040, + "componentType": 5126, + "count": 49, + "max": [ + 0.7071067690849304, + 3.1680286838309257e-07, + -2.9572944981737237e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9572944981737237e-07, + -3.1680286838309257e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 454836, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 922140, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 455032, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 922728, + "componentType": 5126, + "count": 49, + "max": [ + 0.1738184243440628, + 0.13409864902496338, + 7.615602015675904e-08 + ], + "min": [ + 0.17381823062896729, + 0.13409793376922607, + -1.5362086713821554e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 455228, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 589824, + "componentType": 5126, + "count": 49, + "max": [ + -0.13052895665168762, + 0.005820861551910639, + -0.1811286062002182, + 0.969542384147644 + ], + "min": [ + -0.752784013748169, + -0.1035778746008873, + -0.28652864694595337, + 0.6051541566848755 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 455424, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 923316, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000007152557373, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 455620, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 923904, + "componentType": 5126, + "count": 49, + "max": [ + 3.120402425338398e-08, + 0.6356115937232971, + 1.1859552273563168e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.635611355304718, + -1.1472926075839496e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 455816, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 590608, + "componentType": 5126, + "count": 49, + "max": [ + 0.8060770034790039, + 2.4020046396344696e-08, + 2.7046239026162766e-08, + 0.9874267578125 + ], + "min": [ + 0.1580771654844284, + -3.41698189743056e-08, + -5.012758492739522e-07, + 0.5918107032775879 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 456012, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 924492, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 456208, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 925080, + "componentType": 5126, + "count": 49, + "max": [ + -0.17381827533245087, + 0.13409870862960815, + 9.851488158574284e-08 + ], + "min": [ + -0.17381839454174042, + 0.13409793376922607, + -7.262975776356484e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 456404, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 591392, + "componentType": 5126, + "count": 48, + "max": [ + 0.0693177580833435, + -0.12742991745471954, + 0.21133063733577728, + 0.9652506113052368 + ], + "min": [ + -0.2801908552646637, + -0.23742730915546417, + -0.018407879397273064, + 0.9453305602073669 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 456596, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 925668, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 456788, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 926244, + "componentType": 5126, + "count": 48, + "max": [ + 8.0727204476716e-08, + 0.6356115341186523, + 3.378714197310728e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.6356114149093628, + -3.16299875180448e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 456980, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 592160, + "componentType": 5126, + "count": 49, + "max": [ + 0.673777163028717, + 1.4947872273296525e-08, + 5.588154294855485e-07, + 0.9844071865081787 + ], + "min": [ + 0.17590489983558655, + -7.159575687865072e-08, + 5.149676596261088e-08, + 0.7389345765113831 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 457176, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 926820, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999989867210388, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 457372, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 927408, + "componentType": 5126, + "count": 49, + "max": [ + 3.725290298461914e-08, + 0.00212745345197618, + 1.1925914122912218e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.002127364045009017, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 457568, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 592944, + "componentType": 5126, + "count": 49, + "max": [ + -0.5875216722488403, + -0.10214788466691971, + 0.05446396395564079, + 0.7972956895828247 + ], + "min": [ + -0.6495170593261719, + -0.1368948370218277, + 0.019942250102758408, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 457764, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 927996, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 457960, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 928584, + "componentType": 5126, + "count": 49, + "max": [ + 5.960464477539063e-08, + 0.2726660966873169, + 6.364990667862003e-08 + ], + "min": [ + -8.940696716308594e-08, + 0.27266550064086914, + -9.389833621753496e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 458156, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 593728, + "componentType": 5126, + "count": 49, + "max": [ + 0.09988787025213242, + 0.05683114379644394, + 0.02510380744934082, + 0.9944412708282471 + ], + "min": [ + 0.08500943332910538, + 0.05499798059463501, + 0.014437101781368256, + 0.9933726787567139 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 458352, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 929172, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 458548, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 929760, + "componentType": 5126, + "count": 49, + "max": [ + 0.04481622576713562, + 0.5170735716819763, + 0.010738259181380272 + ], + "min": [ + 0.0448160320520401, + 0.5170727372169495, + 0.010737672448158264 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 458744, + "componentType": 5126, + "count": 47, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 594512, + "componentType": 5126, + "count": 47, + "max": [ + -0.4904356300830841, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.49043571949005127, + -0.49043557047843933, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 458932, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 930348, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 459128, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 930936, + "componentType": 5126, + "count": 49, + "max": [ + 0.023541510105133057, + 0.2365134060382843, + -0.11545227468013763 + ], + "min": [ + 0.023540914058685303, + 0.23651322722434998, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 459324, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 595264, + "componentType": 5126, + "count": 48, + "max": [ + -0.7055026888847351, + -0.020786724984645844, + -0.4033128619194031, + 0.582385241985321 + ], + "min": [ + -0.705502986907959, + -0.020786883309483528, + -0.40331313014030457, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 459516, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 931524, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 459712, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 932112, + "componentType": 5126, + "count": 49, + "max": [ + 1.358502146331375e-07, + 0.4048615097999573, + 3.235162466808106e-07 + ], + "min": [ + -1.3386970465489867e-07, + 0.40486103296279907, + 1.4600146869270247e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 459908, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 596032, + "componentType": 5126, + "count": 49, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.20991361141204834, + 0.857333242893219 + ], + "min": [ + -0.0861617773771286, + 0.4620521366596222, + -0.2353183925151825, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 460104, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 932700, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 460300, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 933288, + "componentType": 5126, + "count": 49, + "max": [ + 1.253899739594999e-07, + 0.40327057242393494, + 6.753279535587353e-08 + ], + "min": [ + -1.20918258517122e-07, + 0.4032703936100006, + -1.7840973498550738e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 460496, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 596816, + "componentType": 5126, + "count": 48, + "max": [ + -0.11016559600830078, + 0.39465612173080444, + 0.12396229803562164, + 0.9037386775016785 + ], + "min": [ + -0.1101658046245575, + 0.3946560323238373, + 0.1239621639251709, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 460688, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 933876, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 460884, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 934464, + "componentType": 5126, + "count": 49, + "max": [ + 0.09804267436265945, + 0.21963082253932953, + -0.002472508931532502 + ], + "min": [ + 0.09804246574640274, + 0.2196304053068161, + -0.0024728309363126755 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 461080, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 597584, + "componentType": 5126, + "count": 49, + "max": [ + -0.622336745262146, + -0.0009816484525799751, + 0.03366424888372421, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.000981715158559382, + 0.03366416320204735, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 461276, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 935052, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 461472, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 935640, + "componentType": 5126, + "count": 49, + "max": [ + 7.5323498549551e-08, + 0.09750280529260635, + 4.170604199771333e-07 + ], + "min": [ + -1.0426656160689163e-07, + 0.09750255942344666, + 2.729447317051381e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 461668, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 598368, + "componentType": 5126, + "count": 49, + "max": [ + -0.5302280187606812, + 0.002465943107381463, + -0.05339592695236206, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658795446157455, + -0.05339599773287773, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 461864, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 936228, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 462060, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 936816, + "componentType": 5126, + "count": 48, + "max": [ + -0.01622670888900757, + 0.21308618783950806, + -0.003559298347681761 + ], + "min": [ + -0.01622694544494152, + 0.21308578550815582, + -0.0035596685484051704 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 462252, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 599152, + "componentType": 5126, + "count": 49, + "max": [ + -0.626492977142334, + -0.07110269367694855, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110274583101273, + 0.07480829954147339, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 462448, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 937392, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 462644, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 937980, + "componentType": 5126, + "count": 49, + "max": [ + 5.286664617187853e-08, + 0.0846501961350441, + -1.9589920441376307e-07 + ], + "min": [ + -9.612430318384213e-08, + 0.08464984595775604, + -3.6088940191802976e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 462840, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 599936, + "componentType": 5126, + "count": 49, + "max": [ + -0.5015431642532349, + -0.0011796415783464909, + -0.008243976160883904, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.001179688610136509, + -0.008244023658335209, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 463036, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 938568, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 463228, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 939144, + "componentType": 5126, + "count": 49, + "max": [ + 0.11189686506986618, + 0.10988954454660416, + -0.05163123086094856 + ], + "min": [ + 0.11189647018909454, + 0.10988911241292953, + -0.051631443202495575 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 463424, + "componentType": 5126, + "count": 46, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 600720, + "componentType": 5126, + "count": 46, + "max": [ + -0.4573034942150116, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493290662765503, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 463608, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 939732, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 463804, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 940320, + "componentType": 5126, + "count": 49, + "max": [ + 9.385811949869094e-08, + 0.08512411266565323, + 5.268141478609323e-08 + ], + "min": [ + -1.4278469961936935e-07, + 0.08512387424707413, + -2.526472009378722e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 464000, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 601456, + "componentType": 5126, + "count": 49, + "max": [ + 0.022910568863153458, + 0.012835761532187462, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.02291051857173443, + 0.012835714966058731, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 464196, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 940908, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 464392, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 941496, + "componentType": 5126, + "count": 49, + "max": [ + 0.005585019942373037, + 0.1660446971654892, + -0.045393411070108414 + ], + "min": [ + 0.0055847750045359135, + 0.16604432463645935, + -0.04539356008172035 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 464588, + "componentType": 5126, + "count": 47, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 602240, + "componentType": 5126, + "count": 47, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193426012993, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 464776, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 942084, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 464972, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 942672, + "componentType": 5126, + "count": 49, + "max": [ + 8.940696716308594e-08, + 0.5450075268745422, + 1.225698440521228e-07 + ], + "min": [ + -7.450580596923828e-08, + 0.545007050037384, + -1.2922865266773442e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 465168, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 602992, + "componentType": 5126, + "count": 49, + "max": [ + 0.06122077628970146, + 0.13072361052036285, + -0.042228199541568756, + 0.9905089139938354 + ], + "min": [ + -0.0072151185013353825, + 0.12094814330339432, + -0.07283096760511398, + 0.9880886077880859 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 465364, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 943260, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 465560, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 943848, + "componentType": 5126, + "count": 49, + "max": [ + 5.960467319710006e-08, + 0.11002850532531738, + 1.1734665861240501e-07 + ], + "min": [ + -5.960467319710006e-08, + 0.11002779006958008, + -2.4028122425079346e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 465756, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 603776, + "componentType": 5126, + "count": 49, + "max": [ + 0.04248618707060814, + 0.12989991903305054, + -0.04469773918390274, + 0.990441083908081 + ], + "min": [ + -0.025982946157455444, + 0.11954637616872787, + -0.07510972023010254, + 0.9890713691711426 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 465952, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 944436, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 466144, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 945012, + "componentType": 5126, + "count": 49, + "max": [ + 2.7729606699722353e-07, + 0.3614470958709717, + 0.026841603219509125 + ], + "min": [ + 2.1769143643268762e-07, + 0.3614460229873657, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 466340, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 604560, + "componentType": 5126, + "count": 49, + "max": [ + 2.2351738238057806e-08, + -9.312620674606364e-10, + -3.259628567064965e-09, + 1.0 + ], + "min": [ + -2.9802311729554276e-08, + -5.820703918857362e-09, + -6.51925713412993e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 466536, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 945600, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 1.0, + 0.9999998211860657, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 466732, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 946188, + "componentType": 5126, + "count": 49, + "max": [ + 2.0951392798451707e-07, + -0.1583404392004013, + -0.25376445055007935 + ], + "min": [ + 1.4990922636570758e-07, + -0.1583414077758789, + -0.2537651062011719 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 466928, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 605344, + "componentType": 5126, + "count": 49, + "max": [ + -0.998119592666626, + -1.3824162925502037e-09, + -2.2422311474201706e-07, + 0.061296749860048294 + ], + "min": [ + -0.998119592666626, + -4.811220311040643e-09, + -2.2967209645230469e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 467124, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 946776, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999719858169556 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999715685844421 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 467320, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 947364, + "componentType": 5126, + "count": 49, + "max": [ + 1.490117718105921e-08, + 0.25394749641418457, + 2.1673760386420327e-07 + ], + "min": [ + -2.9802318834981634e-08, + 0.253946989774704, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 467516, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 606128, + "componentType": 5126, + "count": 49, + "max": [ + 0.15613587200641632, + -1.3117860930833558e-07, + -2.434002999152085e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.368797910572539e-07, + -4.8250257123072515e-09, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 467712, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 947952, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000005960464478, + 1.000001072883606, + 1.0000008344650269 + ], + "min": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 467908, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 948540, + "componentType": 5126, + "count": 49, + "max": [ + 2.9802322387695313e-08, + 0.2533193528652191, + 2.3435501361745992e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.25331905484199524, + -2.233972651310978e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 468104, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 606912, + "componentType": 5126, + "count": 49, + "max": [ + -0.09231439977884293, + -1.6925758572483574e-08, + 1.5293824540130174e-10, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -2.2133626487175206e-08, + -4.078077431302063e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 468300, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 949128, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 468496, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 949716, + "componentType": 5126, + "count": 49, + "max": [ + 2.9802322387695313e-08, + 0.2637789249420166, + 1.9082969515693549e-07 + ], + "min": [ + -2.980230462412692e-08, + 0.2637784481048584, + -8.853968580524452e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 468692, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 607696, + "componentType": 5126, + "count": 49, + "max": [ + 8.501839232621933e-09, + -0.9896631240844727, + 0.14341172575950623, + 9.180857318824565e-08 + ], + "min": [ + 2.971672907747802e-09, + -0.9896631240844727, + 0.14341169595718384, + 8.660568795448853e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 468888, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 950304, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.0000007152557373 + ], + "min": [ + 1.000000238418579, + 1.0000007152557373, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 469084, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 950892, + "componentType": 5126, + "count": 49, + "max": [ + -2.7632324872683967e-07, + 0.24314211308956146, + 0.18703176081180573 + ], + "min": [ + -6.750228749297094e-07, + 0.24314121901988983, + 0.18703098595142365 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 469280, + "componentType": 5126, + "count": 43, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 608480, + "componentType": 5126, + "count": 43, + "max": [ + 0.44783374667167664, + -0.23266467452049255, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 469452, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 951480, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 1.0000007152557373, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 1.000000238418579, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 469648, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 952068, + "componentType": 5126, + "count": 49, + "max": [ + -0.24418967962265015, + -0.1304626762866974, + 0.029650462791323662 + ], + "min": [ + -0.24418996274471283, + -0.13046404719352722, + 0.02965005487203598 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 469844, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 609168, + "componentType": 5126, + "count": 49, + "max": [ + 0.0074157495982944965, + -0.0742839127779007, + -0.9923430681228638, + 0.09839731454849243 + ], + "min": [ + 0.0074157374911010265, + -0.07428395748138428, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 470040, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 952656, + "componentType": 5126, + "count": 48, + "max": [ + 0.9999978542327881, + 1.0000007152557373, + 0.9999988675117493 + ], + "min": [ + 0.9999974370002747, + 1.0000001192092896, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 470232, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 953232, + "componentType": 5126, + "count": 49, + "max": [ + 0.24341878294944763, + -0.13046316802501678, + 0.029650183394551277 + ], + "min": [ + 0.24341845512390137, + -0.1304643601179123, + 0.029649505391716957 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 470428, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 609952, + "componentType": 5126, + "count": 49, + "max": [ + 0.007417422719299793, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.007417413406074047, + 0.0742836445569992, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 470624, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 953820, + "componentType": 5126, + "count": 49, + "max": [ + 0.9999974370002747, + 1.0000007152557373, + 0.9999988675117493 + ], + "min": [ + 0.999997079372406, + 1.0000003576278687, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 470820, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 954408, + "componentType": 5126, + "count": 49, + "max": [ + -0.044816069304943085, + 0.5170733332633972, + 0.010738230310380459 + ], + "min": [ + -0.04481623321771622, + 0.5170727372169495, + 0.010737748816609383 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 471016, + "componentType": 5126, + "count": 45, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 610736, + "componentType": 5126, + "count": 45, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555118680000305 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 471196, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 954996, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 471388, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 955572, + "componentType": 5126, + "count": 49, + "max": [ + 0.017870627343654633, + 0.23250842094421387, + -0.03527344763278961 + ], + "min": [ + 0.017870090901851654, + 0.23250818252563477, + -0.035274047404527664 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 471584, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 611456, + "componentType": 5126, + "count": 49, + "max": [ + -0.4589880704879761, + 0.5143935084342957, + -0.32813236117362976, + 0.649749755859375 + ], + "min": [ + -0.5603394508361816, + 0.48031893372535706, + -0.36938995122909546, + 0.5601322054862976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 471780, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 956160, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 471976, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 956748, + "componentType": 5126, + "count": 49, + "max": [ + 1.3303237267336954e-07, + 0.4048615097999573, + 3.824110876848863e-07 + ], + "min": [ + -6.929244733555606e-08, + 0.40486103296279907, + 1.4446507634602312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 472172, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 612240, + "componentType": 5126, + "count": 49, + "max": [ + -0.07451160252094269, + 0.499183714389801, + -0.05700934678316116, + 0.8614022135734558 + ], + "min": [ + -0.07451164722442627, + 0.4991835653781891, + -0.05700942873954773, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 472368, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 957336, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 472564, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 957924, + "componentType": 5126, + "count": 49, + "max": [ + 1.1496053531345751e-07, + 0.4032706022262573, + 7.501943954935086e-09 + ], + "min": [ + -1.2836883911404584e-07, + 0.40327024459838867, + -9.185826854718471e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 472760, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 613024, + "componentType": 5126, + "count": 49, + "max": [ + 0.02321254089474678, + 0.004205366130918264, + -0.023572051897644997, + 0.999443769454956 + ], + "min": [ + 0.02321251668035984, + 0.004205341916531324, + -0.023572111502289772, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 472956, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 958512, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 473152, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 959100, + "componentType": 5126, + "count": 49, + "max": [ + -0.09804248064756393, + 0.21963085234165192, + -0.002472642809152603 + ], + "min": [ + -0.09804275631904602, + 0.21963046491146088, + -0.002472780179232359 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 473348, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 613808, + "componentType": 5126, + "count": 49, + "max": [ + -0.5146673321723938, + 0.0499749593436718, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 473544, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 959688, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 473736, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 960264, + "componentType": 5126, + "count": 49, + "max": [ + 4.4349707906121694e-08, + 0.09750273078680038, + 4.805962134923902e-07 + ], + "min": [ + -1.9398572703721584e-07, + 0.09750251471996307, + 2.4304429757648904e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 473932, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 614592, + "componentType": 5126, + "count": 49, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731828235089779, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320259809494, + 0.009731798432767391, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 474128, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 960852, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 474324, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 961440, + "componentType": 5126, + "count": 49, + "max": [ + 0.01622694730758667, + 0.21308627724647522, + -0.0035594641231000423 + ], + "min": [ + 0.016226688399910927, + 0.21308591961860657, + -0.0035596019588410854 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 474520, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 615376, + "componentType": 5126, + "count": 49, + "max": [ + -0.5430818200111389, + 0.06296975165605545, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296971440315247, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 474716, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 962028, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 474912, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 962616, + "componentType": 5126, + "count": 49, + "max": [ + 7.268759816270176e-08, + 0.08465006947517395, + -1.3521274411232298e-07 + ], + "min": [ + -1.0767559643909408e-07, + 0.08464983850717545, + -3.6726157759403577e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 475108, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 616160, + "componentType": 5126, + "count": 49, + "max": [ + -0.4092182219028473, + 0.0020274475682526827, + 0.008077427744865417, + 0.9123985767364502 + ], + "min": [ + -0.40921831130981445, + 0.0020273977424949408, + 0.00807737186551094, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 475304, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 963204, + "componentType": 5126, + "count": 49, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 475500, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 963792, + "componentType": 5126, + "count": 49, + "max": [ + -0.11189647763967514, + 0.10988952964544296, + -0.051631197333335876 + ], + "min": [ + -0.11189690232276917, + 0.10988906025886536, + -0.05163149535655975 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 475696, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 616944, + "componentType": 5126, + "count": 49, + "max": [ + -0.43224573135375977, + -0.12903624773025513, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363222360611, + 0.15030036866664886, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 475892, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 964380, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 476084, + "componentType": 5126, + "count": 50, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 964956, + "componentType": 5126, + "count": 50, + "max": [ + 2.044770610609703e-07, + 0.08512405306100845, + 1.1211079709028127e-07 + ], + "min": [ + -9.57182493266373e-08, + 0.08512375503778458, + -1.264954505586502e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 476284, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 617728, + "componentType": 5126, + "count": 49, + "max": [ + 0.1481143683195114, + -0.12198013067245483, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.1219802126288414, + -0.12739096581935883, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 476480, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 965556, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 476676, + "componentType": 5126, + "count": 50, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 966144, + "componentType": 5126, + "count": 50, + "max": [ + -0.005584749858826399, + 0.1660446673631668, + -0.04539341479539871 + ], + "min": [ + -0.005585009697824717, + 0.16604430973529816, + -0.04539361223578453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 476876, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 618512, + "componentType": 5126, + "count": 49, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501919358968735, + 0.023865394294261932 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350188583135605, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 477072, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 966744, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 477264, + "componentType": 5126, + "count": 56, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 967320, + "componentType": 5126, + "count": 56, + "max": [ + 0.13640333712100983, + 0.2850474715232849, + 0.0019400316523388028 + ], + "min": [ + 0.1364031434059143, + 0.2850469946861267, + 0.001939500099979341 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 477488, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 619296, + "componentType": 5126, + "count": 49, + "max": [ + -5.050937446071657e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5109692697024002e-07 + ], + "min": [ + -1.0139672212972073e-07, + -0.6935806274414063, + -0.7203789949417114, + 1.2470997035052278e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 477684, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 967992, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 477880, + "componentType": 5126, + "count": 53, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 968580, + "componentType": 5126, + "count": 53, + "max": [ + -0.1364031583070755, + 0.2850474715232849, + 0.0019400458550080657 + ], + "min": [ + -0.13640336692333221, + 0.28504711389541626, + 0.0019395648268982768 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 478092, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 620080, + "componentType": 5126, + "count": 49, + "max": [ + -5.3258620624774267e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.826592624520345e-08 + ], + "min": [ + -9.829145142248308e-08, + -0.693580687046051, + -0.7203789949417114, + 3.387801683629732e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 478288, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 969216, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 478484, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 969804, + "componentType": 5126, + "count": 48, + "max": [ + 0.27831587195396423, + 1.1178131103515625, + -0.7193384766578674 + ], + "min": [ + 0.11483559012413025, + 0.5460788011550903, + -0.7300586700439453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 478676, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 970380, + "componentType": 5126, + "count": 48, + "max": [ + 0.5804785490036011, + 0.5300824642181396, + -0.2383269965648651 + ], + "min": [ + 0.23565122485160828, + 0.417879581451416, + -0.24350875616073608 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 478868, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 620864, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 0.0, + 5.52335052361741e-07, + 5.1205397255671414e-08 + ], + "min": [ + -1.0, + -0.09270712733268738, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 479064, + "componentType": 5126, + "count": 24, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 970956, + "componentType": 5126, + "count": 24, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 479160, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 971244, + "componentType": 5126, + "count": 49, + "max": [ + 3.890693187713623e-05, + 6.870177458040416e-06, + -2.0355308549824258e-08 + ], + "min": [ + 1.6391277313232422e-07, + -2.172549648093991e-05, + -0.0001233050279552117 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 479356, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 621648, + "componentType": 5126, + "count": 49, + "max": [ + -0.9503704309463501, + 2.3810116100975165e-09, + 1.0442919418096608e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.145917583045275e-08, + 1.5919049412005393e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 479552, + "componentType": 5126, + "count": 45, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 971832, + "componentType": 5126, + "count": 45, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999996423721313 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 479732, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 972372, + "componentType": 5126, + "count": 49, + "max": [ + 5.960465898624534e-08, + 0.2824999690055847, + 4.8099238370014064e-08 + ], + "min": [ + -5.960465898624534e-08, + 0.2824997305870056, + -4.0648657773090235e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 479928, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 622432, + "componentType": 5126, + "count": 49, + "max": [ + -7.509538590966258e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.278822416381445e-07 + ], + "min": [ + -8.941866269651655e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.222417828714242e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 480124, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 972960, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 480316, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 973536, + "componentType": 5126, + "count": 48, + "max": [ + -0.2241942435503006, + 0.5460788011550903, + -0.6843864917755127 + ], + "min": [ + -0.33675435185432434, + 0.5460788011550903, + -0.7433466911315918 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 480508, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 974112, + "componentType": 5126, + "count": 48, + "max": [ + -0.1696099042892456, + -0.5293871760368347, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.35142263770103455 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 480700, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 623216, + "componentType": 5126, + "count": 48, + "max": [ + -0.9242141842842102, + -0.12328636646270752, + 0.026144007220864296, + 0.36047905683517456 + ], + "min": [ + -0.98414546251297, + -0.17863965034484863, + 5.434504828372155e-07, + 9.866893435628299e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 480892, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 974688, + "componentType": 5126, + "count": 31, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 481016, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 975060, + "componentType": 5126, + "count": 49, + "max": [ + -8.791685104370117e-07, + 3.5149583709426224e-05, + -1.412353185514803e-06 + ], + "min": [ + -3.184378147125244e-05, + -7.179227395681664e-06, + -8.65061447257176e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 481212, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 623984, + "componentType": 5126, + "count": 49, + "max": [ + -0.9503704309463501, + 1.1071687566754917e-08, + 2.4201757042874306e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.434841401248832e-08, + 1.0885564671880843e-09, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 481408, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 975648, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 481600, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 976224, + "componentType": 5126, + "count": 49, + "max": [ + 1.1920928955078125e-07, + 0.28249990940093994, + 3.1385944510020636e-08 + ], + "min": [ + -5.96046660916727e-08, + 0.2824997901916504, + -4.6122359265154955e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 481796, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 624768, + "componentType": 5126, + "count": 49, + "max": [ + -8.809509211005206e-08, + -0.9096052050590515, + 0.4111579656600952, + 0.03331424295902252 + ], + "min": [ + -0.0495755672454834, + -0.9818702340126038, + 0.1895543485879898, + 4.172042338268511e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 481992, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 976812, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 482188, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 977400, + "componentType": 5126, + "count": 41, + "max": [ + 0.03092028573155403, + -0.08483370393514633, + -1.3701404333114624 + ], + "min": [ + 0.030920160934329033, + -0.15684621036052704, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 482352, + "componentType": 5126, + "count": 32, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 625552, + "componentType": 5126, + "count": 32, + "max": [ + -0.03552567958831787, + 0.014163298532366753, + 0.22757799923419952, + 0.9730502963066101 + ], + "min": [ + -0.04938633367419243, + 0.010921822860836983, + 0.22739924490451813, + 0.9724453687667847 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 482480, + "componentType": 5126, + "count": 30, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 977892, + "componentType": 5126, + "count": 30, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 482600, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 978252, + "componentType": 5126, + "count": 41, + "max": [ + 1.1175870895385742e-08, + 0.002127397805452347, + 2.384185791015625e-07 + ], + "min": [ + -1.1175973924082427e-08, + 0.002127375453710556, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 482764, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 626064, + "componentType": 5126, + "count": 34, + "max": [ + 0.7071067690849304, + 3.161443373755901e-07, + -2.950708903881605e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.0025694286450744e-07, + -3.129339347651694e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 482900, + "componentType": 5126, + "count": 37, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 978744, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 483048, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 979188, + "componentType": 5126, + "count": 41, + "max": [ + 0.17381833493709564, + 0.13409888744354248, + 3.1459642002573673e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409769535064697, + -3.1146487611266593e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 483212, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 626608, + "componentType": 5126, + "count": 41, + "max": [ + -0.1274169683456421, + 0.006195784080773592, + -0.20721040666103363, + 0.969607412815094 + ], + "min": [ + -0.23471350967884064, + -0.0046232822351157665, + -0.22390320897102356, + 0.9461055994033813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 483376, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 979680, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 483540, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 980172, + "componentType": 5126, + "count": 41, + "max": [ + 3.120402425338398e-08, + 0.6356115341186523, + 5.7008627152299596e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.6356114149093628, + -8.508488491543176e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 483704, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 627264, + "componentType": 5126, + "count": 41, + "max": [ + 0.34415191411972046, + 2.190409986724262e-08, + -2.427667844528969e-08, + 0.9910569190979004 + ], + "min": [ + 0.13344016671180725, + -3.0073056933588305e-08, + -5.712276163194474e-08, + 0.9389140009880066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 483868, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 980664, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999994039535522, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 484032, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 981156, + "componentType": 5126, + "count": 41, + "max": [ + -0.17381834983825684, + 0.13409864902496338, + 4.7957779969465264e-08 + ], + "min": [ + -0.1738184094429016, + 0.13409793376922607, + 1.1360522522707583e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 484196, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 627920, + "componentType": 5126, + "count": 41, + "max": [ + 0.0693177655339241, + -0.23742727935314178, + 0.21133063733577728, + 0.9477464556694031 + ], + "min": [ + -0.049588557332754135, + -0.2599553167819977, + 0.19608351588249207, + 0.9441481828689575 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 484360, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 981648, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 484524, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 982140, + "componentType": 5126, + "count": 41, + "max": [ + 1.4033184925210662e-07, + 0.6356115341186523, + 3.378714197310728e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.635611355304718, + -3.46941746443008e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 484688, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 628576, + "componentType": 5126, + "count": 41, + "max": [ + 0.40693265199661255, + 1.812661309941177e-08, + 3.3025332868419355e-07, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + 6.735524915590929e-10, + 1.1230795848859998e-07, + 0.9134581685066223 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 484852, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 982632, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 485016, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 983124, + "componentType": 5126, + "count": 41, + "max": [ + 7.450583261459087e-09, + 0.0021274022292345762, + 1.1922159615096461e-07 + ], + "min": [ + -1.1175973924082427e-08, + 0.002127373358234763, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 485180, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 629232, + "componentType": 5126, + "count": 41, + "max": [ + -0.6495170593261719, + -0.06151116266846657, + 0.09325075894594193, + 0.7514832615852356 + ], + "min": [ + -0.713559627532959, + -0.1021478995680809, + 0.054463934153318405, + 0.6916308999061584 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 485344, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 983616, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.999999463558197, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 485508, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 984108, + "componentType": 5126, + "count": 41, + "max": [ + 2.2351741790771484e-08, + 0.2726660966873169, + 1.89757436430682e-08 + ], + "min": [ + -3.725290653733282e-08, + 0.27266550064086914, + -3.864997921709801e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 485672, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 629888, + "componentType": 5126, + "count": 41, + "max": [ + 0.08500942587852478, + 0.06506543606519699, + 0.0743708536028862, + 0.9956372380256653 + ], + "min": [ + 0.015757646411657333, + 0.05683112144470215, + 0.02510380744934082, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 485836, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 984600, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 486000, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 985092, + "componentType": 5126, + "count": 41, + "max": [ + 0.044816210865974426, + 0.5170735716819763, + 0.010738103650510311 + ], + "min": [ + 0.04481606185436249, + 0.517072856426239, + 0.010737924836575985 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 486164, + "componentType": 5126, + "count": 38, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 630544, + "componentType": 5126, + "count": 38, + "max": [ + -0.4904356002807617, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356598854065, + -0.49043551087379456, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 486316, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 985584, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 486480, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 986076, + "componentType": 5126, + "count": 41, + "max": [ + 0.02354121208190918, + 0.2365134209394455, + -0.11545215547084808 + ], + "min": [ + 0.023541033267974854, + 0.23651321232318878, + -0.11545310914516449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 486644, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 631152, + "componentType": 5126, + "count": 41, + "max": [ + -0.705502986907959, + -0.017260458320379257, + -0.403313010931015, + 0.5823848247528076 + ], + "min": [ + -0.7082033157348633, + -0.020786812528967857, + -0.40416574478149414, + 0.5786192417144775 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 486808, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 986568, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 486972, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 987060, + "componentType": 5126, + "count": 41, + "max": [ + 1.3529195541650552e-07, + 0.4048615097999573, + 2.3831337614410586e-07 + ], + "min": [ + -1.3373013985074067e-07, + 0.40486112236976624, + 1.745520137319545e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 487136, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 631808, + "componentType": 5126, + "count": 41, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.2353183478116989, + 0.8374709486961365 + ], + "min": [ + -0.16131697595119476, + 0.3911164104938507, + -0.4256897568702698, + 0.8076703548431396 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 487300, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 987552, + "componentType": 5126, + "count": 40, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 487460, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 988032, + "componentType": 5126, + "count": 41, + "max": [ + 1.8766527887237316e-07, + 0.4032706022262573, + 6.966666887819883e-08 + ], + "min": [ + -2.34216841477064e-07, + 0.4032703638076782, + -1.7011416275636293e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 487624, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 632464, + "componentType": 5126, + "count": 41, + "max": [ + -0.11016558855772018, + 0.39465612173080444, + 0.12396232038736343, + 0.9037386775016785 + ], + "min": [ + -0.1101657971739769, + 0.3946560323238373, + 0.12396220117807388, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 487788, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 988524, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 487952, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 989016, + "componentType": 5126, + "count": 41, + "max": [ + 0.09804268926382065, + 0.21963083744049072, + -0.0024725589901208878 + ], + "min": [ + 0.09804247319698334, + 0.21963028609752655, + -0.002472922671586275 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 488116, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 633120, + "componentType": 5126, + "count": 41, + "max": [ + -0.07486837357282639, + 0.04316416382789612, + 0.05985839292407036, + 0.9944589734077454 + ], + "min": [ + -0.6223368048667908, + -0.000981688965111971, + 0.033664193004369736, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 488280, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 989508, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 488444, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 990000, + "componentType": 5126, + "count": 41, + "max": [ + 7.18210770855876e-08, + 0.09750291705131531, + 4.811428198081558e-07 + ], + "min": [ + -7.363615139865942e-08, + 0.0975024402141571, + 2.342970333302219e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 488608, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 633776, + "componentType": 5126, + "count": 41, + "max": [ + 0.0374150350689888, + 0.002465923083946109, + -0.011429758742451668, + 0.9998781681060791 + ], + "min": [ + -0.5302280187606812, + -0.006611217744648457, + -0.053395941853523254, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 488772, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 990492, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 488936, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 990984, + "componentType": 5126, + "count": 41, + "max": [ + -0.01622668467462063, + 0.21308644115924835, + -0.003559228964149952 + ], + "min": [ + -0.016226939857006073, + 0.21308587491512299, + -0.0035597290843725204 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 489100, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 634432, + "componentType": 5126, + "count": 41, + "max": [ + -0.21145860850811005, + -0.029796015471220016, + 0.09881336987018585, + 0.9719225168228149 + ], + "min": [ + -0.626492977142334, + -0.07110272347927094, + 0.07480833679437637, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 489264, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 991476, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 489428, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 991968, + "componentType": 5126, + "count": 41, + "max": [ + 5.3510945008383715e-08, + 0.0846501961350441, + -1.4855034180527582e-07 + ], + "min": [ + -6.84886529711548e-08, + 0.08464983850717545, + -4.1955641449931136e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 489592, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 635088, + "componentType": 5126, + "count": 41, + "max": [ + -0.05822712182998657, + -0.0011796640465036035, + -0.006829490419477224, + 0.9982686042785645 + ], + "min": [ + -0.5015432834625244, + -0.004765853751450777, + -0.008244022727012634, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 489756, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 992460, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 489920, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 992952, + "componentType": 5126, + "count": 41, + "max": [ + 0.11189686506986618, + 0.10988953709602356, + -0.05163118615746498 + ], + "min": [ + 0.11189647018909454, + 0.10988908261060715, + -0.05163154751062393 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 490084, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 635744, + "componentType": 5126, + "count": 41, + "max": [ + -0.20384040474891663, + 0.16493292152881622, + -0.31590893864631653, + 0.9009950757026672 + ], + "min": [ + -0.4573034942150116, + 0.048187751322984695, + -0.37991443276405334, + 0.81478351354599 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 490248, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 993444, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 490412, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 993936, + "componentType": 5126, + "count": 41, + "max": [ + 9.930570854521648e-08, + 0.08512423187494278, + 1.264954505586502e-07 + ], + "min": [ + -2.0075222550985927e-07, + 0.08512387424707413, + -1.1661442300692215e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 490576, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 636400, + "componentType": 5126, + "count": 41, + "max": [ + 0.022910531610250473, + 0.024982618167996407, + 0.6957963705062866, + 0.9993889927864075 + ], + "min": [ + 0.008094334043562412, + 0.012835758738219738, + 0.02306518889963627, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 490740, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 994428, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 490904, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 994920, + "componentType": 5126, + "count": 41, + "max": [ + 0.005584976635873318, + 0.16604477167129517, + -0.04539324715733528 + ], + "min": [ + 0.005584717262536287, + 0.16604426503181458, + -0.04539383575320244 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 491068, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 637056, + "componentType": 5126, + "count": 41, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188210606575, + 0.023865394294261932 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 491232, + "componentType": 5126, + "count": 39, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 995412, + "componentType": 5126, + "count": 39, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 491388, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 995880, + "componentType": 5126, + "count": 41, + "max": [ + 8.94069742685133e-08, + 0.5450075268745422, + 4.493979588460206e-08 + ], + "min": [ + -5.960465188081798e-08, + 0.545007050037384, + -6.514977002325395e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 491552, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 637712, + "componentType": 5126, + "count": 41, + "max": [ + -0.007215114776045084, + 0.13072361052036285, + 0.011186150833964348, + 0.9966060519218445 + ], + "min": [ + -0.07046627998352051, + 0.04403475299477577, + -0.04222821071743965, + 0.9904928803443909 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 491716, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 996372, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 491880, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 996864, + "componentType": 5126, + "count": 41, + "max": [ + 8.94069742685133e-08, + 0.11002874374389648, + 5.774199252073231e-08 + ], + "min": [ + -5.960465898624534e-08, + 0.11002779006958008, + -9.126961941774425e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 492044, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 638368, + "componentType": 5126, + "count": 41, + "max": [ + -0.025982949882745743, + 0.12989991903305054, + 0.010347217321395874, + 0.995344340801239 + ], + "min": [ + -0.08933615684509277, + 0.044238705188035965, + -0.04469774663448334, + 0.9901782870292664 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 492208, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 997356, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 492372, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 997848, + "componentType": 5126, + "count": 41, + "max": [ + 3.219995505787665e-07, + 0.3614470958709717, + 0.0268414244055748 + ], + "min": [ + 1.4318563046344934e-07, + 0.36144542694091797, + 0.02684100717306137 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 492536, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 639024, + "componentType": 5126, + "count": 41, + "max": [ + 2.2351741790771484e-08, + 7.916300504007268e-09, + 7.450580596923828e-09, + 1.0 + ], + "min": [ + -3.9968071238153e-15, + -1.5832419819616916e-08, + -1.1175872671742582e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 492700, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 998340, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 492864, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 998832, + "componentType": 5126, + "count": 41, + "max": [ + 2.6911851591648883e-07, + -0.1583399921655655, + -0.2537645697593689 + ], + "min": [ + 1.201068329237387e-07, + -0.1583409458398819, + -0.2537650167942047 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 493028, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 639680, + "componentType": 5126, + "count": 41, + "max": [ + -0.998119592666626, + 2.8047044686729805e-09, + -2.0681815726675268e-07, + 0.0612967349588871 + ], + "min": [ + -0.998119592666626, + -1.1554660339641032e-08, + -2.3656443204345123e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 493192, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 999324, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 0.9999719858169556 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 493356, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 999816, + "componentType": 5126, + "count": 41, + "max": [ + 5.2154071283894154e-08, + 0.2539476752281189, + 1.7996848100665375e-07 + ], + "min": [ + -5.960467319710006e-08, + 0.2539469599723816, + -1.2878372501745616e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 493520, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 640336, + "componentType": 5126, + "count": 41, + "max": [ + 0.15613587200641632, + -1.1139563582673873e-07, + 8.126275652386994e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.424489681767227e-07, + -1.5922317686545284e-08, + 0.9877356290817261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 493684, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1000308, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000005960464478, + 1.000001072883606, + 1.0000008344650269 + ], + "min": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 493848, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1000800, + "componentType": 5126, + "count": 41, + "max": [ + 2.9802322387695313e-08, + 0.2533194422721863, + 9.52620169414331e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.25331905484199524, + -1.3909300378145417e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 494012, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 640992, + "componentType": 5126, + "count": 41, + "max": [ + -0.09231439232826233, + 1.0611582793029761e-11, + 4.659883590107938e-09, + 0.995729923248291 + ], + "min": [ + -0.09231442213058472, + -3.007981774771906e-08, + -1.7600923385430178e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 494176, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1001292, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 0.9999999403953552, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 494340, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1001784, + "componentType": 5126, + "count": 41, + "max": [ + 5.960464477539063e-08, + 0.2637789249420166, + 1.3799797216051957e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.2637784481048584, + -6.522540019204826e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 494504, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 641648, + "componentType": 5126, + "count": 41, + "max": [ + 1.572859353871081e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.0373045000733327e-07 + ], + "min": [ + -4.789336038868441e-09, + -0.9896631240844727, + 0.14341172575950623, + 8.030063014530242e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 494668, + "componentType": 5126, + "count": 38, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1002276, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000008344650269, + 1.0000009536743164, + 1.0000008344650269 + ], + "min": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 494820, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1002732, + "componentType": 5126, + "count": 41, + "max": [ + -2.4060969394668064e-07, + 0.24314217269420624, + 0.18703164160251617 + ], + "min": [ + -7.81390042448038e-07, + 0.24314117431640625, + 0.1870308816432953 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 494984, + "componentType": 5126, + "count": 38, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 642304, + "componentType": 5126, + "count": 38, + "max": [ + 0.44783374667167664, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 495136, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1003224, + "componentType": 5126, + "count": 41, + "max": [ + 1.0, + 1.0000005960464478, + 1.0000001192092896 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 495300, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1003716, + "componentType": 5126, + "count": 41, + "max": [ + -0.24418963491916656, + -0.1304626613855362, + 0.02965049259364605 + ], + "min": [ + -0.24418993294239044, + -0.1304640769958496, + 0.02964998595416546 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 495464, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 642912, + "componentType": 5126, + "count": 41, + "max": [ + 0.007415774278342724, + -0.0742839127779007, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415732368826866, + -0.07428395748138428, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 495628, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1004208, + "componentType": 5126, + "count": 40, + "max": [ + 0.9999980926513672, + 1.0000007152557373, + 0.9999989867210388 + ], + "min": [ + 0.9999974370002747, + 1.0000003576278687, + 0.9999986290931702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 495788, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1004688, + "componentType": 5126, + "count": 41, + "max": [ + 0.24341870844364166, + -0.1304633915424347, + 0.02965005300939083 + ], + "min": [ + 0.24341844022274017, + -0.1304648071527481, + 0.029649510979652405 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 495952, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 643568, + "componentType": 5126, + "count": 41, + "max": [ + 0.0074174292385578156, + 0.07428371906280518, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417401298880577, + 0.0742836594581604, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 496116, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1005180, + "componentType": 5126, + "count": 41, + "max": [ + 0.9999975562095642, + 1.0000007152557373, + 0.9999988675117493 + ], + "min": [ + 0.999997079372406, + 1.0000003576278687, + 0.9999983906745911 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 496280, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1005672, + "componentType": 5126, + "count": 41, + "max": [ + -0.04481608420610428, + 0.5170735716819763, + 0.010738101787865162 + ], + "min": [ + -0.04481623321771622, + 0.5170723795890808, + 0.010737909935414791 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 496444, + "componentType": 5126, + "count": 34, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 644224, + "componentType": 5126, + "count": 34, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555118680000305 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 496580, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1006164, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 496744, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1006656, + "componentType": 5126, + "count": 41, + "max": [ + 0.017870448529720306, + 0.2325083613395691, + -0.03527333214879036 + ], + "min": [ + 0.017870314419269562, + 0.23250819742679596, + -0.035274047404527664 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 496908, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 644768, + "componentType": 5126, + "count": 41, + "max": [ + -0.31139683723449707, + 0.5143935084342957, + -0.32813236117362976, + 0.7463420629501343 + ], + "min": [ + -0.5603393912315369, + 0.42022567987442017, + -0.4116016924381256, + 0.5601324439048767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 497072, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1007148, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 497236, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1007640, + "componentType": 5126, + "count": 41, + "max": [ + 1.0074909084778483e-07, + 0.4048615097999573, + 2.6532754304753325e-07 + ], + "min": [ + -1.191502576602943e-07, + 0.4048611521720886, + 1.4322277763767488e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 497400, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 645424, + "componentType": 5126, + "count": 41, + "max": [ + -0.07451161742210388, + 0.499183714389801, + -0.05700935795903206, + 0.8614022135734558 + ], + "min": [ + -0.07451163977384567, + 0.4991835653781891, + -0.057009417563676834, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 497564, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1008132, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 497728, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1008624, + "componentType": 5126, + "count": 41, + "max": [ + 1.862188838686052e-07, + 0.4032706022262573, + -1.1182089032502063e-08 + ], + "min": [ + -7.521595790649371e-08, + 0.40327024459838867, + -9.101361087004989e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 497892, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 646080, + "componentType": 5126, + "count": 41, + "max": [ + 0.023212529718875885, + 0.004205373115837574, + -0.02357206679880619, + 0.999443769454956 + ], + "min": [ + 0.02321252040565014, + 0.0042053391225636005, + -0.02357208915054798, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 498056, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1009116, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 498220, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1009608, + "componentType": 5126, + "count": 41, + "max": [ + -0.09804236888885498, + 0.21963085234165192, + -0.0024726265110075474 + ], + "min": [ + -0.09804273396730423, + 0.2196303755044937, + -0.0024727548006922007 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 498384, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 646736, + "componentType": 5126, + "count": 41, + "max": [ + -0.5146673321723938, + 0.04997493699193001, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974869936704636, + -0.08315928280353546, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 498548, + "componentType": 5126, + "count": 38, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1010100, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 498700, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1010556, + "componentType": 5126, + "count": 41, + "max": [ + 4.702564737613102e-08, + 0.0975026860833168, + 4.83007397633628e-07 + ], + "min": [ + -7.682796621111265e-08, + 0.09750253707170486, + 2.3988496877791476e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 498864, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 647392, + "componentType": 5126, + "count": 41, + "max": [ + -0.4217608869075775, + 0.06273210793733597, + 0.009731857106089592, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.06273201107978821, + 0.009731759317219257, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 499028, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1011048, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 499192, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1011540, + "componentType": 5126, + "count": 41, + "max": [ + 0.016226904466748238, + 0.21308636665344238, + -0.0035593854263424873 + ], + "min": [ + 0.016226734966039658, + 0.21308588981628418, + -0.003559582633897662 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 499356, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 648048, + "componentType": 5126, + "count": 41, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430819392204285, + 0.06296970695257187, + -0.08177223801612854, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 499520, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1012032, + "componentType": 5126, + "count": 41, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 499684, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1012524, + "componentType": 5126, + "count": 41, + "max": [ + 7.111353284017241e-08, + 0.08465000987052917, + -1.3090095762890996e-07 + ], + "min": [ + -7.855998518380147e-08, + 0.08464987576007843, + -3.7526811524912773e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 499848, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 648704, + "componentType": 5126, + "count": 41, + "max": [ + -0.40921810269355774, + 0.0020274592097848654, + 0.008077425882220268, + 0.912398636341095 + ], + "min": [ + -0.40921831130981445, + 0.00202742638066411, + 0.008077395148575306, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 500012, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1013016, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 500176, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1013508, + "componentType": 5126, + "count": 41, + "max": [ + -0.11189655214548111, + 0.10988949984312057, + -0.05163125693798065 + ], + "min": [ + -0.1118968054652214, + 0.10988909751176834, + -0.05163146182894707 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 500340, + "componentType": 5126, + "count": 37, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 649360, + "componentType": 5126, + "count": 37, + "max": [ + -0.43224573135375977, + -0.12903624773025513, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363222360611, + 0.15030036866664886, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 500488, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1014000, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 500652, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1014492, + "componentType": 5126, + "count": 41, + "max": [ + 8.70427214749725e-08, + 0.08512397855520248, + 1.110777816393238e-07 + ], + "min": [ + -1.5409794684728695e-07, + 0.08512374013662338, + -1.264954505586502e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 500816, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 649952, + "componentType": 5126, + "count": 41, + "max": [ + 0.1481143981218338, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219802051782608, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 500980, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1014984, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 501144, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1015476, + "componentType": 5126, + "count": 41, + "max": [ + -0.005584766622632742, + 0.16604489088058472, + -0.04539341479539871 + ], + "min": [ + -0.0055849794298410416, + 0.1660442054271698, + -0.045393552631139755 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 501308, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 650608, + "componentType": 5126, + "count": 41, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350191190838814, + 0.023865394294261932 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501893281936646, + 0.02386537194252014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 501472, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1015968, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 501636, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1016460, + "componentType": 5126, + "count": 41, + "max": [ + 0.13640330731868744, + 0.2850474715232849, + 0.0019399170996621251 + ], + "min": [ + 0.13640320301055908, + 0.28504711389541626, + 0.0019396193092688918 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 501800, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 651264, + "componentType": 5126, + "count": 41, + "max": [ + -5.010126358229172e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.4717132046371262e-07 + ], + "min": [ + -9.523245125819813e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1532130628211235e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 501964, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1016952, + "componentType": 5126, + "count": 41, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 502128, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1017444, + "componentType": 5126, + "count": 41, + "max": [ + -0.13640320301055908, + 0.2850474715232849, + 0.001939862733706832 + ], + "min": [ + -0.13640327751636505, + 0.2850469946861267, + 0.0019396885763853788 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 502292, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 651920, + "componentType": 5126, + "count": 41, + "max": [ + -5.579396855637242e-08, + -0.6935806274414063, + -0.7203789949417114, + 6.813013442297233e-08 + ], + "min": [ + -9.644021048416107e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.82748588378945e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 502456, + "componentType": 5126, + "count": 40, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1017936, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 502616, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1018416, + "componentType": 5126, + "count": 41, + "max": [ + 2.0548701286315918e-05, + 4.6545075349513354e-08, + 5.167759127289173e-07 + ], + "min": [ + 4.470348358154297e-08, + -1.1839450962725095e-05, + -4.319710933486931e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 502780, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1018908, + "componentType": 5126, + "count": 41, + "max": [ + 5.960465898624534e-08, + 0.28249990940093994, + 3.974255591288056e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.282499760389328, + -3.2292117424503886e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 502944, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1019400, + "componentType": 5126, + "count": 41, + "max": [ + -8.791685104370117e-07, + 6.800428764108801e-06, + -1.4795447214055457e-06 + ], + "min": [ + -1.500546932220459e-05, + 4.102334116851125e-07, + -2.5998568162322044e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 503108, + "componentType": 5126, + "count": 41, + "max": [ + 0.6666666865348816 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1019892, + "componentType": 5126, + "count": 41, + "max": [ + 5.960464477539063e-08, + 0.28249990940093994, + 2.0365568786928634e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.2824998199939728, + -1.8461587814044833e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 503272, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1020384, + "componentType": 5126, + "count": 81, + "max": [ + 0.030920522287487984, + 0.1129903644323349, + -1.124607801437378 + ], + "min": [ + 0.030920440331101418, + 0.041436973959207535, + -1.197739601135254 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 503596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 652576, + "componentType": 5126, + "count": 81, + "max": [ + 0.06460899114608765, + 0.040492504835128784, + 0.22763000428676605, + 0.9723089337348938 + ], + "min": [ + 0.05291430652141571, + -0.0097733736038208, + 0.22459077835083008, + 0.9714654088020325 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 503920, + "componentType": 5126, + "count": 56, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1021356, + "componentType": 5126, + "count": 56, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 504144, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1022028, + "componentType": 5126, + "count": 79, + "max": [ + 1.4901161193847656e-08, + 0.002127416431903839, + 1.1920930376163597e-07 + ], + "min": [ + -1.490126422254434e-08, + 0.0021273791790008545, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 504460, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 653872, + "componentType": 5126, + "count": 81, + "max": [ + 0.7071067690849304, + 3.186138712862885e-07, + -2.9449466865116847e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.946593156138988e-07, + -3.1556808721688867e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 504784, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1022976, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 505108, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1023948, + "componentType": 5126, + "count": 81, + "max": [ + 0.17381837964057922, + 0.13409876823425293, + 2.7208939101797114e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409793376922607, + -2.813552590907875e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 505432, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 655168, + "componentType": 5126, + "count": 81, + "max": [ + -0.43372073769569397, + -0.0064776502549648285, + -0.25504985451698303, + 0.851436972618103 + ], + "min": [ + -0.46650782227516174, + -0.026897922158241272, + -0.2947872281074524, + 0.8465202450752258 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 505756, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1024920, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.999999463558197, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 506080, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1025892, + "componentType": 5126, + "count": 81, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 6.46690949679396e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.6356114149093628, + -1.1855949821892864e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 506404, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 656464, + "componentType": 5126, + "count": 81, + "max": [ + 0.703140377998352, + 2.194115822362619e-08, + -2.1626979318511985e-08, + 0.7720679640769958 + ], + "min": [ + 0.6355400085449219, + -3.232966960808881e-08, + -4.347238871105219e-07, + 0.7110510468482971 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 506728, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1026864, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 1.0000007152557373, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 507052, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1027836, + "componentType": 5126, + "count": 81, + "max": [ + -0.17381832003593445, + 0.13409876823425293, + 4.423308297418771e-08 + ], + "min": [ + -0.17381836473941803, + 0.13409793376922607, + 4.8607513569720595e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 507376, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 657760, + "componentType": 5126, + "count": 81, + "max": [ + -0.12867046892642975, + -0.17353762686252594, + 0.31524431705474854, + 0.9431146383285522 + ], + "min": [ + -0.12984861433506012, + -0.21046915650367737, + 0.22227834165096283, + 0.9240939617156982 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 507700, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1028808, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999992251396179, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 508024, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1029780, + "componentType": 5126, + "count": 81, + "max": [ + 1.4033184925210662e-07, + 0.6356115341186523, + 1.1553858314528043e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.6356114149093628, + -1.0928797422593561e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 508348, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 659056, + "componentType": 5126, + "count": 81, + "max": [ + 0.5496968626976013, + 8.479995372567828e-09, + 4.875743684351619e-07, + 0.8550955653190613 + ], + "min": [ + 0.5184704065322876, + -3.853064711734078e-08, + 2.6062588176500867e-07, + 0.8353642225265503 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 508672, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1030752, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 0.9999993443489075, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 508996, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1031724, + "componentType": 5126, + "count": 79, + "max": [ + 1.4901162970204496e-08, + 0.002127401763573289, + 1.1922161036181933e-07 + ], + "min": [ + -1.4901162970204496e-08, + 0.0021273717284202576, + -2.3841823804104934e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 509312, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 660352, + "componentType": 5126, + "count": 81, + "max": [ + -0.609999418258667, + -0.090971440076828, + 0.057798080146312714, + 0.7850378155708313 + ], + "min": [ + -0.6495169997215271, + -0.10214792937040329, + 0.054463937878608704, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 509636, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1032672, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 509960, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1033644, + "componentType": 5126, + "count": 81, + "max": [ + 2.9802322387695313e-08, + 0.2726660966873169, + 5.501552990949676e-08 + ], + "min": [ + -3.725290298461914e-08, + 0.2726656198501587, + -4.490699012649202e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 510284, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 661648, + "componentType": 5126, + "count": 81, + "max": [ + 0.19915570318698883, + 0.0421702042222023, + -0.057493552565574646, + 0.9783742427825928 + ], + "min": [ + 0.19291508197784424, + 0.036329902708530426, + -0.06517522037029266, + 0.97737056016922 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 510608, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1034616, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 510932, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1035588, + "componentType": 5126, + "count": 81, + "max": [ + 0.04481622576713562, + 0.5170734524726868, + 0.010738222859799862 + ], + "min": [ + 0.044816069304943085, + 0.517072856426239, + 0.010737686417996883 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 511256, + "componentType": 5126, + "count": 75, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 662944, + "componentType": 5126, + "count": 75, + "max": [ + -0.4904356002807617, + -0.49043548107147217, + -0.5093847513198853, + 0.5093849301338196 + ], + "min": [ + -0.49043571949005127, + -0.49043557047843933, + -0.5093848705291748, + 0.5093848705291748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 511556, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1036560, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 511880, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1037532, + "componentType": 5126, + "count": 81, + "max": [ + 0.03138475865125656, + 0.23807275295257568, + -0.07165947556495667 + ], + "min": [ + 0.010328163392841816, + 0.23756587505340576, + -0.08800972253084183 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 512204, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 664144, + "componentType": 5126, + "count": 81, + "max": [ + -0.6049334406852722, + -0.08034234493970871, + -0.47086670994758606, + 0.6370911598205566 + ], + "min": [ + -0.6135216951370239, + -0.08881843835115433, + -0.5086541175842285, + 0.5974725484848022 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 512528, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1038504, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 512852, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1039476, + "componentType": 5126, + "count": 81, + "max": [ + 1.361293442414535e-07, + 0.4048615097999573, + 2.635885891777434e-07 + ], + "min": [ + -9.065218620207816e-08, + 0.40486103296279907, + 1.4910301615600474e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 513176, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 665440, + "componentType": 5126, + "count": 81, + "max": [ + 0.07776041328907013, + 0.5269917845726013, + -0.23531828820705414, + 0.8129320740699768 + ], + "min": [ + 0.07776033133268356, + 0.5269915461540222, + -0.2353184074163437, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 513500, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1040448, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 513824, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1041420, + "componentType": 5126, + "count": 81, + "max": [ + 1.7556399711793347e-07, + 0.4032706022262573, + 7.59642588832321e-08 + ], + "min": [ + -1.235718656289464e-07, + 0.4032703936100006, + -1.7583634814855031e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 514148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 666736, + "componentType": 5126, + "count": 81, + "max": [ + -0.11016572266817093, + 0.39465612173080444, + 0.12396229803562164, + 0.9037386178970337 + ], + "min": [ + -0.1101658046245575, + 0.3946560323238373, + 0.12396221607923508, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 514472, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1042392, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 514796, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1043364, + "componentType": 5126, + "count": 81, + "max": [ + 0.09804266691207886, + 0.21963071823120117, + -0.0024725673720240593 + ], + "min": [ + 0.09804244339466095, + 0.2196304351091385, + -0.002472855383530259 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 515120, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 668032, + "componentType": 5126, + "count": 81, + "max": [ + -0.6223366260528564, + -0.0009816709207370877, + 0.03366418555378914, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817067766562104, + 0.03366415202617645, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 515444, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1044336, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 515768, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1045308, + "componentType": 5126, + "count": 81, + "max": [ + 7.714896810284699e-08, + 0.09750284999608994, + 4.5161067419030587e-07 + ], + "min": [ + -4.4682700206521986e-08, + 0.09750255942344666, + 2.543574169067142e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 516092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 669328, + "componentType": 5126, + "count": 81, + "max": [ + -0.5302280187606812, + 0.002465931000187993, + -0.053395941853523254, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.00246590469032526, + -0.05339598283171654, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 516416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1046280, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 516740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1047252, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226662322878838, + 0.21308627724647522, + -0.0035593477077782154 + ], + "min": [ + -0.01622689515352249, + 0.21308590471744537, + -0.0035596205852925777 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 517064, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 670624, + "componentType": 5126, + "count": 81, + "max": [ + -0.626492977142334, + -0.07110269367694855, + 0.07480833679437637, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110274583101273, + 0.07480829209089279, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 517388, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1048224, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 517712, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1049196, + "componentType": 5126, + "count": 81, + "max": [ + 5.327889951445286e-08, + 0.08465008437633514, + -1.7898200610488857e-07 + ], + "min": [ + -6.772953042855079e-08, + 0.08464977890253067, + -3.633234939570684e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 518036, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 671920, + "componentType": 5126, + "count": 81, + "max": [ + -0.5015431642532349, + -0.001179656945168972, + -0.008244001306593418, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011796915205195546, + -0.008244039490818977, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 518360, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1050168, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 518684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1051140, + "componentType": 5126, + "count": 81, + "max": [ + 0.11189685761928558, + 0.10988951474428177, + -0.05163123086094856 + ], + "min": [ + 0.11189647763967514, + 0.10988912731409073, + -0.05163144692778587 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 519008, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 673216, + "componentType": 5126, + "count": 79, + "max": [ + -0.4573034942150116, + 0.16493293642997742, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 519324, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1052112, + "componentType": 5126, + "count": 79, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 519640, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1053060, + "componentType": 5126, + "count": 81, + "max": [ + 4.775869655304632e-08, + 0.08512411266565323, + 4.465210068360648e-08 + ], + "min": [ + -1.5021805666037835e-07, + 0.08512386679649353, + -2.4970214340669372e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 519964, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 674480, + "componentType": 5126, + "count": 81, + "max": [ + 0.022910568863153458, + 0.012835773639380932, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910524159669876, + 0.012835714034736156, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 520288, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1054032, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 520612, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1055004, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585064645856619, + 0.16604465246200562, + -0.04539330676198006 + ], + "min": [ + 0.005584761034697294, + 0.16604433953762054, + -0.045393601059913635 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 520936, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 675776, + "componentType": 5126, + "count": 80, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188210606575, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 521256, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1055976, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 521580, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1056948, + "componentType": 5126, + "count": 81, + "max": [ + 7.450579175838357e-08, + 0.5450075268745422, + 1.730975469627083e-07 + ], + "min": [ + -8.940696005765858e-08, + 0.545007050037384, + -1.8427343206894875e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 521904, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 677056, + "componentType": 5126, + "count": 81, + "max": [ + -0.02621649205684662, + 0.13330620527267456, + -0.01422650646418333, + 0.9911754131317139 + ], + "min": [ + -0.04639936238527298, + 0.12335345149040222, + -0.033685170114040375, + 0.9901552796363831 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 522228, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1057920, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 522552, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1058892, + "componentType": 5126, + "count": 81, + "max": [ + 6.332993507385254e-08, + 0.11002850532531738, + 1.7695128917694092e-07 + ], + "min": [ + -7.823108205684548e-08, + 0.11002802848815918, + -1.8067657947540283e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 522876, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 678352, + "componentType": 5126, + "count": 81, + "max": [ + -0.044974468648433685, + 0.1326439380645752, + -0.016561392694711685, + 0.9901182055473328 + ], + "min": [ + -0.06517310440540314, + 0.1230616644024849, + -0.03620517998933792, + 0.98948073387146 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 523200, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1059864, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 523524, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1060836, + "componentType": 5126, + "count": 81, + "max": [ + 2.921972281910712e-07, + 0.3614463806152344, + 0.0268414244055748 + ], + "min": [ + 2.0279027523883997e-07, + 0.36144518852233887, + 0.02684100717306137 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 523848, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 679648, + "componentType": 5126, + "count": 81, + "max": [ + 1.4901164746561335e-08, + 6.106226635438361e-14, + 7.450581485102248e-09, + 1.0 + ], + "min": [ + -2.9802322387695313e-08, + -7.450518424434449e-09, + -8.381903171539307e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 524172, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1061808, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0, + 1.0000005960464478 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 524496, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1062780, + "componentType": 5126, + "count": 81, + "max": [ + 2.393161935287935e-07, + -0.1583394855260849, + -0.2537645399570465 + ], + "min": [ + 1.350080509610052e-07, + -0.1583406925201416, + -0.25376519560813904 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 524820, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 680944, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + 6.637161042988282e-09, + -2.2134878463475616e-07, + 0.0612967349588871 + ], + "min": [ + -0.998119592666626, + -8.17889134197003e-09, + -2.3261780768280005e-07, + 0.06129668280482292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 525144, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1063752, + "componentType": 5126, + "count": 79, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 0.999971866607666 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999715685844421 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 525460, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1064700, + "componentType": 5126, + "count": 81, + "max": [ + 4.097821104664945e-08, + 0.25394752621650696, + 2.9336550255720795e-07 + ], + "min": [ + -7.450580596923828e-08, + 0.2539469003677368, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 525784, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 682240, + "componentType": 5126, + "count": 81, + "max": [ + 0.1561359167098999, + -1.2461919141060207e-07, + 3.1158262636665768e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.409814132102838e-07, + -1.4314846197294173e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 526108, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1065672, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000008344650269 + ], + "min": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000004768371582 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 526428, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1066632, + "componentType": 5126, + "count": 81, + "max": [ + 3.725290298461914e-08, + 0.2533194422721863, + 1.6100848654332367e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.2533189654350281, + -2.3435501361745992e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 526752, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 683536, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231434017419815, + -1.2979945118729574e-08, + 1.203916299985508e-09, + 0.995729923248291 + ], + "min": [ + -0.09231441468000412, + -2.311315050462781e-08, + -9.752286089792506e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 527076, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1067604, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 527400, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1068576, + "componentType": 5126, + "count": 81, + "max": [ + 3.725290298461914e-08, + 0.2637789249420166, + 2.077489682505984e-07 + ], + "min": [ + -3.725291364276018e-08, + 0.2637784481048584, + -8.853968580524452e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 527724, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 684832, + "componentType": 5126, + "count": 81, + "max": [ + 1.602220578433844e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.136096679185357e-08 + ], + "min": [ + 4.737128467269258e-10, + -0.9896631240844727, + 0.14341171085834503, + 8.38406108982781e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 528048, + "componentType": 5126, + "count": 75, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1069548, + "componentType": 5126, + "count": 75, + "max": [ + 1.0000004768371582, + 1.0000009536743164, + 1.0000008344650269 + ], + "min": [ + 1.0, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 528348, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1070448, + "componentType": 5126, + "count": 81, + "max": [ + -2.691874954052764e-07, + 0.24314209818840027, + 0.18703168630599976 + ], + "min": [ + -7.127553658392571e-07, + 0.24314096570014954, + 0.18703080713748932 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 528672, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 686128, + "componentType": 5126, + "count": 63, + "max": [ + 0.44783368706703186, + -0.23266471922397614, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 528924, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1071420, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999997019767761, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999992251396179, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 529248, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1072392, + "componentType": 5126, + "count": 81, + "max": [ + -0.24418959021568298, + -0.130462646484375, + 0.02965039573609829 + ], + "min": [ + -0.2441900670528412, + -0.13046404719352722, + 0.029649974778294563 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 529572, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 687136, + "componentType": 5126, + "count": 81, + "max": [ + 0.007415750063955784, + -0.0742838978767395, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415734231472015, + -0.07428394258022308, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 529896, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1073364, + "componentType": 5126, + "count": 79, + "max": [ + 0.9999982714653015, + 1.0000009536743164, + 0.9999992251396179 + ], + "min": [ + 0.9999978542327881, + 1.0000004768371582, + 0.9999987483024597 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 530212, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1074312, + "componentType": 5126, + "count": 81, + "max": [ + 0.2434186339378357, + -0.1304633915424347, + 0.029650036245584488 + ], + "min": [ + 0.243418350815773, + -0.13046479225158691, + 0.02964969165623188 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 530536, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 688432, + "componentType": 5126, + "count": 81, + "max": [ + 0.007417421322315931, + 0.07428369671106339, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417412009090185, + 0.0742836445569992, + 0.9923431277275085, + 0.09839750081300735 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 530860, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1075284, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999980926513672, + 1.0000011920928955, + 0.9999989867210388 + ], + "min": [ + 0.9999975562095642, + 1.0000007152557373, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 531184, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1076256, + "componentType": 5126, + "count": 81, + "max": [ + -0.044816069304943085, + 0.5170733332633972, + 0.010738399811089039 + ], + "min": [ + -0.04481620341539383, + 0.5170727372169495, + 0.010737689211964607 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 531508, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 689728, + "componentType": 5126, + "count": 79, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555121660232544 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.4455511271953583 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 531824, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1077228, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 532148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1078200, + "componentType": 5126, + "count": 81, + "max": [ + 0.029477134346961975, + 0.23811866343021393, + -0.06119425967335701 + ], + "min": [ + 0.010917495004832745, + 0.23553156852722168, + -0.08016272634267807 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 532472, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 690992, + "componentType": 5126, + "count": 81, + "max": [ + -0.6237750053405762, + 0.5806393027305603, + -0.2553022503852844, + 0.4585314393043518 + ], + "min": [ + -0.6499295830726624, + 0.5376007556915283, + -0.2798677086830139, + 0.4567094147205353 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 532796, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1079172, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 533120, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1080144, + "componentType": 5126, + "count": 81, + "max": [ + 1.1730941906762382e-07, + 0.4048615097999573, + 2.499823494872544e-07 + ], + "min": [ + -1.191502576602943e-07, + 0.40486103296279907, + 1.66809712709437e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 533444, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 692288, + "componentType": 5126, + "count": 81, + "max": [ + -0.07451160997152328, + 0.499183714389801, + -0.057009343057870865, + 0.8614022135734558 + ], + "min": [ + -0.07451163977384567, + 0.4991835653781891, + -0.05700940638780594, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 533768, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1081116, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 534092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1082088, + "componentType": 5126, + "count": 81, + "max": [ + 4.114572149660489e-08, + 0.4032707214355469, + 8.213234536924574e-09 + ], + "min": [ + -4.0878500584540234e-08, + 0.4032703638076782, + -1.1047561798704919e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 534416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 693584, + "componentType": 5126, + "count": 81, + "max": [ + 0.023212533444166183, + 0.004205379635095596, + -0.02357206679880619, + 0.999443769454956 + ], + "min": [ + 0.023212524130940437, + 0.0042053344659507275, + -0.023572098463773727, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 534740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1083060, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 535064, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1084032, + "componentType": 5126, + "count": 81, + "max": [ + -0.0980425477027893, + 0.21963080763816833, + -0.0024725706316530704 + ], + "min": [ + -0.09804263710975647, + 0.21963049471378326, + -0.002472864929586649 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 535388, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 694880, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673321723938, + 0.04997493326663971, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974869936704636, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 535712, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1085004, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 536036, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1085976, + "componentType": 5126, + "count": 81, + "max": [ + 3.0452721233587e-08, + 0.09750266373157501, + 4.267458280082792e-07 + ], + "min": [ + -5.942255754121106e-08, + 0.09750252962112427, + 2.995016643581039e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 536360, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 696176, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217608869075775, + 0.06273207068443298, + 0.009731845930218697, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.06273201107978821, + 0.009731810539960861, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 536684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1086948, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 537008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1087920, + "componentType": 5126, + "count": 81, + "max": [ + 0.016226885840296745, + 0.21308633685112, + -0.00355934607796371 + ], + "min": [ + 0.01622675731778145, + 0.21308597922325134, + -0.003559602191671729 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 537332, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 697472, + "componentType": 5126, + "count": 81, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296971440315247, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 537656, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1088892, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 537980, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1089864, + "componentType": 5126, + "count": 81, + "max": [ + 7.111353284017241e-08, + 0.08465004712343216, + -1.7878851110708638e-07 + ], + "min": [ + -4.833518474356424e-08, + 0.08464988321065903, + -3.715733782883035e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 538304, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 698768, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.002027456182986498, + 0.008077431470155716, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027420327067375, + 0.008077397011220455, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 538628, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1090836, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 538948, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1091796, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189652979373932, + 0.10988956689834595, + -0.05163116008043289 + ], + "min": [ + -0.11189679056406021, + 0.1098892018198967, + -0.05163152143359184 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 539272, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 700064, + "componentType": 5126, + "count": 81, + "max": [ + -0.4322457015514374, + -0.12903623282909393, + 0.1503005474805832, + 0.8797289729118347 + ], + "min": [ + -0.4322458803653717, + -0.1290363222360611, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 539596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1092768, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 539920, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1093740, + "componentType": 5126, + "count": 81, + "max": [ + 5.3799993793290923e-08, + 0.08512397110462189, + 1.1519401255100092e-07 + ], + "min": [ + -1.2845025310070923e-07, + 0.08512381464242935, + -1.2540579064079793e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 540244, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 701360, + "componentType": 5126, + "count": 81, + "max": [ + 0.1481143981218338, + -0.12198013067245483, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.1219801977276802, + -0.12739090621471405, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 540568, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1094712, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 540892, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1095684, + "componentType": 5126, + "count": 81, + "max": [ + -0.0055848220363259315, + 0.16604478657245636, + -0.04539341852068901 + ], + "min": [ + -0.005584965460002422, + 0.16604436933994293, + -0.045393604785203934 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 541216, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 702656, + "componentType": 5126, + "count": 81, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501915633678436, + 0.023865392431616783 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501893281936646, + 0.02386537566781044 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 541540, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1096656, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 541864, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1097628, + "componentType": 5126, + "count": 81, + "max": [ + 0.13640335202217102, + 0.28504759073257446, + 0.0019401003373786807 + ], + "min": [ + 0.1364031583070755, + 0.2850469946861267, + 0.0019394911359995604 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 542188, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 703952, + "componentType": 5126, + "count": 81, + "max": [ + -5.304324801613802e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.537306246746084e-07 + ], + "min": [ + -9.274849332996382e-08, + -0.693580687046051, + -0.7203789949417114, + 1.1536720023741509e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 542512, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1098600, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 542836, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1099572, + "componentType": 5126, + "count": 81, + "max": [ + -0.1364031583070755, + 0.2850474715232849, + 0.0019400919554755092 + ], + "min": [ + -0.13640330731868744, + 0.28504687547683716, + 0.0019395604031160474 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 543160, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 705248, + "componentType": 5126, + "count": 81, + "max": [ + -5.599214958351695e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.831584187239059e-08 + ], + "min": [ + -9.008056878201387e-08, + -0.693580687046051, + -0.7203789949417114, + 3.392793246348447e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 543484, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1100544, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 543808, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1101516, + "componentType": 5126, + "count": 81, + "max": [ + 5.0827860832214355e-05, + 5.523979780264199e-06, + -1.7833812307799235e-05 + ], + "min": [ + 9.819865226745605e-06, + -5.331588909029961e-06, + -9.113207488553599e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 544132, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1102488, + "componentType": 5126, + "count": 81, + "max": [ + 5.960464477539063e-08, + 0.28249993920326233, + 5.08360429307686e-08 + ], + "min": [ + -5.960465898624534e-08, + 0.2824997305870056, + -3.229202150123456e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 544456, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1103460, + "componentType": 5126, + "count": 81, + "max": [ + -2.358853816986084e-05, + 3.0410923500312492e-05, + -3.0560026061721146e-05 + ], + "min": [ + -3.7357211112976074e-05, + 1.670349229243584e-05, + -4.037024700664915e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 544780, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1104432, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920928955078125e-07, + 0.28249987959861755, + 1.759214995900038e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.2824998199939728, + -1.2914940228370142e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 545104, + "componentType": 5126, + "count": 52, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1105404, + "componentType": 5126, + "count": 52, + "max": [ + 0.0, + 0.0, + 12.945656776428223 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 545312, + "componentType": 5126, + "count": 8, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 706544, + "componentType": 5126, + "count": 8, + "max": [ + 0.7071067690849304, + 0.1763666570186615, + -3.90559847573968e-07, + 0.7071067690849304 + ], + "min": [ + 0.6847587823867798, + -3.90559847573968e-07, + -0.1763674020767212, + 0.6847589612007141 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 545344, + "componentType": 5126, + "count": 6, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1106028, + "componentType": 5126, + "count": 6, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 545368, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1106100, + "componentType": 5126, + "count": 66, + "max": [ + 0.030920162796974182, + 0.217793807387352, + -1.015844702720642 + ], + "min": [ + -0.09184718132019043, + -0.08483370393514633, + -3.160172700881958 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 545632, + "componentType": 5126, + "count": 32, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 706672, + "componentType": 5126, + "count": 32, + "max": [ + 0.23808467388153076, + 0.010921822860836983, + 0.48981067538261414, + 0.9730502963066101 + ], + "min": [ + -0.03716149553656578, + -0.00153084727935493, + 0.22757799923419952, + 0.8467205762863159 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 545760, + "componentType": 5126, + "count": 31, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1106892, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 545884, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1107264, + "componentType": 5126, + "count": 66, + "max": [ + 9.536745437799254e-07, + 0.0021283477544784546, + 4.768380108544079e-07 + ], + "min": [ + -9.53675112214114e-07, + 0.002126440405845642, + -9.536734637549671e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 546148, + "componentType": 5126, + "count": 34, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 707184, + "componentType": 5126, + "count": 34, + "max": [ + 0.7071067690849304, + 0.037748027592897415, + -3.056076138818753e-07, + 0.7789813280105591 + ], + "min": [ + 0.5624483227729797, + -0.2679270803928375, + -0.3407786190509796, + 0.7040858268737793 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 546284, + "componentType": 5126, + "count": 39, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1108056, + "componentType": 5126, + "count": 39, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 546440, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1108524, + "componentType": 5126, + "count": 65, + "max": [ + 0.17381975054740906, + 0.13409936428070068, + 2.8792544526368147e-06 + ], + "min": [ + 0.17381712794303894, + 0.13409774005413055, + -2.8461327019613236e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 546700, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 707728, + "componentType": 5126, + "count": 66, + "max": [ + 0.11077148467302322, + 0.1224382296204567, + 0.021501539275050163, + 0.9977223873138428 + ], + "min": [ + -0.41806748509407043, + -0.39597129821777344, + -0.20721039175987244, + 0.8357548713684082 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 546964, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1109304, + "componentType": 5126, + "count": 65, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 547224, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1110084, + "componentType": 5126, + "count": 66, + "max": [ + 3.292272481303371e-07, + 0.6356120705604553, + 9.739176221046364e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356106400489807, + -1.8596858808450634e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 547488, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 708784, + "componentType": 5126, + "count": 66, + "max": [ + 0.9627929329872131, + 1.241697411558107e-08, + 1.0862551746981808e-08, + 0.9874227046966553 + ], + "min": [ + 0.15810255706310272, + -4.716543600125078e-08, + -1.7099283411425859e-07, + 0.2702401876449585 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 547752, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1110876, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999990463256836, + 0.9999989867210388, + 0.9999990463256836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 548016, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1111668, + "componentType": 5126, + "count": 66, + "max": [ + -0.17381736636161804, + 0.1340993493795395, + 1.929982317960821e-06 + ], + "min": [ + -0.17382022738456726, + 0.13409742712974548, + -3.7890285966568626e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 548280, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 709840, + "componentType": 5126, + "count": 66, + "max": [ + 0.19977593421936035, + -0.012904020957648754, + 0.4225967824459076, + 0.9487748742103577 + ], + "min": [ + -0.5728533864021301, + -0.32115575671195984, + -0.10642481595277786, + 0.7024371027946472 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 548544, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1112460, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000005960464478, + 1.000000238418579, + 1.0000005960464478 + ], + "min": [ + 0.9999998211860657, + 0.999999463558197, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 548808, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1113252, + "componentType": 5126, + "count": 66, + "max": [ + 2.5954102511605015e-07, + 0.6356143355369568, + 9.496986876911251e-07 + ], + "min": [ + -3.365053373727278e-07, + 0.6356086134910583, + -8.494874919051654e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 549072, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 710896, + "componentType": 5126, + "count": 66, + "max": [ + 0.9441444873809814, + 4.0555921287932506e-08, + 5.155607709639298e-07, + 0.9844053387641907 + ], + "min": [ + 0.17591501772403717, + -1.1426445922779749e-07, + 1.0383539006397768e-07, + 0.32953181862831116 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 549336, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1114044, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.999998927116394, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 549600, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1114836, + "componentType": 5126, + "count": 66, + "max": [ + 1.430511474609375e-06, + 0.0021283484529703856, + 9.536729521641973e-07 + ], + "min": [ + -9.536746574667632e-07, + 0.002126440405845642, + -9.552729807182914e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 549864, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 711952, + "componentType": 5126, + "count": 66, + "max": [ + -0.5392957925796509, + -0.0719049796462059, + 0.054463934153318405, + 0.8193514943122864 + ], + "min": [ + -0.6495170593261719, + -0.2076280564069748, + -0.20850040018558502, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 550128, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1115628, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 550392, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1116420, + "componentType": 5126, + "count": 66, + "max": [ + 9.5367431640625e-07, + 0.272667795419693, + 9.528159239380329e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.272663950920105, + -9.532815852253407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 550656, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 713008, + "componentType": 5126, + "count": 66, + "max": [ + 0.18852843344211578, + 0.1893780529499054, + 0.02510380744934082, + 0.9992808103561401 + ], + "min": [ + 0.0005605245823971927, + -0.06888695061206818, + 0.0035516235511749983, + 0.9636287689208984 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 550920, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1117212, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 551184, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1118004, + "componentType": 5126, + "count": 66, + "max": [ + 0.04481758177280426, + 0.5170750021934509, + 0.010738964192569256 + ], + "min": [ + 0.04481472074985504, + 0.5170711874961853, + 0.01073654554784298 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 551448, + "componentType": 5126, + "count": 58, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 714064, + "componentType": 5126, + "count": 58, + "max": [ + -0.4280199706554413, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356002807617, + -0.5515869855880737, + -0.5399534106254578, + 0.4701075255870819 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 551680, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1118796, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 551944, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1119588, + "componentType": 5126, + "count": 66, + "max": [ + 0.03744934871792793, + 0.24682365357875824, + -0.04019824042916298 + ], + "min": [ + -0.005056160967797041, + 0.23630201816558838, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 552208, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 714992, + "componentType": 5126, + "count": 66, + "max": [ + -0.21974089741706848, + 0.0015259881038218737, + -0.403313010931015, + 0.7255938053131104 + ], + "min": [ + -0.738343358039856, + -0.35171815752983093, + -0.6674665212631226, + 0.16981473565101624 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 552472, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1120380, + "componentType": 5126, + "count": 65, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 552732, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1121160, + "componentType": 5126, + "count": 66, + "max": [ + 1.8977140143761062e-06, + 0.4048616290092468, + 1.175056240754202e-06 + ], + "min": [ + -1.0260928320349194e-06, + 0.4048609435558319, + -7.697486807956011e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 552996, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 716048, + "componentType": 5126, + "count": 66, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.09627240896224976, + 0.9809592366218567 + ], + "min": [ + -0.2800317704677582, + -0.40121573209762573, + -0.4778468906879425, + 0.7666417956352234 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 553260, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1121952, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 553524, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1122744, + "componentType": 5126, + "count": 66, + "max": [ + 1.949616944330046e-06, + 0.40327104926109314, + 9.19408648769604e-07 + ], + "min": [ + -1.9406793398957234e-06, + 0.4032696485519409, + -1.9718984276551055e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 553788, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 717104, + "componentType": 5126, + "count": 66, + "max": [ + 0.29911017417907715, + 0.7623528838157654, + 0.35602524876594543, + 0.9960404634475708 + ], + "min": [ + -0.2257881909608841, + -0.3152638077735901, + -0.09025855362415314, + 0.5787562727928162 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 554052, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1123536, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 554316, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1124328, + "componentType": 5126, + "count": 66, + "max": [ + 0.09804455935955048, + 0.21963119506835938, + -0.0024717445485293865 + ], + "min": [ + 0.09804068505764008, + 0.21962979435920715, + -0.0024732050951570272 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 554580, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 718160, + "componentType": 5126, + "count": 66, + "max": [ + -0.6223368048667908, + -0.0009816746460273862, + 0.03366420418024063, + 0.7820247411727905 + ], + "min": [ + -0.6223368048667908, + -0.0009817032841965556, + 0.033664170652627945, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 554844, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1125120, + "componentType": 5126, + "count": 65, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 555104, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1125900, + "componentType": 5126, + "count": 66, + "max": [ + 1.9314020391902886e-06, + 0.0975031927227974, + 8.330883360940788e-07 + ], + "min": [ + -1.9024381572307902e-06, + 0.0975017324090004, + -1.2961690742940846e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 555368, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 719216, + "componentType": 5126, + "count": 66, + "max": [ + -0.9149540066719055, + -0.007575358729809523, + -0.035511139780282974, + 0.4019213318824768 + ], + "min": [ + -0.9149541854858398, + -0.007575393654406071, + -0.03551117330789566, + 0.4019209146499634 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 555632, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1126692, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 555896, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1127484, + "componentType": 5126, + "count": 66, + "max": [ + -0.016224022954702377, + 0.21308675408363342, + -0.0035586394369602203 + ], + "min": [ + -0.016229812055826187, + 0.21308529376983643, + -0.0035601938143372536 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 556160, + "componentType": 5126, + "count": 61, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 720272, + "componentType": 5126, + "count": 61, + "max": [ + -0.626492977142334, + -0.07110267132520676, + 0.07480832934379578, + 0.7725636959075928 + ], + "min": [ + -0.6264930963516235, + -0.07110272347927094, + 0.0748082846403122, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 556404, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1128276, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 556668, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1129068, + "componentType": 5126, + "count": 66, + "max": [ + 1.8969031998494756e-06, + 0.0846504345536232, + 1.926575237121142e-07 + ], + "min": [ + -1.914534550451208e-06, + 0.08464940637350082, + -7.656807383682462e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 556932, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 721248, + "componentType": 5126, + "count": 66, + "max": [ + -0.9015315175056458, + 0.0036660777404904366, + -0.007477667648345232, + 0.4326334297657013 + ], + "min": [ + -0.9015316367149353, + 0.003666051896288991, + -0.00747769745066762, + 0.43263304233551025 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 557196, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1129860, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 557460, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1130652, + "componentType": 5126, + "count": 66, + "max": [ + 0.1118992418050766, + 0.10989120602607727, + -0.05163010582327843 + ], + "min": [ + 0.11189404875040054, + 0.10988740622997284, + -0.051632482558488846 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 557724, + "componentType": 5126, + "count": 59, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 722304, + "componentType": 5126, + "count": 59, + "max": [ + -0.4573034644126892, + 0.16493293642997742, + -0.31590890884399414, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493287682533264, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 557960, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1131444, + "componentType": 5126, + "count": 65, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 558220, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1132224, + "componentType": 5126, + "count": 66, + "max": [ + 1.9045755834667943e-06, + 0.08512499183416367, + 1.0543401458562585e-06 + ], + "min": [ + -1.923091758726514e-06, + 0.08512208610773087, + -5.159942020327435e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 558484, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 723248, + "componentType": 5126, + "count": 66, + "max": [ + 0.022910600528120995, + 0.012835752218961716, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.022910529747605324, + 0.012835701927542686, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 558748, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1133016, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 559012, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1133808, + "componentType": 5126, + "count": 66, + "max": [ + 0.005588502157479525, + 0.1660458892583847, + -0.045392442494630814 + ], + "min": [ + 0.005582994781434536, + 0.1660432368516922, + -0.04539418965578079 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 559276, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 724304, + "componentType": 5126, + "count": 66, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501897007226944, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 559540, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1134600, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 559804, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1135392, + "componentType": 5126, + "count": 66, + "max": [ + 9.5367431640625e-07, + 0.5450101494789124, + 4.709068548436335e-07 + ], + "min": [ + -1.430511474609375e-06, + 0.5450053811073303, + -5.182189966035367e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 560068, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 725360, + "componentType": 5126, + "count": 66, + "max": [ + 0.02576645277440548, + 0.1696917712688446, + 5.9883560332707475e-09, + 0.9998204708099365 + ], + "min": [ + -0.007215114776045084, + 1.1294051915911041e-07, + -0.06624159961938858, + 0.9829307794570923 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 560332, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1136184, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 560596, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1136976, + "componentType": 5126, + "count": 66, + "max": [ + 4.76837158203125e-07, + 0.11002922058105469, + 9.518117281004379e-07 + ], + "min": [ + -2.3841880647523794e-07, + 0.11002635955810547, + -1.432374119758606e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 560860, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 726416, + "componentType": 5126, + "count": 66, + "max": [ + 0.007135976571589708, + 0.16840599477291107, + 4.656615093523442e-09, + 1.0 + ], + "min": [ + -0.025982949882745743, + 1.0430807151351473e-07, + -0.06944525986909866, + 0.9832425117492676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 561124, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1137768, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 561388, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1138560, + "componentType": 5126, + "count": 66, + "max": [ + 8.286390311695868e-07, + 0.3614490032196045, + 0.02684309333562851 + ], + "min": [ + -2.4424457478744444e-07, + 0.36144328117370605, + 0.026839755475521088 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 561652, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 727472, + "componentType": 5126, + "count": 66, + "max": [ + 3.725289943190546e-08, + 3.725350694594454e-09, + 8.381906724252985e-09, + 1.0 + ], + "min": [ + -2.2351738238057806e-08, + -1.3038451207592061e-08, + -7.916243660588407e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 561916, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1139352, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999999403953552, + 0.9999995231628418, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 562180, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1140144, + "componentType": 5126, + "count": 66, + "max": [ + 5.373394742491655e-07, + -0.15833522379398346, + -0.25376373529434204 + ], + "min": [ + -1.7791603568184655e-07, + -0.1583428829908371, + -0.2537664771080017 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 562444, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 728528, + "componentType": 5126, + "count": 66, + "max": [ + -0.998119592666626, + 3.147220928312322e-09, + -2.1611386102904362e-07, + 0.06129677966237068 + ], + "min": [ + -0.998119592666626, + -1.2419049788547909e-08, + -2.3447694275091635e-07, + 0.0612967275083065 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 562708, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1140936, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 0.999971866607666 + ], + "min": [ + 0.9999998211860657, + 1.0000001192092896, + 0.9999715685844421 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 562972, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1141728, + "componentType": 5126, + "count": 66, + "max": [ + 2.3841872121010965e-07, + 0.25394904613494873, + 8.449025017398526e-07 + ], + "min": [ + -2.3841863594498136e-07, + 0.2539454996585846, + -8.986948500933067e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 563236, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 729584, + "componentType": 5126, + "count": 66, + "max": [ + 0.1561359167098999, + -1.2219774703225994e-07, + 5.246450385243406e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.4185388863552362e-07, + -9.471949447004135e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 563500, + "componentType": 5126, + "count": 64, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1142520, + "componentType": 5126, + "count": 64, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000008344650269 + ], + "min": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 563756, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1143288, + "componentType": 5126, + "count": 66, + "max": [ + 1.1920928955078125e-07, + 0.2533210813999176, + 7.030650408523798e-07 + ], + "min": [ + -3.5762786865234375e-07, + 0.25331732630729675, + -6.440339461732947e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 564020, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 730640, + "componentType": 5126, + "count": 66, + "max": [ + -0.09231431782245636, + -1.1373772146328065e-08, + 8.443020504955712e-09, + 0.995729923248291 + ], + "min": [ + -0.09231438487768173, + -2.665058573825263e-08, + -7.684103131566644e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 564284, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1144080, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 564548, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1144872, + "componentType": 5126, + "count": 66, + "max": [ + 4.768372718899627e-07, + 0.26378050446510315, + 1.4312736311694607e-06 + ], + "min": [ + -1.1920928955078125e-07, + 0.2637772560119629, + -6.683270044050005e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 564812, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 731696, + "componentType": 5126, + "count": 66, + "max": [ + 2.02167509399942e-08, + -0.9896631240844727, + 0.1434117704629898, + 9.427285618812675e-08 + ], + "min": [ + 2.183539349331909e-09, + -0.9896631240844727, + 0.14341171085834503, + 8.227758740986246e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 565076, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1145664, + "componentType": 5126, + "count": 65, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000008344650269 + ], + "min": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 565336, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1146444, + "componentType": 5126, + "count": 66, + "max": [ + 8.691739026289724e-07, + 0.2431441992521286, + 0.18703344464302063 + ], + "min": [ + -1.9037829588341992e-06, + 0.24313963949680328, + 0.18702909350395203 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 565600, + "componentType": 5126, + "count": 49, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 732752, + "componentType": 5126, + "count": 49, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 565796, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1147236, + "componentType": 5126, + "count": 66, + "max": [ + 0.9999996423721313, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999992251396179, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 566060, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1148028, + "componentType": 5126, + "count": 66, + "max": [ + -0.2441888302564621, + -0.13045912981033325, + 0.029651116579771042 + ], + "min": [ + -0.24419058859348297, + -0.13046669960021973, + 0.029648004099726677 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 566324, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 733536, + "componentType": 5126, + "count": 66, + "max": [ + 0.007415751926600933, + -0.0742838978767395, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415736094117165, + -0.07428394258022308, + -0.9923430681228638, + 0.09839728474617004 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 566588, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1148820, + "componentType": 5126, + "count": 66, + "max": [ + 0.9999983906745911, + 1.0000009536743164, + 0.999999463558197 + ], + "min": [ + 0.9999978542327881, + 1.0000004768371582, + 0.9999988675117493 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 566852, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1149612, + "componentType": 5126, + "count": 66, + "max": [ + 0.2434193342924118, + -0.13045910000801086, + 0.029651232063770294 + ], + "min": [ + 0.2434176355600357, + -0.13046672940254211, + 0.02964738942682743 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 567116, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 734592, + "componentType": 5126, + "count": 66, + "max": [ + 0.007417427375912666, + 0.07428369671106339, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.0074174050241708755, + 0.0742836445569992, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 567380, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1150404, + "componentType": 5126, + "count": 66, + "max": [ + 0.9999982714653015, + 1.000001311302185, + 0.9999991059303284 + ], + "min": [ + 0.9999976754188538, + 1.0000008344650269, + 0.9999986290931702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 567644, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1151196, + "componentType": 5126, + "count": 66, + "max": [ + -0.044814713299274445, + 0.5170750021934509, + 0.010739457793533802 + ], + "min": [ + -0.04481757432222366, + 0.5170702338218689, + 0.010736562311649323 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 567908, + "componentType": 5126, + "count": 62, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 735648, + "componentType": 5126, + "count": 62, + "max": [ + -0.39753690361976624, + 0.6113088726997375, + 0.5792328715324402, + 0.44555115699768066 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019243359565735, + 0.3643558919429779 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 568156, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1151988, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 568420, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1152780, + "componentType": 5126, + "count": 66, + "max": [ + 0.017871879041194916, + 0.246736079454422, + -0.035272132605314255 + ], + "min": [ + -0.02082155831158161, + 0.23250755667686462, + -0.06696182489395142 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 568684, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 736640, + "componentType": 5126, + "count": 66, + "max": [ + -0.17307502031326294, + 0.7806497812271118, + 0.4653176963329315, + 0.7148059606552124 + ], + "min": [ + -0.5603393912315369, + 0.3612828552722931, + -0.6174259185791016, + 0.4142428934574127 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 568948, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1153572, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 569212, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1154364, + "componentType": 5126, + "count": 66, + "max": [ + 1.9206677279726136e-06, + 0.4048624634742737, + 1.1751261581594008e-06 + ], + "min": [ + -9.780654863789096e-07, + 0.4048602879047394, + -7.675061510781234e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 569476, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 737696, + "componentType": 5126, + "count": 66, + "max": [ + 0.028864918276667595, + 0.5202155709266663, + 0.3560038208961487, + 0.9983124136924744 + ], + "min": [ + -0.768118679523468, + 0.046746544539928436, + -0.05700935795903206, + 0.3523867726325989 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 569740, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1155156, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 570004, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1155948, + "componentType": 5126, + "count": 66, + "max": [ + 1.8453559960107668e-06, + 0.4032723903656006, + 5.062061063654255e-07 + ], + "min": [ + -1.9026985000891727e-06, + 0.40326958894729614, + -6.085351742513012e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 570268, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 738752, + "componentType": 5126, + "count": 66, + "max": [ + 0.04941019043326378, + 0.22775690257549286, + 0.3096252679824829, + 0.999443769454956 + ], + "min": [ + -0.3852474093437195, + -0.30419155955314636, + -0.2848949432373047, + 0.9092298746109009 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 570532, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1156740, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 570796, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1157532, + "componentType": 5126, + "count": 66, + "max": [ + -0.09803974628448486, + 0.21963152289390564, + -0.00247181486338377 + ], + "min": [ + -0.09804543852806091, + 0.21962788701057434, + -0.0024732020683586597 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 571060, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 739808, + "componentType": 5126, + "count": 66, + "max": [ + -0.5146675109863281, + 0.049974922090768814, + -0.08315923064947128, + 0.8518828749656677 + ], + "min": [ + -0.5146676301956177, + 0.04997488856315613, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 571324, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1158324, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 571588, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1159116, + "componentType": 5126, + "count": 65, + "max": [ + 1.8926187976830988e-06, + 0.09750307351350784, + 1.3141367389835068e-06 + ], + "min": [ + -1.921584726005676e-06, + 0.09750168025493622, + -1.836961445178531e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 571848, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 740864, + "componentType": 5126, + "count": 66, + "max": [ + -0.7917521595954895, + 0.056910064071416855, + -0.02441771887242794, + 0.6076952815055847 + ], + "min": [ + -0.7917524576187134, + 0.056909993290901184, + -0.024417812004685402, + 0.6076949238777161 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 572112, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1159896, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 572376, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1160688, + "componentType": 5126, + "count": 66, + "max": [ + 0.016230516135692596, + 0.21308769285678864, + -0.0035589742474257946 + ], + "min": [ + 0.016225043684244156, + 0.21308517456054688, + -0.0035598366521298885 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 572640, + "componentType": 5126, + "count": 65, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 741920, + "componentType": 5126, + "count": 65, + "max": [ + -0.5430818200111389, + 0.06296974420547485, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 572900, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1161480, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 573164, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1162272, + "componentType": 5126, + "count": 66, + "max": [ + 1.921143393701641e-06, + 0.08465089648962021, + 2.5835112182903686e-07 + ], + "min": [ + -1.8971792314914637e-06, + 0.08464907854795456, + -1.2013593959636637e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 573428, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 742960, + "componentType": 5126, + "count": 66, + "max": [ + -0.7930165529251099, + -0.002046280773356557, + 0.008072659373283386, + 0.6091431975364685 + ], + "min": [ + -0.793016791343689, + -0.0020463308319449425, + 0.008072588592767715, + 0.6091428995132446 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 573692, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1163064, + "componentType": 5126, + "count": 66, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 573956, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1163856, + "componentType": 5126, + "count": 66, + "max": [ + -0.11189479380846024, + 0.10989129543304443, + -0.051629647612571716 + ], + "min": [ + -0.11189861595630646, + 0.10988759249448776, + -0.05163270980119705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 574220, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 744016, + "componentType": 5126, + "count": 66, + "max": [ + -0.432245671749115, + -0.12903620302677155, + 0.15030044317245483, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363222360611, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 574484, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1164648, + "componentType": 5126, + "count": 66, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 574748, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1165440, + "componentType": 5126, + "count": 66, + "max": [ + 1.917388317451696e-06, + 0.08512455970048904, + 9.498152166997897e-07 + ], + "min": [ + -1.02207900454232e-06, + 0.0851232185959816, + -9.639416020945646e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 575012, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 745072, + "componentType": 5126, + "count": 66, + "max": [ + 0.1481143832206726, + -0.12198012322187424, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219802051782608, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 575276, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1166232, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999994039535522, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 575540, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1167024, + "componentType": 5126, + "count": 66, + "max": [ + -0.005582996644079685, + 0.16604559123516083, + -0.04539300128817558 + ], + "min": [ + -0.005587660241872072, + 0.16604341566562653, + -0.045393865555524826 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 575804, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 746128, + "componentType": 5126, + "count": 66, + "max": [ + 0.6181666851043701, + 0.819045901298523, + 0.09363143146038055, + 0.06991962343454361 + ], + "min": [ + -0.6047428250312805, + -0.8214037418365479, + -0.036020904779434204, + 0.0008269252139143646 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 576068, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1167816, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 576332, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1168608, + "componentType": 5126, + "count": 66, + "max": [ + 0.13640467822551727, + 0.285048246383667, + 0.0019411678658798337 + ], + "min": [ + 0.13640277087688446, + 0.2850443422794342, + 0.0019383089384064078 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 576596, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 747184, + "componentType": 5126, + "count": 66, + "max": [ + -4.668360276127714e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.562145826028427e-07 + ], + "min": [ + -8.976537912985805e-08, + -0.693580687046051, + -0.7203789949417114, + 1.216270248960427e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 576860, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1169400, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 577124, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1170192, + "componentType": 5126, + "count": 66, + "max": [ + -0.13640229403972626, + 0.2850481867790222, + 0.0019407561048865318 + ], + "min": [ + -0.13640467822551727, + 0.285045325756073, + 0.0019383736653253436 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 577388, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 748240, + "componentType": 5126, + "count": 66, + "max": [ + -4.8390525364538917e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.02037681321599e-08 + ], + "min": [ + -9.385642840697983e-08, + -0.693580687046051, + -0.7203789949417114, + 3.0795064276389894e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 577652, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1170984, + "componentType": 5126, + "count": 66, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 577916, + "componentType": 5126, + "count": 53, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1171776, + "componentType": 5126, + "count": 53, + "max": [ + 0.27831587195396423, + 1.1537162065505981, + -0.7300586700439453 + ], + "min": [ + -0.28963804244995117, + 0.5460788011550903, + -2.71100115776062 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 578128, + "componentType": 5126, + "count": 3, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1172412, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 578140, + "componentType": 5126, + "count": 52, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1172448, + "componentType": 5126, + "count": 52, + "max": [ + 0.6625264286994934, + 0.417879581451416, + -0.24350875616073608 + ], + "min": [ + 0.0301591157913208, + -0.34851837158203125, + -2.3090410232543945 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 578348, + "componentType": 5126, + "count": 43, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 749296, + "componentType": 5126, + "count": 43, + "max": [ + -0.747097909450531, + -0.06956048309803009, + 5.499563826560916e-07, + 0.6582174897193909 + ], + "min": [ + -0.9956933856010437, + -0.09270712733268738, + -0.06128493323922157, + 5.1205397255671414e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 578520, + "componentType": 5126, + "count": 41, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1173072, + "componentType": 5126, + "count": 41, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 578684, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1173564, + "componentType": 5126, + "count": 66, + "max": [ + 1.8924474716186523e-06, + 2.2835829440737143e-06, + 4.1689454519655555e-06 + ], + "min": [ + -2.3990869522094727e-06, + -3.779058260988677e-06, + -3.005224925800576e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 578948, + "componentType": 5126, + "count": 43, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 749984, + "componentType": 5126, + "count": 43, + "max": [ + -0.9503704309463501, + 9.172449466632315e-09, + 2.910307017600644e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.815481276423725e-08, + -2.318029990178161e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 579120, + "componentType": 5126, + "count": 43, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1174356, + "componentType": 5126, + "count": 43, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 579292, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1174872, + "componentType": 5126, + "count": 66, + "max": [ + 9.5367431640625e-07, + 0.28250065445899963, + 1.7740086377671105e-06 + ], + "min": [ + -9.5367431640625e-07, + 0.2824990451335907, + -8.370428190573875e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 579556, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 750672, + "componentType": 5126, + "count": 50, + "max": [ + -8.11971787584298e-08, + 0.9818702340126038, + 0.6048793196678162, + 0.07683929055929184 + ], + "min": [ + -0.03233193978667259, + -0.981788694858551, + -0.1895543485879898, + 4.244468527758727e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 579756, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1175664, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 579956, + "componentType": 5126, + "count": 52, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1176264, + "componentType": 5126, + "count": 52, + "max": [ + -0.33675435185432434, + 0.9440845251083374, + -0.6843864917755127 + ], + "min": [ + -0.6668583750724792, + 0.5460788011550903, + -2.643019914627075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 580164, + "componentType": 5126, + "count": 3, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1176888, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 580176, + "componentType": 5126, + "count": 52, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1176924, + "componentType": 5126, + "count": 52, + "max": [ + -0.044993869960308075, + 0.19431686401367188, + -0.2435074895620346 + ], + "min": [ + -0.7535000443458557, + -0.7316867113113403, + -2.609389543533325 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 580384, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 751472, + "componentType": 5126, + "count": 50, + "max": [ + -0.7179311513900757, + 2.853557816706598e-07, + 0.14448635280132294, + 0.6583460569381714 + ], + "min": [ + -0.9855625629425049, + -0.2556212544441223, + -0.022594589740037918, + 9.866893435628299e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 580584, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1177548, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 580784, + "componentType": 5126, + "count": 66, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1178148, + "componentType": 5126, + "count": 66, + "max": [ + 2.130866050720215e-06, + 2.9373093184403842e-06, + 5.556827545660781e-06 + ], + "min": [ + -1.7136335372924805e-06, + -1.907724708871683e-06, + -3.3641044865362346e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 581048, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 752272, + "componentType": 5126, + "count": 50, + "max": [ + -0.9503704309463501, + -7.44367278926461e-09, + 5.520685064652753e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.2277045985674704e-08, + 3.638666257188561e-08, + 0.3111206591129303 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 581248, + "componentType": 5126, + "count": 48, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1178940, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 581440, + "componentType": 5126, + "count": 64, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1179516, + "componentType": 5126, + "count": 64, + "max": [ + 1.1920928955078125e-07, + 0.28250083327293396, + 8.333995538123418e-07 + ], + "min": [ + -1.1920950271360198e-07, + 0.282499223947525, + -8.814163834358624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 581696, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753072, + "componentType": 5126, + "count": 50, + "max": [ + -8.016166219704246e-08, + 0.997693657875061, + 0.1895543783903122, + 0.09258665144443512 + ], + "min": [ + -0.03895701840519905, + -0.9818702340126038, + -0.1837223470211029, + 4.2353016738161386e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 581896, + "componentType": 5126, + "count": 50, + "max": [ + 1.0833333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180284, + "componentType": 5126, + "count": 50, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582096, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180884, + "componentType": 5126, + "count": 1, + "max": [ + 0.0034840325824916363, + 0.07595094293355942, + -1.460858941078186 + ], + "min": [ + 0.0034840325824916363, + 0.07595094293355942, + -1.460858941078186 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582100, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753872, + "componentType": 5126, + "count": 1, + "max": [ + -0.011757775209844112, + 0.03661426901817322, + -0.006798739545047283, + 0.9992371797561646 + ], + "min": [ + -0.011757775209844112, + 0.03661426901817322, + -0.006798739545047283, + 0.9992371797561646 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582104, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753888, + "componentType": 5126, + "count": 1, + "max": [ + 0.7062756419181824, + -0.1098884642124176, + -0.11530879884958267, + 0.689784824848175 + ], + "min": [ + 0.7062756419181824, + -0.1098884642124176, + -0.11530879884958267, + 0.689784824848175 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582108, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753904, + "componentType": 5126, + "count": 1, + "max": [ + 0.03629603609442711, + 0.2410912960767746, + -0.13945415616035461, + 0.9597448110580444 + ], + "min": [ + 0.03629603609442711, + 0.2410912960767746, + -0.13945415616035461, + 0.9597448110580444 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582112, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753920, + "componentType": 5126, + "count": 1, + "max": [ + 0.17140866816043854, + -2.848335456384632e-10, + -2.232778850697059e-09, + 0.985200047492981 + ], + "min": [ + 0.17140866816043854, + -2.848335456384632e-10, + -2.232778850697059e-09, + 0.985200047492981 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582116, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753936, + "componentType": 5126, + "count": 1, + "max": [ + -0.18818536400794983, + 0.09768446534872055, + 0.24859540164470673, + 0.9451160430908203 + ], + "min": [ + -0.18818536400794983, + 0.09768446534872055, + 0.24859540164470673, + 0.9451160430908203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582120, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753952, + "componentType": 5126, + "count": 1, + "max": [ + 0.3578870892524719, + -3.4100486878685388e-09, + 2.555767650846974e-07, + 0.9337648749351501 + ], + "min": [ + 0.3578870892524719, + -3.4100486878685388e-09, + 2.555767650846974e-07, + 0.9337648749351501 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582124, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753968, + "componentType": 5126, + "count": 1, + "max": [ + -0.6721557974815369, + 0.17188577353954315, + -0.16308651864528656, + 0.7014731764793396 + ], + "min": [ + -0.6721557974815369, + 0.17188577353954315, + -0.16308651864528656, + 0.7014731764793396 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582128, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 753984, + "componentType": 5126, + "count": 1, + "max": [ + -0.09896653145551682, + 0.24639540910720825, + -0.03949755057692528, + 0.9632937908172607 + ], + "min": [ + -0.09896653145551682, + 0.24639540910720825, + -0.03949755057692528, + 0.9632937908172607 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582132, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180896, + "componentType": 5126, + "count": 1, + "max": [ + 0.0434420108795166, + 0.5264195203781128, + 0.004914513789117336 + ], + "min": [ + 0.0434420108795166, + 0.5264195203781128, + 0.004914513789117336 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582136, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754000, + "componentType": 5126, + "count": 1, + "max": [ + -0.44036152958869934, + -0.5997070074081421, + -0.48706886172294617, + 0.45738083124160767 + ], + "min": [ + -0.44036152958869934, + -0.5997070074081421, + -0.48706886172294617, + 0.45738083124160767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582140, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180908, + "componentType": 5126, + "count": 1, + "max": [ + -9.142060442002276e-09, + 0.23812521994113922, + -0.07664704322814941 + ], + "min": [ + -9.142060442002276e-09, + 0.23812521994113922, + -0.07664704322814941 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582144, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754016, + "componentType": 5126, + "count": 1, + "max": [ + -0.21698620915412903, + -0.16202707588672638, + -0.544481098651886, + 0.793854296207428 + ], + "min": [ + -0.21698620915412903, + -0.16202707588672638, + -0.544481098651886, + 0.793854296207428 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582148, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754032, + "componentType": 5126, + "count": 1, + "max": [ + 0.06681215763092041, + -0.14838188886642456, + -0.42225733399391174, + 0.8917497992515564 + ], + "min": [ + 0.06681215763092041, + -0.14838188886642456, + -0.42225733399391174, + 0.8917497992515564 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582152, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754048, + "componentType": 5126, + "count": 1, + "max": [ + 0.102556511759758, + 0.3278999626636505, + -0.17773987352848053, + 0.9221563339233398 + ], + "min": [ + 0.102556511759758, + 0.3278999626636505, + -0.17773987352848053, + 0.9221563339233398 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582156, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180920, + "componentType": 5126, + "count": 1, + "max": [ + 0.09804065525531769, + 0.21963059902191162, + -0.0024725496768951416 + ], + "min": [ + 0.09804065525531769, + 0.21963059902191162, + -0.0024725496768951416 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582160, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754064, + "componentType": 5126, + "count": 1, + "max": [ + -0.5302516222000122, + -0.02470778301358223, + -0.06531668454408646, + 0.8449594974517822 + ], + "min": [ + -0.5302516222000122, + -0.02470778301358223, + -0.06531668454408646, + 0.8449594974517822 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582164, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180932, + "componentType": 5126, + "count": 1, + "max": [ + -0.016225731000304222, + 0.2130860835313797, + -0.0035593092907220125 + ], + "min": [ + -0.016225731000304222, + 0.2130860835313797, + -0.0035593092907220125 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582168, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180944, + "componentType": 5126, + "count": 1, + "max": [ + 0.11189832538366318, + 0.10989021509885788, + -0.0516321025788784 + ], + "min": [ + 0.11189832538366318, + 0.10989021509885788, + -0.0516321025788784 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582172, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754080, + "componentType": 5126, + "count": 1, + "max": [ + 0.11090443283319473, + -0.22041082382202148, + -0.017135486006736755, + 0.968930184841156 + ], + "min": [ + 0.11090443283319473, + -0.22041082382202148, + -0.017135486006736755, + 0.968930184841156 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582176, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754096, + "componentType": 5126, + "count": 1, + "max": [ + 0.0925239697098732, + -0.2206958830356598, + -0.012955755926668644, + 0.9708577990531921 + ], + "min": [ + 0.0925239697098732, + -0.2206958830356598, + -0.012955755926668644, + 0.9708577990531921 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582180, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180956, + "componentType": 5126, + "count": 1, + "max": [ + 2.921972281910712e-07, + 0.3614468574523926, + 0.026841215789318085 + ], + "min": [ + 2.921972281910712e-07, + 0.3614468574523926, + 0.026841215789318085 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582184, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180968, + "componentType": 5126, + "count": 1, + "max": [ + 2.3931633563734067e-07, + -0.1583404242992401, + -0.2537650465965271 + ], + "min": [ + 2.3931633563734067e-07, + -0.1583404242992401, + -0.2537650465965271 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582188, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180980, + "componentType": 5126, + "count": 1, + "max": [ + 1.0000005960464478, + 1.0000007152557373, + 1.0000007152557373 + ], + "min": [ + 1.0000005960464478, + 1.0000007152557373, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582192, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1180992, + "componentType": 5126, + "count": 1, + "max": [ + -4.4495936890598387e-07, + 0.24314172565937042, + 0.18703188002109528 + ], + "min": [ + -4.4495936890598387e-07, + 0.24314172565937042, + 0.18703188002109528 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582196, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181004, + "componentType": 5126, + "count": 1, + "max": [ + 0.24341848492622375, + -0.1304628849029541, + 0.029649676755070686 + ], + "min": [ + 0.24341848492622375, + -0.1304628849029541, + 0.029649676755070686 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582200, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181016, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999982118606567, + 1.000001072883606, + 0.9999988675117493 + ], + "min": [ + 0.9999982118606567, + 1.000001072883606, + 0.9999988675117493 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582204, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181028, + "componentType": 5126, + "count": 1, + "max": [ + -0.043442048132419586, + 0.5077261924743652, + 0.016561465337872505 + ], + "min": [ + -0.043442048132419586, + 0.5077261924743652, + 0.016561465337872505 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582208, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754112, + "componentType": 5126, + "count": 1, + "max": [ + -0.5872711539268494, + 0.5038972496986389, + 0.5450654029846191, + 0.32265135645866394 + ], + "min": [ + -0.5872711539268494, + 0.5038972496986389, + 0.5450654029846191, + 0.32265135645866394 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582212, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181040, + "componentType": 5126, + "count": 1, + "max": [ + 0.011996588669717312, + 0.23292642831802368, + -0.03592166677117348 + ], + "min": [ + 0.011996588669717312, + 0.23292642831802368, + -0.03592166677117348 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582216, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754128, + "componentType": 5126, + "count": 1, + "max": [ + -0.20835132896900177, + -0.1872904896736145, + 0.6480310559272766, + 0.708214521408081 + ], + "min": [ + -0.20835132896900177, + -0.1872904896736145, + 0.6480310559272766, + 0.708214521408081 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582220, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754144, + "componentType": 5126, + "count": 1, + "max": [ + 0.0959257036447525, + 0.6869458556175232, + 0.4623451232910156, + 0.5523954033851624 + ], + "min": [ + 0.0959257036447525, + 0.6869458556175232, + 0.4623451232910156, + 0.5523954033851624 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582224, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754160, + "componentType": 5126, + "count": 1, + "max": [ + -0.0056112417951226234, + 0.0010561979142948985, + 0.540807843208313, + 0.8411267995834351 + ], + "min": [ + -0.0056112417951226234, + 0.0010561979142948985, + 0.540807843208313, + 0.8411267995834351 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582228, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754176, + "componentType": 5126, + "count": 1, + "max": [ + 0.6766495704650879, + -0.7213658690452576, + 0.07376543432474136, + 0.12780991196632385 + ], + "min": [ + 0.6766495704650879, + -0.7213658690452576, + 0.07376543432474136, + 0.12780991196632385 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582232, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181052, + "componentType": 5126, + "count": 1, + "max": [ + 0.3848339319229126, + 0.288098007440567, + -0.6005153059959412 + ], + "min": [ + 0.3848339319229126, + 0.288098007440567, + -0.6005153059959412 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582236, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181064, + "componentType": 5126, + "count": 1, + "max": [ + 0.6141062378883362, + -0.2955121099948883, + -0.2457076460123062 + ], + "min": [ + 0.6141062378883362, + -0.2955121099948883, + -0.2457076460123062 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582240, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754192, + "componentType": 5126, + "count": 1, + "max": [ + 0.9972440600395203, + -0.07419116050004959, + -5.508128424480674e-07, + 4.097837802419235e-08 + ], + "min": [ + 0.9972440600395203, + -0.07419116050004959, + -5.508128424480674e-07, + 4.097837802419235e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582244, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181076, + "componentType": 5126, + "count": 1, + "max": [ + -0.38832512497901917, + 0.8175392150878906, + -0.66584312915802 + ], + "min": [ + -0.38832512497901917, + 0.8175392150878906, + -0.66584312915802 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582248, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181088, + "componentType": 5126, + "count": 1, + "max": [ + -0.5638933181762695, + 0.27000734210014343, + -0.2435074895620346 + ], + "min": [ + -0.5638933181762695, + 0.27000734210014343, + -0.2435074895620346 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582252, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754208, + "componentType": 5126, + "count": 1, + "max": [ + 0.9929701089859009, + -0.11836513131856918, + -5.484521921061969e-07, + 6.537721475297076e-08 + ], + "min": [ + 0.9929701089859009, + -0.11836513131856918, + -5.484521921061969e-07, + 6.537721475297076e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582256, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181100, + "componentType": 5126, + "count": 1, + "max": [ + -9.045004844665527e-06, + 1.3111603038851172e-06, + -2.287288589286618e-05 + ], + "min": [ + -9.045004844665527e-06, + 1.3111603038851172e-06, + -2.287288589286618e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582260, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 754224, + "componentType": 5126, + "count": 86, + "max": [ + 0.7071067690849304, + 0.7069007158279419, + 0.7066428065299988, + 0.7071067690849304 + ], + "min": [ + 0.017069440335035324, + -0.7066428065299988, + -0.7069007158279419, + 0.017070220783352852 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 582604, + "componentType": 5126, + "count": 70, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181112, + "componentType": 5126, + "count": 70, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0 + ], + "min": [ + 0.9999995231628418, + 0.9999995231628418, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 582884, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1181952, + "componentType": 5126, + "count": 85, + "max": [ + 0.03886003419756889, + 0.5743377804756165, + -1.209011435508728 + ], + "min": [ + -0.32611963152885437, + -0.018111633136868477, + -1.5585050582885742 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 583224, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 755600, + "componentType": 5126, + "count": 86, + "max": [ + 0.4781491160392761, + 0.2780267000198364, + 0.22322511672973633, + 0.9842278957366943 + ], + "min": [ + -0.18403753638267517, + 0.04562509059906006, + -4.739831354072521e-07, + 0.8331114053726196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 583568, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1182972, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 583908, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1183992, + "componentType": 5126, + "count": 86, + "max": [ + 7.450569938782792e-08, + 0.0021274536848068237, + 2.3841860752327193e-07 + ], + "min": [ + -4.470348358154297e-08, + 0.0021272748708724976, + -2.3841863594498136e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 584252, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 756976, + "componentType": 5126, + "count": 86, + "max": [ + 0.7071067690849304, + 0.12842775881290436, + 0.2711927592754364, + 0.7171202898025513 + ], + "min": [ + 0.6370629668235779, + 2.9638798082487483e-07, + -3.240468515741668e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 584596, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1185024, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 584940, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1186056, + "componentType": 5126, + "count": 86, + "max": [ + 0.17381876707077026, + 0.13409900665283203, + 1.4212726284767996e-07 + ], + "min": [ + 0.17381837964057922, + 0.13409817218780518, + -1.0900552638304362e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 585284, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 758352, + "componentType": 5126, + "count": 86, + "max": [ + 0.14235751330852509, + 0.030500730499625206, + 0.05865326151251793, + 0.996008038520813 + ], + "min": [ + -0.19556134939193726, + -0.3985687792301178, + -0.2397155463695526, + 0.888194739818573 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 585628, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1187088, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 0.9999998211860657 + ], + "min": [ + 0.9999995231628418, + 0.9999992847442627, + 0.9999990463256836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 585972, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1188120, + "componentType": 5126, + "count": 86, + "max": [ + 1.4017017546663624e-09, + 0.6356116533279419, + 1.1936157306990935e-07 + ], + "min": [ + -8.800526529739727e-08, + 0.635611355304718, + -1.1472926075839496e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 586316, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 759728, + "componentType": 5126, + "count": 86, + "max": [ + 0.9108253121376038, + 2.6666528540886247e-08, + -1.066894057544232e-07, + 0.962404727935791 + ], + "min": [ + 0.2716194987297058, + -3.9368078574852916e-08, + -4.3669578531080333e-07, + 0.41279205679893494 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 586660, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1189152, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000009536743164, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999991655349731, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 587004, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1190184, + "componentType": 5126, + "count": 86, + "max": [ + -0.17381924390792847, + 0.13409946858882904, + 1.1637464467639802e-06 + ], + "min": [ + -0.17381945252418518, + 0.13409839570522308, + 7.997994089237181e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 587348, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 761104, + "componentType": 5126, + "count": 86, + "max": [ + 0.19395363330841064, + 0.1064513623714447, + 0.25105521082878113, + 0.9913116097450256 + ], + "min": [ + -0.6812747716903687, + -0.2881253957748413, + -0.032282281666994095, + 0.6889067888259888 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 587692, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1191216, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 0.9999999403953552 + ], + "min": [ + 0.9999996423721313, + 0.9999992847442627, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 588036, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1192248, + "componentType": 5126, + "count": 86, + "max": [ + 6.582604328286834e-08, + 0.6356115937232971, + 1.2272028016013792e-07 + ], + "min": [ + -3.848208507406525e-08, + 0.6356114149093628, + -1.236273021731904e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 588380, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 762480, + "componentType": 5126, + "count": 86, + "max": [ + 0.6810069680213928, + -6.609406355551073e-09, + 4.708156495780713e-07, + 0.9782894849777222 + ], + "min": [ + 0.2072431743144989, + -6.212396641558371e-08, + 2.160556960006943e-07, + 0.7322769165039063 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 588724, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1193280, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000007152557373, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 589068, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1194312, + "componentType": 5126, + "count": 86, + "max": [ + 5.960475135680099e-08, + 0.002127454150468111, + 2.385182256148255e-07 + ], + "min": [ + -5.960465898624534e-08, + 0.0021273342426866293, + -2.3841823804104934e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 589412, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 763856, + "componentType": 5126, + "count": 86, + "max": [ + -0.5466171503067017, + -0.06230931356549263, + 0.08282031863927841, + 0.8331525921821594 + ], + "min": [ + -0.7139562368392944, + -0.06455858051776886, + -0.05383923277258873, + 0.6924773454666138 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 589756, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1195344, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 590100, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1196376, + "componentType": 5126, + "count": 86, + "max": [ + 2.9802322387695313e-08, + 0.2726660966873169, + 3.3867131321585475e-08 + ], + "min": [ + -4.470348358154297e-08, + 0.27266550064086914, + -5.54811911968045e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 590444, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 765232, + "componentType": 5126, + "count": 86, + "max": [ + -0.018110573291778564, + -6.868897006739871e-09, + 0.017011480405926704, + 0.9998360276222229 + ], + "min": [ + -0.21003182232379913, + -0.00266190804541111, + -0.03303050622344017, + 0.9775429964065552 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 590788, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1197408, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 591132, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1198440, + "componentType": 5126, + "count": 86, + "max": [ + 0.044816240668296814, + 0.5170735716819763, + 0.01073833741247654 + ], + "min": [ + 0.04481606185436249, + 0.5170726180076599, + 0.010737796314060688 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 591476, + "componentType": 5126, + "count": 46, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 766608, + "componentType": 5126, + "count": 46, + "max": [ + -0.1853695809841156, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356598854065, + -0.6581334471702576, + -0.6756433248519897, + 0.27568936347961426 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 591660, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1199472, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 592004, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1200504, + "componentType": 5126, + "count": 86, + "max": [ + 0.0011036928044632077, + 0.2381252497434616, + -0.07664680480957031 + ], + "min": [ + -9.854903026962347e-08, + 0.2375478446483612, + -0.08787541836500168 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 592348, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 767344, + "componentType": 5126, + "count": 86, + "max": [ + 0.22464607656002045, + 0.16405074298381805, + -0.5800811648368835, + 0.7721904516220093 + ], + "min": [ + -0.3243275284767151, + -0.11070425063371658, + -0.7083168029785156, + 0.6768509745597839 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 592692, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1201536, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 593036, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1202568, + "componentType": 5126, + "count": 86, + "max": [ + 1.2966945917014527e-07, + 0.4048613905906677, + 6.822727414146357e-07 + ], + "min": [ + -1.255316703918652e-07, + 0.40486112236976624, + -2.7212934128328925e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 593380, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 768720, + "componentType": 5126, + "count": 85, + "max": [ + 0.043468132615089417, + -0.4034453332424164, + -0.12908165156841278, + 0.9048095345497131 + ], + "min": [ + -0.2128596156835556, + -0.7899114489555359, + -0.1727788746356964, + 0.5485236048698425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 593720, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1203600, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 594064, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1204632, + "componentType": 5126, + "count": 86, + "max": [ + 2.5296591843471106e-07, + 0.4032706320285797, + 5.0982635002583265e-08 + ], + "min": [ + -4.7674342340542353e-07, + 0.40327024459838867, + -1.8027184012225916e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 594408, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 770080, + "componentType": 5126, + "count": 85, + "max": [ + -0.02423372119665146, + -0.3484083116054535, + 0.023932429030537605, + 0.9367238879203796 + ], + "min": [ + -0.10061318427324295, + -0.7141153216362, + -0.26956629753112793, + 0.6381617784500122 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 594748, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1205664, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 595092, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1206696, + "componentType": 5126, + "count": 86, + "max": [ + 0.0980411171913147, + 0.21963106095790863, + -0.002472282387316227 + ], + "min": [ + 0.0980401560664177, + 0.2196301370859146, + -0.00247316830791533 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 595436, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 771440, + "componentType": 5126, + "count": 86, + "max": [ + -0.622336745262146, + -0.000981627032160759, + 0.03366420418024063, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009816960664466023, + 0.033664144575595856, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 595780, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1207728, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 596120, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1208748, + "componentType": 5126, + "count": 86, + "max": [ + 2.545685902077821e-07, + 0.09750315546989441, + 4.949082494931645e-07 + ], + "min": [ + -4.621027187567961e-07, + 0.0975021943449974, + 2.1979511188874312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 596464, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 772816, + "componentType": 5126, + "count": 86, + "max": [ + -0.9147881269454956, + -0.013399033807218075, + -0.006453313864767551, + 0.4036601781845093 + ], + "min": [ + -0.9147882461547852, + -0.013399088755249977, + -0.006453380454331636, + 0.40365996956825256 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 596808, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1209780, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999995231628418, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 597148, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1210800, + "componentType": 5126, + "count": 86, + "max": [ + -0.016225401312112808, + 0.21308667957782745, + -0.0035589965991675854 + ], + "min": [ + -0.01622634381055832, + 0.2130855768918991, + -0.003559900214895606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 597492, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 774192, + "componentType": 5126, + "count": 86, + "max": [ + -0.6264929175376892, + -0.07110271602869034, + 0.07480831444263458, + 0.7725638151168823 + ], + "min": [ + -0.626492977142334, + -0.07110276818275452, + 0.07480825483798981, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 597836, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1211832, + "componentType": 5126, + "count": 86, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 598180, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1212864, + "componentType": 5126, + "count": 86, + "max": [ + 2.3029062390378385e-07, + 0.0846504271030426, + -1.311495623212977e-07 + ], + "min": [ + -2.465186526023899e-07, + 0.08464948832988739, + -4.364962933323113e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 598524, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 775568, + "componentType": 5126, + "count": 86, + "max": [ + -0.9015315771102905, + 0.0036660211626440287, + -0.007477613631635904, + 0.4326332211494446 + ], + "min": [ + -0.9015316367149353, + 0.0036659559700638056, + -0.007477670907974243, + 0.43263304233551025 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 598868, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1213896, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 599212, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1214928, + "componentType": 5126, + "count": 86, + "max": [ + 0.1118984967470169, + 0.10989085584878922, + -0.0516318678855896 + ], + "min": [ + 0.11189769208431244, + 0.10988998413085938, + -0.05163246765732765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 599556, + "componentType": 5126, + "count": 81, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 776944, + "componentType": 5126, + "count": 81, + "max": [ + -0.4573034942150116, + 0.16493293642997742, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493284702301025, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 599880, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1215960, + "componentType": 5126, + "count": 86, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 600224, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1216992, + "componentType": 5126, + "count": 86, + "max": [ + 2.200134616714422e-07, + 0.08512447029352188, + 2.3815509564428794e-07 + ], + "min": [ + -2.5477146436969633e-07, + 0.08512351661920547, + -4.7020591864566086e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 600568, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 778240, + "componentType": 5126, + "count": 86, + "max": [ + 0.022910626605153084, + 0.012835764326155186, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.022910553961992264, + 0.01283570472151041, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 600912, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1218024, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 601252, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1219044, + "componentType": 5126, + "count": 86, + "max": [ + 0.005585543345659971, + 0.16604480147361755, + -0.04539307579398155 + ], + "min": [ + 0.005584673024713993, + 0.16604340076446533, + -0.045393943786621094 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 601596, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 779616, + "componentType": 5126, + "count": 86, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192680954933, + 0.023865342140197754 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 601940, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1220076, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 602284, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1221108, + "componentType": 5126, + "count": 85, + "max": [ + 8.940695295223122e-08, + 0.5450075268745422, + 1.73097561173563e-07 + ], + "min": [ + -8.940696005765858e-08, + 0.545007050037384, + -6.514979133953602e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 602624, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 780992, + "componentType": 5126, + "count": 86, + "max": [ + 0.042962584644556046, + 0.1296481192111969, + 0.03053370490670204, + 0.9982540607452393 + ], + "min": [ + 0.00047455140156671405, + -0.21098090708255768, + -0.06829141080379486, + 0.9760681390762329 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 602968, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1222128, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 603312, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1223160, + "componentType": 5126, + "count": 86, + "max": [ + 2.384185791015625e-07, + 0.11002874374389648, + 5.774199962615967e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.11002802848815918, + -6.14673041354763e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 603656, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 782368, + "componentType": 5126, + "count": 86, + "max": [ + 0.024459093809127808, + 0.12923729419708252, + 0.03452621027827263, + 0.9981266856193542 + ], + "min": [ + -0.01831090822815895, + -0.21036437153816223, + -0.0669267401099205, + 0.9767069816589355 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 604000, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1224192, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.999999463558197, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 604340, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1225212, + "componentType": 5126, + "count": 86, + "max": [ + 7.094297416188056e-07, + 0.3614475727081299, + 0.0268414244055748 + ], + "min": [ + 1.7298795285114466e-07, + 0.3614463806152344, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 604684, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 783744, + "componentType": 5126, + "count": 86, + "max": [ + 1.4901161193847656e-08, + 3.0035202769340685e-08, + 3.7252894102834944e-09, + 1.0 + ], + "min": [ + -1.4901159417490817e-08, + -2.2817333800162487e-08, + -2.9802320611338473e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 605028, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1226244, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000004768371582, + 0.9999999403953552, + 1.0000005960464478 + ], + "min": [ + 0.9999999403953552, + 0.9999995231628418, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 605368, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1227264, + "componentType": 5126, + "count": 86, + "max": [ + 6.565488206433656e-07, + -0.1583402007818222, + -0.25376492738723755 + ], + "min": [ + 6.050233025689522e-08, + -0.1583411544561386, + -0.25376519560813904 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 605712, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 785120, + "componentType": 5126, + "count": 86, + "max": [ + -0.998119592666626, + 2.1660151006130945e-08, + -2.1506809844140662e-07, + 0.0612967349588871 + ], + "min": [ + -0.998119592666626, + -8.871057666226534e-09, + -2.7235293487137824e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 606056, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1228296, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 606400, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1229328, + "componentType": 5126, + "count": 85, + "max": [ + 1.1920928244535389e-07, + 0.2539477050304413, + 1.7996848100665375e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2539467513561249, + -2.3376085778181732e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 606740, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 786496, + "componentType": 5126, + "count": 86, + "max": [ + 0.1561359167098999, + -1.1542021383093015e-07, + 2.4807746967780986e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.6083355092177953e-07, + -1.547814498792377e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 607084, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1230348, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.000001072883606 + ], + "min": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 607428, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1231380, + "componentType": 5126, + "count": 85, + "max": [ + 2.384185791015625e-07, + 0.2533194422721863, + 1.1717750680872996e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2533189654350281, + -1.1717750680872996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 607768, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 787872, + "componentType": 5126, + "count": 86, + "max": [ + -0.09231436997652054, + 1.346484079789434e-08, + 1.6213396847319927e-08, + 0.995729923248291 + ], + "min": [ + -0.09231439977884293, + -3.2214657608165e-08, + -1.8632622555969647e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 608112, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1232400, + "componentType": 5126, + "count": 86, + "max": [ + 1.0, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 608456, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1233432, + "componentType": 5126, + "count": 86, + "max": [ + 1.1920928955078125e-07, + 0.2637789249420166, + 1.5585824542085902e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2637784481048584, + -1.1644564423818338e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 608800, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 789248, + "componentType": 5126, + "count": 86, + "max": [ + 3.181134289320653e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.1663417609497628e-07 + ], + "min": [ + -6.873365432369383e-09, + -0.9896631240844727, + 0.14341172575950623, + 5.0732985812373954e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 609144, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1234464, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.000001072883606 + ], + "min": [ + 1.0, + 1.0000003576278687, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 609484, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1235484, + "componentType": 5126, + "count": 85, + "max": [ + -2.867069497369812e-07, + 0.2431427538394928, + 0.18703225255012512 + ], + "min": [ + -9.401362035532657e-07, + 0.24314163625240326, + 0.18703138828277588 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 609824, + "componentType": 5126, + "count": 45, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 790624, + "componentType": 5126, + "count": 45, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.37464439868927, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 610004, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1236504, + "componentType": 5126, + "count": 86, + "max": [ + 0.9999995827674866, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999991059303284, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 610348, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1237536, + "componentType": 5126, + "count": 86, + "max": [ + -0.24418959021568298, + -0.13046231865882874, + 0.029650775715708733 + ], + "min": [ + -0.2441902607679367, + -0.13046351075172424, + 0.029650256037712097 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 610692, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 791344, + "componentType": 5126, + "count": 86, + "max": [ + 0.007415765430778265, + -0.0742839127779007, + -0.9923430681228638, + 0.09839732944965363 + ], + "min": [ + 0.007415719795972109, + -0.07428395003080368, + -0.9923430681228638, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 611036, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1238568, + "componentType": 5126, + "count": 86, + "max": [ + 0.9999985098838806, + 1.0000011920928955, + 0.9999995827674866 + ], + "min": [ + 0.9999979734420776, + 1.0000008344650269, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 611380, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1239600, + "componentType": 5126, + "count": 86, + "max": [ + 0.24341878294944763, + -0.13046243786811829, + 0.02964991144835949 + ], + "min": [ + 0.24341823160648346, + -0.1304638683795929, + 0.0296495221555233 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 611724, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 792720, + "componentType": 5126, + "count": 86, + "max": [ + 0.00741744227707386, + 0.07428371161222458, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417390123009682, + 0.0742836594581604, + 0.9923431277275085, + 0.09839746356010437 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 612068, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1240632, + "componentType": 5126, + "count": 86, + "max": [ + 0.9999982714653015, + 1.0000014305114746, + 0.9999992251396179 + ], + "min": [ + 0.9999977946281433, + 1.0000008344650269, + 0.9999987483024597 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 612412, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1241664, + "componentType": 5126, + "count": 86, + "max": [ + -0.04481609910726547, + 0.5170735716819763, + 0.010738357901573181 + ], + "min": [ + -0.04481632262468338, + 0.5170723795890808, + 0.010737927630543709 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 612756, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 794096, + "componentType": 5126, + "count": 85, + "max": [ + -0.4231942296028137, + 0.5955471992492676, + 0.5675856471061707, + 0.50938481092453 + ], + "min": [ + -0.49043551087379456, + 0.4904356300830841, + 0.5093849897384644, + 0.37957438826560974 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 613096, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1242696, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 613440, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1243728, + "componentType": 5126, + "count": 85, + "max": [ + 1.0012671225467784e-07, + 0.23817113041877747, + -0.06534978002309799 + ], + "min": [ + -7.902209472376853e-05, + 0.23812507092952728, + -0.07664728164672852 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 613780, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 795456, + "componentType": 5126, + "count": 86, + "max": [ + 0.23446309566497803, + 0.559610903263092, + 0.8801793456077576, + 0.8912931084632874 + ], + "min": [ + -0.31730759143829346, + -0.09566150605678558, + 0.43828216195106506, + 0.46091046929359436 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 614124, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1244748, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 614468, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1245780, + "componentType": 5126, + "count": 86, + "max": [ + 1.7830845422395214e-07, + 0.4048615097999573, + 4.4678063204628415e-07 + ], + "min": [ + -2.372405418782364e-07, + 0.40486103296279907, + -3.468878517765006e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 614812, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 796832, + "componentType": 5126, + "count": 86, + "max": [ + 0.1296090930700302, + -0.0051194229163229465, + 0.42919567227363586, + 0.9997218251228333 + ], + "min": [ + -0.03408099710941315, + -0.01658608205616474, + -0.08319845795631409, + 0.8938491940498352 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 615156, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1246812, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 615500, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1247844, + "componentType": 5126, + "count": 86, + "max": [ + 2.9275696533659357e-07, + 0.4032707214355469, + 3.036794851141167e-07 + ], + "min": [ + -1.748205704643624e-07, + 0.40327024459838867, + -2.9968046533213055e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 615844, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 798208, + "componentType": 5126, + "count": 85, + "max": [ + 0.05754904821515083, + 0.09904346615076065, + 0.07454776763916016, + 0.997535765171051 + ], + "min": [ + -0.013117868453264236, + 0.056891847401857376, + -0.15432189404964447, + 0.9829562902450562 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 616184, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1248876, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 616528, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1249908, + "componentType": 5126, + "count": 86, + "max": [ + -0.09804210811853409, + 0.21963126957416534, + -0.0024722020607441664 + ], + "min": [ + -0.0980430617928505, + 0.21963024139404297, + -0.0024732027668505907 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 616872, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 799568, + "componentType": 5126, + "count": 86, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315926045179367, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974892288446426, + -0.08315932005643845, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 617216, + "componentType": 5126, + "count": 82, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1250940, + "componentType": 5126, + "count": 82, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 617544, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1251924, + "componentType": 5126, + "count": 85, + "max": [ + 2.2609823702168796e-07, + 0.0975029394030571, + 6.273720600802335e-07 + ], + "min": [ + -1.4177570051288058e-07, + 0.09750223904848099, + -1.0742233058635975e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 617884, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 800944, + "componentType": 5126, + "count": 86, + "max": [ + -0.7917520403862, + 0.05691006779670715, + -0.024417750537395477, + 0.6076954007148743 + ], + "min": [ + -0.7917524576187134, + 0.05690992251038551, + -0.024417879059910774, + 0.6076949238777161 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 618228, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1252944, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 618572, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1253976, + "componentType": 5126, + "count": 86, + "max": [ + 0.016227057203650475, + 0.2130865901708603, + -0.003558976575732231 + ], + "min": [ + 0.01622646301984787, + 0.2130856215953827, + -0.003559913719072938 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 618916, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 802320, + "componentType": 5126, + "count": 86, + "max": [ + -0.5430817604064941, + 0.06296975910663605, + -0.08177221566438675, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296971440315247, + -0.08177228271961212, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 619260, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1255008, + "componentType": 5126, + "count": 86, + "max": [ + 1.0, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.999999463558197, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 619604, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1256040, + "componentType": 5126, + "count": 86, + "max": [ + 1.3002734533529292e-07, + 0.08465030044317245, + 2.2787124009937543e-07 + ], + "min": [ + -1.0852881615619481e-07, + 0.08464968204498291, + -7.425102239722037e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 619948, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 803696, + "componentType": 5126, + "count": 86, + "max": [ + -0.7930164933204651, + -0.002046226290985942, + 0.008072719909250736, + 0.6091432571411133 + ], + "min": [ + -0.7930169105529785, + -0.002046367386355996, + 0.00807255506515503, + 0.6091427206993103 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 620292, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1257072, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 620636, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1258104, + "componentType": 5126, + "count": 86, + "max": [ + -0.11189641803503036, + 0.10988935828208923, + -0.05163082852959633 + ], + "min": [ + -0.11189727485179901, + 0.10988855361938477, + -0.051631808280944824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 620980, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 805072, + "componentType": 5126, + "count": 86, + "max": [ + -0.4322457015514374, + -0.12903624773025513, + 0.1503005474805832, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.12903635203838348, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 621324, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1259136, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 621668, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1260168, + "componentType": 5126, + "count": 86, + "max": [ + 4.4288790945756773e-07, + 0.08512412756681442, + 4.657748036152043e-07 + ], + "min": [ + -1.6445564199329965e-07, + 0.08512365072965622, + -2.4863936687324895e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 622012, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 806448, + "componentType": 5126, + "count": 86, + "max": [ + 0.14811435341835022, + -0.12198012322187424, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.12198019027709961, + -0.12739093601703644, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 622356, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1261200, + "componentType": 5126, + "count": 86, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 622700, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1262232, + "componentType": 5126, + "count": 86, + "max": [ + -0.0055846055038273335, + 0.16604486107826233, + -0.045392997562885284 + ], + "min": [ + -0.005585184786468744, + 0.16604413092136383, + -0.045393988490104675 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 623044, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 807824, + "componentType": 5126, + "count": 86, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.10025983303785324, + 0.09005898982286453 + ], + "min": [ + 0.4030705988407135, + -0.9094628691673279, + -0.032256729900836945, + 0.014726565219461918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 623388, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1263264, + "componentType": 5126, + "count": 85, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 623728, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1264284, + "componentType": 5126, + "count": 86, + "max": [ + 0.13640333712100983, + 0.2850474715232849, + 0.0019399767043069005 + ], + "min": [ + 0.13640306890010834, + 0.2850469946861267, + 0.0019393764669075608 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 624072, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 809200, + "componentType": 5126, + "count": 86, + "max": [ + -5.4788056758070525e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5787286145041435e-07 + ], + "min": [ + -9.494836916701388e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1347530914918025e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 624416, + "componentType": 5126, + "count": 84, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1265316, + "componentType": 5126, + "count": 84, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 624752, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1266324, + "componentType": 5126, + "count": 85, + "max": [ + -0.1364031583070755, + 0.2850474715232849, + 0.0019399772863835096 + ], + "min": [ + -0.13640329241752625, + 0.2850469946861267, + 0.0019396840361878276 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 625092, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 810576, + "componentType": 5126, + "count": 86, + "max": [ + -4.978225831564487e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.771880123324081e-08 + ], + "min": [ + -9.421977864576547e-08, + -0.693580687046051, + -0.7203789949417114, + 2.5627498345670574e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 625436, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1267344, + "componentType": 5126, + "count": 85, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 625776, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1268364, + "componentType": 5126, + "count": 86, + "max": [ + 0.24834856390953064, + 0.9287020564079285, + -0.5615344643592834 + ], + "min": [ + -0.01790938526391983, + 0.5460786819458008, + -0.9679743647575378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 626120, + "componentType": 5126, + "count": 60, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 811952, + "componentType": 5126, + "count": 60, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 626360, + "componentType": 5126, + "count": 53, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1269396, + "componentType": 5126, + "count": 53, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 626572, + "componentType": 5126, + "count": 82, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1270032, + "componentType": 5126, + "count": 82, + "max": [ + 0.3837333917617798, + 0.31698378920555115, + -0.23551751673221588 + ], + "min": [ + -0.013973790220916271, + -0.36083030700683594, + -1.2181895971298218 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 626900, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 812912, + "componentType": 5126, + "count": 86, + "max": [ + 1.0, + 0.13376693427562714, + 0.30130767822265625, + 0.9245160222053528 + ], + "min": [ + -0.9999354481697083, + -0.09159135818481445, + -0.014338843524456024, + 6.776263578034403e-21 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 627244, + "componentType": 5126, + "count": 81, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1271016, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000007152557373, + 1.0000007152557373 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 627568, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1271988, + "componentType": 5126, + "count": 86, + "max": [ + 1.0281801223754883e-06, + 2.1918016557265219e-07, + 3.930073262381484e-07 + ], + "min": [ + -3.738701343536377e-05, + -8.00785273895599e-05, + -7.689294579904526e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 627912, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 814288, + "componentType": 5126, + "count": 86, + "max": [ + -0.9503703713417053, + 1.7975937183223323e-08, + 2.735893644967291e-08, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -2.066292204006004e-08, + -1.6801081414996588e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 628256, + "componentType": 5126, + "count": 84, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1273020, + "componentType": 5126, + "count": 84, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0 + ], + "min": [ + 1.0, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 628592, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1274028, + "componentType": 5126, + "count": 86, + "max": [ + 5.960464477539063e-08, + 0.28249993920326233, + 9.21810041631943e-08 + ], + "min": [ + -5.960465898624534e-08, + 0.282499760389328, + -4.612233794887288e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 628936, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 815664, + "componentType": 5126, + "count": 86, + "max": [ + -7.590811179625234e-08, + 0.9818702340126038, + 0.33442962169647217, + 0.025937287136912346 + ], + "min": [ + -0.010913840495049953, + -0.9812349677085876, + -0.1895543485879898, + 4.187909610209317e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 629280, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1275060, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 629624, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1276092, + "componentType": 5126, + "count": 86, + "max": [ + -0.2627949118614197, + 0.41406357288360596, + -0.5553271770477295 + ], + "min": [ + -0.5469289422035217, + 0.1441277265548706, + -0.7286231517791748 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 629968, + "componentType": 5126, + "count": 60, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 817040, + "componentType": 5126, + "count": 60, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 630208, + "componentType": 5126, + "count": 53, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1277124, + "componentType": 5126, + "count": 53, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 630420, + "componentType": 5126, + "count": 83, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1277760, + "componentType": 5126, + "count": 83, + "max": [ + -0.20423918962478638, + 0.29172587394714355, + -0.20690833032131195 + ], + "min": [ + -0.3318747878074646, + -0.7098480463027954, + -0.37367600202560425 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 630752, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 818000, + "componentType": 5126, + "count": 86, + "max": [ + -0.905817985534668, + 0.0021108367945998907, + 5.520053036889294e-07, + 0.34787335991859436 + ], + "min": [ + -0.9994030594825745, + -0.4236670732498169, + -0.006622763350605965, + 1.9081845437085576e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 631096, + "componentType": 5126, + "count": 79, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1278756, + "componentType": 5126, + "count": 79, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 631412, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1279704, + "componentType": 5126, + "count": 86, + "max": [ + 2.8312206268310547e-07, + 2.3943178462104697e-07, + 5.069637154520024e-07 + ], + "min": [ + -2.5331974029541016e-07, + -5.42657232927013e-07, + -5.408628567238338e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 631756, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 819376, + "componentType": 5126, + "count": 86, + "max": [ + -0.9503704309463501, + -2.4408821630572675e-09, + 7.812869995404981e-08, + 0.3111207187175751 + ], + "min": [ + -0.9503704309463501, + -3.642936263759111e-08, + 2.3374822077926183e-08, + 0.3111206591129303 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 632100, + "componentType": 5126, + "count": 85, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1280736, + "componentType": 5126, + "count": 85, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 632440, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1281756, + "componentType": 5126, + "count": 86, + "max": [ + 5.960464477539063e-08, + 0.28249990940093994, + 3.9706083754253996e-08 + ], + "min": [ + -5.960465188081798e-08, + 0.2824998199939728, + -4.882270587813764e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 632784, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 820752, + "componentType": 5126, + "count": 86, + "max": [ + 0.12551619112491608, + 0.9803227782249451, + 0.1895543485879898, + 0.039266087114810944 + ], + "min": [ + -8.959648312156787e-08, + -0.9818702340126038, + -0.5278369784355164, + 4.2252142407050997e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 633128, + "componentType": 5126, + "count": 86, + "max": [ + 1.4166666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1282788, + "componentType": 5126, + "count": 86, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 633472, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1283820, + "componentType": 5126, + "count": 61, + "max": [ + 0.030920295044779778, + 0.01852046512067318, + -1.3129446506500244 + ], + "min": [ + 0.03092009946703911, + 0.014750760048627853, + -1.4419336318969727 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 633716, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 822128, + "componentType": 5126, + "count": 61, + "max": [ + 0.17797525227069855, + 0.003165341215208173, + 0.21889802813529968, + 0.9840619564056396 + ], + "min": [ + 0.1703726053237915, + -0.06006458401679993, + -0.052434664219617844, + 0.9588790535926819 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 633960, + "componentType": 5126, + "count": 48, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1284552, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 634152, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1285128, + "componentType": 5126, + "count": 61, + "max": [ + 2.980252844508868e-08, + 0.0021274536848068237, + 2.384185791015625e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.002127334475517273, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 634396, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 823104, + "componentType": 5126, + "count": 61, + "max": [ + 0.7162913084030151, + 0.033087071031332016, + 0.0030459524132311344, + 0.697801411151886 + ], + "min": [ + 0.7158957719802856, + -0.03308646008372307, + -0.003046560101211071, + 0.6974161267280579 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 634640, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1285860, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 634884, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1286592, + "componentType": 5126, + "count": 61, + "max": [ + 0.17381834983825684, + 0.13409876823425293, + 1.2937513815813872e-07 + ], + "min": [ + 0.17381826043128967, + 0.13409781455993652, + -1.0688019358440215e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 635128, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 824080, + "componentType": 5126, + "count": 61, + "max": [ + -0.057666514068841934, + 0.10565518587827682, + 0.06050670146942139, + 0.9951615333557129 + ], + "min": [ + -0.8107841610908508, + -0.14381594955921173, + -0.14244207739830017, + 0.5577520132064819 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 635372, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1287324, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 0.9999997615814209, + 0.9999994039535522, + 0.9999990463256836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 635616, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1288056, + "componentType": 5126, + "count": 61, + "max": [ + 1.4017019767109673e-09, + 0.6356115937232971, + 1.2548994732242136e-07 + ], + "min": [ + -7.310410410354962e-08, + 0.635611355304718, + -1.120480987992778e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 635860, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 825056, + "componentType": 5126, + "count": 61, + "max": [ + 0.9512840509414673, + 2.0457619598346355e-08, + -2.4839950540922473e-08, + 0.9381458759307861 + ], + "min": [ + 0.34624019265174866, + -6.397121943280126e-09, + -4.3017993789362663e-07, + 0.3083159029483795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 636104, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1288788, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000001192092896 + ], + "min": [ + 0.999999463558197, + 0.999999463558197, + 0.999998927116394 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 636348, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1289520, + "componentType": 5126, + "count": 61, + "max": [ + -0.17381823062896729, + 0.13409888744354248, + 1.3575119339748198e-07 + ], + "min": [ + -0.17381834983825684, + 0.13409805297851563, + -1.0475483946947861e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 636592, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 826032, + "componentType": 5126, + "count": 61, + "max": [ + -0.09046552330255508, + 0.022398535162210464, + 0.02428232878446579, + 0.9715353846549988 + ], + "min": [ + -0.8220918774604797, + -0.26406872272491455, + -0.08531476557254791, + 0.5677565932273865 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 636836, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1290252, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000007152557373, + 1.0 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 637080, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1290984, + "componentType": 5126, + "count": 61, + "max": [ + 3.602372444788671e-08, + 0.6356115937232971, + 1.2578446728639392e-07 + ], + "min": [ + 6.2213989515669255e-09, + 0.635611355304718, + -6.1274363361008e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 637324, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 827008, + "componentType": 5126, + "count": 61, + "max": [ + 0.9446517825126648, + -5.506762601470427e-09, + 6.094677473811316e-07, + 0.9688584208488464 + ], + "min": [ + 0.2476154863834381, + -3.632345269011239e-08, + -6.612640390812885e-08, + 0.32807475328445435 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 637568, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1291716, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 0.9999998211860657 + ], + "min": [ + 0.9999996423721313, + 0.9999992847442627, + 0.9999984502792358 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 637812, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1292448, + "componentType": 5126, + "count": 60, + "max": [ + 4.4703373447418926e-08, + 0.0021274241153150797, + 2.3841825225190405e-07 + ], + "min": [ + -2.9802315282267955e-08, + 0.0021273642778396606, + -2.3841823804104934e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 638052, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 827984, + "componentType": 5126, + "count": 61, + "max": [ + -0.6347257494926453, + -0.09018838405609131, + 0.1342269331216812, + 0.7545663714408875 + ], + "min": [ + -0.6569554209709167, + -0.09867089986801147, + 0.027730600908398628, + 0.748001754283905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 638296, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1293168, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 638540, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1293900, + "componentType": 5126, + "count": 61, + "max": [ + 8.940696716308594e-08, + 0.2726660966873169, + 6.796709328682482e-08 + ], + "min": [ + -8.940696716308594e-08, + 0.2726656198501587, + -6.411556796592777e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 638784, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 828960, + "componentType": 5126, + "count": 61, + "max": [ + 0.08500946313142776, + 0.056831154972314835, + 0.025103803724050522, + 0.9977352023124695 + ], + "min": [ + 0.033274199813604355, + -0.1896786242723465, + 0.0017134175868704915, + 0.9812494516372681 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 639028, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1294632, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 639272, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1295364, + "componentType": 5126, + "count": 61, + "max": [ + 0.04389946162700653, + 0.527282178401947, + 0.017235733568668365 + ], + "min": [ + 0.0434042364358902, + 0.5233259201049805, + 0.01592695526778698 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 639516, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 829936, + "componentType": 5126, + "count": 61, + "max": [ + -0.41643574833869934, + -0.5195170640945435, + -0.50677490234375, + 0.5068544149398804 + ], + "min": [ + -0.44587448239326477, + -0.5594490766525269, + -0.5240564942359924, + 0.5066189169883728 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 639760, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1296096, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 640004, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1296828, + "componentType": 5126, + "count": 61, + "max": [ + 0.011371600441634655, + 0.23755186796188354, + -0.06375764310359955 + ], + "min": [ + 0.011371183209121227, + 0.23755164444446564, + -0.06375811994075775 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 640248, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 830912, + "componentType": 5126, + "count": 61, + "max": [ + -0.26791340112686157, + 0.12413834035396576, + -0.5327730178833008, + 0.6133264303207397 + ], + "min": [ + -0.5789951086044312, + -0.0899219736456871, + -0.7625279426574707, + 0.5756416320800781 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 640492, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1297560, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 640736, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1298292, + "componentType": 5126, + "count": 61, + "max": [ + 1.4591216768167214e-07, + 0.4048615097999573, + 4.4562102630152367e-07 + ], + "min": [ + -2.5126215064119606e-07, + 0.4048610031604767, + 8.686452446227122e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 640980, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 831888, + "componentType": 5126, + "count": 61, + "max": [ + 0.12480750679969788, + 0.5269917845726013, + -0.019818810746073723, + 0.8778294324874878 + ], + "min": [ + 0.07776034623384476, + 0.4620020091533661, + -0.23531833291053772, + 0.8129319548606873 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 641224, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1299024, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 641464, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1299744, + "componentType": 5126, + "count": 61, + "max": [ + 1.22318198236826e-07, + 0.4032706022262573, + 1.8671066470687947e-07 + ], + "min": [ + -1.20918258517122e-07, + 0.4032703936100006, + -1.769871573742421e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 641708, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 832864, + "componentType": 5126, + "count": 61, + "max": [ + 0.00857542734593153, + 0.39465612173080444, + 0.12396229803562164, + 0.9924142956733704 + ], + "min": [ + -0.1101657897233963, + 0.10415221005678177, + 0.06475096195936203, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 641952, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1300476, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 642196, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1301208, + "componentType": 5126, + "count": 61, + "max": [ + 0.09804274886846542, + 0.21963074803352356, + -0.0024725475814193487 + ], + "min": [ + 0.09804237633943558, + 0.2196303904056549, + -0.0024729312863200903 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 642440, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 833840, + "componentType": 5126, + "count": 61, + "max": [ + -0.622336745262146, + -0.0009816769743338227, + 0.03366418927907944, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817080572247505, + 0.03366414085030556, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 642684, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1301940, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 642928, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1302672, + "componentType": 5126, + "count": 61, + "max": [ + 1.3725687608712178e-07, + 0.09750279784202576, + 4.170604199771333e-07 + ], + "min": [ + -1.027992269087008e-07, + 0.09750255942344666, + 2.5214785637217574e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 643172, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 834816, + "componentType": 5126, + "count": 61, + "max": [ + -0.5302279591560364, + 0.00246594101190567, + -0.053395964205265045, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.002465911442413926, + -0.053396016359329224, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 643416, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1303404, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 643660, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1304136, + "componentType": 5126, + "count": 61, + "max": [ + -0.016226647421717644, + 0.21308633685112, + -0.00355923012830317 + ], + "min": [ + -0.016227032989263535, + 0.21308591961860657, + -0.003559740958735347 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 643904, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 835792, + "componentType": 5126, + "count": 61, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 644148, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1304868, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 644392, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1305600, + "componentType": 5126, + "count": 61, + "max": [ + 1.1310732617175745e-07, + 0.0846501961350441, + -2.1033550012816704e-07 + ], + "min": [ + -1.8551887137618905e-07, + 0.08464972674846649, + -3.6027483929501614e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 644636, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 836768, + "componentType": 5126, + "count": 61, + "max": [ + -0.5015431642532349, + -0.0011796632315963507, + -0.00824394728988409, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797338956966996, + -0.008243998512625694, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 644880, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1306332, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 645124, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1307064, + "componentType": 5126, + "count": 61, + "max": [ + 0.11189698427915573, + 0.10988958925008774, + -0.05163117125630379 + ], + "min": [ + 0.11189641803503036, + 0.10988911241292953, + -0.05163153260946274 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 645368, + "componentType": 5126, + "count": 58, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 837744, + "componentType": 5126, + "count": 58, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.8147835731506348 + ], + "min": [ + -0.45730361342430115, + 0.16493290662765503, + -0.3159089684486389, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 645600, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1307796, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.9999993443489075, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 645844, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1308528, + "componentType": 5126, + "count": 61, + "max": [ + 6.140090391681952e-08, + 0.08512423187494278, + 6.682350317532837e-08 + ], + "min": [ + -1.460301888300819e-07, + 0.08512375503778458, + -3.925729430420688e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 646088, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 838672, + "componentType": 5126, + "count": 61, + "max": [ + 0.022910580039024353, + 0.012835773639380932, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910522297024727, + 0.012835710309445858, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 646332, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1309260, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000007152557373, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 646576, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1309992, + "componentType": 5126, + "count": 61, + "max": [ + 0.005585134495049715, + 0.16604462265968323, + -0.04539323225617409 + ], + "min": [ + 0.00558475824072957, + 0.16604427993297577, + -0.04539371654391289 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 646820, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 839648, + "componentType": 5126, + "count": 61, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192680954933, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 647064, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1310724, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 647304, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1311444, + "componentType": 5126, + "count": 61, + "max": [ + 1.4901161193847656e-07, + 0.5450076460838318, + 1.7761462345333712e-07 + ], + "min": [ + -1.4901161193847656e-07, + 0.5450069308280945, + -1.382627488055732e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 647548, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 840624, + "componentType": 5126, + "count": 61, + "max": [ + -0.041277848184108734, + 0.13720501959323883, + -0.026515411213040352, + 0.9898137450218201 + ], + "min": [ + -0.046759769320487976, + 0.13364821672439575, + -0.040749441832304, + 0.9885989427566528 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 647792, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1312176, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 648036, + "componentType": 5126, + "count": 59, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1312908, + "componentType": 5126, + "count": 59, + "max": [ + 8.940695295223122e-08, + 0.11002850532531738, + 1.1734665150697765e-07 + ], + "min": [ + -5.960465898624534e-08, + 0.11002802848815918, + -1.210719347000122e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 648272, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 841600, + "componentType": 5126, + "count": 61, + "max": [ + -0.06002672016620636, + 0.13640817999839783, + -0.029043180868029594, + 0.9888538122177124 + ], + "min": [ + -0.06548453867435455, + 0.1331218183040619, + -0.04334208741784096, + 0.9875353574752808 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 648516, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1313616, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 648760, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1314348, + "componentType": 5126, + "count": 60, + "max": [ + 4.4120884012954775e-07, + 0.3614475727081299, + 0.026841633021831512 + ], + "min": [ + 3.219995505787665e-07, + 0.3614461421966553, + 0.02684115618467331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 649000, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 842576, + "componentType": 5126, + "count": 61, + "max": [ + 1.4901161193847656e-08, + 5.587994955646991e-09, + -3.7252894102834944e-09, + 1.0 + ], + "min": [ + -2.2351748896198842e-08, + 6.039613253960852e-14, + -1.4901164746561335e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 649244, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1315068, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 0.9999998211860657, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.999999463558197, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 649488, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1315800, + "componentType": 5126, + "count": 61, + "max": [ + 3.585256820315408e-07, + -0.1583396941423416, + -0.2537648677825928 + ], + "min": [ + 1.2010696082143113e-07, + -0.15834136307239532, + -0.25376543402671814 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 649732, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 843552, + "componentType": 5126, + "count": 61, + "max": [ + -0.998119592666626, + -1.027745333281871e-09, + -2.1228142088602908e-07, + 0.0612967424094677 + ], + "min": [ + -0.998119592666626, + -1.647175196239914e-08, + -2.2157712464832002e-07, + 0.06129668280482292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 649976, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1316532, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 650220, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1317264, + "componentType": 5126, + "count": 61, + "max": [ + 5.960467319710006e-08, + 0.2539476156234741, + 3.301346396256122e-07 + ], + "min": [ + -5.960467319710006e-08, + 0.2539469003677368, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 650464, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 844528, + "componentType": 5126, + "count": 61, + "max": [ + 0.1561359465122223, + -1.3807944299060182e-07, + 4.759649563368384e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.5008556886186852e-07, + -4.730170921618537e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 650708, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1317996, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.000001072883606 + ], + "min": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 650948, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1318716, + "componentType": 5126, + "count": 61, + "max": [ + 2.9802322387695313e-08, + 0.25331947207450867, + 2.124395166447357e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.2533188462257385, + -2.5627051059018413e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 651192, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 845504, + "componentType": 5126, + "count": 61, + "max": [ + -0.09231434017419815, + -1.5006586195909222e-08, + 1.7197629986753782e-09, + 0.995729923248291 + ], + "min": [ + -0.09231441468000412, + -2.2941200938930706e-08, + -7.725644124434439e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 651436, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1319448, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 651680, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1320180, + "componentType": 5126, + "count": 61, + "max": [ + 2.980233304583635e-08, + 0.2637788951396942, + 1.8443469684825686e-07 + ], + "min": [ + -5.960463411724959e-08, + 0.26377832889556885, + -6.52253930866209e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 651924, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 846480, + "componentType": 5126, + "count": 61, + "max": [ + 1.0224912472267533e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.739382906242099e-08 + ], + "min": [ + -8.208989932256827e-09, + -0.9896631240844727, + 0.14341171085834503, + 8.066159296049591e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 652168, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1320912, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000004768371582, + 1.0000009536743164, + 1.0000009536743164 + ], + "min": [ + 1.0, + 1.0000003576278687, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 652408, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1321632, + "componentType": 5126, + "count": 61, + "max": [ + -2.500405855698773e-07, + 0.24314241111278534, + 0.1870320588350296 + ], + "min": [ + -6.422462206501223e-07, + 0.24314141273498535, + 0.18703141808509827 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 652652, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 847456, + "componentType": 5126, + "count": 60, + "max": [ + 0.447833776473999, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266476392745972, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 652892, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1322364, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999995827674866, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999992251396179, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 653136, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1323096, + "componentType": 5126, + "count": 61, + "max": [ + -0.24418944120407104, + -0.13046208024024963, + 0.02965075895190239 + ], + "min": [ + -0.2441897839307785, + -0.13046371936798096, + 0.029650384560227394 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 653380, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 848416, + "componentType": 5126, + "count": 61, + "max": [ + 0.007415752857923508, + -0.0742838978767395, + -0.9923430681228638, + 0.09839731454849243 + ], + "min": [ + 0.007415744476020336, + -0.07428394258022308, + -0.9923430681228638, + 0.09839731454849243 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 653624, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1323828, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999986290931702, + 1.000001311302185, + 0.9999997019767761 + ], + "min": [ + 0.9999979734420776, + 1.0000008344650269, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 653868, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1324560, + "componentType": 5126, + "count": 61, + "max": [ + 0.2434186041355133, + -0.130462184548378, + 0.029649950563907623 + ], + "min": [ + 0.24341826140880585, + -0.1304638385772705, + 0.02964949421584606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 654112, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 849392, + "componentType": 5126, + "count": 61, + "max": [ + 0.007417431566864252, + 0.07428368926048279, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417414803057909, + 0.0742836594581604, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 654356, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1325292, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999982714653015, + 1.0000014305114746, + 0.9999991059303284 + ], + "min": [ + 0.9999979138374329, + 1.0000008344650269, + 0.9999987483024597 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 654600, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1326024, + "componentType": 5126, + "count": 61, + "max": [ + -0.043513692915439606, + 0.5108200311660767, + 0.005194049794226885 + ], + "min": [ + -0.04389951378107071, + 0.5084008574485779, + 0.004240342881530523 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 654844, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 850368, + "componentType": 5126, + "count": 61, + "max": [ + -0.6078330278396606, + 0.4432215988636017, + 0.49134814739227295, + 0.4451964497566223 + ], + "min": [ + -0.6331780552864075, + 0.43693962693214417, + 0.4855507016181946, + 0.40851038694381714 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 655088, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1326756, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 655332, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1327488, + "componentType": 5126, + "count": 61, + "max": [ + 0.013037212193012238, + 0.23821106553077698, + -0.08786265552043915 + ], + "min": [ + 0.01303679496049881, + 0.23821096122264862, + -0.08786337077617645 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 655576, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 851344, + "componentType": 5126, + "count": 61, + "max": [ + -0.6461573839187622, + 0.5734526515007019, + -0.25350314378738403, + 0.4351653754711151 + ], + "min": [ + -0.6461575627326965, + 0.5734525322914124, + -0.25350335240364075, + 0.4351651072502136 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 655820, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1328220, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999998211860657, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 656064, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1328952, + "componentType": 5126, + "count": 61, + "max": [ + 1.020051598743521e-07, + 0.4048615097999573, + 2.6950320375362935e-07 + ], + "min": [ + -1.0189211252509267e-07, + 0.40486103296279907, + 1.4322277763767488e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 656308, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 852320, + "componentType": 5126, + "count": 61, + "max": [ + -0.07451162487268448, + 0.4991835951805115, + -0.01350371353328228, + 0.8614022135734558 + ], + "min": [ + -0.14566107094287872, + 0.49573081731796265, + -0.057009387761354446, + 0.8560674786567688 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 656552, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1329684, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 656796, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1330416, + "componentType": 5126, + "count": 61, + "max": [ + 6.162180454793997e-08, + 0.4032707214355469, + 6.24442222374455e-08 + ], + "min": [ + -7.512303312751101e-08, + 0.4032703638076782, + -1.2083586398148327e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 657040, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 853296, + "componentType": 5126, + "count": 61, + "max": [ + -0.010307996533811092, + -0.0454464852809906, + 0.0735880509018898, + 0.9969703555107117 + ], + "min": [ + -0.14178107678890228, + -0.04622527211904526, + -0.04010149836540222, + 0.9880408048629761 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 657284, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1331148, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 657528, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1331880, + "componentType": 5126, + "count": 61, + "max": [ + -0.09804248064756393, + 0.21963082253932953, + -0.002472452586516738 + ], + "min": [ + -0.09804259985685349, + 0.21963045001029968, + -0.0024729350116103888 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 657772, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 854272, + "componentType": 5126, + "count": 61, + "max": [ + -0.5146674513816833, + 0.049974940717220306, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974892288446426, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 658016, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1332612, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0000001192092896, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 658260, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1333344, + "componentType": 5126, + "count": 61, + "max": [ + 7.447462735399313e-08, + 0.09750271588563919, + 4.87283159600338e-07 + ], + "min": [ + -1.0595390875778321e-07, + 0.09750247001647949, + 2.454554817177268e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 658504, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 855248, + "componentType": 5126, + "count": 61, + "max": [ + -0.4217608869075775, + 0.06273207813501358, + 0.009731834754347801, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273199617862701, + 0.009731787256896496, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 658748, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1334076, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 658992, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1334808, + "componentType": 5126, + "count": 61, + "max": [ + 0.01622694358229637, + 0.21308626234531403, + -0.0035592392086982727 + ], + "min": [ + 0.01622668467462063, + 0.2130858451128006, + -0.0035596895031630993 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 659236, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 856224, + "componentType": 5126, + "count": 61, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 659480, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1335540, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999998807907104, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 659724, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1336272, + "componentType": 5126, + "count": 61, + "max": [ + 7.221394326961672e-08, + 0.08465001732110977, + -1.3429091438865726e-07 + ], + "min": [ + -1.0942030570504357e-07, + 0.08464983105659485, + -3.7018813259237504e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 659968, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 857200, + "componentType": 5126, + "count": 61, + "max": [ + -0.4092182219028473, + 0.002027458744123578, + 0.008077428676187992, + 0.9123985767364502 + ], + "min": [ + -0.40921837091445923, + 0.0020274207927286625, + 0.008077397011220455, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 660212, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1337004, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995231628418, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 660456, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1337736, + "componentType": 5126, + "count": 61, + "max": [ + -0.1118965744972229, + 0.109889455139637, + -0.05163109302520752 + ], + "min": [ + -0.11189673840999603, + 0.1098891943693161, + -0.05163156986236572 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 660700, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 858176, + "componentType": 5126, + "count": 61, + "max": [ + -0.432245671749115, + -0.12903621792793274, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 660944, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1338468, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 661188, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1339200, + "componentType": 5126, + "count": 61, + "max": [ + 1.7069696767180176e-08, + 0.08512397855520248, + 1.1336582872445433e-07 + ], + "min": [ + -9.57182493266373e-08, + 0.08512376993894577, + -1.2996603970805154e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 661432, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 859152, + "componentType": 5126, + "count": 61, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802051782608, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 661676, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1339932, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 661920, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1340664, + "componentType": 5126, + "count": 61, + "max": [ + -0.005584770813584328, + 0.16604474186897278, + -0.045393235981464386 + ], + "min": [ + -0.0055849794298410416, + 0.16604430973529816, + -0.04539372771978378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 662164, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 860128, + "componentType": 5126, + "count": 61, + "max": [ + 0.6181666851043701, + 0.8114861249923706, + 0.03350190445780754, + 0.023865384981036186 + ], + "min": [ + -0.5958588123321533, + -0.8014400601387024, + -0.02121136710047722, + 0.0002168641658499837 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 662408, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1341396, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 662652, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1342128, + "componentType": 5126, + "count": 61, + "max": [ + 0.13640332221984863, + 0.2850474715232849, + 0.0019399125594645739 + ], + "min": [ + 0.1364031434059143, + 0.2850469946861267, + 0.001939500099979341 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 662896, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 861104, + "componentType": 5126, + "count": 61, + "max": [ + -5.3292833257501115e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.591977110138032e-07 + ], + "min": [ + -9.75167537831112e-08, + -0.693580687046051, + -0.7203789949417114, + 1.1884355188840345e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 663140, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1342860, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 663384, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1343592, + "componentType": 5126, + "count": 61, + "max": [ + -0.1364031881093979, + 0.28504759073257446, + 0.0019401009194552898 + ], + "min": [ + -0.13640333712100983, + 0.2850469946861267, + 0.0019396244315430522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 663628, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 862080, + "componentType": 5126, + "count": 61, + "max": [ + -5.8725692753114345e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.890057673876072e-08 + ], + "min": [ + -1.0314927578747302e-07, + -0.693580687046051, + -0.7203789949417114, + 3.1094565144940134e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 663872, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1344324, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 664116, + "componentType": 5126, + "count": 52, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1345056, + "componentType": 5126, + "count": 52, + "max": [ + 0.09774680435657501, + 0.7653148770332336, + -0.6478449702262878 + ], + "min": [ + 0.06270775943994522, + 0.7535700798034668, + -0.6726421117782593 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 664324, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1345680, + "componentType": 5126, + "count": 61, + "max": [ + 0.1291302889585495, + 0.8279074430465698, + -0.21651506423950195 + ], + "min": [ + 0.08663048595190048, + -0.812365710735321, + -0.7977991104125977 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 664568, + "componentType": 5126, + "count": 48, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 863056, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 0.00317389820702374, + 0.007687173318117857, + 0.8445789217948914 + ], + "min": [ + -0.9999651312828064, + -0.010876327753067017, + -0.05923601612448692, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 664760, + "componentType": 5126, + "count": 38, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1346412, + "componentType": 5126, + "count": 38, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 664912, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1346868, + "componentType": 5126, + "count": 61, + "max": [ + 1.0542571544647217e-05, + 3.3903823350556195e-05, + -1.4326163181976881e-05 + ], + "min": [ + -6.534159183502197e-06, + -7.96340245869942e-05, + -0.00011693986743921414 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 665156, + "componentType": 5126, + "count": 41, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 863824, + "componentType": 5126, + "count": 41, + "max": [ + -0.9503703713417053, + -2.3972310803088703e-09, + -4.9574935268026366e-09, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.034730345850221e-08, + -1.3808504562007329e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 665320, + "componentType": 5126, + "count": 47, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1347600, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 665508, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1348164, + "componentType": 5126, + "count": 61, + "max": [ + 1.4901161193847656e-08, + 0.2824999690055847, + 1.199147448005533e-07 + ], + "min": [ + -1.4901161193847656e-08, + 0.282499760389328, + -1.2355764056337648e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 665752, + "componentType": 5126, + "count": 54, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 864480, + "componentType": 5126, + "count": 54, + "max": [ + 4.800156966666691e-05, + 0.9997302293777466, + 0.06998366862535477, + 0.031070096418261528 + ], + "min": [ + -0.002480928087607026, + 0.9818702340126038, + -0.1895543783903122, + 4.225299790050485e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 665968, + "componentType": 5126, + "count": 57, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1348896, + "componentType": 5126, + "count": 57, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 666196, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1349580, + "componentType": 5126, + "count": 61, + "max": [ + -0.0627092495560646, + 0.7653148770332336, + -0.6478447318077087 + ], + "min": [ + -0.12563513219356537, + 0.7535700798034668, + -0.6726419925689697 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 666440, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1350312, + "componentType": 5126, + "count": 61, + "max": [ + -0.08663149923086166, + 0.6976264715194702, + -0.21651476621627808 + ], + "min": [ + -0.1291307657957077, + -0.812365710735321, + -0.7977988123893738 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 666684, + "componentType": 5126, + "count": 48, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 865344, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 0.010877260938286781, + 0.059236615896224976, + 0.8445789217948914 + ], + "min": [ + -0.9999651312828064, + -0.003173240227624774, + -0.005272650625556707, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 666876, + "componentType": 5126, + "count": 36, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1351044, + "componentType": 5126, + "count": 36, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 667020, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1351476, + "componentType": 5126, + "count": 61, + "max": [ + 1.4677643775939941e-06, + 2.478182068443857e-05, + -7.132427526812535e-06 + ], + "min": [ + -1.6361474990844727e-05, + -8.768981206230819e-05, + -0.00010622024274198338 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 667264, + "componentType": 5126, + "count": 46, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 866112, + "componentType": 5126, + "count": 46, + "max": [ + -0.9503704309463501, + -1.1495107976600138e-08, + 5.3074394656960067e-08, + 0.3111207187175751 + ], + "min": [ + -0.9503704309463501, + -1.8302003468306793e-08, + 4.692620692026139e-08, + 0.3111206591129303 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 667448, + "componentType": 5126, + "count": 44, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1352208, + "componentType": 5126, + "count": 44, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 667624, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1352736, + "componentType": 5126, + "count": 61, + "max": [ + 1.4901173628345532e-08, + 0.2824999690055847, + 1.254614829804268e-07 + ], + "min": [ + -1.4901161193847656e-08, + 0.2824997007846832, + -1.2355764056337648e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 667868, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 866848, + "componentType": 5126, + "count": 61, + "max": [ + -8.174779253522502e-08, + -0.9818702340126038, + 0.1895543783903122, + 0.024893177673220634 + ], + "min": [ + -0.0033472105860710144, + -0.9997414946556091, + -0.017656024545431137, + 4.2344444750597177e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 668112, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1353468, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 668356, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1354200, + "componentType": 5126, + "count": 31, + "max": [ + 0.0, + 0.0, + 10.61367416381836 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 668480, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1354572, + "componentType": 5126, + "count": 31, + "max": [ + 0.3055782914161682, + 0.028904303908348083, + -1.3657819032669067 + ], + "min": [ + 0.030920257791876793, + -0.09227294474840164, + -1.5298041105270386 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 668604, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 867824, + "componentType": 5126, + "count": 31, + "max": [ + 0.11102399975061417, + 0.07410639524459839, + 0.2266366183757782, + 0.9982361793518066 + ], + "min": [ + -0.00625523691996932, + -0.02338298223912716, + -0.12641000747680664, + 0.9673483371734619 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 668728, + "componentType": 5126, + "count": 29, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1354944, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 668844, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1355292, + "componentType": 5126, + "count": 31, + "max": [ + 4.768370445162873e-07, + 0.0021283477544784546, + 1.1920950271360198e-07 + ], + "min": [ + -3.5762786865234375e-07, + 0.002126917243003845, + -1.19209701665568e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 668968, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 868320, + "componentType": 5126, + "count": 31, + "max": [ + 0.7071067690849304, + 3.115756612714904e-07, + -3.0095665692897455e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.952355373508908e-07, + -3.1729678084957413e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 669092, + "componentType": 5126, + "count": 30, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1355664, + "componentType": 5126, + "count": 30, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 669212, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1356024, + "componentType": 5126, + "count": 31, + "max": [ + 0.1738191545009613, + 0.13409888744354248, + 1.9214808162359986e-06 + ], + "min": [ + 0.1738179624080658, + 0.13409805297851563, + -2.8440074402169557e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 669336, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 868816, + "componentType": 5126, + "count": 31, + "max": [ + 0.06386587023735046, + 0.15582606196403503, + 0.03591185435652733, + 0.9963818192481995 + ], + "min": [ + -0.3938601315021515, + -0.014210418798029423, + -0.29433736205101013, + 0.8725740909576416 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 669460, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1356396, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.999999463558197, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 669584, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1356768, + "componentType": 5126, + "count": 31, + "max": [ + 9.08086690287746e-08, + 0.6356120705604553, + 9.494041250945884e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356109976768494, + -9.478360425418941e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 669708, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 869312, + "componentType": 5126, + "count": 31, + "max": [ + 0.5406663417816162, + 2.789073683118204e-08, + 8.123229200407422e-09, + 0.9490509629249573 + ], + "min": [ + 0.31512266397476196, + -4.441348622208352e-09, + -3.064403415464767e-07, + 0.8412371277809143 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 669832, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1357140, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 669956, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1357512, + "componentType": 5126, + "count": 31, + "max": [ + -0.17381736636161804, + 0.13409888744354248, + 2.8686276891676243e-06 + ], + "min": [ + -0.17381927371025085, + 0.13409800827503204, + -2.8461327019613236e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 670080, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 869808, + "componentType": 5126, + "count": 31, + "max": [ + -0.008437179028987885, + 0.03082897886633873, + 0.27899253368377686, + 0.9602289199829102 + ], + "min": [ + -0.20169909298419952, + -0.19681191444396973, + 0.18164964020252228, + 0.950309693813324 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 670204, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1357884, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999993443489075, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 670328, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1358256, + "componentType": 5126, + "count": 31, + "max": [ + 2.5954113880288787e-07, + 0.6356117129325867, + 9.74212184701173e-07 + ], + "min": [ + -2.1729601940023713e-07, + 0.6356112957000732, + -9.475414799453574e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 670452, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 870304, + "componentType": 5126, + "count": 31, + "max": [ + 0.39799538254737854, + 2.0508879927660928e-08, + 2.2367916585608327e-07, + 0.9964644908905029 + ], + "min": [ + 0.08401539921760559, + -1.3455343783608242e-10, + 2.9215756924827474e-08, + 0.9173874258995056 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 670576, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1358628, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.999999463558197, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 670700, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1359000, + "componentType": 5126, + "count": 31, + "max": [ + 4.768372718899627e-07, + 0.0021283479873090982, + 2.3841823804104934e-07 + ], + "min": [ + -3.5762786865234375e-07, + 0.002126917243003845, + -1.1920916875851617e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 670824, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 870800, + "componentType": 5126, + "count": 31, + "max": [ + -0.6469366550445557, + 0.25932008028030396, + 0.054463937878608704, + 0.7524511218070984 + ], + "min": [ + -0.662205159664154, + -0.1021479144692421, + -0.27733132243156433, + 0.6556418538093567 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 670948, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1359372, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671072, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1359744, + "componentType": 5126, + "count": 31, + "max": [ + 9.5367431640625e-07, + 0.2726661264896393, + 4.806087190445396e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.2726655900478363, + -4.810743803318474e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671196, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 871296, + "componentType": 5126, + "count": 31, + "max": [ + 0.07734273374080658, + 0.07503049075603485, + 0.08712024986743927, + 0.9986624121665955 + ], + "min": [ + -0.061717502772808075, + -0.047684166580438614, + 0.010830226354300976, + 0.9920455813407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 671320, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1360116, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671444, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1360488, + "componentType": 5126, + "count": 31, + "max": [ + 0.04481901228427887, + 0.5170735716819763, + 0.010738937184214592 + ], + "min": [ + 0.04481424391269684, + 0.5170727968215942, + 0.010737022385001183 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671568, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 871792, + "componentType": 5126, + "count": 31, + "max": [ + -0.45309457182884216, + -0.4771987497806549, + -0.4950304925441742, + 0.5271652340888977 + ], + "min": [ + -0.49982520937919617, + -0.5265557169914246, + -0.5271767973899841, + 0.4894169867038727 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 671692, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1360860, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671816, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1361232, + "componentType": 5126, + "count": 31, + "max": [ + 0.023542404174804688, + 0.2365155965089798, + -0.11545213311910629 + ], + "min": [ + 0.023539066314697266, + 0.23651082813739777, + -0.11545310914516449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 671940, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 872288, + "componentType": 5126, + "count": 31, + "max": [ + -0.0212381761521101, + 0.07344163954257965, + 0.2185075581073761, + 0.9992491006851196 + ], + "min": [ + -0.5323023796081543, + -0.0077526383101940155, + -0.6267623901367188, + 0.5642955899238586 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 672064, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1361604, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 672188, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1361976, + "componentType": 5126, + "count": 31, + "max": [ + 4.7342115294668474e-07, + 0.4048632085323334, + 3.4201397625110985e-07 + ], + "min": [ + -4.50693391940149e-07, + 0.4048602879047394, + -7.099338006355538e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 672312, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 872784, + "componentType": 5126, + "count": 31, + "max": [ + 0.3748905658721924, + 0.2842334806919098, + -0.5385973453521729, + 0.7792678475379944 + ], + "min": [ + 0.14787138998508453, + -0.12491855025291443, + -0.885048508644104, + 0.26013490557670593 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 672436, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1362348, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 672560, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1362720, + "componentType": 5126, + "count": 31, + "max": [ + 8.122788699438388e-07, + 0.4032723903656006, + 1.8628833231559838e-07 + ], + "min": [ + -9.446636113352724e-07, + 0.403269499540329, + -2.7273787850390363e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 672684, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 873280, + "componentType": 5126, + "count": 31, + "max": [ + -0.016951901838183403, + 0.41622501611709595, + 0.28286996483802795, + 0.9816673994064331 + ], + "min": [ + -0.21605175733566284, + -0.2645830810070038, + 0.02532969042658806, + 0.8639757037162781 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 672808, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1363092, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 672932, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1363464, + "componentType": 5126, + "count": 31, + "max": [ + 0.09804406017065048, + 0.2196321189403534, + -0.0024718926288187504 + ], + "min": [ + 0.09804127365350723, + 0.21962948143482208, + -0.0024736577179282904 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 673056, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 873776, + "componentType": 5126, + "count": 31, + "max": [ + -0.622336745262146, + -0.000981657998636365, + 0.03366420418024063, + 0.7820247411727905 + ], + "min": [ + -0.6223368048667908, + -0.0009817234240472317, + 0.03366414085030556, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 673180, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1363836, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 673304, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1364208, + "componentType": 5126, + "count": 31, + "max": [ + 9.762347872310784e-07, + 0.09750301390886307, + 1.331497401224624e-06 + ], + "min": [ + -4.855081670029904e-07, + 0.09750215709209442, + -5.798959250569169e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 673428, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 874272, + "componentType": 5126, + "count": 31, + "max": [ + -0.5302280783653259, + 0.0024659496266394854, + -0.05339595675468445, + 0.8461683988571167 + ], + "min": [ + -0.5302281975746155, + 0.0024658883921802044, + -0.05339600890874863, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 673552, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1364580, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 673676, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1364952, + "componentType": 5126, + "count": 31, + "max": [ + -0.01622486114501953, + 0.2130875289440155, + -0.0035587791353464127 + ], + "min": [ + -0.016229717060923576, + 0.21308442950248718, + -0.0035599512048065662 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 673800, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 874768, + "componentType": 5126, + "count": 31, + "max": [ + -0.626492977142334, + -0.07110270112752914, + 0.07480834424495697, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 673924, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1365324, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674048, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1365696, + "componentType": 5126, + "count": 31, + "max": [ + 9.466033930038975e-07, + 0.08465034514665604, + 2.0930001198848913e-07 + ], + "min": [ + -9.653942925069714e-07, + 0.0846497192978859, + -1.2578248060890473e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674172, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 875264, + "componentType": 5126, + "count": 31, + "max": [ + -0.5015432834625244, + -0.0011796694016084075, + -0.0082439836114645, + 0.8650925159454346 + ], + "min": [ + -0.5015432834625244, + -0.0011797139886766672, + -0.008244024589657784, + 0.8650924563407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 674296, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1366068, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674420, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1366440, + "componentType": 5126, + "count": 31, + "max": [ + 0.11189819872379303, + 0.10989080369472504, + -0.051630422472953796 + ], + "min": [ + 0.11189520359039307, + 0.10988777875900269, + -0.05163215845823288 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674544, + "componentType": 5126, + "count": 29, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 875760, + "componentType": 5126, + "count": 29, + "max": [ + -0.4573034644126892, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493290662765503, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 674660, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1366812, + "componentType": 5126, + "count": 31, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674784, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1367184, + "componentType": 5126, + "count": 31, + "max": [ + 4.533828814601293e-07, + 0.08512470871210098, + 9.680736638983944e-07 + ], + "min": [ + -2.493238753231708e-07, + 0.08512328565120697, + -9.567246479491587e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 674908, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 876224, + "componentType": 5126, + "count": 31, + "max": [ + 0.022910557687282562, + 0.012835778295993805, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910498082637787, + 0.012835733592510223, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 675032, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1367556, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 675156, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1367928, + "componentType": 5126, + "count": 31, + "max": [ + 0.005586869083344936, + 0.1660461127758026, + -0.045392971485853195 + ], + "min": [ + 0.005582715384662151, + 0.16604337096214294, + -0.04539421945810318 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 675280, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 876720, + "componentType": 5126, + "count": 31, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.023865394294261932 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.02386537194252014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 675404, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1368300, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 675528, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1368672, + "componentType": 5126, + "count": 31, + "max": [ + 9.536744300930877e-07, + 0.5450075268745422, + 4.799413204636949e-07 + ], + "min": [ + -1.9073486328125e-06, + 0.5450068116188049, + -4.820826120521815e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 675652, + "componentType": 5126, + "count": 27, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 877216, + "componentType": 5126, + "count": 27, + "max": [ + 0.0903402715921402, + 0.17829090356826782, + 0.05033913627266884, + 0.998749852180481 + ], + "min": [ + -0.011150187812745571, + -0.24730446934700012, + -0.06566912680864334, + 0.9634029269218445 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 675760, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1369044, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 675884, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1369416, + "componentType": 5126, + "count": 31, + "max": [ + 9.5367431640625e-07, + 0.11002874374389648, + 9.51811671257019e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.11002779006958008, + -9.555370752423187e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 676008, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 877648, + "componentType": 5126, + "count": 31, + "max": [ + 0.0720682218670845, + 0.17701448500156403, + 0.055016327649354935, + 0.9991051554679871 + ], + "min": [ + -0.02975105307996273, + -0.24630612134933472, + -0.0690358355641365, + 0.9649417996406555 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 676132, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1369788, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 676256, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1370160, + "componentType": 5126, + "count": 31, + "max": [ + 6.200227744557196e-07, + 0.3614480495452881, + 0.026844047009944916 + ], + "min": [ + 5.377865619493605e-08, + 0.36144518852233887, + 0.02684023231267929 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 676380, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 878144, + "componentType": 5126, + "count": 31, + "max": [ + 7.450580596923828e-09, + 1.1175925962447764e-08, + 3.725293407086383e-09, + 1.0 + ], + "min": [ + -2.9802322387695313e-08, + -1.8625840869646026e-09, + -2.980232949312267e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 676504, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1370532, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 0.9999998807907104, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 0.999999463558197, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 676628, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1370904, + "componentType": 5126, + "count": 31, + "max": [ + 9.545724424242508e-07, + -0.1583394557237625, + -0.25376421213150024 + ], + "min": [ + 8.976011045547239e-10, + -0.15834136307239532, + -0.2537667751312256 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 676752, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 878640, + "componentType": 5126, + "count": 31, + "max": [ + -0.998119592666626, + 1.0583793397245245e-08, + -2.068181714776074e-07, + 0.0612967275083065 + ], + "min": [ + -0.998119592666626, + -1.6129229507555465e-08, + -2.2798613485974784e-07, + 0.06129669025540352 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 676876, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1371276, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000005960464478, + 1.0000007152557373, + 0.9999721050262451 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677000, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1371648, + "componentType": 5126, + "count": 31, + "max": [ + 2.384185791015625e-07, + 0.25394827127456665, + 7.77543505137146e-07 + ], + "min": [ + -1.1920928244535389e-07, + 0.2539461851119995, + -8.773738500167383e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677124, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 879136, + "componentType": 5126, + "count": 31, + "max": [ + 0.1561359167098999, + -1.2820395056678535e-07, + 1.337699284675864e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.5279783838195726e-07, + -3.857703934073697e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 677248, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1372020, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.000001072883606 + ], + "min": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677372, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1372392, + "componentType": 5126, + "count": 31, + "max": [ + 3.5762786865234375e-07, + 0.25332021713256836, + 1.3184680938138627e-06 + ], + "min": [ + -2.384185791015625e-07, + 0.2533179819583893, + -1.3184680938138627e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677496, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 879632, + "componentType": 5126, + "count": 31, + "max": [ + -0.09231436252593994, + -9.95835680583923e-09, + 5.429145133462043e-09, + 0.995729923248291 + ], + "min": [ + -0.09231442213058472, + -4.148812138282665e-08, + -1.2601923060628906e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 677620, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1372764, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677744, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1373136, + "componentType": 5126, + "count": 31, + "max": [ + 1.7881421854326618e-07, + 0.2637791335582733, + 2.0238510387571296e-06 + ], + "min": [ + -1.788138632718983e-07, + 0.2637779712677002, + -7.194869908744295e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 677868, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 880128, + "componentType": 5126, + "count": 31, + "max": [ + 2.0083191998310213e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.51945651195274e-08 + ], + "min": [ + -8.476115809230578e-09, + -0.9896631240844727, + 0.14341171085834503, + 7.632024079384792e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 677992, + "componentType": 5126, + "count": 29, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1373508, + "componentType": 5126, + "count": 29, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000009536743164 + ], + "min": [ + 1.0, + 1.000000238418579, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678108, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1373856, + "componentType": 5126, + "count": 31, + "max": [ + 5.029136787015887e-07, + 0.24314287304878235, + 0.18703360855579376 + ], + "min": [ + -1.988744315895019e-06, + 0.24314095079898834, + 0.1870294064283371 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678232, + "componentType": 5126, + "count": 30, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 880624, + "componentType": 5126, + "count": 30, + "max": [ + 0.447833776473999, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.37464439868927, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 678352, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1374228, + "componentType": 5126, + "count": 31, + "max": [ + 0.9999995827674866, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999991655349731, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678476, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1374600, + "componentType": 5126, + "count": 31, + "max": [ + -0.2441893070936203, + -0.13046178221702576, + 0.0296527910977602 + ], + "min": [ + -0.24418997764587402, + -0.13046342134475708, + 0.029647132381796837 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678600, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 881104, + "componentType": 5126, + "count": 31, + "max": [ + 0.007415756117552519, + -0.0742838978767395, + -0.9923430681228638, + 0.09839737415313721 + ], + "min": [ + 0.0074157421477139, + -0.07428392022848129, + -0.9923431277275085, + 0.09839731454849243 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 678724, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1374972, + "componentType": 5126, + "count": 31, + "max": [ + 0.9999983906745911, + 1.0000014305114746, + 0.9999997019767761 + ], + "min": [ + 0.9999979734420776, + 1.0000009536743164, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678848, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1375344, + "componentType": 5126, + "count": 31, + "max": [ + 0.2434188723564148, + -0.130462184548378, + 0.029652033001184464 + ], + "min": [ + 0.2434181421995163, + -0.13046380877494812, + 0.02964826114475727 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 678972, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 881600, + "componentType": 5126, + "count": 31, + "max": [ + 0.007417429704219103, + 0.07428368180990219, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417414803057909, + 0.0742836594581604, + 0.9923431277275085, + 0.09839750826358795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 679096, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1375716, + "componentType": 5126, + "count": 31, + "max": [ + 0.9999985098838806, + 1.0000014305114746, + 0.9999991059303284 + ], + "min": [ + 0.9999979138374329, + 1.0000008344650269, + 0.9999988675117493 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 679220, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1376088, + "componentType": 5126, + "count": 31, + "max": [ + -0.04481375962495804, + 0.5170735716819763, + 0.010739421471953392 + ], + "min": [ + -0.04481900483369827, + 0.5170725584030151, + 0.01073655765503645 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 679344, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 882096, + "componentType": 5126, + "count": 31, + "max": [ + -0.5255617499351501, + 0.5166568756103516, + 0.5207227468490601, + 0.44901126623153687 + ], + "min": [ + -0.5458396673202515, + 0.5014745593070984, + 0.4989701509475708, + 0.43092742562294006 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 679468, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1376460, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 679592, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1376832, + "componentType": 5126, + "count": 31, + "max": [ + 0.017871402204036713, + 0.23251113295555115, + -0.03527331352233887 + ], + "min": [ + 0.0178694948554039, + 0.2325044572353363, + -0.03527406230568886 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 679716, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 882592, + "componentType": 5126, + "count": 31, + "max": [ + -0.5603393316268921, + 0.5143932700157166, + 0.7036745548248291, + 0.6050108075141907 + ], + "min": [ + -0.7001144289970398, + 0.0779498741030693, + -0.32813236117362976, + 0.3506041169166565 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 679840, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1377204, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 679964, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1377576, + "componentType": 5126, + "count": 31, + "max": [ + 4.177774144409341e-07, + 0.4048622250556946, + 1.1640822776826099e-06 + ], + "min": [ + -4.844639533985173e-07, + 0.40486031770706177, + -7.510114414799318e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 680088, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 883088, + "componentType": 5126, + "count": 31, + "max": [ + -0.10740278661251068, + 0.689782977104187, + 0.4085350036621094, + 0.7045597434043884 + ], + "min": [ + -0.31400176882743835, + 0.5672781467437744, + 0.12751376628875732, + 0.6424154043197632 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 680212, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1377948, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 680336, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1378320, + "componentType": 5126, + "count": 31, + "max": [ + 1.893046714940283e-06, + 0.4032711982727051, + 2.8105117166887794e-07 + ], + "min": [ + -9.768104973773006e-07, + 0.40327000617980957, + -2.909544889462268e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 680460, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 883584, + "componentType": 5126, + "count": 31, + "max": [ + 0.09593585878610611, + 0.12564915418624878, + -0.1837308555841446, + 0.9746977090835571 + ], + "min": [ + -0.02048679254949093, + 0.0743781104683876, + -0.2921377122402191, + 0.9486410021781921 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 680584, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1378692, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 680708, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1379064, + "componentType": 5126, + "count": 31, + "max": [ + -0.09804118424654007, + 0.21963244676589966, + -0.002472090534865856 + ], + "min": [ + -0.09804413467645645, + 0.21962924301624298, + -0.0024734907783567905 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 680832, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 884080, + "componentType": 5126, + "count": 31, + "max": [ + -0.5146673321723938, + 0.0499749481678009, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315928280353546, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 680956, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1379436, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681080, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1379808, + "componentType": 5126, + "count": 31, + "max": [ + 4.7518540213786764e-07, + 0.09750308096408844, + 1.3409310213319259e-06 + ], + "min": [ + -5.129795681568794e-07, + 0.09750212728977203, + -6.055680046301859e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681204, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 884576, + "componentType": 5126, + "count": 31, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731813333928585, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320185303688, + 0.00973177794367075, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 681328, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1380180, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681452, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1380552, + "componentType": 5126, + "count": 31, + "max": [ + 0.01622844487428665, + 0.21308831870555878, + -0.0035587819293141365 + ], + "min": [ + 0.016225706785917282, + 0.21308471262454987, + -0.003559891600161791 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681576, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 885072, + "componentType": 5126, + "count": 31, + "max": [ + -0.5430818796157837, + 0.06296975165605545, + -0.08177217841148376, + 0.8333128094673157 + ], + "min": [ + -0.543082058429718, + 0.06296970695257187, + -0.08177223801612854, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 681700, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1380924, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681824, + "componentType": 5126, + "count": 30, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1381296, + "componentType": 5126, + "count": 30, + "max": [ + 4.943962608194852e-07, + 0.08465045690536499, + 1.5998294884411735e-06 + ], + "min": [ + -9.450964739698975e-07, + 0.08464943617582321, + -1.2703480933851097e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 681944, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 885568, + "componentType": 5126, + "count": 31, + "max": [ + -0.4092182219028473, + 0.0020274538546800613, + 0.008077442646026611, + 0.9123985767364502 + ], + "min": [ + -0.40921831130981445, + 0.0020274186972528696, + 0.008077403530478477, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 682068, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1381656, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 682192, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1382028, + "componentType": 5126, + "count": 31, + "max": [ + -0.1118948757648468, + 0.10989076644182205, + -0.051630813628435135 + ], + "min": [ + -0.11189829558134079, + 0.10988754779100418, + -0.05163172632455826 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 682316, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 886064, + "componentType": 5126, + "count": 31, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.43224582076072693, + -0.1290363073348999, + 0.15030035376548767, + 0.8797289729118347 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 682440, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1382400, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 682564, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1382772, + "componentType": 5126, + "count": 31, + "max": [ + 1.8519685909268446e-06, + 0.08512428402900696, + 4.666628683480667e-07 + ], + "min": [ + -1.959355586222955e-06, + 0.08512336760759354, + -2.5173841322612134e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 682688, + "componentType": 5126, + "count": 30, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 886560, + "componentType": 5126, + "count": 30, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.12198019027709961, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 682808, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1383144, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 682932, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1383516, + "componentType": 5126, + "count": 31, + "max": [ + 0.03145409747958183, + 0.16604742407798767, + -0.027864808216691017 + ], + "min": [ + -0.005585933569818735, + 0.14010411500930786, + -0.04539402574300766 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 683056, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 887040, + "componentType": 5126, + "count": 31, + "max": [ + 0.5438916683197021, + 0.9150002598762512, + 0.1806069016456604, + 0.1878698319196701 + ], + "min": [ + -0.40214356780052185, + -0.9133154153823853, + -0.03228095918893814, + 0.0006168701802380383 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 683180, + "componentType": 5126, + "count": 29, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1383888, + "componentType": 5126, + "count": 29, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 683296, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1384236, + "componentType": 5126, + "count": 31, + "max": [ + 0.13640515506267548, + 0.285047709941864, + 0.001941158901900053 + ], + "min": [ + 0.13640134036540985, + 0.2850467562675476, + 0.0019382908940315247 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 683420, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 887536, + "componentType": 5126, + "count": 31, + "max": [ + -5.08830169110297e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.500046806768296e-07 + ], + "min": [ + -1.0830114405280256e-07, + -0.6935806274414063, + -0.7203789949417114, + 8.927776917744268e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 683544, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1384608, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 683668, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1384980, + "componentType": 5126, + "count": 31, + "max": [ + -0.13640134036540985, + 0.28504759073257446, + 0.0019417090807110071 + ], + "min": [ + -0.13640515506267548, + 0.28504678606987, + 0.0019383826293051243 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 683792, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 888032, + "componentType": 5126, + "count": 31, + "max": [ + -5.6080246224610164e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.339754404256382e-08 + ], + "min": [ + -9.262618760885744e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.341079590768459e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 683916, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1385352, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684040, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1385724, + "componentType": 5126, + "count": 31, + "max": [ + 0.5208719968795776, + 0.5460788011550903, + -0.7300586700439453 + ], + "min": [ + 0.27831587195396423, + -0.20644652843475342, + -0.7378857135772705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684164, + "componentType": 5126, + "count": 30, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1386096, + "componentType": 5126, + "count": 30, + "max": [ + 0.5804785490036011, + 0.417879581451416, + -0.24350875616073608 + ], + "min": [ + 0.5804783701896667, + -0.5192718505859375, + -0.3652375340461731 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684284, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 888528, + "componentType": 5126, + "count": 31, + "max": [ + -0.7260510325431824, + -0.04002537950873375, + 0.11236178129911423, + 0.6772181987762451 + ], + "min": [ + -0.9956933856010437, + -0.09270712733268738, + 5.499563826560916e-07, + 5.1205397255671414e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 684408, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1386456, + "componentType": 5126, + "count": 31, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684532, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1386828, + "componentType": 5126, + "count": 31, + "max": [ + 2.4780631065368652e-05, + -3.496735189401079e-06, + -4.312554665375501e-06 + ], + "min": [ + -4.544854164123535e-06, + -4.0667870052857324e-05, + -6.133737042546272e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684656, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 889024, + "componentType": 5126, + "count": 31, + "max": [ + -0.9503704309463501, + 1.7385218820109571e-09, + -2.2485608930367107e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.2776216529175599e-08, + -2.087347361623415e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 684780, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1387200, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 684904, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1387572, + "componentType": 5126, + "count": 31, + "max": [ + 4.76837158203125e-07, + 0.2825005352497101, + 9.332409263151931e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.28249937295913696, + -8.814163834358624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685028, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 889520, + "componentType": 5126, + "count": 31, + "max": [ + -9.246220145087136e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.051378991454839706 + ], + "min": [ + -0.10723292827606201, + 0.8047910332679749, + -0.5815262198448181, + 4.21861869881468e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 685152, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1387944, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685276, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1388316, + "componentType": 5126, + "count": 31, + "max": [ + -0.1404869556427002, + 0.5460788011550903, + -0.5952984690666199 + ], + "min": [ + -0.33675435185432434, + 0.3470689058303833, + -0.6843864917755127 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685400, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1388688, + "componentType": 5126, + "count": 31, + "max": [ + -0.33660733699798584, + 0.1837902069091797, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.6945445537567139, + -0.2435077428817749 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685524, + "componentType": 5126, + "count": 12, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 890016, + "componentType": 5126, + "count": 12, + "max": [ + 0.9998419284820557, + -0.01777961105108261, + 5.520784611690033e-07, + 9.866893435628299e-08 + ], + "min": [ + -0.9995355010032654, + -0.17863965034484863, + -5.522477408703708e-07, + 9.820301904994722e-09 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 685572, + "componentType": 5126, + "count": 5, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1389060, + "componentType": 5126, + "count": 5, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685592, + "componentType": 5126, + "count": 31, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1389120, + "componentType": 5126, + "count": 31, + "max": [ + 4.917383193969727e-07, + 7.363416443695314e-06, + 1.122007120102353e-06 + ], + "min": [ + -1.220405101776123e-05, + -4.47121192337363e-06, + -2.9127199013601057e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685716, + "componentType": 5126, + "count": 13, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 890208, + "componentType": 5126, + "count": 13, + "max": [ + -0.9503704309463501, + -8.74078054380334e-09, + 6.084445658416371e-08, + 0.3111206591129303 + ], + "min": [ + -0.9503704905509949, + -4.411567999795807e-08, + 4.609387715959201e-08, + 0.3111206293106079 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 685768, + "componentType": 5126, + "count": 8, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1389492, + "componentType": 5126, + "count": 8, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685800, + "componentType": 5126, + "count": 28, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1389588, + "componentType": 5126, + "count": 28, + "max": [ + 2.384185791015625e-07, + 0.2825007438659668, + 9.349938636660227e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.28249818086624146, + -3.512662942739553e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 685912, + "componentType": 5126, + "count": 13, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 890416, + "componentType": 5126, + "count": 13, + "max": [ + -7.481140329446134e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.289063610940502e-07 + ], + "min": [ + -9.698453595774481e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.197341354483797e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 685964, + "componentType": 5126, + "count": 13, + "max": [ + 0.5 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1389924, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686016, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1390080, + "componentType": 5126, + "count": 32, + "max": [ + 0.030920162796974182, + -0.007859840989112854, + -1.4513331651687622 + ], + "min": [ + -1.7798922726797173e-06, + -0.08483370393514633, + -1.6112432479858398 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686144, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 890624, + "componentType": 5126, + "count": 33, + "max": [ + 0.02487700618803501, + 0.010921822860836983, + 0.22757799923419952, + 0.9997098445892334 + ], + "min": [ + -0.03552567958831787, + 1.1917239817194059e-07, + -2.451531599945156e-08, + 0.9730502963066101 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 686276, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1390464, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686392, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1390812, + "componentType": 5126, + "count": 33, + "max": [ + 7.450683625620513e-09, + 0.002127397805452347, + 2.384185791015625e-07 + ], + "min": [ + -3.725290298461914e-09, + 0.0021273931488394737, + -1.1920928955078125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686524, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 891152, + "componentType": 5126, + "count": 32, + "max": [ + 0.7071067690849304, + 3.1154479529504897e-07, + -3.003186748173903e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.009154738720099e-07, + -3.1161684432845504e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 686652, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1391208, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686776, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1391580, + "componentType": 5126, + "count": 33, + "max": [ + 0.17381834983825684, + 0.13409900665283203, + 3.119664171435943e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409793376922607, + 7.796444378982414e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 686908, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 891664, + "componentType": 5126, + "count": 32, + "max": [ + 0.036700233817100525, + 0.021705398336052895, + -0.09339651465415955, + 0.9948166012763977 + ], + "min": [ + -0.15808407962322235, + -0.005216352175921202, + -0.20721040666103363, + 0.9695411324501038 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 687036, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1391976, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 687164, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1392360, + "componentType": 5126, + "count": 32, + "max": [ + 3.120402425338398e-08, + 0.6356115937232971, + 3.65568126881044e-08 + ], + "min": [ + -8.800526529739727e-08, + 0.635611355304718, + -5.544050907246856e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 687292, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 892176, + "componentType": 5126, + "count": 33, + "max": [ + 0.24391983449459076, + 7.436872451194176e-09, + 3.134642057034398e-08, + 0.9999966621398926 + ], + "min": [ + 0.0025910339318215847, + -1.70547522770903e-08, + -5.4572495855609304e-08, + 0.9697954058647156 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 687424, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1392744, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 687556, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1393140, + "componentType": 5126, + "count": 33, + "max": [ + -0.17381829023361206, + 0.13409876823425293, + 4.6884437665539735e-08 + ], + "min": [ + -0.1738184094429016, + 0.13409793376922607, + 1.2047143727045295e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 687688, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 892704, + "componentType": 5126, + "count": 32, + "max": [ + 0.07161438465118408, + 0.017370807006955147, + 0.21133063733577728, + 0.9949484467506409 + ], + "min": [ + 0.03227328881621361, + -0.23742727935314178, + 0.09345771372318268, + 0.945601761341095 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 687816, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1393536, + "componentType": 5126, + "count": 32, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 687944, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1393920, + "componentType": 5126, + "count": 32, + "max": [ + 8.0727204476716e-08, + 0.6356115937232971, + 3.6851329099363284e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.635611355304718, + -2.8565800391788798e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 688072, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 893216, + "componentType": 5126, + "count": 33, + "max": [ + 0.17756587266921997, + 1.8408867319408273e-08, + 1.199080088554183e-07, + 0.9999966621398926 + ], + "min": [ + 0.0025904823560267687, + -3.1117947107972554e-10, + -1.4820184190966756e-08, + 0.9841089248657227 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 688204, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1394304, + "componentType": 5126, + "count": 33, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.999999463558197, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 688336, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1394700, + "componentType": 5126, + "count": 32, + "max": [ + 7.450269290387723e-09, + 0.002127401763573289, + 1.1922162457267405e-07 + ], + "min": [ + -3.72539155080176e-09, + 0.0021273791790008545, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 688464, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 893744, + "componentType": 5126, + "count": 63, + "max": [ + -0.6495170593261719, + 2.3065737764227379e-07, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7885486483573914, + -0.1021478995680809, + 4.0235829601442674e-07, + 0.6149724721908569 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 688716, + "componentType": 5126, + "count": 43, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1395084, + "componentType": 5126, + "count": 43, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 688888, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1395600, + "componentType": 5126, + "count": 63, + "max": [ + 7.450581485102248e-09, + 0.27266597747802734, + 2.9549942937023843e-08 + ], + "min": [ + -7.450581485102248e-09, + 0.27266550064086914, + -5.979838135772297e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 689140, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 894752, + "componentType": 5126, + "count": 81, + "max": [ + 0.08500942587852478, + 0.05683112144470215, + 0.02510380744934082, + 0.9999926090240479 + ], + "min": [ + -0.07267207652330399, + 1.856653858434143e-10, + 4.762191974094776e-09, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 689464, + "componentType": 5126, + "count": 70, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1396356, + "componentType": 5126, + "count": 70, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 689744, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1397196, + "componentType": 5126, + "count": 81, + "max": [ + 0.04481617361307144, + 0.5170738101005554, + 0.010738044045865536 + ], + "min": [ + 0.04481613636016846, + 0.517072856426239, + 0.010737915523350239 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 690068, + "componentType": 5126, + "count": 64, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 896048, + "componentType": 5126, + "count": 64, + "max": [ + -0.3839092254638672, + -0.49043551087379456, + -0.4312562346458435, + 0.5723063945770264 + ], + "min": [ + -0.4904356300830841, + -0.582320511341095, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 690324, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1398168, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 690616, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1399044, + "componentType": 5126, + "count": 81, + "max": [ + 0.023541152477264404, + 0.23812566697597504, + -0.07664656639099121 + ], + "min": [ + -9.854890947735839e-08, + 0.23651327192783356, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 690940, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 897072, + "componentType": 5126, + "count": 81, + "max": [ + 0.3554566502571106, + -0.011407137848436832, + -0.403313010931015, + 0.8784226775169373 + ], + "min": [ + -0.705502986907959, + -0.15649205446243286, + -0.5516086220741272, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 691264, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1400016, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 691588, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1400988, + "componentType": 5126, + "count": 81, + "max": [ + 1.503170921068886e-07, + 0.4048615097999573, + 4.426876500929211e-07 + ], + "min": [ + -2.1897886881561135e-07, + 0.40486103296279907, + -3.8173606498048684e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 691912, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 898368, + "componentType": 5126, + "count": 81, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.12373477220535278, + 0.969523012638092 + ], + "min": [ + -0.11045574396848679, + -0.7111564874649048, + -0.7244990468025208, + 0.6796395778656006 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 692236, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1401960, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 692560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1402932, + "componentType": 5126, + "count": 81, + "max": [ + 1.574120602754192e-07, + 0.4032707214355469, + 1.8731081752321188e-07 + ], + "min": [ + -2.3346051136741153e-07, + 0.40327000617980957, + -2.8908945637340366e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 692884, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 899664, + "componentType": 5126, + "count": 81, + "max": [ + 0.04195870831608772, + 0.39465609192848206, + 0.12396225333213806, + 0.9776124954223633 + ], + "min": [ + -0.2175198644399643, + -0.5713057518005371, + -0.05059400573372841, + 0.818101167678833 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 693208, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1403904, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 693532, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1404876, + "componentType": 5126, + "count": 81, + "max": [ + 0.098043292760849, + 0.21963094174861908, + -0.0024724046234041452 + ], + "min": [ + 0.0980418473482132, + 0.21963031589984894, + -0.0024731263983994722 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 693856, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 900960, + "componentType": 5126, + "count": 81, + "max": [ + -0.622336745262146, + -0.000981657998636365, + 0.03366421163082123, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.00098172586876899, + 0.03366416320204735, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 694180, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1405848, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 694504, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1406820, + "componentType": 5126, + "count": 81, + "max": [ + 2.555795504122216e-07, + 0.09750291705131531, + 5.998238066240447e-07 + ], + "min": [ + -4.6009276388758735e-07, + 0.0975024402141571, + 1.0953976214977956e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 694828, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 902256, + "componentType": 5126, + "count": 81, + "max": [ + -0.5302280187606812, + 0.00246593845076859, + -0.053395915776491165, + 0.8461684584617615 + ], + "min": [ + -0.5302282571792603, + 0.0024658888578414917, + -0.053395986557006836, + 0.8461682796478271 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 695152, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1407792, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 695476, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1408764, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226116567850113, + 0.2130863517522812, + -0.003559232922270894 + ], + "min": [ + -0.016227582469582558, + 0.2130856215953827, + -0.003559828270226717 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 695800, + "componentType": 5126, + "count": 77, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 903552, + "componentType": 5126, + "count": 77, + "max": [ + -0.626492977142334, + -0.07110267877578735, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 696108, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1409736, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 696432, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1410708, + "componentType": 5126, + "count": 81, + "max": [ + 2.341596143651259e-07, + 0.08465008437633514, + -1.593347604966766e-07 + ], + "min": [ + -4.838611857849173e-07, + 0.08464983850717545, + -5.131806233293901e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 696756, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 904784, + "componentType": 5126, + "count": 81, + "max": [ + -0.5015431642532349, + -0.0011796470498666167, + -0.008244005031883717, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797049082815647, + -0.008244060911238194, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 697080, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1411680, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 697404, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1412652, + "componentType": 5126, + "count": 81, + "max": [ + 0.11189717054367065, + 0.10988982021808624, + -0.051630899310112 + ], + "min": [ + 0.11189614981412888, + 0.10988903790712357, + -0.051632095128297806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 697728, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 906080, + "componentType": 5126, + "count": 79, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 698044, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1413624, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 698364, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1414584, + "componentType": 5126, + "count": 80, + "max": [ + 2.2750995753995085e-07, + 0.08512423187494278, + 2.535145142701367e-07 + ], + "min": [ + -2.6294284793948464e-07, + 0.08512387424707413, + -4.7020591864566086e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 698684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 907344, + "componentType": 5126, + "count": 81, + "max": [ + 0.02291056327521801, + 0.012835778295993805, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910509258508682, + 0.012835728004574776, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 699008, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1415544, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 699324, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1416492, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585516337305307, + 0.16604502499103546, + -0.04539322108030319 + ], + "min": [ + 0.005584266036748886, + 0.16604405641555786, + -0.045393720269203186 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 699648, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 908640, + "componentType": 5126, + "count": 81, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188210606575, + 0.023865409195423126 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865360766649246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 699972, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1417464, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 700296, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1418436, + "componentType": 5126, + "count": 81, + "max": [ + 1.4901168299275014e-08, + 0.5450075268745422, + 6.300800237113435e-08 + ], + "min": [ + -4.470348358154297e-08, + 0.5450068116188049, + -7.418386616109274e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 700620, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 909936, + "componentType": 5126, + "count": 80, + "max": [ + 0.0976003110408783, + 0.13072361052036285, + -1.0058328392403837e-08, + 0.9982126951217651 + ], + "min": [ + -0.007215114776045084, + 1.181101083602698e-07, + -0.04222821071743965, + 0.9904928803443909 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 700940, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1419408, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 701232, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1420284, + "componentType": 5126, + "count": 81, + "max": [ + 1.4901168299275014e-08, + 0.11002850532531738, + 5.774199962615967e-08 + ], + "min": [ + -1.3038508939189342e-08, + 0.11002779006958008, + -6.146728992462158e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 701556, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 911216, + "componentType": 5126, + "count": 81, + "max": [ + 0.07872394472360611, + 0.12989991903305054, + -7.343492924860584e-09, + 0.9990267753601074 + ], + "min": [ + -0.025982949882745743, + 1.1883926731570682e-07, + -0.04469774663448334, + 0.9901782870292664 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 701880, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1421256, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 702200, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1422216, + "componentType": 5126, + "count": 81, + "max": [ + 6.647262580372626e-07, + 0.3614468574523926, + 0.026841305196285248 + ], + "min": [ + 6.349239356495673e-07, + 0.36144542694091797, + 0.026841096580028534 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 702524, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 912512, + "componentType": 5126, + "count": 81, + "max": [ + 1.862645149230957e-08, + 8.265546469488072e-09, + 9.313230187046884e-10, + 1.0 + ], + "min": [ + -4.440931803170029e-16, + 6.5193175302624695e-09, + -2.793969500203275e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 702848, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1423188, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000003576278687, + 0.9999998211860657, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 0.9999992847442627, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 703160, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1424124, + "componentType": 5126, + "count": 81, + "max": [ + 5.596916707872879e-07, + -0.15833939611911774, + -0.2537654638290405 + ], + "min": [ + 5.298892915561737e-07, + -0.15834082663059235, + -0.2537659704685211 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 703484, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 913808, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + -1.928779802540248e-09, + -2.1934286564828653e-07, + 0.0612967349588871 + ], + "min": [ + -0.998119592666626, + -4.845936985020671e-09, + -2.2233543006677792e-07, + 0.06129670515656471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 703808, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1425096, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000005960464478, + 1.0000007152557373, + 0.9999721050262451 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 704128, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1426056, + "componentType": 5126, + "count": 81, + "max": [ + 1.490117718105921e-08, + 0.2539474666118622, + 2.1673760386420327e-07 + ], + "min": [ + -1.4901171851988693e-08, + 0.2539469003677368, + -2.3376085778181732e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 704452, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 915104, + "componentType": 5126, + "count": 79, + "max": [ + 0.15613597631454468, + -1.4028277917077503e-07, + 9.020905800127821e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.4295791572749295e-07, + 4.27599555763436e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 704768, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1427028, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000008344650269, + 1.000001072883606, + 1.000001072883606 + ], + "min": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000005960464478 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 705060, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1427904, + "componentType": 5126, + "count": 79, + "max": [ + 7.450580596923828e-09, + 0.25331947207450867, + 1.6100848654332367e-07 + ], + "min": [ + -1.4901161193847656e-08, + 0.2533189356327057, + -1.6100848654332367e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 705376, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 916368, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231436997652054, + -2.5413140036789628e-08, + 3.5283471699898428e-09, + 0.995729923248291 + ], + "min": [ + -0.09231442958116531, + -2.80493122062353e-08, + 6.60335675028989e-10, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 705700, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1428852, + "componentType": 5126, + "count": 79, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 706016, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1429800, + "componentType": 5126, + "count": 81, + "max": [ + 1.4901161193847656e-08, + 0.26377880573272705, + 1.8443468263740215e-07 + ], + "min": [ + -7.450580596923828e-09, + 0.2637784481048584, + -8.853968580524452e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 706340, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 917664, + "componentType": 5126, + "count": 78, + "max": [ + 1.8620342601138873e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.648026295077216e-08 + ], + "min": [ + 1.4933565495311996e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.527309347527989e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 706652, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1430772, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 1.000001072883606 + ], + "min": [ + 1.0, + 1.000000238418579, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 706964, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1431708, + "componentType": 5126, + "count": 81, + "max": [ + -7.519984706050309e-07, + 0.24314288794994354, + 0.18703243136405945 + ], + "min": [ + -1.2445601669242023e-06, + 0.24314187467098236, + 0.18703176081180573 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 707288, + "componentType": 5126, + "count": 69, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 918912, + "componentType": 5126, + "count": 69, + "max": [ + 0.447833776473999, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266476392745972, + 0.37464439868927, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 707564, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1432680, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999996423721313, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999989867210388, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 707888, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1433652, + "componentType": 5126, + "count": 81, + "max": [ + -0.2441895604133606, + -0.13046179711818695, + 0.029651088640093803 + ], + "min": [ + -0.2441900074481964, + -0.13046370446681976, + 0.02965082973241806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 708212, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 920016, + "componentType": 5126, + "count": 81, + "max": [ + 0.007415746338665485, + -0.0742839053273201, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.007415739819407463, + -0.07428392022848129, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 708536, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1434624, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999983906745911, + 1.0000016689300537, + 0.9999997019767761 + ], + "min": [ + 0.9999979734420776, + 1.0000009536743164, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 708860, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1435596, + "componentType": 5126, + "count": 81, + "max": [ + 0.24341876804828644, + -0.13046246767044067, + 0.029651382938027382 + ], + "min": [ + 0.2434183657169342, + -0.130464568734169, + 0.02965107001364231 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 709184, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 921312, + "componentType": 5126, + "count": 81, + "max": [ + 0.007417425513267517, + 0.07428368180990219, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417421322315931, + 0.074283666908741, + 0.9923431277275085, + 0.09839750081300735 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 709508, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1436568, + "componentType": 5126, + "count": 79, + "max": [ + 0.9999982714653015, + 1.0000014305114746, + 0.9999991059303284 + ], + "min": [ + 0.9999977946281433, + 1.0000008344650269, + 0.9999986290931702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 709824, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1437516, + "componentType": 5126, + "count": 80, + "max": [ + -0.04481612145900726, + 0.5170735716819763, + 0.010738060809671879 + ], + "min": [ + -0.044816166162490845, + 0.517072856426239, + 0.010737902484834194 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 710144, + "componentType": 5126, + "count": 51, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 922608, + "componentType": 5126, + "count": 51, + "max": [ + -0.3839091956615448, + 0.5823206305503845, + 0.5093849897384644, + 0.572306215763092 + ], + "min": [ + -0.5382573008537292, + 0.4904356300830841, + 0.43125638365745544, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 710348, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1438476, + "componentType": 5126, + "count": 72, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 710636, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1439340, + "componentType": 5126, + "count": 81, + "max": [ + 0.017870359122753143, + 0.23812554776668549, + -0.035273805260658264 + ], + "min": [ + -7.868722207149403e-08, + 0.23250827193260193, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 710960, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 923424, + "componentType": 5126, + "count": 81, + "max": [ + 0.3861275315284729, + 0.5143935084342957, + 0.542509913444519, + 0.930916428565979 + ], + "min": [ + -0.5603393912315369, + -0.051766205579042435, + -0.32813236117362976, + 0.5601324439048767 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 711284, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1440312, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 711608, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1441284, + "componentType": 5126, + "count": 81, + "max": [ + 2.3512056657182256e-07, + 0.4048615097999573, + 4.443606655968324e-07 + ], + "min": [ + -3.311183434107079e-07, + 0.40486103296279907, + -3.4602589238375003e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 711932, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 924720, + "componentType": 5126, + "count": 80, + "max": [ + 0.05457169562578201, + 0.7470192313194275, + 0.6649616360664368, + 0.8614022135734558 + ], + "min": [ + -0.1550334393978119, + -0.23424585163593292, + -0.05700935795903206, + 0.6427974104881287 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 712252, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1442256, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999995231628418, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 712576, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1443228, + "componentType": 5126, + "count": 81, + "max": [ + 3.520069356000022e-07, + 0.4032707214355469, + 1.91493313650426e-07 + ], + "min": [ + -1.345124047702484e-07, + 0.40327024459838867, + -2.931110998360964e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 712900, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 926000, + "componentType": 5126, + "count": 81, + "max": [ + 0.023212525993585587, + 0.5467209219932556, + 0.25561612844467163, + 0.9995357990264893 + ], + "min": [ + -0.2620484530925751, + 0.004205347504466772, + -0.023572074249386787, + 0.7973358035087585 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 713224, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1444200, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 713548, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1445172, + "componentType": 5126, + "count": 81, + "max": [ + -0.09804213047027588, + 0.2196308970451355, + -0.002472243271768093 + ], + "min": [ + -0.0980430394411087, + 0.2196296900510788, + -0.0024731741286814213 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 713872, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 927296, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673321723938, + 0.0499749630689621, + -0.08315921574831009, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997486621141434, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 714196, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1446144, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 714520, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1447116, + "componentType": 5126, + "count": 81, + "max": [ + 4.6411267362600483e-07, + 0.09750273823738098, + 6.058458552615775e-07 + ], + "min": [ + -2.5590054519852856e-07, + 0.09750236570835114, + 1.1807376409933568e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 714844, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 928592, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731839410960674, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.0627320259809494, + 0.009731770493090153, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 715168, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1448088, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 715492, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1449060, + "componentType": 5126, + "count": 81, + "max": [ + 0.016227474436163902, + 0.21308661997318268, + -0.0035592091735452414 + ], + "min": [ + 0.016225915402173996, + 0.21308574080467224, + -0.003559957956895232 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 715816, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 929888, + "componentType": 5126, + "count": 81, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 716140, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1450032, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 716464, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1451004, + "componentType": 5126, + "count": 81, + "max": [ + 4.886294391326373e-07, + 0.0846501812338829, + 1.519413261874547e-09 + ], + "min": [ + -2.3077559774264955e-07, + 0.0846497192978859, + -4.912095050713106e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 716788, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 931184, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.0020274599082767963, + 0.008077433332800865, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027418464422226, + 0.008077386766672134, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 717112, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1451976, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 717436, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1452948, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189626902341843, + 0.10988973081111908, + -0.051630642265081406 + ], + "min": [ + -0.11189708113670349, + 0.109888955950737, + -0.05163196101784706 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 717760, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 932480, + "componentType": 5126, + "count": 79, + "max": [ + -0.432245671749115, + -0.12903621792793274, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 718076, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1453920, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 718400, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1454892, + "componentType": 5126, + "count": 81, + "max": [ + 2.103368643702197e-07, + 0.08512436598539352, + 2.3109110713903647e-07 + ], + "min": [ + -2.8475119506765623e-07, + 0.08512364327907562, + -2.524976423501357e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 718724, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 933744, + "componentType": 5126, + "count": 81, + "max": [ + 0.14811435341835022, + -0.12198012322187424, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 719048, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1455864, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 719372, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1456836, + "componentType": 5126, + "count": 81, + "max": [ + -0.005584893748164177, + 0.2213091403245926, + -0.04539348557591438 + ], + "min": [ + -0.06557834148406982, + 0.16604454815387726, + -0.045525018125772476 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 719696, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 935040, + "componentType": 5126, + "count": 81, + "max": [ + 0.8056543469429016, + 0.9843159317970276, + 0.20031848549842834, + 0.07042430341243744 + ], + "min": [ + -0.6955558657646179, + -0.9306741952896118, + -0.23039838671684265, + 0.0013954114401713014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 720020, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1457808, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 720344, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1458780, + "componentType": 5126, + "count": 80, + "max": [ + 0.13640330731868744, + 0.28504735231399536, + 0.0019398574950173497 + ], + "min": [ + 0.13640323281288147, + 0.2850467562675476, + 0.0019396787974983454 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 720664, + "componentType": 5126, + "count": 42, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 936336, + "componentType": 5126, + "count": 42, + "max": [ + -5.754361609433545e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.4075477849928575e-07 + ], + "min": [ + -9.955589774790496e-08, + -0.693580687046051, + -0.7203789949417114, + 1.049237496886235e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 720832, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1459740, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 721148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1460688, + "componentType": 5126, + "count": 81, + "max": [ + -0.1364031881093979, + 0.2850474715232849, + 0.0019399222219362855 + ], + "min": [ + -0.13640326261520386, + 0.2850467562675476, + 0.0019396840361878276 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 721472, + "componentType": 5126, + "count": 75, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 937008, + "componentType": 5126, + "count": 75, + "max": [ + -7.39928083248742e-08, + -0.6935806274414063, + -0.7203789949417114, + 8.701530873622687e-08 + ], + "min": [ + -1.1286196865967213e-07, + -0.6935806274414063, + -0.7203789949417114, + 5.236386613205468e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 721772, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1461660, + "componentType": 5126, + "count": 72, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722060, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1462524, + "componentType": 5126, + "count": 32, + "max": [ + 0.5804785490036011, + 0.417879581451416, + -0.24350857734680176 + ], + "min": [ + 0.4110817313194275, + -0.16442185640335083, + -0.24350875616073608 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722188, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 938208, + "componentType": 5126, + "count": 32, + "max": [ + 1.0, + 0.0, + 5.52335052361741e-07, + 5.1205397255671414e-08 + ], + "min": [ + -1.0, + -0.09270712733268738, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 722316, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1462908, + "componentType": 5126, + "count": 12, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722364, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1463052, + "componentType": 5126, + "count": 32, + "max": [ + 1.029670238494873e-05, + 1.654809693718562e-07, + 0.02665339782834053 + ], + "min": [ + -0.00512714684009552, + -0.003301323391497135, + -3.159113839501515e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722492, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 938720, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503704309463501, + -4.905995054649281e-10, + -8.579427834831677e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.2270830573868352e-08, + -1.623974554831875e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 722624, + "componentType": 5126, + "count": 30, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1463436, + "componentType": 5126, + "count": 30, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722744, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1463796, + "componentType": 5126, + "count": 32, + "max": [ + 5.960464477539063e-08, + 0.28249990940093994, + 3.426885086810216e-08 + ], + "min": [ + -5.960463056453591e-08, + 0.2824997305870056, + -3.229202150123456e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 722872, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 939248, + "componentType": 5126, + "count": 33, + "max": [ + -7.874648844108378e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.2685522316787683e-07 + ], + "min": [ + -8.85650948134753e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.2249132548022317e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 723004, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1464180, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723132, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1464564, + "componentType": 5126, + "count": 32, + "max": [ + -0.40744099020957947, + -0.1624714434146881, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.24350766837596893 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723260, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 939776, + "componentType": 5126, + "count": 32, + "max": [ + 1.0, + 0.0, + 5.52335052361741e-07, + 9.866893435628299e-08 + ], + "min": [ + -0.9999998807907104, + -0.17863965034484863, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 723388, + "componentType": 5126, + "count": 17, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1464948, + "componentType": 5126, + "count": 17, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723456, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1465152, + "componentType": 5126, + "count": 32, + "max": [ + 0.004882588982582092, + 5.62935781545093e-07, + 0.025784624740481377 + ], + "min": [ + -1.5348196029663086e-06, + -0.003152984194457531, + -2.6957018235407304e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723584, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 940288, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503704309463501, + -1.154897777411179e-08, + 6.002229469004305e-08, + 0.3111206591129303 + ], + "min": [ + -0.9503704905509949, + -3.4213691435525106e-08, + 5.0623459202370213e-08, + 0.3111206293106079 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 723716, + "componentType": 5126, + "count": 27, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1465536, + "componentType": 5126, + "count": 27, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723824, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1465860, + "componentType": 5126, + "count": 33, + "max": [ + 5.960464477539063e-08, + 0.28249987959861755, + 1.3450351943333771e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.2824998199939728, + -1.4967627137707495e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 723956, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 940816, + "componentType": 5126, + "count": 32, + "max": [ + -7.274298496895426e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.322346285334788e-07 + ], + "min": [ + -9.416467605660728e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.1702440967128496e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724084, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466256, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724212, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466640, + "componentType": 5126, + "count": 1, + "max": [ + -1.7798922726797173e-06, + -0.007859840989112854, + -1.6112432479858398 + ], + "min": [ + -1.7798922726797173e-06, + -0.007859840989112854, + -1.6112432479858398 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724216, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941328, + "componentType": 5126, + "count": 1, + "max": [ + 0.6545783877372742, + 9.012151735987572e-08, + -6.450613341257849e-07, + 0.7559941411018372 + ], + "min": [ + 0.6545783877372742, + 9.012151735987572e-08, + -6.450613341257849e-07, + 0.7559941411018372 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724220, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941344, + "componentType": 5126, + "count": 1, + "max": [ + -0.5525557398796082, + -0.13594643771648407, + 0.03840081766247749, + 0.8214171528816223 + ], + "min": [ + -0.5525557398796082, + -0.13594643771648407, + 0.03840081766247749, + 0.8214171528816223 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724224, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941360, + "componentType": 5126, + "count": 1, + "max": [ + 0.32015183568000793, + 2.6559523469416035e-09, + 1.3814540125167696e-06, + 0.9473662972450256 + ], + "min": [ + 0.32015183568000793, + 2.6559523469416035e-09, + 1.3814540125167696e-06, + 0.9473662972450256 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724228, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941376, + "componentType": 5126, + "count": 1, + "max": [ + -0.6290567517280579, + 0.04295758530497551, + -0.005230595823377371, + 0.7761539220809937 + ], + "min": [ + -0.6290567517280579, + 0.04295758530497551, + -0.005230595823377371, + 0.7761539220809937 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724232, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941392, + "componentType": 5126, + "count": 1, + "max": [ + 0.545846164226532, + -1.9389105876399526e-09, + 4.2379770093248226e-06, + 0.8378854393959045 + ], + "min": [ + 0.545846164226532, + -1.9389105876399526e-09, + 4.2379770093248226e-06, + 0.8378854393959045 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724236, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941408, + "componentType": 5126, + "count": 1, + "max": [ + -0.6142230033874512, + -0.12726964056491852, + 0.054809510707855225, + 0.7768709659576416 + ], + "min": [ + -0.6142230033874512, + -0.12726964056491852, + 0.054809510707855225, + 0.7768709659576416 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724240, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941424, + "componentType": 5126, + "count": 1, + "max": [ + 0.3534635007381439, + -0.031147178262472153, + -0.010821680538356304, + 0.9348669648170471 + ], + "min": [ + 0.3534635007381439, + -0.031147178262472153, + -0.010821680538356304, + 0.9348669648170471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724244, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466652, + "componentType": 5126, + "count": 1, + "max": [ + 0.006355042569339275, + 0.23391705751419067, + -0.09496599435806274 + ], + "min": [ + 0.006355042569339275, + 0.23391705751419067, + -0.09496599435806274 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724248, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941440, + "componentType": 5126, + "count": 1, + "max": [ + 0.07794731110334396, + -0.6760523319244385, + -0.4758484959602356, + 0.5571765899658203 + ], + "min": [ + 0.07794731110334396, + -0.6760523319244385, + -0.4758484959602356, + 0.5571765899658203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724252, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941456, + "componentType": 5126, + "count": 1, + "max": [ + -0.12316238135099411, + -0.13254208862781525, + -0.093882717192173, + 0.979004442691803 + ], + "min": [ + -0.12316238135099411, + -0.13254208862781525, + -0.093882717192173, + 0.979004442691803 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724256, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941472, + "componentType": 5126, + "count": 1, + "max": [ + 0.04346289485692978, + 0.0037713556084781885, + -0.050706151872873306, + 0.9977603554725647 + ], + "min": [ + 0.04346289485692978, + 0.0037713556084781885, + -0.050706151872873306, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724260, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941488, + "componentType": 5126, + "count": 1, + "max": [ + -0.9149541258811951, + -0.0075753433629870415, + -0.035511136054992676, + 0.40192103385925293 + ], + "min": [ + -0.9149541258811951, + -0.0075753433629870415, + -0.035511136054992676, + 0.40192103385925293 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724264, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941504, + "componentType": 5126, + "count": 1, + "max": [ + -0.9015316367149353, + 0.003666067961603403, + -0.00747766625136137, + 0.43263307213783264 + ], + "min": [ + -0.9015316367149353, + 0.003666067961603403, + -0.00747766625136137, + 0.43263307213783264 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724268, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941520, + "componentType": 5126, + "count": 1, + "max": [ + -0.10758892446756363, + 0.042397309094667435, + 0.0038457997143268585, + 0.9932836294174194 + ], + "min": [ + -0.10758892446756363, + 0.042397309094667435, + 0.0038457997143268585, + 0.9932836294174194 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724272, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941536, + "componentType": 5126, + "count": 1, + "max": [ + -0.12639151513576508, + 0.04246256873011589, + 0.0030417160596698523, + 0.991066575050354 + ], + "min": [ + -0.12639151513576508, + 0.04246256873011589, + 0.0030417160596698523, + 0.991066575050354 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724276, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466664, + "componentType": 5126, + "count": 1, + "max": [ + 6.796274192311103e-07, + 0.3614463806152344, + 0.026841066777706146 + ], + "min": [ + 6.796274192311103e-07, + 0.3614463806152344, + 0.026841066777706146 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724280, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466676, + "componentType": 5126, + "count": 1, + "max": [ + -1.0208071898887283e-06, + 0.24314241111278534, + 0.18703210353851318 + ], + "min": [ + -1.0208071898887283e-06, + 0.24314241111278534, + 0.18703210353851318 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724284, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466688, + "componentType": 5126, + "count": 1, + "max": [ + 0.24341848492622375, + -0.13046391308307648, + 0.029651394113898277 + ], + "min": [ + 0.24341848492622375, + -0.13046391308307648, + 0.029651394113898277 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724288, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466700, + "componentType": 5126, + "count": 1, + "max": [ + 0.9999982118606567, + 1.0000011920928955, + 0.9999989867210388 + ], + "min": [ + 0.9999982118606567, + 1.0000011920928955, + 0.9999989867210388 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724292, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466712, + "componentType": 5126, + "count": 1, + "max": [ + -0.037766698747873306, + 0.2362125962972641, + -0.13824158906936646 + ], + "min": [ + -0.037766698747873306, + 0.2362125962972641, + -0.13824158906936646 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724296, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941552, + "componentType": 5126, + "count": 1, + "max": [ + -0.07023002952337265, + 0.5071706175804138, + 0.7084618806838989, + 0.48572373390197754 + ], + "min": [ + -0.07023002952337265, + 0.5071706175804138, + 0.7084618806838989, + 0.48572373390197754 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724300, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941568, + "componentType": 5126, + "count": 1, + "max": [ + -0.013633392751216888, + -0.05105700343847275, + 0.16070613265037537, + 0.9855865836143494 + ], + "min": [ + -0.013633392751216888, + -0.05105700343847275, + 0.16070613265037537, + 0.9855865836143494 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724304, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941584, + "componentType": 5126, + "count": 1, + "max": [ + 0.043462902307510376, + -0.0037713581696152687, + 0.0507061593234539, + 0.9977603554725647 + ], + "min": [ + 0.043462902307510376, + -0.0037713581696152687, + 0.0507061593234539, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724308, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941600, + "componentType": 5126, + "count": 1, + "max": [ + -0.7917521595954895, + 0.05691007897257805, + -0.024417784065008163, + 0.6076953411102295 + ], + "min": [ + -0.7917521595954895, + 0.05691007897257805, + -0.024417784065008163, + 0.6076953411102295 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724312, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941616, + "componentType": 5126, + "count": 1, + "max": [ + -0.7930165529251099, + -0.0020463145337998867, + 0.0080726258456707, + 0.6091431975364685 + ], + "min": [ + -0.7930165529251099, + -0.0020463145337998867, + 0.0080726258456707, + 0.6091431975364685 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724316, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466724, + "componentType": 5126, + "count": 1, + "max": [ + 0.47929900884628296, + 0.001357436180114746, + 0.15874697268009186 + ], + "min": [ + 0.47929900884628296, + 0.001357436180114746, + 0.15874697268009186 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724320, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466736, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381766438484192, + -0.7631329894065857, + -0.5960139036178589 + ], + "min": [ + 0.17381766438484192, + -0.7631329894065857, + -0.5960139036178589 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724324, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941632, + "componentType": 5126, + "count": 1, + "max": [ + -0.9322715997695923, + 1.9981219168130337e-07, + 5.149263415660243e-07, + 0.3617590367794037 + ], + "min": [ + -0.9322715997695923, + 1.9981219168130337e-07, + 5.149263415660243e-07, + 0.3617590367794037 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724328, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466748, + "componentType": 5126, + "count": 1, + "max": [ + -5.513429641723633e-07, + -4.384859494166449e-06, + -3.566087980289012e-05 + ], + "min": [ + -5.513429641723633e-07, + -4.384859494166449e-06, + -3.566087980289012e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724332, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466760, + "componentType": 5126, + "count": 1, + "max": [ + -0.33675307035446167, + 0.6563407182693481, + 0.51426762342453 + ], + "min": [ + -0.33675307035446167, + 0.6563407182693481, + 0.51426762342453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724336, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466772, + "componentType": 5126, + "count": 1, + "max": [ + -0.1738191395998001, + -0.7473490834236145, + -0.7485905885696411 + ], + "min": [ + -0.1738191395998001, + -0.7473490834236145, + -0.7485905885696411 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724340, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941648, + "componentType": 5126, + "count": 1, + "max": [ + -0.8872196078300476, + 2.5481833176854707e-07, + 4.900425096820982e-07, + 0.461347371339798 + ], + "min": [ + -0.8872196078300476, + 2.5481833176854707e-07, + 4.900425096820982e-07, + 0.461347371339798 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724344, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466784, + "componentType": 5126, + "count": 1, + "max": [ + 5.960464477539063e-07, + -1.105003320844844e-05, + -5.570094072027132e-05 + ], + "min": [ + 5.960464477539063e-07, + -1.105003320844844e-05, + -5.570094072027132e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724348, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1466796, + "componentType": 5126, + "count": 61, + "max": [ + 0.030920088291168213, + 0.17556051909923553, + -1.313718557357788 + ], + "min": [ + -0.02225308120250702, + 0.16223151981830597, + -1.565529465675354 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724592, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 941664, + "componentType": 5126, + "count": 61, + "max": [ + 0.07889333367347717, + 1.1938334409933304e-07, + 7.102566002004096e-08, + 0.9993885159492493 + ], + "min": [ + 0.03496595099568367, + 1.1858892889904382e-07, + -8.464779455152893e-08, + 0.9968830943107605 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 724836, + "componentType": 5126, + "count": 26, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1467528, + "componentType": 5126, + "count": 26, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 724940, + "componentType": 5126, + "count": 56, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1467840, + "componentType": 5126, + "count": 56, + "max": [ + 1.862748399972247e-09, + 0.0021274127066135406, + 1.1920928955078125e-07 + ], + "min": [ + -3.725393771247809e-09, + 0.002127375453710556, + -1.1920928955078125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 725164, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 942640, + "componentType": 5126, + "count": 61, + "max": [ + 0.7120087146759033, + 0.1171521246433258, + 0.0016945893876254559, + 0.7021706104278564 + ], + "min": [ + 0.7071048021316528, + -0.11715151369571686, + -0.0016951871803030372, + 0.6973344683647156 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 725408, + "componentType": 5126, + "count": 57, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1468512, + "componentType": 5126, + "count": 57, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 725636, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1469196, + "componentType": 5126, + "count": 61, + "max": [ + 0.17381837964057922, + 0.13409888744354248, + 1.0382825621491065e-07 + ], + "min": [ + 0.1738181710243225, + 0.13409781455993652, + 4.210773241197785e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 725880, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 943616, + "componentType": 5126, + "count": 61, + "max": [ + 0.17216961085796356, + 0.07293244451284409, + 0.11151724308729172, + 0.9984161853790283 + ], + "min": [ + -0.6111254096031189, + -0.16115576028823853, + -0.05438034608960152, + 0.7747092843055725 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 726124, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1469928, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999993443489075, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 726368, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1470660, + "componentType": 5126, + "count": 61, + "max": [ + -5.117556156619685e-09, + 0.6356115937232971, + 1.1323319881739735e-07 + ], + "min": [ + -5.820294290970196e-08, + 0.635611355304718, + -1.2238973567946232e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 726612, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 944592, + "componentType": 5126, + "count": 61, + "max": [ + 0.9081162214279175, + 3.738961851240674e-08, + 7.072480912029278e-08, + 0.9462248682975769 + ], + "min": [ + 0.32350972294807434, + 1.8412178448556915e-09, + -5.026300300414732e-07, + 0.41871821880340576 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 726856, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1471392, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000009536743164, + 1.0000008344650269, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 727100, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1472124, + "componentType": 5126, + "count": 61, + "max": [ + -0.1738182008266449, + 0.13409876823425293, + 6.818062558977545e-08 + ], + "min": [ + -0.1738184094429016, + 0.13409781455993652, + 1.2310147567973218e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 727344, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 945568, + "componentType": 5126, + "count": 61, + "max": [ + 0.17230191826820374, + 0.12320523709058762, + 0.050326667726039886, + 0.9976107478141785 + ], + "min": [ + -0.6458874344825745, + -0.08637957274913788, + -0.12056168913841248, + 0.7483673095703125 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 727588, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1472856, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999992251396179, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 727832, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1473588, + "componentType": 5126, + "count": 61, + "max": [ + 4.3474305044810535e-08, + 0.6356115937232971, + 1.1965609303388192e-07 + ], + "min": [ + 1.0991259014048183e-09, + 0.635611355304718, + -1.2515940284174576e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 728076, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 946544, + "componentType": 5126, + "count": 61, + "max": [ + 0.914028525352478, + 1.945718430818033e-08, + 8.366118322555849e-07, + 0.9786216020584106 + ], + "min": [ + 0.2056690752506256, + -1.0941992201196626e-08, + 7.846990257576181e-08, + 0.40564990043640137 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 728320, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1474320, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000009536743164, + 1.000000238418579, + 1.0000009536743164 + ], + "min": [ + 1.0, + 0.9999992251396179, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 728564, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1475052, + "componentType": 5126, + "count": 61, + "max": [ + 1.862748399972247e-09, + 0.0021274127066135406, + 1.1922162457267405e-07 + ], + "min": [ + -3.7251861595422042e-09, + 0.0021273773163557053, + -1.1923567910798738e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 728808, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 947520, + "componentType": 5126, + "count": 61, + "max": [ + -0.7056565880775452, + 0.053737010806798935, + 0.05364709347486496, + 0.7065133452415466 + ], + "min": [ + -0.7076997756958008, + -0.05373656749725342, + -0.05364631861448288, + 0.704473614692688 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 729052, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1475784, + "componentType": 5126, + "count": 61, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 729296, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1476516, + "componentType": 5126, + "count": 61, + "max": [ + 3.725292518907963e-09, + 0.2726660966873169, + 1.89757436430682e-08 + ], + "min": [ + -5.587935447692871e-09, + 0.2726656198501587, + -1.6312897699322093e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 729540, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 948496, + "componentType": 5126, + "count": 61, + "max": [ + 0.13525903224945068, + 0.05312128737568855, + 0.007087154313921928, + 0.9951270818710327 + ], + "min": [ + 0.09860056638717651, + -0.05312129482626915, + -0.007087145932018757, + 0.9893598556518555 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 729784, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1477248, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 730028, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1477980, + "componentType": 5126, + "count": 61, + "max": [ + 0.04481617361307144, + 0.5170735716819763, + 0.010738124139606953 + ], + "min": [ + 0.04481612890958786, + 0.517072856426239, + 0.010737716220319271 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 730272, + "componentType": 5126, + "count": 47, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 949472, + "componentType": 5126, + "count": 47, + "max": [ + -0.4904356300830841, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.49043557047843933, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 730460, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1478712, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 730704, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1479444, + "componentType": 5126, + "count": 61, + "max": [ + 1.1006722644424372e-07, + 0.23812521994113922, + -0.07664656639099121 + ], + "min": [ + -1.879559334838632e-07, + 0.23812513053417206, + -0.07664728164672852 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 730948, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 950224, + "componentType": 5126, + "count": 61, + "max": [ + -0.5363646149635315, + 0.4605036973953247, + 0.10865528881549835, + 0.794833779335022 + ], + "min": [ + -0.5994370579719543, + -0.09966621547937393, + -0.1841154396533966, + 0.705336332321167 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 731192, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1480176, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 731436, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1480908, + "componentType": 5126, + "count": 61, + "max": [ + 3.4670179616114183e-07, + 0.4048615097999573, + 3.21825183391411e-07 + ], + "min": [ + -2.3456226472262642e-07, + 0.40486103296279907, + 1.4058349506740342e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 731680, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 951200, + "componentType": 5126, + "count": 61, + "max": [ + 0.21499700844287872, + -0.0969754233956337, + -0.22955824434757233, + 0.778615415096283 + ], + "min": [ + 0.0033609557431191206, + -0.6580676436424255, + -0.7012223601341248, + 0.6885504722595215 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 731924, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1481640, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 732168, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1482372, + "componentType": 5126, + "count": 61, + "max": [ + 2.4223467676165455e-07, + 0.4032706320285797, + 7.267957613521503e-08 + ], + "min": [ + -2.4537595777474053e-07, + 0.4032703638076782, + -1.751250522374903e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 732412, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 952176, + "componentType": 5126, + "count": 61, + "max": [ + 0.04346291720867157, + 0.0037713726051151752, + -0.05070612207055092, + 0.9977603554725647 + ], + "min": [ + 0.04346287250518799, + 0.0037713288329541683, + -0.0507061667740345, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 732656, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1483104, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 732900, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1483836, + "componentType": 5126, + "count": 61, + "max": [ + 0.09804282337427139, + 0.2196308672428131, + -0.0024723669048398733 + ], + "min": [ + 0.098042331635952, + 0.21963028609752655, + -0.0024729312863200903 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 733144, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 953152, + "componentType": 5126, + "count": 61, + "max": [ + -0.622336745262146, + -0.0009816614910960197, + 0.03366421163082123, + 0.7820248007774353 + ], + "min": [ + -0.6223368644714355, + -0.0009817222598940134, + 0.03366415575146675, + 0.7820246815681458 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 733388, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1484568, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 733632, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1485300, + "componentType": 5126, + "count": 61, + "max": [ + 2.5245054757760954e-07, + 0.09750291705131531, + 4.790824732481269e-07 + ], + "min": [ + -2.247782475706117e-07, + 0.09750243276357651, + 2.354134664983576e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 733876, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 954128, + "componentType": 5126, + "count": 61, + "max": [ + -0.5302281379699707, + 0.002465948462486267, + -0.05339596047997475, + 0.8461683988571167 + ], + "min": [ + -0.5302282571792603, + 0.00246589258313179, + -0.053396016359329224, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 734120, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1486032, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 734364, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1486764, + "componentType": 5126, + "count": 61, + "max": [ + -0.016226574778556824, + 0.2130863517522812, + -0.0035592541098594666 + ], + "min": [ + -0.016227148473262787, + 0.21308587491512299, + -0.0035597432870417833 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 734608, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 955104, + "componentType": 5126, + "count": 61, + "max": [ + -0.626492977142334, + -0.07110270857810974, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110276818275452, + 0.07480830699205399, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 734852, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1487496, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 735092, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1488216, + "componentType": 5126, + "count": 61, + "max": [ + 1.128425850538406e-07, + 0.08465007692575455, + -4.507347739490797e-08 + ], + "min": [ + -2.454948173635785e-07, + 0.08464976400136948, + -4.050846769132477e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 735336, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 956080, + "componentType": 5126, + "count": 61, + "max": [ + -0.5015431642532349, + -0.0011796606704592705, + -0.008243991062045097, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797131737694144, + -0.008244028314948082, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 735580, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1488948, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 735824, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1489680, + "componentType": 5126, + "count": 61, + "max": [ + 0.11189698427915573, + 0.10988958179950714, + -0.05163109302520752 + ], + "min": [ + 0.1118963286280632, + 0.1098889485001564, + -0.051631588488817215 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 736068, + "componentType": 5126, + "count": 59, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 957056, + "componentType": 5126, + "count": 59, + "max": [ + -0.4573034644126892, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 736304, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1490412, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999999403953552, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 736548, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1491144, + "componentType": 5126, + "count": 60, + "max": [ + 2.1585604770280042e-07, + 0.08512423187494278, + 2.4199721337936353e-07 + ], + "min": [ + -2.074303750987383e-07, + 0.08512381464242935, + -1.1469336413938436e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 736788, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 958000, + "componentType": 5126, + "count": 61, + "max": [ + 0.02291058376431465, + 0.012835784815251827, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910503670573235, + 0.012835722416639328, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 737032, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1491864, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000007152557373, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 737276, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1492596, + "componentType": 5126, + "count": 61, + "max": [ + 0.0055852243676781654, + 0.16604481637477875, + -0.045393239706754684 + ], + "min": [ + 0.00558457151055336, + 0.1660442352294922, + -0.04539373517036438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 737520, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 958976, + "componentType": 5126, + "count": 61, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 737764, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1493328, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 738008, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1494060, + "componentType": 5126, + "count": 61, + "max": [ + 2.2351745343485163e-08, + 0.5450075268745422, + 6.300800237113435e-08 + ], + "min": [ + -2.235175422526936e-08, + 0.5450068116188049, + -9.493068375832081e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 738252, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 959952, + "componentType": 5126, + "count": 61, + "max": [ + 0.003581548808142543, + 0.07014551013708115, + 0.0074014305137097836, + 0.999993622303009 + ], + "min": [ + 0.003572604851797223, + -0.07014527171850204, + -0.007401437498629093, + 0.9975029230117798 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 738496, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1494792, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 738740, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1495524, + "componentType": 5126, + "count": 61, + "max": [ + 1.490117540470237e-08, + 0.11002874374389648, + 5.774199962615967e-08 + ], + "min": [ + -1.1175870895385742e-08, + 0.11002779006958008, + -6.146728992462158e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 738984, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 960928, + "componentType": 5126, + "count": 61, + "max": [ + -0.015329956077039242, + 0.06999265402555466, + 0.008729313500225544, + 0.9998819231987 + ], + "min": [ + -0.015368294902145863, + -0.06999242305755615, + -0.008729319088160992, + 0.9973915219306946 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 739228, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1496256, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 739472, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1496988, + "componentType": 5126, + "count": 61, + "max": [ + 6.610009677388007e-07, + 0.3614473342895508, + 0.026841364800930023 + ], + "min": [ + 6.349239356495673e-07, + 0.36144566535949707, + 0.026841066777706146 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 739716, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 961904, + "componentType": 5126, + "count": 61, + "max": [ + 3.725291364276018e-08, + 9.080452834098196e-09, + -2.0954757928848267e-09, + 1.0 + ], + "min": [ + -4.440934450147989e-16, + 6.9558736548458455e-09, + -4.190952473948073e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 739960, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1497720, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 0.9999997615814209, + 1.0000007152557373 + ], + "min": [ + 1.0, + 0.9999993443489075, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 740204, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1498452, + "componentType": 5126, + "count": 61, + "max": [ + 5.429278076007904e-07, + -0.15833891928195953, + -0.2537654936313629 + ], + "min": [ + 5.28026532720105e-07, + -0.15834106504917145, + -0.25376591086387634 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 740448, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 962880, + "componentType": 5126, + "count": 61, + "max": [ + -0.998119592666626, + -2.61120902678158e-09, + -2.182043488119234e-07, + 0.0612967424094677 + ], + "min": [ + -0.998119592666626, + -3.6768419420241116e-09, + -2.2041920999527065e-07, + 0.06129671260714531 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 740692, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1499184, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 0.9999719858169556 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999716281890869 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 740936, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1499916, + "componentType": 5126, + "count": 61, + "max": [ + 9.31324173336634e-09, + 0.2539474666118622, + 3.301346396256122e-07 + ], + "min": [ + -7.450573047407261e-09, + 0.253946989774704, + -1.2036383623126312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 741180, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 963856, + "componentType": 5126, + "count": 61, + "max": [ + 0.1561359167098999, + -1.3769221141046728e-07, + 5.620270471240474e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.399919398181737e-07, + 3.356874778148722e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 741424, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1500648, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000008344650269, + 1.000001072883606, + 1.000001072883606 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 741668, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1501380, + "componentType": 5126, + "count": 61, + "max": [ + 9.313225746154785e-09, + 0.2533194422721863, + 1.6100848654332367e-07 + ], + "min": [ + -9.313225746154785e-09, + 0.2533189654350281, + -2.1243953085559042e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 741912, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 964832, + "componentType": 5126, + "count": 61, + "max": [ + -0.09231438487768173, + -2.0948361267869586e-08, + 1.200796018174799e-09, + 0.995729923248291 + ], + "min": [ + -0.09231442958116531, + -2.3552296113393822e-08, + -4.436075812241924e-11, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 742156, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1502112, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 742400, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1502844, + "componentType": 5126, + "count": 61, + "max": [ + 9.313225746154785e-09, + 0.2637789249420166, + 1.8443468263740215e-07 + ], + "min": [ + -7.450580596923828e-09, + 0.2637784481048584, + -3.138681137215826e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 742644, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 965808, + "componentType": 5126, + "count": 61, + "max": [ + 1.776542291054284e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.684551744408964e-08 + ], + "min": [ + 1.634948709750006e-08, + -0.9896631240844727, + 0.14341169595718384, + 8.484894209459526e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 742888, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1503576, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.0000011920928955 + ], + "min": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 743132, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1504308, + "componentType": 5126, + "count": 61, + "max": [ + -7.860497817091527e-07, + 0.24314305186271667, + 0.18703243136405945 + ], + "min": [ + -1.2534625284388312e-06, + 0.24314193427562714, + 0.18703170120716095 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 743376, + "componentType": 5126, + "count": 11, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 966784, + "componentType": 5126, + "count": 11, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 743420, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1505040, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999997019767761, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999992251396179, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 743664, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1505772, + "componentType": 5126, + "count": 61, + "max": [ + -0.2441895455121994, + -0.13046249747276306, + 0.029651323333382607 + ], + "min": [ + -0.2441900372505188, + -0.13046389818191528, + 0.029650939628481865 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 743908, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 966960, + "componentType": 5126, + "count": 61, + "max": [ + 0.007415751460939646, + -0.0742839053273201, + -0.9923430681228638, + 0.09839737415313721 + ], + "min": [ + 0.0074157435446977615, + -0.07428392022848129, + -0.9923431277275085, + 0.09839734435081482 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 744152, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1506504, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999985098838806, + 1.0000014305114746, + 0.9999998211860657 + ], + "min": [ + 0.9999980926513672, + 1.0000009536743164, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 744396, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1507236, + "componentType": 5126, + "count": 61, + "max": [ + 0.24341870844364166, + -0.1304636299610138, + 0.029651589691638947 + ], + "min": [ + 0.243418350815773, + -0.1304645836353302, + 0.029651187360286713 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 744640, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 967936, + "componentType": 5126, + "count": 61, + "max": [ + 0.007417429704219103, + 0.0742836743593216, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417422253638506, + 0.0742836594581604, + 0.9923431277275085, + 0.09839750081300735 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 744884, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1507968, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999983906745911, + 1.0000014305114746, + 0.9999993443489075 + ], + "min": [ + 0.9999980926513672, + 1.0000008344650269, + 0.9999987483024597 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 745128, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1508700, + "componentType": 5126, + "count": 61, + "max": [ + -0.04481612145900726, + 0.5170735716819763, + 0.010738120414316654 + ], + "min": [ + -0.04481617361307144, + 0.5170723795890808, + 0.010737735778093338 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 745372, + "componentType": 5126, + "count": 45, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 968912, + "componentType": 5126, + "count": 45, + "max": [ + -0.49043551087379456, + 0.4904356896877289, + 0.5093849897384644, + 0.50938481092453 + ], + "min": [ + -0.49043557047843933, + 0.4904356300830841, + 0.5093849301338196, + 0.50938481092453 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 745552, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1509432, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 745796, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1510164, + "componentType": 5126, + "count": 61, + "max": [ + 1.8953386415887508e-07, + 0.2381252497434616, + -0.07664632797241211 + ], + "min": [ + -1.0848967235688178e-07, + 0.23812513053417206, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 746040, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 969632, + "componentType": 5126, + "count": 61, + "max": [ + -0.5362359881401062, + 0.0996663048863411, + 0.184115469455719, + 0.7947375774383545 + ], + "min": [ + -0.5988112092018127, + -0.4604898691177368, + -0.10865537077188492, + 0.7052115797996521 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 746284, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1510896, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 746528, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1511628, + "componentType": 5126, + "count": 61, + "max": [ + 1.3317193747752754e-07, + 0.4048615097999573, + 2.6948609388455225e-07 + ], + "min": [ + -1.3585015778971865e-07, + 0.40486103296279907, + 1.4367154221872624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 746772, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 970608, + "componentType": 5126, + "count": 61, + "max": [ + 0.19012707471847534, + 0.6580678224563599, + 0.7022992372512817, + 0.7892022132873535 + ], + "min": [ + 0.0033609759993851185, + 0.09824789315462112, + 0.22955824434757233, + 0.690047562122345 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 747016, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1512360, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 747260, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1513092, + "componentType": 5126, + "count": 61, + "max": [ + 1.2678304983637645e-07, + 0.4032706022262573, + 7.145109037764996e-08 + ], + "min": [ + -2.410969557331555e-07, + 0.4032703638076782, + -1.7799588647449127e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 747504, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 971584, + "componentType": 5126, + "count": 61, + "max": [ + 0.04346292465925217, + -0.003771334420889616, + 0.0507061742246151, + 0.9977603554725647 + ], + "min": [ + 0.04346287250518799, + -0.0037713644560426474, + 0.050706129521131516, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 747748, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1513824, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 747992, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1514556, + "componentType": 5126, + "count": 61, + "max": [ + -0.09804230183362961, + 0.21963094174861908, + -0.002472429536283016 + ], + "min": [ + -0.098042793571949, + 0.2196303755044937, + -0.002472945023328066 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 748236, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 972560, + "componentType": 5126, + "count": 61, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488856315613, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 748480, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1515288, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 748720, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1516008, + "componentType": 5126, + "count": 61, + "max": [ + 1.0526554206080618e-07, + 0.09750282764434814, + 4.857868134422461e-07 + ], + "min": [ + -3.7340331004998006e-07, + 0.09750247001647949, + 2.385669404247892e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 748964, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 973536, + "componentType": 5126, + "count": 61, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731822647154331, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273203343153, + 0.009731770493090153, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 749208, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1516740, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 749452, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1517472, + "componentType": 5126, + "count": 61, + "max": [ + 0.01622716337442398, + 0.2130862921476364, + -0.003559122560545802 + ], + "min": [ + 0.01622655801475048, + 0.21308590471744537, + -0.0035597237292677164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 749696, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 974512, + "componentType": 5126, + "count": 61, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 749940, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1518204, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 750184, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1518936, + "componentType": 5126, + "count": 61, + "max": [ + 2.49599651169774e-07, + 0.0846501886844635, + -1.3059367631740315e-07 + ], + "min": [ + -2.249147286192965e-07, + 0.08464981615543365, + -4.3654699766193517e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 750428, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 975488, + "componentType": 5126, + "count": 61, + "max": [ + -0.4092182219028473, + 0.0020274638663977385, + 0.008077435195446014, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274114795029163, + 0.008077383041381836, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 750672, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1519668, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 750916, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1520400, + "componentType": 5126, + "count": 61, + "max": [ + -0.11189644038677216, + 0.10988958179950714, + -0.05163109675049782 + ], + "min": [ + -0.11189708858728409, + 0.10988906770944595, + -0.05163159966468811 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 751160, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 976464, + "componentType": 5126, + "count": 60, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322458803653717, + -0.12903635203838348, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 751400, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1521132, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 751644, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1521864, + "componentType": 5126, + "count": 61, + "max": [ + 2.0502062625382678e-07, + 0.08512412756681442, + 2.2960614387557143e-07 + ], + "min": [ + -2.691817826416809e-07, + 0.08512365072965622, + -1.334366430683076e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 751888, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 977424, + "componentType": 5126, + "count": 61, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739087641239166, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.121980220079422, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 752132, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1522596, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 752376, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1523328, + "componentType": 5126, + "count": 61, + "max": [ + -0.00558451795950532, + 0.16604478657245636, + -0.045393239706754684 + ], + "min": [ + -0.005585213657468557, + 0.16604432463645935, + -0.045393720269203186 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 752620, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 978400, + "componentType": 5126, + "count": 61, + "max": [ + 0.7849701046943665, + 0.6181666851043701, + 0.03350192308425903, + 0.03350190445780754 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + -0.023865383118391037, + 0.023865368217229843 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 752864, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1524060, + "componentType": 5126, + "count": 61, + "max": [ + 1.0, + 0.9999999403953552, + 1.0 + ], + "min": [ + 1.000000013351432e-10, + 1.000000013351432e-10, + 1.000000013351432e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 753108, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1524792, + "componentType": 5126, + "count": 61, + "max": [ + 0.13640329241752625, + 0.2850474715232849, + 0.0019398872973397374 + ], + "min": [ + 0.13640321791172028, + 0.2850467562675476, + 0.0019395597046241164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 753352, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 979376, + "componentType": 5126, + "count": 61, + "max": [ + -6.71322553102982e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.4043730800494814e-07 + ], + "min": [ + -8.074707125160785e-08, + -0.693580687046051, + -0.7203789949417114, + 1.2898200907329738e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 753596, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1525524, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 753840, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1526256, + "componentType": 5126, + "count": 61, + "max": [ + -0.13640321791172028, + 0.28504759073257446, + 0.0019399176817387342 + ], + "min": [ + -0.13640327751636505, + 0.2850469946861267, + 0.0019396154675632715 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 754084, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 980352, + "componentType": 5126, + "count": 61, + "max": [ + -6.558301635095631e-08, + -0.6935806274414063, + -0.7203789949417114, + 5.636433542122177e-08 + ], + "min": [ + -7.908624866104219e-08, + -0.6935806274414063, + -0.7203789949417114, + 4.4623494233064775e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 754328, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1526988, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 754572, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1527720, + "componentType": 5126, + "count": 1, + "max": [ + 0.09774679690599442, + 1.0262362957000732, + -0.6478449702262878 + ], + "min": [ + 0.09774679690599442, + 1.0262362957000732, + -0.6478449702262878 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 754576, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1527732, + "componentType": 5126, + "count": 61, + "max": [ + 0.14276646077632904, + 0.7887718677520752, + -0.2287280559539795 + ], + "min": [ + 0.031199082732200623, + -0.7276920080184937, + -0.7677427530288696 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 754820, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 981328, + "componentType": 5126, + "count": 61, + "max": [ + 1.0, + 0.009382952004671097, + 0.0037431172095239162, + 0.8445827960968018 + ], + "min": [ + -1.0, + -0.010876331478357315, + -0.05923604965209961, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 755064, + "componentType": 5126, + "count": 49, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1528464, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 755260, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1529052, + "componentType": 5126, + "count": 61, + "max": [ + 2.9802322387695313e-06, + 2.9663784516742453e-05, + -9.570951078785583e-06 + ], + "min": [ + -2.084299921989441e-05, + -8.342723594978452e-05, + -9.79117103270255e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 755504, + "componentType": 5126, + "count": 56, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 982304, + "componentType": 5126, + "count": 56, + "max": [ + -0.9503703713417053, + -6.745485281456354e-10, + -8.208145274579692e-09, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -8.319026356673476e-09, + -1.590014342411905e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 755728, + "componentType": 5126, + "count": 57, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1529784, + "componentType": 5126, + "count": 57, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 755956, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1530468, + "componentType": 5126, + "count": 61, + "max": [ + 2.980232949312267e-08, + 0.28249990940093994, + 7.291350101468197e-08 + ], + "min": [ + -1.4901161193847656e-08, + 0.2824997305870056, + -1.0137067363302776e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 756200, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 983200, + "componentType": 5126, + "count": 60, + "max": [ + -7.897273235357716e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.287227568511298e-07 + ], + "min": [ + -8.484418856369302e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.225300358484674e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 756440, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1531200, + "componentType": 5126, + "count": 61, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 756684, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1531932, + "componentType": 5126, + "count": 1, + "max": [ + -0.0627092570066452, + 0.9789930582046509, + -0.6726419925689697 + ], + "min": [ + -0.0627092570066452, + 0.9789930582046509, + -0.6726419925689697 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 756688, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1531944, + "componentType": 5126, + "count": 61, + "max": [ + -0.03120066225528717, + 0.7887718677520752, + -0.22872784733772278 + ], + "min": [ + -0.14276723563671112, + -0.7276920080184937, + -0.7319066524505615 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 756932, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 984160, + "componentType": 5126, + "count": 61, + "max": [ + 1.0, + 0.010877260938286781, + 0.059236615896224976, + 0.8445789217948914 + ], + "min": [ + -1.0, + -0.009331495501101017, + -0.0022396836429834366, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 757176, + "componentType": 5126, + "count": 51, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1532676, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 757380, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1533288, + "componentType": 5126, + "count": 61, + "max": [ + 2.05114483833313e-05, + 2.9505965358112007e-05, + -8.946103662310634e-06 + ], + "min": [ + -3.7848949432373047e-06, + -8.841481758281589e-05, + -9.44365601753816e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 757624, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 985136, + "componentType": 5126, + "count": 61, + "max": [ + -0.9503704309463501, + -4.414295151633496e-09, + 5.68887195129264e-08, + 0.3111206591129303 + ], + "min": [ + -0.9503704905509949, + -1.4456005281715534e-08, + 5.0129337125781603e-08, + 0.3111205995082855 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 757868, + "componentType": 5126, + "count": 53, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1534020, + "componentType": 5126, + "count": 53, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 758080, + "componentType": 5126, + "count": 61, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1534656, + "componentType": 5126, + "count": 61, + "max": [ + 1.4901168299275014e-08, + 0.28249993920326233, + 1.1159462331988834e-07 + ], + "min": [ + -1.4901187839200247e-08, + 0.2824997305870056, + -1.291043929541047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 758324, + "componentType": 5126, + "count": 52, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 986112, + "componentType": 5126, + "count": 52, + "max": [ + -7.764870701976179e-08, + -0.9818702340126038, + 0.18955440819263458, + 4.272787634818087e-07 + ], + "min": [ + -8.502072290639262e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.218644846787356e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 758532, + "componentType": 5126, + "count": 60, + "max": [ + 1.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1535388, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 758772, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1536108, + "componentType": 5126, + "count": 60, + "max": [ + -1.751163154040114e-06, + 0.0450139194726944, + -1.5852363109588623 + ], + "min": [ + -1.8027321857516654e-06, + 0.0450139194726944, + -1.6128199100494385 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 759012, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 986944, + "componentType": 5126, + "count": 1, + "max": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "min": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 759016, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 986960, + "componentType": 5126, + "count": 60, + "max": [ + 0.7071067690849304, + 0.038527753204107285, + 0.03852712735533714, + 0.7071067690849304 + ], + "min": [ + 0.7060564160346985, + -0.03852713853120804, + -0.03852774202823639, + 0.7060564160346985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 759256, + "componentType": 5126, + "count": 49, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1536828, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 759452, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1537416, + "componentType": 5126, + "count": 60, + "max": [ + 0.17381834983825684, + 0.13409876823425293, + 2.453625214116073e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409805297851563, + 6.19709750182551e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 759692, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 987920, + "componentType": 5126, + "count": 60, + "max": [ + 0.01502449531108141, + -0.022859439253807068, + 0.07640776038169861, + 0.9996691346168518 + ], + "min": [ + -0.21559244394302368, + -0.042739734053611755, + -0.03502391651272774, + 0.9755078554153442 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 759932, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1538136, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 0.9999999403953552, + 0.9999997019767761 + ], + "min": [ + 0.9999997019767761, + 0.9999992847442627, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 760172, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1538856, + "componentType": 5126, + "count": 60, + "max": [ + -6.0488782871459534e-09, + 0.6356115937232971, + 6.00728142785556e-08 + ], + "min": [ + -5.820294290970196e-08, + 0.635611355304718, + -7.076144470374857e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 760412, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 988880, + "componentType": 5126, + "count": 60, + "max": [ + 0.4480108618736267, + 1.0757684520967814e-08, + -3.042923246709961e-09, + 0.9999966621398926 + ], + "min": [ + 0.0025899235624819994, + 1.3430714318474202e-09, + -1.4663260117231403e-07, + 0.8940281271934509 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 760652, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1539576, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000007152557373, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 760892, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1540296, + "componentType": 5126, + "count": 60, + "max": [ + -0.17381829023361206, + 0.13409876823425293, + 2.0548551304955254e-08 + ], + "min": [ + -0.17381837964057922, + 0.13409805297851563, + 4.334747227829894e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 761132, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 989840, + "componentType": 5126, + "count": 60, + "max": [ + 0.006878480315208435, + 0.04273969307541847, + 0.03502378985285759, + 0.9996458292007446 + ], + "min": [ + -0.21674522757530212, + 0.02318396233022213, + -0.0764077752828598, + 0.9753522276878357 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 761372, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1541016, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999999403953552 + ], + "min": [ + 0.9999997019767761, + 0.9999994039535522, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 761612, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1541736, + "componentType": 5126, + "count": 60, + "max": [ + 5.837546623865819e-08, + 0.6356115937232971, + 5.423895643730248e-08 + ], + "min": [ + 6.221397619299296e-09, + 0.635611355304718, + -1.1749893502610576e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 761852, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 990800, + "componentType": 5126, + "count": 60, + "max": [ + 0.44949570298194885, + 6.5746386113119115e-09, + 2.734275312832324e-07, + 0.9999966621398926 + ], + "min": [ + 0.0025899161119014025, + -3.619585964287353e-09, + 2.4791608765895035e-08, + 0.8932824730873108 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 762092, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1542456, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000007152557373, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.999999463558197, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 762332, + "componentType": 5126, + "count": 52, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1543176, + "componentType": 5126, + "count": 52, + "max": [ + 1.0683431407327443e-13, + 0.002127394312992692, + 1.1921537179659936e-07 + ], + "min": [ + 5.058692519239495e-18, + 0.00212739035487175, + 6.250111539429781e-12 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 762540, + "componentType": 5126, + "count": 5, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 991760, + "componentType": 5126, + "count": 5, + "max": [ + -0.7156683802604675, + 2.1931960247911775e-07, + 3.9528813999822887e-07, + 0.6984403133392334 + ], + "min": [ + -0.7156683802604675, + 2.154917240204668e-07, + 3.914697686013824e-07, + 0.6984403133392334 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 762560, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1543800, + "componentType": 5126, + "count": 59, + "max": [ + 7.110928836593419e-15, + 0.2726658582687378, + 1.89757436430682e-08 + ], + "min": [ + -7.110631528028932e-15, + 0.27266573905944824, + -1.5124218322171146e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 762796, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 991840, + "componentType": 5126, + "count": 60, + "max": [ + -0.0076444135047495365, + 0.03693955019116402, + 0.015980815514922142, + 0.9999707341194153 + ], + "min": [ + -0.00765061192214489, + -0.03693954646587372, + -0.015980806201696396, + 0.9991604685783386 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 763036, + "componentType": 5126, + "count": 54, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1544508, + "componentType": 5126, + "count": 54, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 763252, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1545156, + "componentType": 5126, + "count": 60, + "max": [ + 0.044816166162490845, + 0.5170735716819763, + 0.010738000273704529 + ], + "min": [ + 0.04481613636016846, + 0.5170730948448181, + 0.010737967677414417 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 763492, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 992800, + "componentType": 5126, + "count": 1, + "max": [ + -0.500615119934082, + -0.4800575375556946, + -0.5191164016723633, + 0.49944713711738586 + ], + "min": [ + -0.500615119934082, + -0.4800575375556946, + -0.5191164016723633, + 0.49944713711738586 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 763496, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1545876, + "componentType": 5126, + "count": 59, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 763732, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1546584, + "componentType": 5126, + "count": 60, + "max": [ + -1.6915394640548698e-09, + 0.23812521994113922, + -0.07664656639099121 + ], + "min": [ + -1.6592702323237063e-08, + 0.23812514543533325, + -0.07664728164672852 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 763972, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 992816, + "componentType": 5126, + "count": 60, + "max": [ + -0.5899937748908997, + -0.003188326256349683, + 0.2393549382686615, + 0.7835252285003662 + ], + "min": [ + -0.6244353652000427, + -0.03331782668828964, + -0.002235901076346636, + 0.7648358941078186 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 764212, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1547304, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 764452, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1548024, + "componentType": 5126, + "count": 60, + "max": [ + 6.174938960157306e-08, + 0.4048615097999573, + 2.640082072957739e-07 + ], + "min": [ + -7.412674563056498e-08, + 0.40486103296279907, + 1.413770291947003e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 764692, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 993776, + "componentType": 5126, + "count": 60, + "max": [ + -0.007783607114106417, + 0.025573015213012695, + -0.06778706610202789, + 0.997620165348053 + ], + "min": [ + -0.03360539302229881, + -0.009917175397276878, + -0.10938040912151337, + 0.9931025505065918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 764932, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1548744, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 765172, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1549464, + "componentType": 5126, + "count": 60, + "max": [ + 7.512303312751101e-08, + 0.4032707214355469, + 5.7194778690927706e-08 + ], + "min": [ + -6.748659586719441e-08, + 0.40327024459838867, + -1.2124971249249938e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 765412, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 994736, + "componentType": 5126, + "count": 60, + "max": [ + 0.043462902307510376, + 0.003771364688873291, + -0.050706129521131516, + 0.9977603554725647 + ], + "min": [ + 0.043462879955768585, + 0.0037713409401476383, + -0.0507061667740345, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 765652, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1550184, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 765892, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1550904, + "componentType": 5126, + "count": 60, + "max": [ + 0.09804264456033707, + 0.21963094174861908, + -0.002472544554620981 + ], + "min": [ + 0.09804248064756393, + 0.21963024139404297, + -0.002472858177497983 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 766132, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 995696, + "componentType": 5126, + "count": 60, + "max": [ + -0.6223368048667908, + -0.0009816758101806045, + 0.03366421163082123, + 0.7820247411727905 + ], + "min": [ + -0.6223368048667908, + -0.0009817056125029922, + 0.033664170652627945, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 766372, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1551624, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 766612, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1552344, + "componentType": 5126, + "count": 60, + "max": [ + 1.3273691479298577e-07, + 0.09750291705131531, + 5.445808142212627e-07 + ], + "min": [ + -1.020961093445294e-07, + 0.0975024476647377, + 2.2089989215601236e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 766852, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 996656, + "componentType": 5126, + "count": 60, + "max": [ + -0.5302280187606812, + 0.002465920289978385, + -0.05339593440294266, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.002465875120833516, + -0.05339599400758743, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 767092, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1553064, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 767332, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1553784, + "componentType": 5126, + "count": 60, + "max": [ + -0.01622667722404003, + 0.21308651566505432, + -0.0035593267530202866 + ], + "min": [ + -0.01622694730758667, + 0.2130858302116394, + -0.0035596219822764397 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 767572, + "componentType": 5126, + "count": 57, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 997616, + "componentType": 5126, + "count": 57, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835169553757, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480832189321518, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 767800, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1554504, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 768040, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1555224, + "componentType": 5126, + "count": 60, + "max": [ + 5.3510945008383715e-08, + 0.0846501886844635, + -1.4870398956645658e-07 + ], + "min": [ + -9.684514878927075e-08, + 0.0846497192978859, + -4.1924914739865926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 768280, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 998528, + "componentType": 5126, + "count": 60, + "max": [ + -0.5015431642532349, + -0.0011796816252171993, + -0.008243984542787075, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797122424468398, + -0.008244025520980358, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 768520, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1555944, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 768760, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1556664, + "componentType": 5126, + "count": 60, + "max": [ + 0.11189689487218857, + 0.10988961160182953, + -0.05163126438856125 + ], + "min": [ + 0.11189647018909454, + 0.10988902300596237, + -0.051631517708301544 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 769000, + "componentType": 5126, + "count": 58, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 999488, + "componentType": 5126, + "count": 58, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493290662765503, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 769232, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1557384, + "componentType": 5126, + "count": 59, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 769468, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1558092, + "componentType": 5126, + "count": 60, + "max": [ + 1.0352880508435192e-07, + 0.08512415736913681, + 9.171408521524427e-08 + ], + "min": [ + -2.68015611482042e-07, + 0.08512386679649353, + -4.516546425747947e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 769708, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1000416, + "componentType": 5126, + "count": 60, + "max": [ + 0.02291058376431465, + 0.0128357894718647, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910509258508682, + 0.012835719622671604, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 769948, + "componentType": 5126, + "count": 58, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1558812, + "componentType": 5126, + "count": 58, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 770180, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1559508, + "componentType": 5126, + "count": 60, + "max": [ + 0.005584991071373224, + 0.16604498028755188, + -0.045393358916044235 + ], + "min": [ + 0.005584792234003544, + 0.16604404151439667, + -0.04539361223578453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 770420, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1001376, + "componentType": 5126, + "count": 60, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.02386537566781044 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 770660, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1560228, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 770900, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1560948, + "componentType": 5126, + "count": 60, + "max": [ + 1.4901161193847656e-08, + 0.5450077652931213, + 1.24802657097689e-08 + ], + "min": [ + -1.4901159417490817e-08, + 0.545007050037384, + -1.4622039579137436e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 771140, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1002336, + "componentType": 5126, + "count": 60, + "max": [ + 0.051982562988996506, + 0.02292831987142563, + 0.015958402305841446, + 0.9987187385559082 + ], + "min": [ + 0.04272787645459175, + -0.022928083315491676, + -0.015958411619067192, + 0.9986480474472046 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 771380, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1561668, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 771620, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1562388, + "componentType": 5126, + "count": 60, + "max": [ + 1.8626469255877964e-09, + 0.11002850532531738, + 1.30385160446167e-08 + ], + "min": [ + -3.725290298461914e-09, + 0.11002779006958008, + -1.6763806343078613e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 771860, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1003296, + "componentType": 5126, + "count": 60, + "max": [ + 0.033049575984478, + 0.02262180671095848, + 0.016390012577176094, + 0.9994614720344543 + ], + "min": [ + 0.02379561774432659, + -0.02262156270444393, + -0.016390016302466393, + 0.9993264675140381 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 772100, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1563108, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 772340, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1563828, + "componentType": 5126, + "count": 60, + "max": [ + 6.572756774403388e-07, + 0.3614473342895508, + 0.02684127539396286 + ], + "min": [ + 6.274733550526435e-07, + 0.36144566535949707, + 0.026841185986995697 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 772580, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1004256, + "componentType": 5126, + "count": 60, + "max": [ + 2.980232949312267e-08, + 8.731206868617392e-09, + -4.656616203746466e-10, + 1.0 + ], + "min": [ + 1.6763806343078613e-08, + 6.7521463975595e-09, + -2.7939681679356454e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 772820, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1564548, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000004768371582, + 0.9999998211860657, + 1.0000005960464478 + ], + "min": [ + 1.0, + 0.9999992251396179, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 773060, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1565268, + "componentType": 5126, + "count": 60, + "max": [ + 5.67142137697374e-07, + -0.15833893418312073, + -0.2537654936313629 + ], + "min": [ + 5.373398721530975e-07, + -0.15834081172943115, + -0.25376588106155396 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 773300, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1005216, + "componentType": 5126, + "count": 60, + "max": [ + -0.998119592666626, + -2.0500894315489404e-09, + -2.182991210020191e-07, + 0.0612967275083065 + ], + "min": [ + -0.998119592666626, + -4.423966526445611e-09, + -2.200420681219839e-07, + 0.06129671260714531 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 773540, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1565988, + "componentType": 5126, + "count": 59, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 0.9999719858169556 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 773776, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1566696, + "componentType": 5126, + "count": 60, + "max": [ + 7.45060546591958e-09, + 0.25394749641418457, + 2.1673761807505798e-07 + ], + "min": [ + -1.4901153200241879e-08, + 0.2539467513561249, + -2.306712332256211e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 774016, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1006176, + "componentType": 5126, + "count": 60, + "max": [ + 0.1561359167098999, + -1.3787318664526538e-07, + 3.4777893898052525e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3985838620556024e-07, + 5.363264277136182e-10, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 774256, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1567416, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000009536743164, + 1.000001072883606, + 1.000001072883606 + ], + "min": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 774496, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1568136, + "componentType": 5126, + "count": 60, + "max": [ + 7.450580596923828e-09, + 0.2533196806907654, + 1.6100848654332367e-07 + ], + "min": [ + -7.450580596923828e-09, + 0.253318727016449, + -2.0483946627791738e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 774736, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1007136, + "componentType": 5126, + "count": 60, + "max": [ + -0.09231438487768173, + -2.1832716967651322e-08, + 2.5918143187197984e-09, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -2.3743435662026968e-08, + -1.2250359615606499e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 774976, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1568856, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 775216, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1569576, + "componentType": 5126, + "count": 60, + "max": [ + 7.450589478708025e-09, + 0.26377904415130615, + 1.8443468263740215e-07 + ], + "min": [ + -7.450589478708025e-09, + 0.2637784481048584, + -9.906397480108353e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 775456, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1008096, + "componentType": 5126, + "count": 60, + "max": [ + 1.8130270618144095e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.661637451723436e-08 + ], + "min": [ + 1.5679953335734353e-08, + -0.9896631240844727, + 0.14341171085834503, + 8.453211108871983e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 775696, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1570296, + "componentType": 5126, + "count": 59, + "max": [ + 1.0000007152557373, + 1.000001072883606, + 1.0000011920928955 + ], + "min": [ + 1.000000238418579, + 1.0000007152557373, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 775932, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1571004, + "componentType": 5126, + "count": 60, + "max": [ + -5.759414420936082e-07, + 0.2431429624557495, + 0.18703243136405945 + ], + "min": [ + -1.1460401765361894e-06, + 0.24314190447330475, + 0.1870318204164505 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 776172, + "componentType": 5126, + "count": 11, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1009056, + "componentType": 5126, + "count": 11, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 776216, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1571724, + "componentType": 5126, + "count": 60, + "max": [ + 0.9999997615814209, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.000000238418579, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 776456, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1572444, + "componentType": 5126, + "count": 60, + "max": [ + -0.24418963491916656, + -0.13046203553676605, + 0.029651273041963577 + ], + "min": [ + -0.2441900074481964, + -0.13046345114707947, + 0.029651030898094177 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 776696, + "componentType": 5126, + "count": 58, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1009232, + "componentType": 5126, + "count": 58, + "max": [ + 0.007415749132633209, + -0.0742839127779007, + -0.9923430681228638, + 0.09839737415313721 + ], + "min": [ + 0.007415745873004198, + -0.07428392022848129, + -0.9923431277275085, + 0.09839734435081482 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 776928, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1573164, + "componentType": 5126, + "count": 60, + "max": [ + 0.9999986290931702, + 1.0000014305114746, + 0.9999998211860657 + ], + "min": [ + 0.999998152256012, + 1.0000009536743164, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 777168, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1573884, + "componentType": 5126, + "count": 60, + "max": [ + 0.24341872334480286, + -0.13046319782733917, + 0.029651468619704247 + ], + "min": [ + 0.24341824650764465, + -0.1304648220539093, + 0.0296512208878994 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 777408, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1010160, + "componentType": 5126, + "count": 60, + "max": [ + 0.007417427375912666, + 0.0742836743593216, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.0074174231849610806, + 0.074283666908741, + 0.9923431277275085, + 0.09839750081300735 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 777648, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1574604, + "componentType": 5126, + "count": 60, + "max": [ + 0.9999983906745911, + 1.0000014305114746, + 0.9999992251396179 + ], + "min": [ + 0.9999979138374329, + 1.000001072883606, + 0.9999989867210388 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 777888, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1575324, + "componentType": 5126, + "count": 60, + "max": [ + -0.04481612890958786, + 0.5170735716819763, + 0.010738013312220573 + ], + "min": [ + -0.04481615126132965, + 0.517072856426239, + 0.010737978853285313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 778128, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1011120, + "componentType": 5126, + "count": 60, + "max": [ + -0.49043551087379456, + 0.4904356300830841, + 0.520955502986908, + 0.50938481092453 + ], + "min": [ + -0.5026419758796692, + 0.4780460298061371, + 0.5093849897384644, + 0.49742183089256287 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 778368, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1576044, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 778608, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1576764, + "componentType": 5126, + "count": 59, + "max": [ + 1.817032568851573e-08, + 0.23812523484230042, + -0.07664656639099121 + ], + "min": [ + 3.2691014340002766e-09, + 0.23812514543533325, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 778844, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1012080, + "componentType": 5126, + "count": 60, + "max": [ + -0.5897470116615295, + 0.033319298177957535, + 0.002235902240499854, + 0.7851822376251221 + ], + "min": [ + -0.6247851252555847, + 0.0031883944757282734, + -0.2394631952047348, + 0.7648370265960693 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 779084, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1577472, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 779324, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1578192, + "componentType": 5126, + "count": 60, + "max": [ + 7.412680247398384e-08, + 0.4048615097999573, + 3.2353275969398965e-07 + ], + "min": [ + -7.624676356954296e-08, + 0.40486103296279907, + 1.43395169516225e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 779564, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1013040, + "componentType": 5126, + "count": 60, + "max": [ + -0.007783597335219383, + 0.009917184710502625, + 0.10938041657209396, + 0.997620165348053 + ], + "min": [ + -0.033605385571718216, + -0.025573013350367546, + 0.06778708100318909, + 0.9931025505065918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 779804, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1578912, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 780044, + "componentType": 5126, + "count": 58, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1579632, + "componentType": 5126, + "count": 58, + "max": [ + 5.5757016781399216e-08, + 0.4032707214355469, + 2.8978178079341887e-08 + ], + "min": [ + -6.302174426764395e-08, + 0.40327024459838867, + -1.209247812994363e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 780276, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1014000, + "componentType": 5126, + "count": 60, + "max": [ + 0.04346290975809097, + -0.0037713299971073866, + 0.0507061667740345, + 0.9977603554725647 + ], + "min": [ + 0.043462879955768585, + -0.0037713665515184402, + 0.05070614442229271, + 0.9977603554725647 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 780516, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1580328, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 780756, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1581048, + "componentType": 5126, + "count": 60, + "max": [ + -0.09804242104291916, + 0.21963100135326385, + -0.002472520340234041 + ], + "min": [ + -0.09804268926382065, + 0.2196303755044937, + -0.002472819061949849 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 780996, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1014960, + "componentType": 5126, + "count": 60, + "max": [ + -0.5146673321723938, + 0.049974940717220306, + -0.08315926045179367, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974892288446426, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 781236, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1581768, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 781476, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1582488, + "componentType": 5126, + "count": 60, + "max": [ + 4.4682700206521986e-08, + 0.09750283509492874, + 4.910123720947013e-07 + ], + "min": [ + -7.182106998016025e-08, + 0.09750235825777054, + 2.7369870281290787e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 781716, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1015920, + "componentType": 5126, + "count": 60, + "max": [ + -0.42176076769828796, + 0.06273208558559418, + 0.009731813333928585, + 0.9044821262359619 + ], + "min": [ + -0.4217611849308014, + 0.06273203343153, + 0.009731769561767578, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 781956, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1583208, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 782196, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1583928, + "componentType": 5126, + "count": 60, + "max": [ + 0.016226904466748238, + 0.21308647096157074, + -0.003559346543624997 + ], + "min": [ + 0.016226736828684807, + 0.21308575570583344, + -0.0035596212837845087 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 782436, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1016880, + "componentType": 5126, + "count": 59, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177223801612854, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 782672, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1584648, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 782912, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1585368, + "componentType": 5126, + "count": 59, + "max": [ + 1.0093086189044698e-07, + 0.08465008437633514, + -1.1781195041749015e-07 + ], + "min": [ + -4.942523190720749e-08, + 0.0846497043967247, + -3.7049542811473657e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 783148, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1017824, + "componentType": 5126, + "count": 60, + "max": [ + -0.4092182219028473, + 0.0020274652633816004, + 0.008077430538833141, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027420327067375, + 0.008077398873865604, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 783388, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1586076, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 783628, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1586796, + "componentType": 5126, + "count": 60, + "max": [ + -0.11189638078212738, + 0.10988976061344147, + -0.05163118988275528 + ], + "min": [ + -0.11189689487218857, + 0.10988907516002655, + -0.051631443202495575 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 783868, + "componentType": 5126, + "count": 57, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1018784, + "componentType": 5126, + "count": 57, + "max": [ + -0.43224573135375977, + -0.12903621792793274, + 0.150300532579422, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363222360611, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 784096, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1587516, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 784336, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1588236, + "componentType": 5126, + "count": 60, + "max": [ + 7.995839723662357e-08, + 0.08512412756681442, + 5.7091973815204256e-08 + ], + "min": [ + -1.5239098161146103e-07, + 0.08512365072965622, + -1.0210850120984105e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 784576, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1019696, + "componentType": 5126, + "count": 60, + "max": [ + 0.1481143683195114, + -0.12198016792535782, + -0.12739090621471405, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.121980220079422, + -0.12739095091819763, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 784816, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1588956, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 785056, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1589676, + "componentType": 5126, + "count": 60, + "max": [ + -0.005584778729826212, + 0.1660449057817459, + -0.04539324715733528 + ], + "min": [ + -0.005584980361163616, + 0.1660441905260086, + -0.04539361596107483 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 785296, + "componentType": 5126, + "count": 57, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1020656, + "componentType": 5126, + "count": 57, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501919358968735, + 0.02386540174484253 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501893281936646, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 785524, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1590396, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 785764, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1591116, + "componentType": 5126, + "count": 59, + "max": [ + 0.13640327751636505, + 0.2850472331047058, + 0.0019397421274334192 + ], + "min": [ + 0.13640323281288147, + 0.2850467562675476, + 0.0019397166324779391 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 786000, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1021568, + "componentType": 5126, + "count": 60, + "max": [ + -7.060165785333083e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3743651550157665e-07 + ], + "min": [ + -7.68992833855009e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3178956237425155e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 786240, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1591824, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 786480, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1592544, + "componentType": 5126, + "count": 59, + "max": [ + -0.13640321791172028, + 0.2850474715232849, + 0.0019398159347474575 + ], + "min": [ + -0.13640326261520386, + 0.2850467562675476, + 0.0019397850846871734 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 786716, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1022528, + "componentType": 5126, + "count": 60, + "max": [ + -7.136247859307332e-08, + -0.6935806274414063, + -0.7203789949417114, + 5.473659925314678e-08 + ], + "min": [ + -7.66127286055962e-08, + -0.6935806274414063, + -0.7203789949417114, + 4.978346268558198e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 786956, + "componentType": 5126, + "count": 54, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1593252, + "componentType": 5126, + "count": 54, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 1.0, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 787172, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1593900, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "min": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 787176, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1593912, + "componentType": 5126, + "count": 60, + "max": [ + 0.13412052392959595, + 0.1823856234550476, + -0.2435082644224167 + ], + "min": [ + 0.08132446557283401, + -0.3705810606479645, + -0.37495434284210205 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 787416, + "componentType": 5126, + "count": 46, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1023488, + "componentType": 5126, + "count": 46, + "max": [ + 1.0, + 2.9028439030298614e-07, + 5.523346544578089e-07, + 0.5255585312843323 + ], + "min": [ + -0.9999991655349731, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 787600, + "componentType": 5126, + "count": 18, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1594632, + "componentType": 5126, + "count": 18, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 787672, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1594848, + "componentType": 5126, + "count": 60, + "max": [ + 7.267296314239502e-05, + 7.189257303252816e-05, + 0.0019010747782886028 + ], + "min": [ + -3.5315752029418945e-06, + -3.570437547750771e-05, + -4.703074228018522e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 787912, + "componentType": 5126, + "count": 27, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1024224, + "componentType": 5126, + "count": 27, + "max": [ + -0.9503704309463501, + -5.3739683814058026e-09, + -1.3518750563434878e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -5.373970601851852e-09, + -1.3518752339791718e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 788020, + "componentType": 5126, + "count": 29, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1595568, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 788136, + "componentType": 5126, + "count": 59, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1595916, + "componentType": 5126, + "count": 59, + "max": [ + 1.4901161193847656e-08, + 0.28249987959861755, + 2.310237334768317e-08 + ], + "min": [ + -2.9802322387695313e-08, + 0.2824998199939728, + -2.948213051467974e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 788372, + "componentType": 5126, + "count": 52, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1024656, + "componentType": 5126, + "count": 52, + "max": [ + 4.4404941945686005e-07, + 0.9818702340126038, + -0.1895543485879898, + 7.190087671915535e-07 + ], + "min": [ + -8.210088253690628e-08, + 0.7339818477630615, + -0.6791691184043884, + 4.2527329924268997e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 788580, + "componentType": 5126, + "count": 51, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1596624, + "componentType": 5126, + "count": 51, + "max": [ + 1.0, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 788784, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1597236, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 788788, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1597248, + "componentType": 5126, + "count": 60, + "max": [ + -0.08132525533437729, + 0.1823856234550476, + -0.2435079663991928 + ], + "min": [ + -0.13412106037139893, + -0.3705810606479645, + -0.37495410442352295 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 789028, + "componentType": 5126, + "count": 46, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1025488, + "componentType": 5126, + "count": 46, + "max": [ + 1.0, + 2.9028439030298614e-07, + 5.523349955183221e-07, + 0.5255585312843323 + ], + "min": [ + -0.9999998211860657, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 789212, + "componentType": 5126, + "count": 19, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1597968, + "componentType": 5126, + "count": 19, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 789288, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1598196, + "componentType": 5126, + "count": 60, + "max": [ + 3.4421682357788086e-06, + 5.474954377859831e-05, + 0.0013129317667335272 + ], + "min": [ + -4.9933791160583496e-05, + -3.655834007076919e-05, + -4.646745583158918e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 789528, + "componentType": 5126, + "count": 38, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1026224, + "componentType": 5126, + "count": 38, + "max": [ + -0.9503704309463501, + -1.0610003542410595e-08, + 5.336416464274407e-08, + 0.3111206591129303 + ], + "min": [ + -0.9503704905509949, + -1.0610007983302694e-08, + 5.336414687917568e-08, + 0.3111206293106079 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 789680, + "componentType": 5126, + "count": 40, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1598916, + "componentType": 5126, + "count": 40, + "max": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 789840, + "componentType": 5126, + "count": 60, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1599396, + "componentType": 5126, + "count": 60, + "max": [ + 1.4901161193847656e-08, + 0.28249987959861755, + 3.1385972931730066e-08 + ], + "min": [ + -1.4901173628345532e-08, + 0.2824997901916504, + -2.3935392334806238e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 790080, + "componentType": 5126, + "count": 46, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1026832, + "componentType": 5126, + "count": 46, + "max": [ + 4.385553609154158e-07, + -0.7339818477630615, + 0.6791691184043884, + 7.12532425950485e-07 + ], + "min": [ + -8.210088253690628e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.2527335608610883e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 790264, + "componentType": 5126, + "count": 45, + "max": [ + 0.9833333492279053 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1600116, + "componentType": 5126, + "count": 45, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 790444, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1600656, + "componentType": 5126, + "count": 71, + "max": [ + -1.6016176687116968e-06, + -0.37474745512008667, + -1.4499485492706299 + ], + "min": [ + -1.639538254494255e-06, + -0.5926362872123718, + -1.4841880798339844 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 790728, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1027568, + "componentType": 5126, + "count": 71, + "max": [ + 2.995587067289307e-07, + 1.1920719344971076e-07, + 0.3039783239364624, + 0.9974448084831238 + ], + "min": [ + 7.040224403453976e-08, + 1.1356817708474409e-07, + 0.0714409351348877, + 0.9526789784431458 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 791012, + "componentType": 5126, + "count": 30, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1601508, + "componentType": 5126, + "count": 30, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 791132, + "componentType": 5126, + "count": 62, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1601868, + "componentType": 5126, + "count": 62, + "max": [ + 3.725290298461914e-09, + 0.002127423882484436, + 1.1920930376163597e-07 + ], + "min": [ + -1.4901058165150971e-08, + 0.0021273642778396606, + -1.1920928955078125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 791380, + "componentType": 5126, + "count": 24, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1028704, + "componentType": 5126, + "count": 24, + "max": [ + 0.7071067690849304, + 3.1680286838309257e-07, + -2.9572944981737237e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9572944981737237e-07, + -3.1680286838309257e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 791476, + "componentType": 5126, + "count": 52, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1602612, + "componentType": 5126, + "count": 52, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 791684, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1603236, + "componentType": 5126, + "count": 71, + "max": [ + 0.17381837964057922, + 0.13409888744354248, + 1.336258463879858e-07 + ], + "min": [ + 0.17381830513477325, + 0.13409817218780518, + -7.708261051675436e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 791968, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1029088, + "componentType": 5126, + "count": 71, + "max": [ + -0.12623970210552216, + 0.10885979980230331, + -0.1850762665271759, + 0.9688592553138733 + ], + "min": [ + -0.18987025320529938, + -0.13559778034687042, + -0.2515178620815277, + 0.9499555826187134 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 792252, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1604088, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 792536, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1604940, + "componentType": 5126, + "count": 71, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 4.5250629909787676e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.6356112957000732, + -2.886031680304768e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 792820, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1030224, + "componentType": 5126, + "count": 71, + "max": [ + 0.2578085660934448, + 2.4567933465391434e-08, + -5.351433429723329e-08, + 0.9945589303970337 + ], + "min": [ + 0.10417576879262924, + -1.4197009789995718e-08, + -9.168572745466008e-08, + 0.9661960601806641 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 793104, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1605792, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 793388, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1606644, + "componentType": 5126, + "count": 71, + "max": [ + -0.1738181710243225, + 0.13409888744354248, + 1.0807895733933037e-07 + ], + "min": [ + -0.173818439245224, + 0.13409817218780518, + -1.0050413834505889e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 793672, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1031360, + "componentType": 5126, + "count": 71, + "max": [ + 0.08631575107574463, + -0.10901230573654175, + 0.08223097771406174, + 0.9869427680969238 + ], + "min": [ + -0.16023403406143188, + -0.345400869846344, + 0.047248777002096176, + 0.9234667420387268 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 793956, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1607496, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 794240, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1608348, + "componentType": 5126, + "count": 70, + "max": [ + 8.0727204476716e-08, + 0.6356115341186523, + 6.649570849504016e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.635611355304718, + -5.8210176234752e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 794520, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1032496, + "componentType": 5126, + "count": 71, + "max": [ + 0.4422227442264557, + 2.572116741816899e-09, + 4.0095505937642884e-07, + 0.9737525582313538 + ], + "min": [ + 0.22760936617851257, + -1.3526243236583468e-08, + 1.2640116153761483e-07, + 0.896905243396759 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 794804, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1609188, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 795088, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1610040, + "componentType": 5126, + "count": 71, + "max": [ + 5.960475135680099e-08, + 0.002127423882484436, + 2.3841823804104934e-07 + ], + "min": [ + -2.9802425416392e-08, + 0.002127364045009017, + -2.3846826024964685e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 795372, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1033632, + "componentType": 5126, + "count": 71, + "max": [ + -0.7176480889320374, + -0.01473292801529169, + 0.1587735116481781, + 0.6928761601448059 + ], + "min": [ + -0.7516321539878845, + -0.12262853235006332, + 0.050855036824941635, + 0.6287769675254822 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 795656, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1610892, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 795940, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1611744, + "componentType": 5126, + "count": 71, + "max": [ + 8.940696716308594e-08, + 0.2726660966873169, + 3.818431792979027e-08 + ], + "min": [ + -8.940696716308594e-08, + 0.2726656198501587, + -5.3541363342901604e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 796224, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1034768, + "componentType": 5126, + "count": 71, + "max": [ + -0.04973636940121651, + -0.14176911115646362, + -0.004650566261261702, + 0.9886385798454285 + ], + "min": [ + -0.0497363917529583, + -0.1417691856622696, + -0.00465058907866478, + 0.9886385798454285 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 796508, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1612596, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 796792, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1613448, + "componentType": 5126, + "count": 71, + "max": [ + 0.044816210865974426, + 0.5170735716819763, + 0.01073803473263979 + ], + "min": [ + 0.04481606185436249, + 0.5170723795890808, + 0.010737908072769642 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 797076, + "componentType": 5126, + "count": 69, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1035904, + "componentType": 5126, + "count": 69, + "max": [ + -0.4904356002807617, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356598854065, + -0.49043551087379456, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 797352, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1614300, + "componentType": 5126, + "count": 70, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 797632, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1615140, + "componentType": 5126, + "count": 71, + "max": [ + 5.791310542235806e-08, + 0.2381252646446228, + -0.07664656639099121 + ], + "min": [ + -8.36478051269296e-08, + 0.23812511563301086, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 797916, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1037008, + "componentType": 5126, + "count": 71, + "max": [ + -0.4363623559474945, + 0.18278372287750244, + -0.14861759543418884, + 0.7140595316886902 + ], + "min": [ + -0.7492322325706482, + -0.002665633801370859, + -0.5320098400115967, + 0.6454120874404907 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 798200, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1615992, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 798484, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1616844, + "componentType": 5126, + "count": 71, + "max": [ + 1.620538085944645e-07, + 0.4048616290092468, + 3.2644962288941315e-07 + ], + "min": [ + -1.5993373381206766e-07, + 0.40486103296279907, + 8.17913345940724e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 798768, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1038144, + "componentType": 5126, + "count": 71, + "max": [ + 0.26305416226387024, + 0.09805814176797867, + -0.21488413214683533, + 0.9595862030982971 + ], + "min": [ + 0.10173474997282028, + -0.13284291326999664, + -0.5198734402656555, + 0.8125092387199402 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 799052, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1617696, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 799336, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1618548, + "componentType": 5126, + "count": 71, + "max": [ + 2.441222761717654e-07, + 0.4032706916332245, + 1.8628833231559838e-07 + ], + "min": [ + -2.1530857452489727e-07, + 0.4032703638076782, + -1.751250522374903e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 799620, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1039280, + "componentType": 5126, + "count": 71, + "max": [ + 0.20727665722370148, + 0.013223912566900253, + -0.00935506634414196, + 0.9873109459877014 + ], + "min": [ + 0.13297626376152039, + -0.08075718581676483, + -0.03182235360145569, + 0.9781482219696045 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 799904, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1619400, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 800188, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1620252, + "componentType": 5126, + "count": 71, + "max": [ + 0.09804292768239975, + 0.21963079273700714, + -0.0024723666720092297 + ], + "min": [ + 0.09804221987724304, + 0.21963034570217133, + -0.0024729708675295115 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 800472, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1040416, + "componentType": 5126, + "count": 71, + "max": [ + -0.6223366260528564, + -0.0009816435631364584, + 0.03366420790553093, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817127138376236, + 0.033664148300886154, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 800756, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1621104, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 801040, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1621956, + "componentType": 5126, + "count": 71, + "max": [ + 2.5141113724203024e-07, + 0.09750297665596008, + 4.891303433396388e-07 + ], + "min": [ + -2.234342844076309e-07, + 0.0975024476647377, + 2.2089989215601236e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 801324, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1041552, + "componentType": 5126, + "count": 70, + "max": [ + -0.5298978090286255, + -0.01887066289782524, + -0.08739957213401794, + 0.8433347940444946 + ], + "min": [ + -0.5298979878425598, + -0.018870726227760315, + -0.08739974349737167, + 0.8433346152305603 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 801604, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1622808, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 801888, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1623660, + "componentType": 5126, + "count": 71, + "max": [ + -0.016226565465331078, + 0.2130862921476364, + -0.003559247124940157 + ], + "min": [ + -0.016227280721068382, + 0.2130858153104782, + -0.0035597311798483133 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 802172, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1042672, + "componentType": 5126, + "count": 71, + "max": [ + -0.626492977142334, + -0.07110267877578735, + 0.07480837404727936, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110274583101273, + 0.07480830699205399, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 802456, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1624512, + "componentType": 5126, + "count": 70, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 802736, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1625352, + "componentType": 5126, + "count": 71, + "max": [ + 2.299302082064969e-07, + 0.08465008437633514, + -1.5748119608360867e-07 + ], + "min": [ + -2.4592620206931315e-07, + 0.08464979380369186, + -5.242624183665612e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 803020, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1043808, + "componentType": 5126, + "count": 71, + "max": [ + -0.5015432834625244, + -0.0011796333128586411, + -0.008243931457400322, + 0.8650925159454346 + ], + "min": [ + -0.501543402671814, + -0.0011796995531767607, + -0.008244020864367485, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 803304, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1626204, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 803588, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1627056, + "componentType": 5126, + "count": 71, + "max": [ + 0.11189693212509155, + 0.1098896786570549, + -0.05163108929991722 + ], + "min": [ + 0.11189635097980499, + 0.10988923162221909, + -0.051631759852170944 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 803872, + "componentType": 5126, + "count": 66, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1044944, + "componentType": 5126, + "count": 66, + "max": [ + -0.4573034942150116, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 804136, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1627908, + "componentType": 5126, + "count": 71, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 804420, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1628760, + "componentType": 5126, + "count": 70, + "max": [ + 1.0172792030971323e-07, + 0.08512405306100845, + 2.4554032052037655e-07 + ], + "min": [ + -2.659608924204804e-07, + 0.08512390404939651, + -2.3366573032035376e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 804700, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1046000, + "componentType": 5126, + "count": 71, + "max": [ + 0.022910596802830696, + 0.012835780158638954, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910531610250473, + 0.012835734523832798, + 0.6957961916923523, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 804984, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1629600, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 805268, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1630452, + "componentType": 5126, + "count": 71, + "max": [ + 0.005585383158177137, + 0.1660447120666504, + -0.04539324343204498 + ], + "min": [ + 0.005584318190813065, + 0.16604425013065338, + -0.04539371281862259 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 805552, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1047136, + "componentType": 5126, + "count": 71, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865386843681335 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.023865345865488052 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 805836, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1631304, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 806120, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1632156, + "componentType": 5126, + "count": 71, + "max": [ + 1.1920928244535389e-07, + 0.5450077652931213, + 8.227928560700093e-08 + ], + "min": [ + -8.940696716308594e-08, + 0.5450068116188049, + -7.100612720023491e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 806404, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1048272, + "componentType": 5126, + "count": 71, + "max": [ + 0.16371217370033264, + 0.29930293560028076, + -0.044083371758461, + 0.980219841003418 + ], + "min": [ + 0.14147065579891205, + 0.1289348155260086, + -0.0641193613409996, + 0.9378191828727722 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 806688, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1633008, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 806972, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1633860, + "componentType": 5126, + "count": 71, + "max": [ + 5.960464477539063e-08, + 0.11002874374389648, + 1.1734665861240501e-07 + ], + "min": [ + -5.960465898624534e-08, + 0.11002779006958008, + -6.14673041354763e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 807256, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1049408, + "componentType": 5126, + "count": 71, + "max": [ + 0.14591172337532043, + 0.29803410172462463, + -0.04804689437150955, + 0.9827246069908142 + ], + "min": [ + 0.12287082523107529, + 0.12795832753181458, + -0.06977938115596771, + 0.9407530426979065 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 807540, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1634712, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 807824, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1635564, + "componentType": 5126, + "count": 71, + "max": [ + 6.796274192311103e-07, + 0.3614473342895508, + 0.0268414244055748 + ], + "min": [ + 6.274733550526435e-07, + 0.36144590377807617, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 808108, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1050544, + "componentType": 5126, + "count": 71, + "max": [ + 5.215405707303944e-08, + 1.327140175533259e-08, + 9.313224635931761e-10, + 1.0 + ], + "min": [ + -4.440933391356805e-16, + 3.2596882970636898e-09, + -5.587936335871291e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 808392, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1636416, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 0.9999997615814209, + 1.0000007152557373 + ], + "min": [ + 1.0, + 0.9999994039535522, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 808676, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1637268, + "componentType": 5126, + "count": 71, + "max": [ + 5.969443463982316e-07, + -0.1583392471075058, + -0.25376513600349426 + ], + "min": [ + 5.373398153096787e-07, + -0.15834034979343414, + -0.25376611948013306 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 808960, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1051680, + "componentType": 5126, + "count": 71, + "max": [ + -0.998119592666626, + -6.3259131266590884e-09, + -2.1538814110044768e-07, + 0.06129670515656471 + ], + "min": [ + -0.998119592666626, + -1.2496569112840916e-08, + -2.253524939987983e-07, + 0.06129666790366173 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 809244, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1638120, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 809528, + "componentType": 5126, + "count": 69, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1638972, + "componentType": 5126, + "count": 69, + "max": [ + 2.980233304583635e-08, + 0.25394749641418457, + 3.669037766940164e-07 + ], + "min": [ + -2.9802315282267955e-08, + 0.2539469301700592, + -2.521454121051647e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 809804, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1052816, + "componentType": 5126, + "count": 71, + "max": [ + 0.1561359167098999, + -1.3318914682258765e-07, + 6.310199918146964e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.4282436211487948e-07, + -2.0653183607777237e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 810088, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1639800, + "componentType": 5126, + "count": 70, + "max": [ + 1.0000008344650269, + 1.0000011920928955, + 1.000001072883606 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 810368, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1640640, + "componentType": 5126, + "count": 71, + "max": [ + 2.2351741790771484e-08, + 0.25331956148147583, + 3.0010147611392313e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.2533189058303833, + -2.7818600756290834e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 810652, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1053952, + "componentType": 5126, + "count": 71, + "max": [ + -0.09231435507535934, + -1.77456378480656e-08, + 5.266383773516736e-09, + 0.995729923248291 + ], + "min": [ + -0.09231441468000412, + -3.0702388187364704e-08, + -2.453293124204947e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 810936, + "componentType": 5126, + "count": 69, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1641492, + "componentType": 5126, + "count": 69, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 811212, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1642320, + "componentType": 5126, + "count": 71, + "max": [ + 2.9802322387695313e-08, + 0.26377904415130615, + 3.220547171167709e-07 + ], + "min": [ + -2.235175955433988e-08, + 0.26377832889556885, + -3.976183506892994e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 811496, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1055088, + "componentType": 5126, + "count": 71, + "max": [ + 2.1485588419523083e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.222250696439005e-08 + ], + "min": [ + 1.3744738680543378e-08, + -0.9896631240844727, + 0.14341171085834503, + 8.369681836484233e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 811780, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1643172, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.0000011920928955 + ], + "min": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 812064, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1644024, + "componentType": 5126, + "count": 71, + "max": [ + -8.582366604059644e-07, + 0.24314285814762115, + 0.18703237175941467 + ], + "min": [ + -9.779674883247935e-07, + 0.2431419938802719, + 0.18703190982341766 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 812348, + "componentType": 5126, + "count": 20, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1056224, + "componentType": 5126, + "count": 20, + "max": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 812428, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1644876, + "componentType": 5126, + "count": 71, + "max": [ + 0.9999998211860657, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 812712, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1645728, + "componentType": 5126, + "count": 71, + "max": [ + -0.2441895455121994, + -0.13046199083328247, + 0.029651446267962456 + ], + "min": [ + -0.24418994784355164, + -0.1304634064435959, + 0.029650893062353134 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 812996, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1056544, + "componentType": 5126, + "count": 71, + "max": [ + 0.007415760308504105, + -0.0742838904261589, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.0074157421477139, + -0.07428392022848129, + -0.9923431277275085, + 0.09839733690023422 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 813280, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1646580, + "componentType": 5126, + "count": 71, + "max": [ + 0.9999987483024597, + 1.0000014305114746, + 0.9999999403953552 + ], + "min": [ + 0.9999982714653015, + 1.0000009536743164, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 813564, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1647432, + "componentType": 5126, + "count": 71, + "max": [ + 0.24341875314712524, + -0.13046294450759888, + 0.029651539400219917 + ], + "min": [ + 0.24341841042041779, + -0.1304643452167511, + 0.029651079326868057 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 813848, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1057680, + "componentType": 5126, + "count": 71, + "max": [ + 0.007417432498186827, + 0.07428370416164398, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417422253638506, + 0.0742836743593216, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 814132, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1648284, + "componentType": 5126, + "count": 70, + "max": [ + 0.9999985098838806, + 1.0000014305114746, + 0.9999993443489075 + ], + "min": [ + 0.9999980926513672, + 1.000001072883606, + 0.9999988675117493 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 814412, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1649124, + "componentType": 5126, + "count": 71, + "max": [ + -0.0448160246014595, + 0.5170735716819763, + 0.010738085955381393 + ], + "min": [ + -0.04481623321771622, + 0.5170726180076599, + 0.01073791366070509 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 814696, + "componentType": 5126, + "count": 52, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1058816, + "componentType": 5126, + "count": 52, + "max": [ + -0.49043548107147217, + 0.4904356300830841, + 0.5093849897384644, + 0.50938481092453 + ], + "min": [ + -0.49043554067611694, + 0.4904356300830841, + 0.5093849301338196, + 0.50938481092453 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 814904, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1649976, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 815188, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1650828, + "componentType": 5126, + "count": 71, + "max": [ + 1.001267690980967e-07, + 0.23812536895275116, + -0.07664656639099121 + ], + "min": [ + -9.358844721418791e-08, + 0.23812498152256012, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 815472, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1059648, + "componentType": 5126, + "count": 71, + "max": [ + -0.6028834581375122, + 0.17558319866657257, + 0.3124394714832306, + 0.7474221587181091 + ], + "min": [ + -0.7127617001533508, + 0.03729730471968651, + 0.2284545749425888, + 0.6268662214279175 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 815756, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1651680, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 816040, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1652532, + "componentType": 5126, + "count": 71, + "max": [ + 2.3735358922749583e-07, + 0.4048616290092468, + 3.28295357121533e-07 + ], + "min": [ + -1.3752492122875992e-07, + 0.40486103296279907, + 8.318831845599561e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 816324, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1060784, + "componentType": 5126, + "count": 71, + "max": [ + -0.13297399878501892, + 0.2354869842529297, + 0.5756828188896179, + 0.9517971277236938 + ], + "min": [ + -0.34398967027664185, + -0.013813250698149204, + 0.27606040239334106, + 0.7034246325492859 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 816608, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1653384, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 816892, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1654236, + "componentType": 5126, + "count": 70, + "max": [ + 3.518675555369555e-07, + 0.4032707214355469, + 1.344171636219471e-07 + ], + "min": [ + -2.53569936603526e-07, + 0.40327024459838867, + -1.24790844324707e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 817172, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1061920, + "componentType": 5126, + "count": 71, + "max": [ + 0.13297626376152039, + 0.08075716346502304, + 0.13930410146713257, + 0.9954636693000793 + ], + "min": [ + -0.1127442866563797, + -0.0034947001840919256, + 0.031822361052036285, + 0.9838042855262756 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 817456, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1655076, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 817740, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1655928, + "componentType": 5126, + "count": 71, + "max": [ + -0.09804201126098633, + 0.21963109076023102, + -0.0024725464172661304 + ], + "min": [ + -0.09804326295852661, + 0.21963012218475342, + -0.0024729142896831036 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 818024, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1063056, + "componentType": 5126, + "count": 71, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.0831591933965683, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488483786583, + -0.08315926790237427, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 818308, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1656780, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 818592, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1657632, + "componentType": 5126, + "count": 71, + "max": [ + 2.282686892840502e-07, + 0.09750283509492874, + 4.820809067496157e-07 + ], + "min": [ + -2.530076699258643e-07, + 0.09750235080718994, + 2.2800745114182064e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 818876, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1064192, + "componentType": 5126, + "count": 71, + "max": [ + -0.42176076769828796, + 0.06273211538791656, + 0.009731828235089779, + 0.9044821262359619 + ], + "min": [ + -0.4217611253261566, + 0.06273203343153, + 0.009731773287057877, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 819160, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1658484, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 819444, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1659336, + "componentType": 5126, + "count": 71, + "max": [ + 0.0162272397428751, + 0.21308664977550507, + -0.00355930277146399 + ], + "min": [ + 0.016226401552557945, + 0.21308568120002747, + -0.003559621749445796 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 819728, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1065328, + "componentType": 5126, + "count": 71, + "max": [ + -0.5430818200111389, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 820012, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1660188, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 820296, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1661040, + "componentType": 5126, + "count": 71, + "max": [ + 2.498835272035649e-07, + 0.08465013653039932, + -1.435290357676422e-07 + ], + "min": [ + -2.2929563670004427e-07, + 0.0846497043967247, + -4.801277100341395e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 820580, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1066464, + "componentType": 5126, + "count": 71, + "max": [ + -0.4092182219028473, + 0.002027504611760378, + 0.008077401667833328, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274389535188675, + 0.008077358826994896, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 820864, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1661892, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 821148, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1662744, + "componentType": 5126, + "count": 71, + "max": [ + -0.11189614236354828, + 0.10988966375589371, + -0.05163109675049782 + ], + "min": [ + -0.11189697682857513, + 0.10988891869783401, + -0.051631588488817215 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 821432, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1067600, + "componentType": 5126, + "count": 70, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363073348999, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 821712, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1663596, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 821996, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1664448, + "componentType": 5126, + "count": 70, + "max": [ + 2.0011655976759357e-07, + 0.08512412756681442, + 1.1366032737214482e-07 + ], + "min": [ + -1.5790888596711739e-07, + 0.08512364327907562, + -1.303375825045805e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 822276, + "componentType": 5126, + "count": 69, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1068720, + "componentType": 5126, + "count": 69, + "max": [ + 0.1481143981218338, + -0.12198016792535782, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.121980220079422, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 822552, + "componentType": 5126, + "count": 70, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1665288, + "componentType": 5126, + "count": 70, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 822832, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1666128, + "componentType": 5126, + "count": 71, + "max": [ + -0.005584545899182558, + 0.16604487597942352, + -0.04539338871836662 + ], + "min": [ + -0.0055853575468063354, + 0.1660441756248474, + -0.04539359360933304 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 823116, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1069824, + "componentType": 5126, + "count": 71, + "max": [ + 0.605564296245575, + -0.79215407371521, + -0.06648410856723785, + 0.03692908585071564 + ], + "min": [ + 0.6055642366409302, + -0.79215407371521, + -0.06648416817188263, + 0.036929041147232056 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 823400, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1666980, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 823684, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1667832, + "componentType": 5126, + "count": 71, + "max": [ + 0.13640333712100983, + 0.2850474715232849, + 0.001939835143275559 + ], + "min": [ + 0.1364031434059143, + 0.2850467562675476, + 0.0019396847346797585 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 823968, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1070960, + "componentType": 5126, + "count": 71, + "max": [ + -5.806403180486086e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.6072520736543083e-07 + ], + "min": [ + -9.149768942506853e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.145465517993216e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 824252, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1668684, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 824536, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1669536, + "componentType": 5126, + "count": 71, + "max": [ + -0.13640309870243073, + 0.2850474715232849, + 0.001939890906214714 + ], + "min": [ + -0.13640336692333221, + 0.2850467562675476, + 0.0019396616844460368 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 824820, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1072096, + "componentType": 5126, + "count": 71, + "max": [ + -5.318522156017025e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.282646663497871e-08 + ], + "min": [ + -9.402965872595814e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.4349259436794455e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 825104, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1670388, + "componentType": 5126, + "count": 71, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825388, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1671240, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "min": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825392, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1671252, + "componentType": 5126, + "count": 1, + "max": [ + 0.5856667757034302, + -0.08968925476074219, + -0.24350877106189728 + ], + "min": [ + 0.5856667757034302, + -0.08968925476074219, + -0.24350877106189728 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825396, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073232, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 825400, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1671264, + "componentType": 5126, + "count": 71, + "max": [ + 1.3217329978942871e-05, + 2.1197109845161322e-07, + 1.7671200680524635e-07 + ], + "min": [ + -3.129243850708008e-07, + -6.953951015020721e-06, + -3.371982165845111e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825684, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1672116, + "componentType": 5126, + "count": 71, + "max": [ + 6.454076808854337e-15, + 0.28249984979629517, + 1.8960527370381897e-08 + ], + "min": [ + -5.960465188081798e-08, + 0.2824998199939728, + -3.1899269892221582e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825968, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1672968, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825972, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1672980, + "componentType": 5126, + "count": 1, + "max": [ + -0.37245675921440125, + -0.866890549659729, + -0.24350769817829132 + ], + "min": [ + -0.37245675921440125, + -0.866890549659729, + -0.24350769817829132 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 825976, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073248, + "componentType": 5126, + "count": 1, + "max": [ + -0.9855368733406067, + -0.16946104168891907, + 5.443465624921373e-07, + 9.359926878005354e-08 + ], + "min": [ + -0.9855368733406067, + -0.16946104168891907, + 5.443465624921373e-07, + 9.359926878005354e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 825980, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1672992, + "componentType": 5126, + "count": 71, + "max": [ + -2.3096799850463867e-06, + 1.4075476428843103e-05, + -6.598927029699553e-06 + ], + "min": [ + -1.506507396697998e-05, + 2.5358767743455246e-06, + -4.898950282949954e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 826264, + "componentType": 5126, + "count": 71, + "max": [ + 1.1666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1673844, + "componentType": 5126, + "count": 71, + "max": [ + 5.960465188081798e-08, + 0.28249993920326233, + 2.9369848775218088e-08 + ], + "min": [ + -1.613519159861937e-14, + 0.2824997901916504, + -3.301280315781696e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 826548, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1674696, + "componentType": 5126, + "count": 1, + "max": [ + -1.7668603504716884e-06, + -0.007859840989112854, + -1.599446177482605 + ], + "min": [ + -1.7668603504716884e-06, + -0.007859840989112854, + -1.599446177482605 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 826552, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073264, + "componentType": 5126, + "count": 1, + "max": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "min": [ + 0.0, + 1.1920928955078125e-07, + 0.0, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826556, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073280, + "componentType": 5126, + "count": 1, + "max": [ + -0.0318433977663517, + 0.0329650454223156, + -0.023134533315896988, + 0.9986811876296997 + ], + "min": [ + -0.0318433977663517, + 0.0329650454223156, + -0.023134533315896988, + 0.9986811876296997 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826560, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073296, + "componentType": 5126, + "count": 1, + "max": [ + 0.13723091781139374, + 4.760447591678485e-09, + -2.257791820170496e-08, + 0.9905390739440918 + ], + "min": [ + 0.13723091781139374, + 4.760447591678485e-09, + -2.257791820170496e-08, + 0.9905390739440918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826564, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073312, + "componentType": 5126, + "count": 1, + "max": [ + -0.03184337541460991, + -0.03296509385108948, + 0.023134499788284302, + 0.9986811876296997 + ], + "min": [ + -0.03184337541460991, + -0.03296509385108948, + 0.023134499788284302, + 0.9986811876296997 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826568, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073328, + "componentType": 5126, + "count": 1, + "max": [ + 0.13723091781139374, + -2.842638568978373e-09, + 7.671009427667741e-08, + 0.9905390739440918 + ], + "min": [ + 0.13723091781139374, + -2.842638568978373e-09, + 7.671009427667741e-08, + 0.9905390739440918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826572, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1073344, + "componentType": 5126, + "count": 81, + "max": [ + -0.7076997756958008, + 2.259703819618153e-07, + 4.003197204838216e-07, + 0.7065133452415466 + ], + "min": [ + -0.7247796058654785, + 2.12233771890169e-07, + 3.908876067271194e-07, + 0.6889808177947998 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 826896, + "componentType": 5126, + "count": 64, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1674708, + "componentType": 5126, + "count": 64, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 827152, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1675476, + "componentType": 5126, + "count": 81, + "max": [ + 7.1002231871730714e-15, + 0.27266597747802734, + 1.4658556146684987e-08 + ], + "min": [ + -6.482112752375507e-15, + 0.27266573905944824, + -1.944140493037594e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 827476, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1074640, + "componentType": 5126, + "count": 81, + "max": [ + -0.05253821983933449, + 4.639446049559126e-10, + 1.295155449554386e-08, + 0.9986189007759094 + ], + "min": [ + -0.05253823474049568, + 4.639211514945174e-10, + 1.2951550942830181e-08, + 0.9986189007759094 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 827800, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1676448, + "componentType": 5126, + "count": 78, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 828112, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1677384, + "componentType": 5126, + "count": 81, + "max": [ + 0.04481615498661995, + 0.5170735716819763, + 0.01073802262544632 + ], + "min": [ + 0.044816140085458755, + 0.5170726180076599, + 0.010737927630543709 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 828436, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1075936, + "componentType": 5126, + "count": 12, + "max": [ + -0.4904356300830841, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356300830841, + -0.49043551087379456, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 828484, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1678356, + "componentType": 5126, + "count": 63, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 828736, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1679112, + "componentType": 5126, + "count": 81, + "max": [ + 2.0660380073422857e-08, + 0.238125279545784, + -0.07664656639099121 + ], + "min": [ + -3.894444233765171e-08, + 0.23812513053417206, + -0.07664752006530762 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 829060, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1076128, + "componentType": 5126, + "count": 81, + "max": [ + -0.7680066227912903, + 0.03021303191781044, + -0.21999326348304749, + 0.5981443524360657 + ], + "min": [ + -0.770217776298523, + 0.024304231628775597, + -0.22759270668029785, + 0.5978751182556152 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 829384, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1680084, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000005960464478 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 829708, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1681056, + "componentType": 5126, + "count": 81, + "max": [ + 2.208198282005469e-07, + 0.4048615097999573, + 2.400044536443602e-07 + ], + "min": [ + -1.3373013985074067e-07, + 0.40486103296279907, + 1.5920682017167564e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 830032, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1077424, + "componentType": 5126, + "count": 81, + "max": [ + 0.002033916534855962, + -0.004735523369163275, + -0.06737716495990753, + 0.9976577162742615 + ], + "min": [ + -0.0038264214526861906, + -0.011169211007654667, + -0.0863865539431572, + 0.9962483644485474 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 830356, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1682028, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 830680, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1683000, + "componentType": 5126, + "count": 81, + "max": [ + 2.2879818573073862e-07, + 0.4032707214355469, + -1.9038399301507525e-08 + ], + "min": [ + -2.334518001134711e-07, + 0.4032701253890991, + -8.340708035348143e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 831004, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1078720, + "componentType": 5126, + "count": 81, + "max": [ + 0.13297626376152039, + -0.08075717091560364, + -0.031822316348552704, + 0.9873110055923462 + ], + "min": [ + 0.1329762190580368, + -0.08075720071792603, + -0.03182239830493927, + 0.9873109459877014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 831328, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1683972, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 831652, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1684944, + "componentType": 5126, + "count": 81, + "max": [ + 0.09804274886846542, + 0.21963083744049072, + -0.002472610678523779 + ], + "min": [ + 0.09804230183362961, + 0.21963000297546387, + -0.002472733613103628 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 831976, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1080016, + "componentType": 5126, + "count": 81, + "max": [ + -0.622336745262146, + -0.0009816520614549518, + 0.033664196729660034, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817056125029922, + 0.03366414085030556, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 832300, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1685916, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 832624, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1686888, + "componentType": 5126, + "count": 81, + "max": [ + 1.364118276114823e-07, + 0.09750273078680038, + 4.787258376381942e-07 + ], + "min": [ + -2.235947818007844e-07, + 0.09750261902809143, + 1.7821375308813003e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 832948, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1081312, + "componentType": 5126, + "count": 81, + "max": [ + -0.5272471308708191, + -0.055472347885370255, + -0.10348184406757355, + 0.8415609002113342 + ], + "min": [ + -0.5272472500801086, + -0.055472489446401596, + -0.10348190367221832, + 0.8415608406066895 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 833272, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1687860, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 833596, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1688832, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226543113589287, + 0.2130863219499588, + -0.00355938239954412 + ], + "min": [ + -0.016226964071393013, + 0.21308551728725433, + -0.003559510689228773 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 833920, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1082608, + "componentType": 5126, + "count": 79, + "max": [ + -0.626492977142334, + -0.07110267132520676, + 0.07480838149785995, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110271602869034, + 0.07480833679437637, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 834236, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1689804, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 834560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1690776, + "componentType": 5126, + "count": 81, + "max": [ + 1.1174217462439628e-07, + 0.08465004712343216, + -5.8008836845147016e-08 + ], + "min": [ + -1.3020930111906637e-07, + 0.08464985340833664, + -4.1124013705484685e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 834884, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1083872, + "componentType": 5126, + "count": 81, + "max": [ + -0.5015431642532349, + -0.001179646817035973, + -0.008243925869464874, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.001179691986180842, + -0.008243964053690434, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 835208, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1691748, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 835532, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1692720, + "componentType": 5126, + "count": 81, + "max": [ + 0.11189688742160797, + 0.10988984256982803, + -0.05163136124610901 + ], + "min": [ + 0.11189636588096619, + 0.10988932102918625, + -0.05163144692778587 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 835856, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1085168, + "componentType": 5126, + "count": 80, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.8147835731506348 + ], + "min": [ + -0.45730358362197876, + 0.16493290662765503, + -0.3159089982509613, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 836176, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1693692, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 836500, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1694664, + "componentType": 5126, + "count": 81, + "max": [ + 2.166893011690263e-07, + 0.08512406051158905, + 7.413915881215871e-08 + ], + "min": [ + -2.6199012381766806e-07, + 0.0851239413022995, + -4.4631548234974616e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 836824, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1086448, + "componentType": 5126, + "count": 81, + "max": [ + 0.022910581901669502, + 0.01283577922731638, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910529747605324, + 0.012835735455155373, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 837148, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1695636, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 837468, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1696596, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585106555372477, + 0.16604489088058472, + -0.0453934408724308 + ], + "min": [ + 0.00558467535302043, + 0.16604416072368622, + -0.04539351910352707 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 837792, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1087744, + "componentType": 5126, + "count": 80, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501897007226944, + 0.023865388706326485 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350191190838814, + 0.02386537566781044 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 838112, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1697568, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 838436, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1698540, + "componentType": 5126, + "count": 81, + "max": [ + 1.077472495719569e-14, + 0.5450075268745422, + 3.004933901706863e-08 + ], + "min": [ + -5.586522794386907e-15, + 0.545007050037384, + -4.440295242602588e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 838760, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1089024, + "componentType": 5126, + "count": 81, + "max": [ + 0.09139856696128845, + 1.18377876390241e-07, + -9.098265252305282e-09, + 0.9973745942115784 + ], + "min": [ + 0.07241492718458176, + 1.181831095209418e-07, + -1.1351333206732761e-08, + 0.9958144426345825 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 839084, + "componentType": 5126, + "count": 70, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1699512, + "componentType": 5126, + "count": 70, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 839364, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1700352, + "componentType": 5126, + "count": 81, + "max": [ + 7.133836842651911e-15, + 0.11002850532531738, + 1.30385160446167e-08 + ], + "min": [ + -1.0629728163218805e-14, + 0.11002802848815918, + -1.6763806343078613e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 839688, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1090320, + "componentType": 5126, + "count": 81, + "max": [ + 0.07251220941543579, + 1.190384963933866e-07, + -6.377982586514008e-09, + 0.9985677599906921 + ], + "min": [ + 0.053502410650253296, + 1.1889542150811394e-07, + -8.644125415457893e-09, + 0.9973675608634949 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 840012, + "componentType": 5126, + "count": 76, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1701324, + "componentType": 5126, + "count": 76, + "max": [ + 1.0, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 1.0, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 840316, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1702236, + "componentType": 5126, + "count": 81, + "max": [ + 6.498252105302527e-07, + 0.3614470958709717, + 0.026841245591640472 + ], + "min": [ + 6.498250968434149e-07, + 0.36144590377807617, + 0.02684112638235092 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 840640, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1091616, + "componentType": 5126, + "count": 81, + "max": [ + 3.725290298461914e-08, + 6.519321082976148e-09, + -3.725287189837445e-09, + 1.0 + ], + "min": [ + 2.2351738238057806e-08, + 6.519297990337236e-09, + -3.725292518907963e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 840964, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1703208, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000003576278687, + 0.9999998211860657, + 1.0000007152557373 + ], + "min": [ + 1.0000003576278687, + 0.9999995231628418, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 841276, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1704144, + "componentType": 5126, + "count": 81, + "max": [ + 5.671423650710494e-07, + -0.15833960473537445, + -0.2537654936313629 + ], + "min": [ + 5.67141739793442e-07, + -0.15834058821201324, + -0.2537660300731659 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 841600, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1092912, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + -8.578479260279437e-09, + -2.1983214537613094e-07, + 0.06129669025540352 + ], + "min": [ + -0.998119592666626, + -8.578488142063634e-09, + -2.1983215958698565e-07, + 0.06129666790366173 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 841924, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1705116, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 842248, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1706088, + "componentType": 5126, + "count": 81, + "max": [ + 2.4369639336010995e-13, + 0.25394749641418457, + 2.565963654888037e-07 + ], + "min": [ + -2.380868397398872e-13, + 0.2539469003677368, + -1.6022258364500885e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 842572, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1094208, + "componentType": 5126, + "count": 79, + "max": [ + 0.1561359167098999, + -1.377886036380005e-07, + 2.2433597202109468e-09, + 0.9877356290817261 + ], + "min": [ + 0.15613584220409393, + -1.3778863205970993e-07, + 2.2433512825159596e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 842888, + "componentType": 5126, + "count": 77, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1707060, + "componentType": 5126, + "count": 77, + "max": [ + 1.0000009536743164, + 1.0000011920928955, + 1.000001072883606 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 843196, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1707984, + "componentType": 5126, + "count": 81, + "max": [ + 2.273750849060563e-13, + 0.25331953167915344, + 1.3909300378145417e-07 + ], + "min": [ + -2.2737306557951004e-13, + 0.2533189356327057, + -1.8292396930519317e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 843520, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1095472, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231439977884293, + -2.225338846528757e-08, + 2.0636654607386617e-09, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -2.2253400899785447e-08, + 2.0636574671328844e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 843844, + "componentType": 5126, + "count": 76, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1708956, + "componentType": 5126, + "count": 76, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.000000238418579, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 844148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1709868, + "componentType": 5126, + "count": 81, + "max": [ + 2.2737367544323206e-13, + 0.2637789249420166, + 1.8443468263740215e-07 + ], + "min": [ + -2.2737367544323206e-13, + 0.2637784481048584, + -8.853968580524452e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 844472, + "componentType": 5126, + "count": 55, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1096768, + "componentType": 5126, + "count": 55, + "max": [ + 1.7531693430328232e-08, + -0.9896631240844727, + 0.14341172575950623, + 8.682590646458266e-08 + ], + "min": [ + 1.7531686324900875e-08, + -0.9896631240844727, + 0.14341171085834503, + 8.68258993591553e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 844692, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1710840, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000011920928955 + ], + "min": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 845012, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1711800, + "componentType": 5126, + "count": 81, + "max": [ + -6.534784233735991e-07, + 0.2431429773569107, + 0.1870325356721878 + ], + "min": [ + -1.081856680684723e-06, + 0.24314172565937042, + 0.18703173100948334 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 845336, + "componentType": 5126, + "count": 17, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1097648, + "componentType": 5126, + "count": 17, + "max": [ + 0.44783368706703186, + -0.23266468942165375, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 845404, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1712772, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999997615814209, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 845728, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1713744, + "componentType": 5126, + "count": 81, + "max": [ + -0.24418947100639343, + -0.13046227395534515, + 0.029651274904608727 + ], + "min": [ + -0.24418991804122925, + -0.1304638683795929, + 0.029651019722223282 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 846052, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1097920, + "componentType": 5126, + "count": 81, + "max": [ + 0.007415751926600933, + -0.0742838978767395, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.007415749132633209, + -0.0742839053273201, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 846376, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1714716, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999986290931702, + 1.0000014305114746, + 0.9999999403953552 + ], + "min": [ + 0.999998152256012, + 1.0000009536743164, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 846700, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1715688, + "componentType": 5126, + "count": 81, + "max": [ + 0.24341870844364166, + -0.1304633915424347, + 0.029651565477252007 + ], + "min": [ + 0.24341824650764465, + -0.1304650455713272, + 0.02965131215751171 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 847024, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1099216, + "componentType": 5126, + "count": 80, + "max": [ + 0.0074174292385578156, + 0.07428368926048279, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417426444590092, + 0.07428368926048279, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 847344, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1716660, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999993443489075 + ], + "min": [ + 0.9999982118606567, + 1.0000011920928955, + 0.9999988675117493 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 847668, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1717632, + "componentType": 5126, + "count": 79, + "max": [ + -0.044816140085458755, + 0.5170735716819763, + 0.010738031007349491 + ], + "min": [ + -0.04481615126132965, + 0.5170726180076599, + 0.01073796022683382 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 847984, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1100496, + "componentType": 5126, + "count": 19, + "max": [ + -0.49043551087379456, + 0.4904356300830841, + 0.5093849897384644, + 0.50938481092453 + ], + "min": [ + -0.49043551087379456, + 0.4904356300830841, + 0.5093849301338196, + 0.50938481092453 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 848060, + "componentType": 5126, + "count": 65, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1718580, + "componentType": 5126, + "count": 65, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 848320, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1719360, + "componentType": 5126, + "count": 81, + "max": [ + 5.5423164724288654e-08, + 0.2381252497434616, + -0.07664680480957031 + ], + "min": [ + -1.9082639468592788e-08, + 0.23812513053417206, + -0.07664775848388672 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 848644, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1100800, + "componentType": 5126, + "count": 81, + "max": [ + -0.7096397876739502, + 0.043489210307598114, + 0.31946656107902527, + 0.626866340637207 + ], + "min": [ + -0.7127615809440613, + 0.037297334522008896, + 0.3124394416809082, + 0.6264672875404358 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 848968, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1720332, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 849292, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1721304, + "componentType": 5126, + "count": 81, + "max": [ + 2.1869981026156893e-07, + 0.4048615097999573, + 2.3553468508907827e-07 + ], + "min": [ + -2.2109888675458933e-07, + 0.40486103296279907, + 1.692887110493757e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 849616, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1102096, + "componentType": 5126, + "count": 81, + "max": [ + 0.002738505369052291, + 0.011169206351041794, + 0.08659189194440842, + 0.9976577162742615 + ], + "min": [ + -0.0038264032918959856, + 0.0061983997002243996, + 0.06737719476222992, + 0.9962208271026611 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 849940, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1722276, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 850264, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1723248, + "componentType": 5126, + "count": 81, + "max": [ + 2.395111664554861e-07, + 0.4032706916332245, + 1.9929377259586545e-08 + ], + "min": [ + -2.470546576205379e-07, + 0.40327024459838867, + -9.367938247351049e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 850588, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1103392, + "componentType": 5126, + "count": 81, + "max": [ + 0.13297627866268158, + 0.08075720071792603, + 0.03182240575551987, + 0.9873110055923462 + ], + "min": [ + 0.1329762190580368, + 0.08075715601444244, + 0.031822320073843, + 0.9873109459877014 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 850912, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1724220, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 851236, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1725192, + "componentType": 5126, + "count": 81, + "max": [ + -0.09804230183362961, + 0.21963103115558624, + -0.00247263815253973 + ], + "min": [ + -0.09804297983646393, + 0.2196301370859146, + -0.0024727564305067062 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 851560, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1104688, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673321723938, + 0.0499749630689621, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974892288446426, + -0.08315932005643845, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 851884, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1726164, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 852204, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1727124, + "componentType": 5126, + "count": 81, + "max": [ + 2.2476625360923208e-07, + 0.09750271588563919, + 4.939584528074192e-07 + ], + "min": [ + -2.545685902077821e-07, + 0.09750247001647949, + 1.7897936288591154e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 852528, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1105984, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217608571052551, + 0.06273210793733597, + 0.009731809608638287, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320185303688, + 0.009731769561767578, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 852852, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1728096, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 853176, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1729068, + "componentType": 5126, + "count": 81, + "max": [ + 0.016227204352617264, + 0.21308639645576477, + -0.003559419419616461 + ], + "min": [ + 0.016226548701524734, + 0.21308577060699463, + -0.0035595488734543324 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 853500, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1107280, + "componentType": 5126, + "count": 81, + "max": [ + -0.5430817604064941, + 0.06296977400779724, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177226781845093, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 853824, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1730040, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 854148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1731012, + "componentType": 5126, + "count": 81, + "max": [ + 2.4884053573259735e-07, + 0.08465006947517395, + -1.3367635176564363e-07 + ], + "min": [ + -2.2724790937900252e-07, + 0.08464981615543365, + -3.6217912224856263e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 854472, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1108576, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.0020274778362363577, + 0.008077363483607769, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027417765930295, + 0.008077314123511314, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 854796, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1731984, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 855120, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1732956, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189649999141693, + 0.10988956689834595, + -0.051631227135658264 + ], + "min": [ + -0.11189695447683334, + 0.10988907516002655, + -0.05163140967488289 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 855444, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1109872, + "componentType": 5126, + "count": 80, + "max": [ + -0.432245671749115, + -0.12903626263141632, + 0.15030042827129364, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 855764, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1733928, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 856088, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1734900, + "componentType": 5126, + "count": 81, + "max": [ + 2.1006208328344655e-07, + 0.08512397855520248, + 5.3104873387610496e-08 + ], + "min": [ + -2.727568073623843e-07, + 0.08512376993894577, + -1.2597894283317146e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 856412, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1111152, + "componentType": 5126, + "count": 81, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.12198018282651901, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 856736, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1735872, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 857060, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1736844, + "componentType": 5126, + "count": 81, + "max": [ + -0.00558461993932724, + 0.1660449504852295, + -0.0453934408724308 + ], + "min": [ + -0.005585297476500273, + 0.1660441756248474, + -0.04539351910352707 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 857384, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1112448, + "componentType": 5126, + "count": 81, + "max": [ + 0.605564296245575, + -0.79215407371521, + -0.06648413091897964, + 0.03692907840013504 + ], + "min": [ + 0.6055642366409302, + -0.79215407371521, + -0.06648416072130203, + 0.03692905604839325 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 857708, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1737816, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 858032, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1738788, + "componentType": 5126, + "count": 80, + "max": [ + 0.13640326261520386, + 0.2850474715232849, + 0.0019397474825382233 + ], + "min": [ + 0.13640320301055908, + 0.2850467562675476, + 0.001939675654284656 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 858352, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1113744, + "componentType": 5126, + "count": 32, + "max": [ + -7.426262982335174e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3504512708095717e-07 + ], + "min": [ + -7.42626369287791e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.3504509865924774e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 858480, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1739748, + "componentType": 5126, + "count": 72, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 858768, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1740612, + "componentType": 5126, + "count": 80, + "max": [ + -0.13640320301055908, + 0.2850474715232849, + 0.001939812209457159 + ], + "min": [ + -0.13640326261520386, + 0.2850467562675476, + 0.0019397403812035918 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859088, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1114256, + "componentType": 5126, + "count": 37, + "max": [ + -7.432825555042655e-08, + -0.6935806274414063, + -0.7203789949417114, + 5.236386613205468e-08 + ], + "min": [ + -7.43282626558539e-08, + -0.6935806274414063, + -0.7203789949417114, + 5.2363862579341e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 859236, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1741572, + "componentType": 5126, + "count": 72, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859524, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742436, + "componentType": 5126, + "count": 1, + "max": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "min": [ + 0.17381751537322998, + 0.5460788011550903, + -0.7300585508346558 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859528, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742448, + "componentType": 5126, + "count": 1, + "max": [ + 0.23845601081848145, + -0.08968925476074219, + -0.24350838363170624 + ], + "min": [ + 0.23845601081848145, + -0.08968925476074219, + -0.24350838363170624 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859532, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1114848, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 859536, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742460, + "componentType": 5126, + "count": 1, + "max": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "min": [ + -0.17381912469863892, + 0.5460788011550903, + -0.7300581932067871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859540, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742472, + "componentType": 5126, + "count": 1, + "max": [ + -0.23845654726028442, + -0.08968925476074219, + -0.24350784718990326 + ], + "min": [ + -0.23845654726028442, + -0.08968925476074219, + -0.24350784718990326 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859544, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1114864, + "componentType": 5126, + "count": 1, + "max": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "min": [ + 1.0, + 0.0, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 859548, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742484, + "componentType": 5126, + "count": 1, + "max": [ + 4.470348358154297e-08, + 7.818637470791145e-08, + -3.4639987234186265e-07 + ], + "min": [ + 4.470348358154297e-08, + 7.818637470791145e-08, + -3.4639987234186265e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859552, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742496, + "componentType": 5126, + "count": 23, + "max": [ + 0.030920518562197685, + 0.4869465231895447, + -1.1357077360153198 + ], + "min": [ + 0.030920162796974182, + -0.08483370393514633, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859644, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1114880, + "componentType": 5126, + "count": 23, + "max": [ + 0.20690734684467316, + 0.010921822860836983, + 0.656587541103363, + 0.9730502963066101 + ], + "min": [ + -0.03552567958831787, + -0.05128273740410805, + 0.22757799923419952, + 0.7235000133514404 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 859736, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1742772, + "componentType": 5126, + "count": 19, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859812, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1743000, + "componentType": 5126, + "count": 23, + "max": [ + 5.215396114977011e-08, + 0.002127423882484436, + 2.384185791015625e-07 + ], + "min": [ + -2.9802219358998627e-08, + 0.0021273791790008545, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 859904, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1115248, + "componentType": 5126, + "count": 22, + "max": [ + 0.7071067690849304, + 3.129339347651694e-07, + -3.009978115642298e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.977050712615892e-07, + -3.194370492565213e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 859992, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1743276, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860084, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1743552, + "componentType": 5126, + "count": 23, + "max": [ + 0.17381858825683594, + 0.13409864902496338, + 3.358499967021089e-08 + ], + "min": [ + 0.17381826043128967, + 0.13409781455993652, + -4.090896155162227e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860176, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1115600, + "componentType": 5126, + "count": 23, + "max": [ + -0.13052892684936523, + 0.00368653517216444, + -0.20721040666103363, + 0.9695424437522888 + ], + "min": [ + -0.3783496916294098, + -0.2592250108718872, + -0.5456928610801697, + 0.7014856338500977 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 860268, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1743828, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860360, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1744104, + "componentType": 5126, + "count": 23, + "max": [ + 9.08086690287746e-08, + 0.6356115341186523, + 6.62011885310676e-08 + ], + "min": [ + -8.800526529739727e-08, + 0.6356112957000732, + -7.076144470374857e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860452, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1115968, + "componentType": 5126, + "count": 23, + "max": [ + 0.6838182806968689, + 4.5576079799047875e-08, + 4.1695930264040726e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -3.691094008217988e-08, + -6.115257065175683e-07, + 0.7296524047851563 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 860544, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1744380, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999993443489075, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860636, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1744656, + "componentType": 5126, + "count": 23, + "max": [ + -0.17381826043128967, + 0.13409876823425293, + 4.423308297418771e-08 + ], + "min": [ + -0.17381837964057922, + 0.13409793376922607, + -1.5362086713821554e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860728, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1116336, + "componentType": 5126, + "count": 23, + "max": [ + 0.0693177655339241, + -0.21096085011959076, + 0.259628027677536, + 0.9461643695831299 + ], + "min": [ + -0.4415641129016876, + -0.24050475656986237, + 0.21133063733577728, + 0.838211715221405 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 860820, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1744932, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 860912, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1745208, + "componentType": 5126, + "count": 23, + "max": [ + 8.072721158214335e-08, + 0.6356115937232971, + 3.6851329099363284e-08 + ], + "min": [ + -3.848208507406525e-08, + 0.6356114149093628, + -3.16299875180448e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861004, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1116704, + "componentType": 5126, + "count": 23, + "max": [ + 0.4166630506515503, + 1.9269592144155467e-08, + 3.4882427257798554e-07, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + -2.546153332616541e-08, + 1.196307142237174e-08, + 0.9090610146522522 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 861096, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1745484, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861188, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1745760, + "componentType": 5126, + "count": 23, + "max": [ + 4.470348358154297e-08, + 0.002127423882484436, + 2.3841825225190405e-07 + ], + "min": [ + -5.215396114977011e-08, + 0.0021273791790008545, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861280, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1117072, + "componentType": 5126, + "count": 22, + "max": [ + -0.6495169997215271, + -0.10214788466691971, + 0.054463960230350494, + 0.7514833211898804 + ], + "min": [ + -0.6495170593261719, + -0.1021479144692421, + 0.054463934153318405, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 861368, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1746036, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861460, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1746312, + "componentType": 5126, + "count": 23, + "max": [ + 5.774199962615967e-08, + 0.2726660966873169, + 2.9549942937023843e-08 + ], + "min": [ + -7.450580596923828e-08, + 0.27266550064086914, + -3.001560600068842e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861552, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1117424, + "componentType": 5126, + "count": 23, + "max": [ + 0.08500949293375015, + 0.05683116242289543, + 0.025103822350502014, + 0.9944412708282471 + ], + "min": [ + 0.08500942587852478, + 0.05683111399412155, + 0.025103792548179626, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 861644, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1746588, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861736, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1746864, + "componentType": 5126, + "count": 23, + "max": [ + 0.044816166162490845, + 0.5170730948448181, + 0.013554172590374947 + ], + "min": [ + 0.043976232409477234, + 0.5110988020896912, + 0.0033228688407689333 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 861828, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1117792, + "componentType": 5126, + "count": 23, + "max": [ + -0.4904356002807617, + -0.4335693418979645, + -0.477468341588974, + 0.5203524827957153 + ], + "min": [ + -0.5785649418830872, + -0.5283882021903992, + -0.50938481092453, + 0.3926224112510681 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 861920, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1747140, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862012, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1747416, + "componentType": 5126, + "count": 23, + "max": [ + 0.02354121208190918, + 0.2365134060382843, + -0.11545239388942719 + ], + "min": [ + 0.023541033267974854, + 0.23651321232318878, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862104, + "componentType": 5126, + "count": 21, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1118160, + "componentType": 5126, + "count": 21, + "max": [ + -0.7055026888847351, + -0.020786751061677933, + -0.40331289172172546, + 0.582385241985321 + ], + "min": [ + -0.705502986907959, + -0.020786859095096588, + -0.40331315994262695, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 862188, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1747692, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862280, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1747968, + "componentType": 5126, + "count": 23, + "max": [ + 1.1970857372034516e-07, + 0.4048615097999573, + 2.5603077347113867e-07 + ], + "min": [ + -1.1689067491715832e-07, + 0.4048611521720886, + 1.1665737531529885e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862372, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1118496, + "componentType": 5126, + "count": 23, + "max": [ + 0.07776042073965073, + 0.5269918441772461, + -0.23531827330589294, + 0.812932014465332 + ], + "min": [ + 0.07776034623384476, + 0.5269916653633118, + -0.2353183925151825, + 0.8129318356513977 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 862464, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1748244, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862556, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1748520, + "componentType": 5126, + "count": 23, + "max": [ + 1.2497180534865038e-07, + 0.40327057242393494, + 7.396626955369356e-08 + ], + "min": [ + -1.715104502864051e-07, + 0.40327033400535583, + -1.7287334230786655e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862648, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1118864, + "componentType": 5126, + "count": 23, + "max": [ + -0.11016570031642914, + 0.39465612173080444, + 0.12396229803562164, + 0.9037386178970337 + ], + "min": [ + -0.1101658046245575, + 0.3946560323238373, + 0.12396218627691269, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 862740, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1748796, + "componentType": 5126, + "count": 22, + "max": [ + 1.0000001192092896, + 0.9999999403953552, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862828, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1749060, + "componentType": 5126, + "count": 23, + "max": [ + 0.09804273396730423, + 0.21963070333003998, + -0.002472591819241643 + ], + "min": [ + 0.09804249554872513, + 0.21963034570217133, + -0.0024729382712394 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 862920, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1119232, + "componentType": 5126, + "count": 23, + "max": [ + -0.6223366260528564, + -0.0009816603269428015, + 0.033664215356111526, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817080572247505, + 0.033664166927337646, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 863012, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1749336, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863104, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1749612, + "componentType": 5126, + "count": 23, + "max": [ + 1.0194708721655843e-07, + 0.09750279784202576, + 3.9848774235906603e-07 + ], + "min": [ + -4.7556266480341947e-08, + 0.09750255942344666, + 2.981953173275542e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863196, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1119600, + "componentType": 5126, + "count": 23, + "max": [ + -0.5302280187606812, + 0.002465955214574933, + -0.053395915776491165, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.002465910976752639, + -0.05339599773287773, + 0.8461682796478271 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 863288, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1749888, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863380, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1750164, + "componentType": 5126, + "count": 23, + "max": [ + -0.01622670516371727, + 0.21308624744415283, + -0.0035592536441981792 + ], + "min": [ + -0.01622701808810234, + 0.21308594942092896, + -0.0035596126690506935 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863472, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1119968, + "componentType": 5126, + "count": 23, + "max": [ + -0.626492977142334, + -0.07110270112752914, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110273838043213, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 863564, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1750440, + "componentType": 5126, + "count": 23, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863656, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1750716, + "componentType": 5126, + "count": 23, + "max": [ + 1.1073745298517679e-07, + 0.0846501961350441, + -2.2569362556623673e-07 + ], + "min": [ + -6.776780736572618e-08, + 0.08464983105659485, + -3.4583854358061217e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863748, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1120336, + "componentType": 5126, + "count": 23, + "max": [ + -0.5015432834625244, + -0.001179671147838235, + -0.008243980817496777, + 0.8650925159454346 + ], + "min": [ + -0.501543402671814, + -0.0011797124752774835, + -0.008244029246270657, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 863840, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1750992, + "componentType": 5126, + "count": 22, + "max": [ + 1.0000001192092896, + 1.0, + 0.9999999403953552 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 863928, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1751256, + "componentType": 5126, + "count": 23, + "max": [ + 0.11189677566289902, + 0.1098894476890564, + -0.0516311377286911 + ], + "min": [ + 0.11189649999141693, + 0.10988906770944595, + -0.051631394773721695 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864020, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1120704, + "componentType": 5126, + "count": 23, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590890884399414, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 864112, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1751532, + "componentType": 5126, + "count": 23, + "max": [ + 0.9999999403953552, + 1.0, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864204, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1751808, + "componentType": 5126, + "count": 23, + "max": [ + 7.428185710978141e-08, + 0.08512411266565323, + 4.2231935282188715e-08 + ], + "min": [ + -9.743492768166107e-08, + 0.08512387424707413, + -2.0372016962255657e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864296, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1121072, + "componentType": 5126, + "count": 23, + "max": [ + 0.022910548374056816, + 0.01283576712012291, + 0.6957964301109314, + 0.7177588939666748 + ], + "min": [ + 0.02291051670908928, + 0.0128357307985425, + 0.6957963705062866, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 864388, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1752084, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864480, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1752360, + "componentType": 5126, + "count": 29, + "max": [ + 0.005585049279034138, + 0.1660446673631668, + -0.04539324715733528 + ], + "min": [ + 0.0055847615003585815, + 0.16604430973529816, + -0.04539354145526886 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864596, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1121440, + "componentType": 5126, + "count": 22, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501897007226944, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501919358968735, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 864684, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1752708, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864776, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1752984, + "componentType": 5126, + "count": 23, + "max": [ + 7.82310962677002e-08, + 0.5450075268745422, + 1.1353573370342929e-07 + ], + "min": [ + -1.0058282384761696e-07, + 0.545007050037384, + -6.96668251976007e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 864868, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1121792, + "componentType": 5126, + "count": 23, + "max": [ + -0.007215114776045084, + 0.1938181072473526, + -0.04222821071743965, + 0.9904928803443909 + ], + "min": [ + -0.10934893041849136, + 0.13072361052036285, + -0.1175038069486618, + 0.9678172469139099 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 864960, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1753260, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865052, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1753536, + "componentType": 5126, + "count": 23, + "max": [ + 8.940696005765858e-08, + 0.11002850532531738, + 8.754432201385498e-08 + ], + "min": [ + -8.94069742685133e-08, + 0.11002779006958008, + -9.12696123123169e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865144, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1122160, + "componentType": 5126, + "count": 23, + "max": [ + 0.045114852488040924, + 0.3337618410587311, + -0.021194228902459145, + 0.9901782870292664 + ], + "min": [ + -0.025982949882745743, + 0.12989991903305054, + -0.04469774663448334, + 0.9413387179374695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 865236, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1753812, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865328, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1754088, + "componentType": 5126, + "count": 23, + "max": [ + 8.081499345280463e-07, + 0.3614470958709717, + 0.0268414244055748 + ], + "min": [ + 6.013963229634101e-07, + 0.36144590377807617, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865420, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1122528, + "componentType": 5126, + "count": 23, + "max": [ + 5.215406062575312e-08, + 2.2817449263357048e-08, + 8.381901395182467e-09, + 1.0 + ], + "min": [ + 1.4901161193847656e-08, + -1.2107127744798163e-08, + -8.381903171539307e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 865512, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1754364, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000007152557373, + 0.9999998807907104, + 1.0000007152557373 + ], + "min": [ + 1.000000238418579, + 0.9999994039535522, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865604, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1754640, + "componentType": 5126, + "count": 23, + "max": [ + 6.789011308683257e-07, + -0.15833958983421326, + -0.25376570224761963 + ], + "min": [ + 4.1254281768488e-07, + -0.15834055840969086, + -0.2537662386894226 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865696, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1122896, + "componentType": 5126, + "count": 23, + "max": [ + -0.998119592666626, + 1.1342108585665756e-08, + -2.0868537831120193e-07, + 0.061296697705984116 + ], + "min": [ + -0.998119592666626, + -2.8515271921492058e-08, + -2.3428950157722284e-07, + 0.06129666045308113 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 865788, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1754916, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 0.9999719858169556 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 0.999971866607666 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865880, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1755192, + "componentType": 5126, + "count": 23, + "max": [ + 5.960467319710006e-08, + 0.25394749641418457, + 1.431993439382495e-07 + ], + "min": [ + -4.4703465817974575e-08, + 0.253946989774704, + -1.2036383623126312e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 865972, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1123264, + "componentType": 5126, + "count": 23, + "max": [ + 0.1561359465122223, + -1.2598482612702355e-07, + 1.7470695112820067e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.4660194835869333e-07, + -9.798333699961859e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 866064, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1755468, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000009536743164, + 1.0000014305114746, + 1.000001072883606 + ], + "min": [ + 1.0000004768371582, + 1.0000009536743164, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866156, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1755744, + "componentType": 5126, + "count": 23, + "max": [ + 2.9802322387695313e-08, + 0.25331947207450867, + 1.1717750680872996e-07 + ], + "min": [ + -7.264316082000732e-08, + 0.25331905484199524, + -2.3435501361745992e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866248, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1123632, + "componentType": 5126, + "count": 23, + "max": [ + -0.09231438487768173, + -1.0709158893007498e-08, + 2.1451942444628003e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -4.552302357296867e-08, + -1.4972455275596985e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 866340, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1756020, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866432, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1756296, + "componentType": 5126, + "count": 23, + "max": [ + 4.284084909045305e-08, + 0.2637789249420166, + 1.5059610802836687e-07 + ], + "min": [ + -6.33299421792799e-08, + 0.26377856731414795, + -3.138680071401723e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866524, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1124000, + "componentType": 5126, + "count": 23, + "max": [ + 3.2024932039576015e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.590928584657377e-08 + ], + "min": [ + 1.2618415201615107e-09, + -0.9896631240844727, + 0.14341171085834503, + 6.724981460592971e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 866616, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1756572, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.000001311302185 + ], + "min": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866708, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1756848, + "componentType": 5126, + "count": 23, + "max": [ + -6.791594842070481e-07, + 0.24314285814762115, + 0.1870325356721878 + ], + "min": [ + -1.0045665703728446e-06, + 0.2431420236825943, + 0.18703190982341766 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866800, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1124368, + "componentType": 5126, + "count": 13, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 866852, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1757124, + "componentType": 5126, + "count": 23, + "max": [ + 0.9999997615814209, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 866944, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1757400, + "componentType": 5126, + "count": 23, + "max": [ + -0.24418951570987701, + -0.13046272099018097, + 0.029651399701833725 + ], + "min": [ + -0.24418973922729492, + -0.13046342134475708, + 0.02965097315609455 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867036, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1124576, + "componentType": 5126, + "count": 23, + "max": [ + 0.0074157631024718285, + -0.0742838904261589, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.00741571793332696, + -0.0742839127779007, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 867128, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1757676, + "componentType": 5126, + "count": 22, + "max": [ + 0.9999987483024597, + 1.0000014305114746, + 0.9999999403953552 + ], + "min": [ + 0.999998152256012, + 1.0000011920928955, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867216, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1757940, + "componentType": 5126, + "count": 23, + "max": [ + 0.2434186488389969, + -0.1304631531238556, + 0.02965153194963932 + ], + "min": [ + 0.2434183955192566, + -0.1304643452167511, + 0.029651260003447533 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867308, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1124944, + "componentType": 5126, + "count": 23, + "max": [ + 0.0074174352921545506, + 0.07428371906280518, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417408283799887, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750826358795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 867400, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1758216, + "componentType": 5126, + "count": 22, + "max": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999993443489075 + ], + "min": [ + 0.9999982714653015, + 1.000001311302185, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867488, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1758480, + "componentType": 5126, + "count": 23, + "max": [ + -0.04397626221179962, + 0.5230475068092346, + 0.01815297082066536 + ], + "min": [ + -0.04481615126132965, + 0.5170730948448181, + 0.007921799086034298 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867580, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1125312, + "componentType": 5126, + "count": 23, + "max": [ + -0.4793747365474701, + 0.5981279015541077, + 0.5175249576568604, + 0.44555115699768066 + ], + "min": [ + -0.5657967925071716, + 0.5097403526306152, + 0.3861413896083832, + 0.41128474473953247 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 867672, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1758756, + "componentType": 5126, + "count": 22, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867760, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1759020, + "componentType": 5126, + "count": 23, + "max": [ + 0.017870448529720306, + 0.2325083464384079, + -0.03527332842350006 + ], + "min": [ + 0.017870239913463593, + 0.2325080931186676, + -0.03527380898594856 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 867852, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1125680, + "componentType": 5126, + "count": 22, + "max": [ + -0.5603393316268921, + 0.5143935084342957, + -0.3281323313713074, + 0.560132622718811 + ], + "min": [ + -0.5603395700454712, + 0.5143932700157166, + -0.3281325399875641, + 0.5601322054862976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 867940, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1759296, + "componentType": 5126, + "count": 22, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868028, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1759560, + "componentType": 5126, + "count": 22, + "max": [ + 1.3317193747752754e-07, + 0.4048614203929901, + 2.3011952521301282e-07 + ], + "min": [ + -7.596763396122697e-08, + 0.4048611521720886, + 1.449138409270745e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868116, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1126032, + "componentType": 5126, + "count": 23, + "max": [ + -0.07451159507036209, + 0.49918368458747864, + -0.05700931325554848, + 0.8614022135734558 + ], + "min": [ + -0.07451163977384567, + 0.4991835653781891, + -0.057009417563676834, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 868208, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1759824, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868300, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1760100, + "componentType": 5126, + "count": 23, + "max": [ + 6.748659586719441e-08, + 0.4032706022262573, + 8.391057626511156e-09 + ], + "min": [ + -9.656184829509584e-08, + 0.4032703638076782, + -8.081833868800459e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868392, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1126400, + "componentType": 5126, + "count": 23, + "max": [ + 0.023212525993585587, + 0.036279041320085526, + 0.05292848125100136, + 0.9996623992919922 + ], + "min": [ + 0.020161695778369904, + 0.004205347504466772, + -0.023572074249386787, + 0.9977353811264038 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 868484, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1760376, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868576, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1760652, + "componentType": 5126, + "count": 23, + "max": [ + -0.09804248809814453, + 0.21963076293468475, + -0.002472609980031848 + ], + "min": [ + -0.0980425775051117, + 0.21963046491146088, + -0.0024728290736675262 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868668, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1126768, + "componentType": 5126, + "count": 23, + "max": [ + -0.5146673321723938, + 0.04997493699193001, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997487738728523, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 868760, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1760928, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868852, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1761204, + "componentType": 5126, + "count": 23, + "max": [ + 3.555775762720259e-08, + 0.09750262647867203, + 4.826391091228288e-07 + ], + "min": [ + -4.725160351881641e-08, + 0.09750252962112427, + 2.4370623918912315e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 868944, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1127136, + "componentType": 5126, + "count": 23, + "max": [ + -0.42176076769828796, + 0.06273209303617477, + 0.009731855243444443, + 0.9044821262359619 + ], + "min": [ + -0.4217611253261566, + 0.06273201107978821, + 0.009731766767799854, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 869036, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1761480, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869128, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1761756, + "componentType": 5126, + "count": 23, + "max": [ + 0.016226861625909805, + 0.21308617293834686, + -0.0035594154614955187 + ], + "min": [ + 0.016226748004555702, + 0.21308599412441254, + -0.0035595432855188847 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869220, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1127504, + "componentType": 5126, + "count": 22, + "max": [ + -0.5430818200111389, + 0.06296975165605545, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430819392204285, + 0.06296970695257187, + -0.08177223056554794, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 869308, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1762032, + "componentType": 5126, + "count": 23, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869400, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1762308, + "componentType": 5126, + "count": 23, + "max": [ + 7.077224495333212e-08, + 0.08465001732110977, + -1.321350140415234e-07 + ], + "min": [ + -4.8761794602114605e-08, + 0.08464989066123962, + -3.7326586266317463e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869492, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1127856, + "componentType": 5126, + "count": 23, + "max": [ + -0.4092182219028473, + 0.002027478301897645, + 0.008077428676187992, + 0.9123985767364502 + ], + "min": [ + -0.40921837091445923, + 0.0020274214912205935, + 0.008077386766672134, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 869584, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1762584, + "componentType": 5126, + "count": 22, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869672, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1762848, + "componentType": 5126, + "count": 23, + "max": [ + -0.11189649999141693, + 0.10988955199718475, + -0.05163115635514259 + ], + "min": [ + -0.11189676821231842, + 0.10988916456699371, + -0.0516313798725605 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869764, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1128224, + "componentType": 5126, + "count": 23, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322458803653717, + -0.1290362924337387, + 0.15030036866664886, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 869856, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1763124, + "componentType": 5126, + "count": 22, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 869944, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1763388, + "componentType": 5126, + "count": 23, + "max": [ + 3.0574497600355244e-08, + 0.08512396365404129, + 1.1429012403141314e-07 + ], + "min": [ + -1.5178029855178465e-07, + 0.08512379974126816, + -1.294495319825728e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870036, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1128592, + "componentType": 5126, + "count": 22, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 870124, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1763664, + "componentType": 5126, + "count": 20, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870204, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1763904, + "componentType": 5126, + "count": 23, + "max": [ + -0.005584836006164551, + 0.166044682264328, + -0.04539342597126961 + ], + "min": [ + -0.005584923550486565, + 0.16604436933994293, + -0.04539366438984871 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870296, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1128944, + "componentType": 5126, + "count": 23, + "max": [ + 0.6698365211486816, + -0.7402837872505188, + 0.05103708431124687, + 0.02634728141129017 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350190818309784, + 0.02386537939310074 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 870388, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1764180, + "componentType": 5126, + "count": 23, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870480, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1764456, + "componentType": 5126, + "count": 23, + "max": [ + 0.13640336692333221, + 0.28504759073257446, + 0.0019399216398596764 + ], + "min": [ + 0.13640309870243073, + 0.2850469946861267, + 0.0019396147690713406 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870572, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1129312, + "componentType": 5126, + "count": 23, + "max": [ + -6.33284997775263e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5591508883971983e-07 + ], + "min": [ + -9.036436665610381e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1954237777445087e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 870664, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1764732, + "componentType": 5126, + "count": 22, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870752, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1764996, + "componentType": 5126, + "count": 23, + "max": [ + -0.1364031583070755, + 0.2850474715232849, + 0.001940036891028285 + ], + "min": [ + -0.13640332221984863, + 0.28504711389541626, + 0.0019396840361878276 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 870844, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1129680, + "componentType": 5126, + "count": 23, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.710072935651624e-08 + ], + "min": [ + -1.023465969751669e-07, + -0.693580687046051, + -0.7203789949417114, + 3.999505793217395e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 870936, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1765272, + "componentType": 5126, + "count": 23, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871028, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1765548, + "componentType": 5126, + "count": 12, + "max": [ + 0.27831587195396423, + 1.3792855739593506, + -0.6141818165779114 + ], + "min": [ + -0.10242094099521637, + 0.5460788011550903, + -0.7300586700439453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871076, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1765692, + "componentType": 5126, + "count": 12, + "max": [ + 0.5804785490036011, + 1.0116084814071655, + -0.24350862205028534 + ], + "min": [ + 0.4480482339859009, + 0.417879581451416, + -0.3042058050632477 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871124, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1130048, + "componentType": 5126, + "count": 13, + "max": [ + -0.9885132312774658, + -2.0306151427007535e-08, + 0.15113428235054016, + 5.1205397255671414e-08 + ], + "min": [ + -0.9985859990119934, + -0.09270712733268738, + 5.499563826560916e-07, + 1.123124098741492e-14 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 871176, + "componentType": 5126, + "count": 11, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1765836, + "componentType": 5126, + "count": 11, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871220, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1765968, + "componentType": 5126, + "count": 22, + "max": [ + 4.6834349632263184e-05, + -1.2889506706414977e-07, + -2.0260310407138604e-07 + ], + "min": [ + 2.8312206268310547e-07, + -2.0237015633028932e-05, + -6.968154775677249e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871308, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1130256, + "componentType": 5126, + "count": 13, + "max": [ + -0.9503704309463501, + 5.858435958572272e-09, + -5.921793722052371e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -7.860634809730982e-09, + -2.1036303365917774e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 871360, + "componentType": 5126, + "count": 10, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1766232, + "componentType": 5126, + "count": 10, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871400, + "componentType": 5126, + "count": 21, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1766352, + "componentType": 5126, + "count": 21, + "max": [ + 5.960464477539063e-08, + 0.2824999690055847, + 7.575991389785486e-08 + ], + "min": [ + -5.960467319710006e-08, + 0.282499760389328, + -6.830938303892253e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871484, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1130464, + "componentType": 5126, + "count": 13, + "max": [ + -7.953409664196442e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.322357369801466e-07 + ], + "min": [ + -8.856417110791881e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.1760472413443495e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 871536, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1766604, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871588, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1766760, + "componentType": 5126, + "count": 12, + "max": [ + -0.33675435185432434, + 0.5460788011550903, + -0.6843864917755127 + ], + "min": [ + -0.8797179460525513, + 0.49418342113494873, + -0.7481747269630432 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871636, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1766904, + "componentType": 5126, + "count": 12, + "max": [ + -0.5155473947525024, + -0.39485448598861694, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.33249983191490173 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871684, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1130672, + "componentType": 5126, + "count": 13, + "max": [ + -0.8876402378082275, + -0.17863965034484863, + 0.0009011008078232408, + 0.4115120470523834 + ], + "min": [ + -0.9839146137237549, + -0.20676521956920624, + 5.434504828372155e-07, + 9.866893435628299e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 871736, + "componentType": 5126, + "count": 9, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1767048, + "componentType": 5126, + "count": 9, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871772, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1767156, + "componentType": 5126, + "count": 23, + "max": [ + -8.791685104370117e-07, + 1.6617429992038524e-06, + -1.4795447214055457e-06 + ], + "min": [ + -1.4588236808776855e-05, + -1.0688609108910896e-05, + -2.9137569072190672e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871864, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1130880, + "componentType": 5126, + "count": 13, + "max": [ + -0.9503704905509949, + 7.350096975500264e-09, + 6.277883102256965e-08, + 0.3111206293106079 + ], + "min": [ + -0.9503704905509949, + -1.4585040730707988e-08, + 3.83332618980603e-08, + 0.3111205995082855 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 871916, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1767432, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 871968, + "componentType": 5126, + "count": 23, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1767588, + "componentType": 5126, + "count": 23, + "max": [ + 1.1920928955078125e-07, + 0.28249987959861755, + 1.8248972111223338e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.2824998199939728, + -1.0141568473898133e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 872060, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1131088, + "componentType": 5126, + "count": 13, + "max": [ + -8.76273915650927e-08, + -0.8155511617660522, + 0.5767431855201721, + 0.030243298038840294 + ], + "min": [ + -0.036455780267715454, + -0.9818702340126038, + 0.1895543485879898, + 4.200809939902683e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 872112, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1767864, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 872164, + "componentType": 5126, + "count": 27, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1768020, + "componentType": 5126, + "count": 27, + "max": [ + 0.0, + 0.0, + 0.6850630044937134 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 872272, + "componentType": 5126, + "count": 39, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1131296, + "componentType": 5126, + "count": 39, + "max": [ + 0.7071067690849304, + 0.7071067690849304, + 0.6796530485153198, + 0.7071067690849304 + ], + "min": [ + -4.5378021695796633e-07, + -0.6796533465385437, + -0.7071067690849304, + 3.273396771419357e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 872428, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1768344, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 872552, + "componentType": 5126, + "count": 77, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1768716, + "componentType": 5126, + "count": 77, + "max": [ + 0.035842183977365494, + 0.4869465231895447, + -0.9090206623077393 + ], + "min": [ + 0.02900681272149086, + 0.22386156022548676, + -2.750138282775879 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 872860, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1131920, + "componentType": 5126, + "count": 81, + "max": [ + 0.4320369064807892, + 0.07507501542568207, + 0.6565874814987183, + 0.9981791377067566 + ], + "min": [ + -0.25032839179039, + -0.10977153480052948, + -0.0661836713552475, + 0.7214604616165161 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 873184, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1769640, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 873504, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1770600, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920950271360198e-07, + 0.00212763249874115, + 4.7683710135970614e-07 + ], + "min": [ + -5.9604850832784e-08, + 0.0021271556615829468, + -2.384186927884002e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 873828, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1133216, + "componentType": 5126, + "count": 81, + "max": [ + 0.7071067690849304, + 3.214126707007381e-07, + -2.8782690719708626e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9309526894394367e-07, + -3.179553118570766e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 874152, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1771572, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 874476, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1772544, + "componentType": 5126, + "count": 81, + "max": [ + 0.17381848394870758, + 0.13409900665283203, + 4.954475798513158e-07 + ], + "min": [ + 0.1738182008266449, + 0.13409769535064697, + -2.2394517884549714e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 874800, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1134512, + "componentType": 5126, + "count": 81, + "max": [ + 0.22461731731891632, + 0.14901001751422882, + 0.06219472363591194, + 0.994884192943573 + ], + "min": [ + -0.4063998758792877, + -0.2588220238685608, + -0.5610978603363037, + 0.6950966715812683 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 875124, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1773516, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999993443489075, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 875448, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1774488, + "componentType": 5126, + "count": 81, + "max": [ + 9.08086690287746e-08, + 0.6356117129325867, + 1.4387507007995737e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.635611355304718, + -1.1779344788465096e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 875772, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1135808, + "componentType": 5126, + "count": 81, + "max": [ + 0.7857025265693665, + 2.8319124822928643e-08, + 3.138787292300549e-07, + 0.9999966621398926 + ], + "min": [ + 0.0025985627435147762, + -5.203164121780901e-08, + -7.1955332714424e-07, + 0.6186045408248901 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 876096, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1775460, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0, + 1.0000007152557373 + ], + "min": [ + 0.9999995231628418, + 0.9999985098838806, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 876420, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1776432, + "componentType": 5126, + "count": 81, + "max": [ + -0.17381823062896729, + 0.13409912586212158, + 2.5281616444772226e-07 + ], + "min": [ + -0.17381849884986877, + 0.13409769535064697, + -3.1333792094301316e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 876744, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1137104, + "componentType": 5126, + "count": 81, + "max": [ + -0.38143959641456604, + 0.11234119534492493, + 0.4054703116416931, + 0.9050765633583069 + ], + "min": [ + -0.8167256116867065, + -0.263460636138916, + -0.18544356524944305, + 0.40779247879981995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 877068, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1777404, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000008344650269, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 1.0, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 877392, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1778376, + "componentType": 5126, + "count": 81, + "max": [ + 1.4033184925210662e-07, + 0.6356115937232971, + 2.5049035912161344e-07 + ], + "min": [ + -9.808672984945588e-08, + 0.6356112360954285, + -2.422048055450432e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 877716, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1138400, + "componentType": 5126, + "count": 81, + "max": [ + 0.8895787596702576, + 3.693340744348461e-08, + 1.0040639608632773e-06, + 0.9207488894462585 + ], + "min": [ + 0.3901556730270386, + -4.069455528110666e-08, + -2.6241909267810115e-07, + 0.4567817747592926 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 878040, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1779348, + "componentType": 5126, + "count": 81, + "max": [ + 1.000001072883606, + 1.0000004768371582, + 1.0000009536743164 + ], + "min": [ + 1.0, + 0.9999993443489075, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 878364, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1780320, + "componentType": 5126, + "count": 80, + "max": [ + 1.7881393432617188e-07, + 0.00212763249874115, + 2.3861829845372995e-07 + ], + "min": [ + -8.940696716308594e-08, + 0.0021271551959216595, + -2.3881824517957284e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 878684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1139696, + "componentType": 5126, + "count": 81, + "max": [ + -0.6495169997215271, + 2.294241028266697e-07, + 0.0544639527797699, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.10214792937040329, + 3.777175550112588e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 879008, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1781280, + "componentType": 5126, + "count": 80, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 879328, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1782240, + "componentType": 5126, + "count": 81, + "max": [ + 1.7136335372924805e-07, + 0.272666335105896, + 1.1889826367905698e-07 + ], + "min": [ + -9.685754776000977e-08, + 0.2726653814315796, + -2.384950334999303e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 879652, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1140992, + "componentType": 5126, + "count": 81, + "max": [ + 0.10629381239414215, + 0.1511494219303131, + 0.026200465857982635, + 0.9999966621398926 + ], + "min": [ + -0.13382992148399353, + -0.0005195442936383188, + 4.795927655010246e-09, + 0.979676365852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 879976, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1783212, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 880300, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1784184, + "componentType": 5126, + "count": 81, + "max": [ + 0.04432709515094757, + 0.5110991597175598, + 0.013554900884628296 + ], + "min": [ + 0.04432661831378937, + 0.5110984444618225, + 0.01355369109660387 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 880624, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1142288, + "componentType": 5126, + "count": 73, + "max": [ + -0.3392200469970703, + -0.5283881425857544, + -0.48637527227401733, + 0.3926225006580353 + ], + "min": [ + -0.574536919593811, + -0.650907576084137, + -0.5969204902648926, + 0.13115790486335754 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 880916, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1785156, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 881240, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1786128, + "componentType": 5126, + "count": 81, + "max": [ + 0.04774104803800583, + 0.2381252497434616, + -0.07664698362350464 + ], + "min": [ + -0.0028188317082822323, + 0.23579826951026917, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 881564, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1143456, + "componentType": 5126, + "count": 81, + "max": [ + 0.14729751646518707, + 0.018704725429415703, + -0.40324443578720093, + 0.683305561542511 + ], + "min": [ + -0.7055028676986694, + -0.29875844717025757, + -0.8428594470024109, + 0.44599246978759766 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 881888, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1787100, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 882212, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1788072, + "componentType": 5126, + "count": 81, + "max": [ + 2.4329369807674084e-07, + 0.4048617482185364, + 4.4392996301212406e-07 + ], + "min": [ + -2.5126215064119606e-07, + 0.4048610031604767, + -3.1513330611687707e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 882536, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1144752, + "componentType": 5126, + "count": 81, + "max": [ + 0.09991371631622314, + 0.5269917845726013, + -0.07273967564105988, + 0.9739673137664795 + ], + "min": [ + -0.05296839773654938, + -0.24326272308826447, + -0.2899325489997864, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 882860, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1789044, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 883184, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1790016, + "componentType": 5126, + "count": 81, + "max": [ + 2.654853972217097e-07, + 0.40327098965644836, + 2.0687545543296437e-07 + ], + "min": [ + -2.0381229148824787e-07, + 0.4032702147960663, + -3.100322203408723e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 883508, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1146048, + "componentType": 5126, + "count": 81, + "max": [ + 0.04672367870807648, + 0.39465612173080444, + 0.14300069212913513, + 0.9979051947593689 + ], + "min": [ + -0.1101657897233963, + -0.565066933631897, + -0.15785589814186096, + 0.8051382303237915 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 883832, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1790988, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 884156, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1791960, + "componentType": 5126, + "count": 81, + "max": [ + 0.0980430617928505, + 0.21963104605674744, + -0.0024719831999391317 + ], + "min": [ + 0.09804212301969528, + 0.21963010728359222, + -0.002472958294674754 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 884480, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1147344, + "componentType": 5126, + "count": 81, + "max": [ + -0.6223366260528564, + -0.0009816591627895832, + 0.03366423398256302, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817209793254733, + 0.03366412967443466, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 884804, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1792932, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 885128, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1793904, + "componentType": 5126, + "count": 81, + "max": [ + 2.5523456770315534e-07, + 0.09750291705131531, + 6.05026059474767e-07 + ], + "min": [ + -4.6278069021354895e-07, + 0.0975024402141571, + 1.1096619800810004e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 885452, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1148640, + "componentType": 5126, + "count": 81, + "max": [ + -0.5302280187606812, + 0.0024659510236233473, + -0.053395893424749374, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658949114382267, + -0.053396038711071014, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 885776, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1794876, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 886100, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1795848, + "componentType": 5126, + "count": 81, + "max": [ + -0.016226017847657204, + 0.21308724582195282, + -0.0035589933395385742 + ], + "min": [ + -0.01622738130390644, + 0.21308541297912598, + -0.003559933276847005 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 886424, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1149936, + "componentType": 5126, + "count": 80, + "max": [ + -0.6264929175376892, + -0.07110267877578735, + 0.07480836659669876, + 0.7725637555122375 + ], + "min": [ + -0.6264930367469788, + -0.07110273838043213, + 0.07480829954147339, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 886744, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1796820, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 887068, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1797792, + "componentType": 5126, + "count": 81, + "max": [ + 2.3313575070460502e-07, + 0.08465022593736649, + 1.8004429591655935e-07 + ], + "min": [ + -4.809969027519401e-07, + 0.0846497192978859, + -5.36890468083584e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 887392, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1151216, + "componentType": 5126, + "count": 81, + "max": [ + -0.5015431642532349, + -0.0011796598555520177, + -0.00824398547410965, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797153856605291, + -0.008244026452302933, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 887716, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1798764, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 888040, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1799736, + "componentType": 5126, + "count": 81, + "max": [ + 0.1118970662355423, + 0.10988980531692505, + -0.0516308955848217 + ], + "min": [ + 0.11189616471529007, + 0.10988888889551163, + -0.05163164064288139 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 888364, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1152512, + "componentType": 5126, + "count": 80, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 888684, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1800708, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 889008, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1801680, + "componentType": 5126, + "count": 81, + "max": [ + 4.5731854925179505e-07, + 0.08512423187494278, + 2.676234487353213e-07 + ], + "min": [ + -4.820062713406514e-07, + 0.08512380719184875, + -2.3846837393648457e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 889332, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1153792, + "componentType": 5126, + "count": 81, + "max": [ + 0.022910568863153458, + 0.012835773639380932, + 0.6957964301109314, + 0.7177590131759644 + ], + "min": [ + 0.02291051857173443, + 0.012835714034736156, + 0.6957962512969971, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 889656, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1802652, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 889980, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1803624, + "componentType": 5126, + "count": 81, + "max": [ + 0.005585368722677231, + 0.16604548692703247, + -0.04539299011230469 + ], + "min": [ + 0.005584273487329483, + 0.16604405641555786, + -0.04539373517036438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 890304, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1155088, + "componentType": 5126, + "count": 81, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.02386535331606865 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 890628, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1804596, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 890952, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1805568, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920927533992653e-07, + 0.5450077652931213, + 2.50727595130229e-07 + ], + "min": [ + -1.192093463942001e-07, + 0.5450068116188049, + -2.6190343760390533e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 891276, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1156384, + "componentType": 5126, + "count": 81, + "max": [ + 0.13494892418384552, + 0.1938181072473526, + 0.011744494549930096, + 0.9999704957008362 + ], + "min": [ + -0.10934898257255554, + -0.039971210062503815, + -0.1175038293004036, + 0.9678172469139099 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 891600, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1806540, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 891924, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1807512, + "componentType": 5126, + "count": 81, + "max": [ + 1.7881393432617188e-07, + 0.11002874374389648, + 1.471489667892456e-07 + ], + "min": [ + -1.4901159772762185e-07, + 0.11002779006958008, + -1.8067659368625755e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 892248, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1157680, + "componentType": 5126, + "count": 81, + "max": [ + 0.20909233391284943, + 0.33376193046569824, + 0.0862836241722107, + 0.999902069568634 + ], + "min": [ + -0.03454597666859627, + -0.14099952578544617, + -0.02119431085884571, + 0.9413385987281799 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 892572, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1808484, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 892896, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1809456, + "componentType": 5126, + "count": 81, + "max": [ + 9.180459983326728e-07, + 0.3614473342895508, + 0.0268414244055748 + ], + "min": [ + 5.902204520680243e-07, + 0.36144566535949707, + 0.026840753853321075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 893220, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1158976, + "componentType": 5126, + "count": 81, + "max": [ + 6.705522537231445e-08, + 6.51931708617326e-09, + 1.3038517820973539e-08, + 1.0 + ], + "min": [ + 1.4901159417490817e-08, + -3.4764450873581154e-08, + -2.2351741790771484e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 893544, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1810428, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 0.9999998807907104, + 1.0000005960464478 + ], + "min": [ + 1.0, + 0.9999994039535522, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 893868, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1811400, + "componentType": 5126, + "count": 81, + "max": [ + 7.757586217849166e-07, + -0.15833914279937744, + -0.25376561284065247 + ], + "min": [ + 5.149883008925826e-07, + -0.15834079682826996, + -0.253766268491745 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 894192, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1160272, + "componentType": 5126, + "count": 81, + "max": [ + -0.998119592666626, + 2.048275327126703e-08, + -1.924341006542818e-07, + 0.06129669025540352 + ], + "min": [ + -0.998119592666626, + -1.0551796769675548e-08, + -2.2715454406352364e-07, + 0.06129661574959755 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 894516, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1812372, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000005960464478, + 1.0000007152557373, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 894836, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1813332, + "componentType": 5126, + "count": 81, + "max": [ + 7.450578465295621e-08, + 0.2539476752281189, + 4.0367291376242065e-07 + ], + "min": [ + -9.313222903983842e-08, + 0.25394678115844727, + -2.7052999485022156e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 895160, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1161568, + "componentType": 5126, + "count": 81, + "max": [ + 0.1561359465122223, + -1.2597848808582057e-07, + 4.3686252837460415e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.6142146819220216e-07, + 2.0742332296208588e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 895484, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1814304, + "componentType": 5126, + "count": 80, + "max": [ + 1.000001072883606, + 1.0000015497207642, + 1.000001311302185 + ], + "min": [ + 1.0000007152557373, + 1.000001072883606, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 895804, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1815264, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920928955078125e-07, + 0.2533196806907654, + 1.905240338828662e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.2533189356327057, + -2.3435501361745992e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 896128, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1162864, + "componentType": 5126, + "count": 81, + "max": [ + -0.09231439977884293, + -1.3971031442849835e-08, + 2.054296821540902e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -5.065720998231882e-08, + -6.985671596737575e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 896452, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1816236, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000007152557373, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 1.0000001192092896, + 1.000000238418579, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 896776, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1817208, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920930376163597e-07, + 0.2637791335582733, + 3.0926472049941367e-07 + ], + "min": [ + -1.1920930376163597e-07, + 0.2637782394886017, + -1.2237826751970715e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 897100, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1164160, + "componentType": 5126, + "count": 81, + "max": [ + 1.8279527225217862e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.378553045280569e-08 + ], + "min": [ + 2.36718422641502e-09, + -0.9896631240844727, + 0.14341169595718384, + 6.446410338867281e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 897424, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1818180, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000008344650269, + 1.000001072883606, + 1.000001311302185 + ], + "min": [ + 1.000000238418579, + 1.0000005960464478, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 897740, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1819128, + "componentType": 5126, + "count": 81, + "max": [ + -4.648469484891393e-07, + 0.24314312636852264, + 0.187032550573349 + ], + "min": [ + -1.1958131835854147e-06, + 0.24314171075820923, + 0.18703147768974304 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 898064, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1165456, + "componentType": 5126, + "count": 71, + "max": [ + 0.44783374667167664, + -0.23266467452049255, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 898348, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1820100, + "componentType": 5126, + "count": 81, + "max": [ + 0.9999996423721313, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999992251396179, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 898672, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1821072, + "componentType": 5126, + "count": 81, + "max": [ + -0.24418915808200836, + -0.13046227395534515, + 0.02965136058628559 + ], + "min": [ + -0.24418994784355164, + -0.13046394288539886, + 0.029650893062353134 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 898996, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1166592, + "componentType": 5126, + "count": 80, + "max": [ + 0.007415730506181717, + -0.07428386807441711, + -0.9923430681228638, + 0.09839733690023422 + ], + "min": [ + 0.007415694184601307, + -0.07428393512964249, + -0.9923430681228638, + 0.09839731454849243 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 899316, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1822044, + "componentType": 5126, + "count": 80, + "max": [ + 0.9999985098838806, + 1.0000014305114746, + 0.9999999403953552 + ], + "min": [ + 0.9999980926513672, + 1.0000009536743164, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 899636, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1823004, + "componentType": 5126, + "count": 81, + "max": [ + 0.24341870844364166, + -0.1304626762866974, + 0.029651762917637825 + ], + "min": [ + 0.24341820180416107, + -0.1304645538330078, + 0.029651079326868057 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 899960, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1167872, + "componentType": 5126, + "count": 81, + "max": [ + 0.007417460437864065, + 0.07428373396396637, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.00741741806268692, + 0.07428368926048279, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 900284, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1823976, + "componentType": 5126, + "count": 80, + "max": [ + 0.9999987483024597, + 1.0000015497207642, + 0.999999463558197 + ], + "min": [ + 0.9999982714653015, + 1.000001311302185, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 900604, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1824936, + "componentType": 5126, + "count": 81, + "max": [ + -0.04432649165391922, + 0.5230478048324585, + 0.007922275923192501 + ], + "min": [ + -0.044327013194561005, + 0.5230467915534973, + 0.00792109314352274 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 900928, + "componentType": 5126, + "count": 78, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1169168, + "componentType": 5126, + "count": 78, + "max": [ + -0.5657967329025269, + 0.5974482297897339, + 0.38614150881767273, + 0.41692274808883667 + ], + "min": [ + -0.5657967925071716, + 0.5974480509757996, + 0.3861413896083832, + 0.4169226586818695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 901240, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1825908, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 901564, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1826880, + "componentType": 5126, + "count": 81, + "max": [ + 0.050814155489206314, + 0.23815810680389404, + -0.03527356684207916 + ], + "min": [ + -0.0002018105296883732, + 0.21720337867736816, + -0.098673515021801 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 901888, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1170416, + "componentType": 5126, + "count": 80, + "max": [ + -0.11485561728477478, + 0.5993927717208862, + 0.4090490937232971, + 0.8411721587181091 + ], + "min": [ + -0.5897873640060425, + 0.323669970035553, + -0.3627831041812897, + 0.5067554116249084 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 902208, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1827852, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 902532, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1828824, + "componentType": 5126, + "count": 81, + "max": [ + 2.4287501787512156e-07, + 0.40486153960227966, + 4.557141153327393e-07 + ], + "min": [ + -5.057043495071412e-07, + 0.40486079454421997, + -3.841569551354951e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 902856, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1171696, + "componentType": 5126, + "count": 81, + "max": [ + 0.0019704517908394337, + 0.499183714389801, + 0.79740971326828, + 0.997620165348053 + ], + "min": [ + -0.1263829618692398, + 0.009917161427438259, + -0.05700942501425743, + 0.5257959961891174 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 903180, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1829796, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 903504, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1830768, + "componentType": 5126, + "count": 81, + "max": [ + 4.645956721560651e-07, + 0.40327075123786926, + 1.9521752392392955e-07 + ], + "min": [ + -2.470081881256192e-07, + 0.40327024459838867, + -2.8681350272563577e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 903828, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1172992, + "componentType": 5126, + "count": 80, + "max": [ + 0.0331035852432251, + 0.019308490678668022, + 0.06597542017698288, + 0.9998121857643127 + ], + "min": [ + -0.04694672301411629, + -0.07619669288396835, + -0.11681003123521805, + 0.9923193454742432 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 904148, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1831740, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 904472, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1832712, + "componentType": 5126, + "count": 81, + "max": [ + -0.09804210066795349, + 0.21963131427764893, + -0.0024724584072828293 + ], + "min": [ + -0.09804306924343109, + 0.2196299433708191, + -0.002473164116963744 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 904796, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1174272, + "componentType": 5126, + "count": 81, + "max": [ + -0.5146673917770386, + 0.0499749556183815, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 905120, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1833684, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 905444, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1834656, + "componentType": 5126, + "count": 81, + "max": [ + 2.2476625360923208e-07, + 0.09750284254550934, + 6.098774747442803e-07 + ], + "min": [ + -2.554903062446101e-07, + 0.09750212728977203, + -1.0294496632923256e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 905768, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1175568, + "componentType": 5126, + "count": 81, + "max": [ + -0.4217608869075775, + 0.06273210048675537, + 0.009731869213283062, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.06273198872804642, + 0.009731740690767765, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 906092, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1835628, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999995231628418, + 0.9999994039535522, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 906416, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1836600, + "componentType": 5126, + "count": 81, + "max": [ + 0.0162273570895195, + 0.21308667957782745, + -0.0035589642357081175 + ], + "min": [ + 0.016226258128881454, + 0.2130853235721588, + -0.00355963921174407 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 906740, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1176864, + "componentType": 5126, + "count": 80, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430819988250732, + 0.06296970695257187, + -0.08177224546670914, + 0.8333126902580261 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 907060, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1837572, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 907380, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1838532, + "componentType": 5126, + "count": 81, + "max": [ + 2.4892148076105514e-07, + 0.0846502035856247, + -1.1765830976173675e-07 + ], + "min": [ + -4.655951499898947e-07, + 0.08464948832988739, + -4.628805925221968e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 907704, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1178144, + "componentType": 5126, + "count": 81, + "max": [ + -0.4092182219028473, + 0.002027463633567095, + 0.008077445439994335, + 0.9123985767364502 + ], + "min": [ + -0.40921837091445923, + 0.0020274128764867783, + 0.008077388629317284, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 908028, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1839504, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999995231628418, + 0.9999997615814209, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 908352, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1840476, + "componentType": 5126, + "count": 81, + "max": [ + -0.11189638078212738, + 0.10988983511924744, + -0.05163099989295006 + ], + "min": [ + -0.11189723759889603, + 0.10988868772983551, + -0.051631808280944824 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 908676, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1179440, + "componentType": 5126, + "count": 79, + "max": [ + -0.43224573135375977, + -0.12903621792793274, + 0.15030048787593842, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363073348999, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 908992, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1841448, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 909316, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1842420, + "componentType": 5126, + "count": 81, + "max": [ + 4.449307766662969e-07, + 0.08512437343597412, + 1.60333399890078e-07 + ], + "min": [ + -2.7875398700416554e-07, + 0.08512365072965622, + -2.450238127948978e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 909640, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1180704, + "componentType": 5126, + "count": 81, + "max": [ + 0.1481143683195114, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802126288414, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 909964, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1843392, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 910288, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1844364, + "componentType": 5126, + "count": 81, + "max": [ + -0.005584319122135639, + 0.1660451740026474, + -0.04539276659488678 + ], + "min": [ + -0.005585602950304747, + 0.16604426503181458, + -0.045393843203783035 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 910612, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1182000, + "componentType": 5126, + "count": 81, + "max": [ + 0.6698365807533264, + -0.7402837872505188, + 0.053154464811086655, + 0.11052226275205612 + ], + "min": [ + 0.5017803311347961, + -0.856256902217865, + 0.04995355382561684, + 0.026347225531935692 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 910936, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1845336, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 911260, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1846308, + "componentType": 5126, + "count": 81, + "max": [ + 0.136403426527977, + 0.285047709941864, + 0.0019404441118240356 + ], + "min": [ + 0.13640305399894714, + 0.2850467264652252, + 0.0019392528338357806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 911584, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1183296, + "componentType": 5126, + "count": 81, + "max": [ + -6.049808831676273e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.5074751047450263e-07 + ], + "min": [ + -9.294814873328505e-08, + -0.693580687046051, + -0.7203789949417114, + 1.0344064804712616e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 911908, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1847280, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 912232, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1848252, + "componentType": 5126, + "count": 81, + "max": [ + -0.13640300929546356, + 0.285047709941864, + 0.0019405268831178546 + ], + "min": [ + -0.13640336692333221, + 0.2850467562675476, + 0.0019390974193811417 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 912556, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1184592, + "componentType": 5126, + "count": 81, + "max": [ + -5.862586149874005e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.239118104962472e-08 + ], + "min": [ + -9.047693794173028e-08, + -0.693580687046051, + -0.7203789949417114, + 2.7069134489465796e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 912880, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1849224, + "componentType": 5126, + "count": 81, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 913204, + "componentType": 5126, + "count": 58, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1850196, + "componentType": 5126, + "count": 58, + "max": [ + 0.10136158764362335, + 1.7938395738601685, + -0.4989445209503174 + ], + "min": [ + -0.3537907302379608, + 1.1561691761016846, + -2.06816029548645 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 913436, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1185888, + "componentType": 5126, + "count": 20, + "max": [ + -0.7071067690849304, + 4.231239358887251e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.8097707033557526e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 913516, + "componentType": 5126, + "count": 36, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1850892, + "componentType": 5126, + "count": 36, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 913660, + "componentType": 5126, + "count": 79, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1851324, + "componentType": 5126, + "count": 79, + "max": [ + 0.6422308087348938, + 1.0116084814071655, + -0.24350862205028534 + ], + "min": [ + 0.1641455441713333, + -0.6706985235214233, + -1.6178158521652222 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 913976, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1186208, + "componentType": 5126, + "count": 80, + "max": [ + -0.7424370050430298, + 3.8732866869395366e-07, + 0.11472184211015701, + 0.6600249409675598 + ], + "min": [ + -0.998408854007721, + -0.18228787183761597, + -0.02490309625864029, + 3.114579172347476e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 914296, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1852272, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 914584, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1853136, + "componentType": 5126, + "count": 81, + "max": [ + 7.270276546478271e-05, + 0.0387769378721714, + 0.034711867570877075 + ], + "min": [ + -0.004054918885231018, + -4.2008221498690546e-05, + -9.517247235635296e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 914908, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1187488, + "componentType": 5126, + "count": 80, + "max": [ + -0.9503704309463501, + 1.6829552862418495e-08, + -2.1524086957214195e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.7330753721012115e-08, + -4.438926026750778e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 915228, + "componentType": 5126, + "count": 80, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1854108, + "componentType": 5126, + "count": 80, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 915548, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1855068, + "componentType": 5126, + "count": 81, + "max": [ + 1.1920926112907182e-07, + 0.2824999690055847, + 1.1090126150747892e-07 + ], + "min": [ + -1.1920926112907182e-07, + 0.28249964118003845, + -1.2910437874324998e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 915872, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1188768, + "componentType": 5126, + "count": 81, + "max": [ + 4.869045255873061e-07, + 0.9818702340126038, + -0.1895543485879898, + 0.08474686741828918 + ], + "min": [ + -0.035657849162817, + 0.710696816444397, + -0.7034984827041626, + 4.102953710116708e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 916196, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1856040, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 916520, + "componentType": 5126, + "count": 44, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1857012, + "componentType": 5126, + "count": 44, + "max": [ + -0.10356295853853226, + 1.3604209423065186, + -0.5069641470909119 + ], + "min": [ + -0.8797179460525513, + 0.49418342113494873, + -2.6337335109710693 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 916696, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1190064, + "componentType": 5126, + "count": 20, + "max": [ + -0.7071067690849304, + 4.231239358887251e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.8097707033557526e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 916776, + "componentType": 5126, + "count": 36, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1857540, + "componentType": 5126, + "count": 36, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 916920, + "componentType": 5126, + "count": 54, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1857972, + "componentType": 5126, + "count": 54, + "max": [ + 0.052195318043231964, + 0.8587998151779175, + -0.243507519364357 + ], + "min": [ + -0.6632838249206543, + -0.6210477352142334, + -2.0115513801574707 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 917136, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1190384, + "componentType": 5126, + "count": 49, + "max": [ + 1.0, + 3.7689105170102266e-07, + 0.0009011008078232408, + 0.682359516620636 + ], + "min": [ + -1.0, + -0.20676521956920624, + -0.038413695991039276, + 5.029344182637673e-27 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 917332, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1858620, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 917528, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1859208, + "componentType": 5126, + "count": 81, + "max": [ + 5.961954593658447e-05, + -3.421030214667553e-06, + 4.8107540351338685e-06 + ], + "min": [ + -7.234513759613037e-05, + -0.00013287659385241568, + -0.00010944429959636182 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 917852, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1191168, + "componentType": 5126, + "count": 49, + "max": [ + -0.9503704309463501, + 5.9338316482637765e-09, + 9.004832435266508e-08, + 0.3111206293106079 + ], + "min": [ + -0.9503704905509949, + -1.4023108896310532e-08, + 4.781642459761315e-08, + 0.3111205995082855 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 918048, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1860180, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 918244, + "componentType": 5126, + "count": 81, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1860768, + "componentType": 5126, + "count": 81, + "max": [ + 1.192093463942001e-07, + 0.2825000584125519, + 5.073102897767967e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.28249964118003845, + -1.0691741891832862e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 918568, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1191952, + "componentType": 5126, + "count": 52, + "max": [ + -7.773267185484656e-08, + -0.8155511617660522, + 0.5767431259155273, + 0.030243292450904846 + ], + "min": [ + -0.03645579144358635, + -0.9818702340126038, + 0.1895543485879898, + 4.093947723049496e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 918776, + "componentType": 5126, + "count": 51, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1861740, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 918980, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862352, + "componentType": 5126, + "count": 1, + "max": [ + 0.030920518562197685, + 0.4869465231895447, + -1.1357077360153198 + ], + "min": [ + 0.030920518562197685, + 0.4869465231895447, + -1.1357077360153198 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 918984, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192784, + "componentType": 5126, + "count": 3, + "max": [ + 0.20690734684467316, + -0.051282718777656555, + 0.656587541103363, + 0.7235000729560852 + ], + "min": [ + 0.20690731704235077, + -0.05128273740410805, + 0.6565874814987183, + 0.7235000133514404 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 918996, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862364, + "componentType": 5126, + "count": 3, + "max": [ + 1.490126422254434e-08, + 0.0021274536848068237, + 1.1920930376163597e-07 + ], + "min": [ + -1.4901058165150971e-08, + 0.0021273940801620483, + 1.1920927533992653e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919008, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192832, + "componentType": 5126, + "count": 3, + "max": [ + 0.7071067690849304, + 3.1153450663623516e-07, + -3.009978115642298e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.075832353260921e-07, + -3.0494908287437283e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919020, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862400, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0, + 0.9999998807907104 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919032, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192880, + "componentType": 5126, + "count": 1, + "max": [ + -0.3783496916294098, + -0.25882193446159363, + -0.5456928610801697, + 0.7014856338500977 + ], + "min": [ + -0.3783496916294098, + -0.25882193446159363, + -0.5456928610801697, + 0.7014856338500977 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919036, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862436, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000003576278687, + 0.9999999403953552, + 1.000000238418579 + ], + "min": [ + 1.000000238418579, + 0.9999998807907104, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919048, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862472, + "componentType": 5126, + "count": 3, + "max": [ + -2.8400620522006648e-08, + 0.6356114745140076, + 4.1687695073733266e-08 + ], + "min": [ + -8.800526529739727e-08, + 0.6356112957000732, + 7.840608162723584e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919060, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192896, + "componentType": 5126, + "count": 3, + "max": [ + 0.6838182806968689, + -1.9651875682313857e-09, + 8.030113463064481e-09, + 0.7296524047851563 + ], + "min": [ + 0.6838182806968689, + -3.691094008217988e-08, + -7.190299555759339e-08, + 0.7296524047851563 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919072, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862508, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 0.9999995231628418, + 0.9999999403953552 + ], + "min": [ + 0.9999998807907104, + 0.999999463558197, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919084, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862544, + "componentType": 5126, + "count": 3, + "max": [ + -0.17381837964057922, + 0.13409852981567383, + -1.3236736151611694e-08 + ], + "min": [ + -0.17381837964057922, + 0.13409841060638428, + -1.5362086713821554e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919096, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192944, + "componentType": 5126, + "count": 3, + "max": [ + -0.44156405329704285, + -0.22639980912208557, + 0.22619780898094177, + 0.838211715221405 + ], + "min": [ + -0.4415641129016876, + -0.22639986872673035, + 0.2261977344751358, + 0.838211715221405 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919108, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862580, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000003576278687, + 1.0, + 1.000000238418579 + ], + "min": [ + 1.0000003576278687, + 0.9999999403953552, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919120, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862616, + "componentType": 5126, + "count": 3, + "max": [ + 8.0727204476716e-08, + 0.6356114745140076, + 2.610671012703847e-09 + ], + "min": [ + 2.112256325403905e-08, + 0.6356114745140076, + -1.9856098987247606e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919132, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1192992, + "componentType": 5126, + "count": 3, + "max": [ + 0.390155553817749, + -4.681621756930099e-10, + 7.47020436620005e-08, + 0.9207489490509033 + ], + "min": [ + 0.390155553817749, + -1.9163234554753217e-08, + 2.008607147274688e-08, + 0.9207489490509033 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919144, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862652, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000005960464478, + 1.0, + 1.0 + ], + "min": [ + 1.0000004768371582, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919156, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862688, + "componentType": 5126, + "count": 3, + "max": [ + 1.490126422254434e-08, + 0.002127394312992692, + 1.1920916165308881e-07 + ], + "min": [ + -5.215396114977011e-08, + 0.002127394312992692, + 1.1920910480966995e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919168, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193040, + "componentType": 5126, + "count": 3, + "max": [ + -0.6495170593261719, + -0.1021478995680809, + 0.0544639490544796, + 0.7514832615852356 + ], + "min": [ + -0.6495170593261719, + -0.1021478995680809, + 0.054463934153318405, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919180, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862724, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919192, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862760, + "componentType": 5126, + "count": 3, + "max": [ + -5.960464477539063e-08, + 0.2726660966873169, + 2.0915569720614258e-08 + ], + "min": [ + -7.450580596923828e-08, + 0.27266597747802734, + -4.550017695947872e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919204, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193088, + "componentType": 5126, + "count": 3, + "max": [ + 0.08500944077968597, + 0.05683114379644394, + 0.025103794410824776, + 0.9944412708282471 + ], + "min": [ + 0.08500943332910538, + 0.05683113634586334, + 0.025103777647018433, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919216, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862796, + "componentType": 5126, + "count": 3, + "max": [ + 0.04432684928178787, + 0.5110988020896912, + 0.013554172590374947 + ], + "min": [ + 0.04432673752307892, + 0.5110988020896912, + 0.013554172590374947 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919228, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193136, + "componentType": 5126, + "count": 3, + "max": [ + -0.5745368599891663, + -0.5283881425857544, + -0.48637527227401733, + 0.3926224410533905 + ], + "min": [ + -0.574536919593811, + -0.5283882021903992, + -0.48637527227401733, + 0.3926224112510681 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919240, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862832, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999999403953552, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919252, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1862868, + "componentType": 5126, + "count": 13, + "max": [ + 0.024413853883743286, + 0.23651331663131714, + -0.11545251309871674 + ], + "min": [ + 0.023541152477264404, + 0.23637504875659943, + -0.11630923300981522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919304, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193184, + "componentType": 5126, + "count": 13, + "max": [ + -0.7055027484893799, + -0.02023804746568203, + -0.40331289172172546, + 0.5823851823806763 + ], + "min": [ + -0.7064669132232666, + -0.020786777138710022, + -0.40413740277290344, + 0.5806615352630615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919356, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863024, + "componentType": 5126, + "count": 13, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919408, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863180, + "componentType": 5126, + "count": 13, + "max": [ + 2.213780732063242e-07, + 0.4048613905906677, + 2.93723417144065e-07 + ], + "min": [ + -1.1703023972131632e-07, + 0.40486112236976624, + 1.2737812937757553e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919460, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193392, + "componentType": 5126, + "count": 12, + "max": [ + 0.07776039093732834, + 0.5269917845726013, + -0.23531827330589294, + 0.812932014465332 + ], + "min": [ + 0.07776036858558655, + 0.5269916653633118, + -0.2353183925151825, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919508, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863336, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919560, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863492, + "componentType": 5126, + "count": 13, + "max": [ + 1.2672082050357858e-07, + 0.40327057242393494, + 6.947531261403128e-08 + ], + "min": [ + -5.737389940918547e-08, + 0.403270423412323, + -1.6941534397574287e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919612, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193584, + "componentType": 5126, + "count": 12, + "max": [ + -0.11016570031642914, + 0.39465612173080444, + 0.12396229803562164, + 0.9037386178970337 + ], + "min": [ + -0.1101657971739769, + 0.3946560323238373, + 0.12396218627691269, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919660, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863648, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999996423721313, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919712, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863804, + "componentType": 5126, + "count": 13, + "max": [ + 0.09804265946149826, + 0.219630628824234, + -0.0024724642280489206 + ], + "min": [ + 0.09804251790046692, + 0.21963052451610565, + -0.0024728181306272745 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919764, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193776, + "componentType": 5126, + "count": 13, + "max": [ + -0.6223366260528564, + -0.0009816723177209496, + 0.033664196729660034, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817092213779688, + 0.033664148300886154, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919816, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1863960, + "componentType": 5126, + "count": 13, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919868, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864116, + "componentType": 5126, + "count": 13, + "max": [ + 4.500752126546104e-08, + 0.09750279784202576, + 3.64688673926139e-07 + ], + "min": [ + -1.7659525397561993e-08, + 0.09750255942344666, + 3.2048251341620926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 919920, + "componentType": 5126, + "count": 15, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1193984, + "componentType": 5126, + "count": 15, + "max": [ + -0.5302280187606812, + 0.002465933095663786, + -0.05339592695236206, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024659025948494673, + -0.053395967930555344, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 919980, + "componentType": 5126, + "count": 15, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864272, + "componentType": 5126, + "count": 15, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920040, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864452, + "componentType": 5126, + "count": 13, + "max": [ + -0.01622677594423294, + 0.21308617293834686, + -0.003559249686077237 + ], + "min": [ + -0.016226904466748238, + 0.21308591961860657, + -0.0035597137175500393 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920092, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1194224, + "componentType": 5126, + "count": 13, + "max": [ + -0.626492977142334, + -0.07110270112752914, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110274583101273, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920144, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864608, + "componentType": 5126, + "count": 13, + "max": [ + 1.0, + 0.9999999403953552, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920196, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864764, + "componentType": 5126, + "count": 13, + "max": [ + 5.214579701373623e-08, + 0.08465008437633514, + -2.1033550012816704e-07 + ], + "min": [ + -6.85923211563022e-08, + 0.08464983850717545, + -3.160441224281385e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920248, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1194432, + "componentType": 5126, + "count": 13, + "max": [ + -0.5015432834625244, + -0.0011796707985922694, + -0.00824397336691618, + 0.8650925159454346 + ], + "min": [ + -0.5015432834625244, + -0.0011797196930274367, + -0.008244003169238567, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920300, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1864920, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920352, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1865076, + "componentType": 5126, + "count": 13, + "max": [ + 0.11189676821231842, + 0.10988955199718475, + -0.05163123086094856 + ], + "min": [ + 0.11189652979373932, + 0.10988926887512207, + -0.05163152515888214 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920404, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1194640, + "componentType": 5126, + "count": 12, + "max": [ + -0.4573034942150116, + 0.16493293642997742, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920452, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1865232, + "componentType": 5126, + "count": 19, + "max": [ + 0.9999999403953552, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920528, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1865460, + "componentType": 5126, + "count": 19, + "max": [ + 2.702164891843495e-08, + 0.08512411266565323, + 3.8596525087086775e-08 + ], + "min": [ + -1.3681906807505584e-07, + 0.08512387424707413, + -1.0788491877633533e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920604, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1194832, + "componentType": 5126, + "count": 19, + "max": [ + 0.022910557687282562, + 0.012835756875574589, + 0.6957963705062866, + 0.7177588939666748 + ], + "min": [ + 0.022910527884960175, + 0.012835728004574776, + 0.6957963705062866, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920680, + "componentType": 5126, + "count": 18, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1865688, + "componentType": 5126, + "count": 18, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920752, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1865904, + "componentType": 5126, + "count": 19, + "max": [ + 0.005584983620792627, + 0.1660446673631668, + -0.045393362641334534 + ], + "min": [ + 0.0055848415940999985, + 0.1660444438457489, + -0.04539361596107483 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920828, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195136, + "componentType": 5126, + "count": 13, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920880, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866132, + "componentType": 5126, + "count": 12, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920928, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195344, + "componentType": 5126, + "count": 3, + "max": [ + -0.10934888571500778, + 0.1938180774450302, + -0.11750373244285583, + 0.9678173065185547 + ], + "min": [ + -0.10934893041849136, + 0.19381797313690186, + -0.11750375479459763, + 0.9678172469139099 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920940, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866276, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999999403953552, + 0.9999998211860657 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920952, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866312, + "componentType": 5126, + "count": 3, + "max": [ + 2.9802315282267955e-08, + 0.11002850532531738, + -1.8626309383762418e-09 + ], + "min": [ + -5.960464477539063e-08, + 0.11002826690673828, + -3.166497464235363e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920964, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195392, + "componentType": 5126, + "count": 3, + "max": [ + 0.045114852488040924, + 0.3337618410587311, + -0.021194228902459145, + 0.9413387179374695 + ], + "min": [ + 0.045114848762750626, + 0.3337618410587311, + -0.02119423821568489, + 0.9413387179374695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 920976, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866348, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999999403953552 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 920988, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866384, + "componentType": 5126, + "count": 3, + "max": [ + 8.714798696018988e-07, + 0.3614475727081299, + 0.02684112638235092 + ], + "min": [ + 7.969740636326605e-07, + 0.3614473342895508, + 0.026840947568416595 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921000, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195440, + "componentType": 5126, + "count": 3, + "max": [ + 4.470348358154297e-08, + -1.3969227996568634e-09, + 9.313223969797946e-09, + 1.0 + ], + "min": [ + 3.725289587919178e-08, + -1.2572789032105902e-08, + 1.862648701944636e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921012, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866420, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000003576278687, + 0.9999997615814209, + 1.0000003576278687 + ], + "min": [ + 1.0000003576278687, + 0.9999997019767761, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921024, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866456, + "componentType": 5126, + "count": 3, + "max": [ + 5.950820991529326e-07, + -0.15834005177021027, + -0.2537660300731659 + ], + "min": [ + 5.094003654448898e-07, + -0.15834006667137146, + -0.25376614928245544 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921036, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195488, + "componentType": 5126, + "count": 3, + "max": [ + -0.998119592666626, + -2.234642471066195e-09, + -2.0917870813264017e-07, + 0.06129664555191994 + ], + "min": [ + -0.998119592666626, + -6.711236899548112e-09, + -2.1225287127890624e-07, + 0.06129664555191994 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921048, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866492, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 0.999971866607666 + ], + "min": [ + 1.000000238418579, + 1.0000005960464478, + 0.999971866607666 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921060, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866528, + "componentType": 5126, + "count": 3, + "max": [ + 2.6077012549308165e-08, + 0.2539471983909607, + 1.431993439382495e-07 + ], + "min": [ + -1.676379035586706e-08, + 0.25394710898399353, + -6.966815124798131e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921072, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195536, + "componentType": 5126, + "count": 3, + "max": [ + 0.1561359167098999, + -1.437474139720507e-07, + 2.204490989754504e-08, + 0.9877355694770813 + ], + "min": [ + 0.1561359167098999, + -1.4447132912209781e-07, + 8.730078882024372e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921084, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866564, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000009536743164, + 1.0000014305114746, + 1.000001072883606 + ], + "min": [ + 1.0000008344650269, + 1.0000014305114746, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921096, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866600, + "componentType": 5126, + "count": 3, + "max": [ + 1.6763806343078613e-08, + 0.2533191740512848, + 1.6100848654332367e-07 + ], + "min": [ + -3.725290298461914e-09, + 0.25331899523735046, + -1.1717750680872996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921108, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195584, + "componentType": 5126, + "count": 3, + "max": [ + -0.09231440722942352, + -2.0073178674806513e-08, + 4.6061465752700315e-09, + 0.995729923248291 + ], + "min": [ + -0.09231441468000412, + -2.9500215603661673e-08, + -4.6856807323081284e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921120, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866636, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0 + ], + "min": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921132, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866672, + "componentType": 5126, + "count": 3, + "max": [ + 1.8626442610525373e-08, + 0.26377880573272705, + 2.576606661364167e-08 + ], + "min": [ + -2.421438694000244e-08, + 0.2637786567211151, + 2.451767677769112e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921144, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195632, + "componentType": 5126, + "count": 3, + "max": [ + 1.212126665706137e-08, + -0.9896631240844727, + 0.14341172575950623, + 7.456348782852729e-08 + ], + "min": [ + 1.0839185549116337e-08, + -0.9896631240844727, + 0.14341172575950623, + 5.922196777419231e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921156, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866708, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 1.000001072883606 + ], + "min": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921168, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866744, + "componentType": 5126, + "count": 3, + "max": [ + -9.8333669029671e-07, + 0.24314247071743011, + 0.18703220784664154 + ], + "min": [ + -1.056175619851274e-06, + 0.24314242601394653, + 0.18703211843967438 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921180, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195680, + "componentType": 5126, + "count": 3, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921192, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866780, + "componentType": 5126, + "count": 3, + "max": [ + 0.999999463558197, + 1.000000238418579, + 0.9999999403953552 + ], + "min": [ + 0.9999994039535522, + 1.000000238418579, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921204, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866816, + "componentType": 5126, + "count": 3, + "max": [ + -0.24418991804122925, + -0.13046300411224365, + 0.029651127755641937 + ], + "min": [ + -0.24418991804122925, + -0.13046300411224365, + 0.02965107001364231 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921216, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195728, + "componentType": 5126, + "count": 3, + "max": [ + 0.00741574028506875, + -0.0742838978767395, + -0.9923430681228638, + 0.09839733690023422 + ], + "min": [ + 0.00741572817787528, + -0.0742839127779007, + -0.9923430681228638, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921228, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866852, + "componentType": 5126, + "count": 3, + "max": [ + 0.2434186488389969, + -0.1304633915424347, + 0.02965143881738186 + ], + "min": [ + 0.2434186190366745, + -0.1304636299610138, + 0.029651403427124023 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921240, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195776, + "componentType": 5126, + "count": 3, + "max": [ + 0.007417465094476938, + 0.07428371906280518, + 0.9923431277275085, + 0.09839750826358795 + ], + "min": [ + 0.0074174609035253525, + 0.07428370416164398, + 0.9923431277275085, + 0.09839750826358795 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921252, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866888, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999987483024597, + 1.0000016689300537, + 0.9999993443489075 + ], + "min": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921264, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866924, + "componentType": 5126, + "count": 3, + "max": [ + -0.044326744973659515, + 0.5230473875999451, + 0.0079218540340662 + ], + "min": [ + -0.04432675987482071, + 0.5230473875999451, + 0.0079218540340662 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921276, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195824, + "componentType": 5126, + "count": 3, + "max": [ + -0.5657967329025269, + 0.5974481701850891, + 0.38614144921302795, + 0.4169227182865143 + ], + "min": [ + -0.5657967329025269, + 0.5974480509757996, + 0.38614141941070557, + 0.4169226884841919 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921288, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866960, + "componentType": 5126, + "count": 3, + "max": [ + 1.000000238418579, + 1.0, + 1.0 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921300, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1866996, + "componentType": 5126, + "count": 13, + "max": [ + 0.01861197128891945, + 0.23250821232795715, + -0.034320931881666183 + ], + "min": [ + 0.017870303243398666, + 0.2322695255279541, + -0.03527380898594856 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921352, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1195872, + "componentType": 5126, + "count": 13, + "max": [ + -0.5586584210395813, + 0.5157166123390198, + -0.3280056118965149, + 0.5606688261032104 + ], + "min": [ + -0.5603394508361816, + 0.5143933296203613, + -0.3281324803829193, + 0.5601323246955872 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921404, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867152, + "componentType": 5126, + "count": 12, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921452, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867296, + "componentType": 5126, + "count": 13, + "max": [ + 1.5993379065548652e-07, + 0.4048614203929901, + 2.4015912458708044e-07 + ], + "min": [ + -1.7875365188047e-07, + 0.40486103296279907, + 1.784335950105742e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921504, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1196080, + "componentType": 5126, + "count": 13, + "max": [ + -0.07451160997152328, + 0.499183714389801, + -0.05700931325554848, + 0.8614022135734558 + ], + "min": [ + -0.07451163977384567, + 0.4991835653781891, + -0.057009413838386536, + 0.861402153968811 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921556, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867452, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921608, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867608, + "componentType": 5126, + "count": 13, + "max": [ + 1.3821644273548372e-08, + 0.4032707214355469, + 8.848931543070648e-08 + ], + "min": [ + -2.9667488021800636e-08, + 0.4032703638076782, + -1.2114705327803676e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921660, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1196288, + "componentType": 5126, + "count": 13, + "max": [ + 0.012832451611757278, + 0.01930849626660347, + 0.010109415277838707, + 0.9996801018714905 + ], + "min": [ + 0.012832417152822018, + 0.019308436661958694, + 0.01010938361287117, + 0.9996801018714905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921712, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867764, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921764, + "componentType": 5126, + "count": 22, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1867920, + "componentType": 5126, + "count": 22, + "max": [ + -0.09804252535104752, + 0.21963083744049072, + -0.0024724407121539116 + ], + "min": [ + -0.09804265946149826, + 0.21963047981262207, + -0.002472707536071539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921852, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1196496, + "componentType": 5126, + "count": 13, + "max": [ + -0.5146674513816833, + 0.049974940717220306, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997489973902702, + -0.08315929025411606, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 921904, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1868184, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 921956, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1868340, + "componentType": 5126, + "count": 20, + "max": [ + 2.677779953330628e-08, + 0.09750266373157501, + 4.846820615966863e-07 + ], + "min": [ + -4.637005091012725e-08, + 0.09750249981880188, + 2.44166557195058e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922036, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1196704, + "componentType": 5126, + "count": 13, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731868281960487, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273201107978821, + 0.009731743484735489, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922088, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1868580, + "componentType": 5126, + "count": 12, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922136, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1868724, + "componentType": 5126, + "count": 12, + "max": [ + 0.016226880252361298, + 0.21308633685112, + -0.003559425240382552 + ], + "min": [ + 0.016226766631007195, + 0.21308600902557373, + -0.0035596012603491545 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922184, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1196912, + "componentType": 5126, + "count": 13, + "max": [ + -0.5430818200111389, + 0.06296974420547485, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922236, + "componentType": 5126, + "count": 12, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1868868, + "componentType": 5126, + "count": 12, + "max": [ + 1.0, + 0.9999999403953552, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922284, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869012, + "componentType": 5126, + "count": 13, + "max": [ + 4.131534581119922e-08, + 0.08465000987052917, + -1.3921724928422918e-07 + ], + "min": [ + -4.807921882843402e-08, + 0.08464989066123962, + -3.7480720038729487e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922336, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1197120, + "componentType": 5126, + "count": 13, + "max": [ + -0.4092181324958801, + 0.0020274457056075335, + 0.00807743426412344, + 0.9123985767364502 + ], + "min": [ + -0.40921831130981445, + 0.002027408219873905, + 0.00807739794254303, + 0.9123985171318054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922388, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869168, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 0.9999999403953552 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922440, + "componentType": 5126, + "count": 17, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869324, + "componentType": 5126, + "count": 17, + "max": [ + -0.11189655214548111, + 0.1098894402384758, + -0.0516311340034008 + ], + "min": [ + -0.11189675331115723, + 0.1098891943693161, + -0.05163154751062393 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922508, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1197328, + "componentType": 5126, + "count": 13, + "max": [ + -0.43224573135375977, + -0.12903626263141632, + 0.15030042827129364, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290362924337387, + 0.15030041337013245, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922560, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869528, + "componentType": 5126, + "count": 13, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922612, + "componentType": 5126, + "count": 17, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869684, + "componentType": 5126, + "count": 17, + "max": [ + 8.812984475525809e-08, + 0.0851239487528801, + 1.1506488561963124e-07 + ], + "min": [ + -9.57182493266373e-08, + 0.08512382954359055, + -1.3048254743353027e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922680, + "componentType": 5126, + "count": 18, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1197536, + "componentType": 5126, + "count": 18, + "max": [ + 0.1481143683195114, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.1219802126288414, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922752, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1869888, + "componentType": 5126, + "count": 13, + "max": [ + 0.9999999403953552, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922804, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870044, + "componentType": 5126, + "count": 13, + "max": [ + -0.005584836006164551, + 0.16604465246200562, + -0.045393362641334534 + ], + "min": [ + -0.005584936123341322, + 0.1660444289445877, + -0.04539360851049423 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922856, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1197824, + "componentType": 5126, + "count": 13, + "max": [ + 0.6698365807533264, + -0.7402837872505188, + 0.05103708431124687, + 0.026347270235419273 + ], + "min": [ + 0.6698365211486816, + -0.7402837872505188, + 0.05103706568479538, + 0.02634723298251629 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922908, + "componentType": 5126, + "count": 13, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870200, + "componentType": 5126, + "count": 13, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922960, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870356, + "componentType": 5126, + "count": 3, + "max": [ + 0.13640327751636505, + 0.28504711389541626, + 0.001939793466590345 + ], + "min": [ + 0.13640320301055908, + 0.2850469946861267, + 0.0019397889263927937 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922972, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198032, + "componentType": 5126, + "count": 3, + "max": [ + -7.147919234284927e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.4289629746144783e-07 + ], + "min": [ + -7.704608862013629e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.2719391406790237e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 922984, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870392, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 1.0000003576278687, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 922996, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870428, + "componentType": 5126, + "count": 3, + "max": [ + -0.13640321791172028, + 0.28504735231399536, + 0.0019397480646148324 + ], + "min": [ + -0.13640324771404266, + 0.28504735231399536, + 0.0019397480646148324 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923008, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198080, + "componentType": 5126, + "count": 3, + "max": [ + -7.711170724178373e-08, + -0.6935806274414063, + -0.7203789949417114, + 4.4712322733175824e-08 + ], + "min": [ + -8.764653358639407e-08, + -0.6935806274414063, + -0.7203789949417114, + 4.4512663777140915e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923020, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870464, + "componentType": 5126, + "count": 1, + "max": [ + -0.10242094099521637, + 1.3792855739593506, + -0.6141818165779114 + ], + "min": [ + -0.10242094099521637, + 1.3792855739593506, + -0.6141818165779114 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923024, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870476, + "componentType": 5126, + "count": 1, + "max": [ + 0.4564022123813629, + 1.0116084814071655, + -0.24350862205028534 + ], + "min": [ + 0.4564022123813629, + 1.0116084814071655, + -0.24350862205028534 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923028, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198128, + "componentType": 5126, + "count": 3, + "max": [ + -0.998408854007721, + -0.056389302015304565, + 5.51456196262734e-07, + 3.114579172347476e-08 + ], + "min": [ + -0.998408854007721, + -0.05638930946588516, + 5.51456196262734e-07, + 3.114578817076108e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923040, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870488, + "componentType": 5126, + "count": 1, + "max": [ + 4.6834349632263184e-05, + -1.8147751688957214e-05, + -6.607985415030271e-05 + ], + "min": [ + 4.6834349632263184e-05, + -1.8147751688957214e-05, + -6.607985415030271e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923044, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198176, + "componentType": 5126, + "count": 3, + "max": [ + -0.9503704309463501, + -5.015961423993076e-09, + -2.473620597243098e-08, + 0.3111207187175751 + ], + "min": [ + -0.9503704309463501, + -5.885223863799638e-09, + -2.5621305965728425e-08, + 0.3111207187175751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923056, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870500, + "componentType": 5126, + "count": 3, + "max": [ + 2.581630723541735e-14, + 0.28249984979629517, + 3.725290298461914e-09 + ], + "min": [ + 0.0, + 0.28249984979629517, + -2.393538700573572e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923068, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198224, + "componentType": 5126, + "count": 3, + "max": [ + -7.993411088591529e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.2518325926721445e-07 + ], + "min": [ + -8.525826444838458e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.2351004481133714e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923080, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870536, + "componentType": 5126, + "count": 1, + "max": [ + -0.8797179460525513, + 0.49418342113494873, + -0.7481747269630432 + ], + "min": [ + -0.8797179460525513, + 0.49418342113494873, + -0.7481747269630432 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923084, + "componentType": 5126, + "count": 1, + "max": [ + 0.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870548, + "componentType": 5126, + "count": 1, + "max": [ + -0.5155473947525024, + -0.39485448598861694, + -0.33249983191490173 + ], + "min": [ + -0.5155473947525024, + -0.39485448598861694, + -0.33249983191490173 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923088, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198272, + "componentType": 5126, + "count": 3, + "max": [ + -0.8876402378082275, + -0.20676520466804504, + 0.0009011008078232408, + 0.4115120470523834 + ], + "min": [ + -0.8876402378082275, + -0.20676521956920624, + 0.000901096616871655, + 0.4115120470523834 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923100, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870560, + "componentType": 5126, + "count": 3, + "max": [ + -1.1667609214782715e-05, + -6.035030310158618e-06, + -1.922408409882337e-05 + ], + "min": [ + -1.1667609214782715e-05, + -6.047046554158442e-06, + -1.9232895283494145e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923112, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198320, + "componentType": 5126, + "count": 3, + "max": [ + -0.9503704905509949, + -3.2235989433360146e-09, + 5.774213462927946e-08, + 0.3111205995082855 + ], + "min": [ + -0.9503704905509949, + -3.866468478719298e-09, + 4.7732115149301535e-08, + 0.3111205995082855 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923124, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870596, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 0.9999998807907104, + 0.9999998211860657 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923136, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870632, + "componentType": 5126, + "count": 3, + "max": [ + -3.705769144237564e-22, + 0.28249984979629517, + 1.2738796684175213e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.2824998199939728, + -1.1281100498194974e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923148, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198368, + "componentType": 5126, + "count": 3, + "max": [ + -0.03645573556423187, + -0.8155511617660522, + 0.5767431855201721, + 0.030243298038840294 + ], + "min": [ + -0.03645576536655426, + -0.8155511617660522, + 0.5767431855201721, + 0.030243294313549995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 923160, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870668, + "componentType": 5126, + "count": 3, + "max": [ + 0.9999998211860657, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 1.0000001192092896, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923172, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1870704, + "componentType": 5126, + "count": 87, + "max": [ + 0.0, + 0.0, + 10.192849159240723 + ], + "min": [ + 0.0, + 0.0, + -0.7481244802474976 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923520, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1871748, + "componentType": 5126, + "count": 102, + "max": [ + 0.030920162796974182, + 0.4647783041000366, + -1.1403591632843018 + ], + "min": [ + -0.11957042664289474, + -0.8232258558273315, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 923928, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1198416, + "componentType": 5126, + "count": 106, + "max": [ + 0.3740176260471344, + 0.055145904421806335, + 0.22757799923419952, + 0.9995237588882446 + ], + "min": [ + -0.03552567958831787, + 1.1055726645281538e-07, + -0.5003637671470642, + 0.8632031083106995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 924352, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1872972, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 924664, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1873908, + "componentType": 5126, + "count": 104, + "max": [ + 4.768372150465439e-07, + 0.0021283477544784546, + 4.768373855768004e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.002126440405845642, + -4.76837158203125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 925080, + "componentType": 5126, + "count": 97, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1200112, + "componentType": 5126, + "count": 97, + "max": [ + 0.7071067690849304, + 0.04206811264157295, + 0.05213102698326111, + 0.7071167826652527 + ], + "min": [ + 0.7052648067474365, + 2.9554422553701443e-07, + -3.169469380281953e-07, + 0.7057720422744751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 925468, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1875156, + "componentType": 5126, + "count": 104, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 925884, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1876404, + "componentType": 5126, + "count": 106, + "max": [ + 0.17381927371025085, + 0.1340998411178589, + 2.8739409572153818e-06 + ], + "min": [ + 0.17381736636161804, + 0.13409698009490967, + -2.8461327019613236e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 926308, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1201664, + "componentType": 5126, + "count": 106, + "max": [ + -0.13052873313426971, + 0.1499619483947754, + -0.009349136613309383, + 0.9695424437522888 + ], + "min": [ + -0.8522957563400269, + -0.34814751148223877, + -0.2705415189266205, + 0.513267457485199 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 926732, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1877676, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 927156, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1878948, + "componentType": 5126, + "count": 106, + "max": [ + 6.868551167826809e-07, + 0.6356133818626404, + 1.9470512597763445e-06 + ], + "min": [ + -5.052377787251316e-07, + 0.6356105208396912, + -9.723495395519421e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 927580, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1203360, + "componentType": 5126, + "count": 106, + "max": [ + 0.9420846700668335, + 5.1101640252682046e-08, + 6.97685820227889e-08, + 0.9906405806541443 + ], + "min": [ + 0.13649646937847137, + -2.7913445777016932e-08, + -1.0184688790104701e-06, + 0.33537518978118896 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 928004, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1880220, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999993443489075, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 928428, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1881492, + "componentType": 5126, + "count": 105, + "max": [ + -0.17381736636161804, + 0.1340998411178589, + 1.9214808162359986e-06 + ], + "min": [ + -0.17381975054740906, + 0.13409698009490967, + -1.8926099301097565e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 928848, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1205056, + "componentType": 5126, + "count": 106, + "max": [ + 0.06931876391172409, + 0.1388954371213913, + 0.42047762870788574, + 0.9979180693626404 + ], + "min": [ + -0.649249792098999, + -0.24208426475524902, + -0.05826945602893829, + 0.7093280553817749 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 929272, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1882752, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 929696, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1884024, + "componentType": 5126, + "count": 106, + "max": [ + 1.4033186346296134e-07, + 0.635612428188324, + 9.496986876911251e-07 + ], + "min": [ + -9.808672984945588e-08, + 0.6356105208396912, + -9.965684739654534e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 930120, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1206752, + "componentType": 5126, + "count": 106, + "max": [ + 0.8052088022232056, + 2.999408010850857e-08, + 1.0849242926269653e-06, + 0.9844075441360474 + ], + "min": [ + 0.1759030520915985, + -3.93966708145399e-08, + 8.221321934342996e-08, + 0.5929913520812988 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 930544, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1885296, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999993443489075, + 0.9999994039535522, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 930968, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1886568, + "componentType": 5126, + "count": 106, + "max": [ + 4.768372150465439e-07, + 0.0021283477544784546, + 9.536729521641973e-07 + ], + "min": [ + -4.768373855768004e-07, + 0.002126439707353711, + -9.536728953207785e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 931392, + "componentType": 5126, + "count": 97, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1208448, + "componentType": 5126, + "count": 97, + "max": [ + -0.6495170593261719, + 2.3271076088349218e-07, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.1021478995680809, + 3.800124943609262e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 931780, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1887840, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 932204, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1889112, + "componentType": 5126, + "count": 105, + "max": [ + 9.5367431640625e-07, + 0.2726663649082184, + 9.528159239380329e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2726649045944214, + -1.4298059340944747e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 932624, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1210000, + "componentType": 5126, + "count": 106, + "max": [ + 0.08500942587852478, + 0.16931113600730896, + 0.02510380744934082, + 0.9975984692573547 + ], + "min": [ + -0.02392125315964222, + 3.897199507552074e-10, + -1.878624544815466e-08, + 0.9852480888366699 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 933048, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1890372, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 933468, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1891632, + "componentType": 5126, + "count": 106, + "max": [ + 0.044816628098487854, + 0.5191994905471802, + 0.01097556110471487 + ], + "min": [ + 0.044764772057533264, + 0.517072856426239, + 0.010737915523350239 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 933892, + "componentType": 5126, + "count": 101, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1211696, + "componentType": 5126, + "count": 101, + "max": [ + -0.35930386185646057, + -0.49043551087379456, + -0.4635595977306366, + 0.5727537274360657 + ], + "min": [ + -0.4904356002807617, + -0.6060600280761719, + -0.50938481092453, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 934296, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1892904, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 934720, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1894176, + "componentType": 5126, + "count": 106, + "max": [ + 0.023541152477264404, + 0.24206453561782837, + -0.035916171967983246 + ], + "min": [ + 0.0022678186651319265, + 0.23651321232318878, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 935144, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1213312, + "componentType": 5126, + "count": 106, + "max": [ + 0.14633075892925262, + -0.020786812528967857, + -0.1695905476808548, + 0.9749447107315063 + ], + "min": [ + -0.705502986907959, + -0.4084325432777405, + -0.6224066019058228, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 935568, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1895448, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 935992, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1896720, + "componentType": 5126, + "count": 106, + "max": [ + 5.379877165978542e-07, + 0.4048622250556946, + 2.100303163388162e-06 + ], + "min": [ + -1.0727952712841216e-06, + 0.40486031770706177, + -7.543108608842886e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 936416, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1215008, + "componentType": 5126, + "count": 106, + "max": [ + 0.1385778784751892, + 0.5269917249679565, + -0.09190460294485092, + 0.9844673275947571 + ], + "min": [ + -0.1914244294166565, + -0.38684040307998657, + -0.9160653948783875, + 0.35015368461608887 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 936840, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1897992, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 937264, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1899264, + "componentType": 5126, + "count": 106, + "max": [ + 1.0023604772868566e-06, + 0.40327101945877075, + 9.428409839529195e-07 + ], + "min": [ + -1.0418282272439683e-06, + 0.40326952934265137, + -1.0058702173409984e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 937688, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1216704, + "componentType": 5126, + "count": 106, + "max": [ + 0.24969452619552612, + 0.39465609192848206, + 0.3836479187011719, + 0.9904313683509827 + ], + "min": [ + -0.1103772222995758, + -0.2277754843235016, + 0.06639676541090012, + 0.8886629343032837 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 938112, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1900536, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 938532, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1901796, + "componentType": 5126, + "count": 106, + "max": [ + 0.09804452210664749, + 0.21963126957416534, + -0.002471694489941001 + ], + "min": [ + 0.09803976863622665, + 0.21962924301624298, + -0.00247362838126719 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 938956, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1218400, + "componentType": 5126, + "count": 106, + "max": [ + -0.6223366260528564, + -0.0009816637029871345, + 0.03366423025727272, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817222598940134, + 0.03366415202617645, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 939380, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1903068, + "componentType": 5126, + "count": 105, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 939800, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1904328, + "componentType": 5126, + "count": 106, + "max": [ + 1.9262706700828858e-06, + 0.09750457853078842, + 8.391668870899593e-07 + ], + "min": [ + -1.9004642126674298e-06, + 0.0975017175078392, + -1.922301464674092e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 940224, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1220096, + "componentType": 5126, + "count": 106, + "max": [ + -0.5302279591560364, + 0.0024659496266394854, + -0.053395915776491165, + 0.8461684584617615 + ], + "min": [ + -0.5302282571792603, + 0.002465886762365699, + -0.053395986557006836, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 940648, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1905600, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 941072, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1906872, + "componentType": 5126, + "count": 106, + "max": [ + -0.016224058344960213, + 0.2130870521068573, + -0.0035584764555096626 + ], + "min": [ + -0.01622968167066574, + 0.21308518946170807, + -0.003561419667676091 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 941496, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1221792, + "componentType": 5126, + "count": 106, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480836659669876, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 941920, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1908144, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 942344, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1909416, + "componentType": 5126, + "count": 106, + "max": [ + 1.9006573666047188e-06, + 0.08465086668729782, + 3.2571824704064056e-07 + ], + "min": [ + -9.664531717135105e-07, + 0.08464901149272919, + -7.644714514754014e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 942768, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1223488, + "componentType": 5126, + "count": 106, + "max": [ + -0.5015431642532349, + -0.0011796430917456746, + -0.008243993856012821, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797056067734957, + -0.008244065567851067, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 943192, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1910688, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 943612, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1911948, + "componentType": 5126, + "count": 106, + "max": [ + 0.11189902573823929, + 0.10989123582839966, + -0.05162955820560455 + ], + "min": [ + 0.1118951216340065, + 0.10988757759332657, + -0.051633354276418686 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 944036, + "componentType": 5126, + "count": 95, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1225184, + "componentType": 5126, + "count": 95, + "max": [ + -0.4573034644126892, + 0.1649329662322998, + -0.31590890884399414, + 0.8147835731506348 + ], + "min": [ + -0.45730358362197876, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 944416, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1913220, + "componentType": 5126, + "count": 105, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 944836, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1914480, + "componentType": 5126, + "count": 106, + "max": [ + 9.193215078084904e-07, + 0.08512543141841888, + 1.9121684999845456e-06 + ], + "min": [ + -2.8560682494571665e-06, + 0.08512207865715027, + -9.459413377044257e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 945260, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1226704, + "componentType": 5126, + "count": 106, + "max": [ + 0.02291056700050831, + 0.0128357894718647, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910509258508682, + 0.012835717760026455, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 945684, + "componentType": 5126, + "count": 103, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1915752, + "componentType": 5126, + "count": 103, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 946096, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1916988, + "componentType": 5126, + "count": 106, + "max": [ + 0.005587852094322443, + 0.1660454273223877, + -0.0453924722969532 + ], + "min": [ + 0.005583110731095076, + 0.16604359447956085, + -0.04539448767900467 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 946520, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1228400, + "componentType": 5126, + "count": 106, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188955664635, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192680954933, + 0.023865360766649246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 946944, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1918260, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 947368, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1919532, + "componentType": 5126, + "count": 106, + "max": [ + 4.768373855768004e-07, + 0.5450082421302795, + 1.4238960375223542e-06 + ], + "min": [ + -9.536744300930877e-07, + 0.545006275177002, + -9.585771749698324e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 947792, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1230096, + "componentType": 5126, + "count": 106, + "max": [ + 0.10531747341156006, + 0.13072361052036285, + 0.05145106464624405, + 1.0 + ], + "min": [ + -0.007215114776045084, + -0.29640477895736694, + -0.04222821071743965, + 0.9478424191474915 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 948216, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1920804, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 948640, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1922076, + "componentType": 5126, + "count": 105, + "max": [ + 4.76837158203125e-07, + 0.11002922058105469, + 9.518117849438568e-07 + ], + "min": [ + -4.768373855768004e-07, + 0.11002731323242188, + -9.55536961555481e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 949060, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1231792, + "componentType": 5126, + "count": 106, + "max": [ + 0.0873376876115799, + 0.12989991903305054, + 0.057058535516262054, + 0.999832034111023 + ], + "min": [ + -0.025982949882745743, + -0.295376718044281, + -0.04469774663448334, + 0.9496678709983826 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 949484, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1923336, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 949908, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1924608, + "componentType": 5126, + "count": 106, + "max": [ + 8.584413535572821e-07, + 0.3614490032196045, + 0.026842139661312103 + ], + "min": [ + 7.690343863941962e-07, + 0.36144518852233887, + 0.02683832496404648 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 950332, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1233488, + "componentType": 5126, + "count": 106, + "max": [ + 7.450580596923828e-08, + 9.313283477752066e-09, + 1.8626444830971423e-09, + 1.0 + ], + "min": [ + 7.450577488299359e-09, + -6.519195405729761e-09, + -7.11588743484981e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 950756, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1925880, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000005960464478, + 0.9999999403953552, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 0.9999994039535522, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 951176, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1927140, + "componentType": 5126, + "count": 105, + "max": [ + 6.118460760262678e-07, + -0.15833792090415955, + -0.25376468896865845 + ], + "min": [ + 4.926365022583923e-07, + -0.15834353864192963, + -0.25376859307289124 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 951596, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1235184, + "componentType": 5126, + "count": 106, + "max": [ + -0.998119592666626, + 1.6059114038569078e-09, + -2.0171361825305212e-07, + 0.06129669025540352 + ], + "min": [ + -0.998119592666626, + -8.094045433892916e-09, + -2.1495594637599424e-07, + 0.06129660829901695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 952020, + "componentType": 5126, + "count": 101, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1928400, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 952424, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1929612, + "componentType": 5126, + "count": 106, + "max": [ + 4.470350134511136e-08, + 0.2539493441581726, + 9.369784947921289e-07 + ], + "min": [ + -4.4703465817974575e-08, + 0.25394535064697266, + -1.1715269465639722e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 952848, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1236880, + "componentType": 5126, + "count": 106, + "max": [ + 0.15613597631454468, + -1.3774433682556264e-07, + 2.7902558485948248e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.5386629570457444e-07, + 1.5751030701949276e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 953272, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1930884, + "componentType": 5126, + "count": 102, + "max": [ + 1.000001311302185, + 1.0000016689300537, + 1.000001311302185 + ], + "min": [ + 1.0000007152557373, + 1.000001072883606, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 953680, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1932108, + "componentType": 5126, + "count": 106, + "max": [ + 4.470348358154297e-08, + 0.25332117080688477, + 1.0250820423607365e-06 + ], + "min": [ + -7.450580596923828e-08, + 0.2533172369003296, + -1.6691159316906123e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 954104, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1238576, + "componentType": 5126, + "count": 106, + "max": [ + -0.09231438487768173, + -2.1240076364392735e-08, + 1.08580113789003e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144668340683, + -3.83438027995453e-08, + 2.9050302163824426e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 954528, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1933380, + "componentType": 5126, + "count": 102, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000003576278687 + ], + "min": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 954936, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1934604, + "componentType": 5126, + "count": 106, + "max": [ + 2.98023579148321e-08, + 0.2637794017791748, + 1.1094049341409118e-06 + ], + "min": [ + -4.470348358154297e-08, + 0.26377764344215393, + -1.7692873370833695e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 955360, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1240272, + "componentType": 5126, + "count": 106, + "max": [ + 5.642921685478086e-09, + -0.9896631240844727, + 0.1434117704629898, + 8.369379855821535e-08 + ], + "min": [ + -1.5835491806726054e-09, + -0.9896631240844727, + 0.14341171085834503, + 6.948093300707114e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 955784, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1935876, + "componentType": 5126, + "count": 102, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 1.0000011920928955 + ], + "min": [ + 1.0000001192092896, + 1.0000005960464478, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 956192, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1937100, + "componentType": 5126, + "count": 106, + "max": [ + 3.5310455359649495e-07, + 0.24314400553703308, + 0.18703383207321167 + ], + "min": [ + -3.4820782275346573e-06, + 0.24314089119434357, + 0.18702934682369232 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 956616, + "componentType": 5126, + "count": 64, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1241968, + "componentType": 5126, + "count": 64, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 956872, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1938372, + "componentType": 5126, + "count": 106, + "max": [ + 0.9999997019767761, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999992251396179, + 1.0, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 957296, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1939644, + "componentType": 5126, + "count": 106, + "max": [ + -0.2441895455121994, + -0.13046124577522278, + 0.02965373359620571 + ], + "min": [ + -0.24419032037258148, + -0.13046479225158691, + 0.02964828722178936 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 957720, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1242992, + "componentType": 5126, + "count": 106, + "max": [ + 0.007415734697133303, + -0.07428387552499771, + -0.9923430681228638, + 0.09839734435081482 + ], + "min": [ + 0.007415719795972109, + -0.07428392022848129, + -0.9923430681228638, + 0.09839731454849243 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 958144, + "componentType": 5126, + "count": 103, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1940916, + "componentType": 5126, + "count": 103, + "max": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999999403953552 + ], + "min": [ + 0.9999980926513672, + 1.0000009536743164, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 958556, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1942152, + "componentType": 5126, + "count": 106, + "max": [ + 0.243418887257576, + -0.13046211004257202, + 0.029653189703822136 + ], + "min": [ + 0.24341820180416107, + -0.13046550750732422, + 0.0296492762863636 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 958980, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1244688, + "componentType": 5126, + "count": 105, + "max": [ + 0.0074174730107188225, + 0.07428375631570816, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417443674057722, + 0.07428368180990219, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 959400, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1943424, + "componentType": 5126, + "count": 102, + "max": [ + 0.9999991059303284, + 1.0000019073486328, + 0.9999995231628418 + ], + "min": [ + 0.9999986290931702, + 1.0000014305114746, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 959808, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1944648, + "componentType": 5126, + "count": 106, + "max": [ + -0.04476482421159744, + 0.5170733332633972, + 0.010739421471953392 + ], + "min": [ + -0.04481615498661995, + 0.5149462223052979, + 0.010500405915081501 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 960232, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1246368, + "componentType": 5126, + "count": 105, + "max": [ + -0.4439297318458557, + 0.5833619832992554, + 0.5218290686607361, + 0.44732871651649475 + ], + "min": [ + -0.5575267672538757, + 0.48095351457595825, + 0.5019243359565735, + 0.4309980571269989 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 960652, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1945920, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 961076, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1947192, + "componentType": 5126, + "count": 106, + "max": [ + 0.01787092536687851, + 0.2666724622249603, + -0.033796750009059906 + ], + "min": [ + -0.032521940767765045, + 0.23250791430473328, + -0.035274047404527664 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 961500, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1248048, + "componentType": 5126, + "count": 106, + "max": [ + -0.035322509706020355, + 0.5191449522972107, + 0.7919102907180786, + 0.7517806887626648 + ], + "min": [ + -0.6537621021270752, + -0.07680071890354156, + -0.32813236117362976, + 0.5358352661132813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 961924, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1948464, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 962348, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1949736, + "componentType": 5126, + "count": 106, + "max": [ + 4.733188347927353e-07, + 0.4048631489276886, + 1.1656693459372036e-06 + ], + "min": [ + -1.070449343387736e-06, + 0.4048602879047394, + -7.476293149011326e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 962772, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1249744, + "componentType": 5126, + "count": 105, + "max": [ + -0.02174500748515129, + 0.824804961681366, + 0.7147213220596313, + 0.9010441303253174 + ], + "min": [ + -0.3524878919124603, + 0.43236422538757324, + -0.05700935795903206, + 0.3227784037590027 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 963192, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1951008, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 963616, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1952280, + "componentType": 5126, + "count": 106, + "max": [ + 9.571192549628904e-07, + 0.4032714366912842, + 1.849635395956284e-06 + ], + "min": [ + -9.827217581914738e-07, + 0.403269499540329, + -9.628797670302447e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 964040, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1251424, + "componentType": 5126, + "count": 106, + "max": [ + 0.09954513609409332, + 0.0918310359120369, + 0.16444945335388184, + 0.999966025352478 + ], + "min": [ + -0.18702936172485352, + -0.042015329003334045, + -0.24599894881248474, + 0.9597616195678711 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 964464, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1953552, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 964888, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1954824, + "componentType": 5126, + "count": 106, + "max": [ + -0.09804082661867142, + 0.21963216364383698, + -0.0024708141572773457 + ], + "min": [ + -0.09804441034793854, + 0.21962924301624298, + -0.002474597655236721 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 965312, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1253120, + "componentType": 5126, + "count": 105, + "max": [ + -0.5146673321723938, + 0.0499749518930912, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 965732, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1956096, + "componentType": 5126, + "count": 104, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 966148, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1957344, + "componentType": 5126, + "count": 106, + "max": [ + 1.8944463135994738e-06, + 0.09750448912382126, + 7.379568387477775e-07 + ], + "min": [ + -1.921584726005676e-06, + 0.09750119596719742, + 5.698017346844608e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 966572, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1254800, + "componentType": 5126, + "count": 106, + "max": [ + -0.4217608571052551, + 0.06273208558559418, + 0.009731835685670376, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320259809494, + 0.009731790982186794, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 966996, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1958616, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 967420, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1959888, + "componentType": 5126, + "count": 106, + "max": [ + 0.016228850930929184, + 0.21308718621730804, + -0.00355649646371603 + ], + "min": [ + 0.016224892809987068, + 0.21308474242687225, + -0.003560479497537017 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 967844, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1256496, + "componentType": 5126, + "count": 105, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969205141068, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 968264, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1961160, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 968688, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1962432, + "componentType": 5126, + "count": 106, + "max": [ + 9.730619012771058e-07, + 0.08465045690536499, + 2.534346776883467e-07 + ], + "min": [ + -1.9020897070731735e-06, + 0.08464802801609039, + -6.291867293839459e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 969112, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1258176, + "componentType": 5126, + "count": 106, + "max": [ + -0.4092181324958801, + 0.0020274780690670013, + 0.00807748083025217, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027418464422226, + 0.008077324368059635, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 969536, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1963704, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 969960, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1964976, + "componentType": 5126, + "count": 106, + "max": [ + -0.11189407855272293, + 0.10989078879356384, + -0.05162937939167023 + ], + "min": [ + -0.11189870536327362, + 0.1098872721195221, + -0.05163254588842392 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 970384, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1259872, + "componentType": 5126, + "count": 106, + "max": [ + -0.432245671749115, + -0.12903623282909393, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 970808, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1966248, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 971232, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1967520, + "componentType": 5126, + "count": 106, + "max": [ + 9.61522573561524e-07, + 0.08512578159570694, + 9.602769068806083e-07 + ], + "min": [ + -1.9473611700959736e-06, + 0.08512195944786072, + -9.633617992221843e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 971656, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1261568, + "componentType": 5126, + "count": 106, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 972080, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1968792, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 972504, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1970064, + "componentType": 5126, + "count": 106, + "max": [ + -0.005582056008279324, + 0.16604633629322052, + -0.045392487198114395 + ], + "min": [ + -0.0055868616327643394, + 0.16604316234588623, + -0.04539448767900467 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 972928, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1263264, + "componentType": 5126, + "count": 104, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.04813842102885246, + 0.04685833305120468 + ], + "min": [ + 0.4514244496822357, + -0.8897769451141357, + 0.03350188583135605, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 973344, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1971336, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 973768, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1972608, + "componentType": 5126, + "count": 106, + "max": [ + 0.13640420138835907, + 0.2850482165813446, + 0.0019426154904067516 + ], + "min": [ + 0.13640229403972626, + 0.285045325756073, + 0.0019373378017917275 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 974192, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1264928, + "componentType": 5126, + "count": 106, + "max": [ + -5.971561023443428e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.523888073506896e-07 + ], + "min": [ + -9.125693622991093e-08, + -0.693580687046051, + -0.7203789949417114, + 1.2010224281766568e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 974616, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1973880, + "componentType": 5126, + "count": 104, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 975032, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1975128, + "componentType": 5126, + "count": 106, + "max": [ + -0.13640134036540985, + 0.285048246383667, + 0.0019417090807110071 + ], + "min": [ + -0.13640515506267548, + 0.285046249628067, + 0.001937897177413106 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 975456, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1266624, + "componentType": 5126, + "count": 106, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.491488591109373e-08 + ], + "min": [ + -9.167047920755067e-08, + -0.693580687046051, + -0.7203789949417114, + 3.578392337999503e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 975880, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1976400, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 976304, + "componentType": 5126, + "count": 84, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1977672, + "componentType": 5126, + "count": 84, + "max": [ + 0.8412194848060608, + 1.2630354166030884, + -0.44940343499183655 + ], + "min": [ + 0.004980742931365967, + -1.0420974493026733, + -0.7300586700439453 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 976640, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1978680, + "componentType": 5126, + "count": 106, + "max": [ + 0.5804785490036011, + 1.0236692428588867, + -0.21545936167240143 + ], + "min": [ + 0.0742408037185669, + -1.5467466115951538, + -0.6739274263381958 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 977064, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1268320, + "componentType": 5126, + "count": 78, + "max": [ + 1.0, + 0.687836766242981, + 5.523349955183221e-07, + 0.7296298146247864 + ], + "min": [ + -1.0, + -0.6912328004837036, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 977376, + "componentType": 5126, + "count": 50, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1979952, + "componentType": 5126, + "count": 50, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 977576, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1980552, + "componentType": 5126, + "count": 106, + "max": [ + 4.909932613372803e-05, + 5.240610335022211e-06, + 2.6857130706048338e-06 + ], + "min": [ + -9.685754776000977e-07, + -0.00011013861512765288, + -0.0001097072017728351 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 978000, + "componentType": 5126, + "count": 76, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1269568, + "componentType": 5126, + "count": 76, + "max": [ + -0.9503704309463501, + 1.532063542697415e-08, + 7.691997261360939e-09, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -8.295921283263397e-09, + -1.1169039915159829e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 978304, + "componentType": 5126, + "count": 70, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1981824, + "componentType": 5126, + "count": 70, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 978584, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1982664, + "componentType": 5126, + "count": 106, + "max": [ + 2.384187780535285e-07, + 0.2825016975402832, + 7.137084594432963e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2824980914592743, + -9.275431125388423e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 979008, + "componentType": 5126, + "count": 91, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1270784, + "componentType": 5126, + "count": 91, + "max": [ + -7.430961801446756e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.3849203734680486e-07 + ], + "min": [ + -9.679052226374552e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.209280177747132e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 979372, + "componentType": 5126, + "count": 89, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1983936, + "componentType": 5126, + "count": 89, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 979728, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1985004, + "componentType": 5126, + "count": 87, + "max": [ + -0.20709143579006195, + 0.5489672422409058, + -0.42940956354141235 + ], + "min": [ + -0.33675435185432434, + 0.5460788011550903, + -0.6843864917755127 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 980076, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1986048, + "componentType": 5126, + "count": 87, + "max": [ + -0.17945753037929535, + 0.21583116054534912, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5634655952453613, + -0.357907772064209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 980424, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1272240, + "componentType": 5126, + "count": 78, + "max": [ + -0.9214947819709778, + -0.007706985343247652, + 5.52315839286166e-07, + 0.38431423902511597 + ], + "min": [ + -0.9999653100967407, + -0.17863965034484863, + -0.012629411183297634, + 4.603480263654092e-09 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 980736, + "componentType": 5126, + "count": 64, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1987092, + "componentType": 5126, + "count": 64, + "max": [ + 1.0, + 1.0, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 980992, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1987860, + "componentType": 5126, + "count": 106, + "max": [ + 4.112720489501953e-06, + 2.1214535081526265e-05, + -1.4795447214055457e-06 + ], + "min": [ + -2.740323543548584e-05, + -5.341914584278129e-05, + -0.00011395310866646469 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 981416, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1273488, + "componentType": 5126, + "count": 78, + "max": [ + -0.9503703713417053, + 1.3943548538009054e-08, + 1.1050719450622637e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.5923907525916547e-08, + -1.0895131019594828e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 981728, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1989132, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 982040, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1990068, + "componentType": 5126, + "count": 106, + "max": [ + 4.76837158203125e-07, + 0.2825015187263489, + 6.237919478735421e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2824987769126892, + -9.275435104427743e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 982464, + "componentType": 5126, + "count": 90, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1274736, + "componentType": 5126, + "count": 90, + "max": [ + -6.772418004175051e-08, + -0.857188880443573, + 0.5149703621864319, + 0.005273456685245037 + ], + "min": [ + -0.002218397334218025, + -0.9818702340126038, + 0.1895543485879898, + 4.238440851622727e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 982824, + "componentType": 5126, + "count": 91, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1991340, + "componentType": 5126, + "count": 91, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 983188, + "componentType": 5126, + "count": 68, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1992432, + "componentType": 5126, + "count": 68, + "max": [ + 1.4210854715202004e-13, + 0.5232601761817932, + 13.0 + ], + "min": [ + -1.7053025658242404e-13, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 983460, + "componentType": 5126, + "count": 28, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1276176, + "componentType": 5126, + "count": 28, + "max": [ + 0.7071067690849304, + 0.7064826488494873, + -3.90559847573968e-07, + 0.7071067690849304 + ], + "min": [ + 0.029703015461564064, + -3.90559847573968e-07, + -0.7064826488494873, + 0.029703795909881592 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 983572, + "componentType": 5126, + "count": 22, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1993248, + "componentType": 5126, + "count": 22, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 983660, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1993512, + "componentType": 5126, + "count": 121, + "max": [ + 0.18060871958732605, + 0.4869465231895447, + -1.1357077360153198 + ], + "min": [ + -0.26945558190345764, + -0.08483370393514633, + -2.5217926502227783 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 984144, + "componentType": 5126, + "count": 118, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1276624, + "componentType": 5126, + "count": 118, + "max": [ + 0.20693190395832062, + 0.17973695695400238, + 0.656745195388794, + 0.9778730869293213 + ], + "min": [ + -0.6039103269577026, + -0.45672574639320374, + -0.9792152643203735, + 0.2015160173177719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 984616, + "componentType": 5126, + "count": 118, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1994964, + "componentType": 5126, + "count": 118, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 985088, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1996380, + "componentType": 5126, + "count": 121, + "max": [ + 9.5367431640625e-07, + 0.0021283477544784546, + 2.861023403966101e-06 + ], + "min": [ + -9.5367431640625e-07, + 0.002126440405845642, + -9.536748848404386e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 985572, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1278512, + "componentType": 5126, + "count": 121, + "max": [ + 0.788224458694458, + 0.17374667525291443, + 0.06940185278654099, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.8404284080352227e-07, + -0.038875870406627655, + 0.599839985370636 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 986056, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1997832, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 986540, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1999284, + "componentType": 5126, + "count": 121, + "max": [ + 0.17382022738456726, + 0.1341031789779663, + 1.4447196008404717e-06 + ], + "min": [ + 0.17381641268730164, + 0.13409459590911865, + -1.4328513771033613e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 987024, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1280448, + "componentType": 5126, + "count": 121, + "max": [ + 0.3734442889690399, + 0.018537119030952454, + 0.35522326827049255, + 0.9798318147659302 + ], + "min": [ + -0.7388269305229187, + -0.32809802889823914, + -0.5456928610801697, + 0.4956680238246918 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 987508, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2000736, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999994039535522, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 987992, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2002188, + "componentType": 5126, + "count": 121, + "max": [ + 4.4843653768111835e-07, + 0.6356129050254822, + 1.8980242657562485e-06 + ], + "min": [ + -1.9357491964910878e-06, + 0.6356105208396912, + -1.0458900305820862e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 988476, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1282384, + "componentType": 5126, + "count": 121, + "max": [ + 0.927934467792511, + 5.435866228253872e-07, + 2.157104972866364e-06, + 0.9999966621398926 + ], + "min": [ + 0.00259186839684844, + -9.834442948886135e-08, + -1.0641520930221304e-05, + 0.3727433681488037 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 988960, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2003640, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 989444, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2005092, + "componentType": 5126, + "count": 121, + "max": [ + -0.17381545901298523, + 0.1341022253036499, + 1.927857056216453e-06 + ], + "min": [ + -0.17382022738456726, + 0.13409364223480225, + -1.9011113181477413e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 989928, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1284320, + "componentType": 5126, + "count": 121, + "max": [ + 0.1648571491241455, + -0.10230901837348938, + 0.260038822889328, + 0.9818450212478638 + ], + "min": [ + -0.6308844685554504, + -0.42991775274276733, + -0.22961759567260742, + 0.7222793102264404 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 990412, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2006544, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 0.9999994039535522, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 990896, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2007996, + "componentType": 5126, + "count": 121, + "max": [ + 9.747968761075754e-07, + 0.635612428188324, + 9.987256817112211e-07 + ], + "min": [ + -9.325517567049246e-07, + 0.6356104016304016, + -9.965684739654534e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 991380, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1286256, + "componentType": 5126, + "count": 121, + "max": [ + 0.9168792963027954, + 1.884350240288768e-07, + 1.9635037915577414e-06, + 0.9844071269035339 + ], + "min": [ + 0.17590491473674774, + -8.326125566782139e-08, + -3.1753190796735e-06, + 0.399164617061615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 991864, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2009448, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 992348, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2010900, + "componentType": 5126, + "count": 121, + "max": [ + 9.536747711536009e-07, + 0.00212834938429296, + 1.9081460322922794e-06 + ], + "min": [ + -9.5367431640625e-07, + 0.002126440405845642, + -9.544734211885952e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 992832, + "componentType": 5126, + "count": 118, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1288192, + "componentType": 5126, + "count": 118, + "max": [ + -0.5988067984580994, + -0.10214788466691971, + 0.054463960230350494, + 0.7894210815429688 + ], + "min": [ + -0.6495170593261719, + -0.13438887894153595, + -0.013581632636487484, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 993304, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2012352, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 993788, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2013804, + "componentType": 5126, + "count": 120, + "max": [ + 9.5367431640625e-07, + 0.2726677656173706, + 9.355471775052138e-07 + ], + "min": [ + -1.430511474609375e-06, + 0.272663950920105, + -9.878191349343979e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 994268, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1290080, + "componentType": 5126, + "count": 121, + "max": [ + 0.21133704483509064, + 0.26493024826049805, + 0.05219902843236923, + 0.9946163892745972 + ], + "min": [ + -0.09200344234704971, + 0.05683111399412155, + -0.1489056497812271, + 0.9384232759475708 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 994752, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2015244, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 995236, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2016696, + "componentType": 5126, + "count": 121, + "max": [ + 0.04481618106365204, + 0.5170741081237793, + 0.013555176556110382 + ], + "min": [ + 0.04397624731063843, + 0.5110960602760315, + 0.0033228732645511627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 995720, + "componentType": 5126, + "count": 113, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1292016, + "componentType": 5126, + "count": 113, + "max": [ + -0.4904356300830841, + -0.4335693418979645, + -0.477069616317749, + 0.5173001885414124 + ], + "min": [ + -0.5806665420532227, + -0.5283882021903992, + -0.50938481092453, + 0.3926224112510681 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 996172, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2018148, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 996656, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2019600, + "componentType": 5126, + "count": 121, + "max": [ + 0.05829904228448868, + 0.24456748366355896, + -0.02312939055263996 + ], + "min": [ + 0.023376699537038803, + 0.23651225864887238, + -0.11545287817716599 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 997140, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1293824, + "componentType": 5126, + "count": 121, + "max": [ + 0.4466780424118042, + 0.2308443933725357, + -0.11418608576059341, + 0.9714550375938416 + ], + "min": [ + -0.7055029273033142, + -0.10972972959280014, + -0.6904489994049072, + 0.5737976431846619 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 997624, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2021052, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 998108, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2022504, + "componentType": 5126, + "count": 121, + "max": [ + 1.3535768630390521e-06, + 0.4048621952533722, + 2.1144692254893016e-06 + ], + "min": [ + -1.008228764476371e-06, + 0.40486061573028564, + -1.6958412061285344e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 998592, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1295760, + "componentType": 5126, + "count": 121, + "max": [ + 0.3553771376609802, + 0.5269917845726013, + -0.055182408541440964, + 0.9306543469429016 + ], + "min": [ + 0.06572470813989639, + -0.5712385773658752, + -0.4477774202823639, + 0.7126389741897583 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 999076, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2023956, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 999560, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2025408, + "componentType": 5126, + "count": 121, + "max": [ + 1.3784349448542343e-06, + 0.403272420167923, + 1.8488658497517463e-06 + ], + "min": [ + -1.0055243819806492e-06, + 0.4032694399356842, + -1.0893058970395941e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1000044, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1297696, + "componentType": 5126, + "count": 121, + "max": [ + 0.043462879955768585, + 0.39465609192848206, + 0.12396228313446045, + 0.9977603554725647 + ], + "min": [ + -0.1358768790960312, + -0.5675199627876282, + -0.058098386973142624, + 0.8134597539901733 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1000528, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2026860, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000005960464478 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1001012, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2028312, + "componentType": 5126, + "count": 121, + "max": [ + 0.09804540127515793, + 0.21963173151016235, + -0.002471707994118333 + ], + "min": [ + 0.09803690761327744, + 0.21962954103946686, + -0.002474636072292924 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1001496, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1299632, + "componentType": 5126, + "count": 121, + "max": [ + -0.10966458171606064, + 0.041268475353717804, + 0.0644831582903862, + 0.9910159111022949 + ], + "min": [ + -0.6223368048667908, + -0.0009816830279305577, + 0.033664196729660034, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1001980, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2029764, + "componentType": 5126, + "count": 120, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1002460, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2031204, + "componentType": 5126, + "count": 121, + "max": [ + 9.792131550057093e-07, + 0.09750322252511978, + 1.3501667126547545e-06 + ], + "min": [ + -1.9126746337860823e-06, + 0.09750174731016159, + -6.268092533900926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1002944, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1301568, + "componentType": 5126, + "count": 121, + "max": [ + 0.002224267926067114, + 0.0024659065529704094, + -0.008496328257024288, + 0.9999417662620544 + ], + "min": [ + -0.5302280187606812, + -0.0063233887776732445, + -0.05339595302939415, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1003428, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2032656, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1003912, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2034108, + "componentType": 5126, + "count": 121, + "max": [ + -0.016224009916186333, + 0.21308740973472595, + -0.0035575220827013254 + ], + "min": [ + -0.016229622066020966, + 0.21308468282222748, + -0.0035613880027085543 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1004396, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1303504, + "componentType": 5126, + "count": 121, + "max": [ + -0.23829352855682373, + -0.032521069049835205, + 0.09795031696557999, + 0.9656937122344971 + ], + "min": [ + -0.626492977142334, + -0.07110271602869034, + 0.07480832934379578, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1004880, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2035560, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1005364, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2037012, + "componentType": 5126, + "count": 120, + "max": [ + 1.88809997325734e-06, + 0.0846509039402008, + 6.792013209633296e-07 + ], + "min": [ + -2.8687975373031804e-06, + 0.08464935421943665, + -1.2966308986506192e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1005844, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1305440, + "componentType": 5126, + "count": 121, + "max": [ + -0.08585043996572495, + -0.0011796805774793029, + -0.0069588301703333855, + 0.9962732195854187 + ], + "min": [ + -0.5015432834625244, + -0.004574927501380444, + -0.008244037628173828, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1006328, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2038452, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1006812, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2039904, + "componentType": 5126, + "count": 121, + "max": [ + 0.11189862340688705, + 0.10989030450582504, + -0.051628608256578445 + ], + "min": [ + 0.11189471930265427, + 0.10988743603229523, + -0.051633208990097046 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1007296, + "componentType": 5126, + "count": 117, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1307376, + "componentType": 5126, + "count": 117, + "max": [ + -0.4573034942150116, + 0.164932981133461, + -0.31590890884399414, + 0.8147835731506348 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1007764, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2041356, + "componentType": 5126, + "count": 120, + "max": [ + 1.0, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1008244, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2042796, + "componentType": 5126, + "count": 121, + "max": [ + 1.3612714155897265e-06, + 0.08512590825557709, + 1.928696747199865e-06 + ], + "min": [ + -9.28041856695927e-07, + 0.08512111008167267, + -1.00159786597942e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1008728, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1309248, + "componentType": 5126, + "count": 121, + "max": [ + 0.022910568863153458, + 0.012835785746574402, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910498082637787, + 0.012835709378123283, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1009212, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2044248, + "componentType": 5126, + "count": 120, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1009692, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2045688, + "componentType": 5126, + "count": 121, + "max": [ + 0.0055879089049994946, + 0.1660456508398056, + -0.045392055064439774 + ], + "min": [ + 0.005581364501267672, + 0.16604293882846832, + -0.045395396649837494 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1010176, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1311184, + "componentType": 5126, + "count": 121, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188955664635, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1010660, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2047140, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1011144, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2048592, + "componentType": 5126, + "count": 121, + "max": [ + 7.152557941481064e-07, + 0.5450082421302795, + 9.293331117987691e-07 + ], + "min": [ + -4.768372718899627e-07, + 0.5450044274330139, + -5.904918225496658e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1011628, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1313120, + "componentType": 5126, + "count": 121, + "max": [ + -0.007215115707367659, + 0.19968771934509277, + -0.042228203266859055, + 0.9904928803443909 + ], + "min": [ + -0.19085462391376495, + 0.13072361052036285, + -0.11750376969575882, + 0.9610105156898499 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1012112, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2050044, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1012596, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2051496, + "componentType": 5126, + "count": 120, + "max": [ + 8.344650268554688e-07, + 0.1100311279296875, + 9.51811671257019e-07 + ], + "min": [ + -9.5367431640625e-07, + 0.11002731323242188, + -9.55536961555481e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1013076, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1315056, + "componentType": 5126, + "count": 121, + "max": [ + 0.05043093115091324, + 0.35436248779296875, + 0.02494308352470398, + 0.9901782870292664 + ], + "min": [ + -0.05246908962726593, + 0.12989988923072815, + -0.04469774663448334, + 0.9344541430473328 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1013560, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2052936, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1014044, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2054388, + "componentType": 5126, + "count": 121, + "max": [ + 2.0207319266773993e-06, + 0.3614509105682373, + 0.02684309333562851 + ], + "min": [ + -4.826631538890069e-07, + 0.36144328117370605, + 0.02683999389410019 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1014528, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1316992, + "componentType": 5126, + "count": 121, + "max": [ + 7.078052988163108e-08, + 2.2351795081476666e-08, + 3.725289943190546e-08, + 1.0 + ], + "min": [ + 1.4901168299275014e-08, + -2.9802247780708058e-08, + -2.980232949312267e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1015012, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2055840, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000005960464478, + 0.9999998211860657, + 1.0000004768371582 + ], + "min": [ + 1.0000001192092896, + 0.9999994039535522, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1015496, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2057292, + "componentType": 5126, + "count": 121, + "max": [ + 1.3159250329408678e-06, + -0.15833809971809387, + -0.2537637948989868 + ], + "min": [ + -4.1633509795246937e-07, + -0.15834294259548187, + -0.25376659631729126 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1015980, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1318928, + "componentType": 5126, + "count": 121, + "max": [ + -0.998119592666626, + 2.7878424901928156e-08, + -1.7133744734110223e-07, + 0.06129669025540352 + ], + "min": [ + -0.998119592666626, + -2.4364993578274152e-08, + -2.309869984173929e-07, + 0.06129663810133934 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1016464, + "componentType": 5126, + "count": 118, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2058744, + "componentType": 5126, + "count": 118, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1016936, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2060160, + "componentType": 5126, + "count": 121, + "max": [ + 7.152559078349441e-07, + 0.25394919514656067, + 9.3697843794871e-07 + ], + "min": [ + -7.152556804612686e-07, + 0.25394511222839355, + -1.1715269465639722e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1017420, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1320864, + "componentType": 5126, + "count": 121, + "max": [ + 0.1561359167098999, + -1.1904923269412393e-07, + 4.52352253432764e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.763295358614414e-07, + -8.937701245770313e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1017904, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2061612, + "componentType": 5126, + "count": 120, + "max": [ + 1.0000011920928955, + 1.0000016689300537, + 1.000001311302185 + ], + "min": [ + 1.0000007152557373, + 1.000001072883606, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1018384, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2063052, + "componentType": 5126, + "count": 121, + "max": [ + 5.960464477539063e-07, + 0.25332117080688477, + 1.0250820423607365e-06 + ], + "min": [ + -9.5367431640625e-07, + 0.2533172369003296, + -1.1127440302516334e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1018868, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1322800, + "componentType": 5126, + "count": 121, + "max": [ + -0.09231438487768173, + -6.9859957818607654e-09, + 2.8371578864039293e-08, + 0.995729923248291 + ], + "min": [ + -0.09231442958116531, + -6.745377589822965e-08, + -1.6550846027030275e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1019352, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2064504, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000003576278687 + ], + "min": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1019836, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2065956, + "componentType": 5126, + "count": 121, + "max": [ + 9.5367431640625e-07, + 0.2637805938720703, + 1.1094049341409118e-06 + ], + "min": [ + -7.00354519267421e-07, + 0.2637767791748047, + -1.1255500567131094e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1020320, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1324736, + "componentType": 5126, + "count": 121, + "max": [ + 1.920122194576379e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.05814478956745e-07 + ], + "min": [ + -3.294795192232414e-08, + -0.9896631240844727, + 0.14341169595718384, + 5.366532107586863e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1020804, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2067408, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000007152557373, + 1.000001072883606, + 1.0000011920928955 + ], + "min": [ + 1.000000238418579, + 1.0000007152557373, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1021288, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2068860, + "componentType": 5126, + "count": 121, + "max": [ + 1.4058284136808652e-07, + 0.24314485490322113, + 0.18703387677669525 + ], + "min": [ + -5.3731087064079475e-06, + 0.24314068257808685, + 0.18702852725982666 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1021772, + "componentType": 5126, + "count": 81, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1326672, + "componentType": 5126, + "count": 81, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1022096, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2070312, + "componentType": 5126, + "count": 121, + "max": [ + 0.9999997019767761, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999992251396179, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1022580, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2071764, + "componentType": 5126, + "count": 121, + "max": [ + -0.24418899416923523, + -0.13045987486839294, + 0.029654746875166893 + ], + "min": [ + -0.24419079720973969, + -0.1304655373096466, + 0.02965003252029419 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1023064, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1327968, + "componentType": 5126, + "count": 121, + "max": [ + 0.007415764965116978, + -0.07428386807441711, + -0.9923430681228638, + 0.09839735925197601 + ], + "min": [ + 0.0074157011695206165, + -0.07428395003080368, + -0.9923431277275085, + 0.09839729964733124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1023548, + "componentType": 5126, + "count": 119, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2073216, + "componentType": 5126, + "count": 119, + "max": [ + 0.9999986290931702, + 1.0000016689300537, + 1.0 + ], + "min": [ + 0.999998152256012, + 1.000001072883606, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1024024, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2074644, + "componentType": 5126, + "count": 121, + "max": [ + 0.24341972172260284, + -0.13046079874038696, + 0.029651517048478127 + ], + "min": [ + 0.24341675639152527, + -0.1304665505886078, + 0.02964826114475727 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1024508, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1329904, + "componentType": 5126, + "count": 121, + "max": [ + 0.007417502347379923, + 0.07428374141454697, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.007417432963848114, + 0.07428368180990219, + 0.9923431277275085, + 0.09839747846126556 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1024992, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2076096, + "componentType": 5126, + "count": 120, + "max": [ + 0.9999992251396179, + 1.000002145767212, + 0.9999995231628418 + ], + "min": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1025472, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2077536, + "componentType": 5126, + "count": 121, + "max": [ + -0.04397621005773544, + 0.5230492353439331, + 0.018152974545955658 + ], + "min": [ + -0.04481709748506546, + 0.517072856426239, + 0.00792090967297554 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1025956, + "componentType": 5126, + "count": 119, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1331840, + "componentType": 5126, + "count": 119, + "max": [ + -0.4793747365474701, + 0.6005834937095642, + 0.5159261226654053, + 0.44555118680000305 + ], + "min": [ + -0.5657968521118164, + 0.5097403526306152, + 0.3861413300037384, + 0.41093993186950684 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1026432, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2078988, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1026916, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2080440, + "componentType": 5126, + "count": 121, + "max": [ + 0.02771736867725849, + 0.23250947892665863, + 0.014731736853718758 + ], + "min": [ + -0.01760503090918064, + 0.2261231690645218, + -0.056564413011074066 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1027400, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1333744, + "componentType": 5126, + "count": 121, + "max": [ + -0.16948361694812775, + 0.5725835561752319, + 0.7282577157020569, + 0.9252405762672424 + ], + "min": [ + -0.6406990885734558, + 0.09562024474143982, + -0.36352047324180603, + 0.3084869682788849 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1027884, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2081892, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1028368, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2083344, + "componentType": 5126, + "count": 121, + "max": [ + 1.823817910917569e-06, + 0.4048622250556946, + 1.1781443163272343e-06 + ], + "min": [ + -1.825937829380564e-06, + 0.40486037731170654, + -7.774445975883282e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1028852, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1335680, + "componentType": 5126, + "count": 121, + "max": [ + 0.2189713418483734, + 0.7486953735351563, + 0.6480504870414734, + 0.9780415892601013 + ], + "min": [ + -0.07451163977384567, + 0.1803092062473297, + -0.057009417563676834, + 0.605778157711029 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1029336, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2084796, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1029820, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2086248, + "componentType": 5126, + "count": 120, + "max": [ + 1.893017724796664e-06, + 0.40327152609825134, + 9.577959190210095e-07 + ], + "min": [ + -1.901955101857311e-06, + 0.40326952934265137, + -1.0320894716642215e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1030300, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1337616, + "componentType": 5126, + "count": 121, + "max": [ + 0.1685577630996704, + 0.5617003440856934, + 0.05292847007513046, + 0.99972003698349 + ], + "min": [ + -0.15392263233661652, + 0.004135360009968281, + -0.27725231647491455, + 0.7610599398612976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1030784, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2087688, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1031268, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2089140, + "componentType": 5126, + "count": 121, + "max": [ + -0.09803976118564606, + 0.21963217854499817, + -0.002471528947353363 + ], + "min": [ + -0.09804537147283554, + 0.2196287363767624, + -0.0024746207054704428 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1031752, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1339552, + "componentType": 5126, + "count": 121, + "max": [ + -0.514667272567749, + 0.0499749518930912, + -0.08315923064947128, + 0.8518829941749573 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1032236, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2090592, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1032720, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2092044, + "componentType": 5126, + "count": 121, + "max": [ + 1.8917824036179809e-06, + 0.09750449657440186, + 8.684166346029087e-07 + ], + "min": [ + -1.921584726005676e-06, + 0.09750069677829742, + -2.726312686718302e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1033204, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1341488, + "componentType": 5126, + "count": 120, + "max": [ + -0.4217608869075775, + 0.06273214519023895, + 0.009731847792863846, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.06273203343153, + 0.00973177794367075, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1033684, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2093496, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1034168, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2094948, + "componentType": 5126, + "count": 121, + "max": [ + 0.016232412308454514, + 0.2130880355834961, + -0.0035576040390878916 + ], + "min": [ + 0.0162245724350214, + 0.21308445930480957, + -0.0035607439931482077 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1034652, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1343408, + "componentType": 5126, + "count": 121, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1035136, + "componentType": 5126, + "count": 119, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2096400, + "componentType": 5126, + "count": 119, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1035612, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2097828, + "componentType": 5126, + "count": 121, + "max": [ + 1.919985606946284e-06, + 0.0846509113907814, + 2.534346776883467e-07 + ], + "min": [ + -1.8986385157404584e-06, + 0.084648996591568, + -7.640592798452417e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1036096, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1345344, + "componentType": 5126, + "count": 121, + "max": [ + -0.4092181324958801, + 0.0020274741109460592, + 0.008077457547187805, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027407055720687, + 0.00807737372815609, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1036580, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2099280, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1037064, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2100732, + "componentType": 5126, + "count": 121, + "max": [ + -0.1118951067328453, + 0.10989146679639816, + -0.051629599183797836 + ], + "min": [ + -0.11189869046211243, + 0.10988749563694, + -0.05163271352648735 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1037548, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1347280, + "componentType": 5126, + "count": 121, + "max": [ + -0.43224573135375977, + -0.12903624773025513, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.12903635203838348, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1038032, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2102184, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1038516, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2103636, + "componentType": 5126, + "count": 121, + "max": [ + 2.8448685043258592e-06, + 0.08512578904628754, + 9.897812560666353e-07 + ], + "min": [ + -1.936465878316085e-06, + 0.08512291312217712, + -1.0460761359354365e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1039000, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1349216, + "componentType": 5126, + "count": 121, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802051782608, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1039484, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2105088, + "componentType": 5126, + "count": 121, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1039968, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2106540, + "componentType": 5126, + "count": 121, + "max": [ + -0.005581998731940985, + 0.16604593396186829, + -0.045391492545604706 + ], + "min": [ + -0.005587617866694927, + 0.1660427451133728, + -0.04539540782570839 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1040452, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1351152, + "componentType": 5126, + "count": 121, + "max": [ + 0.6698365211486816, + -0.7402837872505188, + 0.071938656270504, + 0.16012409329414368 + ], + "min": [ + 0.5034776329994202, + -0.8580085635185242, + 0.033501897007226944, + 0.016809582710266113 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1040936, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2107992, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1041420, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2109444, + "componentType": 5126, + "count": 121, + "max": [ + 0.13640467822551727, + 0.28505009412765503, + 0.0019416443537920713 + ], + "min": [ + 0.13640181720256805, + 0.285045325756073, + 0.0019359445432201028 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1041904, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1353088, + "componentType": 5126, + "count": 121, + "max": [ + -4.2458520255195253e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.5929752805732278e-07 + ], + "min": [ + -1.0278415629727533e-07, + -0.693580687046051, + -0.7203789949417114, + 1.113916852091279e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1042388, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2110896, + "componentType": 5126, + "count": 120, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1042868, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2112336, + "componentType": 5126, + "count": 121, + "max": [ + -0.13640205562114716, + 0.285049170255661, + 0.0019417271250858903 + ], + "min": [ + -0.13640563189983368, + 0.2850443720817566, + 0.0019374567782506347 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1043352, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1355024, + "componentType": 5126, + "count": 121, + "max": [ + -4.82906976628783e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.6616281319275e-08 + ], + "min": [ + -1.0284978202435013e-07, + -0.693580687046051, + -0.7203789949417114, + 3.367835432754873e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1043836, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2113788, + "componentType": 5126, + "count": 121, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1044320, + "componentType": 5126, + "count": 75, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2115240, + "componentType": 5126, + "count": 75, + "max": [ + 1.0539785623550415, + 1.3792856931686401, + -0.4171660840511322 + ], + "min": [ + -0.4027963876724243, + -0.750604510307312, + -1.9824602603912354 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1044620, + "componentType": 5126, + "count": 27, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1356960, + "componentType": 5126, + "count": 27, + "max": [ + -0.3613740801811218, + 0.4023137390613556, + 4.125872123950103e-07, + 0.7193333506584167 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + -0.6257779002189636, + 0.5620983242988586 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1044728, + "componentType": 5126, + "count": 30, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2116140, + "componentType": 5126, + "count": 30, + "max": [ + 1.000000238418579, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1044848, + "componentType": 5126, + "count": 89, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2116500, + "componentType": 5126, + "count": 89, + "max": [ + 0.5804785490036011, + 1.0116084814071655, + -0.22612382471561432 + ], + "min": [ + -0.5907529592514038, + -0.40122151374816895, + -2.0954184532165527 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1045204, + "componentType": 5126, + "count": 66, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1357392, + "componentType": 5126, + "count": 66, + "max": [ + 0.00751893874257803, + 0.9005944728851318, + 0.3713001608848572, + 0.9072462320327759 + ], + "min": [ + -0.998408854007721, + -1.0, + -0.5967909693717957, + 3.114579172347476e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1045468, + "componentType": 5126, + "count": 65, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2117568, + "componentType": 5126, + "count": 65, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1045728, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2118348, + "componentType": 5126, + "count": 121, + "max": [ + 0.016483649611473083, + 0.04630430415272713, + 0.05029432103037834 + ], + "min": [ + -1.849234104156494e-05, + -0.0001298134884564206, + -0.00010872371785808355 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1046212, + "componentType": 5126, + "count": 71, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1358448, + "componentType": 5126, + "count": 71, + "max": [ + -0.9503704309463501, + 1.2391420334267877e-08, + 1.9558285657694796e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.764869755367272e-08, + -1.1843590108640001e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1046496, + "componentType": 5126, + "count": 70, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2119800, + "componentType": 5126, + "count": 70, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1046776, + "componentType": 5126, + "count": 120, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2120640, + "componentType": 5126, + "count": 120, + "max": [ + 9.536744300930877e-07, + 0.28250110149383545, + 1.0663627563189948e-06 + ], + "min": [ + -9.536745437799254e-07, + 0.2824980914592743, + -3.5126637953908357e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1047256, + "componentType": 5126, + "count": 81, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1359584, + "componentType": 5126, + "count": 81, + "max": [ + 0.0012744301930069923, + 0.9818702340126038, + 0.53785240650177, + 0.03042326495051384 + ], + "min": [ + -0.005705682095140219, + -0.9814831614494324, + -0.19159787893295288, + 4.2375367570457456e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1047580, + "componentType": 5126, + "count": 77, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2122080, + "componentType": 5126, + "count": 77, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1047888, + "componentType": 5126, + "count": 75, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2123004, + "componentType": 5126, + "count": 75, + "max": [ + 0.926098108291626, + 1.3062669038772583, + -0.20422525703907013 + ], + "min": [ + -0.9652347564697266, + -0.4709080457687378, + -1.7680684328079224 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1048188, + "componentType": 5126, + "count": 27, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1360880, + "componentType": 5126, + "count": 27, + "max": [ + -0.3613740801811218, + 0.4023137390613556, + 4.125872123950103e-07, + 0.7193333506584167 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + -0.6257779002189636, + 0.5620983242988586 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1048296, + "componentType": 5126, + "count": 30, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2123904, + "componentType": 5126, + "count": 30, + "max": [ + 1.000000238418579, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1048416, + "componentType": 5126, + "count": 113, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2124264, + "componentType": 5126, + "count": 113, + "max": [ + 0.6107920408248901, + 1.1499300003051758, + -0.21669963002204895 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -1.8081127405166626 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1048868, + "componentType": 5126, + "count": 113, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1361312, + "componentType": 5126, + "count": 113, + "max": [ + 0.19769760966300964, + 0.9999985098838806, + 0.9773140549659729, + 0.4118954539299011 + ], + "min": [ + -0.9839146137237549, + -1.0, + -0.9674538969993591, + 9.866893435628299e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1049320, + "componentType": 5126, + "count": 114, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2125620, + "componentType": 5126, + "count": 114, + "max": [ + 1.0000007152557373, + 1.0000007152557373, + 1.0000005960464478 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1049776, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2126988, + "componentType": 5126, + "count": 121, + "max": [ + 2.5779008865356445e-06, + 1.565203638165258e-05, + -1.4795447214055457e-06 + ], + "min": [ + -4.957616329193115e-05, + -0.00010290958016412333, + -0.00010884196672122926 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1050260, + "componentType": 5126, + "count": 118, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1363120, + "componentType": 5126, + "count": 118, + "max": [ + -0.9503703713417053, + 1.3719073876927723e-08, + 2.573129620486725e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -2.0183088977887564e-08, + -2.9397934753205845e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1050732, + "componentType": 5126, + "count": 117, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2128440, + "componentType": 5126, + "count": 117, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1051200, + "componentType": 5126, + "count": 121, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2129844, + "componentType": 5126, + "count": 121, + "max": [ + 9.5367431640625e-07, + 0.28250083327293396, + 1.9515043732099002e-06 + ], + "min": [ + -9.536744300930877e-07, + 0.28249886631965637, + -1.2364079111648607e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1051684, + "componentType": 5126, + "count": 119, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1365008, + "componentType": 5126, + "count": 119, + "max": [ + 0.004669428337365389, + 0.9770954251289368, + 0.5767431855201721, + 0.030243294313549995 + ], + "min": [ + -0.036455802619457245, + -0.9818702340126038, + -0.4735144376754761, + 4.082521058990096e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1052160, + "componentType": 5126, + "count": 119, + "max": [ + 2.0 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2131296, + "componentType": 5126, + "count": 119, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1052636, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2132724, + "componentType": 5126, + "count": 47, + "max": [ + 0.0, + 0.0, + 3.417059898376465 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1052824, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1366912, + "componentType": 5126, + "count": 48, + "max": [ + 0.7071067690849304, + 0.7061121463775635, + 0.7066393494606018, + 0.7071067690849304 + ], + "min": [ + 0.025707682594656944, + -0.7066393494606018, + -0.7061121463775635, + 0.025706902146339417 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1053016, + "componentType": 5126, + "count": 36, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2133288, + "componentType": 5126, + "count": 36, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1053160, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2133720, + "componentType": 5126, + "count": 48, + "max": [ + 0.030920162796974182, + 0.2732611894607544, + -1.1328892707824707 + ], + "min": [ + -0.04983538016676903, + -0.08483370393514633, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1053352, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1367680, + "componentType": 5126, + "count": 48, + "max": [ + 0.15290190279483795, + 0.010921822860836983, + 0.2671806514263153, + 1.0 + ], + "min": [ + -0.03552567958831787, + -0.03289443626999855, + -2.8658132764232803e-21, + 0.9510764479637146 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1053544, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2134296, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1053732, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2134860, + "componentType": 5126, + "count": 47, + "max": [ + 3.5762786865234375e-07, + 0.00212763249874115, + 4.76837158203125e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.0021271556615829468, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1053920, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1368448, + "componentType": 5126, + "count": 48, + "max": [ + 0.7071067690849304, + 0.12842777371406555, + 0.2711927592754364, + 0.7171277403831482 + ], + "min": [ + 0.6370629072189331, + 2.898025570630125e-07, + -3.2207123012995e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1054112, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2135424, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1054304, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2136000, + "componentType": 5126, + "count": 48, + "max": [ + 0.17381903529167175, + 0.13409912586212158, + 7.253268563545134e-07 + ], + "min": [ + 0.17381760478019714, + 0.13409805297851563, + -7.00706550560426e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1054496, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1369216, + "componentType": 5126, + "count": 48, + "max": [ + -0.13052937388420105, + 0.21717651188373566, + -0.20721042156219482, + 0.9695423245429993 + ], + "min": [ + -0.5152455568313599, + -0.13862697780132294, + -0.37592813372612, + 0.7860372066497803 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1054688, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2136576, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.999999463558197, + 0.9999994039535522, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1054880, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2137152, + "componentType": 5126, + "count": 48, + "max": [ + 2.1001795857955585e-07, + 0.6356117129325867, + 2.6245257345181017e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356112360954285, + -2.608844624774065e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1055072, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1369984, + "componentType": 5126, + "count": 48, + "max": [ + 0.7117763757705688, + 8.038802690180091e-08, + 3.628236413533159e-07, + 0.999997615814209 + ], + "min": [ + 0.0021977778524160385, + -2.7870610708191634e-08, + -1.4050646086616325e-06, + 0.7024061679840088 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1055264, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2137728, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999993443489075, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1055456, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2138304, + "componentType": 5126, + "count": 48, + "max": [ + -0.1738174855709076, + 0.13409888744354248, + 4.95447523007897e-07 + ], + "min": [ + -0.17381927371025085, + 0.13409805297851563, + -7.049572445794183e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1055648, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1370752, + "componentType": 5126, + "count": 48, + "max": [ + 0.3158102035522461, + -0.13342463970184326, + 0.3047860860824585, + 0.9766188263893127 + ], + "min": [ + -0.30492308735847473, + -0.27246809005737305, + 0.06720887124538422, + 0.9111619591712952 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1055840, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2138880, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000008344650269, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999994039535522, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1056032, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2139456, + "componentType": 5126, + "count": 48, + "max": [ + 4.979597179044504e-07, + 0.6356117129325867, + 4.69260243107783e-07 + ], + "min": [ + -2.1729601940023713e-07, + 0.6356112360954285, + -4.732314664579462e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1056224, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1371520, + "componentType": 5126, + "count": 48, + "max": [ + 0.5981920957565308, + 2.6769038541374357e-08, + 4.914866735816759e-07, + 0.999997615814209 + ], + "min": [ + 0.0021972041577100754, + -3.4724550346254546e-08, + -2.0090092789359915e-07, + 0.8013527393341064 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1056416, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2140032, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1056608, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2140608, + "componentType": 5126, + "count": 47, + "max": [ + 2.384185791015625e-07, + 0.00212763249874115, + 2.3841845120387006e-07 + ], + "min": [ + -4.768373855768004e-07, + 0.0021271556615829468, + -2.3881824517957284e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1056796, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1372288, + "componentType": 5126, + "count": 48, + "max": [ + -0.6182177066802979, + 2.231700051424923e-07, + 0.16930750012397766, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.2276041954755783, + 3.89569521530575e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1056988, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2141172, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1057180, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2141748, + "componentType": 5126, + "count": 48, + "max": [ + 4.76837158203125e-07, + 0.2726660966873169, + 2.4666374542903213e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2726656198501587, + -1.1936393207179208e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1057372, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1373056, + "componentType": 5126, + "count": 48, + "max": [ + 0.3678807318210602, + 0.05683114379644394, + 0.19612590968608856, + 0.9944412708282471 + ], + "min": [ + 0.08500943332910538, + 0.022638075053691864, + -0.044019777327775955, + 0.9086726307868958 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1057564, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2142324, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1057756, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2142900, + "componentType": 5126, + "count": 48, + "max": [ + 0.04481710493564606, + 0.5170735716819763, + 0.010738460347056389 + ], + "min": [ + 0.04481567442417145, + 0.5170723795890808, + 0.010737501084804535 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1057948, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1373824, + "componentType": 5126, + "count": 46, + "max": [ + -0.1853695660829544, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.6581333875656128, + -0.6756433844566345, + 0.2756892740726471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1058132, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2143476, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1058324, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2144052, + "componentType": 5126, + "count": 48, + "max": [ + 0.023541152477264404, + 0.23812590539455414, + -0.07664656639099121 + ], + "min": [ + -4.85979171571671e-07, + 0.23651330173015594, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1058516, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1374560, + "componentType": 5126, + "count": 48, + "max": [ + 0.17866171896457672, + 0.0758194848895073, + 0.279843807220459, + 0.9892038702964783 + ], + "min": [ + -0.7055029273033142, + -0.25964298844337463, + -0.5909141302108765, + 0.5823849439620972 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1058708, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2144628, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1058900, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2145204, + "componentType": 5126, + "count": 47, + "max": [ + 2.3277456762116344e-07, + 0.4048614501953125, + 6.822727414146357e-07 + ], + "min": [ + -2.490205588401295e-07, + 0.4048611521720886, + -2.767749833765265e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1059088, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1375328, + "componentType": 5126, + "count": 48, + "max": [ + 0.30350250005722046, + 0.5269917249679565, + -0.06778706610202789, + 0.997620165348053 + ], + "min": [ + -0.007783625740557909, + -0.022135356441140175, + -0.41996437311172485, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1059280, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2145768, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1059472, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2146344, + "componentType": 5126, + "count": 48, + "max": [ + 2.4091110617519007e-07, + 0.4032707214355469, + 4.436307676769502e-07 + ], + "min": [ + -2.398893741428765e-07, + 0.40327033400535583, + -5.403515501711809e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1059664, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1376096, + "componentType": 5126, + "count": 48, + "max": [ + 0.04346290975809097, + 0.3946560323238373, + 0.12396223098039627, + 0.9990829229354858 + ], + "min": [ + -0.28260543942451477, + -0.4476647675037384, + -0.1617303192615509, + 0.8364971280097961 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1059856, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2146920, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000001192092896, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1060044, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2147484, + "componentType": 5126, + "count": 51, + "max": [ + 0.09804292023181915, + 0.21963094174861908, + -0.002471761079505086 + ], + "min": [ + 0.09804221987724304, + 0.21963034570217133, + -0.002473171567544341 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1060248, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1376864, + "componentType": 5126, + "count": 51, + "max": [ + -0.13548365235328674, + 0.04221635311841965, + 0.10137210786342621, + 0.9846753478050232 + ], + "min": [ + -0.6223368048667908, + -0.0009816925739869475, + 0.033664196729660034, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1060452, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2148096, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1060656, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2148708, + "componentType": 5126, + "count": 51, + "max": [ + 2.555555624894623e-07, + 0.0975029245018959, + 8.457489570901089e-07 + ], + "min": [ + -2.2427276746839198e-07, + 0.0975024402141571, + -1.2202211507883476e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1060860, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1377680, + "componentType": 5126, + "count": 51, + "max": [ + -0.025757791474461555, + 0.0024659275077283382, + 0.027337148785591125, + 0.9992673993110657 + ], + "min": [ + -0.5302280187606812, + -0.007340561598539352, + -0.05339594557881355, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1061064, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2149320, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1061268, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2149932, + "componentType": 5126, + "count": 48, + "max": [ + -0.01622643694281578, + 0.2130863070487976, + -0.0035585288424044847 + ], + "min": [ + -0.016227539628744125, + 0.21308575570583344, + -0.003560438985005021 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1061460, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1378496, + "componentType": 5126, + "count": 51, + "max": [ + -0.346089243888855, + -0.04340109974145889, + 0.09363880008459091, + 0.9325075745582581 + ], + "min": [ + -0.626492977142334, + -0.07110271602869034, + 0.07480832934379578, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1061664, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2150508, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1061868, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2151120, + "componentType": 5126, + "count": 51, + "max": [ + 3.4732084941424546e-07, + 0.08465015888214111, + 2.0652461785175547e-07 + ], + "min": [ + -2.4595968284302216e-07, + 0.08464968949556351, + -7.549260203632002e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1062072, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1379312, + "componentType": 5126, + "count": 51, + "max": [ + -0.1980881541967392, + -0.0011796961771324277, + -0.007432065438479185, + 0.9801488518714905 + ], + "min": [ + -0.5015431642532349, + -0.0037576539907604456, + -0.008244029246270657, + 0.8650925755500793 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1062276, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2151732, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000005960464478, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1062480, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2152344, + "componentType": 5126, + "count": 48, + "max": [ + 0.1118970736861229, + 0.10988955199718475, + -0.05163067951798439 + ], + "min": [ + 0.1118963211774826, + 0.10988884419202805, + -0.051632191985845566 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1062672, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1380128, + "componentType": 5126, + "count": 51, + "max": [ + -0.3558593690395355, + 0.16493292152881622, + -0.1649237722158432, + 0.905641496181488 + ], + "min": [ + -0.457303524017334, + 0.16117601096630096, + -0.3159089684486389, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1062876, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2152920, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1063064, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2153484, + "componentType": 5126, + "count": 51, + "max": [ + 2.155155698346789e-07, + 0.08512423932552338, + 4.836300604438293e-07 + ], + "min": [ + -3.8025191884116794e-07, + 0.08512362837791443, + -2.40389425698595e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1063268, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1380944, + "componentType": 5126, + "count": 51, + "max": [ + 0.022910548374056816, + 0.02366398274898529, + 0.6957963705062866, + 0.9871651530265808 + ], + "min": [ + 0.01138708833605051, + 0.012835743837058544, + 0.15752866864204407, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1063472, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2154096, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000005960464478, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1063676, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2154708, + "componentType": 5126, + "count": 48, + "max": [ + 0.00558534637093544, + 0.16604483127593994, + -0.045392535626888275 + ], + "min": [ + 0.005584427155554295, + 0.1660441756248474, + -0.045393962413072586 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1063868, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1381760, + "componentType": 5126, + "count": 48, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.02386542037129402 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192680954933, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1064060, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2155284, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1064252, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2155860, + "componentType": 5126, + "count": 47, + "max": [ + 4.76837158203125e-07, + 0.5450077652931213, + 2.3265938864369673e-07 + ], + "min": [ + -2.3841855067985307e-07, + 0.5450068116188049, + -2.393182114701631e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1064440, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1382528, + "componentType": 5126, + "count": 48, + "max": [ + 0.006553811486810446, + 0.1364758312702179, + -0.021905796602368355, + 0.9983372688293457 + ], + "min": [ + -0.08001783490180969, + -0.07137025892734528, + -0.06829141080379486, + 0.9871634244918823 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1064632, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2156424, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1064824, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2157000, + "componentType": 5126, + "count": 48, + "max": [ + 2.384185791015625e-07, + 0.11002874374389648, + 2.3655593395233154e-07 + ], + "min": [ + -2.3841860752327193e-07, + 0.11002779006958008, + -4.786998601957748e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1065016, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1383296, + "componentType": 5126, + "count": 48, + "max": [ + -0.012303569354116917, + 0.13603626191616058, + -0.024487916380167007, + 0.99808269739151 + ], + "min": [ + -0.09870954602956772, + -0.07265152782201767, + -0.06692672520875931, + 0.9854698777198792 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1065208, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2157576, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1065396, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2158140, + "componentType": 5126, + "count": 48, + "max": [ + 1.1862668998219306e-06, + 0.3614487648010254, + 0.026840709149837494 + ], + "min": [ + 3.518018729664618e-07, + 0.3614473342895508, + 0.026839755475521088 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1065588, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1384064, + "componentType": 5126, + "count": 48, + "max": [ + 7.450581307466564e-08, + 1.1175925962447764e-08, + 9.313225746154785e-09, + 1.0 + ], + "min": [ + 1.4901155864777138e-08, + -2.3282993311113387e-08, + -1.1175870895385742e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1065780, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2158716, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000005960464478, + 0.9999998807907104, + 1.0000005960464478 + ], + "min": [ + 1.000000238418579, + 0.9999994039535522, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1065972, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2159292, + "componentType": 5126, + "count": 48, + "max": [ + 1.0141770871996414e-06, + -0.15833917260169983, + -0.2537650465965271 + ], + "min": [ + 1.7971206034417264e-07, + -0.15834128856658936, + -0.25376611948013306 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1066164, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1384832, + "componentType": 5126, + "count": 48, + "max": [ + -0.998119592666626, + 1.7938585727961254e-08, + -1.8713399185799062e-07, + 0.06129668280482292 + ], + "min": [ + -0.998119592666626, + -1.950498607072859e-08, + -2.3261780768280005e-07, + 0.06129663810133934 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1066356, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2159868, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 0.9999722242355347 + ], + "min": [ + 1.0, + 1.0000004768371582, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1066548, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2160444, + "componentType": 5126, + "count": 48, + "max": [ + 4.768372150465439e-07, + 0.25394773483276367, + 2.382117969546016e-07 + ], + "min": [ + -2.3841853646899835e-07, + 0.2539466619491577, + -3.157190064939641e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1066740, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1385600, + "componentType": 5126, + "count": 48, + "max": [ + 0.1561359465122223, + -1.1648865694269261e-07, + 2.9840339976772157e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.5986934442935308e-07, + -4.439331124928003e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1066932, + "componentType": 5126, + "count": 44, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2161020, + "componentType": 5126, + "count": 44, + "max": [ + 1.000001311302185, + 1.0000016689300537, + 1.000001311302185 + ], + "min": [ + 1.0000007152557373, + 1.0000011920928955, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1067108, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2161548, + "componentType": 5126, + "count": 48, + "max": [ + 1.1920928955078125e-07, + 0.25331947207450867, + 2.5627051059018413e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2533184885978699, + -2.7818600756290834e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1067300, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1386368, + "componentType": 5126, + "count": 48, + "max": [ + -0.09231439232826233, + -1.1521319009943909e-08, + 2.12307647018406e-08, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -4.485358928718597e-08, + -1.4473508613832564e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1067492, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2162124, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 1.0000003576278687 + ], + "min": [ + 1.000000238418579, + 1.0000004768371582, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1067680, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2162688, + "componentType": 5126, + "count": 48, + "max": [ + 2.384185791015625e-07, + 0.2637791335582733, + 3.558933201475156e-07 + ], + "min": [ + -2.3841853646899835e-07, + 0.2637782394886017, + -2.3668400217502494e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1067872, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1387136, + "componentType": 5126, + "count": 48, + "max": [ + 1.1827654411433741e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.436669756723859e-08 + ], + "min": [ + -1.2697144669004956e-08, + -0.9896631240844727, + 0.14341171085834503, + 5.104703859615256e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1068064, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2163264, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000008344650269, + 1.000001072883606, + 1.0000011920928955 + ], + "min": [ + 1.000000238418579, + 1.0000007152557373, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1068256, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2163840, + "componentType": 5126, + "count": 47, + "max": [ + -1.1700938102876535e-06, + 0.2431434988975525, + 0.18703341484069824 + ], + "min": [ + -2.4256664801214356e-06, + 0.24314233660697937, + 0.18703116476535797 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1068444, + "componentType": 5126, + "count": 22, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1387904, + "componentType": 5126, + "count": 22, + "max": [ + 0.44783374667167664, + -0.23266470432281494, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1068532, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2164404, + "componentType": 5126, + "count": 48, + "max": [ + 0.9999997019767761, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.000000238418579, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1068724, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2164980, + "componentType": 5126, + "count": 48, + "max": [ + -0.24418948590755463, + -0.13046205043792725, + 0.02965288609266281 + ], + "min": [ + -0.24419037997722626, + -0.1304636150598526, + 0.029651246964931488 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1068916, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1388256, + "componentType": 5126, + "count": 48, + "max": [ + 0.00741574726998806, + -0.07428387552499771, + -0.9923430681228638, + 0.09839734435081482 + ], + "min": [ + 0.007415705360472202, + -0.07428392767906189, + -0.9923430681228638, + 0.09839731454849243 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1069108, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2165556, + "componentType": 5126, + "count": 48, + "max": [ + 0.9999987483024597, + 1.0000016689300537, + 1.0 + ], + "min": [ + 0.999998152256012, + 1.000001072883606, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1069300, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2166132, + "componentType": 5126, + "count": 48, + "max": [ + 0.24341918528079987, + -0.13046294450759888, + 0.029652010649442673 + ], + "min": [ + 0.24341824650764465, + -0.13046425580978394, + 0.029650608077645302 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1069492, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1389024, + "componentType": 5126, + "count": 48, + "max": [ + 0.007417473942041397, + 0.07428374141454697, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.007417432032525539, + 0.07428370416164398, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1069684, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2166708, + "componentType": 5126, + "count": 47, + "max": [ + 0.9999991059303284, + 1.000002145767212, + 0.9999995231628418 + ], + "min": [ + 0.9999987483024597, + 1.0000015497207642, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1069872, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2167272, + "componentType": 5126, + "count": 48, + "max": [ + -0.0448155477643013, + 0.517073392868042, + 0.010738464072346687 + ], + "min": [ + -0.04481662064790726, + 0.5170726180076599, + 0.010737504810094833 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1070064, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1389792, + "componentType": 5126, + "count": 40, + "max": [ + -0.48815324902534485, + 0.5434421896934509, + 0.5123671293258667, + 0.5129031538963318 + ], + "min": [ + -0.5685471892356873, + 0.46361804008483887, + 0.4385932683944702, + 0.44555118680000305 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1070224, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2167848, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1070416, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2168424, + "componentType": 5126, + "count": 48, + "max": [ + 0.01787080615758896, + 0.23531673848628998, + -0.03527309000492096 + ], + "min": [ + 0.008935169316828251, + 0.23250755667686462, + -0.05596030503511429 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1070608, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1390432, + "componentType": 5126, + "count": 48, + "max": [ + 0.10516820847988129, + 0.5743340849876404, + 0.17841415107250214, + 0.9915841221809387 + ], + "min": [ + -0.5603394508361816, + -0.1291126310825348, + -0.32813239097595215, + 0.5601323246955872 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1070800, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2169000, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1070992, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2169576, + "componentType": 5126, + "count": 48, + "max": [ + 2.629378457186249e-07, + 0.4048617482185364, + 4.447057904144458e-07 + ], + "min": [ + -2.453113552292052e-07, + 0.40486079454421997, + -3.418803729005049e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1071184, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1391200, + "componentType": 5126, + "count": 48, + "max": [ + 0.15302510559558868, + 0.4991835951805115, + 0.504546582698822, + 0.9892528653144836 + ], + "min": [ + -0.2966615855693817, + 0.024391673505306244, + -0.057009365409612656, + 0.8481242060661316 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1071376, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2170152, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1071564, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2170716, + "componentType": 5126, + "count": 48, + "max": [ + 3.520534050949209e-07, + 0.40327075123786926, + 2.0693366309387784e-07 + ], + "min": [ + -2.643702430304984e-07, + 0.40327000617980957, + -5.247641183814267e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1071756, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1391968, + "componentType": 5126, + "count": 48, + "max": [ + 0.04109487310051918, + 0.2823437750339508, + 0.08037042617797852, + 0.9994527101516724 + ], + "min": [ + -0.047107577323913574, + -0.5100046396255493, + -0.2612399160861969, + 0.8593003153800964 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1071948, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2171292, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1072140, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2171868, + "componentType": 5126, + "count": 48, + "max": [ + -0.0980420708656311, + 0.2196311205625534, + -0.002472197636961937 + ], + "min": [ + -0.09804293513298035, + 0.21963012218475342, + -0.002473142696544528 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1072332, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1392736, + "componentType": 5126, + "count": 48, + "max": [ + -0.5146674513816833, + 0.0499749518930912, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488856315613, + -0.08315930515527725, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1072524, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2172444, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1072716, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2173020, + "componentType": 5126, + "count": 48, + "max": [ + 2.2609823702168796e-07, + 0.09750308096408844, + 6.589055487893347e-07 + ], + "min": [ + -2.5856451202344033e-07, + 0.09750211983919144, + 1.2046746178384637e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1072908, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1393504, + "componentType": 5126, + "count": 48, + "max": [ + -0.42176100611686707, + 0.06273205578327179, + 0.00973179005086422, + 0.9044820070266724 + ], + "min": [ + -0.4217611253261566, + 0.0627320185303688, + 0.009731750003993511, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1073100, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2173596, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1073292, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2174172, + "componentType": 5126, + "count": 48, + "max": [ + 0.016227031126618385, + 0.2130868285894394, + -0.003559241071343422 + ], + "min": [ + 0.016226083040237427, + 0.21308568120002747, + -0.003559974255040288 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1073484, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1394272, + "componentType": 5126, + "count": 48, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177223801612854, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1073676, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2174748, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1073868, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2175324, + "componentType": 5126, + "count": 48, + "max": [ + 4.921954541714513e-07, + 0.084650419652462, + 1.0344998457867405e-07 + ], + "min": [ + -2.2288455170382804e-07, + 0.08464968204498291, + -4.956848442816408e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1074060, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1395040, + "componentType": 5126, + "count": 48, + "max": [ + -0.4092182219028473, + 0.002027458744123578, + 0.008077476173639297, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274019334465265, + 0.008077372796833515, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1074252, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2175900, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1074440, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2176464, + "componentType": 5126, + "count": 48, + "max": [ + -0.11189620941877365, + 0.10988966375589371, + -0.0516308955848217 + ], + "min": [ + -0.11189722269773483, + 0.10988892614841461, + -0.05163177102804184 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1074632, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1395808, + "componentType": 5126, + "count": 48, + "max": [ + -0.432245671749115, + -0.12903624773025513, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1074824, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2177040, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1075016, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2177616, + "componentType": 5126, + "count": 48, + "max": [ + 2.0433967051758373e-07, + 0.08512435853481293, + 2.411188688711263e-07 + ], + "min": [ + -5.038145332036947e-07, + 0.08512340486049652, + -2.6045572099064884e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1075208, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1396576, + "componentType": 5126, + "count": 47, + "max": [ + 0.1481143981218338, + -0.12198015302419662, + -0.12739087641239166, + 0.9731159210205078 + ], + "min": [ + 0.14811430871486664, + -0.121980220079422, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1075396, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2178192, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1075588, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2178768, + "componentType": 5126, + "count": 48, + "max": [ + -0.0055846357718110085, + 0.16604526340961456, + -0.045393019914627075 + ], + "min": [ + -0.005585354287177324, + 0.16604402661323547, + -0.045393988490104675 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1075780, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1397328, + "componentType": 5126, + "count": 48, + "max": [ + 0.6181666851043701, + 0.7858039140701294, + 0.04548937454819679, + 0.09445524215698242 + ], + "min": [ + -0.617438793182373, + -0.7856271862983704, + -0.09391332417726517, + 0.0005130007048137486 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1075972, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2179344, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1076164, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2179920, + "componentType": 5126, + "count": 48, + "max": [ + 0.13640396296977997, + 0.285047709941864, + 0.0019402171019464731 + ], + "min": [ + 0.13640253245830536, + 0.2850467562675476, + 0.0019391246605664492 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1076356, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1398096, + "componentType": 5126, + "count": 48, + "max": [ + -4.782575402373368e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.536807019419939e-07 + ], + "min": [ + -9.523245125819813e-08, + -0.693580687046051, + -0.7203789949417114, + 1.0612426848410905e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1076548, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2180496, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1076740, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2181072, + "componentType": 5126, + "count": 48, + "max": [ + -0.1364026516675949, + 0.285047709941864, + 0.0019400424789637327 + ], + "min": [ + -0.13640396296977997, + 0.2850467562675476, + 0.0019393282709643245 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1076932, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1398864, + "componentType": 5126, + "count": 48, + "max": [ + -5.837701877453583e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.538264329947197e-08 + ], + "min": [ + -9.818135993100441e-08, + -0.693580687046051, + -0.7203789949417114, + 3.047357566288156e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1077124, + "componentType": 5126, + "count": 45, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2181648, + "componentType": 5126, + "count": 45, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1077304, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2182188, + "componentType": 5126, + "count": 48, + "max": [ + 0.27831587195396423, + 1.2483131885528564, + -0.5388992428779602 + ], + "min": [ + -0.449643075466156, + 0.5460788011550903, + -0.7747506499290466 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1077496, + "componentType": 5126, + "count": 27, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1399632, + "componentType": 5126, + "count": 27, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1077604, + "componentType": 5126, + "count": 39, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2182764, + "componentType": 5126, + "count": 39, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1077760, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2183232, + "componentType": 5126, + "count": 48, + "max": [ + 0.5804785490036011, + 1.152907371520996, + -0.2312024086713791 + ], + "min": [ + 0.2176646590232849, + 0.417879581451416, + -0.4734504818916321 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1077952, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1400064, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 2.4521589928962643e-20, + 0.13754147291183472, + 0.307343065738678 + ], + "min": [ + -1.0, + -0.09378254413604736, + -5.52335052361741e-07, + 2.119927182496661e-28 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1078144, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2183808, + "componentType": 5126, + "count": 42, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1078312, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2184312, + "componentType": 5126, + "count": 48, + "max": [ + 5.875527858734131e-05, + 0.11894423514604568, + 0.12022784352302551 + ], + "min": [ + -0.03652168810367584, + -5.4787662520539016e-05, + -9.63419588515535e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1078504, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1400832, + "componentType": 5126, + "count": 48, + "max": [ + -0.9503704309463501, + 1.6281202164236674e-08, + 1.2998563114763328e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.7718399192290235e-08, + -1.0265548411325653e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1078696, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2184888, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1078884, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2185452, + "componentType": 5126, + "count": 48, + "max": [ + 3.576279254957626e-07, + 0.282500296831131, + 9.247318644156621e-08 + ], + "min": [ + -2.384185791015625e-07, + 0.28249937295913696, + -1.7377040251176368e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1079076, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1401600, + "componentType": 5126, + "count": 48, + "max": [ + -6.75575364539327e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.333838603542972e-07 + ], + "min": [ + -1.058694820699202e-07, + 0.9818702340126038, + -0.1895543783903122, + 4.1426289953960804e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1079268, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2186028, + "componentType": 5126, + "count": 46, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1079452, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2186580, + "componentType": 5126, + "count": 48, + "max": [ + -0.3236270546913147, + 1.1638060808181763, + -0.3944944143295288 + ], + "min": [ + -0.6809836030006409, + 0.16859102249145508, + -0.7849990129470825 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1079644, + "componentType": 5126, + "count": 22, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1402368, + "componentType": 5126, + "count": 22, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1079732, + "componentType": 5126, + "count": 38, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2187156, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1079884, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2187612, + "componentType": 5126, + "count": 48, + "max": [ + -0.40466010570526123, + 0.22430363297462463, + -0.22168439626693726 + ], + "min": [ + -0.7577728033065796, + -0.9694117307662964, + -0.4373323917388916 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1080076, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1402720, + "componentType": 5126, + "count": 48, + "max": [ + -0.7510102391242981, + -0.02600366622209549, + 5.493039338944072e-07, + 0.5766823887825012 + ], + "min": [ + -0.9945122003555298, + -0.4236670732498169, + -0.2489033341407776, + 5.778571576797731e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1080268, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2188188, + "componentType": 5126, + "count": 46, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1080452, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2188740, + "componentType": 5126, + "count": 48, + "max": [ + 0.09551455080509186, + 0.0015938738361001015, + 0.12798011302947998 + ], + "min": [ + -1.0356307029724121e-05, + -0.044207680970430374, + -4.693257506005466e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1080644, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1403488, + "componentType": 5126, + "count": 48, + "max": [ + -0.9503703713417053, + 1.5734888947349646e-08, + 2.6103663230969687e-08, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -2.124243003720494e-08, + -6.954088416222248e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1080836, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2189316, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1081028, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2189892, + "componentType": 5126, + "count": 48, + "max": [ + 2.384185791015625e-07, + 0.2825000584125519, + 2.6938465680359513e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.28249964118003845, + -1.7318627953955001e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1081220, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1404256, + "componentType": 5126, + "count": 48, + "max": [ + -6.836560118017587e-08, + -0.7780592441558838, + 0.609973132610321, + 0.10605499148368835 + ], + "min": [ + -0.10634380578994751, + -0.9818702340126038, + 0.1895543485879898, + 4.150062125063414e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1081412, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2190468, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1081604, + "componentType": 5126, + "count": 53, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2191044, + "componentType": 5126, + "count": 53, + "max": [ + 0.0, + 0.0, + 3.1593732833862305 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1081816, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2191680, + "componentType": 5126, + "count": 83, + "max": [ + 0.2733936905860901, + 0.7171388864517212, + -1.1258198022842407 + ], + "min": [ + -0.1145639643073082, + -0.08483370393514633, + -1.54071843624115 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1082148, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1405024, + "componentType": 5126, + "count": 83, + "max": [ + 0.31735119223594666, + 0.026355022564530373, + 0.9938955903053284, + 0.9934977293014526 + ], + "min": [ + -0.07126457989215851, + -0.1893492192029953, + -0.9886354804039001, + 0.09357151389122009 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1082480, + "componentType": 5126, + "count": 78, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2192676, + "componentType": 5126, + "count": 78, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1082792, + "componentType": 5126, + "count": 79, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2193612, + "componentType": 5126, + "count": 79, + "max": [ + 1.7881372116335115e-07, + 0.00212763249874115, + 4.768372718899627e-07 + ], + "min": [ + -2.384186927884002e-07, + 0.0021271556615829468, + -4.768372718899627e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1083108, + "componentType": 5126, + "count": 73, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1406352, + "componentType": 5126, + "count": 73, + "max": [ + 0.7071067690849304, + 3.22647451866942e-07, + -2.865098167603719e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.832994141499512e-07, + -3.358183562340855e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1083400, + "componentType": 5126, + "count": 78, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2194560, + "componentType": 5126, + "count": 78, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1083712, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2195496, + "componentType": 5126, + "count": 83, + "max": [ + 0.17381879687309265, + 0.13409914076328278, + 7.338282443924982e-07 + ], + "min": [ + 0.17381736636161804, + 0.13409771025180817, + -7.049572445794183e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1084044, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1407520, + "componentType": 5126, + "count": 83, + "max": [ + 0.14120058715343475, + 0.14388959109783173, + -0.01463837455958128, + 0.9945512413978577 + ], + "min": [ + -0.46760299801826477, + -0.4655284881591797, + -0.5456927418708801, + 0.7014856934547424 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1084376, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2196492, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1084708, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2197488, + "componentType": 5126, + "count": 83, + "max": [ + 2.1001795857955585e-07, + 0.6356120109558105, + 2.6245257345181017e-07 + ], + "min": [ + -5.052377787251316e-07, + 0.6356109976768494, + -4.7352597221106407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1085040, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1408848, + "componentType": 5126, + "count": 83, + "max": [ + 0.7726730108261108, + 1.0665041116908469e-07, + 2.6258194907313737e-07, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.7434392535496954e-08, + -2.0216173197695753e-06, + 0.6348043084144592 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1085372, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2198484, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999992251396179, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1085704, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2199480, + "componentType": 5126, + "count": 83, + "max": [ + -0.1738177239894867, + 0.13409960269927979, + 1.442594225409266e-06 + ], + "min": [ + -0.17381903529167175, + 0.13409791886806488, + -4.60200510588038e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1086036, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1410176, + "componentType": 5126, + "count": 83, + "max": [ + 0.0693177655339241, + 0.29700595140457153, + 0.259628027677536, + 0.9633907675743103 + ], + "min": [ + -0.7484380006790161, + -0.3713100552558899, + -0.1634618490934372, + 0.6464115381240845 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1086368, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2200476, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000005960464478, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999994039535522, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1086700, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2201472, + "componentType": 5126, + "count": 83, + "max": [ + 2.5954113880288787e-07, + 0.6356119513511658, + 2.8726060463668546e-07 + ], + "min": [ + -2.1729601940023713e-07, + 0.6356107592582703, + -4.977449634679942e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1087032, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1411504, + "componentType": 5126, + "count": 83, + "max": [ + 0.8094911575317383, + 1.0604843936334873e-07, + 2.6191123652097303e-06, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + -1.5810479681022116e-07, + -1.991569149595307e-07, + 0.5871321558952332 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1087364, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2202468, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.999998927116394, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1087696, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2203464, + "componentType": 5126, + "count": 83, + "max": [ + 4.76837158203125e-07, + 0.0021276327315717936, + 4.768366181906458e-07 + ], + "min": [ + -2.384187780535285e-07, + 0.0021271556615829468, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1088028, + "componentType": 5126, + "count": 81, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1412832, + "componentType": 5126, + "count": 81, + "max": [ + -0.6495169997215271, + -0.08170121163129807, + 0.07405433058738708, + 0.7514832615852356 + ], + "min": [ + -0.6756551265716553, + -0.1021479144692421, + 0.05446393042802811, + 0.728924572467804 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1088352, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2204460, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1088684, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2205456, + "componentType": 5126, + "count": 83, + "max": [ + 4.76837158203125e-07, + 0.2726665735244751, + 2.3802935800176783e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2726651430130005, + -2.384950334999303e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1089016, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1414128, + "componentType": 5126, + "count": 83, + "max": [ + 0.18689875304698944, + 0.35762184858322144, + 0.025103822350502014, + 0.9944412708282471 + ], + "min": [ + -0.09081880748271942, + 0.05683111399412155, + -0.11398158967494965, + 0.9119425415992737 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1089348, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2206452, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1089680, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2207448, + "componentType": 5126, + "count": 83, + "max": [ + 0.044816166162490845, + 0.5170730948448181, + 0.013554112985730171 + ], + "min": [ + 0.04246152564883232, + 0.5055911540985107, + 0.0021557018626481295 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1090012, + "componentType": 5126, + "count": 81, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1415456, + "componentType": 5126, + "count": 81, + "max": [ + -0.4904356002807617, + -0.4130346477031708, + -0.4567182660102844, + 0.5203524231910706 + ], + "min": [ + -0.6416719555854797, + -0.5287845730781555, + -0.5093848705291748, + 0.3604111075401306 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1090336, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2208444, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1090668, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2209440, + "componentType": 5126, + "count": 83, + "max": [ + 0.023541271686553955, + 0.2381252497434616, + -0.07664656639099121 + ], + "min": [ + -0.019763590767979622, + 0.23483750224113464, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1091000, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1416752, + "componentType": 5126, + "count": 83, + "max": [ + -0.07658417522907257, + -0.01227747742086649, + -0.2763345241546631, + 0.7502020597457886 + ], + "min": [ + -0.705502986907959, + -0.42777156829833984, + -0.7101991772651672, + 0.4550381302833557 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1091332, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2210436, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1091664, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2211432, + "componentType": 5126, + "count": 83, + "max": [ + 4.778871698363218e-07, + 0.4048617482185364, + 4.4892516370964586e-07 + ], + "min": [ + -2.6235954919684445e-07, + 0.4048610031604767, + -4.108097684252243e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1091996, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1418080, + "componentType": 5126, + "count": 83, + "max": [ + 0.07776042073965073, + 0.5269917845726013, + -0.09472672641277313, + 0.9934622049331665 + ], + "min": [ + -0.3551674783229828, + -0.08281182497739792, + -0.6846618056297302, + 0.6932104825973511 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1092328, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2212428, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1092660, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2213424, + "componentType": 5126, + "count": 83, + "max": [ + 4.901982038063579e-07, + 0.4032708406448364, + 1.9658189387428138e-07 + ], + "min": [ + -2.6976437084158533e-07, + 0.4032701551914215, + -2.990273628711293e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1092992, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1419408, + "componentType": 5126, + "count": 83, + "max": [ + 0.04346291720867157, + 0.6735467314720154, + 0.15145426988601685, + 0.9978365898132324 + ], + "min": [ + -0.11016581207513809, + 0.003771335817873478, + -0.0507061742246151, + 0.721381664276123 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1093324, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2214420, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1093656, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2215416, + "componentType": 5126, + "count": 83, + "max": [ + 0.0980432853102684, + 0.21963094174861908, + -0.002472200896590948 + ], + "min": [ + 0.0980420932173729, + 0.2196301966905594, + -0.0024732116144150496 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1093988, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1420736, + "componentType": 5126, + "count": 83, + "max": [ + -0.6223366260528564, + -0.000981657998636365, + 0.03366421163082123, + 0.7820248603820801 + ], + "min": [ + -0.6223368048667908, + -0.0009817318059504032, + 0.033664144575595856, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1094320, + "componentType": 5126, + "count": 81, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2216412, + "componentType": 5126, + "count": 81, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1094644, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2217384, + "componentType": 5126, + "count": 83, + "max": [ + 2.6724629265117983e-07, + 0.0975034236907959, + 8.524242502971902e-07 + ], + "min": [ + -4.7242551204362826e-07, + 0.0975022166967392, + -1.3569547263614368e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1094976, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1422064, + "componentType": 5126, + "count": 83, + "max": [ + -0.5302280187606812, + 0.002465988276526332, + -0.05339593440294266, + 0.8461684584617615 + ], + "min": [ + -0.5302282571792603, + 0.0024658923503011465, + -0.05339600890874863, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1095308, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2218380, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1095640, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2219376, + "componentType": 5126, + "count": 83, + "max": [ + -0.016226112842559814, + 0.21308647096157074, + -0.0035587914753705263 + ], + "min": [ + -0.016227534040808678, + 0.21308565139770508, + -0.0035599800758063793 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1095972, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1423392, + "componentType": 5126, + "count": 83, + "max": [ + -0.626492977142334, + -0.07110267877578735, + 0.07480836659669876, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110274583101273, + 0.07480830699205399, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1096304, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2220372, + "componentType": 5126, + "count": 82, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1096632, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2221356, + "componentType": 5126, + "count": 83, + "max": [ + 4.7043999984452967e-07, + 0.08465046435594559, + 2.0832437996887165e-08 + ], + "min": [ + -2.514497907668556e-07, + 0.08464968204498291, + -6.699353320982482e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1096964, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1424720, + "componentType": 5126, + "count": 83, + "max": [ + -0.5015431642532349, + -0.001179640763439238, + -0.008243972435593605, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797267943620682, + -0.008244035765528679, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1097296, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2222352, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1097628, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2223348, + "componentType": 5126, + "count": 83, + "max": [ + 0.11189717799425125, + 0.1098899245262146, + -0.05163046717643738 + ], + "min": [ + 0.11189606040716171, + 0.1098889485001564, + -0.05163181945681572 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1097960, + "componentType": 5126, + "count": 68, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1426048, + "componentType": 5126, + "count": 68, + "max": [ + -0.4573034942150116, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1098232, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2224344, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1098564, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2225340, + "componentType": 5126, + "count": 83, + "max": [ + 2.1006798078815336e-07, + 0.08512446284294128, + 4.9160422577188e-07 + ], + "min": [ + -5.100807811686536e-07, + 0.08512375503778458, + -4.716829664630495e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1098896, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1427136, + "componentType": 5126, + "count": 83, + "max": [ + 0.022910557687282562, + 0.012835764326155186, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.02291051112115383, + 0.012835728004574776, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1099228, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2226336, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1099560, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2227332, + "componentType": 5126, + "count": 83, + "max": [ + 0.005585565231740475, + 0.16604499518871307, + -0.04539302736520767 + ], + "min": [ + 0.005584411323070526, + 0.1660439670085907, + -0.04539397731423378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1099892, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1428464, + "componentType": 5126, + "count": 82, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.02386540360748768 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865357041358948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1100220, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2228328, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1100552, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2229324, + "componentType": 5126, + "count": 83, + "max": [ + 4.7683712978141557e-07, + 0.5450077652931213, + 2.922212445355399e-07 + ], + "min": [ + -2.3841860752327193e-07, + 0.5450068116188049, + -3.2146536455002206e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1100884, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1429776, + "componentType": 5126, + "count": 83, + "max": [ + 0.04590301215648651, + 0.19381804764270782, + 0.0561525821685791, + 0.9992412328720093 + ], + "min": [ + -0.10934890061616898, + -0.09967981278896332, + -0.11750377714633942, + 0.9678173065185547 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1101216, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2230320, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1101548, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2231316, + "componentType": 5126, + "count": 82, + "max": [ + 2.384185791015625e-07, + 0.11002874374389648, + 2.3655596237404097e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.11002731323242188, + -2.1047891607395286e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1101876, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1431104, + "componentType": 5126, + "count": 83, + "max": [ + 0.04511484503746033, + 0.3337618410587311, + 0.058031342923641205, + 0.9987239241600037 + ], + "min": [ + -0.025982949882745743, + -0.09859786182641983, + -0.04469774663448334, + 0.9413387179374695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1102208, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2232300, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1102540, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2233296, + "componentType": 5126, + "count": 83, + "max": [ + 9.478483207203681e-07, + 0.3614494800567627, + 0.026840709149837494 + ], + "min": [ + 1.1338330097032667e-07, + 0.3614470958709717, + 0.026839755475521088 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1102872, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1432432, + "componentType": 5126, + "count": 83, + "max": [ + 8.19563723553074e-08, + 1.8626506559371592e-08, + 1.0244546544413424e-08, + 1.0 + ], + "min": [ + 2.2351741790771484e-08, + -2.793960796054762e-08, + -2.2351741790771484e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1103204, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2234292, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000007152557373, + 1.0, + 1.0000005960464478 + ], + "min": [ + 1.0000001192092896, + 0.9999995231628418, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1103536, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2235288, + "componentType": 5126, + "count": 83, + "max": [ + 7.7575845125466e-07, + -0.15833839774131775, + -0.25376495718955994 + ], + "min": [ + -4.1633441583144304e-07, + -0.15834125876426697, + -0.2537662386894226 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1103868, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1433760, + "componentType": 5126, + "count": 83, + "max": [ + -0.998119592666626, + 1.596142418236468e-08, + -1.93875393961207e-07, + 0.06129668280482292 + ], + "min": [ + -0.998119592666626, + -1.861629783661556e-08, + -2.3472148313885555e-07, + 0.06129663810133934 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1104200, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2236284, + "componentType": 5126, + "count": 82, + "max": [ + 1.0000004768371582, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1104528, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2237268, + "componentType": 5126, + "count": 83, + "max": [ + 2.3841853646899835e-07, + 0.25394776463508606, + 3.0255779392973636e-07 + ], + "min": [ + -2.3841856489070778e-07, + 0.2539462447166443, + -4.91144817260647e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1104860, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1435088, + "componentType": 5126, + "count": 83, + "max": [ + 0.1561359465122223, + -1.0864266641874565e-07, + 4.296234124012699e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.4229642886220972e-07, + 2.612941807367264e-10, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1105192, + "componentType": 5126, + "count": 80, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2238264, + "componentType": 5126, + "count": 80, + "max": [ + 1.000001311302185, + 1.0000017881393433, + 1.0000014305114746 + ], + "min": [ + 1.0000007152557373, + 1.000001072883606, + 1.000001072883606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1105512, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2239224, + "componentType": 5126, + "count": 83, + "max": [ + 2.384185791015625e-07, + 0.2533201575279236, + 2.7818600756290834e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.253318727016449, + -2.7818600756290834e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1105844, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1436416, + "componentType": 5126, + "count": 83, + "max": [ + -0.09231438487768173, + -1.1168238778225259e-08, + 3.088192102040921e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -4.63643949899506e-08, + -4.916044016312071e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1106176, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2240220, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 1.000000238418579 + ], + "min": [ + 1.0, + 1.0000003576278687, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1106508, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2241216, + "componentType": 5126, + "count": 83, + "max": [ + 1.7881397695873602e-07, + 0.2637791633605957, + 4.160426101407211e-07 + ], + "min": [ + -2.3841856489070778e-07, + 0.26377779245376587, + -2.3668403059673437e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1106840, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1437744, + "componentType": 5126, + "count": 83, + "max": [ + 9.463261285702629e-09, + -0.9896631240844727, + 0.1434118002653122, + 9.856123028839647e-08 + ], + "min": [ + -2.453237080146664e-08, + -0.9896631240844727, + 0.14341172575950623, + 5.060660868139166e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1107172, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2242212, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000008344650269, + 1.0000011920928955, + 1.000001311302185 + ], + "min": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1107504, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2243208, + "componentType": 5126, + "count": 83, + "max": [ + -8.641188173896808e-07, + 0.24314387142658234, + 0.18703307211399078 + ], + "min": [ + -2.1840455701749306e-06, + 0.24314218759536743, + 0.18703188002109528 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1107836, + "componentType": 5126, + "count": 38, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1439072, + "componentType": 5126, + "count": 38, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1107988, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2244204, + "componentType": 5126, + "count": 83, + "max": [ + 0.9999997019767761, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999992847442627, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1108320, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2245200, + "componentType": 5126, + "count": 83, + "max": [ + -0.24418938159942627, + -0.13046161830425262, + 0.029652461409568787 + ], + "min": [ + -0.24419018626213074, + -0.13046404719352722, + 0.029651682823896408 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1108652, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1439680, + "componentType": 5126, + "count": 83, + "max": [ + 0.007415760774165392, + -0.0742838904261589, + -0.9923430681228638, + 0.09839737415313721 + ], + "min": [ + 0.007415702100843191, + -0.07428393512964249, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1108984, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2246196, + "componentType": 5126, + "count": 83, + "max": [ + 0.9999987483024597, + 1.0000016689300537, + 1.000000238418579 + ], + "min": [ + 0.999998152256012, + 1.0000011920928955, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1109316, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2247192, + "componentType": 5126, + "count": 83, + "max": [ + 0.24341879785060883, + -0.13046276569366455, + 0.029651302844285965 + ], + "min": [ + 0.24341771006584167, + -0.130465567111969, + 0.02965039573609829 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1109648, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1441008, + "componentType": 5126, + "count": 83, + "max": [ + 0.007417486049234867, + 0.07428376376628876, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.007417429704219103, + 0.07428370416164398, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1109980, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2248188, + "componentType": 5126, + "count": 82, + "max": [ + 0.9999991059303284, + 1.000002145767212, + 0.9999995231628418 + ], + "min": [ + 0.9999986290931702, + 1.0000015497207642, + 0.9999991059303284 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1110308, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2249172, + "componentType": 5126, + "count": 83, + "max": [ + -0.04246139898896217, + 0.5285547971725464, + 0.019320251420140266 + ], + "min": [ + -0.04481615126132965, + 0.5170730948448181, + 0.007921973243355751 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1110640, + "componentType": 5126, + "count": 71, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1442336, + "componentType": 5126, + "count": 71, + "max": [ + -0.45282939076423645, + 0.658788800239563, + 0.5175249576568604, + 0.44555115699768066 + ], + "min": [ + -0.5660933256149292, + 0.5097403526306152, + 0.38614141941070557, + 0.39520764350891113 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1110924, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2250168, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1111256, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2251164, + "componentType": 5126, + "count": 83, + "max": [ + 0.017870478332042694, + 0.238235741853714, + -0.03527333214879036 + ], + "min": [ + -0.021778088063001633, + 0.2325080931186676, + -0.07693025469779968 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1111588, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1443472, + "componentType": 5126, + "count": 83, + "max": [ + -0.3296251893043518, + 0.6692322492599487, + 0.46591874957084656, + 0.7077695727348328 + ], + "min": [ + -0.7877122163772583, + 0.13741154968738556, + -0.3281324803829193, + 0.3675175607204437 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1111920, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2252160, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1112252, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2253156, + "componentType": 5126, + "count": 83, + "max": [ + 4.6524800723091175e-07, + 0.4048615097999573, + 4.4863108428216947e-07 + ], + "min": [ + -2.695238094929664e-07, + 0.4048610031604767, + -3.365786582776309e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1112584, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1444800, + "componentType": 5126, + "count": 83, + "max": [ + 0.37136876583099365, + 0.6179759502410889, + 0.22643309831619263, + 0.997620165348053 + ], + "min": [ + -0.11984245479106903, + 0.009917140007019043, + -0.05700942873954773, + 0.6549191474914551 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1112916, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2254152, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1113248, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2255148, + "componentType": 5126, + "count": 83, + "max": [ + 5.069501867183135e-07, + 0.40327078104019165, + 4.3415116124378983e-07 + ], + "min": [ + -5.15144165547099e-07, + 0.4032699167728424, + -3.1139660450207884e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1113580, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1446128, + "componentType": 5126, + "count": 83, + "max": [ + 0.05846530571579933, + 0.5642935037612915, + 0.09979009628295898, + 0.9996623992919922 + ], + "min": [ + -0.20007014274597168, + 0.004205347504466772, + -0.1380329132080078, + 0.7926962971687317 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1113912, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2256144, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1114244, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2257140, + "componentType": 5126, + "count": 83, + "max": [ + -0.09804115444421768, + 0.219631165266037, + -0.0024723883252590895 + ], + "min": [ + -0.09804397821426392, + 0.21963030099868774, + -0.0024731201119720936 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1114576, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1447456, + "componentType": 5126, + "count": 82, + "max": [ + -0.5146673321723938, + 0.049974944442510605, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997487738728523, + -0.08315927535295486, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1114904, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2258136, + "componentType": 5126, + "count": 82, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1115232, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2259120, + "componentType": 5126, + "count": 83, + "max": [ + 4.622260973974335e-07, + 0.09750306606292725, + 6.009460093991947e-07 + ], + "min": [ + -9.68242943599762e-07, + 0.09750223159790039, + 1.1802718091757924e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1115564, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1448768, + "componentType": 5126, + "count": 83, + "max": [ + -0.4217608869075775, + 0.06273208558559418, + 0.009731827303767204, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.06273201107978821, + 0.009731709025800228, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1115896, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2260116, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1116228, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2261112, + "componentType": 5126, + "count": 83, + "max": [ + 0.016228243708610535, + 0.2130865603685379, + -0.003559013130143285 + ], + "min": [ + 0.0162254199385643, + 0.2130851149559021, + -0.003559964243322611 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1116560, + "componentType": 5126, + "count": 80, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1450096, + "componentType": 5126, + "count": 80, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430819392204285, + 0.06296969950199127, + -0.08177225291728973, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1116880, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2262108, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1117212, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2263104, + "componentType": 5126, + "count": 83, + "max": [ + 9.643574685469503e-07, + 0.084650419652462, + 2.891580948016781e-07 + ], + "min": [ + -4.65936437876735e-07, + 0.08464973419904709, + -5.069202870799927e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1117544, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1451376, + "componentType": 5126, + "count": 83, + "max": [ + -0.4092182219028473, + 0.0020274603739380836, + 0.008077437989413738, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274112466722727, + 0.008077398873865604, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1117876, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2264100, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1118208, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2265096, + "componentType": 5126, + "count": 83, + "max": [ + -0.11189582943916321, + 0.10989002138376236, + -0.0516308918595314 + ], + "min": [ + -0.1118972897529602, + 0.10988849401473999, + -0.05163171887397766 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1118540, + "componentType": 5126, + "count": 81, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1452704, + "componentType": 5126, + "count": 81, + "max": [ + -0.432245671749115, + -0.12903621792793274, + 0.1503005474805832, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363371372223, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1118864, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2266092, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1119196, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2267088, + "componentType": 5126, + "count": 83, + "max": [ + 4.5037839413453185e-07, + 0.08512426167726517, + 4.687288992499816e-07 + ], + "min": [ + -5.119860020386113e-07, + 0.08512340486049652, + -4.794979986399994e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1119528, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1454000, + "componentType": 5126, + "count": 83, + "max": [ + 0.1481143683195114, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802051782608, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1119860, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2268084, + "componentType": 5126, + "count": 83, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1120192, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2269080, + "componentType": 5126, + "count": 83, + "max": [ + -0.005583475343883038, + 0.1660449504852295, + -0.04539298638701439 + ], + "min": [ + -0.005586284678429365, + 0.16604411602020264, + -0.04539373144507408 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1120524, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1455328, + "componentType": 5126, + "count": 83, + "max": [ + 0.6698365211486816, + -0.7402837872505188, + 0.05103709548711777, + 0.02634725160896778 + ], + "min": [ + 0.5498807430267334, + -0.8348956108093262, + -0.007858139462769032, + 0.022775918245315552 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1120856, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2270076, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1121188, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2271072, + "componentType": 5126, + "count": 83, + "max": [ + 0.13640372455120087, + 0.285047709941864, + 0.0019403339829295874 + ], + "min": [ + 0.13640277087688446, + 0.2850462794303894, + 0.0019392619142308831 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1121520, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1456656, + "componentType": 5126, + "count": 83, + "max": [ + -5.753587473122934e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.5019038812624785e-07 + ], + "min": [ + -9.143016654888925e-08, + -0.693580687046051, + -0.7203789949417114, + 1.1914304565152634e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1121852, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2272068, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1122184, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2273064, + "componentType": 5126, + "count": 83, + "max": [ + -0.13640277087688446, + 0.2850481867790222, + 0.0019403626210987568 + ], + "min": [ + -0.13640372455120087, + 0.285046249628067, + 0.0019393175607547164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1122516, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1457984, + "componentType": 5126, + "count": 83, + "max": [ + -5.3458279580809176e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.604171514685731e-08 + ], + "min": [ + -1.029429981258545e-07, + -0.693580687046051, + -0.7203789949417114, + 3.7019024290430025e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1122848, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2274060, + "componentType": 5126, + "count": 83, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1123180, + "componentType": 5126, + "count": 43, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2275056, + "componentType": 5126, + "count": 43, + "max": [ + 1.1184674501419067, + 1.464809536933899, + -0.36774876713752747 + ], + "min": [ + -1.238576889038086, + -0.6807016134262085, + -0.7450676560401917 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1123352, + "componentType": 5126, + "count": 48, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2275572, + "componentType": 5126, + "count": 48, + "max": [ + 0.5804785490036011, + 1.0116084814071655, + -0.24350862205028534 + ], + "min": [ + -0.5889273285865784, + -0.31422996520996094, + -0.34696391224861145 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1123544, + "componentType": 5126, + "count": 48, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1459312, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 0.9246373772621155, + 0.37791401147842407, + 0.528378963470459 + ], + "min": [ + -0.9988687634468079, + -0.920767605304718, + -0.34598904848098755, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1123736, + "componentType": 5126, + "count": 40, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2276148, + "componentType": 5126, + "count": 40, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1123896, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2276628, + "componentType": 5126, + "count": 83, + "max": [ + 5.9410929679870605e-05, + 7.487308721465524e-06, + -2.0260310407138604e-07 + ], + "min": [ + -1.8611550331115723e-05, + -5.261710612103343e-05, + -0.00010684427979867905 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1124228, + "componentType": 5126, + "count": 49, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1460080, + "componentType": 5126, + "count": 49, + "max": [ + -0.9503703713417053, + 1.56103894255466e-08, + 1.4161619432684347e-08, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -1.6479649644907113e-08, + -2.9418899316624447e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1124424, + "componentType": 5126, + "count": 45, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2277624, + "componentType": 5126, + "count": 45, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1124604, + "componentType": 5126, + "count": 77, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2278164, + "componentType": 5126, + "count": 77, + "max": [ + 4.768372150465439e-07, + 0.28250011801719666, + 2.2501070873204299e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2824995815753937, + -2.619341614717996e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1124912, + "componentType": 5126, + "count": 56, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1460864, + "componentType": 5126, + "count": 56, + "max": [ + 5.057128760199703e-07, + 0.9818702340126038, + -0.1895543485879898, + 0.13135585188865662 + ], + "min": [ + -0.05526944249868393, + 0.6916658878326416, + -0.7222176194190979, + 4.106422863969783e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1125136, + "componentType": 5126, + "count": 56, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2279088, + "componentType": 5126, + "count": 56, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1125360, + "componentType": 5126, + "count": 48, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2279760, + "componentType": 5126, + "count": 48, + "max": [ + 0.9858834147453308, + 1.693956971168518, + -0.5105094313621521 + ], + "min": [ + -0.8797179460525513, + 0.11524546146392822, + -0.7481747269630432 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1125552, + "componentType": 5126, + "count": 62, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2280336, + "componentType": 5126, + "count": 62, + "max": [ + 0.53831946849823, + 1.21744704246521, + -0.23012319207191467 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.8297157883644104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1125800, + "componentType": 5126, + "count": 48, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1461760, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 0.8951058983802795, + 0.5467960238456726, + 0.715139627456665 + ], + "min": [ + -0.9973337650299072, + -0.9584043622016907, + -0.23451344668865204, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1125992, + "componentType": 5126, + "count": 37, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2281080, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1126140, + "componentType": 5126, + "count": 83, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2281524, + "componentType": 5126, + "count": 83, + "max": [ + 2.518296241760254e-06, + 1.6617429992038524e-06, + -1.4795447214055457e-06 + ], + "min": [ + -3.2767653465270996e-05, + -6.781699630664662e-05, + -0.0001029716368066147 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1126472, + "componentType": 5126, + "count": 50, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1462528, + "componentType": 5126, + "count": 50, + "max": [ + -0.9503703713417053, + 9.39883992856494e-09, + 1.2939247895360495e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.8218171859984977e-08, + -1.3381796115652378e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1126672, + "componentType": 5126, + "count": 48, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2282520, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1126864, + "componentType": 5126, + "count": 82, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2283096, + "componentType": 5126, + "count": 82, + "max": [ + 2.980231101901154e-07, + 0.28250032663345337, + 3.1375876119454915e-07 + ], + "min": [ + -2.384186927884002e-07, + 0.28249937295913696, + -2.8441320409910986e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1127192, + "componentType": 5126, + "count": 50, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1463328, + "componentType": 5126, + "count": 50, + "max": [ + -6.772419425260523e-08, + -0.8155511617660522, + 0.5767431855201721, + 0.030243294313549995 + ], + "min": [ + -0.03645578771829605, + -0.9818702340126038, + 0.1895543485879898, + 4.2061984117935936e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1127392, + "componentType": 5126, + "count": 49, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2284080, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1127588, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2284668, + "componentType": 5126, + "count": 47, + "max": [ + 0.0, + 0.0, + 3.417059898376465 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1127776, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1464128, + "componentType": 5126, + "count": 48, + "max": [ + 0.7071067690849304, + 0.7061121463775635, + 0.7066393494606018, + 0.7071067690849304 + ], + "min": [ + 0.025707682594656944, + -0.7066393494606018, + -0.7061121463775635, + 0.025706902146339417 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1127968, + "componentType": 5126, + "count": 36, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2285232, + "componentType": 5126, + "count": 36, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1128112, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2285664, + "componentType": 5126, + "count": 48, + "max": [ + 0.030920162796974182, + 0.2732609510421753, + -0.9799128174781799 + ], + "min": [ + -0.04983516409993172, + -0.08483370393514633, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1128304, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1464896, + "componentType": 5126, + "count": 48, + "max": [ + 0.15290190279483795, + 0.010921822860836983, + 0.2671806514263153, + 1.0 + ], + "min": [ + -0.03552567958831787, + -0.03289443626999855, + -2.8658132764232803e-21, + 0.9510764479637146 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1128496, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2286240, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1128684, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2286804, + "componentType": 5126, + "count": 48, + "max": [ + 2.384187780535285e-07, + 0.00212763249874115, + 2.384186927884002e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.0021271556615829468, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1128876, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1465664, + "componentType": 5126, + "count": 48, + "max": [ + 0.7071067690849304, + 0.12842777371406555, + 0.2711927592754364, + 0.7171277403831482 + ], + "min": [ + 0.6370629072189331, + 2.898025570630125e-07, + -3.2207123012995e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1129068, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2287380, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1129260, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2287956, + "componentType": 5126, + "count": 48, + "max": [ + 0.17381927371025085, + 0.13409900665283203, + 4.95447523007897e-07 + ], + "min": [ + 0.17381760478019714, + 0.13409805297851563, + -7.028318691482127e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1129452, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1466432, + "componentType": 5126, + "count": 47, + "max": [ + -0.13052810728549957, + 0.24159519374370575, + -0.20721043646335602, + 0.9695425033569336 + ], + "min": [ + -0.6077020764350891, + -0.11448721587657928, + -0.4181210696697235, + 0.6964980959892273 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1129640, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2288532, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 0.9999999403953552 + ], + "min": [ + 0.9999994039535522, + 0.9999992847442627, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1129828, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2289096, + "componentType": 5126, + "count": 48, + "max": [ + 2.1001795857955585e-07, + 0.6356117129325867, + 2.3793907644176215e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.6356109976768494, + -2.3637096546735847e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1130020, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1467184, + "componentType": 5126, + "count": 48, + "max": [ + 0.7992475032806396, + 9.412293877630873e-08, + 3.1957500823409646e-07, + 0.9874270558357239 + ], + "min": [ + 0.1580754816532135, + -7.628893428091033e-08, + -2.010913703998085e-06, + 0.6010020971298218 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1130212, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2289672, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.999999463558197, + 0.9999993443489075, + 0.9999985098838806 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1130404, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2290248, + "componentType": 5126, + "count": 48, + "max": [ + -0.1738174855709076, + 0.13409888744354248, + 4.911968289889046e-07 + ], + "min": [ + -0.17381903529167175, + 0.13409793376922607, + -4.66576580038236e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1130596, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1467952, + "componentType": 5126, + "count": 47, + "max": [ + 0.19708450138568878, + -0.12298967689275742, + 0.36646541953086853, + 0.9763597846031189 + ], + "min": [ + -0.44648295640945435, + -0.28165674209594727, + 0.09442292153835297, + 0.8597792983055115 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1130784, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2290824, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000005960464478, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.999999463558197, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1130976, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2291400, + "componentType": 5126, + "count": 48, + "max": [ + 2.5954113880288787e-07, + 0.6356115937232971, + 2.3823359640573472e-07 + ], + "min": [ + -2.1729601940023713e-07, + 0.6356111764907837, + -2.422048055450432e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1131168, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1468704, + "componentType": 5126, + "count": 48, + "max": [ + 0.7984334230422974, + 7.878315955167636e-08, + 6.561321583831159e-07, + 0.9844071865081787 + ], + "min": [ + 0.175904780626297, + -2.7059961382747133e-08, + -9.241427392225887e-07, + 0.602083146572113 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1131360, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2291976, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000007152557373, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999992847442627, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1131552, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2292552, + "componentType": 5126, + "count": 48, + "max": [ + 2.384185791015625e-07, + 0.002127632964402437, + 2.3881844413153885e-07 + ], + "min": [ + -2.384187780535285e-07, + 0.0021271551959216595, + -2.3841823804104934e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1131744, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1469472, + "componentType": 5126, + "count": 48, + "max": [ + -0.6182177066802979, + 2.231700051424923e-07, + 0.16930750012397766, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.2276041954755783, + 3.89569521530575e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1131936, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2293128, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1132128, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2293704, + "componentType": 5126, + "count": 48, + "max": [ + 4.76837158203125e-07, + 0.272666335105896, + 2.2076061156894866e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2726656198501587, + -2.384950334999303e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1132320, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1470240, + "componentType": 5126, + "count": 48, + "max": [ + 0.3678807318210602, + 0.05683114379644394, + 0.19612590968608856, + 0.9944412708282471 + ], + "min": [ + 0.08500943332910538, + 0.022638075053691864, + -0.044019777327775955, + 0.9086726307868958 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1132512, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2294280, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1132704, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2294856, + "componentType": 5126, + "count": 48, + "max": [ + 0.04481710493564606, + 0.5170735716819763, + 0.010738329961895943 + ], + "min": [ + 0.04481567442417145, + 0.5170726180076599, + 0.010737736709415913 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1132896, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1471008, + "componentType": 5126, + "count": 46, + "max": [ + -0.1853695660829544, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356896877289, + -0.6581333875656128, + -0.6756433844566345, + 0.2756892740726471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1133080, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2295432, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1133272, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2296008, + "componentType": 5126, + "count": 48, + "max": [ + 0.023541152477264404, + 0.23812614381313324, + -0.07664680480957031 + ], + "min": [ + -3.667698820208898e-07, + 0.23651330173015594, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1133464, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1471744, + "componentType": 5126, + "count": 48, + "max": [ + 0.17361557483673096, + 0.0758194848895073, + 0.279843807220459, + 0.9894571900367737 + ], + "min": [ + -0.7055029273033142, + -0.12458822876214981, + -0.5699712634086609, + 0.5823849439620972 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1133656, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2296584, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1133848, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2297160, + "componentType": 5126, + "count": 48, + "max": [ + 2.453114120726241e-07, + 0.4048615097999573, + 6.818759743509872e-07 + ], + "min": [ + -2.0516733911790652e-07, + 0.40486112236976624, + -2.715212019666069e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1134040, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1472512, + "componentType": 5126, + "count": 48, + "max": [ + 0.30350252985954285, + 0.5269917249679565, + -0.06778706610202789, + 0.997620165348053 + ], + "min": [ + -0.007783625740557909, + -0.022135339677333832, + -0.41996434330940247, + 0.8129318952560425 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1134232, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2297736, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1134424, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2298312, + "componentType": 5126, + "count": 48, + "max": [ + 1.9371593396044773e-07, + 0.4032707214355469, + 4.330260310325684e-07 + ], + "min": [ + -2.4556180733270594e-07, + 0.40327033400535583, + -5.16395857630414e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1134616, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1473280, + "componentType": 5126, + "count": 48, + "max": [ + 0.04346290975809097, + 0.3946560323238373, + 0.12396223098039627, + 0.9978938698768616 + ], + "min": [ + -0.28260543942451477, + -0.44073808193206787, + -0.1617303341627121, + 0.8364971280097961 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1134808, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2298888, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1134996, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2299452, + "componentType": 5126, + "count": 48, + "max": [ + 0.0980430394411087, + 0.21963079273700714, + -0.0024722132366150618 + ], + "min": [ + 0.09804220497608185, + 0.21963033080101013, + -0.00247364304959774 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1135188, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1474048, + "componentType": 5126, + "count": 51, + "max": [ + -0.13548365235328674, + 0.04221635311841965, + 0.10137210786342621, + 0.9846753478050232 + ], + "min": [ + -0.6223368048667908, + -0.0009816925739869475, + 0.033664196729660034, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1135392, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2300028, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1135596, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2300640, + "componentType": 5126, + "count": 51, + "max": [ + 2.5569093509147933e-07, + 0.09750279784202576, + 8.370937507606868e-07 + ], + "min": [ + -2.2210231520602974e-07, + 0.0975024551153183, + -1.2220624512337963e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1135800, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1474864, + "componentType": 5126, + "count": 51, + "max": [ + -0.025757797062397003, + 0.0024659186601638794, + 0.027337171137332916, + 0.9992673993110657 + ], + "min": [ + -0.5302280187606812, + -0.00734056206420064, + -0.05339594557881355, + 0.8461684584617615 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1136004, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2301252, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1136208, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2301864, + "componentType": 5126, + "count": 48, + "max": [ + -0.016226576641201973, + 0.2130863517522812, + -0.003558534663170576 + ], + "min": [ + -0.016227534040808678, + 0.2130858302116394, + -0.003560438985005021 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1136400, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1475680, + "componentType": 5126, + "count": 51, + "max": [ + -0.346089243888855, + -0.04340109974145889, + 0.09363880008459091, + 0.9325075745582581 + ], + "min": [ + -0.626492977142334, + -0.07110271602869034, + 0.07480832934379578, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1136604, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2302440, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1136808, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2303052, + "componentType": 5126, + "count": 51, + "max": [ + 2.3237662105657364e-07, + 0.08465022593736649, + 1.889701906065966e-07 + ], + "min": [ + -2.4659522068759543e-07, + 0.08464975655078888, + -1.2257986554686795e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1137012, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1476496, + "componentType": 5126, + "count": 51, + "max": [ + -0.1980881541967392, + -0.0011796762701123953, + -0.007432050071656704, + 0.9801488518714905 + ], + "min": [ + -0.5015432834625244, + -0.0037576628383249044, + -0.008244034834206104, + 0.8650925159454346 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1137216, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2303664, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1137420, + "componentType": 5126, + "count": 49, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2304276, + "componentType": 5126, + "count": 49, + "max": [ + 0.11189686506986618, + 0.10988961160182953, + -0.05163085088133812 + ], + "min": [ + 0.11189641058444977, + 0.10988888144493103, + -0.05163221061229706 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1137616, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1477312, + "componentType": 5126, + "count": 51, + "max": [ + -0.3558593690395355, + 0.16493292152881622, + -0.1649237722158432, + 0.905641496181488 + ], + "min": [ + -0.457303524017334, + 0.16117601096630096, + -0.3159089684486389, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1137820, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2304864, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1138008, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2305428, + "componentType": 5126, + "count": 51, + "max": [ + 1.0747709922043214e-07, + 0.08512423932552338, + 4.954463861395197e-07 + ], + "min": [ + -2.3623027800567797e-07, + 0.08512374758720398, + -4.746370336761174e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1138212, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1478128, + "componentType": 5126, + "count": 51, + "max": [ + 0.022910548374056816, + 0.02366398274898529, + 0.6957963705062866, + 0.9871651530265808 + ], + "min": [ + 0.01138708833605051, + 0.012835743837058544, + 0.15752866864204407, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1138416, + "componentType": 5126, + "count": 51, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2306040, + "componentType": 5126, + "count": 51, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1138620, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2306652, + "componentType": 5126, + "count": 48, + "max": [ + 0.0055851321667432785, + 0.16604475677013397, + -0.045392997562885284 + ], + "min": [ + 0.00558453006669879, + 0.16604425013065338, + -0.045393966138362885 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1138812, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1478944, + "componentType": 5126, + "count": 48, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188955664635, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1139004, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2307228, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1139196, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2307804, + "componentType": 5126, + "count": 48, + "max": [ + 4.76837158203125e-07, + 0.5450075268745422, + 2.3265940285455144e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.5450068116188049, + -1.4277981108534732e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1139388, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1479712, + "componentType": 5126, + "count": 48, + "max": [ + 0.006553811486810446, + 0.1364758312702179, + -0.021905796602368355, + 0.9983372688293457 + ], + "min": [ + -0.08001783490180969, + -0.07137025892734528, + -0.06829141080379486, + 0.9871634244918823 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1139580, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2308380, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1139772, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2308956, + "componentType": 5126, + "count": 48, + "max": [ + 2.3841860752327193e-07, + 0.11002874374389648, + 2.3655593395233154e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.11002802848815918, + -4.78699803352356e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1139964, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1480480, + "componentType": 5126, + "count": 48, + "max": [ + -0.012303569354116917, + 0.13603626191616058, + -0.024487916380167007, + 0.99808269739151 + ], + "min": [ + -0.09870954602956772, + -0.07265152782201767, + -0.06692672520875931, + 0.9854698777198792 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1140156, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2309532, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1140344, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2310096, + "componentType": 5126, + "count": 48, + "max": [ + 1.0670576102711493e-06, + 0.3614490032196045, + 0.026840709149837494 + ], + "min": [ + 2.3259259762653528e-07, + 0.361447811126709, + 0.026839755475521088 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1140536, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1481248, + "componentType": 5126, + "count": 48, + "max": [ + 8.940695295223122e-08, + 3.725294206446961e-08, + 8.381901395182467e-09, + 1.0 + ], + "min": [ + 2.2351734685344127e-08, + -1.6298077554210977e-08, + -1.4901162970204496e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1140728, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2310672, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000005960464478, + 1.0, + 1.0000007152557373 + ], + "min": [ + 1.000000238418579, + 0.9999995231628418, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1140920, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2311248, + "componentType": 5126, + "count": 48, + "max": [ + 7.757585649414978e-07, + -0.15833865106105804, + -0.2537655234336853 + ], + "min": [ + -4.1633433056631475e-07, + -0.15834008157253265, + -0.253766268491745 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1141112, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1482016, + "componentType": 5126, + "count": 48, + "max": [ + -0.998119592666626, + 3.118091740361706e-08, + -1.7993387757542223e-07, + 0.061296675354242325 + ], + "min": [ + -0.998119592666626, + -1.9015805818867193e-08, + -2.2309374969609053e-07, + 0.06129660829901695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1141304, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2311824, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000005960464478, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1141492, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2312388, + "componentType": 5126, + "count": 48, + "max": [ + 1.1920930376163597e-07, + 0.2539477050304413, + 4.0367291376242065e-07 + ], + "min": [ + -2.3841856489070778e-07, + 0.2539467513561249, + -1.8090523212777043e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1141684, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1482784, + "componentType": 5126, + "count": 48, + "max": [ + 0.1561359465122223, + -8.966617315309122e-08, + 3.9428147857734075e-08, + 0.9877356290817261 + ], + "min": [ + 0.15613587200641632, + -1.4466731101947516e-07, + -1.9469128531568458e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1141876, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2312964, + "componentType": 5126, + "count": 48, + "max": [ + 1.000001311302185, + 1.0000016689300537, + 1.0000014305114746 + ], + "min": [ + 1.0000007152557373, + 1.0000011920928955, + 1.000001072883606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1142068, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2313540, + "componentType": 5126, + "count": 48, + "max": [ + 1.7881393432617188e-07, + 0.25331974029541016, + 2.7818600756290834e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.25331875681877136, + -3.9536348594992887e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1142260, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1483552, + "componentType": 5126, + "count": 48, + "max": [ + -0.09231439977884293, + 3.3683817957097517e-09, + 3.0092721203800465e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -4.210242110502804e-08, + -1.8890535358195848e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1142452, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2314116, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0 + ], + "min": [ + 0.9999998807907104, + 1.0000003576278687, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1142644, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2314692, + "componentType": 5126, + "count": 48, + "max": [ + 2.3841860752327193e-07, + 0.2637789845466614, + 3.5589334856922505e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2637782394886017, + -3.509898078846163e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1142836, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1484320, + "componentType": 5126, + "count": 48, + "max": [ + 1.658293236062036e-08, + -0.9896631240844727, + 0.1434117704629898, + 8.696665076968202e-08 + ], + "min": [ + -2.9354429997852094e-08, + -0.9896631240844727, + 0.14341169595718384, + 5.101724909195582e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1143028, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2315268, + "componentType": 5126, + "count": 47, + "max": [ + 1.0000008344650269, + 1.0000011920928955, + 1.000001311302185 + ], + "min": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1143216, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2315832, + "componentType": 5126, + "count": 48, + "max": [ + -1.9966597619713866e-07, + 0.24314360320568085, + 0.18703272938728333 + ], + "min": [ + -1.6627320746920304e-06, + 0.24314241111278534, + 0.187030628323555 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1143408, + "componentType": 5126, + "count": 20, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1485088, + "componentType": 5126, + "count": 20, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.37464439868927, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1143488, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2316408, + "componentType": 5126, + "count": 47, + "max": [ + 0.9999997615814209, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1143676, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2316972, + "componentType": 5126, + "count": 48, + "max": [ + -0.2441893219947815, + -0.13046208024024963, + 0.02965286187827587 + ], + "min": [ + -0.24419048428535461, + -0.13046309351921082, + 0.02965191751718521 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1143868, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1485408, + "componentType": 5126, + "count": 48, + "max": [ + 0.007415750529617071, + -0.07428387552499771, + -0.9923430681228638, + 0.09839737415313721 + ], + "min": [ + 0.0074157072231173515, + -0.07428393512964249, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1144060, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2317548, + "componentType": 5126, + "count": 48, + "max": [ + 0.9999986290931702, + 1.0000019073486328, + 1.0000003576278687 + ], + "min": [ + 0.999998152256012, + 1.000001311302185, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1144252, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2318124, + "componentType": 5126, + "count": 48, + "max": [ + 0.24341875314712524, + -0.1304638832807541, + 0.02965141087770462 + ], + "min": [ + 0.24341759085655212, + -0.1304655522108078, + 0.029650337994098663 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1144444, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1486176, + "componentType": 5126, + "count": 48, + "max": [ + 0.007417459972202778, + 0.07428373396396637, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.00741741806268692, + 0.07428368926048279, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1144636, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2318700, + "componentType": 5126, + "count": 46, + "max": [ + 0.9999991059303284, + 1.000002145767212, + 0.9999997019767761 + ], + "min": [ + 0.9999987483024597, + 1.0000016689300537, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1144820, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2319252, + "componentType": 5126, + "count": 48, + "max": [ + -0.04481542855501175, + 0.5170733332633972, + 0.010738377459347248 + ], + "min": [ + -0.04481685906648636, + 0.5170723795890808, + 0.01073763519525528 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1145012, + "componentType": 5126, + "count": 40, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1486944, + "componentType": 5126, + "count": 40, + "max": [ + -0.48984494805336, + 0.5097403526306152, + 0.5116332769393921, + 0.50938481092453 + ], + "min": [ + -0.5685471892356873, + 0.46361804008483887, + 0.49554434418678284, + 0.44555118680000305 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1145172, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2319828, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1145364, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2320404, + "componentType": 5126, + "count": 48, + "max": [ + 0.017870716750621796, + 0.23531661927700043, + -0.03527309373021126 + ], + "min": [ + 0.008935228921473026, + 0.23250755667686462, + -0.05596030876040459 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1145556, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1487584, + "componentType": 5126, + "count": 48, + "max": [ + 0.03733138367533684, + 0.5143935084342957, + 0.12283424288034439, + 0.9917377233505249 + ], + "min": [ + -0.5603394508361816, + -0.1291126310825348, + -0.32813239097595215, + 0.5601323246955872 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1145748, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2320980, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1145940, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2321556, + "componentType": 5126, + "count": 48, + "max": [ + 2.189789256590302e-07, + 0.4048619866371155, + 4.4430902335079736e-07 + ], + "min": [ + -2.4678772092556756e-07, + 0.4048610031604767, + -2.5957778149177102e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1146132, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1488352, + "componentType": 5126, + "count": 48, + "max": [ + 0.1530250906944275, + 0.4991835951805115, + 0.5045466423034668, + 0.9892528653144836 + ], + "min": [ + -0.2966615557670593, + 0.024391688406467438, + -0.057009365409612656, + 0.8481241464614868 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1146324, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2322132, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1146516, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2322708, + "componentType": 5126, + "count": 48, + "max": [ + 2.3194785114810657e-07, + 0.403270959854126, + 2.0728930394398049e-07 + ], + "min": [ + -1.6997992702272313e-07, + 0.40327024459838867, + -2.909522720528912e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1146708, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1489120, + "componentType": 5126, + "count": 48, + "max": [ + 0.04109487310051918, + 0.2823437750339508, + 0.08571071922779083, + 0.9994563460350037 + ], + "min": [ + -0.047107577323913574, + -0.5141515135765076, + -0.2612399160861969, + 0.854453444480896 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1146900, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2323284, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1147092, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2323860, + "componentType": 5126, + "count": 48, + "max": [ + -0.09804220497608185, + 0.21963109076023102, + -0.0024724151007831097 + ], + "min": [ + -0.0980430319905281, + 0.2196299433708191, + -0.0024730481673032045 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1147284, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1489888, + "componentType": 5126, + "count": 47, + "max": [ + -0.5146673321723938, + 0.0499749481678009, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974896013736725, + -0.08315930515527725, + 0.8518828749656677 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1147472, + "componentType": 5126, + "count": 43, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2324436, + "componentType": 5126, + "count": 43, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 1.0, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1147644, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2324952, + "componentType": 5126, + "count": 48, + "max": [ + 2.1908138592152682e-07, + 0.09750284254550934, + 4.99943780596368e-07 + ], + "min": [ + -2.5814526338763244e-07, + 0.09750211983919144, + 1.258887749600035e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1147836, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1490640, + "componentType": 5126, + "count": 48, + "max": [ + -0.4217608869075775, + 0.06273210048675537, + 0.009731842204928398, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.0627320185303688, + 0.009731737896800041, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1148028, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2325528, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1148220, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2326104, + "componentType": 5126, + "count": 48, + "max": [ + 0.016227105632424355, + 0.2130865752696991, + -0.0035592466592788696 + ], + "min": [ + 0.016226543113589287, + 0.21308544278144836, + -0.003559952136129141 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1148412, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1491408, + "componentType": 5126, + "count": 48, + "max": [ + -0.5430818796157837, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128094673157 + ], + "min": [ + -0.5430818796157837, + 0.06296971440315247, + -0.08177226036787033, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1148604, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2326680, + "componentType": 5126, + "count": 47, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1148792, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2327244, + "componentType": 5126, + "count": 48, + "max": [ + 2.510030867597379e-07, + 0.0846501961350441, + -1.3571844093007712e-08 + ], + "min": [ + -2.2720963954725448e-07, + 0.0846497043967247, + -3.8804984114904073e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1148984, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1492176, + "componentType": 5126, + "count": 48, + "max": [ + -0.4092182219028473, + 0.00202747480943799, + 0.008077423088252544, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274168346077204, + 0.008077364414930344, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1149176, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2327820, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1149368, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2328396, + "componentType": 5126, + "count": 48, + "max": [ + -0.11189629882574081, + 0.10988974571228027, + -0.051630955189466476 + ], + "min": [ + -0.11189702898263931, + 0.10988897830247879, + -0.05163157358765602 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1149560, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1492944, + "componentType": 5126, + "count": 47, + "max": [ + -0.43224582076072693, + -0.12903626263141632, + 0.15030042827129364, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1149748, + "componentType": 5126, + "count": 47, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2328972, + "componentType": 5126, + "count": 47, + "max": [ + 1.000000238418579, + 0.9999999403953552, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999995231628418, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1149936, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2329536, + "componentType": 5126, + "count": 48, + "max": [ + 3.044693812626065e-07, + 0.0851241871714592, + 2.4578113766438037e-07 + ], + "min": [ + -2.8658126893787994e-07, + 0.08512341231107712, + -2.5041092044375546e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1150128, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1493696, + "componentType": 5126, + "count": 48, + "max": [ + 0.14811435341835022, + -0.12198014557361603, + -0.12739083170890808, + 0.9731159210205078 + ], + "min": [ + 0.14811426401138306, + -0.1219802126288414, + -0.12739090621471405, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1150320, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2330112, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1150512, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2330688, + "componentType": 5126, + "count": 48, + "max": [ + -0.005584490951150656, + 0.16604532301425934, + -0.04539301246404648 + ], + "min": [ + -0.005585356615483761, + 0.16604410111904144, + -0.04539382830262184 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1150704, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1494464, + "componentType": 5126, + "count": 48, + "max": [ + 0.6181666851043701, + 0.7858038544654846, + 0.04548937454819679, + 0.09445524960756302 + ], + "min": [ + -0.617438793182373, + -0.7856271862983704, + -0.09391333162784576, + 0.0005130030331201851 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1150896, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2331264, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1151088, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2331840, + "componentType": 5126, + "count": 48, + "max": [ + 0.13640396296977997, + 0.2850479483604431, + 0.001940242014825344 + ], + "min": [ + 0.13640229403972626, + 0.2850469946861267, + 0.0019393805414438248 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1151280, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1495232, + "componentType": 5126, + "count": 48, + "max": [ + -3.98747239671593e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.4715735119352757e-07 + ], + "min": [ + -9.006487289298093e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1149150935807484e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1151472, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2332416, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1151664, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2332992, + "componentType": 5126, + "count": 48, + "max": [ + -0.13640229403972626, + 0.2850479483604431, + 0.0019402886973693967 + ], + "min": [ + -0.13640372455120087, + 0.2850467562675476, + 0.0019395621493458748 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1151856, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1496000, + "componentType": 5126, + "count": 48, + "max": [ + -5.305895811602568e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.611741554252148e-08 + ], + "min": [ + -9.818135993100441e-08, + -0.693580687046051, + -0.7203789949417114, + 3.3977844537957935e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1152048, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2333568, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0000001192092896, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1152240, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2334144, + "componentType": 5126, + "count": 48, + "max": [ + 0.27831587195396423, + 1.2483131885528564, + -0.5388992428779602 + ], + "min": [ + -0.449643075466156, + 0.5460788011550903, + -0.7747506499290466 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1152432, + "componentType": 5126, + "count": 27, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1496768, + "componentType": 5126, + "count": 27, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1152540, + "componentType": 5126, + "count": 39, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2334720, + "componentType": 5126, + "count": 39, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1152696, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2335188, + "componentType": 5126, + "count": 48, + "max": [ + 0.5804785490036011, + 1.152907371520996, + -0.2312024086713791 + ], + "min": [ + 0.2176646590232849, + 0.417879581451416, + -0.4734504818916321 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1152888, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1497200, + "componentType": 5126, + "count": 48, + "max": [ + 1.0, + 2.4521589928962643e-20, + 0.13754147291183472, + 0.307343065738678 + ], + "min": [ + -1.0, + -0.09378254413604736, + -5.52335052361741e-07, + 2.119927182496661e-28 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1153080, + "componentType": 5126, + "count": 42, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2335764, + "componentType": 5126, + "count": 42, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1153248, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2336268, + "componentType": 5126, + "count": 48, + "max": [ + 7.174909114837646e-05, + 7.99971166998148e-06, + -3.8445080008386867e-07 + ], + "min": [ + 2.8312206268310547e-07, + -7.428508251905441e-05, + -0.00010012312850449234 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1153440, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1497968, + "componentType": 5126, + "count": 48, + "max": [ + -0.9503704309463501, + 2.120599873478568e-08, + 2.0574258741135054e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.1033432773265304e-08, + -1.3846595869893008e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1153632, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2336844, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1153824, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2337420, + "componentType": 5126, + "count": 48, + "max": [ + 1.7881393432617188e-07, + 0.282500296831131, + 2.6996912083632196e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.28249919414520264, + -2.8441320409910986e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1154016, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1498736, + "componentType": 5126, + "count": 48, + "max": [ + -6.641732852585847e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.323925111293647e-07 + ], + "min": [ + -1.0205803846474737e-07, + 0.9818702340126038, + -0.1895543783903122, + 4.180564587841218e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1154208, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2337996, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1154400, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2338572, + "componentType": 5126, + "count": 48, + "max": [ + -0.3236270546913147, + 1.1638060808181763, + -0.3944944143295288 + ], + "min": [ + -0.6809836030006409, + 0.16859102249145508, + -0.7849990129470825 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1154592, + "componentType": 5126, + "count": 22, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1499504, + "componentType": 5126, + "count": 22, + "max": [ + -0.7071067690849304, + 4.125872123950103e-07, + 4.125872123950103e-07, + 0.7071067690849304 + ], + "min": [ + -0.7071067690849304, + 3.915137938292901e-07, + 3.915137938292901e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1154680, + "componentType": 5126, + "count": 38, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2339148, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1154832, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2339604, + "componentType": 5126, + "count": 48, + "max": [ + -0.40466010570526123, + 0.22430363297462463, + -0.22168439626693726 + ], + "min": [ + -0.7577728033065796, + -0.9694117307662964, + -0.4373323917388916 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1155024, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1499856, + "componentType": 5126, + "count": 48, + "max": [ + -0.7510102391242981, + -0.02600366622209549, + 5.493039338944072e-07, + 0.5766823887825012 + ], + "min": [ + -0.9945122003555298, + -0.4236670732498169, + -0.2489033341407776, + 5.778571576797731e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1155216, + "componentType": 5126, + "count": 46, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2340180, + "componentType": 5126, + "count": 46, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1155400, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2340732, + "componentType": 5126, + "count": 48, + "max": [ + 7.4356794357299805e-06, + 2.5040662876563147e-05, + -1.5989073745004134e-06 + ], + "min": [ + -3.90857458114624e-05, + -8.50582291604951e-05, + -0.00010667950118659064 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1155592, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1500624, + "componentType": 5126, + "count": 48, + "max": [ + -0.9503703713417053, + 1.0629412017237883e-08, + 2.2738820604217835e-08, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -1.654301406972536e-08, + -9.335479056460372e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1155784, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2341308, + "componentType": 5126, + "count": 48, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1155976, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2341884, + "componentType": 5126, + "count": 48, + "max": [ + 4.76837158203125e-07, + 0.28250008821487427, + 1.8063676066049084e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.28249964118003845, + -2.6193413305009017e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1156168, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1501392, + "componentType": 5126, + "count": 48, + "max": [ + -6.446875744359204e-08, + -0.7780592441558838, + 0.6099730730056763, + 0.10605498403310776 + ], + "min": [ + -0.10634379088878632, + -0.9818702340126038, + 0.1895543485879898, + 3.9821611608203966e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1156360, + "componentType": 5126, + "count": 48, + "max": [ + 0.8333333134651184 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2342460, + "componentType": 5126, + "count": 48, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1156552, + "componentType": 5126, + "count": 18, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2343036, + "componentType": 5126, + "count": 18, + "max": [ + 0.0, + 0.0, + 10.61367416381836 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1156624, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2343252, + "componentType": 5126, + "count": 38, + "max": [ + 0.3055783212184906, + 0.4869465231895447, + -1.1357077360153198 + ], + "min": [ + 0.030920162796974182, + -0.08483370393514633, + -1.5298041105270386 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1156776, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1502160, + "componentType": 5126, + "count": 37, + "max": [ + 0.20690734684467316, + 0.07410639524459839, + 0.6565874814987183, + 0.9977699518203735 + ], + "min": [ + -0.03552567958831787, + -0.05128273740410805, + -0.12641000747680664, + 0.7235000729560852 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1156924, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2343708, + "componentType": 5126, + "count": 31, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1157048, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2344080, + "componentType": 5126, + "count": 38, + "max": [ + 2.384186927884002e-07, + 0.0021283477544784546, + 2.3841900542720396e-07 + ], + "min": [ + -4.76836959251159e-07, + 0.0021272748708724976, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1157200, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1502752, + "componentType": 5126, + "count": 38, + "max": [ + 0.7071067690849304, + 3.2544627970310103e-07, + -2.936714906809357e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.970465402540867e-07, + -3.3129086318695045e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1157352, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2344536, + "componentType": 5126, + "count": 37, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1157500, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2344980, + "componentType": 5126, + "count": 38, + "max": [ + 0.1738191545009613, + 0.13409888744354248, + 1.9193555544916308e-06 + ], + "min": [ + 0.1738174855709076, + 0.13409781455993652, + -9.412125905328139e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1157652, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1503360, + "componentType": 5126, + "count": 38, + "max": [ + 0.06386587023735046, + 0.15497365593910217, + 0.03713168576359749, + 0.9952976107597351 + ], + "min": [ + -0.4059019088745117, + -0.2592250108718872, + -0.5456929206848145, + 0.7014855146408081 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1157804, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2345436, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999993443489075, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1157952, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2345880, + "componentType": 5126, + "count": 38, + "max": [ + 4.4843653768111835e-07, + 0.6356119513511658, + 9.494041250945884e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356111168861389, + -9.478360425418941e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1158104, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1503968, + "componentType": 5126, + "count": 38, + "max": [ + 0.7089053392410278, + 8.519005945117897e-08, + 1.884488654013694e-07, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.7434392535496954e-08, + -1.6839146610436728e-06, + 0.7053036689758301 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1158256, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2346336, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999995827674866, + 0.9999994039535522, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1158404, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2346780, + "componentType": 5126, + "count": 38, + "max": [ + -0.17381784319877625, + 0.13409878313541412, + 1.917230292747263e-06 + ], + "min": [ + -0.17381879687309265, + 0.13409805297851563, + -1.890484554678551e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1158556, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1504576, + "componentType": 5126, + "count": 38, + "max": [ + 0.0693177655339241, + 0.03082897886633873, + 0.27977150678634644, + 0.9599519968032837 + ], + "min": [ + -0.45049726963043213, + -0.24050478637218475, + 0.1932053565979004, + 0.838211715221405 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1158708, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2347236, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1158856, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2347680, + "componentType": 5126, + "count": 38, + "max": [ + 3.787504283536691e-07, + 0.6356118321418762, + 9.74212184701173e-07 + ], + "min": [ + -3.848208507406525e-08, + 0.635611355304718, + -9.597982852938003e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1159008, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1505184, + "componentType": 5126, + "count": 38, + "max": [ + 0.560810387134552, + 1.9269592144155467e-08, + 3.4882427257798554e-07, + 0.9965725541114807 + ], + "min": [ + 0.08272358775138855, + -2.546153332616541e-08, + 1.3792101682952307e-08, + 0.827944278717041 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1159160, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2348136, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1159312, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2348592, + "componentType": 5126, + "count": 38, + "max": [ + 4.768370445162873e-07, + 0.002128348220139742, + 2.3841825225190405e-07 + ], + "min": [ + -1.1920938902676426e-07, + 0.002127378946170211, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1159464, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1505792, + "componentType": 5126, + "count": 37, + "max": [ + -0.6469366550445557, + 0.25932008028030396, + 0.0544639527797699, + 0.7524511218070984 + ], + "min": [ + -0.6610875725746155, + -0.1021479144692421, + -0.27733132243156433, + 0.6556418538093567 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1159612, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2349048, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1159760, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2349492, + "componentType": 5126, + "count": 38, + "max": [ + 9.5367431640625e-07, + 0.2726660966873169, + 4.7629154664718953e-07 + ], + "min": [ + -1.9073486328125e-06, + 0.2726653814315796, + -4.853915811509069e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1159912, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1506384, + "componentType": 5126, + "count": 38, + "max": [ + 0.08500950038433075, + 0.07503049075603485, + 0.02510383352637291, + 0.9974192380905151 + ], + "min": [ + -0.061717499047517776, + 0.05683111399412155, + 0.010830225422978401, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1160064, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2349948, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1160216, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2350404, + "componentType": 5126, + "count": 38, + "max": [ + 0.04481805860996246, + 0.5170733332633972, + 0.013554112985730171 + ], + "min": [ + 0.043976202607154846, + 0.5110988020896912, + 0.003322809236124158 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1160368, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1506992, + "componentType": 5126, + "count": 38, + "max": [ + -0.4904356002807617, + -0.4335693418979645, + -0.4774683117866516, + 0.5271652340888977 + ], + "min": [ + -0.5785649418830872, + -0.5283881425857544, + -0.5093848705291748, + 0.3926224410533905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1160520, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2350860, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1160672, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2351316, + "componentType": 5126, + "count": 38, + "max": [ + 0.023542404174804688, + 0.2365146428346634, + -0.11545238643884659 + ], + "min": [ + 0.023540496826171875, + 0.23651178181171417, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1160824, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1507600, + "componentType": 5126, + "count": 38, + "max": [ + -0.021238183602690697, + 0.001976619940251112, + 0.2185075581073761, + 0.9983651041984558 + ], + "min": [ + -0.705502986907959, + -0.020786860957741737, + -0.40331313014030457, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1160976, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2351772, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1161128, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2352228, + "componentType": 5126, + "count": 37, + "max": [ + 2.5709331907819433e-07, + 0.4048631489276886, + 3.843442470952141e-07 + ], + "min": [ + -4.089675087470823e-07, + 0.40486031770706177, + -4.7526445001722095e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1161276, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1508208, + "componentType": 5126, + "count": 38, + "max": [ + 0.3748905658721924, + 0.5269917845726013, + -0.23531828820705414, + 0.812932014465332 + ], + "min": [ + 0.07776035368442535, + -0.12491858750581741, + -0.885048508644104, + 0.2601349651813507 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1161428, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2352672, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1161580, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2353128, + "componentType": 5126, + "count": 38, + "max": [ + 3.8137949331940035e-07, + 0.4032723903656006, + 1.788399401903007e-07 + ], + "min": [ + -6.860495318505855e-07, + 0.403269499540329, + -2.355031085699011e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1161732, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1508816, + "componentType": 5126, + "count": 38, + "max": [ + -0.11016573756933212, + 0.39465612173080444, + 0.12396229803562164, + 0.9817851185798645 + ], + "min": [ + -0.21605172753334045, + -0.264583021402359, + 0.025329679250717163, + 0.9037385582923889 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1161884, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2353584, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1162036, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2354040, + "componentType": 5126, + "count": 38, + "max": [ + 0.09804406017065048, + 0.21963204443454742, + -0.0024718926288187504 + ], + "min": [ + 0.0980415865778923, + 0.21962907910346985, + -0.00247315876185894 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1162188, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1509424, + "componentType": 5126, + "count": 38, + "max": [ + -0.6223366260528564, + -0.000981656601652503, + 0.033664219081401825, + 0.7820248603820801 + ], + "min": [ + -0.6223368644714355, + -0.000981715158559382, + 0.03366416320204735, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1162340, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2354496, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1162488, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2354940, + "componentType": 5126, + "count": 38, + "max": [ + 9.803266038943548e-07, + 0.09750291705131531, + 1.3189066976337926e-06 + ], + "min": [ + -9.306858714808186e-07, + 0.09750241786241531, + -6.240566676751769e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1162640, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1510032, + "componentType": 5126, + "count": 38, + "max": [ + -0.5302280187606812, + 0.0024660343769937754, + -0.053395915776491165, + 0.8461684584617615 + ], + "min": [ + -0.5302281975746155, + 0.0024658506736159325, + -0.053396012634038925, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1162792, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2355396, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1162944, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2355852, + "componentType": 5126, + "count": 38, + "max": [ + -0.016225038096308708, + 0.21308808028697968, + -0.0035590140614658594 + ], + "min": [ + -0.01622774451971054, + 0.21308541297912598, + -0.003560276934877038 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1163096, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1510640, + "componentType": 5126, + "count": 38, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110274583101273, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1163248, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2356308, + "componentType": 5126, + "count": 38, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1163400, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2356764, + "componentType": 5126, + "count": 38, + "max": [ + 9.460914611736371e-07, + 0.08465033024549484, + 2.2223537143872818e-07 + ], + "min": [ + -9.66076868280652e-07, + 0.08464958518743515, + -1.1948380915782764e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1163552, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1511248, + "componentType": 5126, + "count": 38, + "max": [ + -0.5015432238578796, + -0.001179669052362442, + -0.008243970572948456, + 0.8650925159454346 + ], + "min": [ + -0.5015432834625244, + -0.0011797207407653332, + -0.008244032971560955, + 0.8650924563407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1163704, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2357220, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1163856, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2357676, + "componentType": 5126, + "count": 38, + "max": [ + 0.11189880222082138, + 0.1098908931016922, + -0.051630135625600815 + ], + "min": [ + 0.11189550161361694, + 0.10988795012235641, + -0.05163247510790825 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1164008, + "componentType": 5126, + "count": 36, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1511856, + "componentType": 5126, + "count": 36, + "max": [ + -0.4573034942150116, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1164152, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2358132, + "componentType": 5126, + "count": 38, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1164304, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2358588, + "componentType": 5126, + "count": 38, + "max": [ + 2.8528350526357826e-07, + 0.08512423932552338, + 9.698497933641193e-07 + ], + "min": [ + -4.980863650416723e-07, + 0.08512351661920547, + -9.679429240350146e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1164456, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1512432, + "componentType": 5126, + "count": 38, + "max": [ + 0.022910570725798607, + 0.012835778295993805, + 0.6957964301109314, + 0.7177590131759644 + ], + "min": [ + 0.02291051484644413, + 0.012835724279284477, + 0.6957962512969971, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1164608, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2359044, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1164760, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2359500, + "componentType": 5126, + "count": 38, + "max": [ + 0.00558512844145298, + 0.16604545712471008, + -0.04539311304688454 + ], + "min": [ + 0.005583856254816055, + 0.16604292392730713, + -0.045393940061330795 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1164912, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1513040, + "componentType": 5126, + "count": 38, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188583135605, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501915633678436, + 0.023865362629294395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1165064, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2359956, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1165216, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2360412, + "componentType": 5126, + "count": 38, + "max": [ + 9.536742027194123e-07, + 0.5450075268745422, + 4.709069685304712e-07 + ], + "min": [ + -1.9073486328125e-06, + 0.545007050037384, + -4.820828394258569e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1165368, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1513648, + "componentType": 5126, + "count": 38, + "max": [ + 0.0903402715921402, + 0.1938180774450302, + 0.05033913627266884, + 0.9960857033729553 + ], + "min": [ + -0.10934893786907196, + -0.24730445444583893, + -0.11750379204750061, + 0.9634029269218445 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1165520, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2360868, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1165672, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2361324, + "componentType": 5126, + "count": 37, + "max": [ + 9.5367431640625e-07, + 0.11002874374389648, + 9.518117849438568e-07 + ], + "min": [ + -4.7683693082944956e-07, + 0.11002779006958008, + -9.555370752423187e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1165820, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1514256, + "componentType": 5126, + "count": 38, + "max": [ + 0.0720682218670845, + 0.3337618410587311, + 0.055016327649354935, + 0.997722864151001 + ], + "min": [ + -0.025982949882745743, + -0.24630612134933472, + -0.04469774663448334, + 0.9413387179374695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1165972, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2361768, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1166124, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2362224, + "componentType": 5126, + "count": 38, + "max": [ + 1.1862668998219306e-06, + 0.3614504337310791, + 0.026844047009944916 + ], + "min": [ + 7.094297416188056e-07, + 0.3614480495452881, + 0.026839278638362885 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1166276, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1514864, + "componentType": 5126, + "count": 38, + "max": [ + 1.0430811414607888e-07, + 3.1665013722204094e-08, + 1.1175874448099421e-08, + 1.0 + ], + "min": [ + 3.725290298461914e-08, + 2.794025899532926e-09, + -1.4901157641133977e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1166428, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2362680, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000005960464478, + 1.0, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 0.9999995231628418, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1166576, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2363124, + "componentType": 5126, + "count": 38, + "max": [ + 9.54572328737413e-07, + -0.15833842754364014, + -0.2537645101547241 + ], + "min": [ + 1.7971176191622362e-07, + -0.15834040939807892, + -0.2537684142589569 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1166728, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1515472, + "componentType": 5126, + "count": 38, + "max": [ + -0.998119592666626, + 2.4315218283277318e-08, + -1.9626139646788943e-07, + 0.06129666790366173 + ], + "min": [ + -0.998119592666626, + -9.136978285084751e-09, + -2.2593144421989564e-07, + 0.06129660829901695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1166880, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2363580, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000007152557373, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1167032, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2364036, + "componentType": 5126, + "count": 38, + "max": [ + 2.3841855067985307e-07, + 0.2539481222629547, + 7.77543505137146e-07 + ], + "min": [ + -2.0861624250301247e-07, + 0.2539461851119995, + -7.179388035183365e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1167184, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1516080, + "componentType": 5126, + "count": 38, + "max": [ + 0.15613597631454468, + -1.1447502146211264e-07, + 1.6866909646751083e-08, + 0.9877355694770813 + ], + "min": [ + 0.1561359018087387, + -1.4427534722472046e-07, + -1.305353158898015e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1167336, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2364492, + "componentType": 5126, + "count": 38, + "max": [ + 1.000001311302185, + 1.0000016689300537, + 1.0000014305114746 + ], + "min": [ + 1.0000008344650269, + 1.0000011920928955, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1167488, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2364948, + "componentType": 5126, + "count": 38, + "max": [ + 1.1920928955078125e-07, + 0.2533200681209564, + 1.1127440302516334e-06 + ], + "min": [ + -2.384185791015625e-07, + 0.2533184289932251, + -6.440339461732947e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1167640, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1516688, + "componentType": 5126, + "count": 38, + "max": [ + -0.09231439977884293, + -1.1880648465023569e-08, + 2.100663643034295e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -4.031827316453018e-08, + -9.288606328539117e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1167792, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2365404, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000008344650269, + 1.0 + ], + "min": [ + 0.9999999403953552, + 1.0000004768371582, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1167944, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2365860, + "componentType": 5126, + "count": 38, + "max": [ + 1.7881400538044545e-07, + 0.26377928256988525, + 1.8884966266341507e-06 + ], + "min": [ + -2.3841872121010965e-07, + 0.2637777626514435, + -1.7692873370833695e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1168096, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1517296, + "componentType": 5126, + "count": 38, + "max": [ + 1.5247309193000547e-08, + -0.9896631240844727, + 0.14341172575950623, + 9.023229807780808e-08 + ], + "min": [ + -1.0052381149705525e-08, + -0.9896631240844727, + 0.14341171085834503, + 5.803314806485105e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1168248, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2366316, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000008344650269, + 1.0000011920928955, + 1.000001311302185 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1168400, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2366772, + "componentType": 5126, + "count": 37, + "max": [ + -2.5730273023327754e-08, + 0.24314405024051666, + 0.18703380227088928 + ], + "min": [ + -2.522103613955551e-06, + 0.24314242601394653, + 0.1870305836200714 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1168548, + "componentType": 5126, + "count": 30, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1517904, + "componentType": 5126, + "count": 30, + "max": [ + 0.44783368706703186, + -0.23266470432281494, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1168668, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2367216, + "componentType": 5126, + "count": 37, + "max": [ + 0.9999997019767761, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0000001192092896, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1168816, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2367660, + "componentType": 5126, + "count": 38, + "max": [ + -0.24418941140174866, + -0.1304618865251541, + 0.029654746875166893 + ], + "min": [ + -0.24419023096561432, + -0.13046374917030334, + 0.02965060994029045 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1168968, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1518384, + "componentType": 5126, + "count": 38, + "max": [ + 0.007415748201310635, + -0.07428388297557831, + -0.9923430681228638, + 0.0983973890542984 + ], + "min": [ + 0.007415718398988247, + -0.07428393512964249, + -0.9923431277275085, + 0.09839732944965363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1169120, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2368116, + "componentType": 5126, + "count": 38, + "max": [ + 0.9999987483024597, + 1.0000019073486328, + 1.000000238418579 + ], + "min": [ + 0.999998152256012, + 1.000001311302185, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1169272, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2368572, + "componentType": 5126, + "count": 38, + "max": [ + 0.24341845512390137, + -0.13046425580978394, + 0.029651952907443047 + ], + "min": [ + 0.24341756105422974, + -0.1304658204317093, + 0.029648616909980774 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1169424, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1518992, + "componentType": 5126, + "count": 38, + "max": [ + 0.007417463231831789, + 0.07428373396396637, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.007417427841573954, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750081300735 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1169576, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2369028, + "componentType": 5126, + "count": 38, + "max": [ + 0.9999991059303284, + 1.0000022649765015, + 0.9999998211860657 + ], + "min": [ + 0.9999986290931702, + 1.0000019073486328, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1169728, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2369484, + "componentType": 5126, + "count": 37, + "max": [ + -0.04397626221179962, + 0.5230473875999451, + 0.018153030425310135 + ], + "min": [ + -0.044818051159381866, + 0.517072856426239, + 0.0079218540340662 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1169876, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1519600, + "componentType": 5126, + "count": 37, + "max": [ + -0.4793747365474701, + 0.5981279611587524, + 0.5207227468490601, + 0.44555115699768066 + ], + "min": [ + -0.5657967329025269, + 0.5097403526306152, + 0.3861413300037384, + 0.4112846553325653 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1170024, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2369928, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1170176, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2370384, + "componentType": 5126, + "count": 37, + "max": [ + 0.017871402204036713, + 0.23251208662986755, + -0.03527331352233887 + ], + "min": [ + 0.0178694948554039, + 0.23250636458396912, + -0.03527403622865677 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1170324, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1520192, + "componentType": 5126, + "count": 38, + "max": [ + -0.5603393316268921, + 0.5143935084342957, + 0.7036745548248291, + 0.6050107479095459 + ], + "min": [ + -0.698695957660675, + 0.0779498890042305, + -0.3281325399875641, + 0.3506040573120117 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1170476, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2370828, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 1.0, + 0.9999999403953552, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1170628, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2371284, + "componentType": 5126, + "count": 38, + "max": [ + 4.690681123520335e-07, + 0.40486180782318115, + 1.1714676020346815e-06 + ], + "min": [ + -3.608522547438042e-07, + 0.4048607647418976, + -7.54393568058731e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1170780, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1520800, + "componentType": 5126, + "count": 38, + "max": [ + -0.07451161742210388, + 0.689782977104187, + 0.1275138258934021, + 0.8614022135734558 + ], + "min": [ + -0.10740283131599426, + 0.4991835951805115, + -0.057009417563676834, + 0.7045596837997437 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1170932, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2371740, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1171084, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2372196, + "componentType": 5126, + "count": 38, + "max": [ + 9.450179163650319e-07, + 0.403270959854126, + 3.622009501214052e-07 + ], + "min": [ + -9.713638746688957e-07, + 0.4032701253890991, + -4.280182679394784e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1171236, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1521408, + "componentType": 5126, + "count": 38, + "max": [ + 0.023212525993585587, + 0.12564913928508759, + 0.052928484976291656, + 0.99972003698349 + ], + "min": [ + -0.020486798137426376, + 0.004130285698920488, + -0.18373091518878937, + 0.9746977090835571 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1171388, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2372652, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1171540, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2373108, + "componentType": 5126, + "count": 38, + "max": [ + -0.09804161638021469, + 0.2196315973997116, + -0.0024721650406718254 + ], + "min": [ + -0.09804468601942062, + 0.2196289747953415, + -0.002472862135618925 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1171692, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1522016, + "componentType": 5126, + "count": 38, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315928280353546, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1171844, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2373564, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1171996, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2374020, + "componentType": 5126, + "count": 38, + "max": [ + 4.805132789442723e-07, + 0.09750305861234665, + 1.3319995559868403e-06 + ], + "min": [ + -9.715968189993873e-07, + 0.09750217199325562, + -1.1813683187256174e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1172148, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1522624, + "componentType": 5126, + "count": 38, + "max": [ + -0.4217608869075775, + 0.06273210793733597, + 0.009731893427670002, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320259809494, + 0.009731744416058064, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1172300, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2374476, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1172452, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2374932, + "componentType": 5126, + "count": 38, + "max": [ + 0.01622813194990158, + 0.2130877524614334, + -0.003559081582352519 + ], + "min": [ + 0.01622586138546467, + 0.21308502554893494, + -0.0035602892749011517 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1172604, + "componentType": 5126, + "count": 36, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1523232, + "componentType": 5126, + "count": 36, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430819392204285, + 0.06296969950199127, + -0.08177223801612854, + 0.8333127498626709 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1172748, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2375388, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1172900, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2375844, + "componentType": 5126, + "count": 38, + "max": [ + 9.565270602251985e-07, + 0.0846506729722023, + 7.301455866581819e-07 + ], + "min": [ + -4.6832545308461704e-07, + 0.08464929461479187, + -7.418956897708995e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1173052, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1523808, + "componentType": 5126, + "count": 38, + "max": [ + -0.4092182219028473, + 0.0020274685230106115, + 0.008077440783381462, + 0.9123985767364502 + ], + "min": [ + -0.40921837091445923, + 0.0020274107810109854, + 0.008077391423285007, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1173204, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2376300, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1173356, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2376756, + "componentType": 5126, + "count": 38, + "max": [ + -0.11189500987529755, + 0.10989083349704742, + -0.05163067206740379 + ], + "min": [ + -0.1118972897529602, + 0.10988815128803253, + -0.051631566137075424 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1173508, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1524416, + "componentType": 5126, + "count": 38, + "max": [ + -0.43224573135375977, + -0.12903623282909393, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322458505630493, + -0.1290363073348999, + 0.15030036866664886, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1173660, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2377212, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1173812, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2377668, + "componentType": 5126, + "count": 38, + "max": [ + 9.288367550652765e-07, + 0.08512429893016815, + 4.2559560142763075e-07 + ], + "min": [ + -9.98090285975195e-07, + 0.08512353152036667, + -5.246973273642652e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1173964, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1525024, + "componentType": 5126, + "count": 38, + "max": [ + 0.14811435341835022, + -0.12198015302419662, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1174116, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2378124, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1174268, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2378580, + "componentType": 5126, + "count": 38, + "max": [ + -0.005584205500781536, + 0.16604730486869812, + -0.04539300873875618 + ], + "min": [ + -0.0055855801329016685, + 0.16604316234588623, + -0.045393988490104675 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1174420, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1525632, + "componentType": 5126, + "count": 38, + "max": [ + 0.6698365211486816, + 0.9150002598762512, + 0.05103708431124687, + 0.02634725160896778 + ], + "min": [ + -0.42772337794303894, + -0.8658348321914673, + -0.03409122675657272, + 0.0009699352085590363 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1174572, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2379036, + "componentType": 5126, + "count": 38, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1174724, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2379492, + "componentType": 5126, + "count": 38, + "max": [ + 0.13640610873699188, + 0.2850474715232849, + 0.001941158901900053 + ], + "min": [ + 0.13640134036540985, + 0.28504684567451477, + 0.001937827910296619 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1174876, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1526240, + "componentType": 5126, + "count": 38, + "max": [ + -5.9355937054306196e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.5591508883971983e-07 + ], + "min": [ + -8.090855629916405e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.1934271526570228e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1175028, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2379948, + "componentType": 5126, + "count": 38, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1175180, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2380404, + "componentType": 5126, + "count": 38, + "max": [ + -0.13640038669109344, + 0.2850474715232849, + 0.0019407651852816343 + ], + "min": [ + -0.13640420138835907, + 0.2850467264652252, + 0.0019388365326449275 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1175332, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1526848, + "componentType": 5126, + "count": 38, + "max": [ + -5.3058954563312e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.604171514685731e-08 + ], + "min": [ + -1.029429981258545e-07, + -0.693580687046051, + -0.7203789949417114, + 3.999505793217395e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1175484, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2380860, + "componentType": 5126, + "count": 37, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 1.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1175632, + "componentType": 5126, + "count": 28, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2381304, + "componentType": 5126, + "count": 28, + "max": [ + 0.5208719968795776, + 1.3792855739593506, + -0.6141818165779114 + ], + "min": [ + -0.10242094099521637, + -0.20644652843475342, + -0.7378857135772705 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1175744, + "componentType": 5126, + "count": 27, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2381640, + "componentType": 5126, + "count": 27, + "max": [ + 0.5804785490036011, + 1.0116084814071655, + -0.24350862205028534 + ], + "min": [ + 0.4480482339859009, + -0.5192718505859375, + -0.3652375340461731 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1175852, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1527456, + "componentType": 5126, + "count": 29, + "max": [ + -0.7260510325431824, + -2.0306151427007535e-08, + 0.15113428235054016, + 0.6772181987762451 + ], + "min": [ + -0.9985859990119934, + -0.09270712733268738, + 5.499563826560916e-07, + 1.123124098741492e-14 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1175968, + "componentType": 5126, + "count": 30, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2381964, + "componentType": 5126, + "count": 30, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1176088, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2382324, + "componentType": 5126, + "count": 38, + "max": [ + 5.607306957244873e-05, + -1.2889506706414977e-07, + -2.0260310407138604e-07 + ], + "min": [ + -4.783272743225098e-06, + -3.687928256113082e-05, + -9.868101915344596e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1176240, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1527920, + "componentType": 5126, + "count": 31, + "max": [ + -0.9503703713417053, + 8.239827486988816e-09, + 4.119912411226778e-09, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -5.9217950543200004e-09, + -9.736114137126606e-09, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1176364, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2382780, + "componentType": 5126, + "count": 29, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999997615814209 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1176480, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2383128, + "componentType": 5126, + "count": 38, + "max": [ + 2.384185791015625e-07, + 0.2825002074241638, + 8.888669640327862e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2824994921684265, + -8.814163834358624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1176632, + "componentType": 5126, + "count": 34, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1528416, + "componentType": 5126, + "count": 34, + "max": [ + -7.703084037302688e-08, + 0.9818702340126038, + -0.1895543485879898, + 0.05137898400425911 + ], + "min": [ + -0.10723292827606201, + 0.8047910332679749, + -0.5815262198448181, + 4.106422863969783e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1176768, + "componentType": 5126, + "count": 35, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2383584, + "componentType": 5126, + "count": 35, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1176908, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2384004, + "componentType": 5126, + "count": 29, + "max": [ + -0.1404869556427002, + 0.5460788011550903, + -0.5952984690666199 + ], + "min": [ + -0.8797179460525513, + 0.3470689058303833, + -0.7481747269630432 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177024, + "componentType": 5126, + "count": 28, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2384352, + "componentType": 5126, + "count": 28, + "max": [ + -0.33660733699798584, + 0.1837902069091797, + -0.2435074895620346 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.33249983191490173 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177136, + "componentType": 5126, + "count": 19, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1528960, + "componentType": 5126, + "count": 19, + "max": [ + 0.9929701089859009, + 0.09051963686943054, + 0.000901096616871655, + 0.4115120470523834 + ], + "min": [ + -0.9952067136764526, + -0.20676521956920624, + -5.484521921061969e-07, + 6.537721475297076e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1177212, + "componentType": 5126, + "count": 15, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2384688, + "componentType": 5126, + "count": 15, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177272, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2384868, + "componentType": 5126, + "count": 38, + "max": [ + 4.917383193969727e-07, + 1.6617429992038524e-06, + 9.938189577951562e-07 + ], + "min": [ + -1.843273639678955e-05, + -1.0688609108910896e-05, + -4.968638677382842e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177424, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1529264, + "componentType": 5126, + "count": 20, + "max": [ + -0.9503703713417053, + 3.2348119738401238e-09, + 1.5763184535444452e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.4991286434451467e-08, + -1.3381796115652378e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1177504, + "componentType": 5126, + "count": 20, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2385324, + "componentType": 5126, + "count": 20, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177584, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2385564, + "componentType": 5126, + "count": 38, + "max": [ + 2.384185791015625e-07, + 0.2825015187263489, + 3.587170738228451e-07 + ], + "min": [ + -4.768373855768004e-07, + 0.2824987769126892, + -9.275429420085857e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177736, + "componentType": 5126, + "count": 25, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1529584, + "componentType": 5126, + "count": 25, + "max": [ + -7.780751332120417e-08, + -0.8155511617660522, + 0.5767431855201721, + 0.030243301764130592 + ], + "min": [ + -0.03645579516887665, + -0.9818702340126038, + 0.1895543485879898, + 4.24095105699962e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1177836, + "componentType": 5126, + "count": 24, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2386020, + "componentType": 5126, + "count": 24, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1177932, + "componentType": 5126, + "count": 53, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2386308, + "componentType": 5126, + "count": 53, + "max": [ + 0.0, + 0.0, + 4.386784076690674 + ], + "min": [ + 0.0, + 0.0, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1178144, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2386944, + "componentType": 5126, + "count": 71, + "max": [ + 0.10204041749238968, + 0.4869465231895447, + -1.1357077360153198 + ], + "min": [ + 0.030920162796974182, + -0.08483370393514633, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1178428, + "componentType": 5126, + "count": 64, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1529984, + "componentType": 5126, + "count": 64, + "max": [ + 0.20690734684467316, + 0.010921822860836983, + 0.6565874814987183, + 0.9736076593399048 + ], + "min": [ + -0.03552567958831787, + -0.09508305042982101, + 0.22757799923419952, + 0.7235000729560852 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1178684, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2387796, + "componentType": 5126, + "count": 52, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1178892, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2388420, + "componentType": 5126, + "count": 73, + "max": [ + 7.152555099310121e-07, + 0.0021278709173202515, + 4.768370445162873e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.0021271556615829468, + -2.3841920437916997e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1179184, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1531008, + "componentType": 5126, + "count": 73, + "max": [ + 0.7071067690849304, + 3.2544627970310103e-07, + -2.936714906809357e-07, + 0.7454895973205566 + ], + "min": [ + 0.6255844235420227, + -0.19778470695018768, + -0.11734834313392639, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1179476, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2389296, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1179764, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2390160, + "componentType": 5126, + "count": 73, + "max": [ + 0.1738191545009613, + 0.1340991109609604, + 9.807102969716652e-07 + ], + "min": [ + 0.17381736636161804, + 0.13409747183322906, + -1.420099351889803e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1180056, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1532176, + "componentType": 5126, + "count": 73, + "max": [ + 0.09087420254945755, + 0.00368653517216444, + -0.01610708050429821, + 0.976594090461731 + ], + "min": [ + -0.5913293361663818, + -0.3052161931991577, + -0.5456928610801697, + 0.7014855742454529 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1180348, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2391036, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.999999463558197, + 0.9999993443489075, + 0.9999992251396179 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1180640, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2391912, + "componentType": 5126, + "count": 73, + "max": [ + 9.08086690287746e-08, + 0.6356119513511658, + 4.628373631021532e-07 + ], + "min": [ + -2.6681919962356915e-07, + 0.6356109976768494, + -4.7352597221106407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1180932, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1533344, + "componentType": 5126, + "count": 73, + "max": [ + 0.8142579197883606, + 6.824093645718676e-08, + 2.1782523162983125e-07, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -3.6877686682146305e-08, + -1.4680750837214873e-06, + 0.5805032849311829 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1181224, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2392788, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999994039535522, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1181516, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2393664, + "componentType": 5126, + "count": 73, + "max": [ + -0.1738177239894867, + 0.13409900665283203, + 9.679581580712693e-07 + ], + "min": [ + -0.1738191545009613, + 0.13409771025180817, + -1.4179739764585975e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1181808, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1534512, + "componentType": 5126, + "count": 73, + "max": [ + 0.0693177655339241, + -0.048952143639326096, + 0.259628027677536, + 0.9793519377708435 + ], + "min": [ + -0.7123750448226929, + -0.3016790449619293, + -0.2363416999578476, + 0.6456418633460999 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1182100, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2394540, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999994039535522, + 0.9999995231628418, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1182392, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2395416, + "componentType": 5126, + "count": 73, + "max": [ + 1.552330388676637e-07, + 0.6356119513511658, + 4.707923437763384e-07 + ], + "min": [ + -2.1729601940023713e-07, + 0.6356109976768494, + -4.778277684636123e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1182684, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1535680, + "componentType": 5126, + "count": 73, + "max": [ + 0.8510265946388245, + 7.451981076656011e-08, + 8.588983178015042e-07, + 0.9844071269035339 + ], + "min": [ + 0.17590492963790894, + -1.1444857506148765e-07, + -7.994685802259482e-07, + 0.5251226425170898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1182976, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2396292, + "componentType": 5126, + "count": 72, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1183264, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2397156, + "componentType": 5126, + "count": 73, + "max": [ + 4.768373287333816e-07, + 0.002127632964402437, + 2.3841845120387006e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.0021271551959216595, + -4.770369059770019e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1183556, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1536848, + "componentType": 5126, + "count": 71, + "max": [ + -0.6495169997215271, + -0.1021478995680809, + 0.09083744883537292, + 0.7514832615852356 + ], + "min": [ + -0.730140209197998, + -0.1414019912481308, + 0.05446393042802811, + 0.6623060703277588 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1183840, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2398032, + "componentType": 5126, + "count": 72, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1184128, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2398896, + "componentType": 5126, + "count": 72, + "max": [ + 4.76837158203125e-07, + 0.27266621589660645, + 2.3802935800176783e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.27266550064086914, + -2.4712940671633987e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1184416, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1537984, + "componentType": 5126, + "count": 73, + "max": [ + 0.08500948548316956, + 0.05683118849992752, + 0.02510383352637291, + 0.9944412708282471 + ], + "min": [ + 0.08500942587852478, + 0.05683111399412155, + 0.02510378696024418, + 0.9944412708282471 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1184708, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2399760, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1185000, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2400636, + "componentType": 5126, + "count": 73, + "max": [ + 0.044816166162490845, + 0.5170730948448181, + 0.013554351404309273 + ], + "min": [ + 0.043976157903671265, + 0.5110984444618225, + 0.0033228732645511627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1185292, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1539152, + "componentType": 5126, + "count": 61, + "max": [ + -0.4904356002807617, + -0.4335693418979645, + -0.477468341588974, + 0.5203524827957153 + ], + "min": [ + -0.5785650014877319, + -0.5283882021903992, + -0.5093848705291748, + 0.3926224410533905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1185536, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2401512, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1185828, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2402388, + "componentType": 5126, + "count": 73, + "max": [ + 0.09144173562526703, + 0.23651368916034698, + -0.05953579768538475 + ], + "min": [ + 0.023540973663330078, + 0.22815628349781036, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1186120, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1540128, + "componentType": 5126, + "count": 72, + "max": [ + -0.011906551197171211, + 0.27185288071632385, + -0.34933945536613464, + 0.9006041288375854 + ], + "min": [ + -0.705502986907959, + -0.020786859095096588, + -0.41723617911338806, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1186408, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2403264, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1186700, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2404140, + "componentType": 5126, + "count": 73, + "max": [ + 4.7342115294668474e-07, + 0.4048615097999573, + 6.876907150399347e-07 + ], + "min": [ + -2.593329782030196e-07, + 0.40486088395118713, + -2.7442857231108064e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1186992, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1541280, + "componentType": 5126, + "count": 73, + "max": [ + 0.07776041328907013, + 0.5269917845726013, + -0.23531830310821533, + 0.8170403838157654 + ], + "min": [ + -0.21933774650096893, + 0.21186089515686035, + -0.7244240641593933, + 0.64152592420578 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1187284, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2405016, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1187572, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2405880, + "componentType": 5126, + "count": 73, + "max": [ + 5.966898015685729e-07, + 0.403270959854126, + 4.361228036486864e-07 + ], + "min": [ + -6.130700853645976e-07, + 0.40327000617980957, + -5.187964688957436e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1187864, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1542448, + "componentType": 5126, + "count": 72, + "max": [ + 0.15963657200336456, + 0.39672765135765076, + 0.2815295159816742, + 0.9981614351272583 + ], + "min": [ + -0.11016581207513809, + 0.0037713292986154556, + -0.0507061667740345, + 0.8631190657615662 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1188152, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2406756, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1188444, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2407632, + "componentType": 5126, + "count": 73, + "max": [ + 0.09804445505142212, + 0.2196311205625534, + -0.0024724630638957024 + ], + "min": [ + 0.09804163873195648, + 0.21963007748126984, + -0.002472976455464959 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1188736, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1543600, + "componentType": 5126, + "count": 73, + "max": [ + -0.622336745262146, + -0.000981657998636365, + 0.03366423770785332, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.0009817281970754266, + 0.03366415575146675, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1189028, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2408508, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1189316, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2409372, + "componentType": 5126, + "count": 73, + "max": [ + 9.695748985905084e-07, + 0.09750315546989441, + 8.389804975195148e-07 + ], + "min": [ + -4.6260819885901583e-07, + 0.09750223159790039, + 7.975278748517667e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1189608, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1544768, + "componentType": 5126, + "count": 73, + "max": [ + -0.5302279591560364, + 0.0024659663904458284, + -0.05339591205120087, + 0.8461685180664063 + ], + "min": [ + -0.5302282571792603, + 0.002465883269906044, + -0.05339599400758743, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1189900, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2410248, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1190192, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2411124, + "componentType": 5126, + "count": 73, + "max": [ + -0.01622587814927101, + 0.21308653056621552, + -0.00355926132760942 + ], + "min": [ + -0.016227804124355316, + 0.21308548748493195, + -0.0035597514361143112 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1190484, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1545936, + "componentType": 5126, + "count": 73, + "max": [ + -0.626492977142334, + -0.07110267132520676, + 0.07480836659669876, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110273092985153, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1190776, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2412000, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1191068, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2412876, + "componentType": 5126, + "count": 73, + "max": [ + 4.7072387587832054e-07, + 0.0846502035856247, + -1.6120077717118875e-08 + ], + "min": [ + -4.877110200141033e-07, + 0.08464968204498291, + -5.507575906449347e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1191360, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1547104, + "componentType": 5126, + "count": 73, + "max": [ + -0.5015432834625244, + -0.0011796534527093172, + -0.008243908174335957, + 0.8650925159454346 + ], + "min": [ + -0.501543402671814, + -0.0011796967592090368, + -0.00824405811727047, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1191652, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2413752, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1191944, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2414628, + "componentType": 5126, + "count": 73, + "max": [ + 0.11189738661050797, + 0.10989001393318176, + -0.051630642265081406 + ], + "min": [ + 0.11189577728509903, + 0.10988869518041611, + -0.05163174495100975 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1192236, + "componentType": 5126, + "count": 66, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1548272, + "componentType": 5126, + "count": 66, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1192500, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2415504, + "componentType": 5126, + "count": 73, + "max": [ + 1.0, + 1.0, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1192792, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2416380, + "componentType": 5126, + "count": 73, + "max": [ + 4.6537726916540123e-07, + 0.08512470871210098, + 2.614887364416063e-07 + ], + "min": [ + -4.980863650416723e-07, + 0.08512352406978607, + -4.616426849679556e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1193084, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1549328, + "componentType": 5126, + "count": 73, + "max": [ + 0.022910568863153458, + 0.012835782952606678, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910501807928085, + 0.012835709378123283, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1193376, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2417256, + "componentType": 5126, + "count": 72, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 1.0, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1193664, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2418120, + "componentType": 5126, + "count": 73, + "max": [ + 0.005585915874689817, + 0.166045144200325, + -0.045393239706754684 + ], + "min": [ + 0.005583935882896185, + 0.1660436987876892, + -0.045393817126750946 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1193956, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1550496, + "componentType": 5126, + "count": 73, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.02386540360748768 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350192308425903, + 0.023865357041358948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1194248, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2418996, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1194540, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2419872, + "componentType": 5126, + "count": 73, + "max": [ + 7.152557373046875e-07, + 0.5450077652931213, + 4.709066843133769e-07 + ], + "min": [ + -7.152557373046875e-07, + 0.5450068116188049, + -2.438352737499372e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1194832, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1551664, + "componentType": 5126, + "count": 73, + "max": [ + -0.007215093821287155, + 0.1938181072473526, + -0.042228199541568756, + 0.9904928803443909 + ], + "min": [ + -0.10934891551733017, + 0.12555047869682312, + -0.11750378459692001, + 0.9678172469139099 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1195124, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2420748, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1195416, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2421624, + "componentType": 5126, + "count": 73, + "max": [ + 4.76837158203125e-07, + 0.11002874374389648, + 4.7497454147560347e-07 + ], + "min": [ + -4.768372150465439e-07, + 0.11002779006958008, + -4.78699803352356e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1195708, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1552832, + "componentType": 5126, + "count": 73, + "max": [ + 0.10689263790845871, + 0.3337618410587311, + 0.04466269165277481, + 0.9901782870292664 + ], + "min": [ + -0.025982949882745743, + 0.12989990413188934, + -0.04469774663448334, + 0.9413387179374695 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1196000, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2422500, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.999999463558197, + 0.9999994039535522, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1196292, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2423376, + "componentType": 5126, + "count": 73, + "max": [ + 1.424685478923493e-06, + 0.3614504337310791, + 0.026841901242733 + ], + "min": [ + 7.094297416188056e-07, + 0.3614480495452881, + 0.02684023231267929 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1196584, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1554000, + "componentType": 5126, + "count": 73, + "max": [ + 1.1175870895385742e-07, + 4.284088106487616e-08, + 2.4214376281861405e-08, + 1.0 + ], + "min": [ + 5.215406062575312e-08, + 5.122331891982412e-09, + -1.3038518709151958e-08, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1196876, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2424252, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000007152557373, + 0.9999998807907104, + 1.0000007152557373 + ], + "min": [ + 1.0, + 0.9999994039535522, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1197168, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2425128, + "componentType": 5126, + "count": 73, + "max": [ + 1.0141767461391282e-06, + -0.1583380550146103, + -0.2537647485733032 + ], + "min": [ + 2.989210656778596e-07, + -0.15834082663059235, + -0.25376617908477783 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1197460, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1555168, + "componentType": 5126, + "count": 73, + "max": [ + -0.998119592666626, + 3.1180931614471774e-08, + -1.9872892664807296e-07, + 0.061296653002500534 + ], + "min": [ + -0.998119592666626, + -1.2525097403681684e-08, + -2.3925517211864644e-07, + 0.06129658594727516 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1197752, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2426004, + "componentType": 5126, + "count": 71, + "max": [ + 1.0000008344650269, + 1.0000008344650269, + 0.9999721050262451 + ], + "min": [ + 1.000000238418579, + 1.0000004768371582, + 0.9999718070030212 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1198036, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2426856, + "componentType": 5126, + "count": 73, + "max": [ + 3.576279254957626e-07, + 0.25394776463508606, + 4.0367291376242065e-07 + ], + "min": [ + -2.3841863594498136e-07, + 0.25394630432128906, + -6.842593620604021e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1198328, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1556336, + "componentType": 5126, + "count": 73, + "max": [ + 0.15613597631454468, + -1.0631607239020013e-07, + 2.965065348803364e-08, + 0.9877355694770813 + ], + "min": [ + 0.1561359167098999, + -1.346906657317959e-07, + -2.370350316027725e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1198620, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2427732, + "componentType": 5126, + "count": 72, + "max": [ + 1.000001311302185, + 1.0000017881393433, + 1.0000014305114746 + ], + "min": [ + 1.0000008344650269, + 1.0000011920928955, + 1.0000008344650269 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1198908, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2428596, + "componentType": 5126, + "count": 73, + "max": [ + 2.384185791015625e-07, + 0.25332018733024597, + 4.6871002723491983e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.253318190574646, + -2.3435501361745992e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1199200, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1557504, + "componentType": 5126, + "count": 73, + "max": [ + -0.09231439977884293, + 5.70217606465917e-09, + 2.447352365209099e-08, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -2.9233103049364217e-08, + -2.4024737754757552e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1199492, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2429472, + "componentType": 5126, + "count": 72, + "max": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0 + ], + "min": [ + 0.9999999403953552, + 1.0000004768371582, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1199780, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2430336, + "componentType": 5126, + "count": 73, + "max": [ + 2.3841860752327193e-07, + 0.26377910375595093, + 5.168276402400807e-07 + ], + "min": [ + -3.576278970740532e-07, + 0.2637782096862793, + -6.93906997639715e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1200072, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1558672, + "componentType": 5126, + "count": 73, + "max": [ + 1.9608519252756196e-08, + -0.9896631240844727, + 0.1434117704629898, + 9.790667832021427e-08 + ], + "min": [ + -1.3538816290292743e-08, + -0.9896631240844727, + 0.14341171085834503, + 6.132586349849589e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1200364, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2431212, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000008344650269, + 1.0000011920928955, + 1.000001311302185 + ], + "min": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1200656, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2432088, + "componentType": 5126, + "count": 73, + "max": [ + 3.893328255344386e-07, + 0.24314412474632263, + 0.18703357875347137 + ], + "min": [ + -1.4741005998075707e-06, + 0.2431422472000122, + 0.18703106045722961 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1200948, + "componentType": 5126, + "count": 47, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1559840, + "componentType": 5126, + "count": 47, + "max": [ + 0.44783368706703186, + -0.23266471922397614, + 0.3746444582939148, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1201136, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2432964, + "componentType": 5126, + "count": 73, + "max": [ + 0.9999998211860657, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1201428, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2433840, + "componentType": 5126, + "count": 73, + "max": [ + -0.2441890686750412, + -0.1304617077112198, + 0.029653167352080345 + ], + "min": [ + -0.24419055879116058, + -0.13046321272850037, + 0.029650939628481865 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1201720, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1560592, + "componentType": 5126, + "count": 73, + "max": [ + 0.007415755186229944, + -0.0742838904261589, + -0.9923431277275085, + 0.0983974039554596 + ], + "min": [ + 0.007415710017085075, + -0.07428394258022308, + -0.9923431277275085, + 0.09839735925197601 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1202012, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2434716, + "componentType": 5126, + "count": 73, + "max": [ + 0.9999988675117493, + 1.0000017881393433, + 1.000000238418579 + ], + "min": [ + 0.999998152256012, + 1.0000014305114746, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1202304, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2435592, + "componentType": 5126, + "count": 72, + "max": [ + 0.24341844022274017, + -0.1304643303155899, + 0.02965141087770462 + ], + "min": [ + 0.24341772496700287, + -0.13046607375144958, + 0.02964932471513748 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1202592, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1561760, + "componentType": 5126, + "count": 73, + "max": [ + 0.0074174595065414906, + 0.07428373396396637, + 0.9923431277275085, + 0.09839753061532974 + ], + "min": [ + 0.007417426444590092, + 0.07428368926048279, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1202884, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2436456, + "componentType": 5126, + "count": 72, + "max": [ + 0.9999991059303284, + 1.000002384185791, + 0.9999999403953552 + ], + "min": [ + 0.9999986290931702, + 1.0000019073486328, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1203172, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2437320, + "componentType": 5126, + "count": 73, + "max": [ + -0.043976180255413055, + 0.5230477452278137, + 0.018153097480535507 + ], + "min": [ + -0.04481615126132965, + 0.517072856426239, + 0.007921602576971054 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1203464, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1562928, + "componentType": 5126, + "count": 73, + "max": [ + -0.4793747365474701, + 0.5981279611587524, + 0.5175249576568604, + 0.44555118680000305 + ], + "min": [ + -0.5657967925071716, + 0.5097403526306152, + 0.3861413300037384, + 0.4112847149372101 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1203756, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2438196, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1204048, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2439072, + "componentType": 5126, + "count": 73, + "max": [ + 0.11090686917304993, + 0.23250851035118103, + -0.01256907545030117 + ], + "min": [ + 0.017870262265205383, + 0.21128763258457184, + -0.03527380898594856 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1204340, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1564096, + "componentType": 5126, + "count": 73, + "max": [ + -0.5603393316268921, + 0.5145396590232849, + -0.3281323313713074, + 0.560132622718811 + ], + "min": [ + -0.6414767503738403, + 0.4798036813735962, + -0.43908101320266724, + 0.4206050634384155 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1204632, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2439948, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000005960464478 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1204924, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2440824, + "componentType": 5126, + "count": 73, + "max": [ + 5.571081374000642e-07, + 0.40486159920692444, + 4.4905385720994673e-07 + ], + "min": [ + -3.597968429858156e-07, + 0.4048610031604767, + -2.709437580961094e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1205216, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1565264, + "componentType": 5126, + "count": 73, + "max": [ + -0.0745115876197815, + 0.4991837739944458, + -0.05700933560729027, + 0.8614022135734558 + ], + "min": [ + -0.07451165467500687, + 0.4991835653781891, + -0.05700942501425743, + 0.8614020943641663 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1205508, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2441700, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1205800, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2442576, + "componentType": 5126, + "count": 73, + "max": [ + 9.327307566309173e-07, + 0.40327078104019165, + 7.788456457547e-08 + ], + "min": [ + -4.901517058897298e-07, + 0.40327030420303345, + -2.3214300881591043e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1206092, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1566432, + "componentType": 5126, + "count": 73, + "max": [ + 0.11175002157688141, + 0.00420537730678916, + 0.026042770594358444, + 0.999443769454956 + ], + "min": [ + 0.02321251668035984, + -0.22866947948932648, + -0.023572098463773727, + 0.9667181372642517 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1206384, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2443452, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1206676, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2444328, + "componentType": 5126, + "count": 73, + "max": [ + -0.0980415940284729, + 0.2196308672428131, + -0.0024724213872104883 + ], + "min": [ + -0.0980435311794281, + 0.2196303755044937, + -0.0024729620199650526 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1206968, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1567600, + "componentType": 5126, + "count": 73, + "max": [ + -0.5146673321723938, + 0.049974940717220306, + -0.08315923064947128, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488483786583, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1207260, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2445204, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1207548, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2446068, + "componentType": 5126, + "count": 73, + "max": [ + 4.612762438682694e-07, + 0.09750284254550934, + 5.39683810529823e-07 + ], + "min": [ + -4.938167421641992e-07, + 0.09750235825777054, + 2.408230841410841e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1207840, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1568768, + "componentType": 5126, + "count": 73, + "max": [ + -0.4217608869075775, + 0.06273209303617477, + 0.009731822647154331, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.0627320259809494, + 0.009731772355735302, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1208132, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2446944, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1208424, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2447820, + "componentType": 5126, + "count": 73, + "max": [ + 0.016227778047323227, + 0.21308641135692596, + -0.003559358883649111 + ], + "min": [ + 0.01622590236365795, + 0.21308568120002747, + -0.003559649921953678 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1208716, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1569936, + "componentType": 5126, + "count": 72, + "max": [ + -0.5430817604064941, + 0.06296974420547485, + -0.08177220821380615, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177223801612854, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1209004, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2448696, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1209296, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2449572, + "componentType": 5126, + "count": 73, + "max": [ + 9.62271542448434e-07, + 0.0846501961350441, + -7.407758317867774e-08 + ], + "min": [ + -4.66273348820323e-07, + 0.08464983105659485, + -3.751144959096564e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1209588, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1571088, + "componentType": 5126, + "count": 73, + "max": [ + -0.4092182219028473, + 0.002027482958510518, + 0.008077435195446014, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.002027421025559306, + 0.008077369071543217, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1209880, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2450448, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1210172, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2451324, + "componentType": 5126, + "count": 73, + "max": [ + -0.11189616471529007, + 0.10988987982273102, + -0.0516309030354023 + ], + "min": [ + -0.11189733445644379, + 0.10988877713680267, + -0.051631852984428406 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1210464, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1572256, + "componentType": 5126, + "count": 73, + "max": [ + -0.43224576115608215, + -0.12903626263141632, + 0.15030042827129364, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1210756, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2452200, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1211048, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2453076, + "componentType": 5126, + "count": 73, + "max": [ + 4.5420134142659663e-07, + 0.08512400090694427, + 2.424555134439288e-07 + ], + "min": [ + -7.444056109306985e-07, + 0.08512366563081741, + -2.691730003334669e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1211340, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1573424, + "componentType": 5126, + "count": 73, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739086151123047, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219802126288414, + -0.12739090621471405, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1211632, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2453952, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1211924, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2454828, + "componentType": 5126, + "count": 73, + "max": [ + -0.005583945661783218, + 0.1660451889038086, + -0.04539313539862633 + ], + "min": [ + -0.005586298648267984, + 0.16604426503181458, + -0.04539372771978378 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1212216, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1574592, + "componentType": 5126, + "count": 73, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501919358968735, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350188583135605, + 0.023865358904004097 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1212508, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2455704, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1212800, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2456580, + "componentType": 5126, + "count": 73, + "max": [ + 0.13640372455120087, + 0.285047709941864, + 0.0019402148900553584 + ], + "min": [ + 0.13640253245830536, + 0.2850467562675476, + 0.001939243869856 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1213092, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1575760, + "componentType": 5126, + "count": 73, + "max": [ + -5.473446407222582e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.4920604485268996e-07 + ], + "min": [ + -9.436261905193533e-08, + -0.693580687046051, + -0.7203789949417114, + 1.1166326174816277e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1213384, + "componentType": 5126, + "count": 70, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2457456, + "componentType": 5126, + "count": 70, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1213664, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2458296, + "componentType": 5126, + "count": 73, + "max": [ + -0.13640229403972626, + 0.2850474715232849, + 0.0019407651852816343 + ], + "min": [ + -0.13640420138835907, + 0.2850465178489685, + 0.001939326641149819 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1213956, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1576928, + "componentType": 5126, + "count": 73, + "max": [ + -5.17670599720077e-08, + -0.6935806274414063, + -0.7203789353370667, + 7.604171514685731e-08 + ], + "min": [ + -1.0335993749777117e-07, + -0.693580687046051, + -0.7203789949417114, + 3.3778192687350383e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1214248, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2459172, + "componentType": 5126, + "count": 73, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1214540, + "componentType": 5126, + "count": 54, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2460048, + "componentType": 5126, + "count": 54, + "max": [ + 0.33981823921203613, + 1.4548722505569458, + -0.27855268120765686 + ], + "min": [ + -0.10242094099521637, + 0.5460788011550903, + -0.7639324069023132 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1214756, + "componentType": 5126, + "count": 54, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2460696, + "componentType": 5126, + "count": 54, + "max": [ + 0.5804785490036011, + 1.0116084814071655, + -0.2229161560535431 + ], + "min": [ + 0.2687925696372986, + -0.42873358726501465, + -0.3551136255264282 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1214972, + "componentType": 5126, + "count": 48, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1578096, + "componentType": 5126, + "count": 48, + "max": [ + -0.8412700891494751, + 0.019024701789021492, + 0.15113428235054016, + 0.5399556756019592 + ], + "min": [ + -0.9985859990119934, + -0.09270712733268738, + -0.02831863984465599, + 1.123124098741492e-14 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1215164, + "componentType": 5126, + "count": 36, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2461344, + "componentType": 5126, + "count": 36, + "max": [ + 1.0, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1215308, + "componentType": 5126, + "count": 73, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2461776, + "componentType": 5126, + "count": 73, + "max": [ + 5.0708651542663574e-05, + 6.8642402766272426e-06, + -2.0260310407138604e-07 + ], + "min": [ + 2.8312206268310547e-07, + -8.936312224250287e-05, + -0.00011266798537690192 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1215600, + "componentType": 5126, + "count": 53, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1578864, + "componentType": 5126, + "count": 53, + "max": [ + -0.9503703713417053, + 1.1780231012892273e-08, + -6.336049740429672e-11, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -6.767610472024899e-09, + -1.0955809592871901e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1215812, + "componentType": 5126, + "count": 46, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2462652, + "componentType": 5126, + "count": 46, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999997615814209, + 0.9999998211860657, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1215996, + "componentType": 5126, + "count": 71, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2463204, + "componentType": 5126, + "count": 71, + "max": [ + 1.1920928955078125e-07, + 0.28250065445899963, + 3.5754820260081033e-07 + ], + "min": [ + -1.1920938902676426e-07, + 0.28249940276145935, + -5.725517553401005e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1216280, + "componentType": 5126, + "count": 57, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1579712, + "componentType": 5126, + "count": 57, + "max": [ + 3.006479403211415e-07, + 0.9818702340126038, + 0.6893934011459351, + 0.056410327553749084 + ], + "min": [ + -0.023736268281936646, + -0.9714723825454712, + -0.48987913131713867, + 4.1028923192243383e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1216508, + "componentType": 5126, + "count": 55, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2464056, + "componentType": 5126, + "count": 55, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1216728, + "componentType": 5126, + "count": 54, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2464716, + "componentType": 5126, + "count": 54, + "max": [ + -0.12007318437099457, + 1.1671687364578247, + -0.33114731311798096 + ], + "min": [ + -0.8797179460525513, + 0.2636972665786743, + -0.7481747269630432 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1216944, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2465364, + "componentType": 5126, + "count": 63, + "max": [ + -0.12377475202083588, + 0.616173505783081, + -0.1988724321126938 + ], + "min": [ + -0.5662504434585571, + -0.5383205413818359, + -0.604008138179779 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1217196, + "componentType": 5126, + "count": 38, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1580624, + "componentType": 5126, + "count": 38, + "max": [ + 1.0, + 0.0, + 0.07834947854280472, + 0.4115120470523834 + ], + "min": [ + -0.999983012676239, + -0.20676521956920624, + -5.52335052361741e-07, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1217348, + "componentType": 5126, + "count": 24, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2466120, + "componentType": 5126, + "count": 24, + "max": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1217444, + "componentType": 5126, + "count": 72, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2466408, + "componentType": 5126, + "count": 72, + "max": [ + -8.791685104370117e-07, + 2.4278082491946407e-05, + -1.4795447214055457e-06 + ], + "min": [ + -2.7388334274291992e-05, + -5.8580495533533394e-05, + -9.373333887197077e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1217732, + "componentType": 5126, + "count": 39, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1581232, + "componentType": 5126, + "count": 39, + "max": [ + -0.9503704309463501, + -2.3180277697321117e-09, + 2.260176401591707e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -2.4922112373815253e-08, + 4.151593291368272e-09, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1217888, + "componentType": 5126, + "count": 37, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2467272, + "componentType": 5126, + "count": 37, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1218036, + "componentType": 5126, + "count": 70, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2467716, + "componentType": 5126, + "count": 70, + "max": [ + 1.1920928955078125e-07, + 0.2825005054473877, + 2.6938465680359513e-07 + ], + "min": [ + -1.1920928955078125e-07, + 0.28249964118003845, + -4.388456034121191e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1218316, + "componentType": 5126, + "count": 39, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1581856, + "componentType": 5126, + "count": 39, + "max": [ + -7.475361485376197e-08, + -0.8155511617660522, + 0.5767431855201721, + 0.030243299901485443 + ], + "min": [ + -0.03645579144358635, + -0.9818702340126038, + 0.1895543336868286, + 4.1552695506652526e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1218472, + "componentType": 5126, + "count": 39, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2468556, + "componentType": 5126, + "count": 39, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1218628, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2469024, + "componentType": 5126, + "count": 87, + "max": [ + 0.0, + 0.0, + 12.506182670593262 + ], + "min": [ + 0.0, + 0.0, + -0.7481244802474976 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1218976, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2470068, + "componentType": 5126, + "count": 102, + "max": [ + 0.030920162796974182, + 1.092114806175232, + -1.1403591632843018 + ], + "min": [ + -0.11957042664289474, + -0.8232258558273315, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1219384, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1582480, + "componentType": 5126, + "count": 106, + "max": [ + 0.4087428152561188, + 0.07410603761672974, + 0.22757799923419952, + 0.9995237588882446 + ], + "min": [ + -0.03552567958831787, + 1.0982155629335466e-07, + -0.5003637671470642, + 0.8632031083106995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1219808, + "componentType": 5126, + "count": 79, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2471292, + "componentType": 5126, + "count": 79, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1220124, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2472240, + "componentType": 5126, + "count": 105, + "max": [ + 9.536742027194123e-07, + 0.0021278709173202515, + 9.536744300930877e-07 + ], + "min": [ + -4.7683710135970614e-07, + 0.002126440405845642, + -1.430511474609375e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1220544, + "componentType": 5126, + "count": 100, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1584176, + "componentType": 5126, + "count": 100, + "max": [ + 0.7071067690849304, + 0.04206811264157295, + 0.05213102698326111, + 0.7071167826652527 + ], + "min": [ + 0.7052648067474365, + 3.0042158982723777e-07, + -3.1106634423849755e-07, + 0.7057720422744751 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1220944, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2473500, + "componentType": 5126, + "count": 104, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1221360, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2474748, + "componentType": 5126, + "count": 106, + "max": [ + 0.17381975054740906, + 0.1341022402048111, + 1.917230292747263e-06 + ], + "min": [ + 0.17381808161735535, + 0.13409556448459625, + -2.8461327019613236e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1221784, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1585776, + "componentType": 5126, + "count": 106, + "max": [ + -0.13052892684936523, + 0.14305010437965393, + -0.009349136613309383, + 0.9695424437522888 + ], + "min": [ + -0.8689373731613159, + -0.34814751148223877, + -0.2705415189266205, + 0.48747435212135315 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1222208, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2476020, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999994039535522, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1222632, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2477292, + "componentType": 5126, + "count": 106, + "max": [ + 4.4843653768111835e-07, + 0.635612428188324, + 1.9470512597763445e-06 + ], + "min": [ + -5.052377787251316e-07, + 0.6356104612350464, + -1.0458900305820862e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1223056, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1587472, + "componentType": 5126, + "count": 106, + "max": [ + 0.9421827793121338, + 5.1101640252682046e-08, + 7.082980602035605e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.7913445777016932e-08, + -1.0184688790104701e-06, + 0.33509930968284607 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1223480, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2478564, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.9999993443489075, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1223904, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2479836, + "componentType": 5126, + "count": 105, + "max": [ + -0.17381688952445984, + 0.13410036265850067, + 1.917230292747263e-06 + ], + "min": [ + -0.17381975054740906, + 0.13409553468227386, + -2.8121271498093847e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1224324, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1589168, + "componentType": 5126, + "count": 106, + "max": [ + 0.06931823492050171, + 0.14409412443637848, + 0.42047762870788574, + 0.9982696175575256 + ], + "min": [ + -0.7845894694328308, + -0.23742730915546417, + -0.05852792039513588, + 0.5998333692550659 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1224748, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2481096, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1225172, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2482368, + "componentType": 5126, + "count": 106, + "max": [ + 2.5954119564630673e-07, + 0.6356124877929688, + 9.496986876911251e-07 + ], + "min": [ + -3.365052521075995e-07, + 0.6356095671653748, + -9.720549769554054e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1225596, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1590864, + "componentType": 5126, + "count": 106, + "max": [ + 0.8357119560241699, + 3.5738001002982855e-08, + 1.0855599157366669e-06, + 0.9844073057174683 + ], + "min": [ + 0.17590411007404327, + -3.8579194949761586e-08, + 6.682762432319578e-08, + 0.5491681098937988 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1226020, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2483640, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000007152557373, + 1.0000004768371582 + ], + "min": [ + 0.9999993443489075, + 0.9999994039535522, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1226444, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2484912, + "componentType": 5126, + "count": 106, + "max": [ + 4.768372150465439e-07, + 0.00212834938429296, + 9.54473080128082e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.002126440405845642, + -1.9073459043283947e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1226868, + "componentType": 5126, + "count": 99, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1592560, + "componentType": 5126, + "count": 99, + "max": [ + -0.6495170593261719, + 2.3271076088349218e-07, + 0.054463934153318405, + 0.7514832615852356 + ], + "min": [ + -0.7076997756958008, + -0.1021478995680809, + 3.800124943609262e-07, + 0.7065133452415466 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1227264, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2486184, + "componentType": 5126, + "count": 102, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1227672, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2487408, + "componentType": 5126, + "count": 105, + "max": [ + 4.76837158203125e-07, + 0.2726668417453766, + 9.700846703708521e-07 + ], + "min": [ + -4.76837158203125e-07, + 0.2726644277572632, + -9.532815852253407e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1228092, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1594144, + "componentType": 5126, + "count": 106, + "max": [ + 0.2311616986989975, + 0.16931113600730896, + 0.02510380744934082, + 0.9975984692573547 + ], + "min": [ + -0.02392125315964222, + -0.0042205131612718105, + -4.800271824478841e-08, + 0.9729153513908386 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1228516, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2488668, + "componentType": 5126, + "count": 104, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999995231628418, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1228932, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2489916, + "componentType": 5126, + "count": 106, + "max": [ + 0.04481638967990875, + 0.5192009806632996, + 0.01097559742629528 + ], + "min": [ + 0.044764772057533264, + 0.517072856426239, + 0.010737347416579723 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1229356, + "componentType": 5126, + "count": 91, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1595840, + "componentType": 5126, + "count": 91, + "max": [ + -0.35930386185646057, + -0.49043551087379456, + -0.4635595977306366, + 0.5727537274360657 + ], + "min": [ + -0.4904356002807617, + -0.6060600280761719, + -0.50938481092453, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1229720, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2491188, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1230144, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2492460, + "componentType": 5126, + "count": 106, + "max": [ + 0.02354145050048828, + 0.24254372715950012, + -0.03516843914985657 + ], + "min": [ + 0.0008059554384090006, + 0.23651321232318878, + -0.11545287072658539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1230568, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1597296, + "componentType": 5126, + "count": 106, + "max": [ + 0.14633075892925262, + -0.020786812528967857, + -0.1695905476808548, + 0.9749447107315063 + ], + "min": [ + -0.705502986907959, + -0.4084325432777405, + -0.6992124319076538, + 0.5819976329803467 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1230992, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2493732, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1231416, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2495004, + "componentType": 5126, + "count": 106, + "max": [ + 9.682722748038941e-07, + 0.4048621654510498, + 1.1797067145380424e-06 + ], + "min": [ + -9.912043879012344e-07, + 0.4048607349395752, + -1.70239752605994e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1231840, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1598992, + "componentType": 5126, + "count": 106, + "max": [ + 0.1385778784751892, + 0.5269917249679565, + -0.06778706610202789, + 0.997620165348053 + ], + "min": [ + -0.1914244294166565, + -0.38684040307998657, + -0.9160653948783875, + 0.35015368461608887 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1232264, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2496276, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1232688, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2497548, + "componentType": 5126, + "count": 106, + "max": [ + 1.475245198889752e-06, + 0.4032714366912842, + 9.811700465434114e-07 + ], + "min": [ + -9.919361900756485e-07, + 0.40326908230781555, + -1.0864606565519352e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1233112, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1600688, + "componentType": 5126, + "count": 106, + "max": [ + 0.24969452619552612, + 0.39465609192848206, + 0.3836479187011719, + 0.9977683424949646 + ], + "min": [ + -0.11016573756933212, + -0.2277754545211792, + -0.050739821046590805, + 0.8886629343032837 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1233536, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2498820, + "componentType": 5126, + "count": 105, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1233956, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2500080, + "componentType": 5126, + "count": 106, + "max": [ + 0.09804541617631912, + 0.2196318358182907, + -0.0024707948323339224 + ], + "min": [ + 0.09804149717092514, + 0.21962964534759521, + -0.0024745985865592957 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1234380, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1602384, + "componentType": 5126, + "count": 106, + "max": [ + -0.6223366260528564, + -0.000981637742370367, + 0.03366423025727272, + 0.7820248603820801 + ], + "min": [ + -0.6223368644714355, + -0.0009817234240472317, + 0.03366415202617645, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1234804, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2501352, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1235228, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2502624, + "componentType": 5126, + "count": 106, + "max": [ + 9.962623153114691e-07, + 0.09750459343194962, + 1.451451680622995e-06 + ], + "min": [ + -1.8917824036179809e-06, + 0.09750165790319443, + -6.231266524991952e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1235652, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1604080, + "componentType": 5126, + "count": 106, + "max": [ + -0.5302279591560364, + 0.002465970581397414, + -0.05339590087532997, + 0.8461684584617615 + ], + "min": [ + -0.5302282571792603, + 0.002465882571414113, + -0.053395986557006836, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1236076, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2503896, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1236500, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2505168, + "componentType": 5126, + "count": 106, + "max": [ + -0.01622542180120945, + 0.21308724582195282, + -0.0035575716756284237 + ], + "min": [ + -0.016228830441832542, + 0.21308523416519165, + -0.003561396151781082 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1236924, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1605776, + "componentType": 5126, + "count": 106, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.6264930367469788, + -0.07110275328159332, + 0.07480831444263458, + 0.772563636302948 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1237348, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2506440, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1237772, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2507712, + "componentType": 5126, + "count": 106, + "max": [ + 9.51858226017066e-07, + 0.08465178310871124, + 4.636954429315665e-07 + ], + "min": [ + -1.91484082279203e-06, + 0.08464808017015457, + -1.2325587022132822e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1238196, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1607472, + "componentType": 5126, + "count": 106, + "max": [ + -0.5015431642532349, + -0.0011796385515481234, + -0.00824400968849659, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797056067734957, + -0.008244064636528492, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1238620, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2508984, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1239044, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2510256, + "componentType": 5126, + "count": 106, + "max": [ + 0.11189965158700943, + 0.10989109426736832, + -0.051629602909088135 + ], + "min": [ + 0.11189478635787964, + 0.10988794267177582, + -0.05163217708468437 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1239468, + "componentType": 5126, + "count": 96, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1609168, + "componentType": 5126, + "count": 96, + "max": [ + -0.4573034644126892, + 0.164932981133461, + -0.31590893864631653, + 0.8147835731506348 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159089982509613, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1239852, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2511528, + "componentType": 5126, + "count": 106, + "max": [ + 1.0, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1240276, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2512800, + "componentType": 5126, + "count": 106, + "max": [ + 1.3672686236532172e-06, + 0.08512501418590546, + 9.627635790820932e-07 + ], + "min": [ + -1.9034998786082724e-06, + 0.08512304723262787, + -9.708970765132108e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1240700, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1610704, + "componentType": 5126, + "count": 104, + "max": [ + 0.02291056700050831, + 0.0128357894718647, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910501807928085, + 0.012835717760026455, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1241116, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2514072, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1241536, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2515332, + "componentType": 5126, + "count": 106, + "max": [ + 0.005587770137935877, + 0.1660453975200653, + -0.04539158567786217 + ], + "min": [ + 0.005583050195127726, + 0.16604341566562653, + -0.045395392924547195 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1241960, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1612368, + "componentType": 5126, + "count": 106, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350188210606575, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193426012993, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1242384, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2516604, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1242808, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2517876, + "componentType": 5126, + "count": 106, + "max": [ + 4.768373855768004e-07, + 0.5450101494789124, + 9.835378023126395e-07 + ], + "min": [ + -9.536745437799254e-07, + 0.5450053811073303, + -9.947134458343498e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1243232, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1614064, + "componentType": 5126, + "count": 106, + "max": [ + 0.10531747341156006, + 0.13072361052036285, + 0.05145106464624405, + 1.0 + ], + "min": [ + -0.038082826882600784, + -0.29640477895736694, + -0.04222821071743965, + 0.9478424191474915 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1243656, + "componentType": 5126, + "count": 103, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2519148, + "componentType": 5126, + "count": 103, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1244068, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2520384, + "componentType": 5126, + "count": 105, + "max": [ + 2.3841880647523794e-07, + 0.11002969741821289, + 9.51811671257019e-07 + ], + "min": [ + -2.384190338489134e-07, + 0.11002731323242188, + -1.909211277961731e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1244488, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1615760, + "componentType": 5126, + "count": 106, + "max": [ + 0.0873376876115799, + 0.12989991903305054, + 0.057058535516262054, + 0.999832034111023 + ], + "min": [ + -0.05701157823204994, + -0.295376718044281, + -0.04469774663448334, + 0.9496678709983826 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1244912, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2521644, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995231628418, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1245332, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2522904, + "componentType": 5126, + "count": 106, + "max": [ + 1.424685478923493e-06, + 0.3614518642425537, + 0.02684309333562851 + ], + "min": [ + 7.094297416188056e-07, + 0.3614461421966553, + 0.02683832496404648 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1245756, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1617456, + "componentType": 5126, + "count": 106, + "max": [ + 1.266598843585598e-07, + 3.445898144605053e-08, + 1.303851426825986e-08, + 1.0 + ], + "min": [ + 6.705521116145974e-08, + 1.4901212708196e-08, + 1.8626460374093767e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1246180, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2524176, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000005960464478, + 0.9999998211860657, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 0.9999992847442627, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1246604, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2525448, + "componentType": 5126, + "count": 106, + "max": [ + 7.757593039059429e-07, + -0.1583361178636551, + -0.2537634074687958 + ], + "min": [ + 6.050314027561399e-08, + -0.15834185481071472, + -0.2537675201892853 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1247028, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1619152, + "componentType": 5126, + "count": 106, + "max": [ + -0.998119592666626, + 1.908031954656053e-08, + -2.0736432304602204e-07, + 0.06129664555191994 + ], + "min": [ + -0.998119592666626, + 8.91212170728295e-09, + -2.2415368050587858e-07, + 0.061296556144952774 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1247452, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2526720, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000007152557373, + 1.0000009536743164, + 0.9999721050262451 + ], + "min": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1247872, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2527980, + "componentType": 5126, + "count": 106, + "max": [ + 1.1920940323761897e-07, + 0.25394904613494873, + 1.5500015706493286e-06 + ], + "min": [ + -3.5762775496550603e-07, + 0.25394541025161743, + -6.719008069921983e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1248296, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1620848, + "componentType": 5126, + "count": 106, + "max": [ + 0.15613597631454468, + -1.0864266641874565e-07, + 1.2219986800232618e-08, + 0.9877355694770813 + ], + "min": [ + 0.1561359167098999, + -1.245465028887338e-07, + -1.6733426866366585e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1248720, + "componentType": 5126, + "count": 100, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2529252, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000015497207642, + 1.0000017881393433, + 1.0000014305114746 + ], + "min": [ + 1.0000009536743164, + 1.0000014305114746, + 1.000001072883606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1249120, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2530452, + "componentType": 5126, + "count": 106, + "max": [ + 3.5762786865234375e-07, + 0.25332027673721313, + 8.497581234223617e-07 + ], + "min": [ + -2.384185791015625e-07, + 0.2533171474933624, + -9.374200544698397e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1249544, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1622544, + "componentType": 5126, + "count": 106, + "max": [ + -0.09231439977884293, + -2.550261390954489e-10, + 4.827322097611386e-09, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -1.5006584419552382e-08, + -5.373477662828918e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1249968, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2531724, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000008344650269, + 1.0 + ], + "min": [ + 0.9999998807907104, + 1.0000003576278687, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1250392, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2532996, + "componentType": 5126, + "count": 106, + "max": [ + 2.384186643666908e-07, + 0.26377972960472107, + 1.8884966266341507e-06 + ], + "min": [ + -1.1920936060505483e-07, + 0.2637767195701599, + -8.548413461539894e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1250816, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1624240, + "componentType": 5126, + "count": 106, + "max": [ + 1.5514435958152717e-08, + -0.9896631240844727, + 0.1434117704629898, + 8.134264817272197e-08 + ], + "min": [ + 7.673148783027273e-10, + -0.9896631240844727, + 0.14341169595718384, + 6.395076468379557e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1251240, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2534268, + "componentType": 5126, + "count": 106, + "max": [ + 1.000001072883606, + 1.000001311302185, + 1.0000016689300537 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1251664, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2535540, + "componentType": 5126, + "count": 106, + "max": [ + 1.3911272844779887e-06, + 0.2431449294090271, + 0.18703512847423553 + ], + "min": [ + -2.1237810869934037e-06, + 0.2431412935256958, + 0.18702992796897888 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1252088, + "componentType": 5126, + "count": 37, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1625936, + "componentType": 5126, + "count": 37, + "max": [ + 0.44783374667167664, + -0.23266470432281494, + 0.37464451789855957, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.3746444284915924, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1252236, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2536812, + "componentType": 5126, + "count": 106, + "max": [ + 0.9999998807907104, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1252660, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2538084, + "componentType": 5126, + "count": 106, + "max": [ + -0.2441890984773636, + -0.13045896589756012, + 0.0296548530459404 + ], + "min": [ + -0.2441905289888382, + -0.13046464323997498, + 0.029650362208485603 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1253084, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1626528, + "componentType": 5126, + "count": 106, + "max": [ + 0.00741574028506875, + -0.07428388297557831, + -0.9923431277275085, + 0.0983973890542984 + ], + "min": [ + 0.007415717002004385, + -0.07428395748138428, + -0.9923431277275085, + 0.09839735925197601 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1253508, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2539356, + "componentType": 5126, + "count": 106, + "max": [ + 0.9999985098838806, + 1.0000019073486328, + 1.000000238418579 + ], + "min": [ + 0.9999980926513672, + 1.0000011920928955, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1253932, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2540628, + "componentType": 5126, + "count": 106, + "max": [ + 0.24341851472854614, + -0.13046355545520782, + 0.02965260110795498 + ], + "min": [ + 0.24341723322868347, + -0.13046786189079285, + 0.029648546129465103 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1254356, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1628224, + "componentType": 5126, + "count": 106, + "max": [ + 0.007417455781251192, + 0.07428371906280518, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417428772896528, + 0.0742836594581604, + 0.9923431277275085, + 0.09839748591184616 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1254780, + "componentType": 5126, + "count": 102, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2541900, + "componentType": 5126, + "count": 102, + "max": [ + 0.9999991059303284, + 1.000002384185791, + 0.9999998211860657 + ], + "min": [ + 0.9999986290931702, + 1.0000019073486328, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1255188, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2543124, + "componentType": 5126, + "count": 106, + "max": [ + -0.04476482421159744, + 0.5170733332633972, + 0.010738944634795189 + ], + "min": [ + -0.04481615498661995, + 0.5149462223052979, + 0.010499434545636177 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1255612, + "componentType": 5126, + "count": 90, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1629920, + "componentType": 5126, + "count": 90, + "max": [ + -0.4439297318458557, + 0.5833619832992554, + 0.5218290686607361, + 0.44732943177223206 + ], + "min": [ + -0.5575267672538757, + 0.48095351457595825, + 0.5019243359565735, + 0.4309980571269989 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1255972, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2544396, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1256396, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2545668, + "componentType": 5126, + "count": 106, + "max": [ + 0.017871879041194916, + 0.26709622144699097, + -0.03261271491646767 + ], + "min": [ + -0.03414437919855118, + 0.23250779509544373, + -0.03576333820819855 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1256820, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1631360, + "componentType": 5126, + "count": 106, + "max": [ + -0.004936468321830034, + 0.5222257971763611, + 0.7920080423355103, + 0.8357080221176147 + ], + "min": [ + -0.6537621021270752, + -0.07680071890354156, + -0.32813236117362976, + 0.5358352661132813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1257244, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2546940, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999995827674866, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1257664, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2548200, + "componentType": 5126, + "count": 106, + "max": [ + 1.0727953849709593e-06, + 0.4048626124858856, + 2.1093101167934947e-06 + ], + "min": [ + -1.8255889244755963e-06, + 0.4048598110675812, + -7.607418979205249e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1258088, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1633056, + "componentType": 5126, + "count": 105, + "max": [ + 0.09893212467432022, + 0.824804961681366, + 0.7147213220596313, + 0.9851483702659607 + ], + "min": [ + -0.3524878919124603, + 0.02279481664299965, + -0.05700935795903206, + 0.3227784037590027 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1258508, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2549472, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1258932, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2550744, + "componentType": 5126, + "count": 106, + "max": [ + 1.0084980885949335e-06, + 0.40327146649360657, + 8.896732879293268e-07 + ], + "min": [ + -1.0492788078408921e-06, + 0.4032685458660126, + -1.0412959454697557e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1259356, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1634736, + "componentType": 5126, + "count": 104, + "max": [ + 0.11977732926607132, + 0.20511461794376373, + 0.16444945335388184, + 0.999966025352478 + ], + "min": [ + -0.18702936172485352, + -0.042015329003334045, + -0.24599894881248474, + 0.9447585344314575 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1259772, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2552016, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000004768371582 + ], + "min": [ + 0.9999997019767761, + 0.9999995827674866, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1260196, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2553288, + "componentType": 5126, + "count": 106, + "max": [ + -0.09803988039493561, + 0.2196314036846161, + -0.0024708560667932034 + ], + "min": [ + -0.0980454832315445, + 0.21962913870811462, + -0.002474126871675253 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1260620, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1636400, + "componentType": 5126, + "count": 105, + "max": [ + -0.5146673321723938, + 0.0499749593436718, + -0.08315924555063248, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488856315613, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1261040, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2554560, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1261464, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2555832, + "componentType": 5126, + "count": 106, + "max": [ + 1.8944463135994738e-06, + 0.09750362485647202, + 8.610048780610668e-07 + ], + "min": [ + -1.9319554667163175e-06, + 0.09750165790319443, + -1.502900317973399e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1261888, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1638080, + "componentType": 5126, + "count": 106, + "max": [ + -0.4217608571052551, + 0.06273209303617477, + 0.009731835685670376, + 0.9044820666313171 + ], + "min": [ + -0.4217611253261566, + 0.0627320259809494, + 0.009731786325573921, + 0.9044819474220276 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1262312, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2557104, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1262736, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2558376, + "componentType": 5126, + "count": 106, + "max": [ + 0.016229595988988876, + 0.21308694779872894, + -0.003557568648830056 + ], + "min": [ + 0.016224903985857964, + 0.21308469772338867, + -0.0035605195444077253 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1263160, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1639776, + "componentType": 5126, + "count": 105, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969950199127, + -0.08177224546670914, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1263580, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2559648, + "componentType": 5126, + "count": 105, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1264000, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2560908, + "componentType": 5126, + "count": 106, + "max": [ + 1.918977659443044e-06, + 0.0846511647105217, + 2.8698238452307123e-07 + ], + "min": [ + -1.9001568034582306e-06, + 0.08464819937944412, + -1.9995964066765737e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1264424, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1641456, + "componentType": 5126, + "count": 106, + "max": [ + -0.4092181324958801, + 0.002027463633567095, + 0.00807743426412344, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020274128764867783, + 0.008077393285930157, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1264848, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2562180, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1265272, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2563452, + "componentType": 5126, + "count": 106, + "max": [ + -0.1118948757648468, + 0.1098911389708519, + -0.05162917822599411 + ], + "min": [ + -0.11189912259578705, + 0.1098877489566803, + -0.05163312330842018 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1265696, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1643152, + "componentType": 5126, + "count": 106, + "max": [ + -0.432245671749115, + -0.12903623282909393, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363222360611, + 0.15030032396316528, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1266120, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2564724, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1266544, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2565996, + "componentType": 5126, + "count": 106, + "max": [ + 9.397320468451653e-07, + 0.08512484282255173, + 9.88621536635037e-07 + ], + "min": [ + -1.038373852679797e-06, + 0.08512251079082489, + -9.71625922829844e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1266968, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1644848, + "componentType": 5126, + "count": 106, + "max": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.12198019027709961, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1267392, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2567268, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999995827674866, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1267816, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2568540, + "componentType": 5126, + "count": 106, + "max": [ + -0.005581353325396776, + 0.16604569554328918, + -0.045392557978630066 + ], + "min": [ + -0.00558685977011919, + 0.1660429686307907, + -0.04539630934596062 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1268240, + "componentType": 5126, + "count": 103, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1646544, + "componentType": 5126, + "count": 103, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.04813842102885246, + 0.10803265124559402 + ], + "min": [ + 0.3554118275642395, + -0.9281388521194458, + -0.04815901070833206, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1268652, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2569812, + "componentType": 5126, + "count": 106, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1269076, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2571084, + "componentType": 5126, + "count": 106, + "max": [ + 0.13640467822551727, + 0.2850482165813446, + 0.0019426335347816348 + ], + "min": [ + 0.13640229403972626, + 0.285045325756073, + 0.0019378324504941702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1269500, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1648192, + "componentType": 5126, + "count": 106, + "max": [ + -6.548793862748425e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.523888073506896e-07 + ], + "min": [ + -9.125693622991093e-08, + -0.693580687046051, + -0.7203789949417114, + 1.2861958964549558e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1269924, + "componentType": 5126, + "count": 104, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2572356, + "componentType": 5126, + "count": 104, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1270340, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2573604, + "componentType": 5126, + "count": 106, + "max": [ + -0.13640277087688446, + 0.2850482165813446, + 0.0019417090807110071 + ], + "min": [ + -0.13640372455120087, + 0.2850452959537506, + 0.0019378791330382228 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1270764, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1649888, + "componentType": 5126, + "count": 105, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789353370667, + 6.224173176860859e-08 + ], + "min": [ + -9.220448760061117e-08, + -0.693580687046051, + -0.7203789949417114, + 3.578392337999503e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1271184, + "componentType": 5126, + "count": 105, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2574876, + "componentType": 5126, + "count": 105, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 1.0, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1271604, + "componentType": 5126, + "count": 69, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2576136, + "componentType": 5126, + "count": 69, + "max": [ + 0.8412194848060608, + 1.2630354166030884, + -0.44940343499183655 + ], + "min": [ + 0.004980742931365967, + -1.0420974493026733, + -0.764119565486908 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1271880, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2576964, + "componentType": 5126, + "count": 106, + "max": [ + 0.5804785490036011, + 1.1105718612670898, + -0.23741845786571503 + ], + "min": [ + 0.0742408037185669, + -1.5467466115951538, + -0.6739274263381958 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1272304, + "componentType": 5126, + "count": 66, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1651568, + "componentType": 5126, + "count": 66, + "max": [ + 1.0, + 0.687836766242981, + 5.522227866094909e-07, + 0.7296298146247864 + ], + "min": [ + -0.9999879002571106, + -0.6912328004837036, + -0.0022127521224319935, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1272568, + "componentType": 5126, + "count": 52, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2578236, + "componentType": 5126, + "count": 52, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1272776, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2578860, + "componentType": 5126, + "count": 106, + "max": [ + 4.909932613372803e-05, + 3.959493187721819e-05, + 1.1989042150162277e-06 + ], + "min": [ + -9.685754776000977e-07, + -0.00010513978486414999, + -0.0001097072017728351 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1273200, + "componentType": 5126, + "count": 75, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1652624, + "componentType": 5126, + "count": 75, + "max": [ + -0.9503703713417053, + 1.6059894747399994e-08, + 3.372742640728177e-10, + 0.3111208379268646 + ], + "min": [ + -0.9503704309463501, + -1.062121768313773e-08, + -1.898424528690157e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1273500, + "componentType": 5126, + "count": 72, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2580132, + "componentType": 5126, + "count": 72, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1273788, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2580996, + "componentType": 5126, + "count": 106, + "max": [ + 2.384185791015625e-07, + 0.2825009226799011, + 8.888669640327862e-07 + ], + "min": [ + -2.3841900542720396e-07, + 0.2824980914592743, + -8.814163834358624e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1274212, + "componentType": 5126, + "count": 82, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1653824, + "componentType": 5126, + "count": 82, + "max": [ + -6.112527017876346e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.348103459506092e-07 + ], + "min": [ + -9.584676519125424e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.1639435721663176e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1274540, + "componentType": 5126, + "count": 90, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2582268, + "componentType": 5126, + "count": 90, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1274900, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2583348, + "componentType": 5126, + "count": 87, + "max": [ + -0.20709143579006195, + 1.792014241218567, + -0.3679371476173401 + ], + "min": [ + -0.4627373516559601, + 0.5460788011550903, + -0.6843864917755127 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1275248, + "componentType": 5126, + "count": 87, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2584392, + "componentType": 5126, + "count": 87, + "max": [ + -0.09677496552467346, + 1.3105354309082031, + -0.23347803950309753 + ], + "min": [ + -0.5782424211502075, + -0.5634655952453613, + -0.6736796498298645 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1275596, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1655136, + "componentType": 5126, + "count": 78, + "max": [ + -0.6274541616439819, + -2.065157241304405e-05, + 5.52315839286166e-07, + 0.7786089181900024 + ], + "min": [ + -0.9999920725822449, + -0.17863965034484863, + -0.00648925406858325, + 4.603480263654092e-09 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1275908, + "componentType": 5126, + "count": 64, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2585436, + "componentType": 5126, + "count": 64, + "max": [ + 1.0, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1276164, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2586204, + "componentType": 5126, + "count": 106, + "max": [ + 1.5363097190856934e-05, + 2.1214535081526265e-05, + -1.4795447214055457e-06 + ], + "min": [ + -3.115832805633545e-05, + -5.342955410014838e-05, + -0.00010275692329742014 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1276588, + "componentType": 5126, + "count": 78, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1656384, + "componentType": 5126, + "count": 78, + "max": [ + -0.9503704309463501, + 1.4611753584858889e-08, + 2.0491807362077452e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.010772443521546e-08, + 1.699165808055625e-10, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1276900, + "componentType": 5126, + "count": 73, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2587476, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000004768371582, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999997615814209, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1277192, + "componentType": 5126, + "count": 106, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2588352, + "componentType": 5126, + "count": 106, + "max": [ + 2.384187780535285e-07, + 0.28250160813331604, + 9.77614831754181e-07 + ], + "min": [ + -7.152557373046875e-07, + 0.28249791264533997, + -9.701642511572572e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1277616, + "componentType": 5126, + "count": 91, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1657632, + "componentType": 5126, + "count": 91, + "max": [ + -7.146975633531838e-08, + -0.857188880443573, + 0.5149703621864319, + 0.005273457616567612 + ], + "min": [ + -0.002218396868556738, + -0.9818702340126038, + 0.1895543485879898, + 4.195038059151557e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1277980, + "componentType": 5126, + "count": 92, + "max": [ + 1.75 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2589624, + "componentType": 5126, + "count": 92, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1278348, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2590728, + "componentType": 5126, + "count": 63, + "max": [ + 0.09110631793737411, + -0.08483370393514633, + -1.3341854810714722 + ], + "min": [ + -0.25120189785957336, + -0.33202630281448364, + -1.5496724843978882 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1278600, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1659088, + "componentType": 5126, + "count": 3, + "max": [ + -0.03552567958831787, + 0.010921822860836983, + 0.22757799923419952, + 0.9730502963066101 + ], + "min": [ + -0.03552567958831787, + 0.010921820998191833, + 0.22757796943187714, + 0.9730502963066101 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1278612, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2591484, + "componentType": 5126, + "count": 3, + "max": [ + 1.0, + 1.0, + 0.9999999403953552 + ], + "min": [ + 1.0, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1278624, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2591520, + "componentType": 5126, + "count": 62, + "max": [ + 2.9802425416392e-08, + 0.0021274001337587833, + 1.1920928955078125e-07 + ], + "min": [ + -2.9802425416392e-08, + 0.0021273940801620483, + -2.3841860752327193e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1278872, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1659136, + "componentType": 5126, + "count": 3, + "max": [ + 0.7071067690849304, + 3.056076138818753e-07, + -3.056076138818753e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 3.0169749720698746e-07, + -3.1215191143019183e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1278884, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2592264, + "componentType": 5126, + "count": 3, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1278896, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2592300, + "componentType": 5126, + "count": 63, + "max": [ + 0.17381834983825684, + 0.13409876823425293, + 3.67836889836326e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409793376922607, + -4.632928485293064e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1279148, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1659184, + "componentType": 5126, + "count": 63, + "max": [ + -0.13052892684936523, + 0.09553252160549164, + -0.20508787035942078, + 0.9695424437522888 + ], + "min": [ + -0.6611654758453369, + -0.1482362598180771, + -0.2559170722961426, + 0.7048633098602295 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1279400, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2593056, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000001192092896, + 1.0, + 0.9999998807907104 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1279648, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2593800, + "componentType": 5126, + "count": 63, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 1.2242576019616536e-07 + ], + "min": [ + -1.476099100727879e-07, + 0.6356114149093628, + -1.2085763501090696e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1279900, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1660192, + "componentType": 5126, + "count": 63, + "max": [ + 0.8796102404594421, + 2.990368130895149e-08, + -1.8434636928077452e-08, + 0.9874268174171448 + ], + "min": [ + 0.15807707607746124, + -2.1575763398118397e-08, + -3.3737640592335083e-07, + 0.4756951630115509 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1280152, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2594556, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0 + ], + "min": [ + 0.9999998807907104, + 0.9999995231628418, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1280404, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2595312, + "componentType": 5126, + "count": 63, + "max": [ + -0.17381826043128967, + 0.13409864902496338, + 4.635843353639757e-08 + ], + "min": [ + -0.17381852865219116, + 0.13409793376922607, + 5.9340954372544275e-09 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1280656, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1661200, + "componentType": 5126, + "count": 62, + "max": [ + 0.0693177655339241, + -0.23210877180099487, + 0.24059800803661346, + 0.9507472515106201 + ], + "min": [ + -0.05022646486759186, + -0.3112494945526123, + 0.03988764062523842, + 0.9415776133537292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1280904, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2596068, + "componentType": 5126, + "count": 62, + "max": [ + 1.000000238418579, + 0.9999998807907104, + 0.9999999403953552 + ], + "min": [ + 0.9999998211860657, + 0.9999995231628418, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1281152, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2596812, + "componentType": 5126, + "count": 63, + "max": [ + 1.4033184925210662e-07, + 0.6356115937232971, + 4.297970335187529e-08 + ], + "min": [ + -3.848208862677893e-08, + 0.635611355304718, + -4.0822548896812805e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1281404, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1662192, + "componentType": 5126, + "count": 63, + "max": [ + 0.3850124180316925, + 2.1487320367441498e-08, + 2.4689333599781094e-07, + 0.9844071865081787 + ], + "min": [ + 0.17590491473674774, + -2.8477020741490833e-09, + 8.947121443725337e-08, + 0.9229114055633545 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1281656, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2597568, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0, + 1.0 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1281908, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2598324, + "componentType": 5126, + "count": 63, + "max": [ + 2.9802425416392e-08, + 0.0021274166647344828, + 2.384307435931987e-07 + ], + "min": [ + -8.940696005765858e-08, + 0.002127349143847823, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1282160, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1663200, + "componentType": 5126, + "count": 29, + "max": [ + -0.6495170593261719, + -0.0753047913312912, + 0.08026952296495438, + 0.7514832615852356 + ], + "min": [ + -0.692804753780365, + -0.1021478995680809, + 0.054463934153318405, + 0.7126763463020325 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1282276, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2599080, + "componentType": 5126, + "count": 29, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1282392, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2599428, + "componentType": 5126, + "count": 63, + "max": [ + 4.470348358154297e-08, + 0.2726660966873169, + 3.0144285290134576e-08 + ], + "min": [ + -5.960464477539063e-08, + 0.27266550064086914, + -2.7223469700743408e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1282644, + "componentType": 5126, + "count": 50, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1663664, + "componentType": 5126, + "count": 50, + "max": [ + 0.08500944077968597, + 0.12392475455999374, + 0.12864111363887787, + 0.9956182241439819 + ], + "min": [ + -0.05538517236709595, + 0.05683112144470215, + 0.02510380744934082, + 0.982840359210968 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1282844, + "componentType": 5126, + "count": 49, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2600184, + "componentType": 5126, + "count": 49, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1283040, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2600772, + "componentType": 5126, + "count": 63, + "max": [ + 0.0448162704706192, + 0.5170735716819763, + 0.010738042183220387 + ], + "min": [ + 0.0448160320520401, + 0.517072856426239, + 0.010737885721027851 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1283292, + "componentType": 5126, + "count": 42, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1664464, + "componentType": 5126, + "count": 42, + "max": [ + -0.4904356002807617, + -0.49043548107147217, + -0.50938481092453, + 0.5093849301338196 + ], + "min": [ + -0.4904356598854065, + -0.49043551087379456, + -0.5093848705291748, + 0.5093849301338196 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1283460, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2601528, + "componentType": 5126, + "count": 52, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1283668, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2602152, + "componentType": 5126, + "count": 63, + "max": [ + 0.02354121208190918, + 0.23651345074176788, + -0.11545215547084808 + ], + "min": [ + 0.02354109287261963, + 0.236513152718544, + -0.11545310914516449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1283920, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1665136, + "componentType": 5126, + "count": 63, + "max": [ + -0.16683882474899292, + 0.10644295066595078, + 0.2898680567741394, + 0.8391125202178955 + ], + "min": [ + -0.7540861368179321, + -0.3727089762687683, + -0.48886168003082275, + 0.5823848247528076 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1284172, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2602908, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1284424, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2603664, + "componentType": 5126, + "count": 63, + "max": [ + 1.272211420655367e-07, + 0.4048615097999573, + 3.235162466808106e-07 + ], + "min": [ + -1.228680446274666e-07, + 0.40486103296279907, + -3.315240348911175e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1284676, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1666144, + "componentType": 5126, + "count": 63, + "max": [ + 0.07776039093732834, + 0.5269917845726013, + -0.23531831800937653, + 0.9262486696243286 + ], + "min": [ + -0.36993640661239624, + -0.6908623576164246, + -0.6604084372520447, + 0.5142548084259033 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1284928, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2604420, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999998807907104, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1285180, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2605176, + "componentType": 5126, + "count": 63, + "max": [ + 1.2497180534865038e-07, + 0.4032707214355469, + 8.776427051770952e-08 + ], + "min": [ + -1.0890989443623766e-07, + 0.40327024459838867, + -1.8027184012225916e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1285432, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1667152, + "componentType": 5126, + "count": 63, + "max": [ + 0.04346290975809097, + 0.39465609192848206, + 0.12396225333213806, + 0.9993590712547302 + ], + "min": [ + -0.1539323627948761, + 0.0037713474594056606, + -0.0507061593234539, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1285684, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2605932, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1285936, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2606688, + "componentType": 5126, + "count": 63, + "max": [ + 0.09804275631904602, + 0.21963092684745789, + -0.0024722155649214983 + ], + "min": [ + 0.09804221242666245, + 0.21963033080101013, + -0.0024731887970119715 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1286188, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1668160, + "componentType": 5126, + "count": 63, + "max": [ + -0.622336745262146, + -0.0009816568344831467, + 0.033664215356111526, + 0.7820248007774353 + ], + "min": [ + -0.6223368048667908, + -0.000981715158559382, + 0.03366415575146675, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1286440, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2607444, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1286692, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2608200, + "componentType": 5126, + "count": 63, + "max": [ + 1.3406888399458694e-07, + 0.09750303626060486, + 5.960945941296814e-07 + ], + "min": [ + -1.0762047253365381e-07, + 0.09750242531299591, + 1.1096619800810004e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1286944, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1669168, + "componentType": 5126, + "count": 63, + "max": [ + -0.5302280187606812, + 0.0024659540504217148, + -0.05339593440294266, + 0.8461684584617615 + ], + "min": [ + -0.5302282571792603, + 0.002465894678607583, + -0.053395986557006836, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1287196, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2608956, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1287448, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2609712, + "componentType": 5126, + "count": 63, + "max": [ + -0.01622670516371727, + 0.21308639645576477, + -0.0035592305939644575 + ], + "min": [ + -0.01622696965932846, + 0.21308571100234985, + -0.0035597002133727074 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1287700, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1670176, + "componentType": 5126, + "count": 63, + "max": [ + -0.626492977142334, + -0.07110268622636795, + 0.07480835914611816, + 0.7725636959075928 + ], + "min": [ + -0.626492977142334, + -0.07110273092985153, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1287952, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2610468, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1288204, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2611224, + "componentType": 5126, + "count": 63, + "max": [ + 1.1462556415153813e-07, + 0.0846501961350441, + -3.9532579876322416e-08 + ], + "min": [ + -1.2808503413452854e-07, + 0.08464980870485306, + -5.284205712996481e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1288456, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1671184, + "componentType": 5126, + "count": 63, + "max": [ + -0.5015431642532349, + -0.0011796465842053294, + -0.008244005031883717, + 0.8650925755500793 + ], + "min": [ + -0.501543402671814, + -0.0011797156184911728, + -0.008244046941399574, + 0.865092396736145 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1288708, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2611980, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1288960, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2612736, + "componentType": 5126, + "count": 63, + "max": [ + 0.11189695447683334, + 0.10988954454660416, + -0.05163088068366051 + ], + "min": [ + 0.11189629882574081, + 0.10988910496234894, + -0.05163181945681572 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1289212, + "componentType": 5126, + "count": 59, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1672192, + "componentType": 5126, + "count": 59, + "max": [ + -0.4573034644126892, + 0.1649329662322998, + -0.31590893864631653, + 0.81478351354599 + ], + "min": [ + -0.45730361342430115, + 0.16493289172649384, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1289448, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2613492, + "componentType": 5126, + "count": 62, + "max": [ + 1.0, + 1.000000238418579, + 1.0 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1289696, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2614236, + "componentType": 5126, + "count": 63, + "max": [ + 2.1006798078815336e-07, + 0.08512423187494278, + 1.306275549950442e-07 + ], + "min": [ + -1.467329866500222e-07, + 0.08512381464242935, + -1.71116710134811e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1289948, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1673136, + "componentType": 5126, + "count": 63, + "max": [ + 0.022910568863153458, + 0.012835769914090633, + 0.6957963705062866, + 0.7177590131759644 + ], + "min": [ + 0.022910505533218384, + 0.012835717760026455, + 0.6957962512969971, + 0.7177588939666748 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1290200, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2614992, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1290452, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2615748, + "componentType": 5126, + "count": 63, + "max": [ + 0.005585032980889082, + 0.16604486107826233, + -0.04539300873875618 + ], + "min": [ + 0.005584717262536287, + 0.16604407131671906, + -0.045393820852041245 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1290704, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1674144, + "componentType": 5126, + "count": 63, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.02386539801955223 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193798542023, + 0.023865368217229843 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1290956, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2616504, + "componentType": 5126, + "count": 63, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1291208, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2617260, + "componentType": 5126, + "count": 63, + "max": [ + 8.94069742685133e-08, + 0.5450075268745422, + 6.300800237113435e-08 + ], + "min": [ + -8.940696005765858e-08, + 0.5450068116188049, + -7.41838732665201e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1291460, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1675152, + "componentType": 5126, + "count": 63, + "max": [ + 0.04018194600939751, + 0.1355961561203003, + -0.025929369032382965, + 0.990509033203125 + ], + "min": [ + -0.04342837631702423, + 0.12403254956007004, + -0.06345067173242569, + 0.9894318580627441 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1291712, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2618016, + "componentType": 5126, + "count": 63, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1291964, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2618772, + "componentType": 5126, + "count": 63, + "max": [ + 5.960465188081798e-08, + 0.11002874374389648, + 5.774199962615967e-08 + ], + "min": [ + -2.980232949312267e-08, + 0.11002779006958008, + -6.146728992462158e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1292216, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1676160, + "componentType": 5126, + "count": 63, + "max": [ + 0.02142568863928318, + 0.13508035242557526, + -0.028494104743003845, + 0.9904415607452393 + ], + "min": [ + -0.06217037886381149, + 0.12280789762735367, + -0.065789595246315, + 0.9884716868400574 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1292468, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2619528, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995231628418, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1292720, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2620284, + "componentType": 5126, + "count": 63, + "max": [ + 1.1564645774342353e-06, + 0.3614499568939209, + 0.026841305196285248 + ], + "min": [ + 1.0670576102711493e-06, + 0.3614482879638672, + 0.02684100717306137 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1292972, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1677168, + "componentType": 5126, + "count": 63, + "max": [ + 1.2665987014770508e-07, + 2.677557375818651e-08, + 1.0244548320770264e-08, + 1.0 + ], + "min": [ + 8.94069742685133e-08, + 2.048914637953203e-08, + 5.122274160385132e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1293224, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2621040, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000005960464478, + 0.9999998211860657, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 0.9999992847442627, + 1.0000003576278687 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1293472, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2621784, + "componentType": 5126, + "count": 63, + "max": [ + 6.863514272481552e-07, + -0.15833844244480133, + -0.253765344619751 + ], + "min": [ + 4.777351136908692e-07, + -0.15834011137485504, + -0.25376588106155396 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1293724, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1678176, + "componentType": 5126, + "count": 63, + "max": [ + -0.998119592666626, + 1.7278260600051e-08, + -2.109108407921667e-07, + 0.06129663810133934 + ], + "min": [ + -0.998119592666626, + 1.245915193237579e-08, + -2.164316725838944e-07, + 0.06129659339785576 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1293976, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2622540, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000009536743164, + 1.0000007152557373, + 0.9999721050262451 + ], + "min": [ + 1.000000238418579, + 1.000000238418579, + 0.9999717473983765 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1294224, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2623284, + "componentType": 5126, + "count": 63, + "max": [ + 5.960468740795477e-08, + 0.2539477050304413, + 2.9336550255720795e-07 + ], + "min": [ + -5.9604584379258085e-08, + 0.25394678115844727, + -1.969917207134131e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1294476, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1679184, + "componentType": 5126, + "count": 63, + "max": [ + 0.15613597631454468, + -1.1478478967319461e-07, + 7.345866137598023e-09, + 0.9877355694770813 + ], + "min": [ + 0.1561359167098999, + -1.2071340904640238e-07, + 3.771769563343241e-09, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1294728, + "componentType": 5126, + "count": 60, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2624040, + "componentType": 5126, + "count": 60, + "max": [ + 1.0000014305114746, + 1.0000019073486328, + 1.0000015497207642 + ], + "min": [ + 1.0000009536743164, + 1.0000015497207642, + 1.000001072883606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1294968, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2624760, + "componentType": 5126, + "count": 63, + "max": [ + 2.9802322387695313e-08, + 0.2533195912837982, + 1.3909300378145417e-07 + ], + "min": [ + -2.9802322387695313e-08, + 0.2533189356327057, + -1.3909300378145417e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1295220, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1680192, + "componentType": 5126, + "count": 63, + "max": [ + -0.09231440722942352, + -6.9698327109790625e-09, + -8.227239445268708e-10, + 0.995729923248291 + ], + "min": [ + -0.09231443703174591, + -1.5133617026208412e-08, + -5.330491159583062e-09, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1295472, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2625516, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000008344650269, + 0.9999998807907104 + ], + "min": [ + 0.9999999403953552, + 1.0000003576278687, + 0.9999995827674866 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1295724, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2626272, + "componentType": 5126, + "count": 62, + "max": [ + 5.960465188081798e-08, + 0.2637789249420166, + 1.5585824542085902e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.2637784481048584, + -6.52253930866209e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1295972, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1681200, + "componentType": 5126, + "count": 63, + "max": [ + 9.216999607986054e-09, + -0.9896631240844727, + 0.14341172575950623, + 7.55754285819421e-08 + ], + "min": [ + 4.762958916160187e-09, + -0.9896631240844727, + 0.14341172575950623, + 6.849907663308841e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1296224, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2627016, + "componentType": 5126, + "count": 62, + "max": [ + 1.000001072883606, + 1.000001311302185, + 1.0000015497207642 + ], + "min": [ + 1.0000004768371582, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1296472, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2627760, + "componentType": 5126, + "count": 62, + "max": [ + 8.247389473581279e-07, + 0.2431439757347107, + 0.1870332658290863 + ], + "min": [ + 2.4414867993982625e-07, + 0.24314293265342712, + 0.18703247606754303 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1296720, + "componentType": 5126, + "count": 40, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1682208, + "componentType": 5126, + "count": 40, + "max": [ + 0.44783374667167664, + -0.23266468942165375, + 0.3746444284915924, + 0.7777876853942871 + ], + "min": [ + 0.44783368706703186, + -0.23266474902629852, + 0.37464439868927, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1296880, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2628504, + "componentType": 5126, + "count": 61, + "max": [ + 0.9999998211860657, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999994039535522, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1297124, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2629236, + "componentType": 5126, + "count": 63, + "max": [ + -0.24418972432613373, + -0.13046184182167053, + 0.029651328921318054 + ], + "min": [ + -0.24419012665748596, + -0.13046348094940186, + 0.029650596901774406 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1297376, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1682848, + "componentType": 5126, + "count": 63, + "max": [ + 0.007415734697133303, + -0.0742838978767395, + -0.9923431277275085, + 0.0983974039554596 + ], + "min": [ + 0.007415724452584982, + -0.07428395003080368, + -0.9923431277275085, + 0.09839737415313721 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1297628, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2629992, + "componentType": 5126, + "count": 63, + "max": [ + 0.9999987483024597, + 1.0000019073486328, + 1.000000238418579 + ], + "min": [ + 0.9999982714653015, + 1.0000014305114746, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1297880, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2630748, + "componentType": 5126, + "count": 63, + "max": [ + 0.24341817200183868, + -0.13046428561210632, + 0.029651716351509094 + ], + "min": [ + 0.24341782927513123, + -0.13046590983867645, + 0.029651209712028503 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1298132, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1683856, + "componentType": 5126, + "count": 63, + "max": [ + 0.007417445071041584, + 0.07428370416164398, + 0.9923431277275085, + 0.09839751571416855 + ], + "min": [ + 0.007417433429509401, + 0.0742836743593216, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1298384, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2631504, + "componentType": 5126, + "count": 63, + "max": [ + 0.9999992251396179, + 1.0000025033950806, + 0.9999998211860657 + ], + "min": [ + 0.9999987483024597, + 1.0000020265579224, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1298636, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2632260, + "componentType": 5126, + "count": 63, + "max": [ + -0.04481608420610428, + 0.5170735716819763, + 0.010738111101090908 + ], + "min": [ + -0.04481623321771622, + 0.5170726180076599, + 0.010737922973930836 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1298888, + "componentType": 5126, + "count": 46, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1684864, + "componentType": 5126, + "count": 46, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555118680000305 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1299072, + "componentType": 5126, + "count": 55, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2633016, + "componentType": 5126, + "count": 55, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1299292, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2633676, + "componentType": 5126, + "count": 63, + "max": [ + 0.01787041872739792, + 0.2325083464384079, + -0.03527333214879036 + ], + "min": [ + 0.017870239913463593, + 0.2325080931186676, + -0.035274047404527664 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1299544, + "componentType": 5126, + "count": 56, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1685600, + "componentType": 5126, + "count": 56, + "max": [ + -0.33122050762176514, + 0.5143935680389404, + -0.32813236117362976, + 0.7353318929672241 + ], + "min": [ + -0.5603394508361816, + 0.4289034903049469, + -0.40696674585342407, + 0.5601322054862976 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1299768, + "componentType": 5126, + "count": 53, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2634432, + "componentType": 5126, + "count": 53, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000005960464478 + ], + "min": [ + 0.9999997615814209, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1299980, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2635068, + "componentType": 5126, + "count": 63, + "max": [ + 1.1758854867593982e-07, + 0.4048614203929901, + 2.6701860633693286e-07 + ], + "min": [ + -1.3473365356730937e-07, + 0.40486103296279907, + 8.657044503479483e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1300232, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1686496, + "componentType": 5126, + "count": 61, + "max": [ + -0.07451160997152328, + 0.4991837739944458, + -0.05700933560729027, + 0.8614022135734558 + ], + "min": [ + -0.07451163977384567, + 0.4991835653781891, + -0.057009417563676834, + 0.8614020943641663 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1300476, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2635824, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1300720, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2636556, + "componentType": 5126, + "count": 63, + "max": [ + 5.538530345461368e-08, + 0.4032707214355469, + 6.7591003016787e-08 + ], + "min": [ + -7.512303312751101e-08, + 0.4032703638076782, + -1.1125359122843292e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1300972, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1687472, + "componentType": 5126, + "count": 63, + "max": [ + 0.023212531581521034, + 0.004205367062240839, + -0.02357206679880619, + 0.999443769454956 + ], + "min": [ + 0.023212522268295288, + 0.004205341450870037, + -0.023572083562612534, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1301224, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2637312, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000003576278687, + 1.0, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1301472, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2638056, + "componentType": 5126, + "count": 63, + "max": [ + -0.09804246574640274, + 0.2196308672428131, + -0.00247250241227448 + ], + "min": [ + -0.09804278612136841, + 0.2196304053068161, + -0.002472887746989727 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1301724, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1688480, + "componentType": 5126, + "count": 62, + "max": [ + -0.5146673321723938, + 0.0499749556183815, + -0.08315923810005188, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.049974892288446426, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1301972, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2638812, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1302220, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2639556, + "componentType": 5126, + "count": 63, + "max": [ + 4.8024627830045574e-08, + 0.0975026860833168, + 4.869148710895388e-07 + ], + "min": [ + -1.0594191479640358e-07, + 0.09750250726938248, + 2.385844197760889e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1302472, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1689472, + "componentType": 5126, + "count": 63, + "max": [ + -0.42176103591918945, + 0.06273209303617477, + 0.009731831029057503, + 0.9044819474220276 + ], + "min": [ + -0.4217611849308014, + 0.0627320259809494, + 0.009731795638799667, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1302724, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2640312, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1302976, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2641068, + "componentType": 5126, + "count": 63, + "max": [ + 0.016226986423134804, + 0.21308636665344238, + -0.0035594068467617035 + ], + "min": [ + 0.016226714476943016, + 0.21308587491512299, + -0.003559563308954239 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1303228, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1690480, + "componentType": 5126, + "count": 63, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177220076322556, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296970695257187, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1303480, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2641824, + "componentType": 5126, + "count": 63, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1303732, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2642580, + "componentType": 5126, + "count": 63, + "max": [ + 1.0057043908773267e-07, + 0.08465003222227097, + -1.1896919005494055e-07 + ], + "min": [ + -7.052195627466062e-08, + 0.08464986085891724, + -4.885183670921833e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1303984, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1691488, + "componentType": 5126, + "count": 62, + "max": [ + -0.4092182219028473, + 0.002027463633567095, + 0.00807743426412344, + 0.9123985767364502 + ], + "min": [ + -0.40921837091445923, + 0.0020274126436561346, + 0.008077394217252731, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1304232, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2643336, + "componentType": 5126, + "count": 62, + "max": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999993443489075 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1304480, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2644080, + "componentType": 5126, + "count": 63, + "max": [ + -0.11189649254083633, + 0.10988959670066833, + -0.05163121595978737 + ], + "min": [ + -0.11189700663089752, + 0.10988908261060715, + -0.05163155123591423 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1304732, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1692480, + "componentType": 5126, + "count": 61, + "max": [ + -0.43224576115608215, + -0.12903624773025513, + 0.15030045807361603, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030035376548767, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1304976, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2644836, + "componentType": 5126, + "count": 62, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1305224, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2645580, + "componentType": 5126, + "count": 63, + "max": [ + 2.0433967051758373e-07, + 0.08512401580810547, + 1.1982675118815678e-07 + ], + "min": [ + -1.5450412149675685e-07, + 0.08512379974126816, + -1.3214537375461077e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1305476, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1693456, + "componentType": 5126, + "count": 62, + "max": [ + 0.1481143683195114, + -0.12198013812303543, + -0.12739083170890808, + 0.9731159210205078 + ], + "min": [ + 0.14811429381370544, + -0.1219801977276802, + -0.12739093601703644, + 0.973115861415863 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1305724, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2646336, + "componentType": 5126, + "count": 61, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999998211860657, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1305968, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2647068, + "componentType": 5126, + "count": 63, + "max": [ + -0.005584827158600092, + 0.1660449057817459, + -0.04539335146546364 + ], + "min": [ + -0.0055851093493402, + 0.1660441905260086, + -0.04539363831281662 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1306220, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1694448, + "componentType": 5126, + "count": 63, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501915633678436, + 0.02386539615690708 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501893281936646, + 0.023865370079874992 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1306472, + "componentType": 5126, + "count": 60, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2647824, + "componentType": 5126, + "count": 60, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1306712, + "componentType": 5126, + "count": 65, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2648544, + "componentType": 5126, + "count": 65, + "max": [ + 0.13640348613262177, + 0.2850474715232849, + 0.0019398024305701256 + ], + "min": [ + 0.13640306890010834, + 0.2850465178489685, + 0.0019396698335185647 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1306972, + "componentType": 5126, + "count": 52, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1695456, + "componentType": 5126, + "count": 52, + "max": [ + -6.162849075508348e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.516180674343559e-07 + ], + "min": [ + -9.339444062561597e-08, + -0.6935806274414063, + -0.7203789949417114, + 1.153172917156553e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1307180, + "componentType": 5126, + "count": 51, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2649324, + "componentType": 5126, + "count": 51, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 1.0, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1307384, + "componentType": 5126, + "count": 66, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2649936, + "componentType": 5126, + "count": 66, + "max": [ + -0.1364031881093979, + 0.2850474715232849, + 0.001939862733706832 + ], + "min": [ + -0.13640333712100983, + 0.2850465178489685, + 0.0019397435244172812 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1307648, + "componentType": 5126, + "count": 58, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1696288, + "componentType": 5126, + "count": 58, + "max": [ + -5.595545360392862e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.27626030538886e-08 + ], + "min": [ + -9.738418071947308e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.870316689358333e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1307880, + "componentType": 5126, + "count": 57, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2650728, + "componentType": 5126, + "count": 57, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1308108, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2651412, + "componentType": 5126, + "count": 32, + "max": [ + 0.27831587195396423, + 0.8416351079940796, + -0.7300586700439453 + ], + "min": [ + -0.054857686161994934, + 0.5460788011550903, + -1.5414949655532837 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1308236, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2651796, + "componentType": 5126, + "count": 62, + "max": [ + 0.687953531742096, + 0.417879581451416, + -0.24350875616073608 + ], + "min": [ + -0.026756227016448975, + 0.07933326065540314, + -0.9313482642173767 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1308484, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1697216, + "componentType": 5126, + "count": 33, + "max": [ + -0.9675758481025696, + -0.04440417140722275, + 0.18829962611198425, + 0.14794233441352844 + ], + "min": [ + -0.995956301689148, + -0.09270712733268738, + 5.499563826560916e-07, + 5.1205393702957736e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1308616, + "componentType": 5126, + "count": 29, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2652540, + "componentType": 5126, + "count": 29, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1308732, + "componentType": 5126, + "count": 62, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2652888, + "componentType": 5126, + "count": 62, + "max": [ + 3.5449862480163574e-05, + -1.2288685979910952e-07, + -1.9619417912508652e-07 + ], + "min": [ + -1.8075108528137207e-05, + -4.3571384594542906e-05, + -0.00010771083907457069 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1308980, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1697744, + "componentType": 5126, + "count": 33, + "max": [ + -0.9503703713417053, + 1.5193913682765015e-08, + 1.062121590678089e-08, + 0.31112080812454224 + ], + "min": [ + -0.9503704309463501, + -1.5111238482745648e-08, + -2.246480335088563e-08, + 0.31112077832221985 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1309112, + "componentType": 5126, + "count": 31, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2653632, + "componentType": 5126, + "count": 31, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 0.9999998211860657 + ], + "min": [ + 0.9999998807907104, + 0.9999998807907104, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1309236, + "componentType": 5126, + "count": 61, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2654004, + "componentType": 5126, + "count": 61, + "max": [ + 1.1920928955078125e-07, + 0.28249990940093994, + 7.568682747205457e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.282499760389328, + -6.268953001153932e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1309480, + "componentType": 5126, + "count": 33, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1698272, + "componentType": 5126, + "count": 33, + "max": [ + -7.196079110372011e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.362465801932558e-07 + ], + "min": [ + -9.019047553238124e-08, + 0.9818702340126038, + -0.1895543783903122, + 4.0923001165538153e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1309612, + "componentType": 5126, + "count": 32, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2654736, + "componentType": 5126, + "count": 32, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1309740, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2655120, + "componentType": 5126, + "count": 63, + "max": [ + -8.791685104370117e-07, + 9.593794857210014e-06, + -1.460418843635125e-06 + ], + "min": [ + -2.1979212760925293e-05, + 4.102334116851125e-07, + -3.751264011953026e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1309992, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1698800, + "componentType": 5126, + "count": 3, + "max": [ + -0.9503704309463501, + -2.6476052461532618e-09, + 2.4998469072556873e-08, + 0.31112077832221985 + ], + "min": [ + -0.9503704309463501, + -1.2046444730628991e-08, + 1.3154877187560032e-08, + 0.31112074851989746 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1310004, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2655876, + "componentType": 5126, + "count": 3, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999996423721313 + ], + "min": [ + 1.0000001192092896, + 1.0000001192092896, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1310016, + "componentType": 5126, + "count": 63, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2655912, + "componentType": 5126, + "count": 63, + "max": [ + 5.960464477539063e-08, + 0.28249990940093994, + 6.49861409129926e-09 + ], + "min": [ + -1.1920928955078125e-07, + 0.28249984979629517, + -2.400842724625818e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1310268, + "componentType": 5126, + "count": 3, + "max": [ + 1.3333333730697632 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1698848, + "componentType": 5126, + "count": 3, + "max": [ + -9.035837678084135e-08, + -0.9818702340126038, + 0.1895543783903122, + 4.2614237827365287e-07 + ], + "min": [ + -9.203341022612221e-08, + -0.9818702340126038, + 0.1895543485879898, + 4.2585165260788926e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1310280, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2656668, + "componentType": 5126, + "count": 101, + "max": [ + 0.030920162796974182, + -0.04263405501842499, + -1.3776758909225464 + ], + "min": [ + -0.04881729930639267, + -0.08483371138572693, + -1.4513331651687622 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1310684, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1698896, + "componentType": 5126, + "count": 101, + "max": [ + -0.03479963541030884, + 0.010921822860836983, + 0.3121051788330078, + 0.9981791973114014 + ], + "min": [ + -0.03559768572449684, + -0.00621718168258667, + 0.04887367784976959, + 0.949389636516571 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1311088, + "componentType": 5126, + "count": 82, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2657880, + "componentType": 5126, + "count": 82, + "max": [ + 1.0, + 1.0, + 1.0 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1311416, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2658864, + "componentType": 5126, + "count": 101, + "max": [ + 1.1175767866689057e-08, + 0.0021274052560329437, + 1.1920928955078125e-07 + ], + "min": [ + -7.450787542495618e-09, + 0.002127384766936302, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1311820, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1700512, + "componentType": 5126, + "count": 101, + "max": [ + 0.7071067690849304, + 3.2243136161014263e-07, + -2.900083302392886e-07, + 0.7071067690849304 + ], + "min": [ + 0.7071067690849304, + 2.9072862162138335e-07, + -3.233060112961539e-07, + 0.7071067690849304 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1312224, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2660076, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1312624, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2661276, + "componentType": 5126, + "count": 101, + "max": [ + 0.17381834983825684, + 0.13409841060638428, + 3.093363787343151e-08 + ], + "min": [ + 0.17381829023361206, + 0.13409745693206787, + 7.220103404037559e-10 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1313028, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1702128, + "componentType": 5126, + "count": 101, + "max": [ + -0.13052845001220703, + 0.13144582509994507, + -0.20721037685871124, + 0.9695425033569336 + ], + "min": [ + -0.2464948445558548, + -0.10212302953004837, + -0.2648604214191437, + 0.9363330602645874 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1313432, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2662488, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.999999463558197, + 0.9999995231628418, + 0.9999992847442627 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1313836, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2663700, + "componentType": 5126, + "count": 101, + "max": [ + 9.08086690287746e-08, + 0.6356115937232971, + 6.92653756573236e-08 + ], + "min": [ + -1.476099100727879e-07, + 0.635611355304718, + -6.769725757749256e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1314240, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1703744, + "componentType": 5126, + "count": 101, + "max": [ + 0.304900199174881, + 2.038335544796155e-08, + -2.4831702916117138e-08, + 0.9874269366264343 + ], + "min": [ + 0.15807603299617767, + -2.8904114657279933e-08, + -6.40655386519029e-08, + 0.952384352684021 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1314644, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2664912, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000007152557373, + 1.0000004768371582, + 1.0000001192092896 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1315048, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2666124, + "componentType": 5126, + "count": 101, + "max": [ + -0.17381836473941803, + 0.13409864902496338, + 7.056897288748587e-08 + ], + "min": [ + -0.1738184243440628, + 0.13409793376922607, + 1.577184249867969e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1315452, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1705360, + "componentType": 5126, + "count": 101, + "max": [ + 0.06931809335947037, + -0.09239577502012253, + 0.2113306224346161, + 0.9830514192581177 + ], + "min": [ + 0.00759652117267251, + -0.3354860544204712, + 0.15065638720989227, + 0.9263295531272888 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1315856, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2667336, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.999999463558197, + 0.999999463558197, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1316260, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2668548, + "componentType": 5126, + "count": 101, + "max": [ + 8.072721158214335e-08, + 0.6356115937232971, + 5.730314711627216e-08 + ], + "min": [ + -9.808672984945588e-08, + 0.635611355304718, + -3.46941746443008e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1316664, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1706976, + "componentType": 5126, + "count": 101, + "max": [ + 0.375218003988266, + 2.2179397873856033e-08, + 2.3401474891215912e-07, + 0.9844073057174683 + ], + "min": [ + 0.17590413987636566, + 3.1586246951320618e-09, + 6.723527690155606e-08, + 0.9269365668296814 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1317068, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2669760, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000005960464478, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.999999463558197, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1317472, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2670972, + "componentType": 5126, + "count": 101, + "max": [ + 7.450683625620513e-09, + 0.0021274068858474493, + 2.3841823804104934e-07 + ], + "min": [ + -7.450787542495618e-09, + 0.0021273845341056585, + -3.576382994197047e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1317876, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1708592, + "componentType": 5126, + "count": 101, + "max": [ + -0.6495169997215271, + -0.10214788466691971, + 0.05446396768093109, + 0.7514832615852356 + ], + "min": [ + -0.6495170593261719, + -0.10214793682098389, + 0.05446392297744751, + 0.7514832615852356 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1318280, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2672184, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1318684, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2673396, + "componentType": 5126, + "count": 101, + "max": [ + 2.9802322387695313e-08, + 0.2726660966873169, + 1.89757436430682e-08 + ], + "min": [ + -2.9802322387695313e-08, + 0.27266550064086914, + -2.375859153858073e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1319088, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1710208, + "componentType": 5126, + "count": 101, + "max": [ + 0.08502467721700668, + 0.1844751238822937, + 0.036895330995321274, + 0.9952778220176697 + ], + "min": [ + 0.02443493902683258, + 0.05683112144470215, + -0.011257926933467388, + 0.979414165019989 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1319492, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2674608, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1319896, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2675820, + "componentType": 5126, + "count": 99, + "max": [ + 0.04481618106365204, + 0.5170735716819763, + 0.010738103650510311 + ], + "min": [ + 0.04481610655784607, + 0.517072856426239, + 0.010737846605479717 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1320292, + "componentType": 5126, + "count": 94, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1711824, + "componentType": 5126, + "count": 94, + "max": [ + -0.4904356002807617, + -0.49043551087379456, + -0.24677708745002747, + 0.5093849301338196 + ], + "min": [ + -0.5579028129577637, + -0.6734522581100464, + -0.5093848705291748, + 0.41934719681739807 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1320668, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2677008, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1321072, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2678220, + "componentType": 5126, + "count": 101, + "max": [ + 0.02354121208190918, + 0.24807527661323547, + -0.06467527896165848 + ], + "min": [ + -0.003032031701877713, + 0.23647278547286987, + -0.11545310914516449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1321476, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1713328, + "componentType": 5126, + "count": 101, + "max": [ + -0.4304267168045044, + -0.020786812528967857, + 0.5455286502838135, + 0.7446866035461426 + ], + "min": [ + -0.7074289917945862, + -0.48809945583343506, + -0.48436495661735535, + 0.5375983715057373 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1321880, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2679432, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1322284, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2680644, + "componentType": 5126, + "count": 101, + "max": [ + 2.533822396344476e-07, + 0.4048616290092468, + 3.276919358086161e-07 + ], + "min": [ + -2.351205097284037e-07, + 0.40486112236976624, + 8.3482397883472e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1322688, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1714944, + "componentType": 5126, + "count": 101, + "max": [ + 0.07776038348674774, + 0.5269917249679565, + -0.05433107167482376, + 0.986395537853241 + ], + "min": [ + -0.24400818347930908, + -0.5621582269668579, + -0.2805497944355011, + 0.7575183510780334 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1323092, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2681856, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.9999997615814209, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1323496, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2683068, + "componentType": 5126, + "count": 101, + "max": [ + 3.3492969464532507e-07, + 0.403270959854126, + 7.267957613521503e-08 + ], + "min": [ + -2.3364636092537694e-07, + 0.4032702147960663, + -1.9483314872559276e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1323900, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1716560, + "componentType": 5126, + "count": 101, + "max": [ + 0.2884233295917511, + 0.39465609192848206, + 0.12710078060626984, + 0.9981614351272583 + ], + "min": [ + -0.11016573756933212, + -0.04306048899888992, + -0.07347290962934494, + 0.9037386178970337 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1324304, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2684280, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1324708, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2685492, + "componentType": 5126, + "count": 101, + "max": [ + 0.09804308414459229, + 0.2196308970451355, + -0.0024724334944039583 + ], + "min": [ + 0.0980420708656311, + 0.21963024139404297, + -0.0024730716831982136 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1325112, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1718176, + "componentType": 5126, + "count": 101, + "max": [ + -0.07486835867166519, + 0.04316417872905731, + 0.05985841527581215, + 0.9944589734077454 + ], + "min": [ + -0.6223368048667908, + -0.0009817222598940134, + 0.03366415575146675, + 0.7820247411727905 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1325516, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2686704, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1325920, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2687916, + "componentType": 5126, + "count": 101, + "max": [ + 2.5877412213048956e-07, + 0.09750291705131531, + 4.943558451486751e-07 + ], + "min": [ + -3.4176352414760913e-07, + 0.097502201795578, + 1.1842459457511723e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1326324, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1719792, + "componentType": 5126, + "count": 101, + "max": [ + 0.03741505742073059, + 0.0024659449700266123, + -0.011429737322032452, + 0.9998462796211243 + ], + "min": [ + -0.5302281975746155, + -0.006611228454858065, + -0.053396034985780716, + 0.8461683392524719 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1326728, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2689128, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000004768371582, + 1.0000003576278687 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1327132, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2690340, + "componentType": 5126, + "count": 101, + "max": [ + -0.016226449981331825, + 0.21308661997318268, + -0.0035592690110206604 + ], + "min": [ + -0.01622728817164898, + 0.21308556199073792, + -0.0035597553942352533 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1327536, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1721408, + "componentType": 5126, + "count": 101, + "max": [ + -0.08286041766405106, + -0.01665077731013298, + 0.10185596346855164, + 0.9912024736404419 + ], + "min": [ + -0.626492977142334, + -0.07110273838043213, + 0.07480831444263458, + 0.7725636959075928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1327940, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2691552, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1328344, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2692764, + "componentType": 5126, + "count": 101, + "max": [ + 2.309349298457164e-07, + 0.0846502035856247, + -4.815615284314845e-08 + ], + "min": [ + -2.465569366449927e-07, + 0.08464948832988739, + -4.1924914739865926e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1328748, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1723024, + "componentType": 5126, + "count": 101, + "max": [ + 0.07249855995178223, + -0.0011796527542173862, + -0.00614937674254179, + 0.9999409914016724 + ], + "min": [ + -0.5015433430671692, + -0.005616075359284878, + -0.008244064636528492, + 0.8650924563407898 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1329152, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2693976, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000004768371582, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999995827674866, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1329556, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2695188, + "componentType": 5126, + "count": 101, + "max": [ + 0.1118970438838005, + 0.10988966375589371, + -0.051631029695272446 + ], + "min": [ + 0.1118963211774826, + 0.10988888889551163, + -0.05163168907165527 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1329960, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1724640, + "componentType": 5126, + "count": 101, + "max": [ + -0.2239963710308075, + 0.164932981133461, + -0.2170046716928482, + 0.9452701807022095 + ], + "min": [ + -0.45730361342430115, + 0.09591121226549149, + -0.3159090280532837, + 0.8147834539413452 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1330364, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2696400, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997019767761, + 0.9999996423721313 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1330764, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2697600, + "componentType": 5126, + "count": 101, + "max": [ + 1.1837228441891057e-07, + 0.08512447029352188, + 2.4394788056270045e-07 + ], + "min": [ + -2.572204493844765e-07, + 0.08512351661920547, + -2.3122815662190987e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1331168, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1726256, + "componentType": 5126, + "count": 101, + "max": [ + 0.022910557687282562, + 0.024982642382383347, + 0.6957964301109314, + 0.9993889927864075 + ], + "min": [ + 0.00809434149414301, + 0.01283571682870388, + 0.023065168410539627, + 0.71775883436203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1331572, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2698812, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000004768371582, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999999403953552, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1331976, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2700024, + "componentType": 5126, + "count": 101, + "max": [ + 0.005585368722677231, + 0.16604486107826233, + -0.04539332538843155 + ], + "min": [ + 0.005584631580859423, + 0.16604408621788025, + -0.0453936904668808 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1332380, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1727872, + "componentType": 5126, + "count": 101, + "max": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350187838077545, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + 0.7849701046943665, + -0.03350193053483963, + 0.023865366354584694 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1332784, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2701236, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999998211860657, + 0.9999997615814209, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1333184, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2702436, + "componentType": 5126, + "count": 101, + "max": [ + 4.842877743271856e-08, + 0.5450077652931213, + 6.3007995265707e-08 + ], + "min": [ + -4.470348002882929e-08, + 0.5450068116188049, + -7.41838732665201e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1333588, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1729488, + "componentType": 5126, + "count": 101, + "max": [ + 0.03440123423933983, + 0.19622471928596497, + -0.009186762385070324, + 0.9933046698570251 + ], + "min": [ + -0.033354081213474274, + 0.11192305386066437, + -0.08544415235519409, + 0.9762232303619385 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1333992, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2703648, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1334396, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2704860, + "componentType": 5126, + "count": 101, + "max": [ + 4.470348358154297e-08, + 0.11002874374389648, + 5.774200317887335e-08 + ], + "min": [ + -4.470348358154297e-08, + 0.11002779006958008, + -6.146728992462158e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1334800, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1731104, + "componentType": 5126, + "count": 101, + "max": [ + 0.015896303579211235, + 0.19457033276557922, + -0.01155341137200594, + 0.9926614761352539 + ], + "min": [ + -0.0521373488008976, + 0.11165077239274979, + -0.08914709091186523, + 0.9766998291015625 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1335204, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2706072, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999995827674866, + 0.999999463558197, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1335608, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2707284, + "componentType": 5126, + "count": 101, + "max": [ + 1.1564645774342353e-06, + 0.3614494800567627, + 0.026841364800930023 + ], + "min": [ + 1.037255287883454e-06, + 0.361447811126709, + 0.02684103697538376 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1336012, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1732720, + "componentType": 5126, + "count": 101, + "max": [ + 1.341104507446289e-07, + 4.4237861374085696e-08, + 2.2351740014414645e-08, + 1.0 + ], + "min": [ + 9.685754776000977e-08, + -1.0710145659231785e-08, + -7.450580596923828e-09, + 1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1336416, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2708496, + "componentType": 5126, + "count": 99, + "max": [ + 1.0000007152557373, + 0.9999998211860657, + 1.0000007152557373 + ], + "min": [ + 1.0000001192092896, + 0.9999992847442627, + 1.000000238418579 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1336812, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2709684, + "componentType": 5126, + "count": 101, + "max": [ + 6.714503797411453e-07, + -0.15833891928195953, + -0.2537654936313629 + ], + "min": [ + 4.479329049900116e-07, + -0.15834082663059235, + -0.25376591086387634 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1337216, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1734336, + "componentType": 5126, + "count": 101, + "max": [ + -0.998119592666626, + 2.8946882224545334e-08, + -1.9952004493006825e-07, + 0.06129663810133934 + ], + "min": [ + -0.998119592666626, + -1.7143438058031535e-10, + -2.4692008082638495e-07, + 0.06129659339785576 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1337620, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2710896, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000007152557373, + 1.0000007152557373, + 0.9999719858169556 + ], + "min": [ + 1.000000238418579, + 1.0000003576278687, + 0.9999716877937317 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1338024, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2712108, + "componentType": 5126, + "count": 101, + "max": [ + 8.94069742685133e-08, + 0.25394749641418457, + 2.9336550255720795e-07 + ], + "min": [ + -7.450579175838357e-08, + 0.25394678115844727, + -1.6022258364500885e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1338428, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1735952, + "componentType": 5126, + "count": 101, + "max": [ + 0.15613597631454468, + -8.530378892146473e-08, + 2.2967958202002592e-08, + 0.9877355694770813 + ], + "min": [ + 0.1561359167098999, + -1.3461797720992763e-07, + -1.0097843450296295e-08, + 0.9877355694770813 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1338832, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2713320, + "componentType": 5126, + "count": 99, + "max": [ + 1.0000015497207642, + 1.0000017881393433, + 1.0000014305114746 + ], + "min": [ + 1.0000011920928955, + 1.0000014305114746, + 1.000001072883606 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1339228, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2714508, + "componentType": 5126, + "count": 101, + "max": [ + 8.940696716308594e-08, + 0.2533194422721863, + 1.3909300378145417e-07 + ], + "min": [ + -5.960464477539063e-08, + 0.2533189356327057, + -1.905240338828662e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1339632, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1737568, + "componentType": 5126, + "count": 101, + "max": [ + -0.09231441468000412, + 2.6312484635582223e-08, + 7.283829095428018e-09, + 0.995729923248291 + ], + "min": [ + -0.0923144519329071, + -3.073767373962255e-08, + -2.2771867946858038e-08, + 0.995729923248291 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1340036, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2715720, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000008344650269, + 0.9999999403953552 + ], + "min": [ + 0.9999997615814209, + 1.0000003576278687, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1340440, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2716932, + "componentType": 5126, + "count": 101, + "max": [ + 8.940696716308594e-08, + 0.2637789845466614, + 2.754261458903784e-07 + ], + "min": [ + -8.940696716308594e-08, + 0.2637783885002136, + -1.5621685633959714e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1340844, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1739184, + "componentType": 5126, + "count": 101, + "max": [ + 1.4939883996589742e-08, + -0.9896631240844727, + 0.1434117704629898, + 1.1069005978470159e-07 + ], + "min": [ + -7.92805199267832e-09, + -0.9896631240844727, + 0.14341172575950623, + 4.5857397878990014e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1341248, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2718144, + "componentType": 5126, + "count": 101, + "max": [ + 1.000001072883606, + 1.0000015497207642, + 1.0000015497207642 + ], + "min": [ + 1.0000005960464478, + 1.0000008344650269, + 1.0000009536743164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1341652, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2719356, + "componentType": 5126, + "count": 101, + "max": [ + 9.85606448011822e-07, + 0.24314384162425995, + 0.18703316152095795 + ], + "min": [ + 2.011950783753491e-07, + 0.243142768740654, + 0.1870325207710266 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1342056, + "componentType": 5126, + "count": 56, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1740800, + "componentType": 5126, + "count": 56, + "max": [ + 0.44783374667167664, + -0.23266465961933136, + 0.3746444284915924, + 0.7777877449989319 + ], + "min": [ + 0.44783368706703186, + -0.23266471922397614, + 0.37464433908462524, + 0.7777876853942871 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1342280, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2720568, + "componentType": 5126, + "count": 101, + "max": [ + 0.9999997615814209, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999992847442627, + 0.9999998807907104, + 0.9999998807907104 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1342684, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2721780, + "componentType": 5126, + "count": 101, + "max": [ + -0.24418973922729492, + -0.13046181201934814, + 0.029651110991835594 + ], + "min": [ + -0.24419008195400238, + -0.13046345114707947, + 0.02965080924332142 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1343088, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1741696, + "componentType": 5126, + "count": 101, + "max": [ + 0.007415757514536381, + -0.0742839053273201, + -0.9923431277275085, + 0.0983974039554596 + ], + "min": [ + 0.00741569884121418, + -0.07428392767906189, + -0.9923431277275085, + 0.09839737415313721 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1343492, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2722992, + "componentType": 5126, + "count": 101, + "max": [ + 0.9999988675117493, + 1.0000020265579224, + 1.0000003576278687 + ], + "min": [ + 0.9999983906745911, + 1.000001311302185, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1343896, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2724204, + "componentType": 5126, + "count": 101, + "max": [ + 0.24341821670532227, + -0.13046403229236603, + 0.02965158224105835 + ], + "min": [ + 0.24341782927513123, + -0.13046592473983765, + 0.029651274904608727 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1344300, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1743312, + "componentType": 5126, + "count": 100, + "max": [ + 0.007417469285428524, + 0.07428370416164398, + 0.9923431277275085, + 0.09839752316474915 + ], + "min": [ + 0.007417409215122461, + 0.0742836743593216, + 0.9923431277275085, + 0.09839749336242676 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1344700, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2725416, + "componentType": 5126, + "count": 99, + "max": [ + 0.999999463558197, + 1.0000026226043701, + 0.9999999403953552 + ], + "min": [ + 0.9999988675117493, + 1.0000020265579224, + 0.999999463558197 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1345096, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2726604, + "componentType": 5126, + "count": 101, + "max": [ + -0.04481609910726547, + 0.5170735716819763, + 0.010738248005509377 + ], + "min": [ + -0.04481618478894234, + 0.517072856426239, + 0.010737822391092777 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1345500, + "componentType": 5126, + "count": 83, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1744912, + "componentType": 5126, + "count": 83, + "max": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555121660232544 + ], + "min": [ + -0.5382573008537292, + 0.5097403526306152, + 0.5019242763519287, + 0.44555115699768066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1345832, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2727816, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.0000003576278687, + 1.000000238418579 + ], + "min": [ + 0.9999997019767761, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1346232, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2729016, + "componentType": 5126, + "count": 101, + "max": [ + 0.01787041872739792, + 0.2325083166360855, + -0.03527332842350006 + ], + "min": [ + 0.017870299518108368, + 0.23250821232795715, + -0.03527452051639557 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1346636, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1746240, + "componentType": 5126, + "count": 99, + "max": [ + -0.5603393316268921, + 0.5143935680389404, + -0.3281323313713074, + 0.5601325631141663 + ], + "min": [ + -0.560339629650116, + 0.5143932104110718, + -0.32813259959220886, + 0.5601321458816528 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1347032, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2730228, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000004768371582, + 1.0000004768371582, + 1.0000007152557373 + ], + "min": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1347432, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2731428, + "componentType": 5126, + "count": 101, + "max": [ + 1.1703029656473518e-07, + 0.4048615097999573, + 2.3846806129768083e-07 + ], + "min": [ + -1.191502576602943e-07, + 0.4048609137535095, + 1.4615613963542273e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1347836, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1747824, + "componentType": 5126, + "count": 101, + "max": [ + -0.07451159507036209, + 0.4991837739944458, + -0.05700935795903206, + 0.8614022135734558 + ], + "min": [ + -0.07451165467500687, + 0.4991835355758667, + -0.057009417563676834, + 0.8614020943641663 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1348240, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2732640, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1348644, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2733852, + "componentType": 5126, + "count": 101, + "max": [ + 4.9939661295184123e-08, + 0.4032707214355469, + 1.8862440498423894e-08 + ], + "min": [ + -4.8197627222634765e-08, + 0.40327024459838867, + -1.1069789707107702e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1349048, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1749440, + "componentType": 5126, + "count": 101, + "max": [ + 0.02321254089474678, + 0.004205372184514999, + -0.02357206679880619, + 0.999443769454956 + ], + "min": [ + 0.02321251668035984, + 0.0042053223587572575, + -0.023572096601128578, + 0.999443769454956 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1349452, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2735064, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.0000001192092896, + 1.0000003576278687 + ], + "min": [ + 0.9999997019767761, + 0.9999996423721313, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1349852, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2736264, + "componentType": 5126, + "count": 101, + "max": [ + -0.09804246574640274, + 0.21963080763816833, + -0.002472554100677371 + ], + "min": [ + -0.09804265201091766, + 0.21963033080101013, + -0.002472866326570511 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1350256, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1751056, + "componentType": 5126, + "count": 101, + "max": [ + -0.5146673321723938, + 0.0499749593436718, + -0.08315922319889069, + 0.8518829345703125 + ], + "min": [ + -0.5146675109863281, + 0.04997488111257553, + -0.08315930515527725, + 0.851882815361023 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1350660, + "componentType": 5126, + "count": 99, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2737476, + "componentType": 5126, + "count": 99, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.0000003576278687 + ], + "min": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1351056, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2738664, + "componentType": 5126, + "count": 101, + "max": [ + 7.48076232071071e-08, + 0.0975026786327362, + 4.884112172476307e-07 + ], + "min": [ + -7.649497746342604e-08, + 0.09750252962112427, + 1.212098084124591e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1351460, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1752672, + "componentType": 5126, + "count": 101, + "max": [ + -0.4217608869075775, + 0.06273210048675537, + 0.009731839410960674, + 0.9044820666313171 + ], + "min": [ + -0.4217611849308014, + 0.0627320185303688, + 0.009731783531606197, + 0.9044818878173828 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1351864, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2739876, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1352268, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2741088, + "componentType": 5126, + "count": 101, + "max": [ + 0.01622699946165085, + 0.21308642625808716, + -0.0035593477077782154 + ], + "min": [ + 0.01622670516371727, + 0.21308587491512299, + -0.0035597006790339947 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1352672, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1754288, + "componentType": 5126, + "count": 101, + "max": [ + -0.5430817604064941, + 0.06296975165605545, + -0.08177219331264496, + 0.8333128690719604 + ], + "min": [ + -0.5430818796157837, + 0.06296969205141068, + -0.08177225291728973, + 0.8333128094673157 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1353076, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2742300, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1353480, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2743512, + "componentType": 5126, + "count": 101, + "max": [ + 1.0102504433007198e-07, + 0.08465001732110977, + -1.2674527738454344e-07 + ], + "min": [ + -7.972971616254654e-08, + 0.08464986085891724, + -3.786556135310093e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1353884, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1755904, + "componentType": 5126, + "count": 101, + "max": [ + -0.4092182219028473, + 0.0020274564158171415, + 0.008077436126768589, + 0.9123985767364502 + ], + "min": [ + -0.4092184603214264, + 0.0020273709669709206, + 0.00807737186551094, + 0.9123984575271606 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1354288, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2744724, + "componentType": 5126, + "count": 101, + "max": [ + 1.0000003576278687, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999996423721313, + 0.9999996423721313, + 0.9999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1354692, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2745936, + "componentType": 5126, + "count": 101, + "max": [ + -0.11189647018909454, + 0.10988953709602356, + -0.05163104087114334 + ], + "min": [ + -0.11189683526754379, + 0.10988906770944595, + -0.05163160338997841 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1355096, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1757520, + "componentType": 5126, + "count": 101, + "max": [ + -0.432245671749115, + -0.12903621792793274, + 0.15030047297477722, + 0.8797289729118347 + ], + "min": [ + -0.4322459101676941, + -0.1290363371372223, + 0.15030033886432648, + 0.8797289133071899 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1355500, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2747148, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999996423721313, + 0.9999997019767761 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1355904, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2748360, + "componentType": 5126, + "count": 101, + "max": [ + 3.363878775530793e-08, + 0.08512400090694427, + 1.1480663175689187e-07 + ], + "min": [ + -9.656943689151376e-08, + 0.08512376993894577, + -1.2996603970805154e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1356308, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1759136, + "componentType": 5126, + "count": 101, + "max": [ + 0.1481143832206726, + -0.12198013812303543, + -0.12739084661006927, + 0.9731159210205078 + ], + "min": [ + 0.14811427891254425, + -0.1219801977276802, + -0.12739092111587524, + 0.9731159210205078 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1356712, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2749572, + "componentType": 5126, + "count": 100, + "max": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999996423721313, + 0.9999997615814209, + 0.9999998211860657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1357112, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2750772, + "componentType": 5126, + "count": 101, + "max": [ + -0.0055846343748271465, + 0.16604483127593994, + -0.04539329931139946 + ], + "min": [ + -0.005585012026131153, + 0.16604429483413696, + -0.04539356380701065 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1357516, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1760752, + "componentType": 5126, + "count": 101, + "max": [ + 0.6181666851043701, + -0.7849701046943665, + 0.033501919358968735, + 0.023865405470132828 + ], + "min": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350188583135605, + 0.023865360766649246 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1357920, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2751984, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 0.9999997019767761, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1358324, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2753196, + "componentType": 5126, + "count": 101, + "max": [ + 0.13640330731868744, + 0.28504759073257446, + 0.0019399125594645739 + ], + "min": [ + 0.13640321791172028, + 0.2850469946861267, + 0.0019395597046241164 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1358728, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1762368, + "componentType": 5126, + "count": 101, + "max": [ + -4.7056492036290365e-08, + -0.6935806274414063, + -0.7203789353370667, + 1.6098377386697393e-07 + ], + "min": [ + -1.0052921339820386e-07, + -0.693580687046051, + -0.7203789949417114, + 1.1605111893686626e-07 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1359132, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2754408, + "componentType": 5126, + "count": 101, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1359536, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2755620, + "componentType": 5126, + "count": 101, + "max": [ + -0.1364031881093979, + 0.2850474715232849, + 0.0019399818265810609 + ], + "min": [ + -0.13640326261520386, + 0.2850469946861267, + 0.0019395648268982768 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1359940, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1763984, + "componentType": 5126, + "count": 101, + "max": [ + -5.568240268871705e-08, + -0.6935806274414063, + -0.7203789949417114, + 7.259983902940803e-08 + ], + "min": [ + -9.974482395591622e-08, + -0.6935806274414063, + -0.7203789949417114, + 3.489335753670275e-08 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1360344, + "componentType": 5126, + "count": 100, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2756832, + "componentType": 5126, + "count": 100, + "max": [ + 1.000000238418579, + 1.0000004768371582, + 1.000000238418579 + ], + "min": [ + 0.9999997615814209, + 1.0, + 0.9999999403953552 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1360744, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2758032, + "componentType": 5126, + "count": 101, + "max": [ + 1.8641352653503418e-05, + 3.132289450036296e-08, + -1.1688664613984656e-07 + ], + "min": [ + 1.6391277313232422e-07, + -9.998487257689703e-06, + -3.576220478862524e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1361148, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2759244, + "componentType": 5126, + "count": 101, + "max": [ + 5.960465898624534e-08, + 0.28249990940093994, + 5.91927253879021e-08 + ], + "min": [ + -1.1920928955078125e-07, + 0.2824997007846832, + -3.229207123922606e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1361552, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2760456, + "componentType": 5126, + "count": 101, + "max": [ + -7.599592208862305e-07, + 1.7212918464792892e-05, + -1.622138711354637e-06 + ], + "min": [ + -2.370774745941162e-05, + 3.6697383620776236e-07, + -4.505497054196894e-05 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1361956, + "componentType": 5126, + "count": 101, + "max": [ + 1.6666666269302368 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2761668, + "componentType": 5126, + "count": 101, + "max": [ + 1.1920928955078125e-07, + 0.28249990940093994, + 1.2729570286751368e-08 + ], + "min": [ + -5.960465188081798e-08, + 0.28249984979629517, + -3.092364408985304e-08 + ], + "type": "VEC3" + } + ], + "animations": [ + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 64, + "path": "translation" + } + } + ], + "name": "Combat_Idle", + "samplers": [ + { + "input": 25, + "interpolation": "LINEAR", + "output": 26 + }, + { + "input": 27, + "interpolation": "LINEAR", + "output": 28 + }, + { + "input": 29, + "interpolation": "LINEAR", + "output": 30 + }, + { + "input": 31, + "interpolation": "LINEAR", + "output": 32 + }, + { + "input": 33, + "interpolation": "LINEAR", + "output": 34 + }, + { + "input": 35, + "interpolation": "LINEAR", + "output": 36 + }, + { + "input": 37, + "interpolation": "LINEAR", + "output": 38 + }, + { + "input": 39, + "interpolation": "LINEAR", + "output": 40 + }, + { + "input": 41, + "interpolation": "LINEAR", + "output": 42 + }, + { + "input": 43, + "interpolation": "LINEAR", + "output": 44 + }, + { + "input": 45, + "interpolation": "LINEAR", + "output": 46 + }, + { + "input": 47, + "interpolation": "LINEAR", + "output": 48 + }, + { + "input": 49, + "interpolation": "LINEAR", + "output": 50 + }, + { + "input": 51, + "interpolation": "LINEAR", + "output": 52 + }, + { + "input": 53, + "interpolation": "LINEAR", + "output": 54 + }, + { + "input": 55, + "interpolation": "LINEAR", + "output": 56 + }, + { + "input": 57, + "interpolation": "LINEAR", + "output": 58 + }, + { + "input": 59, + "interpolation": "LINEAR", + "output": 60 + }, + { + "input": 61, + "interpolation": "LINEAR", + "output": 62 + }, + { + "input": 63, + "interpolation": "LINEAR", + "output": 64 + }, + { + "input": 65, + "interpolation": "LINEAR", + "output": 66 + }, + { + "input": 67, + "interpolation": "LINEAR", + "output": 68 + }, + { + "input": 69, + "interpolation": "LINEAR", + "output": 70 + }, + { + "input": 71, + "interpolation": "LINEAR", + "output": 72 + }, + { + "input": 73, + "interpolation": "LINEAR", + "output": 74 + }, + { + "input": 75, + "interpolation": "LINEAR", + "output": 76 + }, + { + "input": 77, + "interpolation": "LINEAR", + "output": 78 + }, + { + "input": 79, + "interpolation": "LINEAR", + "output": 80 + }, + { + "input": 81, + "interpolation": "LINEAR", + "output": 82 + }, + { + "input": 83, + "interpolation": "LINEAR", + "output": 84 + }, + { + "input": 85, + "interpolation": "LINEAR", + "output": 86 + }, + { + "input": 87, + "interpolation": "LINEAR", + "output": 88 + }, + { + "input": 89, + "interpolation": "LINEAR", + "output": 90 + }, + { + "input": 91, + "interpolation": "LINEAR", + "output": 92 + }, + { + "input": 93, + "interpolation": "LINEAR", + "output": 94 + }, + { + "input": 95, + "interpolation": "LINEAR", + "output": 96 + }, + { + "input": 97, + "interpolation": "LINEAR", + "output": 98 + }, + { + "input": 99, + "interpolation": "LINEAR", + "output": 100 + }, + { + "input": 101, + "interpolation": "LINEAR", + "output": 102 + }, + { + "input": 103, + "interpolation": "LINEAR", + "output": 104 + }, + { + "input": 105, + "interpolation": "LINEAR", + "output": 106 + }, + { + "input": 107, + "interpolation": "LINEAR", + "output": 108 + }, + { + "input": 109, + "interpolation": "LINEAR", + "output": 110 + }, + { + "input": 111, + "interpolation": "LINEAR", + "output": 112 + }, + { + "input": 113, + "interpolation": "LINEAR", + "output": 114 + }, + { + "input": 115, + "interpolation": "LINEAR", + "output": 116 + }, + { + "input": 117, + "interpolation": "LINEAR", + "output": 118 + }, + { + "input": 119, + "interpolation": "LINEAR", + "output": 120 + }, + { + "input": 121, + "interpolation": "LINEAR", + "output": 122 + }, + { + "input": 123, + "interpolation": "LINEAR", + "output": 124 + }, + { + "input": 125, + "interpolation": "LINEAR", + "output": 126 + }, + { + "input": 127, + "interpolation": "LINEAR", + "output": 128 + }, + { + "input": 129, + "interpolation": "LINEAR", + "output": 130 + }, + { + "input": 131, + "interpolation": "LINEAR", + "output": 132 + }, + { + "input": 133, + "interpolation": "LINEAR", + "output": 134 + }, + { + "input": 135, + "interpolation": "LINEAR", + "output": 136 + }, + { + "input": 137, + "interpolation": "LINEAR", + "output": 138 + }, + { + "input": 139, + "interpolation": "LINEAR", + "output": 140 + }, + { + "input": 141, + "interpolation": "LINEAR", + "output": 142 + }, + { + "input": 143, + "interpolation": "LINEAR", + "output": 144 + }, + { + "input": 145, + "interpolation": "LINEAR", + "output": 146 + }, + { + "input": 147, + "interpolation": "LINEAR", + "output": 148 + }, + { + "input": 149, + "interpolation": "LINEAR", + "output": 150 + }, + { + "input": 151, + "interpolation": "LINEAR", + "output": 152 + }, + { + "input": 153, + "interpolation": "LINEAR", + "output": 154 + }, + { + "input": 155, + "interpolation": "LINEAR", + "output": 156 + }, + { + "input": 157, + "interpolation": "LINEAR", + "output": 158 + }, + { + "input": 159, + "interpolation": "LINEAR", + "output": 160 + }, + { + "input": 161, + "interpolation": "LINEAR", + "output": 162 + }, + { + "input": 163, + "interpolation": "LINEAR", + "output": 164 + }, + { + "input": 165, + "interpolation": "LINEAR", + "output": 166 + }, + { + "input": 167, + "interpolation": "LINEAR", + "output": 168 + }, + { + "input": 169, + "interpolation": "LINEAR", + "output": 170 + }, + { + "input": 171, + "interpolation": "LINEAR", + "output": 172 + }, + { + "input": 173, + "interpolation": "LINEAR", + "output": 174 + }, + { + "input": 175, + "interpolation": "LINEAR", + "output": 176 + }, + { + "input": 177, + "interpolation": "LINEAR", + "output": 178 + }, + { + "input": 179, + "interpolation": "LINEAR", + "output": 180 + }, + { + "input": 181, + "interpolation": "LINEAR", + "output": 182 + }, + { + "input": 183, + "interpolation": "LINEAR", + "output": 184 + }, + { + "input": 185, + "interpolation": "LINEAR", + "output": 186 + }, + { + "input": 187, + "interpolation": "LINEAR", + "output": 188 + }, + { + "input": 189, + "interpolation": "LINEAR", + "output": 190 + }, + { + "input": 191, + "interpolation": "LINEAR", + "output": 192 + }, + { + "input": 193, + "interpolation": "LINEAR", + "output": 194 + }, + { + "input": 195, + "interpolation": "LINEAR", + "output": 196 + }, + { + "input": 197, + "interpolation": "LINEAR", + "output": 198 + }, + { + "input": 199, + "interpolation": "LINEAR", + "output": 200 + }, + { + "input": 201, + "interpolation": "LINEAR", + "output": 202 + }, + { + "input": 203, + "interpolation": "LINEAR", + "output": 204 + }, + { + "input": 205, + "interpolation": "LINEAR", + "output": 206 + }, + { + "input": 207, + "interpolation": "LINEAR", + "output": 208 + }, + { + "input": 209, + "interpolation": "LINEAR", + "output": 210 + }, + { + "input": 211, + "interpolation": "LINEAR", + "output": 212 + }, + { + "input": 213, + "interpolation": "LINEAR", + "output": 214 + }, + { + "input": 215, + "interpolation": "LINEAR", + "output": 216 + }, + { + "input": 217, + "interpolation": "LINEAR", + "output": 218 + }, + { + "input": 219, + "interpolation": "LINEAR", + "output": 220 + }, + { + "input": 221, + "interpolation": "LINEAR", + "output": 222 + }, + { + "input": 223, + "interpolation": "LINEAR", + "output": 224 + }, + { + "input": 225, + "interpolation": "LINEAR", + "output": 226 + }, + { + "input": 227, + "interpolation": "LINEAR", + "output": 228 + }, + { + "input": 229, + "interpolation": "LINEAR", + "output": 230 + }, + { + "input": 231, + "interpolation": "LINEAR", + "output": 232 + }, + { + "input": 233, + "interpolation": "LINEAR", + "output": 234 + }, + { + "input": 235, + "interpolation": "LINEAR", + "output": 236 + }, + { + "input": 237, + "interpolation": "LINEAR", + "output": 238 + }, + { + "input": 239, + "interpolation": "LINEAR", + "output": 240 + }, + { + "input": 241, + "interpolation": "LINEAR", + "output": 242 + }, + { + "input": 243, + "interpolation": "LINEAR", + "output": 244 + }, + { + "input": 245, + "interpolation": "LINEAR", + "output": 246 + }, + { + "input": 247, + "interpolation": "LINEAR", + "output": 248 + }, + { + "input": 249, + "interpolation": "LINEAR", + "output": 250 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 252 + }, + { + "input": 253, + "interpolation": "LINEAR", + "output": 254 + }, + { + "input": 255, + "interpolation": "LINEAR", + "output": 256 + }, + { + "input": 257, + "interpolation": "LINEAR", + "output": 258 + }, + { + "input": 259, + "interpolation": "LINEAR", + "output": 260 + }, + { + "input": 261, + "interpolation": "LINEAR", + "output": 262 + }, + { + "input": 263, + "interpolation": "LINEAR", + "output": 264 + }, + { + "input": 265, + "interpolation": "LINEAR", + "output": 266 + }, + { + "input": 267, + "interpolation": "LINEAR", + "output": 268 + }, + { + "input": 269, + "interpolation": "LINEAR", + "output": 270 + }, + { + "input": 271, + "interpolation": "LINEAR", + "output": 272 + }, + { + "input": 273, + "interpolation": "LINEAR", + "output": 274 + }, + { + "input": 275, + "interpolation": "LINEAR", + "output": 276 + }, + { + "input": 277, + "interpolation": "LINEAR", + "output": 278 + }, + { + "input": 279, + "interpolation": "LINEAR", + "output": 280 + }, + { + "input": 281, + "interpolation": "LINEAR", + "output": 282 + }, + { + "input": 283, + "interpolation": "LINEAR", + "output": 284 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 29, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 40, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 42, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 43, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 45, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 46, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "A(T-Pose)", + "samplers": [ + { + "input": 285, + "interpolation": "LINEAR", + "output": 286 + }, + { + "input": 287, + "interpolation": "LINEAR", + "output": 288 + }, + { + "input": 289, + "interpolation": "LINEAR", + "output": 290 + }, + { + "input": 291, + "interpolation": "LINEAR", + "output": 292 + }, + { + "input": 293, + "interpolation": "LINEAR", + "output": 294 + }, + { + "input": 295, + "interpolation": "LINEAR", + "output": 296 + }, + { + "input": 297, + "interpolation": "LINEAR", + "output": 298 + }, + { + "input": 299, + "interpolation": "LINEAR", + "output": 300 + }, + { + "input": 301, + "interpolation": "LINEAR", + "output": 302 + }, + { + "input": 303, + "interpolation": "LINEAR", + "output": 304 + }, + { + "input": 305, + "interpolation": "LINEAR", + "output": 306 + }, + { + "input": 307, + "interpolation": "LINEAR", + "output": 308 + }, + { + "input": 309, + "interpolation": "LINEAR", + "output": 310 + }, + { + "input": 311, + "interpolation": "LINEAR", + "output": 312 + }, + { + "input": 313, + "interpolation": "LINEAR", + "output": 314 + }, + { + "input": 315, + "interpolation": "LINEAR", + "output": 316 + }, + { + "input": 317, + "interpolation": "LINEAR", + "output": 318 + }, + { + "input": 319, + "interpolation": "LINEAR", + "output": 320 + }, + { + "input": 321, + "interpolation": "LINEAR", + "output": 322 + }, + { + "input": 323, + "interpolation": "LINEAR", + "output": 324 + }, + { + "input": 325, + "interpolation": "LINEAR", + "output": 326 + }, + { + "input": 327, + "interpolation": "LINEAR", + "output": 328 + }, + { + "input": 329, + "interpolation": "LINEAR", + "output": 330 + }, + { + "input": 331, + "interpolation": "LINEAR", + "output": 332 + }, + { + "input": 333, + "interpolation": "LINEAR", + "output": 334 + }, + { + "input": 335, + "interpolation": "LINEAR", + "output": 336 + }, + { + "input": 337, + "interpolation": "LINEAR", + "output": 338 + }, + { + "input": 339, + "interpolation": "LINEAR", + "output": 340 + }, + { + "input": 341, + "interpolation": "LINEAR", + "output": 342 + }, + { + "input": 343, + "interpolation": "LINEAR", + "output": 344 + }, + { + "input": 345, + "interpolation": "LINEAR", + "output": 346 + }, + { + "input": 347, + "interpolation": "LINEAR", + "output": 348 + }, + { + "input": 349, + "interpolation": "LINEAR", + "output": 350 + }, + { + "input": 351, + "interpolation": "LINEAR", + "output": 352 + }, + { + "input": 353, + "interpolation": "LINEAR", + "output": 354 + }, + { + "input": 355, + "interpolation": "LINEAR", + "output": 356 + }, + { + "input": 357, + "interpolation": "LINEAR", + "output": 358 + }, + { + "input": 359, + "interpolation": "LINEAR", + "output": 360 + }, + { + "input": 361, + "interpolation": "LINEAR", + "output": 362 + }, + { + "input": 363, + "interpolation": "LINEAR", + "output": 364 + }, + { + "input": 365, + "interpolation": "LINEAR", + "output": 366 + }, + { + "input": 367, + "interpolation": "LINEAR", + "output": 368 + }, + { + "input": 369, + "interpolation": "LINEAR", + "output": 370 + }, + { + "input": 371, + "interpolation": "LINEAR", + "output": 372 + }, + { + "input": 373, + "interpolation": "LINEAR", + "output": 374 + }, + { + "input": 375, + "interpolation": "LINEAR", + "output": 376 + }, + { + "input": 377, + "interpolation": "LINEAR", + "output": 378 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "B(Design_Pose_1)", + "samplers": [ + { + "input": 379, + "interpolation": "LINEAR", + "output": 380 + }, + { + "input": 381, + "interpolation": "LINEAR", + "output": 382 + }, + { + "input": 383, + "interpolation": "LINEAR", + "output": 384 + }, + { + "input": 385, + "interpolation": "LINEAR", + "output": 386 + }, + { + "input": 387, + "interpolation": "LINEAR", + "output": 388 + }, + { + "input": 389, + "interpolation": "LINEAR", + "output": 390 + }, + { + "input": 391, + "interpolation": "LINEAR", + "output": 392 + }, + { + "input": 393, + "interpolation": "LINEAR", + "output": 394 + }, + { + "input": 395, + "interpolation": "LINEAR", + "output": 396 + }, + { + "input": 397, + "interpolation": "LINEAR", + "output": 398 + }, + { + "input": 399, + "interpolation": "LINEAR", + "output": 400 + }, + { + "input": 401, + "interpolation": "LINEAR", + "output": 402 + }, + { + "input": 403, + "interpolation": "LINEAR", + "output": 404 + }, + { + "input": 405, + "interpolation": "LINEAR", + "output": 406 + }, + { + "input": 407, + "interpolation": "LINEAR", + "output": 408 + }, + { + "input": 409, + "interpolation": "LINEAR", + "output": 410 + }, + { + "input": 411, + "interpolation": "LINEAR", + "output": 412 + }, + { + "input": 413, + "interpolation": "LINEAR", + "output": 414 + }, + { + "input": 415, + "interpolation": "LINEAR", + "output": 416 + }, + { + "input": 417, + "interpolation": "LINEAR", + "output": 418 + }, + { + "input": 419, + "interpolation": "LINEAR", + "output": 420 + }, + { + "input": 421, + "interpolation": "LINEAR", + "output": 422 + }, + { + "input": 423, + "interpolation": "LINEAR", + "output": 424 + }, + { + "input": 425, + "interpolation": "LINEAR", + "output": 426 + }, + { + "input": 427, + "interpolation": "LINEAR", + "output": 428 + }, + { + "input": 429, + "interpolation": "LINEAR", + "output": 430 + }, + { + "input": 431, + "interpolation": "LINEAR", + "output": 432 + }, + { + "input": 433, + "interpolation": "LINEAR", + "output": 434 + }, + { + "input": 435, + "interpolation": "LINEAR", + "output": 436 + }, + { + "input": 437, + "interpolation": "LINEAR", + "output": 438 + }, + { + "input": 439, + "interpolation": "LINEAR", + "output": 440 + }, + { + "input": 441, + "interpolation": "LINEAR", + "output": 442 + }, + { + "input": 443, + "interpolation": "LINEAR", + "output": 444 + }, + { + "input": 445, + "interpolation": "LINEAR", + "output": 446 + }, + { + "input": 447, + "interpolation": "LINEAR", + "output": 448 + }, + { + "input": 449, + "interpolation": "LINEAR", + "output": 450 + }, + { + "input": 451, + "interpolation": "LINEAR", + "output": 452 + }, + { + "input": 453, + "interpolation": "LINEAR", + "output": 454 + }, + { + "input": 455, + "interpolation": "LINEAR", + "output": 456 + }, + { + "input": 457, + "interpolation": "LINEAR", + "output": 458 + }, + { + "input": 459, + "interpolation": "LINEAR", + "output": 460 + }, + { + "input": 461, + "interpolation": "LINEAR", + "output": 462 + }, + { + "input": 463, + "interpolation": "LINEAR", + "output": 464 + }, + { + "input": 465, + "interpolation": "LINEAR", + "output": 466 + }, + { + "input": 467, + "interpolation": "LINEAR", + "output": 468 + }, + { + "input": 469, + "interpolation": "LINEAR", + "output": 470 + }, + { + "input": 471, + "interpolation": "LINEAR", + "output": 472 + }, + { + "input": 473, + "interpolation": "LINEAR", + "output": 474 + }, + { + "input": 475, + "interpolation": "LINEAR", + "output": 476 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 42, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 45, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "B(Design_Pose_2)", + "samplers": [ + { + "input": 477, + "interpolation": "LINEAR", + "output": 478 + }, + { + "input": 479, + "interpolation": "LINEAR", + "output": 480 + }, + { + "input": 481, + "interpolation": "LINEAR", + "output": 482 + }, + { + "input": 483, + "interpolation": "LINEAR", + "output": 484 + }, + { + "input": 485, + "interpolation": "LINEAR", + "output": 486 + }, + { + "input": 487, + "interpolation": "LINEAR", + "output": 488 + }, + { + "input": 489, + "interpolation": "LINEAR", + "output": 490 + }, + { + "input": 491, + "interpolation": "LINEAR", + "output": 492 + }, + { + "input": 493, + "interpolation": "LINEAR", + "output": 494 + }, + { + "input": 495, + "interpolation": "LINEAR", + "output": 496 + }, + { + "input": 497, + "interpolation": "LINEAR", + "output": 498 + }, + { + "input": 499, + "interpolation": "LINEAR", + "output": 500 + }, + { + "input": 501, + "interpolation": "LINEAR", + "output": 502 + }, + { + "input": 503, + "interpolation": "LINEAR", + "output": 504 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 506 + }, + { + "input": 507, + "interpolation": "LINEAR", + "output": 508 + }, + { + "input": 509, + "interpolation": "LINEAR", + "output": 510 + }, + { + "input": 511, + "interpolation": "LINEAR", + "output": 512 + }, + { + "input": 513, + "interpolation": "LINEAR", + "output": 514 + }, + { + "input": 515, + "interpolation": "LINEAR", + "output": 516 + }, + { + "input": 517, + "interpolation": "LINEAR", + "output": 518 + }, + { + "input": 519, + "interpolation": "LINEAR", + "output": 520 + }, + { + "input": 521, + "interpolation": "LINEAR", + "output": 522 + }, + { + "input": 523, + "interpolation": "LINEAR", + "output": 524 + }, + { + "input": 525, + "interpolation": "LINEAR", + "output": 526 + }, + { + "input": 527, + "interpolation": "LINEAR", + "output": 528 + }, + { + "input": 529, + "interpolation": "LINEAR", + "output": 530 + }, + { + "input": 531, + "interpolation": "LINEAR", + "output": 532 + }, + { + "input": 533, + "interpolation": "LINEAR", + "output": 534 + }, + { + "input": 535, + "interpolation": "LINEAR", + "output": 536 + }, + { + "input": 537, + "interpolation": "LINEAR", + "output": 538 + }, + { + "input": 539, + "interpolation": "LINEAR", + "output": 540 + }, + { + "input": 541, + "interpolation": "LINEAR", + "output": 542 + }, + { + "input": 543, + "interpolation": "LINEAR", + "output": 544 + }, + { + "input": 545, + "interpolation": "LINEAR", + "output": 546 + }, + { + "input": 547, + "interpolation": "LINEAR", + "output": 548 + }, + { + "input": 549, + "interpolation": "LINEAR", + "output": 550 + }, + { + "input": 551, + "interpolation": "LINEAR", + "output": 552 + }, + { + "input": 553, + "interpolation": "LINEAR", + "output": 554 + }, + { + "input": 555, + "interpolation": "LINEAR", + "output": 556 + }, + { + "input": 557, + "interpolation": "LINEAR", + "output": 558 + }, + { + "input": 559, + "interpolation": "LINEAR", + "output": 560 + }, + { + "input": 561, + "interpolation": "LINEAR", + "output": 562 + }, + { + "input": 563, + "interpolation": "LINEAR", + "output": 564 + }, + { + "input": 565, + "interpolation": "LINEAR", + "output": 566 + }, + { + "input": 567, + "interpolation": "LINEAR", + "output": 568 + }, + { + "input": 569, + "interpolation": "LINEAR", + "output": 570 + }, + { + "input": 571, + "interpolation": "LINEAR", + "output": 572 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Attack_1", + "samplers": [ + { + "input": 573, + "interpolation": "LINEAR", + "output": 574 + }, + { + "input": 575, + "interpolation": "LINEAR", + "output": 576 + }, + { + "input": 577, + "interpolation": "LINEAR", + "output": 578 + }, + { + "input": 579, + "interpolation": "LINEAR", + "output": 580 + }, + { + "input": 581, + "interpolation": "LINEAR", + "output": 582 + }, + { + "input": 583, + "interpolation": "LINEAR", + "output": 584 + }, + { + "input": 585, + "interpolation": "LINEAR", + "output": 586 + }, + { + "input": 587, + "interpolation": "LINEAR", + "output": 588 + }, + { + "input": 589, + "interpolation": "LINEAR", + "output": 590 + }, + { + "input": 591, + "interpolation": "LINEAR", + "output": 592 + }, + { + "input": 593, + "interpolation": "LINEAR", + "output": 594 + }, + { + "input": 595, + "interpolation": "LINEAR", + "output": 596 + }, + { + "input": 597, + "interpolation": "LINEAR", + "output": 598 + }, + { + "input": 599, + "interpolation": "LINEAR", + "output": 600 + }, + { + "input": 601, + "interpolation": "LINEAR", + "output": 602 + }, + { + "input": 603, + "interpolation": "LINEAR", + "output": 604 + }, + { + "input": 605, + "interpolation": "LINEAR", + "output": 606 + }, + { + "input": 607, + "interpolation": "LINEAR", + "output": 608 + }, + { + "input": 609, + "interpolation": "LINEAR", + "output": 610 + }, + { + "input": 611, + "interpolation": "LINEAR", + "output": 612 + }, + { + "input": 613, + "interpolation": "LINEAR", + "output": 614 + }, + { + "input": 615, + "interpolation": "LINEAR", + "output": 616 + }, + { + "input": 617, + "interpolation": "LINEAR", + "output": 618 + }, + { + "input": 619, + "interpolation": "LINEAR", + "output": 620 + }, + { + "input": 621, + "interpolation": "LINEAR", + "output": 622 + }, + { + "input": 623, + "interpolation": "LINEAR", + "output": 624 + }, + { + "input": 625, + "interpolation": "LINEAR", + "output": 626 + }, + { + "input": 627, + "interpolation": "LINEAR", + "output": 628 + }, + { + "input": 629, + "interpolation": "LINEAR", + "output": 630 + }, + { + "input": 631, + "interpolation": "LINEAR", + "output": 632 + }, + { + "input": 633, + "interpolation": "LINEAR", + "output": 634 + }, + { + "input": 635, + "interpolation": "LINEAR", + "output": 636 + }, + { + "input": 637, + "interpolation": "LINEAR", + "output": 638 + }, + { + "input": 639, + "interpolation": "LINEAR", + "output": 640 + }, + { + "input": 641, + "interpolation": "LINEAR", + "output": 642 + }, + { + "input": 643, + "interpolation": "LINEAR", + "output": 644 + }, + { + "input": 645, + "interpolation": "LINEAR", + "output": 646 + }, + { + "input": 647, + "interpolation": "LINEAR", + "output": 648 + }, + { + "input": 649, + "interpolation": "LINEAR", + "output": 650 + }, + { + "input": 651, + "interpolation": "LINEAR", + "output": 652 + }, + { + "input": 653, + "interpolation": "LINEAR", + "output": 654 + }, + { + "input": 655, + "interpolation": "LINEAR", + "output": 656 + }, + { + "input": 657, + "interpolation": "LINEAR", + "output": 658 + }, + { + "input": 659, + "interpolation": "LINEAR", + "output": 660 + }, + { + "input": 661, + "interpolation": "LINEAR", + "output": 662 + }, + { + "input": 663, + "interpolation": "LINEAR", + "output": 664 + }, + { + "input": 665, + "interpolation": "LINEAR", + "output": 666 + }, + { + "input": 667, + "interpolation": "LINEAR", + "output": 668 + }, + { + "input": 669, + "interpolation": "LINEAR", + "output": 670 + }, + { + "input": 671, + "interpolation": "LINEAR", + "output": 672 + }, + { + "input": 673, + "interpolation": "LINEAR", + "output": 674 + }, + { + "input": 675, + "interpolation": "LINEAR", + "output": 676 + }, + { + "input": 677, + "interpolation": "LINEAR", + "output": 678 + }, + { + "input": 679, + "interpolation": "LINEAR", + "output": 680 + }, + { + "input": 681, + "interpolation": "LINEAR", + "output": 682 + }, + { + "input": 683, + "interpolation": "LINEAR", + "output": 684 + }, + { + "input": 685, + "interpolation": "LINEAR", + "output": 686 + }, + { + "input": 687, + "interpolation": "LINEAR", + "output": 688 + }, + { + "input": 689, + "interpolation": "LINEAR", + "output": 690 + }, + { + "input": 691, + "interpolation": "LINEAR", + "output": 692 + }, + { + "input": 693, + "interpolation": "LINEAR", + "output": 694 + }, + { + "input": 695, + "interpolation": "LINEAR", + "output": 696 + }, + { + "input": 697, + "interpolation": "LINEAR", + "output": 698 + }, + { + "input": 699, + "interpolation": "LINEAR", + "output": 700 + }, + { + "input": 701, + "interpolation": "LINEAR", + "output": 702 + }, + { + "input": 703, + "interpolation": "LINEAR", + "output": 704 + }, + { + "input": 705, + "interpolation": "LINEAR", + "output": 706 + }, + { + "input": 707, + "interpolation": "LINEAR", + "output": 708 + }, + { + "input": 709, + "interpolation": "LINEAR", + "output": 710 + }, + { + "input": 711, + "interpolation": "LINEAR", + "output": 712 + }, + { + "input": 713, + "interpolation": "LINEAR", + "output": 714 + }, + { + "input": 715, + "interpolation": "LINEAR", + "output": 716 + }, + { + "input": 717, + "interpolation": "LINEAR", + "output": 718 + }, + { + "input": 719, + "interpolation": "LINEAR", + "output": 720 + }, + { + "input": 721, + "interpolation": "LINEAR", + "output": 722 + }, + { + "input": 723, + "interpolation": "LINEAR", + "output": 724 + }, + { + "input": 725, + "interpolation": "LINEAR", + "output": 726 + }, + { + "input": 727, + "interpolation": "LINEAR", + "output": 728 + }, + { + "input": 729, + "interpolation": "LINEAR", + "output": 730 + }, + { + "input": 731, + "interpolation": "LINEAR", + "output": 732 + }, + { + "input": 733, + "interpolation": "LINEAR", + "output": 734 + }, + { + "input": 735, + "interpolation": "LINEAR", + "output": 736 + }, + { + "input": 737, + "interpolation": "LINEAR", + "output": 738 + }, + { + "input": 739, + "interpolation": "LINEAR", + "output": 740 + }, + { + "input": 741, + "interpolation": "LINEAR", + "output": 742 + }, + { + "input": 743, + "interpolation": "LINEAR", + "output": 744 + }, + { + "input": 745, + "interpolation": "LINEAR", + "output": 746 + }, + { + "input": 747, + "interpolation": "LINEAR", + "output": 748 + }, + { + "input": 749, + "interpolation": "LINEAR", + "output": 750 + }, + { + "input": 751, + "interpolation": "LINEAR", + "output": 752 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 754 + }, + { + "input": 755, + "interpolation": "LINEAR", + "output": 756 + }, + { + "input": 757, + "interpolation": "LINEAR", + "output": 758 + }, + { + "input": 759, + "interpolation": "LINEAR", + "output": 760 + }, + { + "input": 761, + "interpolation": "LINEAR", + "output": 762 + }, + { + "input": 763, + "interpolation": "LINEAR", + "output": 764 + }, + { + "input": 765, + "interpolation": "LINEAR", + "output": 766 + }, + { + "input": 767, + "interpolation": "LINEAR", + "output": 768 + }, + { + "input": 769, + "interpolation": "LINEAR", + "output": 770 + }, + { + "input": 771, + "interpolation": "LINEAR", + "output": 772 + }, + { + "input": 773, + "interpolation": "LINEAR", + "output": 774 + }, + { + "input": 775, + "interpolation": "LINEAR", + "output": 776 + }, + { + "input": 777, + "interpolation": "LINEAR", + "output": 778 + }, + { + "input": 779, + "interpolation": "LINEAR", + "output": 780 + }, + { + "input": 781, + "interpolation": "LINEAR", + "output": 782 + }, + { + "input": 783, + "interpolation": "LINEAR", + "output": 784 + }, + { + "input": 785, + "interpolation": "LINEAR", + "output": 786 + }, + { + "input": 787, + "interpolation": "LINEAR", + "output": 788 + }, + { + "input": 789, + "interpolation": "LINEAR", + "output": 790 + }, + { + "input": 791, + "interpolation": "LINEAR", + "output": 792 + }, + { + "input": 793, + "interpolation": "LINEAR", + "output": 794 + }, + { + "input": 795, + "interpolation": "LINEAR", + "output": 796 + }, + { + "input": 797, + "interpolation": "LINEAR", + "output": 798 + }, + { + "input": 799, + "interpolation": "LINEAR", + "output": 800 + }, + { + "input": 801, + "interpolation": "LINEAR", + "output": 802 + }, + { + "input": 803, + "interpolation": "LINEAR", + "output": 804 + }, + { + "input": 805, + "interpolation": "LINEAR", + "output": 806 + }, + { + "input": 807, + "interpolation": "LINEAR", + "output": 808 + }, + { + "input": 809, + "interpolation": "LINEAR", + "output": 810 + }, + { + "input": 811, + "interpolation": "LINEAR", + "output": 812 + }, + { + "input": 813, + "interpolation": "LINEAR", + "output": 814 + }, + { + "input": 815, + "interpolation": "LINEAR", + "output": 816 + }, + { + "input": 817, + "interpolation": "LINEAR", + "output": 818 + }, + { + "input": 819, + "interpolation": "LINEAR", + "output": 820 + }, + { + "input": 821, + "interpolation": "LINEAR", + "output": 822 + }, + { + "input": 823, + "interpolation": "LINEAR", + "output": 824 + }, + { + "input": 825, + "interpolation": "LINEAR", + "output": 826 + }, + { + "input": 827, + "interpolation": "LINEAR", + "output": 828 + }, + { + "input": 829, + "interpolation": "LINEAR", + "output": 830 + }, + { + "input": 831, + "interpolation": "LINEAR", + "output": 832 + }, + { + "input": 833, + "interpolation": "LINEAR", + "output": 834 + }, + { + "input": 835, + "interpolation": "LINEAR", + "output": 836 + }, + { + "input": 837, + "interpolation": "LINEAR", + "output": 838 + }, + { + "input": 839, + "interpolation": "LINEAR", + "output": 840 + }, + { + "input": 841, + "interpolation": "LINEAR", + "output": 842 + }, + { + "input": 843, + "interpolation": "LINEAR", + "output": 844 + }, + { + "input": 845, + "interpolation": "LINEAR", + "output": 846 + }, + { + "input": 847, + "interpolation": "LINEAR", + "output": 848 + }, + { + "input": 849, + "interpolation": "LINEAR", + "output": 850 + }, + { + "input": 851, + "interpolation": "LINEAR", + "output": 852 + }, + { + "input": 853, + "interpolation": "LINEAR", + "output": 854 + }, + { + "input": 855, + "interpolation": "LINEAR", + "output": 856 + }, + { + "input": 857, + "interpolation": "LINEAR", + "output": 858 + }, + { + "input": 859, + "interpolation": "LINEAR", + "output": 860 + }, + { + "input": 861, + "interpolation": "LINEAR", + "output": 862 + }, + { + "input": 863, + "interpolation": "LINEAR", + "output": 864 + }, + { + "input": 865, + "interpolation": "LINEAR", + "output": 866 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Attack_2", + "samplers": [ + { + "input": 867, + "interpolation": "LINEAR", + "output": 868 + }, + { + "input": 869, + "interpolation": "LINEAR", + "output": 870 + }, + { + "input": 871, + "interpolation": "LINEAR", + "output": 872 + }, + { + "input": 873, + "interpolation": "LINEAR", + "output": 874 + }, + { + "input": 875, + "interpolation": "LINEAR", + "output": 876 + }, + { + "input": 877, + "interpolation": "LINEAR", + "output": 878 + }, + { + "input": 879, + "interpolation": "LINEAR", + "output": 880 + }, + { + "input": 881, + "interpolation": "LINEAR", + "output": 882 + }, + { + "input": 883, + "interpolation": "LINEAR", + "output": 884 + }, + { + "input": 885, + "interpolation": "LINEAR", + "output": 886 + }, + { + "input": 887, + "interpolation": "LINEAR", + "output": 888 + }, + { + "input": 889, + "interpolation": "LINEAR", + "output": 890 + }, + { + "input": 891, + "interpolation": "LINEAR", + "output": 892 + }, + { + "input": 893, + "interpolation": "LINEAR", + "output": 894 + }, + { + "input": 895, + "interpolation": "LINEAR", + "output": 896 + }, + { + "input": 897, + "interpolation": "LINEAR", + "output": 898 + }, + { + "input": 899, + "interpolation": "LINEAR", + "output": 900 + }, + { + "input": 901, + "interpolation": "LINEAR", + "output": 902 + }, + { + "input": 903, + "interpolation": "LINEAR", + "output": 904 + }, + { + "input": 905, + "interpolation": "LINEAR", + "output": 906 + }, + { + "input": 907, + "interpolation": "LINEAR", + "output": 908 + }, + { + "input": 909, + "interpolation": "LINEAR", + "output": 910 + }, + { + "input": 911, + "interpolation": "LINEAR", + "output": 912 + }, + { + "input": 913, + "interpolation": "LINEAR", + "output": 914 + }, + { + "input": 915, + "interpolation": "LINEAR", + "output": 916 + }, + { + "input": 917, + "interpolation": "LINEAR", + "output": 918 + }, + { + "input": 919, + "interpolation": "LINEAR", + "output": 920 + }, + { + "input": 921, + "interpolation": "LINEAR", + "output": 922 + }, + { + "input": 923, + "interpolation": "LINEAR", + "output": 924 + }, + { + "input": 925, + "interpolation": "LINEAR", + "output": 926 + }, + { + "input": 927, + "interpolation": "LINEAR", + "output": 928 + }, + { + "input": 929, + "interpolation": "LINEAR", + "output": 930 + }, + { + "input": 931, + "interpolation": "LINEAR", + "output": 932 + }, + { + "input": 933, + "interpolation": "LINEAR", + "output": 934 + }, + { + "input": 935, + "interpolation": "LINEAR", + "output": 936 + }, + { + "input": 937, + "interpolation": "LINEAR", + "output": 938 + }, + { + "input": 939, + "interpolation": "LINEAR", + "output": 940 + }, + { + "input": 941, + "interpolation": "LINEAR", + "output": 942 + }, + { + "input": 943, + "interpolation": "LINEAR", + "output": 944 + }, + { + "input": 945, + "interpolation": "LINEAR", + "output": 946 + }, + { + "input": 947, + "interpolation": "LINEAR", + "output": 948 + }, + { + "input": 949, + "interpolation": "LINEAR", + "output": 950 + }, + { + "input": 951, + "interpolation": "LINEAR", + "output": 952 + }, + { + "input": 953, + "interpolation": "LINEAR", + "output": 954 + }, + { + "input": 955, + "interpolation": "LINEAR", + "output": 956 + }, + { + "input": 957, + "interpolation": "LINEAR", + "output": 958 + }, + { + "input": 959, + "interpolation": "LINEAR", + "output": 960 + }, + { + "input": 961, + "interpolation": "LINEAR", + "output": 962 + }, + { + "input": 963, + "interpolation": "LINEAR", + "output": 964 + }, + { + "input": 965, + "interpolation": "LINEAR", + "output": 966 + }, + { + "input": 967, + "interpolation": "LINEAR", + "output": 968 + }, + { + "input": 969, + "interpolation": "LINEAR", + "output": 970 + }, + { + "input": 971, + "interpolation": "LINEAR", + "output": 972 + }, + { + "input": 973, + "interpolation": "LINEAR", + "output": 974 + }, + { + "input": 975, + "interpolation": "LINEAR", + "output": 976 + }, + { + "input": 977, + "interpolation": "LINEAR", + "output": 978 + }, + { + "input": 979, + "interpolation": "LINEAR", + "output": 980 + }, + { + "input": 981, + "interpolation": "LINEAR", + "output": 982 + }, + { + "input": 983, + "interpolation": "LINEAR", + "output": 984 + }, + { + "input": 985, + "interpolation": "LINEAR", + "output": 986 + }, + { + "input": 987, + "interpolation": "LINEAR", + "output": 988 + }, + { + "input": 989, + "interpolation": "LINEAR", + "output": 990 + }, + { + "input": 991, + "interpolation": "LINEAR", + "output": 992 + }, + { + "input": 993, + "interpolation": "LINEAR", + "output": 994 + }, + { + "input": 995, + "interpolation": "LINEAR", + "output": 996 + }, + { + "input": 997, + "interpolation": "LINEAR", + "output": 998 + }, + { + "input": 999, + "interpolation": "LINEAR", + "output": 1000 + }, + { + "input": 1001, + "interpolation": "LINEAR", + "output": 1002 + }, + { + "input": 1003, + "interpolation": "LINEAR", + "output": 1004 + }, + { + "input": 1005, + "interpolation": "LINEAR", + "output": 1006 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1008 + }, + { + "input": 1009, + "interpolation": "LINEAR", + "output": 1010 + }, + { + "input": 1011, + "interpolation": "LINEAR", + "output": 1012 + }, + { + "input": 1013, + "interpolation": "LINEAR", + "output": 1014 + }, + { + "input": 1015, + "interpolation": "LINEAR", + "output": 1016 + }, + { + "input": 1017, + "interpolation": "LINEAR", + "output": 1018 + }, + { + "input": 1019, + "interpolation": "LINEAR", + "output": 1020 + }, + { + "input": 1021, + "interpolation": "LINEAR", + "output": 1022 + }, + { + "input": 1023, + "interpolation": "LINEAR", + "output": 1024 + }, + { + "input": 1025, + "interpolation": "LINEAR", + "output": 1026 + }, + { + "input": 1027, + "interpolation": "LINEAR", + "output": 1028 + }, + { + "input": 1029, + "interpolation": "LINEAR", + "output": 1030 + }, + { + "input": 1031, + "interpolation": "LINEAR", + "output": 1032 + }, + { + "input": 1033, + "interpolation": "LINEAR", + "output": 1034 + }, + { + "input": 1035, + "interpolation": "LINEAR", + "output": 1036 + }, + { + "input": 1037, + "interpolation": "LINEAR", + "output": 1038 + }, + { + "input": 1039, + "interpolation": "LINEAR", + "output": 1040 + }, + { + "input": 1041, + "interpolation": "LINEAR", + "output": 1042 + }, + { + "input": 1043, + "interpolation": "LINEAR", + "output": 1044 + }, + { + "input": 1045, + "interpolation": "LINEAR", + "output": 1046 + }, + { + "input": 1047, + "interpolation": "LINEAR", + "output": 1048 + }, + { + "input": 1049, + "interpolation": "LINEAR", + "output": 1050 + }, + { + "input": 1051, + "interpolation": "LINEAR", + "output": 1052 + }, + { + "input": 1053, + "interpolation": "LINEAR", + "output": 1054 + }, + { + "input": 1055, + "interpolation": "LINEAR", + "output": 1056 + }, + { + "input": 1057, + "interpolation": "LINEAR", + "output": 1058 + }, + { + "input": 1059, + "interpolation": "LINEAR", + "output": 1060 + }, + { + "input": 1061, + "interpolation": "LINEAR", + "output": 1062 + }, + { + "input": 1063, + "interpolation": "LINEAR", + "output": 1064 + }, + { + "input": 1065, + "interpolation": "LINEAR", + "output": 1066 + }, + { + "input": 1067, + "interpolation": "LINEAR", + "output": 1068 + }, + { + "input": 1069, + "interpolation": "LINEAR", + "output": 1070 + }, + { + "input": 1071, + "interpolation": "LINEAR", + "output": 1072 + }, + { + "input": 1073, + "interpolation": "LINEAR", + "output": 1074 + }, + { + "input": 1075, + "interpolation": "LINEAR", + "output": 1076 + }, + { + "input": 1077, + "interpolation": "LINEAR", + "output": 1078 + }, + { + "input": 1079, + "interpolation": "LINEAR", + "output": 1080 + }, + { + "input": 1081, + "interpolation": "LINEAR", + "output": 1082 + }, + { + "input": 1083, + "interpolation": "LINEAR", + "output": 1084 + }, + { + "input": 1085, + "interpolation": "LINEAR", + "output": 1086 + }, + { + "input": 1087, + "interpolation": "LINEAR", + "output": 1088 + }, + { + "input": 1089, + "interpolation": "LINEAR", + "output": 1090 + }, + { + "input": 1091, + "interpolation": "LINEAR", + "output": 1092 + }, + { + "input": 1093, + "interpolation": "LINEAR", + "output": 1094 + }, + { + "input": 1095, + "interpolation": "LINEAR", + "output": 1096 + }, + { + "input": 1097, + "interpolation": "LINEAR", + "output": 1098 + }, + { + "input": 1099, + "interpolation": "LINEAR", + "output": 1100 + }, + { + "input": 1101, + "interpolation": "LINEAR", + "output": 1102 + }, + { + "input": 1103, + "interpolation": "LINEAR", + "output": 1104 + }, + { + "input": 1105, + "interpolation": "LINEAR", + "output": 1106 + }, + { + "input": 1107, + "interpolation": "LINEAR", + "output": 1108 + }, + { + "input": 1109, + "interpolation": "LINEAR", + "output": 1110 + }, + { + "input": 1111, + "interpolation": "LINEAR", + "output": 1112 + }, + { + "input": 1113, + "interpolation": "LINEAR", + "output": 1114 + }, + { + "input": 1115, + "interpolation": "LINEAR", + "output": 1116 + }, + { + "input": 1117, + "interpolation": "LINEAR", + "output": 1118 + }, + { + "input": 1119, + "interpolation": "LINEAR", + "output": 1120 + }, + { + "input": 1121, + "interpolation": "LINEAR", + "output": 1122 + }, + { + "input": 1123, + "interpolation": "LINEAR", + "output": 1124 + }, + { + "input": 1125, + "interpolation": "LINEAR", + "output": 1126 + }, + { + "input": 1127, + "interpolation": "LINEAR", + "output": 1128 + }, + { + "input": 1129, + "interpolation": "LINEAR", + "output": 1130 + }, + { + "input": 1131, + "interpolation": "LINEAR", + "output": 1132 + }, + { + "input": 1133, + "interpolation": "LINEAR", + "output": 1134 + }, + { + "input": 1135, + "interpolation": "LINEAR", + "output": 1136 + }, + { + "input": 1137, + "interpolation": "LINEAR", + "output": 1138 + }, + { + "input": 1139, + "interpolation": "LINEAR", + "output": 1140 + }, + { + "input": 1141, + "interpolation": "LINEAR", + "output": 1142 + }, + { + "input": 1143, + "interpolation": "LINEAR", + "output": 1144 + }, + { + "input": 1145, + "interpolation": "LINEAR", + "output": 1146 + }, + { + "input": 1147, + "interpolation": "LINEAR", + "output": 1148 + }, + { + "input": 1149, + "interpolation": "LINEAR", + "output": 1150 + }, + { + "input": 1151, + "interpolation": "LINEAR", + "output": 1152 + }, + { + "input": 1153, + "interpolation": "LINEAR", + "output": 1154 + }, + { + "input": 1155, + "interpolation": "LINEAR", + "output": 1156 + }, + { + "input": 1157, + "interpolation": "LINEAR", + "output": 1158 + }, + { + "input": 1159, + "interpolation": "LINEAR", + "output": 1160 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 64, + "path": "rotation" + } + } + ], + "name": "Combat_Attack_3", + "samplers": [ + { + "input": 1161, + "interpolation": "LINEAR", + "output": 1162 + }, + { + "input": 1163, + "interpolation": "LINEAR", + "output": 1164 + }, + { + "input": 1165, + "interpolation": "LINEAR", + "output": 1166 + }, + { + "input": 1167, + "interpolation": "LINEAR", + "output": 1168 + }, + { + "input": 1169, + "interpolation": "LINEAR", + "output": 1170 + }, + { + "input": 1171, + "interpolation": "LINEAR", + "output": 1172 + }, + { + "input": 1173, + "interpolation": "LINEAR", + "output": 1174 + }, + { + "input": 1175, + "interpolation": "LINEAR", + "output": 1176 + }, + { + "input": 1177, + "interpolation": "LINEAR", + "output": 1178 + }, + { + "input": 1179, + "interpolation": "LINEAR", + "output": 1180 + }, + { + "input": 1181, + "interpolation": "LINEAR", + "output": 1182 + }, + { + "input": 1183, + "interpolation": "LINEAR", + "output": 1184 + }, + { + "input": 1185, + "interpolation": "LINEAR", + "output": 1186 + }, + { + "input": 1187, + "interpolation": "LINEAR", + "output": 1188 + }, + { + "input": 1189, + "interpolation": "LINEAR", + "output": 1190 + }, + { + "input": 1191, + "interpolation": "LINEAR", + "output": 1192 + }, + { + "input": 1193, + "interpolation": "LINEAR", + "output": 1194 + }, + { + "input": 1195, + "interpolation": "LINEAR", + "output": 1196 + }, + { + "input": 1197, + "interpolation": "LINEAR", + "output": 1198 + }, + { + "input": 1199, + "interpolation": "LINEAR", + "output": 1200 + }, + { + "input": 1201, + "interpolation": "LINEAR", + "output": 1202 + }, + { + "input": 1203, + "interpolation": "LINEAR", + "output": 1204 + }, + { + "input": 1205, + "interpolation": "LINEAR", + "output": 1206 + }, + { + "input": 1207, + "interpolation": "LINEAR", + "output": 1208 + }, + { + "input": 1209, + "interpolation": "LINEAR", + "output": 1210 + }, + { + "input": 1211, + "interpolation": "LINEAR", + "output": 1212 + }, + { + "input": 1213, + "interpolation": "LINEAR", + "output": 1214 + }, + { + "input": 1215, + "interpolation": "LINEAR", + "output": 1216 + }, + { + "input": 1217, + "interpolation": "LINEAR", + "output": 1218 + }, + { + "input": 1219, + "interpolation": "LINEAR", + "output": 1220 + }, + { + "input": 1221, + "interpolation": "LINEAR", + "output": 1222 + }, + { + "input": 1223, + "interpolation": "LINEAR", + "output": 1224 + }, + { + "input": 1225, + "interpolation": "LINEAR", + "output": 1226 + }, + { + "input": 1227, + "interpolation": "LINEAR", + "output": 1228 + }, + { + "input": 1229, + "interpolation": "LINEAR", + "output": 1230 + }, + { + "input": 1231, + "interpolation": "LINEAR", + "output": 1232 + }, + { + "input": 1233, + "interpolation": "LINEAR", + "output": 1234 + }, + { + "input": 1235, + "interpolation": "LINEAR", + "output": 1236 + }, + { + "input": 1237, + "interpolation": "LINEAR", + "output": 1238 + }, + { + "input": 1239, + "interpolation": "LINEAR", + "output": 1240 + }, + { + "input": 1241, + "interpolation": "LINEAR", + "output": 1242 + }, + { + "input": 1243, + "interpolation": "LINEAR", + "output": 1244 + }, + { + "input": 1245, + "interpolation": "LINEAR", + "output": 1246 + }, + { + "input": 1247, + "interpolation": "LINEAR", + "output": 1248 + }, + { + "input": 1249, + "interpolation": "LINEAR", + "output": 1250 + }, + { + "input": 1251, + "interpolation": "LINEAR", + "output": 1252 + }, + { + "input": 1253, + "interpolation": "LINEAR", + "output": 1254 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1256 + }, + { + "input": 1257, + "interpolation": "LINEAR", + "output": 1258 + }, + { + "input": 1259, + "interpolation": "LINEAR", + "output": 1260 + }, + { + "input": 1261, + "interpolation": "LINEAR", + "output": 1262 + }, + { + "input": 1263, + "interpolation": "LINEAR", + "output": 1264 + }, + { + "input": 1265, + "interpolation": "LINEAR", + "output": 1266 + }, + { + "input": 1267, + "interpolation": "LINEAR", + "output": 1268 + }, + { + "input": 1269, + "interpolation": "LINEAR", + "output": 1270 + }, + { + "input": 1271, + "interpolation": "LINEAR", + "output": 1272 + }, + { + "input": 1273, + "interpolation": "LINEAR", + "output": 1274 + }, + { + "input": 1275, + "interpolation": "LINEAR", + "output": 1276 + }, + { + "input": 1277, + "interpolation": "LINEAR", + "output": 1278 + }, + { + "input": 1279, + "interpolation": "LINEAR", + "output": 1280 + }, + { + "input": 1281, + "interpolation": "LINEAR", + "output": 1282 + }, + { + "input": 1283, + "interpolation": "LINEAR", + "output": 1284 + }, + { + "input": 1285, + "interpolation": "LINEAR", + "output": 1286 + }, + { + "input": 1287, + "interpolation": "LINEAR", + "output": 1288 + }, + { + "input": 1289, + "interpolation": "LINEAR", + "output": 1290 + }, + { + "input": 1291, + "interpolation": "LINEAR", + "output": 1292 + }, + { + "input": 1293, + "interpolation": "LINEAR", + "output": 1294 + }, + { + "input": 1295, + "interpolation": "LINEAR", + "output": 1296 + }, + { + "input": 1297, + "interpolation": "LINEAR", + "output": 1298 + }, + { + "input": 1299, + "interpolation": "LINEAR", + "output": 1300 + }, + { + "input": 1301, + "interpolation": "LINEAR", + "output": 1302 + }, + { + "input": 1303, + "interpolation": "LINEAR", + "output": 1304 + }, + { + "input": 1305, + "interpolation": "LINEAR", + "output": 1306 + }, + { + "input": 1307, + "interpolation": "LINEAR", + "output": 1308 + }, + { + "input": 1309, + "interpolation": "LINEAR", + "output": 1310 + }, + { + "input": 1311, + "interpolation": "LINEAR", + "output": 1312 + }, + { + "input": 1313, + "interpolation": "LINEAR", + "output": 1314 + }, + { + "input": 1315, + "interpolation": "LINEAR", + "output": 1316 + }, + { + "input": 1317, + "interpolation": "LINEAR", + "output": 1318 + }, + { + "input": 1319, + "interpolation": "LINEAR", + "output": 1320 + }, + { + "input": 1321, + "interpolation": "LINEAR", + "output": 1322 + }, + { + "input": 1323, + "interpolation": "LINEAR", + "output": 1324 + }, + { + "input": 1325, + "interpolation": "LINEAR", + "output": 1326 + }, + { + "input": 1327, + "interpolation": "LINEAR", + "output": 1328 + }, + { + "input": 1329, + "interpolation": "LINEAR", + "output": 1330 + }, + { + "input": 1331, + "interpolation": "LINEAR", + "output": 1332 + }, + { + "input": 1333, + "interpolation": "LINEAR", + "output": 1334 + }, + { + "input": 1335, + "interpolation": "LINEAR", + "output": 1336 + }, + { + "input": 1337, + "interpolation": "LINEAR", + "output": 1338 + }, + { + "input": 1339, + "interpolation": "LINEAR", + "output": 1340 + }, + { + "input": 1341, + "interpolation": "LINEAR", + "output": 1342 + }, + { + "input": 1343, + "interpolation": "LINEAR", + "output": 1344 + }, + { + "input": 1345, + "interpolation": "LINEAR", + "output": 1346 + }, + { + "input": 1347, + "interpolation": "LINEAR", + "output": 1348 + }, + { + "input": 1349, + "interpolation": "LINEAR", + "output": 1350 + }, + { + "input": 1351, + "interpolation": "LINEAR", + "output": 1352 + }, + { + "input": 1353, + "interpolation": "LINEAR", + "output": 1354 + }, + { + "input": 1355, + "interpolation": "LINEAR", + "output": 1356 + }, + { + "input": 1357, + "interpolation": "LINEAR", + "output": 1358 + }, + { + "input": 1359, + "interpolation": "LINEAR", + "output": 1360 + }, + { + "input": 1361, + "interpolation": "LINEAR", + "output": 1362 + }, + { + "input": 1363, + "interpolation": "LINEAR", + "output": 1364 + }, + { + "input": 1365, + "interpolation": "LINEAR", + "output": 1366 + }, + { + "input": 1367, + "interpolation": "LINEAR", + "output": 1368 + }, + { + "input": 1369, + "interpolation": "LINEAR", + "output": 1370 + }, + { + "input": 1371, + "interpolation": "LINEAR", + "output": 1372 + }, + { + "input": 1373, + "interpolation": "LINEAR", + "output": 1374 + }, + { + "input": 1375, + "interpolation": "LINEAR", + "output": 1376 + }, + { + "input": 1377, + "interpolation": "LINEAR", + "output": 1378 + }, + { + "input": 1379, + "interpolation": "LINEAR", + "output": 1380 + }, + { + "input": 1381, + "interpolation": "LINEAR", + "output": 1382 + }, + { + "input": 1383, + "interpolation": "LINEAR", + "output": 1384 + }, + { + "input": 1385, + "interpolation": "LINEAR", + "output": 1386 + }, + { + "input": 1387, + "interpolation": "LINEAR", + "output": 1388 + }, + { + "input": 1389, + "interpolation": "LINEAR", + "output": 1390 + }, + { + "input": 1391, + "interpolation": "LINEAR", + "output": 1392 + }, + { + "input": 1393, + "interpolation": "LINEAR", + "output": 1394 + }, + { + "input": 1395, + "interpolation": "LINEAR", + "output": 1396 + }, + { + "input": 1397, + "interpolation": "LINEAR", + "output": 1398 + }, + { + "input": 1399, + "interpolation": "LINEAR", + "output": 1400 + }, + { + "input": 1401, + "interpolation": "LINEAR", + "output": 1402 + }, + { + "input": 1403, + "interpolation": "LINEAR", + "output": 1404 + }, + { + "input": 1405, + "interpolation": "LINEAR", + "output": 1406 + }, + { + "input": 1407, + "interpolation": "LINEAR", + "output": 1408 + }, + { + "input": 1409, + "interpolation": "LINEAR", + "output": 1410 + }, + { + "input": 1411, + "interpolation": "LINEAR", + "output": 1412 + }, + { + "input": 1413, + "interpolation": "LINEAR", + "output": 1414 + }, + { + "input": 1415, + "interpolation": "LINEAR", + "output": 1416 + }, + { + "input": 1417, + "interpolation": "LINEAR", + "output": 1418 + }, + { + "input": 1419, + "interpolation": "LINEAR", + "output": 1420 + }, + { + "input": 1421, + "interpolation": "LINEAR", + "output": 1422 + }, + { + "input": 1423, + "interpolation": "LINEAR", + "output": 1424 + }, + { + "input": 1425, + "interpolation": "LINEAR", + "output": 1426 + }, + { + "input": 1427, + "interpolation": "LINEAR", + "output": 1428 + }, + { + "input": 1429, + "interpolation": "LINEAR", + "output": 1430 + }, + { + "input": 1431, + "interpolation": "LINEAR", + "output": 1432 + }, + { + "input": 1433, + "interpolation": "LINEAR", + "output": 1434 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Attack_4", + "samplers": [ + { + "input": 1435, + "interpolation": "LINEAR", + "output": 1436 + }, + { + "input": 1437, + "interpolation": "LINEAR", + "output": 1438 + }, + { + "input": 1439, + "interpolation": "LINEAR", + "output": 1440 + }, + { + "input": 1441, + "interpolation": "LINEAR", + "output": 1442 + }, + { + "input": 1443, + "interpolation": "LINEAR", + "output": 1444 + }, + { + "input": 1445, + "interpolation": "LINEAR", + "output": 1446 + }, + { + "input": 1447, + "interpolation": "LINEAR", + "output": 1448 + }, + { + "input": 1449, + "interpolation": "LINEAR", + "output": 1450 + }, + { + "input": 1451, + "interpolation": "LINEAR", + "output": 1452 + }, + { + "input": 1453, + "interpolation": "LINEAR", + "output": 1454 + }, + { + "input": 1455, + "interpolation": "LINEAR", + "output": 1456 + }, + { + "input": 1457, + "interpolation": "LINEAR", + "output": 1458 + }, + { + "input": 1459, + "interpolation": "LINEAR", + "output": 1460 + }, + { + "input": 1461, + "interpolation": "LINEAR", + "output": 1462 + }, + { + "input": 1463, + "interpolation": "LINEAR", + "output": 1464 + }, + { + "input": 1465, + "interpolation": "LINEAR", + "output": 1466 + }, + { + "input": 1467, + "interpolation": "LINEAR", + "output": 1468 + }, + { + "input": 1469, + "interpolation": "LINEAR", + "output": 1470 + }, + { + "input": 1471, + "interpolation": "LINEAR", + "output": 1472 + }, + { + "input": 1473, + "interpolation": "LINEAR", + "output": 1474 + }, + { + "input": 1475, + "interpolation": "LINEAR", + "output": 1476 + }, + { + "input": 1477, + "interpolation": "LINEAR", + "output": 1478 + }, + { + "input": 1479, + "interpolation": "LINEAR", + "output": 1480 + }, + { + "input": 1481, + "interpolation": "LINEAR", + "output": 1482 + }, + { + "input": 1483, + "interpolation": "LINEAR", + "output": 1484 + }, + { + "input": 1485, + "interpolation": "LINEAR", + "output": 1486 + }, + { + "input": 1487, + "interpolation": "LINEAR", + "output": 1488 + }, + { + "input": 1489, + "interpolation": "LINEAR", + "output": 1490 + }, + { + "input": 1491, + "interpolation": "LINEAR", + "output": 1492 + }, + { + "input": 1493, + "interpolation": "LINEAR", + "output": 1494 + }, + { + "input": 1495, + "interpolation": "LINEAR", + "output": 1496 + }, + { + "input": 1497, + "interpolation": "LINEAR", + "output": 1498 + }, + { + "input": 1499, + "interpolation": "LINEAR", + "output": 1500 + }, + { + "input": 1501, + "interpolation": "LINEAR", + "output": 1502 + }, + { + "input": 1503, + "interpolation": "LINEAR", + "output": 1504 + }, + { + "input": 1505, + "interpolation": "LINEAR", + "output": 1506 + }, + { + "input": 1507, + "interpolation": "LINEAR", + "output": 1508 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1510 + }, + { + "input": 1511, + "interpolation": "LINEAR", + "output": 1512 + }, + { + "input": 1513, + "interpolation": "LINEAR", + "output": 1514 + }, + { + "input": 1515, + "interpolation": "LINEAR", + "output": 1516 + }, + { + "input": 1517, + "interpolation": "LINEAR", + "output": 1518 + }, + { + "input": 1519, + "interpolation": "LINEAR", + "output": 1520 + }, + { + "input": 1521, + "interpolation": "LINEAR", + "output": 1522 + }, + { + "input": 1523, + "interpolation": "LINEAR", + "output": 1524 + }, + { + "input": 1525, + "interpolation": "LINEAR", + "output": 1526 + }, + { + "input": 1527, + "interpolation": "LINEAR", + "output": 1528 + }, + { + "input": 1529, + "interpolation": "LINEAR", + "output": 1530 + }, + { + "input": 1531, + "interpolation": "LINEAR", + "output": 1532 + }, + { + "input": 1533, + "interpolation": "LINEAR", + "output": 1534 + }, + { + "input": 1535, + "interpolation": "LINEAR", + "output": 1536 + }, + { + "input": 1537, + "interpolation": "LINEAR", + "output": 1538 + }, + { + "input": 1539, + "interpolation": "LINEAR", + "output": 1540 + }, + { + "input": 1541, + "interpolation": "LINEAR", + "output": 1542 + }, + { + "input": 1543, + "interpolation": "LINEAR", + "output": 1544 + }, + { + "input": 1545, + "interpolation": "LINEAR", + "output": 1546 + }, + { + "input": 1547, + "interpolation": "LINEAR", + "output": 1548 + }, + { + "input": 1549, + "interpolation": "LINEAR", + "output": 1550 + }, + { + "input": 1551, + "interpolation": "LINEAR", + "output": 1552 + }, + { + "input": 1553, + "interpolation": "LINEAR", + "output": 1554 + }, + { + "input": 1555, + "interpolation": "LINEAR", + "output": 1556 + }, + { + "input": 1557, + "interpolation": "LINEAR", + "output": 1558 + }, + { + "input": 1559, + "interpolation": "LINEAR", + "output": 1560 + }, + { + "input": 1561, + "interpolation": "LINEAR", + "output": 1562 + }, + { + "input": 1563, + "interpolation": "LINEAR", + "output": 1564 + }, + { + "input": 1565, + "interpolation": "LINEAR", + "output": 1566 + }, + { + "input": 1567, + "interpolation": "LINEAR", + "output": 1568 + }, + { + "input": 1569, + "interpolation": "LINEAR", + "output": 1570 + }, + { + "input": 1571, + "interpolation": "LINEAR", + "output": 1572 + }, + { + "input": 1573, + "interpolation": "LINEAR", + "output": 1574 + }, + { + "input": 1575, + "interpolation": "LINEAR", + "output": 1576 + }, + { + "input": 1577, + "interpolation": "LINEAR", + "output": 1578 + }, + { + "input": 1579, + "interpolation": "LINEAR", + "output": 1580 + }, + { + "input": 1581, + "interpolation": "LINEAR", + "output": 1582 + }, + { + "input": 1583, + "interpolation": "LINEAR", + "output": 1584 + }, + { + "input": 1585, + "interpolation": "LINEAR", + "output": 1586 + }, + { + "input": 1587, + "interpolation": "LINEAR", + "output": 1588 + }, + { + "input": 1589, + "interpolation": "LINEAR", + "output": 1590 + }, + { + "input": 1591, + "interpolation": "LINEAR", + "output": 1592 + }, + { + "input": 1593, + "interpolation": "LINEAR", + "output": 1594 + }, + { + "input": 1595, + "interpolation": "LINEAR", + "output": 1596 + }, + { + "input": 1597, + "interpolation": "LINEAR", + "output": 1598 + }, + { + "input": 1599, + "interpolation": "LINEAR", + "output": 1600 + }, + { + "input": 1601, + "interpolation": "LINEAR", + "output": 1602 + }, + { + "input": 1603, + "interpolation": "LINEAR", + "output": 1604 + }, + { + "input": 1605, + "interpolation": "LINEAR", + "output": 1606 + }, + { + "input": 1607, + "interpolation": "LINEAR", + "output": 1608 + }, + { + "input": 1609, + "interpolation": "LINEAR", + "output": 1610 + }, + { + "input": 1611, + "interpolation": "LINEAR", + "output": 1612 + }, + { + "input": 1613, + "interpolation": "LINEAR", + "output": 1614 + }, + { + "input": 1615, + "interpolation": "LINEAR", + "output": 1616 + }, + { + "input": 1617, + "interpolation": "LINEAR", + "output": 1618 + }, + { + "input": 1619, + "interpolation": "LINEAR", + "output": 1620 + }, + { + "input": 1621, + "interpolation": "LINEAR", + "output": 1622 + }, + { + "input": 1623, + "interpolation": "LINEAR", + "output": 1624 + }, + { + "input": 1625, + "interpolation": "LINEAR", + "output": 1626 + }, + { + "input": 1627, + "interpolation": "LINEAR", + "output": 1628 + }, + { + "input": 1629, + "interpolation": "LINEAR", + "output": 1630 + }, + { + "input": 1631, + "interpolation": "LINEAR", + "output": 1632 + }, + { + "input": 1633, + "interpolation": "LINEAR", + "output": 1634 + }, + { + "input": 1635, + "interpolation": "LINEAR", + "output": 1636 + }, + { + "input": 1637, + "interpolation": "LINEAR", + "output": 1638 + }, + { + "input": 1639, + "interpolation": "LINEAR", + "output": 1640 + }, + { + "input": 1641, + "interpolation": "LINEAR", + "output": 1642 + }, + { + "input": 1643, + "interpolation": "LINEAR", + "output": 1644 + }, + { + "input": 1645, + "interpolation": "LINEAR", + "output": 1646 + }, + { + "input": 1647, + "interpolation": "LINEAR", + "output": 1648 + }, + { + "input": 1649, + "interpolation": "LINEAR", + "output": 1650 + }, + { + "input": 1651, + "interpolation": "LINEAR", + "output": 1652 + }, + { + "input": 1653, + "interpolation": "LINEAR", + "output": 1654 + }, + { + "input": 1655, + "interpolation": "LINEAR", + "output": 1656 + }, + { + "input": 1657, + "interpolation": "LINEAR", + "output": 1658 + }, + { + "input": 1659, + "interpolation": "LINEAR", + "output": 1660 + }, + { + "input": 1661, + "interpolation": "LINEAR", + "output": 1662 + }, + { + "input": 1663, + "interpolation": "LINEAR", + "output": 1664 + }, + { + "input": 1665, + "interpolation": "LINEAR", + "output": 1666 + }, + { + "input": 1667, + "interpolation": "LINEAR", + "output": 1668 + }, + { + "input": 1669, + "interpolation": "LINEAR", + "output": 1670 + }, + { + "input": 1671, + "interpolation": "LINEAR", + "output": 1672 + }, + { + "input": 1673, + "interpolation": "LINEAR", + "output": 1674 + }, + { + "input": 1675, + "interpolation": "LINEAR", + "output": 1676 + }, + { + "input": 1677, + "interpolation": "LINEAR", + "output": 1678 + }, + { + "input": 1679, + "interpolation": "LINEAR", + "output": 1680 + }, + { + "input": 1681, + "interpolation": "LINEAR", + "output": 1682 + }, + { + "input": 1683, + "interpolation": "LINEAR", + "output": 1684 + }, + { + "input": 1685, + "interpolation": "LINEAR", + "output": 1686 + }, + { + "input": 1687, + "interpolation": "LINEAR", + "output": 1688 + }, + { + "input": 1689, + "interpolation": "LINEAR", + "output": 1690 + }, + { + "input": 1691, + "interpolation": "LINEAR", + "output": 1692 + }, + { + "input": 1693, + "interpolation": "LINEAR", + "output": 1694 + }, + { + "input": 1695, + "interpolation": "LINEAR", + "output": 1696 + }, + { + "input": 1697, + "interpolation": "LINEAR", + "output": 1698 + }, + { + "input": 1699, + "interpolation": "LINEAR", + "output": 1700 + }, + { + "input": 1701, + "interpolation": "LINEAR", + "output": 1702 + }, + { + "input": 1703, + "interpolation": "LINEAR", + "output": 1704 + }, + { + "input": 1705, + "interpolation": "LINEAR", + "output": 1706 + }, + { + "input": 1707, + "interpolation": "LINEAR", + "output": 1708 + }, + { + "input": 1709, + "interpolation": "LINEAR", + "output": 1710 + }, + { + "input": 1711, + "interpolation": "LINEAR", + "output": 1712 + }, + { + "input": 1713, + "interpolation": "LINEAR", + "output": 1714 + }, + { + "input": 1715, + "interpolation": "LINEAR", + "output": 1716 + }, + { + "input": 1717, + "interpolation": "LINEAR", + "output": 1718 + }, + { + "input": 1719, + "interpolation": "LINEAR", + "output": 1720 + }, + { + "input": 1721, + "interpolation": "LINEAR", + "output": 1722 + }, + { + "input": 1723, + "interpolation": "LINEAR", + "output": 1724 + }, + { + "input": 1725, + "interpolation": "LINEAR", + "output": 1726 + }, + { + "input": 1727, + "interpolation": "LINEAR", + "output": 1728 + }, + { + "input": 1729, + "interpolation": "LINEAR", + "output": 1730 + }, + { + "input": 1731, + "interpolation": "LINEAR", + "output": 1732 + }, + { + "input": 1733, + "interpolation": "LINEAR", + "output": 1734 + }, + { + "input": 1735, + "interpolation": "LINEAR", + "output": 1736 + }, + { + "input": 1737, + "interpolation": "LINEAR", + "output": 1738 + }, + { + "input": 1739, + "interpolation": "LINEAR", + "output": 1740 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 139, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 140, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 142, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 143, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 145, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 146, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 148, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 149, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Attack_5", + "samplers": [ + { + "input": 1741, + "interpolation": "LINEAR", + "output": 1742 + }, + { + "input": 1743, + "interpolation": "LINEAR", + "output": 1744 + }, + { + "input": 1745, + "interpolation": "LINEAR", + "output": 1746 + }, + { + "input": 1747, + "interpolation": "LINEAR", + "output": 1748 + }, + { + "input": 1749, + "interpolation": "LINEAR", + "output": 1750 + }, + { + "input": 1751, + "interpolation": "LINEAR", + "output": 1752 + }, + { + "input": 1753, + "interpolation": "LINEAR", + "output": 1754 + }, + { + "input": 1755, + "interpolation": "LINEAR", + "output": 1756 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1758 + }, + { + "input": 1759, + "interpolation": "LINEAR", + "output": 1760 + }, + { + "input": 1761, + "interpolation": "LINEAR", + "output": 1762 + }, + { + "input": 1763, + "interpolation": "LINEAR", + "output": 1764 + }, + { + "input": 1765, + "interpolation": "LINEAR", + "output": 1766 + }, + { + "input": 1767, + "interpolation": "LINEAR", + "output": 1768 + }, + { + "input": 1769, + "interpolation": "LINEAR", + "output": 1770 + }, + { + "input": 1771, + "interpolation": "LINEAR", + "output": 1772 + }, + { + "input": 1773, + "interpolation": "LINEAR", + "output": 1774 + }, + { + "input": 1775, + "interpolation": "LINEAR", + "output": 1776 + }, + { + "input": 1777, + "interpolation": "LINEAR", + "output": 1778 + }, + { + "input": 1779, + "interpolation": "LINEAR", + "output": 1780 + }, + { + "input": 1781, + "interpolation": "LINEAR", + "output": 1782 + }, + { + "input": 1783, + "interpolation": "LINEAR", + "output": 1784 + }, + { + "input": 1785, + "interpolation": "LINEAR", + "output": 1786 + }, + { + "input": 1787, + "interpolation": "LINEAR", + "output": 1788 + }, + { + "input": 1789, + "interpolation": "LINEAR", + "output": 1790 + }, + { + "input": 1791, + "interpolation": "LINEAR", + "output": 1792 + }, + { + "input": 1793, + "interpolation": "LINEAR", + "output": 1794 + }, + { + "input": 1795, + "interpolation": "LINEAR", + "output": 1796 + }, + { + "input": 1797, + "interpolation": "LINEAR", + "output": 1798 + }, + { + "input": 1799, + "interpolation": "LINEAR", + "output": 1800 + }, + { + "input": 1801, + "interpolation": "LINEAR", + "output": 1802 + }, + { + "input": 1803, + "interpolation": "LINEAR", + "output": 1804 + }, + { + "input": 1805, + "interpolation": "LINEAR", + "output": 1806 + }, + { + "input": 1807, + "interpolation": "LINEAR", + "output": 1808 + }, + { + "input": 1809, + "interpolation": "LINEAR", + "output": 1810 + }, + { + "input": 1811, + "interpolation": "LINEAR", + "output": 1812 + }, + { + "input": 1813, + "interpolation": "LINEAR", + "output": 1814 + }, + { + "input": 1815, + "interpolation": "LINEAR", + "output": 1816 + }, + { + "input": 1817, + "interpolation": "LINEAR", + "output": 1818 + }, + { + "input": 1819, + "interpolation": "LINEAR", + "output": 1820 + }, + { + "input": 1821, + "interpolation": "LINEAR", + "output": 1822 + }, + { + "input": 1823, + "interpolation": "LINEAR", + "output": 1824 + }, + { + "input": 1825, + "interpolation": "LINEAR", + "output": 1826 + }, + { + "input": 1827, + "interpolation": "LINEAR", + "output": 1828 + }, + { + "input": 1829, + "interpolation": "LINEAR", + "output": 1830 + }, + { + "input": 1831, + "interpolation": "LINEAR", + "output": 1832 + }, + { + "input": 1833, + "interpolation": "LINEAR", + "output": 1834 + }, + { + "input": 1835, + "interpolation": "LINEAR", + "output": 1836 + }, + { + "input": 1837, + "interpolation": "LINEAR", + "output": 1838 + }, + { + "input": 1839, + "interpolation": "LINEAR", + "output": 1840 + }, + { + "input": 1841, + "interpolation": "LINEAR", + "output": 1842 + }, + { + "input": 1843, + "interpolation": "LINEAR", + "output": 1844 + }, + { + "input": 1845, + "interpolation": "LINEAR", + "output": 1846 + }, + { + "input": 1847, + "interpolation": "LINEAR", + "output": 1848 + }, + { + "input": 1849, + "interpolation": "LINEAR", + "output": 1850 + }, + { + "input": 1851, + "interpolation": "LINEAR", + "output": 1852 + }, + { + "input": 1853, + "interpolation": "LINEAR", + "output": 1854 + }, + { + "input": 1855, + "interpolation": "LINEAR", + "output": 1856 + }, + { + "input": 1857, + "interpolation": "LINEAR", + "output": 1858 + }, + { + "input": 1859, + "interpolation": "LINEAR", + "output": 1860 + }, + { + "input": 1861, + "interpolation": "LINEAR", + "output": 1862 + }, + { + "input": 1863, + "interpolation": "LINEAR", + "output": 1864 + }, + { + "input": 1865, + "interpolation": "LINEAR", + "output": 1866 + }, + { + "input": 1867, + "interpolation": "LINEAR", + "output": 1868 + }, + { + "input": 1869, + "interpolation": "LINEAR", + "output": 1870 + }, + { + "input": 1871, + "interpolation": "LINEAR", + "output": 1872 + }, + { + "input": 1873, + "interpolation": "LINEAR", + "output": 1874 + }, + { + "input": 1875, + "interpolation": "LINEAR", + "output": 1876 + }, + { + "input": 1877, + "interpolation": "LINEAR", + "output": 1878 + }, + { + "input": 1879, + "interpolation": "LINEAR", + "output": 1880 + }, + { + "input": 1881, + "interpolation": "LINEAR", + "output": 1882 + }, + { + "input": 1883, + "interpolation": "LINEAR", + "output": 1884 + }, + { + "input": 1885, + "interpolation": "LINEAR", + "output": 1886 + }, + { + "input": 1887, + "interpolation": "LINEAR", + "output": 1888 + }, + { + "input": 1889, + "interpolation": "LINEAR", + "output": 1890 + }, + { + "input": 1891, + "interpolation": "LINEAR", + "output": 1892 + }, + { + "input": 1893, + "interpolation": "LINEAR", + "output": 1894 + }, + { + "input": 1895, + "interpolation": "LINEAR", + "output": 1896 + }, + { + "input": 1897, + "interpolation": "LINEAR", + "output": 1898 + }, + { + "input": 1899, + "interpolation": "LINEAR", + "output": 1900 + }, + { + "input": 1901, + "interpolation": "LINEAR", + "output": 1902 + }, + { + "input": 1903, + "interpolation": "LINEAR", + "output": 1904 + }, + { + "input": 1905, + "interpolation": "LINEAR", + "output": 1906 + }, + { + "input": 1907, + "interpolation": "LINEAR", + "output": 1908 + }, + { + "input": 1909, + "interpolation": "LINEAR", + "output": 1910 + }, + { + "input": 1911, + "interpolation": "LINEAR", + "output": 1912 + }, + { + "input": 1913, + "interpolation": "LINEAR", + "output": 1914 + }, + { + "input": 1915, + "interpolation": "LINEAR", + "output": 1916 + }, + { + "input": 1917, + "interpolation": "LINEAR", + "output": 1918 + }, + { + "input": 1919, + "interpolation": "LINEAR", + "output": 1920 + }, + { + "input": 1921, + "interpolation": "LINEAR", + "output": 1922 + }, + { + "input": 1923, + "interpolation": "LINEAR", + "output": 1924 + }, + { + "input": 1925, + "interpolation": "LINEAR", + "output": 1926 + }, + { + "input": 1927, + "interpolation": "LINEAR", + "output": 1928 + }, + { + "input": 1929, + "interpolation": "LINEAR", + "output": 1930 + }, + { + "input": 1931, + "interpolation": "LINEAR", + "output": 1932 + }, + { + "input": 1933, + "interpolation": "LINEAR", + "output": 1934 + }, + { + "input": 1935, + "interpolation": "LINEAR", + "output": 1936 + }, + { + "input": 1937, + "interpolation": "LINEAR", + "output": 1938 + }, + { + "input": 1939, + "interpolation": "LINEAR", + "output": 1940 + }, + { + "input": 1941, + "interpolation": "LINEAR", + "output": 1942 + }, + { + "input": 1943, + "interpolation": "LINEAR", + "output": 1944 + }, + { + "input": 1945, + "interpolation": "LINEAR", + "output": 1946 + }, + { + "input": 1947, + "interpolation": "LINEAR", + "output": 1948 + }, + { + "input": 1949, + "interpolation": "LINEAR", + "output": 1950 + }, + { + "input": 1951, + "interpolation": "LINEAR", + "output": 1952 + }, + { + "input": 1953, + "interpolation": "LINEAR", + "output": 1954 + }, + { + "input": 1955, + "interpolation": "LINEAR", + "output": 1956 + }, + { + "input": 1957, + "interpolation": "LINEAR", + "output": 1958 + }, + { + "input": 1959, + "interpolation": "LINEAR", + "output": 1960 + }, + { + "input": 1961, + "interpolation": "LINEAR", + "output": 1962 + }, + { + "input": 1963, + "interpolation": "LINEAR", + "output": 1964 + }, + { + "input": 1965, + "interpolation": "LINEAR", + "output": 1966 + }, + { + "input": 1967, + "interpolation": "LINEAR", + "output": 1968 + }, + { + "input": 1969, + "interpolation": "LINEAR", + "output": 1970 + }, + { + "input": 1971, + "interpolation": "LINEAR", + "output": 1972 + }, + { + "input": 1973, + "interpolation": "LINEAR", + "output": 1974 + }, + { + "input": 1975, + "interpolation": "LINEAR", + "output": 1976 + }, + { + "input": 1977, + "interpolation": "LINEAR", + "output": 1978 + }, + { + "input": 1979, + "interpolation": "LINEAR", + "output": 1980 + }, + { + "input": 1981, + "interpolation": "LINEAR", + "output": 1982 + }, + { + "input": 1983, + "interpolation": "LINEAR", + "output": 1984 + }, + { + "input": 1985, + "interpolation": "LINEAR", + "output": 1986 + }, + { + "input": 1987, + "interpolation": "LINEAR", + "output": 1988 + }, + { + "input": 1989, + "interpolation": "LINEAR", + "output": 1990 + }, + { + "input": 1991, + "interpolation": "LINEAR", + "output": 1992 + }, + { + "input": 1993, + "interpolation": "LINEAR", + "output": 1994 + }, + { + "input": 1995, + "interpolation": "LINEAR", + "output": 1996 + }, + { + "input": 1997, + "interpolation": "LINEAR", + "output": 1998 + }, + { + "input": 1999, + "interpolation": "LINEAR", + "output": 2000 + }, + { + "input": 2001, + "interpolation": "LINEAR", + "output": 2002 + }, + { + "input": 2003, + "interpolation": "LINEAR", + "output": 2004 + }, + { + "input": 2005, + "interpolation": "LINEAR", + "output": 2006 + }, + { + "input": 2007, + "interpolation": "LINEAR", + "output": 2008 + }, + { + "input": 2009, + "interpolation": "LINEAR", + "output": 2010 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2012 + }, + { + "input": 2013, + "interpolation": "LINEAR", + "output": 2014 + }, + { + "input": 2015, + "interpolation": "LINEAR", + "output": 2016 + }, + { + "input": 2017, + "interpolation": "LINEAR", + "output": 2018 + }, + { + "input": 2019, + "interpolation": "LINEAR", + "output": 2020 + }, + { + "input": 2021, + "interpolation": "LINEAR", + "output": 2022 + }, + { + "input": 2023, + "interpolation": "LINEAR", + "output": 2024 + }, + { + "input": 2025, + "interpolation": "LINEAR", + "output": 2026 + }, + { + "input": 2027, + "interpolation": "LINEAR", + "output": 2028 + }, + { + "input": 2029, + "interpolation": "LINEAR", + "output": 2030 + }, + { + "input": 2031, + "interpolation": "LINEAR", + "output": 2032 + }, + { + "input": 2033, + "interpolation": "LINEAR", + "output": 2034 + }, + { + "input": 2035, + "interpolation": "LINEAR", + "output": 2036 + }, + { + "input": 2037, + "interpolation": "LINEAR", + "output": 2038 + }, + { + "input": 2039, + "interpolation": "LINEAR", + "output": 2040 + }, + { + "input": 2041, + "interpolation": "LINEAR", + "output": 2042 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Buster_Full", + "samplers": [ + { + "input": 2043, + "interpolation": "LINEAR", + "output": 2044 + }, + { + "input": 2045, + "interpolation": "LINEAR", + "output": 2046 + }, + { + "input": 2047, + "interpolation": "LINEAR", + "output": 2048 + }, + { + "input": 2049, + "interpolation": "LINEAR", + "output": 2050 + }, + { + "input": 2051, + "interpolation": "LINEAR", + "output": 2052 + }, + { + "input": 2053, + "interpolation": "LINEAR", + "output": 2054 + }, + { + "input": 2055, + "interpolation": "LINEAR", + "output": 2056 + }, + { + "input": 2057, + "interpolation": "LINEAR", + "output": 2058 + }, + { + "input": 2059, + "interpolation": "LINEAR", + "output": 2060 + }, + { + "input": 2061, + "interpolation": "LINEAR", + "output": 2062 + }, + { + "input": 2063, + "interpolation": "LINEAR", + "output": 2064 + }, + { + "input": 2065, + "interpolation": "LINEAR", + "output": 2066 + }, + { + "input": 2067, + "interpolation": "LINEAR", + "output": 2068 + }, + { + "input": 2069, + "interpolation": "LINEAR", + "output": 2070 + }, + { + "input": 2071, + "interpolation": "LINEAR", + "output": 2072 + }, + { + "input": 2073, + "interpolation": "LINEAR", + "output": 2074 + }, + { + "input": 2075, + "interpolation": "LINEAR", + "output": 2076 + }, + { + "input": 2077, + "interpolation": "LINEAR", + "output": 2078 + }, + { + "input": 2079, + "interpolation": "LINEAR", + "output": 2080 + }, + { + "input": 2081, + "interpolation": "LINEAR", + "output": 2082 + }, + { + "input": 2083, + "interpolation": "LINEAR", + "output": 2084 + }, + { + "input": 2085, + "interpolation": "LINEAR", + "output": 2086 + }, + { + "input": 2087, + "interpolation": "LINEAR", + "output": 2088 + }, + { + "input": 2089, + "interpolation": "LINEAR", + "output": 2090 + }, + { + "input": 2091, + "interpolation": "LINEAR", + "output": 2092 + }, + { + "input": 2093, + "interpolation": "LINEAR", + "output": 2094 + }, + { + "input": 2095, + "interpolation": "LINEAR", + "output": 2096 + }, + { + "input": 2097, + "interpolation": "LINEAR", + "output": 2098 + }, + { + "input": 2099, + "interpolation": "LINEAR", + "output": 2100 + }, + { + "input": 2101, + "interpolation": "LINEAR", + "output": 2102 + }, + { + "input": 2103, + "interpolation": "LINEAR", + "output": 2104 + }, + { + "input": 2105, + "interpolation": "LINEAR", + "output": 2106 + }, + { + "input": 2107, + "interpolation": "LINEAR", + "output": 2108 + }, + { + "input": 2109, + "interpolation": "LINEAR", + "output": 2110 + }, + { + "input": 2111, + "interpolation": "LINEAR", + "output": 2112 + }, + { + "input": 2113, + "interpolation": "LINEAR", + "output": 2114 + }, + { + "input": 2115, + "interpolation": "LINEAR", + "output": 2116 + }, + { + "input": 2117, + "interpolation": "LINEAR", + "output": 2118 + }, + { + "input": 2119, + "interpolation": "LINEAR", + "output": 2120 + }, + { + "input": 2121, + "interpolation": "LINEAR", + "output": 2122 + }, + { + "input": 2123, + "interpolation": "LINEAR", + "output": 2124 + }, + { + "input": 2125, + "interpolation": "LINEAR", + "output": 2126 + }, + { + "input": 2127, + "interpolation": "LINEAR", + "output": 2128 + }, + { + "input": 2129, + "interpolation": "LINEAR", + "output": 2130 + }, + { + "input": 2131, + "interpolation": "LINEAR", + "output": 2132 + }, + { + "input": 2133, + "interpolation": "LINEAR", + "output": 2134 + }, + { + "input": 2135, + "interpolation": "LINEAR", + "output": 2136 + }, + { + "input": 2137, + "interpolation": "LINEAR", + "output": 2138 + }, + { + "input": 2139, + "interpolation": "LINEAR", + "output": 2140 + }, + { + "input": 2141, + "interpolation": "LINEAR", + "output": 2142 + }, + { + "input": 2143, + "interpolation": "LINEAR", + "output": 2144 + }, + { + "input": 2145, + "interpolation": "LINEAR", + "output": 2146 + }, + { + "input": 2147, + "interpolation": "LINEAR", + "output": 2148 + }, + { + "input": 2149, + "interpolation": "LINEAR", + "output": 2150 + }, + { + "input": 2151, + "interpolation": "LINEAR", + "output": 2152 + }, + { + "input": 2153, + "interpolation": "LINEAR", + "output": 2154 + }, + { + "input": 2155, + "interpolation": "LINEAR", + "output": 2156 + }, + { + "input": 2157, + "interpolation": "LINEAR", + "output": 2158 + }, + { + "input": 2159, + "interpolation": "LINEAR", + "output": 2160 + }, + { + "input": 2161, + "interpolation": "LINEAR", + "output": 2162 + }, + { + "input": 2163, + "interpolation": "LINEAR", + "output": 2164 + }, + { + "input": 2165, + "interpolation": "LINEAR", + "output": 2166 + }, + { + "input": 2167, + "interpolation": "LINEAR", + "output": 2168 + }, + { + "input": 2169, + "interpolation": "LINEAR", + "output": 2170 + }, + { + "input": 2171, + "interpolation": "LINEAR", + "output": 2172 + }, + { + "input": 2173, + "interpolation": "LINEAR", + "output": 2174 + }, + { + "input": 2175, + "interpolation": "LINEAR", + "output": 2176 + }, + { + "input": 2177, + "interpolation": "LINEAR", + "output": 2178 + }, + { + "input": 2179, + "interpolation": "LINEAR", + "output": 2180 + }, + { + "input": 2181, + "interpolation": "LINEAR", + "output": 2182 + }, + { + "input": 2183, + "interpolation": "LINEAR", + "output": 2184 + }, + { + "input": 2185, + "interpolation": "LINEAR", + "output": 2186 + }, + { + "input": 2187, + "interpolation": "LINEAR", + "output": 2188 + }, + { + "input": 2189, + "interpolation": "LINEAR", + "output": 2190 + }, + { + "input": 2191, + "interpolation": "LINEAR", + "output": 2192 + }, + { + "input": 2193, + "interpolation": "LINEAR", + "output": 2194 + }, + { + "input": 2195, + "interpolation": "LINEAR", + "output": 2196 + }, + { + "input": 2197, + "interpolation": "LINEAR", + "output": 2198 + }, + { + "input": 2199, + "interpolation": "LINEAR", + "output": 2200 + }, + { + "input": 2201, + "interpolation": "LINEAR", + "output": 2202 + }, + { + "input": 2203, + "interpolation": "LINEAR", + "output": 2204 + }, + { + "input": 2205, + "interpolation": "LINEAR", + "output": 2206 + }, + { + "input": 2207, + "interpolation": "LINEAR", + "output": 2208 + }, + { + "input": 2209, + "interpolation": "LINEAR", + "output": 2210 + }, + { + "input": 2211, + "interpolation": "LINEAR", + "output": 2212 + }, + { + "input": 2213, + "interpolation": "LINEAR", + "output": 2214 + }, + { + "input": 2215, + "interpolation": "LINEAR", + "output": 2216 + }, + { + "input": 2217, + "interpolation": "LINEAR", + "output": 2218 + }, + { + "input": 2219, + "interpolation": "LINEAR", + "output": 2220 + }, + { + "input": 2221, + "interpolation": "LINEAR", + "output": 2222 + }, + { + "input": 2223, + "interpolation": "LINEAR", + "output": 2224 + }, + { + "input": 2225, + "interpolation": "LINEAR", + "output": 2226 + }, + { + "input": 2227, + "interpolation": "LINEAR", + "output": 2228 + }, + { + "input": 2229, + "interpolation": "LINEAR", + "output": 2230 + }, + { + "input": 2231, + "interpolation": "LINEAR", + "output": 2232 + }, + { + "input": 2233, + "interpolation": "LINEAR", + "output": 2234 + }, + { + "input": 2235, + "interpolation": "LINEAR", + "output": 2236 + }, + { + "input": 2237, + "interpolation": "LINEAR", + "output": 2238 + }, + { + "input": 2239, + "interpolation": "LINEAR", + "output": 2240 + }, + { + "input": 2241, + "interpolation": "LINEAR", + "output": 2242 + }, + { + "input": 2243, + "interpolation": "LINEAR", + "output": 2244 + }, + { + "input": 2245, + "interpolation": "LINEAR", + "output": 2246 + }, + { + "input": 2247, + "interpolation": "LINEAR", + "output": 2248 + }, + { + "input": 2249, + "interpolation": "LINEAR", + "output": 2250 + }, + { + "input": 2251, + "interpolation": "LINEAR", + "output": 2252 + }, + { + "input": 2253, + "interpolation": "LINEAR", + "output": 2254 + }, + { + "input": 2255, + "interpolation": "LINEAR", + "output": 2256 + }, + { + "input": 2257, + "interpolation": "LINEAR", + "output": 2258 + }, + { + "input": 2259, + "interpolation": "LINEAR", + "output": 2260 + }, + { + "input": 2261, + "interpolation": "LINEAR", + "output": 2262 + }, + { + "input": 2263, + "interpolation": "LINEAR", + "output": 2264 + }, + { + "input": 2265, + "interpolation": "LINEAR", + "output": 2266 + }, + { + "input": 2267, + "interpolation": "LINEAR", + "output": 2268 + }, + { + "input": 2269, + "interpolation": "LINEAR", + "output": 2270 + }, + { + "input": 2271, + "interpolation": "LINEAR", + "output": 2272 + }, + { + "input": 2273, + "interpolation": "LINEAR", + "output": 2274 + }, + { + "input": 2275, + "interpolation": "LINEAR", + "output": 2276 + }, + { + "input": 2277, + "interpolation": "LINEAR", + "output": 2278 + }, + { + "input": 2279, + "interpolation": "LINEAR", + "output": 2280 + }, + { + "input": 2281, + "interpolation": "LINEAR", + "output": 2282 + }, + { + "input": 2283, + "interpolation": "LINEAR", + "output": 2284 + }, + { + "input": 2285, + "interpolation": "LINEAR", + "output": 2286 + }, + { + "input": 2287, + "interpolation": "LINEAR", + "output": 2288 + }, + { + "input": 2289, + "interpolation": "LINEAR", + "output": 2290 + }, + { + "input": 2291, + "interpolation": "LINEAR", + "output": 2292 + }, + { + "input": 2293, + "interpolation": "LINEAR", + "output": 2294 + }, + { + "input": 2295, + "interpolation": "LINEAR", + "output": 2296 + }, + { + "input": 2297, + "interpolation": "LINEAR", + "output": 2298 + }, + { + "input": 2299, + "interpolation": "LINEAR", + "output": 2300 + }, + { + "input": 2301, + "interpolation": "LINEAR", + "output": 2302 + }, + { + "input": 2303, + "interpolation": "LINEAR", + "output": 2304 + }, + { + "input": 2305, + "interpolation": "LINEAR", + "output": 2306 + }, + { + "input": 2307, + "interpolation": "LINEAR", + "output": 2308 + }, + { + "input": 2309, + "interpolation": "LINEAR", + "output": 2310 + }, + { + "input": 2311, + "interpolation": "LINEAR", + "output": 2312 + }, + { + "input": 2313, + "interpolation": "LINEAR", + "output": 2314 + }, + { + "input": 2315, + "interpolation": "LINEAR", + "output": 2316 + }, + { + "input": 2317, + "interpolation": "LINEAR", + "output": 2318 + }, + { + "input": 2319, + "interpolation": "LINEAR", + "output": 2320 + }, + { + "input": 2321, + "interpolation": "LINEAR", + "output": 2322 + }, + { + "input": 2323, + "interpolation": "LINEAR", + "output": 2324 + }, + { + "input": 2325, + "interpolation": "LINEAR", + "output": 2326 + }, + { + "input": 2327, + "interpolation": "LINEAR", + "output": 2328 + }, + { + "input": 2329, + "interpolation": "LINEAR", + "output": 2330 + }, + { + "input": 2331, + "interpolation": "LINEAR", + "output": 2332 + }, + { + "input": 2333, + "interpolation": "LINEAR", + "output": 2334 + }, + { + "input": 2335, + "interpolation": "LINEAR", + "output": 2336 + }, + { + "input": 2337, + "interpolation": "LINEAR", + "output": 2338 + }, + { + "input": 2339, + "interpolation": "LINEAR", + "output": 2340 + }, + { + "input": 2341, + "interpolation": "LINEAR", + "output": 2342 + }, + { + "input": 2343, + "interpolation": "LINEAR", + "output": 2344 + }, + { + "input": 2345, + "interpolation": "LINEAR", + "output": 2346 + }, + { + "input": 2347, + "interpolation": "LINEAR", + "output": 2348 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_ChargedSlash", + "samplers": [ + { + "input": 2349, + "interpolation": "LINEAR", + "output": 2350 + }, + { + "input": 2351, + "interpolation": "LINEAR", + "output": 2352 + }, + { + "input": 2353, + "interpolation": "LINEAR", + "output": 2354 + }, + { + "input": 2355, + "interpolation": "LINEAR", + "output": 2356 + }, + { + "input": 2357, + "interpolation": "LINEAR", + "output": 2358 + }, + { + "input": 2359, + "interpolation": "LINEAR", + "output": 2360 + }, + { + "input": 2361, + "interpolation": "LINEAR", + "output": 2362 + }, + { + "input": 2363, + "interpolation": "LINEAR", + "output": 2364 + }, + { + "input": 2365, + "interpolation": "LINEAR", + "output": 2366 + }, + { + "input": 2367, + "interpolation": "LINEAR", + "output": 2368 + }, + { + "input": 2369, + "interpolation": "LINEAR", + "output": 2370 + }, + { + "input": 2371, + "interpolation": "LINEAR", + "output": 2372 + }, + { + "input": 2373, + "interpolation": "LINEAR", + "output": 2374 + }, + { + "input": 2375, + "interpolation": "LINEAR", + "output": 2376 + }, + { + "input": 2377, + "interpolation": "LINEAR", + "output": 2378 + }, + { + "input": 2379, + "interpolation": "LINEAR", + "output": 2380 + }, + { + "input": 2381, + "interpolation": "LINEAR", + "output": 2382 + }, + { + "input": 2383, + "interpolation": "LINEAR", + "output": 2384 + }, + { + "input": 2385, + "interpolation": "LINEAR", + "output": 2386 + }, + { + "input": 2387, + "interpolation": "LINEAR", + "output": 2388 + }, + { + "input": 2389, + "interpolation": "LINEAR", + "output": 2390 + }, + { + "input": 2391, + "interpolation": "LINEAR", + "output": 2392 + }, + { + "input": 2393, + "interpolation": "LINEAR", + "output": 2394 + }, + { + "input": 2395, + "interpolation": "LINEAR", + "output": 2396 + }, + { + "input": 2397, + "interpolation": "LINEAR", + "output": 2398 + }, + { + "input": 2399, + "interpolation": "LINEAR", + "output": 2400 + }, + { + "input": 2401, + "interpolation": "LINEAR", + "output": 2402 + }, + { + "input": 2403, + "interpolation": "LINEAR", + "output": 2404 + }, + { + "input": 2405, + "interpolation": "LINEAR", + "output": 2406 + }, + { + "input": 2407, + "interpolation": "LINEAR", + "output": 2408 + }, + { + "input": 2409, + "interpolation": "LINEAR", + "output": 2410 + }, + { + "input": 2411, + "interpolation": "LINEAR", + "output": 2412 + }, + { + "input": 2413, + "interpolation": "LINEAR", + "output": 2414 + }, + { + "input": 2415, + "interpolation": "LINEAR", + "output": 2416 + }, + { + "input": 2417, + "interpolation": "LINEAR", + "output": 2418 + }, + { + "input": 2419, + "interpolation": "LINEAR", + "output": 2420 + }, + { + "input": 2421, + "interpolation": "LINEAR", + "output": 2422 + }, + { + "input": 2423, + "interpolation": "LINEAR", + "output": 2424 + }, + { + "input": 2425, + "interpolation": "LINEAR", + "output": 2426 + }, + { + "input": 2427, + "interpolation": "LINEAR", + "output": 2428 + }, + { + "input": 2429, + "interpolation": "LINEAR", + "output": 2430 + }, + { + "input": 2431, + "interpolation": "LINEAR", + "output": 2432 + }, + { + "input": 2433, + "interpolation": "LINEAR", + "output": 2434 + }, + { + "input": 2435, + "interpolation": "LINEAR", + "output": 2436 + }, + { + "input": 2437, + "interpolation": "LINEAR", + "output": 2438 + }, + { + "input": 2439, + "interpolation": "LINEAR", + "output": 2440 + }, + { + "input": 2441, + "interpolation": "LINEAR", + "output": 2442 + }, + { + "input": 2443, + "interpolation": "LINEAR", + "output": 2444 + }, + { + "input": 2445, + "interpolation": "LINEAR", + "output": 2446 + }, + { + "input": 2447, + "interpolation": "LINEAR", + "output": 2448 + }, + { + "input": 2449, + "interpolation": "LINEAR", + "output": 2450 + }, + { + "input": 2451, + "interpolation": "LINEAR", + "output": 2452 + }, + { + "input": 2453, + "interpolation": "LINEAR", + "output": 2454 + }, + { + "input": 2455, + "interpolation": "LINEAR", + "output": 2456 + }, + { + "input": 2457, + "interpolation": "LINEAR", + "output": 2458 + }, + { + "input": 2459, + "interpolation": "LINEAR", + "output": 2460 + }, + { + "input": 2461, + "interpolation": "LINEAR", + "output": 2462 + }, + { + "input": 2463, + "interpolation": "LINEAR", + "output": 2464 + }, + { + "input": 2465, + "interpolation": "LINEAR", + "output": 2466 + }, + { + "input": 2467, + "interpolation": "LINEAR", + "output": 2468 + }, + { + "input": 2469, + "interpolation": "LINEAR", + "output": 2470 + }, + { + "input": 2471, + "interpolation": "LINEAR", + "output": 2472 + }, + { + "input": 2473, + "interpolation": "LINEAR", + "output": 2474 + }, + { + "input": 2475, + "interpolation": "LINEAR", + "output": 2476 + }, + { + "input": 2477, + "interpolation": "LINEAR", + "output": 2478 + }, + { + "input": 2479, + "interpolation": "LINEAR", + "output": 2480 + }, + { + "input": 2481, + "interpolation": "LINEAR", + "output": 2482 + }, + { + "input": 2483, + "interpolation": "LINEAR", + "output": 2484 + }, + { + "input": 2485, + "interpolation": "LINEAR", + "output": 2486 + }, + { + "input": 2487, + "interpolation": "LINEAR", + "output": 2488 + }, + { + "input": 2489, + "interpolation": "LINEAR", + "output": 2490 + }, + { + "input": 2491, + "interpolation": "LINEAR", + "output": 2492 + }, + { + "input": 2493, + "interpolation": "LINEAR", + "output": 2494 + }, + { + "input": 2495, + "interpolation": "LINEAR", + "output": 2496 + }, + { + "input": 2497, + "interpolation": "LINEAR", + "output": 2498 + }, + { + "input": 2499, + "interpolation": "LINEAR", + "output": 2500 + }, + { + "input": 2501, + "interpolation": "LINEAR", + "output": 2502 + }, + { + "input": 2503, + "interpolation": "LINEAR", + "output": 2504 + }, + { + "input": 2505, + "interpolation": "LINEAR", + "output": 2506 + }, + { + "input": 2507, + "interpolation": "LINEAR", + "output": 2508 + }, + { + "input": 2509, + "interpolation": "LINEAR", + "output": 2510 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2512 + }, + { + "input": 2513, + "interpolation": "LINEAR", + "output": 2514 + }, + { + "input": 2515, + "interpolation": "LINEAR", + "output": 2516 + }, + { + "input": 2517, + "interpolation": "LINEAR", + "output": 2518 + }, + { + "input": 2519, + "interpolation": "LINEAR", + "output": 2520 + }, + { + "input": 2521, + "interpolation": "LINEAR", + "output": 2522 + }, + { + "input": 2523, + "interpolation": "LINEAR", + "output": 2524 + }, + { + "input": 2525, + "interpolation": "LINEAR", + "output": 2526 + }, + { + "input": 2527, + "interpolation": "LINEAR", + "output": 2528 + }, + { + "input": 2529, + "interpolation": "LINEAR", + "output": 2530 + }, + { + "input": 2531, + "interpolation": "LINEAR", + "output": 2532 + }, + { + "input": 2533, + "interpolation": "LINEAR", + "output": 2534 + }, + { + "input": 2535, + "interpolation": "LINEAR", + "output": 2536 + }, + { + "input": 2537, + "interpolation": "LINEAR", + "output": 2538 + }, + { + "input": 2539, + "interpolation": "LINEAR", + "output": 2540 + }, + { + "input": 2541, + "interpolation": "LINEAR", + "output": 2542 + }, + { + "input": 2543, + "interpolation": "LINEAR", + "output": 2544 + }, + { + "input": 2545, + "interpolation": "LINEAR", + "output": 2546 + }, + { + "input": 2547, + "interpolation": "LINEAR", + "output": 2548 + }, + { + "input": 2549, + "interpolation": "LINEAR", + "output": 2550 + }, + { + "input": 2551, + "interpolation": "LINEAR", + "output": 2552 + }, + { + "input": 2553, + "interpolation": "LINEAR", + "output": 2554 + }, + { + "input": 2555, + "interpolation": "LINEAR", + "output": 2556 + }, + { + "input": 2557, + "interpolation": "LINEAR", + "output": 2558 + }, + { + "input": 2559, + "interpolation": "LINEAR", + "output": 2560 + }, + { + "input": 2561, + "interpolation": "LINEAR", + "output": 2562 + }, + { + "input": 2563, + "interpolation": "LINEAR", + "output": 2564 + }, + { + "input": 2565, + "interpolation": "LINEAR", + "output": 2566 + }, + { + "input": 2567, + "interpolation": "LINEAR", + "output": 2568 + }, + { + "input": 2569, + "interpolation": "LINEAR", + "output": 2570 + }, + { + "input": 2571, + "interpolation": "LINEAR", + "output": 2572 + }, + { + "input": 2573, + "interpolation": "LINEAR", + "output": 2574 + }, + { + "input": 2575, + "interpolation": "LINEAR", + "output": 2576 + }, + { + "input": 2577, + "interpolation": "LINEAR", + "output": 2578 + }, + { + "input": 2579, + "interpolation": "LINEAR", + "output": 2580 + }, + { + "input": 2581, + "interpolation": "LINEAR", + "output": 2582 + }, + { + "input": 2583, + "interpolation": "LINEAR", + "output": 2584 + }, + { + "input": 2585, + "interpolation": "LINEAR", + "output": 2586 + }, + { + "input": 2587, + "interpolation": "LINEAR", + "output": 2588 + }, + { + "input": 2589, + "interpolation": "LINEAR", + "output": 2590 + }, + { + "input": 2591, + "interpolation": "LINEAR", + "output": 2592 + }, + { + "input": 2593, + "interpolation": "LINEAR", + "output": 2594 + }, + { + "input": 2595, + "interpolation": "LINEAR", + "output": 2596 + }, + { + "input": 2597, + "interpolation": "LINEAR", + "output": 2598 + }, + { + "input": 2599, + "interpolation": "LINEAR", + "output": 2600 + }, + { + "input": 2601, + "interpolation": "LINEAR", + "output": 2602 + }, + { + "input": 2603, + "interpolation": "LINEAR", + "output": 2604 + }, + { + "input": 2605, + "interpolation": "LINEAR", + "output": 2606 + }, + { + "input": 2607, + "interpolation": "LINEAR", + "output": 2608 + }, + { + "input": 2609, + "interpolation": "LINEAR", + "output": 2610 + }, + { + "input": 2611, + "interpolation": "LINEAR", + "output": 2612 + }, + { + "input": 2613, + "interpolation": "LINEAR", + "output": 2614 + }, + { + "input": 2615, + "interpolation": "LINEAR", + "output": 2616 + }, + { + "input": 2617, + "interpolation": "LINEAR", + "output": 2618 + }, + { + "input": 2619, + "interpolation": "LINEAR", + "output": 2620 + }, + { + "input": 2621, + "interpolation": "LINEAR", + "output": 2622 + }, + { + "input": 2623, + "interpolation": "LINEAR", + "output": 2624 + }, + { + "input": 2625, + "interpolation": "LINEAR", + "output": 2626 + }, + { + "input": 2627, + "interpolation": "LINEAR", + "output": 2628 + }, + { + "input": 2629, + "interpolation": "LINEAR", + "output": 2630 + }, + { + "input": 2631, + "interpolation": "LINEAR", + "output": 2632 + }, + { + "input": 2633, + "interpolation": "LINEAR", + "output": 2634 + }, + { + "input": 2635, + "interpolation": "LINEAR", + "output": 2636 + }, + { + "input": 2637, + "interpolation": "LINEAR", + "output": 2638 + }, + { + "input": 2639, + "interpolation": "LINEAR", + "output": 2640 + }, + { + "input": 2641, + "interpolation": "LINEAR", + "output": 2642 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_CrossSlash", + "samplers": [ + { + "input": 2643, + "interpolation": "LINEAR", + "output": 2644 + }, + { + "input": 2645, + "interpolation": "LINEAR", + "output": 2646 + }, + { + "input": 2647, + "interpolation": "LINEAR", + "output": 2648 + }, + { + "input": 2649, + "interpolation": "LINEAR", + "output": 2650 + }, + { + "input": 2651, + "interpolation": "LINEAR", + "output": 2652 + }, + { + "input": 2653, + "interpolation": "LINEAR", + "output": 2654 + }, + { + "input": 2655, + "interpolation": "LINEAR", + "output": 2656 + }, + { + "input": 2657, + "interpolation": "LINEAR", + "output": 2658 + }, + { + "input": 2659, + "interpolation": "LINEAR", + "output": 2660 + }, + { + "input": 2661, + "interpolation": "LINEAR", + "output": 2662 + }, + { + "input": 2663, + "interpolation": "LINEAR", + "output": 2664 + }, + { + "input": 2665, + "interpolation": "LINEAR", + "output": 2666 + }, + { + "input": 2667, + "interpolation": "LINEAR", + "output": 2668 + }, + { + "input": 2669, + "interpolation": "LINEAR", + "output": 2670 + }, + { + "input": 2671, + "interpolation": "LINEAR", + "output": 2672 + }, + { + "input": 2673, + "interpolation": "LINEAR", + "output": 2674 + }, + { + "input": 2675, + "interpolation": "LINEAR", + "output": 2676 + }, + { + "input": 2677, + "interpolation": "LINEAR", + "output": 2678 + }, + { + "input": 2679, + "interpolation": "LINEAR", + "output": 2680 + }, + { + "input": 2681, + "interpolation": "LINEAR", + "output": 2682 + }, + { + "input": 2683, + "interpolation": "LINEAR", + "output": 2684 + }, + { + "input": 2685, + "interpolation": "LINEAR", + "output": 2686 + }, + { + "input": 2687, + "interpolation": "LINEAR", + "output": 2688 + }, + { + "input": 2689, + "interpolation": "LINEAR", + "output": 2690 + }, + { + "input": 2691, + "interpolation": "LINEAR", + "output": 2692 + }, + { + "input": 2693, + "interpolation": "LINEAR", + "output": 2694 + }, + { + "input": 2695, + "interpolation": "LINEAR", + "output": 2696 + }, + { + "input": 2697, + "interpolation": "LINEAR", + "output": 2698 + }, + { + "input": 2699, + "interpolation": "LINEAR", + "output": 2700 + }, + { + "input": 2701, + "interpolation": "LINEAR", + "output": 2702 + }, + { + "input": 2703, + "interpolation": "LINEAR", + "output": 2704 + }, + { + "input": 2705, + "interpolation": "LINEAR", + "output": 2706 + }, + { + "input": 2707, + "interpolation": "LINEAR", + "output": 2708 + }, + { + "input": 2709, + "interpolation": "LINEAR", + "output": 2710 + }, + { + "input": 2711, + "interpolation": "LINEAR", + "output": 2712 + }, + { + "input": 2713, + "interpolation": "LINEAR", + "output": 2714 + }, + { + "input": 2715, + "interpolation": "LINEAR", + "output": 2716 + }, + { + "input": 2717, + "interpolation": "LINEAR", + "output": 2718 + }, + { + "input": 2719, + "interpolation": "LINEAR", + "output": 2720 + }, + { + "input": 2721, + "interpolation": "LINEAR", + "output": 2722 + }, + { + "input": 2723, + "interpolation": "LINEAR", + "output": 2724 + }, + { + "input": 2725, + "interpolation": "LINEAR", + "output": 2726 + }, + { + "input": 2727, + "interpolation": "LINEAR", + "output": 2728 + }, + { + "input": 2729, + "interpolation": "LINEAR", + "output": 2730 + }, + { + "input": 2731, + "interpolation": "LINEAR", + "output": 2732 + }, + { + "input": 2733, + "interpolation": "LINEAR", + "output": 2734 + }, + { + "input": 2735, + "interpolation": "LINEAR", + "output": 2736 + }, + { + "input": 2737, + "interpolation": "LINEAR", + "output": 2738 + }, + { + "input": 2739, + "interpolation": "LINEAR", + "output": 2740 + }, + { + "input": 2741, + "interpolation": "LINEAR", + "output": 2742 + }, + { + "input": 2743, + "interpolation": "LINEAR", + "output": 2744 + }, + { + "input": 2745, + "interpolation": "LINEAR", + "output": 2746 + }, + { + "input": 2747, + "interpolation": "LINEAR", + "output": 2748 + }, + { + "input": 2749, + "interpolation": "LINEAR", + "output": 2750 + }, + { + "input": 2751, + "interpolation": "LINEAR", + "output": 2752 + }, + { + "input": 2753, + "interpolation": "LINEAR", + "output": 2754 + }, + { + "input": 2755, + "interpolation": "LINEAR", + "output": 2756 + }, + { + "input": 2757, + "interpolation": "LINEAR", + "output": 2758 + }, + { + "input": 2759, + "interpolation": "LINEAR", + "output": 2760 + }, + { + "input": 2761, + "interpolation": "LINEAR", + "output": 2762 + }, + { + "input": 2763, + "interpolation": "LINEAR", + "output": 2764 + }, + { + "input": 2765, + "interpolation": "LINEAR", + "output": 2766 + }, + { + "input": 2767, + "interpolation": "LINEAR", + "output": 2768 + }, + { + "input": 2769, + "interpolation": "LINEAR", + "output": 2770 + }, + { + "input": 2771, + "interpolation": "LINEAR", + "output": 2772 + }, + { + "input": 2773, + "interpolation": "LINEAR", + "output": 2774 + }, + { + "input": 2775, + "interpolation": "LINEAR", + "output": 2776 + }, + { + "input": 2777, + "interpolation": "LINEAR", + "output": 2778 + }, + { + "input": 2779, + "interpolation": "LINEAR", + "output": 2780 + }, + { + "input": 2781, + "interpolation": "LINEAR", + "output": 2782 + }, + { + "input": 2783, + "interpolation": "LINEAR", + "output": 2784 + }, + { + "input": 2785, + "interpolation": "LINEAR", + "output": 2786 + }, + { + "input": 2787, + "interpolation": "LINEAR", + "output": 2788 + }, + { + "input": 2789, + "interpolation": "LINEAR", + "output": 2790 + }, + { + "input": 2791, + "interpolation": "LINEAR", + "output": 2792 + }, + { + "input": 2793, + "interpolation": "LINEAR", + "output": 2794 + }, + { + "input": 2795, + "interpolation": "LINEAR", + "output": 2796 + }, + { + "input": 2797, + "interpolation": "LINEAR", + "output": 2798 + }, + { + "input": 2799, + "interpolation": "LINEAR", + "output": 2800 + }, + { + "input": 2801, + "interpolation": "LINEAR", + "output": 2802 + }, + { + "input": 2803, + "interpolation": "LINEAR", + "output": 2804 + }, + { + "input": 2805, + "interpolation": "LINEAR", + "output": 2806 + }, + { + "input": 2807, + "interpolation": "LINEAR", + "output": 2808 + }, + { + "input": 2809, + "interpolation": "LINEAR", + "output": 2810 + }, + { + "input": 2811, + "interpolation": "LINEAR", + "output": 2812 + }, + { + "input": 2813, + "interpolation": "LINEAR", + "output": 2814 + }, + { + "input": 2815, + "interpolation": "LINEAR", + "output": 2816 + }, + { + "input": 2817, + "interpolation": "LINEAR", + "output": 2818 + }, + { + "input": 2819, + "interpolation": "LINEAR", + "output": 2820 + }, + { + "input": 2821, + "interpolation": "LINEAR", + "output": 2822 + }, + { + "input": 2823, + "interpolation": "LINEAR", + "output": 2824 + }, + { + "input": 2825, + "interpolation": "LINEAR", + "output": 2826 + }, + { + "input": 2827, + "interpolation": "LINEAR", + "output": 2828 + }, + { + "input": 2829, + "interpolation": "LINEAR", + "output": 2830 + }, + { + "input": 2831, + "interpolation": "LINEAR", + "output": 2832 + }, + { + "input": 2833, + "interpolation": "LINEAR", + "output": 2834 + }, + { + "input": 2835, + "interpolation": "LINEAR", + "output": 2836 + }, + { + "input": 2837, + "interpolation": "LINEAR", + "output": 2838 + }, + { + "input": 2839, + "interpolation": "LINEAR", + "output": 2840 + }, + { + "input": 2841, + "interpolation": "LINEAR", + "output": 2842 + }, + { + "input": 2843, + "interpolation": "LINEAR", + "output": 2844 + }, + { + "input": 2845, + "interpolation": "LINEAR", + "output": 2846 + }, + { + "input": 2847, + "interpolation": "LINEAR", + "output": 2848 + }, + { + "input": 2849, + "interpolation": "LINEAR", + "output": 2850 + }, + { + "input": 2851, + "interpolation": "LINEAR", + "output": 2852 + }, + { + "input": 2853, + "interpolation": "LINEAR", + "output": 2854 + }, + { + "input": 2855, + "interpolation": "LINEAR", + "output": 2856 + }, + { + "input": 2857, + "interpolation": "LINEAR", + "output": 2858 + }, + { + "input": 2859, + "interpolation": "LINEAR", + "output": 2860 + }, + { + "input": 2861, + "interpolation": "LINEAR", + "output": 2862 + }, + { + "input": 2863, + "interpolation": "LINEAR", + "output": 2864 + }, + { + "input": 2865, + "interpolation": "LINEAR", + "output": 2866 + }, + { + "input": 2867, + "interpolation": "LINEAR", + "output": 2868 + }, + { + "input": 2869, + "interpolation": "LINEAR", + "output": 2870 + }, + { + "input": 2871, + "interpolation": "LINEAR", + "output": 2872 + }, + { + "input": 2873, + "interpolation": "LINEAR", + "output": 2874 + }, + { + "input": 2875, + "interpolation": "LINEAR", + "output": 2876 + }, + { + "input": 2877, + "interpolation": "LINEAR", + "output": 2878 + }, + { + "input": 2879, + "interpolation": "LINEAR", + "output": 2880 + }, + { + "input": 2881, + "interpolation": "LINEAR", + "output": 2882 + }, + { + "input": 2883, + "interpolation": "LINEAR", + "output": 2884 + }, + { + "input": 2885, + "interpolation": "LINEAR", + "output": 2886 + }, + { + "input": 2887, + "interpolation": "LINEAR", + "output": 2888 + }, + { + "input": 2889, + "interpolation": "LINEAR", + "output": 2890 + }, + { + "input": 2891, + "interpolation": "LINEAR", + "output": 2892 + }, + { + "input": 2893, + "interpolation": "LINEAR", + "output": 2894 + }, + { + "input": 2895, + "interpolation": "LINEAR", + "output": 2896 + }, + { + "input": 2897, + "interpolation": "LINEAR", + "output": 2898 + }, + { + "input": 2899, + "interpolation": "LINEAR", + "output": 2900 + }, + { + "input": 2901, + "interpolation": "LINEAR", + "output": 2902 + }, + { + "input": 2903, + "interpolation": "LINEAR", + "output": 2904 + }, + { + "input": 2905, + "interpolation": "LINEAR", + "output": 2906 + }, + { + "input": 2907, + "interpolation": "LINEAR", + "output": 2908 + }, + { + "input": 2909, + "interpolation": "LINEAR", + "output": 2910 + }, + { + "input": 2911, + "interpolation": "LINEAR", + "output": 2912 + }, + { + "input": 2913, + "interpolation": "LINEAR", + "output": 2914 + }, + { + "input": 2915, + "interpolation": "LINEAR", + "output": 2916 + }, + { + "input": 2917, + "interpolation": "LINEAR", + "output": 2918 + }, + { + "input": 2919, + "interpolation": "LINEAR", + "output": 2920 + }, + { + "input": 2921, + "interpolation": "LINEAR", + "output": 2922 + }, + { + "input": 2923, + "interpolation": "LINEAR", + "output": 2924 + }, + { + "input": 2925, + "interpolation": "LINEAR", + "output": 2926 + }, + { + "input": 2927, + "interpolation": "LINEAR", + "output": 2928 + }, + { + "input": 2929, + "interpolation": "LINEAR", + "output": 2930 + }, + { + "input": 2931, + "interpolation": "LINEAR", + "output": 2932 + }, + { + "input": 2933, + "interpolation": "LINEAR", + "output": 2934 + }, + { + "input": 2935, + "interpolation": "LINEAR", + "output": 2936 + }, + { + "input": 2937, + "interpolation": "LINEAR", + "output": 2938 + }, + { + "input": 2939, + "interpolation": "LINEAR", + "output": 2940 + }, + { + "input": 2941, + "interpolation": "LINEAR", + "output": 2942 + }, + { + "input": 2943, + "interpolation": "LINEAR", + "output": 2944 + }, + { + "input": 2945, + "interpolation": "LINEAR", + "output": 2946 + }, + { + "input": 2947, + "interpolation": "LINEAR", + "output": 2948 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Die", + "samplers": [ + { + "input": 2949, + "interpolation": "LINEAR", + "output": 2950 + }, + { + "input": 2951, + "interpolation": "LINEAR", + "output": 2952 + }, + { + "input": 2953, + "interpolation": "LINEAR", + "output": 2954 + }, + { + "input": 2955, + "interpolation": "LINEAR", + "output": 2956 + }, + { + "input": 2957, + "interpolation": "LINEAR", + "output": 2958 + }, + { + "input": 2959, + "interpolation": "LINEAR", + "output": 2960 + }, + { + "input": 2961, + "interpolation": "LINEAR", + "output": 2962 + }, + { + "input": 2963, + "interpolation": "LINEAR", + "output": 2964 + }, + { + "input": 2965, + "interpolation": "LINEAR", + "output": 2966 + }, + { + "input": 2967, + "interpolation": "LINEAR", + "output": 2968 + }, + { + "input": 2969, + "interpolation": "LINEAR", + "output": 2970 + }, + { + "input": 2971, + "interpolation": "LINEAR", + "output": 2972 + }, + { + "input": 2973, + "interpolation": "LINEAR", + "output": 2974 + }, + { + "input": 2975, + "interpolation": "LINEAR", + "output": 2976 + }, + { + "input": 2977, + "interpolation": "LINEAR", + "output": 2978 + }, + { + "input": 2979, + "interpolation": "LINEAR", + "output": 2980 + }, + { + "input": 2981, + "interpolation": "LINEAR", + "output": 2982 + }, + { + "input": 2983, + "interpolation": "LINEAR", + "output": 2984 + }, + { + "input": 2985, + "interpolation": "LINEAR", + "output": 2986 + }, + { + "input": 2987, + "interpolation": "LINEAR", + "output": 2988 + }, + { + "input": 2989, + "interpolation": "LINEAR", + "output": 2990 + }, + { + "input": 2991, + "interpolation": "LINEAR", + "output": 2992 + }, + { + "input": 2993, + "interpolation": "LINEAR", + "output": 2994 + }, + { + "input": 2995, + "interpolation": "LINEAR", + "output": 2996 + }, + { + "input": 2997, + "interpolation": "LINEAR", + "output": 2998 + }, + { + "input": 2999, + "interpolation": "LINEAR", + "output": 3000 + }, + { + "input": 3001, + "interpolation": "LINEAR", + "output": 3002 + }, + { + "input": 3003, + "interpolation": "LINEAR", + "output": 3004 + }, + { + "input": 3005, + "interpolation": "LINEAR", + "output": 3006 + }, + { + "input": 3007, + "interpolation": "LINEAR", + "output": 3008 + }, + { + "input": 3009, + "interpolation": "LINEAR", + "output": 3010 + }, + { + "input": 3011, + "interpolation": "LINEAR", + "output": 3012 + }, + { + "input": 3013, + "interpolation": "LINEAR", + "output": 3014 + }, + { + "input": 3015, + "interpolation": "LINEAR", + "output": 3016 + }, + { + "input": 3017, + "interpolation": "LINEAR", + "output": 3018 + }, + { + "input": 3019, + "interpolation": "LINEAR", + "output": 3020 + }, + { + "input": 3021, + "interpolation": "LINEAR", + "output": 3022 + }, + { + "input": 3023, + "interpolation": "LINEAR", + "output": 3024 + }, + { + "input": 3025, + "interpolation": "LINEAR", + "output": 3026 + }, + { + "input": 3027, + "interpolation": "LINEAR", + "output": 3028 + }, + { + "input": 3029, + "interpolation": "LINEAR", + "output": 3030 + }, + { + "input": 3031, + "interpolation": "LINEAR", + "output": 3032 + }, + { + "input": 3033, + "interpolation": "LINEAR", + "output": 3034 + }, + { + "input": 3035, + "interpolation": "LINEAR", + "output": 3036 + }, + { + "input": 3037, + "interpolation": "LINEAR", + "output": 3038 + }, + { + "input": 3039, + "interpolation": "LINEAR", + "output": 3040 + }, + { + "input": 3041, + "interpolation": "LINEAR", + "output": 3042 + }, + { + "input": 3043, + "interpolation": "LINEAR", + "output": 3044 + }, + { + "input": 3045, + "interpolation": "LINEAR", + "output": 3046 + }, + { + "input": 3047, + "interpolation": "LINEAR", + "output": 3048 + }, + { + "input": 3049, + "interpolation": "LINEAR", + "output": 3050 + }, + { + "input": 3051, + "interpolation": "LINEAR", + "output": 3052 + }, + { + "input": 3053, + "interpolation": "LINEAR", + "output": 3054 + }, + { + "input": 3055, + "interpolation": "LINEAR", + "output": 3056 + }, + { + "input": 3057, + "interpolation": "LINEAR", + "output": 3058 + }, + { + "input": 3059, + "interpolation": "LINEAR", + "output": 3060 + }, + { + "input": 3061, + "interpolation": "LINEAR", + "output": 3062 + }, + { + "input": 3063, + "interpolation": "LINEAR", + "output": 3064 + }, + { + "input": 3065, + "interpolation": "LINEAR", + "output": 3066 + }, + { + "input": 3067, + "interpolation": "LINEAR", + "output": 3068 + }, + { + "input": 3069, + "interpolation": "LINEAR", + "output": 3070 + }, + { + "input": 3071, + "interpolation": "LINEAR", + "output": 3072 + }, + { + "input": 3073, + "interpolation": "LINEAR", + "output": 3074 + }, + { + "input": 3075, + "interpolation": "LINEAR", + "output": 3076 + }, + { + "input": 3077, + "interpolation": "LINEAR", + "output": 3078 + }, + { + "input": 3079, + "interpolation": "LINEAR", + "output": 3080 + }, + { + "input": 3081, + "interpolation": "LINEAR", + "output": 3082 + }, + { + "input": 3083, + "interpolation": "LINEAR", + "output": 3084 + }, + { + "input": 3085, + "interpolation": "LINEAR", + "output": 3086 + }, + { + "input": 3087, + "interpolation": "LINEAR", + "output": 3088 + }, + { + "input": 3089, + "interpolation": "LINEAR", + "output": 3090 + }, + { + "input": 3091, + "interpolation": "LINEAR", + "output": 3092 + }, + { + "input": 3093, + "interpolation": "LINEAR", + "output": 3094 + }, + { + "input": 3095, + "interpolation": "LINEAR", + "output": 3096 + }, + { + "input": 3097, + "interpolation": "LINEAR", + "output": 3098 + }, + { + "input": 3099, + "interpolation": "LINEAR", + "output": 3100 + }, + { + "input": 3101, + "interpolation": "LINEAR", + "output": 3102 + }, + { + "input": 3103, + "interpolation": "LINEAR", + "output": 3104 + }, + { + "input": 3105, + "interpolation": "LINEAR", + "output": 3106 + }, + { + "input": 3107, + "interpolation": "LINEAR", + "output": 3108 + }, + { + "input": 3109, + "interpolation": "LINEAR", + "output": 3110 + }, + { + "input": 3111, + "interpolation": "LINEAR", + "output": 3112 + }, + { + "input": 3113, + "interpolation": "LINEAR", + "output": 3114 + }, + { + "input": 3115, + "interpolation": "LINEAR", + "output": 3116 + }, + { + "input": 3117, + "interpolation": "LINEAR", + "output": 3118 + }, + { + "input": 3119, + "interpolation": "LINEAR", + "output": 3120 + }, + { + "input": 3121, + "interpolation": "LINEAR", + "output": 3122 + }, + { + "input": 3123, + "interpolation": "LINEAR", + "output": 3124 + }, + { + "input": 3125, + "interpolation": "LINEAR", + "output": 3126 + }, + { + "input": 3127, + "interpolation": "LINEAR", + "output": 3128 + }, + { + "input": 3129, + "interpolation": "LINEAR", + "output": 3130 + }, + { + "input": 3131, + "interpolation": "LINEAR", + "output": 3132 + }, + { + "input": 3133, + "interpolation": "LINEAR", + "output": 3134 + }, + { + "input": 3135, + "interpolation": "LINEAR", + "output": 3136 + }, + { + "input": 3137, + "interpolation": "LINEAR", + "output": 3138 + }, + { + "input": 3139, + "interpolation": "LINEAR", + "output": 3140 + }, + { + "input": 3141, + "interpolation": "LINEAR", + "output": 3142 + }, + { + "input": 3143, + "interpolation": "LINEAR", + "output": 3144 + }, + { + "input": 3145, + "interpolation": "LINEAR", + "output": 3146 + }, + { + "input": 3147, + "interpolation": "LINEAR", + "output": 3148 + }, + { + "input": 3149, + "interpolation": "LINEAR", + "output": 3150 + }, + { + "input": 3151, + "interpolation": "LINEAR", + "output": 3152 + }, + { + "input": 3153, + "interpolation": "LINEAR", + "output": 3154 + }, + { + "input": 3155, + "interpolation": "LINEAR", + "output": 3156 + }, + { + "input": 3157, + "interpolation": "LINEAR", + "output": 3158 + }, + { + "input": 3159, + "interpolation": "LINEAR", + "output": 3160 + }, + { + "input": 3161, + "interpolation": "LINEAR", + "output": 3162 + }, + { + "input": 3163, + "interpolation": "LINEAR", + "output": 3164 + }, + { + "input": 3165, + "interpolation": "LINEAR", + "output": 3166 + }, + { + "input": 3167, + "interpolation": "LINEAR", + "output": 3168 + }, + { + "input": 3169, + "interpolation": "LINEAR", + "output": 3170 + }, + { + "input": 3171, + "interpolation": "LINEAR", + "output": 3172 + }, + { + "input": 3173, + "interpolation": "LINEAR", + "output": 3174 + }, + { + "input": 3175, + "interpolation": "LINEAR", + "output": 3176 + }, + { + "input": 3177, + "interpolation": "LINEAR", + "output": 3178 + }, + { + "input": 3179, + "interpolation": "LINEAR", + "output": 3180 + }, + { + "input": 3181, + "interpolation": "LINEAR", + "output": 3182 + }, + { + "input": 3183, + "interpolation": "LINEAR", + "output": 3184 + }, + { + "input": 3185, + "interpolation": "LINEAR", + "output": 3186 + }, + { + "input": 3187, + "interpolation": "LINEAR", + "output": 3188 + }, + { + "input": 3189, + "interpolation": "LINEAR", + "output": 3190 + }, + { + "input": 3191, + "interpolation": "LINEAR", + "output": 3192 + }, + { + "input": 3193, + "interpolation": "LINEAR", + "output": 3194 + }, + { + "input": 3195, + "interpolation": "LINEAR", + "output": 3196 + }, + { + "input": 3197, + "interpolation": "LINEAR", + "output": 3198 + }, + { + "input": 3199, + "interpolation": "LINEAR", + "output": 3200 + }, + { + "input": 3201, + "interpolation": "LINEAR", + "output": 3202 + }, + { + "input": 3203, + "interpolation": "LINEAR", + "output": 3204 + }, + { + "input": 3205, + "interpolation": "LINEAR", + "output": 3206 + }, + { + "input": 3207, + "interpolation": "LINEAR", + "output": 3208 + }, + { + "input": 3209, + "interpolation": "LINEAR", + "output": 3210 + }, + { + "input": 3211, + "interpolation": "LINEAR", + "output": 3212 + }, + { + "input": 3213, + "interpolation": "LINEAR", + "output": 3214 + }, + { + "input": 3215, + "interpolation": "LINEAR", + "output": 3216 + }, + { + "input": 3217, + "interpolation": "LINEAR", + "output": 3218 + }, + { + "input": 3219, + "interpolation": "LINEAR", + "output": 3220 + }, + { + "input": 3221, + "interpolation": "LINEAR", + "output": 3222 + }, + { + "input": 3223, + "interpolation": "LINEAR", + "output": 3224 + }, + { + "input": 3225, + "interpolation": "LINEAR", + "output": 3226 + }, + { + "input": 3227, + "interpolation": "LINEAR", + "output": 3228 + }, + { + "input": 3229, + "interpolation": "LINEAR", + "output": 3230 + }, + { + "input": 3231, + "interpolation": "LINEAR", + "output": 3232 + }, + { + "input": 3233, + "interpolation": "LINEAR", + "output": 3234 + }, + { + "input": 3235, + "interpolation": "LINEAR", + "output": 3236 + }, + { + "input": 3237, + "interpolation": "LINEAR", + "output": 3238 + }, + { + "input": 3239, + "interpolation": "LINEAR", + "output": 3240 + }, + { + "input": 3241, + "interpolation": "LINEAR", + "output": 3242 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Dodge", + "samplers": [ + { + "input": 3243, + "interpolation": "LINEAR", + "output": 3244 + }, + { + "input": 3245, + "interpolation": "LINEAR", + "output": 3246 + }, + { + "input": 3247, + "interpolation": "LINEAR", + "output": 3248 + }, + { + "input": 3249, + "interpolation": "LINEAR", + "output": 3250 + }, + { + "input": 3251, + "interpolation": "LINEAR", + "output": 3252 + }, + { + "input": 3253, + "interpolation": "LINEAR", + "output": 3254 + }, + { + "input": 3255, + "interpolation": "LINEAR", + "output": 3256 + }, + { + "input": 3257, + "interpolation": "LINEAR", + "output": 3258 + }, + { + "input": 3259, + "interpolation": "LINEAR", + "output": 3260 + }, + { + "input": 3261, + "interpolation": "LINEAR", + "output": 3262 + }, + { + "input": 3263, + "interpolation": "LINEAR", + "output": 3264 + }, + { + "input": 3265, + "interpolation": "LINEAR", + "output": 3266 + }, + { + "input": 3267, + "interpolation": "LINEAR", + "output": 3268 + }, + { + "input": 3269, + "interpolation": "LINEAR", + "output": 3270 + }, + { + "input": 3271, + "interpolation": "LINEAR", + "output": 3272 + }, + { + "input": 3273, + "interpolation": "LINEAR", + "output": 3274 + }, + { + "input": 3275, + "interpolation": "LINEAR", + "output": 3276 + }, + { + "input": 3277, + "interpolation": "LINEAR", + "output": 3278 + }, + { + "input": 3279, + "interpolation": "LINEAR", + "output": 3280 + }, + { + "input": 3281, + "interpolation": "LINEAR", + "output": 3282 + }, + { + "input": 3283, + "interpolation": "LINEAR", + "output": 3284 + }, + { + "input": 3285, + "interpolation": "LINEAR", + "output": 3286 + }, + { + "input": 3287, + "interpolation": "LINEAR", + "output": 3288 + }, + { + "input": 3289, + "interpolation": "LINEAR", + "output": 3290 + }, + { + "input": 3291, + "interpolation": "LINEAR", + "output": 3292 + }, + { + "input": 3293, + "interpolation": "LINEAR", + "output": 3294 + }, + { + "input": 3295, + "interpolation": "LINEAR", + "output": 3296 + }, + { + "input": 3297, + "interpolation": "LINEAR", + "output": 3298 + }, + { + "input": 3299, + "interpolation": "LINEAR", + "output": 3300 + }, + { + "input": 3301, + "interpolation": "LINEAR", + "output": 3302 + }, + { + "input": 3303, + "interpolation": "LINEAR", + "output": 3304 + }, + { + "input": 3305, + "interpolation": "LINEAR", + "output": 3306 + }, + { + "input": 3307, + "interpolation": "LINEAR", + "output": 3308 + }, + { + "input": 3309, + "interpolation": "LINEAR", + "output": 3310 + }, + { + "input": 3311, + "interpolation": "LINEAR", + "output": 3312 + }, + { + "input": 3313, + "interpolation": "LINEAR", + "output": 3314 + }, + { + "input": 3315, + "interpolation": "LINEAR", + "output": 3316 + }, + { + "input": 3317, + "interpolation": "LINEAR", + "output": 3318 + }, + { + "input": 3319, + "interpolation": "LINEAR", + "output": 3320 + }, + { + "input": 3321, + "interpolation": "LINEAR", + "output": 3322 + }, + { + "input": 3323, + "interpolation": "LINEAR", + "output": 3324 + }, + { + "input": 3325, + "interpolation": "LINEAR", + "output": 3326 + }, + { + "input": 3327, + "interpolation": "LINEAR", + "output": 3328 + }, + { + "input": 3329, + "interpolation": "LINEAR", + "output": 3330 + }, + { + "input": 3331, + "interpolation": "LINEAR", + "output": 3332 + }, + { + "input": 3333, + "interpolation": "LINEAR", + "output": 3334 + }, + { + "input": 3335, + "interpolation": "LINEAR", + "output": 3336 + }, + { + "input": 3337, + "interpolation": "LINEAR", + "output": 3338 + }, + { + "input": 3339, + "interpolation": "LINEAR", + "output": 3340 + }, + { + "input": 3341, + "interpolation": "LINEAR", + "output": 3342 + }, + { + "input": 3343, + "interpolation": "LINEAR", + "output": 3344 + }, + { + "input": 3345, + "interpolation": "LINEAR", + "output": 3346 + }, + { + "input": 3347, + "interpolation": "LINEAR", + "output": 3348 + }, + { + "input": 3349, + "interpolation": "LINEAR", + "output": 3350 + }, + { + "input": 3351, + "interpolation": "LINEAR", + "output": 3352 + }, + { + "input": 3353, + "interpolation": "LINEAR", + "output": 3354 + }, + { + "input": 3355, + "interpolation": "LINEAR", + "output": 3356 + }, + { + "input": 3357, + "interpolation": "LINEAR", + "output": 3358 + }, + { + "input": 3359, + "interpolation": "LINEAR", + "output": 3360 + }, + { + "input": 3361, + "interpolation": "LINEAR", + "output": 3362 + }, + { + "input": 3363, + "interpolation": "LINEAR", + "output": 3364 + }, + { + "input": 3365, + "interpolation": "LINEAR", + "output": 3366 + }, + { + "input": 3367, + "interpolation": "LINEAR", + "output": 3368 + }, + { + "input": 3369, + "interpolation": "LINEAR", + "output": 3370 + }, + { + "input": 3371, + "interpolation": "LINEAR", + "output": 3372 + }, + { + "input": 3373, + "interpolation": "LINEAR", + "output": 3374 + }, + { + "input": 3375, + "interpolation": "LINEAR", + "output": 3376 + }, + { + "input": 3377, + "interpolation": "LINEAR", + "output": 3378 + }, + { + "input": 3379, + "interpolation": "LINEAR", + "output": 3380 + }, + { + "input": 3381, + "interpolation": "LINEAR", + "output": 3382 + }, + { + "input": 3383, + "interpolation": "LINEAR", + "output": 3384 + }, + { + "input": 3385, + "interpolation": "LINEAR", + "output": 3386 + }, + { + "input": 3387, + "interpolation": "LINEAR", + "output": 3388 + }, + { + "input": 3389, + "interpolation": "LINEAR", + "output": 3390 + }, + { + "input": 3391, + "interpolation": "LINEAR", + "output": 3392 + }, + { + "input": 3393, + "interpolation": "LINEAR", + "output": 3394 + }, + { + "input": 3395, + "interpolation": "LINEAR", + "output": 3396 + }, + { + "input": 3397, + "interpolation": "LINEAR", + "output": 3398 + }, + { + "input": 3399, + "interpolation": "LINEAR", + "output": 3400 + }, + { + "input": 3401, + "interpolation": "LINEAR", + "output": 3402 + }, + { + "input": 3403, + "interpolation": "LINEAR", + "output": 3404 + }, + { + "input": 3405, + "interpolation": "LINEAR", + "output": 3406 + }, + { + "input": 3407, + "interpolation": "LINEAR", + "output": 3408 + }, + { + "input": 3409, + "interpolation": "LINEAR", + "output": 3410 + }, + { + "input": 3411, + "interpolation": "LINEAR", + "output": 3412 + }, + { + "input": 3413, + "interpolation": "LINEAR", + "output": 3414 + }, + { + "input": 3415, + "interpolation": "LINEAR", + "output": 3416 + }, + { + "input": 3417, + "interpolation": "LINEAR", + "output": 3418 + }, + { + "input": 3419, + "interpolation": "LINEAR", + "output": 3420 + }, + { + "input": 3421, + "interpolation": "LINEAR", + "output": 3422 + }, + { + "input": 3423, + "interpolation": "LINEAR", + "output": 3424 + }, + { + "input": 3425, + "interpolation": "LINEAR", + "output": 3426 + }, + { + "input": 3427, + "interpolation": "LINEAR", + "output": 3428 + }, + { + "input": 3429, + "interpolation": "LINEAR", + "output": 3430 + }, + { + "input": 3431, + "interpolation": "LINEAR", + "output": 3432 + }, + { + "input": 3433, + "interpolation": "LINEAR", + "output": 3434 + }, + { + "input": 3435, + "interpolation": "LINEAR", + "output": 3436 + }, + { + "input": 3437, + "interpolation": "LINEAR", + "output": 3438 + }, + { + "input": 3439, + "interpolation": "LINEAR", + "output": 3440 + }, + { + "input": 3441, + "interpolation": "LINEAR", + "output": 3442 + }, + { + "input": 3443, + "interpolation": "LINEAR", + "output": 3444 + }, + { + "input": 3445, + "interpolation": "LINEAR", + "output": 3446 + }, + { + "input": 3447, + "interpolation": "LINEAR", + "output": 3448 + }, + { + "input": 3449, + "interpolation": "LINEAR", + "output": 3450 + }, + { + "input": 3451, + "interpolation": "LINEAR", + "output": 3452 + }, + { + "input": 3453, + "interpolation": "LINEAR", + "output": 3454 + }, + { + "input": 3455, + "interpolation": "LINEAR", + "output": 3456 + }, + { + "input": 3457, + "interpolation": "LINEAR", + "output": 3458 + }, + { + "input": 3459, + "interpolation": "LINEAR", + "output": 3460 + }, + { + "input": 3461, + "interpolation": "LINEAR", + "output": 3462 + }, + { + "input": 3463, + "interpolation": "LINEAR", + "output": 3464 + }, + { + "input": 3465, + "interpolation": "LINEAR", + "output": 3466 + }, + { + "input": 3467, + "interpolation": "LINEAR", + "output": 3468 + }, + { + "input": 3469, + "interpolation": "LINEAR", + "output": 3470 + }, + { + "input": 3471, + "interpolation": "LINEAR", + "output": 3472 + }, + { + "input": 3473, + "interpolation": "LINEAR", + "output": 3474 + }, + { + "input": 3475, + "interpolation": "LINEAR", + "output": 3476 + }, + { + "input": 3477, + "interpolation": "LINEAR", + "output": 3478 + }, + { + "input": 3479, + "interpolation": "LINEAR", + "output": 3480 + }, + { + "input": 3481, + "interpolation": "LINEAR", + "output": 3482 + }, + { + "input": 3483, + "interpolation": "LINEAR", + "output": 3484 + }, + { + "input": 3485, + "interpolation": "LINEAR", + "output": 3486 + }, + { + "input": 3487, + "interpolation": "LINEAR", + "output": 3488 + }, + { + "input": 3489, + "interpolation": "LINEAR", + "output": 3490 + }, + { + "input": 3491, + "interpolation": "LINEAR", + "output": 3492 + }, + { + "input": 3493, + "interpolation": "LINEAR", + "output": 3494 + }, + { + "input": 3495, + "interpolation": "LINEAR", + "output": 3496 + }, + { + "input": 3497, + "interpolation": "LINEAR", + "output": 3498 + }, + { + "input": 3499, + "interpolation": "LINEAR", + "output": 3500 + }, + { + "input": 3501, + "interpolation": "LINEAR", + "output": 3502 + }, + { + "input": 3503, + "interpolation": "LINEAR", + "output": 3504 + }, + { + "input": 3505, + "interpolation": "LINEAR", + "output": 3506 + }, + { + "input": 3507, + "interpolation": "LINEAR", + "output": 3508 + }, + { + "input": 3509, + "interpolation": "LINEAR", + "output": 3510 + }, + { + "input": 3511, + "interpolation": "LINEAR", + "output": 3512 + }, + { + "input": 3513, + "interpolation": "LINEAR", + "output": 3514 + }, + { + "input": 3515, + "interpolation": "LINEAR", + "output": 3516 + }, + { + "input": 3517, + "interpolation": "LINEAR", + "output": 3518 + }, + { + "input": 3519, + "interpolation": "LINEAR", + "output": 3520 + }, + { + "input": 3521, + "interpolation": "LINEAR", + "output": 3522 + }, + { + "input": 3523, + "interpolation": "LINEAR", + "output": 3524 + }, + { + "input": 3525, + "interpolation": "LINEAR", + "output": 3526 + }, + { + "input": 3527, + "interpolation": "LINEAR", + "output": 3528 + }, + { + "input": 3529, + "interpolation": "LINEAR", + "output": 3530 + }, + { + "input": 3531, + "interpolation": "LINEAR", + "output": 3532 + }, + { + "input": 3533, + "interpolation": "LINEAR", + "output": 3534 + }, + { + "input": 3535, + "interpolation": "LINEAR", + "output": 3536 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 17, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 20, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 29, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 32, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 35, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 38, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 40, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 77, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 124, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 125, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 126, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 127, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 128, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Fall", + "samplers": [ + { + "input": 3537, + "interpolation": "LINEAR", + "output": 3538 + }, + { + "input": 3539, + "interpolation": "LINEAR", + "output": 3540 + }, + { + "input": 3541, + "interpolation": "LINEAR", + "output": 3542 + }, + { + "input": 3543, + "interpolation": "LINEAR", + "output": 3544 + }, + { + "input": 3545, + "interpolation": "LINEAR", + "output": 3546 + }, + { + "input": 3547, + "interpolation": "LINEAR", + "output": 3548 + }, + { + "input": 3549, + "interpolation": "LINEAR", + "output": 3550 + }, + { + "input": 3551, + "interpolation": "LINEAR", + "output": 3552 + }, + { + "input": 3553, + "interpolation": "LINEAR", + "output": 3554 + }, + { + "input": 3555, + "interpolation": "LINEAR", + "output": 3556 + }, + { + "input": 3557, + "interpolation": "LINEAR", + "output": 3558 + }, + { + "input": 3559, + "interpolation": "LINEAR", + "output": 3560 + }, + { + "input": 3561, + "interpolation": "LINEAR", + "output": 3562 + }, + { + "input": 3563, + "interpolation": "LINEAR", + "output": 3564 + }, + { + "input": 3565, + "interpolation": "LINEAR", + "output": 3566 + }, + { + "input": 3567, + "interpolation": "LINEAR", + "output": 3568 + }, + { + "input": 3569, + "interpolation": "LINEAR", + "output": 3570 + }, + { + "input": 3571, + "interpolation": "LINEAR", + "output": 3572 + }, + { + "input": 3573, + "interpolation": "LINEAR", + "output": 3574 + }, + { + "input": 3575, + "interpolation": "LINEAR", + "output": 3576 + }, + { + "input": 3577, + "interpolation": "LINEAR", + "output": 3578 + }, + { + "input": 3579, + "interpolation": "LINEAR", + "output": 3580 + }, + { + "input": 3581, + "interpolation": "LINEAR", + "output": 3582 + }, + { + "input": 3583, + "interpolation": "LINEAR", + "output": 3584 + }, + { + "input": 3585, + "interpolation": "LINEAR", + "output": 3586 + }, + { + "input": 3587, + "interpolation": "LINEAR", + "output": 3588 + }, + { + "input": 3589, + "interpolation": "LINEAR", + "output": 3590 + }, + { + "input": 3591, + "interpolation": "LINEAR", + "output": 3592 + }, + { + "input": 3593, + "interpolation": "LINEAR", + "output": 3594 + }, + { + "input": 3595, + "interpolation": "LINEAR", + "output": 3596 + }, + { + "input": 3597, + "interpolation": "LINEAR", + "output": 3598 + }, + { + "input": 3599, + "interpolation": "LINEAR", + "output": 3600 + }, + { + "input": 3601, + "interpolation": "LINEAR", + "output": 3602 + }, + { + "input": 3603, + "interpolation": "LINEAR", + "output": 3604 + }, + { + "input": 3605, + "interpolation": "LINEAR", + "output": 3606 + }, + { + "input": 3607, + "interpolation": "LINEAR", + "output": 3608 + }, + { + "input": 3609, + "interpolation": "LINEAR", + "output": 3610 + }, + { + "input": 3611, + "interpolation": "LINEAR", + "output": 3612 + }, + { + "input": 3613, + "interpolation": "LINEAR", + "output": 3614 + }, + { + "input": 3615, + "interpolation": "LINEAR", + "output": 3616 + }, + { + "input": 3617, + "interpolation": "LINEAR", + "output": 3618 + }, + { + "input": 3619, + "interpolation": "LINEAR", + "output": 3620 + }, + { + "input": 3621, + "interpolation": "LINEAR", + "output": 3622 + }, + { + "input": 3623, + "interpolation": "LINEAR", + "output": 3624 + }, + { + "input": 3625, + "interpolation": "LINEAR", + "output": 3626 + }, + { + "input": 3627, + "interpolation": "LINEAR", + "output": 3628 + }, + { + "input": 3629, + "interpolation": "LINEAR", + "output": 3630 + }, + { + "input": 3631, + "interpolation": "LINEAR", + "output": 3632 + }, + { + "input": 3633, + "interpolation": "LINEAR", + "output": 3634 + }, + { + "input": 3635, + "interpolation": "LINEAR", + "output": 3636 + }, + { + "input": 3637, + "interpolation": "LINEAR", + "output": 3638 + }, + { + "input": 3639, + "interpolation": "LINEAR", + "output": 3640 + }, + { + "input": 3641, + "interpolation": "LINEAR", + "output": 3642 + }, + { + "input": 3643, + "interpolation": "LINEAR", + "output": 3644 + }, + { + "input": 3645, + "interpolation": "LINEAR", + "output": 3646 + }, + { + "input": 3647, + "interpolation": "LINEAR", + "output": 3648 + }, + { + "input": 3649, + "interpolation": "LINEAR", + "output": 3650 + }, + { + "input": 3651, + "interpolation": "LINEAR", + "output": 3652 + }, + { + "input": 3653, + "interpolation": "LINEAR", + "output": 3654 + }, + { + "input": 3655, + "interpolation": "LINEAR", + "output": 3656 + }, + { + "input": 3657, + "interpolation": "LINEAR", + "output": 3658 + }, + { + "input": 3659, + "interpolation": "LINEAR", + "output": 3660 + }, + { + "input": 3661, + "interpolation": "LINEAR", + "output": 3662 + }, + { + "input": 3663, + "interpolation": "LINEAR", + "output": 3664 + }, + { + "input": 3665, + "interpolation": "LINEAR", + "output": 3666 + }, + { + "input": 3667, + "interpolation": "LINEAR", + "output": 3668 + }, + { + "input": 3669, + "interpolation": "LINEAR", + "output": 3670 + }, + { + "input": 3671, + "interpolation": "LINEAR", + "output": 3672 + }, + { + "input": 3673, + "interpolation": "LINEAR", + "output": 3674 + }, + { + "input": 3675, + "interpolation": "LINEAR", + "output": 3676 + }, + { + "input": 3677, + "interpolation": "LINEAR", + "output": 3678 + }, + { + "input": 3679, + "interpolation": "LINEAR", + "output": 3680 + }, + { + "input": 3681, + "interpolation": "LINEAR", + "output": 3682 + }, + { + "input": 3683, + "interpolation": "LINEAR", + "output": 3684 + }, + { + "input": 3685, + "interpolation": "LINEAR", + "output": 3686 + }, + { + "input": 3687, + "interpolation": "LINEAR", + "output": 3688 + }, + { + "input": 3689, + "interpolation": "LINEAR", + "output": 3690 + }, + { + "input": 3691, + "interpolation": "LINEAR", + "output": 3692 + }, + { + "input": 3693, + "interpolation": "LINEAR", + "output": 3694 + }, + { + "input": 3695, + "interpolation": "LINEAR", + "output": 3696 + }, + { + "input": 3697, + "interpolation": "LINEAR", + "output": 3698 + }, + { + "input": 3699, + "interpolation": "LINEAR", + "output": 3700 + }, + { + "input": 3701, + "interpolation": "LINEAR", + "output": 3702 + }, + { + "input": 3703, + "interpolation": "LINEAR", + "output": 3704 + }, + { + "input": 3705, + "interpolation": "LINEAR", + "output": 3706 + }, + { + "input": 3707, + "interpolation": "LINEAR", + "output": 3708 + }, + { + "input": 3709, + "interpolation": "LINEAR", + "output": 3710 + }, + { + "input": 3711, + "interpolation": "LINEAR", + "output": 3712 + }, + { + "input": 3713, + "interpolation": "LINEAR", + "output": 3714 + }, + { + "input": 3715, + "interpolation": "LINEAR", + "output": 3716 + }, + { + "input": 3717, + "interpolation": "LINEAR", + "output": 3718 + }, + { + "input": 3719, + "interpolation": "LINEAR", + "output": 3720 + }, + { + "input": 3721, + "interpolation": "LINEAR", + "output": 3722 + }, + { + "input": 3723, + "interpolation": "LINEAR", + "output": 3724 + }, + { + "input": 3725, + "interpolation": "LINEAR", + "output": 3726 + }, + { + "input": 3727, + "interpolation": "LINEAR", + "output": 3728 + }, + { + "input": 3729, + "interpolation": "LINEAR", + "output": 3730 + }, + { + "input": 3731, + "interpolation": "LINEAR", + "output": 3732 + }, + { + "input": 3733, + "interpolation": "LINEAR", + "output": 3734 + }, + { + "input": 3735, + "interpolation": "LINEAR", + "output": 3736 + }, + { + "input": 3737, + "interpolation": "LINEAR", + "output": 3738 + }, + { + "input": 3739, + "interpolation": "LINEAR", + "output": 3740 + }, + { + "input": 3741, + "interpolation": "LINEAR", + "output": 3742 + }, + { + "input": 3743, + "interpolation": "LINEAR", + "output": 3744 + }, + { + "input": 3745, + "interpolation": "LINEAR", + "output": 3746 + }, + { + "input": 3747, + "interpolation": "LINEAR", + "output": 3748 + }, + { + "input": 3749, + "interpolation": "LINEAR", + "output": 3750 + }, + { + "input": 3751, + "interpolation": "LINEAR", + "output": 3752 + }, + { + "input": 3753, + "interpolation": "LINEAR", + "output": 3754 + }, + { + "input": 3755, + "interpolation": "LINEAR", + "output": 3756 + }, + { + "input": 3757, + "interpolation": "LINEAR", + "output": 3758 + }, + { + "input": 3759, + "interpolation": "LINEAR", + "output": 3760 + }, + { + "input": 3761, + "interpolation": "LINEAR", + "output": 3762 + }, + { + "input": 3763, + "interpolation": "LINEAR", + "output": 3764 + }, + { + "input": 3765, + "interpolation": "LINEAR", + "output": 3766 + }, + { + "input": 3767, + "interpolation": "LINEAR", + "output": 3768 + }, + { + "input": 3769, + "interpolation": "LINEAR", + "output": 3770 + }, + { + "input": 3771, + "interpolation": "LINEAR", + "output": 3772 + }, + { + "input": 3773, + "interpolation": "LINEAR", + "output": 3774 + }, + { + "input": 3775, + "interpolation": "LINEAR", + "output": 3776 + }, + { + "input": 3777, + "interpolation": "LINEAR", + "output": 3778 + }, + { + "input": 3779, + "interpolation": "LINEAR", + "output": 3780 + }, + { + "input": 3781, + "interpolation": "LINEAR", + "output": 3782 + }, + { + "input": 3783, + "interpolation": "LINEAR", + "output": 3784 + }, + { + "input": 3785, + "interpolation": "LINEAR", + "output": 3786 + }, + { + "input": 3787, + "interpolation": "LINEAR", + "output": 3788 + }, + { + "input": 3789, + "interpolation": "LINEAR", + "output": 3790 + }, + { + "input": 3791, + "interpolation": "LINEAR", + "output": 3792 + }, + { + "input": 3793, + "interpolation": "LINEAR", + "output": 3794 + }, + { + "input": 3795, + "interpolation": "LINEAR", + "output": 3796 + }, + { + "input": 3797, + "interpolation": "LINEAR", + "output": 3798 + }, + { + "input": 3799, + "interpolation": "LINEAR", + "output": 3800 + }, + { + "input": 3801, + "interpolation": "LINEAR", + "output": 3802 + }, + { + "input": 3803, + "interpolation": "LINEAR", + "output": 3804 + }, + { + "input": 3805, + "interpolation": "LINEAR", + "output": 3806 + }, + { + "input": 3807, + "interpolation": "LINEAR", + "output": 3808 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_FallGround", + "samplers": [ + { + "input": 3809, + "interpolation": "LINEAR", + "output": 3810 + }, + { + "input": 3811, + "interpolation": "LINEAR", + "output": 3812 + }, + { + "input": 3813, + "interpolation": "LINEAR", + "output": 3814 + }, + { + "input": 3815, + "interpolation": "LINEAR", + "output": 3816 + }, + { + "input": 3817, + "interpolation": "LINEAR", + "output": 3818 + }, + { + "input": 3819, + "interpolation": "LINEAR", + "output": 3820 + }, + { + "input": 3821, + "interpolation": "LINEAR", + "output": 3822 + }, + { + "input": 3823, + "interpolation": "LINEAR", + "output": 3824 + }, + { + "input": 3825, + "interpolation": "LINEAR", + "output": 3826 + }, + { + "input": 3827, + "interpolation": "LINEAR", + "output": 3828 + }, + { + "input": 3829, + "interpolation": "LINEAR", + "output": 3830 + }, + { + "input": 3831, + "interpolation": "LINEAR", + "output": 3832 + }, + { + "input": 3833, + "interpolation": "LINEAR", + "output": 3834 + }, + { + "input": 3835, + "interpolation": "LINEAR", + "output": 3836 + }, + { + "input": 3837, + "interpolation": "LINEAR", + "output": 3838 + }, + { + "input": 3839, + "interpolation": "LINEAR", + "output": 3840 + }, + { + "input": 3841, + "interpolation": "LINEAR", + "output": 3842 + }, + { + "input": 3843, + "interpolation": "LINEAR", + "output": 3844 + }, + { + "input": 3845, + "interpolation": "LINEAR", + "output": 3846 + }, + { + "input": 3847, + "interpolation": "LINEAR", + "output": 3848 + }, + { + "input": 3849, + "interpolation": "LINEAR", + "output": 3850 + }, + { + "input": 3851, + "interpolation": "LINEAR", + "output": 3852 + }, + { + "input": 3853, + "interpolation": "LINEAR", + "output": 3854 + }, + { + "input": 3855, + "interpolation": "LINEAR", + "output": 3856 + }, + { + "input": 3857, + "interpolation": "LINEAR", + "output": 3858 + }, + { + "input": 3859, + "interpolation": "LINEAR", + "output": 3860 + }, + { + "input": 3861, + "interpolation": "LINEAR", + "output": 3862 + }, + { + "input": 3863, + "interpolation": "LINEAR", + "output": 3864 + }, + { + "input": 3865, + "interpolation": "LINEAR", + "output": 3866 + }, + { + "input": 3867, + "interpolation": "LINEAR", + "output": 3868 + }, + { + "input": 3869, + "interpolation": "LINEAR", + "output": 3870 + }, + { + "input": 3871, + "interpolation": "LINEAR", + "output": 3872 + }, + { + "input": 3873, + "interpolation": "LINEAR", + "output": 3874 + }, + { + "input": 3875, + "interpolation": "LINEAR", + "output": 3876 + }, + { + "input": 3877, + "interpolation": "LINEAR", + "output": 3878 + }, + { + "input": 3879, + "interpolation": "LINEAR", + "output": 3880 + }, + { + "input": 3881, + "interpolation": "LINEAR", + "output": 3882 + }, + { + "input": 3883, + "interpolation": "LINEAR", + "output": 3884 + }, + { + "input": 3885, + "interpolation": "LINEAR", + "output": 3886 + }, + { + "input": 3887, + "interpolation": "LINEAR", + "output": 3888 + }, + { + "input": 3889, + "interpolation": "LINEAR", + "output": 3890 + }, + { + "input": 3891, + "interpolation": "LINEAR", + "output": 3892 + }, + { + "input": 3893, + "interpolation": "LINEAR", + "output": 3894 + }, + { + "input": 3895, + "interpolation": "LINEAR", + "output": 3896 + }, + { + "input": 3897, + "interpolation": "LINEAR", + "output": 3898 + }, + { + "input": 3899, + "interpolation": "LINEAR", + "output": 3900 + }, + { + "input": 3901, + "interpolation": "LINEAR", + "output": 3902 + }, + { + "input": 3903, + "interpolation": "LINEAR", + "output": 3904 + }, + { + "input": 3905, + "interpolation": "LINEAR", + "output": 3906 + }, + { + "input": 3907, + "interpolation": "LINEAR", + "output": 3908 + }, + { + "input": 3909, + "interpolation": "LINEAR", + "output": 3910 + }, + { + "input": 3911, + "interpolation": "LINEAR", + "output": 3912 + }, + { + "input": 3913, + "interpolation": "LINEAR", + "output": 3914 + }, + { + "input": 3915, + "interpolation": "LINEAR", + "output": 3916 + }, + { + "input": 3917, + "interpolation": "LINEAR", + "output": 3918 + }, + { + "input": 3919, + "interpolation": "LINEAR", + "output": 3920 + }, + { + "input": 3921, + "interpolation": "LINEAR", + "output": 3922 + }, + { + "input": 3923, + "interpolation": "LINEAR", + "output": 3924 + }, + { + "input": 3925, + "interpolation": "LINEAR", + "output": 3926 + }, + { + "input": 3927, + "interpolation": "LINEAR", + "output": 3928 + }, + { + "input": 3929, + "interpolation": "LINEAR", + "output": 3930 + }, + { + "input": 3931, + "interpolation": "LINEAR", + "output": 3932 + }, + { + "input": 3933, + "interpolation": "LINEAR", + "output": 3934 + }, + { + "input": 3935, + "interpolation": "LINEAR", + "output": 3936 + }, + { + "input": 3937, + "interpolation": "LINEAR", + "output": 3938 + }, + { + "input": 3939, + "interpolation": "LINEAR", + "output": 3940 + }, + { + "input": 3941, + "interpolation": "LINEAR", + "output": 3942 + }, + { + "input": 3943, + "interpolation": "LINEAR", + "output": 3944 + }, + { + "input": 3945, + "interpolation": "LINEAR", + "output": 3946 + }, + { + "input": 3947, + "interpolation": "LINEAR", + "output": 3948 + }, + { + "input": 3949, + "interpolation": "LINEAR", + "output": 3950 + }, + { + "input": 3951, + "interpolation": "LINEAR", + "output": 3952 + }, + { + "input": 3953, + "interpolation": "LINEAR", + "output": 3954 + }, + { + "input": 3955, + "interpolation": "LINEAR", + "output": 3956 + }, + { + "input": 3957, + "interpolation": "LINEAR", + "output": 3958 + }, + { + "input": 3959, + "interpolation": "LINEAR", + "output": 3960 + }, + { + "input": 3961, + "interpolation": "LINEAR", + "output": 3962 + }, + { + "input": 3963, + "interpolation": "LINEAR", + "output": 3964 + }, + { + "input": 3965, + "interpolation": "LINEAR", + "output": 3966 + }, + { + "input": 3967, + "interpolation": "LINEAR", + "output": 3968 + }, + { + "input": 3969, + "interpolation": "LINEAR", + "output": 3970 + }, + { + "input": 3971, + "interpolation": "LINEAR", + "output": 3972 + }, + { + "input": 3973, + "interpolation": "LINEAR", + "output": 3974 + }, + { + "input": 3975, + "interpolation": "LINEAR", + "output": 3976 + }, + { + "input": 3977, + "interpolation": "LINEAR", + "output": 3978 + }, + { + "input": 3979, + "interpolation": "LINEAR", + "output": 3980 + }, + { + "input": 3981, + "interpolation": "LINEAR", + "output": 3982 + }, + { + "input": 3983, + "interpolation": "LINEAR", + "output": 3984 + }, + { + "input": 3985, + "interpolation": "LINEAR", + "output": 3986 + }, + { + "input": 3987, + "interpolation": "LINEAR", + "output": 3988 + }, + { + "input": 3989, + "interpolation": "LINEAR", + "output": 3990 + }, + { + "input": 3991, + "interpolation": "LINEAR", + "output": 3992 + }, + { + "input": 3993, + "interpolation": "LINEAR", + "output": 3994 + }, + { + "input": 3995, + "interpolation": "LINEAR", + "output": 3996 + }, + { + "input": 3997, + "interpolation": "LINEAR", + "output": 3998 + }, + { + "input": 3999, + "interpolation": "LINEAR", + "output": 4000 + }, + { + "input": 4001, + "interpolation": "LINEAR", + "output": 4002 + }, + { + "input": 4003, + "interpolation": "LINEAR", + "output": 4004 + }, + { + "input": 4005, + "interpolation": "LINEAR", + "output": 4006 + }, + { + "input": 4007, + "interpolation": "LINEAR", + "output": 4008 + }, + { + "input": 4009, + "interpolation": "LINEAR", + "output": 4010 + }, + { + "input": 4011, + "interpolation": "LINEAR", + "output": 4012 + }, + { + "input": 4013, + "interpolation": "LINEAR", + "output": 4014 + }, + { + "input": 4015, + "interpolation": "LINEAR", + "output": 4016 + }, + { + "input": 4017, + "interpolation": "LINEAR", + "output": 4018 + }, + { + "input": 4019, + "interpolation": "LINEAR", + "output": 4020 + }, + { + "input": 4021, + "interpolation": "LINEAR", + "output": 4022 + }, + { + "input": 4023, + "interpolation": "LINEAR", + "output": 4024 + }, + { + "input": 4025, + "interpolation": "LINEAR", + "output": 4026 + }, + { + "input": 4027, + "interpolation": "LINEAR", + "output": 4028 + }, + { + "input": 4029, + "interpolation": "LINEAR", + "output": 4030 + }, + { + "input": 4031, + "interpolation": "LINEAR", + "output": 4032 + }, + { + "input": 4033, + "interpolation": "LINEAR", + "output": 4034 + }, + { + "input": 4035, + "interpolation": "LINEAR", + "output": 4036 + }, + { + "input": 4037, + "interpolation": "LINEAR", + "output": 4038 + }, + { + "input": 4039, + "interpolation": "LINEAR", + "output": 4040 + }, + { + "input": 4041, + "interpolation": "LINEAR", + "output": 4042 + }, + { + "input": 4043, + "interpolation": "LINEAR", + "output": 4044 + }, + { + "input": 4045, + "interpolation": "LINEAR", + "output": 4046 + }, + { + "input": 4047, + "interpolation": "LINEAR", + "output": 4048 + }, + { + "input": 4049, + "interpolation": "LINEAR", + "output": 4050 + }, + { + "input": 4051, + "interpolation": "LINEAR", + "output": 4052 + }, + { + "input": 4053, + "interpolation": "LINEAR", + "output": 4054 + }, + { + "input": 4055, + "interpolation": "LINEAR", + "output": 4056 + }, + { + "input": 4057, + "interpolation": "LINEAR", + "output": 4058 + }, + { + "input": 4059, + "interpolation": "LINEAR", + "output": 4060 + }, + { + "input": 4061, + "interpolation": "LINEAR", + "output": 4062 + }, + { + "input": 4063, + "interpolation": "LINEAR", + "output": 4064 + }, + { + "input": 4065, + "interpolation": "LINEAR", + "output": 4066 + }, + { + "input": 4067, + "interpolation": "LINEAR", + "output": 4068 + }, + { + "input": 4069, + "interpolation": "LINEAR", + "output": 4070 + }, + { + "input": 4071, + "interpolation": "LINEAR", + "output": 4072 + }, + { + "input": 4073, + "interpolation": "LINEAR", + "output": 4074 + }, + { + "input": 4075, + "interpolation": "LINEAR", + "output": 4076 + }, + { + "input": 4077, + "interpolation": "LINEAR", + "output": 4078 + }, + { + "input": 4079, + "interpolation": "LINEAR", + "output": 4080 + }, + { + "input": 4081, + "interpolation": "LINEAR", + "output": 4082 + }, + { + "input": 4083, + "interpolation": "LINEAR", + "output": 4084 + }, + { + "input": 4085, + "interpolation": "LINEAR", + "output": 4086 + }, + { + "input": 4087, + "interpolation": "LINEAR", + "output": 4088 + }, + { + "input": 4089, + "interpolation": "LINEAR", + "output": 4090 + }, + { + "input": 4091, + "interpolation": "LINEAR", + "output": 4092 + }, + { + "input": 4093, + "interpolation": "LINEAR", + "output": 4094 + }, + { + "input": 4095, + "interpolation": "LINEAR", + "output": 4096 + }, + { + "input": 4097, + "interpolation": "LINEAR", + "output": 4098 + }, + { + "input": 4099, + "interpolation": "LINEAR", + "output": 4100 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 64, + "path": "translation" + } + } + ], + "name": "Combat_Hit", + "samplers": [ + { + "input": 4101, + "interpolation": "LINEAR", + "output": 4102 + }, + { + "input": 4103, + "interpolation": "LINEAR", + "output": 4104 + }, + { + "input": 4105, + "interpolation": "LINEAR", + "output": 4106 + }, + { + "input": 4107, + "interpolation": "LINEAR", + "output": 4108 + }, + { + "input": 4109, + "interpolation": "LINEAR", + "output": 4110 + }, + { + "input": 4111, + "interpolation": "LINEAR", + "output": 4112 + }, + { + "input": 4113, + "interpolation": "LINEAR", + "output": 4114 + }, + { + "input": 4115, + "interpolation": "LINEAR", + "output": 4116 + }, + { + "input": 4117, + "interpolation": "LINEAR", + "output": 4118 + }, + { + "input": 4119, + "interpolation": "LINEAR", + "output": 4120 + }, + { + "input": 4121, + "interpolation": "LINEAR", + "output": 4122 + }, + { + "input": 4123, + "interpolation": "LINEAR", + "output": 4124 + }, + { + "input": 4125, + "interpolation": "LINEAR", + "output": 4126 + }, + { + "input": 4127, + "interpolation": "LINEAR", + "output": 4128 + }, + { + "input": 4129, + "interpolation": "LINEAR", + "output": 4130 + }, + { + "input": 4131, + "interpolation": "LINEAR", + "output": 4132 + }, + { + "input": 4133, + "interpolation": "LINEAR", + "output": 4134 + }, + { + "input": 4135, + "interpolation": "LINEAR", + "output": 4136 + }, + { + "input": 4137, + "interpolation": "LINEAR", + "output": 4138 + }, + { + "input": 4139, + "interpolation": "LINEAR", + "output": 4140 + }, + { + "input": 4141, + "interpolation": "LINEAR", + "output": 4142 + }, + { + "input": 4143, + "interpolation": "LINEAR", + "output": 4144 + }, + { + "input": 4145, + "interpolation": "LINEAR", + "output": 4146 + }, + { + "input": 4147, + "interpolation": "LINEAR", + "output": 4148 + }, + { + "input": 4149, + "interpolation": "LINEAR", + "output": 4150 + }, + { + "input": 4151, + "interpolation": "LINEAR", + "output": 4152 + }, + { + "input": 4153, + "interpolation": "LINEAR", + "output": 4154 + }, + { + "input": 4155, + "interpolation": "LINEAR", + "output": 4156 + }, + { + "input": 4157, + "interpolation": "LINEAR", + "output": 4158 + }, + { + "input": 4159, + "interpolation": "LINEAR", + "output": 4160 + }, + { + "input": 4161, + "interpolation": "LINEAR", + "output": 4162 + }, + { + "input": 4163, + "interpolation": "LINEAR", + "output": 4164 + }, + { + "input": 4165, + "interpolation": "LINEAR", + "output": 4166 + }, + { + "input": 4167, + "interpolation": "LINEAR", + "output": 4168 + }, + { + "input": 4169, + "interpolation": "LINEAR", + "output": 4170 + }, + { + "input": 4171, + "interpolation": "LINEAR", + "output": 4172 + }, + { + "input": 4173, + "interpolation": "LINEAR", + "output": 4174 + }, + { + "input": 4175, + "interpolation": "LINEAR", + "output": 4176 + }, + { + "input": 4177, + "interpolation": "LINEAR", + "output": 4178 + }, + { + "input": 4179, + "interpolation": "LINEAR", + "output": 4180 + }, + { + "input": 4181, + "interpolation": "LINEAR", + "output": 4182 + }, + { + "input": 4183, + "interpolation": "LINEAR", + "output": 4184 + }, + { + "input": 4185, + "interpolation": "LINEAR", + "output": 4186 + }, + { + "input": 4187, + "interpolation": "LINEAR", + "output": 4188 + }, + { + "input": 4189, + "interpolation": "LINEAR", + "output": 4190 + }, + { + "input": 4191, + "interpolation": "LINEAR", + "output": 4192 + }, + { + "input": 4193, + "interpolation": "LINEAR", + "output": 4194 + }, + { + "input": 4195, + "interpolation": "LINEAR", + "output": 4196 + }, + { + "input": 4197, + "interpolation": "LINEAR", + "output": 4198 + }, + { + "input": 4199, + "interpolation": "LINEAR", + "output": 4200 + }, + { + "input": 4201, + "interpolation": "LINEAR", + "output": 4202 + }, + { + "input": 4203, + "interpolation": "LINEAR", + "output": 4204 + }, + { + "input": 4205, + "interpolation": "LINEAR", + "output": 4206 + }, + { + "input": 4207, + "interpolation": "LINEAR", + "output": 4208 + }, + { + "input": 4209, + "interpolation": "LINEAR", + "output": 4210 + }, + { + "input": 4211, + "interpolation": "LINEAR", + "output": 4212 + }, + { + "input": 4213, + "interpolation": "LINEAR", + "output": 4214 + }, + { + "input": 4215, + "interpolation": "LINEAR", + "output": 4216 + }, + { + "input": 4217, + "interpolation": "LINEAR", + "output": 4218 + }, + { + "input": 4219, + "interpolation": "LINEAR", + "output": 4220 + }, + { + "input": 4221, + "interpolation": "LINEAR", + "output": 4222 + }, + { + "input": 4223, + "interpolation": "LINEAR", + "output": 4224 + }, + { + "input": 4225, + "interpolation": "LINEAR", + "output": 4226 + }, + { + "input": 4227, + "interpolation": "LINEAR", + "output": 4228 + }, + { + "input": 4229, + "interpolation": "LINEAR", + "output": 4230 + }, + { + "input": 4231, + "interpolation": "LINEAR", + "output": 4232 + }, + { + "input": 4233, + "interpolation": "LINEAR", + "output": 4234 + }, + { + "input": 4235, + "interpolation": "LINEAR", + "output": 4236 + }, + { + "input": 4237, + "interpolation": "LINEAR", + "output": 4238 + }, + { + "input": 4239, + "interpolation": "LINEAR", + "output": 4240 + }, + { + "input": 4241, + "interpolation": "LINEAR", + "output": 4242 + }, + { + "input": 4243, + "interpolation": "LINEAR", + "output": 4244 + }, + { + "input": 4245, + "interpolation": "LINEAR", + "output": 4246 + }, + { + "input": 4247, + "interpolation": "LINEAR", + "output": 4248 + }, + { + "input": 4249, + "interpolation": "LINEAR", + "output": 4250 + }, + { + "input": 4251, + "interpolation": "LINEAR", + "output": 4252 + }, + { + "input": 4253, + "interpolation": "LINEAR", + "output": 4254 + }, + { + "input": 4255, + "interpolation": "LINEAR", + "output": 4256 + }, + { + "input": 4257, + "interpolation": "LINEAR", + "output": 4258 + }, + { + "input": 4259, + "interpolation": "LINEAR", + "output": 4260 + }, + { + "input": 4261, + "interpolation": "LINEAR", + "output": 4262 + }, + { + "input": 4263, + "interpolation": "LINEAR", + "output": 4264 + }, + { + "input": 4265, + "interpolation": "LINEAR", + "output": 4266 + }, + { + "input": 4267, + "interpolation": "LINEAR", + "output": 4268 + }, + { + "input": 4269, + "interpolation": "LINEAR", + "output": 4270 + }, + { + "input": 4271, + "interpolation": "LINEAR", + "output": 4272 + }, + { + "input": 4273, + "interpolation": "LINEAR", + "output": 4274 + }, + { + "input": 4275, + "interpolation": "LINEAR", + "output": 4276 + }, + { + "input": 4277, + "interpolation": "LINEAR", + "output": 4278 + }, + { + "input": 4279, + "interpolation": "LINEAR", + "output": 4280 + }, + { + "input": 4281, + "interpolation": "LINEAR", + "output": 4282 + }, + { + "input": 4283, + "interpolation": "LINEAR", + "output": 4284 + }, + { + "input": 4285, + "interpolation": "LINEAR", + "output": 4286 + }, + { + "input": 4287, + "interpolation": "LINEAR", + "output": 4288 + }, + { + "input": 4289, + "interpolation": "LINEAR", + "output": 4290 + }, + { + "input": 4291, + "interpolation": "LINEAR", + "output": 4292 + }, + { + "input": 4293, + "interpolation": "LINEAR", + "output": 4294 + }, + { + "input": 4295, + "interpolation": "LINEAR", + "output": 4296 + }, + { + "input": 4297, + "interpolation": "LINEAR", + "output": 4298 + }, + { + "input": 4299, + "interpolation": "LINEAR", + "output": 4300 + }, + { + "input": 4301, + "interpolation": "LINEAR", + "output": 4302 + }, + { + "input": 4303, + "interpolation": "LINEAR", + "output": 4304 + }, + { + "input": 4305, + "interpolation": "LINEAR", + "output": 4306 + }, + { + "input": 4307, + "interpolation": "LINEAR", + "output": 4308 + }, + { + "input": 4309, + "interpolation": "LINEAR", + "output": 4310 + }, + { + "input": 4311, + "interpolation": "LINEAR", + "output": 4312 + }, + { + "input": 4313, + "interpolation": "LINEAR", + "output": 4314 + }, + { + "input": 4315, + "interpolation": "LINEAR", + "output": 4316 + }, + { + "input": 4317, + "interpolation": "LINEAR", + "output": 4318 + }, + { + "input": 4319, + "interpolation": "LINEAR", + "output": 4320 + }, + { + "input": 4321, + "interpolation": "LINEAR", + "output": 4322 + }, + { + "input": 4323, + "interpolation": "LINEAR", + "output": 4324 + }, + { + "input": 4325, + "interpolation": "LINEAR", + "output": 4326 + }, + { + "input": 4327, + "interpolation": "LINEAR", + "output": 4328 + }, + { + "input": 4329, + "interpolation": "LINEAR", + "output": 4330 + }, + { + "input": 4331, + "interpolation": "LINEAR", + "output": 4332 + }, + { + "input": 4333, + "interpolation": "LINEAR", + "output": 4334 + }, + { + "input": 4335, + "interpolation": "LINEAR", + "output": 4336 + }, + { + "input": 4337, + "interpolation": "LINEAR", + "output": 4338 + }, + { + "input": 4339, + "interpolation": "LINEAR", + "output": 4340 + }, + { + "input": 4341, + "interpolation": "LINEAR", + "output": 4342 + }, + { + "input": 4343, + "interpolation": "LINEAR", + "output": 4344 + }, + { + "input": 4345, + "interpolation": "LINEAR", + "output": 4346 + }, + { + "input": 4347, + "interpolation": "LINEAR", + "output": 4348 + }, + { + "input": 4349, + "interpolation": "LINEAR", + "output": 4350 + }, + { + "input": 4351, + "interpolation": "LINEAR", + "output": 4352 + }, + { + "input": 4353, + "interpolation": "LINEAR", + "output": 4354 + }, + { + "input": 4355, + "interpolation": "LINEAR", + "output": 4356 + }, + { + "input": 4357, + "interpolation": "LINEAR", + "output": 4358 + }, + { + "input": 4359, + "interpolation": "LINEAR", + "output": 4360 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 64, + "path": "translation" + } + } + ], + "name": "Combat_Idle._Capek", + "samplers": [ + { + "input": 4361, + "interpolation": "LINEAR", + "output": 4362 + }, + { + "input": 4363, + "interpolation": "LINEAR", + "output": 4364 + }, + { + "input": 4365, + "interpolation": "LINEAR", + "output": 4366 + }, + { + "input": 4367, + "interpolation": "LINEAR", + "output": 4368 + }, + { + "input": 4369, + "interpolation": "LINEAR", + "output": 4370 + }, + { + "input": 4371, + "interpolation": "LINEAR", + "output": 4372 + }, + { + "input": 4373, + "interpolation": "LINEAR", + "output": 4374 + }, + { + "input": 4375, + "interpolation": "LINEAR", + "output": 4376 + }, + { + "input": 4377, + "interpolation": "LINEAR", + "output": 4378 + }, + { + "input": 4379, + "interpolation": "LINEAR", + "output": 4380 + }, + { + "input": 4381, + "interpolation": "LINEAR", + "output": 4382 + }, + { + "input": 4383, + "interpolation": "LINEAR", + "output": 4384 + }, + { + "input": 4385, + "interpolation": "LINEAR", + "output": 4386 + }, + { + "input": 4387, + "interpolation": "LINEAR", + "output": 4388 + }, + { + "input": 4389, + "interpolation": "LINEAR", + "output": 4390 + }, + { + "input": 4391, + "interpolation": "LINEAR", + "output": 4392 + }, + { + "input": 4393, + "interpolation": "LINEAR", + "output": 4394 + }, + { + "input": 4395, + "interpolation": "LINEAR", + "output": 4396 + }, + { + "input": 4397, + "interpolation": "LINEAR", + "output": 4398 + }, + { + "input": 4399, + "interpolation": "LINEAR", + "output": 4400 + }, + { + "input": 4401, + "interpolation": "LINEAR", + "output": 4402 + }, + { + "input": 4403, + "interpolation": "LINEAR", + "output": 4404 + }, + { + "input": 4405, + "interpolation": "LINEAR", + "output": 4406 + }, + { + "input": 4407, + "interpolation": "LINEAR", + "output": 4408 + }, + { + "input": 4409, + "interpolation": "LINEAR", + "output": 4410 + }, + { + "input": 4411, + "interpolation": "LINEAR", + "output": 4412 + }, + { + "input": 4413, + "interpolation": "LINEAR", + "output": 4414 + }, + { + "input": 4415, + "interpolation": "LINEAR", + "output": 4416 + }, + { + "input": 4417, + "interpolation": "LINEAR", + "output": 4418 + }, + { + "input": 4419, + "interpolation": "LINEAR", + "output": 4420 + }, + { + "input": 4421, + "interpolation": "LINEAR", + "output": 4422 + }, + { + "input": 4423, + "interpolation": "LINEAR", + "output": 4424 + }, + { + "input": 4425, + "interpolation": "LINEAR", + "output": 4426 + }, + { + "input": 4427, + "interpolation": "LINEAR", + "output": 4428 + }, + { + "input": 4429, + "interpolation": "LINEAR", + "output": 4430 + }, + { + "input": 4431, + "interpolation": "LINEAR", + "output": 4432 + }, + { + "input": 4433, + "interpolation": "LINEAR", + "output": 4434 + }, + { + "input": 4435, + "interpolation": "LINEAR", + "output": 4436 + }, + { + "input": 4437, + "interpolation": "LINEAR", + "output": 4438 + }, + { + "input": 4439, + "interpolation": "LINEAR", + "output": 4440 + }, + { + "input": 4441, + "interpolation": "LINEAR", + "output": 4442 + }, + { + "input": 4443, + "interpolation": "LINEAR", + "output": 4444 + }, + { + "input": 4445, + "interpolation": "LINEAR", + "output": 4446 + }, + { + "input": 4447, + "interpolation": "LINEAR", + "output": 4448 + }, + { + "input": 4449, + "interpolation": "LINEAR", + "output": 4450 + }, + { + "input": 4451, + "interpolation": "LINEAR", + "output": 4452 + }, + { + "input": 4453, + "interpolation": "LINEAR", + "output": 4454 + }, + { + "input": 4455, + "interpolation": "LINEAR", + "output": 4456 + }, + { + "input": 4457, + "interpolation": "LINEAR", + "output": 4458 + }, + { + "input": 4459, + "interpolation": "LINEAR", + "output": 4460 + }, + { + "input": 4461, + "interpolation": "LINEAR", + "output": 4462 + }, + { + "input": 4463, + "interpolation": "LINEAR", + "output": 4464 + }, + { + "input": 4465, + "interpolation": "LINEAR", + "output": 4466 + }, + { + "input": 4467, + "interpolation": "LINEAR", + "output": 4468 + }, + { + "input": 4469, + "interpolation": "LINEAR", + "output": 4470 + }, + { + "input": 4471, + "interpolation": "LINEAR", + "output": 4472 + }, + { + "input": 4473, + "interpolation": "LINEAR", + "output": 4474 + }, + { + "input": 4475, + "interpolation": "LINEAR", + "output": 4476 + }, + { + "input": 4477, + "interpolation": "LINEAR", + "output": 4478 + }, + { + "input": 4479, + "interpolation": "LINEAR", + "output": 4480 + }, + { + "input": 4481, + "interpolation": "LINEAR", + "output": 4482 + }, + { + "input": 4483, + "interpolation": "LINEAR", + "output": 4484 + }, + { + "input": 4485, + "interpolation": "LINEAR", + "output": 4486 + }, + { + "input": 4487, + "interpolation": "LINEAR", + "output": 4488 + }, + { + "input": 4489, + "interpolation": "LINEAR", + "output": 4490 + }, + { + "input": 4491, + "interpolation": "LINEAR", + "output": 4492 + }, + { + "input": 4493, + "interpolation": "LINEAR", + "output": 4494 + }, + { + "input": 4495, + "interpolation": "LINEAR", + "output": 4496 + }, + { + "input": 4497, + "interpolation": "LINEAR", + "output": 4498 + }, + { + "input": 4499, + "interpolation": "LINEAR", + "output": 4500 + }, + { + "input": 4501, + "interpolation": "LINEAR", + "output": 4502 + }, + { + "input": 4503, + "interpolation": "LINEAR", + "output": 4504 + }, + { + "input": 4505, + "interpolation": "LINEAR", + "output": 4506 + }, + { + "input": 4507, + "interpolation": "LINEAR", + "output": 4508 + }, + { + "input": 4509, + "interpolation": "LINEAR", + "output": 4510 + }, + { + "input": 4511, + "interpolation": "LINEAR", + "output": 4512 + }, + { + "input": 4513, + "interpolation": "LINEAR", + "output": 4514 + }, + { + "input": 4515, + "interpolation": "LINEAR", + "output": 4516 + }, + { + "input": 4517, + "interpolation": "LINEAR", + "output": 4518 + }, + { + "input": 4519, + "interpolation": "LINEAR", + "output": 4520 + }, + { + "input": 4521, + "interpolation": "LINEAR", + "output": 4522 + }, + { + "input": 4523, + "interpolation": "LINEAR", + "output": 4524 + }, + { + "input": 4525, + "interpolation": "LINEAR", + "output": 4526 + }, + { + "input": 4527, + "interpolation": "LINEAR", + "output": 4528 + }, + { + "input": 4529, + "interpolation": "LINEAR", + "output": 4530 + }, + { + "input": 4531, + "interpolation": "LINEAR", + "output": 4532 + }, + { + "input": 4533, + "interpolation": "LINEAR", + "output": 4534 + }, + { + "input": 4535, + "interpolation": "LINEAR", + "output": 4536 + }, + { + "input": 4537, + "interpolation": "LINEAR", + "output": 4538 + }, + { + "input": 4539, + "interpolation": "LINEAR", + "output": 4540 + }, + { + "input": 4541, + "interpolation": "LINEAR", + "output": 4542 + }, + { + "input": 4543, + "interpolation": "LINEAR", + "output": 4544 + }, + { + "input": 4545, + "interpolation": "LINEAR", + "output": 4546 + }, + { + "input": 4547, + "interpolation": "LINEAR", + "output": 4548 + }, + { + "input": 4549, + "interpolation": "LINEAR", + "output": 4550 + }, + { + "input": 4551, + "interpolation": "LINEAR", + "output": 4552 + }, + { + "input": 4553, + "interpolation": "LINEAR", + "output": 4554 + }, + { + "input": 4555, + "interpolation": "LINEAR", + "output": 4556 + }, + { + "input": 4557, + "interpolation": "LINEAR", + "output": 4558 + }, + { + "input": 4559, + "interpolation": "LINEAR", + "output": 4560 + }, + { + "input": 4561, + "interpolation": "LINEAR", + "output": 4562 + }, + { + "input": 4563, + "interpolation": "LINEAR", + "output": 4564 + }, + { + "input": 4565, + "interpolation": "LINEAR", + "output": 4566 + }, + { + "input": 4567, + "interpolation": "LINEAR", + "output": 4568 + }, + { + "input": 4569, + "interpolation": "LINEAR", + "output": 4570 + }, + { + "input": 4571, + "interpolation": "LINEAR", + "output": 4572 + }, + { + "input": 4573, + "interpolation": "LINEAR", + "output": 4574 + }, + { + "input": 4575, + "interpolation": "LINEAR", + "output": 4576 + }, + { + "input": 4577, + "interpolation": "LINEAR", + "output": 4578 + }, + { + "input": 4579, + "interpolation": "LINEAR", + "output": 4580 + }, + { + "input": 4581, + "interpolation": "LINEAR", + "output": 4582 + }, + { + "input": 4583, + "interpolation": "LINEAR", + "output": 4584 + }, + { + "input": 4585, + "interpolation": "LINEAR", + "output": 4586 + }, + { + "input": 4587, + "interpolation": "LINEAR", + "output": 4588 + }, + { + "input": 4589, + "interpolation": "LINEAR", + "output": 4590 + }, + { + "input": 4591, + "interpolation": "LINEAR", + "output": 4592 + }, + { + "input": 4593, + "interpolation": "LINEAR", + "output": 4594 + }, + { + "input": 4595, + "interpolation": "LINEAR", + "output": 4596 + }, + { + "input": 4597, + "interpolation": "LINEAR", + "output": 4598 + }, + { + "input": 4599, + "interpolation": "LINEAR", + "output": 4600 + }, + { + "input": 4601, + "interpolation": "LINEAR", + "output": 4602 + }, + { + "input": 4603, + "interpolation": "LINEAR", + "output": 4604 + }, + { + "input": 4605, + "interpolation": "LINEAR", + "output": 4606 + }, + { + "input": 4607, + "interpolation": "LINEAR", + "output": 4608 + }, + { + "input": 4609, + "interpolation": "LINEAR", + "output": 4610 + }, + { + "input": 4611, + "interpolation": "LINEAR", + "output": 4612 + }, + { + "input": 4613, + "interpolation": "LINEAR", + "output": 4614 + }, + { + "input": 4615, + "interpolation": "LINEAR", + "output": 4616 + }, + { + "input": 4617, + "interpolation": "LINEAR", + "output": 4618 + }, + { + "input": 4619, + "interpolation": "LINEAR", + "output": 4620 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 142, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 143, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 145, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 146, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 148, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 149, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_LeapAttack", + "samplers": [ + { + "input": 4621, + "interpolation": "LINEAR", + "output": 4622 + }, + { + "input": 4623, + "interpolation": "LINEAR", + "output": 4624 + }, + { + "input": 4625, + "interpolation": "LINEAR", + "output": 4626 + }, + { + "input": 4627, + "interpolation": "LINEAR", + "output": 4628 + }, + { + "input": 4629, + "interpolation": "LINEAR", + "output": 4630 + }, + { + "input": 4631, + "interpolation": "LINEAR", + "output": 4632 + }, + { + "input": 4633, + "interpolation": "LINEAR", + "output": 4634 + }, + { + "input": 4635, + "interpolation": "LINEAR", + "output": 4636 + }, + { + "input": 4637, + "interpolation": "LINEAR", + "output": 4638 + }, + { + "input": 4639, + "interpolation": "LINEAR", + "output": 4640 + }, + { + "input": 4641, + "interpolation": "LINEAR", + "output": 4642 + }, + { + "input": 4643, + "interpolation": "LINEAR", + "output": 4644 + }, + { + "input": 4645, + "interpolation": "LINEAR", + "output": 4646 + }, + { + "input": 4647, + "interpolation": "LINEAR", + "output": 4648 + }, + { + "input": 4649, + "interpolation": "LINEAR", + "output": 4650 + }, + { + "input": 4651, + "interpolation": "LINEAR", + "output": 4652 + }, + { + "input": 4653, + "interpolation": "LINEAR", + "output": 4654 + }, + { + "input": 4655, + "interpolation": "LINEAR", + "output": 4656 + }, + { + "input": 4657, + "interpolation": "LINEAR", + "output": 4658 + }, + { + "input": 4659, + "interpolation": "LINEAR", + "output": 4660 + }, + { + "input": 4661, + "interpolation": "LINEAR", + "output": 4662 + }, + { + "input": 4663, + "interpolation": "LINEAR", + "output": 4664 + }, + { + "input": 4665, + "interpolation": "LINEAR", + "output": 4666 + }, + { + "input": 4667, + "interpolation": "LINEAR", + "output": 4668 + }, + { + "input": 4669, + "interpolation": "LINEAR", + "output": 4670 + }, + { + "input": 4671, + "interpolation": "LINEAR", + "output": 4672 + }, + { + "input": 4673, + "interpolation": "LINEAR", + "output": 4674 + }, + { + "input": 4675, + "interpolation": "LINEAR", + "output": 4676 + }, + { + "input": 4677, + "interpolation": "LINEAR", + "output": 4678 + }, + { + "input": 4679, + "interpolation": "LINEAR", + "output": 4680 + }, + { + "input": 4681, + "interpolation": "LINEAR", + "output": 4682 + }, + { + "input": 4683, + "interpolation": "LINEAR", + "output": 4684 + }, + { + "input": 4685, + "interpolation": "LINEAR", + "output": 4686 + }, + { + "input": 4687, + "interpolation": "LINEAR", + "output": 4688 + }, + { + "input": 4689, + "interpolation": "LINEAR", + "output": 4690 + }, + { + "input": 4691, + "interpolation": "LINEAR", + "output": 4692 + }, + { + "input": 4693, + "interpolation": "LINEAR", + "output": 4694 + }, + { + "input": 4695, + "interpolation": "LINEAR", + "output": 4696 + }, + { + "input": 4697, + "interpolation": "LINEAR", + "output": 4698 + }, + { + "input": 4699, + "interpolation": "LINEAR", + "output": 4700 + }, + { + "input": 4701, + "interpolation": "LINEAR", + "output": 4702 + }, + { + "input": 4703, + "interpolation": "LINEAR", + "output": 4704 + }, + { + "input": 4705, + "interpolation": "LINEAR", + "output": 4706 + }, + { + "input": 4707, + "interpolation": "LINEAR", + "output": 4708 + }, + { + "input": 4709, + "interpolation": "LINEAR", + "output": 4710 + }, + { + "input": 4711, + "interpolation": "LINEAR", + "output": 4712 + }, + { + "input": 4713, + "interpolation": "LINEAR", + "output": 4714 + }, + { + "input": 4715, + "interpolation": "LINEAR", + "output": 4716 + }, + { + "input": 4717, + "interpolation": "LINEAR", + "output": 4718 + }, + { + "input": 4719, + "interpolation": "LINEAR", + "output": 4720 + }, + { + "input": 4721, + "interpolation": "LINEAR", + "output": 4722 + }, + { + "input": 4723, + "interpolation": "LINEAR", + "output": 4724 + }, + { + "input": 4725, + "interpolation": "LINEAR", + "output": 4726 + }, + { + "input": 4727, + "interpolation": "LINEAR", + "output": 4728 + }, + { + "input": 4729, + "interpolation": "LINEAR", + "output": 4730 + }, + { + "input": 4731, + "interpolation": "LINEAR", + "output": 4732 + }, + { + "input": 4733, + "interpolation": "LINEAR", + "output": 4734 + }, + { + "input": 4735, + "interpolation": "LINEAR", + "output": 4736 + }, + { + "input": 4737, + "interpolation": "LINEAR", + "output": 4738 + }, + { + "input": 4739, + "interpolation": "LINEAR", + "output": 4740 + }, + { + "input": 4741, + "interpolation": "LINEAR", + "output": 4742 + }, + { + "input": 4743, + "interpolation": "LINEAR", + "output": 4744 + }, + { + "input": 4745, + "interpolation": "LINEAR", + "output": 4746 + }, + { + "input": 4747, + "interpolation": "LINEAR", + "output": 4748 + }, + { + "input": 4749, + "interpolation": "LINEAR", + "output": 4750 + }, + { + "input": 4751, + "interpolation": "LINEAR", + "output": 4752 + }, + { + "input": 4753, + "interpolation": "LINEAR", + "output": 4754 + }, + { + "input": 4755, + "interpolation": "LINEAR", + "output": 4756 + }, + { + "input": 4757, + "interpolation": "LINEAR", + "output": 4758 + }, + { + "input": 4759, + "interpolation": "LINEAR", + "output": 4760 + }, + { + "input": 4761, + "interpolation": "LINEAR", + "output": 4762 + }, + { + "input": 4763, + "interpolation": "LINEAR", + "output": 4764 + }, + { + "input": 4765, + "interpolation": "LINEAR", + "output": 4766 + }, + { + "input": 4767, + "interpolation": "LINEAR", + "output": 4768 + }, + { + "input": 4769, + "interpolation": "LINEAR", + "output": 4770 + }, + { + "input": 4771, + "interpolation": "LINEAR", + "output": 4772 + }, + { + "input": 4773, + "interpolation": "LINEAR", + "output": 4774 + }, + { + "input": 4775, + "interpolation": "LINEAR", + "output": 4776 + }, + { + "input": 4777, + "interpolation": "LINEAR", + "output": 4778 + }, + { + "input": 4779, + "interpolation": "LINEAR", + "output": 4780 + }, + { + "input": 4781, + "interpolation": "LINEAR", + "output": 4782 + }, + { + "input": 4783, + "interpolation": "LINEAR", + "output": 4784 + }, + { + "input": 4785, + "interpolation": "LINEAR", + "output": 4786 + }, + { + "input": 4787, + "interpolation": "LINEAR", + "output": 4788 + }, + { + "input": 4789, + "interpolation": "LINEAR", + "output": 4790 + }, + { + "input": 4791, + "interpolation": "LINEAR", + "output": 4792 + }, + { + "input": 4793, + "interpolation": "LINEAR", + "output": 4794 + }, + { + "input": 4795, + "interpolation": "LINEAR", + "output": 4796 + }, + { + "input": 4797, + "interpolation": "LINEAR", + "output": 4798 + }, + { + "input": 4799, + "interpolation": "LINEAR", + "output": 4800 + }, + { + "input": 4801, + "interpolation": "LINEAR", + "output": 4802 + }, + { + "input": 4803, + "interpolation": "LINEAR", + "output": 4804 + }, + { + "input": 4805, + "interpolation": "LINEAR", + "output": 4806 + }, + { + "input": 4807, + "interpolation": "LINEAR", + "output": 4808 + }, + { + "input": 4809, + "interpolation": "LINEAR", + "output": 4810 + }, + { + "input": 4811, + "interpolation": "LINEAR", + "output": 4812 + }, + { + "input": 4813, + "interpolation": "LINEAR", + "output": 4814 + }, + { + "input": 4815, + "interpolation": "LINEAR", + "output": 4816 + }, + { + "input": 4817, + "interpolation": "LINEAR", + "output": 4818 + }, + { + "input": 4819, + "interpolation": "LINEAR", + "output": 4820 + }, + { + "input": 4821, + "interpolation": "LINEAR", + "output": 4822 + }, + { + "input": 4823, + "interpolation": "LINEAR", + "output": 4824 + }, + { + "input": 4825, + "interpolation": "LINEAR", + "output": 4826 + }, + { + "input": 4827, + "interpolation": "LINEAR", + "output": 4828 + }, + { + "input": 4829, + "interpolation": "LINEAR", + "output": 4830 + }, + { + "input": 4831, + "interpolation": "LINEAR", + "output": 4832 + }, + { + "input": 4833, + "interpolation": "LINEAR", + "output": 4834 + }, + { + "input": 4835, + "interpolation": "LINEAR", + "output": 4836 + }, + { + "input": 4837, + "interpolation": "LINEAR", + "output": 4838 + }, + { + "input": 4839, + "interpolation": "LINEAR", + "output": 4840 + }, + { + "input": 4841, + "interpolation": "LINEAR", + "output": 4842 + }, + { + "input": 4843, + "interpolation": "LINEAR", + "output": 4844 + }, + { + "input": 4845, + "interpolation": "LINEAR", + "output": 4846 + }, + { + "input": 4847, + "interpolation": "LINEAR", + "output": 4848 + }, + { + "input": 4849, + "interpolation": "LINEAR", + "output": 4850 + }, + { + "input": 4851, + "interpolation": "LINEAR", + "output": 4852 + }, + { + "input": 4853, + "interpolation": "LINEAR", + "output": 4854 + }, + { + "input": 4855, + "interpolation": "LINEAR", + "output": 4856 + }, + { + "input": 4857, + "interpolation": "LINEAR", + "output": 4858 + }, + { + "input": 4859, + "interpolation": "LINEAR", + "output": 4860 + }, + { + "input": 4861, + "interpolation": "LINEAR", + "output": 4862 + }, + { + "input": 4863, + "interpolation": "LINEAR", + "output": 4864 + }, + { + "input": 4865, + "interpolation": "LINEAR", + "output": 4866 + }, + { + "input": 4867, + "interpolation": "LINEAR", + "output": 4868 + }, + { + "input": 4869, + "interpolation": "LINEAR", + "output": 4870 + }, + { + "input": 4871, + "interpolation": "LINEAR", + "output": 4872 + }, + { + "input": 4873, + "interpolation": "LINEAR", + "output": 4874 + }, + { + "input": 4875, + "interpolation": "LINEAR", + "output": 4876 + }, + { + "input": 4877, + "interpolation": "LINEAR", + "output": 4878 + }, + { + "input": 4879, + "interpolation": "LINEAR", + "output": 4880 + }, + { + "input": 4881, + "interpolation": "LINEAR", + "output": 4882 + }, + { + "input": 4883, + "interpolation": "LINEAR", + "output": 4884 + }, + { + "input": 4885, + "interpolation": "LINEAR", + "output": 4886 + }, + { + "input": 4887, + "interpolation": "LINEAR", + "output": 4888 + }, + { + "input": 4889, + "interpolation": "LINEAR", + "output": 4890 + }, + { + "input": 4891, + "interpolation": "LINEAR", + "output": 4892 + }, + { + "input": 4893, + "interpolation": "LINEAR", + "output": 4894 + }, + { + "input": 4895, + "interpolation": "LINEAR", + "output": 4896 + }, + { + "input": 4897, + "interpolation": "LINEAR", + "output": 4898 + }, + { + "input": 4899, + "interpolation": "LINEAR", + "output": 4900 + }, + { + "input": 4901, + "interpolation": "LINEAR", + "output": 4902 + }, + { + "input": 4903, + "interpolation": "LINEAR", + "output": 4904 + }, + { + "input": 4905, + "interpolation": "LINEAR", + "output": 4906 + }, + { + "input": 4907, + "interpolation": "LINEAR", + "output": 4908 + }, + { + "input": 4909, + "interpolation": "LINEAR", + "output": 4910 + }, + { + "input": 4911, + "interpolation": "LINEAR", + "output": 4912 + }, + { + "input": 4913, + "interpolation": "LINEAR", + "output": 4914 + }, + { + "input": 4915, + "interpolation": "LINEAR", + "output": 4916 + }, + { + "input": 4917, + "interpolation": "LINEAR", + "output": 4918 + }, + { + "input": 4919, + "interpolation": "LINEAR", + "output": 4920 + }, + { + "input": 4921, + "interpolation": "LINEAR", + "output": 4922 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 12, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 18, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 36, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 39, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 40, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "Combat_Parry", + "samplers": [ + { + "input": 4923, + "interpolation": "LINEAR", + "output": 4924 + }, + { + "input": 4925, + "interpolation": "LINEAR", + "output": 4926 + }, + { + "input": 4927, + "interpolation": "LINEAR", + "output": 4928 + }, + { + "input": 4929, + "interpolation": "LINEAR", + "output": 4930 + }, + { + "input": 4931, + "interpolation": "LINEAR", + "output": 4932 + }, + { + "input": 4933, + "interpolation": "LINEAR", + "output": 4934 + }, + { + "input": 4935, + "interpolation": "LINEAR", + "output": 4936 + }, + { + "input": 4937, + "interpolation": "LINEAR", + "output": 4938 + }, + { + "input": 4939, + "interpolation": "LINEAR", + "output": 4940 + }, + { + "input": 4941, + "interpolation": "LINEAR", + "output": 4942 + }, + { + "input": 4943, + "interpolation": "LINEAR", + "output": 4944 + }, + { + "input": 4945, + "interpolation": "LINEAR", + "output": 4946 + }, + { + "input": 4947, + "interpolation": "LINEAR", + "output": 4948 + }, + { + "input": 4949, + "interpolation": "LINEAR", + "output": 4950 + }, + { + "input": 4951, + "interpolation": "LINEAR", + "output": 4952 + }, + { + "input": 4953, + "interpolation": "LINEAR", + "output": 4954 + }, + { + "input": 4955, + "interpolation": "LINEAR", + "output": 4956 + }, + { + "input": 4957, + "interpolation": "LINEAR", + "output": 4958 + }, + { + "input": 4959, + "interpolation": "LINEAR", + "output": 4960 + }, + { + "input": 4961, + "interpolation": "LINEAR", + "output": 4962 + }, + { + "input": 4963, + "interpolation": "LINEAR", + "output": 4964 + }, + { + "input": 4965, + "interpolation": "LINEAR", + "output": 4966 + }, + { + "input": 4967, + "interpolation": "LINEAR", + "output": 4968 + }, + { + "input": 4969, + "interpolation": "LINEAR", + "output": 4970 + }, + { + "input": 4971, + "interpolation": "LINEAR", + "output": 4972 + }, + { + "input": 4973, + "interpolation": "LINEAR", + "output": 4974 + }, + { + "input": 4975, + "interpolation": "LINEAR", + "output": 4976 + }, + { + "input": 4977, + "interpolation": "LINEAR", + "output": 4978 + }, + { + "input": 4979, + "interpolation": "LINEAR", + "output": 4980 + }, + { + "input": 4981, + "interpolation": "LINEAR", + "output": 4982 + }, + { + "input": 4983, + "interpolation": "LINEAR", + "output": 4984 + }, + { + "input": 4985, + "interpolation": "LINEAR", + "output": 4986 + }, + { + "input": 4987, + "interpolation": "LINEAR", + "output": 4988 + }, + { + "input": 4989, + "interpolation": "LINEAR", + "output": 4990 + }, + { + "input": 4991, + "interpolation": "LINEAR", + "output": 4992 + }, + { + "input": 4993, + "interpolation": "LINEAR", + "output": 4994 + }, + { + "input": 4995, + "interpolation": "LINEAR", + "output": 4996 + }, + { + "input": 4997, + "interpolation": "LINEAR", + "output": 4998 + }, + { + "input": 4999, + "interpolation": "LINEAR", + "output": 5000 + }, + { + "input": 5001, + "interpolation": "LINEAR", + "output": 5002 + }, + { + "input": 5003, + "interpolation": "LINEAR", + "output": 5004 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 128, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 146, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 149, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_PunisherImpact", + "samplers": [ + { + "input": 5005, + "interpolation": "LINEAR", + "output": 5006 + }, + { + "input": 5007, + "interpolation": "LINEAR", + "output": 5008 + }, + { + "input": 5009, + "interpolation": "LINEAR", + "output": 5010 + }, + { + "input": 5011, + "interpolation": "LINEAR", + "output": 5012 + }, + { + "input": 5013, + "interpolation": "LINEAR", + "output": 5014 + }, + { + "input": 5015, + "interpolation": "LINEAR", + "output": 5016 + }, + { + "input": 5017, + "interpolation": "LINEAR", + "output": 5018 + }, + { + "input": 5019, + "interpolation": "LINEAR", + "output": 5020 + }, + { + "input": 5021, + "interpolation": "LINEAR", + "output": 5022 + }, + { + "input": 5023, + "interpolation": "LINEAR", + "output": 5024 + }, + { + "input": 5025, + "interpolation": "LINEAR", + "output": 5026 + }, + { + "input": 5027, + "interpolation": "LINEAR", + "output": 5028 + }, + { + "input": 5029, + "interpolation": "LINEAR", + "output": 5030 + }, + { + "input": 5031, + "interpolation": "LINEAR", + "output": 5032 + }, + { + "input": 5033, + "interpolation": "LINEAR", + "output": 5034 + }, + { + "input": 5035, + "interpolation": "LINEAR", + "output": 5036 + }, + { + "input": 5037, + "interpolation": "LINEAR", + "output": 5038 + }, + { + "input": 5039, + "interpolation": "LINEAR", + "output": 5040 + }, + { + "input": 5041, + "interpolation": "LINEAR", + "output": 5042 + }, + { + "input": 5043, + "interpolation": "LINEAR", + "output": 5044 + }, + { + "input": 5045, + "interpolation": "LINEAR", + "output": 5046 + }, + { + "input": 5047, + "interpolation": "LINEAR", + "output": 5048 + }, + { + "input": 5049, + "interpolation": "LINEAR", + "output": 5050 + }, + { + "input": 5051, + "interpolation": "LINEAR", + "output": 5052 + }, + { + "input": 5053, + "interpolation": "LINEAR", + "output": 5054 + }, + { + "input": 5055, + "interpolation": "LINEAR", + "output": 5056 + }, + { + "input": 5057, + "interpolation": "LINEAR", + "output": 5058 + }, + { + "input": 5059, + "interpolation": "LINEAR", + "output": 5060 + }, + { + "input": 5061, + "interpolation": "LINEAR", + "output": 5062 + }, + { + "input": 5063, + "interpolation": "LINEAR", + "output": 5064 + }, + { + "input": 5065, + "interpolation": "LINEAR", + "output": 5066 + }, + { + "input": 5067, + "interpolation": "LINEAR", + "output": 5068 + }, + { + "input": 5069, + "interpolation": "LINEAR", + "output": 5070 + }, + { + "input": 5071, + "interpolation": "LINEAR", + "output": 5072 + }, + { + "input": 5073, + "interpolation": "LINEAR", + "output": 5074 + }, + { + "input": 5075, + "interpolation": "LINEAR", + "output": 5076 + }, + { + "input": 5077, + "interpolation": "LINEAR", + "output": 5078 + }, + { + "input": 5079, + "interpolation": "LINEAR", + "output": 5080 + }, + { + "input": 5081, + "interpolation": "LINEAR", + "output": 5082 + }, + { + "input": 5083, + "interpolation": "LINEAR", + "output": 5084 + }, + { + "input": 5085, + "interpolation": "LINEAR", + "output": 5086 + }, + { + "input": 5087, + "interpolation": "LINEAR", + "output": 5088 + }, + { + "input": 5089, + "interpolation": "LINEAR", + "output": 5090 + }, + { + "input": 5091, + "interpolation": "LINEAR", + "output": 5092 + }, + { + "input": 5093, + "interpolation": "LINEAR", + "output": 5094 + }, + { + "input": 5095, + "interpolation": "LINEAR", + "output": 5096 + }, + { + "input": 5097, + "interpolation": "LINEAR", + "output": 5098 + }, + { + "input": 5099, + "interpolation": "LINEAR", + "output": 5100 + }, + { + "input": 5101, + "interpolation": "LINEAR", + "output": 5102 + }, + { + "input": 5103, + "interpolation": "LINEAR", + "output": 5104 + }, + { + "input": 5105, + "interpolation": "LINEAR", + "output": 5106 + }, + { + "input": 5107, + "interpolation": "LINEAR", + "output": 5108 + }, + { + "input": 5109, + "interpolation": "LINEAR", + "output": 5110 + }, + { + "input": 5111, + "interpolation": "LINEAR", + "output": 5112 + }, + { + "input": 5113, + "interpolation": "LINEAR", + "output": 5114 + }, + { + "input": 5115, + "interpolation": "LINEAR", + "output": 5116 + }, + { + "input": 5117, + "interpolation": "LINEAR", + "output": 5118 + }, + { + "input": 5119, + "interpolation": "LINEAR", + "output": 5120 + }, + { + "input": 5121, + "interpolation": "LINEAR", + "output": 5122 + }, + { + "input": 5123, + "interpolation": "LINEAR", + "output": 5124 + }, + { + "input": 5125, + "interpolation": "LINEAR", + "output": 5126 + }, + { + "input": 5127, + "interpolation": "LINEAR", + "output": 5128 + }, + { + "input": 5129, + "interpolation": "LINEAR", + "output": 5130 + }, + { + "input": 5131, + "interpolation": "LINEAR", + "output": 5132 + }, + { + "input": 5133, + "interpolation": "LINEAR", + "output": 5134 + }, + { + "input": 5135, + "interpolation": "LINEAR", + "output": 5136 + }, + { + "input": 5137, + "interpolation": "LINEAR", + "output": 5138 + }, + { + "input": 5139, + "interpolation": "LINEAR", + "output": 5140 + }, + { + "input": 5141, + "interpolation": "LINEAR", + "output": 5142 + }, + { + "input": 5143, + "interpolation": "LINEAR", + "output": 5144 + }, + { + "input": 5145, + "interpolation": "LINEAR", + "output": 5146 + }, + { + "input": 5147, + "interpolation": "LINEAR", + "output": 5148 + }, + { + "input": 5149, + "interpolation": "LINEAR", + "output": 5150 + }, + { + "input": 5151, + "interpolation": "LINEAR", + "output": 5152 + }, + { + "input": 5153, + "interpolation": "LINEAR", + "output": 5154 + }, + { + "input": 5155, + "interpolation": "LINEAR", + "output": 5156 + }, + { + "input": 5157, + "interpolation": "LINEAR", + "output": 5158 + }, + { + "input": 5159, + "interpolation": "LINEAR", + "output": 5160 + }, + { + "input": 5161, + "interpolation": "LINEAR", + "output": 5162 + }, + { + "input": 5163, + "interpolation": "LINEAR", + "output": 5164 + }, + { + "input": 5165, + "interpolation": "LINEAR", + "output": 5166 + }, + { + "input": 5167, + "interpolation": "LINEAR", + "output": 5168 + }, + { + "input": 5169, + "interpolation": "LINEAR", + "output": 5170 + }, + { + "input": 5171, + "interpolation": "LINEAR", + "output": 5172 + }, + { + "input": 5173, + "interpolation": "LINEAR", + "output": 5174 + }, + { + "input": 5175, + "interpolation": "LINEAR", + "output": 5176 + }, + { + "input": 5177, + "interpolation": "LINEAR", + "output": 5178 + }, + { + "input": 5179, + "interpolation": "LINEAR", + "output": 5180 + }, + { + "input": 5181, + "interpolation": "LINEAR", + "output": 5182 + }, + { + "input": 5183, + "interpolation": "LINEAR", + "output": 5184 + }, + { + "input": 5185, + "interpolation": "LINEAR", + "output": 5186 + }, + { + "input": 5187, + "interpolation": "LINEAR", + "output": 5188 + }, + { + "input": 5189, + "interpolation": "LINEAR", + "output": 5190 + }, + { + "input": 5191, + "interpolation": "LINEAR", + "output": 5192 + }, + { + "input": 5193, + "interpolation": "LINEAR", + "output": 5194 + }, + { + "input": 5195, + "interpolation": "LINEAR", + "output": 5196 + }, + { + "input": 5197, + "interpolation": "LINEAR", + "output": 5198 + }, + { + "input": 5199, + "interpolation": "LINEAR", + "output": 5200 + }, + { + "input": 5201, + "interpolation": "LINEAR", + "output": 5202 + }, + { + "input": 5203, + "interpolation": "LINEAR", + "output": 5204 + }, + { + "input": 5205, + "interpolation": "LINEAR", + "output": 5206 + }, + { + "input": 5207, + "interpolation": "LINEAR", + "output": 5208 + }, + { + "input": 5209, + "interpolation": "LINEAR", + "output": 5210 + }, + { + "input": 5211, + "interpolation": "LINEAR", + "output": 5212 + }, + { + "input": 5213, + "interpolation": "LINEAR", + "output": 5214 + }, + { + "input": 5215, + "interpolation": "LINEAR", + "output": 5216 + }, + { + "input": 5217, + "interpolation": "LINEAR", + "output": 5218 + }, + { + "input": 5219, + "interpolation": "LINEAR", + "output": 5220 + }, + { + "input": 5221, + "interpolation": "LINEAR", + "output": 5222 + }, + { + "input": 5223, + "interpolation": "LINEAR", + "output": 5224 + }, + { + "input": 5225, + "interpolation": "LINEAR", + "output": 5226 + }, + { + "input": 5227, + "interpolation": "LINEAR", + "output": 5228 + }, + { + "input": 5229, + "interpolation": "LINEAR", + "output": 5230 + }, + { + "input": 5231, + "interpolation": "LINEAR", + "output": 5232 + }, + { + "input": 5233, + "interpolation": "LINEAR", + "output": 5234 + }, + { + "input": 5235, + "interpolation": "LINEAR", + "output": 5236 + }, + { + "input": 5237, + "interpolation": "LINEAR", + "output": 5238 + }, + { + "input": 5239, + "interpolation": "LINEAR", + "output": 5240 + }, + { + "input": 5241, + "interpolation": "LINEAR", + "output": 5242 + }, + { + "input": 5243, + "interpolation": "LINEAR", + "output": 5244 + }, + { + "input": 5245, + "interpolation": "LINEAR", + "output": 5246 + }, + { + "input": 5247, + "interpolation": "LINEAR", + "output": 5248 + }, + { + "input": 5249, + "interpolation": "LINEAR", + "output": 5250 + }, + { + "input": 5251, + "interpolation": "LINEAR", + "output": 5252 + }, + { + "input": 5253, + "interpolation": "LINEAR", + "output": 5254 + }, + { + "input": 5255, + "interpolation": "LINEAR", + "output": 5256 + }, + { + "input": 5257, + "interpolation": "LINEAR", + "output": 5258 + }, + { + "input": 5259, + "interpolation": "LINEAR", + "output": 5260 + }, + { + "input": 5261, + "interpolation": "LINEAR", + "output": 5262 + }, + { + "input": 5263, + "interpolation": "LINEAR", + "output": 5264 + }, + { + "input": 5265, + "interpolation": "LINEAR", + "output": 5266 + }, + { + "input": 5267, + "interpolation": "LINEAR", + "output": 5268 + }, + { + "input": 5269, + "interpolation": "LINEAR", + "output": 5270 + }, + { + "input": 5271, + "interpolation": "LINEAR", + "output": 5272 + }, + { + "input": 5273, + "interpolation": "LINEAR", + "output": 5274 + }, + { + "input": 5275, + "interpolation": "LINEAR", + "output": 5276 + }, + { + "input": 5277, + "interpolation": "LINEAR", + "output": 5278 + }, + { + "input": 5279, + "interpolation": "LINEAR", + "output": 5280 + }, + { + "input": 5281, + "interpolation": "LINEAR", + "output": 5282 + }, + { + "input": 5283, + "interpolation": "LINEAR", + "output": 5284 + }, + { + "input": 5285, + "interpolation": "LINEAR", + "output": 5286 + }, + { + "input": 5287, + "interpolation": "LINEAR", + "output": 5288 + }, + { + "input": 5289, + "interpolation": "LINEAR", + "output": 5290 + }, + { + "input": 5291, + "interpolation": "LINEAR", + "output": 5292 + }, + { + "input": 5293, + "interpolation": "LINEAR", + "output": 5294 + }, + { + "input": 5295, + "interpolation": "LINEAR", + "output": 5296 + }, + { + "input": 5297, + "interpolation": "LINEAR", + "output": 5298 + }, + { + "input": 5299, + "interpolation": "LINEAR", + "output": 5300 + }, + { + "input": 5301, + "interpolation": "LINEAR", + "output": 5302 + }, + { + "input": 5303, + "interpolation": "LINEAR", + "output": 5304 + }, + { + "input": 5305, + "interpolation": "LINEAR", + "output": 5306 + }, + { + "input": 5307, + "interpolation": "LINEAR", + "output": 5308 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_Run", + "samplers": [ + { + "input": 5309, + "interpolation": "LINEAR", + "output": 5310 + }, + { + "input": 5311, + "interpolation": "LINEAR", + "output": 5312 + }, + { + "input": 5313, + "interpolation": "LINEAR", + "output": 5314 + }, + { + "input": 5315, + "interpolation": "LINEAR", + "output": 5316 + }, + { + "input": 5317, + "interpolation": "LINEAR", + "output": 5318 + }, + { + "input": 5319, + "interpolation": "LINEAR", + "output": 5320 + }, + { + "input": 5321, + "interpolation": "LINEAR", + "output": 5322 + }, + { + "input": 5323, + "interpolation": "LINEAR", + "output": 5324 + }, + { + "input": 5325, + "interpolation": "LINEAR", + "output": 5326 + }, + { + "input": 5327, + "interpolation": "LINEAR", + "output": 5328 + }, + { + "input": 5329, + "interpolation": "LINEAR", + "output": 5330 + }, + { + "input": 5331, + "interpolation": "LINEAR", + "output": 5332 + }, + { + "input": 5333, + "interpolation": "LINEAR", + "output": 5334 + }, + { + "input": 5335, + "interpolation": "LINEAR", + "output": 5336 + }, + { + "input": 5337, + "interpolation": "LINEAR", + "output": 5338 + }, + { + "input": 5339, + "interpolation": "LINEAR", + "output": 5340 + }, + { + "input": 5341, + "interpolation": "LINEAR", + "output": 5342 + }, + { + "input": 5343, + "interpolation": "LINEAR", + "output": 5344 + }, + { + "input": 5345, + "interpolation": "LINEAR", + "output": 5346 + }, + { + "input": 5347, + "interpolation": "LINEAR", + "output": 5348 + }, + { + "input": 5349, + "interpolation": "LINEAR", + "output": 5350 + }, + { + "input": 5351, + "interpolation": "LINEAR", + "output": 5352 + }, + { + "input": 5353, + "interpolation": "LINEAR", + "output": 5354 + }, + { + "input": 5355, + "interpolation": "LINEAR", + "output": 5356 + }, + { + "input": 5357, + "interpolation": "LINEAR", + "output": 5358 + }, + { + "input": 5359, + "interpolation": "LINEAR", + "output": 5360 + }, + { + "input": 5361, + "interpolation": "LINEAR", + "output": 5362 + }, + { + "input": 5363, + "interpolation": "LINEAR", + "output": 5364 + }, + { + "input": 5365, + "interpolation": "LINEAR", + "output": 5366 + }, + { + "input": 5367, + "interpolation": "LINEAR", + "output": 5368 + }, + { + "input": 5369, + "interpolation": "LINEAR", + "output": 5370 + }, + { + "input": 5371, + "interpolation": "LINEAR", + "output": 5372 + }, + { + "input": 5373, + "interpolation": "LINEAR", + "output": 5374 + }, + { + "input": 5375, + "interpolation": "LINEAR", + "output": 5376 + }, + { + "input": 5377, + "interpolation": "LINEAR", + "output": 5378 + }, + { + "input": 5379, + "interpolation": "LINEAR", + "output": 5380 + }, + { + "input": 5381, + "interpolation": "LINEAR", + "output": 5382 + }, + { + "input": 5383, + "interpolation": "LINEAR", + "output": 5384 + }, + { + "input": 5385, + "interpolation": "LINEAR", + "output": 5386 + }, + { + "input": 5387, + "interpolation": "LINEAR", + "output": 5388 + }, + { + "input": 5389, + "interpolation": "LINEAR", + "output": 5390 + }, + { + "input": 5391, + "interpolation": "LINEAR", + "output": 5392 + }, + { + "input": 5393, + "interpolation": "LINEAR", + "output": 5394 + }, + { + "input": 5395, + "interpolation": "LINEAR", + "output": 5396 + }, + { + "input": 5397, + "interpolation": "LINEAR", + "output": 5398 + }, + { + "input": 5399, + "interpolation": "LINEAR", + "output": 5400 + }, + { + "input": 5401, + "interpolation": "LINEAR", + "output": 5402 + }, + { + "input": 5403, + "interpolation": "LINEAR", + "output": 5404 + }, + { + "input": 5405, + "interpolation": "LINEAR", + "output": 5406 + }, + { + "input": 5407, + "interpolation": "LINEAR", + "output": 5408 + }, + { + "input": 5409, + "interpolation": "LINEAR", + "output": 5410 + }, + { + "input": 5411, + "interpolation": "LINEAR", + "output": 5412 + }, + { + "input": 5413, + "interpolation": "LINEAR", + "output": 5414 + }, + { + "input": 5415, + "interpolation": "LINEAR", + "output": 5416 + }, + { + "input": 5417, + "interpolation": "LINEAR", + "output": 5418 + }, + { + "input": 5419, + "interpolation": "LINEAR", + "output": 5420 + }, + { + "input": 5421, + "interpolation": "LINEAR", + "output": 5422 + }, + { + "input": 5423, + "interpolation": "LINEAR", + "output": 5424 + }, + { + "input": 5425, + "interpolation": "LINEAR", + "output": 5426 + }, + { + "input": 5427, + "interpolation": "LINEAR", + "output": 5428 + }, + { + "input": 5429, + "interpolation": "LINEAR", + "output": 5430 + }, + { + "input": 5431, + "interpolation": "LINEAR", + "output": 5432 + }, + { + "input": 5433, + "interpolation": "LINEAR", + "output": 5434 + }, + { + "input": 5435, + "interpolation": "LINEAR", + "output": 5436 + }, + { + "input": 5437, + "interpolation": "LINEAR", + "output": 5438 + }, + { + "input": 5439, + "interpolation": "LINEAR", + "output": 5440 + }, + { + "input": 5441, + "interpolation": "LINEAR", + "output": 5442 + }, + { + "input": 5443, + "interpolation": "LINEAR", + "output": 5444 + }, + { + "input": 5445, + "interpolation": "LINEAR", + "output": 5446 + }, + { + "input": 5447, + "interpolation": "LINEAR", + "output": 5448 + }, + { + "input": 5449, + "interpolation": "LINEAR", + "output": 5450 + }, + { + "input": 5451, + "interpolation": "LINEAR", + "output": 5452 + }, + { + "input": 5453, + "interpolation": "LINEAR", + "output": 5454 + }, + { + "input": 5455, + "interpolation": "LINEAR", + "output": 5456 + }, + { + "input": 5457, + "interpolation": "LINEAR", + "output": 5458 + }, + { + "input": 5459, + "interpolation": "LINEAR", + "output": 5460 + }, + { + "input": 5461, + "interpolation": "LINEAR", + "output": 5462 + }, + { + "input": 5463, + "interpolation": "LINEAR", + "output": 5464 + }, + { + "input": 5465, + "interpolation": "LINEAR", + "output": 5466 + }, + { + "input": 5467, + "interpolation": "LINEAR", + "output": 5468 + }, + { + "input": 5469, + "interpolation": "LINEAR", + "output": 5470 + }, + { + "input": 5471, + "interpolation": "LINEAR", + "output": 5472 + }, + { + "input": 5473, + "interpolation": "LINEAR", + "output": 5474 + }, + { + "input": 5475, + "interpolation": "LINEAR", + "output": 5476 + }, + { + "input": 5477, + "interpolation": "LINEAR", + "output": 5478 + }, + { + "input": 5479, + "interpolation": "LINEAR", + "output": 5480 + }, + { + "input": 5481, + "interpolation": "LINEAR", + "output": 5482 + }, + { + "input": 5483, + "interpolation": "LINEAR", + "output": 5484 + }, + { + "input": 5485, + "interpolation": "LINEAR", + "output": 5486 + }, + { + "input": 5487, + "interpolation": "LINEAR", + "output": 5488 + }, + { + "input": 5489, + "interpolation": "LINEAR", + "output": 5490 + }, + { + "input": 5491, + "interpolation": "LINEAR", + "output": 5492 + }, + { + "input": 5493, + "interpolation": "LINEAR", + "output": 5494 + }, + { + "input": 5495, + "interpolation": "LINEAR", + "output": 5496 + }, + { + "input": 5497, + "interpolation": "LINEAR", + "output": 5498 + }, + { + "input": 5499, + "interpolation": "LINEAR", + "output": 5500 + }, + { + "input": 5501, + "interpolation": "LINEAR", + "output": 5502 + }, + { + "input": 5503, + "interpolation": "LINEAR", + "output": 5504 + }, + { + "input": 5505, + "interpolation": "LINEAR", + "output": 5506 + }, + { + "input": 5507, + "interpolation": "LINEAR", + "output": 5508 + }, + { + "input": 5509, + "interpolation": "LINEAR", + "output": 5510 + }, + { + "input": 5511, + "interpolation": "LINEAR", + "output": 5512 + }, + { + "input": 5513, + "interpolation": "LINEAR", + "output": 5514 + }, + { + "input": 5515, + "interpolation": "LINEAR", + "output": 5516 + }, + { + "input": 5517, + "interpolation": "LINEAR", + "output": 5518 + }, + { + "input": 5519, + "interpolation": "LINEAR", + "output": 5520 + }, + { + "input": 5521, + "interpolation": "LINEAR", + "output": 5522 + }, + { + "input": 5523, + "interpolation": "LINEAR", + "output": 5524 + }, + { + "input": 5525, + "interpolation": "LINEAR", + "output": 5526 + }, + { + "input": 5527, + "interpolation": "LINEAR", + "output": 5528 + }, + { + "input": 5529, + "interpolation": "LINEAR", + "output": 5530 + }, + { + "input": 5531, + "interpolation": "LINEAR", + "output": 5532 + }, + { + "input": 5533, + "interpolation": "LINEAR", + "output": 5534 + }, + { + "input": 5535, + "interpolation": "LINEAR", + "output": 5536 + }, + { + "input": 5537, + "interpolation": "LINEAR", + "output": 5538 + }, + { + "input": 5539, + "interpolation": "LINEAR", + "output": 5540 + }, + { + "input": 5541, + "interpolation": "LINEAR", + "output": 5542 + }, + { + "input": 5543, + "interpolation": "LINEAR", + "output": 5544 + }, + { + "input": 5545, + "interpolation": "LINEAR", + "output": 5546 + }, + { + "input": 5547, + "interpolation": "LINEAR", + "output": 5548 + }, + { + "input": 5549, + "interpolation": "LINEAR", + "output": 5550 + }, + { + "input": 5551, + "interpolation": "LINEAR", + "output": 5552 + }, + { + "input": 5553, + "interpolation": "LINEAR", + "output": 5554 + }, + { + "input": 5555, + "interpolation": "LINEAR", + "output": 5556 + }, + { + "input": 5557, + "interpolation": "LINEAR", + "output": 5558 + }, + { + "input": 5559, + "interpolation": "LINEAR", + "output": 5560 + }, + { + "input": 5561, + "interpolation": "LINEAR", + "output": 5562 + }, + { + "input": 5563, + "interpolation": "LINEAR", + "output": 5564 + }, + { + "input": 5565, + "interpolation": "LINEAR", + "output": 5566 + }, + { + "input": 5567, + "interpolation": "LINEAR", + "output": 5568 + }, + { + "input": 5569, + "interpolation": "LINEAR", + "output": 5570 + }, + { + "input": 5571, + "interpolation": "LINEAR", + "output": 5572 + }, + { + "input": 5573, + "interpolation": "LINEAR", + "output": 5574 + }, + { + "input": 5575, + "interpolation": "LINEAR", + "output": 5576 + }, + { + "input": 5577, + "interpolation": "LINEAR", + "output": 5578 + }, + { + "input": 5579, + "interpolation": "LINEAR", + "output": 5580 + }, + { + "input": 5581, + "interpolation": "LINEAR", + "output": 5582 + }, + { + "input": 5583, + "interpolation": "LINEAR", + "output": 5584 + }, + { + "input": 5585, + "interpolation": "LINEAR", + "output": 5586 + }, + { + "input": 5587, + "interpolation": "LINEAR", + "output": 5588 + }, + { + "input": 5589, + "interpolation": "LINEAR", + "output": 5590 + }, + { + "input": 5591, + "interpolation": "LINEAR", + "output": 5592 + }, + { + "input": 5593, + "interpolation": "LINEAR", + "output": 5594 + }, + { + "input": 5595, + "interpolation": "LINEAR", + "output": 5596 + }, + { + "input": 5597, + "interpolation": "LINEAR", + "output": 5598 + }, + { + "input": 5599, + "interpolation": "LINEAR", + "output": 5600 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_SwiftStrike", + "samplers": [ + { + "input": 5601, + "interpolation": "LINEAR", + "output": 5602 + }, + { + "input": 5603, + "interpolation": "LINEAR", + "output": 5604 + }, + { + "input": 5605, + "interpolation": "LINEAR", + "output": 5606 + }, + { + "input": 5607, + "interpolation": "LINEAR", + "output": 5608 + }, + { + "input": 5609, + "interpolation": "LINEAR", + "output": 5610 + }, + { + "input": 5611, + "interpolation": "LINEAR", + "output": 5612 + }, + { + "input": 5613, + "interpolation": "LINEAR", + "output": 5614 + }, + { + "input": 5615, + "interpolation": "LINEAR", + "output": 5616 + }, + { + "input": 5617, + "interpolation": "LINEAR", + "output": 5618 + }, + { + "input": 5619, + "interpolation": "LINEAR", + "output": 5620 + }, + { + "input": 5621, + "interpolation": "LINEAR", + "output": 5622 + }, + { + "input": 5623, + "interpolation": "LINEAR", + "output": 5624 + }, + { + "input": 5625, + "interpolation": "LINEAR", + "output": 5626 + }, + { + "input": 5627, + "interpolation": "LINEAR", + "output": 5628 + }, + { + "input": 5629, + "interpolation": "LINEAR", + "output": 5630 + }, + { + "input": 5631, + "interpolation": "LINEAR", + "output": 5632 + }, + { + "input": 5633, + "interpolation": "LINEAR", + "output": 5634 + }, + { + "input": 5635, + "interpolation": "LINEAR", + "output": 5636 + }, + { + "input": 5637, + "interpolation": "LINEAR", + "output": 5638 + }, + { + "input": 5639, + "interpolation": "LINEAR", + "output": 5640 + }, + { + "input": 5641, + "interpolation": "LINEAR", + "output": 5642 + }, + { + "input": 5643, + "interpolation": "LINEAR", + "output": 5644 + }, + { + "input": 5645, + "interpolation": "LINEAR", + "output": 5646 + }, + { + "input": 5647, + "interpolation": "LINEAR", + "output": 5648 + }, + { + "input": 5649, + "interpolation": "LINEAR", + "output": 5650 + }, + { + "input": 5651, + "interpolation": "LINEAR", + "output": 5652 + }, + { + "input": 5653, + "interpolation": "LINEAR", + "output": 5654 + }, + { + "input": 5655, + "interpolation": "LINEAR", + "output": 5656 + }, + { + "input": 5657, + "interpolation": "LINEAR", + "output": 5658 + }, + { + "input": 5659, + "interpolation": "LINEAR", + "output": 5660 + }, + { + "input": 5661, + "interpolation": "LINEAR", + "output": 5662 + }, + { + "input": 5663, + "interpolation": "LINEAR", + "output": 5664 + }, + { + "input": 5665, + "interpolation": "LINEAR", + "output": 5666 + }, + { + "input": 5667, + "interpolation": "LINEAR", + "output": 5668 + }, + { + "input": 5669, + "interpolation": "LINEAR", + "output": 5670 + }, + { + "input": 5671, + "interpolation": "LINEAR", + "output": 5672 + }, + { + "input": 5673, + "interpolation": "LINEAR", + "output": 5674 + }, + { + "input": 5675, + "interpolation": "LINEAR", + "output": 5676 + }, + { + "input": 5677, + "interpolation": "LINEAR", + "output": 5678 + }, + { + "input": 5679, + "interpolation": "LINEAR", + "output": 5680 + }, + { + "input": 5681, + "interpolation": "LINEAR", + "output": 5682 + }, + { + "input": 5683, + "interpolation": "LINEAR", + "output": 5684 + }, + { + "input": 5685, + "interpolation": "LINEAR", + "output": 5686 + }, + { + "input": 5687, + "interpolation": "LINEAR", + "output": 5688 + }, + { + "input": 5689, + "interpolation": "LINEAR", + "output": 5690 + }, + { + "input": 5691, + "interpolation": "LINEAR", + "output": 5692 + }, + { + "input": 5693, + "interpolation": "LINEAR", + "output": 5694 + }, + { + "input": 5695, + "interpolation": "LINEAR", + "output": 5696 + }, + { + "input": 5697, + "interpolation": "LINEAR", + "output": 5698 + }, + { + "input": 5699, + "interpolation": "LINEAR", + "output": 5700 + }, + { + "input": 5701, + "interpolation": "LINEAR", + "output": 5702 + }, + { + "input": 5703, + "interpolation": "LINEAR", + "output": 5704 + }, + { + "input": 5705, + "interpolation": "LINEAR", + "output": 5706 + }, + { + "input": 5707, + "interpolation": "LINEAR", + "output": 5708 + }, + { + "input": 5709, + "interpolation": "LINEAR", + "output": 5710 + }, + { + "input": 5711, + "interpolation": "LINEAR", + "output": 5712 + }, + { + "input": 5713, + "interpolation": "LINEAR", + "output": 5714 + }, + { + "input": 5715, + "interpolation": "LINEAR", + "output": 5716 + }, + { + "input": 5717, + "interpolation": "LINEAR", + "output": 5718 + }, + { + "input": 5719, + "interpolation": "LINEAR", + "output": 5720 + }, + { + "input": 5721, + "interpolation": "LINEAR", + "output": 5722 + }, + { + "input": 5723, + "interpolation": "LINEAR", + "output": 5724 + }, + { + "input": 5725, + "interpolation": "LINEAR", + "output": 5726 + }, + { + "input": 5727, + "interpolation": "LINEAR", + "output": 5728 + }, + { + "input": 5729, + "interpolation": "LINEAR", + "output": 5730 + }, + { + "input": 5731, + "interpolation": "LINEAR", + "output": 5732 + }, + { + "input": 5733, + "interpolation": "LINEAR", + "output": 5734 + }, + { + "input": 5735, + "interpolation": "LINEAR", + "output": 5736 + }, + { + "input": 5737, + "interpolation": "LINEAR", + "output": 5738 + }, + { + "input": 5739, + "interpolation": "LINEAR", + "output": 5740 + }, + { + "input": 5741, + "interpolation": "LINEAR", + "output": 5742 + }, + { + "input": 5743, + "interpolation": "LINEAR", + "output": 5744 + }, + { + "input": 5745, + "interpolation": "LINEAR", + "output": 5746 + }, + { + "input": 5747, + "interpolation": "LINEAR", + "output": 5748 + }, + { + "input": 5749, + "interpolation": "LINEAR", + "output": 5750 + }, + { + "input": 5751, + "interpolation": "LINEAR", + "output": 5752 + }, + { + "input": 5753, + "interpolation": "LINEAR", + "output": 5754 + }, + { + "input": 5755, + "interpolation": "LINEAR", + "output": 5756 + }, + { + "input": 5757, + "interpolation": "LINEAR", + "output": 5758 + }, + { + "input": 5759, + "interpolation": "LINEAR", + "output": 5760 + }, + { + "input": 5761, + "interpolation": "LINEAR", + "output": 5762 + }, + { + "input": 5763, + "interpolation": "LINEAR", + "output": 5764 + }, + { + "input": 5765, + "interpolation": "LINEAR", + "output": 5766 + }, + { + "input": 5767, + "interpolation": "LINEAR", + "output": 5768 + }, + { + "input": 5769, + "interpolation": "LINEAR", + "output": 5770 + }, + { + "input": 5771, + "interpolation": "LINEAR", + "output": 5772 + }, + { + "input": 5773, + "interpolation": "LINEAR", + "output": 5774 + }, + { + "input": 5775, + "interpolation": "LINEAR", + "output": 5776 + }, + { + "input": 5777, + "interpolation": "LINEAR", + "output": 5778 + }, + { + "input": 5779, + "interpolation": "LINEAR", + "output": 5780 + }, + { + "input": 5781, + "interpolation": "LINEAR", + "output": 5782 + }, + { + "input": 5783, + "interpolation": "LINEAR", + "output": 5784 + }, + { + "input": 5785, + "interpolation": "LINEAR", + "output": 5786 + }, + { + "input": 5787, + "interpolation": "LINEAR", + "output": 5788 + }, + { + "input": 5789, + "interpolation": "LINEAR", + "output": 5790 + }, + { + "input": 5791, + "interpolation": "LINEAR", + "output": 5792 + }, + { + "input": 5793, + "interpolation": "LINEAR", + "output": 5794 + }, + { + "input": 5795, + "interpolation": "LINEAR", + "output": 5796 + }, + { + "input": 5797, + "interpolation": "LINEAR", + "output": 5798 + }, + { + "input": 5799, + "interpolation": "LINEAR", + "output": 5800 + }, + { + "input": 5801, + "interpolation": "LINEAR", + "output": 5802 + }, + { + "input": 5803, + "interpolation": "LINEAR", + "output": 5804 + }, + { + "input": 5805, + "interpolation": "LINEAR", + "output": 5806 + }, + { + "input": 5807, + "interpolation": "LINEAR", + "output": 5808 + }, + { + "input": 5809, + "interpolation": "LINEAR", + "output": 5810 + }, + { + "input": 5811, + "interpolation": "LINEAR", + "output": 5812 + }, + { + "input": 5813, + "interpolation": "LINEAR", + "output": 5814 + }, + { + "input": 5815, + "interpolation": "LINEAR", + "output": 5816 + }, + { + "input": 5817, + "interpolation": "LINEAR", + "output": 5818 + }, + { + "input": 5819, + "interpolation": "LINEAR", + "output": 5820 + }, + { + "input": 5821, + "interpolation": "LINEAR", + "output": 5822 + }, + { + "input": 5823, + "interpolation": "LINEAR", + "output": 5824 + }, + { + "input": 5825, + "interpolation": "LINEAR", + "output": 5826 + }, + { + "input": 5827, + "interpolation": "LINEAR", + "output": 5828 + }, + { + "input": 5829, + "interpolation": "LINEAR", + "output": 5830 + }, + { + "input": 5831, + "interpolation": "LINEAR", + "output": 5832 + }, + { + "input": 5833, + "interpolation": "LINEAR", + "output": 5834 + }, + { + "input": 5835, + "interpolation": "LINEAR", + "output": 5836 + }, + { + "input": 5837, + "interpolation": "LINEAR", + "output": 5838 + }, + { + "input": 5839, + "interpolation": "LINEAR", + "output": 5840 + }, + { + "input": 5841, + "interpolation": "LINEAR", + "output": 5842 + }, + { + "input": 5843, + "interpolation": "LINEAR", + "output": 5844 + }, + { + "input": 5845, + "interpolation": "LINEAR", + "output": 5846 + }, + { + "input": 5847, + "interpolation": "LINEAR", + "output": 5848 + }, + { + "input": 5849, + "interpolation": "LINEAR", + "output": 5850 + }, + { + "input": 5851, + "interpolation": "LINEAR", + "output": 5852 + }, + { + "input": 5853, + "interpolation": "LINEAR", + "output": 5854 + }, + { + "input": 5855, + "interpolation": "LINEAR", + "output": 5856 + }, + { + "input": 5857, + "interpolation": "LINEAR", + "output": 5858 + }, + { + "input": 5859, + "interpolation": "LINEAR", + "output": 5860 + }, + { + "input": 5861, + "interpolation": "LINEAR", + "output": 5862 + }, + { + "input": 5863, + "interpolation": "LINEAR", + "output": 5864 + }, + { + "input": 5865, + "interpolation": "LINEAR", + "output": 5866 + }, + { + "input": 5867, + "interpolation": "LINEAR", + "output": 5868 + }, + { + "input": 5869, + "interpolation": "LINEAR", + "output": 5870 + }, + { + "input": 5871, + "interpolation": "LINEAR", + "output": 5872 + }, + { + "input": 5873, + "interpolation": "LINEAR", + "output": 5874 + }, + { + "input": 5875, + "interpolation": "LINEAR", + "output": 5876 + }, + { + "input": 5877, + "interpolation": "LINEAR", + "output": 5878 + }, + { + "input": 5879, + "interpolation": "LINEAR", + "output": 5880 + }, + { + "input": 5881, + "interpolation": "LINEAR", + "output": 5882 + }, + { + "input": 5883, + "interpolation": "LINEAR", + "output": 5884 + }, + { + "input": 5885, + "interpolation": "LINEAR", + "output": 5886 + }, + { + "input": 5887, + "interpolation": "LINEAR", + "output": 5888 + }, + { + "input": 5889, + "interpolation": "LINEAR", + "output": 5890 + }, + { + "input": 5891, + "interpolation": "LINEAR", + "output": 5892 + }, + { + "input": 5893, + "interpolation": "LINEAR", + "output": 5894 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Combat_SwordJudgement", + "samplers": [ + { + "input": 5895, + "interpolation": "LINEAR", + "output": 5896 + }, + { + "input": 5897, + "interpolation": "LINEAR", + "output": 5898 + }, + { + "input": 5899, + "interpolation": "LINEAR", + "output": 5900 + }, + { + "input": 5901, + "interpolation": "LINEAR", + "output": 5902 + }, + { + "input": 5903, + "interpolation": "LINEAR", + "output": 5904 + }, + { + "input": 5905, + "interpolation": "LINEAR", + "output": 5906 + }, + { + "input": 5907, + "interpolation": "LINEAR", + "output": 5908 + }, + { + "input": 5909, + "interpolation": "LINEAR", + "output": 5910 + }, + { + "input": 5911, + "interpolation": "LINEAR", + "output": 5912 + }, + { + "input": 5913, + "interpolation": "LINEAR", + "output": 5914 + }, + { + "input": 5915, + "interpolation": "LINEAR", + "output": 5916 + }, + { + "input": 5917, + "interpolation": "LINEAR", + "output": 5918 + }, + { + "input": 5919, + "interpolation": "LINEAR", + "output": 5920 + }, + { + "input": 5921, + "interpolation": "LINEAR", + "output": 5922 + }, + { + "input": 5923, + "interpolation": "LINEAR", + "output": 5924 + }, + { + "input": 5925, + "interpolation": "LINEAR", + "output": 5926 + }, + { + "input": 5927, + "interpolation": "LINEAR", + "output": 5928 + }, + { + "input": 5929, + "interpolation": "LINEAR", + "output": 5930 + }, + { + "input": 5931, + "interpolation": "LINEAR", + "output": 5932 + }, + { + "input": 5933, + "interpolation": "LINEAR", + "output": 5934 + }, + { + "input": 5935, + "interpolation": "LINEAR", + "output": 5936 + }, + { + "input": 5937, + "interpolation": "LINEAR", + "output": 5938 + }, + { + "input": 5939, + "interpolation": "LINEAR", + "output": 5940 + }, + { + "input": 5941, + "interpolation": "LINEAR", + "output": 5942 + }, + { + "input": 5943, + "interpolation": "LINEAR", + "output": 5944 + }, + { + "input": 5945, + "interpolation": "LINEAR", + "output": 5946 + }, + { + "input": 5947, + "interpolation": "LINEAR", + "output": 5948 + }, + { + "input": 5949, + "interpolation": "LINEAR", + "output": 5950 + }, + { + "input": 5951, + "interpolation": "LINEAR", + "output": 5952 + }, + { + "input": 5953, + "interpolation": "LINEAR", + "output": 5954 + }, + { + "input": 5955, + "interpolation": "LINEAR", + "output": 5956 + }, + { + "input": 5957, + "interpolation": "LINEAR", + "output": 5958 + }, + { + "input": 5959, + "interpolation": "LINEAR", + "output": 5960 + }, + { + "input": 5961, + "interpolation": "LINEAR", + "output": 5962 + }, + { + "input": 5963, + "interpolation": "LINEAR", + "output": 5964 + }, + { + "input": 5965, + "interpolation": "LINEAR", + "output": 5966 + }, + { + "input": 5967, + "interpolation": "LINEAR", + "output": 5968 + }, + { + "input": 5969, + "interpolation": "LINEAR", + "output": 5970 + }, + { + "input": 5971, + "interpolation": "LINEAR", + "output": 5972 + }, + { + "input": 5973, + "interpolation": "LINEAR", + "output": 5974 + }, + { + "input": 5975, + "interpolation": "LINEAR", + "output": 5976 + }, + { + "input": 5977, + "interpolation": "LINEAR", + "output": 5978 + }, + { + "input": 5979, + "interpolation": "LINEAR", + "output": 5980 + }, + { + "input": 5981, + "interpolation": "LINEAR", + "output": 5982 + }, + { + "input": 5983, + "interpolation": "LINEAR", + "output": 5984 + }, + { + "input": 5985, + "interpolation": "LINEAR", + "output": 5986 + }, + { + "input": 5987, + "interpolation": "LINEAR", + "output": 5988 + }, + { + "input": 5989, + "interpolation": "LINEAR", + "output": 5990 + }, + { + "input": 5991, + "interpolation": "LINEAR", + "output": 5992 + }, + { + "input": 5993, + "interpolation": "LINEAR", + "output": 5994 + }, + { + "input": 5995, + "interpolation": "LINEAR", + "output": 5996 + }, + { + "input": 5997, + "interpolation": "LINEAR", + "output": 5998 + }, + { + "input": 5999, + "interpolation": "LINEAR", + "output": 6000 + }, + { + "input": 6001, + "interpolation": "LINEAR", + "output": 6002 + }, + { + "input": 6003, + "interpolation": "LINEAR", + "output": 6004 + }, + { + "input": 6005, + "interpolation": "LINEAR", + "output": 6006 + }, + { + "input": 6007, + "interpolation": "LINEAR", + "output": 6008 + }, + { + "input": 6009, + "interpolation": "LINEAR", + "output": 6010 + }, + { + "input": 6011, + "interpolation": "LINEAR", + "output": 6012 + }, + { + "input": 6013, + "interpolation": "LINEAR", + "output": 6014 + }, + { + "input": 6015, + "interpolation": "LINEAR", + "output": 6016 + }, + { + "input": 6017, + "interpolation": "LINEAR", + "output": 6018 + }, + { + "input": 6019, + "interpolation": "LINEAR", + "output": 6020 + }, + { + "input": 6021, + "interpolation": "LINEAR", + "output": 6022 + }, + { + "input": 6023, + "interpolation": "LINEAR", + "output": 6024 + }, + { + "input": 6025, + "interpolation": "LINEAR", + "output": 6026 + }, + { + "input": 6027, + "interpolation": "LINEAR", + "output": 6028 + }, + { + "input": 6029, + "interpolation": "LINEAR", + "output": 6030 + }, + { + "input": 6031, + "interpolation": "LINEAR", + "output": 6032 + }, + { + "input": 6033, + "interpolation": "LINEAR", + "output": 6034 + }, + { + "input": 6035, + "interpolation": "LINEAR", + "output": 6036 + }, + { + "input": 6037, + "interpolation": "LINEAR", + "output": 6038 + }, + { + "input": 6039, + "interpolation": "LINEAR", + "output": 6040 + }, + { + "input": 6041, + "interpolation": "LINEAR", + "output": 6042 + }, + { + "input": 6043, + "interpolation": "LINEAR", + "output": 6044 + }, + { + "input": 6045, + "interpolation": "LINEAR", + "output": 6046 + }, + { + "input": 6047, + "interpolation": "LINEAR", + "output": 6048 + }, + { + "input": 6049, + "interpolation": "LINEAR", + "output": 6050 + }, + { + "input": 6051, + "interpolation": "LINEAR", + "output": 6052 + }, + { + "input": 6053, + "interpolation": "LINEAR", + "output": 6054 + }, + { + "input": 6055, + "interpolation": "LINEAR", + "output": 6056 + }, + { + "input": 6057, + "interpolation": "LINEAR", + "output": 6058 + }, + { + "input": 6059, + "interpolation": "LINEAR", + "output": 6060 + }, + { + "input": 6061, + "interpolation": "LINEAR", + "output": 6062 + }, + { + "input": 6063, + "interpolation": "LINEAR", + "output": 6064 + }, + { + "input": 6065, + "interpolation": "LINEAR", + "output": 6066 + }, + { + "input": 6067, + "interpolation": "LINEAR", + "output": 6068 + }, + { + "input": 6069, + "interpolation": "LINEAR", + "output": 6070 + }, + { + "input": 6071, + "interpolation": "LINEAR", + "output": 6072 + }, + { + "input": 6073, + "interpolation": "LINEAR", + "output": 6074 + }, + { + "input": 6075, + "interpolation": "LINEAR", + "output": 6076 + }, + { + "input": 6077, + "interpolation": "LINEAR", + "output": 6078 + }, + { + "input": 6079, + "interpolation": "LINEAR", + "output": 6080 + }, + { + "input": 6081, + "interpolation": "LINEAR", + "output": 6082 + }, + { + "input": 6083, + "interpolation": "LINEAR", + "output": 6084 + }, + { + "input": 6085, + "interpolation": "LINEAR", + "output": 6086 + }, + { + "input": 6087, + "interpolation": "LINEAR", + "output": 6088 + }, + { + "input": 6089, + "interpolation": "LINEAR", + "output": 6090 + }, + { + "input": 6091, + "interpolation": "LINEAR", + "output": 6092 + }, + { + "input": 6093, + "interpolation": "LINEAR", + "output": 6094 + }, + { + "input": 6095, + "interpolation": "LINEAR", + "output": 6096 + }, + { + "input": 6097, + "interpolation": "LINEAR", + "output": 6098 + }, + { + "input": 6099, + "interpolation": "LINEAR", + "output": 6100 + }, + { + "input": 6101, + "interpolation": "LINEAR", + "output": 6102 + }, + { + "input": 6103, + "interpolation": "LINEAR", + "output": 6104 + }, + { + "input": 6105, + "interpolation": "LINEAR", + "output": 6106 + }, + { + "input": 6107, + "interpolation": "LINEAR", + "output": 6108 + }, + { + "input": 6109, + "interpolation": "LINEAR", + "output": 6110 + }, + { + "input": 6111, + "interpolation": "LINEAR", + "output": 6112 + }, + { + "input": 6113, + "interpolation": "LINEAR", + "output": 6114 + }, + { + "input": 6115, + "interpolation": "LINEAR", + "output": 6116 + }, + { + "input": 6117, + "interpolation": "LINEAR", + "output": 6118 + }, + { + "input": 6119, + "interpolation": "LINEAR", + "output": 6120 + }, + { + "input": 6121, + "interpolation": "LINEAR", + "output": 6122 + }, + { + "input": 6123, + "interpolation": "LINEAR", + "output": 6124 + }, + { + "input": 6125, + "interpolation": "LINEAR", + "output": 6126 + }, + { + "input": 6127, + "interpolation": "LINEAR", + "output": 6128 + }, + { + "input": 6129, + "interpolation": "LINEAR", + "output": 6130 + }, + { + "input": 6131, + "interpolation": "LINEAR", + "output": 6132 + }, + { + "input": 6133, + "interpolation": "LINEAR", + "output": 6134 + }, + { + "input": 6135, + "interpolation": "LINEAR", + "output": 6136 + }, + { + "input": 6137, + "interpolation": "LINEAR", + "output": 6138 + }, + { + "input": 6139, + "interpolation": "LINEAR", + "output": 6140 + }, + { + "input": 6141, + "interpolation": "LINEAR", + "output": 6142 + }, + { + "input": 6143, + "interpolation": "LINEAR", + "output": 6144 + }, + { + "input": 6145, + "interpolation": "LINEAR", + "output": 6146 + }, + { + "input": 6147, + "interpolation": "LINEAR", + "output": 6148 + }, + { + "input": 6149, + "interpolation": "LINEAR", + "output": 6150 + }, + { + "input": 6151, + "interpolation": "LINEAR", + "output": 6152 + }, + { + "input": 6153, + "interpolation": "LINEAR", + "output": 6154 + }, + { + "input": 6155, + "interpolation": "LINEAR", + "output": 6156 + }, + { + "input": 6157, + "interpolation": "LINEAR", + "output": 6158 + }, + { + "input": 6159, + "interpolation": "LINEAR", + "output": 6160 + }, + { + "input": 6161, + "interpolation": "LINEAR", + "output": 6162 + }, + { + "input": 6163, + "interpolation": "LINEAR", + "output": 6164 + }, + { + "input": 6165, + "interpolation": "LINEAR", + "output": 6166 + }, + { + "input": 6167, + "interpolation": "LINEAR", + "output": 6168 + }, + { + "input": 6169, + "interpolation": "LINEAR", + "output": 6170 + }, + { + "input": 6171, + "interpolation": "LINEAR", + "output": 6172 + }, + { + "input": 6173, + "interpolation": "LINEAR", + "output": 6174 + }, + { + "input": 6175, + "interpolation": "LINEAR", + "output": 6176 + }, + { + "input": 6177, + "interpolation": "LINEAR", + "output": 6178 + }, + { + "input": 6179, + "interpolation": "LINEAR", + "output": 6180 + }, + { + "input": 6181, + "interpolation": "LINEAR", + "output": 6182 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 18, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 20, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 22, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 25, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "Dieded", + "samplers": [ + { + "input": 6183, + "interpolation": "LINEAR", + "output": 6184 + }, + { + "input": 6185, + "interpolation": "LINEAR", + "output": 6186 + }, + { + "input": 6187, + "interpolation": "LINEAR", + "output": 6188 + }, + { + "input": 6189, + "interpolation": "LINEAR", + "output": 6190 + }, + { + "input": 6191, + "interpolation": "LINEAR", + "output": 6192 + }, + { + "input": 6193, + "interpolation": "LINEAR", + "output": 6194 + }, + { + "input": 6195, + "interpolation": "LINEAR", + "output": 6196 + }, + { + "input": 6197, + "interpolation": "LINEAR", + "output": 6198 + }, + { + "input": 6199, + "interpolation": "LINEAR", + "output": 6200 + }, + { + "input": 6201, + "interpolation": "LINEAR", + "output": 6202 + }, + { + "input": 6203, + "interpolation": "LINEAR", + "output": 6204 + }, + { + "input": 6205, + "interpolation": "LINEAR", + "output": 6206 + }, + { + "input": 6207, + "interpolation": "LINEAR", + "output": 6208 + }, + { + "input": 6209, + "interpolation": "LINEAR", + "output": 6210 + }, + { + "input": 6211, + "interpolation": "LINEAR", + "output": 6212 + }, + { + "input": 6213, + "interpolation": "LINEAR", + "output": 6214 + }, + { + "input": 6215, + "interpolation": "LINEAR", + "output": 6216 + }, + { + "input": 6217, + "interpolation": "LINEAR", + "output": 6218 + }, + { + "input": 6219, + "interpolation": "LINEAR", + "output": 6220 + }, + { + "input": 6221, + "interpolation": "LINEAR", + "output": 6222 + }, + { + "input": 6223, + "interpolation": "LINEAR", + "output": 6224 + }, + { + "input": 6225, + "interpolation": "LINEAR", + "output": 6226 + }, + { + "input": 6227, + "interpolation": "LINEAR", + "output": 6228 + }, + { + "input": 6229, + "interpolation": "LINEAR", + "output": 6230 + }, + { + "input": 6231, + "interpolation": "LINEAR", + "output": 6232 + }, + { + "input": 6233, + "interpolation": "LINEAR", + "output": 6234 + }, + { + "input": 6235, + "interpolation": "LINEAR", + "output": 6236 + }, + { + "input": 6237, + "interpolation": "LINEAR", + "output": 6238 + }, + { + "input": 6239, + "interpolation": "LINEAR", + "output": 6240 + }, + { + "input": 6241, + "interpolation": "LINEAR", + "output": 6242 + }, + { + "input": 6243, + "interpolation": "LINEAR", + "output": 6244 + }, + { + "input": 6245, + "interpolation": "LINEAR", + "output": 6246 + }, + { + "input": 6247, + "interpolation": "LINEAR", + "output": 6248 + }, + { + "input": 6249, + "interpolation": "LINEAR", + "output": 6250 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Explore_Run3", + "samplers": [ + { + "input": 6251, + "interpolation": "LINEAR", + "output": 6252 + }, + { + "input": 6253, + "interpolation": "LINEAR", + "output": 6254 + }, + { + "input": 6255, + "interpolation": "LINEAR", + "output": 6256 + }, + { + "input": 6257, + "interpolation": "LINEAR", + "output": 6258 + }, + { + "input": 6259, + "interpolation": "LINEAR", + "output": 6260 + }, + { + "input": 6261, + "interpolation": "LINEAR", + "output": 6262 + }, + { + "input": 6263, + "interpolation": "LINEAR", + "output": 6264 + }, + { + "input": 6265, + "interpolation": "LINEAR", + "output": 6266 + }, + { + "input": 6267, + "interpolation": "LINEAR", + "output": 6268 + }, + { + "input": 6269, + "interpolation": "LINEAR", + "output": 6270 + }, + { + "input": 6271, + "interpolation": "LINEAR", + "output": 6272 + }, + { + "input": 6273, + "interpolation": "LINEAR", + "output": 6274 + }, + { + "input": 6275, + "interpolation": "LINEAR", + "output": 6276 + }, + { + "input": 6277, + "interpolation": "LINEAR", + "output": 6278 + }, + { + "input": 6279, + "interpolation": "LINEAR", + "output": 6280 + }, + { + "input": 6281, + "interpolation": "LINEAR", + "output": 6282 + }, + { + "input": 6283, + "interpolation": "LINEAR", + "output": 6284 + }, + { + "input": 6285, + "interpolation": "LINEAR", + "output": 6286 + }, + { + "input": 6287, + "interpolation": "LINEAR", + "output": 6288 + }, + { + "input": 6289, + "interpolation": "LINEAR", + "output": 6290 + }, + { + "input": 6291, + "interpolation": "LINEAR", + "output": 6292 + }, + { + "input": 6293, + "interpolation": "LINEAR", + "output": 6294 + }, + { + "input": 6295, + "interpolation": "LINEAR", + "output": 6296 + }, + { + "input": 6297, + "interpolation": "LINEAR", + "output": 6298 + }, + { + "input": 6299, + "interpolation": "LINEAR", + "output": 6300 + }, + { + "input": 6301, + "interpolation": "LINEAR", + "output": 6302 + }, + { + "input": 6303, + "interpolation": "LINEAR", + "output": 6304 + }, + { + "input": 6305, + "interpolation": "LINEAR", + "output": 6306 + }, + { + "input": 6307, + "interpolation": "LINEAR", + "output": 6308 + }, + { + "input": 6309, + "interpolation": "LINEAR", + "output": 6310 + }, + { + "input": 6311, + "interpolation": "LINEAR", + "output": 6312 + }, + { + "input": 6313, + "interpolation": "LINEAR", + "output": 6314 + }, + { + "input": 6315, + "interpolation": "LINEAR", + "output": 6316 + }, + { + "input": 6317, + "interpolation": "LINEAR", + "output": 6318 + }, + { + "input": 6319, + "interpolation": "LINEAR", + "output": 6320 + }, + { + "input": 6321, + "interpolation": "LINEAR", + "output": 6322 + }, + { + "input": 6323, + "interpolation": "LINEAR", + "output": 6324 + }, + { + "input": 6325, + "interpolation": "LINEAR", + "output": 6326 + }, + { + "input": 6327, + "interpolation": "LINEAR", + "output": 6328 + }, + { + "input": 6329, + "interpolation": "LINEAR", + "output": 6330 + }, + { + "input": 6331, + "interpolation": "LINEAR", + "output": 6332 + }, + { + "input": 6333, + "interpolation": "LINEAR", + "output": 6334 + }, + { + "input": 6335, + "interpolation": "LINEAR", + "output": 6336 + }, + { + "input": 6337, + "interpolation": "LINEAR", + "output": 6338 + }, + { + "input": 6339, + "interpolation": "LINEAR", + "output": 6340 + }, + { + "input": 6341, + "interpolation": "LINEAR", + "output": 6342 + }, + { + "input": 6343, + "interpolation": "LINEAR", + "output": 6344 + }, + { + "input": 6345, + "interpolation": "LINEAR", + "output": 6346 + }, + { + "input": 6347, + "interpolation": "LINEAR", + "output": 6348 + }, + { + "input": 6349, + "interpolation": "LINEAR", + "output": 6350 + }, + { + "input": 6351, + "interpolation": "LINEAR", + "output": 6352 + }, + { + "input": 6353, + "interpolation": "LINEAR", + "output": 6354 + }, + { + "input": 6355, + "interpolation": "LINEAR", + "output": 6356 + }, + { + "input": 6357, + "interpolation": "LINEAR", + "output": 6358 + }, + { + "input": 6359, + "interpolation": "LINEAR", + "output": 6360 + }, + { + "input": 6361, + "interpolation": "LINEAR", + "output": 6362 + }, + { + "input": 6363, + "interpolation": "LINEAR", + "output": 6364 + }, + { + "input": 6365, + "interpolation": "LINEAR", + "output": 6366 + }, + { + "input": 6367, + "interpolation": "LINEAR", + "output": 6368 + }, + { + "input": 6369, + "interpolation": "LINEAR", + "output": 6370 + }, + { + "input": 6371, + "interpolation": "LINEAR", + "output": 6372 + }, + { + "input": 6373, + "interpolation": "LINEAR", + "output": 6374 + }, + { + "input": 6375, + "interpolation": "LINEAR", + "output": 6376 + }, + { + "input": 6377, + "interpolation": "LINEAR", + "output": 6378 + }, + { + "input": 6379, + "interpolation": "LINEAR", + "output": 6380 + }, + { + "input": 6381, + "interpolation": "LINEAR", + "output": 6382 + }, + { + "input": 6383, + "interpolation": "LINEAR", + "output": 6384 + }, + { + "input": 6385, + "interpolation": "LINEAR", + "output": 6386 + }, + { + "input": 6387, + "interpolation": "LINEAR", + "output": 6388 + }, + { + "input": 6389, + "interpolation": "LINEAR", + "output": 6390 + }, + { + "input": 6391, + "interpolation": "LINEAR", + "output": 6392 + }, + { + "input": 6393, + "interpolation": "LINEAR", + "output": 6394 + }, + { + "input": 6395, + "interpolation": "LINEAR", + "output": 6396 + }, + { + "input": 6397, + "interpolation": "LINEAR", + "output": 6398 + }, + { + "input": 6399, + "interpolation": "LINEAR", + "output": 6400 + }, + { + "input": 6401, + "interpolation": "LINEAR", + "output": 6402 + }, + { + "input": 6403, + "interpolation": "LINEAR", + "output": 6404 + }, + { + "input": 6405, + "interpolation": "LINEAR", + "output": 6406 + }, + { + "input": 6407, + "interpolation": "LINEAR", + "output": 6408 + }, + { + "input": 6409, + "interpolation": "LINEAR", + "output": 6410 + }, + { + "input": 6411, + "interpolation": "LINEAR", + "output": 6412 + }, + { + "input": 6413, + "interpolation": "LINEAR", + "output": 6414 + }, + { + "input": 6415, + "interpolation": "LINEAR", + "output": 6416 + }, + { + "input": 6417, + "interpolation": "LINEAR", + "output": 6418 + }, + { + "input": 6419, + "interpolation": "LINEAR", + "output": 6420 + }, + { + "input": 6421, + "interpolation": "LINEAR", + "output": 6422 + }, + { + "input": 6423, + "interpolation": "LINEAR", + "output": 6424 + }, + { + "input": 6425, + "interpolation": "LINEAR", + "output": 6426 + }, + { + "input": 6427, + "interpolation": "LINEAR", + "output": 6428 + }, + { + "input": 6429, + "interpolation": "LINEAR", + "output": 6430 + }, + { + "input": 6431, + "interpolation": "LINEAR", + "output": 6432 + }, + { + "input": 6433, + "interpolation": "LINEAR", + "output": 6434 + }, + { + "input": 6435, + "interpolation": "LINEAR", + "output": 6436 + }, + { + "input": 6437, + "interpolation": "LINEAR", + "output": 6438 + }, + { + "input": 6439, + "interpolation": "LINEAR", + "output": 6440 + }, + { + "input": 6441, + "interpolation": "LINEAR", + "output": 6442 + }, + { + "input": 6443, + "interpolation": "LINEAR", + "output": 6444 + }, + { + "input": 6445, + "interpolation": "LINEAR", + "output": 6446 + }, + { + "input": 6447, + "interpolation": "LINEAR", + "output": 6448 + }, + { + "input": 6449, + "interpolation": "LINEAR", + "output": 6450 + }, + { + "input": 6451, + "interpolation": "LINEAR", + "output": 6452 + }, + { + "input": 6453, + "interpolation": "LINEAR", + "output": 6454 + }, + { + "input": 6455, + "interpolation": "LINEAR", + "output": 6456 + }, + { + "input": 6457, + "interpolation": "LINEAR", + "output": 6458 + }, + { + "input": 6459, + "interpolation": "LINEAR", + "output": 6460 + }, + { + "input": 6461, + "interpolation": "LINEAR", + "output": 6462 + }, + { + "input": 6463, + "interpolation": "LINEAR", + "output": 6464 + }, + { + "input": 6465, + "interpolation": "LINEAR", + "output": 6466 + }, + { + "input": 6467, + "interpolation": "LINEAR", + "output": 6468 + }, + { + "input": 6469, + "interpolation": "LINEAR", + "output": 6470 + }, + { + "input": 6471, + "interpolation": "LINEAR", + "output": 6472 + }, + { + "input": 6473, + "interpolation": "LINEAR", + "output": 6474 + }, + { + "input": 6475, + "interpolation": "LINEAR", + "output": 6476 + }, + { + "input": 6477, + "interpolation": "LINEAR", + "output": 6478 + }, + { + "input": 6479, + "interpolation": "LINEAR", + "output": 6480 + }, + { + "input": 6481, + "interpolation": "LINEAR", + "output": 6482 + }, + { + "input": 6483, + "interpolation": "LINEAR", + "output": 6484 + }, + { + "input": 6485, + "interpolation": "LINEAR", + "output": 6486 + }, + { + "input": 6487, + "interpolation": "LINEAR", + "output": 6488 + }, + { + "input": 6489, + "interpolation": "LINEAR", + "output": 6490 + }, + { + "input": 6491, + "interpolation": "LINEAR", + "output": 6492 + }, + { + "input": 6493, + "interpolation": "LINEAR", + "output": 6494 + }, + { + "input": 6495, + "interpolation": "LINEAR", + "output": 6496 + }, + { + "input": 6497, + "interpolation": "LINEAR", + "output": 6498 + }, + { + "input": 6499, + "interpolation": "LINEAR", + "output": 6500 + }, + { + "input": 6501, + "interpolation": "LINEAR", + "output": 6502 + }, + { + "input": 6503, + "interpolation": "LINEAR", + "output": 6504 + }, + { + "input": 6505, + "interpolation": "LINEAR", + "output": 6506 + }, + { + "input": 6507, + "interpolation": "LINEAR", + "output": 6508 + }, + { + "input": 6509, + "interpolation": "LINEAR", + "output": 6510 + }, + { + "input": 6511, + "interpolation": "LINEAR", + "output": 6512 + }, + { + "input": 6513, + "interpolation": "LINEAR", + "output": 6514 + }, + { + "input": 6515, + "interpolation": "LINEAR", + "output": 6516 + }, + { + "input": 6517, + "interpolation": "LINEAR", + "output": 6518 + }, + { + "input": 6519, + "interpolation": "LINEAR", + "output": 6520 + }, + { + "input": 6521, + "interpolation": "LINEAR", + "output": 6522 + }, + { + "input": 6523, + "interpolation": "LINEAR", + "output": 6524 + }, + { + "input": 6525, + "interpolation": "LINEAR", + "output": 6526 + }, + { + "input": 6527, + "interpolation": "LINEAR", + "output": 6528 + }, + { + "input": 6529, + "interpolation": "LINEAR", + "output": 6530 + }, + { + "input": 6531, + "interpolation": "LINEAR", + "output": 6532 + }, + { + "input": 6533, + "interpolation": "LINEAR", + "output": 6534 + }, + { + "input": 6535, + "interpolation": "LINEAR", + "output": 6536 + }, + { + "input": 6537, + "interpolation": "LINEAR", + "output": 6538 + }, + { + "input": 6539, + "interpolation": "LINEAR", + "output": 6540 + }, + { + "input": 6541, + "interpolation": "LINEAR", + "output": 6542 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Explore_Walk", + "samplers": [ + { + "input": 6543, + "interpolation": "LINEAR", + "output": 6544 + }, + { + "input": 6545, + "interpolation": "LINEAR", + "output": 6546 + }, + { + "input": 6547, + "interpolation": "LINEAR", + "output": 6548 + }, + { + "input": 6549, + "interpolation": "LINEAR", + "output": 6550 + }, + { + "input": 6551, + "interpolation": "LINEAR", + "output": 6552 + }, + { + "input": 6553, + "interpolation": "LINEAR", + "output": 6554 + }, + { + "input": 6555, + "interpolation": "LINEAR", + "output": 6556 + }, + { + "input": 6557, + "interpolation": "LINEAR", + "output": 6558 + }, + { + "input": 6559, + "interpolation": "LINEAR", + "output": 6560 + }, + { + "input": 6561, + "interpolation": "LINEAR", + "output": 6562 + }, + { + "input": 6563, + "interpolation": "LINEAR", + "output": 6564 + }, + { + "input": 6565, + "interpolation": "LINEAR", + "output": 6566 + }, + { + "input": 6567, + "interpolation": "LINEAR", + "output": 6568 + }, + { + "input": 6569, + "interpolation": "LINEAR", + "output": 6570 + }, + { + "input": 6571, + "interpolation": "LINEAR", + "output": 6572 + }, + { + "input": 6573, + "interpolation": "LINEAR", + "output": 6574 + }, + { + "input": 6575, + "interpolation": "LINEAR", + "output": 6576 + }, + { + "input": 6577, + "interpolation": "LINEAR", + "output": 6578 + }, + { + "input": 6579, + "interpolation": "LINEAR", + "output": 6580 + }, + { + "input": 6581, + "interpolation": "LINEAR", + "output": 6582 + }, + { + "input": 6583, + "interpolation": "LINEAR", + "output": 6584 + }, + { + "input": 6585, + "interpolation": "LINEAR", + "output": 6586 + }, + { + "input": 6587, + "interpolation": "LINEAR", + "output": 6588 + }, + { + "input": 6589, + "interpolation": "LINEAR", + "output": 6590 + }, + { + "input": 6591, + "interpolation": "LINEAR", + "output": 6592 + }, + { + "input": 6593, + "interpolation": "LINEAR", + "output": 6594 + }, + { + "input": 6595, + "interpolation": "LINEAR", + "output": 6596 + }, + { + "input": 6597, + "interpolation": "LINEAR", + "output": 6598 + }, + { + "input": 6599, + "interpolation": "LINEAR", + "output": 6600 + }, + { + "input": 6601, + "interpolation": "LINEAR", + "output": 6602 + }, + { + "input": 6603, + "interpolation": "LINEAR", + "output": 6604 + }, + { + "input": 6605, + "interpolation": "LINEAR", + "output": 6606 + }, + { + "input": 6607, + "interpolation": "LINEAR", + "output": 6608 + }, + { + "input": 6609, + "interpolation": "LINEAR", + "output": 6610 + }, + { + "input": 6611, + "interpolation": "LINEAR", + "output": 6612 + }, + { + "input": 6613, + "interpolation": "LINEAR", + "output": 6614 + }, + { + "input": 6615, + "interpolation": "LINEAR", + "output": 6616 + }, + { + "input": 6617, + "interpolation": "LINEAR", + "output": 6618 + }, + { + "input": 6619, + "interpolation": "LINEAR", + "output": 6620 + }, + { + "input": 6621, + "interpolation": "LINEAR", + "output": 6622 + }, + { + "input": 6623, + "interpolation": "LINEAR", + "output": 6624 + }, + { + "input": 6625, + "interpolation": "LINEAR", + "output": 6626 + }, + { + "input": 6627, + "interpolation": "LINEAR", + "output": 6628 + }, + { + "input": 6629, + "interpolation": "LINEAR", + "output": 6630 + }, + { + "input": 6631, + "interpolation": "LINEAR", + "output": 6632 + }, + { + "input": 6633, + "interpolation": "LINEAR", + "output": 6634 + }, + { + "input": 6635, + "interpolation": "LINEAR", + "output": 6636 + }, + { + "input": 6637, + "interpolation": "LINEAR", + "output": 6638 + }, + { + "input": 6639, + "interpolation": "LINEAR", + "output": 6640 + }, + { + "input": 6641, + "interpolation": "LINEAR", + "output": 6642 + }, + { + "input": 6643, + "interpolation": "LINEAR", + "output": 6644 + }, + { + "input": 6645, + "interpolation": "LINEAR", + "output": 6646 + }, + { + "input": 6647, + "interpolation": "LINEAR", + "output": 6648 + }, + { + "input": 6649, + "interpolation": "LINEAR", + "output": 6650 + }, + { + "input": 6651, + "interpolation": "LINEAR", + "output": 6652 + }, + { + "input": 6653, + "interpolation": "LINEAR", + "output": 6654 + }, + { + "input": 6655, + "interpolation": "LINEAR", + "output": 6656 + }, + { + "input": 6657, + "interpolation": "LINEAR", + "output": 6658 + }, + { + "input": 6659, + "interpolation": "LINEAR", + "output": 6660 + }, + { + "input": 6661, + "interpolation": "LINEAR", + "output": 6662 + }, + { + "input": 6663, + "interpolation": "LINEAR", + "output": 6664 + }, + { + "input": 6665, + "interpolation": "LINEAR", + "output": 6666 + }, + { + "input": 6667, + "interpolation": "LINEAR", + "output": 6668 + }, + { + "input": 6669, + "interpolation": "LINEAR", + "output": 6670 + }, + { + "input": 6671, + "interpolation": "LINEAR", + "output": 6672 + }, + { + "input": 6673, + "interpolation": "LINEAR", + "output": 6674 + }, + { + "input": 6675, + "interpolation": "LINEAR", + "output": 6676 + }, + { + "input": 6677, + "interpolation": "LINEAR", + "output": 6678 + }, + { + "input": 6679, + "interpolation": "LINEAR", + "output": 6680 + }, + { + "input": 6681, + "interpolation": "LINEAR", + "output": 6682 + }, + { + "input": 6683, + "interpolation": "LINEAR", + "output": 6684 + }, + { + "input": 6685, + "interpolation": "LINEAR", + "output": 6686 + }, + { + "input": 6687, + "interpolation": "LINEAR", + "output": 6688 + }, + { + "input": 6689, + "interpolation": "LINEAR", + "output": 6690 + }, + { + "input": 6691, + "interpolation": "LINEAR", + "output": 6692 + }, + { + "input": 6693, + "interpolation": "LINEAR", + "output": 6694 + }, + { + "input": 6695, + "interpolation": "LINEAR", + "output": 6696 + }, + { + "input": 6697, + "interpolation": "LINEAR", + "output": 6698 + }, + { + "input": 6699, + "interpolation": "LINEAR", + "output": 6700 + }, + { + "input": 6701, + "interpolation": "LINEAR", + "output": 6702 + }, + { + "input": 6703, + "interpolation": "LINEAR", + "output": 6704 + }, + { + "input": 6705, + "interpolation": "LINEAR", + "output": 6706 + }, + { + "input": 6707, + "interpolation": "LINEAR", + "output": 6708 + }, + { + "input": 6709, + "interpolation": "LINEAR", + "output": 6710 + }, + { + "input": 6711, + "interpolation": "LINEAR", + "output": 6712 + }, + { + "input": 6713, + "interpolation": "LINEAR", + "output": 6714 + }, + { + "input": 6715, + "interpolation": "LINEAR", + "output": 6716 + }, + { + "input": 6717, + "interpolation": "LINEAR", + "output": 6718 + }, + { + "input": 6719, + "interpolation": "LINEAR", + "output": 6720 + }, + { + "input": 6721, + "interpolation": "LINEAR", + "output": 6722 + }, + { + "input": 6723, + "interpolation": "LINEAR", + "output": 6724 + }, + { + "input": 6725, + "interpolation": "LINEAR", + "output": 6726 + }, + { + "input": 6727, + "interpolation": "LINEAR", + "output": 6728 + }, + { + "input": 6729, + "interpolation": "LINEAR", + "output": 6730 + }, + { + "input": 6731, + "interpolation": "LINEAR", + "output": 6732 + }, + { + "input": 6733, + "interpolation": "LINEAR", + "output": 6734 + }, + { + "input": 6735, + "interpolation": "LINEAR", + "output": 6736 + }, + { + "input": 6737, + "interpolation": "LINEAR", + "output": 6738 + }, + { + "input": 6739, + "interpolation": "LINEAR", + "output": 6740 + }, + { + "input": 6741, + "interpolation": "LINEAR", + "output": 6742 + }, + { + "input": 6743, + "interpolation": "LINEAR", + "output": 6744 + }, + { + "input": 6745, + "interpolation": "LINEAR", + "output": 6746 + }, + { + "input": 6747, + "interpolation": "LINEAR", + "output": 6748 + }, + { + "input": 6749, + "interpolation": "LINEAR", + "output": 6750 + }, + { + "input": 6751, + "interpolation": "LINEAR", + "output": 6752 + }, + { + "input": 6753, + "interpolation": "LINEAR", + "output": 6754 + }, + { + "input": 6755, + "interpolation": "LINEAR", + "output": 6756 + }, + { + "input": 6757, + "interpolation": "LINEAR", + "output": 6758 + }, + { + "input": 6759, + "interpolation": "LINEAR", + "output": 6760 + }, + { + "input": 6761, + "interpolation": "LINEAR", + "output": 6762 + }, + { + "input": 6763, + "interpolation": "LINEAR", + "output": 6764 + }, + { + "input": 6765, + "interpolation": "LINEAR", + "output": 6766 + }, + { + "input": 6767, + "interpolation": "LINEAR", + "output": 6768 + }, + { + "input": 6769, + "interpolation": "LINEAR", + "output": 6770 + }, + { + "input": 6771, + "interpolation": "LINEAR", + "output": 6772 + }, + { + "input": 6773, + "interpolation": "LINEAR", + "output": 6774 + }, + { + "input": 6775, + "interpolation": "LINEAR", + "output": 6776 + }, + { + "input": 6777, + "interpolation": "LINEAR", + "output": 6778 + }, + { + "input": 6779, + "interpolation": "LINEAR", + "output": 6780 + }, + { + "input": 6781, + "interpolation": "LINEAR", + "output": 6782 + }, + { + "input": 6783, + "interpolation": "LINEAR", + "output": 6784 + }, + { + "input": 6785, + "interpolation": "LINEAR", + "output": 6786 + }, + { + "input": 6787, + "interpolation": "LINEAR", + "output": 6788 + }, + { + "input": 6789, + "interpolation": "LINEAR", + "output": 6790 + }, + { + "input": 6791, + "interpolation": "LINEAR", + "output": 6792 + }, + { + "input": 6793, + "interpolation": "LINEAR", + "output": 6794 + }, + { + "input": 6795, + "interpolation": "LINEAR", + "output": 6796 + }, + { + "input": 6797, + "interpolation": "LINEAR", + "output": 6798 + }, + { + "input": 6799, + "interpolation": "LINEAR", + "output": 6800 + }, + { + "input": 6801, + "interpolation": "LINEAR", + "output": 6802 + }, + { + "input": 6803, + "interpolation": "LINEAR", + "output": 6804 + }, + { + "input": 6805, + "interpolation": "LINEAR", + "output": 6806 + }, + { + "input": 6807, + "interpolation": "LINEAR", + "output": 6808 + }, + { + "input": 6809, + "interpolation": "LINEAR", + "output": 6810 + }, + { + "input": 6811, + "interpolation": "LINEAR", + "output": 6812 + }, + { + "input": 6813, + "interpolation": "LINEAR", + "output": 6814 + }, + { + "input": 6815, + "interpolation": "LINEAR", + "output": 6816 + }, + { + "input": 6817, + "interpolation": "LINEAR", + "output": 6818 + }, + { + "input": 6819, + "interpolation": "LINEAR", + "output": 6820 + }, + { + "input": 6821, + "interpolation": "LINEAR", + "output": 6822 + }, + { + "input": 6823, + "interpolation": "LINEAR", + "output": 6824 + }, + { + "input": 6825, + "interpolation": "LINEAR", + "output": 6826 + }, + { + "input": 6827, + "interpolation": "LINEAR", + "output": 6828 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 64, + "path": "translation" + } + } + ], + "name": "Fishing_Reeling", + "samplers": [ + { + "input": 6829, + "interpolation": "LINEAR", + "output": 6830 + }, + { + "input": 6831, + "interpolation": "LINEAR", + "output": 6832 + }, + { + "input": 6833, + "interpolation": "LINEAR", + "output": 6834 + }, + { + "input": 6835, + "interpolation": "LINEAR", + "output": 6836 + }, + { + "input": 6837, + "interpolation": "LINEAR", + "output": 6838 + }, + { + "input": 6839, + "interpolation": "LINEAR", + "output": 6840 + }, + { + "input": 6841, + "interpolation": "LINEAR", + "output": 6842 + }, + { + "input": 6843, + "interpolation": "LINEAR", + "output": 6844 + }, + { + "input": 6845, + "interpolation": "LINEAR", + "output": 6846 + }, + { + "input": 6847, + "interpolation": "LINEAR", + "output": 6848 + }, + { + "input": 6849, + "interpolation": "LINEAR", + "output": 6850 + }, + { + "input": 6851, + "interpolation": "LINEAR", + "output": 6852 + }, + { + "input": 6853, + "interpolation": "LINEAR", + "output": 6854 + }, + { + "input": 6855, + "interpolation": "LINEAR", + "output": 6856 + }, + { + "input": 6857, + "interpolation": "LINEAR", + "output": 6858 + }, + { + "input": 6859, + "interpolation": "LINEAR", + "output": 6860 + }, + { + "input": 6861, + "interpolation": "LINEAR", + "output": 6862 + }, + { + "input": 6863, + "interpolation": "LINEAR", + "output": 6864 + }, + { + "input": 6865, + "interpolation": "LINEAR", + "output": 6866 + }, + { + "input": 6867, + "interpolation": "LINEAR", + "output": 6868 + }, + { + "input": 6869, + "interpolation": "LINEAR", + "output": 6870 + }, + { + "input": 6871, + "interpolation": "LINEAR", + "output": 6872 + }, + { + "input": 6873, + "interpolation": "LINEAR", + "output": 6874 + }, + { + "input": 6875, + "interpolation": "LINEAR", + "output": 6876 + }, + { + "input": 6877, + "interpolation": "LINEAR", + "output": 6878 + }, + { + "input": 6879, + "interpolation": "LINEAR", + "output": 6880 + }, + { + "input": 6881, + "interpolation": "LINEAR", + "output": 6882 + }, + { + "input": 6883, + "interpolation": "LINEAR", + "output": 6884 + }, + { + "input": 6885, + "interpolation": "LINEAR", + "output": 6886 + }, + { + "input": 6887, + "interpolation": "LINEAR", + "output": 6888 + }, + { + "input": 6889, + "interpolation": "LINEAR", + "output": 6890 + }, + { + "input": 6891, + "interpolation": "LINEAR", + "output": 6892 + }, + { + "input": 6893, + "interpolation": "LINEAR", + "output": 6894 + }, + { + "input": 6895, + "interpolation": "LINEAR", + "output": 6896 + }, + { + "input": 6897, + "interpolation": "LINEAR", + "output": 6898 + }, + { + "input": 6899, + "interpolation": "LINEAR", + "output": 6900 + }, + { + "input": 6901, + "interpolation": "LINEAR", + "output": 6902 + }, + { + "input": 6903, + "interpolation": "LINEAR", + "output": 6904 + }, + { + "input": 6905, + "interpolation": "LINEAR", + "output": 6906 + }, + { + "input": 6907, + "interpolation": "LINEAR", + "output": 6908 + }, + { + "input": 6909, + "interpolation": "LINEAR", + "output": 6910 + }, + { + "input": 6911, + "interpolation": "LINEAR", + "output": 6912 + }, + { + "input": 6913, + "interpolation": "LINEAR", + "output": 6914 + }, + { + "input": 6915, + "interpolation": "LINEAR", + "output": 6916 + }, + { + "input": 6917, + "interpolation": "LINEAR", + "output": 6918 + }, + { + "input": 6919, + "interpolation": "LINEAR", + "output": 6920 + }, + { + "input": 6921, + "interpolation": "LINEAR", + "output": 6922 + }, + { + "input": 6923, + "interpolation": "LINEAR", + "output": 6924 + }, + { + "input": 6925, + "interpolation": "LINEAR", + "output": 6926 + }, + { + "input": 6927, + "interpolation": "LINEAR", + "output": 6928 + }, + { + "input": 6929, + "interpolation": "LINEAR", + "output": 6930 + }, + { + "input": 6931, + "interpolation": "LINEAR", + "output": 6932 + }, + { + "input": 6933, + "interpolation": "LINEAR", + "output": 6934 + }, + { + "input": 6935, + "interpolation": "LINEAR", + "output": 6936 + }, + { + "input": 6937, + "interpolation": "LINEAR", + "output": 6938 + }, + { + "input": 6939, + "interpolation": "LINEAR", + "output": 6940 + }, + { + "input": 6941, + "interpolation": "LINEAR", + "output": 6942 + }, + { + "input": 6943, + "interpolation": "LINEAR", + "output": 6944 + }, + { + "input": 6945, + "interpolation": "LINEAR", + "output": 6946 + }, + { + "input": 6947, + "interpolation": "LINEAR", + "output": 6948 + }, + { + "input": 6949, + "interpolation": "LINEAR", + "output": 6950 + }, + { + "input": 6951, + "interpolation": "LINEAR", + "output": 6952 + }, + { + "input": 6953, + "interpolation": "LINEAR", + "output": 6954 + }, + { + "input": 6955, + "interpolation": "LINEAR", + "output": 6956 + }, + { + "input": 6957, + "interpolation": "LINEAR", + "output": 6958 + }, + { + "input": 6959, + "interpolation": "LINEAR", + "output": 6960 + }, + { + "input": 6961, + "interpolation": "LINEAR", + "output": 6962 + }, + { + "input": 6963, + "interpolation": "LINEAR", + "output": 6964 + }, + { + "input": 6965, + "interpolation": "LINEAR", + "output": 6966 + }, + { + "input": 6967, + "interpolation": "LINEAR", + "output": 6968 + }, + { + "input": 6969, + "interpolation": "LINEAR", + "output": 6970 + }, + { + "input": 6971, + "interpolation": "LINEAR", + "output": 6972 + }, + { + "input": 6973, + "interpolation": "LINEAR", + "output": 6974 + }, + { + "input": 6975, + "interpolation": "LINEAR", + "output": 6976 + }, + { + "input": 6977, + "interpolation": "LINEAR", + "output": 6978 + }, + { + "input": 6979, + "interpolation": "LINEAR", + "output": 6980 + }, + { + "input": 6981, + "interpolation": "LINEAR", + "output": 6982 + }, + { + "input": 6983, + "interpolation": "LINEAR", + "output": 6984 + }, + { + "input": 6985, + "interpolation": "LINEAR", + "output": 6986 + }, + { + "input": 6987, + "interpolation": "LINEAR", + "output": 6988 + }, + { + "input": 6989, + "interpolation": "LINEAR", + "output": 6990 + }, + { + "input": 6991, + "interpolation": "LINEAR", + "output": 6992 + }, + { + "input": 6993, + "interpolation": "LINEAR", + "output": 6994 + }, + { + "input": 6995, + "interpolation": "LINEAR", + "output": 6996 + }, + { + "input": 6997, + "interpolation": "LINEAR", + "output": 6998 + }, + { + "input": 6999, + "interpolation": "LINEAR", + "output": 7000 + }, + { + "input": 7001, + "interpolation": "LINEAR", + "output": 7002 + }, + { + "input": 7003, + "interpolation": "LINEAR", + "output": 7004 + }, + { + "input": 7005, + "interpolation": "LINEAR", + "output": 7006 + }, + { + "input": 7007, + "interpolation": "LINEAR", + "output": 7008 + }, + { + "input": 7009, + "interpolation": "LINEAR", + "output": 7010 + }, + { + "input": 7011, + "interpolation": "LINEAR", + "output": 7012 + }, + { + "input": 7013, + "interpolation": "LINEAR", + "output": 7014 + }, + { + "input": 7015, + "interpolation": "LINEAR", + "output": 7016 + }, + { + "input": 7017, + "interpolation": "LINEAR", + "output": 7018 + }, + { + "input": 7019, + "interpolation": "LINEAR", + "output": 7020 + }, + { + "input": 7021, + "interpolation": "LINEAR", + "output": 7022 + }, + { + "input": 7023, + "interpolation": "LINEAR", + "output": 7024 + }, + { + "input": 7025, + "interpolation": "LINEAR", + "output": 7026 + }, + { + "input": 7027, + "interpolation": "LINEAR", + "output": 7028 + }, + { + "input": 7029, + "interpolation": "LINEAR", + "output": 7030 + }, + { + "input": 7031, + "interpolation": "LINEAR", + "output": 7032 + }, + { + "input": 7033, + "interpolation": "LINEAR", + "output": 7034 + }, + { + "input": 7035, + "interpolation": "LINEAR", + "output": 7036 + }, + { + "input": 7037, + "interpolation": "LINEAR", + "output": 7038 + }, + { + "input": 7039, + "interpolation": "LINEAR", + "output": 7040 + }, + { + "input": 7041, + "interpolation": "LINEAR", + "output": 7042 + }, + { + "input": 7043, + "interpolation": "LINEAR", + "output": 7044 + }, + { + "input": 7045, + "interpolation": "LINEAR", + "output": 7046 + }, + { + "input": 7047, + "interpolation": "LINEAR", + "output": 7048 + }, + { + "input": 7049, + "interpolation": "LINEAR", + "output": 7050 + }, + { + "input": 7051, + "interpolation": "LINEAR", + "output": 7052 + }, + { + "input": 7053, + "interpolation": "LINEAR", + "output": 7054 + }, + { + "input": 7055, + "interpolation": "LINEAR", + "output": 7056 + }, + { + "input": 7057, + "interpolation": "LINEAR", + "output": 7058 + }, + { + "input": 7059, + "interpolation": "LINEAR", + "output": 7060 + }, + { + "input": 7061, + "interpolation": "LINEAR", + "output": 7062 + }, + { + "input": 7063, + "interpolation": "LINEAR", + "output": 7064 + }, + { + "input": 7065, + "interpolation": "LINEAR", + "output": 7066 + }, + { + "input": 7067, + "interpolation": "LINEAR", + "output": 7068 + }, + { + "input": 7069, + "interpolation": "LINEAR", + "output": 7070 + }, + { + "input": 7071, + "interpolation": "LINEAR", + "output": 7072 + }, + { + "input": 7073, + "interpolation": "LINEAR", + "output": 7074 + }, + { + "input": 7075, + "interpolation": "LINEAR", + "output": 7076 + }, + { + "input": 7077, + "interpolation": "LINEAR", + "output": 7078 + }, + { + "input": 7079, + "interpolation": "LINEAR", + "output": 7080 + }, + { + "input": 7081, + "interpolation": "LINEAR", + "output": 7082 + }, + { + "input": 7083, + "interpolation": "LINEAR", + "output": 7084 + }, + { + "input": 7085, + "interpolation": "LINEAR", + "output": 7086 + }, + { + "input": 7087, + "interpolation": "LINEAR", + "output": 7088 + }, + { + "input": 7089, + "interpolation": "LINEAR", + "output": 7090 + }, + { + "input": 7091, + "interpolation": "LINEAR", + "output": 7092 + }, + { + "input": 7093, + "interpolation": "LINEAR", + "output": 7094 + }, + { + "input": 7095, + "interpolation": "LINEAR", + "output": 7096 + }, + { + "input": 7097, + "interpolation": "LINEAR", + "output": 7098 + }, + { + "input": 7099, + "interpolation": "LINEAR", + "output": 7100 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 7, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 8, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 11, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 12, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 14, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 15, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 17, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 18, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 19, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 20, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 21, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 22, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 24, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 25, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 27, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 28, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 29, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 30, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 32, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 33, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 34, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 35, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 36, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 38, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 39, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 40, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 41, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 42, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 43, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 45, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 46, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 47, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 48, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 49, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 50, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 51, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 52, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 53, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 54, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 55, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 56, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 57, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 58, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 59, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 60, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 61, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 62, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 63, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 64, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 65, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 66, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 67, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 68, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 69, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 70, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 71, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 72, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 73, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 74, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 75, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 76, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 77, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 78, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 79, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 80, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 81, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 82, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 83, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 84, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 85, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 86, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 87, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 88, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 89, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 90, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 91, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 92, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 93, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 94, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 95, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 96, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 97, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 98, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 99, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 100, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 101, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 102, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 103, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 104, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 105, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 106, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 107, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 108, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 109, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 110, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 111, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 112, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 113, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 114, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 117, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 63, + "path": "translation" + } + } + ], + "name": "Fishing_Wait", + "samplers": [ + { + "input": 7101, + "interpolation": "LINEAR", + "output": 7102 + }, + { + "input": 7103, + "interpolation": "LINEAR", + "output": 7104 + }, + { + "input": 7105, + "interpolation": "LINEAR", + "output": 7106 + }, + { + "input": 7107, + "interpolation": "LINEAR", + "output": 7108 + }, + { + "input": 7109, + "interpolation": "LINEAR", + "output": 7110 + }, + { + "input": 7111, + "interpolation": "LINEAR", + "output": 7112 + }, + { + "input": 7113, + "interpolation": "LINEAR", + "output": 7114 + }, + { + "input": 7115, + "interpolation": "LINEAR", + "output": 7116 + }, + { + "input": 7117, + "interpolation": "LINEAR", + "output": 7118 + }, + { + "input": 7119, + "interpolation": "LINEAR", + "output": 7120 + }, + { + "input": 7121, + "interpolation": "LINEAR", + "output": 7122 + }, + { + "input": 7123, + "interpolation": "LINEAR", + "output": 7124 + }, + { + "input": 7125, + "interpolation": "LINEAR", + "output": 7126 + }, + { + "input": 7127, + "interpolation": "LINEAR", + "output": 7128 + }, + { + "input": 7129, + "interpolation": "LINEAR", + "output": 7130 + }, + { + "input": 7131, + "interpolation": "LINEAR", + "output": 7132 + }, + { + "input": 7133, + "interpolation": "LINEAR", + "output": 7134 + }, + { + "input": 7135, + "interpolation": "LINEAR", + "output": 7136 + }, + { + "input": 7137, + "interpolation": "LINEAR", + "output": 7138 + }, + { + "input": 7139, + "interpolation": "LINEAR", + "output": 7140 + }, + { + "input": 7141, + "interpolation": "LINEAR", + "output": 7142 + }, + { + "input": 7143, + "interpolation": "LINEAR", + "output": 7144 + }, + { + "input": 7145, + "interpolation": "LINEAR", + "output": 7146 + }, + { + "input": 7147, + "interpolation": "LINEAR", + "output": 7148 + }, + { + "input": 7149, + "interpolation": "LINEAR", + "output": 7150 + }, + { + "input": 7151, + "interpolation": "LINEAR", + "output": 7152 + }, + { + "input": 7153, + "interpolation": "LINEAR", + "output": 7154 + }, + { + "input": 7155, + "interpolation": "LINEAR", + "output": 7156 + }, + { + "input": 7157, + "interpolation": "LINEAR", + "output": 7158 + }, + { + "input": 7159, + "interpolation": "LINEAR", + "output": 7160 + }, + { + "input": 7161, + "interpolation": "LINEAR", + "output": 7162 + }, + { + "input": 7163, + "interpolation": "LINEAR", + "output": 7164 + }, + { + "input": 7165, + "interpolation": "LINEAR", + "output": 7166 + }, + { + "input": 7167, + "interpolation": "LINEAR", + "output": 7168 + }, + { + "input": 7169, + "interpolation": "LINEAR", + "output": 7170 + }, + { + "input": 7171, + "interpolation": "LINEAR", + "output": 7172 + }, + { + "input": 7173, + "interpolation": "LINEAR", + "output": 7174 + }, + { + "input": 7175, + "interpolation": "LINEAR", + "output": 7176 + }, + { + "input": 7177, + "interpolation": "LINEAR", + "output": 7178 + }, + { + "input": 7179, + "interpolation": "LINEAR", + "output": 7180 + }, + { + "input": 7181, + "interpolation": "LINEAR", + "output": 7182 + }, + { + "input": 7183, + "interpolation": "LINEAR", + "output": 7184 + }, + { + "input": 7185, + "interpolation": "LINEAR", + "output": 7186 + }, + { + "input": 7187, + "interpolation": "LINEAR", + "output": 7188 + }, + { + "input": 7189, + "interpolation": "LINEAR", + "output": 7190 + }, + { + "input": 7191, + "interpolation": "LINEAR", + "output": 7192 + }, + { + "input": 7193, + "interpolation": "LINEAR", + "output": 7194 + }, + { + "input": 7195, + "interpolation": "LINEAR", + "output": 7196 + }, + { + "input": 7197, + "interpolation": "LINEAR", + "output": 7198 + }, + { + "input": 7199, + "interpolation": "LINEAR", + "output": 7200 + }, + { + "input": 7201, + "interpolation": "LINEAR", + "output": 7202 + }, + { + "input": 7203, + "interpolation": "LINEAR", + "output": 7204 + }, + { + "input": 7205, + "interpolation": "LINEAR", + "output": 7206 + }, + { + "input": 7207, + "interpolation": "LINEAR", + "output": 7208 + }, + { + "input": 7209, + "interpolation": "LINEAR", + "output": 7210 + }, + { + "input": 7211, + "interpolation": "LINEAR", + "output": 7212 + }, + { + "input": 7213, + "interpolation": "LINEAR", + "output": 7214 + }, + { + "input": 7215, + "interpolation": "LINEAR", + "output": 7216 + }, + { + "input": 7217, + "interpolation": "LINEAR", + "output": 7218 + }, + { + "input": 7219, + "interpolation": "LINEAR", + "output": 7220 + }, + { + "input": 7221, + "interpolation": "LINEAR", + "output": 7222 + }, + { + "input": 7223, + "interpolation": "LINEAR", + "output": 7224 + }, + { + "input": 7225, + "interpolation": "LINEAR", + "output": 7226 + }, + { + "input": 7227, + "interpolation": "LINEAR", + "output": 7228 + }, + { + "input": 7229, + "interpolation": "LINEAR", + "output": 7230 + }, + { + "input": 7231, + "interpolation": "LINEAR", + "output": 7232 + }, + { + "input": 7233, + "interpolation": "LINEAR", + "output": 7234 + }, + { + "input": 7235, + "interpolation": "LINEAR", + "output": 7236 + }, + { + "input": 7237, + "interpolation": "LINEAR", + "output": 7238 + }, + { + "input": 7239, + "interpolation": "LINEAR", + "output": 7240 + }, + { + "input": 7241, + "interpolation": "LINEAR", + "output": 7242 + }, + { + "input": 7243, + "interpolation": "LINEAR", + "output": 7244 + }, + { + "input": 7245, + "interpolation": "LINEAR", + "output": 7246 + }, + { + "input": 7247, + "interpolation": "LINEAR", + "output": 7248 + }, + { + "input": 7249, + "interpolation": "LINEAR", + "output": 7250 + }, + { + "input": 7251, + "interpolation": "LINEAR", + "output": 7252 + }, + { + "input": 7253, + "interpolation": "LINEAR", + "output": 7254 + }, + { + "input": 7255, + "interpolation": "LINEAR", + "output": 7256 + }, + { + "input": 7257, + "interpolation": "LINEAR", + "output": 7258 + }, + { + "input": 7259, + "interpolation": "LINEAR", + "output": 7260 + }, + { + "input": 7261, + "interpolation": "LINEAR", + "output": 7262 + }, + { + "input": 7263, + "interpolation": "LINEAR", + "output": 7264 + }, + { + "input": 7265, + "interpolation": "LINEAR", + "output": 7266 + }, + { + "input": 7267, + "interpolation": "LINEAR", + "output": 7268 + }, + { + "input": 7269, + "interpolation": "LINEAR", + "output": 7270 + }, + { + "input": 7271, + "interpolation": "LINEAR", + "output": 7272 + }, + { + "input": 7273, + "interpolation": "LINEAR", + "output": 7274 + }, + { + "input": 7275, + "interpolation": "LINEAR", + "output": 7276 + }, + { + "input": 7277, + "interpolation": "LINEAR", + "output": 7278 + }, + { + "input": 7279, + "interpolation": "LINEAR", + "output": 7280 + }, + { + "input": 7281, + "interpolation": "LINEAR", + "output": 7282 + }, + { + "input": 7283, + "interpolation": "LINEAR", + "output": 7284 + }, + { + "input": 7285, + "interpolation": "LINEAR", + "output": 7286 + }, + { + "input": 7287, + "interpolation": "LINEAR", + "output": 7288 + }, + { + "input": 7289, + "interpolation": "LINEAR", + "output": 7290 + }, + { + "input": 7291, + "interpolation": "LINEAR", + "output": 7292 + }, + { + "input": 7293, + "interpolation": "LINEAR", + "output": 7294 + }, + { + "input": 7295, + "interpolation": "LINEAR", + "output": 7296 + }, + { + "input": 7297, + "interpolation": "LINEAR", + "output": 7298 + }, + { + "input": 7299, + "interpolation": "LINEAR", + "output": 7300 + }, + { + "input": 7301, + "interpolation": "LINEAR", + "output": 7302 + }, + { + "input": 7303, + "interpolation": "LINEAR", + "output": 7304 + }, + { + "input": 7305, + "interpolation": "LINEAR", + "output": 7306 + }, + { + "input": 7307, + "interpolation": "LINEAR", + "output": 7308 + }, + { + "input": 7309, + "interpolation": "LINEAR", + "output": 7310 + }, + { + "input": 7311, + "interpolation": "LINEAR", + "output": 7312 + }, + { + "input": 7313, + "interpolation": "LINEAR", + "output": 7314 + }, + { + "input": 7315, + "interpolation": "LINEAR", + "output": 7316 + }, + { + "input": 7317, + "interpolation": "LINEAR", + "output": 7318 + }, + { + "input": 7319, + "interpolation": "LINEAR", + "output": 7320 + }, + { + "input": 7321, + "interpolation": "LINEAR", + "output": 7322 + }, + { + "input": 7323, + "interpolation": "LINEAR", + "output": 7324 + }, + { + "input": 7325, + "interpolation": "LINEAR", + "output": 7326 + }, + { + "input": 7327, + "interpolation": "LINEAR", + "output": 7328 + }, + { + "input": 7329, + "interpolation": "LINEAR", + "output": 7330 + }, + { + "input": 7331, + "interpolation": "LINEAR", + "output": 7332 + }, + { + "input": 7333, + "interpolation": "LINEAR", + "output": 7334 + }, + { + "input": 7335, + "interpolation": "LINEAR", + "output": 7336 + }, + { + "input": 7337, + "interpolation": "LINEAR", + "output": 7338 + }, + { + "input": 7339, + "interpolation": "LINEAR", + "output": 7340 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_ChargedSlash", + "samplers": [ + { + "input": 7341, + "interpolation": "LINEAR", + "output": 7342 + }, + { + "input": 7343, + "interpolation": "LINEAR", + "output": 7344 + }, + { + "input": 7345, + "interpolation": "LINEAR", + "output": 7346 + }, + { + "input": 7347, + "interpolation": "LINEAR", + "output": 7348 + }, + { + "input": 7349, + "interpolation": "LINEAR", + "output": 7350 + }, + { + "input": 7351, + "interpolation": "LINEAR", + "output": 7352 + }, + { + "input": 7353, + "interpolation": "LINEAR", + "output": 7354 + }, + { + "input": 7355, + "interpolation": "LINEAR", + "output": 7356 + }, + { + "input": 7357, + "interpolation": "LINEAR", + "output": 7358 + }, + { + "input": 7359, + "interpolation": "LINEAR", + "output": 7360 + }, + { + "input": 7361, + "interpolation": "LINEAR", + "output": 7362 + }, + { + "input": 7363, + "interpolation": "LINEAR", + "output": 7364 + }, + { + "input": 7365, + "interpolation": "LINEAR", + "output": 7366 + }, + { + "input": 7367, + "interpolation": "LINEAR", + "output": 7368 + }, + { + "input": 7369, + "interpolation": "LINEAR", + "output": 7370 + }, + { + "input": 7371, + "interpolation": "LINEAR", + "output": 7372 + }, + { + "input": 7373, + "interpolation": "LINEAR", + "output": 7374 + }, + { + "input": 7375, + "interpolation": "LINEAR", + "output": 7376 + }, + { + "input": 7377, + "interpolation": "LINEAR", + "output": 7378 + }, + { + "input": 7379, + "interpolation": "LINEAR", + "output": 7380 + }, + { + "input": 7381, + "interpolation": "LINEAR", + "output": 7382 + }, + { + "input": 7383, + "interpolation": "LINEAR", + "output": 7384 + }, + { + "input": 7385, + "interpolation": "LINEAR", + "output": 7386 + }, + { + "input": 7387, + "interpolation": "LINEAR", + "output": 7388 + }, + { + "input": 7389, + "interpolation": "LINEAR", + "output": 7390 + }, + { + "input": 7391, + "interpolation": "LINEAR", + "output": 7392 + }, + { + "input": 7393, + "interpolation": "LINEAR", + "output": 7394 + }, + { + "input": 7395, + "interpolation": "LINEAR", + "output": 7396 + }, + { + "input": 7397, + "interpolation": "LINEAR", + "output": 7398 + }, + { + "input": 7399, + "interpolation": "LINEAR", + "output": 7400 + }, + { + "input": 7401, + "interpolation": "LINEAR", + "output": 7402 + }, + { + "input": 7403, + "interpolation": "LINEAR", + "output": 7404 + }, + { + "input": 7405, + "interpolation": "LINEAR", + "output": 7406 + }, + { + "input": 7407, + "interpolation": "LINEAR", + "output": 7408 + }, + { + "input": 7409, + "interpolation": "LINEAR", + "output": 7410 + }, + { + "input": 7411, + "interpolation": "LINEAR", + "output": 7412 + }, + { + "input": 7413, + "interpolation": "LINEAR", + "output": 7414 + }, + { + "input": 7415, + "interpolation": "LINEAR", + "output": 7416 + }, + { + "input": 7417, + "interpolation": "LINEAR", + "output": 7418 + }, + { + "input": 7419, + "interpolation": "LINEAR", + "output": 7420 + }, + { + "input": 7421, + "interpolation": "LINEAR", + "output": 7422 + }, + { + "input": 7423, + "interpolation": "LINEAR", + "output": 7424 + }, + { + "input": 7425, + "interpolation": "LINEAR", + "output": 7426 + }, + { + "input": 7427, + "interpolation": "LINEAR", + "output": 7428 + }, + { + "input": 7429, + "interpolation": "LINEAR", + "output": 7430 + }, + { + "input": 7431, + "interpolation": "LINEAR", + "output": 7432 + }, + { + "input": 7433, + "interpolation": "LINEAR", + "output": 7434 + }, + { + "input": 7435, + "interpolation": "LINEAR", + "output": 7436 + }, + { + "input": 7437, + "interpolation": "LINEAR", + "output": 7438 + }, + { + "input": 7439, + "interpolation": "LINEAR", + "output": 7440 + }, + { + "input": 7441, + "interpolation": "LINEAR", + "output": 7442 + }, + { + "input": 7443, + "interpolation": "LINEAR", + "output": 7444 + }, + { + "input": 7445, + "interpolation": "LINEAR", + "output": 7446 + }, + { + "input": 7447, + "interpolation": "LINEAR", + "output": 7448 + }, + { + "input": 7449, + "interpolation": "LINEAR", + "output": 7450 + }, + { + "input": 7451, + "interpolation": "LINEAR", + "output": 7452 + }, + { + "input": 7453, + "interpolation": "LINEAR", + "output": 7454 + }, + { + "input": 7455, + "interpolation": "LINEAR", + "output": 7456 + }, + { + "input": 7457, + "interpolation": "LINEAR", + "output": 7458 + }, + { + "input": 7459, + "interpolation": "LINEAR", + "output": 7460 + }, + { + "input": 7461, + "interpolation": "LINEAR", + "output": 7462 + }, + { + "input": 7463, + "interpolation": "LINEAR", + "output": 7464 + }, + { + "input": 7465, + "interpolation": "LINEAR", + "output": 7466 + }, + { + "input": 7467, + "interpolation": "LINEAR", + "output": 7468 + }, + { + "input": 7469, + "interpolation": "LINEAR", + "output": 7470 + }, + { + "input": 7471, + "interpolation": "LINEAR", + "output": 7472 + }, + { + "input": 7473, + "interpolation": "LINEAR", + "output": 7474 + }, + { + "input": 7475, + "interpolation": "LINEAR", + "output": 7476 + }, + { + "input": 7477, + "interpolation": "LINEAR", + "output": 7478 + }, + { + "input": 7479, + "interpolation": "LINEAR", + "output": 7480 + }, + { + "input": 7481, + "interpolation": "LINEAR", + "output": 7482 + }, + { + "input": 7483, + "interpolation": "LINEAR", + "output": 7484 + }, + { + "input": 7485, + "interpolation": "LINEAR", + "output": 7486 + }, + { + "input": 7487, + "interpolation": "LINEAR", + "output": 7488 + }, + { + "input": 7489, + "interpolation": "LINEAR", + "output": 7490 + }, + { + "input": 7491, + "interpolation": "LINEAR", + "output": 7492 + }, + { + "input": 7493, + "interpolation": "LINEAR", + "output": 7494 + }, + { + "input": 7495, + "interpolation": "LINEAR", + "output": 7496 + }, + { + "input": 7497, + "interpolation": "LINEAR", + "output": 7498 + }, + { + "input": 7499, + "interpolation": "LINEAR", + "output": 7500 + }, + { + "input": 7501, + "interpolation": "LINEAR", + "output": 7502 + }, + { + "input": 7503, + "interpolation": "LINEAR", + "output": 7504 + }, + { + "input": 7505, + "interpolation": "LINEAR", + "output": 7506 + }, + { + "input": 7507, + "interpolation": "LINEAR", + "output": 7508 + }, + { + "input": 7509, + "interpolation": "LINEAR", + "output": 7510 + }, + { + "input": 7511, + "interpolation": "LINEAR", + "output": 7512 + }, + { + "input": 7513, + "interpolation": "LINEAR", + "output": 7514 + }, + { + "input": 7515, + "interpolation": "LINEAR", + "output": 7516 + }, + { + "input": 7517, + "interpolation": "LINEAR", + "output": 7518 + }, + { + "input": 7519, + "interpolation": "LINEAR", + "output": 7520 + }, + { + "input": 7521, + "interpolation": "LINEAR", + "output": 7522 + }, + { + "input": 7523, + "interpolation": "LINEAR", + "output": 7524 + }, + { + "input": 7525, + "interpolation": "LINEAR", + "output": 7526 + }, + { + "input": 7527, + "interpolation": "LINEAR", + "output": 7528 + }, + { + "input": 7529, + "interpolation": "LINEAR", + "output": 7530 + }, + { + "input": 7531, + "interpolation": "LINEAR", + "output": 7532 + }, + { + "input": 7533, + "interpolation": "LINEAR", + "output": 7534 + }, + { + "input": 7535, + "interpolation": "LINEAR", + "output": 7536 + }, + { + "input": 7537, + "interpolation": "LINEAR", + "output": 7538 + }, + { + "input": 7539, + "interpolation": "LINEAR", + "output": 7540 + }, + { + "input": 7541, + "interpolation": "LINEAR", + "output": 7542 + }, + { + "input": 7543, + "interpolation": "LINEAR", + "output": 7544 + }, + { + "input": 7545, + "interpolation": "LINEAR", + "output": 7546 + }, + { + "input": 7547, + "interpolation": "LINEAR", + "output": 7548 + }, + { + "input": 7549, + "interpolation": "LINEAR", + "output": 7550 + }, + { + "input": 7551, + "interpolation": "LINEAR", + "output": 7552 + }, + { + "input": 7553, + "interpolation": "LINEAR", + "output": 7554 + }, + { + "input": 7555, + "interpolation": "LINEAR", + "output": 7556 + }, + { + "input": 7557, + "interpolation": "LINEAR", + "output": 7558 + }, + { + "input": 7559, + "interpolation": "LINEAR", + "output": 7560 + }, + { + "input": 7561, + "interpolation": "LINEAR", + "output": 7562 + }, + { + "input": 7563, + "interpolation": "LINEAR", + "output": 7564 + }, + { + "input": 7565, + "interpolation": "LINEAR", + "output": 7566 + }, + { + "input": 7567, + "interpolation": "LINEAR", + "output": 7568 + }, + { + "input": 7569, + "interpolation": "LINEAR", + "output": 7570 + }, + { + "input": 7571, + "interpolation": "LINEAR", + "output": 7572 + }, + { + "input": 7573, + "interpolation": "LINEAR", + "output": 7574 + }, + { + "input": 7575, + "interpolation": "LINEAR", + "output": 7576 + }, + { + "input": 7577, + "interpolation": "LINEAR", + "output": 7578 + }, + { + "input": 7579, + "interpolation": "LINEAR", + "output": 7580 + }, + { + "input": 7581, + "interpolation": "LINEAR", + "output": 7582 + }, + { + "input": 7583, + "interpolation": "LINEAR", + "output": 7584 + }, + { + "input": 7585, + "interpolation": "LINEAR", + "output": 7586 + }, + { + "input": 7587, + "interpolation": "LINEAR", + "output": 7588 + }, + { + "input": 7589, + "interpolation": "LINEAR", + "output": 7590 + }, + { + "input": 7591, + "interpolation": "LINEAR", + "output": 7592 + }, + { + "input": 7593, + "interpolation": "LINEAR", + "output": 7594 + }, + { + "input": 7595, + "interpolation": "LINEAR", + "output": 7596 + }, + { + "input": 7597, + "interpolation": "LINEAR", + "output": 7598 + }, + { + "input": 7599, + "interpolation": "LINEAR", + "output": 7600 + }, + { + "input": 7601, + "interpolation": "LINEAR", + "output": 7602 + }, + { + "input": 7603, + "interpolation": "LINEAR", + "output": 7604 + }, + { + "input": 7605, + "interpolation": "LINEAR", + "output": 7606 + }, + { + "input": 7607, + "interpolation": "LINEAR", + "output": 7608 + }, + { + "input": 7609, + "interpolation": "LINEAR", + "output": 7610 + }, + { + "input": 7611, + "interpolation": "LINEAR", + "output": 7612 + }, + { + "input": 7613, + "interpolation": "LINEAR", + "output": 7614 + }, + { + "input": 7615, + "interpolation": "LINEAR", + "output": 7616 + }, + { + "input": 7617, + "interpolation": "LINEAR", + "output": 7618 + }, + { + "input": 7619, + "interpolation": "LINEAR", + "output": 7620 + }, + { + "input": 7621, + "interpolation": "LINEAR", + "output": 7622 + }, + { + "input": 7623, + "interpolation": "LINEAR", + "output": 7624 + }, + { + "input": 7625, + "interpolation": "LINEAR", + "output": 7626 + }, + { + "input": 7627, + "interpolation": "LINEAR", + "output": 7628 + }, + { + "input": 7629, + "interpolation": "LINEAR", + "output": 7630 + }, + { + "input": 7631, + "interpolation": "LINEAR", + "output": 7632 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_ChargedSlash_Attack", + "samplers": [ + { + "input": 7633, + "interpolation": "LINEAR", + "output": 7634 + }, + { + "input": 7635, + "interpolation": "LINEAR", + "output": 7636 + }, + { + "input": 7637, + "interpolation": "LINEAR", + "output": 7638 + }, + { + "input": 7639, + "interpolation": "LINEAR", + "output": 7640 + }, + { + "input": 7641, + "interpolation": "LINEAR", + "output": 7642 + }, + { + "input": 7643, + "interpolation": "LINEAR", + "output": 7644 + }, + { + "input": 7645, + "interpolation": "LINEAR", + "output": 7646 + }, + { + "input": 7647, + "interpolation": "LINEAR", + "output": 7648 + }, + { + "input": 7649, + "interpolation": "LINEAR", + "output": 7650 + }, + { + "input": 7651, + "interpolation": "LINEAR", + "output": 7652 + }, + { + "input": 7653, + "interpolation": "LINEAR", + "output": 7654 + }, + { + "input": 7655, + "interpolation": "LINEAR", + "output": 7656 + }, + { + "input": 7657, + "interpolation": "LINEAR", + "output": 7658 + }, + { + "input": 7659, + "interpolation": "LINEAR", + "output": 7660 + }, + { + "input": 7661, + "interpolation": "LINEAR", + "output": 7662 + }, + { + "input": 7663, + "interpolation": "LINEAR", + "output": 7664 + }, + { + "input": 7665, + "interpolation": "LINEAR", + "output": 7666 + }, + { + "input": 7667, + "interpolation": "LINEAR", + "output": 7668 + }, + { + "input": 7669, + "interpolation": "LINEAR", + "output": 7670 + }, + { + "input": 7671, + "interpolation": "LINEAR", + "output": 7672 + }, + { + "input": 7673, + "interpolation": "LINEAR", + "output": 7674 + }, + { + "input": 7675, + "interpolation": "LINEAR", + "output": 7676 + }, + { + "input": 7677, + "interpolation": "LINEAR", + "output": 7678 + }, + { + "input": 7679, + "interpolation": "LINEAR", + "output": 7680 + }, + { + "input": 7681, + "interpolation": "LINEAR", + "output": 7682 + }, + { + "input": 7683, + "interpolation": "LINEAR", + "output": 7684 + }, + { + "input": 7685, + "interpolation": "LINEAR", + "output": 7686 + }, + { + "input": 7687, + "interpolation": "LINEAR", + "output": 7688 + }, + { + "input": 7689, + "interpolation": "LINEAR", + "output": 7690 + }, + { + "input": 7691, + "interpolation": "LINEAR", + "output": 7692 + }, + { + "input": 7693, + "interpolation": "LINEAR", + "output": 7694 + }, + { + "input": 7695, + "interpolation": "LINEAR", + "output": 7696 + }, + { + "input": 7697, + "interpolation": "LINEAR", + "output": 7698 + }, + { + "input": 7699, + "interpolation": "LINEAR", + "output": 7700 + }, + { + "input": 7701, + "interpolation": "LINEAR", + "output": 7702 + }, + { + "input": 7703, + "interpolation": "LINEAR", + "output": 7704 + }, + { + "input": 7705, + "interpolation": "LINEAR", + "output": 7706 + }, + { + "input": 7707, + "interpolation": "LINEAR", + "output": 7708 + }, + { + "input": 7709, + "interpolation": "LINEAR", + "output": 7710 + }, + { + "input": 7711, + "interpolation": "LINEAR", + "output": 7712 + }, + { + "input": 7713, + "interpolation": "LINEAR", + "output": 7714 + }, + { + "input": 7715, + "interpolation": "LINEAR", + "output": 7716 + }, + { + "input": 7717, + "interpolation": "LINEAR", + "output": 7718 + }, + { + "input": 7719, + "interpolation": "LINEAR", + "output": 7720 + }, + { + "input": 7721, + "interpolation": "LINEAR", + "output": 7722 + }, + { + "input": 7723, + "interpolation": "LINEAR", + "output": 7724 + }, + { + "input": 7725, + "interpolation": "LINEAR", + "output": 7726 + }, + { + "input": 7727, + "interpolation": "LINEAR", + "output": 7728 + }, + { + "input": 7729, + "interpolation": "LINEAR", + "output": 7730 + }, + { + "input": 7731, + "interpolation": "LINEAR", + "output": 7732 + }, + { + "input": 7733, + "interpolation": "LINEAR", + "output": 7734 + }, + { + "input": 7735, + "interpolation": "LINEAR", + "output": 7736 + }, + { + "input": 7737, + "interpolation": "LINEAR", + "output": 7738 + }, + { + "input": 7739, + "interpolation": "LINEAR", + "output": 7740 + }, + { + "input": 7741, + "interpolation": "LINEAR", + "output": 7742 + }, + { + "input": 7743, + "interpolation": "LINEAR", + "output": 7744 + }, + { + "input": 7745, + "interpolation": "LINEAR", + "output": 7746 + }, + { + "input": 7747, + "interpolation": "LINEAR", + "output": 7748 + }, + { + "input": 7749, + "interpolation": "LINEAR", + "output": 7750 + }, + { + "input": 7751, + "interpolation": "LINEAR", + "output": 7752 + }, + { + "input": 7753, + "interpolation": "LINEAR", + "output": 7754 + }, + { + "input": 7755, + "interpolation": "LINEAR", + "output": 7756 + }, + { + "input": 7757, + "interpolation": "LINEAR", + "output": 7758 + }, + { + "input": 7759, + "interpolation": "LINEAR", + "output": 7760 + }, + { + "input": 7761, + "interpolation": "LINEAR", + "output": 7762 + }, + { + "input": 7763, + "interpolation": "LINEAR", + "output": 7764 + }, + { + "input": 7765, + "interpolation": "LINEAR", + "output": 7766 + }, + { + "input": 7767, + "interpolation": "LINEAR", + "output": 7768 + }, + { + "input": 7769, + "interpolation": "LINEAR", + "output": 7770 + }, + { + "input": 7771, + "interpolation": "LINEAR", + "output": 7772 + }, + { + "input": 7773, + "interpolation": "LINEAR", + "output": 7774 + }, + { + "input": 7775, + "interpolation": "LINEAR", + "output": 7776 + }, + { + "input": 7777, + "interpolation": "LINEAR", + "output": 7778 + }, + { + "input": 7779, + "interpolation": "LINEAR", + "output": 7780 + }, + { + "input": 7781, + "interpolation": "LINEAR", + "output": 7782 + }, + { + "input": 7783, + "interpolation": "LINEAR", + "output": 7784 + }, + { + "input": 7785, + "interpolation": "LINEAR", + "output": 7786 + }, + { + "input": 7787, + "interpolation": "LINEAR", + "output": 7788 + }, + { + "input": 7789, + "interpolation": "LINEAR", + "output": 7790 + }, + { + "input": 7791, + "interpolation": "LINEAR", + "output": 7792 + }, + { + "input": 7793, + "interpolation": "LINEAR", + "output": 7794 + }, + { + "input": 7795, + "interpolation": "LINEAR", + "output": 7796 + }, + { + "input": 7797, + "interpolation": "LINEAR", + "output": 7798 + }, + { + "input": 7799, + "interpolation": "LINEAR", + "output": 7800 + }, + { + "input": 7801, + "interpolation": "LINEAR", + "output": 7802 + }, + { + "input": 7803, + "interpolation": "LINEAR", + "output": 7804 + }, + { + "input": 7805, + "interpolation": "LINEAR", + "output": 7806 + }, + { + "input": 7807, + "interpolation": "LINEAR", + "output": 7808 + }, + { + "input": 7809, + "interpolation": "LINEAR", + "output": 7810 + }, + { + "input": 7811, + "interpolation": "LINEAR", + "output": 7812 + }, + { + "input": 7813, + "interpolation": "LINEAR", + "output": 7814 + }, + { + "input": 7815, + "interpolation": "LINEAR", + "output": 7816 + }, + { + "input": 7817, + "interpolation": "LINEAR", + "output": 7818 + }, + { + "input": 7819, + "interpolation": "LINEAR", + "output": 7820 + }, + { + "input": 7821, + "interpolation": "LINEAR", + "output": 7822 + }, + { + "input": 7823, + "interpolation": "LINEAR", + "output": 7824 + }, + { + "input": 7825, + "interpolation": "LINEAR", + "output": 7826 + }, + { + "input": 7827, + "interpolation": "LINEAR", + "output": 7828 + }, + { + "input": 7829, + "interpolation": "LINEAR", + "output": 7830 + }, + { + "input": 7831, + "interpolation": "LINEAR", + "output": 7832 + }, + { + "input": 7833, + "interpolation": "LINEAR", + "output": 7834 + }, + { + "input": 7835, + "interpolation": "LINEAR", + "output": 7836 + }, + { + "input": 7837, + "interpolation": "LINEAR", + "output": 7838 + }, + { + "input": 7839, + "interpolation": "LINEAR", + "output": 7840 + }, + { + "input": 7841, + "interpolation": "LINEAR", + "output": 7842 + }, + { + "input": 7843, + "interpolation": "LINEAR", + "output": 7844 + }, + { + "input": 7845, + "interpolation": "LINEAR", + "output": 7846 + }, + { + "input": 7847, + "interpolation": "LINEAR", + "output": 7848 + }, + { + "input": 7849, + "interpolation": "LINEAR", + "output": 7850 + }, + { + "input": 7851, + "interpolation": "LINEAR", + "output": 7852 + }, + { + "input": 7853, + "interpolation": "LINEAR", + "output": 7854 + }, + { + "input": 7855, + "interpolation": "LINEAR", + "output": 7856 + }, + { + "input": 7857, + "interpolation": "LINEAR", + "output": 7858 + }, + { + "input": 7859, + "interpolation": "LINEAR", + "output": 7860 + }, + { + "input": 7861, + "interpolation": "LINEAR", + "output": 7862 + }, + { + "input": 7863, + "interpolation": "LINEAR", + "output": 7864 + }, + { + "input": 7865, + "interpolation": "LINEAR", + "output": 7866 + }, + { + "input": 7867, + "interpolation": "LINEAR", + "output": 7868 + }, + { + "input": 7869, + "interpolation": "LINEAR", + "output": 7870 + }, + { + "input": 7871, + "interpolation": "LINEAR", + "output": 7872 + }, + { + "input": 7873, + "interpolation": "LINEAR", + "output": 7874 + }, + { + "input": 7875, + "interpolation": "LINEAR", + "output": 7876 + }, + { + "input": 7877, + "interpolation": "LINEAR", + "output": 7878 + }, + { + "input": 7879, + "interpolation": "LINEAR", + "output": 7880 + }, + { + "input": 7881, + "interpolation": "LINEAR", + "output": 7882 + }, + { + "input": 7883, + "interpolation": "LINEAR", + "output": 7884 + }, + { + "input": 7885, + "interpolation": "LINEAR", + "output": 7886 + }, + { + "input": 7887, + "interpolation": "LINEAR", + "output": 7888 + }, + { + "input": 7889, + "interpolation": "LINEAR", + "output": 7890 + }, + { + "input": 7891, + "interpolation": "LINEAR", + "output": 7892 + }, + { + "input": 7893, + "interpolation": "LINEAR", + "output": 7894 + }, + { + "input": 7895, + "interpolation": "LINEAR", + "output": 7896 + }, + { + "input": 7897, + "interpolation": "LINEAR", + "output": 7898 + }, + { + "input": 7899, + "interpolation": "LINEAR", + "output": 7900 + }, + { + "input": 7901, + "interpolation": "LINEAR", + "output": 7902 + }, + { + "input": 7903, + "interpolation": "LINEAR", + "output": 7904 + }, + { + "input": 7905, + "interpolation": "LINEAR", + "output": 7906 + }, + { + "input": 7907, + "interpolation": "LINEAR", + "output": 7908 + }, + { + "input": 7909, + "interpolation": "LINEAR", + "output": 7910 + }, + { + "input": 7911, + "interpolation": "LINEAR", + "output": 7912 + }, + { + "input": 7913, + "interpolation": "LINEAR", + "output": 7914 + }, + { + "input": 7915, + "interpolation": "LINEAR", + "output": 7916 + }, + { + "input": 7917, + "interpolation": "LINEAR", + "output": 7918 + }, + { + "input": 7919, + "interpolation": "LINEAR", + "output": 7920 + }, + { + "input": 7921, + "interpolation": "LINEAR", + "output": 7922 + }, + { + "input": 7923, + "interpolation": "LINEAR", + "output": 7924 + }, + { + "input": 7925, + "interpolation": "LINEAR", + "output": 7926 + }, + { + "input": 7927, + "interpolation": "LINEAR", + "output": 7928 + }, + { + "input": 7929, + "interpolation": "LINEAR", + "output": 7930 + }, + { + "input": 7931, + "interpolation": "LINEAR", + "output": 7932 + }, + { + "input": 7933, + "interpolation": "LINEAR", + "output": 7934 + }, + { + "input": 7935, + "interpolation": "LINEAR", + "output": 7936 + }, + { + "input": 7937, + "interpolation": "LINEAR", + "output": 7938 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 5, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 55, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 56, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 57, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 58, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 59, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 60, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 61, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 62, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 63, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 64, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 65, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 66, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 67, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 68, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 69, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 70, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 71, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 72, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 73, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 74, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 75, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 76, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 77, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 78, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 79, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 126, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 127, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_ChargedSlash_Charging", + "samplers": [ + { + "input": 7939, + "interpolation": "LINEAR", + "output": 7940 + }, + { + "input": 7941, + "interpolation": "LINEAR", + "output": 7942 + }, + { + "input": 7943, + "interpolation": "LINEAR", + "output": 7944 + }, + { + "input": 7945, + "interpolation": "LINEAR", + "output": 7946 + }, + { + "input": 7947, + "interpolation": "LINEAR", + "output": 7948 + }, + { + "input": 7949, + "interpolation": "LINEAR", + "output": 7950 + }, + { + "input": 7951, + "interpolation": "LINEAR", + "output": 7952 + }, + { + "input": 7953, + "interpolation": "LINEAR", + "output": 7954 + }, + { + "input": 7955, + "interpolation": "LINEAR", + "output": 7956 + }, + { + "input": 7957, + "interpolation": "LINEAR", + "output": 7958 + }, + { + "input": 7959, + "interpolation": "LINEAR", + "output": 7960 + }, + { + "input": 7961, + "interpolation": "LINEAR", + "output": 7962 + }, + { + "input": 7963, + "interpolation": "LINEAR", + "output": 7964 + }, + { + "input": 7965, + "interpolation": "LINEAR", + "output": 7966 + }, + { + "input": 7967, + "interpolation": "LINEAR", + "output": 7968 + }, + { + "input": 7969, + "interpolation": "LINEAR", + "output": 7970 + }, + { + "input": 7971, + "interpolation": "LINEAR", + "output": 7972 + }, + { + "input": 7973, + "interpolation": "LINEAR", + "output": 7974 + }, + { + "input": 7975, + "interpolation": "LINEAR", + "output": 7976 + }, + { + "input": 7977, + "interpolation": "LINEAR", + "output": 7978 + }, + { + "input": 7979, + "interpolation": "LINEAR", + "output": 7980 + }, + { + "input": 7981, + "interpolation": "LINEAR", + "output": 7982 + }, + { + "input": 7983, + "interpolation": "LINEAR", + "output": 7984 + }, + { + "input": 7985, + "interpolation": "LINEAR", + "output": 7986 + }, + { + "input": 7987, + "interpolation": "LINEAR", + "output": 7988 + }, + { + "input": 7989, + "interpolation": "LINEAR", + "output": 7990 + }, + { + "input": 7991, + "interpolation": "LINEAR", + "output": 7992 + }, + { + "input": 7993, + "interpolation": "LINEAR", + "output": 7994 + }, + { + "input": 7995, + "interpolation": "LINEAR", + "output": 7996 + }, + { + "input": 7997, + "interpolation": "LINEAR", + "output": 7998 + }, + { + "input": 7999, + "interpolation": "LINEAR", + "output": 8000 + }, + { + "input": 8001, + "interpolation": "LINEAR", + "output": 8002 + }, + { + "input": 8003, + "interpolation": "LINEAR", + "output": 8004 + }, + { + "input": 8005, + "interpolation": "LINEAR", + "output": 8006 + }, + { + "input": 8007, + "interpolation": "LINEAR", + "output": 8008 + }, + { + "input": 8009, + "interpolation": "LINEAR", + "output": 8010 + }, + { + "input": 8011, + "interpolation": "LINEAR", + "output": 8012 + }, + { + "input": 8013, + "interpolation": "LINEAR", + "output": 8014 + }, + { + "input": 8015, + "interpolation": "LINEAR", + "output": 8016 + }, + { + "input": 8017, + "interpolation": "LINEAR", + "output": 8018 + }, + { + "input": 8019, + "interpolation": "LINEAR", + "output": 8020 + }, + { + "input": 8021, + "interpolation": "LINEAR", + "output": 8022 + }, + { + "input": 8023, + "interpolation": "LINEAR", + "output": 8024 + }, + { + "input": 8025, + "interpolation": "LINEAR", + "output": 8026 + }, + { + "input": 8027, + "interpolation": "LINEAR", + "output": 8028 + }, + { + "input": 8029, + "interpolation": "LINEAR", + "output": 8030 + }, + { + "input": 8031, + "interpolation": "LINEAR", + "output": 8032 + }, + { + "input": 8033, + "interpolation": "LINEAR", + "output": 8034 + }, + { + "input": 8035, + "interpolation": "LINEAR", + "output": 8036 + }, + { + "input": 8037, + "interpolation": "LINEAR", + "output": 8038 + }, + { + "input": 8039, + "interpolation": "LINEAR", + "output": 8040 + }, + { + "input": 8041, + "interpolation": "LINEAR", + "output": 8042 + }, + { + "input": 8043, + "interpolation": "LINEAR", + "output": 8044 + }, + { + "input": 8045, + "interpolation": "LINEAR", + "output": 8046 + }, + { + "input": 8047, + "interpolation": "LINEAR", + "output": 8048 + }, + { + "input": 8049, + "interpolation": "LINEAR", + "output": 8050 + }, + { + "input": 8051, + "interpolation": "LINEAR", + "output": 8052 + }, + { + "input": 8053, + "interpolation": "LINEAR", + "output": 8054 + }, + { + "input": 8055, + "interpolation": "LINEAR", + "output": 8056 + }, + { + "input": 8057, + "interpolation": "LINEAR", + "output": 8058 + }, + { + "input": 8059, + "interpolation": "LINEAR", + "output": 8060 + }, + { + "input": 8061, + "interpolation": "LINEAR", + "output": 8062 + }, + { + "input": 8063, + "interpolation": "LINEAR", + "output": 8064 + }, + { + "input": 8065, + "interpolation": "LINEAR", + "output": 8066 + }, + { + "input": 8067, + "interpolation": "LINEAR", + "output": 8068 + }, + { + "input": 8069, + "interpolation": "LINEAR", + "output": 8070 + }, + { + "input": 8071, + "interpolation": "LINEAR", + "output": 8072 + }, + { + "input": 8073, + "interpolation": "LINEAR", + "output": 8074 + }, + { + "input": 8075, + "interpolation": "LINEAR", + "output": 8076 + }, + { + "input": 8077, + "interpolation": "LINEAR", + "output": 8078 + }, + { + "input": 8079, + "interpolation": "LINEAR", + "output": 8080 + }, + { + "input": 8081, + "interpolation": "LINEAR", + "output": 8082 + }, + { + "input": 8083, + "interpolation": "LINEAR", + "output": 8084 + }, + { + "input": 8085, + "interpolation": "LINEAR", + "output": 8086 + }, + { + "input": 8087, + "interpolation": "LINEAR", + "output": 8088 + }, + { + "input": 8089, + "interpolation": "LINEAR", + "output": 8090 + }, + { + "input": 8091, + "interpolation": "LINEAR", + "output": 8092 + }, + { + "input": 8093, + "interpolation": "LINEAR", + "output": 8094 + }, + { + "input": 8095, + "interpolation": "LINEAR", + "output": 8096 + }, + { + "input": 8097, + "interpolation": "LINEAR", + "output": 8098 + }, + { + "input": 8099, + "interpolation": "LINEAR", + "output": 8100 + }, + { + "input": 8101, + "interpolation": "LINEAR", + "output": 8102 + }, + { + "input": 8103, + "interpolation": "LINEAR", + "output": 8104 + }, + { + "input": 8105, + "interpolation": "LINEAR", + "output": 8106 + }, + { + "input": 8107, + "interpolation": "LINEAR", + "output": 8108 + }, + { + "input": 8109, + "interpolation": "LINEAR", + "output": 8110 + }, + { + "input": 8111, + "interpolation": "LINEAR", + "output": 8112 + }, + { + "input": 8113, + "interpolation": "LINEAR", + "output": 8114 + }, + { + "input": 8115, + "interpolation": "LINEAR", + "output": 8116 + }, + { + "input": 8117, + "interpolation": "LINEAR", + "output": 8118 + }, + { + "input": 8119, + "interpolation": "LINEAR", + "output": 8120 + }, + { + "input": 8121, + "interpolation": "LINEAR", + "output": 8122 + }, + { + "input": 8123, + "interpolation": "LINEAR", + "output": 8124 + }, + { + "input": 8125, + "interpolation": "LINEAR", + "output": 8126 + }, + { + "input": 8127, + "interpolation": "LINEAR", + "output": 8128 + }, + { + "input": 8129, + "interpolation": "LINEAR", + "output": 8130 + }, + { + "input": 8131, + "interpolation": "LINEAR", + "output": 8132 + }, + { + "input": 8133, + "interpolation": "LINEAR", + "output": 8134 + }, + { + "input": 8135, + "interpolation": "LINEAR", + "output": 8136 + }, + { + "input": 8137, + "interpolation": "LINEAR", + "output": 8138 + }, + { + "input": 8139, + "interpolation": "LINEAR", + "output": 8140 + }, + { + "input": 8141, + "interpolation": "LINEAR", + "output": 8142 + }, + { + "input": 8143, + "interpolation": "LINEAR", + "output": 8144 + }, + { + "input": 8145, + "interpolation": "LINEAR", + "output": 8146 + }, + { + "input": 8147, + "interpolation": "LINEAR", + "output": 8148 + }, + { + "input": 8149, + "interpolation": "LINEAR", + "output": 8150 + }, + { + "input": 8151, + "interpolation": "LINEAR", + "output": 8152 + }, + { + "input": 8153, + "interpolation": "LINEAR", + "output": 8154 + }, + { + "input": 8155, + "interpolation": "LINEAR", + "output": 8156 + }, + { + "input": 8157, + "interpolation": "LINEAR", + "output": 8158 + }, + { + "input": 8159, + "interpolation": "LINEAR", + "output": 8160 + }, + { + "input": 8161, + "interpolation": "LINEAR", + "output": 8162 + }, + { + "input": 8163, + "interpolation": "LINEAR", + "output": 8164 + }, + { + "input": 8165, + "interpolation": "LINEAR", + "output": 8166 + }, + { + "input": 8167, + "interpolation": "LINEAR", + "output": 8168 + }, + { + "input": 8169, + "interpolation": "LINEAR", + "output": 8170 + }, + { + "input": 8171, + "interpolation": "LINEAR", + "output": 8172 + }, + { + "input": 8173, + "interpolation": "LINEAR", + "output": 8174 + }, + { + "input": 8175, + "interpolation": "LINEAR", + "output": 8176 + }, + { + "input": 8177, + "interpolation": "LINEAR", + "output": 8178 + }, + { + "input": 8179, + "interpolation": "LINEAR", + "output": 8180 + }, + { + "input": 8181, + "interpolation": "LINEAR", + "output": 8182 + }, + { + "input": 8183, + "interpolation": "LINEAR", + "output": 8184 + }, + { + "input": 8185, + "interpolation": "LINEAR", + "output": 8186 + }, + { + "input": 8187, + "interpolation": "LINEAR", + "output": 8188 + }, + { + "input": 8189, + "interpolation": "LINEAR", + "output": 8190 + }, + { + "input": 8191, + "interpolation": "LINEAR", + "output": 8192 + }, + { + "input": 8193, + "interpolation": "LINEAR", + "output": 8194 + }, + { + "input": 8195, + "interpolation": "LINEAR", + "output": 8196 + }, + { + "input": 8197, + "interpolation": "LINEAR", + "output": 8198 + }, + { + "input": 8199, + "interpolation": "LINEAR", + "output": 8200 + }, + { + "input": 8201, + "interpolation": "LINEAR", + "output": 8202 + }, + { + "input": 8203, + "interpolation": "LINEAR", + "output": 8204 + }, + { + "input": 8205, + "interpolation": "LINEAR", + "output": 8206 + }, + { + "input": 8207, + "interpolation": "LINEAR", + "output": 8208 + }, + { + "input": 8209, + "interpolation": "LINEAR", + "output": 8210 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_DeadlyRush", + "samplers": [ + { + "input": 8211, + "interpolation": "LINEAR", + "output": 8212 + }, + { + "input": 8213, + "interpolation": "LINEAR", + "output": 8214 + }, + { + "input": 8215, + "interpolation": "LINEAR", + "output": 8216 + }, + { + "input": 8217, + "interpolation": "LINEAR", + "output": 8218 + }, + { + "input": 8219, + "interpolation": "LINEAR", + "output": 8220 + }, + { + "input": 8221, + "interpolation": "LINEAR", + "output": 8222 + }, + { + "input": 8223, + "interpolation": "LINEAR", + "output": 8224 + }, + { + "input": 8225, + "interpolation": "LINEAR", + "output": 8226 + }, + { + "input": 8227, + "interpolation": "LINEAR", + "output": 8228 + }, + { + "input": 8229, + "interpolation": "LINEAR", + "output": 8230 + }, + { + "input": 8231, + "interpolation": "LINEAR", + "output": 8232 + }, + { + "input": 8233, + "interpolation": "LINEAR", + "output": 8234 + }, + { + "input": 8235, + "interpolation": "LINEAR", + "output": 8236 + }, + { + "input": 8237, + "interpolation": "LINEAR", + "output": 8238 + }, + { + "input": 8239, + "interpolation": "LINEAR", + "output": 8240 + }, + { + "input": 8241, + "interpolation": "LINEAR", + "output": 8242 + }, + { + "input": 8243, + "interpolation": "LINEAR", + "output": 8244 + }, + { + "input": 8245, + "interpolation": "LINEAR", + "output": 8246 + }, + { + "input": 8247, + "interpolation": "LINEAR", + "output": 8248 + }, + { + "input": 8249, + "interpolation": "LINEAR", + "output": 8250 + }, + { + "input": 8251, + "interpolation": "LINEAR", + "output": 8252 + }, + { + "input": 8253, + "interpolation": "LINEAR", + "output": 8254 + }, + { + "input": 8255, + "interpolation": "LINEAR", + "output": 8256 + }, + { + "input": 8257, + "interpolation": "LINEAR", + "output": 8258 + }, + { + "input": 8259, + "interpolation": "LINEAR", + "output": 8260 + }, + { + "input": 8261, + "interpolation": "LINEAR", + "output": 8262 + }, + { + "input": 8263, + "interpolation": "LINEAR", + "output": 8264 + }, + { + "input": 8265, + "interpolation": "LINEAR", + "output": 8266 + }, + { + "input": 8267, + "interpolation": "LINEAR", + "output": 8268 + }, + { + "input": 8269, + "interpolation": "LINEAR", + "output": 8270 + }, + { + "input": 8271, + "interpolation": "LINEAR", + "output": 8272 + }, + { + "input": 8273, + "interpolation": "LINEAR", + "output": 8274 + }, + { + "input": 8275, + "interpolation": "LINEAR", + "output": 8276 + }, + { + "input": 8277, + "interpolation": "LINEAR", + "output": 8278 + }, + { + "input": 8279, + "interpolation": "LINEAR", + "output": 8280 + }, + { + "input": 8281, + "interpolation": "LINEAR", + "output": 8282 + }, + { + "input": 8283, + "interpolation": "LINEAR", + "output": 8284 + }, + { + "input": 8285, + "interpolation": "LINEAR", + "output": 8286 + }, + { + "input": 8287, + "interpolation": "LINEAR", + "output": 8288 + }, + { + "input": 8289, + "interpolation": "LINEAR", + "output": 8290 + }, + { + "input": 8291, + "interpolation": "LINEAR", + "output": 8292 + }, + { + "input": 8293, + "interpolation": "LINEAR", + "output": 8294 + }, + { + "input": 8295, + "interpolation": "LINEAR", + "output": 8296 + }, + { + "input": 8297, + "interpolation": "LINEAR", + "output": 8298 + }, + { + "input": 8299, + "interpolation": "LINEAR", + "output": 8300 + }, + { + "input": 8301, + "interpolation": "LINEAR", + "output": 8302 + }, + { + "input": 8303, + "interpolation": "LINEAR", + "output": 8304 + }, + { + "input": 8305, + "interpolation": "LINEAR", + "output": 8306 + }, + { + "input": 8307, + "interpolation": "LINEAR", + "output": 8308 + }, + { + "input": 8309, + "interpolation": "LINEAR", + "output": 8310 + }, + { + "input": 8311, + "interpolation": "LINEAR", + "output": 8312 + }, + { + "input": 8313, + "interpolation": "LINEAR", + "output": 8314 + }, + { + "input": 8315, + "interpolation": "LINEAR", + "output": 8316 + }, + { + "input": 8317, + "interpolation": "LINEAR", + "output": 8318 + }, + { + "input": 8319, + "interpolation": "LINEAR", + "output": 8320 + }, + { + "input": 8321, + "interpolation": "LINEAR", + "output": 8322 + }, + { + "input": 8323, + "interpolation": "LINEAR", + "output": 8324 + }, + { + "input": 8325, + "interpolation": "LINEAR", + "output": 8326 + }, + { + "input": 8327, + "interpolation": "LINEAR", + "output": 8328 + }, + { + "input": 8329, + "interpolation": "LINEAR", + "output": 8330 + }, + { + "input": 8331, + "interpolation": "LINEAR", + "output": 8332 + }, + { + "input": 8333, + "interpolation": "LINEAR", + "output": 8334 + }, + { + "input": 8335, + "interpolation": "LINEAR", + "output": 8336 + }, + { + "input": 8337, + "interpolation": "LINEAR", + "output": 8338 + }, + { + "input": 8339, + "interpolation": "LINEAR", + "output": 8340 + }, + { + "input": 8341, + "interpolation": "LINEAR", + "output": 8342 + }, + { + "input": 8343, + "interpolation": "LINEAR", + "output": 8344 + }, + { + "input": 8345, + "interpolation": "LINEAR", + "output": 8346 + }, + { + "input": 8347, + "interpolation": "LINEAR", + "output": 8348 + }, + { + "input": 8349, + "interpolation": "LINEAR", + "output": 8350 + }, + { + "input": 8351, + "interpolation": "LINEAR", + "output": 8352 + }, + { + "input": 8353, + "interpolation": "LINEAR", + "output": 8354 + }, + { + "input": 8355, + "interpolation": "LINEAR", + "output": 8356 + }, + { + "input": 8357, + "interpolation": "LINEAR", + "output": 8358 + }, + { + "input": 8359, + "interpolation": "LINEAR", + "output": 8360 + }, + { + "input": 8361, + "interpolation": "LINEAR", + "output": 8362 + }, + { + "input": 8363, + "interpolation": "LINEAR", + "output": 8364 + }, + { + "input": 8365, + "interpolation": "LINEAR", + "output": 8366 + }, + { + "input": 8367, + "interpolation": "LINEAR", + "output": 8368 + }, + { + "input": 8369, + "interpolation": "LINEAR", + "output": 8370 + }, + { + "input": 8371, + "interpolation": "LINEAR", + "output": 8372 + }, + { + "input": 8373, + "interpolation": "LINEAR", + "output": 8374 + }, + { + "input": 8375, + "interpolation": "LINEAR", + "output": 8376 + }, + { + "input": 8377, + "interpolation": "LINEAR", + "output": 8378 + }, + { + "input": 8379, + "interpolation": "LINEAR", + "output": 8380 + }, + { + "input": 8381, + "interpolation": "LINEAR", + "output": 8382 + }, + { + "input": 8383, + "interpolation": "LINEAR", + "output": 8384 + }, + { + "input": 8385, + "interpolation": "LINEAR", + "output": 8386 + }, + { + "input": 8387, + "interpolation": "LINEAR", + "output": 8388 + }, + { + "input": 8389, + "interpolation": "LINEAR", + "output": 8390 + }, + { + "input": 8391, + "interpolation": "LINEAR", + "output": 8392 + }, + { + "input": 8393, + "interpolation": "LINEAR", + "output": 8394 + }, + { + "input": 8395, + "interpolation": "LINEAR", + "output": 8396 + }, + { + "input": 8397, + "interpolation": "LINEAR", + "output": 8398 + }, + { + "input": 8399, + "interpolation": "LINEAR", + "output": 8400 + }, + { + "input": 8401, + "interpolation": "LINEAR", + "output": 8402 + }, + { + "input": 8403, + "interpolation": "LINEAR", + "output": 8404 + }, + { + "input": 8405, + "interpolation": "LINEAR", + "output": 8406 + }, + { + "input": 8407, + "interpolation": "LINEAR", + "output": 8408 + }, + { + "input": 8409, + "interpolation": "LINEAR", + "output": 8410 + }, + { + "input": 8411, + "interpolation": "LINEAR", + "output": 8412 + }, + { + "input": 8413, + "interpolation": "LINEAR", + "output": 8414 + }, + { + "input": 8415, + "interpolation": "LINEAR", + "output": 8416 + }, + { + "input": 8417, + "interpolation": "LINEAR", + "output": 8418 + }, + { + "input": 8419, + "interpolation": "LINEAR", + "output": 8420 + }, + { + "input": 8421, + "interpolation": "LINEAR", + "output": 8422 + }, + { + "input": 8423, + "interpolation": "LINEAR", + "output": 8424 + }, + { + "input": 8425, + "interpolation": "LINEAR", + "output": 8426 + }, + { + "input": 8427, + "interpolation": "LINEAR", + "output": 8428 + }, + { + "input": 8429, + "interpolation": "LINEAR", + "output": 8430 + }, + { + "input": 8431, + "interpolation": "LINEAR", + "output": 8432 + }, + { + "input": 8433, + "interpolation": "LINEAR", + "output": 8434 + }, + { + "input": 8435, + "interpolation": "LINEAR", + "output": 8436 + }, + { + "input": 8437, + "interpolation": "LINEAR", + "output": 8438 + }, + { + "input": 8439, + "interpolation": "LINEAR", + "output": 8440 + }, + { + "input": 8441, + "interpolation": "LINEAR", + "output": 8442 + }, + { + "input": 8443, + "interpolation": "LINEAR", + "output": 8444 + }, + { + "input": 8445, + "interpolation": "LINEAR", + "output": 8446 + }, + { + "input": 8447, + "interpolation": "LINEAR", + "output": 8448 + }, + { + "input": 8449, + "interpolation": "LINEAR", + "output": 8450 + }, + { + "input": 8451, + "interpolation": "LINEAR", + "output": 8452 + }, + { + "input": 8453, + "interpolation": "LINEAR", + "output": 8454 + }, + { + "input": 8455, + "interpolation": "LINEAR", + "output": 8456 + }, + { + "input": 8457, + "interpolation": "LINEAR", + "output": 8458 + }, + { + "input": 8459, + "interpolation": "LINEAR", + "output": 8460 + }, + { + "input": 8461, + "interpolation": "LINEAR", + "output": 8462 + }, + { + "input": 8463, + "interpolation": "LINEAR", + "output": 8464 + }, + { + "input": 8465, + "interpolation": "LINEAR", + "output": 8466 + }, + { + "input": 8467, + "interpolation": "LINEAR", + "output": 8468 + }, + { + "input": 8469, + "interpolation": "LINEAR", + "output": 8470 + }, + { + "input": 8471, + "interpolation": "LINEAR", + "output": 8472 + }, + { + "input": 8473, + "interpolation": "LINEAR", + "output": 8474 + }, + { + "input": 8475, + "interpolation": "LINEAR", + "output": 8476 + }, + { + "input": 8477, + "interpolation": "LINEAR", + "output": 8478 + }, + { + "input": 8479, + "interpolation": "LINEAR", + "output": 8480 + }, + { + "input": 8481, + "interpolation": "LINEAR", + "output": 8482 + }, + { + "input": 8483, + "interpolation": "LINEAR", + "output": 8484 + }, + { + "input": 8485, + "interpolation": "LINEAR", + "output": 8486 + }, + { + "input": 8487, + "interpolation": "LINEAR", + "output": 8488 + }, + { + "input": 8489, + "interpolation": "LINEAR", + "output": 8490 + }, + { + "input": 8491, + "interpolation": "LINEAR", + "output": 8492 + }, + { + "input": 8493, + "interpolation": "LINEAR", + "output": 8494 + }, + { + "input": 8495, + "interpolation": "LINEAR", + "output": 8496 + }, + { + "input": 8497, + "interpolation": "LINEAR", + "output": 8498 + }, + { + "input": 8499, + "interpolation": "LINEAR", + "output": 8500 + }, + { + "input": 8501, + "interpolation": "LINEAR", + "output": 8502 + }, + { + "input": 8503, + "interpolation": "LINEAR", + "output": 8504 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_Dive", + "samplers": [ + { + "input": 8505, + "interpolation": "LINEAR", + "output": 8506 + }, + { + "input": 8507, + "interpolation": "LINEAR", + "output": 8508 + }, + { + "input": 8509, + "interpolation": "LINEAR", + "output": 8510 + }, + { + "input": 8511, + "interpolation": "LINEAR", + "output": 8512 + }, + { + "input": 8513, + "interpolation": "LINEAR", + "output": 8514 + }, + { + "input": 8515, + "interpolation": "LINEAR", + "output": 8516 + }, + { + "input": 8517, + "interpolation": "LINEAR", + "output": 8518 + }, + { + "input": 8519, + "interpolation": "LINEAR", + "output": 8520 + }, + { + "input": 8521, + "interpolation": "LINEAR", + "output": 8522 + }, + { + "input": 8523, + "interpolation": "LINEAR", + "output": 8524 + }, + { + "input": 8525, + "interpolation": "LINEAR", + "output": 8526 + }, + { + "input": 8527, + "interpolation": "LINEAR", + "output": 8528 + }, + { + "input": 8529, + "interpolation": "LINEAR", + "output": 8530 + }, + { + "input": 8531, + "interpolation": "LINEAR", + "output": 8532 + }, + { + "input": 8533, + "interpolation": "LINEAR", + "output": 8534 + }, + { + "input": 8535, + "interpolation": "LINEAR", + "output": 8536 + }, + { + "input": 8537, + "interpolation": "LINEAR", + "output": 8538 + }, + { + "input": 8539, + "interpolation": "LINEAR", + "output": 8540 + }, + { + "input": 8541, + "interpolation": "LINEAR", + "output": 8542 + }, + { + "input": 8543, + "interpolation": "LINEAR", + "output": 8544 + }, + { + "input": 8545, + "interpolation": "LINEAR", + "output": 8546 + }, + { + "input": 8547, + "interpolation": "LINEAR", + "output": 8548 + }, + { + "input": 8549, + "interpolation": "LINEAR", + "output": 8550 + }, + { + "input": 8551, + "interpolation": "LINEAR", + "output": 8552 + }, + { + "input": 8553, + "interpolation": "LINEAR", + "output": 8554 + }, + { + "input": 8555, + "interpolation": "LINEAR", + "output": 8556 + }, + { + "input": 8557, + "interpolation": "LINEAR", + "output": 8558 + }, + { + "input": 8559, + "interpolation": "LINEAR", + "output": 8560 + }, + { + "input": 8561, + "interpolation": "LINEAR", + "output": 8562 + }, + { + "input": 8563, + "interpolation": "LINEAR", + "output": 8564 + }, + { + "input": 8565, + "interpolation": "LINEAR", + "output": 8566 + }, + { + "input": 8567, + "interpolation": "LINEAR", + "output": 8568 + }, + { + "input": 8569, + "interpolation": "LINEAR", + "output": 8570 + }, + { + "input": 8571, + "interpolation": "LINEAR", + "output": 8572 + }, + { + "input": 8573, + "interpolation": "LINEAR", + "output": 8574 + }, + { + "input": 8575, + "interpolation": "LINEAR", + "output": 8576 + }, + { + "input": 8577, + "interpolation": "LINEAR", + "output": 8578 + }, + { + "input": 8579, + "interpolation": "LINEAR", + "output": 8580 + }, + { + "input": 8581, + "interpolation": "LINEAR", + "output": 8582 + }, + { + "input": 8583, + "interpolation": "LINEAR", + "output": 8584 + }, + { + "input": 8585, + "interpolation": "LINEAR", + "output": 8586 + }, + { + "input": 8587, + "interpolation": "LINEAR", + "output": 8588 + }, + { + "input": 8589, + "interpolation": "LINEAR", + "output": 8590 + }, + { + "input": 8591, + "interpolation": "LINEAR", + "output": 8592 + }, + { + "input": 8593, + "interpolation": "LINEAR", + "output": 8594 + }, + { + "input": 8595, + "interpolation": "LINEAR", + "output": 8596 + }, + { + "input": 8597, + "interpolation": "LINEAR", + "output": 8598 + }, + { + "input": 8599, + "interpolation": "LINEAR", + "output": 8600 + }, + { + "input": 8601, + "interpolation": "LINEAR", + "output": 8602 + }, + { + "input": 8603, + "interpolation": "LINEAR", + "output": 8604 + }, + { + "input": 8605, + "interpolation": "LINEAR", + "output": 8606 + }, + { + "input": 8607, + "interpolation": "LINEAR", + "output": 8608 + }, + { + "input": 8609, + "interpolation": "LINEAR", + "output": 8610 + }, + { + "input": 8611, + "interpolation": "LINEAR", + "output": 8612 + }, + { + "input": 8613, + "interpolation": "LINEAR", + "output": 8614 + }, + { + "input": 8615, + "interpolation": "LINEAR", + "output": 8616 + }, + { + "input": 8617, + "interpolation": "LINEAR", + "output": 8618 + }, + { + "input": 8619, + "interpolation": "LINEAR", + "output": 8620 + }, + { + "input": 8621, + "interpolation": "LINEAR", + "output": 8622 + }, + { + "input": 8623, + "interpolation": "LINEAR", + "output": 8624 + }, + { + "input": 8625, + "interpolation": "LINEAR", + "output": 8626 + }, + { + "input": 8627, + "interpolation": "LINEAR", + "output": 8628 + }, + { + "input": 8629, + "interpolation": "LINEAR", + "output": 8630 + }, + { + "input": 8631, + "interpolation": "LINEAR", + "output": 8632 + }, + { + "input": 8633, + "interpolation": "LINEAR", + "output": 8634 + }, + { + "input": 8635, + "interpolation": "LINEAR", + "output": 8636 + }, + { + "input": 8637, + "interpolation": "LINEAR", + "output": 8638 + }, + { + "input": 8639, + "interpolation": "LINEAR", + "output": 8640 + }, + { + "input": 8641, + "interpolation": "LINEAR", + "output": 8642 + }, + { + "input": 8643, + "interpolation": "LINEAR", + "output": 8644 + }, + { + "input": 8645, + "interpolation": "LINEAR", + "output": 8646 + }, + { + "input": 8647, + "interpolation": "LINEAR", + "output": 8648 + }, + { + "input": 8649, + "interpolation": "LINEAR", + "output": 8650 + }, + { + "input": 8651, + "interpolation": "LINEAR", + "output": 8652 + }, + { + "input": 8653, + "interpolation": "LINEAR", + "output": 8654 + }, + { + "input": 8655, + "interpolation": "LINEAR", + "output": 8656 + }, + { + "input": 8657, + "interpolation": "LINEAR", + "output": 8658 + }, + { + "input": 8659, + "interpolation": "LINEAR", + "output": 8660 + }, + { + "input": 8661, + "interpolation": "LINEAR", + "output": 8662 + }, + { + "input": 8663, + "interpolation": "LINEAR", + "output": 8664 + }, + { + "input": 8665, + "interpolation": "LINEAR", + "output": 8666 + }, + { + "input": 8667, + "interpolation": "LINEAR", + "output": 8668 + }, + { + "input": 8669, + "interpolation": "LINEAR", + "output": 8670 + }, + { + "input": 8671, + "interpolation": "LINEAR", + "output": 8672 + }, + { + "input": 8673, + "interpolation": "LINEAR", + "output": 8674 + }, + { + "input": 8675, + "interpolation": "LINEAR", + "output": 8676 + }, + { + "input": 8677, + "interpolation": "LINEAR", + "output": 8678 + }, + { + "input": 8679, + "interpolation": "LINEAR", + "output": 8680 + }, + { + "input": 8681, + "interpolation": "LINEAR", + "output": 8682 + }, + { + "input": 8683, + "interpolation": "LINEAR", + "output": 8684 + }, + { + "input": 8685, + "interpolation": "LINEAR", + "output": 8686 + }, + { + "input": 8687, + "interpolation": "LINEAR", + "output": 8688 + }, + { + "input": 8689, + "interpolation": "LINEAR", + "output": 8690 + }, + { + "input": 8691, + "interpolation": "LINEAR", + "output": 8692 + }, + { + "input": 8693, + "interpolation": "LINEAR", + "output": 8694 + }, + { + "input": 8695, + "interpolation": "LINEAR", + "output": 8696 + }, + { + "input": 8697, + "interpolation": "LINEAR", + "output": 8698 + }, + { + "input": 8699, + "interpolation": "LINEAR", + "output": 8700 + }, + { + "input": 8701, + "interpolation": "LINEAR", + "output": 8702 + }, + { + "input": 8703, + "interpolation": "LINEAR", + "output": 8704 + }, + { + "input": 8705, + "interpolation": "LINEAR", + "output": 8706 + }, + { + "input": 8707, + "interpolation": "LINEAR", + "output": 8708 + }, + { + "input": 8709, + "interpolation": "LINEAR", + "output": 8710 + }, + { + "input": 8711, + "interpolation": "LINEAR", + "output": 8712 + }, + { + "input": 8713, + "interpolation": "LINEAR", + "output": 8714 + }, + { + "input": 8715, + "interpolation": "LINEAR", + "output": 8716 + }, + { + "input": 8717, + "interpolation": "LINEAR", + "output": 8718 + }, + { + "input": 8719, + "interpolation": "LINEAR", + "output": 8720 + }, + { + "input": 8721, + "interpolation": "LINEAR", + "output": 8722 + }, + { + "input": 8723, + "interpolation": "LINEAR", + "output": 8724 + }, + { + "input": 8725, + "interpolation": "LINEAR", + "output": 8726 + }, + { + "input": 8727, + "interpolation": "LINEAR", + "output": 8728 + }, + { + "input": 8729, + "interpolation": "LINEAR", + "output": 8730 + }, + { + "input": 8731, + "interpolation": "LINEAR", + "output": 8732 + }, + { + "input": 8733, + "interpolation": "LINEAR", + "output": 8734 + }, + { + "input": 8735, + "interpolation": "LINEAR", + "output": 8736 + }, + { + "input": 8737, + "interpolation": "LINEAR", + "output": 8738 + }, + { + "input": 8739, + "interpolation": "LINEAR", + "output": 8740 + }, + { + "input": 8741, + "interpolation": "LINEAR", + "output": 8742 + }, + { + "input": 8743, + "interpolation": "LINEAR", + "output": 8744 + }, + { + "input": 8745, + "interpolation": "LINEAR", + "output": 8746 + }, + { + "input": 8747, + "interpolation": "LINEAR", + "output": 8748 + }, + { + "input": 8749, + "interpolation": "LINEAR", + "output": 8750 + }, + { + "input": 8751, + "interpolation": "LINEAR", + "output": 8752 + }, + { + "input": 8753, + "interpolation": "LINEAR", + "output": 8754 + }, + { + "input": 8755, + "interpolation": "LINEAR", + "output": 8756 + }, + { + "input": 8757, + "interpolation": "LINEAR", + "output": 8758 + }, + { + "input": 8759, + "interpolation": "LINEAR", + "output": 8760 + }, + { + "input": 8761, + "interpolation": "LINEAR", + "output": 8762 + }, + { + "input": 8763, + "interpolation": "LINEAR", + "output": 8764 + }, + { + "input": 8765, + "interpolation": "LINEAR", + "output": 8766 + }, + { + "input": 8767, + "interpolation": "LINEAR", + "output": 8768 + }, + { + "input": 8769, + "interpolation": "LINEAR", + "output": 8770 + }, + { + "input": 8771, + "interpolation": "LINEAR", + "output": 8772 + }, + { + "input": 8773, + "interpolation": "LINEAR", + "output": 8774 + }, + { + "input": 8775, + "interpolation": "LINEAR", + "output": 8776 + }, + { + "input": 8777, + "interpolation": "LINEAR", + "output": 8778 + }, + { + "input": 8779, + "interpolation": "LINEAR", + "output": 8780 + }, + { + "input": 8781, + "interpolation": "LINEAR", + "output": 8782 + }, + { + "input": 8783, + "interpolation": "LINEAR", + "output": 8784 + }, + { + "input": 8785, + "interpolation": "LINEAR", + "output": 8786 + }, + { + "input": 8787, + "interpolation": "LINEAR", + "output": 8788 + }, + { + "input": 8789, + "interpolation": "LINEAR", + "output": 8790 + }, + { + "input": 8791, + "interpolation": "LINEAR", + "output": 8792 + }, + { + "input": 8793, + "interpolation": "LINEAR", + "output": 8794 + }, + { + "input": 8795, + "interpolation": "LINEAR", + "output": 8796 + }, + { + "input": 8797, + "interpolation": "LINEAR", + "output": 8798 + }, + { + "input": 8799, + "interpolation": "LINEAR", + "output": 8800 + }, + { + "input": 8801, + "interpolation": "LINEAR", + "output": 8802 + }, + { + "input": 8803, + "interpolation": "LINEAR", + "output": 8804 + }, + { + "input": 8805, + "interpolation": "LINEAR", + "output": 8806 + }, + { + "input": 8807, + "interpolation": "LINEAR", + "output": 8808 + }, + { + "input": 8809, + "interpolation": "LINEAR", + "output": 8810 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_DualForce", + "samplers": [ + { + "input": 8811, + "interpolation": "LINEAR", + "output": 8812 + }, + { + "input": 8813, + "interpolation": "LINEAR", + "output": 8814 + }, + { + "input": 8815, + "interpolation": "LINEAR", + "output": 8816 + }, + { + "input": 8817, + "interpolation": "LINEAR", + "output": 8818 + }, + { + "input": 8819, + "interpolation": "LINEAR", + "output": 8820 + }, + { + "input": 8821, + "interpolation": "LINEAR", + "output": 8822 + }, + { + "input": 8823, + "interpolation": "LINEAR", + "output": 8824 + }, + { + "input": 8825, + "interpolation": "LINEAR", + "output": 8826 + }, + { + "input": 8827, + "interpolation": "LINEAR", + "output": 8828 + }, + { + "input": 8829, + "interpolation": "LINEAR", + "output": 8830 + }, + { + "input": 8831, + "interpolation": "LINEAR", + "output": 8832 + }, + { + "input": 8833, + "interpolation": "LINEAR", + "output": 8834 + }, + { + "input": 8835, + "interpolation": "LINEAR", + "output": 8836 + }, + { + "input": 8837, + "interpolation": "LINEAR", + "output": 8838 + }, + { + "input": 8839, + "interpolation": "LINEAR", + "output": 8840 + }, + { + "input": 8841, + "interpolation": "LINEAR", + "output": 8842 + }, + { + "input": 8843, + "interpolation": "LINEAR", + "output": 8844 + }, + { + "input": 8845, + "interpolation": "LINEAR", + "output": 8846 + }, + { + "input": 8847, + "interpolation": "LINEAR", + "output": 8848 + }, + { + "input": 8849, + "interpolation": "LINEAR", + "output": 8850 + }, + { + "input": 8851, + "interpolation": "LINEAR", + "output": 8852 + }, + { + "input": 8853, + "interpolation": "LINEAR", + "output": 8854 + }, + { + "input": 8855, + "interpolation": "LINEAR", + "output": 8856 + }, + { + "input": 8857, + "interpolation": "LINEAR", + "output": 8858 + }, + { + "input": 8859, + "interpolation": "LINEAR", + "output": 8860 + }, + { + "input": 8861, + "interpolation": "LINEAR", + "output": 8862 + }, + { + "input": 8863, + "interpolation": "LINEAR", + "output": 8864 + }, + { + "input": 8865, + "interpolation": "LINEAR", + "output": 8866 + }, + { + "input": 8867, + "interpolation": "LINEAR", + "output": 8868 + }, + { + "input": 8869, + "interpolation": "LINEAR", + "output": 8870 + }, + { + "input": 8871, + "interpolation": "LINEAR", + "output": 8872 + }, + { + "input": 8873, + "interpolation": "LINEAR", + "output": 8874 + }, + { + "input": 8875, + "interpolation": "LINEAR", + "output": 8876 + }, + { + "input": 8877, + "interpolation": "LINEAR", + "output": 8878 + }, + { + "input": 8879, + "interpolation": "LINEAR", + "output": 8880 + }, + { + "input": 8881, + "interpolation": "LINEAR", + "output": 8882 + }, + { + "input": 8883, + "interpolation": "LINEAR", + "output": 8884 + }, + { + "input": 8885, + "interpolation": "LINEAR", + "output": 8886 + }, + { + "input": 8887, + "interpolation": "LINEAR", + "output": 8888 + }, + { + "input": 8889, + "interpolation": "LINEAR", + "output": 8890 + }, + { + "input": 8891, + "interpolation": "LINEAR", + "output": 8892 + }, + { + "input": 8893, + "interpolation": "LINEAR", + "output": 8894 + }, + { + "input": 8895, + "interpolation": "LINEAR", + "output": 8896 + }, + { + "input": 8897, + "interpolation": "LINEAR", + "output": 8898 + }, + { + "input": 8899, + "interpolation": "LINEAR", + "output": 8900 + }, + { + "input": 8901, + "interpolation": "LINEAR", + "output": 8902 + }, + { + "input": 8903, + "interpolation": "LINEAR", + "output": 8904 + }, + { + "input": 8905, + "interpolation": "LINEAR", + "output": 8906 + }, + { + "input": 8907, + "interpolation": "LINEAR", + "output": 8908 + }, + { + "input": 8909, + "interpolation": "LINEAR", + "output": 8910 + }, + { + "input": 8911, + "interpolation": "LINEAR", + "output": 8912 + }, + { + "input": 8913, + "interpolation": "LINEAR", + "output": 8914 + }, + { + "input": 8915, + "interpolation": "LINEAR", + "output": 8916 + }, + { + "input": 8917, + "interpolation": "LINEAR", + "output": 8918 + }, + { + "input": 8919, + "interpolation": "LINEAR", + "output": 8920 + }, + { + "input": 8921, + "interpolation": "LINEAR", + "output": 8922 + }, + { + "input": 8923, + "interpolation": "LINEAR", + "output": 8924 + }, + { + "input": 8925, + "interpolation": "LINEAR", + "output": 8926 + }, + { + "input": 8927, + "interpolation": "LINEAR", + "output": 8928 + }, + { + "input": 8929, + "interpolation": "LINEAR", + "output": 8930 + }, + { + "input": 8931, + "interpolation": "LINEAR", + "output": 8932 + }, + { + "input": 8933, + "interpolation": "LINEAR", + "output": 8934 + }, + { + "input": 8935, + "interpolation": "LINEAR", + "output": 8936 + }, + { + "input": 8937, + "interpolation": "LINEAR", + "output": 8938 + }, + { + "input": 8939, + "interpolation": "LINEAR", + "output": 8940 + }, + { + "input": 8941, + "interpolation": "LINEAR", + "output": 8942 + }, + { + "input": 8943, + "interpolation": "LINEAR", + "output": 8944 + }, + { + "input": 8945, + "interpolation": "LINEAR", + "output": 8946 + }, + { + "input": 8947, + "interpolation": "LINEAR", + "output": 8948 + }, + { + "input": 8949, + "interpolation": "LINEAR", + "output": 8950 + }, + { + "input": 8951, + "interpolation": "LINEAR", + "output": 8952 + }, + { + "input": 8953, + "interpolation": "LINEAR", + "output": 8954 + }, + { + "input": 8955, + "interpolation": "LINEAR", + "output": 8956 + }, + { + "input": 8957, + "interpolation": "LINEAR", + "output": 8958 + }, + { + "input": 8959, + "interpolation": "LINEAR", + "output": 8960 + }, + { + "input": 8961, + "interpolation": "LINEAR", + "output": 8962 + }, + { + "input": 8963, + "interpolation": "LINEAR", + "output": 8964 + }, + { + "input": 8965, + "interpolation": "LINEAR", + "output": 8966 + }, + { + "input": 8967, + "interpolation": "LINEAR", + "output": 8968 + }, + { + "input": 8969, + "interpolation": "LINEAR", + "output": 8970 + }, + { + "input": 8971, + "interpolation": "LINEAR", + "output": 8972 + }, + { + "input": 8973, + "interpolation": "LINEAR", + "output": 8974 + }, + { + "input": 8975, + "interpolation": "LINEAR", + "output": 8976 + }, + { + "input": 8977, + "interpolation": "LINEAR", + "output": 8978 + }, + { + "input": 8979, + "interpolation": "LINEAR", + "output": 8980 + }, + { + "input": 8981, + "interpolation": "LINEAR", + "output": 8982 + }, + { + "input": 8983, + "interpolation": "LINEAR", + "output": 8984 + }, + { + "input": 8985, + "interpolation": "LINEAR", + "output": 8986 + }, + { + "input": 8987, + "interpolation": "LINEAR", + "output": 8988 + }, + { + "input": 8989, + "interpolation": "LINEAR", + "output": 8990 + }, + { + "input": 8991, + "interpolation": "LINEAR", + "output": 8992 + }, + { + "input": 8993, + "interpolation": "LINEAR", + "output": 8994 + }, + { + "input": 8995, + "interpolation": "LINEAR", + "output": 8996 + }, + { + "input": 8997, + "interpolation": "LINEAR", + "output": 8998 + }, + { + "input": 8999, + "interpolation": "LINEAR", + "output": 9000 + }, + { + "input": 9001, + "interpolation": "LINEAR", + "output": 9002 + }, + { + "input": 9003, + "interpolation": "LINEAR", + "output": 9004 + }, + { + "input": 9005, + "interpolation": "LINEAR", + "output": 9006 + }, + { + "input": 9007, + "interpolation": "LINEAR", + "output": 9008 + }, + { + "input": 9009, + "interpolation": "LINEAR", + "output": 9010 + }, + { + "input": 9011, + "interpolation": "LINEAR", + "output": 9012 + }, + { + "input": 9013, + "interpolation": "LINEAR", + "output": 9014 + }, + { + "input": 9015, + "interpolation": "LINEAR", + "output": 9016 + }, + { + "input": 9017, + "interpolation": "LINEAR", + "output": 9018 + }, + { + "input": 9019, + "interpolation": "LINEAR", + "output": 9020 + }, + { + "input": 9021, + "interpolation": "LINEAR", + "output": 9022 + }, + { + "input": 9023, + "interpolation": "LINEAR", + "output": 9024 + }, + { + "input": 9025, + "interpolation": "LINEAR", + "output": 9026 + }, + { + "input": 9027, + "interpolation": "LINEAR", + "output": 9028 + }, + { + "input": 9029, + "interpolation": "LINEAR", + "output": 9030 + }, + { + "input": 9031, + "interpolation": "LINEAR", + "output": 9032 + }, + { + "input": 9033, + "interpolation": "LINEAR", + "output": 9034 + }, + { + "input": 9035, + "interpolation": "LINEAR", + "output": 9036 + }, + { + "input": 9037, + "interpolation": "LINEAR", + "output": 9038 + }, + { + "input": 9039, + "interpolation": "LINEAR", + "output": 9040 + }, + { + "input": 9041, + "interpolation": "LINEAR", + "output": 9042 + }, + { + "input": 9043, + "interpolation": "LINEAR", + "output": 9044 + }, + { + "input": 9045, + "interpolation": "LINEAR", + "output": 9046 + }, + { + "input": 9047, + "interpolation": "LINEAR", + "output": 9048 + }, + { + "input": 9049, + "interpolation": "LINEAR", + "output": 9050 + }, + { + "input": 9051, + "interpolation": "LINEAR", + "output": 9052 + }, + { + "input": 9053, + "interpolation": "LINEAR", + "output": 9054 + }, + { + "input": 9055, + "interpolation": "LINEAR", + "output": 9056 + }, + { + "input": 9057, + "interpolation": "LINEAR", + "output": 9058 + }, + { + "input": 9059, + "interpolation": "LINEAR", + "output": 9060 + }, + { + "input": 9061, + "interpolation": "LINEAR", + "output": 9062 + }, + { + "input": 9063, + "interpolation": "LINEAR", + "output": 9064 + }, + { + "input": 9065, + "interpolation": "LINEAR", + "output": 9066 + }, + { + "input": 9067, + "interpolation": "LINEAR", + "output": 9068 + }, + { + "input": 9069, + "interpolation": "LINEAR", + "output": 9070 + }, + { + "input": 9071, + "interpolation": "LINEAR", + "output": 9072 + }, + { + "input": 9073, + "interpolation": "LINEAR", + "output": 9074 + }, + { + "input": 9075, + "interpolation": "LINEAR", + "output": 9076 + }, + { + "input": 9077, + "interpolation": "LINEAR", + "output": 9078 + }, + { + "input": 9079, + "interpolation": "LINEAR", + "output": 9080 + }, + { + "input": 9081, + "interpolation": "LINEAR", + "output": 9082 + }, + { + "input": 9083, + "interpolation": "LINEAR", + "output": 9084 + }, + { + "input": 9085, + "interpolation": "LINEAR", + "output": 9086 + }, + { + "input": 9087, + "interpolation": "LINEAR", + "output": 9088 + }, + { + "input": 9089, + "interpolation": "LINEAR", + "output": 9090 + }, + { + "input": 9091, + "interpolation": "LINEAR", + "output": 9092 + }, + { + "input": 9093, + "interpolation": "LINEAR", + "output": 9094 + }, + { + "input": 9095, + "interpolation": "LINEAR", + "output": 9096 + }, + { + "input": 9097, + "interpolation": "LINEAR", + "output": 9098 + }, + { + "input": 9099, + "interpolation": "LINEAR", + "output": 9100 + }, + { + "input": 9101, + "interpolation": "LINEAR", + "output": 9102 + }, + { + "input": 9103, + "interpolation": "LINEAR", + "output": 9104 + }, + { + "input": 9105, + "interpolation": "LINEAR", + "output": 9106 + }, + { + "input": 9107, + "interpolation": "LINEAR", + "output": 9108 + }, + { + "input": 9109, + "interpolation": "LINEAR", + "output": 9110 + }, + { + "input": 9111, + "interpolation": "LINEAR", + "output": 9112 + }, + { + "input": 9113, + "interpolation": "LINEAR", + "output": 9114 + }, + { + "input": 9115, + "interpolation": "LINEAR", + "output": 9116 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_Hack", + "samplers": [ + { + "input": 9117, + "interpolation": "LINEAR", + "output": 9118 + }, + { + "input": 9119, + "interpolation": "LINEAR", + "output": 9120 + }, + { + "input": 9121, + "interpolation": "LINEAR", + "output": 9122 + }, + { + "input": 9123, + "interpolation": "LINEAR", + "output": 9124 + }, + { + "input": 9125, + "interpolation": "LINEAR", + "output": 9126 + }, + { + "input": 9127, + "interpolation": "LINEAR", + "output": 9128 + }, + { + "input": 9129, + "interpolation": "LINEAR", + "output": 9130 + }, + { + "input": 9131, + "interpolation": "LINEAR", + "output": 9132 + }, + { + "input": 9133, + "interpolation": "LINEAR", + "output": 9134 + }, + { + "input": 9135, + "interpolation": "LINEAR", + "output": 9136 + }, + { + "input": 9137, + "interpolation": "LINEAR", + "output": 9138 + }, + { + "input": 9139, + "interpolation": "LINEAR", + "output": 9140 + }, + { + "input": 9141, + "interpolation": "LINEAR", + "output": 9142 + }, + { + "input": 9143, + "interpolation": "LINEAR", + "output": 9144 + }, + { + "input": 9145, + "interpolation": "LINEAR", + "output": 9146 + }, + { + "input": 9147, + "interpolation": "LINEAR", + "output": 9148 + }, + { + "input": 9149, + "interpolation": "LINEAR", + "output": 9150 + }, + { + "input": 9151, + "interpolation": "LINEAR", + "output": 9152 + }, + { + "input": 9153, + "interpolation": "LINEAR", + "output": 9154 + }, + { + "input": 9155, + "interpolation": "LINEAR", + "output": 9156 + }, + { + "input": 9157, + "interpolation": "LINEAR", + "output": 9158 + }, + { + "input": 9159, + "interpolation": "LINEAR", + "output": 9160 + }, + { + "input": 9161, + "interpolation": "LINEAR", + "output": 9162 + }, + { + "input": 9163, + "interpolation": "LINEAR", + "output": 9164 + }, + { + "input": 9165, + "interpolation": "LINEAR", + "output": 9166 + }, + { + "input": 9167, + "interpolation": "LINEAR", + "output": 9168 + }, + { + "input": 9169, + "interpolation": "LINEAR", + "output": 9170 + }, + { + "input": 9171, + "interpolation": "LINEAR", + "output": 9172 + }, + { + "input": 9173, + "interpolation": "LINEAR", + "output": 9174 + }, + { + "input": 9175, + "interpolation": "LINEAR", + "output": 9176 + }, + { + "input": 9177, + "interpolation": "LINEAR", + "output": 9178 + }, + { + "input": 9179, + "interpolation": "LINEAR", + "output": 9180 + }, + { + "input": 9181, + "interpolation": "LINEAR", + "output": 9182 + }, + { + "input": 9183, + "interpolation": "LINEAR", + "output": 9184 + }, + { + "input": 9185, + "interpolation": "LINEAR", + "output": 9186 + }, + { + "input": 9187, + "interpolation": "LINEAR", + "output": 9188 + }, + { + "input": 9189, + "interpolation": "LINEAR", + "output": 9190 + }, + { + "input": 9191, + "interpolation": "LINEAR", + "output": 9192 + }, + { + "input": 9193, + "interpolation": "LINEAR", + "output": 9194 + }, + { + "input": 9195, + "interpolation": "LINEAR", + "output": 9196 + }, + { + "input": 9197, + "interpolation": "LINEAR", + "output": 9198 + }, + { + "input": 9199, + "interpolation": "LINEAR", + "output": 9200 + }, + { + "input": 9201, + "interpolation": "LINEAR", + "output": 9202 + }, + { + "input": 9203, + "interpolation": "LINEAR", + "output": 9204 + }, + { + "input": 9205, + "interpolation": "LINEAR", + "output": 9206 + }, + { + "input": 9207, + "interpolation": "LINEAR", + "output": 9208 + }, + { + "input": 9209, + "interpolation": "LINEAR", + "output": 9210 + }, + { + "input": 9211, + "interpolation": "LINEAR", + "output": 9212 + }, + { + "input": 9213, + "interpolation": "LINEAR", + "output": 9214 + }, + { + "input": 9215, + "interpolation": "LINEAR", + "output": 9216 + }, + { + "input": 9217, + "interpolation": "LINEAR", + "output": 9218 + }, + { + "input": 9219, + "interpolation": "LINEAR", + "output": 9220 + }, + { + "input": 9221, + "interpolation": "LINEAR", + "output": 9222 + }, + { + "input": 9223, + "interpolation": "LINEAR", + "output": 9224 + }, + { + "input": 9225, + "interpolation": "LINEAR", + "output": 9226 + }, + { + "input": 9227, + "interpolation": "LINEAR", + "output": 9228 + }, + { + "input": 9229, + "interpolation": "LINEAR", + "output": 9230 + }, + { + "input": 9231, + "interpolation": "LINEAR", + "output": 9232 + }, + { + "input": 9233, + "interpolation": "LINEAR", + "output": 9234 + }, + { + "input": 9235, + "interpolation": "LINEAR", + "output": 9236 + }, + { + "input": 9237, + "interpolation": "LINEAR", + "output": 9238 + }, + { + "input": 9239, + "interpolation": "LINEAR", + "output": 9240 + }, + { + "input": 9241, + "interpolation": "LINEAR", + "output": 9242 + }, + { + "input": 9243, + "interpolation": "LINEAR", + "output": 9244 + }, + { + "input": 9245, + "interpolation": "LINEAR", + "output": 9246 + }, + { + "input": 9247, + "interpolation": "LINEAR", + "output": 9248 + }, + { + "input": 9249, + "interpolation": "LINEAR", + "output": 9250 + }, + { + "input": 9251, + "interpolation": "LINEAR", + "output": 9252 + }, + { + "input": 9253, + "interpolation": "LINEAR", + "output": 9254 + }, + { + "input": 9255, + "interpolation": "LINEAR", + "output": 9256 + }, + { + "input": 9257, + "interpolation": "LINEAR", + "output": 9258 + }, + { + "input": 9259, + "interpolation": "LINEAR", + "output": 9260 + }, + { + "input": 9261, + "interpolation": "LINEAR", + "output": 9262 + }, + { + "input": 9263, + "interpolation": "LINEAR", + "output": 9264 + }, + { + "input": 9265, + "interpolation": "LINEAR", + "output": 9266 + }, + { + "input": 9267, + "interpolation": "LINEAR", + "output": 9268 + }, + { + "input": 9269, + "interpolation": "LINEAR", + "output": 9270 + }, + { + "input": 9271, + "interpolation": "LINEAR", + "output": 9272 + }, + { + "input": 9273, + "interpolation": "LINEAR", + "output": 9274 + }, + { + "input": 9275, + "interpolation": "LINEAR", + "output": 9276 + }, + { + "input": 9277, + "interpolation": "LINEAR", + "output": 9278 + }, + { + "input": 9279, + "interpolation": "LINEAR", + "output": 9280 + }, + { + "input": 9281, + "interpolation": "LINEAR", + "output": 9282 + }, + { + "input": 9283, + "interpolation": "LINEAR", + "output": 9284 + }, + { + "input": 9285, + "interpolation": "LINEAR", + "output": 9286 + }, + { + "input": 9287, + "interpolation": "LINEAR", + "output": 9288 + }, + { + "input": 9289, + "interpolation": "LINEAR", + "output": 9290 + }, + { + "input": 9291, + "interpolation": "LINEAR", + "output": 9292 + }, + { + "input": 9293, + "interpolation": "LINEAR", + "output": 9294 + }, + { + "input": 9295, + "interpolation": "LINEAR", + "output": 9296 + }, + { + "input": 9297, + "interpolation": "LINEAR", + "output": 9298 + }, + { + "input": 9299, + "interpolation": "LINEAR", + "output": 9300 + }, + { + "input": 9301, + "interpolation": "LINEAR", + "output": 9302 + }, + { + "input": 9303, + "interpolation": "LINEAR", + "output": 9304 + }, + { + "input": 9305, + "interpolation": "LINEAR", + "output": 9306 + }, + { + "input": 9307, + "interpolation": "LINEAR", + "output": 9308 + }, + { + "input": 9309, + "interpolation": "LINEAR", + "output": 9310 + }, + { + "input": 9311, + "interpolation": "LINEAR", + "output": 9312 + }, + { + "input": 9313, + "interpolation": "LINEAR", + "output": 9314 + }, + { + "input": 9315, + "interpolation": "LINEAR", + "output": 9316 + }, + { + "input": 9317, + "interpolation": "LINEAR", + "output": 9318 + }, + { + "input": 9319, + "interpolation": "LINEAR", + "output": 9320 + }, + { + "input": 9321, + "interpolation": "LINEAR", + "output": 9322 + }, + { + "input": 9323, + "interpolation": "LINEAR", + "output": 9324 + }, + { + "input": 9325, + "interpolation": "LINEAR", + "output": 9326 + }, + { + "input": 9327, + "interpolation": "LINEAR", + "output": 9328 + }, + { + "input": 9329, + "interpolation": "LINEAR", + "output": 9330 + }, + { + "input": 9331, + "interpolation": "LINEAR", + "output": 9332 + }, + { + "input": 9333, + "interpolation": "LINEAR", + "output": 9334 + }, + { + "input": 9335, + "interpolation": "LINEAR", + "output": 9336 + }, + { + "input": 9337, + "interpolation": "LINEAR", + "output": 9338 + }, + { + "input": 9339, + "interpolation": "LINEAR", + "output": 9340 + }, + { + "input": 9341, + "interpolation": "LINEAR", + "output": 9342 + }, + { + "input": 9343, + "interpolation": "LINEAR", + "output": 9344 + }, + { + "input": 9345, + "interpolation": "LINEAR", + "output": 9346 + }, + { + "input": 9347, + "interpolation": "LINEAR", + "output": 9348 + }, + { + "input": 9349, + "interpolation": "LINEAR", + "output": 9350 + }, + { + "input": 9351, + "interpolation": "LINEAR", + "output": 9352 + }, + { + "input": 9353, + "interpolation": "LINEAR", + "output": 9354 + }, + { + "input": 9355, + "interpolation": "LINEAR", + "output": 9356 + }, + { + "input": 9357, + "interpolation": "LINEAR", + "output": 9358 + }, + { + "input": 9359, + "interpolation": "LINEAR", + "output": 9360 + }, + { + "input": 9361, + "interpolation": "LINEAR", + "output": 9362 + }, + { + "input": 9363, + "interpolation": "LINEAR", + "output": 9364 + }, + { + "input": 9365, + "interpolation": "LINEAR", + "output": 9366 + }, + { + "input": 9367, + "interpolation": "LINEAR", + "output": 9368 + }, + { + "input": 9369, + "interpolation": "LINEAR", + "output": 9370 + }, + { + "input": 9371, + "interpolation": "LINEAR", + "output": 9372 + }, + { + "input": 9373, + "interpolation": "LINEAR", + "output": 9374 + }, + { + "input": 9375, + "interpolation": "LINEAR", + "output": 9376 + }, + { + "input": 9377, + "interpolation": "LINEAR", + "output": 9378 + }, + { + "input": 9379, + "interpolation": "LINEAR", + "output": 9380 + }, + { + "input": 9381, + "interpolation": "LINEAR", + "output": 9382 + }, + { + "input": 9383, + "interpolation": "LINEAR", + "output": 9384 + }, + { + "input": 9385, + "interpolation": "LINEAR", + "output": 9386 + }, + { + "input": 9387, + "interpolation": "LINEAR", + "output": 9388 + }, + { + "input": 9389, + "interpolation": "LINEAR", + "output": 9390 + }, + { + "input": 9391, + "interpolation": "LINEAR", + "output": 9392 + }, + { + "input": 9393, + "interpolation": "LINEAR", + "output": 9394 + }, + { + "input": 9395, + "interpolation": "LINEAR", + "output": 9396 + }, + { + "input": 9397, + "interpolation": "LINEAR", + "output": 9398 + }, + { + "input": 9399, + "interpolation": "LINEAR", + "output": 9400 + }, + { + "input": 9401, + "interpolation": "LINEAR", + "output": 9402 + }, + { + "input": 9403, + "interpolation": "LINEAR", + "output": 9404 + }, + { + "input": 9405, + "interpolation": "LINEAR", + "output": 9406 + }, + { + "input": 9407, + "interpolation": "LINEAR", + "output": 9408 + }, + { + "input": 9409, + "interpolation": "LINEAR", + "output": 9410 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_RoundForce", + "samplers": [ + { + "input": 9411, + "interpolation": "LINEAR", + "output": 9412 + }, + { + "input": 9413, + "interpolation": "LINEAR", + "output": 9414 + }, + { + "input": 9415, + "interpolation": "LINEAR", + "output": 9416 + }, + { + "input": 9417, + "interpolation": "LINEAR", + "output": 9418 + }, + { + "input": 9419, + "interpolation": "LINEAR", + "output": 9420 + }, + { + "input": 9421, + "interpolation": "LINEAR", + "output": 9422 + }, + { + "input": 9423, + "interpolation": "LINEAR", + "output": 9424 + }, + { + "input": 9425, + "interpolation": "LINEAR", + "output": 9426 + }, + { + "input": 9427, + "interpolation": "LINEAR", + "output": 9428 + }, + { + "input": 9429, + "interpolation": "LINEAR", + "output": 9430 + }, + { + "input": 9431, + "interpolation": "LINEAR", + "output": 9432 + }, + { + "input": 9433, + "interpolation": "LINEAR", + "output": 9434 + }, + { + "input": 9435, + "interpolation": "LINEAR", + "output": 9436 + }, + { + "input": 9437, + "interpolation": "LINEAR", + "output": 9438 + }, + { + "input": 9439, + "interpolation": "LINEAR", + "output": 9440 + }, + { + "input": 9441, + "interpolation": "LINEAR", + "output": 9442 + }, + { + "input": 9443, + "interpolation": "LINEAR", + "output": 9444 + }, + { + "input": 9445, + "interpolation": "LINEAR", + "output": 9446 + }, + { + "input": 9447, + "interpolation": "LINEAR", + "output": 9448 + }, + { + "input": 9449, + "interpolation": "LINEAR", + "output": 9450 + }, + { + "input": 9451, + "interpolation": "LINEAR", + "output": 9452 + }, + { + "input": 9453, + "interpolation": "LINEAR", + "output": 9454 + }, + { + "input": 9455, + "interpolation": "LINEAR", + "output": 9456 + }, + { + "input": 9457, + "interpolation": "LINEAR", + "output": 9458 + }, + { + "input": 9459, + "interpolation": "LINEAR", + "output": 9460 + }, + { + "input": 9461, + "interpolation": "LINEAR", + "output": 9462 + }, + { + "input": 9463, + "interpolation": "LINEAR", + "output": 9464 + }, + { + "input": 9465, + "interpolation": "LINEAR", + "output": 9466 + }, + { + "input": 9467, + "interpolation": "LINEAR", + "output": 9468 + }, + { + "input": 9469, + "interpolation": "LINEAR", + "output": 9470 + }, + { + "input": 9471, + "interpolation": "LINEAR", + "output": 9472 + }, + { + "input": 9473, + "interpolation": "LINEAR", + "output": 9474 + }, + { + "input": 9475, + "interpolation": "LINEAR", + "output": 9476 + }, + { + "input": 9477, + "interpolation": "LINEAR", + "output": 9478 + }, + { + "input": 9479, + "interpolation": "LINEAR", + "output": 9480 + }, + { + "input": 9481, + "interpolation": "LINEAR", + "output": 9482 + }, + { + "input": 9483, + "interpolation": "LINEAR", + "output": 9484 + }, + { + "input": 9485, + "interpolation": "LINEAR", + "output": 9486 + }, + { + "input": 9487, + "interpolation": "LINEAR", + "output": 9488 + }, + { + "input": 9489, + "interpolation": "LINEAR", + "output": 9490 + }, + { + "input": 9491, + "interpolation": "LINEAR", + "output": 9492 + }, + { + "input": 9493, + "interpolation": "LINEAR", + "output": 9494 + }, + { + "input": 9495, + "interpolation": "LINEAR", + "output": 9496 + }, + { + "input": 9497, + "interpolation": "LINEAR", + "output": 9498 + }, + { + "input": 9499, + "interpolation": "LINEAR", + "output": 9500 + }, + { + "input": 9501, + "interpolation": "LINEAR", + "output": 9502 + }, + { + "input": 9503, + "interpolation": "LINEAR", + "output": 9504 + }, + { + "input": 9505, + "interpolation": "LINEAR", + "output": 9506 + }, + { + "input": 9507, + "interpolation": "LINEAR", + "output": 9508 + }, + { + "input": 9509, + "interpolation": "LINEAR", + "output": 9510 + }, + { + "input": 9511, + "interpolation": "LINEAR", + "output": 9512 + }, + { + "input": 9513, + "interpolation": "LINEAR", + "output": 9514 + }, + { + "input": 9515, + "interpolation": "LINEAR", + "output": 9516 + }, + { + "input": 9517, + "interpolation": "LINEAR", + "output": 9518 + }, + { + "input": 9519, + "interpolation": "LINEAR", + "output": 9520 + }, + { + "input": 9521, + "interpolation": "LINEAR", + "output": 9522 + }, + { + "input": 9523, + "interpolation": "LINEAR", + "output": 9524 + }, + { + "input": 9525, + "interpolation": "LINEAR", + "output": 9526 + }, + { + "input": 9527, + "interpolation": "LINEAR", + "output": 9528 + }, + { + "input": 9529, + "interpolation": "LINEAR", + "output": 9530 + }, + { + "input": 9531, + "interpolation": "LINEAR", + "output": 9532 + }, + { + "input": 9533, + "interpolation": "LINEAR", + "output": 9534 + }, + { + "input": 9535, + "interpolation": "LINEAR", + "output": 9536 + }, + { + "input": 9537, + "interpolation": "LINEAR", + "output": 9538 + }, + { + "input": 9539, + "interpolation": "LINEAR", + "output": 9540 + }, + { + "input": 9541, + "interpolation": "LINEAR", + "output": 9542 + }, + { + "input": 9543, + "interpolation": "LINEAR", + "output": 9544 + }, + { + "input": 9545, + "interpolation": "LINEAR", + "output": 9546 + }, + { + "input": 9547, + "interpolation": "LINEAR", + "output": 9548 + }, + { + "input": 9549, + "interpolation": "LINEAR", + "output": 9550 + }, + { + "input": 9551, + "interpolation": "LINEAR", + "output": 9552 + }, + { + "input": 9553, + "interpolation": "LINEAR", + "output": 9554 + }, + { + "input": 9555, + "interpolation": "LINEAR", + "output": 9556 + }, + { + "input": 9557, + "interpolation": "LINEAR", + "output": 9558 + }, + { + "input": 9559, + "interpolation": "LINEAR", + "output": 9560 + }, + { + "input": 9561, + "interpolation": "LINEAR", + "output": 9562 + }, + { + "input": 9563, + "interpolation": "LINEAR", + "output": 9564 + }, + { + "input": 9565, + "interpolation": "LINEAR", + "output": 9566 + }, + { + "input": 9567, + "interpolation": "LINEAR", + "output": 9568 + }, + { + "input": 9569, + "interpolation": "LINEAR", + "output": 9570 + }, + { + "input": 9571, + "interpolation": "LINEAR", + "output": 9572 + }, + { + "input": 9573, + "interpolation": "LINEAR", + "output": 9574 + }, + { + "input": 9575, + "interpolation": "LINEAR", + "output": 9576 + }, + { + "input": 9577, + "interpolation": "LINEAR", + "output": 9578 + }, + { + "input": 9579, + "interpolation": "LINEAR", + "output": 9580 + }, + { + "input": 9581, + "interpolation": "LINEAR", + "output": 9582 + }, + { + "input": 9583, + "interpolation": "LINEAR", + "output": 9584 + }, + { + "input": 9585, + "interpolation": "LINEAR", + "output": 9586 + }, + { + "input": 9587, + "interpolation": "LINEAR", + "output": 9588 + }, + { + "input": 9589, + "interpolation": "LINEAR", + "output": 9590 + }, + { + "input": 9591, + "interpolation": "LINEAR", + "output": 9592 + }, + { + "input": 9593, + "interpolation": "LINEAR", + "output": 9594 + }, + { + "input": 9595, + "interpolation": "LINEAR", + "output": 9596 + }, + { + "input": 9597, + "interpolation": "LINEAR", + "output": 9598 + }, + { + "input": 9599, + "interpolation": "LINEAR", + "output": 9600 + }, + { + "input": 9601, + "interpolation": "LINEAR", + "output": 9602 + }, + { + "input": 9603, + "interpolation": "LINEAR", + "output": 9604 + }, + { + "input": 9605, + "interpolation": "LINEAR", + "output": 9606 + }, + { + "input": 9607, + "interpolation": "LINEAR", + "output": 9608 + }, + { + "input": 9609, + "interpolation": "LINEAR", + "output": 9610 + }, + { + "input": 9611, + "interpolation": "LINEAR", + "output": 9612 + }, + { + "input": 9613, + "interpolation": "LINEAR", + "output": 9614 + }, + { + "input": 9615, + "interpolation": "LINEAR", + "output": 9616 + }, + { + "input": 9617, + "interpolation": "LINEAR", + "output": 9618 + }, + { + "input": 9619, + "interpolation": "LINEAR", + "output": 9620 + }, + { + "input": 9621, + "interpolation": "LINEAR", + "output": 9622 + }, + { + "input": 9623, + "interpolation": "LINEAR", + "output": 9624 + }, + { + "input": 9625, + "interpolation": "LINEAR", + "output": 9626 + }, + { + "input": 9627, + "interpolation": "LINEAR", + "output": 9628 + }, + { + "input": 9629, + "interpolation": "LINEAR", + "output": 9630 + }, + { + "input": 9631, + "interpolation": "LINEAR", + "output": 9632 + }, + { + "input": 9633, + "interpolation": "LINEAR", + "output": 9634 + }, + { + "input": 9635, + "interpolation": "LINEAR", + "output": 9636 + }, + { + "input": 9637, + "interpolation": "LINEAR", + "output": 9638 + }, + { + "input": 9639, + "interpolation": "LINEAR", + "output": 9640 + }, + { + "input": 9641, + "interpolation": "LINEAR", + "output": 9642 + }, + { + "input": 9643, + "interpolation": "LINEAR", + "output": 9644 + }, + { + "input": 9645, + "interpolation": "LINEAR", + "output": 9646 + }, + { + "input": 9647, + "interpolation": "LINEAR", + "output": 9648 + }, + { + "input": 9649, + "interpolation": "LINEAR", + "output": 9650 + }, + { + "input": 9651, + "interpolation": "LINEAR", + "output": 9652 + }, + { + "input": 9653, + "interpolation": "LINEAR", + "output": 9654 + }, + { + "input": 9655, + "interpolation": "LINEAR", + "output": 9656 + }, + { + "input": 9657, + "interpolation": "LINEAR", + "output": 9658 + }, + { + "input": 9659, + "interpolation": "LINEAR", + "output": 9660 + }, + { + "input": 9661, + "interpolation": "LINEAR", + "output": 9662 + }, + { + "input": 9663, + "interpolation": "LINEAR", + "output": 9664 + }, + { + "input": 9665, + "interpolation": "LINEAR", + "output": 9666 + }, + { + "input": 9667, + "interpolation": "LINEAR", + "output": 9668 + }, + { + "input": 9669, + "interpolation": "LINEAR", + "output": 9670 + }, + { + "input": 9671, + "interpolation": "LINEAR", + "output": 9672 + }, + { + "input": 9673, + "interpolation": "LINEAR", + "output": 9674 + }, + { + "input": 9675, + "interpolation": "LINEAR", + "output": 9676 + }, + { + "input": 9677, + "interpolation": "LINEAR", + "output": 9678 + }, + { + "input": 9679, + "interpolation": "LINEAR", + "output": 9680 + }, + { + "input": 9681, + "interpolation": "LINEAR", + "output": 9682 + }, + { + "input": 9683, + "interpolation": "LINEAR", + "output": 9684 + }, + { + "input": 9685, + "interpolation": "LINEAR", + "output": 9686 + }, + { + "input": 9687, + "interpolation": "LINEAR", + "output": 9688 + }, + { + "input": 9689, + "interpolation": "LINEAR", + "output": 9690 + }, + { + "input": 9691, + "interpolation": "LINEAR", + "output": 9692 + }, + { + "input": 9693, + "interpolation": "LINEAR", + "output": 9694 + }, + { + "input": 9695, + "interpolation": "LINEAR", + "output": 9696 + }, + { + "input": 9697, + "interpolation": "LINEAR", + "output": 9698 + }, + { + "input": 9699, + "interpolation": "LINEAR", + "output": 9700 + }, + { + "input": 9701, + "interpolation": "LINEAR", + "output": 9702 + }, + { + "input": 9703, + "interpolation": "LINEAR", + "output": 9704 + }, + { + "input": 9705, + "interpolation": "LINEAR", + "output": 9706 + }, + { + "input": 9707, + "interpolation": "LINEAR", + "output": 9708 + }, + { + "input": 9709, + "interpolation": "LINEAR", + "output": 9710 + }, + { + "input": 9711, + "interpolation": "LINEAR", + "output": 9712 + }, + { + "input": 9713, + "interpolation": "LINEAR", + "output": 9714 + }, + { + "input": 9715, + "interpolation": "LINEAR", + "output": 9716 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_SwiftStrike", + "samplers": [ + { + "input": 9717, + "interpolation": "LINEAR", + "output": 9718 + }, + { + "input": 9719, + "interpolation": "LINEAR", + "output": 9720 + }, + { + "input": 9721, + "interpolation": "LINEAR", + "output": 9722 + }, + { + "input": 9723, + "interpolation": "LINEAR", + "output": 9724 + }, + { + "input": 9725, + "interpolation": "LINEAR", + "output": 9726 + }, + { + "input": 9727, + "interpolation": "LINEAR", + "output": 9728 + }, + { + "input": 9729, + "interpolation": "LINEAR", + "output": 9730 + }, + { + "input": 9731, + "interpolation": "LINEAR", + "output": 9732 + }, + { + "input": 9733, + "interpolation": "LINEAR", + "output": 9734 + }, + { + "input": 9735, + "interpolation": "LINEAR", + "output": 9736 + }, + { + "input": 9737, + "interpolation": "LINEAR", + "output": 9738 + }, + { + "input": 9739, + "interpolation": "LINEAR", + "output": 9740 + }, + { + "input": 9741, + "interpolation": "LINEAR", + "output": 9742 + }, + { + "input": 9743, + "interpolation": "LINEAR", + "output": 9744 + }, + { + "input": 9745, + "interpolation": "LINEAR", + "output": 9746 + }, + { + "input": 9747, + "interpolation": "LINEAR", + "output": 9748 + }, + { + "input": 9749, + "interpolation": "LINEAR", + "output": 9750 + }, + { + "input": 9751, + "interpolation": "LINEAR", + "output": 9752 + }, + { + "input": 9753, + "interpolation": "LINEAR", + "output": 9754 + }, + { + "input": 9755, + "interpolation": "LINEAR", + "output": 9756 + }, + { + "input": 9757, + "interpolation": "LINEAR", + "output": 9758 + }, + { + "input": 9759, + "interpolation": "LINEAR", + "output": 9760 + }, + { + "input": 9761, + "interpolation": "LINEAR", + "output": 9762 + }, + { + "input": 9763, + "interpolation": "LINEAR", + "output": 9764 + }, + { + "input": 9765, + "interpolation": "LINEAR", + "output": 9766 + }, + { + "input": 9767, + "interpolation": "LINEAR", + "output": 9768 + }, + { + "input": 9769, + "interpolation": "LINEAR", + "output": 9770 + }, + { + "input": 9771, + "interpolation": "LINEAR", + "output": 9772 + }, + { + "input": 9773, + "interpolation": "LINEAR", + "output": 9774 + }, + { + "input": 9775, + "interpolation": "LINEAR", + "output": 9776 + }, + { + "input": 9777, + "interpolation": "LINEAR", + "output": 9778 + }, + { + "input": 9779, + "interpolation": "LINEAR", + "output": 9780 + }, + { + "input": 9781, + "interpolation": "LINEAR", + "output": 9782 + }, + { + "input": 9783, + "interpolation": "LINEAR", + "output": 9784 + }, + { + "input": 9785, + "interpolation": "LINEAR", + "output": 9786 + }, + { + "input": 9787, + "interpolation": "LINEAR", + "output": 9788 + }, + { + "input": 9789, + "interpolation": "LINEAR", + "output": 9790 + }, + { + "input": 9791, + "interpolation": "LINEAR", + "output": 9792 + }, + { + "input": 9793, + "interpolation": "LINEAR", + "output": 9794 + }, + { + "input": 9795, + "interpolation": "LINEAR", + "output": 9796 + }, + { + "input": 9797, + "interpolation": "LINEAR", + "output": 9798 + }, + { + "input": 9799, + "interpolation": "LINEAR", + "output": 9800 + }, + { + "input": 9801, + "interpolation": "LINEAR", + "output": 9802 + }, + { + "input": 9803, + "interpolation": "LINEAR", + "output": 9804 + }, + { + "input": 9805, + "interpolation": "LINEAR", + "output": 9806 + }, + { + "input": 9807, + "interpolation": "LINEAR", + "output": 9808 + }, + { + "input": 9809, + "interpolation": "LINEAR", + "output": 9810 + }, + { + "input": 9811, + "interpolation": "LINEAR", + "output": 9812 + }, + { + "input": 9813, + "interpolation": "LINEAR", + "output": 9814 + }, + { + "input": 9815, + "interpolation": "LINEAR", + "output": 9816 + }, + { + "input": 9817, + "interpolation": "LINEAR", + "output": 9818 + }, + { + "input": 9819, + "interpolation": "LINEAR", + "output": 9820 + }, + { + "input": 9821, + "interpolation": "LINEAR", + "output": 9822 + }, + { + "input": 9823, + "interpolation": "LINEAR", + "output": 9824 + }, + { + "input": 9825, + "interpolation": "LINEAR", + "output": 9826 + }, + { + "input": 9827, + "interpolation": "LINEAR", + "output": 9828 + }, + { + "input": 9829, + "interpolation": "LINEAR", + "output": 9830 + }, + { + "input": 9831, + "interpolation": "LINEAR", + "output": 9832 + }, + { + "input": 9833, + "interpolation": "LINEAR", + "output": 9834 + }, + { + "input": 9835, + "interpolation": "LINEAR", + "output": 9836 + }, + { + "input": 9837, + "interpolation": "LINEAR", + "output": 9838 + }, + { + "input": 9839, + "interpolation": "LINEAR", + "output": 9840 + }, + { + "input": 9841, + "interpolation": "LINEAR", + "output": 9842 + }, + { + "input": 9843, + "interpolation": "LINEAR", + "output": 9844 + }, + { + "input": 9845, + "interpolation": "LINEAR", + "output": 9846 + }, + { + "input": 9847, + "interpolation": "LINEAR", + "output": 9848 + }, + { + "input": 9849, + "interpolation": "LINEAR", + "output": 9850 + }, + { + "input": 9851, + "interpolation": "LINEAR", + "output": 9852 + }, + { + "input": 9853, + "interpolation": "LINEAR", + "output": 9854 + }, + { + "input": 9855, + "interpolation": "LINEAR", + "output": 9856 + }, + { + "input": 9857, + "interpolation": "LINEAR", + "output": 9858 + }, + { + "input": 9859, + "interpolation": "LINEAR", + "output": 9860 + }, + { + "input": 9861, + "interpolation": "LINEAR", + "output": 9862 + }, + { + "input": 9863, + "interpolation": "LINEAR", + "output": 9864 + }, + { + "input": 9865, + "interpolation": "LINEAR", + "output": 9866 + }, + { + "input": 9867, + "interpolation": "LINEAR", + "output": 9868 + }, + { + "input": 9869, + "interpolation": "LINEAR", + "output": 9870 + }, + { + "input": 9871, + "interpolation": "LINEAR", + "output": 9872 + }, + { + "input": 9873, + "interpolation": "LINEAR", + "output": 9874 + }, + { + "input": 9875, + "interpolation": "LINEAR", + "output": 9876 + }, + { + "input": 9877, + "interpolation": "LINEAR", + "output": 9878 + }, + { + "input": 9879, + "interpolation": "LINEAR", + "output": 9880 + }, + { + "input": 9881, + "interpolation": "LINEAR", + "output": 9882 + }, + { + "input": 9883, + "interpolation": "LINEAR", + "output": 9884 + }, + { + "input": 9885, + "interpolation": "LINEAR", + "output": 9886 + }, + { + "input": 9887, + "interpolation": "LINEAR", + "output": 9888 + }, + { + "input": 9889, + "interpolation": "LINEAR", + "output": 9890 + }, + { + "input": 9891, + "interpolation": "LINEAR", + "output": 9892 + }, + { + "input": 9893, + "interpolation": "LINEAR", + "output": 9894 + }, + { + "input": 9895, + "interpolation": "LINEAR", + "output": 9896 + }, + { + "input": 9897, + "interpolation": "LINEAR", + "output": 9898 + }, + { + "input": 9899, + "interpolation": "LINEAR", + "output": 9900 + }, + { + "input": 9901, + "interpolation": "LINEAR", + "output": 9902 + }, + { + "input": 9903, + "interpolation": "LINEAR", + "output": 9904 + }, + { + "input": 9905, + "interpolation": "LINEAR", + "output": 9906 + }, + { + "input": 9907, + "interpolation": "LINEAR", + "output": 9908 + }, + { + "input": 9909, + "interpolation": "LINEAR", + "output": 9910 + }, + { + "input": 9911, + "interpolation": "LINEAR", + "output": 9912 + }, + { + "input": 9913, + "interpolation": "LINEAR", + "output": 9914 + }, + { + "input": 9915, + "interpolation": "LINEAR", + "output": 9916 + }, + { + "input": 9917, + "interpolation": "LINEAR", + "output": 9918 + }, + { + "input": 9919, + "interpolation": "LINEAR", + "output": 9920 + }, + { + "input": 9921, + "interpolation": "LINEAR", + "output": 9922 + }, + { + "input": 9923, + "interpolation": "LINEAR", + "output": 9924 + }, + { + "input": 9925, + "interpolation": "LINEAR", + "output": 9926 + }, + { + "input": 9927, + "interpolation": "LINEAR", + "output": 9928 + }, + { + "input": 9929, + "interpolation": "LINEAR", + "output": 9930 + }, + { + "input": 9931, + "interpolation": "LINEAR", + "output": 9932 + }, + { + "input": 9933, + "interpolation": "LINEAR", + "output": 9934 + }, + { + "input": 9935, + "interpolation": "LINEAR", + "output": 9936 + }, + { + "input": 9937, + "interpolation": "LINEAR", + "output": 9938 + }, + { + "input": 9939, + "interpolation": "LINEAR", + "output": 9940 + }, + { + "input": 9941, + "interpolation": "LINEAR", + "output": 9942 + }, + { + "input": 9943, + "interpolation": "LINEAR", + "output": 9944 + }, + { + "input": 9945, + "interpolation": "LINEAR", + "output": 9946 + }, + { + "input": 9947, + "interpolation": "LINEAR", + "output": 9948 + }, + { + "input": 9949, + "interpolation": "LINEAR", + "output": 9950 + }, + { + "input": 9951, + "interpolation": "LINEAR", + "output": 9952 + }, + { + "input": 9953, + "interpolation": "LINEAR", + "output": 9954 + }, + { + "input": 9955, + "interpolation": "LINEAR", + "output": 9956 + }, + { + "input": 9957, + "interpolation": "LINEAR", + "output": 9958 + }, + { + "input": 9959, + "interpolation": "LINEAR", + "output": 9960 + }, + { + "input": 9961, + "interpolation": "LINEAR", + "output": 9962 + }, + { + "input": 9963, + "interpolation": "LINEAR", + "output": 9964 + }, + { + "input": 9965, + "interpolation": "LINEAR", + "output": 9966 + }, + { + "input": 9967, + "interpolation": "LINEAR", + "output": 9968 + }, + { + "input": 9969, + "interpolation": "LINEAR", + "output": 9970 + }, + { + "input": 9971, + "interpolation": "LINEAR", + "output": 9972 + }, + { + "input": 9973, + "interpolation": "LINEAR", + "output": 9974 + }, + { + "input": 9975, + "interpolation": "LINEAR", + "output": 9976 + }, + { + "input": 9977, + "interpolation": "LINEAR", + "output": 9978 + }, + { + "input": 9979, + "interpolation": "LINEAR", + "output": 9980 + }, + { + "input": 9981, + "interpolation": "LINEAR", + "output": 9982 + }, + { + "input": 9983, + "interpolation": "LINEAR", + "output": 9984 + }, + { + "input": 9985, + "interpolation": "LINEAR", + "output": 9986 + }, + { + "input": 9987, + "interpolation": "LINEAR", + "output": 9988 + }, + { + "input": 9989, + "interpolation": "LINEAR", + "output": 9990 + }, + { + "input": 9991, + "interpolation": "LINEAR", + "output": 9992 + }, + { + "input": 9993, + "interpolation": "LINEAR", + "output": 9994 + }, + { + "input": 9995, + "interpolation": "LINEAR", + "output": 9996 + }, + { + "input": 9997, + "interpolation": "LINEAR", + "output": 9998 + }, + { + "input": 9999, + "interpolation": "LINEAR", + "output": 10000 + }, + { + "input": 10001, + "interpolation": "LINEAR", + "output": 10002 + }, + { + "input": 10003, + "interpolation": "LINEAR", + "output": 10004 + }, + { + "input": 10005, + "interpolation": "LINEAR", + "output": 10006 + }, + { + "input": 10007, + "interpolation": "LINEAR", + "output": 10008 + }, + { + "input": 10009, + "interpolation": "LINEAR", + "output": 10010 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_Tackle", + "samplers": [ + { + "input": 10011, + "interpolation": "LINEAR", + "output": 10012 + }, + { + "input": 10013, + "interpolation": "LINEAR", + "output": 10014 + }, + { + "input": 10015, + "interpolation": "LINEAR", + "output": 10016 + }, + { + "input": 10017, + "interpolation": "LINEAR", + "output": 10018 + }, + { + "input": 10019, + "interpolation": "LINEAR", + "output": 10020 + }, + { + "input": 10021, + "interpolation": "LINEAR", + "output": 10022 + }, + { + "input": 10023, + "interpolation": "LINEAR", + "output": 10024 + }, + { + "input": 10025, + "interpolation": "LINEAR", + "output": 10026 + }, + { + "input": 10027, + "interpolation": "LINEAR", + "output": 10028 + }, + { + "input": 10029, + "interpolation": "LINEAR", + "output": 10030 + }, + { + "input": 10031, + "interpolation": "LINEAR", + "output": 10032 + }, + { + "input": 10033, + "interpolation": "LINEAR", + "output": 10034 + }, + { + "input": 10035, + "interpolation": "LINEAR", + "output": 10036 + }, + { + "input": 10037, + "interpolation": "LINEAR", + "output": 10038 + }, + { + "input": 10039, + "interpolation": "LINEAR", + "output": 10040 + }, + { + "input": 10041, + "interpolation": "LINEAR", + "output": 10042 + }, + { + "input": 10043, + "interpolation": "LINEAR", + "output": 10044 + }, + { + "input": 10045, + "interpolation": "LINEAR", + "output": 10046 + }, + { + "input": 10047, + "interpolation": "LINEAR", + "output": 10048 + }, + { + "input": 10049, + "interpolation": "LINEAR", + "output": 10050 + }, + { + "input": 10051, + "interpolation": "LINEAR", + "output": 10052 + }, + { + "input": 10053, + "interpolation": "LINEAR", + "output": 10054 + }, + { + "input": 10055, + "interpolation": "LINEAR", + "output": 10056 + }, + { + "input": 10057, + "interpolation": "LINEAR", + "output": 10058 + }, + { + "input": 10059, + "interpolation": "LINEAR", + "output": 10060 + }, + { + "input": 10061, + "interpolation": "LINEAR", + "output": 10062 + }, + { + "input": 10063, + "interpolation": "LINEAR", + "output": 10064 + }, + { + "input": 10065, + "interpolation": "LINEAR", + "output": 10066 + }, + { + "input": 10067, + "interpolation": "LINEAR", + "output": 10068 + }, + { + "input": 10069, + "interpolation": "LINEAR", + "output": 10070 + }, + { + "input": 10071, + "interpolation": "LINEAR", + "output": 10072 + }, + { + "input": 10073, + "interpolation": "LINEAR", + "output": 10074 + }, + { + "input": 10075, + "interpolation": "LINEAR", + "output": 10076 + }, + { + "input": 10077, + "interpolation": "LINEAR", + "output": 10078 + }, + { + "input": 10079, + "interpolation": "LINEAR", + "output": 10080 + }, + { + "input": 10081, + "interpolation": "LINEAR", + "output": 10082 + }, + { + "input": 10083, + "interpolation": "LINEAR", + "output": 10084 + }, + { + "input": 10085, + "interpolation": "LINEAR", + "output": 10086 + }, + { + "input": 10087, + "interpolation": "LINEAR", + "output": 10088 + }, + { + "input": 10089, + "interpolation": "LINEAR", + "output": 10090 + }, + { + "input": 10091, + "interpolation": "LINEAR", + "output": 10092 + }, + { + "input": 10093, + "interpolation": "LINEAR", + "output": 10094 + }, + { + "input": 10095, + "interpolation": "LINEAR", + "output": 10096 + }, + { + "input": 10097, + "interpolation": "LINEAR", + "output": 10098 + }, + { + "input": 10099, + "interpolation": "LINEAR", + "output": 10100 + }, + { + "input": 10101, + "interpolation": "LINEAR", + "output": 10102 + }, + { + "input": 10103, + "interpolation": "LINEAR", + "output": 10104 + }, + { + "input": 10105, + "interpolation": "LINEAR", + "output": 10106 + }, + { + "input": 10107, + "interpolation": "LINEAR", + "output": 10108 + }, + { + "input": 10109, + "interpolation": "LINEAR", + "output": 10110 + }, + { + "input": 10111, + "interpolation": "LINEAR", + "output": 10112 + }, + { + "input": 10113, + "interpolation": "LINEAR", + "output": 10114 + }, + { + "input": 10115, + "interpolation": "LINEAR", + "output": 10116 + }, + { + "input": 10117, + "interpolation": "LINEAR", + "output": 10118 + }, + { + "input": 10119, + "interpolation": "LINEAR", + "output": 10120 + }, + { + "input": 10121, + "interpolation": "LINEAR", + "output": 10122 + }, + { + "input": 10123, + "interpolation": "LINEAR", + "output": 10124 + }, + { + "input": 10125, + "interpolation": "LINEAR", + "output": 10126 + }, + { + "input": 10127, + "interpolation": "LINEAR", + "output": 10128 + }, + { + "input": 10129, + "interpolation": "LINEAR", + "output": 10130 + }, + { + "input": 10131, + "interpolation": "LINEAR", + "output": 10132 + }, + { + "input": 10133, + "interpolation": "LINEAR", + "output": 10134 + }, + { + "input": 10135, + "interpolation": "LINEAR", + "output": 10136 + }, + { + "input": 10137, + "interpolation": "LINEAR", + "output": 10138 + }, + { + "input": 10139, + "interpolation": "LINEAR", + "output": 10140 + }, + { + "input": 10141, + "interpolation": "LINEAR", + "output": 10142 + }, + { + "input": 10143, + "interpolation": "LINEAR", + "output": 10144 + }, + { + "input": 10145, + "interpolation": "LINEAR", + "output": 10146 + }, + { + "input": 10147, + "interpolation": "LINEAR", + "output": 10148 + }, + { + "input": 10149, + "interpolation": "LINEAR", + "output": 10150 + }, + { + "input": 10151, + "interpolation": "LINEAR", + "output": 10152 + }, + { + "input": 10153, + "interpolation": "LINEAR", + "output": 10154 + }, + { + "input": 10155, + "interpolation": "LINEAR", + "output": 10156 + }, + { + "input": 10157, + "interpolation": "LINEAR", + "output": 10158 + }, + { + "input": 10159, + "interpolation": "LINEAR", + "output": 10160 + }, + { + "input": 10161, + "interpolation": "LINEAR", + "output": 10162 + }, + { + "input": 10163, + "interpolation": "LINEAR", + "output": 10164 + }, + { + "input": 10165, + "interpolation": "LINEAR", + "output": 10166 + }, + { + "input": 10167, + "interpolation": "LINEAR", + "output": 10168 + }, + { + "input": 10169, + "interpolation": "LINEAR", + "output": 10170 + }, + { + "input": 10171, + "interpolation": "LINEAR", + "output": 10172 + }, + { + "input": 10173, + "interpolation": "LINEAR", + "output": 10174 + }, + { + "input": 10175, + "interpolation": "LINEAR", + "output": 10176 + }, + { + "input": 10177, + "interpolation": "LINEAR", + "output": 10178 + }, + { + "input": 10179, + "interpolation": "LINEAR", + "output": 10180 + }, + { + "input": 10181, + "interpolation": "LINEAR", + "output": 10182 + }, + { + "input": 10183, + "interpolation": "LINEAR", + "output": 10184 + }, + { + "input": 10185, + "interpolation": "LINEAR", + "output": 10186 + }, + { + "input": 10187, + "interpolation": "LINEAR", + "output": 10188 + }, + { + "input": 10189, + "interpolation": "LINEAR", + "output": 10190 + }, + { + "input": 10191, + "interpolation": "LINEAR", + "output": 10192 + }, + { + "input": 10193, + "interpolation": "LINEAR", + "output": 10194 + }, + { + "input": 10195, + "interpolation": "LINEAR", + "output": 10196 + }, + { + "input": 10197, + "interpolation": "LINEAR", + "output": 10198 + }, + { + "input": 10199, + "interpolation": "LINEAR", + "output": 10200 + }, + { + "input": 10201, + "interpolation": "LINEAR", + "output": 10202 + }, + { + "input": 10203, + "interpolation": "LINEAR", + "output": 10204 + }, + { + "input": 10205, + "interpolation": "LINEAR", + "output": 10206 + }, + { + "input": 10207, + "interpolation": "LINEAR", + "output": 10208 + }, + { + "input": 10209, + "interpolation": "LINEAR", + "output": 10210 + }, + { + "input": 10211, + "interpolation": "LINEAR", + "output": 10212 + }, + { + "input": 10213, + "interpolation": "LINEAR", + "output": 10214 + }, + { + "input": 10215, + "interpolation": "LINEAR", + "output": 10216 + }, + { + "input": 10217, + "interpolation": "LINEAR", + "output": 10218 + }, + { + "input": 10219, + "interpolation": "LINEAR", + "output": 10220 + }, + { + "input": 10221, + "interpolation": "LINEAR", + "output": 10222 + }, + { + "input": 10223, + "interpolation": "LINEAR", + "output": 10224 + }, + { + "input": 10225, + "interpolation": "LINEAR", + "output": 10226 + }, + { + "input": 10227, + "interpolation": "LINEAR", + "output": 10228 + }, + { + "input": 10229, + "interpolation": "LINEAR", + "output": 10230 + }, + { + "input": 10231, + "interpolation": "LINEAR", + "output": 10232 + }, + { + "input": 10233, + "interpolation": "LINEAR", + "output": 10234 + }, + { + "input": 10235, + "interpolation": "LINEAR", + "output": 10236 + }, + { + "input": 10237, + "interpolation": "LINEAR", + "output": 10238 + }, + { + "input": 10239, + "interpolation": "LINEAR", + "output": 10240 + }, + { + "input": 10241, + "interpolation": "LINEAR", + "output": 10242 + }, + { + "input": 10243, + "interpolation": "LINEAR", + "output": 10244 + }, + { + "input": 10245, + "interpolation": "LINEAR", + "output": 10246 + }, + { + "input": 10247, + "interpolation": "LINEAR", + "output": 10248 + }, + { + "input": 10249, + "interpolation": "LINEAR", + "output": 10250 + }, + { + "input": 10251, + "interpolation": "LINEAR", + "output": 10252 + }, + { + "input": 10253, + "interpolation": "LINEAR", + "output": 10254 + }, + { + "input": 10255, + "interpolation": "LINEAR", + "output": 10256 + }, + { + "input": 10257, + "interpolation": "LINEAR", + "output": 10258 + }, + { + "input": 10259, + "interpolation": "LINEAR", + "output": 10260 + }, + { + "input": 10261, + "interpolation": "LINEAR", + "output": 10262 + }, + { + "input": 10263, + "interpolation": "LINEAR", + "output": 10264 + }, + { + "input": 10265, + "interpolation": "LINEAR", + "output": 10266 + }, + { + "input": 10267, + "interpolation": "LINEAR", + "output": 10268 + }, + { + "input": 10269, + "interpolation": "LINEAR", + "output": 10270 + }, + { + "input": 10271, + "interpolation": "LINEAR", + "output": 10272 + }, + { + "input": 10273, + "interpolation": "LINEAR", + "output": 10274 + }, + { + "input": 10275, + "interpolation": "LINEAR", + "output": 10276 + }, + { + "input": 10277, + "interpolation": "LINEAR", + "output": 10278 + }, + { + "input": 10279, + "interpolation": "LINEAR", + "output": 10280 + }, + { + "input": 10281, + "interpolation": "LINEAR", + "output": 10282 + }, + { + "input": 10283, + "interpolation": "LINEAR", + "output": 10284 + }, + { + "input": 10285, + "interpolation": "LINEAR", + "output": 10286 + }, + { + "input": 10287, + "interpolation": "LINEAR", + "output": 10288 + }, + { + "input": 10289, + "interpolation": "LINEAR", + "output": 10290 + }, + { + "input": 10291, + "interpolation": "LINEAR", + "output": 10292 + }, + { + "input": 10293, + "interpolation": "LINEAR", + "output": 10294 + }, + { + "input": 10295, + "interpolation": "LINEAR", + "output": 10296 + }, + { + "input": 10297, + "interpolation": "LINEAR", + "output": 10298 + }, + { + "input": 10299, + "interpolation": "LINEAR", + "output": 10300 + }, + { + "input": 10301, + "interpolation": "LINEAR", + "output": 10302 + }, + { + "input": 10303, + "interpolation": "LINEAR", + "output": 10304 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 127, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 133, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 136, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 138, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 64, + "path": "scale" + } + } + ], + "name": "Skill_Thrust", + "samplers": [ + { + "input": 10305, + "interpolation": "LINEAR", + "output": 10306 + }, + { + "input": 10307, + "interpolation": "LINEAR", + "output": 10308 + }, + { + "input": 10309, + "interpolation": "LINEAR", + "output": 10310 + }, + { + "input": 10311, + "interpolation": "LINEAR", + "output": 10312 + }, + { + "input": 10313, + "interpolation": "LINEAR", + "output": 10314 + }, + { + "input": 10315, + "interpolation": "LINEAR", + "output": 10316 + }, + { + "input": 10317, + "interpolation": "LINEAR", + "output": 10318 + }, + { + "input": 10319, + "interpolation": "LINEAR", + "output": 10320 + }, + { + "input": 10321, + "interpolation": "LINEAR", + "output": 10322 + }, + { + "input": 10323, + "interpolation": "LINEAR", + "output": 10324 + }, + { + "input": 10325, + "interpolation": "LINEAR", + "output": 10326 + }, + { + "input": 10327, + "interpolation": "LINEAR", + "output": 10328 + }, + { + "input": 10329, + "interpolation": "LINEAR", + "output": 10330 + }, + { + "input": 10331, + "interpolation": "LINEAR", + "output": 10332 + }, + { + "input": 10333, + "interpolation": "LINEAR", + "output": 10334 + }, + { + "input": 10335, + "interpolation": "LINEAR", + "output": 10336 + }, + { + "input": 10337, + "interpolation": "LINEAR", + "output": 10338 + }, + { + "input": 10339, + "interpolation": "LINEAR", + "output": 10340 + }, + { + "input": 10341, + "interpolation": "LINEAR", + "output": 10342 + }, + { + "input": 10343, + "interpolation": "LINEAR", + "output": 10344 + }, + { + "input": 10345, + "interpolation": "LINEAR", + "output": 10346 + }, + { + "input": 10347, + "interpolation": "LINEAR", + "output": 10348 + }, + { + "input": 10349, + "interpolation": "LINEAR", + "output": 10350 + }, + { + "input": 10351, + "interpolation": "LINEAR", + "output": 10352 + }, + { + "input": 10353, + "interpolation": "LINEAR", + "output": 10354 + }, + { + "input": 10355, + "interpolation": "LINEAR", + "output": 10356 + }, + { + "input": 10357, + "interpolation": "LINEAR", + "output": 10358 + }, + { + "input": 10359, + "interpolation": "LINEAR", + "output": 10360 + }, + { + "input": 10361, + "interpolation": "LINEAR", + "output": 10362 + }, + { + "input": 10363, + "interpolation": "LINEAR", + "output": 10364 + }, + { + "input": 10365, + "interpolation": "LINEAR", + "output": 10366 + }, + { + "input": 10367, + "interpolation": "LINEAR", + "output": 10368 + }, + { + "input": 10369, + "interpolation": "LINEAR", + "output": 10370 + }, + { + "input": 10371, + "interpolation": "LINEAR", + "output": 10372 + }, + { + "input": 10373, + "interpolation": "LINEAR", + "output": 10374 + }, + { + "input": 10375, + "interpolation": "LINEAR", + "output": 10376 + }, + { + "input": 10377, + "interpolation": "LINEAR", + "output": 10378 + }, + { + "input": 10379, + "interpolation": "LINEAR", + "output": 10380 + }, + { + "input": 10381, + "interpolation": "LINEAR", + "output": 10382 + }, + { + "input": 10383, + "interpolation": "LINEAR", + "output": 10384 + }, + { + "input": 10385, + "interpolation": "LINEAR", + "output": 10386 + }, + { + "input": 10387, + "interpolation": "LINEAR", + "output": 10388 + }, + { + "input": 10389, + "interpolation": "LINEAR", + "output": 10390 + }, + { + "input": 10391, + "interpolation": "LINEAR", + "output": 10392 + }, + { + "input": 10393, + "interpolation": "LINEAR", + "output": 10394 + }, + { + "input": 10395, + "interpolation": "LINEAR", + "output": 10396 + }, + { + "input": 10397, + "interpolation": "LINEAR", + "output": 10398 + }, + { + "input": 10399, + "interpolation": "LINEAR", + "output": 10400 + }, + { + "input": 10401, + "interpolation": "LINEAR", + "output": 10402 + }, + { + "input": 10403, + "interpolation": "LINEAR", + "output": 10404 + }, + { + "input": 10405, + "interpolation": "LINEAR", + "output": 10406 + }, + { + "input": 10407, + "interpolation": "LINEAR", + "output": 10408 + }, + { + "input": 10409, + "interpolation": "LINEAR", + "output": 10410 + }, + { + "input": 10411, + "interpolation": "LINEAR", + "output": 10412 + }, + { + "input": 10413, + "interpolation": "LINEAR", + "output": 10414 + }, + { + "input": 10415, + "interpolation": "LINEAR", + "output": 10416 + }, + { + "input": 10417, + "interpolation": "LINEAR", + "output": 10418 + }, + { + "input": 10419, + "interpolation": "LINEAR", + "output": 10420 + }, + { + "input": 10421, + "interpolation": "LINEAR", + "output": 10422 + }, + { + "input": 10423, + "interpolation": "LINEAR", + "output": 10424 + }, + { + "input": 10425, + "interpolation": "LINEAR", + "output": 10426 + }, + { + "input": 10427, + "interpolation": "LINEAR", + "output": 10428 + }, + { + "input": 10429, + "interpolation": "LINEAR", + "output": 10430 + }, + { + "input": 10431, + "interpolation": "LINEAR", + "output": 10432 + }, + { + "input": 10433, + "interpolation": "LINEAR", + "output": 10434 + }, + { + "input": 10435, + "interpolation": "LINEAR", + "output": 10436 + }, + { + "input": 10437, + "interpolation": "LINEAR", + "output": 10438 + }, + { + "input": 10439, + "interpolation": "LINEAR", + "output": 10440 + }, + { + "input": 10441, + "interpolation": "LINEAR", + "output": 10442 + }, + { + "input": 10443, + "interpolation": "LINEAR", + "output": 10444 + }, + { + "input": 10445, + "interpolation": "LINEAR", + "output": 10446 + }, + { + "input": 10447, + "interpolation": "LINEAR", + "output": 10448 + }, + { + "input": 10449, + "interpolation": "LINEAR", + "output": 10450 + }, + { + "input": 10451, + "interpolation": "LINEAR", + "output": 10452 + }, + { + "input": 10453, + "interpolation": "LINEAR", + "output": 10454 + }, + { + "input": 10455, + "interpolation": "LINEAR", + "output": 10456 + }, + { + "input": 10457, + "interpolation": "LINEAR", + "output": 10458 + }, + { + "input": 10459, + "interpolation": "LINEAR", + "output": 10460 + }, + { + "input": 10461, + "interpolation": "LINEAR", + "output": 10462 + }, + { + "input": 10463, + "interpolation": "LINEAR", + "output": 10464 + }, + { + "input": 10465, + "interpolation": "LINEAR", + "output": 10466 + }, + { + "input": 10467, + "interpolation": "LINEAR", + "output": 10468 + }, + { + "input": 10469, + "interpolation": "LINEAR", + "output": 10470 + }, + { + "input": 10471, + "interpolation": "LINEAR", + "output": 10472 + }, + { + "input": 10473, + "interpolation": "LINEAR", + "output": 10474 + }, + { + "input": 10475, + "interpolation": "LINEAR", + "output": 10476 + }, + { + "input": 10477, + "interpolation": "LINEAR", + "output": 10478 + }, + { + "input": 10479, + "interpolation": "LINEAR", + "output": 10480 + }, + { + "input": 10481, + "interpolation": "LINEAR", + "output": 10482 + }, + { + "input": 10483, + "interpolation": "LINEAR", + "output": 10484 + }, + { + "input": 10485, + "interpolation": "LINEAR", + "output": 10486 + }, + { + "input": 10487, + "interpolation": "LINEAR", + "output": 10488 + }, + { + "input": 10489, + "interpolation": "LINEAR", + "output": 10490 + }, + { + "input": 10491, + "interpolation": "LINEAR", + "output": 10492 + }, + { + "input": 10493, + "interpolation": "LINEAR", + "output": 10494 + }, + { + "input": 10495, + "interpolation": "LINEAR", + "output": 10496 + }, + { + "input": 10497, + "interpolation": "LINEAR", + "output": 10498 + }, + { + "input": 10499, + "interpolation": "LINEAR", + "output": 10500 + }, + { + "input": 10501, + "interpolation": "LINEAR", + "output": 10502 + }, + { + "input": 10503, + "interpolation": "LINEAR", + "output": 10504 + }, + { + "input": 10505, + "interpolation": "LINEAR", + "output": 10506 + }, + { + "input": 10507, + "interpolation": "LINEAR", + "output": 10508 + }, + { + "input": 10509, + "interpolation": "LINEAR", + "output": 10510 + }, + { + "input": 10511, + "interpolation": "LINEAR", + "output": 10512 + }, + { + "input": 10513, + "interpolation": "LINEAR", + "output": 10514 + }, + { + "input": 10515, + "interpolation": "LINEAR", + "output": 10516 + }, + { + "input": 10517, + "interpolation": "LINEAR", + "output": 10518 + }, + { + "input": 10519, + "interpolation": "LINEAR", + "output": 10520 + }, + { + "input": 10521, + "interpolation": "LINEAR", + "output": 10522 + }, + { + "input": 10523, + "interpolation": "LINEAR", + "output": 10524 + }, + { + "input": 10525, + "interpolation": "LINEAR", + "output": 10526 + }, + { + "input": 10527, + "interpolation": "LINEAR", + "output": 10528 + }, + { + "input": 10529, + "interpolation": "LINEAR", + "output": 10530 + }, + { + "input": 10531, + "interpolation": "LINEAR", + "output": 10532 + }, + { + "input": 10533, + "interpolation": "LINEAR", + "output": 10534 + }, + { + "input": 10535, + "interpolation": "LINEAR", + "output": 10536 + }, + { + "input": 10537, + "interpolation": "LINEAR", + "output": 10538 + }, + { + "input": 10539, + "interpolation": "LINEAR", + "output": 10540 + }, + { + "input": 10541, + "interpolation": "LINEAR", + "output": 10542 + }, + { + "input": 10543, + "interpolation": "LINEAR", + "output": 10544 + }, + { + "input": 10545, + "interpolation": "LINEAR", + "output": 10546 + }, + { + "input": 10547, + "interpolation": "LINEAR", + "output": 10548 + }, + { + "input": 10549, + "interpolation": "LINEAR", + "output": 10550 + }, + { + "input": 10551, + "interpolation": "LINEAR", + "output": 10552 + }, + { + "input": 10553, + "interpolation": "LINEAR", + "output": 10554 + }, + { + "input": 10555, + "interpolation": "LINEAR", + "output": 10556 + }, + { + "input": 10557, + "interpolation": "LINEAR", + "output": 10558 + }, + { + "input": 10559, + "interpolation": "LINEAR", + "output": 10560 + }, + { + "input": 10561, + "interpolation": "LINEAR", + "output": 10562 + }, + { + "input": 10563, + "interpolation": "LINEAR", + "output": 10564 + }, + { + "input": 10565, + "interpolation": "LINEAR", + "output": 10566 + }, + { + "input": 10567, + "interpolation": "LINEAR", + "output": 10568 + }, + { + "input": 10569, + "interpolation": "LINEAR", + "output": 10570 + }, + { + "input": 10571, + "interpolation": "LINEAR", + "output": 10572 + }, + { + "input": 10573, + "interpolation": "LINEAR", + "output": 10574 + }, + { + "input": 10575, + "interpolation": "LINEAR", + "output": 10576 + }, + { + "input": 10577, + "interpolation": "LINEAR", + "output": 10578 + }, + { + "input": 10579, + "interpolation": "LINEAR", + "output": 10580 + }, + { + "input": 10581, + "interpolation": "LINEAR", + "output": 10582 + }, + { + "input": 10583, + "interpolation": "LINEAR", + "output": 10584 + }, + { + "input": 10585, + "interpolation": "LINEAR", + "output": 10586 + }, + { + "input": 10587, + "interpolation": "LINEAR", + "output": 10588 + }, + { + "input": 10589, + "interpolation": "LINEAR", + "output": 10590 + }, + { + "input": 10591, + "interpolation": "LINEAR", + "output": 10592 + }, + { + "input": 10593, + "interpolation": "LINEAR", + "output": 10594 + }, + { + "input": 10595, + "interpolation": "LINEAR", + "output": 10596 + }, + { + "input": 10597, + "interpolation": "LINEAR", + "output": 10598 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 130, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 131, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 133, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 134, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 136, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 137, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 138, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 139, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 140, + "target": { + "node": 64, + "path": "rotation" + } + } + ], + "name": "Skill_Warcry", + "samplers": [ + { + "input": 10599, + "interpolation": "LINEAR", + "output": 10600 + }, + { + "input": 10601, + "interpolation": "LINEAR", + "output": 10602 + }, + { + "input": 10603, + "interpolation": "LINEAR", + "output": 10604 + }, + { + "input": 10605, + "interpolation": "LINEAR", + "output": 10606 + }, + { + "input": 10607, + "interpolation": "LINEAR", + "output": 10608 + }, + { + "input": 10609, + "interpolation": "LINEAR", + "output": 10610 + }, + { + "input": 10611, + "interpolation": "LINEAR", + "output": 10612 + }, + { + "input": 10613, + "interpolation": "LINEAR", + "output": 10614 + }, + { + "input": 10615, + "interpolation": "LINEAR", + "output": 10616 + }, + { + "input": 10617, + "interpolation": "LINEAR", + "output": 10618 + }, + { + "input": 10619, + "interpolation": "LINEAR", + "output": 10620 + }, + { + "input": 10621, + "interpolation": "LINEAR", + "output": 10622 + }, + { + "input": 10623, + "interpolation": "LINEAR", + "output": 10624 + }, + { + "input": 10625, + "interpolation": "LINEAR", + "output": 10626 + }, + { + "input": 10627, + "interpolation": "LINEAR", + "output": 10628 + }, + { + "input": 10629, + "interpolation": "LINEAR", + "output": 10630 + }, + { + "input": 10631, + "interpolation": "LINEAR", + "output": 10632 + }, + { + "input": 10633, + "interpolation": "LINEAR", + "output": 10634 + }, + { + "input": 10635, + "interpolation": "LINEAR", + "output": 10636 + }, + { + "input": 10637, + "interpolation": "LINEAR", + "output": 10638 + }, + { + "input": 10639, + "interpolation": "LINEAR", + "output": 10640 + }, + { + "input": 10641, + "interpolation": "LINEAR", + "output": 10642 + }, + { + "input": 10643, + "interpolation": "LINEAR", + "output": 10644 + }, + { + "input": 10645, + "interpolation": "LINEAR", + "output": 10646 + }, + { + "input": 10647, + "interpolation": "LINEAR", + "output": 10648 + }, + { + "input": 10649, + "interpolation": "LINEAR", + "output": 10650 + }, + { + "input": 10651, + "interpolation": "LINEAR", + "output": 10652 + }, + { + "input": 10653, + "interpolation": "LINEAR", + "output": 10654 + }, + { + "input": 10655, + "interpolation": "LINEAR", + "output": 10656 + }, + { + "input": 10657, + "interpolation": "LINEAR", + "output": 10658 + }, + { + "input": 10659, + "interpolation": "LINEAR", + "output": 10660 + }, + { + "input": 10661, + "interpolation": "LINEAR", + "output": 10662 + }, + { + "input": 10663, + "interpolation": "LINEAR", + "output": 10664 + }, + { + "input": 10665, + "interpolation": "LINEAR", + "output": 10666 + }, + { + "input": 10667, + "interpolation": "LINEAR", + "output": 10668 + }, + { + "input": 10669, + "interpolation": "LINEAR", + "output": 10670 + }, + { + "input": 10671, + "interpolation": "LINEAR", + "output": 10672 + }, + { + "input": 10673, + "interpolation": "LINEAR", + "output": 10674 + }, + { + "input": 10675, + "interpolation": "LINEAR", + "output": 10676 + }, + { + "input": 10677, + "interpolation": "LINEAR", + "output": 10678 + }, + { + "input": 10679, + "interpolation": "LINEAR", + "output": 10680 + }, + { + "input": 10681, + "interpolation": "LINEAR", + "output": 10682 + }, + { + "input": 10683, + "interpolation": "LINEAR", + "output": 10684 + }, + { + "input": 10685, + "interpolation": "LINEAR", + "output": 10686 + }, + { + "input": 10687, + "interpolation": "LINEAR", + "output": 10688 + }, + { + "input": 10689, + "interpolation": "LINEAR", + "output": 10690 + }, + { + "input": 10691, + "interpolation": "LINEAR", + "output": 10692 + }, + { + "input": 10693, + "interpolation": "LINEAR", + "output": 10694 + }, + { + "input": 10695, + "interpolation": "LINEAR", + "output": 10696 + }, + { + "input": 10697, + "interpolation": "LINEAR", + "output": 10698 + }, + { + "input": 10699, + "interpolation": "LINEAR", + "output": 10700 + }, + { + "input": 10701, + "interpolation": "LINEAR", + "output": 10702 + }, + { + "input": 10703, + "interpolation": "LINEAR", + "output": 10704 + }, + { + "input": 10705, + "interpolation": "LINEAR", + "output": 10706 + }, + { + "input": 10707, + "interpolation": "LINEAR", + "output": 10708 + }, + { + "input": 10709, + "interpolation": "LINEAR", + "output": 10710 + }, + { + "input": 10711, + "interpolation": "LINEAR", + "output": 10712 + }, + { + "input": 10713, + "interpolation": "LINEAR", + "output": 10714 + }, + { + "input": 10715, + "interpolation": "LINEAR", + "output": 10716 + }, + { + "input": 10717, + "interpolation": "LINEAR", + "output": 10718 + }, + { + "input": 10719, + "interpolation": "LINEAR", + "output": 10720 + }, + { + "input": 10721, + "interpolation": "LINEAR", + "output": 10722 + }, + { + "input": 10723, + "interpolation": "LINEAR", + "output": 10724 + }, + { + "input": 10725, + "interpolation": "LINEAR", + "output": 10726 + }, + { + "input": 10727, + "interpolation": "LINEAR", + "output": 10728 + }, + { + "input": 10729, + "interpolation": "LINEAR", + "output": 10730 + }, + { + "input": 10731, + "interpolation": "LINEAR", + "output": 10732 + }, + { + "input": 10733, + "interpolation": "LINEAR", + "output": 10734 + }, + { + "input": 10735, + "interpolation": "LINEAR", + "output": 10736 + }, + { + "input": 10737, + "interpolation": "LINEAR", + "output": 10738 + }, + { + "input": 10739, + "interpolation": "LINEAR", + "output": 10740 + }, + { + "input": 10741, + "interpolation": "LINEAR", + "output": 10742 + }, + { + "input": 10743, + "interpolation": "LINEAR", + "output": 10744 + }, + { + "input": 10745, + "interpolation": "LINEAR", + "output": 10746 + }, + { + "input": 10747, + "interpolation": "LINEAR", + "output": 10748 + }, + { + "input": 10749, + "interpolation": "LINEAR", + "output": 10750 + }, + { + "input": 10751, + "interpolation": "LINEAR", + "output": 10752 + }, + { + "input": 10753, + "interpolation": "LINEAR", + "output": 10754 + }, + { + "input": 10755, + "interpolation": "LINEAR", + "output": 10756 + }, + { + "input": 10757, + "interpolation": "LINEAR", + "output": 10758 + }, + { + "input": 10759, + "interpolation": "LINEAR", + "output": 10760 + }, + { + "input": 10761, + "interpolation": "LINEAR", + "output": 10762 + }, + { + "input": 10763, + "interpolation": "LINEAR", + "output": 10764 + }, + { + "input": 10765, + "interpolation": "LINEAR", + "output": 10766 + }, + { + "input": 10767, + "interpolation": "LINEAR", + "output": 10768 + }, + { + "input": 10769, + "interpolation": "LINEAR", + "output": 10770 + }, + { + "input": 10771, + "interpolation": "LINEAR", + "output": 10772 + }, + { + "input": 10773, + "interpolation": "LINEAR", + "output": 10774 + }, + { + "input": 10775, + "interpolation": "LINEAR", + "output": 10776 + }, + { + "input": 10777, + "interpolation": "LINEAR", + "output": 10778 + }, + { + "input": 10779, + "interpolation": "LINEAR", + "output": 10780 + }, + { + "input": 10781, + "interpolation": "LINEAR", + "output": 10782 + }, + { + "input": 10783, + "interpolation": "LINEAR", + "output": 10784 + }, + { + "input": 10785, + "interpolation": "LINEAR", + "output": 10786 + }, + { + "input": 10787, + "interpolation": "LINEAR", + "output": 10788 + }, + { + "input": 10789, + "interpolation": "LINEAR", + "output": 10790 + }, + { + "input": 10791, + "interpolation": "LINEAR", + "output": 10792 + }, + { + "input": 10793, + "interpolation": "LINEAR", + "output": 10794 + }, + { + "input": 10795, + "interpolation": "LINEAR", + "output": 10796 + }, + { + "input": 10797, + "interpolation": "LINEAR", + "output": 10798 + }, + { + "input": 10799, + "interpolation": "LINEAR", + "output": 10800 + }, + { + "input": 10801, + "interpolation": "LINEAR", + "output": 10802 + }, + { + "input": 10803, + "interpolation": "LINEAR", + "output": 10804 + }, + { + "input": 10805, + "interpolation": "LINEAR", + "output": 10806 + }, + { + "input": 10807, + "interpolation": "LINEAR", + "output": 10808 + }, + { + "input": 10809, + "interpolation": "LINEAR", + "output": 10810 + }, + { + "input": 10811, + "interpolation": "LINEAR", + "output": 10812 + }, + { + "input": 10813, + "interpolation": "LINEAR", + "output": 10814 + }, + { + "input": 10815, + "interpolation": "LINEAR", + "output": 10816 + }, + { + "input": 10817, + "interpolation": "LINEAR", + "output": 10818 + }, + { + "input": 10819, + "interpolation": "LINEAR", + "output": 10820 + }, + { + "input": 10821, + "interpolation": "LINEAR", + "output": 10822 + }, + { + "input": 10823, + "interpolation": "LINEAR", + "output": 10824 + }, + { + "input": 10825, + "interpolation": "LINEAR", + "output": 10826 + }, + { + "input": 10827, + "interpolation": "LINEAR", + "output": 10828 + }, + { + "input": 10829, + "interpolation": "LINEAR", + "output": 10830 + }, + { + "input": 10831, + "interpolation": "LINEAR", + "output": 10832 + }, + { + "input": 10833, + "interpolation": "LINEAR", + "output": 10834 + }, + { + "input": 10835, + "interpolation": "LINEAR", + "output": 10836 + }, + { + "input": 10837, + "interpolation": "LINEAR", + "output": 10838 + }, + { + "input": 10839, + "interpolation": "LINEAR", + "output": 10840 + }, + { + "input": 10841, + "interpolation": "LINEAR", + "output": 10842 + }, + { + "input": 10843, + "interpolation": "LINEAR", + "output": 10844 + }, + { + "input": 10845, + "interpolation": "LINEAR", + "output": 10846 + }, + { + "input": 10847, + "interpolation": "LINEAR", + "output": 10848 + }, + { + "input": 10849, + "interpolation": "LINEAR", + "output": 10850 + }, + { + "input": 10851, + "interpolation": "LINEAR", + "output": 10852 + }, + { + "input": 10853, + "interpolation": "LINEAR", + "output": 10854 + }, + { + "input": 10855, + "interpolation": "LINEAR", + "output": 10856 + }, + { + "input": 10857, + "interpolation": "LINEAR", + "output": 10858 + }, + { + "input": 10859, + "interpolation": "LINEAR", + "output": 10860 + }, + { + "input": 10861, + "interpolation": "LINEAR", + "output": 10862 + }, + { + "input": 10863, + "interpolation": "LINEAR", + "output": 10864 + }, + { + "input": 10865, + "interpolation": "LINEAR", + "output": 10866 + }, + { + "input": 10867, + "interpolation": "LINEAR", + "output": 10868 + }, + { + "input": 10869, + "interpolation": "LINEAR", + "output": 10870 + }, + { + "input": 10871, + "interpolation": "LINEAR", + "output": 10872 + }, + { + "input": 10873, + "interpolation": "LINEAR", + "output": 10874 + }, + { + "input": 10875, + "interpolation": "LINEAR", + "output": 10876 + }, + { + "input": 10877, + "interpolation": "LINEAR", + "output": 10878 + }, + { + "input": 10879, + "interpolation": "LINEAR", + "output": 10880 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 3, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 5, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 6, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 128, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 129, + "target": { + "node": 64, + "path": "translation" + } + } + ], + "name": "Use_Item", + "samplers": [ + { + "input": 10881, + "interpolation": "LINEAR", + "output": 10882 + }, + { + "input": 10883, + "interpolation": "LINEAR", + "output": 10884 + }, + { + "input": 10885, + "interpolation": "LINEAR", + "output": 10886 + }, + { + "input": 10887, + "interpolation": "LINEAR", + "output": 10888 + }, + { + "input": 10889, + "interpolation": "LINEAR", + "output": 10890 + }, + { + "input": 10891, + "interpolation": "LINEAR", + "output": 10892 + }, + { + "input": 10893, + "interpolation": "LINEAR", + "output": 10894 + }, + { + "input": 10895, + "interpolation": "LINEAR", + "output": 10896 + }, + { + "input": 10897, + "interpolation": "LINEAR", + "output": 10898 + }, + { + "input": 10899, + "interpolation": "LINEAR", + "output": 10900 + }, + { + "input": 10901, + "interpolation": "LINEAR", + "output": 10902 + }, + { + "input": 10903, + "interpolation": "LINEAR", + "output": 10904 + }, + { + "input": 10905, + "interpolation": "LINEAR", + "output": 10906 + }, + { + "input": 10907, + "interpolation": "LINEAR", + "output": 10908 + }, + { + "input": 10909, + "interpolation": "LINEAR", + "output": 10910 + }, + { + "input": 10911, + "interpolation": "LINEAR", + "output": 10912 + }, + { + "input": 10913, + "interpolation": "LINEAR", + "output": 10914 + }, + { + "input": 10915, + "interpolation": "LINEAR", + "output": 10916 + }, + { + "input": 10917, + "interpolation": "LINEAR", + "output": 10918 + }, + { + "input": 10919, + "interpolation": "LINEAR", + "output": 10920 + }, + { + "input": 10921, + "interpolation": "LINEAR", + "output": 10922 + }, + { + "input": 10923, + "interpolation": "LINEAR", + "output": 10924 + }, + { + "input": 10925, + "interpolation": "LINEAR", + "output": 10926 + }, + { + "input": 10927, + "interpolation": "LINEAR", + "output": 10928 + }, + { + "input": 10929, + "interpolation": "LINEAR", + "output": 10930 + }, + { + "input": 10931, + "interpolation": "LINEAR", + "output": 10932 + }, + { + "input": 10933, + "interpolation": "LINEAR", + "output": 10934 + }, + { + "input": 10935, + "interpolation": "LINEAR", + "output": 10936 + }, + { + "input": 10937, + "interpolation": "LINEAR", + "output": 10938 + }, + { + "input": 10939, + "interpolation": "LINEAR", + "output": 10940 + }, + { + "input": 10941, + "interpolation": "LINEAR", + "output": 10942 + }, + { + "input": 10943, + "interpolation": "LINEAR", + "output": 10944 + }, + { + "input": 10945, + "interpolation": "LINEAR", + "output": 10946 + }, + { + "input": 10947, + "interpolation": "LINEAR", + "output": 10948 + }, + { + "input": 10949, + "interpolation": "LINEAR", + "output": 10950 + }, + { + "input": 10951, + "interpolation": "LINEAR", + "output": 10952 + }, + { + "input": 10953, + "interpolation": "LINEAR", + "output": 10954 + }, + { + "input": 10955, + "interpolation": "LINEAR", + "output": 10956 + }, + { + "input": 10957, + "interpolation": "LINEAR", + "output": 10958 + }, + { + "input": 10959, + "interpolation": "LINEAR", + "output": 10960 + }, + { + "input": 10961, + "interpolation": "LINEAR", + "output": 10962 + }, + { + "input": 10963, + "interpolation": "LINEAR", + "output": 10964 + }, + { + "input": 10965, + "interpolation": "LINEAR", + "output": 10966 + }, + { + "input": 10967, + "interpolation": "LINEAR", + "output": 10968 + }, + { + "input": 10969, + "interpolation": "LINEAR", + "output": 10970 + }, + { + "input": 10971, + "interpolation": "LINEAR", + "output": 10972 + }, + { + "input": 10973, + "interpolation": "LINEAR", + "output": 10974 + }, + { + "input": 10975, + "interpolation": "LINEAR", + "output": 10976 + }, + { + "input": 10977, + "interpolation": "LINEAR", + "output": 10978 + }, + { + "input": 10979, + "interpolation": "LINEAR", + "output": 10980 + }, + { + "input": 10981, + "interpolation": "LINEAR", + "output": 10982 + }, + { + "input": 10983, + "interpolation": "LINEAR", + "output": 10984 + }, + { + "input": 10985, + "interpolation": "LINEAR", + "output": 10986 + }, + { + "input": 10987, + "interpolation": "LINEAR", + "output": 10988 + }, + { + "input": 10989, + "interpolation": "LINEAR", + "output": 10990 + }, + { + "input": 10991, + "interpolation": "LINEAR", + "output": 10992 + }, + { + "input": 10993, + "interpolation": "LINEAR", + "output": 10994 + }, + { + "input": 10995, + "interpolation": "LINEAR", + "output": 10996 + }, + { + "input": 10997, + "interpolation": "LINEAR", + "output": 10998 + }, + { + "input": 10999, + "interpolation": "LINEAR", + "output": 11000 + }, + { + "input": 11001, + "interpolation": "LINEAR", + "output": 11002 + }, + { + "input": 11003, + "interpolation": "LINEAR", + "output": 11004 + }, + { + "input": 11005, + "interpolation": "LINEAR", + "output": 11006 + }, + { + "input": 11007, + "interpolation": "LINEAR", + "output": 11008 + }, + { + "input": 11009, + "interpolation": "LINEAR", + "output": 11010 + }, + { + "input": 11011, + "interpolation": "LINEAR", + "output": 11012 + }, + { + "input": 11013, + "interpolation": "LINEAR", + "output": 11014 + }, + { + "input": 11015, + "interpolation": "LINEAR", + "output": 11016 + }, + { + "input": 11017, + "interpolation": "LINEAR", + "output": 11018 + }, + { + "input": 11019, + "interpolation": "LINEAR", + "output": 11020 + }, + { + "input": 11021, + "interpolation": "LINEAR", + "output": 11022 + }, + { + "input": 11023, + "interpolation": "LINEAR", + "output": 11024 + }, + { + "input": 11025, + "interpolation": "LINEAR", + "output": 11026 + }, + { + "input": 11027, + "interpolation": "LINEAR", + "output": 11028 + }, + { + "input": 11029, + "interpolation": "LINEAR", + "output": 11030 + }, + { + "input": 11031, + "interpolation": "LINEAR", + "output": 11032 + }, + { + "input": 11033, + "interpolation": "LINEAR", + "output": 11034 + }, + { + "input": 11035, + "interpolation": "LINEAR", + "output": 11036 + }, + { + "input": 11037, + "interpolation": "LINEAR", + "output": 11038 + }, + { + "input": 11039, + "interpolation": "LINEAR", + "output": 11040 + }, + { + "input": 11041, + "interpolation": "LINEAR", + "output": 11042 + }, + { + "input": 11043, + "interpolation": "LINEAR", + "output": 11044 + }, + { + "input": 11045, + "interpolation": "LINEAR", + "output": 11046 + }, + { + "input": 11047, + "interpolation": "LINEAR", + "output": 11048 + }, + { + "input": 11049, + "interpolation": "LINEAR", + "output": 11050 + }, + { + "input": 11051, + "interpolation": "LINEAR", + "output": 11052 + }, + { + "input": 11053, + "interpolation": "LINEAR", + "output": 11054 + }, + { + "input": 11055, + "interpolation": "LINEAR", + "output": 11056 + }, + { + "input": 11057, + "interpolation": "LINEAR", + "output": 11058 + }, + { + "input": 11059, + "interpolation": "LINEAR", + "output": 11060 + }, + { + "input": 11061, + "interpolation": "LINEAR", + "output": 11062 + }, + { + "input": 11063, + "interpolation": "LINEAR", + "output": 11064 + }, + { + "input": 11065, + "interpolation": "LINEAR", + "output": 11066 + }, + { + "input": 11067, + "interpolation": "LINEAR", + "output": 11068 + }, + { + "input": 11069, + "interpolation": "LINEAR", + "output": 11070 + }, + { + "input": 11071, + "interpolation": "LINEAR", + "output": 11072 + }, + { + "input": 11073, + "interpolation": "LINEAR", + "output": 11074 + }, + { + "input": 11075, + "interpolation": "LINEAR", + "output": 11076 + }, + { + "input": 11077, + "interpolation": "LINEAR", + "output": 11078 + }, + { + "input": 11079, + "interpolation": "LINEAR", + "output": 11080 + }, + { + "input": 11081, + "interpolation": "LINEAR", + "output": 11082 + }, + { + "input": 11083, + "interpolation": "LINEAR", + "output": 11084 + }, + { + "input": 11085, + "interpolation": "LINEAR", + "output": 11086 + }, + { + "input": 11087, + "interpolation": "LINEAR", + "output": 11088 + }, + { + "input": 11089, + "interpolation": "LINEAR", + "output": 11090 + }, + { + "input": 11091, + "interpolation": "LINEAR", + "output": 11092 + }, + { + "input": 11093, + "interpolation": "LINEAR", + "output": 11094 + }, + { + "input": 11095, + "interpolation": "LINEAR", + "output": 11096 + }, + { + "input": 11097, + "interpolation": "LINEAR", + "output": 11098 + }, + { + "input": 11099, + "interpolation": "LINEAR", + "output": 11100 + }, + { + "input": 11101, + "interpolation": "LINEAR", + "output": 11102 + }, + { + "input": 11103, + "interpolation": "LINEAR", + "output": 11104 + }, + { + "input": 11105, + "interpolation": "LINEAR", + "output": 11106 + }, + { + "input": 11107, + "interpolation": "LINEAR", + "output": 11108 + }, + { + "input": 11109, + "interpolation": "LINEAR", + "output": 11110 + }, + { + "input": 11111, + "interpolation": "LINEAR", + "output": 11112 + }, + { + "input": 11113, + "interpolation": "LINEAR", + "output": 11114 + }, + { + "input": 11115, + "interpolation": "LINEAR", + "output": 11116 + }, + { + "input": 11117, + "interpolation": "LINEAR", + "output": 11118 + }, + { + "input": 11119, + "interpolation": "LINEAR", + "output": 11120 + }, + { + "input": 11121, + "interpolation": "LINEAR", + "output": 11122 + }, + { + "input": 11123, + "interpolation": "LINEAR", + "output": 11124 + }, + { + "input": 11125, + "interpolation": "LINEAR", + "output": 11126 + }, + { + "input": 11127, + "interpolation": "LINEAR", + "output": 11128 + }, + { + "input": 11129, + "interpolation": "LINEAR", + "output": 11130 + }, + { + "input": 11131, + "interpolation": "LINEAR", + "output": 11132 + }, + { + "input": 11133, + "interpolation": "LINEAR", + "output": 11134 + }, + { + "input": 11135, + "interpolation": "LINEAR", + "output": 11136 + }, + { + "input": 11137, + "interpolation": "LINEAR", + "output": 11138 + }, + { + "input": 11139, + "interpolation": "LINEAR", + "output": 11140 + } + ] + } + ], + "asset": { + "extras": { + "author": "gacogames (https://sketchfab.com/gacogames)", + "license": "CC-BY-NC-4.0 (http://creativecommons.org/licenses/by-nc/4.0/)", + "source": "https://sketchfab.com/3d-models/claris-epic-conquest-2-296b84fba1d8465c857bd3968f06b5a4", + "title": "Claris - Epic Conquest 2" + }, + "generator": "Sketchfab-12.34.0", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 29864, + "byteStride": 8, + "name": "shortBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 53484, + "byteOffset": 29864, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 29864, + "byteOffset": 83348, + "byteStride": 8, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 89592, + "byteOffset": 113212, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 59728, + "byteOffset": 202804, + "byteStride": 16, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 3328, + "byteOffset": 262532, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 1362360, + "byteOffset": 265860, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 2762880, + "byteOffset": 1628220, + "byteStride": 12, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 1765600, + "byteOffset": 4391100, + "byteStride": 16, + "name": "floatBufferViews" + } + ], + "buffers": [ + { + "byteLength": 6156700, + "uri": "scene.bin" + } + ], + "extensionsUsed": [ + "KHR_materials_unlit" + ], + "images": [ + { + "uri": "textures/Claris_Body_baseColor.png" + }, + { + "uri": "textures/Claris_Body_emissive.png" + }, + { + "uri": "textures/Claris_Hair_emissive.png" + }, + { + "uri": "textures/Claris_Head_emissive.png" + }, + { + "uri": "textures/Claris_Sword_baseColor.png" + }, + { + "uri": "textures/Claris_Sword_emissive.png" + } + ], + "materials": [ + { + "alphaMode": "MASK", + "doubleSided": true, + "emissiveFactor": [ + 1.0, + 1.0, + 1.0 + ], + "emissiveTexture": { + "index": 1 + }, + "extensions": { + "KHR_materials_unlit": {} + }, + "name": "Claris_Body", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.0, + 0.0, + 0.0, + 1.0 + ], + "baseColorTexture": { + "index": 0 + }, + "metallicFactor": 0.0 + } + }, + { + "doubleSided": true, + "emissiveFactor": [ + 1.0, + 1.0, + 1.0 + ], + "emissiveTexture": { + "index": 2 + }, + "extensions": { + "KHR_materials_unlit": {} + }, + "name": "Claris_Hair", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.0, + 0.0, + 0.0, + 1.0 + ], + "metallicFactor": 0.0 + } + }, + { + "doubleSided": true, + "emissiveFactor": [ + 1.0, + 1.0, + 1.0 + ], + "emissiveTexture": { + "index": 3 + }, + "extensions": { + "KHR_materials_unlit": {} + }, + "name": "Claris_Head", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.0, + 0.0, + 0.0, + 1.0 + ], + "metallicFactor": 0.0 + } + }, + { + "alphaMode": "MASK", + "doubleSided": true, + "emissiveFactor": [ + 1.0, + 1.0, + 1.0 + ], + "emissiveTexture": { + "index": 5 + }, + "extensions": { + "KHR_materials_unlit": {} + }, + "name": "Claris_Sword", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.0, + 0.0, + 0.0, + 1.0 + ], + "baseColorTexture": { + "index": 4 + }, + "metallicFactor": 0.0 + } + } + ], + "meshes": [ + { + "name": "Object_0", + "primitives": [ + { + "attributes": { + "JOINTS_0": 17, + "NORMAL": 1, + "POSITION": 0, + "TEXCOORD_0": 2, + "TEXCOORD_1": 2, + "WEIGHTS_0": 18 + }, + "indices": 3, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "Object_1", + "primitives": [ + { + "attributes": { + "JOINTS_0": 19, + "NORMAL": 5, + "POSITION": 4, + "TEXCOORD_0": 6, + "WEIGHTS_0": 20 + }, + "indices": 7, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "Object_2", + "primitives": [ + { + "attributes": { + "JOINTS_0": 21, + "NORMAL": 9, + "POSITION": 8, + "TEXCOORD_0": 10, + "WEIGHTS_0": 22 + }, + "indices": 11, + "material": 2, + "mode": 4 + } + ] + }, + { + "name": "Object_3", + "primitives": [ + { + "attributes": { + "JOINTS_0": 23, + "NORMAL": 13, + "POSITION": 12, + "TEXCOORD_0": 14, + "TEXCOORD_1": 14, + "WEIGHTS_0": 24 + }, + "indices": 15, + "material": 3, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [ + 1 + ], + "matrix": [ + 0.604426383972168, + 0.0, + 0.0, + 0.0, + 0.0, + 1.342096176353653e-16, + -0.604426383972168, + 0.0, + 0.0, + 0.604426383972168, + 1.342096176353653e-16, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ], + "name": "Sketchfab_model" + }, + { + "children": [ + 2 + ], + "name": "root" + }, + { + "children": [ + 3 + ], + "matrix": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.220446049250313e-16, + 1.0, + 0.0, + 0.0, + -1.0, + 2.220446049250313e-16, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ], + "name": "GLTF_SceneRootNode" + }, + { + "children": [ + 4 + ], + "name": "BaseFemaleArma_55" + }, + { + "children": [ + 5, + 7, + 9, + 11, + 13, + 6, + 8, + 10, + 12 + ], + "name": "GLTF_created_0" + }, + { + "children": [ + 14 + ], + "name": "GLTF_created_0_rootJoint" + }, + { + "name": "Claris_Body_51" + }, + { + "mesh": 0, + "name": "Object_7", + "skin": 0 + }, + { + "name": "Claris_Hair_52" + }, + { + "mesh": 1, + "name": "Object_9", + "skin": 0 + }, + { + "name": "Claris_Head_53" + }, + { + "mesh": 2, + "name": "Object_11", + "skin": 0 + }, + { + "name": "Sword_54" + }, + { + "mesh": 3, + "name": "Object_13", + "skin": 0 + }, + { + "children": [ + 15, + 57, + 58, + 61, + 62 + ], + "name": "Root_50", + "rotation": [ + 0.7071068286895752, + -3.9055990441738686e-07, + -3.9055990441738686e-07, + 0.7071068286895752 + ] + }, + { + "children": [ + 16, + 21 + ], + "name": "CenterBodyBone_41", + "rotation": [ + -0.035526126623153687, + 0.010920517146587372, + 0.22738811373710632, + 0.9730947017669678 + ], + "translation": [ + 0.03083372302353382, + -0.08483370393514633, + -1.4512532949447632 + ] + }, + { + "children": [ + 17, + 19 + ], + "name": "hipBone_4", + "rotation": [ + 0.7071068286895752, + 2.9556483127635147e-07, + -3.1532118782706675e-07, + 0.7071068286895752 + ], + "scale": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "translation": [ + 7.450683625620513e-09, + 0.002127401065081358, + 1.1920928244535389e-07 + ] + }, + { + "children": [ + 18 + ], + "name": "ThighBone.L_1", + "rotation": [ + -0.13068453967571259, + 0.003837663447484374, + -0.20722125470638275, + 0.9695185422897339 + ], + "scale": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation": [ + 0.17381832003593445, + 0.13409781455993652, + 2.056988535059645e-08 + ] + }, + { + "name": "ShinBone.L_0", + "rotation": [ + 0.15825271606445313, + -6.4648553177448775e-09, + -3.272698378964378e-08, + 0.9873986840248108 + ], + "scale": [ + 0.9999998807907104, + 0.9999998211860657, + 0.9999996423721313 + ], + "translation": [ + 3.120402425338398e-08, + 0.6356115937232971, + -1.9667755424279676e-08 + ] + }, + { + "children": [ + 20 + ], + "name": "ThighBone.R_3", + "rotation": [ + 0.06921786814928055, + -0.23729735612869263, + 0.21124650537967682, + 0.9456604719161987 + ], + "scale": [ + 1.0000001192092896, + 0.9999998807907104, + 0.9999998211860657 + ], + "translation": [ + -0.17381839454174042, + 0.13409864902496338, + 3.172264229078792e-08 + ] + }, + { + "name": "ShinBone.R_2", + "rotation": [ + 0.1763092428445816, + 1.2066397658827555e-08, + 1.0489078050568423e-07, + 0.9843348264694214 + ], + "scale": [ + 0.9999998807907104, + 0.9999997019767761, + 0.9999998211860657 + ], + "translation": [ + 2.1122557924968532e-08, + 0.6356115937232971, + -1.9373239013020793e-08 + ] + }, + { + "children": [ + 22 + ], + "name": "lowerBodyBone_40", + "rotation": [ + -0.6495170593261719, + -0.1021478995680809, + 0.054463941603899, + 0.7514833807945251 + ], + "scale": [ + 0.9999998211860657, + 1.0, + 1.0 + ], + "translation": [ + -3.725393771247809e-09, + 0.0021273938473314047, + -1.1920911902052467e-07 + ] + }, + { + "children": [ + 23, + 34, + 44, + 55, + 56 + ], + "name": "UpperBodyBone_39", + "rotation": [ + 0.08501085638999939, + 0.05741172283887863, + 0.02501845359802246, + 0.99440997838974 + ], + "scale": [ + 1.0000001192092896, + 1.0, + 1.000000238418579 + ], + "translation": [ + 7.450580596923828e-09, + 0.2726658582687378, + -2.3283064365386963e-10 + ] + }, + { + "children": [ + 24 + ], + "name": "shoulderBone.L_15", + "rotation": [ + -0.4904356300830841, + -0.49043551087379456, + -0.50938481092453, + 0.5093849301338196 + ], + "translation": [ + 0.04481613636016846, + 0.5170730948448181, + 0.010737855918705463 + ] + }, + { + "children": [ + 25 + ], + "name": "upperArmBone.L_14", + "rotation": [ + -0.7057431936264038, + -0.02287515625357628, + -0.3990839421749115, + 0.5849233269691467 + ], + "scale": [ + 1.0000001192092896, + 1.000000238418579, + 1.000000238418579 + ], + "translation": [ + 0.023541152477264404, + 0.23651330173015594, + -0.11545215547084808 + ] + }, + { + "children": [ + 26 + ], + "name": "lowerArmBone.L_13", + "rotation": [ + 0.076701819896698, + 0.5229699611663818, + -0.23471255600452423, + 0.8157997727394104 + ], + "scale": [ + 0.9999999403953552, + 1.0, + 0.9999996423721313 + ], + "translation": [ + -1.5221168325751933e-08, + 0.4048611521720886, + 2.1348412815314077e-07 + ] + }, + { + "children": [ + 27, + 29, + 31, + 33 + ], + "name": "handBone.L_12", + "rotation": [ + -0.108771413564682, + 0.39122864603996277, + 0.12237562984228134, + 0.905612051486969 + ], + "scale": [ + 1.0, + 0.9999999403953552, + 1.0000001192092896 + ], + "translation": [ + -6.199351787472551e-08, + 0.4032704532146454, + -1.7441377053728502e-07 + ] + }, + { + "children": [ + 28 + ], + "name": "upperPointyBone.L_6", + "rotation": [ + -0.6223368048667908, + -0.000981699675321579, + 0.03366417810320854, + 0.7820247411727905 + ], + "scale": [ + 1.000000238418579, + 0.9999999403953552, + 1.0000001192092896 + ], + "translation": [ + 0.0980425700545311, + 0.21963058412075043, + -0.0024726963602006435 + ] + }, + { + "name": "LowerPointyBone.L_5", + "rotation": [ + -0.5302281379699707, + 0.0024659177288413048, + -0.05339596047997475, + 0.8461683988571167 + ], + "scale": [ + 0.9999998211860657, + 1.0, + 1.0000001192092896 + ], + "translation": [ + 5.002098291129187e-08, + 0.09750291705131531, + 3.7585900258818583e-07 + ] + }, + { + "children": [ + 30 + ], + "name": "upperFingersBone.L_8", + "rotation": [ + -0.626492977142334, + -0.07110273092985153, + 0.07480832934379578, + 0.7725636959075928 + ], + "scale": [ + 0.9999997615814209, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation": [ + -0.01622677966952324, + 0.21308614313602448, + -0.0035594343207776546 + ] + }, + { + "name": "lowerFingersBone.L_7", + "rotation": [ + -0.5015432238578796, + -0.0011796756880357862, + -0.008244046941399574, + 0.8650925159454346 + ], + "scale": [ + 1.0, + 0.9999997615814209, + 0.9999998807907104 + ], + "translation": [ + -6.632610904944158e-08, + 0.0846499651670456, + -3.436422559843777e-07 + ] + }, + { + "children": [ + 32 + ], + "name": "upperThumbBone.L_10", + "rotation": [ + -0.457303524017334, + 0.16493292152881622, + -0.3159089684486389, + 0.8147834539413452 + ], + "scale": [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999998211860657 + ], + "translation": [ + 0.11189667880535126, + 0.10988931357860565, + -0.05163133889436722 + ] + }, + { + "name": "lowerThumbBone.L_9", + "rotation": [ + 0.02291053906083107, + 0.012835772708058357, + 0.6957962512969971, + 0.7177590131759644 + ], + "scale": [ + 1.0, + 1.0000001192092896, + 0.9999998807907104 + ], + "translation": [ + -5.283480675188912e-08, + 0.08512399345636368, + -5.95298521588461e-09 + ] + }, + { + "name": "Weapon.L_11", + "rotation": [ + 0.6181666851043701, + 0.7849701046943665, + -0.033501893281936646, + 0.023865392431616783 + ], + "scale": [ + 1.000000238418579, + 1.000000238418579, + 1.000000238418579 + ], + "translation": [ + 0.005584819242358208, + 0.16604462265968323, + -0.04539349302649498 + ] + }, + { + "children": [ + 35 + ], + "name": "neckBone_25", + "rotation": [ + -0.007113472558557987, + 0.13088496029376984, + -0.04233422502875328, + 0.9904677867889404 + ], + "scale": [ + 0.9999998211860657, + 1.0, + 1.0 + ], + "translation": [ + -3.725290742551124e-09, + 0.545007050037384, + -1.4622035138245337e-08 + ] + }, + { + "children": [ + 36 + ], + "name": "headBone_24", + "rotation": [ + -0.025880848988890648, + 0.13005919754505157, + -0.04480678588151932, + 0.9901551008224487 + ], + "scale": [ + 1.0000001192092896, + 0.9999998211860657, + 1.0 + ], + "translation": [ + 1.8626465703164286e-08, + 0.11002826690673828, + 5.774199607344599e-08 + ] + }, + { + "children": [ + 37, + 41, + 42, + 43 + ], + "name": "mainHair_23", + "rotation": [ + 1.1175872316471214e-07, + 2.252641806421707e-08, + 6.984921085972928e-09, + 1.0 + ], + "scale": [ + 1.000000238418579, + 0.9999992847442627, + 1.0000003576278687 + ], + "translation": [ + 1.081958771464997e-06, + 0.3614492416381836, + 0.026841185986995697 + ] + }, + { + "children": [ + 38 + ], + "name": "BoneHair1_19", + "rotation": [ + -0.998119592666626, + 1.626306023183588e-08, + -2.1399111460596032e-07, + 0.06129661947488785 + ], + "scale": [ + 1.0000004768371582, + 1.0000004768371582, + 0.9999717473983765 + ], + "translation": [ + 5.298892347127548e-07, + -0.15833939611911774, + -0.2537655830383301 + ] + }, + { + "children": [ + 39 + ], + "name": "BoneHair2_18", + "rotation": [ + 0.1561359316110611, + -1.1686126555332521e-07, + 4.534042918891146e-09, + 0.9877355694770813 + ], + "scale": [ + 1.0000014305114746, + 1.0000017881393433, + 1.0000011920928955 + ], + "translation": [ + -7.450626782201653e-09, + 0.2539471685886383, + 2.565963654888037e-07 + ] + }, + { + "children": [ + 40 + ], + "name": "BoneHair3_17", + "rotation": [ + -0.09231442958116531, + -1.2186760933730056e-08, + -4.905819306344483e-09, + 0.995729923248291 + ], + "scale": [ + 1.0, + 1.0000005960464478, + 0.9999999403953552 + ], + "translation": [ + 6.101463075998597e-19, + 0.25331932306289673, + -2.1915489867296856e-08 + ] + }, + { + "name": "BoneHair4_16", + "rotation": [ + 7.037794347297677e-09, + -0.9896631240844727, + 0.1434117555618286, + 7.145546732090224e-08 + ], + "scale": [ + 1.0000008344650269, + 1.000001072883606, + 1.0000014305114746 + ], + "translation": [ + 7.450580596923828e-09, + 0.2637789249420166, + -8.072519541713064e-09 + ] + }, + { + "name": "AhogeBone_20", + "rotation": [ + 0.44783374667167664, + -0.23266470432281494, + 0.3746444284915924, + 0.7777876853942871 + ], + "scale": [ + 0.9999995231628418, + 0.9999998807907104, + 1.0000001192092896 + ], + "translation": [ + 5.223978973845078e-07, + 0.24314378201961517, + 0.18703265488147736 + ] + }, + { + "name": "sideBoneHair2_21", + "rotation": [ + 0.007415733765810728, + -0.07428392022848129, + -0.9923431277275085, + 0.098397396504879 + ], + "scale": [ + 0.9999983906745911, + 1.0000016689300537, + 1.0000001192092896 + ], + "translation": [ + -0.24418990314006805, + -0.13046252727508545, + 0.02965095452964306 + ] + }, + { + "name": "sideBoneHair1_22", + "rotation": [ + 0.0074174413457512856, + 0.07428368926048279, + 0.9923431277275085, + 0.09839750081300735 + ], + "scale": [ + 0.9999991059303284, + 1.0000022649765015, + 0.9999997019767761 + ], + "translation": [ + 0.24341803789138794, + -0.13046498596668243, + 0.029651431366801262 + ] + }, + { + "children": [ + 45 + ], + "name": "shoulderBone.R_36", + "rotation": [ + -0.5382572412490845, + 0.50974041223526, + 0.5019243359565735, + 0.44555118680000305 + ], + "scale": [ + 1.0, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation": [ + -0.044816140085458755, + 0.5170730948448181, + 0.010738111101090908 + ] + }, + { + "children": [ + 46 + ], + "name": "upperArmBone.R_35", + "rotation": [ + -0.5603393316268921, + 0.5143933892250061, + -0.3281325101852417, + 0.5601323843002319 + ], + "scale": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000004768371582 + ], + "translation": [ + 0.017870359122753143, + 0.23250824213027954, + -0.03527332842350006 + ] + }, + { + "children": [ + 47 + ], + "name": "lowerArmBone.R_34", + "rotation": [ + -0.07451162487268448, + 0.49918365478515625, + -0.05700938403606415, + 0.861402153968811 + ], + "scale": [ + 0.9999999403953552, + 1.0, + 0.9999998807907104 + ], + "translation": [ + -1.0599814359579796e-09, + 0.4048612713813782, + 2.05741841341478e-07 + ] + }, + { + "children": [ + 48, + 50, + 52, + 54 + ], + "name": "handBone.R_33", + "rotation": [ + 0.023212525993585587, + 0.004205343313515186, + -0.023572076112031937, + 0.999443769454956 + ], + "scale": [ + 1.0000001192092896, + 0.9999999403953552, + 1.0 + ], + "translation": [ + -6.561510446090324e-09, + 0.4032706022262573, + -4.075983284224094e-08 + ] + }, + { + "children": [ + 49 + ], + "name": "upperPointyBone.R_27", + "rotation": [ + -0.5146673917770386, + 0.04997491091489792, + -0.08315925300121307, + 0.8518829345703125 + ], + "scale": [ + 1.0000001192092896, + 1.0000001192092896, + 1.000000238418579 + ], + "translation": [ + -0.0980425551533699, + 0.21963056921958923, + -0.002472685882821679 + ] + }, + { + "name": "LowerPointyBone.R_26", + "rotation": [ + -0.42176100611686707, + 0.06273207068443298, + 0.009731813333928585, + 0.9044820070266724 + ], + "scale": [ + 0.9999998211860657, + 0.9999998211860657, + 0.9999999403953552 + ], + "translation": [ + 1.2702328966440746e-08, + 0.09750256687402725, + 1.212098084124591e-07 + ] + }, + { + "children": [ + 51 + ], + "name": "upperFingersBone.R_29", + "rotation": [ + -0.5430818796157837, + 0.06296972185373306, + -0.08177221566438675, + 0.8333128094673157 + ], + "scale": [ + 0.9999997615814209, + 1.0, + 1.0 + ], + "translation": [ + 0.016226772218942642, + 0.21308618783950806, + -0.003559493226930499 + ] + }, + { + "name": "lowerFingersBone.R_28", + "rotation": [ + -0.40921831130981445, + 0.002027421025559306, + 0.008077403530478477, + 0.9123985171318054 + ], + "scale": [ + 0.9999998807907104, + 1.0, + 0.9999998211860657 + ], + "translation": [ + -1.8281031799460834e-08, + 0.08464992046356201, + -2.568585841800086e-07 + ] + }, + { + "children": [ + 53 + ], + "name": "upperThumbBone.R_31", + "rotation": [ + -0.43224582076072693, + -0.12903627753257751, + 0.15030042827129364, + 0.8797289729118347 + ], + "scale": [ + 1.0000001192092896, + 0.9999998211860657, + 1.0000001192092896 + ], + "translation": [ + -0.11189673840999603, + 0.10988939553499222, + -0.051631443202495575 + ] + }, + { + "name": "lowerThumbBone.R_30", + "rotation": [ + 0.14811435341835022, + -0.12198013812303543, + -0.12739089131355286, + 0.9731159210205078 + ], + "scale": [ + 0.9999998807907104, + 0.9999998807907104, + 1.0 + ], + "translation": [ + -3.95248065387932e-08, + 0.08512388914823532, + 1.1159428936480253e-07 + ] + }, + { + "name": "Weapon.R_32", + "rotation": [ + 0.6181666851043701, + -0.7849701046943665, + 0.03350190073251724, + 0.023865383118391037 + ], + "scale": [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "translation": [ + -0.0055849808268249035, + 0.16604456305503845, + -0.04539348930120468 + ] + }, + { + "name": "BubBone.L_37", + "rotation": [ + -5.38588871279444e-08, + -0.693580687046051, + -0.7203789949417114, + 1.343413345011868e-07 + ], + "scale": [ + 0.9999999403953552, + 1.0000001192092896, + 1.0 + ], + "translation": [ + 0.13640326261520386, + 0.2850472331047058, + 0.0019397980067878962 + ] + }, + { + "name": "BubBone.R_38", + "rotation": [ + -9.589318494818144e-08, + -0.6935806274414063, + -0.7203789949417114, + 5.750572640295104e-08 + ], + "scale": [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation": [ + -0.13640321791172028, + 0.28504735231399536, + 0.0019399267621338367 + ] + }, + { + "name": "kneePoleTargetBone.L_42", + "rotation": [ + -0.7071068286895752, + 4.0205054574471433e-07, + 4.0205054574471433e-07, + 0.7071068286895752 + ], + "translation": [ + 0.27831587195396423, + 0.5460788011550903, + -0.7300586700439453 + ] + }, + { + "children": [ + 59 + ], + "name": "IkFootTarget.L_45", + "rotation": [ + -0.9956935048103333, + -0.09270711243152618, + 5.499564394995105e-07, + 5.1205393702957736e-08 + ], + "translation": [ + 0.5804785490036011, + 0.417879581451416, + -0.24350875616073608 + ] + }, + { + "children": [ + 60 + ], + "name": "footBone.L_44", + "rotation": [ + -0.9503703713417053, + -9.398842593100198e-09, + -1.0391106641804981e-08, + 0.31112077832221985 + ], + "scale": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999996423721313 + ], + "translation": [ + 3.427267074584961e-07, + -1.3931118303389667e-07, + -6.167671244838857e-07 + ] + }, + { + "name": "toeBone.L_43", + "rotation": [ + -8.460174427682432e-08, + 0.9818702340126038, + -0.1895543485879898, + 4.2325791582698e-07 + ], + "scale": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation": [ + 1.2908153617708674e-14, + 0.28249984979629517, + -1.0105048353636903e-08 + ] + }, + { + "name": "kneePoleTargetBone.R_46", + "rotation": [ + -0.7071068286895752, + 4.0205054574471433e-07, + 4.0205054574471433e-07, + 0.7071068286895752 + ], + "translation": [ + -0.33675435185432434, + 0.5460788011550903, + -0.6843864917755127 + ] + }, + { + "children": [ + 63 + ], + "name": "IkFootTarget.R_49", + "rotation": [ + -0.9839146137237549, + -0.17863963544368744, + 5.434504828372155e-07, + 9.866892725085563e-08 + ], + "translation": [ + -0.5662504434585571, + -0.5383205413818359, + -0.2435074895620346 + ] + }, + { + "children": [ + 64 + ], + "name": "footBone.R_48", + "rotation": [ + -0.9503704309463501, + -2.1115706516638966e-08, + 3.1053627225219316e-08, + 0.31112074851989746 + ], + "scale": [ + 1.0000001192092896, + 1.0000003576278687, + 0.9999995827674866 + ], + "translation": [ + -8.791685104370117e-07, + 4.078277697772137e-07, + -1.98022667063924e-06 + ] + }, + { + "name": "toeBone.R_47", + "rotation": [ + -9.686417001830705e-08, + -0.9818702340126038, + 0.189554363489151, + 4.190691242911271e-07 + ], + "scale": [ + 1.0, + 1.0000001192092896, + 1.0 + ], + "translation": [ + 5.9604641222676946e-08, + 0.28249987959861755, + -1.0825829122040886e-08 + ] + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + ], + "scene": 0, + "scenes": [ + { + "name": "Sketchfab_Scene", + "nodes": [ + 0 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 16, + "joints": [ + 5, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64 + ], + "skeleton": 5 + } + ], + "textures": [ + { + "sampler": 0, + "source": 0 + }, + { + "sampler": 0, + "source": 1 + }, + { + "sampler": 0, + "source": 2 + }, + { + "sampler": 0, + "source": 3 + }, + { + "sampler": 0, + "source": 4 + }, + { + "sampler": 0, + "source": 5 + } + ] +} diff --git a/demo/assets/anime-character/textures/Claris_Body_baseColor.png b/demo/assets/anime-character/textures/Claris_Body_baseColor.png new file mode 100644 index 0000000..b62cf96 Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Body_baseColor.png differ diff --git a/demo/assets/anime-character/textures/Claris_Body_emissive.png b/demo/assets/anime-character/textures/Claris_Body_emissive.png new file mode 100644 index 0000000..5e19ec0 Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Body_emissive.png differ diff --git a/demo/assets/anime-character/textures/Claris_Hair_emissive.png b/demo/assets/anime-character/textures/Claris_Hair_emissive.png new file mode 100644 index 0000000..41c43e5 Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Hair_emissive.png differ diff --git a/demo/assets/anime-character/textures/Claris_Head_emissive.png b/demo/assets/anime-character/textures/Claris_Head_emissive.png new file mode 100644 index 0000000..5601fc3 Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Head_emissive.png differ diff --git a/demo/assets/anime-character/textures/Claris_Sword_baseColor.png b/demo/assets/anime-character/textures/Claris_Sword_baseColor.png new file mode 100644 index 0000000..9c15adb Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Sword_baseColor.png differ diff --git a/demo/assets/anime-character/textures/Claris_Sword_emissive.png b/demo/assets/anime-character/textures/Claris_Sword_emissive.png new file mode 100644 index 0000000..7e064cc Binary files /dev/null and b/demo/assets/anime-character/textures/Claris_Sword_emissive.png differ diff --git a/demo/assets/as/character-anim-export.fbx b/demo/assets/as/character-anim-export.fbx new file mode 100644 index 0000000..d3ae837 Binary files /dev/null and b/demo/assets/as/character-anim-export.fbx differ diff --git a/demo/assets/as/source/character-anim-export.fbx b/demo/assets/as/source/character-anim-export.fbx new file mode 100644 index 0000000..d3ae837 Binary files /dev/null and b/demo/assets/as/source/character-anim-export.fbx differ diff --git a/demo/assets/as/textures/01_-_Default_AO.jpg b/demo/assets/as/textures/01_-_Default_AO.jpg new file mode 100644 index 0000000..5ba9902 Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_AO.jpg differ diff --git a/demo/assets/as/textures/01_-_Default_albedo.jpg b/demo/assets/as/textures/01_-_Default_albedo.jpg new file mode 100644 index 0000000..0b7aae2 Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_albedo.jpg differ diff --git a/demo/assets/as/textures/01_-_Default_metallic.jpg b/demo/assets/as/textures/01_-_Default_metallic.jpg new file mode 100644 index 0000000..630aae1 Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_metallic.jpg differ diff --git a/demo/assets/as/textures/01_-_Default_normal.png b/demo/assets/as/textures/01_-_Default_normal.png new file mode 100644 index 0000000..cdcbe80 Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_normal.png differ diff --git a/demo/assets/as/textures/01_-_Default_opacity.jpg b/demo/assets/as/textures/01_-_Default_opacity.jpg new file mode 100644 index 0000000..ba281f0 Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_opacity.jpg differ diff --git a/demo/assets/as/textures/01_-_Default_roughness.jpg b/demo/assets/as/textures/01_-_Default_roughness.jpg new file mode 100644 index 0000000..a62b60a Binary files /dev/null and b/demo/assets/as/textures/01_-_Default_roughness.jpg differ diff --git a/demo/assets/city/city.glb b/demo/assets/city/city.glb new file mode 100644 index 0000000..d950294 Binary files /dev/null and b/demo/assets/city/city.glb differ diff --git a/demo/assets/city/source/scene test.fbx b/demo/assets/city/source/scene test.fbx new file mode 100644 index 0000000..3d1977e --- /dev/null +++ b/demo/assets/city/source/scene test.fbx @@ -0,0 +1,183864 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2017 + Month: 10 + Day: 30 + Hour: 18 + Minute: 03 + Second: 32 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2017-10-30 18:03:32:000" +Creator: "Blender version 2.77 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 120 + ObjectType: "Model" { + Count: 116 + } + ObjectType: "Geometry" { + Count: 106 + } + ObjectType: "Material" { + Count: 3 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::gt_fire_1_003", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.544200599193573,4.196186542510986,-14.220603942871094 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999995674159678,-49.263548766062833,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.448109865188599,2.448109865188599,2.448109626770020 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_fire_1_002", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-2.597117662429810,2.685384750366211,7.254366397857666 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999995674159678,-49.263548766062833,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.448109865188599,2.448109865188599,2.448109626770020 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_fire_1_001", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",5.515228271484375,2.202894210815430,-4.253108978271484 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.904528617858887,2.904528617858887,2.904528617858887 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_006", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-2.954452276229858,4.319375514984131,8.154943466186523 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000002504348856,-32.626778891444779,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.600598692893982,1.600598692893982,1.600598692893982 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_005", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-3.166412353515625,4.319375514984131,8.486035346984863 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000016164727199,-54.238614161263364,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.492693424224854,2.492693424224854,2.492693185806274 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_004", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",5.948089599609375,1.959203004837036,-3.643865108489990 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000002504348856,-134.193095453262885,-0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.829584956169128,1.829584956169128,1.829584956169128 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_003", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",5.043613910675049,3.468612670898438,-11.242835044860840 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000029825105528,-100.379840986002321,-0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.276839375495911,1.276839375495911,1.276839375495911 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_002", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",9.313110351562500,5.581695079803467,-11.004759788513184 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,-54.238603915979610,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.462559223175049,1.462559223175049,1.462559223175049 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_fire_2_002", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.901066601276398,4.174376964569092,-13.516775131225586 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000002504348856,8.207412292543051,-0.000000608392631 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.827595472335815,2.231772422790527,2.231772661209106 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::gt_smoke_1_001", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",5.988043785095215,3.293737173080444,-10.272465705871582 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",2.608999729156494,2.608999729156494,2.608999729156494 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::scene", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",7.142735481262207,6.162922382354736,9.080159187316895 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-94.355737081464781,1.666607245337443,-14.770632419779021 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -2.064075,-1.297478,-1.130571,-2.097698,-1.188467,-1.137409,-2.138980,-1.227764,-1.153862,-2.046763,-1.266449,-1.220640, + -2.009782,-1.249894,-1.161887,-2.079824,-1.298379,-1.039155,-2.159117,-1.345500,-1.136461,-2.072420,-1.874627,-1.729164, + -2.050346,-1.918062,-1.718156,-2.026903,-1.959942,-1.194323,-1.981316,-2.125202,-1.263920,-2.086716,-2.040721,-1.272404, + -2.072407,-1.967358,-1.211800,-2.019305,-1.802659,-1.454481,-1.935662,-1.812218,-1.445016,-1.962588,-1.735165,-1.454362, + -2.005202,-1.734837,-1.444769,-2.026561,-2.030947,-1.077401,-2.026777,-1.801184,-0.906849,-1.980229,-1.765782,-0.880288, + -2.026250,-1.822464,-1.863550,-2.159508,-1.954814,-1.843332,-2.042239,-2.045396,-1.825648,-1.926745,-1.912740,-1.845102, + -2.114029,-1.270571,-1.150363,-2.102457,-1.261927,-1.113312,-1.915231,-1.763276,-0.998911,-2.017077,-1.809477,-0.984554, + -2.088168,-1.545281,-1.042854,-2.077489,-1.561599,-1.088938,-1.999286,-1.546503,-1.107552,-2.043464,-1.516179,-1.030177, + -1.908563,-1.798120,-1.588695,-1.982677,-1.914998,-1.532345,-2.084059,-1.829265,-1.547714,-2.011313,-1.730979,-1.596398, + -1.975725,-1.882584,-1.772163,-2.018064,-1.989056,-1.717645,-2.118524,-1.902590,-1.733369,-2.043086,-1.828821,-1.764742, + -1.822638,-1.698978,-1.869541,-1.997145,-1.820655,-1.582247,-2.013016,-1.150083,-1.217092,-1.997539,-1.335619,-1.080900, + -2.057797,-1.382005,-1.197703,-2.009873,-1.234315,-1.251836,-2.123742,-1.158324,-1.202284,-1.959280,-1.207103,-1.179628, + -2.076560,-1.129334,-1.146076,-2.154018,-1.842569,-1.277905,-2.050043,-1.943397,-1.108892,-1.832108,-1.771363,-0.834410, + -1.819769,-1.721238,-0.823538,-1.837405,-1.784092,-0.660489,-1.895230,-1.732724,-0.910402,-1.886604,-1.803224,-0.890325, + -1.862944,-1.805107,-0.769506,-1.837023,-1.709800,-0.745437,-1.806380,-1.740992,-0.673935,-1.857095,-1.775265,-0.694089, + -1.837685,-1.656766,-0.772034,-1.809415,-1.687954,-0.695818,-1.869826,-1.803213,-0.775637,-1.848611,-1.698032,-0.737062, + -1.814367,-1.735486,-0.655894,-1.797766,-1.851875,-0.626770,-1.775936,-1.789470,-0.603707,-1.851700,-1.847113,-0.693483, + -1.924338,-1.778282,-0.821447,-1.867968,-1.680246,-0.796627,-1.835816,-1.728396,-0.669898,-1.856446,-1.707542,-0.727255, + -1.824534,-1.799068,-0.671215,-1.838073,-1.797225,-0.710690,-1.796234,-1.701828,-0.707599,-1.822944,-1.743373,-0.680624, + -1.843574,-1.722519,-0.737981,-1.979423,-1.888007,-1.161327,-1.964243,-1.732279,-0.964714,-2.118053,-1.664173,-0.898063, + -2.052285,-1.611813,-0.895973,-2.048066,-1.810301,-0.960707,-2.044534,-1.816363,-1.222821,-1.920928,-1.696789,-0.892900, + -1.945941,-1.773330,-1.068662,-2.057001,-1.787179,-0.854364,-2.026010,-1.862204,-0.946101,-2.173720,-2.104778,-1.319905, + -2.010569,-1.759803,-0.830313,-1.973744,-1.739622,-0.828897,-1.919264,-1.687631,-0.966557,-2.074416,-1.760970,-0.926265, + -2.035868,-1.816974,-0.901320,-2.038994,-1.276481,-1.159349,-1.986092,-1.521400,-1.084802,-1.906425,-1.746709,-0.942756, + -2.012017,-1.904210,-1.727830,-1.957622,-2.009804,-1.227591,-1.914646,-1.770770,-1.444708,-2.033636,-1.802022,-0.872190, + -1.997834,-1.774664,-0.848261,-1.892974,-1.696817,-0.949862,-2.079550,-1.982759,-1.138692,-2.009213,-1.919917,-1.196580, + -2.049379,-2.034086,-1.124202,-2.072127,-1.949919,-1.111790,-1.985222,-1.887577,-1.174523,-2.049158,-2.035269,-1.079794, + -2.057775,-2.048292,-1.091750,-2.090688,-1.968161,-1.129635,-2.006428,-1.908245,-1.193210,-1.978573,-1.796573,-0.846487, + -1.955759,-1.780148,-0.844804,-1.921694,-1.778064,-0.821010,-2.018266,-1.839234,-1.008526,-1.993613,-1.796675,-1.032307, + -1.949915,-1.812696,-1.099164,-1.866483,-1.722733,-0.950670,-1.967228,-1.749588,-0.846018,-1.723793,-1.852585,-0.629668, + -1.705298,-1.832650,-0.621645,-1.740703,-1.902964,-0.674359,-1.722272,-1.889401,-0.567797,-1.689789,-1.811592,-0.536198, + -1.741106,-1.927261,-0.617944,-1.301518,-1.779627,-0.623850,-1.207381,-1.799709,-0.563859,-1.229549,-1.826020,-0.586457, + -1.226621,-1.721068,-0.636724,-1.252949,-1.695680,-0.586357,-1.354032,-1.819056,-0.560555,-1.292389,-1.869950,-0.661240, + -1.714550,-2.204193,-1.732557,-1.760681,-2.219031,-1.720442,-1.808674,-2.066509,-1.238038,-1.973873,-2.142934,-1.265633, + -1.841227,-2.178715,-1.290517,-1.785314,-2.106211,-1.249703,-1.756067,-2.012433,-1.534808,-1.817163,-1.954266,-1.524035, + -1.736839,-1.927754,-1.522739,-1.709589,-1.954785,-1.519021,-1.951334,-2.069443,-1.345399,-1.809412,-2.115932,-1.100049, + -1.704783,-1.897450,-0.992815,-1.722614,-1.844194,-0.923129,-1.694850,-2.179703,-1.857221,-1.682276,-2.355354,-1.790577, + -1.831217,-2.353263,-1.804007,-1.829314,-2.191342,-1.872443,-1.252058,-1.811234,-0.609982,-1.281954,-1.812416,-0.583786, + -1.664457,-1.841460,-1.033563,-1.660311,-1.897437,-1.055077,-1.475351,-1.887749,-0.802239,-1.441742,-1.864640,-0.831229, + -1.446481,-1.783513,-0.821949,-1.493472,-1.846832,-0.770562,-1.807979,-2.001637,-1.683787,-1.835106,-2.103403,-1.578804, + -1.701495,-2.102544,-1.575801,-1.686488,-2.012353,-1.668726,-1.787178,-2.176069,-1.803301,-1.831165,-2.254412,-1.715773, + -1.697814,-2.252013,-1.712475,-1.703046,-2.170835,-1.783651,-1.768784,-1.961942,-1.919961,-1.756281,-2.062658,-1.640958, + -1.150311,-1.701463,-0.617434,-1.374094,-1.723476,-0.613834,-1.297636,-1.759415,-0.717935,-1.221482,-1.670176,-0.622409, + -1.177756,-1.801447,-0.623747,-1.201546,-1.653024,-0.550380,-1.141959,-1.788280,-0.573159,-1.656092,-2.099976,-1.350435, + -1.726187,-2.056411,-1.140187,-1.763125,-1.701505,-0.835650,-1.776252,-1.809429,-0.844314,-1.736439,-1.785894,-0.875966, + -1.729067,-1.733634,-0.872944,-1.616874,-1.827391,-0.755747,-1.781040,-1.738652,-0.863396,-1.745376,-1.741434,-0.980240, + -1.735636,-1.802250,-0.951544,-1.813560,-1.842764,-0.927919,-1.841182,-1.756483,-1.029927,-1.728665,-1.670631,-0.767813, + -1.777344,-1.838398,-0.815966,-1.680896,-1.832786,-0.848373,-1.656354,-1.737818,-0.828458,-1.633906,-1.767142,-0.751540, + -1.708003,-1.650458,-0.734397,-1.625285,-1.820778,-0.794219,-1.654543,-1.692724,-0.851142,-1.628676,-1.723440,-0.773888, + -1.701255,-1.699841,-0.692389,-1.677262,-1.739678,-0.622675,-1.793839,-1.863051,-0.836483,-1.683694,-1.839758,-0.856036, + -1.636198,-1.739737,-0.828814,-1.612626,-1.775096,-0.743035,-1.639894,-1.882872,-0.694963,-1.617436,-1.820589,-0.672171, + -1.691433,-1.902805,-0.581334,-1.690242,-1.691911,-0.674437,-1.651298,-1.886460,-0.780047,-1.775727,-1.927791,-0.765126, + -1.824105,-1.859215,-0.908297,-1.672063,-1.823491,-0.919953,-1.660256,-1.721028,-0.886347,-1.755971,-1.764399,-0.793657, + -1.606663,-1.773388,-0.768880,-1.627376,-1.752518,-0.826201,-1.637379,-1.835814,-0.752056,-1.711734,-1.659854,-0.738764, + -1.656060,-1.832960,-0.789310,-1.649766,-1.730586,-0.770865,-1.751738,-1.613036,-0.852658,-1.627167,-1.781811,-0.765189, + -1.647880,-1.760941,-0.822511,-1.873177,-1.928721,-1.188382,-1.937075,-2.104135,-1.070431,-1.750443,-1.968020,-1.186952, + -1.638623,-1.812088,-0.958563,-2.045495,-2.245029,-1.308403,-1.861062,-1.878022,-1.249903,-1.832095,-1.893046,-0.901011, + -1.564554,-1.940181,-0.879062,-1.624293,-1.855325,-0.814998,-1.813002,-1.780442,-0.921025,-1.609455,-1.926256,-0.985273, + -1.869259,-1.812541,-1.129793,-1.699022,-1.986933,-1.304238,-1.704862,-1.774849,-0.935237,-1.672480,-1.809538,-1.079352, + -1.685684,-1.928148,-0.906468,-1.670916,-1.950335,-0.970422,-1.859947,-2.268287,-1.358086,-1.714056,-1.858646,-0.891926, + -1.723403,-1.824603,-0.904834,-1.817864,-1.741683,-1.013044,-1.658949,-1.713777,-0.924953,-1.843987,-1.951685,-0.917037, + -1.601254,-1.930668,-0.955883,-1.683680,-1.932576,-0.936903,-1.280439,-1.741776,-0.620750,-1.464441,-1.775901,-0.791269, + -1.681093,-1.766380,-0.965222,-1.779216,-2.191994,-1.746520,-1.896493,-2.052614,-1.255999,-1.790282,-1.907612,-1.502362, + -1.698991,-1.915025,-0.913586,-1.728819,-1.853110,-0.906807,-1.692299,-1.744264,-0.961610,-1.743918,-2.093956,-1.191603, + -1.956085,-2.120501,-1.121820,-1.900705,-1.965880,-1.234450,-1.770339,-2.018023,-1.230911,-1.811944,-2.135139,-1.135070, + -1.717961,-2.072300,-1.149784,-1.876986,-1.923557,-1.208416,-1.949029,-2.118633,-1.077621,-1.754790,-1.973091,-1.204084, + -1.794901,-2.131939,-1.108761,-1.792740,-2.140762,-1.131117,-1.723748,-2.092411,-1.181635,-1.957077,-2.125544,-1.106870, + -1.892741,-1.945355,-1.234853,-1.764149,-2.005037,-1.228601,-1.825412,-1.739632,-0.979125,-1.746980,-1.842360,-0.925281, + -1.747572,-1.820203,-0.939945,-1.827433,-1.871881,-0.897801,-1.673245,-1.822472,-0.917862,-1.643271,-1.918737,-1.032370, + -1.620562,-1.833829,-1.057444,-1.707872,-1.846754,-1.119469,-1.725675,-1.735021,-0.979075,-1.722574,-1.820399,-0.919356, + -1.688952,-1.859426,-0.644718,-1.688603,-1.835928,-0.628856,-1.725918,-1.905867,-0.680745,-1.691222,-1.815680,-0.620448, + -1.723319,-1.939276,-0.638575,-1.660719,-1.830551,-0.543071,-1.759804,-1.955294,-0.715762,-1.658086,-1.902004,-0.595522, + -1.631410,-1.823054,-0.561415,-1.693670,-1.936575,-0.638434,-1.654871,-1.798715,-0.544004,-1.867996,-1.839108,-1.131324, + -1.809584,-1.819525,-1.138118,-1.820831,-1.844757,-1.138040,5.724406,15.874540,-0.238315,5.476993,15.886068,-0.293163, + 5.725087,15.893381,-0.237388,5.477833,15.911114,-0.291891,5.622389,15.910419,-0.885823,5.869231,15.908087,-0.796474, + 5.869913,15.926929,-0.795546,5.623230,15.935465,-0.884551,5.146813,15.901033,-0.322829,5.144717,15.829218,-0.328299, + 5.368034,15.950960,-1.023371,5.365939,15.879145,-1.028841,5.763872,15.798853,-0.166821,5.765967,15.870668,-0.161351, + 5.926841,15.849632,-0.856235,5.928936,15.921448,-0.850765,5.630968,15.924969,-0.886129,5.482282,15.930168,-0.297875, + 5.400271,15.936535,-0.946000,5.401064,15.955389,-0.945500,5.632022,15.950031,-0.885464,5.480626,15.884499,-0.300109, + 5.211909,15.899654,-0.357865,5.212702,15.918510,-0.357365,5.705078,11.990492,-2.039037,5.821432,15.977886,-1.735322, + 5.915584,15.973269,-1.710767,5.799230,11.985874,-2.014482,5.679594,11.983888,-1.942565,5.795948,15.971281,-1.638850, + 5.890100,15.966663,-1.614295,5.773746,11.979270,-1.918010,6.646597,11.944315,-1.793486,6.762950,15.931709,-1.489771, + 6.857103,15.927092,-1.465216,6.740749,11.939697,-1.768931,6.621113,11.937711,-1.697014,6.737466,15.925104,-1.393299, + 6.831619,15.920486,-1.368744,6.715265,11.933093,-1.672459,7.551559,11.899931,-1.557469,7.667913,15.887325,-1.253754, + 7.762064,15.882708,-1.229200,7.645711,11.895313,-1.532914,7.526075,11.893326,-1.460997,7.642429,15.880720,-1.157282, + 7.736580,15.876102,-1.132727,7.620227,11.888708,-1.436442,4.793646,12.035194,-2.276742,4.910000,16.022589,-1.973027, + 5.004151,16.017971,-1.948472,4.887798,12.030577,-2.252187,4.768162,12.028589,-2.180269,4.884516,16.015984,-1.876554, + 4.978667,16.011366,-1.851999,4.862314,12.023972,-2.155714,3.794609,12.084192,-2.537293,3.910962,16.071587,-2.233579, + 4.032546,16.065624,-2.201870,3.916193,12.078229,-2.505584,3.769125,12.077587,-2.440821,3.885478,16.064981,-2.137107, + 4.007061,16.059019,-2.105397,3.890708,12.071625,-2.409112,7.633375,11.920084,-1.570188,3.855690,12.105359,-2.555420, + 3.858524,12.202447,-2.548025,7.636207,12.017172,-1.562793,7.607891,11.913480,-1.473716,3.830206,12.098755,-2.458948, + 3.833040,12.195843,-2.451552,7.610723,12.010568,-1.466321,7.745796,15.772734,-1.276737,3.968112,15.958010,-2.261969, + 3.970945,16.055098,-2.254574,7.748629,15.869822,-1.269342,7.720312,15.766130,-1.180264,3.942628,15.951405,-2.165497, + 3.945461,16.048492,-2.158101,7.723145,15.863218,-1.172869,7.729134,15.201742,-1.320228,3.951450,15.387016,-2.305461, + 3.954284,15.484106,-2.298065,7.731967,15.298830,-1.312833,7.703650,15.195137,-1.223756,3.925966,15.380413,-2.208988, + 3.928800,15.477501,-2.201593,7.706483,15.292227,-1.216361,4.602568,13.397126,-4.302099,4.665007,15.536882,-4.139116, + 8.021441,15.349680,-3.265294,7.982319,13.231364,-3.420649,4.051286,13.263528,-2.336924,4.113725,15.403284,-2.173941, + 7.553650,15.234571,-1.276798,7.491211,13.094815,-1.439780,3.852242,12.123806,-2.467529,7.592727,11.940351,-1.491999, + 6.549884,11.504595,2.366946,2.847510,11.686138,1.401353,2.970470,15.918394,1.725769,6.672843,15.736814,2.691360, + 5.198025,11.756588,-0.138822,5.311941,15.939499,0.211005,5.406093,15.934881,0.235560,5.292176,11.751970,-0.114267, + 5.169018,11.749070,-0.029015,5.286457,15.932894,0.307477,5.380609,15.928276,0.332033,5.263170,11.744452,-0.004460, + 6.139544,11.710410,0.106729,6.253460,15.893322,0.456556,6.347612,15.888704,0.481111,6.233695,11.705792,0.131284, + 6.110537,11.702892,0.216536,6.227975,15.886717,0.553028,6.322127,15.882099,0.577584,6.204689,11.698275,0.241091, + 7.007820,11.632395,0.330752,7.123962,15.891582,0.686389,7.218113,15.886965,0.710945,7.101972,11.627777,0.355307, + 6.966266,11.621626,0.488055,7.085931,15.881725,0.830357,7.180083,15.877108,0.854913,7.060419,11.617008,0.512610, + 4.256506,11.802765,-0.384374,4.370422,15.985676,-0.034546,4.464574,15.981058,-0.009991,4.350657,11.798147,-0.359818, + 4.227499,11.795247,-0.274566,4.344938,15.979071,0.061927,4.439090,15.974453,0.086481,4.321651,11.790629,-0.250011, + 3.347423,11.792356,-0.614888,3.450168,16.063374,-0.272322,3.560563,16.057959,-0.243531,3.441575,11.787738,-0.590333, + 3.310790,11.802600,-0.472499,3.414808,16.054209,-0.138466,3.525203,16.048794,-0.109675,3.404942,11.797982,-0.447944, + 7.070546,11.659106,0.392462,3.365074,11.840839,-0.573939,3.363547,12.003804,-0.537437,7.069019,11.822071,0.428962, + 7.041965,11.621298,0.494938,3.336493,11.803032,-0.471461,3.341828,11.985862,-0.457535,7.047300,11.804129,0.508864, + 7.199684,15.695177,0.728633,3.458970,15.878639,-0.246957,3.462148,16.055771,-0.225832,7.202861,15.872309,0.749757, + 7.177162,15.704140,0.816672,3.436449,15.887602,-0.158918,3.439896,16.034876,-0.144439,7.180608,15.851414,0.831150, + 6.739776,13.673058,2.576279,2.771253,13.867691,1.541276,2.768109,13.759937,1.533069,6.736632,13.565304,2.568072, + 6.765674,13.679770,2.478239,2.784257,13.871061,1.492045,2.781114,13.763308,1.483838,6.762530,13.572015,2.470032, + 6.766648,14.745334,2.674887,2.798125,14.939966,1.639884,2.797683,14.833540,1.621565,6.766206,14.638906,2.656568, + 6.787605,14.757565,2.590536,2.814412,14.951714,1.579644,2.813970,14.845287,1.561325,6.787163,14.651137,2.572216, + 6.812521,15.723747,2.682990,2.843997,15.918381,1.647987,2.847142,16.026136,1.656194,6.815665,15.831501,2.691198, + 6.787036,15.717144,2.779463,2.818513,15.911777,1.744460,2.821657,16.019531,1.752667,6.790181,15.824896,2.787670, + 6.717603,12.489005,2.438632,2.749081,12.683639,1.403628,2.753267,12.791567,1.407871,6.721791,12.596933,2.442874, + 6.695404,12.487304,2.523432,2.726881,12.681937,1.488428,2.731068,12.789866,1.492671,6.699591,12.595233,2.527674, + 6.686753,11.413599,2.354693,2.718229,11.608233,1.319689,2.721373,11.715986,1.327896,6.689896,11.521353,2.362900, + 6.661268,11.406995,2.451165,2.692745,11.601629,1.416162,2.695889,11.709382,1.424369,6.664412,11.514749,2.459373, + 6.704315,15.809340,2.695953,6.576941,11.444069,2.363457,6.531767,11.446284,2.351676,6.659141,15.811556,2.684172, + 6.693677,15.802233,2.793340,6.566304,11.436961,2.460845,6.506283,11.439680,2.448149,6.633657,15.804951,2.780645, + 2.980376,15.991980,1.724738,2.853002,11.626706,1.392243,2.760806,11.631227,1.368197,2.888179,15.996500,1.700693, + 2.954892,15.985374,1.821211,2.827518,11.620102,1.488716,2.728673,11.623598,1.480682,2.856047,15.988871,1.813178, + 3.507445,11.542542,2.654738,3.965893,16.018599,-2.170868,3.603120,15.872604,2.925166,7.706378,15.835144,-1.195337, + 6.497521,15.650076,2.706626,3.003541,15.817141,1.793242,3.012222,16.007595,1.795369,6.505943,15.831671,2.708078, + 6.766855,15.726038,2.769953,2.824289,15.914957,1.741494,2.827253,16.016506,1.749229,6.769559,15.818729,2.777014, + 3.557509,15.927717,3.028237,3.624653,15.846949,2.899086,3.560654,16.035469,3.036444,3.633514,16.043608,2.901685, + 6.373485,11.450950,2.370649,2.882506,11.622808,1.459122,2.885568,11.727745,1.467115,6.376462,11.552982,2.378421, + 6.646904,11.414336,2.440561,2.701283,11.608318,1.412317,2.704175,11.707440,1.419867,6.649717,11.510712,2.447901, + 3.425124,11.390798,2.682666,3.499366,11.446269,2.551512,3.429093,11.526846,2.693029,3.502695,11.560347,2.560202, + 3.456532,11.374624,2.618314,3.424327,11.370446,2.685499,3.558929,16.107128,3.060136,6.680673,11.390711,2.423076, + 6.810747,15.848366,2.762609,6.684639,11.387619,2.462155,6.814711,15.845272,2.801687,2.612451,11.585326,1.426494, + 2.742524,16.042982,1.766028,2.704316,11.585173,1.393324,2.834389,16.042828,1.732857,3.595694,16.097656,2.972905, + 7.031307,11.692409,0.437407,3.526336,15.920462,-0.184444,7.145945,15.742941,0.759562,3.411697,11.869894,-0.506602, + 3.852242,12.123806,-2.467529,7.592727,11.940351,-1.491999,3.965893,16.018599,-2.170868,7.706378,15.835144,-1.195337, + 3.375294,11.988932,-0.514076,7.154633,15.703161,0.748810,7.040982,11.808369,0.452149,3.488945,15.883722,-0.217415, + 6.965606,11.654662,0.449966,6.967946,11.734845,0.456074,7.062097,11.730227,0.480629,7.059758,11.650044,0.474521, + 6.522401,11.443926,2.406095,6.524742,11.524109,2.412203,6.618893,11.519491,2.436758,6.616554,11.439308,2.430650, + 5.666601,11.718372,0.111182,5.668941,11.798555,0.117289,5.763092,11.793938,0.141845,5.760753,11.713755,0.135737, + 5.185257,11.558690,2.000865,5.187597,11.638872,2.006972,5.281749,11.634254,2.031528,5.279409,11.554072,2.025420, + 4.639505,11.768747,-0.156688,4.641845,11.848930,-0.150580,4.735996,11.844313,-0.126025,4.733657,11.764130,-0.132133, + 4.122057,11.610835,1.723580,4.124397,11.691018,1.729687,4.218549,11.686399,1.754242,4.216209,11.606217,1.748134, + 3.325002,11.833218,-0.499514,3.327342,11.913401,-0.493407,3.421494,11.908783,-0.468852,3.419154,11.828600,-0.474959, + 2.784929,11.626609,1.439533,2.787268,11.706792,1.445640,2.867498,11.702857,1.466565,2.865159,11.622674,1.460457, + 7.535011,11.936462,-1.533984,7.537648,12.016714,-1.529002,7.631800,12.012096,-1.504447,7.629163,11.931845,-1.509429, + 6.978394,11.766561,0.421977,6.981030,11.846811,0.426958,7.075182,11.842194,0.451514,7.072546,11.761942,0.446532, + 6.305862,11.996747,-1.854550,6.308499,12.076998,-1.849568,6.402651,12.072380,-1.825013,6.400014,11.992129,-1.829995, + 5.766846,11.825981,0.106001,5.769483,11.906233,0.110983,5.863635,11.901615,0.135538,5.860998,11.821363,0.130557, + 5.094471,12.056160,-2.170485,5.097107,12.136412,-2.165503,5.191259,12.131794,-2.140948,5.188622,12.051542,-2.145930, + 4.591558,11.883623,-0.200517,4.594195,11.963875,-0.195535,4.688347,11.959257,-0.170980,4.685710,11.879005,-0.175962, + 3.822196,12.118560,-2.502298,3.824832,12.198811,-2.497316,3.918984,12.194193,-2.472761,3.922819,12.113625,-2.476055, + 3.337790,11.945115,-0.527504,3.340427,12.025367,-0.522522,3.434578,12.020749,-0.497967,3.438413,11.940180,-0.501261, + 7.129436,14.125046,0.662368,7.059793,14.128461,0.644204,7.062626,14.225550,0.651600,7.132269,14.222134,0.669762, + 6.694369,14.050047,2.600871,6.624726,14.053463,2.582708,6.627559,14.150551,2.590103,6.697202,14.147135,2.608266, + 7.106111,13.082656,0.555782,7.036468,13.086071,0.537619,7.039300,13.183160,0.545014,7.108943,13.179744,0.563177, + 6.660639,12.894125,2.512826,6.590996,12.897541,2.494663,6.593830,12.994629,2.502058,6.663473,12.991214,2.520221, + 7.685458,14.298531,-1.339680,7.608006,14.302647,-1.361043,7.605928,14.396601,-1.335407,7.683380,14.392485,-1.314044, + 7.140037,14.127483,0.626306,7.062584,14.131373,0.604904,7.065418,14.228461,0.612299,7.142869,14.224571,0.633702, + 7.650630,13.164745,-1.419353,7.573178,13.168635,-1.440755,7.576011,13.265724,-1.433360,7.653464,13.261834,-1.411958, + 7.109566,13.083241,0.546768,7.032114,13.087132,0.525366,7.034947,13.184220,0.532761,7.112399,13.180329,0.554163, + 3.389205,13.359978,-0.378032,3.458848,13.356563,-0.359869,3.456015,13.259474,-0.367263,3.386372,13.262890,-0.385427, + 2.847935,13.178349,1.525117,2.917578,13.174932,1.543280,2.914744,13.077845,1.535885,2.845101,13.081260,1.517722, + 3.433375,14.407769,-0.350345,3.503017,14.404353,-0.332182,3.500185,14.307265,-0.339577,3.430542,14.310681,-0.357740, + 2.887346,14.335742,1.591658,2.956989,14.332326,1.609821,2.954156,14.235238,1.602426,2.884512,14.238654,1.584263, + 3.892559,13.446289,-2.392813,3.970605,13.442553,-2.373662,3.967772,13.345465,-2.381056,3.889725,13.349201,-2.400208, + 3.397795,13.362514,-0.414617,3.475842,13.358778,-0.395465,3.473009,13.261689,-0.402860,3.394962,13.265426,-0.422012, + 3.922476,14.576940,-2.294900,4.000524,14.573429,-2.275708,4.002602,14.479475,-2.301344,3.924554,14.482985,-2.320535, + 3.441965,14.410305,-0.386930,3.520011,14.406569,-0.367778,3.517179,14.309481,-0.375173,3.439132,14.313217,-0.394325, + 3.531312,16.004171,-0.159470,3.528972,15.923988,-0.165577,3.434820,15.928606,-0.190132,3.437160,16.008789,-0.184025, + 3.008204,15.953487,1.686711,3.005864,15.873306,1.680604,2.911712,15.877924,1.656049,2.914052,15.958105,1.662156, + 4.865969,15.938711,0.188613,4.863629,15.858528,0.182505,4.769477,15.863146,0.157950,4.771817,15.943329,0.164057, + 4.350799,15.884380,2.079628,4.348459,15.804197,2.073520,4.254307,15.808815,2.048965,4.256647,15.888998,2.055072, + 5.893064,15.888334,0.456482,5.890725,15.808151,0.450374,5.796573,15.812769,0.425820,5.798913,15.892952,0.431927, + 5.413998,15.832233,2.356913,5.411658,15.752052,2.350806,5.317507,15.756670,2.326251,5.319847,15.836851,2.332358, + 7.171916,15.825611,0.790010,7.169575,15.745428,0.783903,7.075424,15.750046,0.759348,7.077764,15.830229,0.765455, + 6.748201,15.767164,2.700048,6.745862,15.686981,2.693941,6.651709,15.691599,2.669386,6.654049,15.771782,2.675493, + 4.021118,16.036366,-2.181536,4.019076,15.956266,-2.188768,3.924924,15.960884,-2.213323,3.926966,16.040983,-2.206091, + 3.538867,15.936752,-0.201118,3.536825,15.856655,-0.208350,3.442673,15.861273,-0.232905,3.444715,15.941370,-0.225673, + 5.313547,15.972975,-1.844466,5.311505,15.892878,-1.851698,5.217353,15.897495,-1.876253,5.219396,15.977592,-1.869021, + 4.812789,15.874271,0.131125,4.810747,15.794174,0.123893,4.716596,15.798792,0.099338,4.718637,15.878889,0.106570, + 6.524939,15.913561,-1.528532,6.522897,15.833464,-1.535764,6.428745,15.838081,-1.560319,6.430788,15.918179,-1.553087, + 5.988077,15.816628,0.437643,5.986035,15.736530,0.430412,5.891883,15.741148,0.405856,5.893925,15.821245,0.413088, + 7.733934,15.854263,-1.213222,7.731891,15.774166,-1.220454,7.637740,15.778784,-1.245009,7.633311,15.859198,-1.239465, + 7.179471,15.758192,0.748362,7.177429,15.678095,0.741131,7.083276,15.682713,0.716576,7.078847,15.763128,0.722120, + 8.079444,12.035641,-3.452816,8.082081,12.115892,-3.447834,8.176232,12.111275,-3.423279,8.173595,12.031023,-3.428261, + 7.534923,11.939292,-1.533114,7.537560,12.019543,-1.528132,7.631711,12.014925,-1.503577,7.629075,11.934674,-1.508559, + 6.837808,12.096537,-3.776639,6.840445,12.176788,-3.771657,6.934597,12.172171,-3.747102,6.931960,12.091919,-3.752084, + 6.305774,11.999576,-1.853680,6.308411,12.079827,-1.848698,6.402563,12.075210,-1.824143,6.399927,11.994958,-1.829125, + 5.602346,12.157131,-4.098850,5.604983,12.237382,-4.093869,5.699135,12.232764,-4.069314,5.696498,12.152514,-4.074296, + 5.094382,12.058989,-2.169615,5.097019,12.139240,-2.164633,5.191171,12.134623,-2.140078,5.188534,12.054371,-2.145060, + 4.364884,12.217823,-4.421585,4.367521,12.298074,-4.416603,4.485742,12.292276,-4.385770,4.483105,12.212025,-4.390752, + 3.856920,12.119680,-2.492348,3.859557,12.199932,-2.487367,3.953709,12.195314,-2.462812,3.951072,12.115063,-2.467793, + 7.666269,13.047373,-1.484324,3.888585,13.232647,-2.469556,3.891418,13.329736,-2.462161,7.669102,13.144461,-1.476929, + 7.640785,13.040768,-1.387852,3.863101,13.226043,-2.373084,3.865934,13.323132,-2.365688,7.643618,13.137856,-1.380457, + 7.705269,14.286755,-1.400790,3.927585,14.472030,-2.386022,3.925508,14.565983,-2.360386,7.704699,14.377764,-1.381489, + 7.679708,14.260780,-1.307666,3.902024,14.446054,-2.292899,3.899947,14.540009,-2.267263,7.679138,14.351789,-1.288365, + 7.721240,11.996059,-2.146984,7.723528,12.039990,-2.144227,7.772550,12.032176,-2.060414,7.770262,11.988245,-2.063171, + 7.007865,11.990952,-1.699128,7.010154,12.034882,-1.696370,7.059176,12.027067,-1.612558,7.056888,11.983137,-1.615315, + 6.458720,12.056220,-2.453137,6.460886,12.100157,-2.450412,6.499622,12.092846,-2.369281,6.497456,12.048910,-2.372006, + 5.722483,12.053994,-2.034360,5.724771,12.097924,-2.031602,5.773793,12.090110,-1.947789,5.771504,12.046180,-1.950547, + 5.290552,12.115273,-2.780915,5.292840,12.159204,-2.778158,5.341863,12.151390,-2.694345,5.339574,12.107460,-2.697102, + 4.570707,12.110483,-2.334746,4.572996,12.154413,-2.331989,4.622018,12.146599,-2.248176,4.619729,12.102669,-2.250933, + 4.096314,12.225966,-3.088808,4.094446,12.182145,-3.093156,4.010317,12.180861,-3.044069,4.012186,12.224683,-3.039721, + 4.557297,12.146972,-2.335791,4.555429,12.103150,-2.340139,4.471300,12.101866,-2.291052,4.473168,12.145687,-2.286704, + 5.327929,12.164194,-2.749619,5.326060,12.120373,-2.753968,5.241931,12.119089,-2.704881,5.243800,12.162910,-2.700532, + 5.812593,12.085407,-2.008405,5.810725,12.041586,-2.012754,5.726596,12.040301,-1.963667,5.728464,12.084123,-1.959318, + 6.530953,12.104801,-2.430730,6.529208,12.060974,-2.435046,6.455365,12.059185,-2.383277,6.457110,12.103013,-2.378960, + 6.994456,12.027444,-1.700172,6.992588,11.983622,-1.704520,6.908458,11.982338,-1.655433,6.910326,12.026159,-1.651085, + 7.720522,12.036232,-2.164235,7.763296,12.033376,-2.153986,7.739472,11.979582,-2.072753,7.696699,11.982438,-2.083001, + 7.585482,12.626848,-1.503010,7.628255,12.623993,-1.492761,7.608698,12.550792,-1.431541,7.565926,12.553648,-1.441789, + 4.021668,12.235677,-3.107862,4.064481,12.235946,-3.097389,4.049660,12.162686,-3.034921,4.006847,12.162417,-3.045394, + 3.848667,12.807987,-2.477729,3.891480,12.808255,-2.467256,3.876659,12.734996,-2.404788,3.833846,12.734728,-2.415262, + 3.922714,15.952473,2.000246,3.920388,15.872768,1.994176,3.834912,15.876961,1.971883,3.837238,15.956665,1.977954, + 3.679423,16.019489,2.945700,3.677098,15.939785,2.939629,3.591622,15.943977,2.917336,3.593947,16.023682,2.923408, + 3.800842,11.606927,1.672472,3.803168,11.686631,1.678543,3.888644,11.682439,1.700836,3.886318,11.602735,1.694765, + 3.461022,11.484303,2.579443,3.463348,11.564007,2.585514,3.548824,11.559814,2.607807,3.546498,11.480109,2.601736, + 5.104243,15.895012,2.302003,5.101917,15.815308,2.295932,5.016441,15.819500,2.273639,5.018767,15.899204,2.279710, + 5.008658,15.906963,2.871608,5.006332,15.827259,2.865538,4.920856,15.831451,2.843245,4.923182,15.911156,2.849316, + 4.891152,11.525784,1.946593,4.893478,11.605488,1.952664,4.978954,11.601295,1.974957,4.976628,11.521591,1.968886, + 4.794142,11.488867,2.512477,4.796467,11.568571,2.518548,4.881944,11.564379,2.540840,4.879618,11.484674,2.534769, + 5.353894,15.811449,2.322018,5.351799,15.739634,2.316548,5.505375,15.732101,2.356601,5.507471,15.803917,2.362072, + 6.980988,15.826391,0.724236,6.978893,15.754576,0.718766,7.132470,15.747046,0.758819,7.134565,15.818859,0.764289, + 7.150887,15.837530,-0.565744,7.065450,15.763721,-0.513122,7.067546,15.835537,-0.507652,6.993752,15.786428,0.125652, + 6.947772,15.722847,0.028910,6.949868,15.794662,0.034380,6.613654,15.857798,-0.626029,6.611558,15.785982,-0.631499, + 6.569769,15.866030,-0.717301,6.450812,15.818163,-0.082973,6.448716,15.746347,-0.088443,6.365376,15.744354,-0.030351, + 6.367471,15.816170,-0.024881,4.532622,15.912241,-0.583243,4.530526,15.840427,-0.588713,4.576507,15.904009,-0.491970, + 4.642282,15.954485,-1.140169,4.640186,15.882669,-1.145638,4.725623,15.956478,-1.198260,6.745605,15.790276,0.009876, + 6.744634,15.756996,0.007341,6.651278,15.760757,-0.006282,6.652249,15.794039,-0.003747,6.812094,15.835464,-0.608853, + 6.811123,15.802183,-0.611388,6.866343,15.799633,-0.599064,6.867314,15.832914,-0.596529,6.979283,15.768278,0.070098, + 6.405953,15.795580,-0.068703,6.583803,15.836123,-0.669114,7.112996,15.810328,-0.533176,6.893487,13.259730,-3.737379, + 7.533925,13.228126,-3.567777,7.116022,13.112401,-1.888356,6.414138,13.146627,-2.068836,6.584679,13.150214,-2.181258, + 7.022781,13.128848,-2.068571,7.131690,13.160783,-2.529563,6.718434,13.181170,-2.638913,6.718966,13.199402,-2.637524, + 7.132222,13.179015,-2.528174,7.023313,13.147079,-2.067183,6.585211,13.168446,-2.179869,6.904861,13.182312,-2.589588, + 6.905595,13.207493,-2.587671,6.946600,13.205362,-2.575404,6.945865,13.180182,-2.577322,6.812885,13.149426,-2.122609, + 6.813619,13.174608,-2.120691,6.771838,13.176538,-2.130016,6.771103,13.151356,-2.131934,7.071861,13.158937,-2.321716, + 7.072596,13.184118,-2.319798,7.060395,13.181353,-2.278818,7.059659,13.156172,-2.280736,6.658928,13.175825,-2.385248, + 6.659663,13.201006,-2.383331,6.669289,13.203897,-2.424982,6.668555,13.178717,-2.426900,4.716244,13.309435,-3.672917, + 4.718340,13.381250,-3.667447,4.828524,13.367125,-3.524202,4.826428,13.295309,-3.529672,4.428709,13.240625,-2.619683, + 4.430804,13.312440,-2.614213,4.612663,13.316890,-2.742296,4.610568,13.245074,-2.747766,6.183723,13.228741,-3.175685, + 6.185818,13.300556,-3.170215,6.358947,13.300787,-3.239571,6.356852,13.228972,-3.245041,5.995225,13.177164,-2.386643, + 5.997321,13.248980,-2.381173,6.098775,13.230635,-2.179201,6.096680,13.158820,-2.184671,4.702837,13.293465,-3.175426, + 4.703808,13.326744,-3.172891,4.688267,13.321312,-3.095610,4.687296,13.288032,-3.098144,6.106748,13.218415,-2.727947, + 6.107719,13.251695,-2.725412,6.132379,13.256680,-2.800315,6.131408,13.223401,-2.802850,5.295922,13.220469,-2.526943, + 5.296894,13.253748,-2.524408,5.352315,13.251251,-2.512849,5.351344,13.217971,-2.515384,5.575457,13.276052,-3.363780, + 5.576427,13.309332,-3.361245,5.511771,13.312648,-3.379997,5.510800,13.279367,-3.382532,4.508142,13.269642,-2.731677, + 6.079917,13.192776,-2.324648,6.269431,13.252554,-3.182068,4.750718,13.327183,-3.580042,5.249603,11.940420,-1.344298, + 5.251698,12.012235,-1.338828,5.332407,12.004133,-1.263384,5.330312,11.932319,-1.268854,5.042985,11.899682,-0.690617, + 5.045081,11.971497,-0.685148,5.152676,11.970364,-0.711482,5.150580,11.898548,-0.716952,5.755105,11.910507,-1.145227, + 5.757200,11.982323,-1.139757,5.864795,11.981189,-1.166091,5.862699,11.909374,-1.171561,5.622472,11.875405,-0.593881, + 5.624568,11.947220,-0.588411,5.705277,11.939119,-0.512966,5.703181,11.867304,-0.518436,5.200777,11.935494,-1.027915, + 5.201748,11.968775,-1.025380,5.189025,11.964953,-0.970333,5.188054,11.931673,-0.972868,5.717669,11.905699,-0.834743, + 5.718641,11.938979,-0.832208,5.734766,11.942634,-0.886367,5.733795,11.909353,-0.888902,5.352212,11.898554,-0.633934, + 5.353183,11.931834,-0.631399,5.408403,11.929284,-0.619075,5.407432,11.896005,-0.621610,5.567276,11.937430,-1.226717, + 5.568248,11.970710,-1.224182,5.514055,11.973526,-1.240393,5.513084,11.940247,-1.242928,5.106534,11.921141,-0.697286, + 5.653728,11.894463,-0.556654,5.801534,11.936479,-1.164900,5.302467,11.962090,-1.309976,4.042574,11.998641,-1.646256, + 4.044670,12.070456,-1.640785,4.125379,12.062355,-1.565341,4.123283,11.990540,-1.570811,3.852970,11.958047,-1.000977, + 3.855065,12.029861,-0.995507,3.962660,12.028728,-1.021842,3.960565,11.956913,-1.027311,4.572028,11.968532,-1.453777, + 4.574123,12.040347,-1.448307,4.681718,12.039213,-1.474641,4.679623,11.967399,-1.480111,4.462543,11.932295,-0.896394, + 4.464639,12.004109,-0.890924,4.545348,11.996008,-0.815479,4.543252,11.924193,-0.820949,4.028813,11.992974,-1.333567, + 4.029785,12.026254,-1.331032,4.017062,12.022432,-1.275985,4.016091,11.989153,-1.278520,4.545706,11.963179,-1.140394, + 4.546677,11.996458,-1.137859,4.562802,12.000113,-1.192019,4.561831,11.966833,-1.194554,4.180248,11.956034,-0.939586, + 4.181220,11.989313,-0.937051,4.236439,11.986764,-0.924727,4.235468,11.953484,-0.927262,4.395313,11.994909,-1.532368, + 4.396284,12.028190,-1.529833,4.342092,12.031006,-1.546044,4.341120,11.997725,-1.548579,3.916519,11.979506,-1.007646, + 4.493799,11.951352,-0.859167,4.618458,11.994503,-1.473450,4.095438,12.020311,-1.611933,2.947695,15.926743,1.730184, + 2.945600,15.854927,1.724713,3.099176,15.847395,1.764767,3.101272,15.919210,1.770237,4.645915,15.938196,0.150951, + 4.643820,15.866381,0.145481,4.797396,15.858850,0.185535,4.799492,15.930664,0.191005,5.852731,15.878668,0.470157, + 5.850636,15.806852,0.464686,5.697059,15.814384,0.424633,5.699154,15.886200,0.430103,4.452671,15.852930,2.122686, + 4.450575,15.781115,2.117216,4.296999,15.788647,2.077163,4.299094,15.860462,2.082633,5.121128,11.584547,1.307357, + 5.121448,11.603282,1.309649,4.858727,11.619949,1.229188,5.016930,11.632354,0.642099,5.247594,11.626924,0.703244, + 5.247914,11.645658,0.705536,4.857679,11.574432,1.224646,5.017355,11.657259,0.645146,4.740570,11.666112,0.529561, + 4.742735,11.737945,0.534765,4.541757,11.625816,1.210206,4.543921,11.697649,1.215411,5.316644,11.711706,0.658116, + 5.314479,11.639874,0.652911,5.163076,11.667284,1.376889,5.160911,11.595451,1.371683,5.023656,11.646400,0.649011, + 4.764960,11.651913,0.605498,4.765393,11.670692,0.607365,5.024194,11.671370,0.651428,4.857986,11.592443,1.234349, + 4.615456,11.611365,1.161956,4.858524,11.617414,1.236766,4.615889,11.630144,1.163823,4.193537,15.976494,-1.257203, + 4.191442,15.904678,-1.262673,4.149652,15.984726,-1.348475,4.030643,15.936861,-0.714160,4.028547,15.865046,-0.719630, + 3.945207,15.863052,-0.661539,3.947302,15.934868,-0.656069,4.304325,15.909035,-0.614015,4.303354,15.875755,-0.616550, + 4.249161,15.878571,-0.632761,4.250132,15.911850,-0.630226,4.409978,15.953276,-1.235333,4.409007,15.919996,-1.237868, + 4.464226,15.917446,-1.225544,4.465198,15.950727,-1.223009,4.562037,15.885859,-0.547524,3.985784,15.914278,-0.699890, + 4.163686,15.954819,-1.300288,4.687732,15.929276,-1.165692,4.644029,15.803877,1.617442,3.471395,15.861389,1.311615, + 7.148957,15.771412,-0.570780,6.991823,15.720310,0.120616,6.567840,15.799911,-0.722337,6.365542,15.750051,-0.029917, + 4.574577,15.837891,-0.497007,4.723693,15.890360,-1.203297,4.147723,15.918608,-1.353511,3.945373,15.868750,-0.661105, + 6.788995,13.257335,-3.782981,6.791090,13.329149,-3.777511,6.916363,13.323006,-3.744840,6.914268,13.251191,-3.750310, + 6.279843,13.139490,-2.001078,6.281938,13.211305,-1.995608,6.438337,13.213227,-2.080765,6.436242,13.141413,-2.086235, + 7.506035,13.222168,-3.595975,7.508131,13.293983,-3.590505,7.633403,13.287840,-3.557833,7.631308,13.216024,-3.563303, + 7.088182,13.109439,-1.916206,7.090277,13.181253,-1.910736,7.184425,13.167044,-1.760236,7.182329,13.095228,-1.765706, + 5.927880,15.529945,-3.796402,5.274372,15.561800,-3.964266,4.831375,15.457695,-2.427791,5.535695,15.422958,-2.241529, + 5.445483,15.440189,-2.433201,5.004450,15.461937,-2.549795,5.153178,15.491920,-3.000402,5.556793,15.472246,-2.896710, + 5.556261,15.454014,-2.898098,5.152646,15.473688,-3.001791,5.003918,15.443707,-2.551184,5.444951,15.421957,-2.434589, + 5.372131,15.473194,-2.974150,5.371397,15.448013,-2.976068,5.325402,15.450134,-2.986310,5.326137,15.475317,-2.984392, + 5.191156,15.440334,-2.473412,5.190421,15.415154,-2.475330,5.235548,15.412806,-2.461807,5.236283,15.437988,-2.459888, + 5.065506,15.467283,-2.804046,5.064772,15.442101,-2.805964,5.054008,15.438875,-2.759485,5.054743,15.464056,-2.757567, + 5.512282,15.440802,-2.627525,5.511547,15.415621,-2.629443,5.530440,15.420080,-2.695230,5.531175,15.445261,-2.693313, + 7.087157,15.391861,-2.745972,7.085062,15.320047,-2.751442,6.961919,15.316322,-2.655377,6.964015,15.388138,-2.649907, + 6.896143,15.334415,-1.958294,6.894048,15.262602,-1.963764,6.827815,15.275267,-2.104686,6.829910,15.347082,-2.099216, + 6.520687,15.409014,-2.754170,6.518591,15.337198,-2.759640,6.452358,15.349865,-2.900562,6.454453,15.421680,-2.895092, + 6.367434,15.368919,-2.208762,6.365339,15.297106,-2.214232,6.242196,15.293381,-2.118167,6.244292,15.365196,-2.112697, + 6.945762,15.351582,-2.396004,6.944790,15.318302,-2.398539,6.929894,15.314585,-2.344033,6.930865,15.347866,-2.341498, + 6.398234,15.373016,-2.467662,6.397263,15.339735,-2.470197,6.408738,15.343615,-2.525513,6.409708,15.376894,-2.522979, + 6.613088,15.342930,-2.121982,6.612117,15.309650,-2.124517,6.557569,15.312384,-2.139503,6.558540,15.345663,-2.136969, + 6.716770,15.387178,-2.742621,6.715799,15.353899,-2.745157,6.771286,15.351435,-2.734079,6.772256,15.384716,-2.731544, + 6.860166,15.320726,-2.064186,6.322946,15.346251,-2.193502,6.489912,15.387316,-2.796587,7.008922,15.363022,-2.676463, + 6.041142,15.534615,-3.783999,6.039046,15.462801,-3.789469,5.913774,15.468943,-3.822141,5.915869,15.540758,-3.816671, + 5.618989,15.416878,-2.116220,5.616894,15.345062,-2.121690,5.522747,15.359274,-2.272190,5.524842,15.431087,-2.266720, + 5.312304,15.570358,-3.974082,5.310209,15.498545,-3.979553,5.184936,15.504686,-4.012224,5.187031,15.576502,-4.006754, + 4.869193,15.463243,-2.437715,4.867097,15.391428,-2.443185,4.710699,15.389505,-2.358028,4.712795,15.461321,-2.352558, + 7.422904,13.095654,-1.817597,7.428721,13.294992,-1.802414,7.622030,13.285511,-1.751998,7.616213,13.086173,-1.767182, + 7.371935,13.082445,-1.624652,7.377752,13.281783,-1.609469,7.571062,13.272303,-1.559053,7.565244,13.072965,-1.574237, + 7.753374,13.206671,-3.260402,7.759191,13.406010,-3.245219,7.952500,13.396528,-3.194803,7.946683,13.197190,-3.209986, + 7.732492,13.191986,-3.059610,7.738309,13.391324,-3.044427,7.901532,13.383319,-3.001858,7.895714,13.183981,-3.017041, + 7.769218,15.189085,-2.698692,7.773597,15.339165,-2.687260,7.910944,15.332430,-2.651440,7.906565,15.182348,-2.662871, + 7.725071,15.177645,-2.531573,7.729451,15.327724,-2.520142,7.872816,15.320694,-2.482752,7.868436,15.170612,-2.494183, + 4.564650,15.368893,-3.922208,4.576105,15.554956,-3.906444,4.736485,15.547091,-3.864616,4.725029,15.361027,-3.880380, + 4.529429,15.361618,-3.813225,4.534867,15.547977,-3.799030,4.695247,15.540112,-3.757203,4.689809,15.353752,-3.771398, + 4.398960,13.325356,-3.670499,4.404320,13.509059,-3.656507,4.538443,13.501184,-3.604486,4.533082,13.317480,-3.618479, + 4.351989,13.313184,-3.492688,4.357349,13.496886,-3.478695,4.523462,13.488739,-3.435373,4.518101,13.305037,-3.449365, + 4.323205,13.396442,-3.398983,4.331243,13.671877,-3.378004,4.450393,13.666033,-3.346929,4.442356,13.390598,-3.367909, + 4.287030,13.387067,-3.262039,4.295067,13.662501,-3.241060,4.421163,13.656317,-3.208174,4.413125,13.380883,-3.229153, + 4.382893,13.634817,-3.607712,4.390930,13.910251,-3.586732,4.484108,13.904383,-3.545391,4.476070,13.628949,-3.566370, + 4.346717,13.625442,-3.470768,4.354754,13.900876,-3.449788,4.479922,13.894736,-3.417144,4.471885,13.619303,-3.438124, + 4.608794,15.572399,-3.669868,4.858537,15.560150,-3.604735,4.854408,15.418669,-3.615511,4.604666,15.430918,-3.680645, + 4.572619,15.563025,-3.532924,4.839723,15.549925,-3.463263,4.835594,15.408442,-3.474040,4.568491,15.421543,-3.543701, + 4.822641,15.546108,-3.873244,5.073265,15.533815,-3.807881,5.071198,15.462950,-3.813279,4.820574,15.475241,-3.878642, + 4.768387,15.535080,-3.707690,5.038697,15.521824,-3.637192,5.036630,15.450956,-3.642590,4.766319,15.464214,-3.713087, + 7.520339,15.345816,-2.507421,7.796668,15.332264,-2.435354,7.792461,15.188129,-2.446332,7.516134,15.201681,-2.518399, + 7.475770,15.328884,-2.339712,7.746081,15.315626,-2.269214,7.742033,15.176914,-2.279779,7.471722,15.190172,-2.350277, + 4.848339,13.329383,-3.933935,4.595389,13.341788,-3.999905,4.597457,13.412655,-3.994507,4.850407,13.400249,-3.928537, + 4.821289,13.317021,-3.761285,4.550979,13.330278,-3.831783,4.553046,13.401145,-3.826385,4.823357,13.387888,-3.755888, + 7.614432,13.104311,-2.038724,7.353453,13.115351,-2.083677,7.355521,13.186216,-2.078279,7.616499,13.175178,-2.033327, + 7.570020,13.092802,-1.870602,7.299710,13.106059,-1.941100,7.301778,13.176925,-1.935702,7.572089,13.163668,-1.865205, + 6.546246,13.258473,-3.653455,6.275935,13.271730,-3.723952,6.278003,13.342597,-3.718554,6.548314,13.329339,-3.648057, + 6.522668,13.245942,-3.479899,6.252749,13.260158,-3.563134,6.254817,13.331024,-3.557736,6.524737,13.316808,-3.474501, + 7.014030,11.825093,-0.019144,6.805624,11.835314,-0.073496,6.807219,11.889951,-0.069335,7.015625,11.879730,-0.014982, + 6.979789,11.816219,0.110476,6.771385,11.826441,0.056123,6.772979,11.881077,0.060285,6.981384,11.870856,0.114637, + 5.098397,11.901478,-0.397514,4.889993,11.911699,-0.451867,4.891587,11.966336,-0.447705,5.099992,11.956115,-0.393353, + 5.052941,11.895262,-0.298483,4.862589,11.904597,-0.348128,4.864183,11.959234,-0.343966,5.054536,11.949899,-0.294322, + 6.790328,11.821657,0.111668,6.603868,11.830802,0.063039,6.605463,11.885439,0.067201,6.791922,11.876293,0.115830, + 6.765179,11.815140,0.206869,6.578720,11.824285,0.158240,6.580314,11.878922,0.162402,6.766774,11.869776,0.211031, + 4.039256,11.631153,1.374017,3.830851,11.641375,1.319664,3.832445,11.696011,1.323826,4.040850,11.685790,1.378178, + 4.017869,11.623756,1.479325,3.773361,11.635748,1.415557,3.774955,11.690384,1.419718,4.019464,11.678392,1.483487, + 6.168062,11.641399,0.536186,5.959657,11.651621,0.481833,5.961251,11.706258,0.485995,6.169656,11.696037,0.540347, + 6.140658,11.634298,0.639925,5.932253,11.644519,0.585572,5.933847,11.699156,0.589733,6.142252,11.688934,0.644086, + 6.082316,15.855114,0.802008,6.290721,15.844893,0.856360,6.289127,15.790257,0.852199,6.080722,15.800478,0.797846, + 6.054913,15.848011,0.905747,6.263317,15.837791,0.960099,6.261723,15.783154,0.955938,6.053318,15.793375,0.901585, + 3.996737,15.889935,1.545783,4.205142,15.879715,1.600136,4.203547,15.825077,1.595974,3.995142,15.835299,1.541622, + 3.969333,15.882833,1.649522,4.183755,15.872318,1.705444,4.182161,15.817680,1.701282,3.967739,15.828196,1.645360, + 4.749345,15.980919,-1.507975,4.957750,15.970699,-1.453622,4.956156,15.916061,-1.457784,4.747751,15.926283,-1.512137, + 4.721941,15.973818,-1.404237,4.930346,15.963596,-1.349884,4.928752,15.908960,-1.354046,4.720347,15.919182,-1.408398, + 6.545639,13.564667,3.467703,6.545947,13.561938,3.534817,4.519782,13.658532,2.696422,6.648380,14.146755,2.599493, + 5.220463,14.240759,1.771118,6.651430,14.243521,2.621708,5.058626,14.506877,1.823204,6.599691,13.009786,2.539020, + 5.003541,12.882528,1.728969,6.612507,13.147686,2.547784,5.185000,13.243475,1.719570,4.972528,13.665365,2.613584, + 6.374246,13.577588,3.434176,6.487977,13.079886,2.541994,6.534627,14.182414,2.621928,6.570405,14.630620,2.697556, + 6.565401,14.629120,2.722120,6.571022,14.947033,2.746380,6.697287,14.926247,2.721862,6.604891,13.132061,2.541225, + 6.692405,14.633643,2.699529,6.536854,13.292958,2.669958,6.576422,13.291018,2.680278,6.603480,13.974309,2.716971, + 6.563913,13.976249,2.706651,6.687399,14.632125,2.724091,6.633003,14.130430,2.633129,6.435546,13.569580,3.272819, + 6.395979,13.571521,3.262500,6.692281,14.924730,2.746424,6.393739,13.560697,3.431451,6.515373,13.290401,2.856021, + 6.483099,13.291983,2.847605,6.468729,13.290104,2.902349,6.501003,13.288521,2.910766,6.524231,13.868780,2.930815, + 6.491958,13.870363,2.922397,6.506436,13.875959,2.867936,6.538709,13.874377,2.876353,6.387288,13.549466,3.319039, + 6.355014,13.551049,3.310622,6.357238,13.607611,3.312730,6.389512,13.606029,3.321147,6.569515,13.652678,2.639731, + 6.537241,13.654261,2.631315,6.536173,13.597998,2.624829,6.568447,13.596416,2.633246,6.576026,14.948534,2.721817, + 3.771564,14.984827,2.929059,3.768106,14.983168,2.955016,3.777074,15.421564,2.988769,3.908005,15.413927,2.953436, + 3.902897,15.107824,2.929759,3.896997,15.022501,2.949344,3.904547,15.412268,2.979393,3.780532,15.423225,2.962812, + 4.279243,11.658796,2.629626,4.272390,11.656768,2.661967,4.277911,11.990349,2.687596,4.433401,11.992664,2.658482, + 4.427429,11.634753,2.631164,4.421307,11.632895,2.661208,4.427279,11.990808,2.688525,4.284764,11.992376,2.655256, + 6.405804,15.308407,2.770931,6.399478,15.306562,2.799123,6.401536,15.475338,2.812388,6.503743,15.497061,2.775733, + 6.500143,15.275423,2.758442,6.493818,15.273615,2.786637,6.497418,15.495255,2.803928,6.407861,15.477182,2.784196, + 2.803159,11.922558,1.698017,2.786668,11.921427,1.716665,2.780872,11.650908,1.699287,2.724981,11.655144,1.575232, + 2.731539,11.951764,1.594600,2.715048,11.950615,1.613246,2.708490,11.653996,1.593878,2.797362,11.652039,1.680638, + 3.022054,12.262702,2.060813,3.005754,12.261728,2.077265,2.999450,11.984479,2.059293,2.953858,11.990347,1.939975, + 2.960768,12.288355,1.959530,2.944468,12.287367,1.975980,2.937558,11.989359,1.956426,3.015750,11.985453,2.042840, + 3.453779,15.917337,2.834496,3.437910,15.915491,2.862091,3.431289,15.622824,2.842372,3.380525,15.604643,2.729208, + 3.388751,15.952309,2.753118,3.375807,15.951252,2.769642,3.367581,15.603588,2.745734,3.447158,15.624670,2.814776, + 3.317103,15.591383,2.612171,3.300097,15.590162,2.632011,3.293878,15.299883,2.613240,3.233379,15.307623,2.484593, + 3.240203,15.618612,2.504941,3.223197,15.617376,2.524780,3.216373,15.306389,2.504431,3.310883,15.301102,2.593401, + 3.190341,15.824114,2.438166,3.178038,15.823389,2.450585,3.173681,15.627863,2.438066,3.139294,15.633240,2.348072, + 3.144052,15.842520,2.361639,3.131749,15.841785,2.374057,3.126990,15.632505,2.360491,3.185984,15.628588,2.425647, + 7.707865,15.152634,-1.584288,4.114590,15.351362,-2.521592,4.116953,15.493885,-2.490870,7.721295,15.317112,-1.550846, + 7.687731,15.156780,-1.486424,4.090680,15.343000,-2.424853,4.091401,15.467522,-2.397854,7.695743,15.290749,-1.457830, + 7.565453,15.251728,-1.531047,7.609169,15.249239,-1.525999,7.572395,15.176922,-1.469782,7.554013,15.178167,-1.468222, + 7.625126,15.849600,-1.203623,7.668842,15.847111,-1.198575,7.657402,15.773552,-1.135751,7.613686,15.776039,-1.140799, + 4.274112,15.367010,-2.404487,4.315323,15.363815,-2.389187,4.287904,15.291039,-2.330530,4.246692,15.294235,-2.345830, + 4.019448,16.022772,-2.202636,4.060659,16.019577,-2.187335,4.033239,15.946800,-2.128679,3.992028,15.949995,-2.143979, + 3.518994,14.148525,2.844940,6.774515,14.140496,2.580363,6.778480,14.137404,2.619441,2.706293,14.335113,1.583781, + 2.798158,14.334959,1.550610,3.551199,14.152703,2.777755,5.744433,13.979312,-1.815930,5.769918,13.985916,-1.912403, + 5.838585,13.974694,-1.791375,5.864070,13.981298,-1.887848,6.685001,13.932888,-1.566776,6.710485,13.939492,-1.663248, + 6.779152,13.928270,-1.542221,6.804637,13.934875,-1.638693,5.647478,13.592778,3.127706,5.841794,14.307377,2.231750, + 5.797784,13.022127,2.163545,7.021123,13.192045,0.573043,7.061380,13.202478,0.420647,7.115275,13.187428,0.597598, + 7.155532,13.197861,0.445203,3.384805,14.271573,-0.330652,3.422012,14.281216,-0.471501,3.488376,14.266493,-0.303640, + 3.525583,14.276135,-0.444489,4.321422,11.523501,1.817941,4.346906,11.530106,1.721468,4.324566,11.631255,1.826149, + 4.350050,11.637859,1.729676,6.657041,14.060827,2.606344,6.667678,14.067935,2.508958,6.622505,14.070150,2.497176, + 2.935062,14.247331,1.570404,2.810734,14.244222,1.658844,2.842866,14.251852,1.546359,3.480623,15.978683,-0.236095, + 3.550266,15.975267,-0.217932,3.545645,15.816900,-0.229995,3.476002,15.820316,-0.248158,2.901423,14.497201,1.568045, + 2.971065,14.493786,1.586208,2.966444,14.335419,1.574146,2.896801,14.338835,1.555982,3.403398,13.332202,-0.437674, + 3.473041,13.328787,-0.419511,3.468420,13.170420,-0.431574,3.398777,13.173836,-0.449737,2.824197,11.850719,1.366466, + 2.893840,11.847304,1.384629,2.889219,11.688938,1.372567,2.819576,11.692353,1.354403,3.433384,14.359825,-0.359402, + 3.503027,14.356409,-0.341238,3.498406,14.198043,-0.353301,3.428763,14.201459,-0.371464,2.865891,13.279538,1.475297, + 2.935534,13.276122,1.493461,2.930912,13.117756,1.481398,2.861269,13.121172,1.463235,3.948411,16.003113,-2.131204, + 4.018054,15.999697,-2.113041,4.013433,15.841330,-2.125104,3.943790,15.844746,-2.143267,3.424594,14.504359,-0.378299, + 3.494236,14.500943,-0.360136,3.489615,14.342577,-0.372198,3.419972,14.345993,-0.390361,3.871186,13.356631,-2.332783, + 3.940829,13.353215,-2.314620,3.936208,13.194849,-2.326683,3.866565,13.198265,-2.344846,3.374569,12.164516,-0.545575, + 3.312543,12.046819,-0.511459,3.439590,12.002734,-0.539475,3.369948,12.006150,-0.557638,3.894965,14.475524,-2.248721, + 3.964608,14.472108,-2.230558,3.959987,14.313742,-2.242621,3.890344,14.317157,-2.260784,3.403965,13.477474,-0.448531, + 3.473608,13.474058,-0.430368,3.468987,13.315692,-0.442431,3.399344,13.319107,-0.460594,7.041704,11.657595,0.495281, + 6.972061,11.661011,0.477118,6.976681,11.819377,0.489180,7.046324,11.815962,0.507344,6.649484,12.881141,2.463651, + 6.579841,12.884557,2.445489,6.584462,13.042923,2.457551,6.654105,13.039507,2.475714,7.116100,14.194298,0.678684, + 7.046457,14.197714,0.660521,7.051077,14.356080,0.672583,7.120720,14.352664,0.690747,6.722216,15.588509,2.701442, + 6.652573,15.591925,2.683279,6.657195,15.750290,2.695341,6.726838,15.746876,2.713505,7.605582,11.961370,-1.442551, + 7.535939,11.964786,-1.460715,7.540559,12.123152,-1.448652,7.610202,12.119737,-1.430489,7.121451,12.988253,0.423864, + 7.051808,12.991668,0.405701,7.056429,13.150034,0.417763,7.126072,13.146619,0.435926,7.662924,14.348661,-1.281960, + 7.593281,14.352077,-1.300123,7.597903,14.510444,-1.288060,7.667546,14.507028,-1.269897,7.164528,15.581602,0.735901, + 7.132826,15.569798,0.734215,7.093322,15.743629,0.728947,7.169150,15.739969,0.747963,7.267955,13.444099,0.064193, + 7.273030,13.696145,0.092509,7.286311,13.443235,0.068515,7.297418,13.695045,0.098310,7.415210,13.747121,-0.499239, + 7.412787,13.484669,-0.493497,7.431143,13.483805,-0.489176,7.439598,13.746021,-0.493437,7.271406,14.018644,0.170700, + 7.201833,14.022079,0.152271,7.463455,14.032197,-0.540021,7.393882,14.035630,-0.558449,7.183204,13.383614,0.103641, + 7.252777,13.380179,0.122069,7.370212,13.448846,-0.578416,7.439785,13.445413,-0.559987,7.430101,13.739145,-0.499361, + 7.317497,13.692812,0.095072,7.437235,13.976944,-0.480917,7.455688,13.976110,-0.477025,7.454631,13.738036,-0.494187, + 7.273003,13.694906,0.084611,7.280769,13.968087,0.117566,7.299222,13.967254,0.121458,6.320619,11.848134,-0.381951, + 6.563254,11.835402,-0.309008,6.320186,11.829354,-0.383819,6.562716,11.810432,-0.311425,6.728923,11.889359,-0.894346, + 6.470123,11.888681,-0.938409,6.469690,11.869902,-0.940277,6.728385,11.864388,-0.896763,6.865641,11.813440,-0.174091, + 6.867807,11.885273,-0.168886,7.019208,11.857863,-0.892863,7.021373,11.929695,-0.887659,6.248652,11.915638,-0.330364, + 6.246486,11.843805,-0.335568,6.447465,11.955934,-1.011010,6.445300,11.884102,-1.016214,6.722085,11.875248,-0.900628, + 6.562409,11.792421,-0.321128,6.952644,11.863647,-0.840238,6.952324,11.844913,-0.842531,6.721659,11.850343,-0.903676, + 6.563456,11.837938,-0.316587,6.826178,11.821271,-0.236126,6.825858,11.802536,-0.238418,5.160979,12.077995,-2.199856, + 3.981376,12.136757,-2.511325,3.980870,12.119390,-2.512648,5.160475,12.060720,-2.201172,5.226377,12.004580,-2.464418, + 4.049610,12.064075,-2.786623,4.047338,12.046251,-2.781264,5.223473,11.986682,-2.456647,4.572641,12.089846,-2.358348, + 4.573145,12.107121,-2.357032,4.643692,12.017894,-2.644310,4.646597,12.035791,-2.652081,6.333508,12.019899,-1.886322, + 6.375130,11.935627,-2.046094,4.608592,12.022424,-2.508871,6.333004,12.002625,-1.887638,6.410211,11.947148,-2.163947, + 4.016822,12.052059,-2.663165,5.197211,11.993503,-2.354671,6.412467,11.922054,-2.170869,5.748698,12.031576,-2.043895, + 5.749202,12.048851,-2.042579,5.815985,11.958650,-2.315609,5.818890,11.976547,-2.323380,7.533145,11.960062,-1.568382, + 4.312707,12.037241,-2.586018,6.962678,11.906481,-1.892192,7.532644,11.942877,-1.569691,7.601330,11.887367,-1.843492, + 7.571736,11.876180,-1.732125,5.786220,11.964562,-2.200370,7.597793,11.869396,-1.833311,6.917700,11.973653,-1.731281, + 6.918205,11.990928,-1.729965,6.976895,11.895662,-1.926369,6.979620,11.912456,-1.933660,4.276755,12.104618,-2.435498, + 4.365689,12.037301,-2.789156,4.277261,12.121939,-2.434179,4.368277,12.055161,-2.795721,4.869031,12.092302,-2.279885, + 4.957208,12.024790,-2.630678,4.868528,12.075073,-2.281198,4.953987,12.006855,-2.621701,5.452727,12.046352,-2.121067, + 5.539778,11.978548,-2.467601,5.453232,12.063673,-2.119747,5.542366,11.996408,-2.474165,6.049738,12.033800,-1.964219, + 6.135978,11.965786,-2.307680,6.049235,12.016571,-1.965531,6.132752,11.947850,-2.298684,6.604168,11.989765,-1.819264, + 6.706242,11.916761,-2.096460,6.604674,12.007086,-1.817945,6.708670,11.933519,-2.102621,7.222601,11.976353,-1.659322, + 7.279135,11.904002,-1.941269,7.222099,11.959124,-1.660634,7.276109,11.887174,-1.932830,4.904477,12.007607,-2.431724, + 5.490251,11.979383,-2.277539,6.086757,11.949512,-2.122010,6.659445,11.922123,-1.977488,7.254657,11.892525,-1.824788, + 5.195011,11.977158,-2.349307,4.014450,12.035580,-2.657165,4.606221,12.006035,-2.502865,6.375586,11.913517,-2.041802, + 5.784189,11.948261,-2.195647,7.570047,11.860057,-1.728680,6.963129,11.890817,-1.888151,4.310336,12.020807,-2.580015, + 4.902108,11.991262,-2.425714,5.488218,11.963037,-2.272820,6.084727,11.933256,-2.117285,6.663604,11.906231,-1.972482, + 7.250634,11.877128,-1.821909,7.597789,11.888858,-1.897236,7.530526,11.994567,-1.619449,7.580918,11.992096,-1.606306, + 7.648181,11.886387,-1.884094,7.579484,11.791394,-1.845379,7.503128,11.934569,-1.525675,7.553519,11.932097,-1.512533, + 7.629877,11.788923,-1.832237,6.410767,11.947076,-2.206815,6.343504,12.052785,-1.929028,6.393896,12.050314,-1.915885, + 6.461159,11.944605,-2.193673,6.392462,11.849612,-2.154958,6.316105,11.992787,-1.835254,6.366497,11.990315,-1.822112, + 6.442854,11.847141,-2.141816,4.011339,12.064757,-2.832593,3.944076,12.170466,-2.554806,3.994467,12.167994,-2.541664, + 4.061730,12.062285,-2.819451,3.993034,11.967294,-2.780736,3.916677,12.110468,-2.461033,3.967068,12.107997,-2.447890, + 4.043426,11.964822,-2.767594,5.908562,15.263559,-2.019871,5.930585,15.265667,-2.117172,5.912928,15.392801,-1.992074, + 5.938480,15.419165,-2.085091,5.203706,12.006277,-2.521621,5.136442,12.111986,-2.243833,5.186834,12.109514,-2.230691, + 5.254097,12.003805,-2.508478,5.185401,11.908813,-2.469763,5.109043,12.051989,-2.150060,5.159435,12.049517,-2.136918, + 5.235793,11.906342,-2.456621,8.126981,13.478860,-3.341455,8.124939,13.398762,-3.348687,8.030787,13.403379,-3.373242, + 8.032829,13.483477,-3.366010,7.653604,13.311408,-1.407827,7.651562,13.231311,-1.415059,7.557411,13.235929,-1.439614, + 7.559453,13.316026,-1.432382,7.805701,13.301986,-2.055080,7.763348,13.304951,-2.066920,7.742323,13.347121,-1.978377, + 7.784676,13.344156,-1.966537,7.610777,12.625854,-1.467198,7.568425,12.628819,-1.479038,7.552874,12.692923,-1.407359, + 7.595227,12.689957,-1.395520,4.447024,13.659345,-4.301199,4.444983,13.579247,-4.308431,4.350831,13.583864,-4.332986, + 4.352873,13.663962,-4.325754,3.973648,13.491893,-2.367571,3.971606,13.411796,-2.374803,3.877454,13.416413,-2.399358, + 3.879496,13.496511,-2.392127,4.125744,13.482471,-3.014824,4.083391,13.485435,-3.026664,4.062367,13.527606,-2.938121, + 4.104720,13.524642,-2.926281,3.930821,12.806340,-2.426943,3.888468,12.809305,-2.438782,3.892807,12.942089,-2.427052, + 3.929652,12.920105,-2.398612,4.534826,16.107660,-4.113191,4.532784,16.027563,-4.120422,4.438632,16.032181,-4.144978, + 4.440674,16.112278,-4.137746,4.063879,16.023497,-2.173219,4.061837,15.943398,-2.180451,3.967685,15.948015,-2.205006, + 3.969728,16.028114,-2.197774,4.215976,16.014074,-2.820472,4.173623,16.017038,-2.832311,4.138243,16.009636,-2.700498, + 4.180129,16.005060,-2.687253,4.021052,15.337942,-2.232591,3.978700,15.340908,-2.244430,3.983039,15.473692,-2.232700, + 4.019884,15.451708,-2.204260,8.227019,15.919514,-3.150738,8.224977,15.839417,-3.157971,8.130825,15.844034,-3.182526, + 8.132868,15.924131,-3.175294,7.727626,15.836744,-1.218186,7.725585,15.756647,-1.225418,7.631433,15.761265,-1.249973, + 7.633475,15.841362,-1.242741,7.872042,15.827700,-1.867442,7.829690,15.830664,-1.879281,7.794309,15.823261,-1.747468, + 7.836195,15.818686,-1.734223,7.684800,15.151192,-1.277557,7.642447,15.154158,-1.289397,7.646786,15.286942,-1.277667, + 7.683630,15.264957,-1.249226,8.012656,15.807951,-2.407959,8.014699,15.888048,-2.400727,7.918505,15.812569,-2.432514, + 7.920547,15.892666,-2.425282,7.658657,11.425640,-1.979990,7.658572,11.427227,-1.719688,7.693254,11.864930,-1.940664, + 7.711571,11.864062,-1.936259,7.704519,11.423431,-1.968524,7.592735,11.430419,-1.736395,7.629565,11.848465,-1.699350, + 7.647882,11.847597,-1.694945,7.590856,11.457448,-1.663870,7.612304,11.974988,-1.619695,7.643239,11.973274,-1.610710, + 7.641248,11.454976,-1.650728,7.567079,11.446527,-1.574754,7.604391,11.956418,-1.530545,7.635326,11.954704,-1.521560, + 7.617471,11.444057,-1.561612,7.604978,11.849614,-1.552881,7.613079,11.877735,-1.640950,7.635912,11.847901,-1.543897, + 7.644013,11.876021,-1.631966,7.713399,11.626056,-1.975224,7.618057,11.618354,-1.704670,7.650509,11.616796,-1.696628, + 7.691803,11.627079,-1.980417,7.640638,11.481856,-1.727339,7.625337,11.475012,-1.731560,7.628941,11.488423,-1.722110, + 7.615549,11.475354,-1.632361,7.600248,11.468510,-1.636581,7.603852,11.481921,-1.627130,7.641172,11.670103,-1.714169, + 7.632037,11.685610,-1.707793,7.639497,11.685588,-1.706087,7.616082,11.663601,-1.619190,7.606946,11.679108,-1.612813, + 7.614408,11.679086,-1.611107,7.659321,11.987173,-1.797680,7.695538,11.985396,-1.788234,7.662871,11.985043,-1.811690, + 7.699088,11.983266,-1.802245,7.603098,11.675056,-1.655343,7.627593,11.685770,-1.569510,7.584288,11.687894,-1.580804, + 7.646403,11.672933,-1.644049,4.875669,13.241080,-2.636546,4.876640,13.274360,-2.634011,4.932061,13.271862,-2.622452, + 4.931090,13.238583,-2.624987,5.155203,13.296664,-3.473384,5.156174,13.329944,-3.470849,5.091518,13.333259,-3.489600, + 5.090547,13.299979,-3.492135,5.634220,13.203876,-2.438714,5.635191,13.237157,-2.436179,5.690612,13.234659,-2.424620, + 5.689641,13.201379,-2.427155,5.913754,13.259460,-3.275551,5.914725,13.292740,-3.273016,5.850069,13.296056,-3.291768, + 5.849097,13.262775,-3.294303,7.963934,13.527483,-3.017787,7.879024,13.531638,-3.039790,7.864248,13.661635,-2.958686, + 7.949158,13.657481,-2.936684,7.656372,13.389103,-1.826408,7.571462,13.393257,-1.848410,7.619004,13.547300,-2.001733, + 7.703913,13.543146,-1.979731,7.987722,14.979137,-2.836015,7.902812,14.983292,-2.858018,7.925638,15.129169,-2.918109, + 8.010548,15.125013,-2.896106,7.745576,14.970987,-1.870974,7.660666,14.975142,-1.892977,7.621648,15.113249,-1.717401, + 7.706559,15.109095,-1.695399,7.773460,13.573163,-2.324920,7.741187,13.574745,-2.333337,7.726412,13.575413,-2.276563, + 7.758686,13.573831,-2.268146,7.799843,14.984356,-2.160708,7.767570,14.985939,-2.169125,7.782609,14.994333,-2.225209, + 7.814882,14.992752,-2.216792,7.687605,14.258697,-1.893445,7.655332,14.260280,-1.901862,7.657693,14.316877,-1.900273, + 7.689967,14.315294,-1.891856,7.945252,14.381824,-2.908252,7.912979,14.383407,-2.916669,7.911437,14.320074,-2.922667, + 7.943710,14.318491,-2.914250,7.653689,13.446531,-1.958005,7.701675,15.066774,-1.837317,7.954756,15.057777,-2.859465, + 7.911901,13.578567,-2.973308,7.674960,13.825336,-1.926453,7.642686,13.826919,-1.934870,7.645048,13.883516,-1.933282, + 7.677322,13.881934,-1.924865,7.933311,13.972605,-2.939421,7.901038,13.974188,-2.947839,7.899496,13.910854,-2.953837, + 7.931769,13.909271,-2.945420,7.697784,14.607545,-1.866874,7.665512,14.609128,-1.875291,7.667872,14.665726,-1.873702, + 7.700146,14.664143,-1.865285,7.954864,14.711239,-2.883161,7.922591,14.712822,-2.891578,7.921049,14.649488,-2.897576, + 7.953322,14.647905,-2.889159,7.864788,13.596831,-2.670646,7.832514,13.598414,-2.679063,7.817740,13.599081,-2.622289, + 7.850013,13.597500,-2.613872,7.891171,15.008024,-2.506435,7.858898,15.009607,-2.514852,7.873935,15.018002,-2.570936, + 7.906209,15.016420,-2.562519,-16.000431,6.573327,-8.179355,-12.325920,5.594942,-7.275674,-12.347957,5.500853,-7.287936, + -16.022467,6.479237,-8.191618,-16.025915,6.566722,-8.082882,-12.351404,5.588337,-7.179201,-12.373442,5.494248,-7.191464, + -16.047951,6.472632,-8.095145,-12.299594,4.643103,-9.366292,-12.785270,2.569435,-9.636553,-16.045557,3.460749,-10.436773, + -15.587040,5.518430,-10.174781,-12.791524,4.500237,-7.386073,-13.277200,2.426569,-7.656333,-16.623177,3.317481,-8.479218, + -16.137501,5.391149,-8.208956,-12.362391,5.579535,-7.221680,-16.000719,6.548288,-8.116463,-12.848317,5.601350,-5.222210, + -13.802836,1.525883,-5.753365,-17.476723,2.504104,-6.656892,-16.522203,6.579571,-6.125737,-14.116239,6.194458,-7.664459, + -15.074351,2.136554,-8.161989,-15.165932,2.160939,-8.184512,-14.207819,6.218843,-7.686981,-14.145246,6.186941,-7.554651, + -15.099836,2.129950,-8.065516,-15.191417,2.154334,-8.088039,-14.236826,6.211326,-7.577174,-15.032043,6.438303,-7.889685, + -15.990156,2.380399,-8.387216,-16.081738,2.404784,-8.409738,-15.123624,6.462688,-7.912208,-15.061050,6.430786,-7.779877, + -16.015640,2.373795,-8.290743,-16.107222,2.398179,-8.313265,-15.152631,6.455171,-7.802400,-15.869579,6.697734,-8.093168, + -16.845005,2.565909,-8.600333,-16.936586,2.590293,-8.622855,-15.961161,6.722118,-8.115691,-15.911133,6.686965,-7.935865, + -16.883036,2.556053,-8.456365,-16.974617,2.580437,-8.478888,-16.002714,6.711349,-7.958388,-13.200434,5.950613,-7.439233, + -14.158546,1.892709,-7.936763,-14.250127,1.917093,-7.959286,-13.292015,5.974998,-7.461756,-13.229441,5.943096,-7.329425, + -14.184031,1.886104,-7.840291,-14.275612,1.910489,-7.862813,-13.321021,5.967480,-7.351948,-12.310445,5.768039,-7.206289, + -13.269883,1.622613,-7.720504,-13.377263,1.651204,-7.746912,-12.402025,5.792424,-7.228812,-12.352173,5.739120,-7.067927, + -13.305243,1.613449,-7.586648,-13.412622,1.642041,-7.613056,-12.443753,5.763505,-7.090450,-15.958156,6.681726,-8.074351, + -12.353884,5.722044,-7.187946,-12.397576,5.560882,-7.184772,-16.001848,6.520564,-8.071179,-15.978889,6.704237,-7.965672, + -12.374619,5.744555,-7.079266,-12.416117,5.567371,-7.102358,-16.020388,6.527053,-7.988765,-16.896320,2.771319,-8.572147, + -13.257771,1.802510,-7.677311,-13.302069,1.629316,-7.684702,-16.940619,2.598125,-8.579539,-16.924631,2.750408,-8.479673, + -13.286081,1.781599,-7.584837,-13.320417,1.638435,-7.600222,-16.958965,2.607244,-8.495060,-14.700603,6.243973,-5.656037, + -15.723740,1.875536,-6.225374,-15.632158,1.851151,-6.202852,-14.609022,6.219589,-5.633514,-14.674705,6.250685,-5.754077, + -15.710734,1.878906,-6.274605,-15.619154,1.854522,-6.252082,-14.583124,6.226300,-5.731554,-15.617367,6.485735,-5.863558, + -16.640503,2.117299,-6.432896,-16.546776,2.093752,-6.420665,-15.523639,6.462190,-5.851327,-15.600876,6.491271,-5.949548, + -16.630882,2.123178,-6.495298,-16.537155,2.099632,-6.483068,-15.507148,6.467724,-5.937317,-16.427628,6.710649,-6.133197, + -17.450764,2.342212,-6.702534,-17.542343,2.366597,-6.725057,-16.519207,6.735034,-6.155719,-16.453112,6.704045,-6.036724, + -17.476248,2.335608,-6.606061,-17.567829,2.359992,-6.628584,-16.544691,6.728430,-6.059246,-13.679050,5.978524,-5.455086, + -14.702188,1.610087,-6.024424,-14.792642,1.634721,-6.050883,-13.769505,6.003158,-5.481546,-13.704840,5.973664,-5.371450, + -14.727977,1.605227,-5.940788,-14.818430,1.629861,-5.967248,-13.795294,5.998298,-5.397911,-12.764408,5.735269,-5.232293, + -13.787544,1.366831,-5.801630,-13.879125,1.391216,-5.824153,-12.855989,5.759653,-5.254816,-12.789892,5.728664,-5.135820, + -13.813029,1.360227,-5.705157,-13.904610,1.384611,-5.727680,-12.881473,5.753048,-5.158342,-16.533092,6.615015,-6.131917, + -12.823022,5.627163,-5.219491,-12.834669,5.577438,-5.225971,-16.544739,6.565289,-6.138397,-16.554207,6.624139,-6.036186, + -12.844136,5.636287,-5.123760,-12.860153,5.570833,-5.129498,-16.570223,6.558685,-6.041924,-17.493172,2.515809,-6.666165, + -13.783102,1.527957,-5.753739,-13.806871,1.426471,-5.766966,-17.516941,2.414322,-6.679392,-17.518656,2.509205,-6.569693, + -13.808586,1.521353,-5.657267,-13.837324,1.416239,-5.654215,-17.547394,2.404091,-6.566642,-13.776249,2.644678,-4.650190, + -13.279934,1.739998,-7.647758,-17.450134,3.622899,-5.553717,-16.918261,2.708752,-8.542540,-16.531828,6.392082,-6.083847, + -17.428486,2.544766,-6.585947,-17.514793,2.567746,-6.607172,-16.610607,6.413058,-6.103221,-16.463898,6.682301,-6.045849, + -17.476559,2.341594,-6.610444,-17.562866,2.364574,-6.631670,-16.542677,6.703277,-6.065224,-17.546211,3.610450,-5.466802, + -17.499224,3.658673,-5.605651,-17.637791,3.634835,-5.489324,-17.590805,3.683057,-5.628174,-12.868099,5.410763,-5.185747, + -13.768370,1.567864,-5.687763,-13.852613,1.590295,-5.708482,-12.950010,5.432573,-5.205892,-12.797469,5.712520,-5.146240, + -13.815293,1.369550,-5.711675,-13.899536,1.391981,-5.732394,-12.879379,5.734330,-5.166384,-13.690260,2.583751,-4.518498, + -13.667318,2.638377,-4.663262,-13.805887,2.614539,-4.546935,-13.758900,2.662761,-4.685785,-13.651937,2.599634,-4.578830, + -13.674103,2.579904,-4.510059,-17.704277,3.651079,-5.486533,-12.763823,5.739939,-5.160262,-16.552406,6.748700,-6.091997, + -12.769777,5.752216,-5.122752,-16.558363,6.760977,-6.054487,-13.824479,1.275155,-5.681348,-17.613064,2.283916,-6.613083, + -13.790317,1.364395,-5.723641,-17.578901,2.373156,-6.655376,-17.664413,3.668722,-5.571090,-12.382450,5.710808,-7.161584, + -16.886179,2.675827,-8.548813,-15.952997,6.660189,-8.029531,-13.315632,1.726446,-7.680865,-15.896947,6.657576,-7.974305, + -15.915147,6.579870,-7.984433,-16.006727,6.604255,-8.006955,-15.988527,6.681961,-7.996828,-16.463598,6.615152,-6.039264, + -16.481798,6.537446,-6.049391,-16.573378,6.561831,-6.071914,-16.555178,6.639537,-6.061786,-14.633420,6.321145,-7.663563, + -14.651619,6.243439,-7.673691,-14.743199,6.267824,-7.696213,-14.725000,6.345530,-7.686086,-15.142793,6.225304,-5.776914, + -15.160992,6.147597,-5.787042,-15.252573,6.171982,-5.809564,-15.234373,6.249688,-5.799437,-13.634376,6.055136,-7.417866, + -13.652575,5.977430,-7.427993,-13.744155,6.001815,-7.450516,-13.725956,6.079521,-7.440389,-14.108630,5.949944,-5.522580, + -14.126830,5.872237,-5.532708,-14.218410,5.896622,-5.555230,-14.200211,5.974328,-5.545103,-12.355773,5.714691,-7.103416, + -12.373973,5.636985,-7.113544,-12.465553,5.661370,-7.136066,-12.447353,5.739076,-7.125939,-12.832190,5.647179,-5.138031, + -12.850389,5.569472,-5.148159,-12.928428,5.590251,-5.167351,-12.910229,5.667958,-5.157224,-16.547798,4.282866,-8.308808, + -16.480057,4.264830,-8.292149,-16.502094,4.170740,-8.304411,-16.569836,4.188777,-8.321072,-17.134827,4.111928,-6.417016, + -17.067085,4.093891,-6.400356,-17.089123,3.999802,-6.412619,-17.156864,4.017838,-6.429278,-16.303635,5.296707,-8.203964, + -16.235893,5.278670,-8.187304,-16.257931,5.184581,-8.199567,-16.325672,5.202618,-8.216227,-16.872459,5.232148,-6.271018, + -16.804718,5.214111,-6.254358,-16.826756,5.120022,-6.266621,-16.894497,5.138059,-6.283280,-12.721620,4.239236,-7.301069, + -12.789360,4.257273,-7.317729,-12.767323,4.351363,-7.305466,-12.699582,4.333326,-7.288806,-13.183167,4.149867,-5.370544, + -13.250907,4.167904,-5.387204,-13.228870,4.261993,-5.374941,-13.161129,4.243957,-5.358282,-12.944942,3.230797,-7.484814, + -13.012683,3.248835,-7.501473,-12.990646,3.342924,-7.489211,-12.922905,3.324887,-7.472551,-13.439854,3.031120,-5.538046, + -13.507595,3.049157,-5.554706,-13.485559,3.143246,-5.542444,-13.417817,3.125209,-5.525784,-13.385597,1.690426,-7.650959, + -13.367397,1.768132,-7.640831,-13.275817,1.743748,-7.618308,-13.294017,1.666042,-7.628436,-13.855589,1.482413,-5.801517, + -13.837389,1.560119,-5.791389,-13.745809,1.535735,-5.768867,-13.764009,1.458028,-5.778995,-14.683803,2.036093,-7.970229, + -14.665603,2.113799,-7.960101,-14.574022,2.089415,-7.937579,-14.592222,2.011708,-7.947706,-15.182364,1.830133,-6.085207, + -15.164164,1.907840,-6.075080,-15.072583,1.883455,-6.052557,-15.090783,1.805749,-6.062685,-15.682846,2.302103,-8.215926, + -15.664646,2.379809,-8.205798,-15.573066,2.355425,-8.183276,-15.591266,2.277719,-8.193403,-16.216526,2.105494,-6.339541, + -16.198326,2.183201,-6.329413,-16.106745,2.158816,-6.306891,-16.124945,2.081110,-6.317019,-16.926769,2.633316,-8.521847, + -16.908569,2.711022,-8.511719,-16.816990,2.686638,-8.489197,-16.835190,2.608932,-8.499324,-17.511934,2.451044,-6.662935, + -17.493734,2.528750,-6.652807,-17.402155,2.504365,-6.630285,-17.420355,2.426659,-6.640412,-15.418274,6.631796,-10.006583, + -15.436174,6.554175,-10.017835,-15.527755,6.578560,-10.040358,-15.509854,6.656181,-10.029106,-15.938404,6.529238,-8.104221, + -15.956305,6.451617,-8.115473,-16.047886,6.476001,-8.137996,-16.029984,6.553622,-8.126744,-14.255368,6.380260,-9.716610, + -14.273269,6.302639,-9.727861,-14.364849,6.327024,-9.750383,-14.346949,6.404644,-9.739132,-14.742825,6.210899,-7.810190, + -14.760725,6.133278,-7.821442,-14.852305,6.157662,-7.843965,-14.834405,6.235283,-7.832713,-13.053649,6.060287,-9.421068, + -13.071549,5.982665,-9.432320,-13.163130,6.007050,-9.454843,-13.145229,6.084671,-9.443591,-13.564518,5.897159,-7.520407, + -13.582418,5.819538,-7.531658,-13.673999,5.843922,-7.554181,-13.656098,5.921543,-7.542929,-11.849983,5.739794,-9.125048, + -11.867884,5.662173,-9.136299,-11.982876,5.692791,-9.164579,-11.964975,5.770412,-9.153328,-12.360852,5.576667,-7.224386, + -12.378753,5.499045,-7.235638,-12.470333,5.523430,-7.258161,-12.452433,5.601051,-7.246909,-16.256300,5.480855,-8.321736, + -12.581789,4.502471,-7.418056,-12.603826,4.408381,-7.430318,-16.278336,5.386766,-8.333999,-16.281784,5.474251,-8.225264, + -12.607273,4.495867,-7.321583,-12.629310,4.401777,-7.333846,-16.303820,5.380161,-8.237527,-16.534588,4.281211,-8.488994, + -12.860076,3.302826,-7.585313,-12.886543,3.209296,-7.578955,-16.558685,4.191354,-8.488291,-16.555153,4.293629,-8.391922, + -12.880642,3.315245,-7.488242,-12.907110,3.221714,-7.481884,-16.579252,4.203772,-8.391219,-15.782140,6.532433,-8.729698, + -15.792673,6.490135,-8.736232,-15.874984,6.502829,-8.685707,-15.864450,6.545126,-8.679174,-15.415698,6.369804,-8.007380, + -15.426230,6.327507,-8.013914,-15.508541,6.340200,-7.963389,-15.498009,6.382498,-7.956857,-14.582434,6.235550,-8.409871, + -14.592848,6.193221,-8.416374,-14.665154,6.203250,-8.363390,-14.654740,6.245580,-8.356886,-14.165421,6.036901,-7.699897, + -14.175953,5.994604,-7.706430,-14.258264,6.007297,-7.655906,-14.247731,6.049595,-7.649373,-13.434900,5.933006,-8.150687, + -13.445434,5.890708,-8.157220,-13.527744,5.903401,-8.106695,-13.517212,5.945699,-8.100163,-13.045101,5.738602,-7.424375, + -13.055634,5.696304,-7.430907,-13.137945,5.708997,-7.380383,-13.127412,5.751295,-7.373850,-12.283616,5.572876,-7.871217, + -12.272662,5.615283,-7.866276,-12.225459,5.593491,-7.783899,-12.236412,5.551085,-7.788841,-13.039164,5.700183,-7.425436, + -13.028210,5.742590,-7.420494,-12.981007,5.720798,-7.338119,-12.991960,5.678392,-7.343060,-13.490358,5.891851,-8.150081, + -13.479405,5.934258,-8.145140,-13.432202,5.912466,-8.062763,-13.443155,5.870059,-8.067705,-14.260176,6.025292,-7.725722, + -14.249223,6.067699,-7.720781,-14.202019,6.045908,-7.638405,-14.212973,6.003501,-7.643347,-14.663032,6.203423,-8.433361, + -14.652198,6.245861,-8.428449,-14.615000,6.226733,-8.348534,-14.625833,6.184295,-8.353446,-15.409760,6.331383,-8.008443, + -15.398808,6.373790,-8.003501,-15.351604,6.351998,-7.921125,-15.362556,6.309592,-7.926067,-15.779496,6.494567,-8.751404, + -15.820523,6.506448,-8.762282,-15.832056,6.547137,-8.671334,-15.791030,6.535256,-8.660455,-16.109262,5.871598,-8.224701, + -16.150288,5.883479,-8.235579,-16.152260,5.945461,-8.160459,-16.111233,5.933580,-8.149580,-12.224223,5.554219,-7.856805, + -12.265909,5.563061,-7.868067,-12.272522,5.626100,-7.794099,-12.230835,5.617258,-7.782838,-12.561558,4.929171,-7.352056, + -12.603244,4.938012,-7.363317,-12.609856,5.001051,-7.289350,-12.568171,4.992209,-7.278088,-17.201599,3.823967,-6.470303, + -17.133860,3.805930,-6.453643,-17.155895,3.711840,-6.465906,-17.223637,3.729877,-6.482565,-17.568541,3.736784,-5.585077, + -17.500801,3.718748,-5.568417,-17.522837,3.624658,-5.580680,-17.590578,3.642695,-5.597340,-13.510257,2.724748,-5.570447, + -13.577997,2.742785,-5.587107,-13.555961,2.836874,-5.574844,-13.488220,2.818837,-5.558185,-13.708619,2.609072,-4.642641, + -13.776361,2.627109,-4.659300,-13.754323,2.721198,-4.647038,-13.686583,2.703161,-4.630378,-16.957428,4.860164,-6.341288, + -16.889687,4.842127,-6.324628,-16.911724,4.748037,-6.336890,-16.979465,4.766074,-6.353550,-17.202244,4.905842,-5.808794, + -17.134504,4.887805,-5.792134,-17.156540,4.793715,-5.804397,-17.224281,4.811752,-5.821056,-13.262470,3.776374,-5.439421, + -13.330212,3.794412,-5.456081,-13.308174,3.888501,-5.443818,-13.240434,3.870464,-5.427158,-13.398732,3.793149,-4.880230, + -13.466473,3.811186,-4.896890,-13.444436,3.905275,-4.884627,-13.376695,3.887239,-4.867968,-16.567558,5.013961,-7.656628, + -16.500454,4.995778,-7.637706,-16.557352,4.894625,-7.533125,-16.624456,4.912808,-7.552047,-16.789841,4.995087,-6.874993, + -16.722736,4.976904,-6.856071,-16.709913,4.889877,-6.985177,-16.777018,4.908060,-7.004100,-16.723076,4.491735,-7.606925, + -16.655972,4.473553,-7.588004,-16.643148,4.386527,-7.717109,-16.710253,4.404709,-7.736031,-16.887466,4.436480,-7.065560, + -16.820362,4.418297,-7.046638,-16.877260,4.317145,-6.942058,-16.944365,4.335327,-6.960980,-16.666222,4.953129,-7.297827, + -16.635124,4.944703,-7.289059,-16.651678,4.939730,-7.235133,-16.682775,4.948156,-7.243902,-16.806736,4.418890,-7.312881, + -16.775639,4.410465,-7.304112,-16.759880,4.412038,-7.358480,-16.790977,4.420464,-7.367249,-16.822697,4.694873,-7.000610, + -16.791599,4.686447,-6.991842,-16.803829,4.631894,-7.000894,-16.834927,4.640320,-7.009663,-16.655899,4.676594,-7.609707, + -16.624802,4.668168,-7.600939,-16.611422,4.722954,-7.595741,-16.642519,4.731380,-7.604510,-16.755291,4.938031,-6.965800, + -16.882669,4.391829,-7.038929,-16.698570,4.449754,-7.636152,-16.581871,4.945681,-7.573461,-16.319639,2.456593,-6.932529, + -16.335939,2.386996,-6.941600,-14.507457,5.263144,-9.938120,-15.131659,5.429010,-10.089067,-15.597054,5.320702,-8.421683, + -14.915595,5.138922,-8.251527,-15.004987,5.183096,-8.429834,-15.430357,5.296560,-8.536013,-15.297701,5.324787,-8.990985, + -14.894966,5.217759,-8.893505,-14.899104,5.200090,-8.895808,-15.301840,5.307118,-8.993287,-15.434495,5.278892,-8.538315, + -15.009125,5.165428,-8.432137,-15.078341,5.256011,-8.939327,-15.084056,5.231607,-8.942507,-15.124707,5.242227,-8.950938, + -15.118992,5.266631,-8.947758,-15.228232,5.232169,-8.487027,-15.233948,5.207766,-8.490208,-15.194074,5.196945,-8.478835, + -15.188358,5.221348,-8.475655,-15.350451,5.297408,-8.783016,-15.356167,5.273004,-8.786197,-15.365829,5.269843,-8.744574, + -15.360113,5.294246,-8.741393,-14.970325,5.190461,-8.645532,-14.976042,5.166057,-8.648712,-14.963876,5.168552,-8.689719, + -14.958160,5.192955,-8.686539,-13.364696,4.869608,-8.901587,-13.380996,4.800012,-8.910657,-13.503702,4.816329,-8.815351, + -13.487402,4.885926,-8.806280,-13.566530,4.811491,-8.116890,-13.582830,4.741895,-8.125960,-13.643285,4.774345,-8.266312, + -13.626985,4.843943,-8.257241,-13.928847,5.003466,-8.914845,-13.945148,4.933869,-8.923916,-14.005602,4.966320,-9.064268, + -13.989302,5.035916,-9.055197,-14.085989,4.966157,-8.370125,-14.102289,4.896561,-8.379196,-14.224996,4.912879,-8.283890, + -14.208695,4.982475,-8.274819,-13.520244,4.842670,-8.555883,-13.527798,4.810418,-8.560087,-13.543877,4.807120,-8.505891, + -13.536323,4.839373,-8.501688,-14.051474,4.976537,-8.628380,-14.059028,4.944285,-8.632584,-14.046258,4.948463,-8.687593, + -14.038705,4.980716,-8.683390,-13.839950,4.884313,-8.280980,-13.847504,4.852061,-8.285183,-13.900202,4.866363,-8.300214, + -13.892649,4.898614,-8.296010,-13.732802,4.940040,-8.901116,-13.740356,4.907788,-8.905320,-13.676498,4.891055,-8.891685, + -13.668944,4.923307,-8.887482,-13.603071,4.810409,-8.223466,-14.134308,4.952126,-8.356184,-13.962751,4.990433,-8.958410, + -13.448048,4.853658,-8.833898,-12.902952,5.825713,-6.624905,-12.919253,5.756117,-6.633976,-12.996086,5.767069,-6.579945, + -12.979786,5.836667,-6.570874,-13.055304,5.768120,-5.933153,-13.071604,5.698524,-5.942223,-13.112258,5.718853,-6.025148, + -13.095958,5.788449,-6.016078,-13.438790,5.958882,-6.683759,-13.455091,5.889285,-6.692829,-13.495745,5.909614,-6.775753, + -13.479445,5.979210,-6.766683,-13.601785,5.923132,-6.140477,-13.618085,5.853535,-6.149548,-13.694918,5.864488,-6.095516, + -13.678617,5.934085,-6.086446,-13.018480,5.794969,-6.321918,-13.026034,5.762717,-6.326121,-13.042113,5.759419,-6.271925, + -13.034559,5.791671,-6.267722,-13.549710,5.928836,-6.394414,-13.557264,5.896584,-6.398617,-13.544495,5.900763,-6.453627, + -13.536942,5.933015,-6.449424,-13.338187,5.836612,-6.047014,-13.345740,5.804360,-6.051217,-13.398439,5.818661,-6.066247, + -13.390885,5.850913,-6.062044,-13.231040,5.892339,-6.667150,-13.238593,5.860087,-6.671354,-13.184868,5.846052,-6.660211, + -13.177314,5.878304,-6.656007,-13.072044,5.754915,-5.982302,-13.650103,5.909100,-6.126535,-13.472694,5.945849,-6.727323, + -12.940432,5.804398,-6.598492,-15.178740,6.431672,-7.184594,-15.195040,6.362075,-7.193665,-15.275970,6.374119,-7.140642, + -15.259670,6.443716,-7.131572,-15.342795,6.377196,-6.495721,-15.359096,6.307599,-6.504791,-15.403848,6.329019,-6.588724, + -15.387547,6.398616,-6.579654,-15.679394,6.558890,-7.261019,-15.695694,6.489293,-7.270090,-15.740445,6.510713,-7.354022, + -15.724145,6.580310,-7.344952,-15.864110,6.525506,-6.696856,-15.880411,6.455909,-6.705926,-15.961341,6.467953,-6.652903, + -15.945041,6.537550,-6.643832,-15.298365,6.402019,-6.882615,-15.305919,6.369767,-6.886818,-15.321998,6.366469,-6.832622, + -15.314444,6.398721,-6.828419,-15.829595,6.535886,-6.955111,-15.837149,6.503633,-6.959314,-15.824379,6.507812,-7.014324, + -15.816826,6.540064,-7.010121,-15.618071,6.443662,-6.607711,-15.625625,6.411410,-6.611914,-15.678324,6.425711,-6.626945, + -15.670770,6.457963,-6.622741,-15.510923,6.499389,-7.227848,-15.518477,6.467137,-7.232051,-15.464752,6.453102,-7.220908, + -15.457198,6.485353,-7.216704,-15.363634,6.365082,-6.545878,-15.912429,6.511474,-6.682915,-15.713298,6.545857,-7.304584, + -15.220316,6.411448,-7.159189,-13.965569,1.829790,-6.353587,-16.607656,2.329398,-6.988667,-16.600103,2.361650,-6.984463, + -14.372388,1.726252,-6.450107,-16.653828,2.375685,-6.995606,-16.661383,2.343433,-6.999809,-16.287331,2.292460,-7.260996, + -14.608305,1.790458,-6.517750,-16.279778,2.324713,-7.256793,-16.295856,2.321415,-7.202596,-16.303410,2.289163,-7.206800, + -16.818562,2.426327,-7.333492,-16.811008,2.458579,-7.329288,-16.798239,2.462758,-7.384299,-16.805792,2.430506,-7.388502, + -16.336418,2.238757,-6.877309,-16.320118,2.308354,-6.868239,-16.361000,2.328744,-6.951220,-16.377300,2.259147,-6.960291, + -16.179579,2.288971,-7.568381,-16.163279,2.358568,-7.559310,-16.240339,2.369582,-7.505336,-16.256639,2.299985,-7.514406, + -16.859716,2.387595,-7.078932,-16.843416,2.457192,-7.069862,-16.920479,2.468205,-7.015887,-16.936779,2.398609,-7.024958, + -16.698086,2.417524,-7.622972,-14.612440,1.772265,-6.520631,-14.377849,1.702052,-6.453871,-16.681786,2.487121,-7.613902, + -14.203679,1.779990,-7.034596,-14.457870,1.832591,-7.073839,-14.462004,1.814399,-7.076719,-16.722668,2.507511,-7.696883, + -14.209139,1.755790,-7.038360,-14.079249,1.637757,-6.322198,-14.062948,1.707353,-6.313128,-16.738968,2.437914,-7.705953, + -13.925269,1.692150,-7.040197,-13.908969,1.761748,-7.031127,-14.665194,1.867707,-6.461240,-14.681494,1.798110,-6.470310, + -14.467384,1.907013,-7.142235,-14.483685,1.837416,-7.151306,-14.395410,5.244735,-9.927617,-14.411710,5.175138,-9.936687, + -14.533561,5.207582,-9.966655,-14.517261,5.277180,-9.957584,-14.834108,5.109856,-8.128268,-14.850409,5.040259,-8.137339, + -14.941134,5.080770,-8.285135,-14.924834,5.150367,-8.276065,-15.092866,5.430441,-10.099144,-15.109166,5.360844,-10.108214, + -15.231018,5.393289,-10.138182,-15.214718,5.462885,-10.129111,-15.558969,5.319212,-8.432019,-15.575271,5.249616,-8.441090, + -15.728248,5.273993,-8.353228,-15.711946,5.343590,-8.344157,-14.029353,2.842157,-9.936934,-13.394948,2.672907,-9.778349, + -13.769437,2.558105,-8.224508,-14.455776,2.740515,-8.390738,-14.286055,2.717159,-8.516524,-13.856299,2.602936,-8.412399, + -13.762376,2.641477,-8.876898,-14.154202,2.746008,-8.974826,-14.150064,2.763676,-8.972524,-13.758238,2.659145,-8.874595, + -13.852161,2.620605,-8.410097,-14.281917,2.734827,-8.514221,-13.958612,2.708214,-8.954472,-13.952897,2.732617,-8.951291, + -13.909014,2.720706,-8.938751,-13.914729,2.696302,-8.941932,-14.049710,2.661320,-8.430952,-14.043994,2.685724,-8.427772, + -14.088744,2.697411,-8.437029,-14.094460,2.673007,-8.440209,-13.781965,2.630636,-8.661612,-13.776250,2.655039,-8.658432, + -13.789808,2.652249,-8.612661,-13.795524,2.627846,-8.615842,-14.245790,2.746343,-8.715901,-14.240075,2.770747,-8.712721, + -14.223977,2.775642,-8.779218,-14.229692,2.751239,-8.782398,-15.517698,3.165893,-9.554284,-15.501398,3.235490,-9.545213, + -15.444110,3.203592,-9.403415,-15.460410,3.133995,-9.412485,-15.739701,3.119319,-8.774048,-15.723401,3.188917,-8.764977, + -15.598696,3.171768,-8.857502,-15.614995,3.102171,-8.866572,-15.034727,3.019178,-9.296478,-15.018427,3.088775,-9.287408, + -14.893722,3.071627,-9.379932,-14.910021,3.002029,-9.389003,-15.170547,2.982395,-8.746239,-15.154246,3.051992,-8.737168, + -15.096957,3.020094,-8.595370,-15.113258,2.950498,-8.604441,-15.565846,3.146477,-9.178256,-15.558292,3.178729,-9.174052, + -15.572269,3.174868,-9.119313,-15.579823,3.142616,-9.123516,-15.067953,3.004670,-8.984930,-15.060400,3.036922,-8.980726, + -15.043135,3.039897,-9.034575,-15.050689,3.007645,-9.038778,-15.418560,3.057864,-8.782921,-15.411007,3.090116,-8.778718, + -15.357577,3.075989,-8.766335,-15.365131,3.043737,-8.770538,-15.203653,3.084744,-9.375368,-15.196100,3.116996,-9.371165, + -15.248417,3.131367,-9.387413,-15.255971,3.099115,-9.391616,-15.653914,3.132132,-8.845960,-15.136627,2.992998,-8.707990, + -14.983788,3.036268,-9.314655,-15.481196,3.170686,-9.452164,-14.132631,2.862839,-9.980635,-14.116331,2.932436,-9.971564, + -13.994480,2.899992,-9.941597,-14.010780,2.830395,-9.950667,-14.588264,2.756363,-8.320929,-14.571963,2.825961,-8.311858, + -14.418986,2.801583,-8.399719,-14.435286,2.731986,-8.408790,-13.423698,2.674078,-9.806285,-13.407398,2.743676,-9.797215, + -13.285547,2.711232,-9.767247,-13.301847,2.641634,-9.776319,-13.797543,2.562181,-8.251948,-13.781242,2.631777,-8.242878, + -13.690516,2.591266,-8.095081,-13.706818,2.521669,-8.104153,-15.767921,5.439309,-9.005658,-15.809900,5.258184,-9.029147, + -15.973183,5.303014,-9.079687,-15.928037,5.483295,-9.055420,-15.790976,5.420020,-8.816232,-15.836221,5.226839,-8.841410, + -16.024250,5.276905,-8.887651,-15.979005,5.470086,-8.862474,-15.476521,5.475627,-9.893213,-15.521766,5.282446,-9.918391, + -15.709795,5.332512,-9.964634,-15.664550,5.525693,-9.939456,-15.540584,5.474401,-9.768681,-15.585829,5.281220,-9.793858, + -15.744593,5.323493,-9.832903,-15.699348,5.516675,-9.807726,-12.901091,2.662064,-8.916720,-12.949244,2.483019,-8.941698, + -13.105243,2.524556,-8.980063,-13.057091,2.703601,-8.955086,-12.924441,2.652937,-8.804729,-12.966741,2.472334,-8.828267, + -13.122740,2.513871,-8.866632,-13.080441,2.694474,-8.843095,-12.430494,4.619062,-8.712218,-12.472191,4.441033,-8.735421, + -12.610958,4.475770,-8.752570,-12.569262,4.653799,-8.729368,-12.477466,4.606890,-8.534408,-12.519162,4.428861,-8.557610, + -12.680737,4.471882,-8.597346,-12.639041,4.649911,-8.574144,-12.437552,4.379323,-8.949044,-12.500070,4.112396,-8.983833, + -12.615966,4.143255,-9.012336,-12.553449,4.410182,-8.977547,-12.473728,4.369947,-8.812100,-12.536245,4.103021,-8.846889, + -12.658896,4.135678,-8.877052,-12.596379,4.402605,-8.842264,-12.499002,4.310471,-8.705596,-12.561520,4.043544,-8.740385, + -12.660461,4.067676,-8.747740,-12.597944,4.334602,-8.712951,-12.535178,4.301095,-8.568652,-12.597695,4.034169,-8.603440, + -12.719444,4.066586,-8.633383,-12.656927,4.333513,-8.598595,-13.048487,2.494090,-8.751846,-13.291408,2.558771,-8.811588, + -13.259295,2.695883,-8.793718,-13.016374,2.631202,-8.733976,-13.084661,2.484715,-8.614902,-13.344471,2.553893,-8.678797, + -13.312358,2.691004,-8.660927,-13.052548,2.621827,-8.597032,-13.209338,2.561864,-9.012887,-13.389850,2.609928,-9.057281, + -13.377939,2.660782,-9.050653,-13.197428,2.612718,-9.006259,-13.235134,2.551454,-8.886653,-13.429825,2.603293,-8.934534, + -13.417914,2.654147,-8.927906,-13.223223,2.602307,-8.880026,-15.795745,3.330640,-10.198073,-16.064526,3.402207,-10.264175, + -16.031811,3.541889,-10.245971,-15.763029,3.470323,-10.179869,-15.838925,3.324385,-10.029266,-16.101852,3.394393,-10.093929, + -16.070368,3.528821,-10.076409,-15.807441,3.458813,-10.011746,-13.155549,4.783214,-8.645587,-12.909508,4.717702,-8.585077, + -12.925593,4.649025,-8.594028,-13.171634,4.714536,-8.654537,-13.216847,4.776201,-8.481618,-12.953919,4.706193,-8.416956, + -12.970004,4.637515,-8.425906,-13.232932,4.707523,-8.490569,-15.944353,5.454648,-8.785731,-15.701770,5.387056,-8.703046, + -15.717854,5.318378,-8.711996,-15.960438,5.385970,-8.794683,-15.988765,5.443138,-8.617609,-15.725837,5.373130,-8.552947, + -15.741921,5.304453,-8.561897,-16.004850,5.374461,-8.626560,-12.905674,4.748111,-8.825293,-12.642746,4.678103,-8.760631, + -12.658831,4.609426,-8.769581,-12.921759,4.679434,-8.834244,-12.970350,4.741998,-8.662155,-12.701544,4.672091,-8.608839, + -12.717628,4.603414,-8.617789,-12.986435,4.673320,-8.671105,-13.217669,5.757379,-5.577104,-13.014956,5.703403,-5.527250, + -13.027357,5.650455,-5.534151,-13.230070,5.704429,-5.584004,-13.250925,5.751835,-5.474804,-13.013095,5.688509,-5.416314, + -13.025496,5.635561,-5.423215,-13.263327,5.698885,-5.481705,-14.556250,6.317310,-7.467860,-14.353537,6.263335,-7.418006, + -14.365937,6.210386,-7.424907,-14.568650,6.264361,-7.474761,-14.583652,6.310208,-7.364121,-14.380939,6.256233,-7.314268, + -14.393341,6.203284,-7.321168,-14.596054,6.257259,-7.371022,-16.011091,2.352444,-8.001382,-16.213804,2.406418,-8.051236, + -16.201403,2.459368,-8.044334,-15.998690,2.405393,-7.994481,-16.038494,2.345342,-7.897643,-16.241207,2.399316,-7.947497, + -16.228806,2.452266,-7.940596,-16.026093,2.398291,-7.890742,-13.966175,1.602941,-6.167804,-14.168888,1.656915,-6.217658, + -14.156487,1.709864,-6.210757,-13.953773,1.655890,-6.160903,-13.993578,1.595839,-6.064066,-14.202145,1.651371,-6.115359, + -14.189743,1.704321,-6.108458,-13.981177,1.648788,-6.057165,-14.329713,6.042305,-4.650747,-14.344556,6.055372,-4.586555, + -14.803207,3.793149,-5.170833,-14.619360,6.089242,-5.659247,-14.943900,4.270440,-6.300962,-14.697146,6.109390,-5.626873, + -15.147709,4.317989,-6.299543,-13.613654,5.819553,-5.329201,-13.776621,3.948851,-5.931108,-13.685036,5.836729,-5.403560, + -14.011175,4.018723,-6.045711,-14.690994,4.080727,-5.299789,-14.381853,5.900257,-4.664724,-13.621665,5.722577,-5.524055, + -14.708773,6.012034,-5.791410,-15.578693,6.257278,-5.807612,-15.584917,6.257189,-5.783274,-15.856153,6.325297,-5.849250, + -15.797142,6.448948,-5.881646,-13.677212,5.844953,-5.405066,-15.547417,6.386568,-5.820961,-13.877927,5.838861,-5.322814, + -13.868666,5.878402,-5.317661,-14.507374,6.053783,-5.491609,-14.516635,6.014242,-5.496763,-15.553625,6.386475,-5.796618, + -14.623331,6.097877,-5.621551,-14.318266,5.919227,-4.822948,-14.327527,5.879685,-4.828102,-15.803351,6.448856,-5.857305, + -14.361986,5.908871,-4.664922,-13.929463,5.854739,-5.143428,-13.937017,5.822487,-5.147632,-13.953195,5.819216,-5.093460, + -13.945641,5.851468,-5.089256,-14.485085,5.998435,-5.247508,-14.492639,5.966183,-5.251711,-14.479968,5.970387,-5.306745, + -14.472414,6.002640,-5.302542,-14.323935,5.878011,-4.766922,-14.331489,5.845759,-4.771126,-14.384123,5.860077,-4.786401, + -14.376569,5.892329,-4.782198,-14.196566,5.938979,-5.463613,-14.204119,5.906727,-5.467816,-14.150329,5.892708,-5.456918, + -14.142775,5.924960,-5.452715,-15.849928,6.325386,-5.873588,-16.006527,3.654406,-5.248787,-16.014849,3.656294,-5.216525, + -16.388609,3.751561,-5.307364,-16.336647,3.880071,-5.354237,-15.999804,3.795382,-5.283757,-16.010218,3.797627,-5.248039, + -16.342648,3.881889,-5.328714,-16.380989,3.750001,-5.341433,-13.725276,3.308847,-4.713799,-13.732384,3.312674,-4.681669, + -14.017233,3.383944,-4.750109,-13.965459,3.532810,-4.817462,-13.659885,3.456355,-4.743850,-13.666437,3.460162,-4.714070, + -13.972011,3.536617,-4.787683,-14.010124,3.380118,-4.782239,-14.481976,5.676456,-4.931214,-14.505959,5.679895,-4.915357, + -14.539762,5.532009,-4.931540,-14.546976,5.528625,-5.048927,-14.502361,5.722671,-5.026728,-14.526352,5.726077,-5.010875, + -14.570967,5.532031,-5.033075,-14.498127,5.517176,-4.930944,-17.131676,2.526015,-6.210391,-17.139875,2.513619,-6.189733, + -16.910101,2.455448,-6.130506,-16.901011,2.364789,-6.239039,-17.152967,2.428866,-6.303722,-17.161152,2.416465,-6.283060, + -16.909193,2.352387,-6.218379,-16.901903,2.467845,-6.151165,-17.433832,2.917660,-6.011218,-17.441450,2.906337,-5.991736, + -17.205935,2.846478,-5.931315,-17.199600,2.760859,-6.032094,-17.452759,2.825416,-6.096854,-17.460365,2.814090,-6.077369, + -17.207207,2.749533,-6.012609,-17.198315,2.857800,-5.950797,-14.480183,2.421043,-5.057402,-14.489685,2.411561,-5.028226, + -14.240986,2.348018,-4.964955,-14.214099,2.261677,-5.057917,-14.509541,2.337666,-5.132684,-14.516273,2.328411,-5.114645, + -14.220832,2.252422,-5.039878,-14.231483,2.357501,-4.994130,-14.197183,2.206622,-5.101182,-14.205733,2.193992,-5.079290, + -13.959146,2.131539,-5.015852,-13.953273,2.035465,-5.128899,-14.217460,2.102603,-5.196665,-14.225999,2.089970,-5.174770, + -13.961812,2.022832,-5.107004,-13.950594,2.144170,-5.037743,-14.392263,2.073642,-5.289764,-14.398131,2.064015,-5.275790, + -14.232113,2.021807,-5.232913,-14.225662,1.962860,-5.313325,-14.403370,2.008180,-5.359076,-14.409230,1.998551,-5.345101, + -14.231523,1.953230,-5.299349,-14.226245,2.031435,-5.246888,-16.568439,3.459154,-8.884713,-13.086451,2.465973,-8.034609, + -13.114060,2.382094,-8.027305,-16.615509,3.334602,-8.887040,-16.600403,3.445511,-8.791192,-13.113117,2.461417,-7.938338, + -13.142018,2.362871,-7.934435,-16.636930,3.343293,-8.790532,-14.355917,2.325986,-10.393254,-14.371197,2.249700,-10.413720, + -14.462777,2.274084,-10.436243,-14.447497,2.350371,-10.415777,-14.876965,1.954570,-8.676714,-14.892243,1.878283,-8.697180, + -14.983824,1.902667,-8.719703,-14.968545,1.978955,-8.699236,-13.124780,1.998180,-10.090478,-13.140059,1.921893,-10.110944, + -13.231639,1.946277,-10.133467,-13.216360,2.022564,-10.113000,-13.650560,1.625537,-8.356017,-13.665839,1.549249,-8.376484, + -13.757420,1.573634,-8.399006,-13.742141,1.649921,-8.378540,-16.472500,3.331791,-8.845030,-16.511787,3.343917,-8.860909, + -16.521402,3.408001,-8.788178,-16.482115,3.395876,-8.772301,-16.821455,2.731851,-8.559499,-16.860744,2.743976,-8.575377, + -16.870359,2.808060,-8.502647,-16.831072,2.795935,-8.486770,-13.251776,2.526325,-8.078266,-13.293945,2.537801,-8.083987, + -13.288017,2.597747,-8.007435,-13.245848,2.586271,-8.001714,-13.321033,1.805797,-7.680103,-13.363202,1.817273,-7.685824, + -13.357275,1.877219,-7.609272,-13.315105,1.865743,-7.603551,-15.016297,2.032016,-8.741631,-13.561049,1.626493,-8.373980, + -13.582508,1.517050,-8.411129,-15.043455,1.908532,-8.789507,-15.050983,1.984376,-8.661234,-13.593426,1.587142,-8.287957, + -13.611835,1.491207,-8.319859,-15.072783,1.882689,-8.698237,-13.750478,1.467466,-8.408140,-13.516358,2.592648,-8.016746, + -13.430367,2.568219,-7.994545,-13.651119,1.437397,-8.387018,-13.755814,1.440403,-8.335066,-13.529356,2.568066,-7.943502, + -13.454232,2.546989,-7.923606,-13.674985,1.416167,-8.316079,-15.026085,1.806435,-8.743042,-14.886843,2.957558,-8.353792, + -14.800851,2.933129,-8.331592,-14.926727,1.776366,-8.721920,-15.031422,1.779373,-8.669967,-14.899840,2.932976,-8.280548, + -14.824717,2.911899,-8.260653,-14.950593,1.755135,-8.650981,-13.708890,1.521841,-8.364818,-13.510816,2.589619,-8.014173, + -14.789339,2.931483,-8.328943,-14.984108,1.865441,-8.691150,-15.000332,1.831380,-8.662058,-14.800597,2.912720,-8.303476, + -13.521995,2.571321,-7.988525,-13.725752,1.487927,-8.332975,-13.654512,1.548617,-8.556936,-14.929730,1.892218,-8.883268, + -14.945954,1.858157,-8.854177,-13.671374,1.514703,-8.525094,-16.018482,3.211328,-5.141879,-15.084153,6.364960,-5.786168, + -15.090109,6.377237,-5.748658,-16.144810,1.900176,-6.307253,-16.110647,1.989416,-6.349547,-15.996315,3.231058,-5.210650, + -15.762965,6.587550,-9.077276,-15.780866,6.509929,-9.088528,-15.671385,6.563165,-9.054753,-15.689285,6.485544,-9.066005, + -14.537636,5.063016,-4.875851,-14.861132,5.196558,-5.948372,-13.777964,4.905444,-5.650762,-16.257946,5.169693,-8.168367, + -16.217690,5.180127,-8.320764,-16.349527,5.194078,-8.190890,-16.309271,5.204511,-8.343286,-12.891142,3.350276,-7.420575, + -12.853935,3.359919,-7.561424,-12.991884,3.377100,-7.445351,-12.954678,3.386743,-7.586200,-13.388919,3.148247,-5.493821, + -13.363435,3.154852,-5.590294,-13.480499,3.172632,-5.516344,-13.455015,3.179236,-5.612816,-15.056745,6.232926,-5.725498, + -15.035631,6.223803,-5.821229,-15.047277,6.174078,-5.827710,-16.003508,2.122129,-6.322530,-16.057730,2.010411,-6.223007, + -16.027277,2.020642,-6.335757,-15.414596,1.495550,-5.202533,-15.432804,1.473916,-5.141605,-14.665106,1.567789,-5.934802, + -14.301729,2.841040,-6.041663,-14.612663,1.541073,-5.871235,-15.693731,1.871521,-6.134797,-15.594481,1.861568,-6.165938, + -15.247287,3.089428,-6.248343,-15.020454,2.910028,-5.279446,-15.362247,1.634062,-5.203811,-15.571005,1.948927,-6.096438, + -14.637079,1.636526,-5.873799,-15.604822,1.872873,-6.125571,-15.467291,1.871835,-5.963212,-15.482486,1.807192,-5.978257, + -14.862809,1.642734,-5.828408,-14.847428,1.707404,-5.813591,-14.660148,1.655411,-5.864799,-15.352565,1.605552,-5.354309, + -15.337184,1.670221,-5.339491,-15.397709,1.571186,-5.200942,-15.508630,1.833353,-5.788750,-15.500230,1.865078,-5.782595, + -15.513665,1.858049,-5.728032,-15.522065,1.826324,-5.734187,-14.985530,1.622907,-5.634267,-14.977130,1.654631,-5.628112, + -14.960226,1.660579,-5.681832,-14.968626,1.628854,-5.687988,-15.374546,1.654483,-5.289416,-15.366146,1.686209,-5.283261, + -15.312901,1.670051,-5.272650,-15.321301,1.638327,-5.278805,-15.125763,1.741681,-5.950032,-15.117362,1.773405,-5.943877, + -15.169392,1.790082,-5.958829,-15.177792,1.758357,-5.964984,-15.071557,2.790616,-5.184321,-14.342627,2.481390,-5.951215, + -15.441240,2.768498,-6.190360,-13.666674,6.026797,-6.834061,-13.487263,5.969542,-6.752657,-13.491773,5.951268,-6.754099, + -13.672669,6.002505,-6.835978,-13.868843,6.019031,-6.147280,-13.669981,5.961054,-6.114439,-13.674492,5.942780,-6.115880, + -13.874839,5.994739,-6.149197,-12.848129,5.747772,-5.902562,-13.032906,5.793066,-5.978778,-13.037416,5.774792,-5.980220, + -12.854125,5.723480,-5.904480,-12.697399,5.767123,-6.577847,-12.900421,5.812800,-6.604985,-12.904931,5.794527,-6.606427, + -12.703394,5.742831,-6.579763,-15.916878,6.626632,-7.402011,-15.742927,6.570199,-7.314386,-15.747437,6.551925,-7.315828, + -15.922873,6.602340,-7.403929,-16.126366,6.621139,-6.719931,-15.931667,6.563612,-6.680246,-15.936177,6.545339,-6.681688, + -16.132360,6.596847,-6.721847,-15.139041,6.357640,-6.468931,-15.320541,6.402232,-6.546373,-15.325051,6.383959,-6.547816, + -15.145037,6.333348,-6.470848,-14.979193,6.374576,-7.142100,-15.179263,6.419643,-7.170607,-15.183773,6.401369,-7.172049, + -14.985188,6.350284,-7.144018,-16.447811,2.370823,-7.593773,-16.440258,2.403076,-7.589570,-16.492956,2.417377,-7.604599, + -16.500511,2.385125,-7.608803,-16.898260,2.417337,-7.057323,-16.342587,2.269654,-6.922735,-16.206158,2.317314,-7.533600, + -16.719835,2.454355,-7.662000,-15.556384,2.127634,-7.450391,-15.540084,2.197231,-7.441320,-15.790348,2.092701,-6.737974, + -14.213208,1.767877,-7.041511,-14.381766,1.685034,-6.464534,-15.774048,2.162298,-6.728903,-13.989001,1.707862,-6.986115, + -13.993019,1.689716,-6.989418,-14.218550,1.743754,-7.045902,-14.371748,1.729127,-6.457538,-14.981668,2.051965,-7.330212, + -14.997969,1.982368,-7.339283,-14.116858,1.656701,-6.382974,-14.120875,1.638555,-6.386278,-15.137755,1.992879,-6.572418, + -15.154056,1.923282,-6.581489,-15.986030,2.247070,-7.547516,-16.175547,2.296464,-7.551151,-16.171515,2.314607,-7.547844, + -15.980669,2.271188,-7.543119,-16.144251,2.159764,-6.857083,-16.327715,2.216921,-6.912040,-16.323683,2.235063,-6.908732, + -16.138889,2.183882,-6.852687,-17.121250,2.420478,-7.102926,-16.930180,2.381746,-7.087654,-16.926161,2.399892,-7.084350, + -17.115910,2.444601,-7.098534,-16.929075,2.494936,-7.763618,-16.746094,2.448925,-7.697171,-16.742075,2.467072,-7.693868, + -16.923733,2.519059,-7.759225,-15.281838,2.046008,-7.337445,-15.534703,2.104617,-7.375805,-15.530569,2.122809,-7.372925, + -15.276379,2.070208,-7.333681,-15.470050,1.992208,-6.717439,-15.718118,2.066010,-6.787514,-15.713984,2.084203,-6.784633, + -15.464592,2.016409,-6.713675,-15.474068,1.975217,-6.728127,-15.198560,1.924846,-6.646276,-15.194542,1.942993,-6.642972, + -15.464049,2.019310,-6.721131,-15.291249,2.033972,-7.344988,-15.065719,1.979934,-7.288504,-15.061701,1.998079,-7.285199, + -15.285908,2.058095,-7.340595,-13.440457,2.419384,-6.155498,-13.495541,2.175170,-6.196486,-13.477666,2.170482,-6.192628, + -13.416698,2.413199,-6.150310,-13.298138,2.473505,-6.746932,-13.352265,2.216732,-6.754507,-13.334392,2.212043,-6.750648, + -13.274379,2.467320,-6.741744,-13.377430,2.731177,-6.060972,-13.445170,2.749214,-6.077631,-13.195046,2.745326,-6.774223, + -13.262788,2.763362,-6.790883,-13.590085,2.130468,-6.158272,-13.522345,2.112432,-6.141612,-13.402095,2.194644,-6.840158, + -13.334353,2.176608,-6.823499,-13.285117,2.462777,-6.747794,-13.397496,2.407242,-6.154108,-13.230947,2.693174,-6.717433, + -13.212976,2.688520,-6.714005,-13.261229,2.456589,-6.743237,-13.440823,2.418605,-6.163445,-13.378874,2.682729,-6.116808, + -13.360903,2.678075,-6.113380,-13.146410,3.674863,-5.991871,-13.201493,3.430649,-6.032860,-13.183619,3.425961,-6.029002, + -13.122651,3.668679,-5.986683,-13.004090,3.728984,-6.583305,-13.058218,3.472211,-6.590880,-13.040344,3.467523,-6.587022, + -12.980331,3.722800,-6.578117,-13.083383,3.986657,-5.897346,-13.151123,4.004694,-5.914005,-12.900999,4.000805,-6.610597, + -12.968740,4.018842,-6.627256,-13.296038,3.385948,-5.994645,-13.228297,3.367911,-5.977985,-13.108047,3.450124,-6.676532, + -13.040306,3.432087,-6.659873,-12.991070,3.718256,-6.584168,-13.103449,3.662721,-5.990481,-12.936899,3.948654,-6.553807, + -12.918929,3.943999,-6.550379,-12.967181,3.712069,-6.579611,-13.146775,3.674085,-5.999819,-13.084826,3.938209,-5.953182, + -13.066856,3.933555,-5.949754,-12.952766,3.276355,-8.060369,-13.007850,3.032141,-8.101357,-12.989975,3.027453,-8.097500, + -12.929008,3.270170,-8.055181,-12.810447,3.330475,-8.651803,-12.864574,3.073702,-8.659378,-12.846701,3.069014,-8.655519, + -12.786688,3.324291,-8.646615,-12.889739,3.588149,-7.965843,-12.957479,3.606185,-7.982503,-12.707355,3.602297,-8.679094, + -12.775097,3.620334,-8.695753,-13.102394,2.987439,-8.063143,-13.034654,2.969403,-8.046483,-12.914404,3.051615,-8.745029, + -12.846663,3.033579,-8.728370,-12.797426,3.319748,-8.652665,-12.909805,3.264213,-8.058979,-12.743256,3.550146,-8.622305, + -12.725286,3.545491,-8.618876,-12.773538,3.313560,-8.648108,-12.953132,3.275576,-8.068316,-12.891183,3.539701,-8.021679, + -12.873213,3.535046,-8.018251,-16.235031,4.569775,-8.834980,-16.175167,4.815228,-8.812082,-16.192776,4.819985,-8.816950, + -16.258463,4.576044,-8.841405,-16.066231,4.596284,-9.421309,-16.024054,4.849961,-9.368498,-16.041660,4.854718,-9.373365, + -16.089663,4.602554,-9.427734,-16.325853,4.250778,-8.824280,-16.258112,4.232741,-8.807620,-16.133362,4.333783,-9.530147, + -16.065620,4.315746,-9.513487,-16.113199,4.851487,-8.726979,-16.180941,4.869524,-8.743639,-15.939324,4.881093,-9.414962, + -16.007065,4.899129,-9.431622,-16.077497,4.607467,-9.427088,-16.273502,4.583080,-8.853359,-16.131804,4.377034,-9.456931, + -16.149282,4.381816,-9.462220,-16.100733,4.613824,-9.434119,-16.230831,4.571548,-8.841546,-16.298773,4.305870,-8.865493, + -16.316252,4.310652,-8.870783,-12.673786,2.555598,-9.608602,-12.648397,2.663997,-9.594474,-12.556817,2.639613,-9.571952, + -12.582206,2.531213,-9.586080,-13.265472,2.322248,-7.579588,-13.240084,2.430647,-7.565460,-13.148503,2.406262,-7.542937, + -13.173892,2.297863,-7.557065,-16.199993,3.494498,-10.475810,-16.174604,3.602898,-10.461682,-16.083025,3.578513,-10.439160, + -16.108414,3.470113,-10.453287,-16.782248,3.301418,-8.441547,-16.756859,3.409818,-8.427420,-16.665279,3.385433,-8.404898, + -16.690668,3.277034,-8.419025,-2.791332,2.747170,-3.386544,-2.843736,2.499854,-3.407599,-2.809064,2.751357,-3.391484, + -2.867332,2.505364,-3.414120,-2.674533,2.526788,-3.993793,-2.640117,2.782029,-3.942926,-2.657850,2.786216,-3.947865, + -2.698128,2.532299,-4.000314,-2.924948,2.178363,-3.394531,-2.856732,2.162505,-3.377597,-2.733502,2.261532,-4.100663, + -2.665286,2.245675,-4.083728,-2.730667,2.785950,-3.301614,-2.798883,2.801808,-3.318548,-2.556262,2.815328,-3.989472, + -2.624479,2.831185,-4.006407,-2.686118,2.537580,-3.999682,-2.882551,2.511849,-3.426159,-2.733405,2.305389,-4.027792, + -2.751007,2.309601,-4.033154,-2.709518,2.543180,-4.006810,-2.839577,2.501700,-3.414172,-2.899447,2.233917,-3.436130, + -2.917050,2.238129,-3.441492,1.322965,1.681670,-3.902366,-2.464617,2.562152,-4.842618,-2.445446,2.656957,-4.831064, + 1.342135,1.776474,-3.890811,1.297481,1.675065,-3.805894,-2.490101,2.555548,-4.746146,-2.470931,2.650352,-4.734591, + 1.316651,1.769869,-3.794339,1.514669,2.629712,-3.786822,-2.272913,3.510195,-4.727074,-2.253742,3.604999,-4.715520, + 1.533839,2.724516,-3.775267,1.489185,2.623107,-3.690350,-2.298397,3.503590,-4.630602,-2.279227,3.598394,-4.619048, + 1.508355,2.717912,-3.678795,1.698929,3.540944,-3.675764,-2.088652,4.421427,-4.616016,-2.069482,4.516231,-4.604462, + 1.718100,3.635748,-3.664210,1.673445,3.534339,-3.579292,-2.114137,4.414822,-4.519544,-2.094966,4.509626,-4.507990, + 1.692616,3.629144,-3.567738,1.137387,0.763922,-4.014217,-2.650195,1.644405,-4.954470,-2.631024,1.739209,-4.942916, + 1.156557,0.858726,-4.002663,1.111903,0.757318,-3.917745,-2.675679,1.637801,-4.857998,-2.656508,1.732605,-4.846443, + 1.131073,0.852122,-3.906191,0.933972,-0.242037,-4.136820,-2.853610,0.638445,-5.077073,-2.828855,0.760871,-5.062152, + 0.958728,-0.119611,-4.121900,0.908488,-0.248642,-4.040348,-2.879094,0.631841,-4.980600,-2.854339,0.754267,-4.965680, + 0.933244,-0.126215,-4.025427,1.702097,3.620863,-3.705167,0.932921,-0.182996,-4.168767,0.840698,-0.161557,-4.191661, + 1.609874,3.642302,-3.728061,1.676613,3.614259,-3.608695,0.907437,-0.189600,-4.072294,0.815214,-0.168161,-4.095189, + 1.584390,3.635697,-3.631589,-1.957493,4.471592,-4.613646,-2.726669,0.667733,-5.077246,-2.818892,0.689172,-5.100140, + -2.049716,4.493031,-4.636540,-1.982977,4.464988,-4.517174,-2.752153,0.661129,-4.980773,-2.844376,0.682567,-5.003667, + -2.075200,4.486426,-4.540068,-1.415114,4.345508,-4.479002,-2.184290,0.541649,-4.942603,-2.276513,0.563088,-4.965497, + -1.507337,4.366946,-4.501897,-1.440598,4.338903,-4.382530,-2.209774,0.535044,-4.846130,-2.301997,0.556483,-4.869024, + -1.532821,4.360342,-4.405424,0.362010,0.419915,-6.310713,-1.670521,0.892409,-6.815281,-0.965558,4.267783,-6.397978, + 1.050166,3.823084,-5.895947,-0.165311,0.254547,-4.341383,-2.197842,0.727040,-4.845951,-1.497435,4.190800,-4.423800, + 0.535097,3.718306,-3.919233,0.891303,-0.165613,-4.091032,1.652908,3.600789,-3.631996,0.034272,-0.467532,-0.191834, + -3.960347,0.461080,-1.183483,-3.191298,4.264292,-0.719961,0.803321,3.335680,0.271688,0.917027,1.528237,-1.969931, + -3.066499,2.450236,-2.925731,-3.047328,2.545040,-2.914176,0.936197,1.623041,-1.958377,0.888020,1.520719,-1.860124, + -3.091983,2.443631,-2.829258,-3.072813,2.538435,-2.817704,0.907190,1.615523,-1.848569,1.108731,2.476279,-1.854387, + -2.874795,3.398278,-2.810187,-2.855624,3.493083,-2.798632,1.127901,2.571083,-1.842833,1.079724,2.468761,-1.744580, + -2.900279,3.391674,-2.713714,-2.881109,3.486478,-2.702160,1.098894,2.563566,-1.733026,1.319338,3.343798,-1.739362, + -2.736641,4.282640,-2.713148,-2.717471,4.377444,-2.701594,1.338509,3.438602,-1.727808,1.277785,3.333029,-1.582059, + -2.774672,4.272784,-2.569180,-2.755501,4.367588,-2.557626,1.296955,3.427833,-1.570505,0.725323,0.580194,-2.085475, + -3.258203,1.502193,-3.041275,-3.239032,1.596997,-3.029721,0.744493,0.674998,-2.073921,0.696316,0.572677,-1.975668, + -3.283687,1.495589,-2.944802,-3.264516,1.590393,-2.933248,0.715486,0.667481,-1.964113,0.589941,-0.343649,-2.174142, + -3.476656,0.581787,-3.161993,-3.454179,0.692947,-3.148446,0.609112,-0.248845,-2.162588,0.533836,-0.348902,-2.037958, + -3.512016,0.572623,-3.028137,-3.489538,0.683783,-3.014590,0.553006,-0.254097,-2.026403,1.292066,3.421243,-1.697953, + 0.537594,-0.309904,-2.152693,0.374907,-0.275197,-2.167544,1.129380,3.455949,-1.712806,1.293478,3.407303,-1.585920, + 0.539004,-0.323844,-2.040658,0.365336,-0.283472,-2.083771,1.119809,3.447675,-1.629033,-2.546874,4.329129,-2.624150, + -3.308522,0.562497,-3.083213,-3.479278,0.601205,-3.117510,-2.717629,4.367837,-2.658449,-2.583996,4.326472,-2.540763, + -3.345644,0.559840,-2.999825,-3.486607,0.592188,-3.031362,-2.724958,4.358820,-2.572300,0.564793,1.448377,0.090953, + -3.716985,2.443744,-0.971981,-3.736155,2.348939,-0.983535,0.545622,1.353573,0.079399,0.590691,1.455089,-0.007087, + -3.703980,2.447114,-1.021212,-3.723150,2.352310,-1.032766,0.571521,1.360285,-0.018641,0.751316,2.391653,0.222903, + -3.530462,3.387019,-0.840031,-3.546836,3.293466,-0.861678,0.734942,2.298100,0.201257,0.773100,2.403427,0.138739, + -3.513047,3.397855,-0.900035,-3.529421,3.304302,-0.921682,0.756726,2.309874,0.117093,0.942035,3.253028,0.261257, + -3.339742,4.248394,-0.801678,-3.320572,4.343199,-0.790123,0.961205,3.347833,0.272811,0.916551,3.246424,0.357729, + -3.365227,4.241790,-0.705205,-3.346056,4.336595,-0.693651,0.935721,3.341228,0.369284,0.366036,0.407009,-0.083573, + -3.915741,1.402375,-1.146508,-3.895543,1.497366,-1.138921,0.386235,0.502000,-0.075986,0.344444,0.404817,0.001354, + -3.937334,1.400184,-1.061581,-3.917135,1.495174,-1.053994,0.364643,0.499808,0.008940,0.175219,-0.539141,-0.200920, + -4.106558,0.456225,-1.263854,-4.087388,0.551029,-1.252300,0.194390,-0.444337,-0.189365,0.149735,-0.545746,-0.104447, + -4.132042,0.449620,-1.167381,-4.112872,0.544425,-1.155827,0.168905,-0.450942,-0.092893,0.838115,3.349213,0.276077, + 0.061496,-0.491457,-0.192009,0.012757,-0.480127,-0.204109,0.789376,3.360542,0.263977,0.828592,3.339257,0.373563, + 0.051973,-0.501413,-0.094523,-0.012727,-0.486731,-0.107636,0.763892,3.353938,0.360450,-3.179772,4.283233,-0.721348, + -3.956391,0.442564,-1.189434,-4.055864,0.465688,-1.214128,-3.279246,4.306357,-0.746042,-3.205256,4.276628,-0.624876, + -3.981875,0.435959,-1.092962,-4.088176,0.458514,-1.101659,-3.311557,4.299183,-0.633573,-3.259952,0.172974,0.018376, + -2.808317,0.694422,-5.009448,-2.490904,3.976187,0.481898,-2.046712,4.460824,-4.550412,0.611358,3.324910,0.277511, + -3.159103,4.197556,-0.660604,-3.141037,4.286901,-0.649715,0.627848,3.406461,0.287450,0.895786,3.258768,0.348302, + -3.358631,4.243684,-0.708044,-3.340565,4.333029,-0.697155,0.912276,3.340319,0.358241,-2.527116,4.039317,0.589801, + -2.451503,4.040421,0.455287,-2.507946,4.134121,0.601356,-2.432333,4.135226,0.466842,-0.160749,-0.467067,-0.188582, + -3.927233,0.409134,-1.124669,-3.909598,0.496343,-1.114040,-0.143603,-0.382273,-0.178248,0.134986,-0.535838,-0.114978, + -4.121992,0.454159,-1.170974,-4.104357,0.541368,-1.160345,0.152133,-0.451044,-0.104643,-3.334276,0.047630,0.103309, + -3.253629,0.073627,-0.028171,-3.310072,0.167327,0.117897,-3.234459,0.168432,-0.016617,-3.304708,0.030956,0.038435, + -3.337982,0.029508,0.105525,-2.498754,4.196838,0.627319,0.167452,-0.562325,-0.133002,0.960511,3.359623,0.344991, + 0.172472,-0.568115,-0.093830,0.965530,3.353834,0.384163,-4.220637,0.449927,-1.158105,-3.427579,4.371876,-0.680112, + -4.122636,0.434086,-1.190728,-3.329577,4.356035,-0.712735,-2.463145,4.186432,0.539719,0.519349,-0.291565,-2.121580, + -2.641605,4.309259,-2.631350,1.263717,3.401406,-1.661869,-3.385972,0.616287,-3.091060,0.891303,-0.165613,-4.091032, + 1.652908,3.600789,-3.631996,-2.808317,0.694422,-5.009448,-2.046712,4.460824,-4.550412,0.385240,-0.261882,-2.142627, + -2.570012,4.291124,-2.601333,1.129608,3.431090,-1.682917,-3.314380,0.598152,-3.061043,1.256921,3.330705,-1.627906, + 1.180756,3.348411,-1.646813,1.199926,3.443215,-1.635259,1.276091,3.425509,-1.616351,0.828837,3.254021,0.341394, + 0.752672,3.271727,0.322487,0.771842,3.366531,0.334041,0.848007,3.348825,0.352949,0.992429,2.022700,-1.787321, + 0.916264,2.040405,-1.806228,0.935434,2.135210,-1.794674,1.011599,2.117504,-1.775766,0.525687,1.905141,0.109103, + 0.449522,1.922847,0.090196,0.468692,2.017651,0.101750,0.544857,1.999945,0.120657,0.783301,0.988488,-1.913367, + 0.707136,1.006193,-1.932274,0.726306,1.100997,-1.920720,0.802471,1.083292,-1.901812,0.309207,0.834574,-0.021374, + 0.233043,0.852280,-0.040281,0.252213,0.947084,-0.028727,0.328378,0.929379,-0.009819,0.515653,-0.335123,-2.074684, + 0.439488,-0.317418,-2.093591,0.458659,-0.222613,-2.082037,0.534823,-0.240319,-2.063129,0.066235,-0.507836,-0.109369, + -0.009930,-0.490130,-0.128276,0.006406,-0.409344,-0.118430,0.082571,-0.427050,-0.099523,1.654668,3.536139,-3.662430, + 1.578809,3.553919,-3.682460,1.597979,3.648724,-3.670906,1.673838,3.630943,-3.650875,1.162588,3.357352,-1.690029, + 1.086728,3.375133,-1.710059,1.105899,3.469937,-1.698505,1.181758,3.452156,-1.678474,1.404399,2.298473,-3.813272, + 1.328540,2.316254,-3.833302,1.347710,2.411058,-3.821748,1.423570,2.393278,-3.801717,0.915903,2.137410,-1.838711, + 0.840044,2.155190,-1.858742,0.859214,2.249995,-1.847187,0.935073,2.232214,-1.827157,1.157746,1.078688,-3.961935, + 1.081887,1.096469,-3.981966,1.101057,1.191273,-3.970411,1.176917,1.173492,-3.950380,0.676601,0.953979,-1.982943, + 0.600742,0.971760,-2.002974,0.619912,1.066564,-1.991419,0.695772,1.048783,-1.971389,0.898697,-0.202402,-4.118070, + 0.822837,-0.184621,-4.138101,0.842008,-0.089817,-4.126546,0.919185,-0.101082,-4.105721,0.421320,-0.308477,-2.136807, + 0.345461,-0.290696,-2.156837,0.364631,-0.195892,-2.145283,0.441808,-0.207156,-2.124458,-1.075283,3.969446,-2.200254, + -1.089463,3.899321,-2.208801,-1.181686,3.920759,-2.231695,-1.167506,3.990885,-2.223148,-1.623855,3.921215,-0.289902, + -1.638035,3.851089,-0.298448,-1.730258,3.872528,-0.321342,-1.716078,3.942653,-0.312796,-0.076225,3.740713,-1.981063, + -0.090405,3.670588,-1.989609,-0.182628,3.692026,-2.012503,-0.168448,3.762152,-2.003957,-0.525857,3.665969,-0.017328, + -0.540038,3.595843,-0.025875,-0.632261,3.617282,-0.048769,-0.618080,3.687407,-0.040222,-0.574335,4.139154,-4.217108, + -0.590091,4.060992,-4.227807,-0.685388,4.080758,-4.231875,-0.669633,4.158920,-4.221176,-1.065483,3.972945,-2.236454, + -1.081017,3.894734,-2.247120,-1.173239,3.916173,-2.270015,-1.157706,3.994384,-2.259348,0.500445,3.888442,-3.943211, + 0.484911,3.810231,-3.953878,0.392688,3.831669,-3.976772,0.408222,3.909880,-3.966105,-0.073570,3.742360,-1.990215, + -0.089103,3.664149,-2.000882,-0.181326,3.685587,-2.023776,-0.165793,3.763799,-2.013109,-0.931518,0.021983,-2.432522, + -0.917338,0.092108,-2.423975,-0.825115,0.070670,-2.401081,-0.839295,0.000544,-2.409628,-1.394967,-0.154567,-0.508468, + -1.380787,-0.084442,-0.499921,-1.288564,-0.105881,-0.477027,-1.302744,-0.176006,-0.485574,-1.909734,0.256119,-2.730613, + -1.895554,0.326245,-2.722066,-1.803331,0.304806,-2.699172,-1.817511,0.234681,-2.707718,-2.487284,0.102152,-0.802546, + -2.473104,0.172277,-0.793999,-2.380880,0.150839,-0.771105,-2.395061,0.080713,-0.779652,-0.357541,0.122917,-4.427647, + -0.341413,0.201283,-4.419230,-0.249190,0.179844,-4.396337,-0.265318,0.101478,-4.404753,-0.922128,0.023457,-2.468969, + -0.906000,0.101823,-2.460552,-0.813777,0.080384,-2.437658,-0.829905,0.002019,-2.446075,-1.435395,0.371958,-4.682718, + -1.419489,0.450372,-4.674334,-1.324192,0.430606,-4.670265,-1.340098,0.352192,-4.678650,-1.900344,0.257594,-2.767059, + -1.884216,0.335959,-2.758643,-1.791993,0.314520,-2.735749,-1.808121,0.236155,-2.744165,-3.433024,0.671872,-3.048830, + -3.356860,0.654166,-3.029922,-3.376030,0.559362,-3.041477,-3.452195,0.577067,-3.060385,-3.999646,0.524784,-1.220743, + -3.923481,0.507078,-1.201836,-3.942651,0.412274,-1.213390,-4.018816,0.429980,-1.232298,-3.161272,2.015776,-2.885039, + -3.085107,1.998070,-2.866132,-3.104277,1.903266,-2.877686,-3.180442,1.920971,-2.896594,-3.734693,1.884584,-1.014674, + -3.658528,1.866878,-0.995767,-3.677699,1.772074,-1.007321,-3.753863,1.789780,-1.026229,-2.952142,3.049987,-2.758993, + -2.875977,3.032282,-2.740085,-2.895147,2.937478,-2.751640,-2.971312,2.955184,-2.770547,-3.518212,2.955150,-0.884197, + -3.442047,2.937444,-0.865290,-3.461218,2.842640,-0.876844,-3.537383,2.860346,-0.895751,-2.691751,4.337699,-2.602051, + -2.615587,4.319993,-2.583143,-2.634757,4.225189,-2.594698,-2.710922,4.242895,-2.613605,-3.245601,4.297704,-0.725126, + -3.169436,4.279998,-0.706219,-3.188607,4.185194,-0.717773,-3.264771,4.202900,-0.736681,-2.809518,0.748693,-5.032522, + -2.733064,0.731066,-5.014742,-2.752234,0.636262,-5.026296,-2.828689,0.653889,-5.044077,-3.357028,0.658922,-3.068670, + -3.280574,0.641295,-3.050889,-3.299744,0.546491,-3.062443,-3.376198,0.564118,-3.080224,-2.546363,2.050077,-4.873914, + -2.469909,2.032450,-4.856133,-2.489079,1.937646,-4.867688,-2.565534,1.955273,-4.885468,-3.097641,1.941671,-2.912332, + -3.021187,1.924044,-2.894552,-3.040357,1.829240,-2.906106,-3.116811,1.846867,-2.923887,-2.299709,3.269862,-4.725250, + -2.223255,3.252235,-4.707470,-2.242425,3.157431,-4.719024,-2.318879,3.175057,-4.736805,-2.858338,3.125102,-2.768100, + -2.781884,3.107475,-2.750319,-2.801054,3.012671,-2.761873,-2.877508,3.030297,-2.779654,-2.053542,4.487232,-4.576881, + -1.977088,4.469605,-4.559101,-1.996258,4.374802,-4.570655,-2.074030,4.385912,-4.589230,-2.615755,4.324749,-2.621890, + -2.539301,4.307122,-2.604110,-2.558471,4.212318,-2.615664,-2.636243,4.223429,-2.634239,2.194483,3.696496,-5.554935, + 2.118624,3.714277,-5.574965,2.137794,3.809081,-5.563411,2.213654,3.791300,-5.543380,1.651766,3.536728,-3.662456, + 1.575907,3.554509,-3.682487,1.595077,3.649313,-3.670932,1.670937,3.631533,-3.650902,1.941672,2.446257,-5.707309, + 1.865812,2.464038,-5.727340,1.884983,2.558842,-5.715786,1.960842,2.541061,-5.695755,1.401498,2.299063,-3.813298, + 1.325639,2.316844,-3.833329,1.344809,2.411648,-3.821774,1.420668,2.393867,-3.801744,1.690118,1.202236,-5.858926, + 1.614258,1.220016,-5.878957,1.633429,1.314821,-5.867403,1.709288,1.297040,-5.847372,1.154845,1.079278,-3.961961, + 1.078986,1.097059,-3.981992,1.098156,1.191863,-3.970438,1.174015,1.174082,-3.950407,1.438156,-0.043801,-6.010789, + 1.362297,-0.026020,-6.030819,1.386368,0.093020,-6.016312,1.462228,0.075239,-5.996281,0.902883,-0.166759,-4.113824, + 0.827024,-0.148978,-4.133855,0.846194,-0.054173,-4.122300,0.922054,-0.071954,-4.102269,0.631298,3.869787,-3.970989, + -0.137878,0.065928,-4.434588,-0.230101,0.087367,-4.457483,0.539075,3.891226,-3.993883,0.605814,3.863183,-3.874516, + -0.163362,0.059324,-4.338116,-0.255585,0.080763,-4.361010,0.513591,3.884621,-3.897410,-0.542418,4.144040,-4.273880, + -1.311594,0.340181,-4.737480,-1.406891,0.359947,-4.741548,-0.632917,4.163480,-4.283234,-0.548889,4.133258,-4.174673, + -1.318065,0.329399,-4.638274,-1.413363,0.349165,-4.642342,-0.639388,4.152698,-4.184028,1.544012,2.337661,-4.416746, + 1.502645,2.348092,-4.427814,1.496553,2.400222,-4.354457,1.537920,2.389791,-4.343389,1.266228,1.710650,-3.919637, + 1.224886,1.721205,-3.930690,1.220888,1.783692,-3.856070,1.262230,1.773138,-3.845016,1.310710,1.157127,-4.582433, + 1.269368,1.167682,-4.593486,1.265370,1.230169,-4.518866,1.306712,1.219615,-4.507812,1.031714,0.550895,-4.060984, + 0.990372,0.561449,-4.072037,0.986374,0.623936,-3.997417,1.027716,0.613382,-3.986363,1.017802,-0.035421,-4.741450, + 1.059564,-0.045866,-4.731988,1.028455,-0.117452,-4.673708,0.986693,-0.107007,-4.683170,0.994784,0.544241,-4.071195, + 1.036546,0.533796,-4.061732,1.005437,0.462210,-4.003453,0.963675,0.472655,-4.012915,1.265032,1.208050,-4.572939, + 1.306794,1.197604,-4.563478,1.275685,1.126018,-4.505198,1.233923,1.136464,-4.514660,1.250375,1.808235,-3.917144, + 1.292137,1.797790,-3.907682,1.261028,1.726204,-3.849402,1.219266,1.736649,-3.858864,1.772482,3.607678,-4.312496, + 1.782144,3.650433,-4.307871,1.805297,3.634027,-4.211669,1.795635,3.591272,-4.216293,1.011576,3.713532,-3.849788, + 1.021238,3.756287,-3.845163,1.068896,3.736578,-3.762525,1.059234,3.693824,-3.767149,0.996829,-0.109428,-4.752057, + 1.003515,-0.066036,-4.748175,1.051971,-0.080942,-4.664996,1.045286,-0.124336,-4.668878,0.252756,-0.049583,-4.307862, + 0.259442,-0.006190,-4.303981,0.307898,-0.021097,-4.220802,0.301212,-0.064490,-4.224685,-2.161177,4.051119,-0.438882, + -2.175357,3.980994,-0.447429,-2.267580,4.002432,-0.470323,-2.253400,4.072558,-0.461776,-2.384975,4.102386,0.510642, + -2.399155,4.032260,0.502095,-2.491378,4.053699,0.479201,-2.477198,4.123824,0.487748,-2.933434,0.201930,-0.906399, + -2.919254,0.272055,-0.897852,-2.827031,0.250616,-0.874959,-2.841211,0.180491,-0.883505,-3.289802,0.105215,-0.002026, + -3.275622,0.175341,0.006521,-3.183399,0.153902,0.029415,-3.197579,0.083776,0.020868,-0.886509,3.755579,-0.128821, + -0.900689,3.685454,-0.137367,-0.992912,3.706892,-0.160262,-0.978732,3.777018,-0.151715,-0.956437,3.820764,0.451207, + -0.970617,3.750639,0.442660,-1.062840,3.772078,0.419766,-1.048660,3.842203,0.428313,-1.756804,-0.070820,-0.620676, + -1.742624,-0.000695,-0.612129,-1.650401,-0.022133,-0.589235,-1.664581,-0.092259,-0.597782,-1.849456,-0.118011,-0.054344, + -1.835276,-0.047886,-0.045797,-1.743053,-0.069325,-0.022903,-1.757233,-0.139450,-0.031450,-0.472548,3.807685,-1.444759, + -0.487320,3.737442,-1.451030,-0.609867,3.754702,-1.355684,-0.595094,3.824945,-1.349414,-0.646548,3.770383,-0.651632, + -0.661321,3.700140,-0.657903,-0.723220,3.725757,-0.799036,-0.708447,3.796000,-0.792766,-1.007813,3.920888,-1.451870, + -1.022586,3.850645,-1.458141,-1.084485,3.876262,-1.599274,-1.069713,3.946505,-1.593003,-1.170673,3.903452,-0.907511, + -1.185445,3.833209,-0.913782,-1.307992,3.850469,-0.818437,-1.293219,3.920712,-0.812166,-0.603257,3.785517,-1.091777, + -0.610103,3.752965,-1.094683,-0.625821,3.751416,-1.040303,-0.618976,3.783968,-1.037397,-1.137741,3.904563,-1.166179, + -1.144587,3.872012,-1.169085,-1.132201,3.874335,-1.224292,-1.125355,3.906887,-1.221385,-0.922390,3.830650,-0.816758, + -0.929235,3.798098,-0.819664,-0.982321,3.810624,-0.834917,-0.975475,3.843175,-0.832010,-0.819748,3.864632,-1.439225, + -0.826594,3.832081,-1.442131,-0.772508,3.819693,-1.430779,-0.765662,3.852244,-1.427873,-0.683609,3.764346,-0.757863, + -1.218589,3.888896,-0.892745,-1.041641,3.905420,-1.494691,-0.555166,3.792516,-1.375999,-2.344194,4.050665,-3.880906, + -2.308658,3.965641,-3.797095,-2.376874,3.981499,-3.814030,-2.517502,4.027247,-3.191886,-2.442510,3.952449,-3.257441, + -2.510726,3.968307,-3.274375,-2.469292,3.524462,-3.869732,-2.401076,3.508604,-3.852798,-2.462516,3.465521,-3.952221, + -2.614859,3.468159,-3.323254,-2.546643,3.452301,-3.306319,-2.579323,3.383135,-3.239444,-2.647539,3.398993,-3.256378, + -3.005424,1.536679,-3.558656,-2.937208,1.520821,-3.541721,-3.012200,1.595619,-3.476167,-2.870686,1.539431,-4.111660, + -2.802469,1.523573,-4.094726,-2.838006,1.608597,-4.178536,-2.546546,3.765777,-3.267948,-2.514934,3.758428,-3.260101, + -2.536053,3.666407,-3.261198,-2.567665,3.673756,-3.269046,-2.407820,3.715182,-3.874152,-2.376208,3.707833,-3.866305, + -2.364555,3.763052,-3.861535,-2.396167,3.770400,-3.869382,-2.488909,3.999060,-3.236752,-2.607756,3.423739,-3.296753, + -2.444245,3.483294,-3.899650,-2.336087,4.015770,-3.836713,0.860686,2.715765,-6.052852,0.990579,3.361116,-5.971772, + 0.553502,3.270814,-4.295675,0.410086,2.564543,-4.379325,0.475690,2.707271,-4.509941,0.565201,3.148118,-4.457695, + 0.683696,3.167341,-4.917025,0.599863,2.750932,-4.969258,0.582545,2.754957,-4.973557,0.666378,3.171367,-4.921324, + 0.547883,3.152143,-4.461995,0.458372,2.711297,-4.514240,0.628005,2.940616,-4.948838,0.604086,2.946176,-4.954776, + 0.612126,2.987756,-4.948225,0.636045,2.982195,-4.942287,0.512648,2.938733,-4.485912,0.488728,2.944293,-4.491850, + 0.479912,2.902513,-4.495460,0.503831,2.896952,-4.489522,0.616078,3.150565,-4.712257,0.592159,3.156125,-4.718195, + 0.580984,3.152000,-4.677038,0.604903,3.146440,-4.671101,0.523310,2.742932,-4.720278,0.499390,2.748492,-4.726216, + 0.510043,2.750024,-4.767690,0.533962,2.744464,-4.761752,0.403874,1.290543,-5.509493,0.335657,1.306401,-5.526428, + 0.323702,1.393138,-5.397045,0.391918,1.377280,-5.380111,0.192790,1.231499,-4.727304,0.124574,1.247357,-4.744238, + 0.174870,1.350228,-4.850513,0.243086,1.334370,-4.833578,0.484324,1.834265,-5.324415,0.416108,1.850123,-5.341350, + 0.466404,1.952994,-5.447624,0.534620,1.937136,-5.430689,0.339167,1.809532,-4.775667,0.270951,1.825390,-4.792602, + 0.258996,1.912127,-4.663219,0.327212,1.896269,-4.646285,0.303301,1.327644,-5.144885,0.271689,1.334993,-5.152732, + 0.257611,1.332968,-5.097920,0.289223,1.325619,-5.090073,0.397058,1.858904,-5.025078,0.365446,1.866253,-5.032926, + 0.380216,1.871704,-5.087320,0.411828,1.864355,-5.079473,0.266718,1.545191,-4.783148,0.235106,1.552540,-4.790996, + 0.246758,1.607758,-4.786226,0.278370,1.600409,-4.778378,0.438216,1.641835,-5.383485,0.406604,1.649184,-5.391333, + 0.393857,1.583742,-5.401268,0.425470,1.576393,-5.393420,0.206639,1.299826,-4.815817,0.318461,1.850426,-4.750671, + 0.475855,1.879729,-5.357255,0.368735,1.347572,-5.424073,1.079889,1.371523,-3.169324,1.011673,1.387381,-3.186259, + 1.017400,1.478701,-3.123816,1.085616,1.462843,-3.106881,0.895730,1.294768,-2.512177,0.827514,1.310626,-2.529111, + 0.860127,1.408914,-2.568446,0.928343,1.393056,-2.551512,1.169581,1.892952,-3.042349,1.101364,1.908810,-3.059283, + 1.133977,2.007098,-3.098618,1.202194,1.991240,-3.081683,1.024424,1.868218,-2.493601,0.956208,1.884076,-2.510535, + 0.961935,1.975397,-2.448092,1.030151,1.959539,-2.431157,0.988558,1.386331,-2.862818,0.956946,1.393679,-2.870666, + 0.942868,1.391654,-2.815854,0.974480,1.384306,-2.808006,1.082315,1.917591,-2.743012,1.050702,1.924940,-2.750859, + 1.065472,1.930391,-2.805254,1.097085,1.923042,-2.797406,0.951975,1.603878,-2.501081,0.920363,1.611227,-2.508929, + 0.932015,1.666445,-2.504159,0.963627,1.659096,-2.496312,1.123473,1.700521,-3.101418,1.091861,1.707870,-3.109266, + 1.081235,1.652918,-3.117923,1.112847,1.645569,-3.110075,0.891896,1.358512,-2.533750,1.003718,1.909113,-2.468605, + 1.161112,1.938416,-3.075189,1.062434,1.433134,-3.150843,0.831597,0.158504,-3.305050,0.763381,0.174362,-3.321985, + 0.769108,0.265682,-3.259542,0.837325,0.249824,-3.242607,0.653429,0.096507,-2.658216,0.585213,0.112365,-2.675151, + 0.617826,0.210653,-2.714486,0.686042,0.194796,-2.697551,0.928693,0.701679,-3.187537,0.860477,0.717536,-3.204471, + 0.893090,0.815824,-3.243806,0.961306,0.799967,-3.226871,0.788250,0.700252,-2.635948,0.720033,0.716110,-2.652883, + 0.725761,0.807431,-2.590439,0.793977,0.791573,-2.573505,0.749933,0.206247,-3.006643,0.718320,0.213596,-3.014490, + 0.704243,0.211571,-2.959678,0.735855,0.204222,-2.951831,0.843690,0.737507,-2.886836,0.812077,0.744856,-2.894684, + 0.826847,0.750307,-2.949078,0.858460,0.742959,-2.941230,0.713350,0.423794,-2.644906,0.681738,0.431143,-2.652754, + 0.693390,0.486361,-2.647984,0.725002,0.479012,-2.640136,0.884848,0.520438,-3.245243,0.853235,0.527786,-3.253090, + 0.842610,0.472834,-3.261747,0.874222,0.465485,-3.253900,0.649595,0.160251,-2.679790,0.767543,0.741147,-2.610952, + 0.920224,0.747143,-3.220377,0.814142,0.220116,-3.286569,0.732892,1.234107,-1.294413,0.664676,1.249965,-1.311348, + 0.658931,1.306325,-1.235430,0.727147,1.290467,-1.218495,0.545431,1.169702,-0.612401,0.477215,1.185560,-0.629336, + 0.507649,1.251296,-0.690374,0.575865,1.235439,-0.673440,0.819554,1.747452,-1.162800,0.751337,1.763310,-1.179734, + 0.781771,1.829046,-1.240771,0.849987,1.813188,-1.223837,0.676847,1.734836,-0.612575,0.608631,1.750694,-0.629509, + 0.602886,1.807054,-0.553591,0.671102,1.791196,-0.536657,0.636080,1.228713,-0.984746,0.604468,1.236062,-0.992594, + 0.590390,1.234037,-0.937782,0.622002,1.226688,-0.929934,0.729837,1.759973,-0.864940,0.698225,1.767322,-0.872787, + 0.712995,1.772773,-0.927181,0.744607,1.765424,-0.919334,0.599497,1.446260,-0.623010,0.567885,1.453609,-0.630857, + 0.579537,1.508827,-0.626088,0.611149,1.501478,-0.618240,0.770995,1.542904,-1.223346,0.739383,1.550252,-1.231194, + 0.728757,1.495300,-1.239851,0.760370,1.487952,-1.232003,0.539418,1.200894,-0.655678,0.656141,1.775730,-0.587580, + 0.811085,1.792916,-1.195640,0.703965,1.260758,-1.262457,0.490640,0.036083,-1.440424,0.422423,0.051941,-1.457358, + 0.416631,0.108064,-1.381469,0.484847,0.092206,-1.364535,0.300728,-0.040439,-0.759890,0.232512,-0.024582,-0.776824, + 0.262898,0.040918,-0.837891,0.331114,0.025060,-0.820956,0.580929,0.567368,-1.306624,0.512712,0.583226,-1.323558, + 0.543098,0.648726,-1.384624,0.611314,0.632868,-1.367690,0.436997,0.548693,-0.757138,0.368781,0.564551,-0.774072, + 0.362988,0.620675,-0.698183,0.431204,0.604817,-0.681249,0.397455,0.048629,-1.128571,0.365843,0.055978,-1.136418, + 0.351765,0.053953,-1.081606,0.383377,0.046604,-1.073759,0.491212,0.579889,-1.008764,0.459600,0.587238,-1.016612, + 0.474370,0.592689,-1.071006,0.505982,0.585341,-1.063158,0.360872,0.266176,-0.766834,0.329260,0.273525,-0.774682, + 0.340912,0.328743,-0.769912,0.372524,0.321394,-0.762064,0.532369,0.362820,-1.367171,0.500758,0.370168,-1.375018, + 0.490132,0.315216,-1.383676,0.521745,0.307868,-1.375828,0.294667,-0.009484,-0.803195,0.416291,0.589588,-0.732142, + 0.572460,0.612832,-1.339465,0.461664,0.062498,-1.408497,0.967026,2.391981,-1.153296,0.898810,2.407838,-1.170230, + 0.893875,2.468204,-1.093824,0.962091,2.452346,-1.076890,0.779565,2.327576,-0.471284,0.711349,2.343434,-0.488219, + 0.742592,2.413175,-0.548769,0.810809,2.397317,-0.531834,1.057817,2.895264,-1.047738,0.989600,2.911121,-1.064673, + 1.020843,2.980863,-1.125222,1.089060,2.965005,-1.108287,0.910566,2.890656,-0.471708,0.842350,2.906514,-0.488642, + 0.837415,2.966879,-0.412236,0.905631,2.951021,-0.395301,0.874699,2.408769,-0.840925,0.843087,2.416118,-0.848773, + 0.829009,2.414092,-0.793961,0.860622,2.406744,-0.786113,0.968456,2.940029,-0.721118,0.936844,2.947378,-0.728966, + 0.951614,2.952828,-0.783360,0.983226,2.945480,-0.775513,0.838117,2.626316,-0.479189,0.806505,2.633665,-0.487037, + 0.818157,2.688883,-0.482266,0.849769,2.681534,-0.474419,1.009614,2.722960,-1.079526,0.978002,2.730308,-1.087373, + 0.967377,2.675356,-1.096030,0.998989,2.668007,-1.088183,0.774361,2.362773,-0.514073,0.889860,2.931551,-0.446713, + 1.049348,2.940728,-1.080579,0.938908,2.422637,-1.120852,-2.962055,1.087577,-4.166731,-2.893838,1.071719,-4.149796, + -2.955279,1.028636,-4.249219,-3.107632,1.031222,-3.620259,-3.039416,1.015364,-3.603325,-3.072096,0.946198,-3.536449, + -3.140313,0.962056,-3.553384,-3.046138,1.309947,-3.555179,-3.014526,1.302599,-3.547331,-3.025151,1.247647,-3.555988, + -3.056763,1.254995,-3.563836,-2.896918,1.296422,-4.168942,-2.865305,1.289073,-4.161095,-2.853653,1.344291,-4.156325, + -2.885265,1.351640,-4.164172,-2.983607,1.567431,-3.521033,-3.100530,0.986802,-3.593758,-2.937008,1.046409,-4.196649, + -2.829898,1.573702,-4.134344,-3.375602,1.557512,-2.227497,-3.572360,1.531744,-1.532169,-3.468665,2.061274,-1.466438, + -3.634499,1.488820,-1.631734,-3.566823,1.472835,-1.612864,-3.643315,1.548239,-1.549784,-3.481277,1.505319,-2.178773, + -3.413601,1.489334,-2.159902,-3.446557,1.574006,-2.245111,-3.577360,1.030157,-2.236684,-3.509683,1.014172,-2.217813, + -3.568543,0.970738,-2.318635,-3.740383,0.965187,-1.695552,-3.672706,0.949203,-1.676682,-3.707427,0.880515,-1.610345, + -3.775103,0.896500,-1.629215,-3.677286,1.256186,-1.628868,-3.645923,1.248779,-1.620123,-3.656496,1.193814,-1.628767, + -3.687858,1.201222,-1.637511,-3.511479,1.238774,-2.238262,-3.480117,1.231367,-2.229517,-3.468412,1.286572,-2.224733, + -3.499774,1.293980,-2.233478,-3.613609,1.519710,-1.593700,-3.734153,0.920892,-1.668627,-3.551648,0.988743,-2.265684, + -3.439772,1.539331,-2.200524,-2.281389,4.036065,-3.865314,-2.454697,4.012648,-3.176295,-2.399711,3.450921,-3.936630, + -2.584734,3.384393,-3.240787,-2.949395,1.581019,-3.460576,-2.775200,1.593997,-4.162945,-2.892474,1.014036,-4.233628, + -3.077507,0.947456,-3.537792,-3.497588,0.954243,-2.301020,-3.704148,0.880005,-1.611601,0.851371,2.605574,-6.080692, + 0.783155,2.621432,-6.097627,0.808661,2.747572,-6.082253,0.876878,2.731715,-6.065319,0.368032,2.447264,-4.294741, + 0.299815,2.463122,-4.311675,0.356448,2.597329,-4.414130,0.424664,2.581472,-4.397196,0.997367,3.327582,-5.992697, + 0.929151,3.343440,-6.009632,0.954657,3.469581,-5.994258,1.022874,3.453723,-5.977324,0.557405,3.237929,-4.317189, + 0.489189,3.253788,-4.334124,0.483570,3.371861,-4.200922,0.551786,3.356004,-4.183987,-1.468454,2.176448,-6.664410, + -1.602020,1.518887,-6.742123,-2.017360,1.378111,-5.200852,-1.874461,2.087787,-5.111933,-1.859736,1.965877,-5.285410, + -1.949224,1.521497,-5.341052,-1.822621,1.580816,-5.795495,-1.740133,1.986937,-5.747481,-1.722815,1.982911,-5.743182, + -1.805303,1.576790,-5.791195,-1.931906,1.517471,-5.336752,-1.842418,1.961851,-5.281111,-1.762290,1.793749,-5.795285, + -1.738371,1.788189,-5.789348,-1.748082,1.742200,-5.793298,-1.772001,1.747760,-5.799235,-1.906981,1.712778,-5.288256, + -1.883062,1.707218,-5.282318,-1.874219,1.752982,-5.275085,-1.898138,1.758542,-5.281024,-1.872160,1.530875,-5.590798, + -1.848241,1.525315,-5.584860,-1.860133,1.523585,-5.538577,-1.884052,1.529145,-5.544515,-1.793002,1.991835,-5.478016, + -1.769083,1.986274,-5.472078,-1.751318,1.992230,-5.538062,-1.775238,1.997790,-5.544000,-1.356950,3.477698,-5.792222, + -1.288734,3.461840,-5.775288,-1.339035,3.361532,-5.666593,-1.407251,3.377390,-5.683528,-1.557845,3.439592,-5.005831, + -1.489628,3.423735,-4.988896,-1.478778,3.334192,-5.116453,-1.546994,3.350049,-5.133387,-1.499752,2.933089,-5.726962, + -1.431535,2.917231,-5.710027,-1.420685,2.827688,-5.837584,-1.488901,2.843546,-5.854518,-1.643337,2.886415,-5.179451, + -1.575120,2.870556,-5.162517,-1.625421,2.770249,-5.053822,-1.693637,2.786107,-5.070756,-1.445262,3.403659,-5.430543, + -1.413650,3.396310,-5.422696,-1.428175,3.392101,-5.368125,-1.459787,3.399449,-5.375973,-1.570744,2.865484,-5.429024, + -1.539132,2.858135,-5.421177,-1.525320,2.858914,-5.476088,-1.556932,2.866262,-5.483935,-1.586358,3.135799,-5.123659, + -1.554746,3.128450,-5.115811,-1.565702,3.073384,-5.123240,-1.597314,3.080732,-5.131087,-1.437773,3.120509,-5.736513, + -1.406161,3.113160,-5.728665,-1.394196,3.168404,-5.725134,-1.425808,3.175753,-5.732982,-1.524828,3.381481,-5.096538, + -1.636334,2.842533,-5.152041,-1.475071,2.891158,-5.756115,-1.366398,3.410950,-5.707139,-1.450369,2.288912,-6.669769, + -1.382153,2.273054,-6.652834,-1.407659,2.146913,-6.668208,-1.475876,2.162771,-6.685143,-1.883408,2.191848,-5.003450, + -1.815191,2.175991,-4.986515,-1.809572,2.057916,-5.119718,-1.877789,2.073774,-5.136652,-1.598766,1.555024,-6.759212, + -1.530550,1.539166,-6.742278,-1.556057,1.413025,-6.757651,-1.624273,1.428883,-6.774586,-2.011284,1.413581,-5.217113, + -1.943068,1.397723,-5.200179,-1.999700,1.263516,-5.097724,-2.067916,1.279374,-5.114658,0.620062,3.577682,-4.266245, + 0.430713,3.621698,-4.313251,0.470072,3.816347,-4.289528,0.659422,3.772330,-4.242522,0.569093,3.564472,-4.073300, + 0.379744,3.608490,-4.120306,0.419104,3.803138,-4.096582,0.608453,3.759121,-4.049578,0.978202,3.629796,-5.705773, + 0.788853,3.673813,-5.752778,0.828213,3.868462,-5.729055,1.017562,3.824445,-5.682050,0.933360,3.646883,-5.509136, + 0.744011,3.690900,-5.556141,0.777244,3.855253,-5.536110,0.966594,3.811236,-5.489105,-1.024551,4.108513,-5.780241, + -1.167111,4.141653,-5.815631,-1.139146,4.279952,-5.798776,-0.996586,4.246811,-5.763386,-1.068698,4.097072,-5.613122, + -1.211258,4.130212,-5.648512,-1.182067,4.274570,-5.630919,-1.039507,4.241429,-5.595529,-1.594265,0.808860,-6.545938, + -1.770060,0.856070,-6.589144,-1.737405,1.017561,-6.569462,-1.561610,0.970351,-6.526256,-1.624694,0.795232,-6.436124, + -1.801714,0.836384,-6.480069,-1.769059,0.997875,-6.460387,-1.592039,0.956723,-6.416442,0.213504,0.336172,-5.665377, + 0.039007,0.376737,-5.708695,0.062962,0.514938,-5.675776,0.237459,0.474373,-5.632458,0.166534,0.323999,-5.487566, + -0.007964,0.364564,-5.530884,0.025859,0.531827,-5.510499,0.200356,0.491262,-5.467181,0.056919,0.329623,-5.420529, + -0.204713,0.390444,-5.485478,-0.180453,0.510420,-5.470856,0.081179,0.449599,-5.405907,0.020743,0.320248,-5.283585, + -0.240888,0.381068,-5.348534,-0.215214,0.508037,-5.333059,0.046418,0.447217,-5.268110,-0.096676,0.388091,-5.697915, + -0.358308,0.448912,-5.762864,-0.342689,0.545885,-5.734970,-0.081058,0.485065,-5.670021,-0.132851,0.378716,-5.560970, + -0.394483,0.439537,-5.625919,-0.368997,0.565572,-5.610559,-0.107366,0.504751,-5.545609,-1.842379,0.937596,-6.375920, + -1.791528,1.189069,-6.345272,-1.657136,1.157827,-6.311909,-1.707987,0.906355,-6.342558,-1.878554,0.928221,-6.238976, + -1.824168,1.197175,-6.206197,-1.689777,1.165934,-6.172834,-1.744162,0.896979,-6.205614,-1.714561,1.098723,-6.589191, + -1.663531,1.351083,-6.558434,-1.596216,1.335435,-6.541723,-1.647246,1.083074,-6.572480,-1.760976,1.077302,-6.422277, + -1.705938,1.349485,-6.389104,-1.638623,1.333837,-6.372394,-1.693661,1.061653,-6.405566,-1.279203,3.934382,-5.613146, + -1.222939,4.212625,-5.579235,-1.086028,4.180797,-5.545247,-1.142292,3.902555,-5.579158,-1.318464,3.921675,-5.443746, + -1.263426,4.193858,-5.410573,-1.131664,4.163229,-5.377863,-1.186703,3.891045,-5.411036,0.345383,0.708144,-5.835882, + 0.293880,0.453442,-5.866924,0.226565,0.469090,-5.883635,0.278068,0.723792,-5.852592,0.304507,0.714116,-5.665629, + 0.249468,0.441932,-5.698802,0.182153,0.457581,-5.715512,0.237191,0.729764,-5.682340,0.714842,3.719980,-4.503780, + 0.657156,3.461464,-4.513485,0.589841,3.477113,-4.530196,0.647527,3.735629,-4.520491,0.670431,3.708470,-4.335658, + 0.615393,3.436287,-4.368831,0.548078,3.451935,-4.385542,0.603116,3.724119,-4.352369,0.624417,2.352350,-5.420216, + 0.569379,2.080166,-5.453389,0.502064,2.095815,-5.470099,0.557102,2.367999,-5.436927,0.584248,2.361819,-5.249537, + 0.531816,2.087656,-5.295063,0.464501,2.103305,-5.311774,0.516933,2.377467,-5.266248,1.543806,3.357874,-3.299994, + 1.501373,3.148025,-3.325570,1.449474,3.160090,-3.338453,1.491907,3.369939,-3.312878,1.509566,3.349000,-3.170375, + 1.467133,3.139152,-3.195950,1.415234,3.151216,-3.208834,1.457667,3.361065,-3.183258,0.966188,2.046764,-2.200959, + 0.923754,1.836915,-2.226535,0.871856,1.848979,-2.239419,0.914289,2.058828,-2.213843,0.935109,2.021485,-2.099436, + 0.896351,1.829813,-2.122796,0.844452,1.841877,-2.135680,0.883210,2.033549,-2.112319,1.461030,3.167577,-3.144748, + 1.423065,2.979826,-3.167630,1.371166,2.991891,-3.180514,1.409131,3.179642,-3.157631,1.435881,3.161060,-3.049546, + 1.397916,2.973309,-3.072429,1.346017,2.985373,-3.085313,1.383983,3.173124,-3.062430,0.365063,0.689042,-0.345662, + 0.322630,0.479193,-0.371237,0.270731,0.491258,-0.384121,0.313164,0.701107,-0.358545,0.338885,0.687999,-0.241185, + 0.289100,0.441796,-0.271191,0.237201,0.453861,-0.284074,0.286986,0.700063,-0.254068,1.072746,2.574810,-1.430499, + 1.030312,2.364961,-1.456075,0.978413,2.377026,-1.468958,1.020847,2.586874,-1.443383,1.045342,2.567708,-1.326760, + 1.002909,2.357859,-1.352336,0.951010,2.369924,-1.365220,0.993443,2.579773,-1.339645,-2.970607,3.295037,-2.449287, + -2.928174,3.504886,-2.423712,-2.876275,3.492822,-2.410828,-2.918708,3.282972,-2.436404,-2.998010,3.287935,-2.345549, + -2.955577,3.497784,-2.319973,-2.903678,3.485720,-2.307089,-2.946111,3.275870,-2.332665,-3.677353,1.438410,-1.470767, + -3.634920,1.648259,-1.445192,-3.583021,1.636195,-1.432309,-3.625454,1.426345,-1.457884,-3.704756,1.431308,-1.367029, + -3.661098,1.647216,-1.340715,-3.609200,1.635151,-1.327832,-3.652857,1.419243,-1.354146,-2.590030,2.176324,-4.652356, + -2.547597,2.386173,-4.626780,-2.495698,2.374109,-4.613896,-2.538131,2.164259,-4.639472,-2.617433,2.169222,-4.548617, + -2.575000,2.379071,-4.523042,-2.523101,2.367007,-4.510158,-2.565534,2.157157,-4.535734,0.333540,1.320859,0.969736, + 0.333905,1.315079,1.036655,-1.826909,1.854648,0.194545,0.525945,1.916229,0.126121,-1.177557,2.362544,-0.724791, + 0.532808,1.980435,0.183872,-1.150355,2.556979,-0.652292,0.299313,0.848879,0.076024,-1.446730,1.127596,-0.796919, + 0.322240,0.940684,0.031687,-1.380557,1.388681,-0.818992,-1.512158,1.799266,0.095611,0.191754,1.369678,0.945145, + 0.237016,0.914700,-0.122026,0.464579,2.040076,0.015131,0.523914,2.325928,0.240694,0.519050,2.324123,0.265274, + 0.571670,2.604530,0.299383,0.704049,2.563221,0.275074,0.331300,0.934036,0.029489,0.655931,2.305081,0.243680, + 0.292277,1.098059,0.166100,0.331034,1.089049,0.175721,0.472852,1.755767,0.241594,0.434095,1.764777,0.231972, + 0.651065,2.303261,0.268258,0.527548,1.908369,0.164161,0.243580,1.360143,0.781863,0.204823,1.369152,0.772242, + 0.699182,2.561401,0.299652,0.202103,1.351213,0.940579,0.272111,1.090709,0.352182,0.240499,1.098058,0.344335, + 0.226442,1.096135,0.399159,0.258054,1.088786,0.407007,0.378649,1.655433,0.451843,0.347036,1.662782,0.443996, + 0.361827,1.668335,0.389614,0.393440,1.660986,0.397461,0.192986,1.346328,0.827897,0.161374,1.353676,0.820049, + 0.173091,1.408911,0.824574,0.204703,1.401563,0.832422,0.384706,1.448212,0.151007,0.353094,1.455561,0.143159, + 0.342533,1.400626,0.134257,0.374145,1.393277,0.142104,0.576533,2.606335,0.274803,-2.435276,3.164960,0.463031, + -2.438452,3.162634,0.489017,-2.364568,3.549059,0.536360,-2.225596,3.519185,0.501629,-2.275943,3.249156,0.468471, + -2.294003,3.173222,0.485486,-2.228772,3.516860,0.527615,-2.361392,3.551384,0.510375,-2.376481,0.125228,0.064621, + -2.383174,0.122855,0.096980,-2.328362,0.417142,0.132940,-2.161290,0.391048,0.104940,-2.220146,0.075294,0.066538, + -2.226099,0.073067,0.096602,-2.167242,0.388821,0.135004,-2.321668,0.419515,0.100582,0.446391,2.956390,0.333832, + 0.440165,2.954322,0.362036,0.467113,3.103342,0.380523,0.579311,3.105186,0.345147,0.542958,2.909656,0.320991, + 0.536739,2.907620,0.349198,0.573092,3.103150,0.373353,0.473339,3.105410,0.352320,-3.958162,0.697587,-0.873756, + -3.975534,0.698661,-0.855190,-4.021303,0.460062,-0.880943,-4.084728,0.481786,-1.005790,-4.034315,0.743350,-0.977238, + -4.051690,0.744408,-0.958673,-4.102103,0.482844,-0.987226,-4.003931,0.458988,-0.899509,-3.662097,0.937111,-0.497463, + -3.679307,0.938415,-0.481096,-3.726611,0.693959,-0.507654,-3.778553,0.714884,-0.627618,-3.727557,0.977604,-0.598834, + -3.744770,0.978896,-0.582469,-3.795767,0.716176,-0.611253,-3.709400,0.692654,-0.524021,-2.646345,4.061282,0.394180, + -2.662877,4.061078,0.421713,-2.712798,3.803064,0.392928,-2.773595,3.803224,0.278370,-2.713890,4.109626,0.313053, + -2.727492,4.110208,0.329516,-2.787197,3.803806,0.294833,-2.696265,3.803268,0.365396,-2.847446,3.810418,0.159977, + -2.865350,3.811440,0.179734,-2.914466,3.555418,0.151977,-2.982493,3.581416,0.022591,-2.929693,3.855657,0.052568, + -2.947600,3.856668,0.072323,-3.000400,3.582427,0.042346,-2.896562,3.554395,0.132221,-2.955863,4.051989,-0.008577, + -2.968853,4.052982,0.003779,-3.002113,3.880555,-0.014793,-3.041152,3.897184,-0.105246,-3.005446,4.081711,-0.085198, + -3.018437,4.082696,-0.072844,-3.054144,3.898169,-0.092891,-2.989123,3.879562,-0.027149,-1.299863,4.276039,-4.795429, + -2.052507,0.661828,-5.243385,-2.193623,0.695508,-5.258017,-1.459742,4.324824,-4.815689,-1.334568,4.276776,-4.701647, + -2.076060,0.656481,-5.146346,-2.199700,0.684644,-5.158794,-1.465819,4.313960,-4.716467,-1.926756,2.612138,-7.090366, + -1.999474,2.630397,-7.119533,-1.980304,2.725202,-7.107979,-1.907586,2.706943,-7.078812,-2.635526,2.549719,-5.402261, + -2.708245,2.567978,-5.431427,-2.689075,2.662782,-5.419873,-2.616356,2.644523,-5.390706,-2.184468,1.337663,-7.245695, + -2.257186,1.355922,-7.274861,-2.238016,1.450726,-7.263307,-2.165298,1.432467,-7.234140,-2.897972,1.274016,-5.539669, + -2.970691,1.292275,-5.568836,-2.951520,1.387080,-5.557281,-2.878802,1.368821,-5.528115,-1.406240,4.164232,-4.808125, + -1.395314,4.206930,-4.808645,-1.345902,4.195299,-4.725507,-1.356828,4.152602,-4.724986,-2.076517,4.383427,-4.551396, + -2.065591,4.426125,-4.551916,-2.016180,4.414494,-4.468778,-2.027106,4.371797,-4.468257,-2.024988,0.839991,-5.228035, + -2.016718,0.882182,-5.218329,-1.970560,0.854461,-5.137152,-1.978830,0.812270,-5.146857,-2.791516,0.740484,-5.048057, + -2.783247,0.782676,-5.038351,-2.737089,0.754955,-4.957173,-2.745358,0.712763,-4.966879,-2.561521,2.705084,-5.405488, + -2.885518,1.194882,-5.583470,-2.988457,1.223105,-5.632719,-2.676918,2.741607,-5.465719,-2.625341,2.710836,-5.329132, + -2.941962,1.196958,-5.500969,-3.032272,1.221108,-5.543643,-2.720732,2.739611,-5.376644,-3.053399,1.379629,-5.588403, + -1.995444,1.073682,-5.077360,-2.015129,0.984276,-5.087523,-3.077170,1.277695,-5.604728,-3.093018,1.360606,-5.523835, + -2.033382,1.061955,-5.009825,-2.050406,0.983699,-5.018185,-3.112447,1.277118,-5.535389,-2.783395,2.706822,-5.447361, + -1.708563,2.492410,-4.904450,-1.728248,2.403004,-4.914614,-2.807166,2.604887,-5.463686,-2.823015,2.687798,-5.382792, + -1.746501,2.480683,-4.836915,-1.763525,2.402427,-4.845275,-2.842443,2.604310,-5.394347,-3.003625,1.328423,-5.550147, + -1.998336,1.067506,-5.077231,-1.729234,2.391194,-4.915963,-2.730520,2.652698,-5.400335,-2.770454,2.657665,-5.374835, + -1.753076,2.393144,-4.892403,-2.021746,1.069340,-5.053436,-3.043950,1.333130,-5.521859,-2.939175,1.338620,-5.740740, + -2.666070,2.662894,-5.590928,-2.706004,2.667861,-5.565428,-2.979499,1.343326,-5.712452,-2.830660,2.474154,0.351147, + 0.669740,1.857427,0.109585,0.674760,1.851638,0.148757,-3.718349,2.869680,-0.915517,-3.620348,2.853839,-0.948141, + -2.797387,2.475602,0.284057,-0.589647,2.117033,-4.301243,-0.564163,2.123638,-4.397715,-0.570477,2.211837,-4.289688, + -0.544993,2.218442,-4.386161,-0.398895,3.064829,-4.182096,-0.373411,3.071434,-4.278568,-0.379725,3.159633,-4.170541, + -0.354241,3.166238,-4.267014,-0.607521,1.554517,0.634004,-0.322358,2.205300,-0.242322,-0.557125,1.074026,-0.350376, + -0.202599,3.681642,-1.986267,-0.162342,3.692074,-2.138663,-0.183428,3.776445,-1.974713,-0.143171,3.786879,-2.127109, + -1.798575,0.189022,-2.663995,-1.761369,0.198665,-2.804844,-1.777487,0.293310,-2.651285,-1.740281,0.302953,-2.792134, + -2.375254,0.044020,-0.754179,-2.349770,0.050625,-0.850652,-2.356084,0.138824,-0.742625,-2.330600,0.145429,-0.839098, + 0.532406,1.807572,0.132362,0.541929,1.817527,0.034876,0.493190,1.828857,0.022777,-3.484784,2.748426,-0.929918, + -3.616568,2.764377,-0.842143,-3.584258,2.771550,-0.954612,-3.400158,0.603289,-3.106334,-3.385978,0.673414,-3.097787, + -3.235548,0.638445,-3.060443,-3.249728,0.568319,-3.068990,-2.628892,0.139710,-0.875767,-2.614712,0.209835,-0.867220, + -2.464281,0.174865,-0.829876,-2.478461,0.104740,-0.838423,-0.886295,0.018902,-2.482277,-0.872115,0.089028,-2.473730, + -0.721685,0.054058,-2.436387,-0.735865,-0.016068,-2.444933,-0.115029,-0.444677,-0.251710,-0.100849,-0.374552,-0.243163, + 0.049582,-0.409522,-0.205820,0.035402,-0.479647,-0.214366,-1.862423,0.245818,-2.724597,-1.848243,0.315944,-2.716050, + -1.697812,0.280974,-2.678706,-1.711992,0.210848,-2.687253,-1.472247,-0.129170,-0.588634,-1.458067,-0.059045,-0.580088, + -1.307637,-0.094015,-0.542744,-1.321817,-0.164140,-0.551291,-2.808435,0.682687,-4.964941,-2.794255,0.752812,-4.956394, + -2.643824,0.717842,-4.919050,-2.658004,0.647717,-4.927597,-1.994657,0.259264,-2.785077,-1.980476,0.329389,-2.776531, + -1.830046,0.294419,-2.739187,-1.844226,0.224294,-2.747733,-0.294572,0.098300,-4.340884,-0.280392,0.168425,-4.332337, + -0.129961,0.133456,-4.294993,-0.144141,0.063330,-4.303540,0.229154,-0.237647,-2.225528,0.316065,-0.311570,-2.149072, + 0.393764,-0.202492,-2.179637,0.379584,-0.272617,-2.188184,-1.359102,0.336589,-4.604597,-1.344922,0.406714,-4.596050, + -1.194492,0.371745,-4.558707,-1.208672,0.301619,-4.567253,-1.019245,0.043093,-2.536693,-1.005065,0.113219,-2.528147, + -0.854635,0.078249,-2.490803,-0.868815,0.008123,-2.499349,1.259348,3.413565,-1.596580,1.245169,3.343439,-1.605126, + 1.094738,3.378409,-1.642470,1.108918,3.448534,-1.633924,-0.503057,3.643157,-0.058205,-0.517238,3.573031,-0.066752, + -0.667668,3.608002,-0.104096,-0.653488,3.678127,-0.095549,-1.147521,3.972125,-2.204054,-1.161701,3.901999,-2.212601, + -1.312132,3.936969,-2.249945,-1.297952,4.007094,-2.241398,-3.084649,4.241207,-0.665988,-3.098829,4.171082,-0.674535, + -3.249259,4.206052,-0.711878,-3.235079,4.276177,-0.703332,1.622901,3.626719,-3.593534,1.608721,3.556593,-3.602081, + 1.458290,3.591563,-3.639425,1.472470,3.661688,-3.630878,0.051009,3.712573,-2.078887,0.036828,3.642447,-2.087433, + -0.113602,3.677417,-2.124777,-0.099422,3.747542,-2.116230,-0.641869,4.137784,-4.174801,-0.656048,4.067658,-4.183348, + -0.806479,4.102628,-4.220692,-0.792299,4.172754,-4.212145,-2.450507,4.276515,-2.577965,-2.446220,4.243526,-2.571595, + -2.616526,4.235272,-2.623881,-2.600937,4.311485,-2.615309,-3.166776,3.812005,-1.350125,-3.219604,3.564789,-1.371304, + -3.184232,3.816241,-1.355931,-3.242834,3.570366,-1.378976,-3.022935,3.585150,-1.949132,-2.989427,3.840675,-1.899094, + -3.006883,3.844912,-1.904901,-3.046165,3.590727,-1.956804,-3.303248,3.243890,-1.359056,-3.235997,3.227821,-1.338789, + -3.078402,3.319206,-2.056166,-3.011150,3.303137,-2.035899,-3.109932,3.851266,-1.262807,-3.177184,3.867335,-1.283074, + -2.903285,3.873063,-1.941961,-2.970536,3.889132,-1.962228,-3.034166,3.595949,-1.955659,-3.257433,3.576818,-1.391778, + -3.081462,3.363760,-1.983784,-3.098769,3.368018,-1.990005,-3.057173,3.601608,-1.963930,-3.215130,3.566549,-1.377690, + -3.275494,3.298900,-1.399930,-3.292801,3.303157,-1.406151,-0.245932,3.863409,-2.576579,-0.488311,3.918675,-2.627103, + -0.242103,3.881805,-2.574776,-0.483286,3.943139,-2.624666,-0.345008,3.947419,-3.220076,-0.101415,3.899615,-3.134652, + -0.097587,3.918012,-3.132849,-0.339983,3.971882,-3.217639,-0.811540,3.989887,-2.651070,-0.825650,3.919780,-2.659882, + -0.589954,4.036459,-3.351728,-0.604064,3.966352,-3.360540,-0.219178,3.778799,-2.509328,-0.205069,3.848906,-2.500516, + -0.054804,3.835373,-3.197957,-0.040695,3.905480,-3.189144,-0.334120,3.960332,-3.219825,-0.475756,3.961454,-2.629812, + -0.560046,4.013096,-3.275614,-0.556109,4.031506,-3.274239,-0.328885,3.984806,-3.217997,-0.485039,3.916863,-2.634168, + -0.747835,3.979396,-2.687106,-0.743898,3.997808,-2.685731,1.163112,2.575364,-2.379576,1.210702,2.821449,-2.340438, + 1.181094,2.571241,-2.375576,1.234603,2.816017,-2.335062,1.354843,2.874635,-2.931516,1.308381,2.616314,-2.937125, + 1.326363,2.612192,-2.933125,1.378743,2.869203,-2.926140,1.263918,3.135782,-2.248319,1.195773,3.151658,-2.265519, + 1.450005,3.149146,-2.960628,1.381860,3.165021,-2.977827,1.069707,2.528213,-2.341501,1.137853,2.512337,-2.324301, + 1.259734,2.592018,-3.022858,1.327880,2.576142,-3.005658,1.368180,2.864291,-2.932210,1.253995,2.810598,-2.338699, + 1.415330,3.096447,-2.903582,1.433409,3.092358,-2.900012,1.392214,2.858854,-2.927464,1.210406,2.820591,-2.348380, + 1.264238,3.086830,-2.303732,1.282318,3.082740,-2.300161,-0.388114,19.521770,-3.286704,3.495884,19.335835,-2.333465, + 3.493051,19.238747,-2.340860,-0.390947,19.424683,-3.294099,-0.413599,19.515165,-3.190232,3.470400,19.329231,-2.236993, + 3.467567,19.232141,-2.244388,-0.416432,19.418077,-3.197627,-0.428247,18.547695,-3.314233,3.456044,18.361774,-2.361289, + 3.453211,18.264687,-2.368684,-0.431080,18.450607,-3.321628,-0.453731,18.541092,-3.217761,3.430560,18.355169,-2.264817, + 3.427727,18.258081,-2.272212,-0.456564,18.444004,-3.225156,-0.480433,17.607861,-3.288439,3.386364,17.418219,-2.279966, + 3.383531,17.321131,-2.287361,-0.483266,17.510771,-3.295834,-0.505917,17.601255,-3.191967,3.360880,17.411613,-2.183494, + 3.358047,17.314526,-2.190889,-0.508750,17.504168,-3.199362,-0.366569,20.459791,-3.188731,3.500228,20.270149,-2.180258, + 3.497395,20.173061,-2.187653,-0.369402,20.362701,-3.196126,-0.392053,20.453186,-3.092259,3.474744,20.263544,-2.083786, + 3.471911,20.166456,-2.091181,-0.394886,20.356098,-3.099654,-0.367392,21.481983,-2.993354,3.499405,21.292341,-1.984881, + 3.495747,21.166965,-1.994430,-0.371050,21.356607,-3.002903,-0.392876,21.475378,-2.896882,3.473921,21.285738,-1.888409, + 3.470263,21.160362,-1.897958,-0.396535,21.350002,-2.906431,-0.453051,17.534447,-3.321943,-0.339389,21.429951,-3.025230, + -0.193202,21.422781,-2.987104,-0.358899,17.529829,-3.297388,-0.478535,17.527843,-3.225470,-0.369086,21.421255,-2.913000, + -0.222898,21.414085,-2.874873,-0.384383,17.523226,-3.200915,3.283078,17.351215,-2.347548,3.396739,21.246717,-2.050836, + 3.490891,21.242100,-2.026281,3.377229,17.346598,-2.322994,3.257593,17.344610,-2.251076,3.371254,21.240112,-1.954363, + 3.465406,21.235495,-1.929808,3.351745,17.339993,-2.226521,2.691560,17.380224,-2.501818,2.805221,21.275728,-2.205106, + 2.937168,21.269257,-2.170693,2.823507,17.373755,-2.467406,2.666076,17.373621,-2.405345,2.779737,21.269123,-2.108633, + 2.911684,21.262651,-2.074221,2.798023,17.367149,-2.370933,3.366164,21.182278,-4.095733,3.243284,17.721556,-4.365115, + 1.189432,17.798885,-4.902369,0.778322,21.179733,-2.690288,0.674061,17.636219,-2.956864,-1.076439,21.484270,-0.900745, + 3.060014,21.272011,0.201075,3.057374,21.144632,0.187244,-1.079433,21.350185,-0.914479,-1.094517,21.467598,-0.755402, + 3.024510,21.257069,0.334398,3.021870,21.129688,0.320567,-1.097512,21.333515,-0.769136,-1.575866,19.141253,0.146848, + 2.827832,18.830404,1.157791,2.828343,18.910925,1.212608,-1.580502,19.227104,0.192641,-1.540304,19.187546,0.063661, + 2.848413,18.856592,1.119130,2.848924,18.937115,1.173947,-1.544940,19.273396,0.109455,-1.570232,18.185644,-0.099230, + 2.814814,17.886827,0.947663,2.820371,17.983999,0.951618,-1.564675,18.282816,-0.095276,-1.550296,18.191713,-0.184451, + 2.827849,17.888607,0.885630,2.833407,17.985779,0.889585,-1.544738,18.288887,-0.180496,-1.651259,20.161509,0.601724, + 2.713568,19.907837,1.759324,2.718916,19.818047,1.721933,-1.645911,20.071720,0.564333,-1.673221,20.127775,0.679591, + 2.691605,19.874102,1.837191,2.696953,19.784313,1.799800,-1.667873,20.037987,0.642200,-1.794041,21.038738,0.929442, + 2.671021,20.819757,2.093945,2.675336,20.728468,2.060232,-1.789726,20.947449,0.895729,-1.819305,21.004169,1.019813, + 2.645757,20.785189,2.184315,2.650072,20.693899,2.150602,-1.814990,20.912882,0.986099,-1.516074,17.229650,-0.121501, + -1.589314,21.040653,1.047843,-1.539557,21.038214,1.060821,-1.465779,17.226347,-0.111026,-1.539629,17.220766,-0.078484, + -1.641075,21.017836,1.115869,-1.577421,21.013002,1.140169,-1.474221,17.216042,-0.061958,2.651379,16.912437,0.691271, + 2.521391,20.792637,2.040061,2.611974,20.788195,2.063685,2.741883,16.906496,0.710120,2.632816,16.900471,0.776628, + 2.498857,20.761805,2.120668,2.587784,20.751945,2.158743,2.722347,16.892323,0.810628,-1.661267,16.777618,-0.749081, + 2.347358,16.989742,0.701269,2.345629,16.897957,0.699362,-1.674745,16.706560,-0.706769,-1.768785,16.811445,-0.712945, + 2.689011,16.972504,0.797966,2.686722,16.881086,0.798109,-1.782394,16.739697,-0.670222,1.157411,17.038784,0.814496, + 1.139494,16.962891,0.681335,1.141742,16.956177,0.863684,1.123825,16.880285,0.730523,-1.459806,20.988106,1.084654, + 2.448853,20.794233,2.096618,2.452823,20.710257,2.065606,-1.455031,20.937819,1.056890,-1.761821,21.002871,1.006068, + 2.646666,20.783819,2.150136,2.650636,20.699844,2.119123,-1.757046,20.952583,0.978304,1.272829,20.554943,2.873327, + 1.273234,20.584400,2.719707,1.278278,20.439684,2.830760,1.277549,20.493113,2.685994,0.022111,17.710361,-5.169394, + 0.100158,17.706627,-5.150243,0.097325,17.609537,-5.157638,0.019279,17.613274,-5.176790,-0.447258,17.616043,-3.253060, + -0.369211,17.612307,-3.233908,-0.372044,17.515217,-3.241303,-0.450090,17.518953,-3.260455,0.059470,18.990723,-5.071872, + 0.137517,18.986986,-5.052720,0.134684,18.889898,-5.060115,0.056637,18.893635,-5.079267,-0.410275,18.883526,-3.156518, + -0.332228,18.879789,-3.137366,-0.335061,18.782701,-3.144761,-0.413107,18.786438,-3.163913,0.096643,20.264715,-4.974834, + 0.174690,20.260981,-4.955682,0.171857,20.163891,-4.963077,0.093810,20.167627,-4.982229,-0.342943,20.140701,-3.178280, + -0.264896,20.136967,-3.159128,-0.267729,20.039877,-3.166523,-0.345776,20.043613,-3.185675,0.133877,21.540773,-4.877639, + 0.211923,21.537037,-4.858487,0.208366,21.415129,-4.867773,0.130319,21.418865,-4.886925,-0.336592,21.408756,-2.964176, + -0.258546,21.405020,-2.945024,-0.261379,21.307930,-2.952419,-0.339425,21.311666,-2.971571,0.640143,17.480833,-3.036834, + 0.753805,21.376337,-2.740121,0.847957,21.371719,-2.715566,0.734295,17.476215,-3.012279,0.592196,17.467552,-2.855487, + 0.705857,21.363054,-2.558775,0.800009,21.358437,-2.534220,0.686348,17.462934,-2.830932,1.844179,17.422663,-2.734374, + 1.957840,21.318167,-2.437662,2.045317,21.312380,-2.395197,1.930002,17.417454,-2.698839,1.800279,17.417114,-2.644696, + 1.913940,21.312616,-2.347985,2.001417,21.306829,-2.305520,1.886102,17.411903,-2.609161,-0.269058,17.635235,-3.871647, + -0.226285,17.632378,-3.861398,-0.245842,17.559177,-3.800177,-0.288615,17.562033,-3.810426,-0.400931,18.168747,-3.233306, + -0.358158,18.165890,-3.223058,-0.377714,18.092690,-3.161837,-0.420487,18.095547,-3.172086,-0.236956,18.929758,-3.751306, + -0.194179,18.927029,-3.741048,-0.213426,18.864435,-3.679019,-0.256203,18.867165,-3.689277,-0.362256,19.494219,-3.132348, + -0.319482,19.491362,-3.122099,-0.329335,19.375385,-3.108630,-0.372109,19.378231,-3.118879,-0.195923,20.141731,-3.680732, + -0.153150,20.138874,-3.670483,-0.172706,20.065674,-3.609262,-0.215479,20.068531,-3.619511,-0.327600,20.681915,-3.041883, + -0.284827,20.679060,-3.031634,-0.292056,20.555285,-3.030224,-0.334829,20.558142,-3.040473,-0.109472,21.372305,-3.573649, + -0.151824,21.375271,-3.585489,-0.167375,21.439373,-3.513810,-0.125022,21.436407,-3.501970,-0.292468,20.695118,-3.031698, + -0.334821,20.698084,-3.043538,-0.319341,20.877014,-3.063756,-0.276989,20.874050,-3.051916,-0.151104,20.096546,-3.653913, + -0.193457,20.099510,-3.665752,-0.209007,20.163612,-3.594073,-0.166655,20.160648,-3.582233,-0.330236,19.400673,-3.130293, + -0.372589,19.403637,-3.142133,-0.359689,19.578259,-3.153616,-0.317337,19.575294,-3.141776,-0.188607,18.854362,-3.743696, + -0.230964,18.857201,-3.755545,-0.246824,18.910698,-3.684674,-0.204468,18.907860,-3.672825,-0.365795,18.181950,-3.223121, + -0.408148,18.184916,-3.234961,-0.423698,18.249018,-3.163282,-0.381346,18.246052,-3.151442,-0.226572,17.641584,-3.879800, + -0.228440,17.597763,-3.884148,-0.297395,17.594234,-3.811396,-0.295527,17.638056,-3.807047,0.225489,17.561527,-3.109401, + 0.223620,17.517706,-3.113750,0.139492,17.516422,-3.064663,0.141360,17.560244,-3.060314,-0.101363,21.449175,-3.566245, + -0.100202,21.405256,-3.569799,-0.184304,21.399086,-3.521040,-0.185466,21.443005,-3.517485,0.335853,21.414925,-2.816442, + 0.337015,21.371008,-2.819997,0.252912,21.364838,-2.771238,0.251751,21.408754,-2.767683,0.240306,16.342066,0.227181, + 0.220581,17.058199,-0.126945,0.102098,17.092222,-0.033778,0.317318,16.400898,0.217339,1.275586,16.610954,0.610860, + 1.211079,16.931524,0.232308,1.328343,16.886501,0.218781,1.189261,16.588360,0.571791,1.480612,21.015867,1.709832, + 1.411103,20.990175,1.680884,1.932648,21.354828,-2.352279,1.386460,21.020485,1.685277,1.300124,20.546509,2.748534, + 1.214670,20.499964,2.707829,2.010483,21.341677,-2.336759,1.205972,20.551128,2.723979,1.300107,16.960670,0.205600, + 1.240777,16.669191,0.654091,1.239315,16.857355,0.245490,1.154453,16.646597,0.615021,1.503682,17.234184,-1.040021, + 1.477359,17.274988,-1.043085,1.390374,17.281404,-1.065638,1.415064,17.205656,-1.067490,2.804609,21.363571,0.179818, + 2.775366,17.093981,-0.766434,2.938073,17.094656,-0.879770,2.959455,21.382996,0.074832,2.834563,21.388315,0.046591, + 2.806880,17.100403,-0.910292,1.995492,21.261406,-2.329602,1.917658,21.274559,-2.345122,-0.433845,17.557192,-3.270630, + -0.355798,17.553455,-3.251478,-0.438142,19.658104,-2.777769,-0.461688,20.824446,-2.515129,-0.428199,19.614086,-2.776576, + -0.451392,19.615225,-2.782625,-0.609479,19.413198,-2.209049,-0.630234,20.639149,-1.883465,-0.586936,19.465784,-2.231580, + -0.610046,19.466942,-2.237945,-0.523209,19.291412,-2.605691,-0.502624,19.288601,-2.593324,-0.533488,19.289431,-2.562267, + -0.438463,20.823547,-2.509161,-0.557091,19.777960,-2.443410,-0.536422,19.775169,-2.431360,-0.525948,19.779837,-2.474533, + -0.448440,20.867479,-2.511744,1.048755,20.291759,-4.038310,1.144539,20.287062,-4.013327,1.110581,20.181906,-3.902893, + 1.014797,20.186604,-3.927876,0.844842,20.244173,-3.253441,0.940627,20.239475,-3.228458,0.968919,20.150454,-3.353682, + 0.873135,20.155151,-3.378665,1.001142,19.718609,-3.963522,1.096927,19.713911,-3.938539,1.125220,19.624889,-4.063763, + 1.029436,19.629587,-4.088746,0.858938,19.668541,-3.415729,0.954722,19.663843,-3.390746,0.920764,19.558689,-3.280312, + 0.824980,19.563387,-3.305295,2.906559,17.088234,-0.735912,-0.266890,21.453634,-2.924062,1.202571,19.045567,-4.862430, + 1.297102,19.040730,-4.835192,1.293333,18.911551,-4.845031,1.198802,18.916388,-4.872270,0.733434,18.960035,-3.067744, + 0.827965,18.955198,-3.040505,0.855322,18.834085,-3.168173,0.760790,18.838923,-3.195412,1.180997,18.306164,-4.918749, + 1.275529,18.301327,-4.891510,1.271760,18.172148,-4.901350,1.177228,18.176983,-4.928588,0.741176,18.166649,-3.246618, + 0.835707,18.161812,-3.219379,0.800812,18.024565,-3.111390,0.706281,18.029402,-3.138628,3.281313,18.445389,-1.634842, + 3.210137,18.448685,-1.644331,3.207907,18.514721,-1.568318,3.279083,18.511427,-1.558828,3.214164,18.409359,-1.006995, + 3.142988,18.412653,-1.016484,3.150805,18.488384,-1.083906,3.221981,18.485090,-1.074417,3.314448,18.951859,-1.531291, + 3.243272,18.955153,-1.540781,3.251089,19.030882,-1.608203,3.322264,19.027588,-1.598713,3.257946,18.940012,-1.046431, + 3.186769,18.943306,-1.055921,3.184539,19.009342,-0.979908,3.255715,19.006048,-0.970418,3.389462,19.764713,-4.194875, + 3.211745,19.772593,-4.230562,3.215513,19.901773,-4.220723,3.393230,19.893894,-4.185035,2.946601,19.633072,-2.533517, + 2.768884,19.640951,-2.569205,2.803779,19.778196,-2.677194,2.981495,19.770317,-2.641507,3.411389,20.516283,-4.137630, + 3.233672,20.524162,-4.173317,3.237441,20.653341,-4.163478,3.415158,20.645462,-4.127790,3.001221,20.446415,-2.590010, + 2.823504,20.454294,-2.625698,2.796147,20.575409,-2.498030,2.973864,20.567528,-2.462342,1.121511,17.964746,-4.686540, + 1.314821,17.955265,-4.636124,1.309004,17.755928,-4.651307,1.115695,17.765408,-4.701723,1.069638,17.920511,-4.495958, + 1.262947,17.911032,-4.445542,1.258036,17.742718,-4.458362,1.064727,17.752199,-4.508778,2.967391,17.779442,-3.789809, + 3.112933,17.772303,-3.751851,3.108800,17.630672,-3.762639,2.963259,17.637810,-3.800596,2.923245,17.768000,-3.622690, + 3.068787,17.760862,-3.584733,3.064473,17.613028,-3.595993,2.918932,17.620165,-3.633950,2.491797,20.741398,-4.165986, + 2.733595,20.722765,-4.234937,2.711680,20.562666,-4.272634,2.469882,20.581299,-4.203683,2.512407,20.718975,-4.055337, + 2.755027,20.706348,-4.122873,2.733111,20.546249,-4.160571,2.490491,20.558876,-4.093034,0.942210,21.236221,-3.425107, + 1.120357,21.227484,-3.378646,1.111983,21.083744,-3.373569,0.933837,21.092480,-3.420030,0.895239,21.224047,-3.247296, + 1.073386,21.215311,-3.200835,1.068388,21.044018,-3.213882,0.890242,21.052755,-3.260343,0.958245,21.221844,-3.135196, + 1.225348,21.208744,-3.065534,1.221763,21.085878,-3.074893,0.954660,21.098978,-3.144554,0.922069,21.212469,-2.998251, + 1.189173,21.199369,-2.928590,1.185379,21.069342,-2.938494,0.918275,21.082441,-3.008155,1.233630,21.232800,-3.302514, + 1.500733,21.219700,-3.232853,1.493592,21.118181,-3.224560,1.226488,21.131281,-3.294221,1.197454,21.223425,-3.165570, + 1.464558,21.210325,-3.095909,1.460792,21.081253,-3.105740,1.193688,21.094353,-3.175401,3.313002,21.086233,-3.634686, + 3.305487,20.828703,-3.654302,3.193982,20.834171,-3.683383,3.201497,21.091703,-3.663767,3.276826,21.076859,-3.497742, + 3.268790,20.801424,-3.518722,3.157285,20.806892,-3.547802,3.165321,21.082327,-3.526823,3.337652,20.948202,-3.895690, + 3.330111,20.689762,-3.915375,3.261388,20.693132,-3.933299,3.268929,20.951572,-3.913614,3.293537,20.946842,-3.726795, + 3.285403,20.668102,-3.748027,3.216681,20.671473,-3.765950,3.224814,20.950212,-3.744719,3.070676,17.955105,-3.504214, + 3.062362,17.670158,-3.525918,2.922586,17.677013,-3.562371,2.930901,17.961960,-3.540667,3.021007,17.943853,-3.337463, + 3.012874,17.665112,-3.358694,2.878356,17.671709,-3.393777,2.886490,17.950449,-3.372545,0.985441,20.884535,-3.668571, + 0.993051,21.145372,-3.648704,1.061774,21.142002,-3.630780,1.054164,20.881165,-3.650648,0.940507,20.855122,-3.501813, + 0.948640,21.133863,-3.480582,1.017363,21.130493,-3.462658,1.009230,20.851751,-3.483890,1.031155,19.210440,-4.158660, + 1.039287,19.489182,-4.137429,1.108010,19.485811,-4.119505,1.099877,19.207069,-4.140737,0.986116,19.177446,-3.992174, + 0.997506,19.459879,-3.982737,1.066229,19.456509,-3.964813,1.054839,19.174076,-3.974251,1.667972,19.987333,-4.022571, + 1.700572,19.817863,-4.226132,1.682664,19.794334,-4.197822,1.522734,19.351130,-4.629780,1.540642,19.374659,-4.658091, + 1.396640,19.303970,-4.748741,2.105811,19.300196,-4.327969,2.123719,19.323725,-4.356280,2.253345,19.226231,-4.321233, + 1.844404,19.702517,-4.193038,1.859012,19.721708,-4.216130,1.906906,19.692017,-4.210509,1.892299,19.672827,-4.187418, + 1.755488,19.302666,-4.548402,1.770095,19.321856,-4.571494,1.721166,19.349140,-4.579770,1.706558,19.329948,-4.556678, + 2.175476,19.302036,-4.331592,2.190083,19.321228,-4.354683,2.172435,19.285851,-4.395250,2.157827,19.266659,-4.372158, + 1.546048,19.614260,-4.483126,1.560655,19.633451,-4.506218,1.574422,19.671112,-4.466209,1.559814,19.651920,-4.443117, + 3.324521,20.973549,-0.804735,3.251394,20.974880,-0.815232,3.257929,20.895435,-0.887397,3.331055,20.894102,-0.876899, + 3.417625,20.967562,-1.428809,3.364619,20.968494,-1.437356,3.354997,20.889116,-1.366281,3.408004,20.888182,-1.357734, + 3.321554,20.437275,-0.888276,3.248428,20.438606,-0.898774,3.239035,20.366512,-0.827731,3.312160,20.365179,-0.817234, + 3.398819,20.446068,-1.369421,3.345813,20.447002,-1.377968,3.352576,20.374842,-1.450165,3.405582,20.373907,-1.441618, + 2.477977,19.472754,-2.281012,2.503461,19.479359,-2.377484,2.475144,19.375666,-2.288407,2.500628,19.382269,-2.384879, + 1.460421,18.441101,-2.638270,1.485906,18.447704,-2.734743,1.457589,18.344013,-2.645666,1.483073,18.350616,-2.742138, + 1.307465,21.340614,-0.175909,1.344823,21.356337,-0.316196,1.304988,21.221109,-0.188885,1.342347,21.236832,-0.329172, + 0.925141,21.166527,1.582530,0.950405,21.201096,1.492160,0.929456,21.075239,1.548817,0.954720,21.109808,1.458446, + -1.474840,18.751949,-0.052262,-1.428583,18.763298,-0.141547,-1.378287,18.759996,-0.131073,2.689216,18.521004,0.951236, + 2.769708,18.498188,1.086611,2.791866,18.514263,0.972614,-1.025824,17.399120,-1.543859,-0.947776,17.395456,-1.524699, + -0.949074,17.298948,-1.537871,-1.027122,17.302614,-1.557031,-1.871528,17.022400,0.048103,-1.226307,17.347389,-0.467347, + -1.836801,16.936861,0.017024,-1.143377,17.235069,-0.451094,-1.918503,17.026999,-0.017045,-1.211621,17.236141,-0.493679, + -1.158063,17.346317,-0.424761,-1.883775,16.941460,-0.048125,2.859932,17.115896,-0.545389,2.832621,17.191551,-0.543853, + 2.936925,17.227982,-0.512172,2.964235,17.152325,-0.513708,2.716947,16.424690,1.116516,2.674075,17.002785,0.609915, + 2.794380,16.482948,1.106562,2.752389,17.104206,0.667069,2.751948,16.370045,1.068967,2.778837,17.048885,0.614991, + 2.647627,17.058104,0.661994,2.829381,16.428303,1.059013,-1.596132,20.072140,0.705787,-1.493860,20.085163,0.617980, + -1.543832,20.087948,0.606000,-1.656730,17.046524,-0.051921,2.826671,17.049685,0.717691,2.823838,16.952595,0.710296, + -1.659563,16.949436,-0.059316,-1.698283,17.035755,0.105382,2.787302,16.993933,0.858163,2.783479,16.862938,0.848185, + -1.701116,16.938667,0.097988,0.189287,17.125595,0.124825,0.230883,17.181923,-0.024075,0.185465,16.994602,0.114848, + 0.228050,17.084835,-0.031469,-0.289221,16.883013,-0.239837,-0.353755,16.859406,-0.113506,-0.339201,16.936134,-0.159195, + -0.303704,16.806656,-0.194370,0.190994,17.131912,-0.037066,0.290422,16.446268,0.278086,0.131685,17.018507,-0.123655, + 0.213410,16.387436,0.287929,0.466541,17.235132,-1.169347,0.383938,17.347174,-1.177755,0.295913,17.315960,-1.205435, + 0.323224,17.240305,-1.206971,1.380690,16.952644,0.428808,1.418406,16.911612,0.276476,1.421239,17.008701,0.283872, + 1.376867,16.821650,0.418831,-1.171883,20.082268,0.727431,2.452135,19.879326,1.756994,2.455059,19.798307,1.726889, + -1.167861,20.043320,0.701115,-1.569662,20.098503,0.716376,2.649242,19.870905,1.811123,2.652166,19.789886,1.781018, + -1.565615,20.061010,0.690250,1.153645,19.707619,2.159813,1.153853,19.737633,2.006364,1.157658,19.596416,2.118493, + 1.157031,19.649559,1.973639,1.226471,20.502647,2.677752,1.328428,20.494850,2.701149,1.199394,20.469505,2.748019, + 1.288848,20.452057,2.782403,1.094196,19.381727,1.850391,1.133776,19.424522,1.769137,1.183650,19.364279,1.884774, + 1.223230,19.407074,1.803521,1.433755,18.040525,0.525456,1.473335,18.083321,0.444203,1.523209,18.023079,0.559841, + 1.562789,18.065872,0.478587,2.665834,19.911806,1.735561,2.563877,19.917435,1.710953,2.640540,19.880205,1.844864, + 0.923249,20.757648,-3.239479,1.896182,20.924870,-2.954256,0.914060,20.973738,-3.163611,1.790126,20.919420,-2.749068, + 0.858861,20.953119,-2.955836,1.780287,21.025200,-2.685558,1.916602,20.226337,-2.503590,1.960502,20.231888,-2.593267, + 2.003616,20.220713,-2.463066,2.047515,20.226263,-2.552743,-0.385154,20.231155,-3.075180,-0.355458,20.239851,-3.187411, + -0.259182,20.224932,-3.042330,-0.229486,20.233627,-3.154560,0.680952,20.043886,-2.711343,0.728900,20.057167,-2.892690, + 0.775104,20.039268,-2.686788,0.823051,20.052551,-2.868134,2.761677,19.784201,-2.318615,2.787161,19.790806,-2.415087, + 2.893624,19.777731,-2.284203,2.919108,19.784334,-2.380675,3.347314,19.571526,-2.176335,3.372798,19.578131,-2.272807, + 3.441466,19.566908,-2.151780,3.466950,19.573513,-2.248252,0.854315,21.062634,-2.917810,1.687271,21.077621,-2.481664, + 0.801441,21.109629,-2.706238,3.433901,21.248653,-1.955353,2.020115,20.342739,-2.566276,-0.821209,21.245045,-1.329177, + 1.991798,20.239046,-2.477199,3.260285,21.453367,-0.535767,-0.640306,20.385330,-1.927999,3.374039,20.436911,-1.422927, + 3.272823,20.427885,-0.862267,-0.399134,18.813087,-3.147473,-0.729958,18.924757,-2.029401,0.948991,21.394014,-2.606364, + 0.809594,21.484798,-1.093712,3.271642,18.508192,-1.606274,2.017282,20.245651,-2.573671,-1.407994,18.810686,-0.010864, + -0.433003,19.825943,-2.768381,-0.445488,19.390938,-2.801578,-0.623345,19.195013,-2.197345,-0.642875,20.947098,-1.812047, + -0.456640,21.014772,-2.460755,-0.812670,19.847559,-1.621095,3.308148,20.948540,-0.829446,3.407920,20.925480,-1.387531, + 3.170354,19.952822,-0.287888,3.440113,20.111036,-2.107475,3.375408,18.492691,-2.194000,-0.352965,17.650543,-3.244083, + 1.994631,20.336134,-2.469804,3.224889,18.642986,-1.013606,-0.234950,21.411564,-2.918505,3.398546,21.209990,-1.967339, + 0.783395,20.306166,-2.895473,-0.787113,21.207851,-1.322716,0.757911,20.299561,-2.799001,3.221445,21.410509,-0.548961, + -0.427298,20.578587,-2.628085,-0.632695,20.370987,-1.926970,3.357647,20.416683,-1.428642,3.256318,20.410728,-0.870052, + -0.365702,18.816378,-3.138697,-0.694782,18.937288,-2.019250,0.959712,21.353062,-2.607373,0.816039,21.442633,-1.095952, + 3.240198,18.529659,-1.613065,0.786228,20.403254,-2.888078,-0.425858,19.821926,-2.766726,-0.437776,19.396179,-2.800368, + -0.615250,19.203526,-2.196266,-0.635615,20.920794,-1.811930,-0.450361,20.994160,-2.457907,-0.299671,19.930853,-3.115023, + -0.777721,19.840124,-1.612371,3.291355,20.920702,-0.839377,3.390911,20.894949,-1.394115,3.133745,19.942116,-0.298291, + 3.407589,20.099291,-2.116870,3.343063,18.520252,-2.200657,-0.431012,17.654280,-3.263235,0.760744,20.396648,-2.791606, + 3.190276,18.660809,-1.021529,-1.036594,18.688362,-1.260127,-0.958545,18.684786,-1.240952,-0.957947,18.589497,-1.261165, + -1.035995,18.593075,-1.280340,-1.950143,18.536160,0.001398,-1.362936,18.740417,-0.258363,-1.880508,18.468815,-0.008826, + -1.283005,18.644955,-0.236941,-1.961239,18.536783,-0.078279,-1.353299,18.645115,-0.276068,-1.292643,18.740257,-0.219236, + -1.891605,18.469439,-0.088504,-1.588335,18.587099,-0.073256,-1.649608,18.659201,-0.060416,-1.672945,18.658203,-0.134079, + -1.611671,18.586102,-0.146921,-0.994775,19.963076,-1.180767,-0.916727,19.959408,-1.161607,-0.918073,19.862877,-1.174600, + -0.996121,19.866545,-1.193759,-1.841407,20.027304,0.354381,-1.419470,19.953190,-0.183033,-1.803173,19.939777,0.373517, + -1.353455,19.852110,-0.145804,-1.884195,19.995447,0.294162,-1.428652,19.856630,-0.174035,-1.344272,19.948669,-0.154801, + -1.845962,19.907921,0.313298,-1.544864,19.865034,0.196888,-1.573476,19.953550,0.175345,-1.624810,19.928898,0.123105, + -1.596199,19.840382,0.144646,-1.029134,21.446966,-0.769981,-0.951088,21.443232,-0.750829,-0.953920,21.346142,-0.758224, + -1.031967,21.349878,-0.777376,2.910728,21.156515,0.250892,-1.469409,21.176632,0.415861,-1.523667,21.039768,0.798612, + -1.392340,21.076931,0.424874,-1.595251,21.143368,0.791081,-1.467293,21.081295,0.395977,-1.394455,21.172268,0.444757, + 2.988774,21.152779,0.270043,2.991607,21.249868,0.277438,-1.531191,21.128971,0.831836,2.913561,21.253605,0.258286, + -1.587727,21.054165,0.757856,2.763432,21.334217,1.489790,2.713543,21.093365,1.950169,2.840500,21.234516,1.498803, + 2.641959,21.196964,1.942639,2.765547,21.238880,1.469907,2.838385,21.329853,1.518686,2.706019,21.182570,1.983394, + 2.649483,21.107761,1.909413,3.167748,19.831543,-0.019724,3.177190,19.909639,-0.002893,3.081336,19.922386,-0.008433, + 3.071894,19.844290,-0.025264,2.693224,19.850840,1.259368,2.868837,19.824116,1.750177,2.799552,19.917374,1.274492, + 2.759139,19.763577,1.735504,2.789837,19.840696,1.252166,2.702939,19.927515,1.281694,2.776007,19.829655,1.771848, + 2.851968,19.758036,1.713832,-0.256048,21.362823,1.391401,-0.351722,21.291475,1.396001,-0.163780,21.232008,0.930913, + -0.070790,21.312799,0.958960,-0.277596,21.270361,1.401606,-0.146273,21.327724,0.935471,-0.330174,21.383938,1.385797, + -0.088297,21.217085,0.954401,0.402648,21.287901,-0.518079,0.324814,21.301052,-0.533598,0.339825,21.379400,-0.542487, + 0.417659,21.366249,-0.526967,1.465869,21.314842,-0.253590,1.388035,21.327993,-0.269110,1.373044,21.247723,-0.261953, + 1.450879,21.234571,-0.246433,1.280234,21.272778,1.167523,1.064729,21.472683,1.598849,1.222732,21.382818,1.144171, + 1.116632,21.359591,1.619588,1.299198,21.368277,1.164507,1.203768,21.287319,1.147189,1.042587,21.381504,1.616567, + 1.138774,21.450769,1.601870,-0.600673,20.949741,-1.777705,-0.668333,20.950954,-1.786453,-0.662152,20.893524,-1.870509, + -0.594492,20.892313,-1.861760,-0.437731,21.094919,-2.443850,-0.504554,21.094044,-2.457468,-0.506936,21.006437,-2.411944, + -0.440112,21.007313,-2.398326,-0.587644,20.437576,-1.955349,-0.655304,20.438789,-1.964098,-0.658654,20.354446,-1.906783, + -0.590994,20.353235,-1.898035,-0.404741,20.618357,-2.542160,-0.471565,20.617481,-2.555778,-0.457247,20.579399,-2.644962, + -0.390423,20.580275,-2.631345,-0.589920,19.715626,-2.087167,-0.655254,19.717829,-2.106666,-0.638672,19.669371,-2.194768, + -0.572692,19.667336,-2.177713,-0.410770,19.864702,-2.763649,-0.461191,19.867126,-2.778890,-0.469785,19.793987,-2.737547, + -0.418972,19.791664,-2.723788,-0.567381,19.219620,-2.243278,-0.633361,19.221655,-2.260331,-0.645776,19.130821,-2.198124, + -0.579796,19.128786,-2.181071,-0.418900,19.431322,-2.773561,-0.469713,19.433645,-2.787321,-0.459929,19.390772,-2.845662, + -0.409118,19.388449,-2.831903,3.239861,18.981825,-1.051562,3.294477,18.991535,-1.536522,3.205263,18.992607,-1.060225, + 3.264642,19.002642,-1.543538,3.303617,21.335989,-1.384321,3.337600,21.378544,-1.345199,3.289481,21.425112,-0.841426, + 3.264072,21.371851,-0.982312,-0.697632,21.320889,-1.681863,-0.456558,21.334793,-2.382997,-0.337507,21.347975,-2.624598, + -0.616365,19.693474,-2.103214,-0.601886,18.899088,-2.220154,-0.445771,18.890385,-2.902600,-0.613934,18.884333,-2.224346, + -0.475641,18.879532,-2.924181,-0.623761,19.695709,-2.105014,-0.434601,20.596352,-2.628798,-0.607743,20.690975,-1.908133, + -0.630967,20.691874,-1.914100,-0.545731,20.504080,-2.276324,-0.525002,20.501730,-2.264292,-0.555808,20.503561,-2.232808, + -0.579152,20.995768,-2.129887,-0.558422,20.993416,-2.117855,-0.548152,20.996628,-2.161208,3.372962,20.680607,-1.406586, + 3.254725,20.626728,-0.794840,3.396198,20.679684,-1.400664,3.388469,20.722610,-1.412056,3.279476,20.670958,-0.829599, + 3.256240,20.671881,-0.835520,3.325947,20.408213,-1.152465,3.346711,20.407274,-1.140301,3.316542,20.417337,-1.109711, + 3.334599,20.919807,-1.100496,3.358057,20.919334,-1.095454,3.355272,20.913292,-1.139433,1.899635,20.705265,-3.052903, + 0.996757,20.736221,-3.525358,2.030601,20.666014,-3.325523,1.000530,20.504021,-3.583490,2.019274,20.436703,-3.399320, + 1.060851,20.489729,-3.817467,2.132279,20.413315,-3.609319,1.061913,20.332703,-3.851068,2.114481,20.311831,-3.641797, + 1.142453,20.325186,-4.161296,2.182474,20.269619,-3.940752,1.132151,19.986082,-4.185565,2.177938,20.008348,-3.947189, + 1.262725,19.495352,-4.778506,2.409112,19.465904,-4.350677,1.249535,19.201811,-4.806227,2.364021,18.812061,-4.543660, + -0.394522,18.904871,-3.167979,-0.316475,18.901136,-3.148828,-0.319308,18.804047,-3.156222,-0.397355,18.807783,-3.175375, + -0.336266,20.150707,-3.087647,-0.258219,20.146971,-3.068495,-0.261052,20.049883,-3.075891,-0.339098,20.053619,-3.095042, + -0.347799,21.466511,-2.903835,-0.269752,21.462774,-2.884683,-0.272585,21.365686,-2.892078,-0.350632,21.369423,-2.911231, + -1.496161,20.125174,0.635677,-1.541941,20.073399,0.737000,1.827313,17.402206,-2.626236,1.913190,17.445473,-2.601798, + 1.832682,17.479023,-2.620768,1.922737,17.399927,-2.601185,2.672291,18.516617,1.015304,2.546952,19.913048,1.775023, + 3.219801,17.344814,-2.267907,3.192571,17.383278,-2.273676,3.296920,17.398918,-2.246076,3.324149,17.360455,-2.240307, + 0.931454,17.467459,-2.858420,0.848969,17.525450,-2.877448,0.760905,17.512024,-2.901630,0.788134,17.473560,-2.895862, + 2.830224,19.705250,-2.320641,3.318175,19.829525,-4.201020,2.853363,21.077967,-2.149111,2.749101,17.534452,-2.415687, + 2.910529,19.721855,-2.631280,2.920725,20.459356,-2.526484,1.224988,19.017466,-4.809552,0.792302,18.905331,-3.171586, + 1.203007,18.264130,-4.866932,0.770321,18.151993,-3.228966,0.890679,20.176538,-3.309745,0.703200,18.862064,-2.838078, + 0.873155,19.618160,-3.347555,3.344531,20.570145,-4.143354,1.291124,21.284044,-4.636910,1.072505,20.223661,-3.998060, + 1.055589,19.665440,-4.038172,3.314866,21.113503,-4.121686,3.197443,17.806463,-4.379105,1.234798,17.880358,-4.892500, + 0.815835,21.104206,-2.679832,0.716170,17.718216,-2.934411,2.929500,21.358252,0.208059,2.777558,19.695543,-2.330147, + 3.269349,19.832502,-4.221407,2.798728,21.006960,-2.162687,2.699062,17.620968,-2.417266,2.858791,19.724167,-2.641825, + 2.868851,20.461651,-2.536740,1.267932,19.015944,-4.806005,0.832509,18.903097,-3.157678,1.245951,18.262606,-4.863385, + 0.810528,18.149761,-3.215058,0.931277,20.174408,-3.297316,0.743717,18.889473,-2.819782,0.913745,19.616028,-3.335096, + 3.295494,20.573132,-4.163796,1.331973,21.210751,-4.638830,1.114252,20.221828,-3.989985,1.097333,19.663607,-4.030082, + 1.694485,20.020908,-4.066497,1.423152,19.337545,-4.792666,2.279858,19.259804,-4.365159,2.845675,19.042908,-4.400622, + 2.604671,19.377409,-4.441386,2.437410,20.167627,-4.309022,2.608171,21.133879,-4.238737,2.379919,20.195713,-4.293600, + 2.533648,20.395300,-4.283601,2.656682,20.305233,-4.349051,2.502953,20.105646,-4.359050,2.403202,20.161257,-4.186635, + 2.552315,20.364223,-4.174181,2.675349,20.274157,-4.239632,2.526236,20.071192,-4.252086,3.387761,18.382767,-2.249217, + 3.395799,18.459730,-2.227217,3.330407,18.466503,-2.227688,3.322369,18.389540,-2.249687,3.130914,18.262686,-1.004956, + 3.267232,18.408350,-0.538280,3.197022,18.342398,-1.018378,3.165691,18.333776,-0.531796,3.196798,18.261986,-1.015927, + 3.131137,18.343098,-1.007405,3.173978,18.409319,-0.517777,3.258945,18.332806,-0.552300,3.439756,20.055346,-2.118550, + 3.451419,20.134390,-2.110057,3.385179,20.145206,-2.128222,3.373516,20.066162,-2.136714,-1.100982,19.998276,-1.086078, + 3.038961,19.913542,0.026341,3.038475,19.800970,0.007037,-1.102810,19.853849,-1.106229,-1.119351,19.966568,-0.942447, + 3.003377,19.891024,0.158547,3.002891,19.778452,0.139243,-1.121179,19.822144,-0.962598,1.286500,19.978762,-0.351615, + 1.323943,20.002455,-0.490727,1.286044,19.873148,-0.369725,1.323487,19.896841,-0.508838,-1.070416,18.759905,-1.431144, + 3.245497,18.582417,-0.966418,3.247290,18.471628,-0.994126,-1.036921,18.609051,-1.477304,-1.088514,18.724140,-1.289316, + 3.209975,18.549334,-0.836436,3.211768,18.438545,-0.864144,-1.055018,18.573286,-1.335475,1.316149,18.599609,-0.724642, + 1.353526,18.634420,-0.861415,1.317831,18.495668,-0.750637,1.355209,18.530479,-0.887410,-1.049262,17.445110,-1.764504, + 3.087595,17.254860,-0.660096,3.086482,17.118883,-0.681395,-1.036068,17.334961,-1.781888,-1.067426,17.420191,-1.620384, + 3.052010,17.232079,-0.527935,3.050896,17.096102,-0.549234,-1.054232,17.310041,-1.637767,1.335104,17.289558,-1.043335, + 1.372548,17.313528,-1.182400,1.334154,17.150866,-1.067497,1.371599,17.174835,-1.206561,2.926927,19.511959,-0.086789, + 2.958446,19.537996,-0.226975,3.044098,19.506969,-0.060293,3.075617,19.533005,-0.200480,-0.920272,21.556906,-0.840507, + -0.887059,17.273624,-1.740877,-0.724353,17.274298,-1.854213,-0.765426,21.576328,-0.945492,-0.890317,21.581650,-0.973733, + -0.855545,17.280046,-1.884735,-0.755866,17.267876,-1.710355,-0.795380,21.551586,-0.812266,-0.911093,19.712963,-1.160477, + -0.879574,19.738998,-1.300663,-0.793922,19.707972,-1.133981,-0.762403,19.734007,-1.274167,-12.452233,19.365656,-4.702726, + -12.702902,19.375967,-4.740325,-12.451587,19.384501,-4.701807,-12.702106,19.401014,-4.739059,-12.598932,19.402180,-5.341558, + -12.346498,19.400999,-5.269482,-12.345852,19.419844,-5.268562,-12.598136,19.427227,-5.340292,-13.034415,19.389225,-4.747076, + -13.036510,19.317410,-4.752545,-12.862391,19.441616,-5.461116,-12.864486,19.369801,-5.466586,-12.407529,19.290051,-4.634296, + -12.405434,19.361866,-4.628826,-12.292851,19.342962,-5.333208,-12.290756,19.414778,-5.327738,-12.590470,19.416775,-5.342424, + -12.698179,19.420103,-4.745294,-12.824810,19.427219,-5.386189,-12.824081,19.446077,-5.385703,-12.589502,19.441843,-5.341779, + -12.699749,19.374428,-4.747508,-12.971889,19.388258,-4.786529,-12.971161,19.407116,-4.786043,-12.279303,15.490206,-6.703893, + -12.148116,19.483944,-6.455858,-12.053965,19.479326,-6.431303,-12.185150,15.485588,-6.679338,-12.304787,15.483601,-6.607421, + -12.173601,19.477339,-6.359385,-12.079449,19.472721,-6.334830,-12.210634,15.478983,-6.582866,-11.350004,15.441301,-6.411999, + -11.218720,19.435270,-6.164295,-11.124568,19.430653,-6.139740,-11.255852,15.436684,-6.387444,-11.375488,15.434696,-6.315526, + -11.244205,19.428665,-6.067822,-11.150052,19.424047,-6.043268,-11.281336,15.430079,-6.290971,-10.470573,15.390905,-6.079217, + -10.354219,19.378302,-5.775502,-10.260068,19.373684,-5.750947,-10.376422,15.386288,-6.054662,-10.496058,15.384302,-5.982744, + -10.379704,19.371696,-5.679029,-10.285552,19.367079,-5.654475,-10.401906,15.379684,-5.958189,-13.197603,15.534172,-6.915398, + -13.081250,19.521568,-6.611683,-12.987099,19.516949,-6.587128,-13.103452,15.529554,-6.890843,-13.223087,15.527569,-6.818926, + -13.106734,19.514963,-6.515211,-13.012583,19.510345,-6.490656,-13.128936,15.522951,-6.794371,-14.227524,15.575167,-7.059041, + -14.111170,19.562561,-6.755326,-13.989587,19.556599,-6.723617,-14.105940,15.569204,-7.027332,-14.253008,15.568563,-6.962569, + -14.136655,19.555958,-6.658854,-14.015071,19.549994,-6.627145,-14.131424,15.562599,-6.930860,-10.388758,15.411058,-6.091936, + -14.166442,15.596334,-7.077168,-14.163609,15.693422,-7.069773,-10.385925,15.508148,-6.084540,-10.414242,15.404455,-5.995463, + -14.191926,15.589729,-6.980695,-14.189093,15.686817,-6.973300,-10.411409,15.501543,-5.988068,-10.276337,19.263710,-5.798484, + -14.054020,19.448984,-6.783716,-14.051188,19.546072,-6.776321,-10.273503,19.360798,-5.791089,-10.301821,19.257105,-5.702012, + -14.079505,19.442381,-6.687244,-14.076672,19.539469,-6.679849,-10.298988,19.354193,-5.694617,-10.292998,18.692719,-5.841976, + -14.070683,18.877993,-6.827208,-14.067849,18.975080,-6.819813,-10.290165,18.789806,-5.834581,-10.318482,18.686113,-5.745503, + -14.096167,18.871387,-6.730736,-14.093333,18.968477,-6.723341,-10.315649,18.783201,-5.738109,-13.419564,16.888102,-8.823846, + -13.357125,19.027859,-8.660864,-10.000690,18.840656,-7.787041,-10.039813,16.722340,-7.942397,-13.970846,16.754503,-6.858671, + -13.908407,18.894260,-6.695688,-10.468482,18.725548,-5.798545,-10.530921,16.585791,-5.961528,-14.169890,15.614780,-6.989276, + -10.429405,15.431328,-6.013746,-12.917994,15.255505,-4.719342,-12.815295,19.434845,-4.318322,-12.719649,19.430685,-4.300340, + -12.822349,15.251345,-4.701360,-12.952700,15.244160,-4.557104,-12.834019,19.427927,-4.220333,-12.738372,19.423767,-4.202351, + -12.857054,15.240000,-4.539123,-11.882589,15.201385,-4.415019,-11.768673,19.384296,-4.065191,-11.674520,19.379679,-4.040636, + -11.788437,15.196768,-4.390464,-11.911596,15.193869,-4.305211,-11.794157,19.377693,-3.968719,-11.700005,19.373075,-3.944164, + -11.817444,15.189251,-4.280656,-11.014313,15.123369,-4.190995,-10.898170,19.382559,-3.835358,-10.804019,19.377941,-3.810803, + -10.920161,15.118752,-4.166440,-11.055866,15.112600,-4.033692,-10.936201,19.372702,-3.691390,-10.842050,19.368084,-3.666835, + -10.961714,15.107983,-4.009137,-13.971157,15.300322,-4.913786,-13.872255,19.478985,-4.502425,-13.777245,19.474609,-4.481390, + -13.876145,15.295946,-4.892752,-14.012224,15.288414,-4.741732,-13.894119,19.472208,-4.405080,-13.799108,19.467833,-4.384045, + -13.917212,15.284040,-4.720697,-14.921800,15.278837,-4.982974,-14.818399,19.549774,-4.639606,-14.706996,19.544645,-4.614943, + -14.826788,15.274462,-4.961939,-14.953146,15.288830,-4.839310,-14.848735,19.540371,-4.504539,-14.737331,19.535242,-4.479876, + -14.858133,15.284454,-4.818275,-10.951587,15.150082,-4.129285,-14.902273,15.364977,-4.928685,-14.902191,15.529593,-4.896840, + -10.953114,15.313046,-4.092785,-10.977466,15.124832,-4.034871,-14.929268,15.326349,-4.849570,-14.922088,15.472164,-4.825301, + -10.974833,15.295103,-4.012883,-10.822450,19.186153,-3.793114,-14.808142,19.365040,-4.614796,-14.804678,19.542158,-4.593602, + -10.819271,19.363285,-3.771991,-10.847631,19.194426,-3.695004,-14.827402,19.373848,-4.525970,-14.823833,19.521116,-4.511462, + -10.844184,19.341702,-3.680526,-13.066669,14.978945,-3.173526,-12.801323,19.493280,-2.925439,-12.894713,19.504610,-2.900163, + -13.162630,14.983521,-3.157421,-13.082294,14.998154,-3.272088,-12.812753,19.506207,-2.973464,-12.906142,19.517536,-2.948189, + -13.178255,15.002729,-3.255983,-12.083736,14.933273,-3.099145,-11.842221,19.436224,-2.818079,-11.935202,19.442858,-2.846352, + -12.176717,14.939907,-3.127419,-12.061615,14.936579,-3.183978,-11.823712,19.437170,-2.878723,-11.916694,19.443806,-2.906996, + -12.154596,14.943214,-3.212251,-14.180534,14.996334,-3.061630,-14.017652,19.500795,-2.688275,-13.920531,19.498507,-2.695433, + -14.083414,14.994045,-3.068788,-14.174272,14.989511,-2.974464,-14.011389,19.493973,-2.601110,-13.914268,19.491684,-2.608268, + -14.077150,14.987223,-2.981622,-15.123541,14.922649,-3.010400,-14.989186,19.526968,-2.659695,-14.891859,19.524363,-2.662767, + -15.026215,14.920044,-3.013472,-15.120602,14.914972,-2.910738,-14.986246,19.519291,-2.560033,-14.888919,19.516685,-2.563105, + -15.023274,14.912367,-2.913810,-11.167092,14.978003,-2.825071,-15.091270,15.131676,-2.960706,-15.089773,15.182985,-2.956797, + -11.163962,15.029358,-2.823313,-11.173618,14.963066,-2.777970,-15.087969,15.108206,-2.869847,-15.086832,15.175308,-2.857136, + -11.170047,15.030405,-2.772846,-10.862779,19.208450,-2.671462,-14.967842,19.361526,-2.638523,-14.964787,19.466248,-2.630547, + -10.856392,19.313265,-2.667876,-10.881475,19.206230,-2.573251,-14.964902,19.353849,-2.538862,-14.961266,19.459818,-2.513539, + -10.878148,19.313232,-2.552675,-10.552304,14.713569,-3.239051,-11.016138,18.960060,-2.678384,-10.928653,18.957598,-2.650609, + -10.499020,14.708116,-3.174611,-10.602621,14.615088,-3.196862,-11.003728,19.377926,-2.655635,-10.916243,19.375463,-2.627860, + -10.548820,14.609582,-3.131797,-11.104473,17.780237,-2.373853,-10.992167,17.736870,-2.470388,-11.042531,17.773899,-2.298942, + -10.930223,17.730532,-2.395476,-15.096406,15.267582,-2.924446,-14.986717,19.307623,-2.584666,-14.897186,19.305225,-2.587492, + -15.009356,15.265251,-2.927193,-15.105487,14.956181,-2.947980,-14.980691,19.511971,-2.567109,-14.891161,19.509573,-2.569935, + -15.018436,14.953850,-2.950727,-15.072065,18.302370,-1.598566,-15.052049,18.273535,-1.750995,-14.949182,18.299080,-1.602445, + -14.954721,18.270929,-1.754068,-15.196605,18.297001,-1.588570,-15.194001,18.306736,-1.514351,-10.808959,17.751637,-2.183696, + -15.135113,15.000771,-2.934774,-11.139887,14.844965,-2.787666,-15.134471,14.982756,-2.899163,-11.147710,14.828950,-2.751952, + -14.998964,19.598795,-2.521920,-10.870782,19.450443,-2.568666,-15.003170,19.514740,-2.583860,-10.865811,19.363289,-2.626101, + -10.805775,17.739216,-2.277959,-14.056239,19.509573,-6.692615,-10.315754,19.326120,-5.717085,-14.890755,15.475388,-4.883043, + -10.867499,19.194136,-3.772937,-10.981151,15.299343,-4.069598,-14.777103,19.370180,-4.586382,-10.487122,15.427439,-6.055731, + -10.484485,15.507689,-6.050750,-10.390333,15.503071,-6.026195,-10.392969,15.422821,-6.031177,-11.043739,15.257536,-4.099770, + -11.041102,15.337788,-4.094789,-10.946951,15.333168,-4.070233,-10.949587,15.252918,-4.075215,-11.716270,15.487722,-6.376297, + -11.713634,15.567974,-6.371315,-11.619481,15.563356,-6.346761,-11.622118,15.483105,-6.351742,-12.255286,15.316956,-4.415746, + -12.252649,15.397207,-4.410764,-12.158498,15.392590,-4.386209,-12.161135,15.312338,-4.391191,-12.896779,15.555140,-6.809141, + -12.894142,15.635389,-6.804159,-12.799991,15.630772,-6.779604,-12.802628,15.550522,-6.784586,-13.534668,15.375273,-4.690234, + -13.532074,15.455526,-4.685262,-13.369627,15.448896,-4.661446,-13.372185,15.368641,-4.666409,-14.199937,15.609535,-7.024045, + -14.197300,15.689785,-7.019064,-14.103148,15.685167,-6.994509,-14.099314,15.604599,-6.997803,-14.928609,15.431479,-4.895118, + -14.926014,15.511732,-4.890147,-14.831002,15.507357,-4.869112,-14.827066,15.426802,-4.872638,-10.336676,17.789505,-5.861427, + -10.414126,17.793621,-5.882791,-10.416204,17.887575,-5.857155,-10.338753,17.883459,-5.835792,-10.882096,17.618458,-3.895441, + -10.959548,17.622349,-3.916843,-10.956716,17.719437,-3.909448,-10.879263,17.715546,-3.888046,-10.371502,16.655722,-5.941100, + -10.448955,16.659611,-5.962503,-10.446121,16.756699,-5.955108,-10.368670,16.752810,-5.933705,-10.912566,16.574217,-3.974979, + -10.990019,16.578108,-3.996382,-10.987185,16.675196,-3.988987,-10.909734,16.671305,-3.967584,-14.129574,16.937263,-6.914561, + -14.051527,16.933529,-6.895409,-14.054360,16.836439,-6.902804,-14.132407,16.840176,-6.921956,-14.868433,16.848925,-4.782928, + -14.789719,16.845392,-4.766692,-14.792551,16.748302,-4.774087,-14.871266,16.751837,-4.790322,-14.099657,18.067915,-6.816647, + -14.021608,18.064405,-6.797456,-14.019531,17.970451,-6.823092,-14.097579,17.973961,-6.842283,-14.826210,17.896809,-4.755710, + -14.747496,17.893276,-4.739475,-14.750328,17.796186,-4.746870,-14.829042,17.799721,-4.763105,-14.001015,19.527340,-6.703283, + -14.003057,19.447243,-6.710515,-14.097208,19.451860,-6.735070,-14.095166,19.531958,-6.727839,-14.726760,19.423334,-4.571891, + -14.728845,19.343239,-4.579133,-14.823856,19.347614,-4.600167,-14.821772,19.427710,-4.592925,-12.677702,19.471954,-6.483123, + -12.679745,19.391857,-6.490355,-12.773896,19.396475,-6.514910,-12.771854,19.476572,-6.507678,-13.310829,19.361870,-4.306544, + -13.312950,19.281776,-4.313794,-13.464831,19.287935,-4.337326,-13.462747,19.368031,-4.330082,-11.497193,19.404535,-6.050279, + -11.499236,19.324438,-6.057511,-11.593388,19.329056,-6.082066,-11.591346,19.409153,-6.074834,-12.046354,19.304415,-4.037545, + -12.048397,19.224318,-4.044777,-12.142549,19.228935,-4.069333,-12.140506,19.309032,-4.062100,-10.288199,19.345238,-5.734970, + -10.290241,19.265141,-5.742202,-10.384394,19.269758,-5.766757,-10.388823,19.350174,-5.761212,-10.842662,19.249168,-3.773385, + -10.844705,19.169071,-3.780617,-10.938856,19.173689,-3.805172,-10.943285,19.254105,-3.799628,-9.948431,15.525127,-7.952824, + -9.945794,15.605379,-7.947843,-9.851643,15.600761,-7.923287,-9.854280,15.520510,-7.928269,-10.487209,15.430267,-6.054861, + -10.484573,15.510517,-6.049880,-10.390421,15.505899,-6.025325,-10.393058,15.425650,-6.030306,-11.190067,15.586023,-8.276647, + -11.187430,15.666275,-8.271665,-11.093279,15.661657,-8.247110,-11.095916,15.581406,-8.252091,-11.716358,15.490551,-6.375427, + -11.713721,15.570803,-6.370445,-11.619570,15.566185,-6.345891,-11.622207,15.485933,-6.350872,-12.425529,15.646618,-8.598859, + -12.422892,15.726870,-8.593877,-12.328740,15.722252,-8.569322,-12.331377,15.642000,-8.574304,-12.896867,15.557968,-6.808271, + -12.894230,15.638220,-6.803289,-12.800078,15.633602,-6.778734,-12.802715,15.553350,-6.783716,-13.662992,15.707310,-8.921593, + -13.660355,15.787561,-8.916612,-13.542133,15.781763,-8.885778,-13.544770,15.701511,-8.890760,-14.165213,15.610657,-7.014096, + -14.162576,15.690907,-7.009114,-14.068424,15.686289,-6.984559,-14.071060,15.606039,-6.989541,-10.355864,16.538347,-6.006072, + -14.133547,16.723623,-6.991303,-14.130714,16.820711,-6.983909,-10.353030,16.635437,-5.998676,-10.381348,16.531744,-5.909599, + -14.159032,16.717018,-6.894831,-14.156199,16.814106,-6.887436,-10.378515,16.628832,-5.902204,-10.316864,17.777729,-5.922537, + -14.094547,17.963005,-6.907770,-14.096624,18.056959,-6.882133,-10.317434,17.868740,-5.903236,-10.342424,17.751755,-5.829413, + -14.120108,17.937031,-6.814646,-14.122186,18.030985,-6.789010,-10.342995,17.842764,-5.810113,-10.300893,15.487034,-6.668732, + -10.298604,15.530966,-6.665975,-10.249582,15.523151,-6.582161,-10.251871,15.479219,-6.584918,-11.014267,15.481926,-6.220875, + -11.011978,15.525858,-6.218118,-10.962956,15.518044,-6.134305,-10.965245,15.474112,-6.137062,-11.563413,15.547195,-6.974884, + -11.561247,15.591131,-6.972159,-11.522511,15.583822,-6.891028,-11.524676,15.539885,-6.893754,-12.299650,15.544970,-6.556107, + -12.297361,15.588900,-6.553349,-12.248340,15.581085,-6.469537,-12.250628,15.537155,-6.472294,-12.731581,15.606249,-7.302663, + -12.729292,15.650179,-7.299905,-12.680270,15.642365,-7.216092,-12.682559,15.598434,-7.218849,-13.451426,15.601458,-6.856493, + -13.449137,15.645388,-6.853736,-13.400115,15.637573,-6.769923,-13.402403,15.593643,-6.772681,-13.925817,15.716942,-7.610555, + -13.927687,15.673120,-7.614904,-14.011815,15.671837,-7.565817,-14.009947,15.715658,-7.561468,-13.464835,15.637947,-6.857538, + -13.466703,15.594126,-6.861887,-13.550833,15.592840,-6.812799,-13.548964,15.636663,-6.808451,-12.694203,15.655169,-7.271367, + -12.696073,15.611347,-7.275715,-12.780201,15.610064,-7.226628,-12.778333,15.653885,-7.222280,-12.209539,15.576382,-6.530153, + -12.211408,15.532560,-6.534501,-12.295536,15.531277,-6.485415,-12.293668,15.575098,-6.481066,-11.491179,15.595776,-6.952477, + -11.492925,15.551949,-6.956794,-11.566768,15.550161,-6.905024,-11.565022,15.593988,-6.900708,-11.027677,15.518419,-6.221919, + -11.029546,15.474598,-6.226268,-11.113674,15.473312,-6.177181,-11.111806,15.517134,-6.172832,-10.301610,15.527206,-6.685982, + -10.258837,15.524351,-6.675734,-10.282661,15.470558,-6.594500,-10.325434,15.473413,-6.604749,-10.436650,16.117825,-6.024757, + -10.393877,16.114967,-6.014509,-10.413434,16.041767,-5.953288,-10.456207,16.044622,-5.963537,-14.000464,15.726652,-7.629609, + -13.957651,15.726921,-7.619136,-13.972472,15.653662,-7.556668,-14.015285,15.653393,-7.567142,-14.173466,16.298962,-6.999477, + -14.130652,16.299231,-6.989004,-14.145473,16.225971,-6.926536,-14.188287,16.225702,-6.937009,-10.320439,16.764757,-2.533617, + -10.890087,16.680838,-3.087782,-10.959091,16.582495,-2.990607,-10.368135,16.838724,-2.575365,-10.627748,17.855446,-2.448336, + -10.817734,17.721176,-2.891173,-10.763222,17.833496,-2.910505,-10.599751,17.763147,-2.461979,-15.132587,18.285957,-2.865615, + -15.060596,18.284029,-2.867887,-15.063429,18.186941,-2.875283,-15.135420,18.188869,-2.873010,-15.023376,18.305273,-1.716932, + -14.951385,18.303347,-1.719204,-14.954218,18.206257,-1.726599,-15.026210,18.208185,-1.724327,-10.831248,17.803585,-2.941323, + -10.698695,17.829796,-2.420394,-10.749708,17.751087,-2.860355,-10.670698,17.737497,-2.434037,-10.919624,17.746807,-3.881212, + -10.958079,17.719246,-3.894467,-10.960477,17.628956,-3.901281,-10.887618,17.654831,-3.879054,-15.203417,17.063961,-2.976417, + -15.131425,17.062033,-2.978690,-15.134258,16.964945,-2.986085,-15.206249,16.966873,-2.983812,-15.016001,16.938753,-2.226570, + -14.944009,16.936825,-2.228842,-14.946842,16.839737,-2.236238,-15.018834,16.841665,-2.233966,-10.871246,19.328506,-5.087492, + -10.956682,19.254698,-5.034870,-10.954587,19.326511,-5.029399,-11.028380,19.277405,-4.396095,-11.074361,19.213823,-4.492838, + -11.072265,19.285637,-4.487368,-11.408479,19.348774,-5.147776,-11.410575,19.276958,-5.153246,-11.452363,19.357006,-5.239049, + -11.571321,19.309139,-4.604720,-11.573417,19.237324,-4.610190,-11.656757,19.235331,-4.552099,-11.654661,19.307146,-4.546629, + -13.747824,19.402050,-4.990699,-13.749920,19.330235,-4.996169,-13.700556,19.393848,-4.901129,-13.659051,19.445179,-5.551265, + -13.661146,19.373365,-5.556735,-13.577932,19.447470,-5.612411,-11.276527,19.281252,-4.511871,-11.277498,19.247972,-4.514407, + -11.370855,19.251734,-4.528029,-11.369884,19.285013,-4.525495,-11.210038,19.326439,-5.130601,-11.211009,19.293159,-5.133136, + -11.155789,19.290609,-5.120811,-11.154819,19.323889,-5.118277,-11.042850,19.259254,-4.451649,-11.616180,19.286556,-4.590450, + -11.438330,19.327099,-5.190861,-10.909137,19.301302,-5.054924,-11.128329,16.759798,-8.258442,-10.488010,16.724775,-8.089098, + -10.905777,16.612965,-6.409382,-11.679434,16.650547,-6.551060,-13.121018,15.248953,-4.243298,-14.305143,15.276119,-4.310523, + -13.079646,15.259413,-4.230073,-13.080381,15.234232,-4.231991,-13.093017,15.184465,-3.554866,-14.339550,15.230974,-3.633830, + -13.133506,15.203218,-3.596704,-13.134241,15.178038,-3.598622,-12.850482,15.192343,-3.901354,-12.850236,15.216141,-3.892878, + -12.862798,15.190601,-3.858450,-14.304604,15.301317,-4.308761,-13.357176,15.191078,-3.897366,-13.356929,15.214878,-3.888891, + -13.347185,15.216875,-3.932439,-14.345469,15.290539,-4.323249,-12.681426,16.760281,-7.907053,-12.679331,16.832096,-7.901582, + -12.616304,16.819412,-7.759199,-12.618400,16.747597,-7.764668,-12.894361,16.709932,-7.124757,-12.892266,16.781746,-7.119287, + -12.766989,16.785196,-7.212560,-12.769084,16.713381,-7.218030,-12.164559,16.725340,-7.646306,-12.162464,16.797153,-7.640836, + -12.037187,16.800604,-7.734109,-12.039282,16.728788,-7.739579,-12.297192,16.690237,-7.094959,-12.295096,16.762053,-7.089489, + -12.232070,16.749369,-6.947105,-12.234166,16.677553,-6.952576,-12.718887,16.750326,-7.528993,-12.717916,16.783607,-7.526458, + -12.730639,16.779785,-7.471412,-12.731609,16.746506,-7.473947,-12.201995,16.720531,-7.335821,-12.201023,16.753811,-7.333286, + -12.184898,16.757465,-7.387445,-12.185869,16.724186,-7.389980,-12.567452,16.713387,-7.135013,-12.566481,16.746666,-7.132478, + -12.511261,16.744116,-7.120153,-12.512233,16.710836,-7.122688,-12.352387,16.752262,-7.727795,-12.351417,16.785542,-7.725260, + -12.416026,16.788870,-7.744188,-12.416997,16.755589,-7.746723,-12.813129,16.735973,-7.198364,-12.265937,16.709295,-7.057732, + -12.118131,16.751310,-7.665978,-12.646245,16.777370,-7.805790,-12.981886,15.431095,-5.781909,-12.979790,15.502911,-5.776440, + -12.894020,15.495102,-5.706769,-12.896115,15.423286,-5.712239,-13.142628,15.388058,-5.115607,-13.140532,15.459873,-5.110137, + -13.035009,15.459360,-5.143844,-13.037106,15.387547,-5.149314,-12.463689,15.403513,-5.618303,-12.461594,15.475328,-5.612833, + -12.356071,15.474817,-5.646540,-12.358166,15.403002,-5.652010,-12.557723,15.366693,-5.059190,-12.555628,15.438509,-5.053720, + -12.469858,15.430700,-4.984049,-12.471953,15.358885,-4.989519,-13.008707,15.425329,-5.462920,-13.007736,15.458609,-5.460385, + -13.016605,15.454620,-5.404600,-13.017576,15.421339,-5.407134,-12.479555,15.397936,-5.305985,-12.478584,15.431217,-5.303451, + -12.466259,15.435057,-5.358586,-12.467230,15.401777,-5.361122,-12.830221,15.388475,-5.080425,-12.829250,15.421755,-5.077890, + -12.773298,15.419477,-5.069416,-12.774270,15.386196,-5.071951,-12.656836,15.429585,-5.686563,-12.655865,15.462864,-5.684028, + -12.711061,15.465422,-5.696450,-12.712032,15.432140,-5.698985,-13.079803,15.409866,-5.126603,-12.524070,15.385849,-5.024169, + -12.418865,15.429768,-5.641080,-12.926889,15.452984,-5.751273,-14.266030,15.488167,-6.039219,-14.263935,15.559980,-6.033750, + -14.180456,15.552032,-5.961365,-14.182551,15.480217,-5.966835,-14.431415,15.446365,-5.387389,-14.429319,15.518181,-5.381919, + -14.322774,15.517382,-5.412234,-14.324869,15.445566,-5.417704,-13.729708,15.459368,-5.866578,-13.727612,15.531183,-5.861108, + -13.621068,15.530382,-5.891423,-13.623163,15.458569,-5.896893,-13.818306,15.422243,-5.305554,-13.816211,15.494059,-5.300084, + -13.732732,15.486109,-5.227699,-13.734827,15.414295,-5.233169,-14.268148,15.482138,-5.726242,-14.267178,15.515417,-5.723707, + -14.277835,15.511503,-5.668230,-14.278806,15.478224,-5.670765,-13.744354,15.453615,-5.552440,-13.743382,15.486897,-5.549905, + -13.729291,15.490652,-5.604622,-13.730262,15.457373,-5.607157,-14.102077,15.445223,-5.338201,-14.101105,15.478502,-5.335666, + -14.045459,15.476097,-5.325405,-14.046431,15.442818,-5.327940,-13.909295,15.485323,-5.938520,-13.908323,15.518602,-5.935986, + -13.963089,15.521280,-5.950169,-13.964060,15.488001,-5.952703,-14.368217,15.468012,-5.396390,-13.785743,15.441351,-5.269492, + -13.684115,15.485491,-5.887933,-14.211988,15.509953,-6.006860,-14.111895,19.466030,-5.651522,-14.113990,19.394215,-5.656992, + -14.159163,19.474232,-5.741092,-14.254388,19.425373,-5.102849,-14.256483,19.353558,-5.108318,-14.337603,19.351269,-5.047174, + -14.335506,19.423082,-5.041703,-13.977097,19.398224,-5.012972,-13.978067,19.364944,-5.015507,-14.032833,19.367622,-5.029690, + -14.031862,19.400902,-5.027155,-13.894726,19.443407,-5.637735,-13.895697,19.410128,-5.640270,-13.840051,19.407722,-5.630009, + -13.839080,19.441002,-5.627474,-13.717028,19.375713,-4.956127,-14.298622,19.402649,-5.086947,-14.143265,19.444315,-5.693493, + -13.614510,19.420126,-5.578489,-10.979627,15.206913,-4.068312,-14.890903,15.391378,-4.915011,-10.873176,19.262386,-5.092527, + -11.030310,19.211287,-4.401132,-11.454292,19.290888,-5.244085,-11.656590,19.241028,-4.551665,-13.702485,19.327730,-4.906165, + -13.579862,19.381351,-5.617447,-14.161092,19.408113,-5.746128,-14.337436,19.356964,-5.046740,-11.233137,16.748310,-8.304729, + -11.231042,16.820126,-8.299258,-11.105769,16.813982,-8.266587,-11.107865,16.742167,-8.272058,-11.742290,16.630465,-6.522825, + -11.740194,16.702280,-6.517355,-11.583796,16.704203,-6.602512,-11.585891,16.632387,-6.607982,-10.516097,16.713144,-8.117723, + -10.514002,16.784958,-8.112252,-10.388729,16.778814,-8.079580,-10.390825,16.707001,-8.085051,-10.933950,16.600414,-6.437954, + -10.931855,16.672230,-6.432484,-10.837708,16.658018,-6.281984,-10.839804,16.586205,-6.287454,-12.094253,19.020922,-8.318150, + -12.747760,19.052774,-8.486013,-13.190758,18.948671,-6.949539,-12.486438,18.913933,-6.763276,-12.576649,18.931164,-6.954948, + -13.017683,18.952913,-7.071543,-12.868955,18.982895,-7.522150,-12.465340,18.963223,-7.418457,-12.465872,18.944990,-7.419846, + -12.869486,18.964664,-7.523538,-13.018214,18.934683,-7.072931,-12.577181,18.912933,-6.956337,-12.650002,18.964170,-7.495898, + -12.650736,18.938988,-7.497816,-12.696730,18.941111,-7.508057,-12.695995,18.966291,-7.506139,-12.830976,18.931311,-6.995160, + -12.831711,18.906128,-6.997078,-12.786584,18.903782,-6.983554,-12.785850,18.928963,-6.981636,-12.956626,18.958258,-7.325794, + -12.957361,18.933077,-7.327712,-12.968124,18.929852,-7.281233,-12.967389,18.955032,-7.279315,-12.509851,18.931778,-7.149272, + -12.510585,18.906595,-7.151191,-12.491693,18.911057,-7.216978,-12.490957,18.936237,-7.215060,-11.184986,19.291220,-3.531439, + -11.188400,19.219419,-3.531849,-11.273351,19.227961,-3.478423,-11.269937,19.299759,-3.478012,-11.331704,19.312748,-2.916614, + -11.335118,19.240950,-2.917024,-11.388171,19.239330,-3.003770,-11.384757,19.311131,-3.003360,-11.698167,19.339216,-3.583138, + -11.701581,19.267418,-3.583548,-11.754633,19.265800,-3.670293,-11.751219,19.337599,-3.669882,-11.826969,19.351263,-3.112301, + -11.830383,19.279465,-3.112712,-11.915334,19.288006,-3.059286,-11.911920,19.359804,-3.058875,-11.980990,19.025591,-8.305747, + -11.983086,18.953775,-8.311216,-12.108358,18.959919,-8.343888,-12.106263,19.031734,-8.338418,-12.403143,18.907854,-6.637967, + -12.405238,18.836039,-6.643437,-12.499385,18.850248,-6.793937,-12.497290,18.922064,-6.788467,-12.709828,19.061335,-8.495831, + -12.711924,18.989519,-8.501300,-12.837196,18.995663,-8.533972,-12.835101,19.067478,-8.528502,-13.152940,18.954218,-6.959463, + -13.155035,18.882404,-6.964933,-13.311434,18.880482,-6.879776,-13.309338,18.952295,-6.874306,-10.268759,16.697647,-7.782149, + -10.262942,16.896984,-7.766966,-10.069633,16.887505,-7.716550,-10.075450,16.688166,-7.731733,-10.289640,16.682962,-7.581357, + -10.283824,16.882299,-7.566174,-10.120602,16.874294,-7.523605,-10.126418,16.674957,-7.538789,-10.252914,18.680061,-7.220439, + -10.248535,18.830141,-7.209008,-10.111189,18.823404,-7.173187,-10.115568,18.673325,-7.184619,-10.297061,18.668619,-7.053321, + -10.292682,18.818701,-7.041889,-10.149317,18.811668,-7.004499,-10.153697,18.661589,-7.015931,-13.457482,18.859867,-8.443955, + -13.446027,19.045933,-8.428191,-13.285647,19.038067,-8.386364,-13.297103,18.852001,-8.402128,-13.492703,18.852594,-8.334972, + -13.487266,19.038954,-8.320778,-13.326885,19.031088,-8.278951,-13.332324,18.844728,-8.293145,-13.623173,16.816332,-8.192246, + -13.617812,17.000034,-8.178254,-13.483689,16.992159,-8.126234,-13.489050,16.808456,-8.140226,-13.670143,16.804159,-8.014436, + -13.664783,16.987862,-8.000443,-13.498671,16.979715,-7.957120,-13.504031,16.796011,-7.971113,-13.698927,16.887417,-7.920731, + -13.690889,17.162851,-7.899752,-13.571739,17.157007,-7.868677,-13.579777,16.881575,-7.889656,-13.735102,16.878042,-7.783787, + -13.727065,17.153477,-7.762807,-13.600970,17.147293,-7.729921,-13.609007,16.871859,-7.750901,-13.639240,17.125792,-8.129459, + -13.631203,17.401226,-8.108480,-13.538025,17.395359,-8.067139,-13.546062,17.119925,-8.088118,-13.675415,17.116417,-7.992516, + -13.667377,17.391851,-7.971536,-13.542210,17.385712,-7.938892,-13.550247,17.110279,-7.959871,-13.413338,19.063375,-8.191616, + -13.163596,19.051126,-8.126483,-13.167725,18.909645,-8.137259,-13.417467,18.921894,-8.202393,-13.449513,19.054001,-8.054672, + -13.182409,19.040899,-7.985011,-13.186539,18.899418,-7.995787,-13.453642,18.912519,-8.065449,-13.199491,19.037083,-8.394992, + -12.948867,19.024792,-8.329628,-12.950935,18.953926,-8.335026,-13.201559,18.966217,-8.400390,-13.253745,19.026056,-8.229437, + -12.983435,19.012798,-8.158939,-12.985503,18.941933,-8.164337,-13.255814,18.955191,-8.234835,-10.501793,18.836792,-7.029168, + -10.225466,18.823238,-6.957101,-10.229671,18.679104,-6.968080,-10.506000,18.692657,-7.040146,-10.546363,18.819860,-6.861459, + -10.276052,18.806602,-6.790961,-10.280100,18.667891,-6.801527,-10.550410,18.681149,-6.872025,-13.211068,16.810698,-8.314577, + -13.464017,16.823103,-8.380548,-13.461949,16.893970,-8.375150,-13.209001,16.881565,-8.309179,-13.238118,16.798336,-8.141928, + -13.508429,16.811594,-8.212425,-13.506361,16.882460,-8.207027,-13.236050,16.869204,-8.136530,-11.620057,16.715284,-7.671434, + -11.890368,16.728542,-7.741932,-11.888300,16.799408,-7.736534,-11.617990,16.786150,-7.666036,-11.643635,16.702753,-7.497879, + -11.913554,16.716969,-7.581114,-11.911486,16.787834,-7.575716,-11.641566,16.773619,-7.492481,-10.734219,15.389528,-5.719675, + -10.942624,15.399750,-5.774028,-10.941030,15.454388,-5.769866,-10.732625,15.444166,-5.715513,-10.768459,15.380655,-5.590055, + -10.976864,15.390877,-5.644408,-10.975270,15.445513,-5.640247,-10.766865,15.435291,-5.585894,-12.416956,15.364107,-4.741248, + -12.628668,15.373316,-4.781051,-12.627074,15.427952,-4.776889,-12.415361,15.418743,-4.737087,-12.455427,15.357466,-4.639328, + -12.648801,15.365877,-4.675682,-12.647207,15.420515,-4.671520,-12.453833,15.412102,-4.635166,-10.957921,15.386093,-5.588863, + -11.144381,15.395237,-5.637493,-11.142786,15.449875,-5.633331,-10.956327,15.440729,-5.584702,-10.983070,15.379576,-5.493662, + -11.169529,15.388720,-5.542292,-11.167934,15.443357,-5.538130,-10.981476,15.434212,-5.489501,-12.627418,19.459986,-6.120594, + -12.419012,19.449764,-6.066241,-12.420607,19.395128,-6.070403,-12.629011,19.405348,-6.124755,-12.654821,19.452883,-6.016855, + -12.446416,19.442661,-5.962502,-12.448010,19.388025,-5.966664,-12.656415,19.398247,-6.021017,-13.079812,15.071749,-2.300899, + -13.061193,15.064396,-2.236781,-13.476195,17.081669,-2.460714,-12.862047,14.991266,-3.223799,-13.275124,16.167200,-2.845150, + -12.776020,14.981121,-3.223124,-13.362398,16.941172,-2.568583,-13.881570,15.093061,-2.980847,-13.697568,16.958479,-2.403020, + -13.830090,15.123756,-2.979857,-12.197773,15.164812,-3.068912,-12.206567,15.160898,-3.043539,-11.900621,15.136377,-2.941293, + -11.915896,14.994146,-2.997552,-13.841472,15.148273,-2.972579,-12.197494,15.016361,-3.091716,-13.576721,15.180470,-2.963044, + -13.581052,15.140507,-2.955294,-12.965961,15.022463,-3.083068,-12.961632,15.062426,-3.090819,-12.206287,15.012447,-3.066343, + -12.850435,14.984312,-3.215254,-13.134758,15.177950,-2.465821,-13.130427,15.217913,-2.473571,-11.924690,14.990232,-2.972179, + -13.084981,15.219793,-2.313984,-13.517149,15.181549,-2.785455,-13.513617,15.214146,-2.791776,-13.495971,15.222540,-2.738623, + -13.499503,15.189943,-2.732303,-12.985698,15.089527,-2.841701,-12.982166,15.122124,-2.848022,-12.996254,15.113157,-2.902133, + -12.999786,15.080561,-2.895813,-13.131954,15.222858,-2.412482,-13.128422,15.255455,-2.418802,-13.075059,15.246429,-2.435523, + -13.078591,15.213833,-2.429203,-13.253846,15.109583,-3.111722,-13.250314,15.142179,-3.118043,-13.304949,15.150509,-3.105622, + -13.308481,15.117912,-3.099301,-11.891829,15.140291,-2.966666,-11.626944,17.635881,-2.429758,-11.633780,17.630575,-2.404038, + -11.237592,17.598955,-2.305267,-11.236119,17.437202,-2.366887,-11.599339,17.470570,-2.456536,-11.606174,17.465263,-2.430815, + -11.242955,17.431894,-2.341167,-11.230756,17.604261,-2.330987,-14.858493,17.445475,-1.953562,-14.852721,17.435366,-1.929049, + -14.523480,17.448271,-2.001244,-14.529449,17.283842,-2.097689,-14.886105,17.279194,-2.015634,-14.880333,17.269085,-1.991121, + -14.523678,17.273733,-2.073176,-14.529252,17.458380,-2.025758,-11.607904,15.311474,-2.841568,-11.616697,15.307560,-2.816195, + -11.446622,15.293583,-2.759410,-11.421599,15.174469,-2.798137,-11.644905,15.193960,-2.872518,-11.653698,15.190046,-2.847145, + -11.430392,15.170555,-2.772764,-11.437828,15.297497,-2.784783,-14.666322,19.321568,-2.338634,-14.664763,19.338081,-2.317156, + -14.939554,19.344296,-2.302005,-14.945329,19.448524,-2.416012,-14.643999,19.441360,-2.432359,-14.642442,19.457874,-2.410880, + -14.943771,19.465038,-2.394534,-14.941113,19.327782,-2.323482,-14.310274,18.937349,-2.167114,-14.303433,18.951174,-2.144786, + -14.614130,18.994316,-2.057235,-14.625376,19.097996,-2.169590,-14.298874,19.067259,-2.232517,-14.292032,19.081083,-2.210189, + -14.618534,19.111820,-2.147262,-14.620972,18.980492,-2.079563,-10.973071,18.235807,-2.328492,-10.978473,18.241499,-2.302514, + -11.264169,18.260742,-2.366145,-11.268711,18.376173,-2.420723,-10.943325,18.355577,-2.348540,-10.948727,18.361267,-2.322562, + -11.274115,18.381865,-2.394745,-11.258766,18.255051,-2.392123,-11.267218,18.408512,-2.427653,-11.272621,18.414204,-2.401675, + -11.551350,18.425510,-2.462119,-11.537766,18.567158,-2.518670,-11.239159,18.554728,-2.453845,-11.244561,18.560419,-2.427867, + -11.543169,18.572847,-2.492692,-11.545947,18.419821,-2.488098,-11.056151,18.622717,-2.430677,-11.061555,18.628407,-2.404698, + -11.261327,18.636421,-2.448001,-11.250802,18.734865,-2.495723,-11.036979,18.726068,-2.449327,-11.042381,18.731758,-2.423349, + -11.256205,18.740555,-2.469745,-11.255924,18.630732,-2.473979,-14.694191,19.542208,-3.534397,-14.697065,19.464563,-3.531745, + -14.600089,19.456472,-3.575133,-14.597214,19.534117,-3.577786,-14.488673,19.510796,-4.130517,-14.490437,19.454323,-4.129458, + -14.439062,19.458822,-4.036528,-14.437299,19.515295,-4.037587,-14.167994,19.521460,-3.442862,-14.170870,19.443815,-3.440209, + -14.126267,19.448553,-3.349643,-14.123392,19.526197,-3.352297,-14.021694,19.502920,-3.907642,-14.023458,19.446445,-3.906583, + -13.933253,19.438593,-3.952335,-13.931490,19.495066,-3.953394,-12.490330,17.980101,-2.583418,-12.617060,14.951950,-3.283091, + -12.624884,14.935934,-3.247378,-12.377678,19.553898,-2.907955,-12.372706,19.466743,-2.965391,-12.477563,17.966352,-2.655931, + -12.277699,17.470287,-6.337678,-12.252214,17.476892,-6.434150,-12.183547,17.465670,-6.313123,-12.158063,17.472275,-6.409595, + -11.337132,17.423862,-6.088523,-11.311647,17.430468,-6.184996,-11.242980,17.419245,-6.063969,-11.217496,17.425850,-6.160440, + -13.442223,16.242306,-2.223204,-13.032715,15.994606,-2.930228,-13.944834,16.129869,-2.603734,-11.036494,16.684761,-3.957959, + -10.996238,16.695194,-4.110354,-10.906857,16.678404,-3.924149,-10.866601,16.688837,-4.076544,-14.880848,17.757856,-4.697504, + -14.848928,17.767750,-4.839627,-14.776332,17.753044,-4.674365,-14.744411,17.762938,-4.816488,-15.271768,17.717058,-2.932211, + -15.274708,17.724735,-3.031873,-15.174440,17.714453,-2.935282,-15.177381,17.722128,-3.034945,-12.628987,15.038353,-3.252985, + -12.608892,15.066742,-3.348016,-12.605762,15.118097,-3.346258,-12.452623,19.316393,-2.994192,-12.467992,19.421175,-2.875405, + -12.446235,19.421206,-2.990606,-14.073721,19.494087,-6.652952,-14.004078,19.490671,-6.634789,-14.008699,19.332306,-6.646851, + -14.078342,19.335722,-6.665014,-14.843513,17.990805,-4.746331,-14.773233,17.987568,-4.730772,-14.777855,17.829201,-4.742835, + -14.848133,17.832438,-4.758394,-14.150947,16.847607,-6.854530,-14.081304,16.844191,-6.836368,-14.085924,16.685825,-6.848430, + -14.155568,16.689240,-6.866593,-14.893143,15.651001,-4.914294,-14.953527,15.533092,-4.878031,-14.827485,15.489399,-4.910797, + -14.897764,15.492636,-4.926357,-14.127167,17.966499,-6.770469,-14.057524,17.963083,-6.752306,-14.062145,17.804716,-6.764368, + -14.131788,17.808132,-6.782531,-14.863852,16.963938,-4.816917,-14.793571,16.960701,-4.801358,-14.798193,16.802334,-4.813420, + -14.868472,16.805571,-4.828979,-10.416552,15.452345,-5.964299,-10.486194,15.455761,-5.982462,-10.481573,15.614128,-5.970400, + -10.411930,15.610712,-5.952236,-10.900681,16.479227,-4.097883,-10.970325,16.482643,-4.116046,-10.965704,16.641010,-4.103984, + -10.896061,16.637594,-4.085821,-10.359208,17.839638,-5.803707,-10.428851,17.843052,-5.821870,-10.424231,18.001419,-5.809808, + -10.354588,17.998003,-5.791645,-10.857604,19.072578,-3.785846,-10.889306,19.060774,-3.787532,-10.928811,19.234606,-3.792801, + -10.852983,19.230944,-3.773784,-10.754178,16.935074,-4.457555,-10.749103,17.187120,-4.429239,-10.735823,16.934210,-4.453233, + -10.724714,17.186022,-4.423438,-10.606922,17.238096,-5.020987,-10.609345,16.975645,-5.015245,-10.590989,16.974781,-5.010923, + -10.582535,17.236996,-5.015184,-10.750728,17.509621,-4.351048,-10.820299,17.513054,-4.369476,-10.558678,17.523172,-5.061769, + -10.628250,17.526606,-5.080196,-10.838928,16.874588,-4.418107,-10.769356,16.871155,-4.399678,-10.651920,16.939821,-5.100163, + -10.582348,16.936388,-5.081735,-10.592031,17.230120,-5.021108,-10.704636,17.183786,-4.426675,-10.584897,17.467918,-5.002664, + -10.566444,17.467085,-4.998773,-10.567501,17.229012,-5.015934,-10.749129,17.185881,-4.437136,-10.741364,17.459063,-4.404182, + -10.722911,17.458229,-4.400290,-11.702203,15.327515,-4.905070,-11.459568,15.314783,-4.832128,-11.702636,15.308735,-4.906939, + -11.460106,15.289812,-4.834545,-11.293898,15.368740,-5.417466,-11.552699,15.368063,-5.461529,-11.553132,15.349283,-5.463397, + -11.294436,15.343769,-5.419883,-11.157181,15.292822,-4.697210,-11.155016,15.364655,-4.692006,-11.003613,15.337244,-5.415983, + -11.001449,15.409077,-5.410779,-11.774170,15.395020,-4.853484,-11.776336,15.323187,-4.858688,-11.575356,15.435314,-5.534129, + -11.577522,15.363482,-5.539333,-11.300737,15.354630,-5.423748,-11.460413,15.271803,-4.844248,-11.070178,15.343027,-5.363358, + -11.070498,15.324293,-5.365651,-11.301163,15.329723,-5.426795,-11.459366,15.317320,-4.839706,-11.196644,15.300652,-4.759245, + -11.196964,15.281918,-4.761538,-13.744944,18.038919,-1.965966,-14.025123,19.574326,-2.573736,-14.029328,19.490269,-2.635677, + -14.161271,14.976299,-2.986591,-14.160629,14.958284,-2.950979,-14.121439,18.045132,-1.956881,-11.051323,15.178539,-4.089210, + -11.048687,15.258789,-4.084228,-10.954535,15.254171,-4.059673,-10.957171,15.173922,-4.064654,-11.046625,14.660617,-2.537287, + -11.152009,15.196838,-3.236556,-10.953594,14.688391,-2.545208,-11.045225,15.280855,-3.200560,-11.033716,14.602077,-2.590939, + -11.037391,15.205734,-3.228265,-11.159843,15.271959,-3.208852,-10.940685,14.629850,-2.598860,-10.843060,19.181826,-3.762745, + -10.915919,19.155949,-3.784972,-10.952918,19.264715,-3.788335,-10.880059,19.290590,-3.766108,-10.515291,19.366055,-2.177557, + -10.908039,19.229671,-2.825494,-10.562379,19.440411,-2.219302,-11.016915,19.317905,-2.818691,-10.446390,19.391083,-2.210695, + -10.946518,19.333672,-2.854293,-10.978437,19.213905,-2.789891,-10.493478,19.465439,-2.252441,-14.111357,15.080893,-2.958244, + -14.103015,15.153605,-3.050481,-14.105163,15.102276,-3.053532,-11.024345,14.852442,-2.676686,-10.976200,19.400255,-2.767566, + -10.882048,19.395638,-2.743011,-10.930194,14.847824,-2.652131,-11.065899,14.841673,-2.519383,-10.969723,19.388216,-2.611990, + -10.842691,19.381987,-2.578860,-10.971747,14.837055,-2.494828,-11.034531,16.698536,-2.869304,-11.038781,16.711151,-3.033308, + -10.907499,16.692305,-2.836174,-10.944630,16.706533,-3.008753,-10.721928,16.158098,-3.045377,-10.743144,16.118795,-2.908678, + -10.800680,16.124683,-2.978260,-10.664672,16.152239,-2.976134,-10.989915,16.669296,-3.022296,-10.431834,16.824133,-2.528445, + -10.859263,16.594036,-3.056093,-10.384139,16.750164,-2.486696,-10.916889,16.713852,-3.951206,-11.024257,16.632105,-3.986374, + -10.992249,16.540127,-3.984216,-10.919391,16.566002,-3.961989,-10.888025,17.925306,-2.745517,-10.799170,17.933035,-2.881002, + -10.893322,17.937653,-2.905557,-10.760994,17.919077,-2.712386,-13.451207,16.559313,-2.956140,-13.039237,16.863541,-2.574754, + -14.096780,15.409655,-3.047617,-14.006880,19.243614,-2.634353,-13.920503,19.240377,-2.637089,-14.012795,15.406507,-3.050275, + -14.130675,15.091846,-2.965050,-14.002979,19.447395,-2.616735,-13.916602,19.444159,-2.619470,-14.046690,15.088699,-2.967707, + -14.054090,18.045315,-1.971277,-14.034667,18.016323,-2.123689,-13.935534,18.040871,-1.975030,-13.940767,18.012802,-2.126662, + -14.969417,18.229473,-1.771140,-14.957792,18.323772,-1.749665,-14.956766,18.205967,-1.674768,-14.945141,18.300266,-1.653294, + -13.652534,17.926401,-2.144751,-13.665184,17.949907,-2.241122,-13.640908,18.020702,-2.123276,-13.653560,18.044209,-2.219646, + -11.945920,18.000614,-3.011662,-11.958571,18.024120,-3.108033,-11.934296,18.094913,-2.990187,-11.946946,18.118420,-3.086558, + -14.017103,19.449417,-2.703073,-14.021385,19.344662,-2.709435,-14.022882,19.445343,-2.586730,-11.723678,19.308973,-3.936608, + -11.782752,15.319691,-4.198926,-14.733089,19.437902,-4.476388,-14.826763,15.409128,-4.790963,-11.711921,17.801617,-4.017316, + -14.761702,17.940918,-4.674909,-10.851407,19.270277,-3.708093,-10.977032,17.722664,-3.887311,-11.651237,17.825727,-4.245459, + -10.920335,17.789881,-4.054838,-11.649240,17.631094,-4.289719,-10.918338,17.595247,-4.099097,-11.608411,17.649181,-4.442872, + -10.877508,17.613335,-4.252250,-11.608788,17.438921,-4.480963,-10.877886,17.403074,-4.290341,-11.558952,17.436827,-4.672446, + -10.828050,17.400978,-4.481824,-11.567065,17.224562,-4.681255,-10.836163,17.188713,-4.490633,-11.520434,17.244152,-4.856369, + -10.789532,17.208305,-4.665748,-11.534569,17.022821,-4.843794,-10.800839,17.031240,-4.655687,-11.482137,17.043915,-5.040869, + -10.751234,17.008068,-4.850247,-11.500581,16.806456,-5.014805,-10.764094,16.842499,-4.832074,-11.432899,16.823996,-5.271019, + -10.704435,16.700321,-5.087563,-11.470689,15.463160,-5.382031,-10.739786,15.427313,-5.191410,-10.977564,16.716732,-4.037216, + -11.051438,15.297466,-4.018776,-11.748089,16.473537,-4.128387,-13.392871,15.235432,-4.633863,-13.366415,15.273342,-4.736853, + -13.366747,15.437979,-4.705109,-13.388039,15.380615,-4.633905,-12.799460,19.286015,-4.262575,-12.819504,19.441483,-4.149579, + -12.796140,19.463140,-4.241416,-12.823011,19.294210,-4.164072,-13.041726,17.905161,-6.613903,-13.016165,17.931137,-6.707026, + -13.043382,17.998291,-6.590041,-13.017820,18.024265,-6.683165,-13.014297,15.537767,-6.749631,-12.988813,15.544371,-6.846103, + -13.011465,15.634855,-6.742236,-12.985981,15.641460,-6.838708,-12.948579,15.563572,-6.784847,-13.450298,15.419163,-4.696743, + -12.794750,19.456392,-6.477707,-13.280468,19.302788,-4.274987,-12.793855,15.554293,-6.722309,-12.680203,19.449085,-6.425648, + -12.862633,16.657656,-6.612116,-12.837149,16.664261,-6.708588,-12.859799,16.754744,-6.604721,-12.834315,16.761349,-6.701193, + -12.624299,18.807047,-6.449883,-12.598815,18.813652,-6.546356,-12.621466,18.904137,-6.442488,-12.595982,18.910740,-6.538960, + -12.430184,19.369175,-6.357985,-12.404700,19.375778,-6.454457,-12.427351,19.466263,-6.350590,-12.401867,19.472868,-6.447062, + -13.365839,15.374285,-4.619164,-13.339584,17.242373,-4.377524,-13.860081,16.283834,-4.751097,-12.811834,19.360428,-4.178940, + -13.918579,16.298899,-4.926468,-13.955091,16.288208,-4.772132,-13.823568,16.294523,-4.905433,-14.719966,19.397524,-4.586777, + -11.244739,19.282278,-3.505019,-15.089800,15.147762,-3.274457,-11.008044,19.263845,-2.665416,-11.057313,15.210224,-3.270279, + -15.229749,19.531401,-3.423524,-14.089531,15.211184,-3.593636,-13.998198,19.466389,-3.950269,-14.170564,19.476452,-3.407097, + -12.210537,15.265045,-4.362622,-12.673182,15.103439,-3.317776,-10.937802,16.640207,-3.959140,-10.933078,16.595768,-3.086601, + -10.808407,17.605309,-3.183455,-10.944391,17.650984,-3.882299,-14.852322,16.711672,-4.814878,-15.277330,16.879990,-3.418205, + -14.821817,17.757072,-4.735250,-15.264482,18.124649,-3.425051,-11.722403,19.325012,-3.621768,-11.847769,19.338173,-3.098395, + -12.629264,15.112007,-3.257294,-13.292791,15.252840,-4.237164,-12.859811,15.237219,-4.195373,-12.872252,15.177917,-3.554991, + -14.649947,15.232868,-3.662020,-14.559678,15.291348,-4.316738,-13.694451,15.095325,-3.107951,-14.664276,19.520226,-3.546674, + -14.462864,19.509163,-4.077089,-13.912354,19.487490,-2.704161,-13.523682,19.348875,-4.369195,-11.732738,19.324768,-3.956838, + -10.895616,19.249876,-3.752221,-11.343653,19.293093,-2.969336,-12.461082,19.393993,-2.977647,-11.021600,15.245085,-4.076786, + -14.851233,15.425444,-4.902200,-14.682528,19.358528,-4.579557,-11.282545,19.248032,-3.517350,-15.054814,15.184244,-3.262718, + -11.054879,19.229122,-2.680165,-11.101887,15.247437,-3.279506,-15.188253,19.488552,-3.415496,-14.038342,15.288263,-4.344422, + -14.075955,15.219236,-3.589499,-13.978643,19.448273,-3.946343,-14.153240,19.457800,-3.406048,-12.214096,15.301359,-4.361357, + -12.685675,15.141848,-3.318447,-10.980515,16.653069,-3.969542,-10.980424,16.608467,-3.098239,-10.857251,17.600412,-3.196693, + -10.986912,17.645979,-3.893874,-14.813331,16.722422,-4.803842,-15.237112,16.886070,-3.407165,-14.783363,17.749363,-4.725621, + -15.223915,18.108852,-3.415416,-11.750159,19.289925,-3.631502,-11.875758,19.302229,-3.108249,-13.289068,15.260555,-4.235653, + -12.864854,15.245359,-4.196147,-12.880394,15.186401,-3.556561,-14.624949,15.240358,-3.654905,-14.533043,15.298559,-4.309208, + -13.270478,15.315104,-4.616054,-13.687884,15.133184,-3.103625,-14.636339,19.500826,-3.544212,-14.433464,19.490221,-4.070620, + -13.901581,19.447554,-2.704050,-13.511980,19.313362,-4.368535,-11.758556,19.290045,-3.966035,-10.939044,19.216627,-3.765969, + -11.382277,19.258032,-2.981940,-12.477570,19.356657,-2.984558,-12.264091,15.238020,-4.405503,-12.261455,15.318270,-4.400522, + -12.167303,15.313652,-4.375967,-12.169939,15.233402,-4.380948,-12.472048,14.581131,-3.048841,-12.546506,15.108751,-3.461249, + -12.400500,14.647234,-3.049423,-12.457508,15.190886,-3.425274,-12.448507,14.555014,-3.121198,-12.450022,15.114410,-3.449101, + -12.553992,15.185225,-3.437423,-12.376960,14.621116,-3.121782,-12.473550,14.922220,-3.199603,-12.549878,14.864845,-3.199604, + -12.527472,14.827856,-3.263648,-12.451145,14.885229,-3.263649,-13.471793,15.297251,-4.720476,-13.469157,15.377502,-4.715494, + -13.375005,15.372885,-4.690939,-13.377642,15.292633,-4.695921,-13.988525,14.761834,-3.214888,-13.723252,15.072950,-3.767313, + -13.909046,14.802638,-3.176071,-13.634764,15.144423,-3.712335,-13.942326,14.708187,-3.253092,-13.635127,15.065235,-3.726528, + -13.722889,15.152138,-3.753120,-13.862845,14.748990,-3.214275,-13.766330,15.022097,-3.363094,-13.845372,14.990282,-3.406197, + -13.809046,14.929802,-3.437733,-13.730002,14.961617,-3.394632,-14.930775,15.350424,-4.859622,-14.928139,15.430676,-4.854641, + -14.833986,15.426058,-4.830086,-14.836623,15.345806,-4.835067,-14.717986,19.411467,-4.525391,-15.072982,15.143738,-3.590685, + -15.066152,15.163036,-3.181106,-14.976282,15.220671,-3.564394,-15.166655,15.091785,-3.208246,-14.976274,15.141596,-3.579201, + -15.072990,15.222811,-3.575878,-14.715349,19.491718,-4.520410,-14.809502,19.496334,-4.544965,-15.161558,15.162390,-3.177248, + -14.812138,19.416084,-4.549946,-15.071247,15.092430,-3.212105,-15.282404,19.504450,-3.402479,-15.200933,19.542421,-2.888312, + -15.185705,19.581383,-3.376188,-15.301435,19.471170,-2.915452,-15.185697,19.502308,-3.390994,-15.282413,19.583525,-3.387673, + -15.296340,19.541775,-2.884454,-15.206028,19.471815,-2.919311,-13.456716,19.441767,-4.323783,-13.534550,19.454918,-4.339303, + -13.552178,19.359407,-4.331833,-13.474344,19.346256,-4.316313,-13.809011,19.385023,-3.131767,-13.925356,19.651087,-2.698037, + -13.869890,19.492571,-3.158003,-13.870520,19.540342,-2.672683,-13.790876,19.478434,-3.152610,-13.888025,19.399160,-3.137160, + -13.943396,19.564135,-2.662941,-13.852480,19.627295,-2.707779,-15.474937,16.521982,-2.960239,-15.414955,16.428640,-2.916026, + -15.201321,16.523966,-3.363731,-15.280610,16.620953,-3.380085,-15.391874,16.502378,-2.917412,-15.292334,16.542439,-3.393128, + -15.498017,16.448244,-2.958853,-15.189597,16.602480,-3.350688,-14.749036,16.800335,-4.827332,-14.761717,16.721027,-4.831971, + -14.848776,16.737318,-4.872519,-14.836094,16.816626,-4.867880,-14.804554,17.897528,-4.785549,-14.817234,17.818220,-4.790188, + -14.730175,17.801929,-4.749640,-14.717495,17.881237,-4.745001,-15.219979,17.986746,-3.416150,-15.557995,17.858526,-3.039650, + -15.320738,17.926321,-3.462599,-15.453893,17.912943,-2.993654,-15.308331,18.005201,-3.452789,-15.232388,17.907867,-3.425958, + -15.478531,17.839781,-2.990133,-15.533356,17.931686,-3.043171,-14.660253,15.283463,-3.638265,-14.663192,15.211819,-3.634906, + -14.583094,15.200956,-3.696247,-14.580154,15.272602,-3.699608,-14.578079,15.315731,-4.333477,-14.577503,15.243954,-4.334144, + -14.510035,15.250696,-4.263710,-14.510611,15.322475,-4.263041,-14.126278,15.260027,-3.644838,-14.129217,15.188383,-3.641478, + -14.068520,15.196541,-3.560912,-14.065580,15.268185,-3.564273,-14.100618,15.329157,-4.280830,-14.100042,15.257380,-4.281497, + -14.035865,15.253893,-4.355143,-14.036440,15.325670,-4.354476,-13.411127,15.230082,-3.542392,-13.412144,15.158476,-3.547327, + -13.338469,15.157536,-3.617093,-13.337451,15.229143,-3.612159,-13.328553,15.276909,-4.250351,-13.329847,15.221638,-4.254972, + -13.274998,15.221130,-4.191898,-13.273704,15.276402,-4.187276,-12.880193,15.225571,-3.604122,-12.881210,15.153965,-3.609057, + -12.812842,15.154724,-3.534446,-12.811825,15.226330,-3.529512,-12.908304,15.269434,-4.171938,-12.909599,15.214163,-4.176559, + -12.847276,15.213211,-4.232591,-12.845982,15.268482,-4.227969,-13.049032,19.409666,-3.258044,-12.999582,19.411076,-3.658973, + -13.052341,19.372053,-3.262002,-13.001759,19.380154,-3.661512,-14.853930,19.402597,-4.185029,-14.903515,19.445726,-4.167943, + -15.106556,19.499048,-3.704633,-15.014820,19.443962,-3.814698,-15.044432,15.203331,-3.648667,-14.960620,15.305986,-4.339969, + -14.889973,15.379545,-4.590224,-13.387887,15.199305,-3.543278,-12.581456,15.196661,-3.509992,-12.361797,15.267023,-4.150542, + -12.567190,15.183348,-3.507135,-12.346966,15.231760,-4.161987,-13.389909,15.191303,-3.544359,-14.055187,15.280596,-4.349397, + -14.378755,15.249214,-3.677095,-14.379293,15.224016,-3.678857,-14.085911,15.237783,-3.972296,-14.086065,15.261642,-3.963987, + -14.099607,15.236271,-3.929805,-14.592453,15.233765,-3.984776,-14.592607,15.257624,-3.976466,-14.581461,15.259371,-4.019688, + -14.230764,19.468895,-4.011590,-14.378267,19.471771,-3.403690,-14.230187,19.494095,-4.009866,-14.267228,19.483837,-4.032641, + -14.407099,19.490273,-3.454365,-14.407677,19.465075,-3.456088,-14.058578,19.471973,-3.680706,-14.060090,19.495897,-3.672725, + -14.080993,19.471010,-3.642079,-14.551565,19.492111,-3.794896,-14.551118,19.517361,-3.794172,-14.532016,19.505491,-3.832767, + -12.434322,3.494236,-5.882700,-12.483075,3.246099,-5.902847,-12.452108,3.498143,-5.887673,-12.506742,3.251237,-5.909411, + -12.313681,3.273245,-6.488976,-12.283061,3.529158,-6.439065,-12.300848,3.533065,-6.444038,-12.337347,3.278384,-6.495540, + -12.559582,2.923505,-5.888611,-12.491158,2.908714,-5.871549,-12.368647,3.006742,-6.594872,-12.300222,2.991952,-6.577810, + -12.374320,3.534229,-5.797862,-12.442743,3.549020,-5.814924,-12.199656,3.563501,-6.485658,-12.268079,3.578292,-6.502720, + -12.325417,3.283844,-6.494918,-12.522043,3.257452,-5.921491,-12.369267,3.050877,-6.522172,-12.386924,3.054810,-6.527568, + -12.348888,3.289072,-6.502090,-12.478937,3.247980,-5.909422,-12.534855,2.979266,-5.930400,-12.552512,2.983198,-5.935795, + -12.103430,3.308402,-7.337726,-12.085662,3.403521,-7.326521,-12.128914,3.301798,-7.241254,-12.111147,3.396916,-7.230049, + -8.126653,3.438354,-6.278321,-8.108885,3.533473,-6.267116,-8.152137,3.431749,-6.181849,-11.951241,4.252987,-7.129201, + -11.933474,4.348106,-7.117995,-8.134369,3.526868,-6.170643,-7.955878,4.352611,-6.170619,-11.754982,5.173848,-7.117970, + -11.737215,5.268968,-7.106765,-7.938110,4.447729,-6.159413,-7.981362,4.346006,-6.074146,-11.780466,5.167244,-7.021499, + -11.762699,5.262363,-7.010293,-7.963594,4.441125,-6.062941,-8.476321,1.566370,-6.498847,-12.275425,2.387609,-7.446198, + -12.257658,2.482728,-7.434993,-8.458553,1.661489,-6.487641,-8.501805,1.559766,-6.402374,-12.300909,2.381004,-7.349726, + -12.283142,2.476123,-7.338521,-8.484038,1.654885,-6.391169,-8.630540,0.549695,-6.609526,-12.463953,1.378309,-7.565097, + -12.441009,1.501142,-7.550627,-8.607596,0.672527,-6.595056,-8.656024,0.543090,-6.513054,-12.489437,1.371705,-7.468625, + -12.466493,1.494537,-7.454155,-8.633080,0.665922,-6.498584,-7.953851,4.432454,-6.200328,-8.666731,0.615968,-6.649921, + -8.759234,0.635964,-6.672988,-8.046354,4.452450,-6.223395,-7.979335,4.425849,-6.103856,-8.692216,0.609363,-6.553449, + -8.784719,0.629359,-6.576516,-8.071838,4.445845,-6.126923,-11.624574,5.225940,-7.115667,-12.337454,1.409454,-7.565260, + -12.429957,1.429450,-7.588327,-11.717077,5.245936,-7.138734,-11.650058,5.219336,-7.019195,-12.362938,1.402849,-7.468788, + -12.455442,1.422845,-7.491855,-11.742561,5.239331,-7.042261,-11.080545,5.108339,-6.980007,-11.793425,1.291853,-7.429600, + -11.885929,1.311849,-7.452667,-11.173048,5.128335,-7.003074,-11.106030,5.101735,-6.883534,-11.818910,1.285249,-7.333127, + -11.911413,1.305245,-7.356194,-11.198533,5.121731,-6.906601,-9.244205,1.202166,-8.794745,-11.282920,1.642867,-9.303123, + -10.627918,5.029797,-8.898227,-8.606416,4.616632,-8.392510,-9.771078,1.036697,-6.825304,-11.809793,1.477398,-7.333682, + -11.160646,4.952656,-6.924285,-9.121933,4.511954,-6.415908,-8.708680,0.633039,-6.572295,-8.002816,4.411943,-6.127128, + -12.800262,4.950269,-3.193316,-8.986309,4.125867,-2.242257,-9.212061,0.694008,-4.509753,-13.030764,1.321474,-5.292466, + -8.693866,2.339438,-4.518704,-12.705584,3.195084,-5.421007,-12.687817,3.290203,-5.409801,-8.676098,2.434557,-4.507498, + -8.722873,2.331921,-4.408896,-12.731069,3.188479,-5.324534,-12.713301,3.283598,-5.313329,-8.705105,2.427040,-4.397691, + -8.516737,3.290486,-4.404590,-12.527911,4.146273,-5.308954,-12.510143,4.241392,-5.297749,-8.498970,3.385605,-4.393384, + -8.545744,3.282969,-4.294782,-12.553395,4.139668,-5.212481,-12.535627,4.234787,-5.201276,-8.527976,3.378088,-4.283577, + -8.334537,4.157405,-4.233838,-12.402830,5.032933,-5.215211,-12.385063,5.128053,-5.204006,-8.316770,4.252524,-4.222632, + -8.376090,4.146636,-4.076535,-12.440861,5.023077,-5.071243,-12.423094,5.118196,-5.060038,-8.358322,4.241755,-4.065330, + -8.867406,1.389320,-4.646403,-12.883257,2.243894,-5.533060,-12.865490,2.339013,-5.521854,-8.849638,1.484439,-4.635198, + -8.896413,1.381802,-4.536595,-12.908741,2.237289,-5.436587,-12.890974,2.332408,-5.425382,-8.878645,1.476921,-4.525390, + -9.013332,0.436388,-4.657543,-13.088078,1.319926,-5.650421,-13.067245,1.431454,-5.637282,-8.991611,0.553131,-4.643819, + -9.069496,0.430840,-4.521394,-13.123437,1.310762,-5.516564,-13.102604,1.422290,-5.503426,-9.047773,0.547583,-4.507670, + -8.359289,4.235559,-4.206741,-9.058542,0.492026,-4.647742,-9.225399,0.523330,-4.648901,-8.526146,4.266863,-4.207901, + -8.361484,4.221117,-4.080668,-9.060737,0.477584,-4.521667,-9.234934,0.515240,-4.565105,-8.535681,4.258772,-4.124106, + -12.213857,5.082541,-5.126208,-12.919760,1.303406,-5.571402,-13.091028,1.339475,-5.606016,-12.385124,5.118610,-5.160824, + -12.251021,5.079663,-5.042848,-12.956924,1.300528,-5.488041,-13.098314,1.330684,-5.519840,-12.392410,5.109819,-5.074648, + -13.621083,1.209243,-3.708435,-10.014752,0.391907,-2.694781,-10.057832,0.299412,-2.730517,-13.640802,1.103675,-3.720872, + -13.646568,1.202639,-3.611963,-10.072724,0.387474,-2.613420,-10.115805,0.294979,-2.649156,-13.666286,1.097071,-3.624399, + -12.900696,5.065946,-3.254105,-8.852129,4.190790,-2.244547,-8.887900,4.004591,-2.257529,-12.936465,4.879746,-3.267088, + -12.926180,5.059341,-3.157633,-8.877614,4.184186,-2.148074,-8.913384,3.997987,-2.161057,-12.961950,4.873141,-3.170615, + -13.544955,1.104148,-3.659833,-12.814482,5.014856,-3.199142,-12.770100,5.005262,-3.188075,-13.500572,1.094555,-3.648766, + -13.583578,1.100731,-3.569586,-12.853104,5.011439,-3.108895,-12.795584,4.998658,-3.091602,-13.526056,1.087950,-3.552293, + -10.114350,4.342820,-1.473659,-12.419554,1.435204,-7.497645,-12.720404,4.898725,-3.143002,-11.713691,5.214109,-7.052479, + -12.644287,4.969490,-3.096823,-9.064450,4.195216,-2.205291,-9.093261,4.045307,-2.215635,-12.679010,4.788896,-3.109146, + -12.909441,5.050385,-3.161137,-8.883824,4.179565,-2.156589,-8.918015,4.001822,-2.168575,-12.943130,4.875334,-3.172807, + -10.112950,4.418298,-1.370902,-10.117863,4.389177,-1.528757,-10.153898,4.204379,-1.387150,-10.154791,4.196782,-1.542469, + -12.970282,1.341869,-5.496576,-8.567196,4.221539,-4.194565,-8.694493,0.630217,-6.568825,-8.046060,4.420544,-6.137703, + -12.419554,1.435204,-7.497645,-11.713691,5.214109,-7.052479,-9.191073,0.532075,-4.618103,-12.236459,5.044291,-5.103267, + -8.557637,4.248500,-4.185754,-12.926163,1.339057,-5.549376,-12.218317,5.046137,-5.070096,-12.232990,4.967581,-5.079350, + -12.325494,4.987577,-5.102417,-12.310821,5.066133,-5.093163,-12.788939,5.001135,-3.136279,-12.803612,4.922578,-3.145534, + -12.896115,4.942575,-3.168600,-12.881441,5.021131,-3.159346,-10.791154,4.745867,-4.713700,-10.798372,4.707227,-4.718252, + -10.890875,4.727223,-4.741319,-10.883657,4.765863,-4.736767,-11.294773,4.687611,-2.823019,-11.301991,4.648972,-2.827571, + -11.394494,4.668967,-2.850638,-11.387277,4.707607,-2.846086,-9.785224,4.509487,-4.463969,-9.791181,4.479341,-4.466216, + -9.883684,4.499337,-4.489282,-9.877728,4.529483,-4.487036,-10.252157,4.450587,-2.564435,-10.258114,4.420440,-2.566681, + -10.350617,4.440436,-2.589748,-10.344661,4.470583,-2.587502,-8.491931,4.240623,-4.140877,-8.506604,4.162066,-4.150131, + -8.599108,4.182062,-4.173198,-8.584435,4.260618,-4.163943,-8.971387,4.174952,-2.176168,-8.986060,4.096395,-2.185422, + -9.064886,4.113434,-2.205079,-9.050213,4.191990,-2.195825,-8.000078,4.347208,-6.157309,-8.076169,4.363798,-6.177482, + -8.058401,4.458917,-6.166277,-7.982310,4.442327,-6.146103,-8.491520,4.168851,-4.184710,-8.567611,4.185440,-4.204883, + -8.549844,4.280560,-4.193678,-8.473753,4.263969,-4.173504,-8.232029,3.105435,-6.303594,-8.308121,3.122025,-6.323767, + -8.290354,3.217143,-6.312562,-8.214262,3.200553,-6.292388,-8.720150,2.944859,-4.328900,-8.796241,2.961449,-4.349073, + -8.778474,3.056568,-4.337868,-8.702383,3.039978,-4.317695,-8.460630,1.881600,-6.447765,-8.536721,1.898190,-6.467938, + -8.518954,1.993309,-6.456733,-8.442863,1.976719,-6.436560,-8.941937,1.757500,-4.468775,-9.018028,1.774090,-4.488948, + -9.000261,1.869208,-4.477743,-8.924170,1.852619,-4.457569,-8.666411,0.588881,-6.590963,-8.776812,0.612847,-6.619356, + -8.759044,0.707966,-6.608150,-8.647423,0.690537,-6.578988,-9.144226,0.483477,-4.609770,-9.254626,0.507443,-4.638163, + -9.236858,0.602562,-4.626958,-9.125238,0.585133,-4.597795,-12.692862,3.006939,-5.335056,-12.624437,2.992148,-5.317994, + -12.642204,2.897029,-5.329199,-12.710629,2.911820,-5.346262,-13.182508,2.862616,-3.602810,-13.136355,2.852640,-3.591302, + -13.154123,2.757521,-3.602507,-13.200275,2.767497,-3.614016,-12.494619,4.031851,-5.241584,-12.426196,4.017060,-5.224522, + -12.443963,3.921941,-5.235727,-12.512386,3.936732,-5.252789,-12.978821,3.955801,-3.378351,-12.910397,3.941010,-3.361289, + -12.928164,3.845891,-3.372494,-12.996588,3.860682,-3.389556,-10.237104,4.915343,-6.716495,-10.251701,4.836918,-6.726905, + -10.347274,4.855269,-6.731143,-10.332677,4.933695,-6.720732,-10.727806,4.749608,-4.735690,-10.742181,4.671137,-4.746068, + -10.834684,4.691133,-4.769135,-10.820311,4.769604,-4.758757,-9.159049,4.681470,-6.440579,-9.173424,4.602999,-6.450958, + -9.265927,4.622995,-6.474025,-9.251553,4.701466,-6.463646,-9.732876,4.534538,-4.487592,-9.747251,4.456067,-4.497971, + -9.839754,4.476063,-4.521038,-9.825379,4.554534,-4.510659,-8.722416,3.114076,-4.278886,-8.790840,3.128867,-4.295948, + -8.773073,3.223986,-4.284743,-8.704649,3.209195,-4.267681,-9.185925,3.026827,-2.348734,-9.254349,3.041618,-2.365797, + -9.236582,3.136737,-2.354591,-9.168158,3.121946,-2.337529,-8.867154,1.547998,-3.360724,-8.819294,1.545396,-3.414523, + -8.801527,1.640515,-3.403318,-8.849387,1.643117,-3.349519,-10.014696,2.647130,-4.712029,-9.975731,2.645011,-4.755829, + -9.961266,2.722452,-4.746706,-10.000232,2.724570,-4.702906,-9.961269,0.901932,-6.911243,-9.946301,0.980557,-6.903115, + -9.853797,0.960561,-6.880049,-9.868766,0.881935,-6.888176,-10.526359,0.801777,-4.952746,-10.511390,0.880402,-4.944618, + -10.418886,0.860406,-4.921551,-10.433855,0.781780,-4.929679,-11.042394,1.134162,-7.168329,-11.027647,1.212833,-7.160233, + -10.932074,1.194481,-7.155996,-10.946821,1.115811,-7.164092,-11.507592,1.020398,-5.252696,-11.492623,1.099023,-5.244568, + -11.400120,1.079027,-5.221501,-11.415089,1.000402,-5.229629,-9.270608,0.534175,-4.600317,-9.255935,0.612731,-4.591063, + -9.163431,0.592735,-4.567997,-9.178104,0.514179,-4.577250,-9.400782,0.546461,-3.573314,-9.386108,0.625017,-3.564060, + -9.293605,0.605021,-3.540993,-9.308279,0.526464,-3.550247,-10.581901,0.817632,-4.927304,-10.567226,0.896189,-4.918050, + -10.474723,0.876193,-4.894983,-10.489397,0.797636,-4.904237,-11.076187,0.776688,-3.018579,-11.066252,0.829879,-3.012313, + -10.973748,0.809883,-2.989246,-10.983684,0.756691,-2.995512,-11.575403,1.039917,-5.237921,-11.560729,1.118473,-5.228667, + -11.468225,1.098477,-5.205600,-11.482900,1.019921,-5.214854,-12.050013,0.993514,-3.212463,-12.040298,1.045529,-3.206336, + -11.947794,1.025533,-3.183269,-11.957510,0.973518,-3.189397,-12.996993,1.339695,-5.529536,-12.982319,1.418252,-5.520282, + -12.889816,1.398256,-5.497215,-12.904490,1.319699,-5.506470,-13.579604,1.153270,-3.670234,-13.564931,1.231826,-3.660980, + -13.472427,1.211830,-3.637913,-13.487101,1.133274,-3.647167,-12.421527,1.489363,-7.520932,-12.344841,1.472927,-7.503008, + -12.362608,1.377808,-7.514214,-12.439295,1.394244,-7.532137,-12.969688,1.399166,-5.557280,-12.893003,1.382730,-5.539357, + -12.910770,1.287611,-5.550562,-12.987455,1.304047,-5.568485,-12.177631,2.795067,-7.367115,-12.100946,2.778631,-7.349192, + -12.118713,2.683512,-7.360397,-12.195399,2.699948,-7.378320,-12.729285,2.686172,-5.405666,-12.652599,2.669737,-5.387743, + -12.670367,2.574618,-5.398948,-12.747053,2.591053,-5.416872,-11.949030,4.018900,-7.222943,-11.872344,4.002465,-7.205020, + -11.890112,3.907346,-7.216226,-11.966797,3.923782,-7.234149,-12.507496,3.873531,-5.265791,-12.430811,3.857096,-5.247868, + -12.448578,3.761977,-5.259073,-12.525264,3.778413,-5.276997,-11.720880,5.240313,-7.079057,-11.644194,5.223877,-7.061133, + -11.661962,5.128758,-7.072339,-11.739868,5.138656,-7.091032,-12.282668,5.077162,-5.123999,-12.205982,5.060726,-5.106076, + -12.223749,4.965607,-5.117281,-12.301657,4.975505,-5.135975,-7.454976,4.509635,-8.071633,-7.531067,4.526225,-8.091807, + -7.513300,4.621344,-8.080602,-7.437208,4.604754,-8.060429,-8.002988,4.347755,-6.157340,-8.079079,4.364345,-6.177514, + -8.061312,4.459464,-6.166308,-7.985220,4.442874,-6.146135,-7.689284,3.255246,-8.219404,-7.765375,3.271836,-8.239578, + -7.747608,3.366954,-8.228373,-7.671516,3.350365,-8.208200,-8.234940,3.105982,-6.303625,-8.311030,3.122571,-6.323799, + -8.293262,3.217690,-6.312593,-8.217172,3.201101,-6.292420,-7.922427,2.007095,-8.366441,-7.998518,2.023685,-8.386615, + -7.980751,2.118804,-8.375409,-7.904659,2.102214,-8.355235,-8.463540,1.882148,-6.447797,-8.539631,1.898737,-6.467970, + -8.521864,1.993856,-6.456765,-8.445772,1.977267,-6.436591,-8.155947,0.756922,-8.513715,-8.232038,0.773512,-8.533889, + -8.209729,0.892947,-8.519819,-8.133637,0.876357,-8.499645,-8.697061,0.631975,-6.595071,-8.773151,0.648564,-6.615244, + -8.755384,0.743683,-6.604039,-8.679293,0.727094,-6.583866,-9.027907,4.664628,-6.468157,-9.740788,0.848142,-6.917750, + -9.833291,0.868139,-6.940817,-9.120411,4.684624,-6.491224,-9.053391,4.658024,-6.371685,-9.766272,0.841537,-6.821278, + -9.858775,0.861534,-6.844345,-9.145895,4.678020,-6.394752,-10.205203,4.920477,-6.773253,-10.918083,1.103991,-7.222847, + -11.013656,1.122343,-7.227085,-10.295967,4.938552,-6.782772,-10.211617,4.909985,-6.674012,-10.924498,1.093499,-7.123606, + -11.020070,1.111850,-7.127844,-10.302382,4.928060,-6.683531,-7.849500,4.415529,-6.779129,-7.890980,4.425434,-6.790263, + -7.895970,4.488143,-6.715890,-7.854490,4.478239,-6.704756,-8.118899,3.813829,-6.254835,-8.160380,3.823733,-6.265969, + -8.165370,3.886443,-6.191596,-8.123890,3.876539,-6.180462,-8.092383,3.144332,-6.907079,-8.133887,3.154113,-6.918228, + -8.140819,3.206431,-6.845079,-8.099315,3.196651,-6.833930,-8.361464,2.515243,-6.407812,-8.402944,2.525148,-6.418947, + -8.407934,2.587858,-6.344573,-8.366453,2.577953,-6.333439,-8.308192,1.959875,-7.068413,-8.349673,1.969780,-7.079547, + -8.354664,2.032489,-7.005174,-8.313183,2.022585,-6.994040,-8.578814,1.351638,-6.544889,-8.620295,1.361542,-6.556023, + -8.625284,1.424252,-6.481650,-8.583804,1.414348,-6.470516,-8.583431,0.762557,-7.223089,-8.541531,0.752761,-7.213546, + -8.571648,0.680953,-7.155019,-8.613548,0.690748,-7.164562,-8.615631,1.344404,-6.555110,-8.573730,1.334609,-6.545567, + -8.603847,1.262800,-6.487040,-8.645748,1.272596,-6.496583,-8.354621,2.010159,-7.059162,-8.312720,2.000363,-7.049619, + -8.342837,1.928555,-6.991092,-8.384738,1.938350,-7.000635,-8.378747,2.612594,-6.405714,-8.336846,2.602798,-6.396171, + -8.366962,2.530991,-6.337644,-8.408864,2.540786,-6.347187,-8.128631,3.226494,-6.911030,-8.086707,3.216823,-6.901472, + -8.114882,3.155406,-6.841721,-8.156807,3.165077,-6.851279,-8.155721,3.806596,-6.265057,-8.113819,3.796800,-6.255514, + -8.143936,3.724992,-6.196987,-8.185837,3.734787,-6.206530,-7.882654,4.417955,-6.807532,-7.873625,4.460864,-6.803064, + -7.850332,4.445170,-6.706776,-7.859362,4.402261,-6.711245,-8.645507,4.514432,-6.345980,-8.636477,4.557342,-6.341512, + -8.588620,4.538653,-6.258752,-8.597651,4.495744,-6.263220,-8.603307,0.688209,-7.233429,-8.597261,0.731710,-7.229709, + -8.548677,0.717836,-7.146426,-8.554723,0.674335,-7.150146,-9.348635,0.738859,-6.790196,-9.342589,0.782360,-6.786476, + -9.294005,0.768486,-6.703194,-9.300051,0.724985,-6.706914,-10.672254,0.573987,-2.888780,-10.657668,0.652074,-2.879581, + -10.573688,0.633921,-2.858639,-10.588274,0.555833,-2.867839,-10.962672,0.222702,-2.009973,-10.966929,0.290483,-1.967753, + -10.886196,0.275190,-1.935059,-10.881939,0.207408,-1.977278,-9.957154,4.363969,-2.457707,-9.961447,4.243518,-2.454259, + -10.033485,4.259119,-2.472465,-10.041134,4.382123,-2.478648,-10.103457,4.342388,-1.492699,-10.130091,4.278154,-1.534640, + -10.214070,4.296308,-1.555582,-10.187437,4.360542,-1.513640,-11.690896,0.946475,-3.142281,-11.702379,1.025578,-3.139899, + -11.617813,1.037158,-3.116767,-11.606330,0.958054,-3.119149,-11.877838,0.850188,-2.604218,-11.889321,0.929292,-2.601835, + -11.804755,0.940871,-2.578704,-11.793272,0.861767,-2.581086,-11.019951,4.623488,-2.729030,-11.016628,4.473546,-2.711623, + -11.087304,4.488323,-2.728598,-11.103930,4.641642,-2.749971,-11.209822,4.618299,-2.185917,-11.228327,4.523790,-2.193633, + -11.312307,4.541944,-2.214574,-11.293801,4.636453,-2.206859,-11.981103,0.986270,-3.212351,-11.972401,1.032857,-3.206863, + -12.123289,1.065474,-3.244488,-12.131991,1.018887,-3.249977,-12.800404,1.308921,-5.495104,-12.787262,1.379280,-5.486816, + -12.938149,1.411896,-5.524442,-12.951292,1.341537,-5.532730,-12.005822,4.802224,-6.381677,-11.969131,4.718055,-6.297503, + -12.037554,4.732846,-6.314565,-12.179479,4.778932,-5.692741,-12.103331,4.704988,-5.757932,-12.171755,4.719779,-5.774994, + -12.123207,4.274292,-6.368585,-12.054784,4.259501,-6.351522,-12.115484,4.215138,-6.450837,-12.268497,4.217973,-5.822034, + -12.200073,4.203182,-5.804972,-12.231806,4.133803,-5.737861,-12.300230,4.148594,-5.754923,-12.630478,2.280081,-6.050324, + -12.562054,2.265290,-6.033262,-12.638202,2.339234,-5.968071,-12.495224,2.282671,-6.603204,-12.426800,2.267880,-6.586141, + -12.463491,2.352050,-6.670315,-12.204610,4.516772,-5.767817,-12.172901,4.509917,-5.759910,-12.192669,4.417593,-5.760671, + -12.224378,4.424447,-5.768578,-12.064532,4.465874,-6.373685,-12.032824,4.459019,-6.365778,-12.021986,4.514421,-6.361211, + -12.053695,4.521275,-6.369118,-12.150430,4.750993,-5.737470,-12.260773,4.173764,-5.795354,-12.097529,4.233380,-6.398318, + -11.997250,4.767623,-6.337342,-8.779488,3.506057,-8.545304,-8.659148,4.153550,-8.466601,-9.096583,4.063329,-6.790593, + -9.229550,3.354714,-6.871643,-9.165910,3.497882,-7.002748,-9.082922,3.940192,-6.952126,-8.964247,3.959375,-7.411410, + -9.041916,3.541584,-7.462110,-9.059286,3.545338,-7.466441,-8.981617,3.963130,-7.415742,-9.100292,3.943947,-6.956457, + -9.183280,3.501637,-7.007080,-9.016577,3.731737,-7.442398,-9.040569,3.736924,-7.448381,-9.033146,3.778641,-7.441984, + -9.009154,3.773455,-7.436001,-9.132372,3.729952,-6.979581,-9.156364,3.735138,-6.985564,-9.164563,3.693220,-6.989020, + -9.140572,3.688033,-6.983037,-9.031823,3.942401,-7.206645,-9.055815,3.947587,-7.212628,-9.066972,3.943459,-7.171466, + -9.042979,3.938272,-7.165483,-9.118600,3.533424,-7.213175,-9.142592,3.538610,-7.219158,-9.131922,3.540139,-7.260627, + -9.107929,3.534952,-7.254644,-9.308759,1.422370,-8.191566,-9.377182,1.437160,-8.208628,-9.379349,1.569733,-8.085019, + -9.310925,1.554942,-8.067957,-9.592062,1.341800,-7.138019,-9.660486,1.356591,-7.155082,-9.590978,1.507738,-7.302801, + -9.522554,1.492947,-7.285738,-9.054791,2.926177,-7.906421,-9.123216,2.940968,-7.923483,-9.067586,3.094620,-8.013374, + -8.999163,3.079829,-7.996312,-9.261258,2.891827,-7.120946,-9.329681,2.906617,-7.138008,-9.345726,3.041694,-6.956572, + -9.277303,3.026903,-6.939509,-9.431939,1.505323,-7.716300,-9.463647,1.512177,-7.724207,-9.482887,1.511574,-7.647573, + -9.451179,1.504720,-7.639666,-9.183316,2.938752,-7.470732,-9.215025,2.945606,-7.478639,-9.194064,2.955422,-7.554189, + -9.162355,2.948568,-7.546282,-9.413118,2.195139,-7.167293,-9.444826,2.201993,-7.175200,-9.433787,2.257447,-7.171398, + -9.402079,2.250592,-7.163491,-9.177966,2.308673,-8.011888,-9.209674,2.315528,-8.019794,-9.221497,2.249857,-8.029312, + -9.189789,2.243002,-8.021405,-9.571861,1.401125,-7.263586,-9.274674,2.988506,-7.079318,-9.057091,3.011633,-7.931832, + -9.343306,1.476970,-8.114401,-8.543587,2.176323,-5.656373,-8.693953,2.208827,-5.693868,-8.689629,2.300462,-5.631773, + -8.539263,2.267958,-5.594278,-8.727280,2.099417,-4.999112,-8.877645,2.131921,-5.036607,-8.846435,2.230523,-5.076291, + -8.696070,2.198020,-5.038796,-8.461676,2.699497,-5.531333,-8.612041,2.732001,-5.568828,-8.580832,2.830603,-5.608512, + -8.430467,2.798100,-5.571016,-8.607021,2.674759,-4.982635,-8.757386,2.707263,-5.020130,-8.753061,2.798898,-4.958035, + -8.602696,2.766394,-4.920540,-8.773939,0.959280,-5.787635,-8.929649,0.992939,-5.826463,-8.925325,1.084574,-5.764369, + -8.769614,1.050915,-5.725541,-8.951847,0.897178,-5.140739,-9.107558,0.930837,-5.179568,-9.076348,1.029440,-5.219252, + -8.920637,0.995781,-5.180424,-8.684934,1.504269,-5.672134,-8.840644,1.537928,-5.710963,-8.809435,1.636531,-5.750647, + -8.653724,1.602872,-5.711818,-8.825910,1.502916,-5.120682,-8.981621,1.536575,-5.159510,-8.977297,1.628210,-5.097415, + -8.821586,1.594551,-5.058587,-8.856603,1.006974,-5.489494,-8.888310,1.013828,-5.497401,-8.886559,1.008381,-5.438643, + -8.770763,1.540010,-5.371658,-8.802471,1.546864,-5.379565,-8.771873,1.548894,-5.430012,-8.896741,1.225357,-5.128640, + -8.928450,1.232211,-5.136547,-8.901759,1.284185,-5.128026,-8.726059,1.322183,-5.729179,-8.757768,1.329038,-5.737086, + -8.751723,1.270476,-5.741587,-10.223756,0.666711,-4.316316,-10.215892,0.708812,-4.311357,-10.309882,0.673075,-4.119239, + -10.314775,0.646888,-4.122324,-10.361270,0.780162,-4.909178,-10.348128,0.850520,-4.900889,-10.499016,0.883137,-4.938515, + -10.512158,0.812778,-4.946804,-11.546453,1.040664,-5.205232,-11.533312,1.111021,-5.196944,-11.382423,1.078406,-5.159318, + -11.395565,1.008047,-5.167606,-11.134872,0.797584,-3.024434,-11.120787,0.840378,-3.017783,-10.975213,0.787050,-2.982979, + -10.989299,0.744256,-2.989630,-10.905338,4.663989,-3.399991,-10.909004,4.645517,-3.401299,-10.645375,4.587048,-3.347863, + -10.489632,4.655016,-3.931798,-10.717457,4.698163,-3.988442,-10.721123,4.679692,-3.989750,-10.636750,4.631786,-3.343671, + -10.494504,4.630460,-3.933536,-10.200339,4.580034,-3.902357,-10.208953,4.534313,-3.908048,-10.364576,4.523717,-3.213675, + -10.373191,4.477996,-3.219366,-10.759905,4.656598,-4.071673,-10.751291,4.702319,-4.065983,-10.981507,4.609491,-3.371057, + -10.972893,4.655213,-3.365366,-10.500539,4.641932,-3.931401,-10.257467,4.591949,-3.846166,-10.261023,4.573490,-3.847902, + -10.505201,4.617389,-3.933748,-10.644016,4.613383,-3.338461,-10.402013,4.555784,-3.288099,-10.648680,4.588839,-3.340808, + -10.405569,4.537326,-3.289834,-12.579906,1.829317,-6.656610,-12.511482,1.814526,-6.639548,-12.572182,1.770164,-6.738863, + -12.725205,1.772947,-6.110066,-12.656782,1.758156,-6.093004,-12.688514,1.688777,-6.025892,-12.756938,1.703568,-6.042955, + -12.667869,2.052793,-6.046007,-12.636160,2.045938,-6.038100,-12.645970,1.990804,-6.046555,-12.677679,1.997658,-6.054461, + -12.517834,2.039084,-6.659568,-12.486125,2.032230,-6.651661,-12.475288,2.087631,-6.647094,-12.506996,2.094485,-6.655001, + -12.609153,2.311296,-6.012800,-12.717480,1.728738,-6.083386,-12.554227,1.788406,-6.686344,-12.454919,2.317449,-6.625980, + -13.103514,2.805910,-3.960609,-13.324800,1.621231,-4.100168,-11.942826,4.788607,-6.365968,-12.116482,4.765314,-5.677032, + -12.052487,4.201520,-6.435128,-12.237234,4.134977,-5.739214,-12.575206,2.325617,-5.952363,-12.400496,2.338432,-6.654606, + -12.509186,1.756546,-6.723154,-12.693941,1.689950,-6.027246,-8.787159,3.395634,-8.572726,-8.855582,3.410425,-8.589788, + -8.831943,3.536984,-8.574880,-8.763519,3.522194,-8.557817,-9.269969,3.237160,-6.786646,-9.338392,3.251950,-6.803708, + -9.283627,3.386576,-6.906628,-9.215203,3.371786,-6.889565,-8.651848,4.120039,-8.487390,-8.720272,4.134830,-8.504452, + -8.696632,4.261390,-8.489543,-8.628208,4.246599,-8.472481,-9.092177,4.030423,-6.811976,-9.160601,4.045213,-6.829039, + -9.168087,4.163706,-6.696301,-9.099663,4.148915,-6.679238,-11.099844,2.930303,-9.157037,-11.223680,2.270561,-9.232328, + -11.638503,2.129668,-7.690929,-11.506109,2.841700,-7.604624,-11.489420,2.719350,-7.777612,-11.572330,2.273495,-7.831617, + -11.446141,2.332906,-8.286163,-11.369661,2.740376,-8.239645,-11.352291,2.736620,-8.235313,-11.428771,2.329152,-8.281832, + -11.554960,2.269740,-7.827286,-11.472050,2.715595,-7.773281,-11.388938,2.546700,-8.286721,-11.364945,2.541513,-8.280738, + -11.373977,2.495373,-8.284519,-11.397969,2.500559,-8.290502,-11.532949,2.465577,-7.779522,-11.508957,2.460390,-7.773540, + -11.500793,2.506307,-7.766476,-11.524786,2.511493,-7.772459,-11.495155,2.283036,-8.081323,-11.471163,2.277850,-8.075340, + -11.483076,2.276124,-8.029062,-11.507068,2.281311,-8.035045,-11.422875,2.745538,-7.970253,-11.398884,2.740352,-7.964270, + -11.381140,2.746313,-8.030258,-11.405132,2.751499,-8.036242,-11.008318,4.236407,-8.289793,-10.939894,4.221616,-8.272731, + -10.988832,4.121003,-8.163697,-11.057255,4.135794,-8.180759,-11.209443,4.198400,-7.503456,-11.141020,4.183609,-7.486394, + -11.128727,4.093743,-7.613592,-11.197150,4.108534,-7.630654,-11.143191,3.690020,-8.222561,-11.074767,3.675230,-8.205499, + -11.062474,3.585363,-8.332696,-11.130898,3.600154,-8.349758,-11.286642,3.643363,-7.675013,-11.218218,3.628572,-7.657950, + -11.267156,3.527958,-7.548917,-11.335579,3.542749,-7.565979,-11.095908,4.162480,-7.927917,-11.064199,4.155626,-7.920010, + -11.078718,4.151415,-7.865438,-11.110427,4.158269,-7.873344,-11.213493,3.622533,-7.924433,-11.181785,3.615679,-7.916526, + -11.167929,3.616448,-7.971426,-11.199636,3.623302,-7.979332,-11.233380,3.893769,-7.620133,-11.201672,3.886915,-7.612226, + -11.211813,3.831665,-7.619452,-11.243522,3.838520,-7.627359,-11.083956,3.878290,-8.232779,-11.052248,3.871436,-8.224872, + -11.041097,3.926863,-8.221542,-11.072804,3.933717,-8.229449,-11.175485,4.140429,-7.593905,-11.279025,3.599694,-7.647427, + -11.117869,3.648344,-8.251527,-11.016874,4.169858,-8.204461,-11.083403,3.042998,-9.162814,-11.014979,3.028208,-9.145752, + -11.038619,2.901648,-9.160661,-11.107042,2.916439,-9.177723,-11.516691,2.946037,-7.496553,-11.448268,2.931247,-7.479491, + -11.440782,2.812754,-7.612229,-11.509206,2.827544,-7.629292,-11.220939,2.306674,-9.249555,-11.152515,2.291883,-9.232492, + -11.176155,2.165324,-9.247401,-11.244579,2.180115,-9.264463,-11.632931,2.165160,-7.707322,-11.564507,2.150369,-7.690259, + -11.619272,2.015743,-7.587340,-11.687696,2.030534,-7.604402,-9.034558,4.371251,-6.762290,-9.224483,4.412306,-6.809649, + -9.188004,4.607600,-6.786643,-8.998079,4.566545,-6.739283,-9.085526,4.358042,-6.569345,-9.275452,4.399097,-6.616704, + -9.238973,4.594391,-6.593699,-9.049047,4.553336,-6.546338,-8.675735,4.423046,-8.201658,-8.865660,4.464102,-8.249019, + -8.829181,4.659396,-8.226012,-8.639256,4.618341,-8.178652,-8.721025,4.440233,-8.005133,-8.910951,4.481288,-8.052493, + -8.880150,4.646187,-8.033068,-8.690225,4.605132,-7.985707,-10.685209,4.872068,-8.279935,-10.828203,4.902978,-8.315592, + -10.802284,5.041736,-8.299246,-10.659291,5.010826,-8.263589,-10.729356,4.860627,-8.112817,-10.872350,4.891537,-8.148474, + -10.845295,5.036374,-8.131412,-10.702302,5.005464,-8.095755,-9.392134,1.118749,-8.149235,-9.567162,1.156584,-8.192880, + -9.545268,1.295248,-8.160474,-9.370240,1.257413,-8.116829,-9.439104,1.106576,-7.971423,-9.614132,1.144411,-8.015069, + -9.582786,1.312230,-7.995299,-9.407757,1.274395,-7.951654,-9.548859,1.110852,-7.904516,-9.811287,1.167580,-7.969955, + -9.788802,1.287955,-7.955775,-9.526374,1.231227,-7.890335,-9.585034,1.101477,-7.767571,-9.847462,1.158205,-7.833011, + -9.823667,1.285595,-7.818004,-9.561239,1.228867,-7.752564,-9.703008,1.165991,-8.182276,-9.965435,1.222719,-8.247715, + -9.951268,1.320018,-8.220181,-9.688841,1.263290,-8.154742,-9.739182,1.156616,-8.045331,-10.001610,1.213344,-8.110771, + -9.977990,1.339797,-8.095874,-9.715563,1.283069,-8.030435,-11.421837,1.679555,-8.850891,-11.374708,1.931862,-8.821169, + -11.239908,1.902723,-8.787554,-11.287037,1.650415,-8.817277,-11.458013,1.670180,-8.713947,-11.407607,1.940027,-8.682158, + -11.272806,1.910887,-8.648544,-11.323212,1.641040,-8.680333,-11.316922,1.846359,-9.072761,-11.269628,2.099557,-9.042933, + -11.202107,2.084962,-9.026096,-11.249403,1.831764,-9.055923,-11.363192,1.824905,-8.905810,-11.312181,2.097992,-8.873640, + -11.244661,2.083396,-8.856803,-11.295671,1.810310,-8.888973,-10.937455,4.694871,-8.112414,-10.885309,4.974037,-8.079527, + -10.747981,4.944351,-8.045283,-10.800127,4.665185,-8.078170,-10.976701,4.682244,-7.943004,-10.925690,4.955331,-7.910833, + -10.793528,4.926762,-7.877877,-10.844538,4.653675,-7.910048,-9.228269,1.501612,-8.462157,-9.276003,1.246065,-8.492261, + -9.343522,1.260661,-8.509098,-9.295789,1.516208,-8.478994,-9.269404,1.507642,-8.291969,-9.320414,1.234556,-8.324140, + -9.387934,1.249151,-8.340977,-9.336924,1.522238,-8.308805,-8.941628,4.514004,-7.000282,-8.995510,4.254635,-7.009040, + -9.063030,4.269230,-7.025877,-9.009148,4.528600,-7.017118,-8.986039,4.502494,-6.832160,-9.037048,4.229407,-6.864330, + -9.104568,4.244003,-6.881167,-9.053558,4.517090,-6.848997,-8.875310,3.186825,-8.416734,-8.926320,2.913738,-8.448904, + -8.993839,2.928333,-8.465741,-8.942830,3.201420,-8.433571,-8.915790,3.196363,-8.246133,-8.964151,2.921288,-8.290646, + -9.031672,2.935884,-8.307483,-8.983310,3.210959,-8.262969,-8.418859,4.125470,-4.623027,-8.458186,3.914924,-4.647830, + -8.510242,3.926177,-4.660810,-8.470915,4.136723,-4.636008,-8.453098,4.116596,-4.493407,-8.492427,3.906051,-4.518210, + -8.544483,3.917304,-4.531191,-8.505156,4.127849,-4.506389,-8.796843,2.211309,-4.731484,-8.836171,2.000764,-4.756288, + -8.888227,2.012017,-4.769269,-8.848900,2.222562,-4.744466,-8.827653,2.185970,-4.629894,-8.863575,1.993662,-4.652549, + -8.915631,2.004915,-4.665530,-8.879710,2.197223,-4.642875,-8.498998,3.934581,-4.467124,-8.534184,3.746207,-4.489316, + -8.586241,3.757460,-4.502296,-8.551055,3.945834,-4.480105,-8.524146,3.928064,-4.371923,-8.559333,3.739689,-4.394114, + -8.611389,3.750942,-4.407095,-8.576203,3.939317,-4.384904,-10.015718,4.410503,-2.833084,-9.810961,4.366242,-2.782026, + -9.814455,4.347559,-2.784228,-10.019212,4.391820,-2.835286,-10.049033,4.404679,-2.730819,-9.808805,4.352751,-2.670916, + -9.812300,4.334067,-2.673118,-10.052527,4.385996,-2.733021,-11.425776,4.870359,-4.574965,-11.221021,4.826098,-4.523906, + -11.229956,4.778264,-4.529541,-11.434711,4.822525,-4.580600,-11.453180,4.863257,-4.471226,-11.248425,4.818996,-4.420167, + -11.257360,4.771162,-4.425802,-11.462115,4.815423,-4.476861,-11.524324,1.563910,-5.095713,-11.705085,1.673387,-5.138513, + -11.688363,1.680794,-5.190190,-11.507603,1.571318,-5.147389,-11.475740,1.655404,-5.066876,-11.656501,1.764881,-5.109677, + -11.639778,1.772288,-5.161354,-11.459018,1.662812,-5.118553,-10.005165,0.730729,-5.222150,-10.209922,0.774990,-5.273209, + -10.199924,0.828519,-5.266903,-9.995167,0.784258,-5.215844,-10.032569,0.723628,-5.118412,-10.243237,0.769166,-5.170944, + -10.233239,0.822695,-5.164639,-10.022571,0.777156,-5.112106,-12.397125,2.317628,-6.972795,-12.357799,2.528173,-6.947992, + -12.305741,2.516921,-6.935011,-12.345069,2.306376,-6.959814,-12.424529,2.310526,-6.869057,-12.385202,2.521071,-6.844254, + -12.333145,2.509819,-6.831273,-12.372473,2.299273,-6.856076,-12.400446,2.162014,-5.310575,-12.402165,2.162926,-5.279855, + -12.254197,1.881121,-5.260352,-12.368011,1.840933,-5.310400,-12.504449,2.100163,-5.328404,-12.506176,2.101091,-5.297683, + -12.369738,1.841860,-5.279679,-12.252479,1.880209,-5.291072,-11.973495,1.628115,-5.245575,-11.974020,1.627558,-5.210161, + -11.889450,1.480883,-5.209724,-11.958410,1.417841,-5.273273,-12.068727,1.610886,-5.273540,-12.069233,1.610297,-5.238128, + -11.958916,1.417252,-5.237860,-11.888926,1.481439,-5.245137,-8.677286,4.236773,-4.272951,-12.796661,1.366681,-5.569274, + -9.342377,0.689198,-4.681062,-12.132578,4.987666,-5.143438,-10.161106,4.281273,-1.480145,-12.934834,1.527895,-5.267710, + -9.298399,0.744348,-4.494644,-9.049330,4.123443,-2.229084,-11.687813,3.529044,-5.051229,-11.854567,2.621922,-5.159927, + -11.864380,2.614911,-5.106398,-11.697625,3.522035,-4.997700,-11.105076,4.916510,-7.170621,-11.094776,4.959361,-7.171297, + -11.050066,4.923182,-7.091081,-11.055585,4.905926,-7.087390,-11.742357,5.136281,-7.053191,-11.732058,5.179132,-7.053866, + -11.682568,5.168548,-6.970635,-11.692867,5.125697,-6.969960,-11.678795,1.580876,-7.562424,-11.671154,1.623222,-7.552874, + -11.624679,1.596494,-7.471545,-11.632318,1.554149,-7.481094,-12.403391,1.481359,-7.536417,-12.395750,1.523704,-7.526866, + -12.349275,1.496977,-7.445537,-12.356915,1.454631,-7.455087,-8.329809,2.480559,-6.293901,-8.304325,2.487164,-6.390374, + -8.312042,2.575678,-6.282696,-8.286558,2.582283,-6.379169,-11.925756,4.259592,-7.225673,-11.907990,4.354711,-7.214468, + -9.861005,4.471951,-4.483535,-9.820748,4.482384,-4.635930,-9.843238,4.567070,-4.472329,-9.802980,4.577503,-4.624725, + -11.408891,0.932100,-5.151786,-11.371684,0.941743,-5.292635,-11.385391,1.058358,-5.136941,-11.348185,1.068001,-5.277790, + -10.466518,4.530350,-2.567207,-10.441033,4.536955,-2.663679,-10.502289,4.344151,-2.580189,-10.476804,4.350756,-2.676662, + -13.216991,2.822683,-3.546981,-13.178369,2.826100,-3.637228,-13.133986,2.816506,-3.626160,-11.300930,4.610049,-3.302574, + -9.185807,0.556244,-4.637896,-9.254230,0.571035,-4.654958,-9.225250,0.726190,-4.636680,-9.156826,0.711398,-4.619618, + -9.600512,1.017442,-3.695192,-9.663757,1.006113,-3.727801,-9.652155,1.147475,-3.799417,-9.588909,1.158803,-3.766809, + -8.701499,3.149045,-4.332456,-8.769922,3.163835,-4.349518,-8.740941,3.318990,-4.331241,-8.672518,3.304199,-4.314178, + -9.004228,4.078154,-2.205804,-9.072652,4.092945,-2.222867,-9.018762,4.177042,-2.366079,-8.950337,4.162251,-2.349017, + -8.889555,2.142266,-4.451057,-8.957978,2.157056,-4.468120,-8.928997,2.312211,-4.449842,-8.860574,2.297420,-4.432780, + -9.493878,3.155366,-2.967076,-9.462906,3.294332,-2.899177,-12.419546,1.423641,-7.453094,-12.406404,1.493999,-7.444805, + -12.255516,1.461382,-7.407179,-12.268658,1.391024,-7.415467,-11.601901,1.020616,-5.270812,-11.588758,1.090974,-5.262524, + -11.437870,1.058357,-5.224898,-11.451013,0.987999,-5.233186,-9.898036,0.878576,-6.824325,-9.884893,0.948934,-6.816036, + -9.734005,0.916317,-6.778410,-9.747148,0.845959,-6.786699,-9.371627,0.558516,-4.707172,-9.283720,0.486171,-4.630345, + -9.207597,0.596257,-4.661258,-9.220738,0.525899,-4.669547,-10.965671,1.100217,-7.089997,-10.952529,1.170575,-7.081709, + -10.801641,1.137958,-7.044084,-10.814783,1.067600,-7.052372,-10.623684,0.819726,-5.020640,-10.610541,0.890084,-5.012352, + -10.459653,0.857467,-4.974727,-10.472795,0.787108,-4.983015,-12.306593,5.053585,-5.067893,-12.238169,5.038794,-5.050831, + -12.267149,4.883639,-5.069108,-12.335573,4.898430,-5.086171,-12.999759,3.972376,-3.333404,-12.962318,3.964680,-3.327442, + -12.991301,3.809525,-3.345720,-13.028740,3.817222,-3.351682,-12.697865,2.935271,-5.326186,-12.629441,2.920481,-5.309124, + -12.658422,2.765326,-5.327401,-12.726846,2.780117,-5.344463,-13.536571,1.323129,-3.626749,-13.468147,1.308338,-3.609687, + -13.497128,1.153184,-3.627964,-13.565552,1.167975,-3.645026,-8.033239,4.437579,-6.088797,-8.046381,4.367220,-6.097085, + -8.197270,4.399837,-6.134711,-8.184128,4.470196,-6.126422,-9.607782,4.506237,-4.576026,-9.620925,4.435879,-4.584314, + -9.771813,4.468496,-4.621940,-9.758671,4.538854,-4.613652,-10.304653,4.913147,-6.674248,-10.317796,4.842789,-6.682537, + -10.468683,4.875406,-6.720162,-10.455542,4.945764,-6.711874,-12.116776,5.031525,-5.079727,-12.112014,4.998628,-5.073224, + -12.282125,4.987676,-5.125644,-12.267664,5.064142,-5.117352,-9.906387,4.650781,-5.074589,-10.149498,4.702294,-5.125563, + -9.902831,4.669239,-5.072854,-10.144835,4.726838,-5.123217,-10.006021,4.730844,-5.718503,-9.761842,4.686945,-5.632657, + -9.758286,4.705403,-5.630921,-10.001357,4.755386,-5.716156,-10.473711,4.768668,-5.150121,-10.486783,4.698328,-5.158675, + -10.252110,4.815774,-5.850738,-10.265181,4.745435,-5.859292,-9.878467,4.566833,-5.006984,-9.865396,4.637173,-4.998430, + -9.714230,4.623149,-5.695666,-9.701158,4.693489,-5.687112,-9.995322,4.743916,-5.718291,-10.137568,4.745241,-5.128426, + -10.221941,4.793147,-5.774505,-10.218275,4.811618,-5.773198,-9.990450,4.768471,-5.716553,-10.146194,4.700503,-5.132618, + -10.409822,4.758973,-5.186054,-10.406157,4.777444,-5.184747,-8.489932,3.387121,-4.873562,-8.445992,3.634027,-4.835332, + -8.471896,3.383277,-4.869529,-8.422021,3.628966,-4.829912,-8.302036,3.687035,-5.426471,-8.344703,3.428041,-5.431124, + -8.326666,3.424198,-5.427091,-8.278066,3.681974,-5.421051,-8.397483,3.949459,-4.744381,-8.465837,3.964267,-4.761709, + -8.210877,3.962796,-5.456554,-8.279230,3.977604,-5.473882,-8.582675,3.338753,-4.835396,-8.514322,3.323944,-4.818068, + -8.392900,3.402704,-5.516809,-8.324548,3.387895,-5.499482,-8.288549,3.676885,-5.427113,-8.402548,3.623818,-4.833509, + -8.244836,3.909816,-5.399339,-8.226702,3.906005,-5.395735,-8.264442,3.671819,-5.422321,-8.446268,3.633133,-4.843271, + -8.396389,3.900303,-4.799603,-8.378255,3.896492,-4.796000,-8.458922,1.943624,-6.491503,-8.442463,1.940066,-6.487399, + -8.304114,1.942508,-6.727497,-8.290054,1.938328,-6.714306,-8.239206,3.129632,-6.344494,-8.107790,3.124518,-6.475126, + -8.222747,3.126075,-6.340389,-8.079055,3.136965,-6.594591,-8.329799,1.934246,-6.616638,-8.053144,3.133693,-6.593771, + -8.332235,2.535048,-6.413661,-8.348695,2.538606,-6.417766,-8.175537,2.534422,-6.656807,-8.189596,2.538602,-6.669998, + -8.013264,4.342432,-6.196640,-7.996786,3.718180,-6.404471,-7.996891,4.338893,-6.192557,-7.855669,4.342038,-6.443181, + -7.881781,4.333666,-6.330702,-8.218784,2.529432,-6.545876,-7.842331,4.337712,-6.427608,-8.113184,3.717494,-6.267071, + -8.129644,3.721052,-6.271175,-7.974304,3.723394,-6.435366,-7.987495,3.727316,-6.447743,-8.388337,2.236083,-6.448948, + -8.211875,2.240579,-6.766913,-8.404840,2.239650,-6.453063,-8.226295,2.244686,-6.778913,-8.291683,2.842175,-6.381923, + -8.116033,2.846460,-6.696815,-8.275268,2.838626,-6.377829,-8.102340,2.842206,-6.682414,-8.171350,3.399630,-6.310461, + -8.005658,3.431530,-6.563669,-8.187854,3.403197,-6.314576,-8.019189,3.435384,-6.574929,-8.070156,4.026901,-6.243291, + -7.913512,4.013948,-6.494727,-8.053740,4.023353,-6.239198,-7.900663,4.009956,-6.481216,-8.274930,2.230476,-6.581174, + -8.161774,2.833001,-6.510033,-8.053043,3.410728,-6.446644,-7.939651,4.011485,-6.378067,-8.316391,1.930522,-6.606286, + -8.088114,3.122212,-6.464401,-8.205208,2.525752,-6.536166,-7.867951,4.330092,-6.322298,-7.983092,3.716867,-6.395948, + -8.261310,2.226787,-6.571453,-8.148240,2.829330,-6.500335,-8.038604,3.413153,-6.437668,-7.926847,4.005662,-6.370088, + -7.843207,4.328217,-6.493747,-8.032311,4.335402,-6.254889,-8.022802,4.386311,-6.248892,-7.833698,4.379126,-6.487749, + -7.769772,4.304937,-6.412576,-8.007372,4.317726,-6.144393,-7.997862,4.368635,-6.138396,-7.760262,4.355847,-6.406579, + -8.067209,3.129003,-6.635018,-8.256313,3.136187,-6.396161,-8.246804,3.187097,-6.390163,-8.057700,3.179912,-6.629021, + -7.993773,3.105723,-6.553847,-8.231374,3.118512,-6.285665,-8.221865,3.169421,-6.279667,-7.984264,3.156632,-6.547850, + -11.582788,3.512553,-5.034353,-11.749543,2.605429,-5.143050,-11.759356,2.598421,-5.089521,-11.592602,3.505543,-4.980824, + -8.294992,1.909542,-6.778674,-8.484097,1.916727,-6.539817,-8.474587,1.967637,-6.533820,-8.285483,1.960452,-6.772676, + -8.221557,1.886263,-6.697504,-8.459157,1.899052,-6.429320,-8.449648,1.949962,-6.423323,-8.212048,1.937173,-6.691506, + -8.829275,4.812405,-8.413942,-8.752589,4.795969,-8.396019,-8.770356,4.700850,-8.407224,-8.847042,4.717286,-8.425147, + -9.299161,4.710485,-6.474906,-9.222475,4.694049,-6.456983,-9.240243,4.598930,-6.468188,-9.316928,4.615366,-6.486111, + -9.081799,4.727803,-7.103086,-9.090407,4.685003,-7.109146,-9.158548,4.689073,-7.035658,-9.149939,4.731874,-7.029599, + -8.648911,4.545813,-6.315534,-8.657519,4.503012,-6.321592,-8.740483,4.512602,-6.271453,-8.731874,4.555402,-6.265394, + -9.523716,1.094651,-8.851905,-9.447030,1.078215,-8.833982,-9.464798,0.983096,-8.845187,-9.541483,0.999532,-8.863111, + -9.993603,0.992730,-6.912869,-9.916917,0.976295,-6.894946,-9.934684,0.881176,-6.906151,-10.011370,0.897611,-6.924074, + -9.776239,1.010049,-7.541050,-9.784849,0.967248,-7.547109,-9.852989,0.971319,-7.473621,-9.844380,1.014120,-7.467562, + -9.343351,0.828058,-6.753497,-9.351961,0.785258,-6.759556,-9.478815,0.813374,-6.789647,-9.458052,0.851045,-6.761371, + -11.853338,1.615016,-9.434473,-11.776652,1.598580,-9.416551,-11.794420,1.503461,-9.427755,-11.871105,1.519897,-9.445679, + -12.402579,1.530249,-7.515225,-12.325893,1.513814,-7.497302,-12.343660,1.418695,-7.508508,-12.420346,1.435130,-7.526431, + -12.185217,1.547568,-8.143406,-12.193826,1.504768,-8.149466,-12.230286,1.495466,-8.018068,-12.220648,1.537832,-8.010128, + -11.752329,1.365577,-7.355853,-11.760938,1.322777,-7.361912,-11.887793,1.350894,-7.392004,-11.867029,1.388564,-7.363728, + -11.149832,5.343889,-8.993355,-11.073146,5.327453,-8.975431,-11.090913,5.232334,-8.986636,-11.167599,5.248770,-9.004560, + -11.704440,5.230384,-7.077492,-11.627754,5.213948,-7.059568,-11.645522,5.118830,-7.070774,-11.722208,5.135265,-7.088697, + -11.488527,5.239942,-7.706587,-11.497136,5.197142,-7.712646,-11.533597,5.187840,-7.581248,-11.523958,5.230206,-7.573308, + -11.054190,5.065711,-6.918119,-11.062799,5.022911,-6.924179,-11.189653,5.051028,-6.954270,-11.168890,5.088698,-6.925994, + -11.292956,5.265618,-8.229478,-11.369641,5.282054,-8.247400,-11.310723,5.170499,-8.240683,-11.387409,5.186935,-8.258606, + -7.988640,0.505361,-6.623976,-8.220409,0.611435,-6.571146,-7.987639,0.583838,-7.043053,-7.983761,0.602132,-7.040627, + -7.979087,0.551325,-6.618000,-8.233907,0.545352,-6.579798,-8.167645,0.619105,-7.039776,-8.163766,0.637399,-7.037351, + -8.233936,0.554498,-6.530999,-8.695115,0.670601,-6.701378,-8.689343,0.702003,-6.696774,-8.223915,0.605218,-6.524276, + -8.264878,0.549025,-6.443599,-8.703628,0.677584,-6.610638,-8.697855,0.708986,-6.606032,-8.254858,0.599745,-6.436875, + -8.620592,0.663811,-6.600713,-8.609308,0.657623,-6.692620,-8.614622,0.695111,-6.595680,-8.603338,0.688923,-6.687587, + -7.971169,0.571373,-6.802413,-8.181231,0.589952,-6.811658,-8.174516,0.622455,-6.807350,-7.975742,0.549803,-6.805272, + -8.218204,0.592936,-6.604330,-8.214432,0.576097,-6.603335,-8.229044,0.584054,-6.601030,-8.255666,0.588283,-6.513403, + -8.251893,0.571444,-6.512408,-8.266506,0.579401,-6.510102,-8.648098,0.682786,-6.879364,-8.641264,0.719375,-6.875053, + -8.641531,0.683096,-6.892409,-8.634697,0.719685,-6.888099,-8.406670,0.610376,-6.666641,-8.443120,0.654435,-6.597271, + -8.451731,0.610848,-6.603049,-8.398058,0.653962,-6.660863,-9.492424,1.770569,-7.217309,-9.524132,1.777423,-7.225216, + -9.513093,1.832877,-7.221414,-9.481384,1.826022,-7.213507,-9.257272,1.884103,-8.061903,-9.288980,1.890957,-8.069810, + -9.300802,1.825287,-8.079328,-9.269094,1.818432,-8.071421,-9.349278,2.536911,-7.127031,-9.380986,2.543765,-7.134938, + -9.369947,2.599219,-7.131136,-9.338240,2.592364,-7.123229,-9.114126,2.650445,-7.971625,-9.145835,2.657300,-7.979532, + -9.157658,2.591629,-7.989050,-9.125949,2.584774,-7.981143,-9.179162,1.782900,-3.926440,-9.279820,1.768829,-3.929918, + -9.208994,3.755324,-2.552424,-9.127168,3.744108,-2.560706,-13.164732,2.771107,-3.492328,-10.303391,4.506038,-4.253048, + -10.520473,4.583926,-4.259280,-9.976859,4.165978,-7.321939,-10.360031,4.423205,-3.208413,-10.545372,4.640279,-4.587674, + -10.355226,4.544639,-4.484179,-10.210302,4.486848,-4.142344,-10.204525,4.441295,-3.258560,-10.745754,4.622616,-4.271658, + -10.317253,4.457573,-3.185450,-11.060610,4.622214,-3.958010,-10.101791,4.484866,-4.123497,-10.899426,4.527432,-4.196315, + -10.679866,4.486401,-4.143426,-11.334251,4.660418,-3.288950,-10.982663,4.578159,-3.356333,-10.546983,4.499307,-3.284354, + -11.506053,4.492663,-6.254081,-9.065435,0.892253,-6.074439,-11.200693,4.617620,-3.392360,-10.764471,4.538670,-3.320284, + -10.329769,4.459994,-3.248461,-12.064258,1.912408,-5.635729,-11.091131,4.597791,-3.374259,-10.874063,4.558504,-3.338391, + -10.653188,4.518529,-3.301897,-10.443464,4.480575,-3.267327,-9.275578,3.988484,-6.270332,-9.037184,3.324992,-3.738678, + -12.902012,2.488805,-4.758114,-12.724018,2.619930,-5.392568,-9.243834,0.617313,-4.605482,-11.912601,2.832357,-5.821892, + -8.639277,2.107344,-5.808480,-9.078925,1.875935,-4.532892,-12.578140,2.629849,-5.408577,-12.775849,2.493837,-4.690547, + -9.129901,3.446406,-3.849273,-11.257772,3.035629,-7.837381,-9.542814,2.659905,-7.619150,-11.903083,4.766359,-2.618929, + -12.272962,5.022556,-5.118645,-10.318325,0.849580,-4.873419,-11.700457,1.174393,-5.040188,-10.573978,1.399851,-6.082976, + -12.396706,1.552034,-4.926393,-11.352134,4.767316,-4.388443,-11.625519,1.264216,-5.028836,-10.366937,0.910671,-4.936548, + -11.234138,4.789447,-4.910535,-11.902401,4.705934,-2.655539,-12.392813,1.431942,-4.993978,-11.327147,4.671354,-3.435368, + -10.218774,2.018849,-7.656421,-11.300920,4.589674,-3.435892,-10.262420,4.376738,-3.274996,-10.094019,4.454494,-3.222373, + -10.099976,4.424348,-3.224620,-10.192479,4.444344,-3.247687,-10.186522,4.474491,-3.245440,-10.959778,4.707567,-4.096056, + -10.966995,4.668927,-4.100608,-11.059500,4.688923,-4.123675,-11.052282,4.727563,-4.119123,-11.397083,1.016194,-3.134158, + -13.071511,3.376811,-3.469527,-11.422567,1.009589,-3.037685,-12.963733,3.331258,-3.427612,-10.224919,4.467443,-3.649822, + -11.442287,0.904021,-3.050122,-11.416802,0.910625,-3.146594,-10.813005,0.438486,-2.307396,-10.808724,0.510938,-2.280139, + -10.726520,0.494349,-2.252771,-10.730802,0.421896,-2.280027,-9.024780,2.500926,-3.531384,-9.093204,2.515717,-3.548446, + -9.064223,2.670871,-3.530169,-8.995800,2.656080,-3.513106,-9.144043,0.826277,-4.180446,-9.212466,0.841068,-4.197508, + -9.183485,0.996222,-4.179230,-9.115062,0.981431,-4.162168,-9.451734,0.648028,-3.987930,-9.437060,0.726584,-3.978675, + -9.344557,0.706588,-3.955608,-9.359230,0.628032,-3.964863,-8.967441,0.974142,-5.173023,-8.822691,0.983701,-5.757140, + -8.719992,1.584010,-5.688859,-8.868072,1.555764,-5.106326,-8.607967,2.235297,-5.617256,-8.513585,2.786993,-5.554505, + -8.663920,2.741946,-4.976410,-8.524268,1.625247,-6.455648,-8.925655,2.089303,-4.436944,-12.517271,3.123545,-5.251805, + -12.917763,1.401791,-5.475471,-11.357468,2.089030,-5.047363,-11.445234,1.117536,-5.163307,-12.503284,3.127170,-5.304750, + -12.903776,1.405416,-5.528416,-11.343482,2.092655,-5.100307,-11.431249,1.121160,-5.216252,-12.308704,4.972281,-4.679525, + -10.821236,3.174469,-4.850805,-12.294718,4.975905,-4.732471,-10.807250,3.178093,-4.903750,-11.160033,3.629202,-4.858658, + -11.158326,3.650055,-4.913668,-12.346596,3.966017,-5.205931,-12.363067,3.949089,-5.154553,-10.227523,4.568023,-4.553719, + -10.206312,4.573890,-4.634013,-10.451395,3.490736,-4.701179,-10.427567,3.510611,-4.779822,-8.654213,4.275144,-4.152497, + -8.640226,4.278769,-4.205442,-8.976022,2.552309,-4.355453,-8.959419,2.569942,-4.406747,-8.966142,1.088852,-5.379490, + -8.880976,1.416906,-5.352947,-8.838466,1.538211,-5.465935,-8.888077,1.314856,-5.470622,-8.931604,1.199647,-5.398057, + -8.931604,1.199647,-5.398057,-8.888077,1.314856,-5.470622,-8.930314,1.515317,-5.124969,-8.838466,1.538211,-5.465935, + -8.880976,1.416906,-5.352947,-8.966142,1.088852,-5.379490,-9.002336,1.187376,-5.164396,-9.018341,1.082630,-5.184237, + -8.953188,1.405516,-5.138523,-8.953188,1.405516,-5.138523,-8.976414,1.294021,-5.152286,-8.930314,1.515317,-5.124969, + -8.976414,1.294021,-5.152286,-9.018341,1.082630,-5.184237,-9.002336,1.187376,-5.164396,-11.519852,3.256083,-5.029642, + -11.686605,2.348961,-5.138340,-11.696419,2.341951,-5.084811,-11.529665,3.249074,-4.976113,-11.414827,3.239593,-5.012766, + -11.581582,2.332469,-5.121464,-11.591395,2.325461,-5.067935,-11.424642,3.232584,-4.959237,-9.245018,3.970886,-4.364388, + -9.379526,3.235491,-4.452596,-9.394176,3.229977,-4.400024,-9.259665,3.965373,-4.311817,-9.142340,3.952724,-4.337825, + -9.276850,3.217327,-4.426032,-9.291498,3.211815,-4.373461,-9.156988,3.947210,-4.285254,-9.417561,3.899719,-4.436132, + -9.552070,3.164324,-4.524340,-9.586236,3.153455,-4.467231,-9.432208,3.894207,-4.383561,-9.314882,3.881557,-4.409569, + -9.449392,3.146160,-4.497776,-9.483559,3.135293,-4.440668,-9.329531,3.876044,-4.356997,-9.502625,4.418011,-4.395927, + -9.626915,3.755771,-4.473616,-9.638203,3.751128,-4.433766,-9.517273,4.412498,-4.343356,-9.399947,4.399848,-4.369364, + -9.524238,3.737607,-4.447052,-9.535526,3.732966,-4.407203,-9.414596,4.394335,-4.316792,-12.620459,4.004834,-4.190142, + -12.100708,4.848379,-3.799492,-12.130781,3.308619,-5.145130,-11.258617,3.977389,-4.773959,-10.854407,4.409348,-4.688531, + -12.737743,3.769802,-4.021026,-12.708597,3.829585,-3.949855,-10.825261,4.469131,-4.617360,-10.836613,4.319795,-4.620594, + -12.722110,3.691123,-3.961339,-12.692965,3.750906,-3.890168,-10.807467,4.379578,-4.549423,-11.383829,3.423942,-4.986294, + -12.821950,4.020200,-3.676033,-12.821124,4.085874,-3.573910,-11.304443,3.469833,-4.953422,-11.374722,3.347890,-4.902121, + -12.805746,3.937154,-3.622759,-12.804920,4.002828,-3.520636,-11.295335,3.393781,-4.869248,-11.906816,2.442601,-5.169533, + -12.727275,2.744287,-5.035238,-12.684326,2.817548,-4.995010,-11.835028,2.501685,-5.148605,-11.853622,2.378462,-5.149129, + -12.725463,2.696925,-4.947221,-12.682514,2.770185,-4.906993,-11.781834,2.437547,-5.128200,-9.501405,3.187418,-3.024935, + -9.470432,3.326384,-2.957036,-8.756339,2.197279,-5.041473,-1.006130,12.587668,-4.235313,-0.618745,16.437269,-3.440826, + -0.524593,16.432652,-3.416271,-0.911979,12.583051,-4.210758,-1.031615,12.581064,-4.138841,-0.644229,16.430664,-3.344354, + -0.550077,16.426046,-3.319799,-0.937463,12.576447,-4.114286,1.015592,16.295341,-5.066423,3.089198,16.193197,-4.519817, + 2.968270,12.724100,-4.789579,0.919277,12.805599,-5.353393,0.491478,16.187313,-3.077122,2.551744,16.081711,-2.480017, + 2.449049,12.534713,-2.753289,0.469309,12.661184,-3.655233,-0.726885,16.311958,-3.409965,0.933557,12.540468,-3.059188, + -1.272608,16.278996,-1.348809,2.778619,16.086706,-0.376354,2.659585,12.220440,-0.655197,-0.926605,14.617489,-3.080803, + -0.806206,14.523689,-3.578247,3.244052,14.322512,-2.488729,3.241219,14.225424,-2.496124,-0.809039,14.426601,-3.585642, + -0.831936,14.517021,-3.480843,3.221844,14.316756,-2.404660,3.219011,14.219668,-2.412055,-0.834769,14.419933,-3.488238, + -0.616583,13.043586,-3.490447,3.215721,13.351629,-2.562680,3.212887,13.254540,-2.570075,-0.595483,12.948921,-3.481375, + -0.618682,13.053978,-3.377118,3.190236,13.345024,-2.466208,3.187403,13.247936,-2.473603,-0.597581,12.959313,-3.368047, + -0.792132,12.799617,-4.121169,3.229222,12.453263,-2.620616,3.226848,12.356294,-2.629749,-0.794965,12.702528,-4.128564, + -0.833685,12.788847,-3.963866,3.191191,12.443407,-2.476648,3.197870,12.348783,-2.520050,-0.836518,12.691759,-3.971262, + -0.777875,15.494572,-3.504296,3.272383,15.293394,-2.414778,3.269550,15.196306,-2.422173,-0.780708,15.397484,-3.511691, + -0.806882,15.487055,-3.394488,3.246899,15.286789,-2.318305,3.244065,15.189701,-2.325701,-0.809714,15.389967,-3.401883, + -0.805683,16.429672,-3.437282,3.331635,16.241781,-2.334199,3.328313,16.127945,-2.342870,-0.808516,16.332584,-3.444677, + -0.823609,16.419083,-3.291378,3.296276,16.232618,-2.200343,3.292954,16.118780,-2.209014,-0.826443,16.321995,-3.298773, + -0.747519,12.716162,-4.109696,-0.752689,16.401552,-3.420179,-0.599393,16.392082,-3.354584,-0.622841,12.796562,-4.074091, + -0.804912,12.710443,-4.012634,-0.810083,16.395834,-3.323115,-0.632782,16.387136,-3.276875,-0.627611,12.701748,-3.966393, + 3.035730,12.367684,-2.649910,3.148289,16.225063,-2.356099,3.316592,16.215584,-2.296121,3.204034,12.358205,-2.589933, + 3.025265,12.360516,-2.551781,3.137824,16.217894,-2.257970,3.280003,16.210655,-2.217421,3.167445,12.353278,-2.511233, + -1.502758,14.297000,-1.618370,2.868570,14.082603,-0.478314,2.871403,14.179691,-0.470919,-1.499925,14.394089,-1.610974, + -1.476860,14.303712,-1.716410,2.881575,14.085974,-0.527544,2.884408,14.183063,-0.520149,-1.474026,14.400800,-1.709014, + 0.040846,13.899898,-2.672117,2.835896,13.114268,-0.535137,2.841397,13.211483,-0.537945,0.066360,13.990552,-2.695339, + 0.111004,13.874363,-2.708038,2.851763,13.111599,-0.596474,2.857264,13.208814,-0.599283,0.136518,13.965018,-2.731260, + -1.005736,12.335304,-2.140805,2.827265,12.180563,-0.677630,2.824852,12.097880,-0.683929,-1.007500,12.237979,-2.144481, + -1.057473,12.333011,-2.055259,2.801781,12.173959,-0.581158,2.799368,12.091276,-0.587456,-1.059238,12.235685,-2.058936, + -1.439201,15.375149,-1.659314,2.912259,15.155603,-0.444045,2.910474,15.058872,-0.455391,-1.440986,15.278418,-1.670660, + -1.461627,15.365685,-1.575105,2.889833,15.146139,-0.359836,2.888048,15.049408,-0.371183,-1.463412,15.268955,-1.586452, + -1.430258,16.339224,-1.512303,2.941071,16.124828,-0.372247,2.938238,16.027740,-0.379642,-1.433091,16.242136,-1.519698, + -1.455742,16.332621,-1.415830,2.915586,16.118223,-0.275774,2.912753,16.021135,-0.283169,-1.458575,16.235531,-1.423225, + 2.660453,12.170321,-0.685419,2.774343,16.105265,-0.381942,2.875896,16.100283,-0.355457,2.762007,12.165339,-0.658933, + 2.634969,12.163715,-0.588947,2.748858,16.098660,-0.285470,2.848518,16.092421,-0.241732,2.734629,12.157476,-0.545209, + 1.343418,16.079842,0.263610,3.195056,16.113857,-2.311670,3.087576,12.430632,-2.592217,0.404894,12.224396,-0.624990, + 2.598692,12.243317,-0.643763,2.596022,12.151819,-0.650733,0.411032,12.191313,-0.615390,0.340488,12.233005,-0.525540, + 2.801344,12.233217,-0.588811,2.798675,12.141720,-0.595780,0.366203,12.167592,-0.480849,1.222047,12.109818,0.072907, + 1.221647,12.121550,-0.080959,1.219214,12.012731,0.065512,1.218814,12.024462,-0.088354,-1.134092,16.311932,-1.339783, + 2.711801,16.122913,-0.337903,2.709195,16.033604,-0.344706,-1.136626,16.225096,-1.346398,-1.436108,16.326731,-1.418360, + 2.909609,16.113056,-0.284265,2.907003,16.023745,-0.291068,-1.424608,16.240572,-1.446558,1.341335,16.197674,0.384275, + 1.340191,16.183912,0.228467,1.351791,16.075771,0.353353,1.337358,16.086824,0.221072,1.343583,16.221056,0.314927, + 1.339803,16.215483,0.389525,1.139578,11.957215,0.185547,-1.460636,16.351299,-1.447944,0.196179,12.096260,-0.635066, + -1.484762,16.349585,-1.416193,0.183877,12.150787,-0.558206,2.987052,16.128250,-0.223551,2.868239,12.056653,-0.533680, + 2.915534,16.136108,-0.299332,2.796721,12.064512,-0.609461,1.163585,11.981393,0.036892,-0.759830,16.379347,-3.360970, + 3.114268,12.400534,-2.599721,-0.847089,13.946896,-3.487308,3.227170,16.183800,-2.321148,-0.794452,12.801751,-3.992795, + -0.716694,12.797937,-3.972515,-0.719527,12.700850,-3.979910,-0.797285,12.704663,-4.000190,-1.009688,12.519279,-2.645902, + -0.983963,12.498619,-2.572530,-0.953093,12.413078,-2.607439,-0.978819,12.433738,-2.680811,0.237822,14.664865,-3.123900, + 0.305579,14.706846,-3.113011,0.356454,14.623847,-3.109586,0.288697,14.581865,-3.120475,0.854576,15.130480,-0.804995, + 0.923254,15.172293,-0.807651,0.973935,15.089109,-0.806725,0.905257,15.047297,-0.804069,-0.827331,15.058851,-3.418348, + -0.749573,15.055037,-3.398069,-0.752406,14.957949,-3.405464,-0.830164,14.961761,-3.425744,-1.334781,14.961617,-1.549524, + -1.293249,14.959625,-1.539282,-1.296082,14.862535,-1.546678,-1.337614,14.864529,-1.556919,-0.787776,16.414351,-3.315101, + -0.710019,16.410536,-3.294822,-0.712852,16.313448,-3.302217,-0.790609,16.317263,-3.322496,-1.374304,16.307682,-1.381484, + -1.296546,16.303869,-1.361204,-1.298960,16.221136,-1.367506,-1.376718,16.224951,-1.387785,1.541526,12.453632,-3.142876, + 1.543621,12.525447,-3.137406,1.637773,12.520829,-3.112851,1.635678,12.449015,-3.118321,1.657515,12.229585,-0.942854, + 1.659611,12.301399,-0.937384,1.753762,12.296782,-0.912829,1.751667,12.224967,-0.918299,0.551700,12.514382,-3.490275, + 0.557699,12.650155,-3.487741,0.651851,12.645537,-3.463186,0.645852,12.509765,-3.465720,-0.177731,12.205926,-1.516478, + -0.175636,12.277740,-1.511008,-0.081484,12.273123,-1.486453,-0.083579,12.201308,-1.491923,0.693150,16.321451,-2.930259, + 0.691055,16.249638,-2.935729,0.596903,16.254255,-2.960284,0.598999,16.326071,-2.954813,0.137518,16.227465,-1.024904, + 0.135422,16.155649,-1.030374,0.041271,16.160267,-1.054929,0.043366,16.232082,-1.049459,1.719507,16.275333,-2.718006, + 1.717411,16.203520,-2.723476,1.623259,16.208138,-2.748031,1.625355,16.279951,-2.742561,1.264160,16.173956,-0.754058, + 1.262064,16.102142,-0.759528,1.167912,16.106760,-0.784083,1.170008,16.178574,-0.778613,3.258504,16.128658,-2.265792, + 3.180747,16.132471,-2.286071,3.041193,16.236544,-2.315811,3.261337,16.225746,-2.258397,2.842826,16.036173,-0.394094, + 2.765069,16.039986,-0.414373,2.625515,16.144058,-0.444113,2.845659,16.133261,-0.386698,3.218341,14.752376,-2.370622, + 3.140584,14.756189,-2.390901,3.143416,14.853277,-2.383506,3.221174,14.849463,-2.363227,2.791538,14.638067,-0.460370, + 2.713780,14.641881,-0.480650,2.716613,14.738969,-0.473255,2.794371,14.735155,-0.452975,3.187433,13.693247,-2.451295, + 3.109675,13.697061,-2.471574,3.112509,13.794148,-2.464179,3.190266,13.790335,-2.443900,2.759544,13.541708,-0.543879, + 2.681786,13.545523,-0.564158,2.684619,13.642611,-0.556764,2.762377,13.638797,-0.536484,3.148949,12.374512,-2.551742, + 3.071192,12.378325,-2.572021,3.074025,12.475413,-2.564626,3.151783,12.471600,-2.544347,2.720624,12.167435,-0.653097, + 2.642866,12.171248,-0.673377,2.645699,12.268336,-0.665982,2.723457,12.264523,-0.645702,-0.179611,12.780006,-5.625525, + -0.101565,12.776270,-5.606373,-0.104398,12.679182,-5.613769,-0.182444,12.682918,-5.632921,-1.000338,12.669263,-4.166430, + -0.922291,12.665527,-4.147279,-0.925124,12.568439,-4.154674,-1.003171,12.572175,-4.173826,-0.368844,14.068488,-5.587303, + -0.290797,14.064752,-5.568151,-0.293630,13.967664,-5.575546,-0.371677,13.971400,-5.594698,-0.884055,13.933243,-3.539492, + -0.806008,13.929506,-3.520340,-0.808841,13.832418,-3.527735,-0.886888,13.836155,-3.546887,-0.161584,15.275948,-5.449890, + -0.083537,15.272211,-5.430738,-0.086370,15.175123,-5.438133,-0.164417,15.178860,-5.457285,-0.653184,15.140018,-3.476968, + -0.575137,15.136282,-3.457816,-0.577971,15.039192,-3.465211,-0.656017,15.042929,-3.484363,-0.124347,16.552004,-5.352695, + -0.046301,16.548267,-5.333542,-0.049858,16.426359,-5.342828,-0.127905,16.430096,-5.361980,-0.615948,16.416075,-3.379772, + -0.537901,16.412338,-3.360620,-0.540734,16.315250,-3.368015,-0.618781,16.318987,-3.387167,0.454414,12.523612,-3.804793, + 0.474449,16.383654,-3.155718,0.568601,16.379034,-3.131163,0.548566,12.518994,-3.780238,0.428930,12.517007,-3.708320, + 0.448965,16.377048,-3.059246,0.543117,16.372431,-3.034690,0.523081,12.512389,-3.683765,1.564813,12.429977,-3.149973, + 1.678485,16.325480,-2.853258,1.765961,16.319693,-2.810794,1.650637,12.424767,-3.114438,1.520913,12.424428,-3.060296, + 1.634585,16.319931,-2.763581,1.722062,16.314142,-2.721117,1.606737,12.419217,-3.024761,-0.539369,12.630885,-4.625013, + -0.500626,12.627089,-4.604341,-0.540821,12.565687,-4.540286,-0.579563,12.569483,-4.560958,-0.860324,13.282270,-4.058186, + -0.819196,13.269310,-4.049064,-0.854150,13.198742,-3.991730,-0.895279,13.211702,-4.000853,-0.459045,13.951921,-4.383714, + -0.416268,13.949192,-4.373456,-0.435515,13.886598,-4.311427,-0.478292,13.889327,-4.321685,-0.641615,14.501538,-3.547945, + -0.598843,14.498682,-3.537696,-0.618400,14.425481,-3.476476,-0.661172,14.428337,-3.486724,-0.475281,15.149050,-4.096329, + -0.432508,15.146194,-4.086080,-0.452065,15.072992,-4.024859,-0.494838,15.075850,-4.035108,-0.606957,15.689234,-3.457479, + -0.564185,15.686378,-3.447231,-0.583741,15.613178,-3.386010,-0.626514,15.616034,-3.396259,-0.388827,16.379625,-3.989245, + -0.431180,16.382589,-4.001085,-0.446730,16.446692,-3.929406,-0.404377,16.443727,-3.917566,-0.571825,15.702438,-3.447295, + -0.614178,15.705402,-3.459135,-0.629728,15.769505,-3.387456,-0.587375,15.766541,-3.375616,-0.430463,15.103865,-4.069510, + -0.472816,15.106831,-4.081349,-0.488366,15.170933,-4.009670,-0.446013,15.167967,-3.997830,-0.609597,14.407991,-3.545891, + -0.651949,14.410957,-3.557731,-0.667500,14.475060,-3.486052,-0.625147,14.472095,-3.474212,-0.823279,12.650016,-3.164568, + -0.745522,12.646202,-3.144289,-0.742689,12.743291,-3.136894,-0.820446,12.747105,-3.157173,-0.510788,12.603540,-4.633938, + -0.516569,12.559981,-4.630487,-0.587963,12.575652,-4.561803,-0.582183,12.619211,-4.565255,-0.127316,12.362831,-3.992177, + -0.129185,12.319010,-3.996525,-0.213313,12.317726,-3.947438,-0.211445,12.361547,-3.943090,-0.384292,16.443123,-3.983700, + -0.383131,16.399204,-3.987255,-0.467234,16.393034,-3.938496,-0.468395,16.436951,-3.934941,0.053792,16.329504,-3.239102, + 0.054953,16.285587,-3.242657,-0.029150,16.279415,-3.193898,-0.030311,16.323334,-3.190343,1.418270,12.255250,-0.968979, + 1.420366,12.327065,-0.963509,1.514518,12.322447,-0.938954,1.512422,12.250632,-0.944424,1.228483,12.034442,-0.067539, + 1.230578,12.106256,-0.062069,1.324730,12.101639,-0.037514,1.322635,12.029824,-0.042984,1.567848,16.161526,-0.667515, + 1.565752,16.089710,-0.672986,1.471600,16.094328,-0.697541,1.473696,16.166143,-0.692071,1.365048,16.153479,0.266488, + 1.362953,16.081663,0.261018,1.268801,16.086281,0.236463,1.270897,16.158096,0.241933,0.410675,12.453344,-1.261040, + 0.412099,12.502141,-1.257323,0.506251,12.497523,-1.232768,0.504827,12.448727,-1.236485,0.332828,12.134996,-0.514513, + 0.321065,12.209094,-0.546597,0.459655,12.170223,-0.439875,0.457560,12.098409,-0.445345,0.517514,16.213528,-0.947836, + 0.515418,16.141712,-0.953307,0.421266,16.146330,-0.977862,0.423362,16.218145,-0.972391,0.317475,16.175320,-0.409257, + 0.315379,16.103504,-0.414727,0.221228,16.108122,-0.439282,0.223323,16.179937,-0.433812,0.702515,12.464945,-2.587883, + 0.706511,12.578837,-2.601552,0.735417,12.596132,-2.449002,0.731422,12.482240,-2.435333,0.297147,12.581096,-1.892971, + 0.312768,12.660915,-1.898422,0.444648,12.635683,-1.962696,0.440088,12.564333,-1.953743,1.096999,12.488504,-2.367846, + 1.098493,12.560125,-2.360108,1.223870,12.567548,-2.453015,1.222376,12.495927,-2.460753,0.973505,12.434444,-1.815596, + 0.974999,12.506065,-1.807858,1.037926,12.489408,-1.665840,1.036431,12.417787,-1.673578,0.540523,12.629788,-2.158665, + 0.541925,12.662624,-2.152769,0.537366,12.652837,-2.097180,0.535965,12.620001,-2.103077,1.079735,12.467580,-2.096899, + 1.081136,12.500416,-2.091002,1.089190,12.509990,-2.146230,1.087789,12.477154,-2.152126,0.711506,12.684951,-1.821073, + 0.712199,12.718141,-1.817487,0.767420,12.715656,-1.805157,0.766728,12.682467,-1.808743,0.926075,12.499969,-2.468168, + 0.926767,12.533160,-2.464582,0.872576,12.536042,-2.480788,0.871884,12.502851,-2.484374,0.627380,12.504423,-2.366669, + 0.711287,12.491140,-2.563594,1.183050,12.519861,-2.429732,1.057084,12.481429,-2.011118,2.662097,13.269846,-1.178018, + 2.731740,13.266431,-1.159855,0.924147,13.939320,-5.267719,0.904222,13.278088,-5.315664,0.461520,13.138718,-3.644413, + 0.481983,13.861670,-3.586926,0.516794,13.735844,-3.744063,0.504012,13.284580,-3.779913,0.625321,13.328339,-4.236819, + 0.638155,13.754984,-4.205801,0.655836,13.754116,-4.201190,0.643001,13.327472,-4.232208,0.521692,13.283713,-3.775302, + 0.534474,13.734977,-3.739452,0.642514,13.562563,-4.217823,0.666934,13.561366,-4.211454,0.665300,13.518580,-4.213234, + 0.640880,13.519778,-4.219603,0.520296,13.500843,-3.760806,0.544716,13.499646,-3.754437,0.545572,13.542230,-3.749716, + 0.521153,13.543427,-3.756084,0.582251,13.318830,-4.025070,0.606671,13.317633,-4.018702,0.595796,13.316132,-3.977285, + 0.571376,13.317329,-3.983654,0.583434,13.730558,-3.952179,0.607853,13.729362,-3.945810,0.618805,13.733517,-3.987024, + 0.594386,13.734715,-3.993393,0.769397,15.299076,-4.453907,0.839040,15.295660,-4.435744,0.805081,15.190504,-4.325310, + 0.735438,15.193920,-4.343473,0.565484,15.251490,-3.669039,0.635127,15.248074,-3.650876,0.663420,15.159052,-3.776099, + 0.593777,15.162468,-3.794262,0.721783,14.725926,-4.379120,0.791426,14.722511,-4.360957,0.819719,14.633490,-4.486180, + 0.750075,14.636905,-4.504344,0.579578,14.675858,-3.831326,0.649221,14.672443,-3.813163,0.615263,14.567288,-3.702730, + 0.545620,14.570704,-3.720893,0.689215,15.214108,-4.092268,0.721488,15.212524,-4.083851,0.707013,15.207031,-4.029382, + 0.674740,15.208614,-4.037799,0.658805,14.662482,-4.079397,0.691078,14.660899,-4.070980,0.705451,14.662884,-4.125717, + 0.673177,14.664466,-4.134133,0.591950,14.944897,-3.779886,0.624224,14.943314,-3.771469,0.623091,14.887033,-3.777709, + 0.590818,14.888617,-3.786126,0.750663,14.930044,-4.391232,0.782936,14.928461,-4.382815,0.785409,14.995749,-4.379644, + 0.753136,14.997330,-4.388061,0.609556,15.198051,-3.757904,0.593620,14.634457,-3.802786,0.753828,14.688296,-4.406947, + 0.770247,15.233543,-4.367370,-0.991411,14.730081,-3.024358,-0.921768,14.726665,-3.006195,-0.941681,14.659458,-2.942479, + -1.011324,14.662873,-2.960642,-1.108086,14.929100,-2.527609,-1.038443,14.925684,-2.509446,-1.030039,14.844189,-2.556995, + -1.099682,14.847605,-2.575157,-0.911733,14.260308,-3.064750,-0.847710,14.275970,-3.035638,-0.807207,14.269053,-3.120988, + -0.871230,14.253390,-3.150100,-0.935026,14.452872,-3.006845,-1.004669,14.456288,-3.025009,-0.983075,14.484627,-3.102475, + -0.913432,14.481211,-3.084312,-1.024312,14.761038,-2.822203,-0.992040,14.759455,-2.813787,-1.004090,14.782127,-2.763315, + -1.036364,14.783710,-2.771732,-1.112992,14.413718,-2.463994,-1.089098,14.411798,-2.441444,-1.055161,14.388505,-2.479356, + -1.079055,14.390424,-2.501906,-1.172229,14.687134,-2.430005,-1.139956,14.685552,-2.421588,-1.148010,14.633621,-2.400470, + -1.180283,14.635204,-2.408887,-0.940550,14.355683,-2.815783,-0.913311,14.344615,-2.815350,-0.904417,14.394818,-2.840010, + -0.931657,14.405887,-2.840444,-0.905069,14.368529,-2.726027,-0.937342,14.370112,-2.734444,-0.928627,14.420683,-2.758351, + -0.896354,14.419100,-2.749934,-0.993867,15.947052,-2.786080,-0.924224,15.943636,-2.767916,-0.944130,15.876673,-2.704183, + -1.013773,15.880087,-2.722346,-1.170982,15.931042,-2.098022,-1.101339,15.927628,-2.079859,-1.085067,15.870039,-2.153081, + -1.154710,15.873455,-2.171244,-1.027972,15.393478,-2.759410,-0.958329,15.390062,-2.741247,-0.942057,15.332474,-2.814468, + -1.011699,15.335890,-2.832631,-1.170357,15.337206,-2.212089,-1.100714,15.333790,-2.193926,-1.120620,15.266825,-2.130192, + -1.190263,15.270241,-2.148355,-1.060177,15.894070,-2.471613,-1.027904,15.892487,-2.463196,-1.042379,15.886995,-2.408727, + -1.074652,15.888577,-2.417144,-1.090588,15.342443,-2.458742,-1.058314,15.340860,-2.450325,-1.043941,15.342846,-2.505061, + -1.076215,15.344427,-2.513478,-1.157442,15.624859,-2.159230,-1.125169,15.623276,-2.150813,-1.126301,15.566996,-2.157054, + -1.158574,15.568579,-2.165471,-0.998729,15.610006,-2.770577,-0.966456,15.608423,-2.762160,-0.964296,15.664968,-2.759807, + -0.996570,15.666552,-2.768224,-1.138931,15.909039,-2.134886,-1.156315,15.295803,-2.183548,-0.995926,15.355848,-2.787237, + -0.978964,15.919710,-2.746242,2.734922,15.765495,-0.987928,2.836281,13.007689,-1.121299,2.804008,13.009272,-1.129717, + 2.916829,15.377052,-0.948434,2.801848,12.952726,-1.132070,2.834122,12.951143,-1.123653,2.928190,13.277004,-1.433001, + 2.911719,15.125008,-0.976758,2.895917,13.278586,-1.441419,2.881442,13.273094,-1.386949,2.913715,13.271511,-1.378532, + 2.897780,12.725378,-1.420130,2.865507,12.726961,-1.428547,2.879880,12.728945,-1.483284,2.912153,12.727362,-1.474867, + 2.845582,13.306623,-1.052466,2.775940,13.310039,-1.070629,2.792205,13.252209,-1.143869,2.861847,13.248793,-1.125706, + 3.028703,13.328552,-1.738531,2.959060,13.331967,-1.756694,2.939147,13.264760,-1.692979,3.008790,13.261345,-1.674816, + 2.846925,12.737364,-1.164660,2.777282,12.740779,-1.182823,2.757369,12.673573,-1.119107,2.827012,12.670156,-1.100944, + 2.995135,12.793350,-1.710462,2.930091,15.124149,-0.972506,2.941239,15.375959,-0.942725,2.925492,12.796765,-1.728625, + 3.056738,15.428135,-1.540712,3.054414,15.165682,-1.534991,3.072786,15.164822,-1.530739,2.941758,12.738935,-1.801864, + 3.081148,15.427042,-1.535004,2.915409,15.699543,-0.870200,2.845766,15.702957,-0.888363,3.011400,12.735519,-1.783701, + 3.104744,15.713228,-1.581646,3.035101,15.716644,-1.599809,2.827137,15.064493,-0.936994,2.896780,15.061077,-0.918831, + 3.011525,15.129856,-1.619751,3.081168,15.126440,-1.601588,0.923209,14.052884,-5.278028,0.992852,14.049468,-5.259865, + 0.989083,13.920288,-5.269704,0.919440,13.923704,-5.287868,0.454072,13.967352,-3.483342,0.523715,13.963937,-3.465179, + 0.551072,13.842823,-3.592847,0.481429,13.846239,-3.611010,0.901634,13.313480,-5.334347,0.971277,13.310065,-5.316184, + 0.967508,13.180885,-5.326024,0.897865,13.184300,-5.344187,0.461812,13.173965,-3.662216,0.531455,13.170549,-3.644053, + 0.496560,13.033303,-3.536064,0.426917,13.036719,-3.554227,3.100394,14.883316,-4.587582,3.119401,15.556383,-4.533896, + 2.712177,15.486387,-2.985636,2.690331,14.759281,-3.038598,2.735849,14.905926,-3.185556,2.749519,15.361216,-3.152355, + 2.869630,15.363913,-3.612390,2.857886,14.948210,-3.645531,2.840206,14.949078,-3.650142,2.851950,15.364779,-3.617001, + 2.731839,15.362082,-3.156966,2.718169,14.906792,-3.190167,2.860749,15.147923,-3.659828,2.836329,15.149120,-3.666196, + 2.837266,15.195990,-3.660977,2.861686,15.194792,-3.654608,2.726706,15.159811,-3.143628,2.702286,15.161009,-3.149997, + 2.700481,15.113914,-3.151934,2.724901,15.112717,-3.145566,2.804447,15.384357,-3.407007,2.780027,15.385555,-3.413375, + 2.767804,15.380938,-3.367377,2.792224,15.379740,-3.361009,2.775730,14.904514,-3.387130,2.751310,14.905712,-3.393498, + 2.768744,14.908779,-3.459766,2.793163,14.907581,-3.453398,2.851269,13.449220,-3.997921,2.781626,13.452635,-4.016084, + 2.752700,13.538742,-3.888982,2.822343,13.535327,-3.870819,2.640848,13.379108,-3.216238,2.571205,13.382524,-3.234401, + 2.604674,13.490253,-3.342477,2.674317,13.486837,-3.324314,2.832790,13.988859,-3.825592,2.763147,13.992275,-3.843755, + 2.796617,14.100004,-3.951831,2.866260,14.096589,-3.933668,2.685414,13.960208,-3.277848,2.615772,13.963623,-3.296011, + 2.586845,14.049730,-3.168909,2.656488,14.046315,-3.150745,2.739623,13.471586,-3.635806,2.707350,13.473169,-3.644223, + 2.692934,13.469911,-3.589559,2.725207,13.468328,-3.581142,2.737987,14.013505,-3.527628,2.705714,14.015088,-3.536046, + 2.720212,14.021850,-3.590366,2.752486,14.020267,-3.581949,2.660254,13.699596,-3.278669,2.627981,13.701180,-3.287086, + 2.629816,13.757671,-3.283498,2.662089,13.756088,-3.275081,2.822015,13.799219,-3.880175,2.789742,13.800802,-3.888592, + 2.788936,13.744667,-3.896060,2.821209,13.743084,-3.887643,2.644114,13.446884,-3.306185,2.657530,13.997417,-3.254103, + 2.817120,14.031448,-3.859618,2.805383,13.501109,-3.914341,3.110102,14.772024,-4.610473,3.040459,14.775440,-4.628635, + 3.044228,14.904619,-4.618796,3.113871,14.901203,-4.600633,2.667241,14.640382,-2.949115,2.597598,14.643798,-2.967278, + 2.632493,14.781044,-3.075268,2.702136,14.777629,-3.057105,3.132031,15.523594,-4.553227,3.062388,15.527008,-4.571390, + 3.066157,15.656189,-4.561551,3.135800,15.652773,-4.543387,2.721863,15.453726,-3.005607,2.652220,15.457142,-3.023770, + 2.624864,15.578255,-2.896102,2.694507,15.574839,-2.877939,0.584214,12.849404,-4.178766,0.765360,12.840962,-4.131493, + 0.762805,12.665797,-4.154636,0.581757,12.677597,-4.201654,0.536605,12.863726,-3.993526,0.729914,12.854245,-3.943110, + 0.724097,12.654907,-3.958293,0.530788,12.664388,-4.008709,0.902333,12.750977,-5.299452,1.069214,12.647131,-5.262478, + 0.971473,12.476715,-5.299964,0.804593,12.580561,-5.336938,0.852323,12.715435,-5.173555,1.019204,12.611589,-5.136582, + 0.936675,12.467697,-5.168233,0.769795,12.571542,-5.205207,2.756134,16.183718,-3.854997,2.936676,16.168650,-3.808337, + 2.931849,16.003267,-3.820934,2.751308,16.018337,-3.867594,2.727112,16.182356,-3.743972,2.907835,16.173491,-3.696839, + 2.903008,16.008110,-3.709436,2.722286,16.016973,-3.756569,0.814533,16.282846,-4.414893,0.992679,16.274109,-4.368432, + 0.984306,16.130369,-4.363355,0.806159,16.139107,-4.409816,0.767562,16.270674,-4.237082,0.945709,16.261936,-4.190621, + 0.940710,16.090643,-4.203668,0.762564,16.099380,-4.250129,1.122401,16.282930,-4.552110,1.389505,16.269831,-4.482448, + 1.385919,16.146963,-4.491807,1.118816,16.160063,-4.561468,1.086226,16.273556,-4.415165,1.353330,16.260454,-4.345504, + 1.349535,16.130426,-4.355408,1.082432,16.143528,-4.425070,1.105952,16.279425,-4.292300,1.373056,16.266325,-4.222639, + 1.365914,16.164806,-4.214346,1.098811,16.177906,-4.284008,1.069777,16.270050,-4.155356,1.336881,16.256948,-4.085695, + 1.333114,16.127878,-4.095526,1.066011,16.140978,-4.165187,2.870488,16.103500,-3.614970,2.862973,15.845968,-3.634586, + 2.725770,15.852697,-3.670369,2.733285,16.110229,-3.650753,2.834313,16.094126,-3.478026,2.826275,15.818691,-3.499006, + 2.689073,15.825420,-3.534789,2.697110,16.100855,-3.513809,2.922373,15.889753,-3.839088,2.916789,15.698383,-3.853664, + 2.865901,15.700880,-3.866936,2.871486,15.892248,-3.852359,2.889707,15.888746,-3.714025,2.883684,15.682346,-3.729747, + 2.832797,15.684841,-3.743018,2.838820,15.891241,-3.727297,2.966454,13.036995,-4.577334,2.958138,12.752048,-4.599039, + 2.818363,12.758904,-4.635492,2.826679,13.043850,-4.613788,2.916785,13.025743,-4.410583,2.908650,12.747002,-4.431815, + 2.774133,12.753599,-4.466898,2.782267,13.032340,-4.445666,0.730434,15.562250,-4.239517,0.738045,15.823088,-4.219649, + 0.806768,15.819717,-4.201726,0.799157,15.558880,-4.221594,0.685501,15.532837,-4.072759,0.693634,15.811579,-4.051527, + 0.762357,15.808207,-4.033604,0.754223,15.529467,-4.054835,0.512985,12.714144,-3.941359,0.514955,12.975892,-3.899688, + 0.583678,12.972521,-3.881764,0.581708,12.710773,-3.923436,0.468574,12.702634,-3.773237,0.476708,12.981375,-3.752006, + 0.545431,12.978004,-3.734083,0.537297,12.699264,-3.755314,0.796132,15.779240,-4.450617,0.804266,16.057980,-4.429385, + 0.872989,16.054609,-4.411462,0.864855,15.775867,-4.432693,0.751094,15.746244,-4.284131,0.762484,16.028677,-4.274693, + 0.831207,16.025307,-4.256770,0.819817,15.742874,-4.266208,-1.240100,15.837011,-1.711636,-1.233830,16.051916,-1.695267, + -1.180845,16.049316,-1.681449,-1.187116,15.834412,-1.697818,-1.267685,15.823704,-1.608370,-1.260328,16.075838,-1.589165, + -1.207344,16.073238,-1.575347,-1.214701,15.821104,-1.594552,-0.900714,14.587214,-3.318192,-0.906987,14.793382,-3.255367, + -0.854003,14.790784,-3.241549,-0.847730,14.584616,-3.304373,-0.928118,14.556143,-3.218961,-0.934391,14.762310,-3.156137, + -0.881407,14.759711,-3.142318,-0.875134,14.553544,-3.205142,3.104988,13.403642,-2.195094,3.098718,13.188737,-2.211462, + 3.045733,13.191336,-2.225281,3.052004,13.406240,-2.208912,3.077584,13.396540,-2.091355,3.071314,13.181635,-2.107724, + 3.018330,13.184234,-2.121542,3.024600,13.399138,-2.105173,2.877585,15.842216,-0.743516,2.871315,15.627312,-0.759885, + 2.818330,15.629911,-0.773703,2.824601,15.844816,-0.757334,2.850182,15.835115,-0.639777,2.843730,15.614006,-0.656619, + 2.790746,15.616604,-0.670437,2.797197,15.837713,-0.653596,-1.725988,14.868572,-0.717087,-1.759348,14.862734,-0.659080, + -0.903756,14.881289,-0.725571,-1.348728,14.410881,-1.665962,-0.058488,14.331496,-1.523138,-1.369197,14.337423,-1.624855, + -1.313679,15.527924,-1.589601,-0.483380,15.279079,-1.088874,-1.309603,15.423803,-1.613625,-0.535175,15.291016,-1.131915, + -1.321666,14.403196,-1.603318,-1.225620,15.424706,-1.589812,-1.279056,15.454430,-1.595249,-1.276873,15.228153,-1.432600, + -1.350381,15.233570,-1.434073,-1.410759,14.549697,-1.450362,-1.337251,14.544282,-1.448889,-1.381381,14.408841,-1.589495, + -1.551575,14.874409,-0.837413,-1.512008,14.872469,-0.827094,-1.577936,14.860830,-0.675022,-1.396452,15.205826,-1.195119, + -0.391878,16.301659,-0.776071,-1.410913,15.200235,-1.140722,-1.445206,14.623772,-1.215148,-1.443644,14.624344,-1.214510, + -1.430583,14.626280,-1.269527,-1.432146,14.625707,-1.270164,-1.545251,14.887083,-0.777333,-1.543688,14.887657,-0.776696, + -1.544758,14.831394,-0.783182,-1.546320,14.830822,-0.783819,-1.357028,14.877352,-1.459829,-1.340082,14.876429,-1.454597, + -1.337961,14.932995,-1.452511,-1.354908,14.933920,-1.457743,1.021945,13.515068,-0.179509,0.998612,13.497381,-0.152508, + 0.964890,13.223628,-0.163107,0.864408,13.233270,-0.317770,0.903449,13.490812,-0.301244,0.896700,13.473492,-0.264139, + 0.858892,13.244604,-0.283754,0.978171,13.210630,-0.186949,0.795614,15.987276,-0.055642,0.754150,15.971878,-0.032712, + 0.759526,15.702366,-0.088874,0.630100,15.697380,-0.223018,0.622227,16.016630,-0.150829,0.608721,15.995930,-0.110072, + 0.615798,15.708948,-0.174964,0.800450,15.689079,-0.113541,-1.295070,14.445743,-1.434207,-1.287441,14.421325,-1.418310, + -1.136132,14.402149,-1.421888,-1.125428,14.371506,-1.543007,-1.317439,14.389601,-1.524749,-1.297913,14.387435,-1.502256, + -1.148369,14.368175,-1.506316,-1.125973,14.443809,-1.432617,2.440014,12.597437,-0.350823,2.445051,12.595568,-0.325948, + 2.448398,12.839029,-0.305884,2.570182,12.847128,-0.377888,2.566149,12.580148,-0.399743,2.571187,12.578295,-0.374866, + 2.575220,12.845274,-0.353012,2.443361,12.840899,-0.330760,2.044440,12.262304,-0.226084,2.048836,12.260576,-0.202771, + 2.052587,12.510120,-0.182391,2.167263,12.515895,-0.248294,2.162966,12.247646,-0.270098,2.167363,12.245933,-0.246784, + 2.171660,12.514180,-0.224980,2.048191,12.511848,-0.205704,1.785943,15.375090,0.126311,1.785380,15.372852,0.158344, + 1.789840,15.636339,0.179485,1.899766,15.663431,0.116225,1.893860,15.350391,0.091309,1.896754,15.348858,0.112420, + 1.902660,15.661898,0.137335,1.790403,15.638577,0.147453,1.964112,15.683252,0.090614,1.968964,15.681303,0.116778, + 1.972622,15.942564,0.138205,2.101445,15.947859,0.064577,2.097241,15.667938,0.041728,2.102095,15.666002,0.067893, + 2.106297,15.945921,0.090742,1.967770,15.944513,0.112042,2.179683,15.489019,0.006318,2.184278,15.487692,0.023623, + 2.186831,15.663651,0.038255,2.269498,15.667736,-0.017708,2.266584,15.479385,-0.033283,2.271181,15.478067,-0.015976, + 2.274094,15.666416,-0.000401,2.182235,15.664978,0.020948,2.471483,12.492859,-3.236661,2.642486,16.196352,-2.939653, + 2.720847,16.187702,-2.899205,2.593361,12.471882,-3.187267,2.454385,12.480898,-3.139097,2.615331,16.188164,-2.843759, + 2.708635,16.180605,-2.801345,2.553217,12.466154,-3.096693,2.562729,12.617644,-3.180955,2.562218,12.574587,-3.190367, + 2.477976,12.565098,-3.142388,2.478487,12.608154,-3.132976,3.058177,12.449951,-2.642774,3.057666,12.406895,-2.652186, + 2.973423,12.397405,-2.604207,2.973934,12.440461,-2.594795,2.623362,16.017311,-2.961078,2.620150,15.973358,-2.960303, + 2.536389,15.980347,-2.911068,2.539600,16.024300,-2.911844,3.154253,16.162903,-2.345085,3.151042,16.118952,-2.344310, + 3.067281,16.125940,-2.295075,3.070492,16.169891,-2.295851,0.955368,14.187225,-5.231954,0.442551,14.054323,-3.290647, + 1.567603,14.574692,-1.112134,1.642674,15.110117,-0.637335,2.512884,15.269506,-0.203232,2.588638,13.778008,-0.539848, + 1.419863,13.981060,-0.850149,1.530198,14.567405,-1.002132,2.232239,14.522639,-0.379623,1.660761,15.193769,-0.804832, + 1.462386,13.988062,-0.896123,1.280561,13.719131,0.147220,0.408467,13.362734,-0.956097,0.388813,13.355453,-0.906190, + 2.928554,13.657390,-0.463914,2.857035,13.665249,-0.539696,1.284341,13.724702,0.072622,-0.266096,12.551537,-4.905511, + -0.188049,12.547800,-4.886359,-0.263262,12.648624,-4.898116,-0.185215,12.644888,-4.878964,-0.940846,14.902794,-0.632878, + -1.066704,14.310283,-1.603230,-0.497911,15.247307,-1.085587,0.654215,12.646162,-3.421950,0.694472,12.656595,-3.574346, + 0.650166,12.536285,-3.430542,0.690423,12.546719,-3.582937,1.579127,16.314505,-2.710560,1.616334,16.324148,-2.851409, + 1.576011,16.207705,-2.718695,1.613217,16.217346,-2.859544,1.133536,16.207376,-0.763524,1.159020,16.213982,-0.859997, + 1.130702,16.110289,-0.770919,1.156187,16.116894,-0.867392,2.711116,13.746805,-0.583030,2.785292,13.733961,-0.442820, + 2.812670,13.741824,-0.556544,1.400615,12.549924,-3.204262,1.019666,12.581200,-3.377077,0.632084,12.564474,-2.364772, + 1.192403,12.088099,0.055254,1.880288,12.466979,-2.013297,1.483896,12.454044,-1.463144,2.116192,12.511268,-2.930323, + -0.060476,12.815584,-2.761450,0.018898,12.686546,-3.676437,0.712764,12.533049,-2.559990,1.184526,12.561769,-2.426129, + 1.061788,12.541481,-2.009221,-1.007701,15.134167,-2.866561,-1.006838,15.332699,-2.814812,-0.988862,15.331741,-2.809129, + -0.983805,15.132896,-2.859006,-1.222769,15.059311,-2.187781,-1.206176,15.268360,-2.184807,-1.188199,15.267405,-2.179123, + -1.198873,15.058041,-2.180226,-1.189397,16.140221,-2.111310,-1.180401,15.939795,-2.153161,-1.162425,15.938839,-2.147478, + -1.165500,16.138948,-2.103755,-0.982682,16.165134,-2.771425,-0.989441,15.955509,-2.764197,-0.971466,15.954552,-2.758513, + -0.958786,16.163864,-2.763870,2.996126,13.049114,-1.726406,2.963853,13.050697,-1.734823,2.962720,12.994418,-1.741063, + 2.994994,12.992835,-1.732646,2.816516,12.697988,-1.145635,2.834202,13.286670,-1.102749,2.993323,13.303271,-1.709747, + 2.977931,12.758289,-1.753210,3.056462,13.982219,-1.722037,2.986819,13.985634,-1.740200,2.861265,13.886537,-1.003538, + 3.071631,15.420162,-1.540892,2.961306,15.373732,-0.946039,2.791622,13.889952,-1.021701,3.078767,15.657961,-1.522449, + 3.097234,15.657133,-1.518628,3.096181,15.419062,-1.535812,2.916772,15.375813,-0.956331,3.010395,14.572423,-1.720258, + 3.080039,14.569008,-1.702095,2.924584,15.648993,-0.923375,2.943052,15.648165,-0.919553,2.811305,14.564512,-0.970321, + 2.880948,14.561096,-0.952158,3.035434,13.527204,-1.750548,3.015053,13.333923,-1.726118,2.996586,13.334767,-1.729938, + 3.010885,13.528325,-1.755627,2.886993,13.511227,-1.052649,2.877191,13.313374,-1.079188,2.858724,13.314217,-1.083008, + 2.862444,13.512348,-1.057727,2.858246,12.474392,-1.136831,2.864381,12.669057,-1.154433,2.845913,12.669886,-1.158255, + 2.833696,12.475493,-1.141911,3.003538,12.530819,-1.811141,2.998957,12.727968,-1.777595,2.980489,12.728798,-1.781417, + 2.978989,12.531921,-1.816221,3.056442,14.282820,-1.655452,3.048079,14.020600,-1.651188,3.029707,14.021460,-1.655440, + 3.032032,14.283913,-1.661161,2.906240,14.219072,-1.026087,2.894675,13.952974,-1.056956,2.876302,13.953834,-1.061208, + 2.881829,14.220162,-1.031796,2.926303,14.216738,-1.029410,2.908501,14.506667,-1.001744,2.890033,14.507496,-1.005565, + 2.881770,14.218821,-1.039701,3.071475,14.274839,-1.656261,3.072528,14.512911,-1.639076,3.054061,14.513741,-1.642898, + 3.046925,14.275942,-1.661341,2.052283,16.188690,-1.120270,2.299697,16.177160,-1.065422,2.300378,16.196003,-1.064494, + 2.053124,16.213736,-1.118998,2.197680,16.213041,-1.712929,2.444522,16.210709,-1.623581,2.445203,16.229549,-1.622653, + 2.198520,16.238087,-1.711658,1.722103,16.203655,-1.149935,1.720008,16.131840,-1.155405,1.943325,16.253582,-1.850477, + 1.941230,16.181767,-1.855947,2.339163,16.101475,-0.993928,2.341258,16.173290,-0.988458,2.502132,16.152254,-1.683341, + 2.504227,16.224070,-1.677871,2.206258,16.227591,-1.713235,2.057573,16.232790,-1.124981,1.975562,16.239157,-1.773106, + 1.976355,16.258009,-1.772606,2.207313,16.252653,-1.712570,2.055917,16.187119,-1.127215,1.787199,16.202276,-1.184972, + 1.787993,16.221130,-1.184472,0.795973,16.250307,-1.447919,1.043386,16.238779,-1.393071,1.044068,16.257620,-1.392144, + 0.796813,16.275352,-1.446647,0.941369,16.274658,-2.040579,1.188211,16.272326,-1.951230,1.188893,16.291168,-1.950302, + 0.942210,16.299704,-2.039307,0.465793,16.265272,-1.477585,0.463698,16.193457,-1.483055,0.687014,16.315199,-2.178127, + 0.684919,16.243383,-2.183597,1.082852,16.163092,-1.321577,1.084947,16.234907,-1.316107,1.245821,16.213871,-2.010991, + 1.247917,16.285686,-2.005521,0.949948,16.289207,-2.040884,0.801262,16.294407,-1.452631,0.719252,16.300774,-2.100756, + 0.720044,16.319628,-2.100255,0.951002,16.314270,-2.040220,0.799606,16.248737,-1.454865,0.530889,16.263893,-1.512621, + 0.531682,16.282747,-1.512121,1.886060,16.159307,-3.258560,2.133474,16.147779,-3.203711,2.134155,16.166620,-3.202784, + 1.886900,16.184353,-3.257288,2.031456,16.183659,-3.851219,2.278299,16.181326,-3.761870,2.278980,16.200169,-3.760942, + 2.032297,16.208704,-3.849947,1.555880,16.174273,-3.288225,1.553785,16.102457,-3.293695,1.777101,16.224199,-3.988767, + 1.775006,16.152384,-3.994237,2.172940,16.072092,-3.132217,2.175035,16.143908,-3.126747,2.335908,16.122871,-3.821631, + 2.338004,16.194687,-3.816161,2.040035,16.198208,-3.851525,1.891349,16.203407,-3.263271,1.809338,16.209774,-3.911396, + 1.810132,16.228626,-3.910896,2.041090,16.223270,-3.850860,1.889693,16.157738,-3.265505,1.620976,16.172894,-3.323261, + 1.621769,16.191748,-3.322761,1.385146,12.601651,-3.630554,1.142511,12.614418,-3.703494,1.142097,12.595645,-3.705431, + 1.384632,12.576689,-3.633063,1.550868,12.657930,-4.215658,1.292076,12.657166,-4.259770,1.291662,12.638392,-4.261707, + 1.550355,12.632969,-4.218167,1.687529,12.579483,-3.495663,1.689624,12.651298,-3.490193,1.841183,12.626709,-4.214239, + 1.843278,12.698524,-4.208768,1.070470,12.681662,-3.651670,1.068375,12.609846,-3.657140,1.269367,12.724664,-4.332126, + 1.267271,12.652849,-4.337596,1.544044,12.643836,-4.221993,1.384344,12.558714,-3.642833,1.774604,12.632235,-4.161605, + 1.774302,12.613508,-4.163967,1.543643,12.618941,-4.225133,1.385347,12.604215,-3.638123,1.648070,12.587504,-3.557675, + 1.647768,12.568778,-3.560037,3.075421,16.304710,-4.507008,2.966950,16.310032,-4.535298,2.969783,16.407120,-4.527903, + 3.078255,16.401798,-4.499613,2.633744,16.130903,-2.434291,2.525273,16.136223,-2.462581,2.528106,16.233311,-2.455186, + 2.636578,16.227991,-2.426896,2.966335,12.566430,-4.791749,2.857864,12.571751,-4.820038,2.860697,12.668839,-4.812644, + 2.969168,12.663519,-4.784354,2.484360,12.394599,-2.729542,2.375889,12.399919,-2.757831,2.378722,12.497007,-2.750436, + 2.487194,12.491687,-2.722147,-0.428918,16.299456,-0.741202,-1.319501,15.296640,-1.688061,-1.351076,15.314241,-1.650948, + 2.843964,12.274998,-1.440606,2.957318,16.125387,-1.151148,1.018190,12.539291,-3.380680,1.399139,12.508017,-3.207865, + 0.122024,12.561487,-1.966280,0.124119,12.633303,-1.960810,0.218271,12.628684,-1.936255,0.216175,12.556870,-1.941725, + 0.014193,12.626494,-3.678334,-0.065180,12.755533,-2.763347,0.356838,12.512935,-1.203810,0.382322,12.519539,-1.300282, + 0.354004,12.415846,-1.211205,0.379489,12.422451,-1.307677,3.057708,12.432949,-2.461387,0.963425,12.538151,-3.190019, + -0.810742,14.105778,-3.542963,3.166548,16.162771,-2.177291,1.008068,14.068044,-3.073488,1.262111,13.121046,-3.065380, + -0.755950,16.341766,-3.277040,0.115024,13.592175,-3.352763,-0.833043,14.107508,-3.445276,0.978201,14.070361,-2.942658, + 1.234184,13.189888,-2.929483,0.085156,13.594492,-3.221933,2.111487,12.451216,-2.932220,1.517189,12.417663,-1.453383, + 1.875584,12.406927,-2.015194,1.225695,12.051718,0.065015,-1.233334,15.567148,-1.538234,-0.796666,15.323963,-3.417744, + 0.379626,14.000792,-3.240242,0.405110,14.007397,-3.336714,0.473778,13.996174,-3.215687,0.499262,14.002779,-3.312159, + 1.110236,13.465452,-3.250412,1.137578,13.472539,-3.353916,1.107403,13.368364,-3.257808,1.134745,13.375450,-3.361311, + -0.899683,14.489047,-3.490070,-0.842289,14.494765,-3.587133,-0.688993,14.485295,-3.521539,-0.722382,14.480350,-3.443830, + -0.793706,14.754946,-3.537799,-0.768222,14.761550,-3.634271,-0.699555,14.750328,-3.513244,-0.674070,14.756932,-3.609716, + -0.832705,13.802499,-3.942224,-0.764037,13.791277,-3.821196,-0.858189,13.795895,-3.845751,-0.738553,13.797881,-3.917668, + -0.021383,14.252623,-1.603278,-0.043192,14.246970,-1.520721,-0.018550,14.349710,-1.595883,-0.040359,14.344059,-1.513326, + 0.531672,13.333990,-1.151674,0.575262,13.233689,-1.232447,0.526171,13.236775,-1.148866,0.580762,13.330904,-1.235256, + -0.551454,15.249348,-1.158504,-0.577188,15.254826,-1.114883,0.295724,12.703034,-2.604663,0.389876,12.698416,-2.580107, + 0.382705,12.596844,-2.571715,0.288553,12.601461,-2.596270,1.384131,13.245308,0.046967,1.907209,13.389527,-1.943028, + 1.760949,13.342964,-1.379505,2.123345,13.433285,-2.794239,2.663494,12.152590,-0.640990,2.673721,12.155241,-0.679708, + 0.315567,12.489960,-1.279725,0.305339,12.487309,-1.241007,2.690786,14.206741,-0.500743,2.723957,14.206031,-0.531092, + 0.286928,14.335481,-1.434916,0.276700,14.332830,-1.396198,0.253566,13.670667,-1.215271,0.243338,13.668015,-1.176553, + 2.753119,13.266414,-0.582663,2.742892,13.263763,-0.543945,2.565167,14.385571,-0.851592,2.587153,14.376408,-0.882887, + 0.374016,14.551094,-1.607198,0.376949,14.598086,-1.558331,2.621744,14.947033,-1.688038,2.628790,14.923187,-1.719540, + 1.060832,14.730454,-2.432053,1.053785,14.754301,-2.400551,0.530772,14.876232,-2.323421,0.597627,14.912891,-2.348253, + 0.643922,14.827208,-2.349804,0.577067,14.790547,-2.324971,2.699924,13.848181,-0.894974,2.696954,14.746874,-1.081758, + 2.666425,13.569401,-2.244582,2.292037,14.643595,-2.531183,2.620581,15.147514,-0.296420,3.102651,14.895985,-2.460543, + 2.590935,13.306911,-0.514705,3.043561,13.707923,-2.449460,-0.874065,14.613925,-3.068015,-0.794549,13.943332,-3.474520, + -1.196245,15.518103,-1.504631,-0.449075,15.287848,-3.332519,1.179263,15.108192,-2.932750,0.549054,15.264305,-0.370841, + 1.296233,15.272203,0.230078,-1.206329,14.446211,-2.296537,-1.275972,14.449626,-2.314700,-1.298859,14.417962,-2.232898, + -1.229216,14.414547,-2.214735,-0.929480,13.842820,-3.589913,-0.809572,13.828406,-3.446610,-0.986873,13.837102,-3.492851, + -0.787957,13.838517,-3.543911,-0.423883,13.942020,-4.288876,-0.501930,13.945757,-4.308028,-0.426716,13.844933,-4.296271, + -0.504763,13.848669,-4.315423,1.595612,14.817181,-1.129215,1.645604,14.804581,-1.357101,2.415978,14.858562,-0.288145, + -0.884262,14.311872,-3.294291,-0.842001,14.297377,-3.294881,-0.863721,14.144957,-3.364352,-0.905982,14.159451,-3.363762, + -0.901596,14.258333,-3.220689,-0.859335,14.243838,-3.221280,-0.874871,14.109099,-3.282195,-0.917132,14.123594,-3.281605, + -0.715577,14.064814,-3.359095,-0.699714,14.058288,-3.400353,-0.827709,13.971360,-3.468110,-0.843572,13.977886,-3.426853, + -0.694508,13.977301,-3.337152,-0.678645,13.970775,-3.378410,-0.789474,13.894075,-3.441185,-0.805337,13.900600,-3.399927, + 2.354878,12.582013,-2.932283,2.432431,15.239660,-2.729853,0.425362,13.897224,-3.351946,0.493047,12.658399,-3.677795, + 2.415020,14.642993,-2.775301,0.428052,13.338255,-3.389503,1.416575,15.004797,-3.014282,1.353956,12.587020,-3.220155, + 1.513581,14.097589,-4.233853,2.384665,13.602767,-2.854534,0.511331,12.815877,-3.634470,1.886175,13.502205,-4.295983, + 0.688837,14.191629,-3.262191,0.734945,12.578917,-3.566505,1.088738,13.816239,-4.633624,1.269380,13.176127,-4.734198, + -0.574915,13.674730,-3.381863,-0.570080,13.676562,-3.407773,-0.545277,14.561178,-3.327271,-0.550112,14.559346,-3.301361, + -0.662971,13.678679,-3.399985,-0.658135,13.680512,-3.425895,-0.633127,14.565291,-3.347611,-0.637961,14.563459,-3.321701, + -0.053138,13.322819,-3.621019,-0.048943,13.338486,-3.641875,-0.128799,13.959032,-3.245639,-0.132995,13.943364,-3.224784, + -0.141080,13.324302,-3.640041,-0.136884,13.339970,-3.660897,-0.216588,13.961836,-3.266458,-0.220783,13.946168,-3.245601, + -0.203443,13.681507,-3.304366,-0.115580,13.679351,-3.284427,-0.207639,13.665839,-3.283509,-0.119775,13.663683,-3.263571, + 0.608719,13.377713,-3.094668,0.613554,13.379546,-3.120578,0.638357,14.264162,-3.040076,0.633521,14.262330,-3.014166, + 0.520663,13.381663,-3.112790,0.525498,13.383495,-3.138700,0.550507,14.268275,-3.060416,0.545672,14.266442,-3.034506, + 0.970186,13.731899,-2.952100,0.975021,13.733732,-2.978010,0.999823,14.618348,-2.897508,0.994989,14.616516,-2.871598, + 0.882131,13.735849,-2.970222,0.886966,13.737682,-2.996131,0.911974,14.622461,-2.917848,0.907139,14.620628,-2.891938, + 0.162310,13.657997,-3.169812,0.167881,13.658978,-3.199941,0.206512,14.687785,-3.143864,0.200941,14.686804,-3.113734, + 0.060146,13.662784,-3.190826,0.065717,13.663766,-3.220956,0.104584,14.692666,-3.167458,0.099013,14.691684,-3.137329, + 0.000431,14.137528,-3.179745,0.006003,14.138510,-3.209874,0.044634,15.167316,-3.153797,0.039062,15.166334,-3.123667, + -0.101732,14.142315,-3.200759,-0.096161,14.143297,-3.230889,-0.057294,15.172197,-3.177391,-0.062865,15.171215,-3.147262, + 1.504028,12.758035,-2.865680,1.511370,12.759691,-2.895398,1.542499,13.787125,-2.814827,1.535158,13.785469,-2.785109, + 1.403270,12.763004,-2.892606,1.410611,12.764661,-2.922324,1.442129,13.792245,-2.844310,1.434788,13.790588,-2.814593, + 1.341106,13.237229,-2.874789,1.348448,13.238885,-2.904506,1.379577,14.266319,-2.823935,1.372236,14.264663,-2.794217, + 1.240348,13.242199,-2.901715,1.247690,13.243855,-2.931432,1.279207,14.271439,-2.853419,1.271866,14.269783,-2.823701, + 0.122585,15.212427,-3.124611,0.760075,15.155369,-2.953646,0.352167,15.259916,-1.257911,-0.376296,15.366369,-1.470632, + 0.009181,15.216614,-3.140362,0.011277,15.288429,-3.134892,0.136550,15.282286,-3.102221,0.134454,15.210470,-3.107691, + -0.478455,15.341284,-1.406107,-0.476360,15.413099,-1.400637,-0.289481,15.411699,-1.491364,-0.322057,15.343206,-1.491264, + 0.726003,15.119921,-2.972648,0.728098,15.191736,-2.967178,0.853371,15.185593,-2.934507,0.851275,15.113777,-2.939977, + 0.334063,15.237555,-1.307316,0.336159,15.309370,-1.301846,0.430306,15.295158,-1.151346,0.428210,15.223343,-1.156816, + 0.475853,16.261358,-0.230572,-0.102374,14.564560,-0.969680,-0.125068,14.563659,-0.922915,0.455442,16.257469,-0.175839, + 0.667682,14.310266,-0.359871,0.676107,14.310658,-0.425825,-1.026561,14.342586,-1.584326,-0.356251,15.377045,-1.364988, + 0.428535,12.642903,-3.044101,0.522687,12.638286,-3.019546,0.515892,12.517269,-3.016250,0.421740,12.521887,-3.040805, + 1.627451,12.345493,-1.535372,1.629547,12.417309,-1.529902,1.723698,12.412691,-1.505347,1.721603,12.340876,-1.510817, + -0.644565,14.559849,-1.340499,-0.641732,14.656937,-1.333104,-0.573341,14.563286,-1.412908,-0.570508,14.660374,-1.405513, + 0.632451,14.465735,-0.594148,0.572476,14.462841,-0.533175,0.635284,14.562823,-0.586753,0.575309,14.559930,-0.525780, + -0.190892,13.682549,-1.402241,-0.197522,13.779622,-1.397574,-0.107106,13.691008,-1.459128,-0.113737,13.788080,-1.454461, + 0.913680,13.710503,-0.414410,0.843127,13.703381,-0.366507,0.907049,13.807576,-0.409743,0.836496,13.800454,-0.361839, + -0.404120,12.600279,-1.048754,-0.388785,12.692145,-1.077289,-0.312644,12.573954,-1.084346,-0.297309,12.665820,-1.112881, + 1.492080,12.640978,-0.076862,1.421527,12.633856,-0.028960,1.485449,12.738050,-0.072196,1.414896,12.730928,-0.024293, + 0.193116,12.648214,-0.859430,0.286433,12.725918,-0.916984,0.278009,12.632413,-0.898896,0.201540,12.741718,-0.877519, + -0.386161,14.921230,-0.747252,-0.341945,14.886387,-0.805214,-0.367110,14.989061,-0.820491,-0.326337,14.919117,-0.874661, + -1.593321,14.884346,-0.713109,-1.558997,14.850430,-0.774260,-1.566500,14.909714,-0.746661,-1.585818,14.825064,-0.740708, + -17.727617,-12.029525,-5.536230,-17.783554,-12.044229,-5.552012,-18.435589,-12.202270,-3.032118,-18.231842,-12.153404,-3.726372, + -18.411905,-12.197519,-3.025536,-18.435030,-12.183170,-3.030663,-17.782240,-11.999217,-5.548584,-18.899698,-11.967740,-4.318144, + -18.396303,-12.187270,-3.112378,-18.231842,-12.153404,-3.726372,-18.899698,-11.967740,-4.318144,-18.396303,-12.187270,-3.112378, + -3.704570,23.088568,1.411244,-3.716128,23.155792,1.412793,-3.633675,23.169443,1.435509,-3.622118,23.102221,1.433960, + -3.779496,23.063332,1.682859,-3.790528,23.137266,1.678467,-3.693309,23.156925,1.675010,-3.680665,23.083384,1.673315, + -3.759019,23.086317,1.688151,-3.764344,23.122007,1.686031,-3.709152,23.109514,1.667579,-4.371275,22.946014,4.064981, + -4.325179,22.958500,3.917781,-4.046689,23.014675,2.978416,-4.088344,22.996494,2.966168,-4.354274,22.934937,3.939796, + -4.159153,22.992987,3.304243,-4.312618,22.953119,3.952045,-4.360377,22.970438,3.940614,-4.094448,23.031994,2.966986, + -4.836390,23.013281,2.686825,-4.649357,22.985426,3.052008,-4.670217,23.040810,3.256251,-4.614973,23.021730,3.645251, + -4.357627,23.038284,3.168888,-4.537908,22.963499,2.942595,-4.305464,23.050449,3.279892,-4.325179,22.958500,3.917781, + -4.159153,22.992987,3.304243,-4.836390,23.013281,2.686825,-4.649357,22.985426,3.052008,-4.670217,23.040810,3.256251, + -4.614973,23.021730,3.645251,-4.357627,23.038284,3.168888,-4.537908,22.963499,2.942595,-4.305464,23.050449,3.279892, + -7.519627,7.459291,-7.863996,-2.761777,7.225940,-6.623134,-7.376461,12.365529,-7.490294,-2.618611,12.132178,-6.249432, + -6.060354,18.785191,-6.703137,-3.690035,18.668938,-6.084951,-6.218351,-0.518529,-8.066415,-4.032648,-1.482412,-7.555026, + 9.499201,8.255366,-3.313789,9.809258,9.890038,-3.119974,-19.121183,9.812103,-10.366883,-18.008984,11.860975,-9.831593, + -8.651505,-6.699249,-9.132294,-6.205713,-7.545038,-8.544114,-12.751064,-11.498503,-10.543796,-10.897860,-13.422701,-10.185983, + -17.625584,-17.146441,-12.218112,-14.652172,-19.143955,-11.569405,-6.549036,22.265579,-5.649304,-4.737231,22.586090,-5.148754, + -7.942301,29.527819,-5.275576,-6.297059,29.700096,-4.880332,-6.326483,13.148693,-7.159315,-3.854474,12.983184,-6.517638, + -1.875415,11.214089,-6.115962,-1.905181,8.499080,-6.309695,-3.876727,6.214708,-6.986889,-6.399845,6.480105,-7.635229, + -8.514080,8.867789,-8.030266,-8.501596,11.060987,-7.876821,-20.836813,10.472450,-10.648293,-19.954081,11.619177,-10.385404, + 5.191775,7.717493,-4.488465,7.294106,7.860328,-3.923334,7.633542,10.501774,-3.652833,5.944176,4.508697,-3.346267, + 7.178913,2.887807,-3.014753,8.384733,3.933860,-2.624609,-7.620573,7.430482,-7.481822,-2.826686,7.209244,-6.362198, + -7.427372,12.349687,-7.297533,-2.669522,12.116336,-6.056670,-6.111276,18.769350,-6.510378,-3.740956,18.653097,-5.892192, + -6.269262,-0.534371,-7.873653,-4.083559,-1.498255,-7.362264,9.448290,8.239524,-3.121027,9.758348,9.874196,-2.927212, + -19.211042,9.778857,-10.021429,-18.099039,11.827107,-9.486234,-8.702415,-6.715092,-8.939531,-6.256624,-7.560883,-8.351353, + -12.801975,-11.514347,-10.351033,-10.948770,-13.438543,-9.993221,-17.675364,-17.162003,-12.025032,-14.701954,-19.159517,-11.376325, + -6.599947,22.249737,-5.456542,-4.788142,22.570250,-4.955992,-8.033819,29.348667,-4.867741,-6.368708,29.497334,-4.256450, + -6.377394,13.132852,-6.966554,-3.905385,12.967342,-6.324876,-1.926326,11.198248,-5.923200,-1.956092,8.483238,-6.116933, + -3.977673,6.185899,-6.604716,-6.500791,6.451297,-7.253056,-8.615026,8.838980,-7.648092,-8.552507,11.045145,-7.684058, + -13.561037,35.469612,-3.293587,-12.045666,35.939552,-2.726732,-20.179760,65.290039,0.896895,-18.606396,65.750214,1.348418, + -20.218485,10.166346,-10.145382,-19.239719,11.690681,-9.768435,5.140863,7.701651,-4.295704,2.435994,10.224278,-4.710132, + 7.243195,7.844487,-3.730572,7.582630,10.485931,-3.460072,5.860915,4.484471,-3.031045,7.571797,5.786153,-2.489984, + 7.128002,2.871965,-2.821991,8.333824,3.918018,-2.431847,-21.364443,1.504914,-11.855037,-23.695621,22.877983,-10.056301, + 9.305851,18.006569,-2.623437,4.850041,24.396202,-2.269122,-24.580868,29.183754,-9.580015,-25.963854,34.397148,-7.447766, + -4.360490,36.378712,-0.892017,-6.181616,42.049015,-0.142283,-21.486753,-14.698214,-12.996620,10.246227,-2.886183,-2.501600, + 12.865192,14.553909,-1.696292,10.751711,20.078346,-0.563585,-6.546061,-23.894604,-9.679462,4.786169,-1.432039,-5.148135, + 3.089200,-9.084156,-6.120275,5.828051,-5.623537,-5.159862,7.750278,7.714362,-3.738965,12.778259,7.115572,-2.153848, + 12.863987,2.910977,-1.279069,4.503465,7.693331,-4.542248,10.979033,6.194642,-1.614998,8.215464,6.227333,-2.389868, + 5.945714,4.036597,-3.582451,-13.905741,67.966537,2.358630,-18.297009,69.151428,12.680709,-29.043959,67.717361,-1.383538, + -26.459728,67.757202,-0.698157,-30.386040,68.972557,9.707828,-16.205902,67.247147,13.120912,-26.382725,65.302567,-0.845864, + -26.933918,66.377670,-1.495726,-12.558609,66.746658,2.316828,-29.125418,70.631119,16.345516,-25.603140,40.248634,-4.907739, + -6.437022,21.377722,-5.932405,-6.325008,20.489866,-6.215507,-6.212994,19.602013,-6.498608,-3.791973,19.565147,-5.861593, + -4.107059,20.572128,-5.623980,-4.422145,21.579111,-5.386367,-6.588521,21.794254,-5.429327,-6.543940,21.805809,-5.598093, + -6.532515,21.350327,-5.570878,-6.487933,21.361881,-5.739644,-6.476507,20.906399,-5.712428,-6.431926,20.917953,-5.881195, + -6.420500,20.462471,-5.853979,-6.375919,20.474026,-6.022745,-6.364493,20.018543,-5.995530,-6.319912,20.030098,-6.164296, + -6.308486,19.574615,-6.137080,-6.263905,19.586170,-6.305846,-6.252480,19.130690,-6.278631,-6.207898,19.142242,-6.447397, + -3.685340,19.045815,-5.787638,-3.729922,19.034260,-5.618872,-3.842884,19.549305,-5.668831,-3.887465,19.537752,-5.500065, + -4.000427,20.052797,-5.550025,-4.045008,20.041245,-5.381258,-4.157969,20.556288,-5.431218,-4.202551,20.544735,-5.262452, + -4.315513,21.059780,-5.312411,-4.360094,21.048225,-5.143645,-4.473056,21.563271,-5.193605,-4.517637,21.551716,-5.024838, + -4.630599,22.066761,-5.074799,-4.675180,22.055206,-4.906032,-5.584918,11.897519,-6.841784,-6.578655,11.434927,-7.135960, + -4.599596,7.559743,-6.788556,-3.551388,7.971486,-6.501452,-3.101198,10.240017,-6.299156,-3.562212,11.287186,-6.349248, + -7.210600,9.316301,-7.358026,-6.789651,8.330407,-7.244052,-4.416112,11.837490,-6.537141,-3.071414,8.947030,-6.379806, + -5.873899,7.635373,-7.049728,-7.162120,10.528429,-7.352147,-5.616704,11.889282,-6.721457,-6.610441,11.426689,-7.015634, + -4.631381,7.551506,-6.668229,-3.588958,7.958975,-6.374412,-3.132984,10.231779,-6.178830,-3.593998,11.278948,-6.228922, + -7.242385,9.308064,-7.237700,-6.821437,8.322170,-7.123725,-4.447898,11.829252,-6.416815,-3.103199,8.938793,-6.259480, + -5.905684,7.627135,-6.929402,-7.193905,10.520191,-7.231821,7.655058,5.810379,-2.805206,7.600487,6.170315,-3.027603, + 7.545917,6.530252,-3.250001,7.491346,6.890189,-3.472399,7.436776,7.250125,-3.694797,5.342255,7.075734,-4.260026, + 5.492734,6.433974,-4.031586,5.643216,5.792215,-3.803146,5.793696,5.150456,-3.574707,7.604146,5.794537,-2.612444, + 7.517227,6.146089,-2.712382,7.549575,6.154473,-2.834841,7.462657,6.506026,-2.934779,7.495006,6.514410,-3.057239, + 7.408086,6.865963,-3.157177,7.440436,6.874347,-3.279637,7.353517,7.225900,-3.379575,7.385866,7.234284,-3.502035, + 7.210846,7.836103,-3.608112,5.108514,7.693267,-4.173244,5.291344,7.059892,-4.067264,5.258996,7.051508,-3.944804, + 5.441825,6.418132,-3.838824,5.409476,6.409749,-3.716364,5.592304,5.776373,-3.610384,5.559955,5.767989,-3.487925, + 5.742785,5.134614,-3.381945,5.710436,5.126230,-3.259485,5.893264,4.492855,-3.153505,-26.219452,70.651703,4.262054, + -22.533031,70.732727,18.093922,-22.664934,74.937332,18.346928,-29.257320,74.835739,16.598522,-18.829538,70.678421,5.939703, + -18.674829,75.299667,5.792622,-26.399405,75.171448,3.797624,-28.570185,70.877747,15.168406,-22.438944,70.972237,16.794510, + -28.692860,74.788239,15.403716,-22.561619,74.882721,17.029816,-13.831972,65.512138,2.214541,-18.265034,67.215408,12.574798, + -11.247743,65.551956,2.899919,-11.320765,68.006378,3.044207,-28.966955,65.262733,-1.531243,-28.265553,67.048424,10.136247, + -28.326908,69.004288,10.253942,-21.416370,66.466179,-0.433865,-17.781197,66.558823,0.525228,-22.145571,67.724304,9.022735, + -28.276731,67.565872,7.388694,-16.454149,67.871429,10.540015,-19.235291,67.200623,5.272213,-22.650009,67.086411,4.165813, + -21.209089,67.984833,0.075528,-18.265913,68.030190,0.856106,-19.409945,68.107880,4.733388,-22.211050,67.934227,3.835381, + -21.030483,67.203377,5.165139,-19.735912,68.007530,0.466239,-20.935972,67.989105,4.824881,-29.868517,68.667526,6.401031, + -27.735512,68.645576,6.624763,-27.690895,66.673897,6.630815,-13.804403,68.495583,8.132640,-29.817213,66.713043,6.407124, + -13.825747,66.432129,8.144311,-16.184824,68.550880,7.886430,-16.195417,66.506989,7.900415,-23.769850,70.740990,15.082994, + -23.509554,70.769699,15.158706,-23.875963,70.738571,15.444682,-23.616503,70.767548,15.518561,-26.934458,70.726784,14.253282, + -26.669455,70.707962,14.317336,-27.020386,70.725128,14.617614,-26.756998,70.706009,14.682755,-25.474205,70.659569,14.616340, + -25.195868,70.660896,14.689382,-25.572308,70.684326,14.990499,-25.296124,70.685547,15.063136,-24.233047,70.633636,9.886579, + -23.915310,70.587509,9.910457,-24.341421,70.628723,10.294393,-24.024588,70.582565,10.320155,-16.754669,66.988945,11.306623, + -16.578817,66.994583,11.354239,-16.865307,67.017578,11.562137,-16.690100,67.023560,11.609633,-28.987656,66.809555,8.756290, + -28.810356,66.818054,8.807269,-29.034594,66.827423,9.014274,-28.857658,66.835800,9.065087,-18.150450,67.355957,8.391726, + -17.980654,67.377487,8.462310,-18.250235,67.404053,8.629146,-18.081535,67.425964,8.699601,-20.445774,67.298317,8.105842, + -20.278849,67.348114,8.201344,-20.520428,67.330154,8.334162,-20.354290,67.380424,8.429480,-21.433138,66.995255,7.543150, + -21.254345,67.050644,7.643795,-21.501381,67.021713,7.772672,-21.323206,67.077782,7.873244,-22.709248,66.915146,7.190977, + -22.486889,66.865051,7.198226,-22.774012,66.942963,7.423581,-22.551954,66.892014,7.430561,-24.209509,67.247742,7.152038, + -24.003429,67.203568,7.157613,-24.268883,67.283585,7.387519,-24.063408,67.238838,7.392845,55.042694,376.513367,127.689453, + 61.785606,374.757538,129.440918,52.264236,374.306427,136.173691,59.007195,372.550659,137.925156,51.983562,375.844818,131.497803, + 62.099182,373.210846,134.125351,58.801537,375.881744,127.575394,55.364941,373.152100,138.069504,-14.114063,41.986050,-2.138083, + -12.541065,41.801754,-1.726548,-14.833561,37.696957,-3.090655,-13.280416,38.135117,-2.604451,-10.241780,33.209614,-3.844144, + -8.716206,33.621647,-3.230940,-6.907848,24.087906,-5.550368,-5.154543,24.364388,-4.999228,-6.969954,24.063911,-5.282854, + -5.197226,24.349348,-4.809927,-1.325612,18.757065,-5.306517,-24.277851,7.546904,-11.001616,-3.927899,22.424135,-4.865514, + 0.118622,15.913435,-4.936800,-7.983378,22.627211,-5.942327,-8.314635,18.372400,-7.261760,-0.928087,20.793640,-4.269583, + -3.580328,20.474047,-5.377296,-7.647900,20.363478,-6.499888,-10.237494,13.885234,-7.987060,-12.231097,20.369581,-6.965032, + -16.966881,22.762280,-8.294758,3.183686,2.626482,-5.269857,0.543864,29.506325,-2.920961,-17.973034,9.392046,-9.852385, + -4.172870,15.110430,-6.362898,-6.435771,14.617446,-6.994418,-4.223132,15.094677,-6.169959,-6.486032,14.601694,-6.801478, + 1.044587,7.979083,-5.566081,2.486906,10.240120,-4.902894,0.993677,7.963240,-5.373320,-14.683084,11.409193,-9.082617, + -17.469820,9.634880,-9.872931,-14.733995,11.393351,-8.889855,-17.520521,9.619700,-9.680067,-12.839971,10.990085,-8.729538, + -14.874557,8.605530,-9.345696,-12.890038,10.976686,-8.536370,-14.924486,8.592566,-9.152468,-5.637433,2.551761,-7.702765, + -3.375120,2.685572,-7.095991,-5.715458,2.527604,-7.407125,-3.460416,2.659531,-6.772829,-4.912468,-3.537557,-7.928136, + -7.434047,-3.054678,-8.561180,-4.963379,-3.553399,-7.735374,-7.484958,-3.070520,-8.368418,-8.360737,-10.694479,-9.328999, + -10.511326,-9.311472,-9.802419,-8.411648,-10.710321,-9.136237,-10.562236,-9.327312,-9.609657,-5.195681,9.802989,-6.715392, + -26.375528,70.867615,0.016000,-8.822819,61.647602,2.197306,-16.229542,69.183273,13.229030,-30.324680,67.016685,9.590133, + -28.392929,70.642410,16.539783,-27.660444,70.653702,16.734051,-26.927956,70.664993,16.928318,-26.195469,70.676285,17.122585, + -25.462980,70.687569,17.316853,-24.730494,70.698868,17.511120,-23.998005,70.710152,17.705387,-23.265516,70.721436,17.899654, + -22.555801,71.458565,18.137596,-22.577629,72.154320,18.179462,-22.599455,72.850060,18.221329,-22.621281,73.545822,18.263195, + -22.643108,74.241577,18.305061,-29.235493,74.139984,16.556656,-29.213669,73.444229,16.514793,-29.191841,72.748474,16.472927, + -29.170013,72.052719,16.431057,-29.148188,71.356964,16.389191,-23.375595,74.230301,18.110794,-23.353767,73.534538,18.068932, + -23.331942,72.838783,18.027065,-23.310114,72.143036,17.985195,-23.288288,71.447281,17.943329,-24.020777,71.435989,17.749062, + -24.753263,71.424698,17.554794,-25.485752,71.413406,17.360527,-26.218239,71.402115,17.166260,-26.950726,71.390823,16.971992, + -27.683212,71.379539,16.777725,-28.503010,74.151276,16.750923,-28.481178,73.455521,16.709061,-28.459354,72.759766,16.667194, + -28.437527,72.064011,16.625324,-28.415701,71.368256,16.583458,-22.714994,70.685577,18.782761,-29.307383,70.583969,17.034355, + -28.574892,70.595261,17.228622,-27.842409,70.606544,17.422890,-27.109917,70.617836,17.617157,-26.377434,70.629120,17.811424, + -25.644945,70.640411,18.005692,-24.912457,70.651703,18.199959,-24.179968,70.662994,18.394226,-23.447481,70.674286,18.588493, + -22.737764,71.411407,18.826435,-22.759590,72.107162,18.868301,-22.781418,72.802902,18.910168,-22.803244,73.498665,18.952034, + -22.825071,74.194412,18.993900,-29.417458,74.092819,17.245495,-29.395632,73.397072,17.203632,-29.373804,72.701317,17.161766, + -29.351978,72.005554,17.119900,-29.330153,71.309807,17.078030,-23.557558,74.183136,18.799633,-23.535732,73.487381,18.757771, + -23.513906,72.791626,18.715904,-23.492079,72.095871,18.674038,-23.470251,71.400116,18.632168,-24.202740,71.388824,18.437901, + -24.935226,71.377541,18.243633,-25.667715,71.366257,18.049366,-26.400202,71.354965,17.855099,-27.132689,71.343674,17.660831, + -27.865177,71.332382,17.466564,-28.684971,74.104111,17.439762,-28.663141,73.408363,17.397900,-28.641317,72.712601,17.356033, + -28.619490,72.016846,17.314167,-28.597662,71.321091,17.272301,-17.612104,69.161980,12.862357,-16.922949,69.172592,13.045129, + -17.582890,67.225922,12.755712,-16.896511,67.236511,12.937751,-16.226955,67.918243,13.161294,-16.247408,68.570190,13.200526, + -18.306538,68.538467,12.654408,-18.286085,67.886505,12.615180,-16.938019,68.559555,13.017364,-16.917566,67.907593,12.978131, + -17.624395,68.548981,12.835324,-17.603943,67.897018,12.796094,-29.699663,68.983131,9.889865,-29.013287,68.993713,10.071902, + -29.638306,67.027267,9.772170,-28.951931,67.037842,9.954209,-28.284714,67.659302,10.173005,-28.305166,68.311256,10.212237, + -30.364296,68.279518,9.666121,-30.343845,67.627563,9.626893,-28.991543,68.300674,10.030198,-28.971092,67.648720,9.990968, + -29.677921,68.290100,9.848161,-29.657471,67.638138,9.808928,-16.467384,69.257935,14.124644,-18.534851,69.226089,13.576324, + -28.563805,69.079193,11.145978,-30.622936,69.047455,10.599864,-16.442799,67.322052,14.012946,-18.501930,67.290314,13.466832, + -28.502449,67.123322,11.028281,-30.561579,67.091583,10.482169,-17.849947,69.236633,13.757972,-17.160791,69.247253,13.940743, + -17.819788,67.300827,13.647746,-17.133410,67.311409,13.829785,-16.463852,67.993149,14.053330,-16.484304,68.645096,14.092563, + -18.543436,68.613365,13.546445,-18.522984,67.961411,13.507215,-17.174915,68.634460,13.909400,-17.154463,67.982498,13.870166, + -17.861294,68.623871,13.727361,-17.840839,67.971924,13.688128,-29.936562,69.058029,10.781901,-29.250183,69.068611,10.963939, + -29.875202,67.102165,10.664207,-29.188826,67.112747,10.846244,-28.521610,67.734192,11.065043,-28.542065,68.386154,11.104276, + -30.601194,68.354416,10.558158,-30.580742,67.702469,10.518928,-29.228441,68.375580,10.922235,-29.207991,67.723618,10.883002, + -29.914818,68.364998,10.740197,-29.894367,67.713043,10.700965,-17.115608,35.358395,-5.102782,-18.377752,30.879154,-7.162999, + -18.451303,41.708260,-3.319814,-19.541212,40.170128,-4.903188,-14.918089,35.396084,-3.748192,-15.560524,38.431725,-3.263443, + -16.444559,25.710415,-9.204388,-11.407385,29.375467,-6.157401,-17.344389,57.890663,-0.062711,-18.262348,49.391140,-2.551779, + -12.519728,49.492523,-1.070030,-10.323730,49.635078,-0.467949,-22.670399,48.508923,-4.394779,-10.838509,58.992058,1.020983, + -31.335190,66.627960,-1.749979,-26.914333,61.221386,-1.405738,-9.733114,56.353424,0.040371,-31.342543,63.608246,-4.104531, + -22.441784,58.356758,-2.048155,-6.439281,53.291965,-7.643592,-37.004906,64.770706,-14.931992,-22.873644,54.865730,-11.877166, + -14.767780,51.547779,-1.357571,-16.340929,51.470695,-1.785325,-16.613117,57.733086,0.255381,-18.186382,57.447414,-0.185315, + -15.981718,55.395638,-0.439595,-17.336758,55.239269,-0.813611,-21.578997,76.955566,1.699840,-4.405467,60.674587,-3.370398, + -1.534753,59.610855,-5.915414,-4.026287,67.735565,3.881146,1.232942,68.212082,0.333258,10.573402,71.820259,-1.881054, + 12.132824,57.195869,9.767993,13.573442,52.306042,9.142833,11.621885,53.889122,6.579195,10.686731,57.406536,7.329996, + 11.055201,54.876850,7.311919,12.832567,52.151924,6.756395,10.799122,57.293697,5.346239,11.367641,54.651333,5.422809, + 14.751401,51.537792,-2.165936,11.511862,59.474792,-2.478325,12.161673,55.030087,-2.610957,13.684601,56.539501,11.616225, + 14.133804,51.596607,7.618924,16.776106,51.640137,-1.624081,14.452346,52.547543,9.996818,18.300816,52.150223,2.135414, + 21.149416,51.321156,-0.490662,14.396657,52.047302,-0.113474,11.459475,57.914047,1.184531,12.741226,53.968086,0.210832, + 12.185064,54.678291,0.338857,16.026173,51.939625,0.091312,18.947475,52.099724,0.562222,-175.084473,-152.778610,-65.867554, + 156.335449,-169.033249,20.567804,-165.111908,188.977646,-39.836411,166.308014,172.723007,46.598938,-212.602386,21.759117,-63.829384, + 204.240692,1.314867,44.884594,-11.817999,-205.113617,-26.321827,0.724975,224.730011,6.418811,-5.494185,11.601406,-9.814921, + -8.807034,35.964859,-2.094953,-11.723257,39.911697,-1.986458,-3.970628,31.030788,-3.402868,9.652637,33.200386,-2.585549, + 12.494530,34.651871,-4.965985,1.933397,47.122658,-1.441723,7.782104,51.673618,-5.045508,11.074488,28.399780,-2.538603, + 16.536715,30.692467,-4.169261,14.652076,22.891308,-1.970657,24.036856,25.996723,-2.509490,17.313444,19.780907,-1.480567, + 26.625866,20.406662,-2.208273,18.188103,13.600904,-1.672602,28.599079,12.576429,-2.223088,16.703491,4.379400,-2.696086, + 28.040070,7.566459,-2.713741,11.076088,-5.250533,-3.756538,17.838938,-3.368096,-5.882274,9.484444,-8.880913,-4.774848, + 17.921185,-11.952847,-6.809722,-2.860012,-24.556263,-9.271034,5.987150,-30.779667,-12.159256,5.820876,2.864207,-4.043911, + 7.629030,-2.189160,-3.770177,5.020422,5.621329,-4.306106,5.725851,4.719698,-3.633126,5.894481,4.318256,-3.076340, + 6.295853,3.246331,-3.103806,7.914576,0.454036,-3.054606,6.901438,-0.155711,-3.880326,8.980368,2.226638,-2.437289, + 3.672251,4.502161,-5.000506,-19.061691,18.233967,-9.563155,-24.053734,13.448322,-10.637734,-12.701004,19.703026,-8.527023, + -10.745303,22.668736,-6.665568,-9.652376,18.660152,-7.408602,-10.065312,20.366695,-6.745229,-10.043535,17.713278,-8.011926, + -21.052078,16.711748,-9.970185,0.865730,-2.264579,-4.329022,-0.605676,-5.829754,-4.961783,-0.692438,-5.790357,-4.982006, + 0.778968,-2.225182,-4.349244,0.840246,-2.271183,-4.232550,-0.631160,-5.836359,-4.865311,-0.717923,-5.796961,-4.885533, + 0.753483,-2.231786,-4.252772,-1.071040,-5.023378,-7.061919,-2.983226,-4.155084,-7.507599,-1.655484,-0.995992,-6.940589, + 0.245375,-1.833750,-6.495811,-1.603953,-5.186846,-5.093936,-3.516140,-4.318552,-5.539617,-2.176288,-1.072136,-4.963429, + -0.264101,-1.940430,-4.517749,-0.629371,-5.810897,-4.902069,0.827549,-2.280829,-4.275538,-1.007090,-6.012241,-2.889293, + -4.765191,-4.305747,-3.765208,-3.294032,-0.741179,-3.132554,0.464069,-2.447673,-2.256639,0.219168,-4.128876,-4.584345, + -3.528981,-2.432752,-5.424971,-3.492309,-2.343897,-5.409201,0.255840,-4.040020,-4.568575,0.190161,-4.136393,-4.474538, + -3.554466,-2.439357,-5.328498,-3.517794,-2.350501,-5.312728,0.226833,-4.047538,-4.458767,0.585890,-3.240321,-4.426641, + -3.162260,-1.544198,-5.267267,-3.125587,-1.455342,-5.251496,0.622562,-3.151466,-4.410871,0.556883,-3.247838,-4.316833, + -3.187744,-1.550802,-5.170794,-3.151072,-1.461947,-5.155024,0.593555,-3.158983,-4.301063,0.956103,-2.434271,-4.273663, + -2.860211,-0.707196,-5.130176,-2.823539,-0.618340,-5.114405,0.992775,-2.345416,-4.257892,0.914549,-2.445040,-4.116360, + -2.898242,-0.717052,-4.986207,-2.861569,-0.628196,-4.970437,0.951221,-2.356185,-4.100589,-0.147554,-5.017430,-4.742050, + -3.895703,-3.321307,-5.582675,-3.859031,-3.232451,-5.566905,-0.110882,-4.928575,-4.726279,-0.176561,-5.024948,-4.632242, + -3.921187,-3.327911,-5.486203,-3.884515,-3.239056,-5.470432,-0.139889,-4.936092,-4.616472,-0.454203,-5.894109,-4.872730, + -4.283570,-4.177494,-5.743750,-4.240571,-4.073309,-5.725258,-0.417531,-5.805254,-4.856959,-0.509190,-5.895683,-4.735998, + -4.318930,-4.186658,-5.609893,-4.275930,-4.082473,-5.591402,-0.472517,-5.806828,-4.720228,0.944148,-2.355294,-4.228103, + -0.499132,-5.852320,-4.848770,-0.652561,-5.787165,-4.859091,0.790719,-2.290139,-4.238425,0.943837,-2.374900,-4.116912, + -0.499444,-5.871926,-4.737578,-0.662829,-5.797734,-4.775659,0.780450,-2.300709,-4.154993,-2.662409,-0.700978,-5.049821, + -4.119415,-4.231262,-5.676389,-4.282148,-4.160203,-5.698344,-2.825142,-0.629919,-5.071776,-2.700661,-0.701386,-4.958569, + -4.157667,-4.231671,-5.585138,-4.290334,-4.172040,-5.612615,-2.833328,-0.641756,-4.986047,-0.125008,-4.245741,-2.523865, + -4.153264,-2.416574,-3.462747,-4.189936,-2.505429,-3.478518,-0.161680,-4.334597,-2.539636,-0.099109,-4.239029,-2.621905, + -4.140259,-2.413203,-3.511978,-4.176931,-2.502059,-3.527748,-0.135781,-4.327885,-2.637676,0.235866,-3.361727,-2.349916, + -3.792390,-1.532560,-3.288798,-3.826163,-1.620199,-3.314636,0.202093,-3.449366,-2.375753,0.258784,-3.349982,-2.433783, + -3.773743,-1.522142,-3.348505,-3.807517,-1.609781,-3.374343,0.225010,-3.437622,-2.459620,0.584769,-2.554117,-2.273458, + -3.443487,-0.724949,-3.212339,-3.406815,-0.636094,-3.196569,0.621441,-2.465261,-2.257687,0.559285,-2.560721,-2.176985, + -3.468971,-0.731554,-3.115866,-3.432299,-0.642698,-3.100096,0.595957,-2.471866,-2.161214,-0.516608,-5.221563,-2.744846, + -4.544864,-3.392395,-3.683728,-4.507179,-3.303348,-3.671929,-0.478923,-5.132516,-2.733047,-0.537537,-5.223980,-2.659760, + -4.565793,-3.394813,-3.598642,-4.528108,-3.305765,-3.586843,-0.499852,-5.134933,-2.647961,-0.882119,-6.108336,-2.904275, + -4.910375,-4.279168,-3.843157,-4.873703,-4.190313,-3.827386,-0.845447,-6.019481,-2.888505,-0.907603,-6.114941,-2.807802, + -4.935859,-4.285773,-3.746684,-4.899187,-4.196918,-3.730914,-0.870931,-6.026085,-2.792032,0.500815,-2.441109,-2.252211, + -0.984829,-6.040785,-2.891096,-1.030683,-6.019964,-2.901783,0.454962,-2.420288,-2.262898,0.490391,-2.454030,-2.155166, + -0.995254,-6.053707,-2.794051,-1.056167,-6.026568,-2.805310,0.429478,-2.426892,-2.166426,-3.279175,-0.724675,-3.133229, + -4.764820,-4.324351,-3.772113,-4.858404,-4.281856,-3.793925,-3.372759,-0.682180,-3.155041,-3.304659,-0.731279,-3.036756, + -4.790304,-4.330956,-3.675641,-4.890570,-4.288554,-3.681386,-3.404925,-0.688879,-3.042501,-3.924278,-4.866376,-2.561894, + -4.184725,-4.210348,-5.652522,-2.453119,-1.301807,-1.929240,-2.727805,-0.680280,-5.025991,0.273537,-2.422722,-2.247993, + -3.274416,-0.815664,-3.077052,-3.239856,-0.731925,-3.062190,0.305083,-2.346287,-2.234426,0.541121,-2.544260,-2.185443, + -3.462162,-0.730782,-3.118725,-3.427601,-0.647043,-3.103862,0.572667,-2.467825,-2.171877,-2.475993,-1.238569,-1.817806, + -2.402607,-1.244789,-1.953410,-2.439321,-1.149713,-1.802035,-2.365935,-1.155933,-1.937639,-1.198544,-5.975565,-2.882620, + -4.741909,-4.365866,-3.709551,-4.708175,-4.284129,-3.695044,-1.165744,-5.896092,-2.868515,-0.920322,-6.101935,-2.817585, + -4.925166,-4.283013,-3.750228,-4.891432,-4.201276,-3.735721,-0.887522,-6.022462,-2.803480,-4.020058,-4.979786,-2.481812, + -3.937043,-4.962674,-2.613276,-3.973757,-4.867599,-2.461901,-3.900371,-4.873819,-2.597505,-3.994664,-4.998381,-2.547920, + -4.027073,-4.996987,-2.480408,-2.418340,-1.091207,-1.773247,-0.893536,-6.133069,-2.837428,0.623553,-2.457214,-2.185022, + -0.889370,-6.141666,-2.798674,0.627719,-2.465812,-2.146267,-5.022752,-4.269412,-3.735859,-3.505663,-0.593558,-3.083453, + -4.929717,-4.301588,-3.770913,-3.412629,-0.625734,-3.118507,-2.386023,-1.103630,-1.861855,-0.513367,-5.832497,-4.816496, + -2.761209,-0.702945,-5.048862,0.912881,-2.371292,-4.192526,-4.187457,-4.164150,-5.672831,0.893247,-2.441110,-4.161893, + 0.821591,-2.408572,-4.178595,0.858263,-2.319717,-4.162824,0.929919,-2.352254,-4.146123,0.474414,-2.536077,-2.191401, + 0.402758,-2.503540,-2.208102,0.439431,-2.414685,-2.192332,0.511086,-2.447222,-2.175631,0.387284,-3.667040,-4.379477, + 0.315628,-3.634503,-4.396178,0.352301,-3.545647,-4.380407,0.423956,-3.578185,-4.363707,-0.077767,-3.791214,-2.483059, + -0.149423,-3.758677,-2.499760,-0.112750,-3.669821,-2.483990,-0.041095,-3.702359,-2.467289,-0.012771,-4.636358,-4.551516, + -0.084426,-4.603820,-4.568216,-0.047753,-4.514965,-4.552446,0.023902,-4.547503,-4.535745,-0.491884,-4.794605,-2.661145, + -0.563539,-4.762068,-2.677846,-0.526867,-4.673212,-2.662076,-0.455212,-4.705750,-2.645375,-0.524770,-5.876915,-4.771694, + -0.596425,-5.844378,-4.788395,-0.559753,-5.755522,-4.772625,-0.488098,-5.788059,-4.755924,-0.982568,-6.061919,-2.809434, + -1.054223,-6.029381,-2.826136,-1.022974,-5.953665,-2.812697,-0.951318,-5.986202,-2.795996,-1.282735,-1.350368,-4.662030, + -1.309861,-1.416094,-4.673695,-1.396624,-1.376696,-4.693917,-1.369498,-1.310971,-4.682252,-1.815075,-1.391961,-2.746935, + -1.842201,-1.457686,-2.758601,-1.928963,-1.418289,-2.778823,-1.901838,-1.352564,-2.767158,-0.342407,-1.772259,-4.471577, + -0.369533,-1.837985,-4.483242,-0.456295,-1.798587,-4.503464,-0.429170,-1.732862,-4.491799,-0.782089,-1.861022,-2.506173, + -0.809215,-1.926748,-2.517838,-0.895978,-1.887350,-2.538061,-0.868852,-1.821625,-2.526395,-1.882371,-5.238459,-5.086610, + -1.855245,-5.172734,-5.074945,-1.768482,-5.212132,-5.054723,-1.795608,-5.277857,-5.066388,-2.355005,-5.422524,-3.165498, + -2.327879,-5.356799,-3.153833,-2.241117,-5.396196,-3.133610,-2.268242,-5.461922,-3.145276,-2.801856,-4.811165,-5.355963, + -2.774730,-4.745440,-5.344298,-2.687967,-4.784837,-5.324076,-2.715094,-4.850563,-5.335741,-3.382310,-4.951989,-3.427764, + -3.355184,-4.886263,-3.416099,-3.268421,-4.925661,-3.395876,-3.295547,-4.991386,-3.407542,-4.222926,-4.102972,-5.627158, + -4.151271,-4.135509,-5.610456,-4.187943,-4.224365,-5.626227,-4.259599,-4.191827,-5.642928,-4.792171,-4.234028,-3.798667, + -4.720516,-4.266565,-3.781966,-4.757189,-4.355421,-3.797736,-4.828844,-4.322884,-3.814437,-3.703075,-2.843395,-5.403603, + -3.631421,-2.875933,-5.386901,-3.668092,-2.964788,-5.402672,-3.739748,-2.932251,-5.419373,-4.275681,-2.959725,-3.532004, + -4.204025,-2.992263,-3.515303,-4.240698,-3.081118,-3.531074,-4.312353,-3.048580,-3.547775,-3.303020,-1.874078,-5.231564, + -3.231365,-1.906616,-5.214863,-3.268037,-1.995471,-5.230633,-3.339692,-1.962934,-5.247334,-3.861562,-1.956335,-3.353918, + -3.789907,-1.988873,-3.337217,-3.826580,-2.077728,-3.352988,-3.898235,-2.045190,-3.369689,-2.804905,-0.667169,-5.017355, + -2.733251,-0.699707,-5.000655,-2.769923,-0.788562,-5.016425,-2.841578,-0.756024,-5.033126,-3.341160,-0.698004,-3.135156, + -3.269505,-0.730542,-3.118455,-3.306177,-0.819397,-3.134225,-3.377832,-0.786860,-3.150926,1.274992,-2.221698,-6.202990, + 1.203641,-2.189086,-6.220815,1.240314,-2.100231,-6.205044,1.311664,-2.132842,-6.187220,0.800889,-2.339897,-4.289541, + 0.729538,-2.307287,-4.307365,0.766210,-2.218431,-4.291595,0.837561,-2.251042,-4.273770,0.864884,-3.360473,-6.389286, + 0.793534,-3.327862,-6.407110,0.830206,-3.239007,-6.391340,0.901556,-3.271618,-6.373515,0.322135,-3.499902,-4.495423, + 0.250784,-3.467290,-4.513247,0.287456,-3.378435,-4.497477,0.358807,-3.411046,-4.479653,0.383672,-4.526435,-6.596225, + 0.312321,-4.493824,-6.614050,0.348994,-4.404968,-6.598279,0.420344,-4.437579,-6.580455,-0.149703,-4.643147,-4.698331, + -0.221053,-4.610537,-4.716156,-0.184381,-4.521681,-4.700385,-0.113031,-4.554292,-4.682561,-0.098321,-5.694285,-6.803500, + -0.169671,-5.661674,-6.821325,-0.123624,-5.550103,-6.801523,-0.052273,-5.582714,-6.783698,-0.631695,-5.810998,-4.905606, + -0.703045,-5.778387,-4.923430,-0.666373,-5.689532,-4.907660,-0.595023,-5.722143,-4.889836,-0.141667,-1.807135,-4.563820, + -1.613073,-5.372311,-5.196582,-1.699836,-5.332913,-5.216804,-0.228430,-1.767738,-4.584043,-0.167151,-1.813740,-4.467348, + -1.638558,-5.378916,-5.100109,-1.725320,-5.339518,-5.120331,-0.253914,-1.774343,-4.487570,-1.245719,-1.303766,-4.832623, + -2.717125,-4.868941,-5.465385,-2.807068,-4.831563,-5.466833,-1.331053,-1.267336,-4.839450,-1.253287,-1.318155,-4.733953, + -2.724693,-4.883330,-5.366715,-2.814636,-4.845953,-5.368163,-1.338621,-1.281725,-4.740781,0.928407,-2.282463,-4.918898, + 0.889684,-2.263836,-4.928707,0.898061,-2.205555,-4.851105,0.936785,-2.224182,-4.841296,0.578902,-2.833528,-4.412298, + 0.540178,-2.814901,-4.422107,0.548556,-2.756620,-4.344505,0.587280,-2.775247,-4.334696,0.464440,-3.458101,-5.098707, + 0.425668,-3.439590,-5.108537,0.430039,-3.391016,-5.032659,0.468811,-3.409527,-5.022829,0.078245,-4.046603,-4.627599, + 0.039521,-4.027976,-4.637408,0.047899,-3.969695,-4.559807,0.086622,-3.988322,-4.549998,0.012926,-4.564466,-5.316959, + -0.025798,-4.545839,-5.326768,-0.017421,-4.487558,-5.249166,0.021303,-4.506185,-5.239357,-0.370372,-5.133587,-4.820521, + -0.409096,-5.114960,-4.830331,-0.400718,-5.056679,-4.752729,-0.361995,-5.075306,-4.742920,-0.499333,-5.671836,-5.528089, + -0.460189,-5.690354,-5.519871,-0.503673,-5.757733,-5.464572,-0.542818,-5.739215,-5.472790,-0.407976,-5.132709,-4.830395, + -0.368832,-5.151227,-4.822177,-0.412317,-5.218606,-4.766879,-0.451461,-5.200089,-4.775096,-0.022333,-4.506462,-5.304229, + 0.016811,-4.524981,-5.296011,-0.026673,-4.592360,-5.240712,-0.065818,-4.573842,-5.248930,0.080960,-3.948027,-4.620133, + 0.120104,-3.966546,-4.611916,0.076620,-4.033925,-4.556617,0.037476,-4.015407,-4.564835,0.445469,-3.370243,-5.097704, + 0.484661,-3.388645,-5.089465,0.445183,-3.446317,-5.032444,0.405991,-3.427915,-5.040682,0.541295,-2.832649,-4.422172, + 0.580438,-2.851167,-4.413954,0.536954,-2.918546,-4.358655,0.497810,-2.900028,-4.366873,0.896186,-2.271881,-4.946496, + 0.913718,-2.231969,-4.939987,0.934173,-2.257251,-4.845105,0.916641,-2.297163,-4.851614,0.203610,-2.037519,-4.456940, + 0.221142,-1.997607,-4.450431,0.264939,-2.030014,-4.369682,0.247407,-2.069926,-4.376191,-0.525835,-5.728949,-5.538999, + -0.511112,-5.687818,-5.533149,-0.465628,-5.715690,-5.451644,-0.480350,-5.756821,-5.457494,-1.214922,-5.480056,-5.067338, + -1.200200,-5.438925,-5.061488,-1.154715,-5.466797,-4.979982,-1.169437,-5.507928,-4.985833,-2.077192,-1.266880,-2.823548, + -2.104318,-1.332605,-2.835213,-2.191081,-1.293208,-2.855435,-2.163955,-1.227483,-2.843770,-2.325207,-1.199204,-1.896305, + -2.352333,-1.264929,-1.907970,-2.439096,-1.225532,-1.928192,-2.411970,-1.159807,-1.916527,-3.666605,-4.827416,-3.487164, + -3.639478,-4.761691,-3.475499,-3.552716,-4.801088,-3.455277,-3.579842,-4.866814,-3.466942,-3.966449,-4.926257,-2.585012, + -3.939323,-4.860531,-2.573347,-3.852561,-4.899929,-2.553124,-3.879686,-4.965654,-2.564790,-1.120485,-1.700179,-2.606911, + -1.147611,-1.765905,-2.618576,-1.234373,-1.726507,-2.638798,-1.207247,-1.660782,-2.627133,-1.172252,-1.652512,-2.023285, + -1.199378,-1.718237,-2.034950,-1.286140,-1.678839,-2.055172,-1.259014,-1.613114,-2.043507,-2.695669,-5.267176,-3.267211, + -2.668542,-5.201451,-3.255545,-2.581780,-5.240849,-3.235323,-2.608906,-5.306574,-3.246989,-2.790905,-5.324834,-2.702278, + -2.763779,-5.259109,-2.690613,-2.677017,-5.298506,-2.670391,-2.704143,-5.364231,-2.682056,-0.714809,-1.659735,-3.925836, + -0.742520,-1.725580,-3.935223,-0.858890,-1.690605,-3.837033,-0.831178,-1.624759,-3.827646,-0.886257,-1.703982,-3.132510, + -0.913968,-1.769827,-3.141898,-0.971124,-1.726008,-3.280532,-0.943413,-1.660162,-3.271144,-1.219461,-1.448446,-3.918144, + -1.247172,-1.514292,-3.927532,-1.304328,-1.470472,-4.066166,-1.276617,-1.404627,-4.056778,-1.378270,-1.462700,-3.372498, + -1.405981,-1.528546,-3.381886,-1.522351,-1.493570,-3.283696,-1.494639,-1.427725,-3.274308,-0.844481,-1.674950,-3.572104, + -0.857323,-1.705464,-3.576454,-0.872611,-1.706802,-3.521946,-0.859769,-1.676288,-3.517595,-1.347819,-1.454672,-3.631347, + -1.360660,-1.485186,-3.635698,-1.348508,-1.482425,-3.690937,-1.335666,-1.451911,-3.686586,-1.147275,-1.585039,-3.289703, + -1.160116,-1.615553,-3.294053,-1.210041,-1.592589,-3.307756,-1.197199,-1.562075,-3.303406,-1.045154,-1.539367,-3.911507, + -1.057996,-1.569880,-3.915858,-1.007095,-1.592699,-3.906061,-0.994253,-1.562185,-3.901711,-0.924656,-1.697619,-3.238245, + -1.427942,-1.468789,-3.357615,-1.255933,-1.455146,-3.961064,-0.798244,-1.662681,-3.856455,-3.380571,-1.722627,-3.800645, + -3.444748,-1.693485,-3.815603,-0.149315,-2.876902,-6.702531,0.099746,-2.272055,-6.592744,-0.332855,-2.363878,-4.915569, + -0.606626,-3.025843,-5.030620,-0.516528,-2.891440,-5.155336,-0.345651,-2.478250,-5.083490,-0.229393,-2.458266,-5.543359, + -0.390118,-2.848540,-5.614114,-0.406411,-2.841142,-5.617911,-0.245686,-2.450868,-5.547156,-0.361943,-2.470851,-5.087287, + -0.532820,-2.884042,-5.159134,-0.326800,-2.668716,-5.585077,-0.349303,-2.658498,-5.590322,-0.333569,-2.619534,-5.581918, + -0.311065,-2.629752,-5.576674,-0.436699,-2.672454,-5.120837,-0.459203,-2.662235,-5.126081,-0.475713,-2.701401,-5.131545, + -0.453210,-2.711619,-5.126300,-0.297288,-2.472466,-5.338488,-0.319791,-2.462248,-5.343733,-0.331206,-2.466291,-5.302633, + -0.308703,-2.476509,-5.297389,-0.464787,-2.854699,-5.364511,-0.487290,-2.844481,-5.369756,-0.476878,-2.842867,-5.411286, + -0.454375,-2.853085,-5.406042,-0.860416,-4.217501,-6.220552,-0.924594,-4.188359,-6.235510,-0.919048,-4.107570,-6.101912, + -0.854870,-4.136712,-6.086953,-1.072450,-4.275609,-5.438550,-1.136627,-4.246467,-5.453507,-1.068829,-4.149545,-5.555566, + -1.004652,-4.178687,-5.540607,-0.678100,-3.708402,-6.010935,-0.742278,-3.679260,-6.025893,-0.674480,-3.582338,-6.127952, + -0.610303,-3.611479,-6.112994,-0.820851,-3.733340,-5.461566,-0.885028,-3.704198,-5.476524,-0.879482,-3.623409,-5.342925, + -0.815305,-3.652551,-5.327967,-0.949296,-4.180775,-5.852880,-0.979036,-4.167271,-5.859812,-0.992798,-4.169403,-5.804924, + -0.963057,-4.182908,-5.797992,-0.756773,-3.683085,-5.709282,-0.786513,-3.669580,-5.716214,-0.771427,-3.664237,-5.770532, + -0.741686,-3.677741,-5.763600,-0.941562,-3.978800,-5.480503,-0.971302,-3.965296,-5.487435,-0.949481,-3.913534,-5.480215, + -0.919741,-3.927039,-5.473284,-0.759896,-3.885613,-6.078390,-0.789636,-3.872109,-6.085322,-0.814488,-3.933435,-6.098174, + -0.784747,-3.946940,-6.091242,-1.046776,-4.206678,-5.523897,-0.833332,-3.690618,-5.434272,-0.678176,-3.660554,-6.041395, + -0.883562,-4.159312,-6.131884,-0.474690,-5.540120,-4.119954,-0.538867,-5.510978,-4.134912,-0.533433,-5.458670,-4.056319, + -0.469256,-5.487812,-4.041361,-0.670025,-5.614185,-3.440684,-0.734202,-5.585044,-3.455642,-0.692590,-5.523360,-3.514004, + -0.628412,-5.552502,-3.499047,-0.285455,-5.042465,-3.962319,-0.349632,-5.013324,-3.977277,-0.308020,-4.951640,-4.035639, + -0.243843,-4.980782,-4.020680,-0.425861,-5.061725,-3.411942,-0.490039,-5.032583,-3.426900,-0.484605,-4.980276,-3.348306, + -0.420428,-5.009418,-3.333348,-0.561338,-5.526196,-3.806279,-0.591078,-5.512692,-3.813211,-0.604840,-5.514825,-3.758323, + -0.575099,-5.528329,-3.751392,-0.368815,-5.028506,-3.662681,-0.398555,-5.015002,-3.669613,-0.383469,-5.009658,-3.723931, + -0.353728,-5.023163,-3.716999,-0.553604,-5.324222,-3.433903,-0.583344,-5.310717,-3.440834,-0.561523,-5.258955,-3.433615, + -0.531783,-5.272460,-3.426683,-0.371937,-5.231035,-4.031790,-0.401678,-5.217530,-4.038721,-0.422472,-5.269026,-4.049828, + -0.392732,-5.282530,-4.042896,-0.670536,-5.580493,-3.482336,-0.438342,-5.019003,-3.384648,-0.285530,-4.994617,-3.992779, + -0.497947,-5.510412,-4.086291,0.436619,-3.332049,-3.728056,0.372442,-3.302907,-3.743014,0.379516,-3.246624,-3.663716, + 0.443694,-3.275766,-3.648758,0.245972,-3.394758,-3.046771,0.181795,-3.365616,-3.061729,0.225047,-3.299957,-3.119386, + 0.289224,-3.329098,-3.104428,0.620875,-2.860534,-3.599984,0.556698,-2.831393,-3.614942,0.599951,-2.765733,-3.672598, + 0.664128,-2.794875,-3.657640,0.480057,-2.866716,-3.022362,0.415880,-2.837574,-3.037320,0.422954,-2.781291,-2.958021, + 0.487131,-2.810432,-2.943063,0.351612,-3.314151,-3.413676,0.321872,-3.300646,-3.420608,0.308110,-3.302779,-3.365720, + 0.337851,-3.316283,-3.358788,0.544135,-2.816461,-3.270078,0.514394,-2.802956,-3.277010,0.529481,-2.797612,-3.331328, + 0.559222,-2.811117,-3.324396,0.359346,-3.112176,-3.041299,0.329605,-3.098671,-3.048231,0.351426,-3.046910,-3.041012, + 0.381167,-3.060414,-3.034080,0.541012,-3.018989,-3.639186,0.511272,-3.005484,-3.646118,0.490477,-3.056980,-3.657225, + 0.520218,-3.070485,-3.650293,0.247101,-3.357090,-3.087717,0.467576,-2.823993,-2.995069,0.620800,-2.812687,-3.630445, + 0.415002,-3.298366,-3.693688,-4.323227,-4.006651,-4.206023,-3.466534,-1.415759,-3.773691,-3.436793,-1.429264,-3.766759, + -4.366899,-3.579622,-4.170290,-3.415999,-1.377768,-3.755652,-3.445739,-1.364263,-3.762584,-3.470319,-1.619893,-4.143084, + -4.268955,-3.347812,-4.138267,-3.440578,-1.633397,-4.136152,-3.454339,-1.635530,-4.081264,-3.484080,-1.622025,-4.088196, + -3.277796,-1.122202,-3.999486,-3.248055,-1.135707,-3.992554,-3.232969,-1.130363,-4.046872,-3.262709,-1.116858,-4.053804, + -3.602898,-1.690552,-3.782614,-3.538721,-1.719694,-3.767656,-3.497017,-1.657789,-3.825979,-3.561194,-1.628647,-3.840937, + -3.415274,-1.619728,-4.464142,-3.351097,-1.648870,-4.449184,-3.345572,-1.596340,-4.370552,-3.409749,-1.567199,-4.385509, + -3.368019,-1.160585,-3.757864,-3.303842,-1.189727,-3.742906,-3.298317,-1.137198,-3.664273,-3.362494,-1.108056,-3.679231, + -3.232979,-1.138888,-4.309492,-4.285630,-3.340146,-4.142689,-4.389099,-3.569484,-4.176126,-3.168802,-1.168030,-4.294534, + -4.200421,-3.555116,-4.757370,-4.118421,-3.313683,-4.694878,-4.135095,-3.306017,-4.699300,-3.127099,-1.106124,-4.352857, + -4.222620,-3.544978,-4.763205,-4.506750,-3.880559,-4.171305,-4.442573,-3.909701,-4.156347,-3.191276,-1.076982,-4.367814, + -4.308871,-3.798964,-4.875845,-4.244694,-3.828105,-4.860887,-4.201414,-3.325376,-4.052639,-4.265591,-3.296234,-4.067597, + -4.030196,-3.294302,-4.741223,-4.094373,-3.265161,-4.756181,-0.179320,-2.981869,-6.735479,-0.243497,-2.952727,-6.750437, + -0.194703,-2.834501,-6.729454,-0.130526,-2.863643,-6.714496,-0.669201,-3.137342,-4.951061,-0.733379,-3.108200,-4.966019, + -0.653460,-2.981908,-5.062865,-0.589282,-3.011050,-5.047907,0.099967,-2.305165,-6.615375,0.035789,-2.276023,-6.630333, + 0.084583,-2.157797,-6.609350,0.148760,-2.186939,-6.594392,-0.335352,-2.395783,-4.938707,-0.399529,-2.366641,-4.953665, + -0.381862,-2.256482,-4.814853,-0.317684,-2.285624,-4.799895,-2.543139,-2.940590,-7.298614,-2.798066,-3.556901,-7.405562, + -3.219862,-3.695483,-5.865847,-2.945919,-3.030347,-5.745359,-2.955688,-3.143932,-5.924737,-3.127232,-3.560422,-6.000145, + -2.995464,-3.502858,-6.453344,-2.838020,-3.122214,-6.387275,-2.821727,-3.129612,-6.383477,-2.979171,-3.510256,-6.449547, + -3.110939,-3.567820,-5.996348,-2.939395,-3.151330,-5.920940,-2.896339,-3.305207,-6.443933,-2.873837,-3.315425,-6.438688, + -2.892016,-3.358535,-6.444679,-2.914519,-3.348317,-6.449924,-3.049500,-3.383299,-5.938944,-3.026997,-3.393517,-5.933699, + -3.009685,-3.350632,-5.924427,-3.032187,-3.340414,-5.929671,-3.051809,-3.552968,-6.250457,-3.029306,-3.563186,-6.245212, + -3.040935,-3.565005,-6.198865,-3.063437,-3.554787,-6.204110,-2.886844,-3.121173,-6.117005,-2.864341,-3.131391,-6.111760, + -2.846313,-3.125525,-6.177680,-2.868816,-3.115307,-6.182925,-2.182919,-1.728793,-6.366849,-2.118742,-1.757935,-6.351891, + -2.186044,-1.852464,-6.247293,-2.250222,-1.823322,-6.262250,-2.380990,-1.768471,-5.579819,-2.316812,-1.797612,-5.564861, + -2.323954,-1.881040,-5.696752,-2.388132,-1.851898,-5.711710,-2.424611,-2.239790,-6.325411,-2.360433,-2.268932,-6.310452, + -2.367575,-2.352359,-6.442343,-2.431753,-2.323217,-6.457302,-2.569935,-2.286486,-5.778360,-2.505757,-2.315628,-5.763402, + -2.573061,-2.410157,-5.658804,-2.637238,-2.381015,-5.673762,-2.280583,-1.803251,-6.007669,-2.250843,-1.816755,-6.000738, + -2.265455,-1.820935,-5.946188,-2.295195,-1.807431,-5.953120,-2.504577,-2.307943,-6.029881,-2.474837,-2.321448,-6.022950, + -2.461570,-2.320483,-6.077992,-2.491310,-2.306979,-6.084924,-2.466826,-2.055256,-5.711626,-2.437086,-2.068761,-5.704695, + -2.458217,-2.120369,-5.714574,-2.487958,-2.106865,-5.721506,-2.328722,-2.066984,-6.327005,-2.298982,-2.080489,-6.320073, + -2.276858,-2.028697,-6.314095,-2.306599,-2.015193,-6.321026,-2.360174,-1.827058,-5.673782,-2.571048,-2.332232,-5.753222, + -2.408454,-2.284060,-6.356976,-2.204002,-1.796822,-6.284927,-2.504364,-2.833350,-7.298865,-2.440187,-2.862492,-7.283907, + -2.488980,-2.980717,-7.304890,-2.553157,-2.951576,-7.319849,-2.934344,-2.932066,-5.631851,-2.870167,-2.961207,-5.616893, + -2.887835,-3.071367,-5.755705,-2.952012,-3.042225,-5.770663,-2.788244,-3.521189,-7.420945,-2.724067,-3.550330,-7.405987, + -2.772861,-3.668556,-7.426970,-2.837038,-3.639414,-7.441928,-3.207386,-3.660993,-5.880484,-3.143209,-3.690135,-5.865526, + -3.223128,-3.816427,-5.768681,-3.287305,-3.787285,-5.783638,-0.073766,-2.033218,-5.371449,-0.240850,-1.957828,-5.410425, + -0.171859,-1.796238,-5.391614,-0.006043,-1.874701,-5.353184,-0.132305,-2.070345,-5.192618,-0.310443,-1.989455,-5.234138, + -0.235149,-1.807021,-5.201758,-0.057011,-1.887910,-5.160239,0.131965,-2.021681,-6.283332,-0.046173,-1.940791,-6.324851, + 0.029121,-1.758357,-6.292472,0.207259,-1.839246,-6.250953,0.108885,-2.002305,-6.146562,-0.069252,-1.921415,-6.188081, + -0.005677,-1.767375,-6.160741,0.172461,-1.848264,-6.119222,-3.042032,-4.296073,-6.788700,-3.206227,-4.214771,-6.826508, + -3.143759,-4.063414,-6.799644,-2.979564,-4.144715,-6.761837,-3.073579,-4.309320,-6.679156,-3.240119,-4.233698,-6.717972, + -3.177650,-4.082340,-6.691108,-3.011111,-4.157963,-6.652292,-1.227340,-5.110474,-6.418871,-1.391506,-5.035928,-6.457134, + -1.341836,-4.906467,-6.418021,-1.177671,-4.981013,-6.379758,-1.274311,-5.122646,-6.241060,-1.438477,-5.048101,-6.279323, + -1.373776,-4.891334,-6.251499,-1.209610,-4.965878,-6.213237,-1.407320,-4.988931,-6.676643,-1.653461,-4.877162,-6.734012, + -1.607051,-4.764714,-6.714054,-1.360911,-4.876483,-6.656685,-1.443495,-4.998306,-6.539699,-1.689636,-4.886538,-6.597068, + -1.640522,-4.767536,-6.575947,-1.394381,-4.879304,-6.518578,-1.522572,-5.000020,-6.443453,-1.768713,-4.888251,-6.500822, + -1.734991,-4.797431,-6.468567,-1.488850,-4.909200,-6.411198,-1.558748,-5.009395,-6.306509,-1.804888,-4.897626,-6.363878, + -1.756135,-4.779500,-6.342912,-1.509995,-4.891268,-6.285543,-3.228704,-4.185805,-6.615152,-3.131429,-3.950112,-6.573320, + -3.004994,-4.007524,-6.543851,-3.102269,-4.243217,-6.585683,-3.264879,-4.195180,-6.478208,-3.160842,-3.943102,-6.433468, + -3.034407,-4.000514,-6.403999,-3.138444,-4.252592,-6.448739,-3.091165,-3.961579,-6.786659,-3.018881,-3.786439,-6.755574, + -2.971987,-3.807733,-6.744644,-3.044271,-3.982873,-6.775729,-3.126889,-3.976981,-6.663390,-3.048927,-3.788083,-6.629863, + -3.002033,-3.809376,-6.618934,-3.079995,-3.998274,-6.652460,-1.856426,-1.286032,-6.831910,-1.748796,-1.025249,-6.785625, + -1.619991,-1.083737,-6.755604,-1.727621,-1.344521,-6.801889,-1.895993,-1.299742,-6.662659,-1.790706,-1.044638,-6.617382, + -1.666746,-1.100926,-6.588490,-1.772032,-1.356030,-6.633767,-1.019156,-4.482166,-6.073939,-1.117680,-4.720886,-6.116308, + -1.181009,-4.692129,-6.131068,-1.082486,-4.453410,-6.088699,-1.056805,-4.477291,-5.902909,-1.162091,-4.732396,-5.948186, + -1.225420,-4.703639,-5.962946,-1.120135,-4.448534,-5.917669,-0.091982,-1.942759,-5.104585,-0.197120,-2.185146,-5.125721, + -0.260450,-2.156389,-5.140481,-0.155312,-1.914002,-5.119346,-0.136393,-1.954268,-4.936463,-0.241679,-2.209373,-4.981740, + -0.305009,-2.180616,-4.996500,-0.199723,-1.925511,-4.951223,-1.035444,-4.651065,-6.333114,-1.140730,-4.906170,-6.378391, + -1.204059,-4.877413,-6.393151,-1.098773,-4.622308,-6.347875,-1.071740,-4.642913,-6.161502,-1.174936,-4.899820,-6.219257, + -1.238266,-4.871063,-6.234018,-1.135069,-4.614156,-6.176263,-0.744859,-5.577031,-3.058234,-0.826032,-5.773713,-3.093142, + -0.874858,-5.751542,-3.104522,-0.793684,-5.554860,-3.069614,-0.769919,-5.578455,-2.953487,-0.865154,-5.809208,-2.994442, + -0.913980,-5.787037,-3.005822,-0.818745,-5.556284,-2.964867,0.333601,-3.802084,-4.227323,0.252427,-3.998765,-4.262230, + 0.203601,-3.976594,-4.273610,0.284775,-3.779913,-4.238703,0.306197,-3.809186,-4.123584,0.225024,-4.005868,-4.158492, + 0.176198,-3.983696,-4.169871,0.257371,-3.787015,-4.134964,-3.272764,-1.645869,-4.910141,-3.191591,-1.449187,-4.875233, + -3.142766,-1.471358,-4.863853,-3.223938,-1.668039,-4.898761,-3.300168,-1.652971,-4.806402,-3.218995,-1.456289,-4.771494, + -3.170169,-1.478460,-4.760115,-3.251342,-1.675141,-4.795022,-4.584549,-4.030734,-4.075230,-4.503376,-3.834052,-4.040322, + -4.454551,-3.856223,-4.028942,-4.535724,-4.052905,-4.063849,-4.611953,-4.037836,-3.971491,-4.528437,-3.835475,-3.935575, + -4.479610,-3.857646,-3.924196,-4.563128,-4.060007,-3.960111,-0.575297,-4.886904,-1.765587,-0.575477,-4.896028,-1.699040, + -2.603864,-3.920920,-2.476352,-0.281712,-4.295993,-2.582779,-1.878416,-3.497253,-3.381352,-0.262481,-4.237199,-2.522132, + -1.814707,-3.315227,-3.300059,-0.704545,-5.298398,-2.680260,-2.374590,-4.655045,-3.508163,-0.665199,-5.210361,-2.720517, + -2.260894,-4.410113,-3.518788,-2.305860,-4.028975,-2.583315,-0.705634,-4.811310,-1.785321,-0.755028,-5.212181,-2.873791, + -0.319710,-4.157420,-2.686588,-0.001790,-3.379907,-2.352570,-0.006705,-3.382013,-2.328024,0.097752,-3.118437,-2.281375, + 0.219855,-3.182433,-2.309951,-0.657562,-5.218462,-2.723191,0.124011,-3.425140,-2.352897,-0.664078,-5.057161,-2.578179, + -0.627615,-5.073718,-2.569680,-0.362964,-4.449363,-2.474259,-0.399426,-4.432806,-2.482758,0.119090,-3.427262,-2.328353, + -0.281299,-4.305927,-2.545196,-0.657839,-4.822077,-1.949752,-0.694301,-4.805520,-1.958251,0.214934,-3.184555,-2.285408, + -0.698961,-4.831126,-1.790951,-0.683748,-5.070021,-2.392342,-0.713488,-5.056517,-2.399274,-0.727210,-5.058554,-2.344369, + -0.697469,-5.072058,-2.337437,-0.472570,-4.540864,-2.267474,-0.502310,-4.527359,-2.274406,-0.487185,-4.521920,-2.328707, + -0.457444,-4.535424,-2.321775,-0.709749,-4.828520,-1.903561,-0.739489,-4.815016,-1.910493,-0.717603,-4.763237,-1.903518, + -0.687863,-4.776742,-1.896586,-0.507860,-4.730092,-2.578001,-0.537600,-4.716588,-2.584933,-0.558330,-4.768066,-2.596285, + -0.528589,-4.781571,-2.589354,0.102667,-3.116330,-2.305921,-2.616142,-2.751842,-2.150146,-2.620703,-2.754885,-2.117228, + -2.475404,-2.391926,-2.052626,-2.344769,-2.445408,-2.091176,-2.472066,-2.768994,-2.159658,-2.476860,-2.771267,-2.122765, + -2.348112,-2.448411,-2.065280,-2.470064,-2.387694,-2.086901,-3.269525,-4.998097,-2.520495,-3.272279,-5.002535,-2.487782, + -3.163015,-4.725965,-2.438057,-3.008068,-4.775818,-2.491760,-3.125324,-5.072574,-2.544925,-3.127627,-5.076762,-2.514570, + -3.010371,-4.780006,-2.461406,-3.160260,-4.721527,-2.470771,-0.855439,-4.595869,-2.034863,-0.853500,-4.579216,-2.011254, + -0.990626,-4.519075,-2.040491,-0.967367,-4.473601,-2.146482,-0.787676,-4.553071,-2.107326,-0.785768,-4.536404,-2.083724, + -0.965458,-4.456935,-2.122881,-1.008809,-4.555740,-2.057191,-3.401512,-1.211659,-2.839302,-3.417397,-1.208783,-2.819629, + -3.507084,-1.433079,-2.856164,-3.571985,-1.391903,-2.975217,-3.473415,-1.146082,-2.934862,-3.489306,-1.143221,-2.915191, + -3.587876,-1.389041,-2.955548,-3.491198,-1.435956,-2.875837,-3.038606,-1.056676,-2.480648,-3.053239,-1.054128,-2.462070, + -3.145332,-1.283900,-2.499822,-3.206807,-1.243474,-2.609884,-3.107649,-0.996584,-2.569093,-3.122287,-0.994047,-2.550517, + -3.221445,-1.240937,-2.591308,-3.130699,-1.286449,-2.518401,-3.990023,-4.042253,-2.728792,-4.004844,-4.041394,-2.700314, + -4.102297,-4.283802,-2.740727,-4.167997,-4.264967,-2.850947,-4.051826,-3.977207,-2.802484,-4.064210,-3.975341,-2.785176, + -4.180381,-4.263101,-2.833639,-4.087476,-4.284661,-2.769205,-4.213406,-4.257957,-2.906427,-4.229760,-4.255117,-2.885537, + -4.326006,-4.495783,-2.924863,-4.394888,-4.449282,-3.047896,-4.291595,-4.191540,-3.005539,-4.307953,-4.188712,-2.984651, + -4.411247,-4.446454,-3.027008,-4.309652,-4.498623,-2.945752,-4.283879,-3.993699,-3.034897,-4.295803,-3.991257,-3.021697, + -4.360795,-4.153317,-3.048049,-4.400867,-4.123843,-3.134696,-4.331195,-3.950441,-3.106331,-4.343121,-3.948007,-3.093132, + -4.412794,-4.121408,-3.121497,-4.348871,-4.155760,-3.061250,-1.953935,-1.013539,-5.330336,-3.411040,-4.379459,-5.947385, + -3.491717,-4.342848,-5.945850,-2.070290,-0.949227,-5.338036,-1.985037,-1.012032,-5.235550,-3.434387,-4.385219,-5.850319, + -3.528447,-4.343981,-5.854059,-2.081280,-0.962047,-5.240245,-2.915228,-2.406072,-7.695031,-2.983477,-2.373116,-7.722011, + -2.946805,-2.284261,-7.706240,-2.878555,-2.317217,-7.679260,-3.609393,-2.420459,-5.999779,-3.677643,-2.387502,-6.026759, + -3.640971,-2.298647,-6.010988,-3.572721,-2.331603,-5.984008,-3.408221,-3.600577,-7.907036,-3.476470,-3.567621,-7.934016, + -3.439798,-3.478765,-7.918246,-3.371549,-3.511722,-7.891266,-4.107120,-3.616190,-6.193864,-4.175369,-3.583234,-6.220844, + -4.138697,-3.494379,-6.205074,-4.070447,-3.527335,-6.178094,-2.094808,-1.095779,-5.350120,-2.076087,-1.055899,-5.348774, + -2.029051,-1.080733,-5.267167,-2.047773,-1.120614,-5.268513,-2.710092,-0.768654,-5.071475,-2.691371,-0.728774,-5.070129, + -2.644335,-0.753608,-4.988522,-2.663056,-0.793488,-4.989868,-3.328311,-4.220656,-5.918776,-3.312211,-4.181294,-5.907196, + -3.271399,-4.221210,-5.828265,-3.287500,-4.260571,-5.839846,-4.110071,-4.171897,-5.656163,-4.093970,-4.132535,-5.644583, + -4.053159,-4.172450,-5.565652,-4.069259,-4.211812,-5.577232,-3.507640,-2.281666,-5.996810,-4.110056,-3.693941,-6.241637, + -4.206290,-3.644555,-6.287664,-3.614646,-2.221258,-6.053190,-3.568632,-2.267978,-5.919164,-4.164441,-3.685545,-6.158159, + -4.248978,-3.642844,-6.198038,-3.657333,-2.219547,-5.963563,-4.240419,-3.481107,-6.234736,-3.254318,-4.004504,-5.757560, + -3.290473,-4.088037,-5.771672,-4.282984,-3.575860,-6.255534,-4.282373,-3.495646,-6.170477,-3.293230,-4.012348,-5.690016, + -3.324669,-4.085529,-5.701837,-4.317181,-3.573351,-6.185698,-3.725600,-2.236451,-6.034673,-2.705526,-2.674799,-5.521558, + -2.741681,-2.758332,-5.535671,-3.768165,-2.331203,-6.055471,-3.767554,-2.250990,-5.970414,-2.744437,-2.682642,-5.454014, + -2.775877,-2.755824,-5.465836,-3.802361,-2.328694,-5.985635,-4.200802,-3.542568,-6.199864,-3.258314,-4.010031,-5.757678, + -2.744872,-2.769667,-5.537570,-3.683411,-2.301797,-5.991238,-3.721500,-2.290762,-5.964836,-2.767735,-2.764498,-5.513530, + -3.280773,-4.005067,-5.733418,-4.239301,-3.531858,-6.170683,-4.137136,-3.534949,-6.390841,-3.619744,-2.294178,-6.182214, + -3.657834,-2.283144,-6.155812,-4.175634,-3.524240,-6.361660,-3.069101,-2.705514,-2.126228,0.054806,-3.864927,-2.487390, + 0.058973,-3.873525,-2.448635,-4.074409,-2.001271,-3.385821,-3.981375,-2.033447,-3.420875,-3.036692,-2.706908,-2.193741, + 1.057005,-2.195895,-5.235417,0.985655,-2.163284,-5.253242,1.020333,-2.284751,-5.251187,0.948983,-2.252140,-5.269011, + -1.458683,-4.465107,-2.073203,-1.063874,-3.835480,-2.922014,-1.507136,-4.896154,-3.080311,-0.477643,-1.806377,-4.477414, + -0.437386,-1.795944,-4.629809,-0.440971,-1.717522,-4.461644,-0.400714,-1.707089,-4.614039,-2.704684,-4.901104,-5.294604, + -2.667478,-4.891461,-5.435453,-2.664343,-4.803360,-5.277256,-2.627137,-4.793717,-5.418105,-3.282753,-5.032371,-3.384216, + -3.257269,-5.025766,-3.480689,-3.246081,-4.943515,-3.368445,-3.220597,-4.936911,-3.464918,-0.089243,-3.889373,-2.464647, + -0.078818,-3.876451,-2.561692,-0.124671,-3.855631,-2.572379,-3.867797,-2.163085,-3.410118,-3.993547,-2.127288,-3.319390, + -3.961381,-2.120590,-3.431930,-4.775242,-2.977721,-2.698274,-4.808115,-2.977164,-2.639701,-4.608983,-3.449459,-3.621850, + -3.380358,-3.954543,-3.621892,-4.653557,-3.514821,-3.586557,-4.179787,-2.473401,-3.390719,-4.191264,-2.554217,-3.455961, + -3.010714,-3.045006,-3.435885,-3.418733,-3.543542,-2.656539,-4.644991,-3.047986,-2.693267,-4.123801,-2.612525,-3.384814, + -4.558131,-3.506302,-3.563416,-4.188290,-2.559503,-3.413212,-4.237175,-2.740404,-3.312411,-4.295318,-2.711131,-3.332371, + -4.542372,-3.311624,-3.441330,-4.484169,-3.341001,-3.421639,-4.539755,-3.490710,-3.543694,-4.640307,-3.003516,-2.840088, + -4.582105,-3.032893,-2.820398,-4.703599,-3.005929,-2.689328,-4.309455,-2.752582,-3.144321,-4.280732,-2.767428,-3.135986, + -4.298430,-2.771555,-3.082350,-4.327153,-2.756709,-3.090686,-4.593756,-3.257287,-3.223267,-4.565032,-3.272132,-3.214931, + -4.548874,-3.271342,-3.269202,-4.577598,-3.256496,-3.277538,-4.605179,-3.011878,-2.764031,-4.576455,-3.026724,-2.755696, + -4.599151,-3.077263,-2.767499,-4.627874,-3.062417,-2.775835,-4.396398,-3.042524,-3.443283,-4.367674,-3.057369,-3.434947, + -4.343621,-3.006633,-3.427469,-4.372345,-2.991787,-3.435804,-3.551259,-3.508008,-2.572316,-3.746109,-3.889052,-3.588152, + -3.318294,-2.832378,-3.371391,-0.166361,-4.791821,-4.008453,-0.255647,-4.976532,-4.006754,-0.272685,-4.968972,-4.009737, + -0.189010,-4.781771,-4.012419,-0.307838,-4.825695,-3.307428,-0.388806,-5.012616,-3.357334,-0.405845,-5.005055,-3.360317, + -0.330487,-4.815645,-3.311393,-0.714671,-5.814065,-3.488906,-0.637680,-5.624153,-3.486072,-0.654717,-5.616592,-3.489055, + -0.737320,-5.804015,-3.492871,-0.559978,-5.737811,-4.159247,-0.491853,-5.546925,-4.104818,-0.508891,-5.539365,-4.107801, + -0.582627,-5.727760,-4.163213,0.738585,-2.603944,-3.634220,0.649201,-2.785720,-3.624738,0.632163,-2.778160,-3.627721, + 0.715936,-2.593894,-3.638185,0.600994,-2.629824,-2.934542,0.519317,-2.815162,-2.976615,0.502279,-2.807602,-2.979598, + 0.578344,-2.619774,-2.938507,0.203233,-3.590339,-3.097146,0.279527,-3.402969,-3.096714,0.262490,-3.395409,-3.099697, + 0.180584,-3.580288,-3.101111,0.354315,-3.522890,-3.769173,0.421892,-3.334215,-3.717146,0.404854,-3.326655,-3.720129, + 0.331666,-3.512840,-3.773138,-3.306688,-1.374333,-4.378798,-3.276947,-1.387837,-4.371866,-3.255126,-1.336076,-4.364646, + -3.284867,-1.322571,-4.371577,-3.340526,-1.136385,-3.719190,-3.562317,-1.674895,-3.816734,-3.393095,-1.610750,-4.417808, + -3.186683,-1.111725,-4.331206,-3.652572,-2.213623,-4.603074,-3.588395,-2.242764,-4.588116,-3.823316,-2.221911,-3.872132, + -4.209828,-3.542068,-4.762530,-4.402933,-3.559672,-4.187571,-3.759138,-2.251052,-3.857174,-4.299973,-3.759638,-4.800960, + -4.316519,-3.751950,-4.805804,-4.231824,-3.531849,-4.768970,-4.362522,-3.578254,-4.176838,-3.802892,-2.776567,-4.707780, + -3.867070,-2.747426,-4.722738,-4.471640,-3.828707,-4.210618,-4.488186,-3.821020,-4.215463,-4.013931,-2.868412,-3.966745, + -4.078108,-2.839271,-3.981703,-3.477517,-1.800337,-4.520344,-3.412152,-1.630280,-4.448388,-3.395611,-1.637981,-4.443546, + -3.455529,-1.810575,-4.513907,-3.700910,-1.863807,-3.845495,-3.617203,-1.683911,-3.821473,-3.600663,-1.691612,-3.816630, + -3.678922,-1.874045,-3.839058,-3.307896,-0.914156,-3.682269,-3.365610,-1.091135,-3.742181,-3.349064,-1.098822,-3.737336, + -3.285900,-0.924376,-3.675828,-3.106521,-0.889993,-4.343973,-3.181895,-1.074939,-4.355287,-3.165349,-1.082627,-4.350441, + -3.084525,-0.900212,-4.337533,-3.780819,-2.493440,-4.610098,-3.693293,-2.254479,-4.546193,-3.676619,-2.262145,-4.541771, + -3.758620,-2.503579,-4.604263,-3.953492,-2.511318,-3.983529,-3.844625,-2.268904,-3.947772,-3.827951,-2.276570,-3.943349, + -3.931291,-2.521454,-3.977693,-3.967286,-2.501410,-3.994957,-4.058392,-2.776938,-4.025366,-4.041845,-2.784626,-4.020521, + -3.926875,-2.519991,-3.984224,-3.790022,-2.480311,-4.615863,-3.874718,-2.700412,-4.652698,-3.858171,-2.708100,-4.647853, + -3.768027,-2.490531,-4.609423,-3.840177,-4.653798,-4.103712,-4.063537,-4.550529,-4.165364,-4.070506,-4.567707,-4.168924, + -3.849409,-4.676659,-4.108380,-3.669485,-4.602489,-4.687844,-3.912505,-4.509005,-4.721338,-3.919475,-4.526183,-4.724897, + -3.678717,-4.625350,-4.692513,-3.563687,-4.792575,-3.983644,-3.536561,-4.726850,-3.971979,-3.408435,-4.732647,-4.700928, + -3.381310,-4.666921,-4.689263,-4.107124,-4.467769,-4.104962,-4.134250,-4.533494,-4.116628,-3.910690,-4.431180,-4.786508, + -3.937816,-4.496906,-4.798173,-3.680855,-4.612653,-4.695111,-3.856038,-4.692382,-4.119671,-3.468491,-4.709429,-4.645360, + -3.475341,-4.726562,-4.649343,-3.689961,-4.635429,-4.700406,-3.839147,-4.650746,-4.111029,-3.598295,-4.765400,-4.043064, + -3.605146,-4.782534,-4.047047,-2.682465,-5.179497,-3.833879,-2.905824,-5.076227,-3.895532,-2.912794,-5.093406,-3.899091, + -2.691697,-5.202358,-3.838548,-2.511773,-5.128189,-4.418012,-2.754793,-5.034703,-4.451505,-2.761763,-5.051882,-4.455064, + -2.521005,-5.151050,-4.422680,-2.405974,-5.318274,-3.713811,-2.378849,-5.252549,-3.702146,-2.250723,-5.258346,-4.431095, + -2.223597,-5.192620,-4.419430,-2.949412,-4.993468,-3.835130,-2.976537,-5.059194,-3.846795,-2.752978,-4.956879,-4.516675, + -2.780104,-5.022604,-4.528340,-2.523143,-5.138351,-4.425278,-2.698326,-5.218081,-3.849838,-2.310779,-5.235127,-4.375527, + -2.317629,-5.252260,-4.379510,-2.532249,-5.161128,-4.430573,-2.681435,-5.176445,-3.841196,-2.440583,-5.291099,-3.773231, + -2.447433,-5.308232,-3.777214,-2.629851,-4.623703,-5.874300,-2.853210,-4.520433,-5.935952,-2.860179,-4.537612,-5.939511, + -2.639083,-4.646564,-5.878968,-2.459159,-4.572395,-6.458431,-2.702178,-4.478909,-6.491925,-2.709148,-4.496089,-6.495484, + -2.468390,-4.595256,-6.463099,-2.353360,-4.762481,-5.754231,-2.326234,-4.696755,-5.742566,-2.198108,-4.702552,-6.471515, + -2.170983,-4.636827,-6.459850,-2.896798,-4.437675,-5.875550,-2.923923,-4.503400,-5.887215,-2.700364,-4.401086,-6.557095, + -2.727490,-4.466811,-6.568760,-2.470529,-4.582558,-6.465698,-2.645711,-4.662287,-5.890258,-2.258164,-4.679334,-6.415947, + -2.265015,-4.696467,-6.419930,-2.479635,-4.605334,-6.470993,-2.628821,-4.620652,-5.881616,-2.387969,-4.735305,-5.813651, + -2.394819,-4.752439,-5.817634,-0.915236,-1.515975,-5.204722,-0.687098,-1.618006,-5.161162,-0.679861,-1.600758,-5.158612, + -0.905677,-1.493029,-5.201292,-0.774809,-1.486653,-5.798355,-0.543739,-1.583235,-5.719625,-0.536503,-1.565987,-5.717074, + -0.765251,-1.463707,-5.794923,-1.219523,-1.384401,-5.219565,-1.246649,-1.450127,-5.231230,-0.999900,-1.347177,-5.921399, + -1.027025,-1.412902,-5.933064,-0.676086,-1.709207,-5.098247,-0.648960,-1.643481,-5.086581,-0.510653,-1.652014,-5.786571, + -0.483528,-1.586288,-5.774905,-0.761685,-1.476035,-5.797729,-0.894888,-1.476227,-5.205754,-0.974186,-1.379295,-5.846962, + -0.966844,-1.362034,-5.844841,-0.751925,-1.453089,-5.794909,-0.912432,-1.518033,-5.211920,-1.159278,-1.404933,-5.257195, + -1.151936,-1.387672,-5.255074,-3.012593,-4.265927,-7.523497,-2.912635,-4.311317,-7.500199,-2.949307,-4.400172,-7.515970, + -3.049265,-4.354783,-7.539268,-3.635447,-4.337990,-5.491674,-3.535489,-4.383379,-5.468377,-3.572161,-4.472235,-5.484147, + -3.672119,-4.426846,-5.507445,-1.600569,-0.844643,-6.916273,-1.500611,-0.890033,-6.892976,-1.537284,-0.978888,-6.908746, + -1.637242,-0.933499,-6.932044,-2.186288,-0.933568,-4.875795,-2.086330,-0.978958,-4.852498,-2.123003,-1.067813,-4.868268, + -2.222961,-1.022424,-4.891566,-2.570430,-8.270329,-4.082453,-2.439968,-8.060784,-4.023925,-2.554956,-8.280764,-4.079622, + -2.419384,-8.074615,-4.020100,-2.292570,-8.003009,-4.613768,-2.425868,-8.227643,-4.640056,-2.410393,-8.238078,-4.637225, + -2.271986,-8.016840,-4.609942,-2.279982,-7.794636,-3.906912,-2.338556,-7.754655,-3.919648,-2.108350,-7.776642,-4.622740, + -2.166925,-7.736661,-4.635476,-2.673987,-8.285895,-4.044624,-2.615412,-8.325876,-4.031888,-2.480825,-8.225188,-4.725383, + -2.422250,-8.265169,-4.712646,-2.283661,-8.017194,-4.615953,-2.403118,-8.086000,-4.025045,-2.158558,-7.819476,-4.569092, + -2.142986,-7.829872,-4.566690,-2.262960,-8.031014,-4.612761,-2.440627,-8.060707,-4.031892,-2.297258,-7.835034,-3.966380, + -2.281686,-7.845431,-3.963978,-5.301903,-5.709402,-6.158392,-2.049645,-7.929283,-5.451247,-2.100653,-8.010066,-5.470252, + -5.352910,-5.790185,-6.177397,-5.327387,-5.716007,-6.061920,-2.075130,-7.935887,-5.354775,-2.126137,-8.016670,-5.373779, + -5.378394,-5.796790,-6.080925,-5.811978,-6.517233,-6.348438,-2.559721,-8.737114,-5.641294,-2.610729,-8.817897,-5.660298, + -5.862986,-6.598016,-6.367443,-5.837462,-6.523838,-6.251966,-2.585205,-8.743718,-5.544821,-2.636213,-8.824501,-5.563826, + -5.888470,-6.604620,-6.270971,-6.302249,-7.293697,-6.531106,-3.049992,-9.513578,-5.823961,-3.100999,-9.594360,-5.842966, + -6.353256,-7.374480,-6.550110,-6.327733,-7.300302,-6.434634,-3.075476,-9.520183,-5.727489,-3.126483,-9.600965,-5.746493, + -6.378740,-7.381085,-6.453638,-4.808126,-4.927386,-5.974419,-1.555870,-7.147267,-5.267274,-1.606877,-7.228050,-5.286278, + -4.859134,-5.008169,-5.993423,-4.833611,-4.933991,-5.877946,-1.581354,-7.153872,-5.170801,-1.632361,-7.234654,-5.189806, + -4.884618,-5.014774,-5.896951,-4.266890,-4.070204,-5.772762,-1.014632,-6.290085,-5.065617,-1.080502,-6.394404,-5.090159, + -4.332758,-4.174524,-5.797304,-4.292374,-4.076808,-5.676290,-1.040117,-6.296689,-4.969145,-1.105986,-6.401009,-4.993687, + -4.358243,-4.181129,-5.700831,-6.315219,-7.365481,-6.575158,-4.268631,-4.124196,-5.812629,-4.189442,-4.178248,-5.795411, + -6.236031,-7.419532,-6.557940,-6.340704,-7.372086,-6.478685,-4.294115,-4.130801,-5.716157,-4.214926,-4.184853,-5.698939, + -6.261515,-7.426137,-6.461467,-3.172864,-9.510345,-5.891909,-1.126275,-6.269062,-5.129381,-1.047087,-6.323113,-5.112163, + -3.093676,-9.564398,-5.874691,-3.198349,-9.516951,-5.795436,-1.151760,-6.275666,-5.032908,-1.072571,-6.329718,-5.015690, + -3.119160,-9.571002,-5.778218,-3.638585,-9.192461,-5.993172,-1.591996,-5.951176,-5.230643,-1.512808,-6.005228,-5.213425, + -3.559397,-9.246511,-5.975954,-3.664069,-9.199065,-5.896699,-1.617480,-5.957781,-5.134171,-1.538292,-6.011832,-5.116953, + -3.584881,-9.253117,-5.879481,-2.927835,-4.830323,-7.539195,-1.182575,-6.021578,-7.159719,-3.019703,-8.889435,-7.841351, + -4.758844,-7.730176,-8.221400,-3.432730,-4.939581,-5.560100,-1.687471,-6.130836,-5.180624,-3.551079,-9.082320,-5.874976, + -5.296338,-7.891065,-6.254452,-4.279262,-4.158507,-5.730247,-6.305700,-7.367873,-6.485268,-7.461449,-7.525874,-2.637133, + -5.455690,-4.349186,-1.889812,-2.004139,-6.705601,-1.137176,-4.009927,-9.882270,-1.884502,-5.890179,-5.782534,-4.268626, + -2.484921,-8.114573,-3.495372,-2.535929,-8.195356,-3.514377,-5.941186,-5.863317,-4.287631,-5.919186,-5.790051,-4.158819, + -2.510406,-8.121178,-3.398900,-2.561413,-8.201961,-3.417904,-5.970193,-5.870834,-4.177824,-6.400254,-6.590364,-4.458673, + -2.994997,-8.922403,-3.685419,-3.046005,-9.003186,-3.704423,-6.451262,-6.671147,-4.477677,-6.429261,-6.597882,-4.348866, + -3.020482,-8.929008,-3.588946,-3.071489,-9.009791,-3.607951,-6.480269,-6.678665,-4.367870,-6.900066,-7.316541,-4.640418, + -3.432595,-9.691046,-3.853637,-3.483603,-9.771829,-3.872641,-6.951074,-7.397324,-4.659423,-6.941620,-7.327310,-4.483115, + -3.470626,-9.700901,-3.709668,-3.521634,-9.781685,-3.728673,-6.992627,-7.408092,-4.502120,-5.380103,-4.974703,-4.078580, + -1.974846,-7.306742,-3.305326,-2.025853,-7.387525,-3.324330,-5.431110,-5.055486,-4.097585,-5.409110,-4.982220,-3.968773, + -2.000330,-7.313347,-3.208853,-2.051338,-7.394130,-3.227858,-5.460117,-5.063003,-3.987777,-4.936529,-4.168761,-3.895888, + -1.449255,-6.534445,-3.113614,-1.509062,-6.629165,-3.135897,-4.987537,-4.249544,-3.914893,-4.957521,-4.189477,-3.751487, + -1.484615,-6.543609,-2.979757,-1.544422,-6.638329,-3.002041,-5.008529,-4.270260,-3.770491,-6.923009,-7.399814,-4.608869, + -4.915541,-4.220487,-3.860918,-4.787614,-4.313767,-3.807762,-6.795081,-7.493093,-4.555714,-6.975682,-7.389935,-4.509491, + -4.968214,-4.210608,-3.761539,-4.819091,-4.312395,-3.729115,-6.826558,-7.491721,-4.477067,-3.644883,-9.664947,-3.872241, + -1.618323,-6.455383,-3.117175,-1.475431,-6.554806,-3.078076,-3.501990,-9.764369,-3.833143,-3.655677,-9.679198,-3.782693, + -1.629117,-6.469635,-3.027627,-1.509670,-6.551972,-2.998225,-3.536230,-9.761536,-3.753291,-5.759603,-8.848419,-2.267395, + -3.609626,-5.443392,-1.466346,-3.697514,-5.383403,-1.485456,-5.847490,-8.788429,-2.286505,-5.733704,-8.841707,-2.365436, + -3.596621,-5.440022,-1.515577,-3.684509,-5.380033,-1.534687,-5.821592,-8.781717,-2.384545,-4.888526,-9.447176,-2.060182, + -2.738549,-6.042150,-1.259133,-2.823238,-5.981817,-1.288290,-4.973215,-9.386844,-2.089339,-4.860190,-9.443628,-2.143178, + -2.716298,-6.042208,-1.318605,-2.800987,-5.981875,-1.347763,-4.944879,-9.383295,-2.172336,-4.076731,-9.984841,-1.953544, + -1.926754,-6.579814,-1.152494,-1.838866,-6.639803,-1.133385,-3.988844,-10.044830,-1.934434,-4.102215,-9.991446,-1.857071, + -1.952239,-6.586419,-1.056022,-1.864351,-6.646408,-1.036912,-4.014328,-10.051435,-1.837961,-6.715521,-8.184196,-2.525169, + -4.565545,-4.779171,-1.724120,-4.476690,-4.838835,-1.708985,-6.626667,-8.243862,-2.510034,-6.734509,-8.192254,-2.439956, + -4.584533,-4.787228,-1.638907,-4.495678,-4.846892,-1.623772,-6.645655,-8.251919,-2.424821,-7.592239,-7.585278,-2.717928, + -5.442262,-4.180252,-1.916879,-5.354375,-4.240240,-1.897769,-7.504352,-7.645267,-2.698818,-7.617724,-7.591883,-2.621455, + -5.467747,-4.186856,-1.820406,-5.379859,-4.246845,-1.801297,-7.529836,-7.651872,-2.602345,-3.962734,-9.945863,-1.885075, + -7.523205,-7.515614,-2.659235,-7.498732,-7.476855,-2.650117,-3.938262,-9.907104,-1.875957,-3.995134,-9.964390,-1.794218, + -7.555605,-7.534141,-2.568379,-7.524216,-7.483459,-2.553645,-3.963746,-9.913708,-1.779484,-1.945263,-6.750692,-1.133395, + -5.505733,-4.320443,-1.907556,-5.455786,-4.241338,-1.888946,-1.895315,-6.671586,-1.114785,-1.970747,-6.757296,-1.036922, + -5.531218,-4.327047,-1.811083,-5.484429,-4.247138,-1.775414,-1.923959,-6.677386,-1.001254,-6.249799,-5.199239,-1.068892, + -1.102534,-6.326833,-5.039525,-2.686466,-7.566623,-0.340955,-3.128973,-9.536200,-5.794545,-4.015444,-9.702484,-1.806134, + -2.125536,-6.701757,-1.103312,-1.967585,-6.806391,-1.081956,-3.864717,-9.802187,-1.786348,-4.083206,-9.976819,-1.855835, + -1.951003,-6.591731,-1.060769,-1.868177,-6.648266,-1.042759,-4.007604,-10.028422,-1.839397,-2.653057,-7.590623,-0.222426, + -2.709067,-7.562587,-0.376662,-2.565170,-7.650612,-0.203317,-2.546056,-7.670675,-0.354205,-7.434668,-7.358442,-2.564622, + -5.542516,-4.363145,-1.860844,-5.456925,-4.421566,-1.842234,-7.351446,-7.415246,-2.546527,-7.602120,-7.580780,-2.623887, + -5.464397,-4.195891,-1.826698,-5.383550,-4.251074,-1.809119,-7.523513,-7.634435,-2.606795,-6.353527,-5.064812,-1.027028, + -6.295807,-5.111226,-1.169521,-6.242561,-5.140553,-1.002900,-6.202761,-5.174736,-1.149290,-6.360076,-5.061463,-1.100071, + -6.371427,-5.054698,-1.026628,-2.510894,-7.693192,-0.172653,-7.630818,-7.590284,-2.656906,-3.995000,-10.071968,-1.866362, + -7.647462,-7.604190,-2.624012,-4.011643,-10.085873,-1.833468,-5.451376,-4.117501,-1.778675,-1.815557,-6.599185,-0.988131, + -5.479377,-4.180550,-1.847815,-1.843558,-6.662233,-1.057271,-2.506738,-7.690341,-0.267654,-6.892465,-7.399505,-4.547748, + -1.630584,-6.550323,-3.085059,-3.591534,-9.655979,-3.815680,-4.931544,-4.293829,-3.817134,-4.279262,-4.158507,-5.730247, + -6.305700,-7.367873,-6.485268,-1.102534,-6.326833,-5.039525,-3.128973,-9.536200,-5.794545,-4.812574,-4.322956,-3.793708, + -3.625651,-9.639288,-3.833873,-6.802378,-7.470962,-4.524595,-1.635847,-6.491282,-3.102986,-6.901159,-7.331615,-4.512897, + -6.835759,-7.376255,-4.498677,-6.886767,-7.457038,-4.517682,-6.952167,-7.412398,-4.531902,-7.514034,-7.485289,-2.597682, + -7.448634,-7.529929,-2.583463,-7.499641,-7.610712,-2.602467,-7.565041,-7.566072,-2.616687,-6.197412,-6.217058,-4.250692, + -6.132012,-6.261698,-4.236472,-6.183020,-6.342481,-4.255477,-6.248420,-6.297842,-4.269697,-6.729864,-6.345270,-2.372355, + -6.664464,-6.389910,-2.358136,-6.715472,-6.470693,-2.377140,-6.780872,-6.426053,-2.391360,-5.640975,-5.335802,-4.043372, + -5.575575,-5.380442,-4.029152,-5.626582,-5.461225,-4.048157,-5.691982,-5.416585,-4.062376,-6.153867,-5.433036,-2.157748, + -6.088467,-5.477676,-2.143528,-6.139475,-5.558459,-2.162532,-6.204875,-5.513819,-2.176753,-4.928832,-4.207948,-3.778038, + -4.863432,-4.252588,-3.763818,-4.914439,-4.333371,-3.782823,-4.979839,-4.288732,-3.797043,-5.492344,-4.280766,-1.836024, + -5.426944,-4.325406,-1.821804,-5.470409,-4.394244,-1.837998,-5.535810,-4.349605,-1.852218,-6.271643,-7.306448,-6.498538, + -6.205952,-7.351007,-6.485445,-6.256960,-7.431789,-6.504449,-6.322650,-7.387231,-6.517543,-6.802324,-7.390040,-4.529817, + -6.736634,-7.434598,-4.516724,-6.787642,-7.515381,-4.535728,-6.853332,-7.470823,-4.548822,-5.605741,-6.251829,-6.250433, + -5.540051,-6.296387,-6.237340,-5.591058,-6.377170,-6.256345,-5.656749,-6.332612,-6.269438,-6.145958,-6.350523,-4.285265, + -6.080268,-6.395081,-4.272172,-6.131276,-6.475863,-4.291176,-6.196966,-6.431306,-4.304270,-4.949460,-5.212445,-6.005913, + -4.883769,-5.257003,-5.992820,-4.934777,-5.337786,-6.011824,-5.000467,-5.293228,-6.024918,-5.509236,-5.342117,-4.048032, + -5.443546,-5.386675,-4.034939,-5.494554,-5.467458,-4.053944,-5.560244,-5.422900,-4.067037,-4.260194,-4.120823,-5.749103, + -4.194504,-4.165381,-5.736010,-4.245511,-4.246164,-5.755014,-4.314707,-4.207159,-5.769414,-4.829997,-4.266374,-3.794958, + -4.764307,-4.310931,-3.781865,-4.815314,-4.391714,-3.800869,-4.884511,-4.352709,-3.815269,-4.932196,-8.788044,-4.092483, + -4.894466,-8.728290,-4.078425,-4.815278,-8.782341,-4.061207,-4.853008,-8.842095,-4.075264,-5.427261,-9.011826,-2.180014, + -5.389532,-8.952071,-2.165956,-5.310343,-9.006123,-2.148738,-5.348073,-9.065876,-2.162796,-5.776771,-8.204838,-4.304721, + -5.739041,-8.145083,-4.290664,-5.659853,-8.199135,-4.273445,-5.697583,-8.258889,-4.287503,-6.370071,-8.368296,-2.385011, + -6.332342,-8.308541,-2.370954,-6.253153,-8.362593,-2.353735,-6.290883,-8.422347,-2.367793,-4.383644,-8.691287,-6.101756, + -4.341046,-8.624628,-6.087125,-4.268243,-8.678894,-6.051856,-4.310842,-8.745552,-6.066486,-4.923146,-8.786420,-4.129008, + -4.880727,-8.719633,-4.114440,-4.801538,-8.773685,-4.097222,-4.843957,-8.840471,-4.111791,-5.309784,-8.060791,-6.296095, + -5.267365,-7.994004,-6.281527,-5.188177,-8.048055,-6.264308,-5.230596,-8.114841,-6.278877,-5.774866,-8.205066,-4.314200, + -5.732447,-8.138279,-4.299631,-5.653258,-8.192329,-4.282413,-5.695677,-8.259117,-4.296982,-3.693399,-5.075306,-3.511065, + -3.731129,-5.135060,-3.525123,-3.810318,-5.081009,-3.542341,-3.772588,-5.021255,-3.528283,-4.223783,-5.148585,-1.597623, + -4.261513,-5.208340,-1.611681,-4.340702,-5.154288,-1.628899,-4.302972,-5.094534,-1.614841,-2.827983,-5.653112,-3.377726, + -2.865713,-5.712866,-3.391784,-2.944901,-5.658815,-3.409002,-2.907171,-5.599061,-3.394944,-3.275294,-5.790644,-1.414130, + -3.313023,-5.850398,-1.428187,-3.392212,-5.796346,-1.445406,-3.354482,-5.736592,-1.431348,-3.193094,-4.887956,-5.519735, + -3.234918,-4.954588,-5.536554,-3.314107,-4.900537,-5.553772,-3.272283,-4.833904,-5.536953,-3.683259,-5.071957,-3.547185, + -3.725083,-5.138590,-3.564004,-3.804272,-5.084538,-3.581223,-3.762448,-5.017906,-3.564404,-2.273341,-5.518668,-5.307345, + -2.314985,-5.585428,-5.324101,-2.387788,-5.531163,-5.359371,-2.346143,-5.464402,-5.342614,-2.817843,-5.649763,-3.413846, + -2.859667,-5.716395,-3.430666,-2.938856,-5.662344,-3.447884,-2.897032,-5.595712,-3.431065,-1.569245,-6.604811,-3.054657, + -1.634645,-6.560171,-3.068877,-1.583637,-6.479388,-3.049873,-1.518237,-6.524028,-3.035653,-1.977650,-6.741398,-1.184057, + -2.043050,-6.696758,-1.198277,-1.992042,-6.615975,-1.179273,-1.926642,-6.660614,-1.165052,-2.292308,-7.749956,-3.324059, + -2.357708,-7.705317,-3.338280,-2.306700,-7.624534,-3.319275,-2.241301,-7.669173,-3.305055,-2.721307,-7.905160,-1.417188, + -2.786707,-7.860520,-1.431407,-2.735700,-7.779737,-1.412403,-2.670300,-7.824378,-1.398183,-2.848747,-8.631212,-3.531380, + -2.914147,-8.586572,-3.545600,-2.863139,-8.505789,-3.526595,-2.797740,-8.550428,-3.512375,-3.297306,-8.817394,-1.631796, + -3.362706,-8.772754,-1.646016,-3.311698,-8.691971,-1.627011,-3.246298,-8.736610,-1.612791,-3.541577,-9.728475,-3.789517, + -3.606977,-9.683835,-3.803737,-3.555969,-9.603052,-3.784733,-3.490569,-9.647692,-3.770513,-4.018283,-9.960815,-1.905383, + -4.083683,-9.916176,-1.919603,-4.032675,-9.835393,-1.900598,-3.967275,-9.880033,-1.886378,-1.107084,-6.376752,-5.070617, + -1.172179,-6.332040,-5.085960,-1.121172,-6.251256,-5.066956,-1.056076,-6.295969,-5.051612,-1.616666,-6.563406,-3.103378, + -1.681762,-6.518694,-3.118721,-1.630754,-6.437912,-3.099717,-1.565659,-6.482624,-3.084373,-1.807269,-7.485665,-5.331495, + -1.872365,-7.440953,-5.346839,-1.821358,-7.360170,-5.327834,-1.756262,-7.404882,-5.312490,-2.306826,-7.656441,-3.360521, + -2.371922,-7.611729,-3.375865,-2.320914,-7.530946,-3.356860,-2.255819,-7.575658,-3.341516,-2.463552,-8.525048,-5.576015, + -2.528648,-8.480336,-5.591360,-2.477640,-8.399553,-5.572355,-2.412545,-8.444265,-5.557011,-2.943549,-8.664846,-3.597754, + -3.008645,-8.620134,-3.613097,-2.957637,-8.539351,-3.594093,-2.892541,-8.584064,-3.578749,-3.118536,-9.562374,-5.820053, + -3.183632,-9.517662,-5.835397,-3.132625,-9.436879,-5.816392,-3.064023,-9.476039,-5.799742,-3.588998,-9.687071,-3.838238, + -3.654094,-9.642359,-3.853582,-3.603086,-9.561575,-3.834577,-3.534485,-9.600735,-3.817927,-5.807861,-7.188765,-8.437408, + -5.742171,-7.233323,-8.424314,-5.793179,-7.314106,-8.443319,-5.858869,-7.269548,-8.456413,-6.269471,-7.308093,-6.497377, + -6.203781,-7.352651,-6.484284,-6.254788,-7.433434,-6.503289,-6.320478,-7.388875,-6.516382,-5.135195,-6.123431,-8.186783, + -5.069504,-6.167989,-8.173689,-5.120512,-6.248772,-8.192694,-5.186202,-6.204214,-8.205788,-5.603570,-6.253473,-6.249273, + -5.537879,-6.298031,-6.236179,-5.588887,-6.378814,-6.255184,-5.654577,-6.334256,-6.268277,-4.465873,-5.063396,-7.937404, + -4.400183,-5.107954,-7.924310,-4.451190,-5.188736,-7.943315,-4.516881,-5.144178,-7.956409,-4.947288,-5.214089,-6.004752, + -4.881598,-5.258647,-5.991659,-4.932605,-5.339431,-6.010664,-4.998295,-5.294872,-6.023757,-3.795467,-4.001643,-7.687621, + -3.729777,-4.046201,-7.674528,-3.793824,-4.147635,-7.698390,-3.859515,-4.103077,-7.711484,-4.276882,-4.152337,-5.754969, + -4.211192,-4.196895,-5.741876,-4.262199,-4.277678,-5.760880,-4.327889,-4.233120,-5.773974,-5.395764,-7.993070,-6.375238, + -3.349175,-4.751786,-5.612710,-3.269987,-4.805837,-5.595492,-5.316575,-8.047121,-6.358020,-5.421248,-7.999675,-6.278766, + -3.374659,-4.758390,-5.516238,-3.295471,-4.812442,-5.499020,-5.342060,-8.053726,-6.261548,-4.382629,-8.681912,-6.166383, + -2.336040,-5.440628,-5.403855,-2.263237,-5.494894,-5.368586,-4.310962,-8.733891,-6.137789,-4.423524,-8.677534,-6.075232, + -2.376935,-5.436250,-5.312704,-2.304132,-5.490516,-5.277435,-4.351856,-8.729513,-6.046638,-6.104837,-7.292922,-7.119823, + -6.069241,-7.318000,-7.112992,-6.122862,-7.379672,-7.059980,-6.158459,-7.354594,-7.066812,-5.952918,-6.860028,-6.413404, + -5.917321,-6.885107,-6.406573,-5.970942,-6.946778,-6.353561,-6.006539,-6.921700,-6.360393,-5.429665,-6.216052,-6.844509, + -5.394001,-6.241025,-6.837653,-5.442050,-6.293871,-6.782565,-5.477714,-6.268898,-6.789421,-5.256551,-5.757159,-6.153949, + -5.220954,-5.782238,-6.147117,-5.274575,-5.843909,-6.094106,-5.310172,-5.818831,-6.100937,-4.787992,-5.207373,-6.629187, + -4.752395,-5.232450,-6.622355,-4.806016,-5.294122,-6.569344,-4.841613,-5.269044,-6.576175,-4.632567,-4.768927,-5.921462, + -4.596971,-4.794005,-5.914630,-4.650591,-4.855677,-5.861619,-4.686189,-4.830598,-5.868450,-4.097731,-4.210380,-6.378592, + -4.132907,-4.185193,-6.387015,-4.114393,-4.132620,-6.307127,-4.079216,-4.157807,-6.298704,-4.595553,-4.776445,-5.912199, + -4.630730,-4.751258,-5.920622,-4.612216,-4.698685,-5.840734,-4.577039,-4.723872,-5.832311,-4.771817,-5.272080,-6.611270, + -4.806993,-5.246892,-6.619693,-4.788479,-5.194320,-6.539805,-4.753303,-5.219507,-6.531383,-5.275620,-5.853499,-6.165581, + -5.310796,-5.828313,-6.174004,-5.292282,-5.775740,-6.094116,-5.257105,-5.800927,-6.085693,-5.425521,-6.305703,-6.849552, + -5.460764,-6.280622,-6.858000,-5.447823,-6.236875,-6.780188,-5.412580,-6.261956,-6.771740,-5.915902,-6.867548,-6.404141, + -5.951078,-6.842361,-6.412564,-5.932564,-6.789788,-6.332675,-5.897388,-6.814975,-6.324253,-6.064862,-7.307378,-7.130064, + -6.088394,-7.343406,-7.139602,-6.149954,-7.322505,-7.063223,-6.126422,-7.286477,-7.053686,-5.714369,-7.708284,-6.408461, + -5.737902,-7.744312,-6.417999,-5.811450,-7.710641,-6.363724,-5.787918,-7.674613,-6.354186,-4.052268,-4.149544,-6.362418, + -4.073225,-4.187266,-6.371391,-4.149195,-4.157751,-6.318040,-4.128237,-4.120029,-6.309067,-3.691691,-4.500933,-5.654572, + -3.712649,-4.538655,-5.663546,-3.788619,-4.509140,-5.610195,-3.767661,-4.471417,-5.601222,-2.459467,-7.572010,-1.296172, + -2.524477,-7.527637,-1.310307,-2.478170,-7.454298,-1.293054,-2.413160,-7.498671,-1.278918,-2.599685,-7.709016,-0.337458, + -2.664694,-7.664643,-0.351593,-2.618387,-7.591304,-0.334340,-2.553378,-7.635677,-0.320205,-6.006923,-5.157702,-2.066068, + -5.941914,-5.202075,-2.051933,-5.988221,-5.275414,-2.069187,-6.053230,-5.231041,-2.083322,-6.256227,-5.108686,-1.123436, + -6.191217,-5.153059,-1.109301,-6.237525,-5.226398,-1.126554,-6.302535,-5.182024,-1.140689,-3.097135,-8.584007,-1.540324, + -3.162144,-8.539635,-1.554459,-3.115837,-8.466295,-1.537205,-3.050828,-8.510668,-1.523070,-3.227116,-8.692907,-0.988078, + -3.292125,-8.648535,-1.002213,-3.245818,-8.575195,-0.984960,-3.180809,-8.619568,-0.970824,-6.617943,-6.075880,-2.298676, + -6.552933,-6.120254,-2.284541,-6.599240,-6.193593,-2.301794,-6.664250,-6.149220,-2.315929,-6.787782,-6.157575,-1.755096, + -6.722773,-6.201948,-1.740961,-6.769080,-6.275287,-1.758214,-6.834090,-6.230914,-1.772350,-3.278886,-8.747683,-1.639752, + -3.337461,-8.707702,-1.652489,-3.420662,-8.839472,-1.683488,-3.362088,-8.879453,-1.670752,-3.440400,-9.555254,-3.766324, + -3.498975,-9.515273,-3.779060,-3.582176,-9.647043,-3.810060,-3.523602,-9.687024,-3.797324,-3.094043,-9.290792,-4.992348, + -3.137884,-9.201344,-4.917562,-3.079309,-9.241324,-4.904825,-3.290541,-9.356632,-4.312359,-3.294925,-9.256959,-4.386937, + -3.236351,-9.296940,-4.374201,-2.833409,-8.851881,-4.813207,-2.891984,-8.811900,-4.825943,-2.779218,-8.792189,-4.875049, + -2.970861,-8.872280,-4.262127,-3.029436,-8.832299,-4.274863,-3.014701,-8.782832,-4.187341,-2.956127,-8.822813,-4.174605, + -1.931666,-7.226459,-3.874939,-1.990240,-7.186477,-3.887675,-1.985856,-7.286151,-3.813097,-1.765401,-7.160429,-4.415284, + -1.823977,-7.120448,-4.428020,-1.780136,-7.209897,-4.502806,-3.147055,-9.123404,-4.308978,-3.174199,-9.104876,-4.314880, + -3.127709,-9.027736,-4.286537,-3.100565,-9.046264,-4.280635,-2.940720,-9.004838,-4.885742,-2.967864,-8.986311,-4.891644, + -2.996988,-9.033115,-4.904630,-2.969844,-9.051643,-4.898727,-3.282400,-9.318306,-4.358074,-2.975881,-8.829345,-4.232848, + -2.825789,-8.803368,-4.841589,-3.111692,-9.256845,-4.950247,-4.179932,-6.772881,-8.033982,-4.527873,-7.323093,-8.160976, + -4.982895,-7.458293,-6.492693,-4.603625,-6.856782,-6.348739,-4.636235,-6.959789,-6.522122,-4.872981,-7.335250,-6.611946, + -4.745512,-7.293577,-7.067368,-4.521029,-6.938566,-6.985344,-4.506160,-6.948716,-6.982111,-4.730642,-7.303727,-7.064135, + -4.858110,-7.345400,-6.608712,-4.621365,-6.969939,-6.518889,-4.613489,-7.103982,-7.021092,-4.592950,-7.118001,-7.016627, + -4.615764,-7.153617,-7.023512,-4.636302,-7.139598,-7.027977,-4.750729,-7.160618,-6.567696,-4.730190,-7.174637,-6.563231, + -4.708154,-7.139222,-6.553405,-4.728693,-7.125203,-6.557870,-4.787812,-7.310171,-6.855900,-4.767273,-7.324190,-6.851434, + -4.777490,-7.325914,-6.809859,-4.798029,-7.311895,-6.814325,-4.580930,-6.968063,-6.733437,-4.560391,-6.982082,-6.728971, + -4.548780,-6.978149,-6.770027,-4.569319,-6.964130,-6.774493,-3.248908,-5.074818,-7.035591,-3.190333,-5.114799,-7.022855, + -3.293656,-5.240953,-6.943680,-3.352231,-5.200972,-6.956416,-3.520436,-5.141143,-5.977959,-3.461861,-5.181124,-5.965222, + -3.493510,-5.288702,-6.157376,-3.552085,-5.248722,-6.170112,-4.087555,-6.365541,-7.230387,-4.028980,-6.405522,-7.217651, + -4.079144,-6.522454,-7.354013,-4.137719,-6.482473,-7.366749,-4.302233,-6.436769,-6.449606,-4.243659,-6.476750,-6.436870, + -4.365497,-6.612257,-6.301904,-4.424071,-6.572276,-6.314640,-3.414188,-5.212600,-6.586558,-3.387044,-5.231127,-6.580656, + -3.409615,-5.240249,-6.505485,-3.436759,-5.221722,-6.511387,-4.205758,-6.439623,-6.797904,-4.178614,-6.458151,-6.792002, + -4.160983,-6.456853,-6.869014,-4.188128,-6.438326,-6.874917,-3.929011,-5.854600,-6.269696,-3.901867,-5.873128,-6.263793, + -3.930789,-5.919881,-6.277544,-3.957933,-5.901353,-6.283446,-3.733819,-5.843271,-7.131843,-3.706676,-5.861799,-7.125941, + -3.670928,-5.805802,-7.114563,-3.698072,-5.787274,-7.120465,-3.493477,-5.184273,-6.108754,-4.343894,-6.532069,-6.428581, + -4.101037,-6.444302,-7.269994,-3.277543,-5.140711,-6.965114,-5.374016,-5.537888,-5.347214,-5.315441,-5.577869,-5.334478, + -5.379891,-5.662136,-5.302594,-5.438466,-5.622155,-5.315330,-5.529102,-5.557502,-4.678474,-5.470528,-5.597483,-4.665739, + -5.508092,-5.674782,-4.735632,-5.566667,-5.634801,-4.748368,-5.673492,-5.990176,-5.389703,-5.614918,-6.030157,-5.376966, + -5.652482,-6.107456,-5.446860,-5.711057,-6.067475,-5.459596,-5.822317,-6.039689,-4.843620,-5.763742,-6.079669,-4.830884, + -5.828193,-6.163937,-4.799000,-5.886768,-6.123956,-4.811736,-5.457845,-5.595902,-5.043712,-5.430701,-5.614429,-5.037809, + -5.446046,-5.619627,-4.983550,-5.473191,-5.601100,-4.989452,-5.760113,-6.055515,-5.096355,-5.732969,-6.074042,-5.090453, + -5.719466,-6.071764,-5.145400,-5.746611,-6.053236,-5.151301,-5.677094,-5.822425,-4.760630,-5.649950,-5.840953,-4.754727, + -5.679073,-5.887759,-4.767714,-5.706218,-5.869231,-4.773616,-5.546372,-5.827805,-5.378722,-5.519228,-5.846332,-5.372820, + -5.489077,-5.799261,-5.363721,-5.516221,-5.780733,-5.369623,-5.535248,-5.617226,-4.709111,-5.830901,-6.086149,-4.821403, + -5.664534,-6.034394,-5.424079,-5.388477,-5.602071,-5.336554,-4.724990,-4.505793,-5.092203,-4.666416,-4.545774,-5.079467, + -4.730865,-4.630041,-5.047582,-4.789441,-4.590060,-5.060318,-4.884402,-4.536459,-4.438269,-4.825827,-4.576440,-4.425533, + -4.863391,-4.653739,-4.495427,-4.921966,-4.613758,-4.508162,-5.032551,-4.975087,-5.150898,-4.973976,-5.015068,-5.138162, + -5.011540,-5.092367,-5.208055,-5.070115,-5.052386,-5.220791,-5.193916,-5.044460,-4.609488,-5.135342,-5.084441,-4.596751, + -5.199792,-5.168709,-4.564867,-5.258367,-5.128727,-4.577603,-4.822924,-4.590348,-4.807150,-4.795780,-4.608875,-4.801248, + -4.811125,-4.614074,-4.746988,-4.838270,-4.595546,-4.752890,-5.125192,-5.049961,-4.859793,-5.098048,-5.068488,-4.853891, + -5.084545,-5.066210,-4.908837,-5.111690,-5.047682,-4.914740,-5.042172,-4.816871,-4.524068,-5.015028,-4.835399,-4.518166, + -5.044152,-4.882205,-4.531152,-5.071297,-4.863677,-4.537054,-4.911451,-4.822250,-5.142160,-4.884307,-4.840778,-5.136258, + -4.854156,-4.793707,-5.127159,-4.881300,-4.775179,-5.133061,-4.890547,-4.596183,-4.468905,-5.202500,-5.090921,-4.587270, + -5.023592,-5.019305,-5.185274,-4.739451,-4.569976,-5.081542,-1.988914,-6.693004,-1.122432,-2.047489,-6.653023,-1.135168, + -2.130690,-6.784792,-1.166168,-2.072115,-6.824774,-1.153432,-2.188961,-7.561602,-3.263361,-2.247536,-7.521621,-3.276097, + -2.330737,-7.653391,-3.307096,-2.272162,-7.693372,-3.294360,-2.844464,-8.598292,-3.503005,-2.903039,-8.558311,-3.515740, + -2.819839,-8.426541,-3.484741,-2.761263,-8.466522,-3.472005,-2.804247,-7.984285,-1.426213,-2.862822,-7.944304,-1.438949, + -2.779621,-7.812534,-1.407949,-2.721046,-7.852515,-1.395213,-6.461819,-6.088704,-2.962322,-6.446718,-6.099225,-2.958128, + -6.297389,-5.871973,-2.915325,-6.167276,-5.820123,-3.507134,-6.287542,-6.021343,-3.552094,-6.272440,-6.031863,-3.547900, + -6.334291,-5.846519,-2.924479,-6.147201,-5.834109,-3.501558,-5.987553,-5.580555,-3.485102,-5.928908,-5.620517,-3.472632, + -6.154046,-5.615134,-2.795528,-6.095401,-5.655097,-2.783057,-6.229879,-6.105618,-3.611804,-6.288523,-6.065656,-3.624276, + -6.430832,-6.186337,-2.908034,-6.489477,-6.146375,-2.920505,-6.160305,-5.834841,-3.502126,-6.033839,-5.616767,-3.429343, + -6.018612,-5.627268,-3.425571,-6.140021,-5.848752,-3.497155,-6.322144,-5.858995,-2.913735,-6.181875,-5.651603,-2.872106, + -6.301860,-5.872906,-2.908764,-6.166648,-5.662104,-2.868334,-1.522291,-6.775403,-4.324704,-1.580866,-6.735421,-4.337440, + -1.468100,-6.715710,-4.386546,-1.659715,-6.795757,-3.773614,-1.718289,-6.755775,-3.786350,-1.703555,-6.706308,-3.698828, + -1.644980,-6.746289,-3.686092,-1.829349,-7.032300,-3.804864,-1.856493,-7.013772,-3.810766,-1.826342,-6.966701,-3.801668, + -1.799198,-6.985229,-3.795765,-1.639353,-6.943803,-4.400872,-1.666497,-6.925275,-4.406775,-1.695621,-6.972081,-4.419760, + -1.668477,-6.990608,-4.413858,-1.977715,-7.247825,-3.858812,-1.664734,-6.752821,-3.744335,-1.514671,-6.726888,-4.353086, + -1.797785,-7.175951,-4.460705,-2.766208,-7.953455,-1.966489,-2.130924,-6.947326,-1.729792,-3.147972,-9.253983,-5.004074, + -3.344470,-9.319822,-4.324085,-2.833147,-8.755379,-4.886775,-3.010055,-8.786003,-4.186331,-2.039785,-7.249341,-3.824823, + -1.834064,-7.173087,-4.514532,-1.522028,-6.678900,-4.398272,-1.698909,-6.709479,-3.697818,-4.123928,-6.673617,-8.030229, + -4.065353,-6.713598,-8.017492,-4.133220,-6.821083,-8.042779,-4.191795,-6.781102,-8.055515,-4.575055,-6.766930,-6.231318, + -4.516479,-6.806911,-6.218582,-4.553221,-6.906330,-6.361697,-4.611796,-6.866349,-6.374433,-4.512389,-7.288844,-8.174964, + -4.453814,-7.328825,-8.162228,-4.521681,-7.436310,-8.187514,-4.580256,-7.396328,-8.200250,-4.964990,-7.425719,-6.506027, + -4.906415,-7.465701,-6.493291,-5.005408,-7.581252,-6.400749,-5.063982,-7.541271,-6.413485,-1.824112,-7.137354,-7.395988, + -1.471052,-6.577348,-7.261798,-1.860506,-6.653358,-5.709256,-2.243056,-7.258383,-5.849144,-2.130116,-7.134557,-5.979854, + -1.890586,-6.755712,-5.892223,-1.784690,-6.748204,-6.355683,-2.002751,-7.094076,-6.438545,-2.017622,-7.083926,-6.441778, + -1.799560,-6.738054,-6.358916,-1.905456,-6.745562,-5.895456,-2.144987,-7.124407,-5.983087,-1.900361,-6.922284,-6.428462, + -1.920899,-6.908265,-6.432927,-1.896650,-6.869286,-6.422090,-1.876112,-6.883305,-6.417624,-2.011092,-6.918286,-5.906644, + -2.031631,-6.904267,-5.911110,-2.056747,-6.943471,-5.918665,-2.036208,-6.957490,-5.914199,-1.831148,-6.727272,-6.145320, + -1.851687,-6.713253,-6.149786,-1.864635,-6.717625,-6.103962,-1.844096,-6.731644,-6.099497,-2.096053,-7.127175,-6.182362, + -2.116591,-7.113156,-6.186828,-2.099883,-7.109843,-6.253271,-2.079344,-7.123861,-6.248805,-2.757854,-8.326213,-6.970387, + -2.816428,-8.286232,-6.983123,-2.798555,-8.215964,-6.844742,-2.739980,-8.255945,-6.832006,-2.976049,-8.392007,-6.190461, + -3.034625,-8.352026,-6.203197,-2.951630,-8.261059,-6.299338,-2.893055,-8.301040,-6.286602,-2.504133,-7.878701,-6.732460, + -2.562708,-7.838720,-6.745195,-2.479713,-7.747753,-6.841337,-2.421138,-7.787734,-6.828600,-2.646724,-7.907287,-6.183448, + -2.705298,-7.867306,-6.196184,-2.687425,-7.797038,-6.057803,-2.628850,-7.837019,-6.045067,-2.843768,-8.302658,-6.601393, + -2.870912,-8.284130,-6.607295,-2.885090,-8.287470,-6.552573,-2.857945,-8.305998,-6.546671,-2.574247,-7.852515,-6.427869, + -2.601391,-7.833987,-6.433771,-2.585391,-7.827734,-6.487729,-2.558247,-7.846262,-6.481827,-2.798865,-8.118111,-6.214404, + -2.826010,-8.099583,-6.220305,-2.796168,-8.052570,-6.209969,-2.769024,-8.071097,-6.204066,-2.608256,-8.028252,-6.808958, + -2.635400,-8.009724,-6.814859,-2.664167,-8.056395,-6.829065,-2.637023,-8.074923,-6.823163,-2.939214,-8.322877,-6.271449, + -2.652284,-7.864916,-6.153452,-2.496359,-7.829645,-6.759850,-2.771730,-8.270755,-6.878107,-1.871346,-7.234345,-7.432941, + -1.929921,-7.194364,-7.445677,-1.862054,-7.086879,-7.420391,-1.803479,-7.126860,-7.407654,-2.322627,-7.361452,-5.773498, + -2.381202,-7.321471,-5.786233,-2.282209,-7.205919,-5.878776,-2.223634,-7.245900,-5.866039,-1.476494,-6.608995,-7.285825, + -1.535069,-6.569015,-7.298561,-1.467202,-6.461529,-7.273274,-1.408627,-6.501510,-7.260538,-1.868433,-6.683347,-5.733696, + -1.927007,-6.643366,-5.746432,-1.890266,-6.543947,-5.603318,-1.831691,-6.583928,-5.590582,-5.147662,-7.717816,-6.563147, + -4.985075,-7.828793,-6.527795,-5.089802,-7.994653,-6.566814,-5.252389,-7.883677,-6.602166,-5.198631,-7.731025,-6.370202, + -5.036044,-7.842001,-6.334850,-5.140770,-8.007862,-6.373869,-5.303358,-7.896886,-6.409221,-4.734948,-7.584703,-7.982713, + -4.572361,-7.695680,-7.947361,-4.677088,-7.861540,-7.986381,-4.839675,-7.750564,-8.021732,-4.802217,-7.623727,-7.795841, + -4.639629,-7.734704,-7.760489,-4.728056,-7.874749,-7.793436,-4.890643,-7.763773,-7.828787,-3.230325,-8.784052,-7.245551, + -3.107914,-8.867605,-7.218935,-3.182323,-8.985450,-7.246658,-3.304734,-8.901896,-7.273274,-3.274471,-8.795492,-7.078432, + -3.152060,-8.879046,-7.051816,-3.229729,-9.002054,-7.080754,-3.352140,-8.918501,-7.107370,-1.352356,-5.923938,-6.942965, + -1.203615,-6.032852,-6.911129,-1.290502,-6.170459,-6.943502,-1.439243,-6.061545,-6.975338,-1.378300,-5.926343,-6.831198, + -1.226299,-6.030094,-6.798148,-1.313186,-6.167701,-6.830521,-1.465187,-6.063951,-6.863571,-3.103633,-4.829587,-6.895285, + -2.953799,-4.931859,-6.862706,-3.032954,-5.051641,-6.874687,-3.182788,-4.949369,-6.907265,-3.150604,-4.841760,-6.717474, + -3.000770,-4.944031,-6.684895,-3.090762,-5.086557,-6.718425,-3.240597,-4.984285,-6.751004,-3.097281,-4.890624,-6.611125, + -2.872627,-5.043964,-6.562278,-2.937178,-5.146196,-6.586329,-3.161832,-4.992856,-6.635176,-3.133456,-4.899999,-6.474181, + -2.908803,-5.053340,-6.425334,-2.977116,-5.161530,-6.450787,-3.201769,-5.008189,-6.499633,-2.853145,-4.994120,-6.794534, + -2.628492,-5.147460,-6.745687,-2.685465,-5.232113,-6.749403,-2.910118,-5.078772,-6.798250,-2.889320,-5.003495,-6.657590, + -2.664667,-5.156836,-6.608743,-2.732478,-5.264231,-6.634008,-2.957131,-5.110890,-6.682855,-1.277193,-6.142412,-6.711320, + -1.412493,-6.356692,-6.761731,-1.527890,-6.277926,-6.786822,-1.392590,-6.063645,-6.736412,-1.313368,-6.151787,-6.574377, + -1.458074,-6.380964,-6.628292,-1.573471,-6.302197,-6.653383,-1.428765,-6.073020,-6.599467,-1.324584,-6.236241,-6.988329, + -1.460362,-6.451279,-7.038918,-1.518163,-6.411826,-7.051486,-1.382385,-6.196788,-7.000897,-1.363663,-6.239305,-6.818220, + -1.510106,-6.471234,-6.872783,-1.567907,-6.431781,-6.885350,-1.421464,-6.199852,-6.830788,-3.053360,-8.724797,-6.948461, + -3.203063,-8.961888,-7.004238,-3.320624,-8.881645,-7.029800,-3.170920,-8.644554,-6.974023,-3.102193,-8.733288,-6.781301, + -3.248636,-8.965217,-6.835863,-3.361775,-8.887992,-6.860463,-3.215332,-8.656063,-6.805901,-3.204551,-5.108577,-7.323463, + -3.067513,-4.891544,-7.272405,-3.009713,-4.930997,-7.259838,-3.146749,-5.148029,-7.310895,-3.258368,-5.134982,-7.158846, + -3.111925,-4.903054,-7.104283,-3.054124,-4.942507,-7.091716,-3.200566,-5.174435,-7.146278,-5.150350,-7.805984,-6.842206, + -5.017768,-7.588442,-6.769059,-4.959968,-7.627895,-6.756491,-5.092549,-7.845436,-6.829638,-5.194761,-7.817493,-6.674085, + -5.048318,-7.585565,-6.619522,-4.990517,-7.625017,-6.606955,-5.136960,-7.856946,-6.661517,-4.062551,-6.520574,-7.809965, + -3.916108,-6.288645,-7.755402,-3.858307,-6.328098,-7.742834,-4.004750,-6.560027,-7.797397,-4.118249,-6.549959,-7.646048, + -3.967126,-6.314821,-7.602936,-3.909325,-6.354274,-7.590368,-4.060448,-6.589412,-7.633480,-6.627886,-7.309491,-4.932765, + -6.514981,-7.130677,-4.890698,-6.470418,-7.161095,-4.881008,-6.583323,-7.339908,-4.923075,-6.662127,-7.318364,-4.803145, + -6.549222,-7.139551,-4.761078,-6.504658,-7.169969,-4.751389,-6.617563,-7.348782,-4.793456,-5.643368,-5.695089,-4.439735, + -5.530463,-5.516276,-4.397669,-5.485899,-5.546694,-4.387980,-5.598804,-5.725507,-4.430046,-5.660992,-5.686702,-4.332353, + -5.557867,-5.523378,-4.293930,-5.513303,-5.553796,-4.284241,-5.616428,-5.717120,-4.322663,-6.578765,-7.169776,-4.720083, + -6.477750,-7.009792,-4.682446,-6.433186,-7.040210,-4.672757,-6.534202,-7.200193,-4.710394,-6.603914,-7.176293,-4.624882, + -6.502898,-7.016310,-4.587245,-6.458334,-7.046727,-4.577556,-6.559350,-7.206711,-4.615192,-5.991477,-5.266999,-2.432564, + -5.878573,-5.088186,-2.390497,-5.834009,-5.118604,-2.380807,-5.946914,-5.297417,-2.422874,-6.022141,-5.279264,-2.330040, + -5.889677,-5.069474,-2.280685,-5.845114,-5.099892,-2.270996,-5.977578,-5.309681,-2.320350,-6.606717,-6.713283,-4.094979, + -6.493813,-6.534470,-4.052913,-6.449249,-6.564888,-4.043223,-6.562154,-6.743701,-4.085289,-6.634121,-6.720385,-3.991241, + -6.521216,-6.541572,-3.949174,-6.476653,-6.571990,-3.939484,-6.589558,-6.750803,-3.981551,-3.065298,-8.874658,-3.307444, + -3.178202,-9.053471,-3.349510,-3.222766,-9.023054,-3.359200,-3.109861,-8.844240,-3.317133,-3.092701,-8.881760,-3.203705, + -3.205606,-9.060574,-3.245771,-3.250170,-9.030155,-3.255461,-3.137265,-8.851342,-3.213394,-2.399979,-7.456332,-1.742273, + -2.512883,-7.635145,-1.784340,-2.557447,-7.604728,-1.794029,-2.444542,-7.425914,-1.751963,-2.427382,-7.463434,-1.638535, + -2.543547,-7.647410,-1.681816,-2.588110,-7.616992,-1.691505,-2.471946,-7.433016,-1.648224,-1.671308,-7.143819,-4.787189, + -1.784212,-7.322633,-4.829256,-1.828776,-7.292215,-4.838945,-1.715871,-7.113402,-4.796878,-1.698711,-7.150921,-4.683451, + -1.811616,-7.329734,-4.725517,-1.856179,-7.299317,-4.735207,-1.743275,-7.120504,-4.693140,-6.052691,-8.918430,-1.399484, + -6.076362,-8.938420,-1.339886,-4.883048,-7.100934,-1.208639,-5.325238,-9.023821,-2.149734,-4.387084,-7.667287,-2.266654, + -5.251101,-9.082547,-2.119386,-4.109273,-7.689631,-2.118178,-6.254374,-8.386646,-2.321328,-5.440262,-6.788446,-2.376558, + -6.145018,-8.469913,-2.302204,-5.205565,-7.114666,-2.418937,-5.040073,-7.440919,-1.476298,-5.959523,-8.777192,-1.354340, + -6.148952,-8.333821,-2.262177,-5.254458,-8.957948,-2.076485,-4.911479,-9.238719,-1.969613,-4.918433,-9.241682,-1.945663, + -4.657619,-9.415758,-1.887673,-4.720296,-9.498571,-1.966349,-6.153076,-8.453789,-2.306705,-4.960466,-9.338585,-2.019851, + -6.028297,-8.521793,-2.142709,-6.049733,-8.555743,-2.150696,-5.490537,-8.937016,-2.046313,-5.469101,-8.903066,-2.038327, + -4.967434,-9.341537,-1.995905,-5.343359,-9.013782,-2.115019,-5.940930,-8.771397,-1.526033,-5.919494,-8.737448,-1.518046, + -4.727263,-9.501524,-1.942403,-5.981191,-8.783340,-1.367202,-6.080328,-8.561875,-1.967285,-6.062844,-8.534185,-1.960770, + -6.075752,-8.538958,-1.905837,-6.093236,-8.566648,-1.912352,-5.614951,-8.887132,-1.833761,-5.597467,-8.859441,-1.827246, + -5.581527,-8.856737,-1.881520,-5.599011,-8.884428,-1.888034,-5.952527,-8.737057,-1.466401,-5.935043,-8.709366,-1.459886, + -5.888453,-8.740622,-1.452071,-5.905937,-8.768312,-1.458585,-5.725934,-8.721663,-2.140000,-5.708450,-8.693972,-2.133486, + -5.753884,-8.662416,-2.145679,-5.771368,-8.690106,-2.152194,-4.650666,-9.412795,-1.911622,-3.514322,-7.250543,-0.517829, + -3.522498,-7.255101,-0.493317,-3.163444,-7.496218,-0.413604,-3.213447,-7.586060,-0.502361,-3.464597,-7.418594,-0.558612, + -3.541012,-7.376575,-0.548937,-3.221623,-7.590618,-0.477849,-3.155268,-7.491660,-0.438117,-6.465071,-5.868655,-1.408537, + -6.474161,-5.872318,-1.376899,-6.200392,-6.054726,-1.315734,-6.254136,-6.171264,-1.408257,-6.547911,-5.975570,-1.473701, + -6.556435,-5.979181,-1.444411,-6.262660,-6.174875,-1.378967,-6.191302,-6.051063,-1.347371,-4.288546,-9.475245,-1.750796, + -4.296387,-9.478117,-1.723074,-4.157660,-9.569911,-1.691546,-4.170240,-9.651288,-1.765581,-4.352085,-9.530064,-1.806485, + -4.359897,-9.532956,-1.778757,-4.178052,-9.654181,-1.737854,-4.149818,-9.567039,-1.719267,-5.329553,-4.527509,-1.576505, + -5.329526,-4.519598,-1.552875,-5.552066,-4.371689,-1.598863,-5.485905,-4.290021,-1.685375,-5.242075,-4.452462,-1.634757, + -5.242064,-4.444541,-1.611130,-5.485892,-4.282101,-1.661748,-5.552093,-4.379599,-1.622493,-5.245872,-4.990314,-1.304397, + -5.245097,-4.981944,-1.282795,-5.472971,-4.830014,-1.329916,-5.411216,-4.758918,-1.416411,-5.166410,-4.922405,-1.365608, + -5.165647,-4.914028,-1.344009,-5.410452,-4.750541,-1.394812,-5.473746,-4.838383,-1.351518,-2.557341,-7.441255,-0.352545, + -2.561011,-7.436296,-0.321262,-2.801335,-7.275708,-0.371686,-2.759853,-7.190157,-0.453380,-2.474670,-7.381364,-0.393201, + -2.475390,-7.375663,-0.372985,-2.760573,-7.184457,-0.433163,-2.797665,-7.280667,-0.402970,-2.707669,-7.095757,-0.532509, + -2.707880,-7.087763,-0.507601,-2.946639,-6.929011,-0.557059,-2.874115,-6.843993,-0.645277,-2.618467,-7.014274,-0.592146, + -2.618690,-7.006272,-0.567242,-2.874338,-6.835992,-0.620372,-2.946428,-6.937005,-0.581965,-2.401471,-7.057992,-0.605491, + -2.400878,-7.051680,-0.589182,-2.561670,-6.944653,-0.622313,-2.514282,-6.891513,-0.687435,-2.342272,-7.006197,-0.651865, + -2.341686,-6.999880,-0.635560,-2.513696,-6.885196,-0.671128,-2.562263,-6.950964,-0.638620,-3.588062,-9.067263,-6.226334, + -1.622159,-5.995611,-5.498439,-1.511443,-6.079773,-5.454614,-3.464123,-9.172329,-6.182152,-3.607060,-9.084067,-6.129603, + -1.649882,-6.002664,-5.402617,-1.552639,-6.075171,-5.363610,-3.505319,-9.167727,-6.091148,-3.461015,-9.020451,-6.105490, + -3.482983,-9.055783,-6.120042,-3.547008,-9.007198,-6.062747,-3.538765,-8.993603,-6.053308,-3.080114,-9.475882,-5.765321, + -3.102081,-9.511213,-5.779872,-3.179832,-9.484365,-5.727691,-3.157864,-9.449033,-5.713139,-1.712454,-6.168212,-5.460214, + -1.737220,-6.204407,-5.464601,-1.806313,-6.163848,-5.409194,-1.781547,-6.127653,-5.404806,-1.111296,-6.361846,-5.090437, + -1.136062,-6.398041,-5.094824,-1.205154,-6.357482,-5.039417,-1.180388,-6.321287,-5.035029,-4.094718,-6.595792,-0.586469, + -5.377187,-9.115625,-2.221764,-5.393831,-9.129532,-2.188870,-3.197744,-5.642843,-1.343534,-3.225745,-5.705892,-1.412674, + -4.083367,-6.602556,-0.659912,-3.694595,-6.824220,-5.733570,-3.669111,-6.817616,-5.830043,-3.745603,-6.905004,-5.752575, + -3.720119,-6.898399,-5.849047,-4.205623,-7.632298,-5.920013,-4.180139,-7.625693,-6.016486,-4.256630,-7.713080,-5.939018, + -4.231146,-7.706476,-6.035490,-5.546252,-8.106381,-1.314772,-4.735376,-8.343871,-2.113038,-5.790341,-7.632480,-2.311606, + -5.653555,-8.197929,-4.239477,-5.613297,-8.187496,-4.391872,-5.704562,-8.278712,-4.258481,-5.664305,-8.268279,-4.410877, + -2.929955,-5.551042,-3.355828,-2.892748,-5.541399,-3.496677,-2.986065,-5.639906,-3.376734,-2.948858,-5.630263,-3.517583, + -6.341337,-5.577929,-2.169513,-6.315853,-5.571324,-2.265986,-6.253450,-5.637918,-2.150403,-6.227966,-5.631313,-2.246876, + -5.404222,-8.989145,-2.157779,-5.371821,-8.970618,-2.248635,-5.347349,-8.931860,-2.239517,-3.363815,-5.777132,-1.464395, + -3.342511,-5.703826,-1.332253,-3.313867,-5.698026,-1.445785,-1.545571,-6.527105,-3.104574,-1.583300,-6.586859,-3.118631, + -1.712470,-6.498693,-3.146717,-1.674740,-6.438938,-3.132659,-3.136159,-5.876724,-1.421654,-3.173889,-5.936478,-1.435712, + -3.303058,-5.848311,-1.463797,-3.265328,-5.788558,-1.449740,-3.704132,-5.053744,-3.573915,-3.741862,-5.113498,-3.587972, + -3.871031,-5.025331,-3.616057,-3.833301,-4.965577,-3.602000,-5.294721,-4.403363,-1.890995,-5.332451,-4.463117,-1.905052, + -5.461620,-4.374950,-1.933138,-5.423890,-4.315197,-1.919080,-2.865968,-5.625847,-3.391671,-2.903697,-5.685601,-3.405728, + -3.032866,-5.597435,-3.433814,-2.995136,-5.537680,-3.419756,-4.129328,-5.198821,-1.637601,-4.167057,-5.258575,-1.651659, + -4.296227,-5.170409,-1.679744,-4.258496,-5.110655,-1.665687,-1.120966,-6.317434,-4.998408,-1.158695,-6.377188,-5.012466, + -1.287865,-6.289022,-5.040551,-1.250135,-6.229268,-5.026494,-2.733195,-5.686477,-3.387218,-2.770925,-5.746231,-3.401276, + -2.900094,-5.658065,-3.429361,-2.862364,-5.598310,-3.415303,-3.279528,-4.844073,-5.467749,-3.317257,-4.903828,-5.481807, + -3.446426,-4.815661,-5.509892,-3.408697,-4.755907,-5.495834,-4.652733,-4.401895,-3.800217,-4.737886,-4.303011,-3.757383, + -4.819632,-4.373482,-3.842360,-4.781902,-4.313727,-3.828303,-2.362849,-5.459518,-5.266551,-2.400578,-5.519272,-5.280609, + -2.529748,-5.431106,-5.308694,-2.492018,-5.371351,-5.294637,-3.577180,-5.124776,-3.566194,-3.614910,-5.184530,-3.580251, + -3.744079,-5.096364,-3.608337,-3.706349,-5.036610,-3.594279,-6.944759,-7.408322,-4.504655,-6.907030,-7.348567,-4.490597, + -6.777861,-7.436734,-4.462512,-6.815590,-7.496488,-4.476569,-6.360929,-8.337263,-2.425810,-6.323200,-8.277509,-2.411753, + -6.194031,-8.365675,-2.383667,-6.231760,-8.425429,-2.397725,-4.872790,-8.817776,-4.063726,-4.835061,-8.758021,-4.049669, + -4.705891,-8.846188,-4.021584,-4.743621,-8.905942,-4.035641,-4.160070,-9.849442,-1.914724,-4.122341,-9.789688,-1.900667, + -3.993171,-9.877855,-1.872581,-4.030901,-9.937610,-1.886639,-6.308794,-7.404444,-6.443975,-6.271065,-7.344689,-6.429918, + -6.141895,-7.432856,-6.401833,-6.179625,-7.492610,-6.415890,-5.821895,-8.127498,-4.440854,-5.784165,-8.067743,-4.426796, + -5.654996,-8.155910,-4.398711,-5.692725,-8.215664,-4.412768,-4.349777,-8.716951,-6.034326,-4.312047,-8.657198,-6.020268, + -4.182878,-8.745363,-5.992183,-4.220607,-8.805119,-6.006240,-3.729257,-9.581230,-3.864468,-3.725544,-9.549297,-3.853804, + -3.559297,-9.604545,-3.820404,-3.600088,-9.669396,-3.836383,-5.381025,-8.363766,-4.770147,-5.177379,-8.505132,-4.716310, + -5.390791,-8.379387,-4.774264,-5.190331,-8.525930,-4.721721,-5.006245,-8.458630,-5.300715,-5.230630,-8.324812,-5.326479, + -5.240397,-8.340433,-5.330596,-5.019198,-8.479427,-5.306126,-4.926682,-8.692723,-4.606386,-4.888883,-8.632952,-4.592594, + -4.770640,-8.629634,-5.323227,-4.732841,-8.569862,-5.309435,-5.409638,-8.277504,-4.705823,-5.447437,-8.337276,-4.719615, + -5.216526,-8.245728,-5.388558,-5.254325,-8.305500,-5.402349,-5.019218,-8.466455,-5.308187,-5.199594,-8.539853,-4.733510, + -4.825448,-8.599103,-5.265802,-4.835093,-8.614682,-5.270342,-5.032041,-8.487164,-5.314222,-5.175926,-8.501992,-4.723516, + -4.956863,-8.657739,-4.664110,-4.966509,-8.673318,-4.668650,-6.204043,-6.651653,-4.956979,-6.339256,-6.862456,-4.997408, + -6.219271,-6.641152,-4.960750,-6.359540,-6.848545,-5.002380,-6.177418,-6.838302,-5.585799,-6.056008,-6.616817,-5.514216, + -6.071236,-6.606317,-5.517987,-6.197701,-6.824391,-5.590770,-6.526873,-7.135924,-5.009149,-6.468228,-7.175887,-4.996678, + -6.325919,-7.055205,-5.712919,-6.267275,-7.095167,-5.700449,-6.132797,-6.644646,-4.871702,-6.191442,-6.604684,-4.884172, + -5.966305,-6.610066,-5.561277,-6.024949,-6.570104,-5.573747,-6.184597,-6.823658,-5.590202,-6.371687,-6.836069,-5.013124, + -6.309836,-7.021413,-5.636545,-6.324938,-7.010892,-5.640739,-6.204673,-6.809672,-5.595778,-6.334785,-6.861523,-5.003969, + -6.484114,-7.088774,-5.046772,-6.499215,-7.078253,-5.050967,-4.949341,-5.267583,-6.058092,-4.308300,-4.254731,-5.823301, + -4.322465,-4.245064,-5.826381,-4.963432,-5.257966,-6.061155,-4.955553,-5.199255,-6.331866,-4.311676,-4.185668,-6.107811, + -4.327605,-4.176457,-6.104209,-4.972044,-5.190259,-6.325844,-4.643495,-4.752532,-5.945926,-4.629405,-4.762150,-5.942862, + -4.644053,-4.682738,-6.241101,-4.627563,-4.691733,-6.247124,-5.587516,-6.275758,-6.287918,-5.626177,-6.215855,-6.459027, + -4.668356,-4.699583,-6.104272,-5.601606,-6.266140,-6.290982,-5.593751,-6.212708,-6.578154,-4.347251,-4.192164,-5.984711, + -4.987507,-5.204813,-6.222478,-5.613882,-6.199553,-6.588371,-5.283580,-5.763733,-6.176464,-5.269490,-5.773351,-6.173400, + -5.287902,-5.694914,-6.457391,-5.271412,-5.703910,-6.463414,-6.239885,-7.306143,-6.525649,-4.507803,-4.445873,-6.044492, + -5.944978,-6.720018,-6.577067,-6.253902,-7.296576,-6.528697,-6.243311,-7.237092,-6.809972,-6.275692,-7.242761,-6.698963, + -5.306869,-5.710376,-6.340763,-6.260363,-7.228311,-6.801529,-5.919844,-6.768882,-6.405578,-5.905754,-6.778499,-6.402514, + -5.949326,-6.715131,-6.615072,-5.933852,-6.723572,-6.620723,-4.482980,-4.498797,-5.886153,-4.465656,-4.424369,-6.249024, + -4.468852,-4.508440,-5.883081,-4.449446,-4.433472,-6.253837,-4.789957,-5.015859,-6.002643,-4.773390,-4.941627,-6.362648, + -4.804010,-5.006267,-6.005698,-4.790161,-4.932739,-6.355414,-5.123019,-5.509926,-6.116674,-5.107577,-5.435985,-6.472421, + -5.108891,-5.519568,-6.113603,-5.091367,-5.445088,-6.477232,-5.432566,-6.031048,-6.234120,-5.417935,-5.957318,-6.586794, + -5.446619,-6.021456,-6.237176,-5.434711,-5.948431,-6.579542,-5.747395,-6.498286,-6.347763,-5.764574,-6.455562,-6.648538, + -5.733267,-6.507929,-6.344691,-5.749364,-6.464103,-6.653053,-6.067596,-7.037101,-6.471740,-6.063704,-6.956742,-6.757138, + -6.081650,-7.027509,-6.474796,-6.079444,-6.948404,-6.750335,-4.828908,-4.953292,-6.164053,-5.146271,-5.456594,-6.280965, + -5.469945,-5.968074,-6.401483,-5.778079,-6.458279,-6.521324,-6.100085,-6.967970,-6.643785,-5.002208,-5.196414,-6.218722, + -4.362196,-4.183760,-5.980330,-4.683227,-4.691228,-6.099874,-5.646560,-6.206310,-6.458073,-5.321401,-5.701933,-6.337648, + -6.289811,-7.234281,-6.697117,-5.959787,-6.713673,-6.575549,-4.522712,-4.437493,-6.040102,-4.843742,-4.944963,-6.159647, + -5.160839,-5.448126,-6.277859,-5.484439,-5.959657,-6.398360,-5.794936,-6.455090,-6.520563,-6.112432,-6.957812,-6.641355, + -6.223572,-7.218092,-6.856368,-6.193253,-7.305541,-6.566026,-6.220553,-7.348778,-6.576198,-6.250872,-7.261329,-6.866539, + -6.315352,-7.170117,-6.813963,-6.262570,-7.282565,-6.477646,-6.289870,-7.325802,-6.487817,-6.342652,-7.213354,-6.824134, + -5.580493,-6.199618,-6.616766,-5.550174,-6.287066,-6.326425,-5.577474,-6.330303,-6.336596,-5.607793,-6.242855,-6.626938, + -5.672273,-6.151643,-6.574361,-5.619491,-6.264091,-6.238044,-5.646791,-6.307327,-6.248216,-5.699573,-6.194880,-6.584533, + -4.280582,-4.140890,-6.132440,-4.250263,-4.228338,-5.842098,-4.277563,-4.271574,-5.852270,-4.307883,-4.184126,-6.142611, + -4.372363,-4.092915,-6.090034,-4.319580,-4.205362,-5.753717,-4.346880,-4.248599,-5.763889,-4.399663,-4.136151,-6.100206, + -2.604603,-7.545604,-5.830240,-2.581242,-7.533676,-5.926516,-2.505112,-7.623686,-5.791508,-2.463916,-7.628288,-5.882512, + -4.926557,-5.163950,-6.373120,-4.896238,-5.251398,-6.082778,-4.923538,-5.294635,-6.092950,-4.953857,-5.207187,-6.383291, + -5.018337,-5.115974,-6.330715,-4.965555,-5.228422,-5.994398,-4.992855,-5.271659,-6.004569,-5.045637,-5.159211,-6.340887, + -4.633440,-7.997035,-8.182507,-4.698535,-7.952323,-8.197850,-4.647528,-7.871540,-8.178845,-4.582432,-7.916252,-8.163502, + -5.189728,-8.141507,-6.269208,-5.254824,-8.096795,-6.284552,-5.203816,-8.016012,-6.265547,-5.138721,-8.060724,-6.250203, + -5.056641,-8.054704,-6.914894,-5.032689,-8.018567,-6.906948,-5.015977,-8.051091,-6.813550,-5.039929,-8.087228,-6.821496, + -5.737099,-7.739313,-6.387392,-5.713146,-7.703176,-6.379446,-5.674705,-7.745945,-6.300820,-5.698657,-7.782082,-6.308767, + -2.639792,-4.839603,-7.439704,-2.704888,-4.794891,-7.455048,-2.653881,-4.714108,-7.436043,-2.588785,-4.758820,-7.420699, + -3.196081,-4.984076,-5.526405,-3.261177,-4.939363,-5.541749,-3.210169,-4.858580,-5.522744,-3.145073,-4.903292,-5.507401, + -3.062994,-4.897272,-6.172091,-3.039042,-4.861135,-6.164145,-3.022330,-4.893659,-6.070747,-3.046282,-4.929796,-6.078694, + -3.743452,-4.581881,-5.644589,-3.719499,-4.545744,-5.636643,-3.611901,-4.620549,-5.611847,-3.655004,-4.647815,-5.604887, + -0.650173,-6.216221,-7.011166,-0.715269,-6.171509,-7.026510,-0.664261,-6.090726,-7.007505,-0.599166,-6.135438,-6.992162, + -1.138530,-6.407062,-5.083097,-1.203626,-6.362350,-5.098441,-1.152618,-6.281567,-5.079436,-1.087522,-6.326278,-5.064092, + -1.005443,-6.320258,-5.728783,-0.981490,-6.284122,-5.720837,-1.014695,-6.293522,-5.588586,-1.040269,-6.328908,-5.595270, + -1.685900,-6.004867,-5.201281,-1.661948,-5.968730,-5.193335,-1.554350,-6.043535,-5.168539,-1.597453,-6.070801,-5.161579, + -2.656312,-9.380404,-7.757730,-2.721407,-9.335691,-7.773075,-2.670400,-9.254909,-7.754070,-2.605305,-9.299621,-7.738726, + -3.129257,-9.546837,-5.823919,-3.194353,-9.502125,-5.839263,-3.143346,-9.421342,-5.820259,-3.078250,-9.466054,-5.804915, + -2.992009,-9.453443,-6.468055,-2.968057,-9.417306,-6.460109,-3.001262,-9.426707,-6.327858,-3.026835,-9.462092,-6.334542, + -3.676628,-9.144643,-5.942104,-3.652676,-9.108505,-5.934157,-3.545077,-9.183311,-5.909361,-3.588180,-9.210576,-5.902402, + -2.896667,-9.385794,-7.014549,-2.831572,-9.430506,-6.999205,-2.845660,-9.305012,-6.995544,-2.780564,-9.349723,-6.980201, + -6.617439,-7.004831,-7.012933,-6.698342,-7.087539,-6.779750,-6.270086,-7.268684,-6.939126,-6.279866,-7.284298,-6.943153, + -6.642094,-7.044046,-7.022628,-6.662852,-7.031176,-6.766051,-6.333809,-7.285277,-6.697830,-6.343589,-7.300892,-6.701857, + -6.661970,-7.066277,-6.697050,-6.243999,-7.360984,-6.603735,-6.261215,-7.387715,-6.609183,-6.689270,-7.109513,-6.707222, + -6.689517,-7.069734,-6.608419,-6.284698,-7.373260,-6.522816,-6.301914,-7.399991,-6.528263,-6.716817,-7.112970,-6.618590, + -6.368868,-7.312294,-6.556056,-6.320453,-7.305372,-6.634926,-6.386084,-7.339025,-6.561503,-6.337668,-7.332104,-6.640374, + -6.471068,-7.152259,-7.007776,-6.523353,-7.157174,-6.725656,-6.540772,-7.184903,-6.732580,-6.459538,-7.133850,-7.003028, + -6.641896,-7.098593,-6.772250,-6.640004,-7.081523,-6.770292,-6.633072,-7.094217,-6.761749,-6.666986,-7.105095,-6.677271, + -6.665094,-7.088026,-6.675313,-6.658162,-7.100719,-6.666770,-6.485916,-7.199055,-6.737782,-6.470908,-7.201644,-6.726267, + -6.474581,-7.208147,-6.727945,-6.511006,-7.205557,-6.642803,-6.495997,-7.208147,-6.631287,-6.499671,-7.214649,-6.632966, + -6.196982,-7.348799,-6.781721,-6.216603,-7.379873,-6.789031,-6.195850,-7.346145,-6.796042,-6.215471,-7.377219,-6.803352, + -6.484397,-7.189610,-6.668189,-6.512631,-7.241711,-6.600586,-6.489171,-7.204556,-6.591845,-6.507857,-7.226765,-6.676930, + -3.701335,-5.494020,-6.184867,-3.674191,-5.512547,-6.178965,-3.703113,-5.559300,-6.192716,-3.730257,-5.540772,-6.198618, + -3.506144,-5.482690,-7.047014,-3.479000,-5.501218,-7.041112,-3.443252,-5.445221,-7.029734,-3.470396,-5.426693,-7.035636, + -4.112286,-6.144862,-6.337981,-4.085142,-6.163390,-6.332079,-4.114064,-6.210143,-6.345830,-4.141208,-6.191615,-6.351732, + -3.917095,-6.133533,-7.200129,-3.889951,-6.152061,-7.194226,-3.854203,-6.096064,-7.182848,-3.881347,-6.077536,-7.188750, + -4.626263,-7.993143,-7.816935,-4.580315,-7.920329,-7.799669,-4.489040,-8.000251,-7.704922,-4.534987,-8.073065,-7.722188, + -4.992368,-8.051493,-6.635541,-4.946421,-7.978679,-6.618275,-4.786572,-8.046939,-6.757150,-4.832519,-8.119752,-6.774415, + -3.456997,-8.808862,-7.487798,-3.411051,-8.736048,-7.470532,-3.277312,-8.809711,-7.516354,-3.323259,-8.882525,-7.533620, + -3.667920,-8.914665,-6.521194,-3.621973,-8.841851,-6.503929,-3.543535,-8.936237,-6.313242,-3.589482,-9.009051,-6.330508, + -4.726859,-8.082043,-7.109538,-4.709374,-8.054352,-7.103024,-4.720585,-8.060738,-7.045791,-4.738070,-8.088428,-7.052305, + -3.587594,-8.873701,-6.802155,-3.570110,-8.846010,-6.795641,-3.551508,-8.844669,-6.851266,-3.568992,-8.872361,-6.857780, + -4.243411,-8.498343,-6.603107,-4.225927,-8.470652,-6.596593,-4.179199,-8.501872,-6.589297,-4.196684,-8.529563,-6.595812, + -3.925279,-8.447848,-7.606909,-3.907794,-8.420157,-7.600395,-3.959208,-8.384773,-7.612809,-3.976692,-8.412464,-7.619324, + -4.900722,-8.037157,-6.745171,-3.578631,-8.938895,-6.460569,-3.368826,-8.815134,-7.485061,-4.575081,-7.991498,-7.748575, + -4.596875,-8.257080,-6.679962,-4.579391,-8.229389,-6.673448,-4.532663,-8.260610,-6.666152,-4.550148,-8.288301,-6.672666, + -4.259052,-8.220026,-7.679482,-4.241569,-8.192335,-7.672968,-4.292982,-8.156952,-7.685382,-4.310466,-8.184643,-7.691897, + -3.958878,-8.692554,-6.541241,-3.941394,-8.664864,-6.534727,-3.894667,-8.696084,-6.527431,-3.912151,-8.723775,-6.533945, + -3.656597,-8.631241,-7.548489,-3.639112,-8.603550,-7.541975,-3.690526,-8.568167,-7.554389,-3.708010,-8.595858,-7.560904, + -4.635531,-8.058374,-7.455265,-4.618047,-8.030684,-7.448750,-4.629258,-8.037069,-7.391518,-4.646742,-8.064760,-7.398032, + -3.496267,-8.850033,-7.147882,-3.478783,-8.822342,-7.141367,-3.460181,-8.821001,-7.196993,-3.477664,-8.848692,-7.203507, + 10.850982,1.690339,1.996734,9.952743,-0.128563,1.571209,8.175515,0.848961,1.144335,9.073754,2.667863,1.569859, + 10.189845,0.027392,0.664615,9.340713,0.149446,1.418888,8.742011,0.478748,1.275085,11.032366,1.706561,1.002132, + 9.685784,2.389854,1.722180,10.284486,2.060552,1.865983,11.825592,1.891165,-1.932887,10.942799,0.131731,-2.286538, + 8.566552,0.930224,0.225085,9.409073,2.609393,0.562603,10.104866,2.832942,-2.322961,9.222073,1.073509,-2.676612, + 10.557302,1.095649,1.857609,10.246484,0.466252,1.710364,8.469256,1.443776,1.283489,8.780075,2.073174,1.430734, + 8.834008,0.665040,1.318667,8.436316,0.930977,1.227425,10.073242,0.561540,1.668753,9.867060,0.144028,1.571077, + 8.953317,1.977886,1.472345,9.159437,2.395272,1.569991,10.192488,1.874260,1.822401,10.590181,1.608323,1.913643, + 9.432711,0.335737,1.462470,9.593786,2.203562,1.678598,10.384061,1.190936,1.815998,8.642498,1.348489,1.325100, + 9.079706,1.972706,1.040478,10.185781,0.607398,1.301756,8.985833,0.723391,0.948769,8.569145,0.955141,0.835945, + 9.969483,0.176311,1.215106,9.295948,2.403682,1.127105,10.279598,1.856602,1.393443,10.696286,1.624852,1.506267, + 9.552795,0.408062,1.102282,9.712636,2.171931,1.239929,10.480044,1.193875,1.419639,8.785442,1.386228,0.922594, + 9.220610,2.642186,1.127890,8.337816,0.882752,0.774240,10.038702,-0.063235,1.234779,10.921495,1.696199,1.588430, + 10.354534,2.011528,1.434917,9.787572,2.326857,1.281404,8.904778,0.567423,0.927753,9.471741,0.252094,1.081266, + 10.332994,0.523298,1.352674,10.627259,1.109776,1.470557,8.926373,2.055763,1.010018,8.632109,1.469285,0.892134, + 11.291048,1.771373,-0.352150,9.776137,2.600505,-0.695567,8.995236,1.044146,-1.008400,10.510147,0.215014,-0.664982, + 10.147219,2.950739,-2.399228,9.364315,2.695242,0.644418,9.531715,2.598543,0.707631,10.329341,2.851061,-2.357943, + 9.273779,2.514801,0.608149,10.052355,2.761672,-2.437231,9.749928,2.699284,-0.688448,9.910267,2.611528,-0.652101, + 9.666013,2.532040,-0.722065,11.892509,1.937345,-2.008325,11.060431,1.720086,1.024948,10.965020,1.540850,1.013086, + 11.799074,1.751125,-2.045756,10.883959,1.816671,0.984944,11.707603,2.038547,-2.050242,11.395255,1.818263,-0.314889, + 11.312604,1.653538,-0.348000,11.232465,1.907361,-0.351793,10.999497,0.083197,-2.370985,10.179438,-0.055079,0.666839, + 9.999443,0.038356,0.651300,10.817375,0.182876,-2.412271,10.269974,0.125362,0.703108,11.094361,0.272263,-2.332982, + 10.514597,0.120179,-0.663602,10.354259,0.207935,-0.699949,10.598512,0.287423,-0.629985,9.202733,1.062786,-2.778786, + 8.468900,0.911031,0.243319,8.558014,1.088635,0.279018,9.296169,1.249006,-2.741355,8.645371,0.814445,0.283324, + 9.387640,0.961583,-2.736869,8.909398,1.038801,-1.024973,8.992050,1.203527,-0.991862,9.072188,0.949703,-0.988070, + 11.141753,1.754511,0.986172,10.715080,1.563883,0.840346,11.108624,1.745925,1.111589,9.386093,2.735206,0.556528, + 9.422456,2.290344,0.535678,9.353207,2.726683,0.681026,10.104298,1.881502,0.694279,10.247822,2.215805,0.775145, + 10.214812,2.207250,0.900102,8.466185,0.901394,0.150276,8.857311,1.043130,0.313945,8.429797,0.894602,0.274896, + 10.198215,-0.083755,0.661064,10.138916,0.312800,0.665362,10.162095,-0.090497,0.784773,9.460071,0.722305,0.495985, + 9.336156,0.435464,0.444171,9.299902,0.428697,0.568336,10.636754,0.827838,0.786050,10.421894,0.960138,0.656192, + 10.600500,0.821071,0.910215,8.898333,1.770351,0.488921,9.165881,1.653183,0.417312,8.931342,1.778906,0.363963, + 11.370080,1.803809,-0.395067,10.994572,1.630729,-0.526177,11.336950,1.795223,-0.269651,9.757524,2.678249,-0.660415, + 9.818845,2.291462,-0.804465,9.790411,2.686772,-0.784913,8.950442,1.044539,-1.085639,9.312497,1.177399,-1.001550, + 8.914468,1.037521,-0.960924,10.525785,0.160694,-0.680600,10.477046,0.512882,-0.676549,10.490075,0.153727,-0.556798, + 9.317755,1.842656,-0.840263,9.588786,1.722666,-0.911146,9.350764,1.851211,-0.965222,10.323512,2.357724,-0.605796, + 10.228781,2.409572,-0.627271,10.705385,2.575973,-2.283547,10.806580,2.520588,-2.260607,10.881198,2.052495,-0.479373, + 10.786542,2.104302,-0.500831,11.248831,2.283001,-2.182558,11.351140,2.227970,-2.164161,10.297454,2.305806,-0.616234, + 10.202724,2.357654,-0.637708,10.677569,2.520392,-2.295072,10.778763,2.465007,-2.272132,10.855141,2.000576,-0.489811, + 10.760485,2.052383,-0.511269,11.221015,2.227420,-2.194083,11.323323,2.172389,-2.175686,9.607306,2.529266,0.633909, + 9.505366,2.585060,0.610800,10.511624,2.223464,-0.520100,10.605661,2.171997,-0.498783,9.579399,2.473661,0.622730, + 9.477458,2.529455,0.599621,10.485659,2.171570,-0.530884,10.579696,2.120102,-0.509567,10.924170,1.793335,1.008021, + 10.822229,1.849129,0.984912,10.527540,2.246795,-0.510953,10.621577,2.195326,-0.489635,10.896261,1.737729,0.996842, + 10.794321,1.793523,0.973733,10.501575,2.194900,-0.521737,10.595612,2.143432,-0.500419,8.630349,1.080524,0.234597, + 8.578050,0.976291,0.213646,9.355299,1.761279,-0.899254,9.403772,1.857890,-0.879835,8.684731,1.050752,0.246924, + 8.632431,0.946519,0.225973,9.405926,1.733637,-0.888145,9.454400,1.830247,-0.868726,9.348609,2.573534,0.600587, + 9.296309,2.469301,0.579636,9.331493,1.778706,-0.901003,9.379967,1.875316,-0.881584,9.402990,2.543762,0.612915, + 9.350691,2.439528,0.591963,9.382120,1.751063,-0.889894,9.430594,1.847673,-0.870475,10.929793,1.421669,1.001400, + 10.990461,1.564503,0.987979,10.591259,0.364749,-0.550756,10.534265,0.231969,-0.535676,10.875412,1.451441,0.989073, + 10.936079,1.594275,0.975651,10.540814,0.392439,-0.562558,10.483820,0.259659,-0.547477,9.016589,2.430203,1.377442, + 8.930099,2.256288,1.339455,9.070099,2.434961,1.238157,8.975249,2.247996,1.205165,8.996570,2.441704,1.370060, + 8.910079,2.267789,1.332074,9.050079,2.446462,1.230775,8.955231,2.259497,1.197783,9.002214,2.127147,0.972024, + 9.081594,2.301519,1.021656,8.940584,2.115694,1.107510,9.029594,2.302735,1.153701,8.982357,2.138525,0.964039, + 9.061737,2.312898,1.013671,8.920727,2.127073,1.099526,9.009738,2.314114,1.145716,8.818885,1.633038,0.664935, + 8.891756,1.777224,0.692986,8.772330,1.633491,0.779520,8.853443,1.787615,0.803662,8.802535,1.642643,0.658324, + 8.875406,1.786829,0.686375,8.755980,1.643096,0.772909,8.837093,1.797220,0.797051,9.562824,2.480869,1.027433, + 9.733578,2.387314,1.062943,9.591669,2.479536,0.880687,9.773538,2.380305,0.926715,9.548672,2.453378,1.023613, + 9.719424,2.359822,1.059124,9.577516,2.452044,0.876867,9.759384,2.352813,0.922895,9.674638,2.426424,1.166571, + 9.500120,2.516982,1.143901,9.651919,2.417669,1.313951,9.466637,2.516086,1.281923,9.660745,2.398865,1.162174, + 9.486228,2.489423,1.139503,9.638026,2.390110,1.309554,9.452744,2.488527,1.277526,9.500343,2.530334,0.956168, + 9.359586,2.607699,0.923178,9.471655,2.528002,1.076525,9.322784,2.611778,1.034865,9.488667,2.507597,0.952453, + 9.347909,2.584962,0.919463,9.459978,2.505264,1.072810,9.311108,2.589041,1.031150,8.866400,2.465105,2.469332, + 9.017800,2.377648,2.526503,8.784517,2.301910,2.436530,9.331409,2.401633,1.101363,9.469795,2.325891,1.132734, + 9.258983,2.257286,1.072349,10.400398,1.583156,2.813491,10.314107,1.421051,2.802763,10.240794,1.670509,2.777311, + 10.736101,1.637248,1.481975,10.664765,1.495075,1.453398,10.595598,1.714148,1.450125,9.603612,-0.022336,2.489610, + 9.440823,0.062169,2.475557,9.685494,0.140858,2.522413,9.976013,0.171647,1.181005,9.837626,0.247389,1.149634, + 10.048440,0.315994,1.210019,8.056571,0.851432,2.106571,8.137167,1.012061,2.138859,8.216175,0.764078,2.142752, + 8.626328,0.973765,0.733790,8.697663,1.115939,0.762368,8.766830,0.896866,0.765641,10.733582,1.694018,2.733065, + 10.715656,1.689373,2.800930,8.844028,2.745971,2.288076,8.826233,2.741359,2.355444,9.772830,2.189137,2.509670, + 9.754969,2.184509,2.577286,7.851291,0.775540,1.870534,7.829858,0.772818,1.937574,9.726956,-0.278219,2.359182, + 9.705681,-0.280921,2.425730,8.798037,0.278481,2.138535,8.776683,0.275769,2.205330,10.190884,0.698844,2.519800, + 10.169530,0.696133,2.586594,8.336941,1.714228,2.152371,8.885331,1.162102,3.736465,8.354803,1.718857,2.084754, + 9.520715,0.946715,3.094453,8.618750,1.459630,2.809510,8.842221,0.642429,2.755918,9.297539,1.618452,3.121992, + 8.885859,1.895999,2.999754,9.365191,0.362667,2.924304,8.259144,0.927683,2.563380,9.677052,1.387390,3.239142, + 9.090864,1.168541,2.976424,8.169044,1.753631,1.811841,9.178592,1.149172,2.847809,8.130879,1.914389,1.971516, + 9.758444,2.427871,2.436607,9.904555,2.370228,2.471258,9.777949,2.383140,2.279948,8.076639,1.764968,1.946958, + 9.912170,2.322631,2.333481,9.120130,1.261036,2.840023,9.023111,1.237342,2.804325,9.211097,1.164126,2.695730, + 8.750747,0.035688,1.996267,8.604635,0.093330,1.961617,8.809299,0.100648,1.857433,9.079103,1.249052,2.627858, + 8.664153,0.158325,1.845259,8.219299,1.894969,1.857013,9.039026,1.101052,2.799199,9.155453,1.263970,2.687867, + 10.414522,0.661076,2.510899,10.360281,0.511655,2.486341,10.400175,0.692643,2.350521,9.086658,1.122332,2.621178, + 10.338995,0.548473,2.346709,7.907679,0.681408,1.657530,9.133961,1.201076,2.976497,7.752141,0.794858,1.782960, + 8.757039,2.754877,2.259204,8.898059,2.820033,2.300916,8.820092,2.711286,2.114126,7.816864,0.647775,1.789987, + 8.952178,2.769292,2.175209,9.016676,1.238892,2.948104,8.966512,1.149680,2.920297,9.165489,1.209437,2.823709, + 9.838012,-0.351844,2.319033,9.696993,-0.417001,2.277321,9.853017,-0.288024,2.168617,9.020188,1.167941,2.743666, + 9.710006,-0.348862,2.148893,7.843091,0.823357,1.672406,9.070978,1.063242,2.941975,9.058401,1.240661,2.797559, + 10.786947,1.805244,2.703415,10.851670,1.658161,2.710443,10.774191,1.791841,2.540378,9.112287,1.082287,2.762131, + 10.827854,1.647061,2.566861,9.214402,1.568761,-0.918441,9.165801,1.471899,-0.937911,9.482371,1.663245,-2.631098, + 9.534287,1.766715,-2.610301,9.500514,2.138993,-0.803823,9.451952,2.042208,-0.823277,9.763872,2.214691,-2.541496, + 9.816942,2.318389,-2.525239,9.265179,1.540963,-0.906931,9.216578,1.444101,-0.926401,9.536844,1.633497,-2.619117, + 9.588760,1.736967,-2.598319,9.551291,2.111195,-0.792313,9.502728,2.014410,-0.811767,9.818346,2.184943,-2.529514, + 9.871416,2.288640,-2.513258,10.873847,0.889153,-0.557022,10.922448,0.986014,-0.537552,11.460383,1.036900,-2.183177, + 11.408467,0.933430,-2.203975,10.823071,0.916951,-0.568532,10.871672,1.013813,-0.549062,11.406094,1.066697,-2.195851, + 11.354177,0.963226,-2.216649,9.674372,0.669328,-0.883366,9.769103,0.617480,-0.861892,10.118870,0.567334,-2.592811, + 10.017675,0.622719,-2.615751,9.700430,0.721247,-0.872928,9.795160,0.669399,-0.851454,10.146869,0.622962,-2.581979, + 10.045675,0.678348,-2.604918,9.931900,0.097795,0.645405,10.073545,0.033295,0.639180,9.150290,0.941619,-0.968742, + 9.013546,0.990260,-0.962308,9.964393,0.150627,0.657605,10.106037,0.086126,0.651380,9.176316,0.993315,-0.958700, + 9.039572,1.041957,-0.952266,10.137416,0.191366,1.538815,10.062100,0.021380,1.502751,10.150573,0.182146,1.389770, + 10.084729,0.025545,1.362709,10.116162,0.202615,1.535772,10.029161,0.028970,1.497712,10.129319,0.193394,1.386727, + 10.051791,0.033135,1.357669,10.194086,0.273859,1.501286,10.266796,0.418139,1.529267,10.167033,0.263391,1.621519, + 10.246967,0.418206,1.645163,10.176625,0.283302,1.498246,10.249336,0.427583,1.526227,10.149572,0.272835,1.618479, + 10.229507,0.427650,1.642124,-11.601468,-4.717895,-7.790322,-13.609138,-7.985400,-8.544364,-13.688942,-7.932338,-8.561812, + -11.681273,-4.664834,-7.807771,-11.626952,-4.724500,-7.693850,-13.634622,-7.992004,-8.447891,-13.714426,-7.938942,-8.465341, + -11.706757,-4.671438,-7.711298,-13.960227,-7.030757,-10.604162,-15.719073,-5.861314,-10.988720,-13.916389,-2.969926,-10.314576, + -12.164039,-4.107446,-9.929548,-14.497412,-7.191854,-8.637146,-16.256258,-6.022411,-9.021704,-14.428089,-3.047053,-8.335078, + -12.669243,-4.216496,-7.950521,-13.629204,-7.965618,-8.483627,-11.641300,-4.730290,-7.737010,-14.018554,-8.189806,-6.475488, + -17.475288,-5.891449,-7.231275,-15.467957,-2.624501,-6.477360,-12.011223,-4.922858,-5.721573,-12.529365,-6.448540,-8.110812, + -15.977604,-4.163413,-8.831890,-15.927567,-4.081977,-8.813097,-12.479327,-6.367103,-8.092019,-12.558372,-6.456058,-8.001005, + -16.003088,-4.170018,-8.735417,-15.953051,-4.088581,-8.716624,-12.508333,-6.374620,-7.982212,-12.028989,-5.634174,-7.922881, + -15.477228,-3.349048,-8.643959,-15.427191,-3.267611,-8.625166,-11.978951,-5.552738,-7.904088,-12.057996,-5.641692,-7.813073, + -15.502712,-3.355652,-8.547486,-15.452675,-3.274216,-8.528693,-12.007958,-5.560256,-7.794280,-11.537908,-4.901603,-7.743005, + -15.048845,-2.574789,-8.477791,-14.998808,-2.493352,-8.458998,-11.487870,-4.820167,-7.724212,-11.579461,-4.912373,-7.585702, + -15.086876,-2.584645,-8.333822,-15.036839,-2.503209,-8.315029,-11.529424,-4.830936,-7.566909,-13.029740,-7.262905,-8.298744, + -16.477980,-4.977778,-9.019821,-16.427942,-4.896342,-9.001028,-12.979703,-7.181469,-8.279951,-13.058747,-7.270423,-8.188936, + -16.503464,-4.984383,-8.923349,-16.453426,-4.902947,-8.904556,-13.008710,-7.188986,-8.170143,-13.468732,-8.075894,-8.460024, + -16.994286,-5.756801,-9.209541,-16.935616,-5.661315,-9.187507,-13.418694,-7.994458,-8.441231,-13.522294,-8.074669,-8.322723, + -17.029646,-5.765965,-9.075686,-16.970976,-5.670479,-9.053650,-13.472256,-7.993233,-8.303930,-11.537217,-4.823684,-7.694177, + -13.506509,-8.028728,-8.433806,-13.648142,-7.940407,-8.439425,-11.678850,-4.735363,-7.699797,-11.539723,-4.847601,-7.583861, + -13.509016,-8.052647,-8.323490,-13.659300,-7.952723,-8.356348,-11.690008,-4.747679,-7.616719,-14.851858,-2.602366,-8.399964, + -16.839880,-5.837893,-9.146627,-16.989882,-5.741831,-9.163507,-15.001860,-2.506304,-8.416845,-14.889042,-2.600676,-8.308287, + -16.877064,-5.836203,-9.054950,-16.999161,-5.755813,-9.078214,-15.011139,-2.520287,-8.331553,-12.872207,-6.596455,-6.052106, + -16.577433,-4.132878,-6.862224,-16.627470,-4.214315,-6.881017,-12.922244,-6.677892,-6.070899,-12.846308,-6.589743,-6.150146, + -16.564428,-4.129508,-6.911454,-16.614466,-4.210945,-6.930248,-12.896346,-6.671180,-6.168939,-12.378189,-5.786347,-5.848045, + -16.083414,-3.322771,-6.658163,-16.130474,-3.403034,-6.687006,-12.425249,-5.866611,-5.876887,-12.354355,-5.774796,-5.931683, + -16.063828,-3.312875,-6.717657,-16.110888,-3.393139,-6.746500,-12.401416,-5.855060,-5.960526,-11.908488,-5.045790,-5.744267, + -15.613714,-2.582213,-6.554385,-15.563677,-2.500777,-6.535592,-11.858450,-4.964354,-5.725473,-11.933972,-5.052395,-5.647794, + -15.639198,-2.588818,-6.457911,-15.589161,-2.507381,-6.439118,-11.883935,-4.970958,-5.629001,-13.411074,-7.490531,-6.306393, + -17.116301,-5.026955,-7.116510,-17.065262,-4.945320,-7.101692,-13.360035,-7.408896,-6.291574,-13.431496,-7.493230,-6.221191, + -17.136723,-5.029653,-7.031310,-17.085684,-4.948018,-7.016490,-13.380458,-7.411594,-6.206373,-13.909991,-8.303252,-6.495993, + -17.615217,-5.839675,-7.306110,-17.565180,-5.758239,-7.287317,-13.859953,-8.221815,-6.477200,-13.935475,-8.309856,-6.399520, + -17.640701,-5.846280,-7.209638,-17.590664,-5.764843,-7.190845,-13.885438,-8.228420,-6.380726,-11.973872,-4.922206,-5.717391, + -14.000970,-8.221331,-6.478730,-14.043146,-8.193288,-6.487952,-12.016048,-4.894164,-5.726613,-11.985446,-4.937384,-5.620804, + -14.012544,-8.236508,-6.382143,-14.068630,-8.199892,-6.391479,-12.041533,-4.900768,-5.630140,-15.450741,-2.610462,-6.477581, + -17.477839,-5.909586,-7.238920,-17.563919,-5.852353,-7.257740,-15.536820,-2.553229,-6.496401,-15.476225,-2.617067,-6.381108, + -17.503323,-5.916191,-7.142447,-17.595900,-5.858690,-7.145127,-15.568803,-2.559566,-6.383788,-16.721910,-6.623989,-6.062854, + -16.901011,-5.808202,-9.121056,-14.714579,-3.357042,-5.308939,-14.913107,-2.572874,-8.374437,-12.195568,-4.869315,-5.709335, + -15.459641,-2.703352,-6.425142,-15.412485,-2.626605,-6.407431,-12.152525,-4.799262,-5.693170,-11.949445,-5.033002,-5.655341, + -15.632372,-2.588984,-6.460830,-15.585217,-2.512237,-6.443119,-11.906402,-4.962950,-5.639175,-14.726615,-3.295714,-5.194772, + -14.656067,-3.307507,-5.331507,-14.676578,-3.214278,-5.175979,-14.606030,-3.226070,-5.312714,-14.202019,-8.124464,-6.464742, + -17.461136,-5.956685,-7.178380,-17.415106,-5.881773,-7.161092,-14.157264,-8.051626,-6.447933,-13.946111,-8.294659,-6.408602, + -17.629738,-5.845051,-7.213215,-17.583708,-5.770139,-7.195928,-13.901357,-8.221821,-6.391793,-16.833424,-6.724561,-5.986049, + -16.749737,-6.714971,-6.117849,-16.770247,-6.621741,-5.962321,-16.699699,-6.633534,-6.099056,-16.811686,-6.744080,-6.053185, + -16.842993,-6.740524,-5.985234,-14.646623,-3.160933,-5.145173,-13.924587,-8.328687,-6.430033,-11.854588,-4.959745,-5.652581, + -13.921510,-8.339421,-6.391713,-11.851509,-4.970480,-5.614261,-17.723955,-5.817229,-7.196982,-15.653955,-2.448287,-6.419530, + -17.637249,-5.861833,-7.234559,-15.567248,-2.492891,-6.457107,-14.617260,-3.174489,-5.234639,-13.517282,-8.008309,-8.400577, + -14.949773,-2.589172,-8.397734,-11.570312,-4.836150,-7.658841,-16.896744,-5.761331,-9.139469,-11.600240,-4.903332,-7.630747, + -11.666149,-4.859509,-7.645158,-11.616112,-4.778073,-7.626365,-11.550202,-4.821895,-7.611954,-12.014138,-5.014430,-5.660056, + -12.080048,-4.970608,-5.674466,-12.030009,-4.889171,-5.655673,-11.964101,-4.932993,-5.641263,-12.290604,-6.026904,-7.890035, + -12.356512,-5.983082,-7.904445,-12.306475,-5.901646,-7.885652,-12.240566,-5.945468,-7.871242,-12.755213,-6.156666,-5.993883, + -12.821122,-6.112844,-6.008293,-12.771085,-6.031407,-5.989500,-12.705175,-6.075230,-5.975090,-12.836459,-6.915289,-8.095047, + -12.902369,-6.871467,-8.109458,-12.852331,-6.790030,-8.090665,-12.786422,-6.833853,-8.076254,-13.320257,-7.076280,-6.206102, + -13.386166,-7.032457,-6.220513,-13.336128,-6.951021,-6.201720,-13.270220,-6.994843,-6.187309,-13.535060,-8.052267,-8.357428, + -13.600969,-8.008444,-8.371839,-13.550932,-7.927008,-8.353045,-13.485023,-7.970830,-8.338634,-14.001388,-8.245928,-6.398014, + -14.067297,-8.202105,-6.412425,-14.024658,-8.132710,-6.396410,-13.958749,-8.176533,-6.382000,-13.585861,-3.471495,-8.057246, + -13.622873,-3.531732,-8.071147,-13.702678,-3.478671,-8.088596,-13.665666,-3.418433,-8.074695,-14.104095,-3.510165,-6.138226, + -14.141108,-3.570403,-6.152126,-14.220912,-3.517341,-6.169575,-14.183900,-3.457103,-6.155674,-12.720366,-4.040353,-7.896622, + -12.757378,-4.100591,-7.910523,-12.837183,-4.047529,-7.927972,-12.800171,-3.987291,-7.914071,-13.153945,-4.141912,-5.930483, + -13.190958,-4.202149,-5.944384,-13.270762,-4.149087,-5.961833,-13.233750,-4.088850,-5.947931,-14.780395,-7.200346,-8.628074, + -14.743382,-7.140108,-8.614173,-14.663578,-7.193170,-8.596725,-14.700590,-7.253407,-8.610625,-15.261540,-7.389094,-6.709530, + -15.224528,-7.328856,-6.695629,-15.144724,-7.381919,-6.678181,-15.181736,-7.442156,-6.692081,-15.625048,-6.626084,-8.867598, + -15.588035,-6.565847,-8.853696,-15.508230,-6.618909,-8.836247,-15.545242,-6.679146,-8.850149,-16.206009,-6.755875,-6.938776, + -16.168997,-6.695637,-6.924875,-16.089191,-6.748699,-6.907427,-16.126204,-6.808936,-6.921328,-16.922028,-5.697377,-9.090916, + -16.856117,-5.741199,-9.076505,-16.906155,-5.822636,-9.095298,-16.972065,-5.778813,-9.109709,-17.491146,-5.815112,-7.261479, + -17.425236,-5.858934,-7.247068,-17.475275,-5.940371,-7.265862,-17.541183,-5.896549,-7.280272,-16.212713,-4.542968,-8.824512, + -16.146805,-4.586791,-8.810101,-16.196842,-4.668227,-8.828894,-16.262753,-4.624404,-8.843305,-16.782566,-4.647435,-6.951374, + -16.716656,-4.691257,-6.936964,-16.766695,-4.772694,-6.955757,-16.832603,-4.728872,-6.970167,-15.666857,-3.654583,-8.619498, + -15.600948,-3.698406,-8.605087,-15.650986,-3.779843,-8.623880,-15.716894,-3.736020,-8.638291,-16.217522,-3.727823,-6.739154, + -16.151611,-3.771645,-6.724744,-16.201649,-3.853082,-6.743537,-16.267559,-3.809259,-6.757947,-14.987203,-2.548444,-8.364233, + -14.921293,-2.592267,-8.349823,-14.971331,-2.673704,-8.368616,-15.037240,-2.629881,-8.383026,-15.507890,-2.574530,-6.477596, + -15.441981,-2.618352,-6.463186,-15.492019,-2.699789,-6.481979,-15.557928,-2.655966,-6.496389,-11.204337,-4.660751,-9.666518, + -11.269942,-4.616857,-9.682052,-11.219904,-4.535420,-9.663259,-11.154300,-4.579315,-9.647725,-11.676845,-4.783931,-7.752988, + -11.742449,-4.740036,-7.768522,-11.692411,-4.658599,-7.749729,-11.626807,-4.702494,-7.734195,-11.786336,-5.714300,-9.892385, + -11.851940,-5.670405,-9.907920,-11.801903,-5.588969,-9.889127,-11.736299,-5.632864,-9.873592,-12.330083,-5.847081,-7.998332, + -12.395687,-5.803186,-8.013865,-12.345650,-5.721750,-7.995072,-12.280046,-5.765645,-7.979538,-12.442929,-6.782910,-10.138989, + -12.508533,-6.739016,-10.154523,-12.458496,-6.657579,-10.135730,-12.392891,-6.701474,-10.120196,-12.973885,-6.894873,-8.240130, + -13.039489,-6.850978,-8.255665,-12.989451,-6.769541,-8.236872,-12.923846,-6.813436,-8.221337,-13.100586,-7.853252,-10.385992, + -13.166190,-7.809358,-10.401526,-13.103361,-7.707102,-10.377929,-13.037756,-7.750997,-10.362395,-13.631541,-7.965214,-8.487134, + -13.697145,-7.921319,-8.502668,-13.647108,-7.839883,-8.483875,-13.581503,-7.883778,-8.468341,-12.528081,-4.101797,-7.992918, + -14.535750,-7.369302,-8.746961,-14.615556,-7.316239,-8.764409,-12.607886,-4.048736,-8.010367,-12.553565,-4.108402,-7.896446, + -14.561234,-7.375906,-8.650488,-14.641040,-7.322845,-8.667937,-12.633370,-4.055340,-7.913895,-13.543369,-3.424101,-8.226338, + -15.551039,-6.691605,-8.980381,-15.634158,-6.640827,-8.979110,-13.622120,-3.374743,-8.230541,-13.552334,-3.441234,-8.128225, + -15.560003,-6.708738,-8.882269,-15.643123,-6.657960,-8.880997,-13.631085,-3.391877,-8.132429,-11.546652,-4.720729,-8.381244, + -11.582115,-4.695984,-8.389772,-11.564287,-4.642949,-8.310034,-11.528824,-4.667694,-8.301504,-11.973123,-5.232085,-7.892256, + -12.008587,-5.207340,-7.900785,-11.990758,-5.154305,-7.821046,-11.955295,-5.179049,-7.812518,-12.187496,-5.802666,-8.601362, + -12.223025,-5.778028,-8.609916,-12.210664,-5.733890,-8.532230,-12.175135,-5.758528,-8.523677,-12.656247,-6.343875,-8.148825, + -12.691710,-6.319130,-8.157353,-12.673882,-6.266095,-8.077615,-12.638419,-6.290840,-8.069086,-12.805650,-6.816532,-8.857301, + -12.841113,-6.791787,-8.865829,-12.823285,-6.738752,-8.786091,-12.787821,-6.763497,-8.777562,-13.268365,-7.340102,-8.378724, + -13.303828,-7.315356,-8.387253,-13.286000,-7.262321,-8.307514,-13.250537,-7.287066,-8.298985,-13.483923,-7.822355,-9.105333, + -13.448039,-7.846991,-9.098395,-13.500974,-7.909124,-9.045234,-13.536858,-7.884488,-9.052172,-13.305457,-7.333049,-8.388040, + -13.269573,-7.357685,-8.381102,-13.322508,-7.419818,-8.327941,-13.358392,-7.395183,-8.334879,-12.831457,-6.754379,-8.841790, + -12.795573,-6.779015,-8.834852,-12.848509,-6.841148,-8.781691,-12.884393,-6.816513,-8.788629,-12.638324,-6.247282,-8.137477, + -12.602440,-6.271917,-8.130539,-12.655375,-6.334051,-8.077378,-12.691259,-6.309415,-8.084316,-12.192699,-5.713055,-8.596601, + -12.156750,-5.737584,-8.589640,-12.204219,-5.790821,-8.534425,-12.240168,-5.766292,-8.541388,-12.010218,-5.225030,-7.901572, + -11.974334,-5.249666,-7.894634,-12.027269,-5.311800,-7.841474,-12.063152,-5.287164,-7.848411,-11.577063,-4.704188,-8.407955, + -11.553543,-4.667747,-8.400103,-11.536527,-4.699782,-8.306591,-11.560045,-4.736223,-8.314444,-12.221635,-4.386715,-7.900029, + -12.198116,-4.350275,-7.892176,-12.159239,-4.392344,-7.813388,-12.182757,-4.428784,-7.821241,-13.518986,-7.874217,-9.118146, + -13.498060,-7.836114,-9.110865,-13.456812,-7.873997,-9.031163,-13.477737,-7.912100,-9.038445,-14.158005,-7.542192,-8.627567, + -14.137080,-7.504089,-8.620286,-14.095831,-7.541972,-8.540585,-14.116756,-7.580075,-8.547867,-14.344375,-3.343237,-6.206204, + -14.381387,-3.403475,-6.220105,-14.461192,-3.350413,-6.237554,-14.424179,-3.290176,-6.223653,-14.572149,-3.276760,-5.273696, + -14.609161,-3.336998,-5.287597,-14.688966,-3.283936,-5.305046,-14.651955,-3.223698,-5.291145,-16.468151,-6.586755,-6.989275, + -16.431139,-6.526517,-6.975374,-16.351334,-6.579579,-6.957926,-16.388348,-6.639817,-6.971827,-16.772972,-6.675671,-6.087758, + -16.735960,-6.615434,-6.073857,-16.656155,-6.668495,-6.056408,-16.693167,-6.728733,-6.070310,-13.464260,-3.926960,-6.020098, + -13.501272,-3.987197,-6.033999,-13.581077,-3.934135,-6.051448,-13.544065,-3.873898,-6.037547,-13.503755,-3.896139,-5.434383, + -13.540766,-3.956376,-5.448285,-13.620571,-3.903315,-5.465733,-13.583559,-3.843077,-5.451832,-15.574949,-7.179179,-6.800308, + -15.537937,-7.118941,-6.786407,-15.458132,-7.172003,-6.768958,-15.495144,-7.232241,-6.782859,-15.673756,-7.244889,-6.236870, + -15.636744,-7.184651,-6.222969,-15.556939,-7.237713,-6.205520,-15.593951,-7.297951,-6.219421,-13.066948,-3.894677,-7.341791, + -13.104540,-3.955038,-7.353414,-13.213405,-3.906702,-7.252326,-13.175812,-3.846341,-7.240704,-13.237302,-3.944907,-6.548586, + -13.274894,-4.005268,-6.560208,-13.325640,-3.947481,-6.696193,-13.288048,-3.887120,-6.684571,-13.532958,-3.608878,-7.318791, + -13.570550,-3.669238,-7.330414,-13.621296,-3.611451,-7.466398,-13.583704,-3.551090,-7.454776,-13.688033,-3.621172,-6.772024, + -13.725625,-3.681533,-6.783647,-13.834489,-3.633197,-6.682560,-13.796897,-3.572837,-6.670938,-13.194800,-3.904442,-6.987205, + -13.212221,-3.932414,-6.992591,-13.227129,-3.933645,-6.937976,-13.209708,-3.905673,-6.932590,-13.658621,-3.607194,-7.030741, + -13.676042,-3.635167,-7.036127,-13.664018,-3.632018,-7.091372,-13.646597,-3.604046,-7.085987,-13.478035,-3.780869,-6.697333, + -13.495456,-3.808841,-6.702720,-13.541347,-3.777932,-6.714813,-13.523926,-3.749960,-6.709427,-13.374693,-3.725691,-7.318164, + -13.392114,-3.753662,-7.323550,-13.345264,-3.784416,-7.315368,-13.327844,-3.756444,-7.309981,-13.275042,-3.928344,-6.653449, + -13.737939,-3.620171,-6.756718,-13.570343,-3.608111,-7.361441,-13.149326,-3.887645,-7.271448,-15.709581,-3.552461,-7.182757, + -15.768612,-3.513212,-7.195663,-12.716224,-5.068110,-10.172227,-12.376159,-4.513779,-10.041858,-12.805342,-4.607499,-8.363910, + -13.178658,-5.214208,-8.501474,-13.069856,-5.090187,-8.621960,-12.836843,-4.711487,-8.536061,-12.722294,-4.690555,-8.996316, + -12.941738,-5.048235,-9.080352,-12.956724,-5.038271,-9.083629,-12.737281,-4.680591,-8.999593,-12.851830,-4.701523,-8.539338, + -13.084842,-5.080223,-8.625237,-12.851262,-4.881632,-9.045046,-12.871961,-4.867869,-9.049572,-12.850350,-4.832167,-9.039839, + -12.829652,-4.845929,-9.035313,-12.956994,-4.887683,-8.579863,-12.977693,-4.873921,-8.584389,-13.000080,-4.909825,-8.591181, + -12.979382,-4.923587,-8.586655,-12.790051,-4.702637,-8.791265,-12.810750,-4.688874,-8.795790,-12.822348,-4.692816,-8.754732, + -12.801649,-4.706578,-8.750206,-13.014620,-5.053191,-8.830194,-13.035318,-5.039429,-8.834720,-13.025088,-5.037714,-8.876291, + -13.004390,-5.051476,-8.871766,-13.621769,-6.302376,-9.734332,-13.680800,-6.263126,-9.747239,-13.661889,-6.189756,-9.610618, + -13.602858,-6.229006,-9.597711,-13.834441,-6.359587,-8.952436,-13.893473,-6.320338,-8.965343,-13.812309,-6.230835,-9.064379, + -13.753279,-6.270084,-9.051473,-13.361663,-5.836457,-9.507122,-13.420693,-5.797208,-9.520029,-13.339531,-5.707705,-9.619064, + -13.280499,-5.746953,-9.606158,-13.502490,-5.861921,-8.957281,-13.561521,-5.822672,-8.970187,-13.542608,-5.749302,-8.833566, + -13.483578,-5.788551,-8.820660,-13.701213,-6.267705,-9.364308,-13.728568,-6.249517,-9.370289,-13.742088,-6.251783,-9.315347, + -13.714732,-6.269972,-9.309365,-13.433267,-5.811881,-9.203652,-13.460622,-5.793693,-9.209633,-13.445293,-5.788483,-9.263897, + -13.417938,-5.806672,-9.257915,-13.659708,-6.084927,-8.984324,-13.687063,-6.066738,-8.990306,-13.657476,-6.019287,-8.981330, + -13.630121,-6.037476,-8.975348,-13.470276,-5.996050,-9.580456,-13.497631,-5.977862,-9.586436,-13.531728,-6.034057,-9.601378, + -13.504373,-6.052246,-9.595398,-13.799087,-6.291941,-9.035316,-13.508039,-5.818957,-8.928140,-13.354591,-5.787944,-9.535649, + -13.635019,-6.245048,-9.643108,-13.428885,-7.754470,-7.693539,-13.487915,-7.715221,-7.706446,-13.473908,-7.667672,-7.625914, + -13.414877,-7.706921,-7.613007,-13.628275,-7.825743,-7.015150,-13.687305,-7.786494,-7.028056,-13.637120,-7.729568,-7.084479, + -13.578090,-7.768817,-7.071573,-13.164088,-7.298759,-7.518816,-13.223119,-7.259509,-7.531722,-13.172935,-7.202584,-7.588145, + -13.113903,-7.241833,-7.575238,-13.301718,-7.319018,-6.967772,-13.360748,-7.279769,-6.980680,-13.346742,-7.232220,-6.900146, + -13.287711,-7.271469,-6.887240,-13.510035,-7.740416,-7.378404,-13.537390,-7.722228,-7.384384,-13.550910,-7.724494,-7.329442, + -13.523554,-7.742682,-7.323461,-13.242088,-7.284592,-7.217748,-13.269444,-7.266404,-7.223729,-13.254115,-7.261194,-7.277992, + -13.226760,-7.279382,-7.272011,-13.468530,-7.557638,-6.998420,-13.495886,-7.539449,-7.004401,-13.466298,-7.491998,-6.995425, + -13.438943,-7.510186,-6.989444,-13.279098,-7.468761,-7.594551,-13.306453,-7.450573,-7.600532,-13.335013,-7.497758,-7.613395, + -13.307658,-7.515946,-7.607414,-13.623898,-7.790674,-7.055416,-13.307266,-7.276054,-6.938631,-13.157017,-7.250246,-7.547342, + -13.447039,-7.722963,-7.658405,-12.185444,-5.730762,-7.226527,-12.244474,-5.691512,-7.239433,-12.228230,-5.640320,-7.158061, + -12.169198,-5.679569,-7.145154,-12.378439,-5.791625,-6.545735,-12.437469,-5.752376,-6.558642,-12.385046,-5.691807,-6.614224, + -12.326015,-5.731056,-6.601318,-11.929812,-5.298866,-7.082313,-11.988844,-5.259617,-7.095219,-11.936419,-5.199048,-7.150801, + -11.877389,-5.238297,-7.137895,-12.065632,-5.307279,-6.503523,-12.124663,-5.268030,-6.516430,-12.108418,-5.216838,-6.435056, + -12.049387,-5.256087,-6.422150,-12.264355,-5.713064,-6.910550,-12.291711,-5.694875,-6.916532,-12.305231,-5.697142,-6.861589, + -12.277875,-5.715330,-6.855608,-11.996408,-5.257240,-6.749895,-12.023765,-5.239051,-6.755876,-12.008436,-5.233841,-6.810139, + -11.981081,-5.252030,-6.804158,-12.222851,-5.530285,-6.530567,-12.250206,-5.512096,-6.536548,-12.220619,-5.464645,-6.527572, + -12.193264,-5.482834,-6.521591,-12.033419,-5.441409,-7.126698,-12.060774,-5.423220,-7.132679,-12.089334,-5.470405,-7.145542, + -12.061978,-5.488594,-7.139561,-12.371823,-5.752913,-6.585161,-12.071180,-5.264315,-6.474381,-11.922741,-5.250353,-7.110839, + -12.201360,-5.695611,-7.190552,-16.995794,-5.645782,-7.665833,-15.747046,-3.237414,-7.142431,-15.719690,-3.255603,-7.136451, + -16.972898,-5.218966,-7.612531,-15.691130,-3.208418,-7.123588,-15.718486,-3.190229,-7.129568,-15.784959,-3.423055,-7.519574, + -16.840181,-5.006481,-7.572644,-15.757604,-3.441243,-7.513593,-15.771123,-3.443510,-7.458650,-15.798479,-3.425322,-7.464631, + -15.517014,-2.967230,-7.358918,-15.489657,-2.985419,-7.352937,-15.474330,-2.980209,-7.407200,-15.501685,-2.962021,-7.413181, + -15.924175,-3.487390,-7.160424,-15.865144,-3.526639,-7.147517,-15.814834,-3.469512,-7.203894,-15.873865,-3.430263,-7.216801, + -15.732919,-3.418040,-7.841094,-15.673887,-3.457289,-7.828187,-15.659757,-3.409536,-7.747608,-15.718787,-3.370288,-7.760515, + -15.610285,-3.001281,-7.117805,-15.551254,-3.040530,-7.104898,-15.537123,-2.992778,-7.024319,-15.596153,-2.953529,-7.037225, + -15.477592,-2.977738,-7.669927,-16.855507,-4.996168,-7.576530,-16.993315,-5.205305,-7.617653,-15.418562,-3.016987,-7.657020, + -16.808973,-5.196011,-8.200392,-16.690300,-4.972839,-8.129461,-16.705627,-4.962526,-8.133347,-15.368252,-2.959859,-7.713396, + -16.829388,-5.182349,-8.205513,-17.157442,-5.494545,-7.623615,-17.098412,-5.533794,-7.610709,-15.427282,-2.920610,-7.726303, + -16.954563,-5.415181,-8.326988,-16.895533,-5.454430,-8.314081,-16.769360,-4.998255,-7.487123,-16.828390,-4.959007,-7.500030, + -16.600489,-4.965337,-8.176201,-16.659519,-4.926088,-8.189107,-12.762282,-5.165766,-10.208915,-12.821313,-5.126516,-10.221821, + -12.754737,-5.018162,-10.196816,-12.695705,-5.057411,-10.183909,-13.257074,-5.317971,-8.425570,-13.316105,-5.278722,-8.438477, + -13.218403,-5.162301,-8.531301,-13.159371,-5.201550,-8.518394,-12.381208,-4.545562,-10.065790,-12.440239,-4.506313,-10.078697, + -12.373663,-4.397958,-10.053692,-12.314631,-4.437208,-10.040786,-12.812895,-4.637654,-8.388264,-12.871925,-4.598405,-8.401170, + -12.836474,-4.498117,-8.258337,-12.777444,-4.537366,-8.245430,-15.095622,-4.738556,-10.737577,-15.443229,-5.303423,-10.865485, + -15.869954,-5.439269,-9.326885,-15.495939,-4.829681,-9.183765,-15.524412,-4.932883,-9.367373,-15.758618,-5.314590,-9.456953, + -15.622907,-5.259216,-9.909260,-15.408223,-4.910345,-9.830245,-15.393237,-4.920309,-9.826968,-15.607921,-5.269180,-9.905984, + -15.743632,-5.324554,-9.453676,-15.509426,-4.942847,-9.364097,-15.494452,-5.079700,-9.893343,-15.473754,-5.093462,-9.888817, + -15.498401,-5.132982,-9.896270,-15.519099,-5.119220,-9.900796,-15.654079,-5.154202,-9.389816,-15.633381,-5.167964,-9.385290, + -15.609602,-5.128669,-9.374556,-15.630300,-5.114906,-9.379081,-15.684799,-5.308442,-9.707777,-15.664101,-5.322204,-9.703252, + -15.675528,-5.324135,-9.656859,-15.696226,-5.310372,-9.661386,-15.454307,-4.913020,-9.559506,-15.433607,-4.926782,-9.554980, + -15.415379,-4.921028,-9.620855,-15.436077,-4.907265,-9.625381,-14.546161,-3.636153,-9.763311,-14.487129,-3.675402,-9.750404, + -14.567416,-3.762724,-9.648742,-14.626447,-3.723475,-9.661649,-14.742161,-3.677522,-8.975850,-14.683130,-3.716771,-8.962943, + -14.704012,-3.792571,-9.097941,-14.763043,-3.753323,-9.110848,-14.863371,-4.105231,-9.738952,-14.804339,-4.144480,-9.726045, + -14.825222,-4.220281,-9.861043,-14.884253,-4.181032,-9.873950,-15.010109,-4.151684,-9.192259,-14.951078,-4.190933,-9.179352, + -15.031364,-4.278255,-9.077690,-15.090396,-4.239006,-9.090596,-14.651473,-3.709548,-9.406079,-14.624118,-3.727736,-9.400098, + -14.638796,-3.731880,-9.345564,-14.666152,-3.713691,-9.351544,-14.950696,-4.172482,-9.445305,-14.923341,-4.190670,-9.439323, + -14.910490,-4.189475,-9.494460,-14.937846,-4.171287,-9.500442,-14.872122,-3.942005,-9.117786,-14.844767,-3.960193,-9.111805, + -14.873668,-4.007489,-9.123442,-14.901024,-3.989300,-9.129423,-14.742022,-3.949290,-9.734975,-14.714666,-3.967479,-9.728993, + -14.684785,-3.919993,-9.721261,-14.712140,-3.901805,-9.727242,-14.731314,-3.734666,-9.072348,-15.018070,-4.197719,-9.168949, + -14.854460,-4.150110,-9.772472,-14.576866,-3.703473,-9.683882,-15.040793,-4.638628,-10.734088,-14.981763,-4.677877,-10.721182, + -15.048339,-4.786232,-10.746186,-15.107370,-4.746983,-10.759093,-15.468525,-4.739135,-9.066603,-15.409493,-4.778384,-9.053696, + -15.444944,-4.878672,-9.196529,-15.503975,-4.839423,-9.209436,-15.428137,-5.269037,-10.879567,-15.369105,-5.308286,-10.866660, + -15.435682,-5.416641,-10.891665,-15.494713,-5.377391,-10.904572,-15.852423,-5.406528,-9.340306,-15.793392,-5.445776,-9.327400, + -15.891094,-5.562198,-9.234576,-15.950125,-5.522949,-9.247482,-12.501783,-4.301954,-8.809762,-12.655543,-4.200243,-8.843416, + -12.562346,-4.052088,-8.819131,-12.410317,-4.156616,-8.786127,-12.564021,-4.337028,-8.631767,-12.727874,-4.228084,-8.667593, + -12.625138,-4.060881,-8.629007,-12.461286,-4.169826,-8.593182,-12.303472,-4.284369,-9.723190,-12.467324,-4.175424,-9.759016, + -12.364589,-4.008222,-9.720430,-12.200736,-4.117166,-9.684606,-12.322280,-4.267363,-9.585455,-12.486133,-4.158419,-9.621280, + -12.399387,-4.017240,-9.588699,-12.235535,-4.126184,-9.552875,-15.793585,-6.021273,-10.275268,-15.943571,-5.914217,-10.307559, + -15.858336,-5.775496,-10.275546,-15.708350,-5.882553,-10.243255,-15.825986,-6.034046,-10.165916,-15.979170,-5.932195,-10.199409, + -15.893936,-5.793474,-10.167397,-15.740751,-5.895326,-10.133904,-14.123325,-7.119389,-9.963016,-14.274326,-7.018989,-9.996031, + -14.205019,-6.900429,-9.952477,-14.054018,-7.000828,-9.919461,-14.170296,-7.131561,-9.785205,-14.321297,-7.031162,-9.818220, + -14.233015,-6.887484,-9.785063,-14.082015,-6.987883,-9.752048,-14.284332,-6.961062,-10.213257,-14.510735,-6.810529,-10.262758, + -14.447412,-6.707469,-10.238976,-14.221009,-6.858003,-10.189474,-14.320508,-6.970437,-10.076313,-14.546910,-6.819904,-10.125814, + -14.479896,-6.710838,-10.100645,-14.253493,-6.861371,-10.051144,-14.398191,-6.963971,-9.979139,-14.624595,-6.813438,-10.028640, + -14.577047,-6.730292,-9.993258,-14.350645,-6.880826,-9.943757,-14.434367,-6.973347,-9.842196,-14.660769,-6.822813,-9.891696, + -14.594249,-6.714550,-9.866712,-14.367846,-6.865083,-9.817211,-15.959755,-5.890927,-10.094930,-15.827028,-5.674913,-10.045080, + -15.710732,-5.752237,-10.019652,-15.843460,-5.968251,-10.069502,-15.995931,-5.900302,-9.957985,-15.853977,-5.669271,-9.904670, + -15.737680,-5.746596,-9.879243,-15.879635,-5.977627,-9.932558,-15.790587,-5.683577,-10.259236,-15.691960,-5.523060,-10.222194, + -15.648827,-5.551739,-10.212763,-15.747455,-5.712256,-10.249806,-15.827347,-5.698404,-10.136202,-15.720972,-5.525278,-10.096250, + -15.677838,-5.553957,-10.086819,-15.784214,-5.727083,-10.126771,-14.158804,-3.229909,-10.214794,-14.011948,-2.990900,-10.159637, + -13.893472,-3.069674,-10.133734,-14.040328,-3.308682,-10.188890,-14.198759,-3.244381,-10.045698,-14.055100,-3.010577,-9.991743, + -13.941081,-3.086388,-9.966813,-14.084739,-3.320192,-10.020768,-13.818297,-6.545362,-9.596217,-13.952728,-6.764151,-9.646707, + -14.010980,-6.725420,-9.659443,-13.876549,-6.506632,-9.608953,-13.853482,-6.541856,-9.424629,-13.997140,-6.775661,-9.478584, + -14.055390,-6.736930,-9.491321,-13.911733,-6.503125,-9.437366,-12.503876,-4.220910,-8.539284,-12.645250,-4.443183,-8.568614, + -12.703502,-4.404452,-8.581350,-12.562127,-4.182179,-8.552020,-12.548287,-4.232419,-8.371161,-12.691945,-4.466224,-8.425117, + -12.750196,-4.427494,-8.437853,-12.606538,-4.193689,-8.383898,-13.862322,-6.698865,-9.861665,-14.005980,-6.932670,-9.915621, + -14.064231,-6.893939,-9.928356,-13.920572,-6.660134,-9.874401,-13.895660,-6.692354,-9.689384,-14.037624,-6.927743,-9.755907, + -14.095875,-6.889012,-9.768643,-13.953912,-6.653624,-9.702121,-13.693666,-7.793419,-6.630535,-13.804423,-7.973679,-6.672133, + -13.849334,-7.943818,-6.681953,-13.738576,-7.763558,-6.640355,-13.717872,-7.795317,-6.525596,-13.847816,-8.006804,-6.574400, + -13.892727,-7.976943,-6.584220,-13.762782,-7.765456,-6.535415,-12.363323,-6.158288,-7.742659,-12.474081,-6.338548,-7.784257, + -12.518991,-6.308688,-7.794076,-12.408234,-6.128428,-7.752478,-12.390727,-6.165390,-7.638920,-12.501485,-6.345650,-7.680518, + -12.546395,-6.315790,-7.690337,-12.435637,-6.135530,-7.648739,-15.599435,-3.447251,-8.289687,-15.488678,-3.266992,-8.248089, + -15.443767,-3.296852,-8.238270,-15.554524,-3.477112,-8.279867,-15.626839,-3.454353,-8.185948,-15.516081,-3.274094,-8.144350, + -15.471170,-3.303954,-8.134531,-15.581928,-3.484214,-8.176128,-17.256733,-5.634837,-7.532541,-17.145977,-5.454577,-7.490942, + -17.101067,-5.484438,-7.481123,-17.211823,-5.664698,-7.522721,-17.284138,-5.641939,-7.428802,-17.170181,-5.456475,-7.386003, + -17.125271,-5.486335,-7.376184,-17.239227,-5.671800,-7.418983,-13.410276,-7.191711,-5.313873,-13.411367,-7.203449,-5.247746, + -15.271019,-5.896956,-5.957798,-13.035213,-6.619553,-6.110826,-14.495670,-5.552612,-6.855046,-13.006707,-6.566976,-6.048154, + -14.404084,-5.386060,-6.767449,-13.608121,-7.540195,-6.242352,-15.165196,-6.614180,-7.021063,-13.555982,-7.457654,-6.279606, + -15.015208,-6.389393,-7.023480,-14.994016,-6.044978,-6.073045,-13.527555,-7.096240,-5.328796,-13.646149,-7.439299,-6.431589, + -13.052176,-6.472605,-6.208505,-12.615822,-5.767678,-5.848170,-12.620821,-5.770020,-5.823663,-12.476667,-5.527781,-5.767988, + -12.366095,-5.608534,-5.800757,-13.549704,-7.466716,-6.282705,-12.498496,-5.831647,-5.852018,-13.530223,-7.312479,-6.131310, + -13.496685,-7.334778,-6.123977,-13.138317,-6.762986,-6.007398,-13.171855,-6.740687,-6.014731,-12.503504,-5.834002,-5.827514, + -13.036057,-6.630982,-6.073677,-13.483205,-7.107396,-5.494164,-13.516743,-7.085097,-5.501497,-12.371101,-5.610890,-5.776253, + -13.524055,-7.116596,-5.335301,-13.550266,-7.329857,-5.945881,-13.577621,-7.311668,-5.951862,-13.591087,-7.313848,-5.896899, + -13.563732,-7.332036,-5.890918,-13.259179,-6.845055,-5.802940,-13.286534,-6.826867,-5.808922,-13.271152,-6.821569,-5.863165, + -13.243797,-6.839758,-5.857184,-13.535145,-7.107698,-5.447561,-13.562500,-7.089510,-5.453542,-13.532848,-7.042042,-5.444811, + -13.505492,-7.060230,-5.438830,-13.325489,-7.013581,-6.120245,-13.352845,-6.995393,-6.126226,-13.381341,-7.042561,-6.139334, + -13.353985,-7.060749,-6.133353,-12.471668,-5.525439,-5.792495,-15.100653,-4.754405,-5.585160,-15.105384,-4.758074,-5.552330, + -14.905435,-4.424736,-5.475319,-14.784885,-4.496006,-5.517751,-14.961012,-4.793077,-5.597317,-14.965826,-4.796114,-5.560482, + -14.788460,-4.499531,-5.491953,-14.899759,-4.419957,-5.509468,-16.094975,-6.856328,-6.035691,-16.098139,-6.861641,-6.003145, + -15.947210,-6.607440,-5.943946,-15.802194,-6.678234,-6.001707,-15.964153,-6.950994,-6.065037,-15.966848,-6.956033,-6.034845, + -15.804890,-6.683273,-5.971514,-15.944047,-6.602126,-5.976492,-13.644223,-6.850188,-5.567490,-13.639568,-6.835024,-5.543265, + -13.766005,-6.753373,-5.568205,-13.736801,-6.707658,-5.672611,-13.571214,-6.815341,-5.639111,-13.566586,-6.800158,-5.614892, + -13.732174,-6.692476,-5.648392,-13.789742,-6.786086,-5.586102,-15.644461,-3.084634,-6.201633,-15.659568,-3.080170,-6.181645, + -15.783002,-3.286317,-6.225853,-15.841663,-3.230761,-6.342274,-15.706108,-3.004886,-6.293514,-15.721223,-3.000435,-6.273529, + -15.856778,-3.226310,-6.322290,-15.767895,-3.290781,-6.245841,-15.259373,-3.002239,-5.842089,-15.273301,-2.998245,-5.823225, + -15.399966,-3.209379,-5.868834,-15.455292,-3.155462,-5.976349,-15.318987,-2.928640,-5.927118,-15.332922,-2.924657,-5.908257, + -15.469227,-3.151479,-5.957488,-15.386038,-3.213373,-5.887698,-16.661150,-5.793347,-6.195887,-16.675451,-5.791404,-6.167197, + -16.809378,-6.014078,-6.215895,-16.872206,-5.980822,-6.324368,-16.712738,-5.716582,-6.266078,-16.724560,-5.713555,-6.248542, + -16.884026,-5.977795,-6.306832,-16.795078,-6.016022,-6.244585,-16.916401,-5.964625,-6.378899,-16.931967,-5.960176,-6.357690, + -17.064426,-6.181362,-6.405249,-17.126228,-6.119772,-6.525379,-16.984154,-5.882936,-6.474209,-16.999727,-5.878497,-6.453003, + -17.141802,-6.115332,-6.504173,-17.048859,-6.185812,-6.426456,-16.946272,-5.687583,-6.495769,-16.957579,-5.683888,-6.482319, + -17.046953,-5.832808,-6.514213,-17.082645,-5.793962,-6.599061,-16.986885,-5.634647,-6.564769,-16.998198,-5.630959,-6.551322, + -17.093958,-5.790273,-6.585614,-17.035646,-5.836504,-6.527662,-14.202080,-3.008149,-8.702367,-16.164810,-6.081784,-9.432973, + -16.238871,-6.033311,-9.428878,-14.307194,-2.926464,-8.705908,-14.231877,-3.005813,-8.607180,-16.188047,-6.087908,-9.335903, + -16.274656,-6.032591,-9.336711,-14.319304,-2.941486,-8.608564,-15.383848,-4.137259,-11.107268,-15.446404,-4.093120,-11.131979, + -15.396366,-4.011683,-11.113186,-15.333811,-4.055822,-11.088475,-16.059404,-4.115098,-9.404598,-16.121960,-4.070959,-9.429309, + -16.071922,-3.989522,-9.410516,-16.009367,-4.033661,-9.385805,-16.056515,-5.232029,-11.359909,-16.119070,-5.187891,-11.384620, + -16.069033,-5.106454,-11.365827,-16.006477,-5.150593,-11.341116,-16.736805,-5.211095,-9.639319,-16.799362,-5.166956,-9.664030, + -16.749323,-5.085520,-9.645237,-16.686768,-5.129659,-9.620526,-14.354083,-3.066882,-8.723482,-14.329432,-3.030441,-8.720805, + -14.286182,-3.065567,-8.640903,-14.310833,-3.102008,-8.643579,-14.909556,-2.660958,-8.423643,-14.884906,-2.624517,-8.420966, + -14.841656,-2.659643,-8.341063,-14.866306,-2.696084,-8.343740,-16.058397,-5.938899,-9.399197,-16.036341,-5.902992,-9.386279, + -16.001583,-5.951940,-9.309566,-16.023640,-5.987847,-9.322483,-16.821354,-5.781558,-9.124183,-16.799297,-5.745650,-9.111265, + -16.764538,-5.794598,-9.034553,-16.786596,-5.830505,-9.047470,-15.937468,-3.993827,-9.397498,-16.752037,-5.285424,-9.690105, + -16.839851,-5.219976,-9.732809,-16.034304,-3.915414,-9.449959,-15.995048,-3.974163,-9.318541,-16.803860,-5.272241,-9.605623, + -16.881104,-5.215446,-9.642611,-16.075554,-3.910883,-9.359760,-16.848003,-5.055562,-9.672953,-15.950802,-5.743549,-9.230528, + -15.999496,-5.819880,-9.247460,-16.904808,-5.141707,-9.696922,-16.891220,-5.066135,-9.608756,-15.989956,-5.748115,-9.162825, + -16.032381,-5.815044,-9.177119,-16.937695,-5.136872,-9.626581,-16.146133,-3.914137,-9.430546,-15.201999,-4.524867,-8.949292, + -15.250693,-4.601197,-8.966225,-16.202940,-4.000281,-9.454516,-16.189350,-3.924709,-9.366349,-15.241154,-4.529433,-8.881588, + -15.283578,-4.596362,-8.895884,-16.235825,-3.995446,-9.384175,-16.818069,-5.123772,-9.641102,-15.955601,-5.748387,-9.230811, + -15.255606,-4.611818,-8.968529,-16.114195,-3.986931,-9.390328,-16.149933,-3.971281,-9.362989,-15.277222,-4.604199,-8.943992, + -15.976848,-5.741042,-9.206068,-16.854244,-5.108494,-9.610992,-16.755402,-5.118114,-9.832476,-16.051527,-3.981273,-9.581703, + -16.087265,-3.965623,-9.554363,-16.791574,-5.102836,-9.802367,-15.540879,-4.640079,-5.553224,-12.635612,-6.249626,-6.002957, + -12.632534,-6.260361,-5.964637,-16.434978,-3.738168,-6.769907,-16.348272,-3.782772,-6.807483,-15.509571,-4.643635,-5.621175, + -11.408595,-4.641899,-8.695793,-11.474200,-4.598004,-8.711328,-11.458632,-4.723335,-8.714587,-11.524238,-4.679440,-8.730121, + -14.220389,-6.626837,-5.592338,-13.739583,-6.030694,-6.420724,-14.342102,-7.003204,-6.615055,-12.859282,-4.053020,-7.901963, + -12.819025,-4.042587,-8.054359,-12.809245,-3.971583,-7.883170,-12.768988,-3.961150,-8.035566,-15.542439,-6.732348,-8.811203, + -15.505233,-6.722705,-8.952052,-15.487396,-6.642765,-8.790530,-15.450190,-6.633122,-8.931379,-16.119705,-6.852331,-6.899830, + -16.094219,-6.845726,-6.996303,-16.069666,-6.770894,-6.881037,-16.044182,-6.764289,-6.977509,-12.781536,-6.252575,-5.979239, + -12.769962,-6.237397,-6.075826,-12.812139,-6.209354,-6.085047,-16.255943,-3.928651,-6.803452,-16.374006,-3.877755,-6.709660, + -16.342024,-3.871418,-6.822272,-17.272766,-4.623022,-6.112267,-17.304726,-4.619849,-6.053274,-17.187984,-5.076006,-7.056083, + -16.051863,-5.763388,-7.093041,-17.241833,-5.135152,-7.022815,-16.611860,-4.187893,-6.792160,-16.636131,-4.263212,-6.860405, + -15.545160,-4.929929,-6.876037,-16.019339,-5.391742,-6.111653,-17.154860,-4.712607,-6.111844,-16.577932,-4.334090,-6.792565, + -17.146067,-5.142359,-7.000660,-16.633692,-4.270659,-6.817945,-16.709114,-4.445925,-6.723769,-16.762199,-4.407266,-6.741750, + -17.099606,-4.957643,-6.871145,-17.046478,-4.996402,-6.853438,-17.125362,-5.130606,-6.980585,-17.144466,-4.663337,-6.256828, + -17.091339,-4.702097,-6.239121,-17.206259,-4.662246,-6.105432,-16.781164,-4.453812,-6.555324,-16.755009,-4.473227,-6.547980, + -16.772736,-4.476806,-6.494314,-16.798889,-4.457391,-6.501659,-17.140392,-4.905143,-6.650409,-17.114239,-4.924557,-6.643065, + -17.098553,-4.924009,-6.697477,-17.124708,-4.904595,-6.704821,-17.110483,-4.680141,-6.181652,-17.084330,-4.699556,-6.174308, + -17.114626,-4.745476,-6.187803,-17.140779,-4.726061,-6.195148,-16.913939,-4.714313,-6.864377,-16.887783,-4.733727,-6.857033, + -16.856148,-4.687642,-6.847870,-16.882303,-4.668227,-6.855214,-16.144182,-5.339794,-6.024277,-16.402901,-5.643946,-7.051721, + -15.815830,-4.675435,-6.798925,-13.008150,-7.067689,-7.556557,-13.124809,-7.236402,-7.560994,-13.140501,-7.226197,-7.563440, + -13.029010,-7.054123,-7.559809,-13.147975,-7.108457,-6.855567,-13.257137,-7.278490,-6.911765,-13.272829,-7.268285,-6.914211, + -13.168835,-7.094891,-6.858819,-13.703533,-8.014219,-7.070677,-13.598187,-7.838670,-7.061337,-13.613879,-7.828465,-7.063783, + -13.724393,-8.000653,-7.073929,-13.543896,-7.934913,-7.739503,-13.446779,-7.759180,-7.678453,-13.462470,-7.748975,-7.680900, + -13.564754,-7.921347,-7.742755,-11.774238,-5.062206,-7.107910,-11.890484,-5.228329,-7.104452,-11.906176,-5.218124,-7.106899, + -11.795096,-5.048641,-7.111162,-11.909001,-5.095623,-6.408001,-12.018562,-5.264309,-6.456300,-12.034254,-5.254105,-6.458747, + -11.929861,-5.082057,-6.411253,-12.451166,-5.976061,-6.603269,-12.346918,-5.802816,-6.596420,-12.362610,-5.792611,-6.598866, + -12.472025,-5.962495,-6.606521,-12.296465,-5.904824,-7.274080,-12.200249,-5.731089,-7.215511,-12.215940,-5.720884,-7.217957, + -12.317324,-5.891258,-7.277332,-15.587200,-3.195988,-7.747538,-15.559845,-3.214177,-7.741557,-15.530257,-3.166726,-7.732581, + -15.557613,-3.148537,-7.738562,-15.579107,-2.983216,-7.078578,-15.881920,-3.476752,-7.194445,-15.709280,-3.414504,-7.794746, + -15.427826,-2.957134,-7.691174,-16.059889,-3.962158,-8.000306,-16.000858,-4.001407,-7.987399,-16.224468,-3.974410,-7.268007, + -16.816296,-5.181470,-8.204898,-17.005556,-5.193019,-7.628509,-16.165438,-4.013659,-7.255100,-16.939161,-5.380827,-8.250725, + -16.954361,-5.370495,-8.255032,-16.836502,-5.167735,-8.210625,-16.968410,-5.218016,-7.619078,-16.295904,-4.490500,-8.125280, + -16.354935,-4.451252,-8.138187,-17.115053,-5.447117,-7.661309,-17.130253,-5.436784,-7.665617,-16.513092,-4.579473,-7.385673, + -16.572124,-4.540225,-7.398580,-15.822654,-3.584457,-7.903586,-15.731343,-3.429590,-7.825817,-15.716151,-3.439934,-7.821512, + -15.802458,-3.598209,-7.897863,-16.048168,-3.640775,-7.228808,-15.937572,-3.477025,-7.198788,-15.922380,-3.487370,-7.194483, + -16.027973,-3.654527,-7.223085,-15.512362,-2.770359,-7.033286,-15.597091,-2.933735,-7.099403,-15.581891,-2.944067,-7.095095, + -15.492156,-2.784095,-7.027559,-15.314560,-2.750010,-7.696196,-15.417606,-2.920553,-7.713833,-15.402407,-2.930885,-7.709525, + -15.294355,-2.763745,-7.690469,-16.229759,-4.218420,-8.016712,-16.105997,-3.998596,-7.944546,-16.090672,-4.008909,-7.940660, + -16.209343,-4.232081,-8.011590,-16.398493,-4.235517,-7.389049,-16.253323,-4.014396,-7.345160,-16.237995,-4.024709,-7.341274, + -16.378075,-4.249175,-7.383925,-16.410679,-4.223142,-7.399883,-16.543364,-4.479905,-7.439991,-16.528164,-4.490237,-7.435683, + -16.373535,-4.248139,-7.390452,-16.236872,-4.203805,-8.021824,-16.354731,-4.406565,-8.066231,-16.339531,-4.416898,-8.061923, + -16.216667,-4.217540,-8.016097,-16.617456,-6.363129,-7.595989,-16.822691,-6.224308,-7.650420,-16.832249,-6.240050,-7.654565, + -16.630135,-6.384087,-7.601438,-16.445217,-6.314482,-8.179895,-16.671175,-6.183469,-8.206312,-16.680735,-6.199210,-8.210457, + -16.457895,-6.335440,-8.185343,-16.364765,-6.547588,-7.485335,-16.327753,-6.487350,-7.471435,-16.207436,-6.482540,-8.201720, + -16.170425,-6.422302,-8.187819,-16.852562,-6.138412,-7.586180,-16.889574,-6.198649,-7.600081,-16.657877,-6.104213,-8.268351, + -16.694889,-6.164451,-8.282251,-16.458071,-6.322468,-8.187405,-16.639189,-6.398124,-7.613254,-16.262787,-6.452695,-8.144455, + -16.272224,-6.468393,-8.149023,-16.470615,-6.343336,-8.193477,-16.616022,-6.359971,-7.603192,-16.395212,-6.512980,-7.543147, + -16.404650,-6.528677,-7.547715,-15.552583,-7.071156,-7.363163,-15.757816,-6.932335,-7.417593,-15.767376,-6.948077,-7.421739, + -15.565260,-7.092113,-7.368611,-15.380343,-7.022509,-7.947069,-15.606301,-6.891495,-7.973486,-15.615861,-6.907237,-7.977631, + -15.393021,-7.043467,-7.952517,-15.299891,-7.255615,-7.252509,-15.262878,-7.195377,-7.238608,-15.142562,-7.190566,-7.968894, + -15.105551,-7.130329,-7.954993,-15.787688,-6.846438,-7.353354,-15.824699,-6.906676,-7.367255,-15.593002,-6.812240,-8.035524, + -15.630014,-6.872478,-8.049425,-15.393196,-7.030495,-7.954578,-15.574315,-7.106151,-7.380427,-15.197912,-7.160722,-7.911630, + -15.207350,-7.176419,-7.916197,-15.405742,-7.051363,-7.960650,-15.551148,-7.067998,-7.370366,-15.330338,-7.221006,-7.310321, + -15.339775,-7.236704,-7.314889,-15.430051,-6.445947,-9.380362,-15.635284,-6.307127,-9.434792,-15.644844,-6.322868,-9.438937, + -15.442728,-6.466906,-9.385810,-15.257812,-6.397301,-9.964267,-15.483769,-6.266287,-9.990685,-15.493329,-6.282029,-9.994829, + -15.270489,-6.418259,-9.969715,-15.177359,-6.630406,-9.269708,-15.140347,-6.570169,-9.255807,-15.020030,-6.565358,-9.986093, + -14.983019,-6.505120,-9.972192,-15.665156,-6.221231,-9.370552,-15.702168,-6.281468,-9.384453,-15.470470,-6.187032,-10.052723, + -15.507483,-6.247270,-10.066624,-15.270664,-6.405287,-9.971777,-15.451783,-6.480942,-9.397626,-15.075380,-6.535514,-9.928827, + -15.084818,-6.551211,-9.933395,-15.283210,-6.426154,-9.977849,-15.428617,-6.442790,-9.387565,-15.207806,-6.595798,-9.327519, + -15.217243,-6.611496,-9.332088,-13.252277,-3.668950,-8.611078,-13.042264,-3.806531,-8.574739,-13.032438,-3.790720,-8.571604, + -13.239273,-3.647906,-8.606867,-13.113398,-3.636966,-9.204937,-12.899388,-3.771076,-9.133283,-12.889563,-3.755265,-9.130147, + -13.100393,-3.615923,-9.200726,-13.532765,-3.491694,-8.616507,-13.569777,-3.551932,-8.630407,-13.315219,-3.459589,-9.319240, + -13.352231,-3.519827,-9.333140,-13.044968,-3.900870,-8.515662,-13.007956,-3.840632,-8.501760,-12.877789,-3.841287,-9.203361, + -12.840776,-3.781049,-9.189460,-13.098790,-3.628525,-9.204068,-13.226057,-3.632792,-8.610805,-13.294210,-3.498334,-9.246500, + -13.284282,-3.482509,-9.243793,-13.085591,-3.607488,-9.200471,-13.249877,-3.671113,-8.618390,-13.476682,-3.519659,-8.655745, + -13.466753,-3.503833,-8.653038,-15.765281,-5.965575,-11.008615,-15.673339,-6.026707,-10.988513,-15.723376,-6.108143,-11.007306, + -15.815319,-6.047012,-11.027409,-16.376778,-6.025262,-8.972945,-16.284836,-6.086393,-8.952843,-16.334873,-6.167830,-8.971636, + -16.426815,-6.106698,-8.991738,-13.838638,-2.829948,-10.285006,-13.746696,-2.891080,-10.264903,-13.796733,-2.972517,-10.283696, + -13.888676,-2.911385,-10.303799,-14.415977,-2.912346,-8.241867,-14.324036,-2.973478,-8.221765,-14.374073,-3.054914,-8.240559, + -14.466016,-2.993782,-8.260660,-24.381191,15.228098,-8.680820,-23.644407,15.375076,-11.569580,-24.764929,15.277796,-8.149190, + -24.506813,15.196941,-8.101898,-24.131746,15.303308,-9.964661,-23.816313,9.290447,-12.020576,-24.574640,9.037333,-9.082424, + -24.987835,8.949242,-8.617789,-24.636238,11.014922,-8.357773,-24.694733,8.992140,-8.500584,-24.265455,9.146715,-10.421359, + -24.520149,11.044933,-8.952198,-24.460468,13.216640,-8.787756,-24.576557,13.186629,-8.193331,-23.689892,13.395016,-11.729185, + -24.901150,11.041377,-8.181851,-24.921164,10.761445,-8.196901,-24.861038,12.949338,-8.031234,-24.841026,13.229270,-8.016185, + -24.256746,13.391091,-10.133649,-24.630390,12.998625,-8.823421,-24.594275,12.952091,-7.945040,-24.597479,13.217964,-7.952772, + -24.024611,13.105503,-10.092404,-24.033815,13.380561,-10.075480,-23.800541,13.510208,-11.845523,-24.630859,13.278181,-8.812796, + -23.538872,13.239479,-11.795460,-24.342844,13.001760,-8.732740,-24.346048,13.267632,-8.740473,-23.548523,13.498303,-11.779764, + -24.366098,13.127537,-8.850073,-24.665646,12.905446,-8.944406,-24.398985,13.119014,-8.725574,-24.410780,11.548000,-10.402000, + -24.192324,11.259391,-10.209229,-24.159195,11.267978,-10.334646,-24.499170,10.915930,-8.941456,-24.494312,11.216957,-8.919564, + -24.137672,13.321650,-10.123194,-24.142159,13.043308,-10.143434,-24.548037,10.919760,-8.954102,-24.543179,11.220788,-8.932211, + -24.183208,13.325254,-10.135347,-24.187695,13.046913,-10.155588,-24.568148,11.405526,-8.579782,-24.573177,11.208497,-8.597790, + -24.538780,11.418930,-8.725381,-24.545094,11.207103,-8.736772,-24.587286,11.406271,-8.582985,-24.592316,11.209242,-8.600992, + -24.557919,11.419675,-8.728584,-24.564232,11.207847,-8.739975,-24.161707,14.636923,-9.850870,-24.160765,14.832409,-9.819986, + -24.189413,14.613360,-9.706135,-24.186274,14.824034,-9.680691,-24.180851,14.637516,-9.853968,-24.179909,14.833003,-9.823084, + -24.208557,14.613955,-9.709232,-24.205418,14.824628,-9.683787,-24.549356,11.499791,-8.626511,-24.544537,11.663297,-8.615148, + -24.576900,11.491553,-8.506255,-24.569731,11.667139,-8.500410,-24.565096,11.500528,-8.629692,-24.560276,11.664034,-8.618329, + -24.592640,11.492290,-8.509437,-24.585470,11.667877,-8.503592,-24.160444,13.381920,-10.124239,-23.492619,15.542061,-11.625048, + -24.290142,15.311390,-8.585754,-24.288658,14.973495,-8.583441,-23.484688,15.211216,-11.646160,-24.574953,15.321939,-8.658077, + -24.055433,15.362053,-9.953102,-24.047949,15.014975,-9.975443,-24.068163,15.177996,-9.942156,-24.302822,14.992762,-10.150594, + -24.035275,15.186520,-10.066653,-24.085382,14.537021,-10.063536,-24.082365,14.646770,-10.055225,-23.592247,14.750082,-11.712251, + -23.595470,14.632843,-11.721128,-24.103138,13.890915,-10.112458,-24.100122,14.000578,-10.104155,-23.603840,14.128320,-11.780390, + -23.605864,14.011485,-11.793784,-24.131021,14.539183,-10.075443,-24.128004,14.648933,-10.067133,-23.641037,14.752421,-11.725350, + -23.644258,14.635183,-11.734228,-24.148777,13.893078,-10.124366,-24.145761,14.002741,-10.116062,-23.652628,14.130660,-11.793489, + -23.654652,14.013825,-11.806884,-23.749573,11.223309,-11.893626,-24.220125,11.210214,-10.288681,-24.764679,9.037394,-9.223946, + -24.458666,10.947307,-8.890017,-24.725325,10.733739,-9.108847,-24.425777,10.955830,-9.014514,-24.444395,9.164176,-10.576681, + -24.346067,15.183939,-8.554548,-24.612728,14.970371,-8.773379,-24.313181,15.192461,-8.679047,-24.219755,9.647307,-10.433783, + -24.216740,9.756970,-10.425479,-23.720457,9.884713,-12.101714,-23.722481,9.767878,-12.115109,-24.265394,9.649470,-10.445691, + -24.262379,9.759133,-10.437387,-23.769245,9.887053,-12.114814,-23.771269,9.770218,-12.128209,-24.241570,10.770910,-10.339052, + -24.237083,11.049253,-10.318811,-24.591198,9.236650,-9.079901,-24.596054,8.935622,-9.101792,-24.196035,10.767305,-10.326898, + -24.191549,11.045647,-10.306658,-24.542332,9.232820,-9.067255,-24.547188,8.931792,-9.089146,-24.541574,15.261723,-7.798055, + -24.540091,14.923828,-7.795741,-23.608648,11.310410,-11.945432,-24.406174,11.079739,-8.906139,-24.402967,10.813866,-8.898407, + -24.443581,15.321632,-9.328136,-23.744637,15.553967,-11.690805,-23.598997,11.051586,-11.961126,-24.690983,11.090288,-8.978462, + -23.860666,11.322314,-12.011189,-24.165855,11.216705,-10.280771,-24.156651,10.941648,-10.297696,-24.785120,15.273029,-7.861467, + -24.388786,11.227236,-10.338941,-24.657604,11.030070,-8.118440,-24.806854,14.921074,-7.881934,-24.654400,10.764198,-8.110707, + -24.690516,10.810732,-8.989088,-24.506487,9.051741,-9.134693,-24.539610,9.043157,-9.009302,-24.247051,9.156096,-10.370282, + -24.213923,9.164682,-10.495699,-22.003145,1.372326,-9.001204,-21.259933,1.516480,-11.888460,-22.395592,1.391424,-8.473969, + -22.130014,1.344456,-8.422386,-21.751465,1.436615,-10.285201,-20.679699,-4.554418,-12.139830,-21.431789,-4.804921,-9.199852, + -21.835875,-4.928254,-8.735223,-21.742962,-2.827785,-8.541159,-21.551479,-4.845942,-8.617619,-21.124437,-4.701153,-10.539655, + -21.625254,-2.802719,-9.135494,-21.834049,-0.636008,-9.042316,-21.951757,-0.661074,-8.447981,-21.060602,-0.458237,-11.983028, + -22.010937,-2.828488,-8.367906,-21.996315,-3.109095,-8.373852,-22.206665,-0.926235,-8.279979,-22.221289,-0.645628,-8.274033, + -21.639265,-0.480880,-10.391893,-21.975573,-0.874280,-9.071867,-21.943163,-0.887967,-8.192216,-21.978867,-0.624888,-8.208724, + -21.374304,-0.734311,-10.339775,-21.417343,-0.462071,-10.331982,-21.183327,-0.361288,-12.103805,-22.010429,-0.596704,-9.070459, + -20.890968,-0.596068,-12.043173,-21.691540,-0.832937,-8.979498,-21.727242,-0.569857,-8.996006,-20.932449,-0.340025,-12.036077, + -21.728821,-0.714780,-9.101057,-21.997873,-0.974898,-9.189938,-21.761707,-0.723303,-8.976559,-21.563324,-2.336547,-10.600355, + -21.313143,-2.589820,-10.396784,-21.280012,-2.581234,-10.522201,-21.588726,-2.927757,-9.120374,-21.621048,-2.627870,-9.108381, + -21.512691,-0.534792,-10.378392,-21.482800,-0.812078,-10.389480,-21.637560,-2.930367,-9.133452,-21.669882,-2.630480,-9.121460, + -21.558197,-0.537200,-10.390949,-21.528305,-0.814486,-10.402037,-21.720982,-2.439059,-8.775476,-21.701622,-2.635686,-8.787015, + -21.691965,-2.426801,-8.921247,-21.672136,-2.638053,-8.925693,-21.740032,-2.440775,-8.778826,-21.720675,-2.637402,-8.790363, + -21.711016,-2.428516,-8.924596,-21.691187,-2.639769,-8.929042,-21.700665,0.775571,-10.149712,-21.724022,0.970577,-10.125279, + -21.726776,0.753414,-10.004459,-21.749758,0.963580,-9.985950,-21.719704,0.773708,-10.152949,-21.743061,0.968714,-10.128518, + -21.745815,0.751551,-10.007698,-21.768799,0.961717,-9.989187,-21.713406,-2.344739,-8.825165,-21.728790,-2.181602,-8.819164, + -21.740980,-2.352458,-8.704882,-21.755457,-2.177225,-8.704780,-21.729082,-2.346044,-8.828469,-21.744467,-2.182906,-8.822469, + -21.756657,-2.353763,-8.708186,-21.771135,-2.178530,-8.708084,-21.542669,-0.477841,-10.381570,-21.129198,1.698999,-11.948425, + -21.923992,1.469166,-8.908354,-21.881109,1.134264,-8.894899,-21.080538,1.371133,-11.958574,-22.207180,1.442319,-8.982808, + -21.683056,1.504632,-10.275096,-21.632835,1.160569,-10.285942,-21.673231,1.320849,-10.258173,-21.881224,1.101622,-10.461894, + -21.640345,1.329373,-10.382671,-21.610455,0.679072,-10.358477,-21.621006,0.788570,-10.353767,-21.130045,0.898402,-12.010123, + -21.118774,0.781434,-12.015154,-21.548336,0.034453,-10.386198,-21.558880,0.143863,-10.381493,-21.064594,0.278074,-12.057813, + -21.052137,0.161509,-12.067364,-21.655890,0.675228,-10.370741,-21.666439,0.784726,-10.366032,-21.178614,0.894309,-12.023605, + -21.167343,0.777341,-12.028636,-21.593769,0.030609,-10.398462,-21.604313,0.140020,-10.393757,-21.113163,0.273981,-12.071295, + -21.100706,0.157416,-12.080846,-20.851807,-2.624948,-12.076206,-21.333874,-2.644552,-10.474749,-21.618919,-4.832733,-9.342512, + -21.552914,-2.890014,-9.069737,-21.789080,-3.141609,-9.283116,-21.520025,-2.881491,-9.194235,-21.302544,-4.710782,-10.696611, + -21.964188,1.336869,-8.873324,-22.200354,1.085274,-9.086703,-21.931301,1.345392,-8.997822,-21.140343,-4.199392,-10.568273, + -21.150885,-4.089982,-10.563567,-20.656601,-3.955770,-12.239887,-20.644142,-4.072336,-12.249438,-21.185776,-4.203237,-10.580538, + -21.196318,-4.093825,-10.575832,-20.705168,-3.959864,-12.253369,-20.692711,-4.076429,-12.262920,-21.300762,-3.084542,-10.510754, + -21.330654,-2.807256,-10.499667,-21.472689,-4.609172,-9.204002,-21.440367,-4.909059,-9.215995,-21.255257,-3.082134,-10.498197, + -21.285149,-2.804848,-10.487110,-21.423855,-4.606562,-9.190924,-21.391533,-4.906449,-9.202916,-22.175617,1.414136,-8.121073, + -22.132732,1.079234,-8.107617,-20.722097,-2.522885,-12.129950,-21.516891,-2.752717,-9.089878,-21.481188,-3.015797,-9.073370, + -22.069796,1.436777,-9.651638,-21.380077,1.677736,-12.016153,-20.680618,-2.778928,-12.137046,-21.800077,-2.779565,-9.164332, + -20.972977,-2.544148,-12.197678,-21.280895,-2.631190,-10.466710,-21.237854,-2.903430,-10.474503,-22.418037,1.393395,-8.186380, + -21.502817,-2.650000,-10.526621,-21.768515,-2.807748,-8.302597,-22.396235,1.040966,-8.195380,-21.732811,-3.070827,-8.286089, + -21.765223,-3.057140,-9.165739,-21.365377,-4.783922,-9.252129,-21.398500,-4.792506,-9.126738,-21.107857,-4.687956,-10.488798, + -21.074726,-4.679370,-10.614214,-22.791248,3.234677,-9.030182,-24.301044,7.065913,-9.240138,-23.545675,7.191748,-12.113402, + -23.177017,3.156205,-8.266225,-23.084146,2.891415,-8.250418,-23.900715,4.927422,-8.326737,-23.993587,5.192212,-8.342545, + -23.427013,5.348211,-10.491638,-23.669880,4.985648,-9.118263,-23.661255,5.044565,-8.239925,-23.768768,5.285040,-8.276951, + -23.103312,5.184119,-10.417888,-23.221159,5.433029,-10.431453,-22.962904,5.483003,-12.173798,-23.781179,5.241512,-9.138536, + -22.618401,5.345085,-12.092760,-23.411720,5.111848,-9.026920,-23.519234,5.352324,-9.063945,-22.730188,5.578887,-12.105759, + -22.666449,3.184762,-9.081778,-23.476976,5.205707,-9.157534,-23.686834,4.867577,-9.125086,-23.509865,5.197184,-9.033035, + -22.876305,2.846632,-9.049331,-22.699335,3.176239,-8.957280,-23.287037,5.364238,-10.373672,-23.591984,5.521518,-10.598282, + -23.253908,5.372825,-10.499088,-22.814241,4.233080,-10.432600,-22.855169,4.335130,-10.436425,-22.368425,4.483005,-12.113802, + -22.323509,4.374302,-12.114241,-22.856388,4.215722,-10.444921,-22.897316,4.317772,-10.448747,-22.413473,4.464438,-12.127345, + -22.368557,4.355735,-12.127783,-23.422478,4.902564,-9.130846,-23.466557,5.012468,-9.134966,-22.889000,4.317742,-10.402158, + -22.848339,4.216359,-10.398357,-23.467617,4.883974,-9.144043,-23.511696,4.993878,-9.148163,-22.931053,4.300408,-10.414825, + -22.890392,4.199025,-10.411025,-22.863766,3.457633,-9.005546,-22.907845,3.567538,-9.009665,-22.880373,4.315907,-10.397076, + -22.839712,4.214523,-10.393275,-22.908905,3.439043,-9.018743,-22.952984,3.548948,-9.022861,-22.922428,4.298573,-10.409743, + -22.881767,4.197189,-10.405943,-23.482195,4.737055,-8.633261,-23.408154,4.553552,-8.629456,-23.453434,4.746541,-8.779287, + -23.375053,4.549683,-8.767282,-23.499891,4.729805,-8.636631,-23.425852,4.546302,-8.632825,-23.471130,4.739291,-8.782658, + -23.392750,4.542433,-8.770651,-21.916935,1.524264,-9.683411,-21.994745,1.706011,-9.674270,-21.940121,1.506089,-9.537112, + -22.021643,1.702023,-9.535041,-21.934584,1.516885,-9.686659,-22.012392,1.698632,-9.677519,-21.957769,1.498709,-9.540360, + -22.039291,1.694644,-9.538288,-23.463259,4.824621,-8.845325,-23.523933,4.976805,-8.852037,-23.491148,4.818063,-8.725045, + -23.554167,4.981655,-8.738564,-23.477835,4.818718,-8.848654,-23.538509,4.970903,-8.855367,-23.505726,4.812161,-8.728374, + -23.568743,4.975752,-8.741891,-24.728415,6.983154,-8.731582,-24.432266,7.044871,-8.662003,-24.039194,7.106564,-10.523067, + -23.466085,7.413744,-12.174539,-24.255129,7.187181,-9.132725,-24.147615,6.946706,-9.095699,-23.354296,7.179942,-12.161539, + -23.959965,7.205366,-10.486324,-23.842117,6.956457,-10.472759,-23.959705,7.086360,-10.467462,-24.091709,6.803426,-10.655470, + -23.926819,7.094883,-10.591959,-21.275908,1.543754,-11.901546,-22.015192,1.302292,-8.957565,-22.382206,1.103628,-8.488301, + -22.901323,3.186717,-8.446249,-22.135941,1.270935,-8.374950,-22.011063,3.412514,-11.969110,-21.709328,1.392415,-10.298696, + -22.438316,3.181770,-10.367737,-22.245867,1.243792,-8.979964,-21.909864,1.336618,-10.440432,-24.284769,7.118690,-9.090506, + -24.461739,6.789083,-9.182556,-24.251881,7.127213,-9.215003,-22.611948,2.881619,-9.055091,-22.656027,2.991523,-9.059211, + -22.068144,2.300801,-10.323161,-22.027483,2.199417,-10.319361,-22.657087,2.863029,-9.068287,-22.701166,2.972933,-9.072407, + -22.110199,2.283467,-10.335829,-22.069538,2.182083,-10.332028,-22.053238,1.436689,-8.929790,-22.097315,1.546593,-8.933910, + -22.061550,2.294970,-10.319436,-22.020889,2.193586,-10.315636,-22.098375,1.418098,-8.942987,-22.142454,1.528003,-8.947107, + -22.103605,2.277636,-10.332104,-22.062944,2.176252,-10.328303,-24.504663,7.119897,-8.345730,-24.397152,6.879423,-8.308705, + -21.913618,3.542880,-12.029439,-22.702663,3.316316,-8.987625,-22.595150,3.075841,-8.950600,-24.292593,7.087694,-10.066594, + -23.698799,7.317860,-12.242577,-21.801830,3.309077,-12.016439,-22.964609,3.205504,-9.062216,-22.146334,3.446996,-12.097477, + -22.435764,3.389373,-10.344935,-22.317917,3.140464,-10.331370,-24.729485,7.027070,-8.411325,-22.641619,3.304556,-10.405121, + -22.952198,3.249033,-8.200630,-24.636612,6.762279,-8.395517,-22.844685,3.008558,-8.163606,-22.853310,2.949640,-9.041944, + -21.940109,1.328254,-8.984968,-21.973232,1.319670,-8.859579,-21.702061,1.414485,-10.225386,-21.668932,1.423071,-10.350801, + -24.189262,21.356169,-8.210589,-23.452478,21.503145,-11.099350,-24.573000,21.405865,-7.678958,-24.314884,21.325010,-7.631667, + -23.939817,21.431377,-9.494429,-23.624384,15.418516,-11.550345,-24.382711,15.165401,-8.612194,-24.795906,15.077311,-8.147558, + -24.444309,17.142990,-7.887541,-24.502804,15.120209,-8.030353,-24.073526,15.274784,-9.951128,-24.328220,17.173002,-8.481966, + -24.268539,19.344709,-8.317526,-24.384628,19.314697,-7.723100,-23.497963,19.523085,-11.258954,-24.709221,17.169445,-7.711620, + -24.729235,16.889513,-7.726669,-24.669109,19.077408,-7.561002,-24.649097,19.357340,-7.545953,-24.064817,19.519161,-9.663418, + -24.438461,19.126694,-8.353190,-24.402346,19.080160,-7.474809,-24.405550,19.346033,-7.482541,-23.832682,19.233572,-9.622173, + -23.841887,19.508629,-9.605249,-23.608612,19.638277,-11.375292,-24.438931,19.406250,-8.342564,-23.346943,19.367548,-11.325229, + -24.150915,19.129827,-8.262509,-24.154119,19.395700,-8.270241,-23.356594,19.626371,-11.309534,-24.174170,19.255606,-8.379842, + -24.473717,19.033514,-8.474174,-24.207056,19.247082,-8.255344,-24.218851,17.676069,-9.931769,-24.000395,17.387461,-9.738998, + -23.967266,17.396046,-9.864415,-24.307241,17.043999,-8.471225,-24.302383,17.345026,-8.449333,-23.945744,19.449718,-9.652962, + -23.950230,19.171377,-9.673203,-24.356108,17.047829,-8.483871,-24.351250,17.348858,-8.461979,-23.991280,19.453323,-9.665116, + -23.995766,19.174982,-9.685356,-24.376219,17.533596,-8.109550,-24.381248,17.336567,-8.127559,-24.346851,17.546999,-8.255150, + -24.353165,17.335171,-8.266541,-24.395357,17.534340,-8.112755,-24.400387,17.337311,-8.130762,-24.365990,17.547743,-8.258353, + -24.372303,17.335917,-8.269744,-23.969778,20.764992,-9.380639,-23.968836,20.960478,-9.349754,-23.997484,20.741428,-9.235904, + -23.994345,20.952103,-9.210459,-23.988922,20.765585,-9.383737,-23.987980,20.961071,-9.352853,-24.016628,20.742023,-9.239002, + -24.013489,20.952698,-9.213556,-24.357428,17.627859,-8.156281,-24.352608,17.791365,-8.144917,-24.384972,17.619621,-8.036024, + -24.377802,17.795208,-8.030180,-24.373167,17.628597,-8.159461,-24.368347,17.792103,-8.148098,-24.400711,17.620359,-8.039206, + -24.393541,17.795946,-8.033360,-23.968515,19.509989,-9.654009,-23.300690,21.670130,-11.154817,-24.098213,21.439459,-8.115524, + -24.096729,21.101566,-8.113210,-23.292759,21.339285,-11.175929,-24.383024,21.450008,-8.187847,-23.863504,21.490122,-9.482870, + -23.856020,21.143044,-9.505213,-23.876234,21.306065,-9.471924,-24.110893,21.120831,-9.680363,-23.843346,21.314589,-9.596422, + -23.893454,20.665089,-9.593304,-23.890436,20.774839,-9.584993,-23.400318,20.878151,-11.242020,-23.403542,20.760912,-11.250896, + -23.911209,20.018984,-9.642227,-23.908194,20.128647,-9.633924,-23.411911,20.256390,-11.310159,-23.413935,20.139553,-11.323553, + -23.939093,20.667252,-9.605212,-23.936075,20.777002,-9.596902,-23.449108,20.880491,-11.255119,-23.452330,20.763252,-11.263996, + -23.956848,20.021147,-9.654135,-23.953833,20.130810,-9.645831,-23.460699,20.258730,-11.323258,-23.462723,20.141893,-11.336653, + -23.557644,17.351377,-11.423395,-24.028196,17.338282,-9.818450,-24.572750,15.165462,-8.753715,-24.266737,17.075375,-8.419785, + -24.533396,16.861809,-8.638616,-24.233849,17.083899,-8.544283,-24.252466,15.292244,-10.106450,-24.154139,21.312008,-8.084318, + -24.420799,21.098440,-8.303148,-24.121252,21.320530,-8.208816,-24.027826,15.775375,-9.963552,-24.024811,15.885038,-9.955248, + -23.528528,16.012781,-11.631483,-23.530552,15.895947,-11.644878,-24.073465,15.777538,-9.975460,-24.070450,15.887201,-9.967156, + -23.577316,16.015121,-11.644583,-23.579340,15.898287,-11.657978,-24.049641,16.898979,-9.868820,-24.045155,17.177320,-9.848580, + -24.399269,15.364719,-8.609670,-24.404125,15.063690,-8.631561,-24.004107,16.895374,-9.856667,-23.999620,17.173716,-9.836426, + -24.350403,15.360888,-8.597023,-24.355259,15.059860,-8.618916,-24.349646,21.389791,-7.327824,-24.348162,21.051897,-7.325510, + -23.416719,17.438478,-11.475201,-24.214245,17.207808,-8.435908,-24.211039,16.941935,-8.428176,-24.251652,21.449701,-8.857905, + -23.552708,21.682035,-11.220574,-23.407068,17.179655,-11.490895,-24.499054,17.218357,-8.508230,-23.668737,17.450384,-11.540958, + -23.973927,17.344774,-9.810541,-23.964722,17.069717,-9.827465,-24.593191,21.401098,-7.391236,-24.196857,17.355305,-9.868710, + -24.465675,17.158140,-7.648208,-24.614925,21.049145,-7.411703,-24.462471,16.892267,-7.640476,-24.498587,16.938801,-8.518858, + -24.314558,15.179810,-8.664461,-24.347681,15.171225,-8.539071,-24.055122,15.284164,-9.900051,-24.021994,15.292751,-10.025467, + 11.381779,0.885572,-0.163826,9.713292,-2.806303,-0.930737,10.522812,-2.564984,-3.781791,11.301993,0.714577,0.674627, + 11.423206,0.961347,0.732942,10.528353,-1.008263,0.361716,10.407141,-1.255034,0.303401,10.969421,-1.114666,-1.847897, + 10.722373,-0.940674,-0.438894,10.272736,-0.902151,0.316993,10.186207,-1.145254,0.252405,10.864441,-0.759543,-1.851842, + 10.767191,-1.014016,-1.894428,11.389179,-0.997989,-3.543012,10.619750,-1.195489,-0.491836,11.251172,-0.644348,-3.555783, + 10.447892,-0.826399,-0.489070,10.361362,-1.069502,-0.553658,11.160562,-0.884207,-3.595614,11.369030,1.007063,-0.240022, + 10.480797,-0.947976,-0.608501,10.815847,-0.874968,-0.403964,10.447909,-0.956499,-0.484003,11.704081,1.080072,-0.035485, + 11.336143,0.998540,-0.115524,10.824909,-1.012159,-1.799161,10.993402,-1.361127,-1.933365,10.858040,-1.003573,-1.924577, + 11.357903,0.088024,-1.689428,11.313050,-0.010697,-1.708035,11.708849,0.114388,-3.410997,11.757957,0.220156,-3.395645, + 11.399302,0.067413,-1.679904,11.354449,-0.031309,-1.698510,11.753279,0.092337,-3.401141,11.802387,0.198104,-3.385790, + 10.644945,-0.703123,-0.515333,10.596640,-0.809443,-0.535372,11.328308,-0.021343,-1.660339,11.372868,0.076734,-1.641854, + 10.689283,-0.725198,-0.505132,10.640979,-0.831518,-0.525171,11.369799,-0.041931,-1.651161,11.414358,0.056147,-1.632676, + 11.259026,0.685080,-0.181449,11.210721,0.578761,-0.201488,11.322340,-0.013319,-1.658437,11.366900,0.084758,-1.639952, + 11.303364,0.663005,-0.171248,11.255059,0.556685,-0.191287,11.363831,-0.033907,-1.649258,11.408390,0.064170,-1.630773, + 10.562783,-0.596362,-0.005037,10.644600,-0.418765,0.025543,10.607263,-0.593287,-0.147351,10.691978,-0.402896,-0.107160, + 10.579309,-0.604896,0.000545,10.661126,-0.427299,0.031126,10.623789,-0.601821,-0.141769,10.708504,-0.411430,-0.101578, + 12.357264,2.621231,-0.554409,12.272820,2.443070,-0.571661,12.315446,2.628106,-0.411318,12.226658,2.437151,-0.437653, + 12.373795,2.612829,-0.548698,12.289351,2.434669,-0.565950,12.331977,2.619705,-0.405607,12.243189,2.428749,-0.431941, + 10.589844,-0.658050,-0.225174,10.523216,-0.805086,-0.253943,10.554726,-0.664529,-0.106798,10.484758,-0.821468,-0.144095, + 10.603662,-0.665170,-0.221084,10.537035,-0.812206,-0.249855,10.568544,-0.671649,-0.102709,10.498577,-0.828588,-0.140005, + 9.777596,-3.026007,-0.301675,9.535727,-2.842343,-0.365870,10.128063,-2.744010,-2.171789,10.354116,-2.659227,-3.930164, + 9.554918,-2.844522,-0.888208,9.641447,-2.601418,-0.823620,10.444727,-2.419368,-3.890332,9.998737,-2.748326,-2.197198, + 10.095987,-2.493853,-2.154612,10.071280,-2.667166,-2.145537,10.426041,-2.591314,-2.180399,10.104167,-2.658643,-2.270035, + 13.002538,2.902208,-2.753521,12.230414,2.755727,0.188287,12.357903,2.654864,0.794874,11.207980,0.883623,0.406424, + 12.051911,2.734689,0.756352,12.171931,1.105205,-3.097260,12.613245,2.812838,-1.134772,11.834124,1.073283,-1.458647, + 12.411297,2.622215,0.269469,12.830174,2.690120,-1.170811,9.599086,-2.817308,-0.819939,9.967024,-2.735777,-0.739900, + 9.631973,-2.808785,-0.944437,11.533178,1.251917,-0.146854,11.484873,1.145597,-0.166893,12.206467,1.938931,-1.293924, + 12.251026,2.037009,-1.275438,11.577517,1.229841,-0.136653,11.529212,1.123521,-0.156692,12.247957,1.918344,-1.284745, + 12.292517,2.016421,-1.266260,12.147259,2.640120,0.187030,12.098954,2.533800,0.166991,12.205006,1.948007,-1.291306, + 12.249566,2.046084,-1.272820,12.191597,2.618045,0.197231,12.143292,2.511725,0.177192,12.246496,1.927419,-1.282127, + 12.291056,2.025496,-1.263642,9.379762,-2.920274,-0.082145,9.466290,-2.677171,-0.017557,12.055415,1.085404,-3.224389, + 11.256216,0.900109,-0.182432,11.342745,1.143212,-0.117844,10.074194,-2.881831,-1.670751,10.582734,-2.773009,-3.877562, + 12.146026,1.325263,-3.184557,11.514604,0.774122,-0.120611,12.284033,0.971622,-3.171787,11.680223,0.938455,-1.500617, + 11.777473,1.192928,-1.458031,9.600695,-3.030054,-0.031149,11.882454,0.837805,-1.454086,11.081060,0.824357,0.623631, + 9.721909,-2.783283,0.027167,11.167589,1.067460,0.688218,11.617227,1.028937,-0.067669,12.182781,2.791742,0.129155, + 12.149658,2.783158,0.254544,12.560281,2.809451,-1.079115,12.593411,2.818037,-1.204531,4.728351,-5.798435,-2.430701, + 5.543075,-5.596833,-5.295134,4.622185,-6.085644,-1.848812,4.557115,-5.819264,-1.863122,5.115544,-5.780122,-3.682049, + 10.661491,-2.662294,-3.731178,9.919247,-2.821551,-0.782352,9.964245,-3.070837,-0.207715,8.056527,-3.805379,-0.736225, + 9.755606,-2.830103,-0.209506,10.277639,-2.776783,-2.112711,8.239385,-3.793918,-1.314283,6.411749,-4.842308,-1.868846, + 6.228891,-4.853770,-1.290788,7.209816,-4.634548,-4.801001,8.071758,-4.022621,-0.502985,8.309905,-3.897199,-0.422088, + 6.468647,-4.953403,-0.980784,6.230501,-5.078825,-1.061681,6.765865,-4.921395,-3.192368,6.672812,-4.878476,-1.778212, + 6.316507,-4.718072,-0.989326,6.109200,-4.858697,-1.078803,6.877631,-4.572313,-3.139470,6.654923,-4.719791,-3.207872, + 7.214854,-4.801799,-4.906115,6.445531,-5.021617,-1.856439,7.298482,-4.434249,-4.859385,6.509645,-4.625165,-1.789465, + 6.302337,-4.765790,-1.878942,7.089436,-4.573891,-4.923643,6.469703,-4.723828,-1.926571,6.814102,-4.874957,-1.845940, + 6.436816,-4.732350,-1.802073,8.416122,-4.134884,-2.804072,8.470854,-3.777605,-2.610333,8.503983,-3.769019,-2.735749, + 8.328747,-3.708361,-1.270788,8.077245,-3.856689,-1.347379,6.766366,-4.783318,-3.199027,6.998911,-4.646164,-3.128208, + 8.351807,-3.753324,-1.267775,8.100305,-3.901652,-1.344366,6.787984,-4.825279,-3.196561,7.020529,-4.688125,-3.125742, + 7.811851,-3.975572,-1.079248,7.978831,-3.880501,-1.031820,7.851420,-3.975091,-1.223037,8.027893,-3.872690,-1.164630, + 7.820732,-3.992582,-1.076265,7.987711,-3.897511,-1.028837,7.860301,-3.992101,-1.220054,8.036775,-3.889699,-1.161647, + 5.610573,-5.448529,-3.361255,5.441009,-5.544722,-3.395380,5.578773,-5.442471,-3.215573,5.398512,-5.545278,-3.260037, + 5.619531,-5.465454,-3.358128,5.449967,-5.561646,-3.392254,5.587731,-5.459395,-3.212447,5.407470,-5.562203,-3.256910, + 7.748858,-4.013818,-1.156653,7.611557,-4.092596,-1.199419,7.715308,-4.018464,-1.037738,7.569756,-4.102136,-1.089985, + 7.756297,-4.027937,-1.154728,7.618995,-4.106714,-1.197495,7.722747,-4.032583,-1.035813,7.577196,-4.116255,-1.088060, + 6.728392,-4.833817,-3.211673,5.369601,-5.560738,-5.445482,4.582503,-5.752636,-2.400782,4.850297,-5.577020,-2.292964, + 5.639134,-5.386104,-5.362885,4.725697,-6.008464,-2.378278,5.031449,-5.744238,-3.714429,5.314643,-5.561768,-3.627686, + 5.178878,-5.658897,-3.642732,5.515564,-5.787696,-3.696379,5.211766,-5.650375,-3.767230,5.749494,-5.357904,-3.544341, + 5.657131,-5.410886,-3.572367,6.080766,-5.247764,-5.242860,6.179430,-5.191168,-5.212923,6.293235,-5.045997,-3.379353, + 6.200945,-5.098937,-3.407356,6.610761,-4.945482,-5.104673,6.710542,-4.888621,-5.079284,5.772201,-5.399180,-3.541169, + 5.679838,-5.452162,-3.569194,6.105176,-5.291948,-5.239809,6.203840,-5.235352,-5.209871,6.315941,-5.087274,-3.376180, + 6.223652,-5.140213,-3.404184,6.635172,-4.989666,-5.101621,6.734952,-4.932805,-5.076232,9.037452,-3.586158,-4.246438, + 8.556027,-3.785428,-2.657110,10.060506,-2.999887,-0.848570,8.264452,-3.683960,-1.247510,8.641737,-3.826567,-1.291377, + 8.297339,-3.675437,-1.372007,10.406272,-2.956329,-2.200272,4.694348,-5.730673,-2.315028,5.071633,-5.873280,-2.358896, + 4.727236,-5.722150,-2.439526,9.864512,-2.997398,-2.295714,9.772223,-3.050338,-2.323717,10.182038,-2.896884,-4.021033, + 10.281818,-2.840023,-3.995645,9.887218,-3.038675,-2.292541,9.794930,-3.091614,-2.320545,10.206449,-2.941067,-4.017982, + 10.306230,-2.884206,-3.992593,8.937058,-3.583369,-2.557254,8.704514,-3.720523,-2.628073,9.766239,-2.937983,-0.837489, + 10.017741,-2.789654,-0.760898,8.915441,-3.541407,-2.559720,8.682896,-3.678562,-2.630539,9.743179,-2.893019,-0.840503, + 9.994681,-2.744691,-0.763911,4.389366,-5.845544,-1.600643,4.657160,-5.669927,-1.492825,8.930693,-3.517686,-4.364946, + 8.143595,-3.709585,-1.320246,8.350903,-3.568960,-1.230768,4.958824,-5.977520,-3.019319,5.495018,-5.788647,-5.427955, + 9.139739,-3.378045,-4.300690,8.286789,-3.965413,-1.297742,9.056110,-3.745595,-4.347419,8.524490,-3.741768,-2.669323, + 8.747199,-3.594289,-2.600921,4.510666,-6.065672,-1.583521,8.635432,-3.943372,-2.653819,7.950457,-3.802493,-0.520107, + 4.809299,-5.905258,-1.484283,8.157765,-3.661868,-0.430630,8.514069,-3.822272,-1.219516,9.901431,-2.777435,-0.855296, + 9.868307,-2.786019,-0.729905,10.240388,-2.759849,-2.075819,10.273518,-2.751263,-2.201235,3.540662,-7.513988,-2.810179, + 1.000089,-10.617466,-3.767179,1.819306,-10.391645,-6.616733,3.428182,-7.716249,-1.982504,3.607443,-7.511683,-1.911744, + 2.247811,-9.168783,-2.384351,2.068549,-9.373349,-2.455111,2.629301,-9.231263,-4.606695,2.445557,-9.097299,-3.183710, + 2.026220,-8.999936,-2.415791,1.881410,-9.209117,-2.493452,2.615875,-8.861780,-4.585472,2.458045,-9.080786,-4.641633, + 3.050096,-9.107672,-6.301063,2.282348,-9.314604,-3.250089,3.004237,-8.730850,-6.287905,2.207678,-8.915524,-3.219596, + 2.062867,-9.124704,-3.297257,2.856495,-8.937560,-6.340559,3.557855,-7.388253,-2.878175,2.208281,-9.033093,-3.347286, + 2.552733,-9.059289,-3.147057,2.175394,-9.041616,-3.222788,3.902307,-7.414448,-2.677946,3.524967,-7.396776,-2.753677, + 2.515242,-9.099722,-4.547927,2.590508,-9.469626,-4.708190,2.548372,-9.091136,-4.673344,4.913588,-6.051414,-3.114469, + 4.787354,-6.201546,-3.140841,4.876040,-6.044103,-2.970220,4.742340,-6.204911,-3.006355,4.927560,-6.064013,-3.109721, + 4.801327,-6.214144,-3.136093,4.890013,-6.056701,-2.965472,4.756312,-6.217509,-3.001606,1.013231,-10.888296,-3.155132, + 0.824068,-10.646578,-3.201430,1.406490,-10.575930,-5.011862,1.631190,-10.430944,-6.766474,0.837561,-10.618089,-3.723173, + 0.982372,-10.408908,-3.645511,1.778931,-10.224235,-6.713820,1.279936,-10.546375,-5.034221,1.437765,-10.327370,-4.978060, + 1.370825,-10.489380,-4.979368,1.732987,-10.501506,-5.018298,1.403712,-10.480858,-5.103866,5.589264,-5.790730,-5.306939, + 4.830637,-5.940284,-2.361776,4.934328,-6.110367,-1.766214,3.376813,-7.511446,-2.236993,4.657466,-5.954880,-1.791862, + 4.335011,-7.298760,-5.742805,5.204099,-5.890301,-3.687798,4.014169,-7.356892,-4.101505,4.973347,-6.119585,-2.293812, + 5.383386,-6.060160,-3.737008,0.887702,-10.607336,-3.654454,1.265041,-10.625009,-3.578722,0.920589,-10.598814,-3.778951, + 3.778529,-7.198524,-2.773849,3.705135,-7.287974,-2.799360,4.591455,-6.623515,-3.891699,4.659159,-6.540999,-3.868165, + 3.816074,-7.231524,-2.766190,3.742681,-7.320974,-2.791701,4.626603,-6.654303,-3.884894,4.694306,-6.571787,-3.861361, + 4.721343,-6.031356,-2.368258,4.647949,-6.120807,-2.393770,4.592320,-6.614559,-3.888475,4.660024,-6.532043,-3.864941, + 4.758888,-6.064356,-2.360600,4.685494,-6.153806,-2.386111,4.627468,-6.645347,-3.881670,4.695171,-6.562831,-3.858137, + 0.656104,-10.702501,-2.919367,0.800915,-10.493320,-2.841706,4.216127,-7.280460,-5.867951,3.422499,-7.467605,-2.824650, + 3.567310,-7.258424,-2.746989,1.324417,-10.729708,-4.519368,1.824791,-10.601056,-6.726978,4.363869,-7.073750,-5.815297, + 3.641980,-7.657504,-2.777481,4.409728,-7.450572,-5.828455,3.831221,-7.446279,-4.148038,3.989051,-7.227273,-4.091877, + 0.843244,-10.866734,-2.881026,4.002476,-7.596756,-4.113101,3.241042,-7.552016,-2.020845,1.022506,-10.662168,-2.810266, + 3.385853,-7.342835,-1.943184,3.805190,-7.440198,-2.711103,4.792940,-5.889685,-2.417285,4.759817,-5.898268,-2.291896, + 5.152444,-5.884233,-3.631148,5.185574,-5.875648,-3.756564,-2.300377,-15.727104,-4.967137,-1.493646,-15.501102,-7.832010, + -2.305632,-15.968250,-4.355437,-2.477233,-15.758964,-4.401797,-1.889956,-15.677458,-6.210204,1.789285,-10.502241,-6.611593, + 1.025287,-10.650117,-3.667734,1.140717,-10.793020,-3.067210,-0.239117,-12.328365,-3.511097,0.849761,-10.667143,-3.098608, + 1.402759,-10.597559,-4.992520,-0.047199,-12.301022,-4.085673,-1.219414,-14.086050,-4.517530,-1.411332,-14.113394,-3.942954, + -0.426629,-13.868906,-7.450438,-0.145491,-12.491715,-3.253458,0.011551,-12.268229,-3.187272,-1.169401,-14.066561,-3.622348, + -1.326442,-14.290048,-3.688534,-0.793339,-14.145635,-5.820709,-0.973281,-13.996529,-4.422236,-1.406675,-13.921944,-3.659590, + -1.528920,-14.146709,-3.732357,-0.844271,-13.778986,-5.809587,-0.978651,-14.014275,-5.860668,-0.344959,-14.027872,-7.534742, + -1.113101,-14.230941,-4.483607,-0.428832,-13.657428,-7.532062,-1.228032,-13.840825,-4.464364,-1.350277,-14.065590,-4.537131, + -0.554450,-13.879373,-7.579915,-1.214472,-13.961059,-4.588814,-0.843514,-13.939817,-4.489367,-1.247360,-13.969582,-4.464315, + 0.339596,-12.689378,-5.523219,0.225947,-12.324909,-5.373466,0.259077,-12.316324,-5.498883,-0.005414,-12.181252,-4.052404, + -0.164977,-12.430559,-4.111622,-0.851428,-14.022347,-5.843858,-0.703895,-13.791826,-5.789104,0.034420,-12.211321,-4.043940, + -0.125142,-12.460628,-4.103158,-0.814146,-14.050403,-5.836302,-0.666612,-13.819881,-5.781548,-0.368565,-12.622721,-3.832181, + -0.260985,-12.460619,-3.795855,-0.325156,-12.620588,-3.974842,-0.212734,-12.446661,-3.928459,-0.353455,-12.633831,-3.827149, + -0.245875,-12.471729,-3.790823,-0.310046,-12.631700,-3.969810,-0.197624,-12.457772,-3.923427,-1.602136,-15.133099,-5.929580, + -1.712302,-15.295900,-5.952575,-1.641426,-15.125825,-5.785794,-1.757858,-15.300260,-5.818300,-1.587000,-15.144085,-5.924415, + -1.697166,-15.306887,-5.947410,-1.626290,-15.136811,-5.780629,-1.742723,-15.311246,-5.813134,-0.404868,-12.692348,-3.904684, + -0.492863,-12.826581,-3.938221,-0.439701,-12.698275,-3.786195,-0.532535,-12.841455,-3.828590,-0.392234,-12.701599,-3.901053, + -0.480229,-12.835833,-3.934592,-0.427067,-12.707526,-3.782565,-0.519902,-12.850706,-3.824960,-0.863471,-14.085299,-5.850506, + -1.657397,-15.559376,-7.986251,-2.453225,-15.745592,-4.943467,-2.292310,-15.461488,-4.856456,-1.493110,-15.278091,-7.924154, + -2.216048,-15.910944,-4.889944,-1.979406,-15.684910,-6.246965,-1.806356,-15.390282,-6.181639,-1.886656,-15.537354,-6.185452, + -1.524816,-15.513716,-6.222019,-1.853768,-15.528831,-6.309951,-1.505336,-15.011608,-6.121680,-1.564576,-15.101817,-6.143505, + -1.160028,-14.951333,-7.819904,-1.096747,-14.854970,-7.796591,-1.156590,-14.480544,-5.993198,-1.215783,-14.570681,-6.015005, + -0.818113,-14.437665,-7.716929,-0.753687,-14.341068,-7.698159,-1.467402,-15.038507,-6.113501,-1.526642,-15.128716,-6.135325, + -1.119308,-14.980118,-7.811491,-1.056027,-14.883755,-7.788177,-1.118656,-14.507442,-5.985019,-1.177849,-14.597579,-6.006826, + -0.777394,-14.466450,-7.708516,-0.712968,-14.369853,-7.689745,0.745586,-12.083878,-7.018581,0.308744,-12.300271,-5.418649, + 1.232528,-10.756285,-3.711582,-0.075145,-12.184553,-4.032459,0.328701,-12.154789,-4.057509,-0.042257,-12.176030,-4.156957, + 1.600287,-10.712516,-5.057460,-2.366332,-15.668661,-4.860542,-1.962486,-15.638897,-4.885592,-2.333444,-15.660138,-4.985040, + 1.133967,-10.992523,-5.149331,1.074774,-11.082661,-5.171139,1.472444,-10.949644,-6.873063,1.536870,-10.853048,-6.854292, + 1.171902,-11.019421,-5.141152,1.112708,-11.109558,-5.162959,1.513163,-10.978429,-6.864649,1.577590,-10.881832,-6.845879, + 0.561041,-11.944605,-5.342284,0.413508,-12.175125,-5.397038,0.939856,-10.826180,-3.709103,1.099419,-10.576872,-3.649886, + 0.523759,-11.916549,-5.349840,0.376225,-12.147070,-5.404593,0.900021,-10.796110,-3.717567,1.059584,-10.546804,-3.658350, + -2.631867,-15.826712,-4.138693,-2.470953,-15.542607,-4.051682,0.626502,-12.081039,-7.144839,-0.169325,-12.267257,-4.102056, + -0.047081,-12.042492,-4.029288,-1.983603,-15.851224,-5.529194,-1.447906,-15.707875,-7.941078,0.752120,-11.859096,-7.096987, + 0.067851,-12.432609,-4.048532,0.835993,-12.229540,-7.099667,0.262318,-12.275997,-5.436123,0.396698,-12.040709,-5.385042, + -2.429389,-15.970051,-4.094870,0.447629,-12.407357,-5.396163,-0.347968,-12.348376,-3.297281,-2.233678,-15.687224,-4.014440, + -0.225723,-12.123611,-3.224514,0.207670,-12.198196,-3.987161,0.994387,-10.626001,-3.745504,0.961263,-10.634586,-3.620114, + 1.359879,-10.594471,-4.958063,1.393010,-10.585884,-5.083479,-11.185730,22.588211,-0.509510,-11.183745,22.656212,-0.504331, + -11.100036,22.652107,-0.482499,-11.102020,22.584105,-0.487679,-11.261907,22.563742,-0.238173,-11.258128,22.638527,-0.238595, + -11.158975,22.638792,-0.242868,-11.161145,22.564398,-0.248535,-11.237244,22.581923,-0.232105,-11.235420,22.618023,-0.232308, + -11.183946,22.595901,-0.252401,-11.845373,22.438070,2.145572,-11.798944,22.449081,1.998360,-11.522664,22.499447,1.058013, + -11.567193,22.490517,1.045639,-11.831942,22.430574,2.019690,-11.634484,22.482948,1.384365,-11.787412,22.439505,2.032064, + -11.830894,22.466484,2.022425,-11.566146,22.526426,1.048374,-12.299427,22.669367,0.781568,-12.118572,22.585684,1.141296, + -12.126365,22.633081,1.348445,-12.072755,22.582695,1.734870,-11.821191,22.573662,1.255228,-12.014578,22.548105,1.028843, + -11.766730,22.569347,1.365710,-11.798944,22.449081,1.998360,-11.634484,22.482948,1.384365,-12.299427,22.669367,0.781568, + -12.118572,22.585684,1.141296,-12.126365,22.633081,1.348445,-12.072755,22.582695,1.734870,-11.821191,22.573662,1.255228, + -12.014578,22.548105,1.028843,-11.766730,22.569347,1.365710,-11.547975,-16.404129,-4.394928,-11.603910,-16.418831,-4.410710, + -12.255944,-16.576872,-1.890815,-12.052199,-16.528008,-2.585070,-12.232261,-16.572123,-1.884234,-12.255387,-16.557774,-1.889360, + -11.602596,-16.373819,-4.407282,-12.720055,-16.342344,-3.176842,-12.216660,-16.561874,-1.971076,-12.052199,-16.528008,-2.585070, + -12.720055,-16.342344,-3.176842,-12.216660,-16.561874,-1.971076,-18.427729,17.054869,-8.106833,-16.198736,13.759113,-7.661562, + -16.276131,13.703901,-7.682789,-18.505123,16.999657,-8.128059,-18.452774,17.052765,-8.010043,-16.223782,13.757009,-7.564773, + -16.301176,13.701797,-7.585999,-18.530169,16.997553,-8.031270,-19.213453,16.501377,-8.272581,-16.984257,13.205458,-7.827633, + -17.061651,13.150246,-7.848859,-19.290848,16.446165,-8.293808,-19.238499,16.499271,-8.175791,-17.009300,13.203353,-7.730843, + -17.086697,13.148142,-7.752069,-19.315893,16.444061,-8.197018,-19.982121,15.968082,-8.379491,-17.769032,12.673190,-7.878481, + -17.846426,12.617979,-7.899707,-20.059517,15.912870,-8.400718,-20.007166,15.965979,-8.282701,-17.794075,12.671085,-7.781691, + -17.871471,12.615874,-7.802917,-20.084560,15.910767,-8.303927,-17.684708,17.587902,-7.875013,-15.471619,14.293009,-7.374004, + -15.549013,14.237797,-7.395230,-17.762104,17.532690,-7.896239,-17.709753,17.585796,-7.778223,-15.496663,14.290904,-7.277214, + -15.574058,14.235693,-7.298440,-17.787148,17.530586,-7.799449,-16.893827,18.171198,-7.532486,-14.680738,14.876305,-7.031476, + -14.780683,14.805006,-7.058887,-16.993773,18.099899,-7.559897,-16.918873,18.169094,-7.435696,-14.705783,14.874199,-6.934687, + -14.805727,14.802902,-6.962098,-17.018818,18.097795,-7.463107,-20.021122,15.908638,-8.426469,-16.915789,18.123913,-7.574790, + -16.832121,17.999348,-7.555849,-19.967236,15.828411,-8.414269,-20.046167,15.906534,-8.329679,-16.945745,18.120892,-7.462333, + -16.862078,17.996325,-7.443392,-19.992281,15.826307,-8.317480,-17.882818,12.725088,-7.942389,-14.777483,14.940363,-7.090711, + -14.723598,14.860136,-7.078512,-17.828932,12.644861,-7.930190,-17.907862,12.722983,-7.845599,-14.802528,14.938259,-6.993921, + -14.748643,14.858032,-6.981722,-17.853977,12.642757,-7.833400,-18.221363,13.229119,-8.019031,-15.116028,15.444395,-7.167352, + -15.040510,15.331963,-7.150256,-18.145844,13.116688,-8.001935,-18.246407,13.227015,-7.922240,-15.141072,15.442289,-7.070562, + -15.065556,15.329859,-7.053466,-18.170889,13.114583,-7.905144,-14.761314,15.303089,-9.104380,-17.533432,13.353092,-9.864070, + -18.727154,15.089308,-10.135201,-16.430748,17.045197,-7.416106,-19.256172,15.030148,-8.187461,-17.420366,18.334637,-5.392904, + -15.061255,14.800027,-4.835737,-15.161954,14.727520,-4.867769,-17.526533,18.258326,-5.425786,-17.450726,18.311668,-5.250496, + -15.100592,14.793819,-4.702799,-15.201290,14.721312,-4.734830,-17.556894,18.235357,-5.283377,-19.607386,17.109272,-4.649916, + -17.155468,13.324883,-4.228381,-17.094460,13.363096,-4.162756,-19.545031,17.156363,-4.591752,-19.545589,17.125141,-4.729016, + -17.120571,13.331951,-4.264938,-17.059563,13.370164,-4.199313,-19.483234,17.172234,-4.670852,-20.341072,16.571930,-5.032989, + -17.892839,12.802621,-4.572158,-17.813541,12.856409,-4.554622,-20.261774,16.625719,-5.015453,-20.320364,16.575926,-5.118148, + -17.880749,12.805074,-4.634358,-17.801451,12.858863,-4.616823,-20.241066,16.629715,-5.100612,-18.875233,17.701149,-4.043985, + -16.408892,13.954353,-3.465393,-16.474237,13.902772,-3.515971,-18.940578,17.649569,-4.094564,-18.918531,17.683336,-3.969879, + -16.452190,13.936540,-3.391288,-16.517534,13.884958,-3.441867,-18.983875,17.631754,-4.020458,-18.291527,18.282127,-3.575940, + -15.736031,14.477455,-2.997415,-15.803344,14.425085,-3.044481,-18.358839,18.229759,-3.623006,-18.338053,18.264053,-3.489287, + -15.782557,14.459380,-2.910763,-15.849870,14.407011,-2.957828,-18.405365,18.211685,-3.536353,-21.054262,15.955412,-5.202157, + -18.167723,18.102900,-3.483823,-18.139246,18.060501,-3.477376,-21.026020,15.912537,-5.198358,-21.077652,15.960316,-5.158419, + -18.220592,18.116583,-3.414219,-18.185823,18.059885,-3.398663,-21.041382,15.903763,-5.150692,-18.745878,12.386710,-4.947958, + -15.848000,14.586843,-3.036469,-15.796156,14.509657,-3.024732,-18.695057,12.309560,-4.941122,-18.770351,12.378056,-4.863698, + -15.889499,14.570721,-2.959178,-15.843525,14.488867,-2.933852,-18.722494,12.297523,-4.842194,-21.471832,15.910212,-5.867635, + -18.874811,12.667028,-4.890489,-18.947601,12.613157,-4.905677,-21.537565,15.869808,-5.834951,-21.513721,16.007248,-5.814346, + -18.679968,12.374210,-4.838837,-18.752903,12.320617,-4.851892,-21.580091,15.966450,-5.781345,-19.580870,13.597031,-4.630150, + -19.645798,13.589579,-4.769940,-19.657284,13.550061,-4.592154,-19.722212,13.542609,-4.731945,-18.129864,17.964020,-3.470869, + -15.894209,14.633511,-2.972049,-15.956129,14.585337,-3.015345,-18.165070,17.935015,-3.506109,-18.302761,18.221306,-3.509830, + -15.781631,14.464168,-2.944632,-15.843553,14.415994,-2.987928,-18.337967,18.192299,-3.545069,-16.844915,15.255526,-2.104398, + -16.815193,15.301447,-2.250940,-16.929905,15.189405,-2.163822,-16.882505,15.249077,-2.298006,-19.510838,15.988821,-10.271187, + -19.466047,15.922594,-10.262242,-19.543442,15.867384,-10.283468,-19.588232,15.933609,-10.292414,-19.956579,15.940811,-8.347505, + -19.911789,15.874586,-8.338560,-19.989183,15.819374,-8.359787,-20.033974,15.885599,-8.368731,-18.490187,16.716930,-9.991260, + -18.445396,16.650703,-9.982315,-18.522791,16.595491,-10.003541,-18.567581,16.661718,-10.012486,-18.946194,16.661596,-8.070394, + -18.901403,16.595371,-8.061448,-18.978798,16.540159,-8.082675,-19.023588,16.606384,-8.091619,-17.474611,17.441416,-9.712725, + -17.429821,17.375191,-9.703780,-17.507215,17.319979,-9.725007,-17.552006,17.386206,-9.733952,-17.920053,17.374519,-7.914578, + -17.875263,17.308294,-7.905633,-17.952658,17.253082,-7.926860,-17.997448,17.319307,-7.935805,-16.457392,18.167078,-9.433739, + -16.412600,18.100851,-9.424794,-16.509781,18.031525,-9.451447,-16.554571,18.097752,-9.460392,-16.933184,18.097630,-7.518299, + -16.888393,18.031404,-7.509354,-16.965788,17.976192,-7.530581,-17.010578,18.042419,-7.539525,-19.395452,14.977129,-8.284826, + -16.290119,17.192404,-7.433148,-16.236233,17.112177,-7.420949,-19.341566,14.896902,-8.272628,-19.443235,14.972681,-8.103005, + -16.337902,17.187958,-7.251327,-16.284016,17.107731,-7.239128,-19.389349,14.892454,-8.090806,-18.705173,13.953841,-8.140040, + -15.599838,16.169117,-7.288362,-15.551766,16.090038,-7.257955,-18.657387,13.877674,-8.116155,-18.740555,13.967889,-8.047570, + -15.635221,16.183165,-7.195892,-15.587149,16.104086,-7.165484,-18.692770,13.891721,-8.023685,-19.804909,15.928833,-8.973305, + -19.780983,15.892096,-8.968765,-19.852961,15.851604,-8.917106,-19.876886,15.888344,-8.921645,-19.496279,16.235870,-8.252209, + -19.472353,16.199133,-8.247668,-19.544331,16.158642,-8.196009,-19.568256,16.195381,-8.200549,-18.777401,16.665367,-8.668260, + -18.753374,16.628700,-8.663692,-18.816896,16.594242,-8.609714,-18.840923,16.630909,-8.614282,-18.439667,16.989632,-7.962418, + -18.415741,16.952894,-7.957878,-18.513147,16.887827,-7.960565,-18.537081,16.924559,-7.965106,-17.806831,17.354214,-8.425306, + -17.782906,17.317476,-8.420766,-17.854883,17.276987,-8.369106,-17.878809,17.313725,-8.373647,-17.492882,17.665045,-7.702751, + -17.468958,17.628307,-7.698211,-17.570328,17.558716,-7.714199,-17.594252,17.595455,-7.718739,-16.795008,18.012411,-8.149183, + -16.818520,18.049183,-8.155319,-16.781044,18.086775,-8.073641,-16.757532,18.050001,-8.067505,-17.461142,17.643955,-7.694996, + -17.484653,17.680729,-7.701133,-17.334225,17.780798,-7.696469,-17.310713,17.744024,-7.690333,-17.815439,17.287205,-8.410976, + -17.838951,17.323978,-8.417112,-17.801476,17.361568,-8.335434,-17.777964,17.324797,-8.329298,-18.493021,16.907837,-7.978002, + -18.516533,16.944609,-7.984139,-18.371445,17.042452,-7.971226,-18.347933,17.005678,-7.965089,-18.806641,16.580889,-8.677663, + -18.830254,16.617590,-8.683826,-18.801233,16.649149,-8.604467,-18.777620,16.612448,-8.598303,-19.464537,16.214779,-8.244453, + -19.488049,16.251551,-8.250589,-19.450573,16.289143,-8.168912,-19.427061,16.252369,-8.162775,-19.773190,15.901293,-8.985443, + -19.808447,15.877016,-8.995945,-19.857115,15.914812,-8.916806,-19.821859,15.939089,-8.906303,-19.587048,15.360416,-8.294729, + -19.622305,15.336140,-8.305231,-19.677660,15.391418,-8.247189,-19.642403,15.415695,-8.236687,-16.730150,18.051296,-8.131556, + -16.763632,18.024469,-8.141654,-16.822777,18.076832,-8.084656,-16.789295,18.103659,-8.074557,-16.516542,17.553450,-7.452545, + -16.550024,17.526623,-7.462645,-16.609171,17.578983,-7.405646,-16.575687,17.605810,-7.395547,-20.671350,13.993874,-5.200066, + -20.108625,14.508125,-5.439913,-20.159561,14.603225,-5.329290,-20.577047,13.971685,-5.210247,-19.833542,13.284204,-4.907219, + -19.607044,13.598186,-5.223985,-19.568804,13.482649,-5.257887,-19.903240,13.344582,-4.938612,-16.306524,15.588791,-3.203677, + -16.368616,15.632402,-3.227594,-15.590393,16.195028,-7.196121,-16.360409,15.669018,-3.215876,-16.829323,15.252361,-2.231426, + -16.917147,15.297869,-2.268058,-15.552948,16.123938,-7.192104,-16.883209,15.332588,-2.243625,-19.527788,13.551843,-5.256535, + -19.811436,13.338413,-4.852040,-19.648060,13.528993,-5.225338,-19.881132,13.398790,-4.883434,-19.135168,13.790101,-6.463560, + -19.119486,13.835747,-6.457417,-19.167593,13.911144,-6.468240,-19.211420,13.846518,-6.484162,-15.147507,15.057116,-4.812655, + -18.465797,12.670120,-6.367278,-18.359386,12.565516,-6.497868,-15.031667,14.968403,-4.931345,-15.103956,15.073534,-4.943394, + -18.435163,12.676207,-6.511341,-15.625354,16.085629,-7.195115,-15.662800,16.156719,-7.199132,-19.993540,15.898050,-8.375027, + -19.948750,15.831825,-8.366081,-18.373486,17.082035,-7.581072,-17.486790,17.757748,-7.148555,-18.401785,17.047472,-7.587572, + -18.415058,17.067234,-7.590577,-18.695358,16.961285,-7.038306,-17.762934,17.659283,-6.535537,-18.639269,16.979830,-7.055372, + -18.652462,16.999599,-7.058693,-18.720394,16.894104,-7.455990,-18.710316,16.874180,-7.446717,-18.730150,16.892834,-7.412419, + -17.473305,17.738121,-7.145597,-18.367664,17.184862,-7.220930,-18.357504,17.164944,-7.211975,-18.345535,17.167643,-7.254926, + -17.445034,17.772915,-7.140472,-16.900812,16.547523,-8.902766,-16.845991,16.465904,-8.890354,-16.953976,16.408123,-8.793364, + -17.008795,16.489740,-8.805777,-17.097635,16.531477,-8.114816,-17.042814,16.449858,-8.102404,-17.089621,16.397217,-8.241846, + -17.144440,16.478834,-8.254259,-17.381861,16.223604,-8.908094,-17.327040,16.141985,-8.895682,-17.373846,16.089344,-9.035125, + -17.428667,16.170961,-9.047538,-17.532345,16.202112,-8.360647,-17.477526,16.120493,-8.348234,-17.585508,16.062712,-8.251245, + -17.640327,16.144329,-8.263657,-18.390018,12.559429,-6.353805,-16.856430,18.063417,-7.480615,-17.745491,15.826426,-9.913887, + -17.691652,15.745277,-9.899131,-17.794630,15.671816,-9.927374,-17.848469,15.752964,-9.942130,-18.179123,15.806047,-8.108381, + -18.125284,15.724899,-8.093625,-18.197672,15.654007,-8.240085,-18.251511,15.735157,-8.254841,-18.334913,15.405945,-10.075544, + -18.281075,15.324797,-10.060787,-18.384050,15.251335,-10.089030,-18.437889,15.332483,-10.103786,-18.787420,15.352852,-8.401821, + -18.733582,15.271702,-8.387064,-18.867147,15.195671,-8.297091,-18.920986,15.276819,-8.311847,-17.057867,13.257042,-7.081196, + -17.099138,13.315894,-7.081538,-17.052052,13.343543,-6.996907,-17.010780,13.284691,-6.996565,-17.154066,13.171141,-6.462030, + -17.195337,13.229992,-6.462372,-17.128420,13.282249,-6.518347,-17.087149,13.223397,-6.518005,-16.645439,13.518833,-6.908860, + -16.686710,13.577685,-6.909202,-16.619793,13.629943,-6.965177,-16.578522,13.571091,-6.964834,-16.710121,13.465764,-6.427796, + -16.751390,13.524616,-6.428138,-16.704304,13.552265,-6.343509,-16.663033,13.493413,-6.343165,-15.851516,14.445266,-9.413344, + -15.954329,14.594221,-9.426025,-15.851353,14.667683,-9.397783,-15.748539,14.518727,-9.385101,-16.299303,14.401281,-7.748677, + -16.402117,14.550236,-7.761359,-16.268551,14.626267,-7.851333,-16.165737,14.477313,-7.838652,-15.252397,14.872665,-9.249028, + -15.355210,15.021620,-9.261709,-15.252234,15.095081,-9.233467,-15.149420,14.946127,-9.220785,-15.626780,14.861794,-7.690835, + -15.729593,15.010748,-7.703516,-15.657206,15.081640,-7.557057,-15.554393,14.932686,-7.544376,-18.648668,15.202393,-9.890748, + -18.538031,15.037674,-9.865702,-18.696936,14.924314,-9.909284,-18.807571,15.089033,-9.934330,-18.723490,15.180540,-9.703951, + -18.612852,15.015821,-9.678905,-18.747025,14.920107,-9.715703,-18.857662,15.084826,-9.740749,-17.683729,13.495363,-9.257756, + -17.600431,13.371347,-9.238899,-17.713333,13.290806,-9.269864,-17.796631,13.414822,-9.288721,-17.727114,13.491717,-9.090088, + -17.643816,13.367702,-9.071230,-17.761663,13.283632,-9.103552,-17.844963,13.407647,-9.122409,-15.646749,15.726122,-9.134014, + -15.508135,15.540392,-9.233302,-15.645411,15.467413,-9.291288,-15.784024,15.653143,-9.192000,-15.656107,15.676136,-9.031134, + -15.512343,15.493143,-9.128245,-15.649619,15.420164,-9.186232,-15.793383,15.603157,-9.089120,-16.253937,17.088366,-8.148830, + -16.151978,16.936565,-8.125749,-16.269829,16.855099,-8.140942,-16.371788,17.006897,-8.164023,-16.300097,17.084486,-7.970434, + -16.198139,16.932688,-7.947352,-16.334686,16.835278,-7.984802,-16.436646,16.987076,-8.007884,-16.267347,17.013649,-7.868206, + -16.114475,16.786051,-7.833598,-16.212420,16.716179,-7.860460,-16.365292,16.943779,-7.895068,-16.302898,17.010662,-7.730810, + -16.150026,16.783064,-7.696203,-16.253679,16.709120,-7.724631,-16.406551,16.936718,-7.759239,-16.080593,16.838015,-8.063725, + -15.927722,16.610416,-8.029118,-16.011917,16.552958,-8.035079,-16.164789,16.780556,-8.069687,-16.116146,16.835028,-7.926330, + -15.963274,16.607430,-7.891722,-16.066164,16.534029,-7.919941,-16.219036,16.761627,-7.954549,-14.888783,15.200869,-8.659500, + -15.094075,15.054417,-8.715805,-15.157893,15.149431,-8.730252,-14.952600,15.295881,-8.673947,-14.924334,15.197882,-8.522105, + -15.143898,15.041250,-8.582323,-15.207716,15.136263,-8.596771,-14.988152,15.292894,-8.536552,-14.970507,15.146482,-8.939048, + -15.176524,14.999514,-8.995551,-15.215857,15.058073,-9.004456,-15.009839,15.205042,-8.947952,-15.006061,15.148588,-8.768153, + -15.228261,14.990074,-8.829095,-15.267593,15.048634,-8.837999,-15.045393,15.207146,-8.777058,-17.494074,13.468936,-8.963780, + -17.721220,13.306895,-9.026078,-17.801218,13.425997,-9.044188,-17.574070,13.588038,-8.981891,-17.540728,13.469749,-8.795786, + -17.762928,13.311236,-8.856728,-17.839916,13.425858,-8.874157,-17.617716,13.584372,-8.813215,-16.491968,16.887016,-8.444849, + -16.284039,17.035349,-8.387821,-16.244705,16.976789,-8.378917,-16.452635,16.828457,-8.435945,-16.549885,16.873169,-8.280087, + -16.327682,17.031681,-8.219146,-16.288351,16.973122,-8.210241,-16.510551,16.814610,-8.271183,-17.752533,15.928827,-9.178140, + -17.530333,16.087339,-9.117198,-17.490999,16.028782,-9.108294,-17.713202,15.870268,-9.169235,-17.813305,15.912943,-9.014161, + -17.585699,16.073349,-8.964644,-17.546366,16.014790,-8.955740,-17.773972,15.854383,-9.005257,-16.754684,15.880936,-9.006024, + -16.858461,15.790745,-9.234751,-16.889183,15.785131,-9.208284,-17.317198,15.720516,-9.678629,-17.286476,15.726130,-9.705095, + -17.427488,15.811584,-9.787338,-17.007223,15.182472,-9.459343,-16.976501,15.188084,-9.485811,-16.973654,15.022230,-9.481225, + -16.860664,15.603447,-9.236406,-16.835606,15.608025,-9.257995,-16.829294,15.551933,-9.262563,-16.854351,15.547356,-9.240975, + -17.213831,15.495937,-9.633629,-17.188772,15.500515,-9.655217,-17.197498,15.556442,-9.653486,-17.222557,15.551865,-9.631899, + -16.962328,15.130322,-9.470940,-16.937271,15.134899,-9.492528,-16.974215,15.134645,-9.535465,-16.999273,15.130068,-9.513877, + -17.103022,15.834639,-9.498649,-17.077963,15.839216,-9.520237,-17.041620,15.843960,-9.477047,-17.066679,15.839382,-9.455459, + -15.088202,14.600531,-5.898833,-15.132175,14.659891,-5.900221,-15.187236,14.620083,-5.983561,-15.143262,14.560721,-5.982173, + -15.008891,14.640205,-6.523580,-15.040752,14.683388,-6.525512,-15.111798,14.629644,-6.466272,-15.079937,14.586462,-6.464340, + -15.506027,14.293642,-6.059512,-15.550001,14.353003,-6.060901,-15.615206,14.303497,-6.000647,-15.571232,14.244137,-5.999259, + -15.430983,14.328101,-6.539854,-15.462844,14.371284,-6.541786,-15.512063,14.335713,-6.624112,-15.480203,14.292531,-6.622180, + -16.726572,14.620356,-7.468470,-16.701529,14.622459,-7.565260,-16.803967,14.565144,-7.489697,-16.778923,14.567247,-7.586486, + -18.151112,14.849682,-7.849863,-18.126066,14.851788,-7.946653,-18.228506,14.794471,-7.871089,-18.203461,14.796576,-7.967879, + -16.081215,16.268063,-4.986731,-16.039822,16.274595,-5.126615,-16.175690,16.200037,-5.016782,-16.134296,16.206570,-5.156666, + -16.528633,16.133570,-3.240217,-16.482107,16.151644,-3.326869,-16.595947,16.081202,-3.287283,-16.549421,16.099276,-3.373935, + -19.840771,16.832205,-4.914820,-19.799404,16.819771,-5.006332,-19.771160,16.776897,-5.002533,-17.475004,13.283093,-4.460239, + -17.448481,13.181937,-4.340281,-17.417362,13.195589,-4.452486,-20.557430,15.941420,-6.632238,-20.512583,15.875235,-6.623275, + -20.588327,15.820255,-6.650271,-20.633175,15.886440,-6.659234,-21.444427,16.073786,-5.023762,-20.767570,15.866289,-5.558951, + -21.488449,16.000866,-5.071023,-20.804558,15.731089,-5.569432,-21.467302,16.124983,-5.081448,-20.844358,15.792444,-5.602948, + -20.727768,15.804934,-5.525435,-21.511324,16.052063,-5.128708,-18.405338,12.577048,-6.157099,-18.363201,12.643706,-6.141187, + -18.271196,12.579150,-6.117155,-18.313334,12.512492,-6.133067,-19.104439,11.962071,-4.610102,-18.657696,12.438870,-5.017236, + -19.010319,11.939230,-4.620529,-18.532076,12.429069,-4.955518,-19.123436,11.910686,-4.669014,-18.556726,12.384733,-5.017957, + -18.633045,12.483206,-4.954797,-19.029316,11.887844,-4.679441,-18.915226,17.585133,-3.961551,-18.837791,17.530071,-4.058046, + -18.866175,17.572659,-4.063437,-21.287849,15.940588,-5.144040,-18.530666,12.329197,-4.922707,-18.608061,12.273985,-4.943933, + -21.365244,15.885376,-5.165267,-21.328686,15.937157,-4.986218,-18.604628,12.299956,-4.788299,-18.709049,12.225464,-4.816938, + -21.406080,15.881945,-5.007445,-20.085896,14.526603,-5.179046,-20.009747,14.556026,-5.321909,-20.190319,14.452110,-5.207685, + -20.087143,14.500815,-5.343136,-20.557831,14.817633,-5.515758,-20.621698,14.829948,-5.387497,-20.550720,14.873575,-5.422790, + -20.628462,14.774218,-5.480637,-20.073118,14.559036,-5.337276,-20.560822,14.008741,-5.140709,-20.195068,14.552313,-5.431928, + -20.655123,14.030931,-5.130527,-19.773710,14.617532,-6.466688,-19.737064,14.750861,-6.448585,-19.815039,14.805231,-6.469861, + -19.857178,14.738574,-6.485773,-19.493317,13.443332,-5.048168,-19.495592,13.417457,-5.208282,-19.418198,13.472669,-5.187056, + -19.597740,13.368838,-5.076807,-18.644495,17.258810,-3.989413,-16.593603,14.139924,-3.440696,-16.653900,14.094182,-3.482540, + -18.671358,17.236986,-4.021469,-18.878595,17.578640,-3.950427,-16.479933,13.972220,-3.412300,-16.540230,13.926478,-3.454145, + -18.904312,17.557640,-3.982085,-17.551926,14.966789,-2.915591,-17.521896,15.013166,-3.061859,-17.634686,14.904007,-2.973022, + -17.587444,14.963442,-3.107346,-16.906454,15.295918,-2.298601,-16.850155,15.207939,-2.288938,-16.952150,15.283827,-2.231261, + -16.911631,15.197653,-2.210742,-17.830845,14.872744,-3.260323,-17.769367,14.883030,-3.338520,-17.790327,14.786571,-3.239804, + -17.728849,14.796856,-3.318000,-18.613422,14.042925,-4.799330,-18.551947,14.053211,-4.877527,-18.572905,13.956751,-4.778810, + -18.511427,13.967036,-4.857007,-16.434464,13.998105,-3.482446,-16.492409,14.084995,-3.493616,-16.479481,13.978350,-3.376763, + -16.647837,16.779022,-8.034811,-15.924186,16.074280,-7.846177,-16.487696,16.902920,-7.927387,-16.002962,16.115154,-7.632862, + -16.546831,16.894758,-7.719833,-15.928993,16.175062,-7.553746,-16.476751,15.552298,-7.509029,-16.441370,15.538250,-7.601500, + -16.428761,15.474035,-7.480448,-16.393377,15.459988,-7.572918,-17.879854,17.442892,-7.794987,-17.849895,17.445915,-7.907444, + -17.807793,17.335526,-7.778675,-17.777834,17.338549,-7.891132,-17.378862,16.436892,-7.592504,-17.331079,16.441339,-7.774325, + -17.324978,16.356665,-7.580305,-17.277195,16.361113,-7.762126,-16.305031,14.596203,-7.493348,-16.279985,14.598307,-7.590138, + -16.229513,14.483770,-7.476252,-16.204468,14.485875,-7.573042,-16.113306,13.987760,-7.454836,-16.088261,13.989863,-7.551626, + -16.059420,13.907533,-7.442637,-16.034374,13.909637,-7.539427,-16.465586,16.957542,-7.665821,-15.954342,16.241112,-7.334731, + -16.470547,16.987810,-7.444854,-14.756866,14.895111,-7.001107,-16.318733,15.554211,-7.565778,-17.430906,18.071434,-5.879256, + -16.421173,15.496895,-7.490214,-14.764068,14.890989,-5.556390,-17.965872,17.521667,-6.615456,-15.451310,14.351635,-6.590783, + -15.544750,14.320876,-6.029545,-18.994745,16.608660,-8.073218,-19.159830,16.725670,-6.919504,-16.160559,17.027264,-7.322494, + -16.239502,16.910479,-5.807265,-17.015951,13.297265,-7.042740,-16.396128,15.498999,-7.587004,-19.755007,16.808357,-4.873492, + -18.239397,17.177923,-7.547740,-18.586035,16.930397,-7.642934,-18.875134,16.837778,-7.057305,-17.532902,17.842281,-6.418539, + -17.337051,17.859001,-7.067729,-18.506508,17.272829,-6.372783,-15.116906,14.602635,-5.924828,-15.049566,14.614614,-6.488092, + -16.004084,14.006436,-5.523345,-15.636493,14.229774,-7.318810,-16.938976,13.316206,-7.634470,-19.871355,15.887035,-8.344855, + -16.343779,15.552107,-7.468987,-16.964378,13.305485,-6.435382,-16.869717,18.012196,-7.485166,-14.808583,14.901293,-7.014355, + -17.102322,16.550392,-7.746875,-17.439075,18.021326,-5.882460,-17.127365,16.548288,-7.650085,-14.821184,14.897554,-5.571027, + -17.652998,17.603178,-7.299786,-17.972403,17.506901,-6.617466,-15.477083,14.353138,-6.597419,-15.568105,14.324708,-6.037747, + -18.971756,16.583147,-8.068105,-19.128586,16.704145,-6.911888,-16.185884,16.994360,-7.330796,-16.268385,16.880377,-5.816445, + -17.018421,13.335859,-7.042495,-17.024925,16.605604,-7.725649,-18.238167,17.169653,-7.547560,-18.577190,16.927376,-7.641893, + -18.863487,16.836464,-7.055957,-17.548969,17.820715,-6.423165,-17.349390,17.841135,-7.068718,-18.059950,17.202291,-7.888546, + -18.490965,17.239660,-6.369483,-15.148703,14.600622,-5.936677,-15.083748,14.610518,-6.497026,-16.034781,14.030222,-5.530771, + -15.665503,14.249581,-7.325887,-16.937246,13.359162,-7.633089,-19.916145,15.953262,-8.353800,-17.049971,16.603500,-7.628859, + -16.971621,13.344535,-6.436407,-19.567543,16.677738,-6.162428,-19.522627,16.611603,-6.153438,-19.595945,16.557196,-6.187394, + -19.640860,16.623329,-6.196385,-20.307262,17.059633,-4.837229,-19.771606,16.776693,-5.132231,-20.316227,16.966846,-4.865495, + -19.797489,16.653065,-5.134796,-20.310337,17.083332,-4.914046,-19.839420,16.714815,-5.164805,-19.729673,16.714943,-5.102222, + -20.319304,16.990545,-4.942313,-20.039389,16.824162,-4.946182,-20.021618,16.912872,-4.915644,-20.033821,16.943954,-4.985334, + -20.051592,16.855246,-5.015874,-18.547775,17.402334,-5.901699,-18.502932,17.336147,-5.892737,-18.578732,17.281157,-5.919554, + -18.623577,17.347343,-5.928517,-19.088057,17.812849,-4.283933,-18.861259,17.540682,-4.872851,-19.133554,17.726727,-4.282599, + -18.900846,17.421503,-4.859065,-19.137053,17.837824,-4.342650,-18.942871,17.487677,-4.877148,-18.819233,17.474508,-4.854769, + -19.182550,17.751703,-4.341316,-19.024061,17.514156,-4.497850,-18.971706,17.593872,-4.502549,-19.020714,17.628351,-4.551351, + -19.073067,17.548634,-4.546653,-17.425611,18.251255,-5.275649,-17.380821,18.185030,-5.266704,-17.458216,18.129818,-5.287930, + -17.503006,18.196045,-5.296876,-15.246477,14.836477,-4.786033,-17.960377,18.209225,-4.098617,-18.117180,18.097618,-3.736497, + -17.990833,18.087540,-4.113648,-18.080324,18.217144,-3.720090,-18.032803,18.153553,-4.132437,-17.918407,18.143213,-4.079828, + -15.201687,14.770252,-4.777087,-15.124292,14.825464,-4.755861,-18.053471,18.151299,-3.689836,-15.169083,14.891689,-4.764806, + -18.144033,18.163464,-3.766752,-15.250887,14.829035,-3.525845,-15.489562,14.636744,-3.103347,-15.281343,14.707350,-3.540878, + -15.452706,14.756269,-3.086939,-15.323313,14.773362,-3.559666,-15.208918,14.763022,-3.507056,-15.425853,14.690425,-3.056685, + -15.516416,14.702589,-3.133601,-16.111792,13.885460,-5.277600,-16.045540,13.922314,-5.250695,-16.094921,14.005264,-5.242823, + -16.161173,13.968410,-5.269729,-16.445196,14.028033,-3.962254,-16.377480,13.785155,-3.505229,-16.327692,13.983194,-3.950285, + -16.492409,13.836149,-3.515470,-16.392775,13.948427,-3.982344,-16.380116,14.062799,-3.930195,-16.431757,13.856371,-3.472061, + -16.438133,13.764934,-3.548638,-17.101328,17.202202,-3.258065,-17.216801,17.232231,-3.252649,-17.127026,17.136715,-3.740484, + -17.007200,17.108446,-3.712135,-17.187473,17.161026,-3.259098,-17.041464,17.180262,-3.723995,-17.130655,17.273407,-3.251616, + -17.092762,17.064899,-3.728624,-16.670568,16.999918,-5.222535,-16.708015,17.071007,-5.226552,-16.637028,17.108458,-5.225526, + -16.599581,17.037367,-5.221509,-15.999658,16.144188,-5.085696,-16.037104,16.215279,-5.089713,-16.109509,16.176970,-5.092723, + -16.072063,16.105879,-5.088706,-16.207428,15.999704,-3.674402,-16.203070,16.207815,-3.195740,-16.156118,16.115152,-3.674260, + -16.260136,16.095339,-3.198229,-16.120811,16.043390,-3.665557,-16.242733,16.071466,-3.683105,-16.288895,16.166487,-3.189135, + -16.174311,16.136665,-3.204834,-17.506037,17.804861,-6.389463,-17.546782,17.859592,-6.389804,-17.584343,17.835583,-6.481534, + -17.543598,17.780851,-6.481193,-17.263313,17.889753,-7.041578,-17.304966,17.943474,-7.047108,-17.376879,17.883869,-7.015032, + -17.335226,17.830147,-7.009502,-17.891125,17.517580,-6.640894,-17.931868,17.572313,-6.641236,-18.002321,17.513252,-6.596986, + -17.961578,17.458521,-6.596646,-17.611464,17.593903,-7.212251,-17.653116,17.647625,-7.217780,-17.670271,17.629976,-7.312665, + -17.628618,17.576254,-7.307137,-18.451738,17.106682,-6.876413,-18.489813,17.162201,-6.887440,-18.513721,17.136318,-6.983061, + -18.475014,17.080853,-6.974486,-18.195457,17.183298,-7.540037,-18.224266,17.226620,-7.548629,-18.288549,17.181353,-7.517787, + -18.259356,17.138065,-7.510680,-18.819176,16.817839,-7.105455,-18.857883,16.873304,-7.114030,-18.939255,16.816429,-7.064851, + -18.900547,16.760963,-7.056277,-18.539091,16.929079,-7.612647,-18.568283,16.972368,-7.619753,-18.593296,16.949627,-7.684520, + -18.564104,16.906340,-7.677413,-16.688440,13.506025,-6.424517,-16.626600,13.559278,-6.905768,-16.701151,13.540939,-6.427307, + -16.636164,13.590399,-6.907461,-14.793434,14.943270,-6.412021,-14.740661,14.935490,-6.371392,-14.755228,14.907793,-5.864153, + -14.806788,14.921270,-6.007300,-17.280005,18.086878,-6.229115,-17.089931,18.038284,-6.944244,-16.995506,17.998764,-7.193723, + -18.484833,17.116713,-6.892277,-19.092314,16.646244,-7.125857,-18.973518,16.646284,-7.815834,-19.111170,16.647415,-7.130710, + -18.999674,16.666830,-7.835060,-18.487606,17.124125,-6.892834,-17.643612,17.619717,-7.296998,-17.707382,17.677803,-6.554805, + -17.720867,17.697432,-6.557762,-17.799618,17.584730,-6.951252,-17.789074,17.565035,-6.942257,-17.808109,17.584173,-6.907400, + -17.441919,17.881172,-6.731047,-17.431376,17.861475,-6.722052,-17.420666,17.863483,-6.765370,-15.262042,14.496968,-6.538708, + -15.403286,14.442790,-5.931888,-15.248569,14.477325,-6.535801,-15.219319,14.511400,-6.539741,-15.351850,14.456828,-5.962452, + -15.365323,14.476471,-5.965358,-15.514972,14.321491,-6.323716,-15.503308,14.302599,-6.314388,-15.515471,14.326391,-6.279271, + -15.111594,14.614878,-6.198351,-15.097594,14.595496,-6.196269,-15.102211,14.602127,-6.240008,-16.089689,15.956907,-7.975801, + -16.606939,16.761997,-8.327432,-16.027573,15.882156,-8.264883,-16.783791,16.629261,-8.419169,-16.210894,15.765759,-8.369774, + -16.747681,16.617168,-8.658204,-16.150154,15.702936,-8.592891,-16.868441,16.527504,-8.714458,-16.239241,15.661285,-8.637608, + -16.811275,16.517954,-9.029776,-16.217484,15.638367,-8.945472,-17.081913,16.325142,-9.102333,-16.424402,15.484909,-8.989743, + -17.359785,16.036615,-9.772395,-16.688120,15.052168,-9.493405,-17.596434,15.874258,-9.841286,-17.219515,14.726954,-9.773838, + -18.919224,16.664442,-8.080381,-18.874434,16.598215,-8.071436,-18.951828,16.543005,-8.092663,-18.996620,16.609230,-8.101608, + -17.911869,17.358650,-7.824912,-17.867079,17.292425,-7.815967,-17.944473,17.237213,-7.837193,-17.989265,17.303438,-7.846138, + -16.897497,18.130112,-7.449207,-16.852707,18.063887,-7.440262,-16.930101,18.008675,-7.461489,-16.974892,18.074902,-7.470433, + -18.808666,17.552801,-4.034501,-18.881863,17.538168,-3.937182,-18.736183,13.934523,-8.034865,-18.649982,13.889710,-8.014740, + -18.672989,13.975855,-8.018820,-18.679699,13.854634,-8.021987,-17.491636,13.281696,-4.395959,-16.509041,14.083598,-3.429336, + -17.930490,12.755478,-7.857587,-17.917089,12.800909,-7.854337,-17.841146,12.724488,-7.837380,-17.854548,12.679057,-7.840630, + -19.232300,14.710517,-8.146366,-19.237415,14.812999,-8.146667,-19.301647,14.877520,-8.161884,-19.315048,14.832089,-8.165134, + -16.324093,14.495715,-7.515145,-15.844875,14.540824,-9.401327,-15.243136,15.277058,-7.147250,-18.068562,13.262009,-7.918603, + -16.248186,14.501027,-7.827285,-15.669353,14.920202,-7.616953,-17.755751,15.782284,-9.868781,-18.180975,15.746555,-8.225422, + -18.356279,15.353880,-10.033484,-18.781504,15.318151,-8.390125,-17.119690,16.465458,-8.185530,-18.284161,15.727688,-7.893706, + -17.565769,16.148003,-8.302828,-15.251586,14.958090,-9.238739,-15.948926,17.071230,-9.373236,-16.941000,16.480473,-8.876112, + -17.386482,16.163067,-8.995719,-14.845913,15.305969,-9.133875,-17.494926,13.442567,-9.859829,-18.635637,15.101681,-10.118920, + -16.466946,16.968502,-7.421442,-19.166798,15.043032,-8.158357,-15.075216,14.951984,-4.800607,-16.364025,14.532371,-7.519628, + -15.872044,14.584196,-9.415082,-15.332073,15.278881,-7.164525,-18.031925,13.353412,-7.901439,-16.278097,14.544432,-7.831127, + -15.699375,14.963648,-7.620497,-17.730396,15.747459,-9.870646,-18.158310,15.711504,-8.216891,-18.330925,15.319056,-10.035349, + -18.758839,15.283102,-8.381594,-17.096642,16.430439,-8.178483,-18.238304,15.709528,-7.876537,-17.542728,16.112984,-8.295751, + -15.278875,15.001642,-9.252522,-15.980784,16.995590,-9.390792,-16.916821,16.445549,-8.873433,-17.362307,16.128143,-8.993025, + -16.710102,15.888855,-9.047370,-17.382908,15.819504,-9.828684,-16.929073,15.030149,-9.522571,-16.745529,14.467358,-9.656837, + -16.631985,14.863966,-9.618834,-16.123379,15.447344,-9.352501,-15.264362,15.887064,-9.161506,-16.137793,15.506002,-9.326362, + -15.886533,15.505957,-9.305477,-15.877766,15.368284,-9.397686,-16.129025,15.368330,-9.418571,-16.154747,15.447344,-9.229191, + -15.903817,15.452463,-9.204846,-15.895050,15.314791,-9.297055,-16.145981,15.309671,-9.321400,-17.014971,13.250309,-7.706355, + -16.950693,13.286609,-7.674375,-16.986025,13.341421,-7.666038,-17.050303,13.305121,-7.698019,-17.320631,13.146427,-6.471706, + -17.141485,13.042787,-6.008293,-17.216625,13.145981,-6.481028,-17.263208,13.075058,-6.000800,-17.279766,13.097024,-6.490441, + -17.257490,13.195383,-6.462292,-17.199553,13.111780,-5.976894,-17.205141,13.006065,-6.032199,-15.679811,14.198386,-7.337847, + -15.611088,14.235636,-7.319254,-15.643044,14.296824,-7.327595,-15.711767,14.259575,-7.346187,-18.590225,17.488359,-5.790872, + -16.129635,14.026287,-5.204928,-16.217184,13.962088,-5.240409,-18.703487,17.406075,-5.831717,-18.632456,17.456833,-5.652326, + -16.174900,14.015762,-5.074192,-16.262449,13.951563,-5.109673,-18.745720,17.374546,-5.693171,-17.152147,15.492386,-5.357385, + -17.104517,15.503460,-5.494951,-17.234283,15.432156,-5.390672,-17.186653,15.443230,-5.528238,-19.525448,16.778849,-6.315771, + -17.000921,13.244141,-6.400431,-17.085308,13.180809,-6.444173,-19.620695,16.670132,-6.387313,-19.570608,16.744989,-6.179624, + -17.054319,13.227583,-6.273442,-17.138706,13.164251,-6.317183,-19.665855,16.636272,-6.251166,-18.196892,14.703534,-5.930368, + -18.140703,14.720957,-6.063991,-18.276062,14.644118,-5.971406,-18.219873,14.661540,-6.105029,-20.526791,16.028198,-6.839312, + -18.150322,12.506121,-6.276410,-18.256485,12.428608,-6.317222,-20.604023,15.954519,-6.874182,-20.563606,16.000530,-6.699309, + -18.195793,12.495447,-6.145757,-18.301956,12.417934,-6.186569,-20.640839,15.926851,-6.734179,-19.196507,13.954745,-6.438547, + -19.148661,13.965978,-6.576025,-19.304571,13.875991,-6.482590,-19.256725,13.887223,-6.620069,-16.508663,13.890842,-5.361806, + -16.462839,13.908119,-5.499374,-16.440842,13.792210,-5.350502,-16.395018,13.809486,-5.488071,-17.268995,18.246565,-5.341685, + -20.561092,15.794445,-6.860725,-20.454681,15.689840,-6.991314,-17.153154,18.157852,-5.460375,-17.225445,18.262983,-5.472424, + -20.530458,15.800531,-7.004787,-20.485315,15.683754,-6.847251,-17.196705,18.141434,-5.329637,-18.692247,17.182392,-5.928607, + -18.646423,17.199669,-6.066174,-18.624426,17.083759,-5.917303,-18.578602,17.101036,-6.054871,11.733557,6.790843,0.333377, + 12.128414,2.694047,0.083800,12.908213,2.956728,-2.773643,11.690770,6.705059,1.187437,11.672340,6.984504,1.211101, + 11.876332,4.801114,1.115512,11.894761,4.521669,1.091848,12.461180,4.660036,-1.058495,12.066387,4.858366,0.313146, + 11.605063,4.761700,1.056691,11.652341,4.501702,1.026293,12.197203,4.914342,-1.111342,12.239191,4.641917,-1.118376, + 12.884247,4.762859,-2.753684,12.104561,4.581761,0.295906,12.592817,4.998600,-2.815054,11.775083,4.816072,0.247808, + 11.822360,4.556073,0.217410,12.633293,4.742376,-2.821378,11.668468,6.880216,0.241156,11.870951,4.712979,0.146274, + 12.113479,4.965172,0.338638,11.838063,4.704456,0.270772,11.910997,7.132409,0.433520,11.635581,6.871693,0.365654, + 12.282143,4.683340,-1.024301,12.607755,4.448914,-1.109158,12.315273,4.691926,-1.149717,12.203648,5.907468,-1.067614, + 12.213872,5.798031,-1.072405,12.612507,5.895395,-2.776515,12.602780,6.012608,-2.775922,12.249095,5.911171,-1.055355, + 12.259319,5.801733,-1.060147,12.661272,5.899384,-2.763732,12.651546,6.016597,-2.763139,11.888504,5.016057,0.204704, + 11.899515,4.898197,0.199544,12.229128,5.802084,-1.023704,12.218970,5.910806,-1.018944,11.937178,5.020022,0.217833, + 11.948189,4.902162,0.212673,12.274667,5.805810,-1.011791,12.264509,5.914533,-1.007031,11.725383,6.555463,0.343633, + 11.736394,6.437603,0.338473,12.219898,5.806303,-1.022924,12.209741,5.915025,-1.018164,11.774056,6.559429,0.356762, + 11.785068,6.441569,0.351602,12.265436,5.810029,-1.011011,12.255279,5.918752,-1.006251,11.730604,5.129216,0.695431, + 11.713388,5.326296,0.701184,11.777439,5.136590,0.554033,11.755876,5.347286,0.567540,11.748775,5.130645,0.702130, + 11.731559,5.327724,0.707884,11.795610,5.138018,0.560733,11.774046,5.348715,0.574239,11.764972,8.720325,-0.293323, + 11.779275,8.523073,-0.285796,11.715560,8.722936,-0.152529,11.732917,8.511419,-0.152233,11.783073,8.721886,-0.286515, + 11.797377,8.524633,-0.278989,11.733662,8.724497,-0.145722,11.751019,8.512980,-0.145424,11.799025,5.062797,0.485896, + 11.814477,4.899760,0.477714,11.763613,5.054204,0.604049,11.781549,4.879958,0.588789,11.814251,5.063935,0.490923, + 11.829703,4.900899,0.482739,11.778838,5.055343,0.609075,11.796775,4.881097,0.593815,12.248942,2.611822,0.737126, + 11.953224,2.643720,0.648316,12.543003,2.802159,-1.154163,12.817131,2.774699,-2.907523,12.006198,2.588396,0.131264, + 11.958920,2.848394,0.161662,12.776655,3.030923,-2.901199,12.434171,2.731847,-1.178677,12.392181,3.004272,-1.171644, + 12.454382,2.843715,-1.138737,12.728827,3.079228,-1.183886,12.487269,2.852238,-1.263235,12.338480,9.015003,-2.510454, + 11.538992,8.863431,0.423776,11.658242,8.912060,1.038422,11.544697,6.772423,0.898521,11.355471,8.825969,0.989391, + 12.512589,7.015388,-2.602658,11.933807,8.941511,-0.894681,12.123468,7.019136,-0.975157,11.756041,8.846884,0.522520, + 12.184902,8.937874,-0.913543,12.026827,2.641786,0.195107,12.302242,2.902502,0.262972,12.059714,2.650309,0.070609, + 11.686022,7.183294,0.299586,11.697033,7.065433,0.294426,12.015463,7.968639,-0.931583,12.005305,8.077361,-0.926823, + 11.734695,7.187258,0.312715,11.745707,7.069398,0.307555,12.061001,7.972365,-0.919670,12.050843,8.081087,-0.914911, + 11.522901,8.722700,0.438515,11.533912,8.604839,0.433355,12.009598,7.976066,-0.930241,11.999440,8.084788,-0.925481, + 11.571575,8.726665,0.451644,11.582586,8.608805,0.446484,12.055137,7.979792,-0.918329,12.044979,8.088514,-0.913569, + 11.836178,2.534024,0.940148,11.788900,2.794023,0.970546,12.429302,6.925766,-2.725789,11.618369,6.739462,0.312999, + 11.571091,6.999461,0.343397,12.529384,2.717111,-0.638881,13.068084,2.795181,-2.839829,12.388826,7.181990,-2.719465, + 11.900570,6.765151,0.391495,12.680255,6.946249,-2.658095,12.057854,6.822169,-0.998060,12.015863,7.094594,-0.991027, + 12.078599,2.553992,1.005702,12.279841,6.840288,-0.938179,11.448349,6.685091,1.121882,12.060170,2.833436,1.029366, + 11.401072,6.945090,1.152280,11.862396,7.041756,0.408736,11.483961,8.863982,0.360263,11.450838,8.855398,0.485652, + 11.885572,8.919271,-0.839066,11.918703,8.927856,-0.964482,11.544616,8.744961,0.365535,12.329923,8.991642,-2.503582, + 11.616983,8.610126,1.005017,11.368048,8.698400,0.929945,11.961613,8.840587,-0.872647,12.620266,15.067636,-1.999948, + 11.827928,14.918953,0.936368,11.957104,14.927263,1.550876,11.550736,12.867274,1.328224,11.644920,14.886244,1.502445, + 12.220576,14.990658,-0.383097,11.743227,12.916350,0.755286,11.639343,10.747211,0.579344,11.446854,10.698134,1.152282, + 12.421641,10.971025,-2.355878,11.694805,12.805300,1.606128,11.715882,13.083486,1.640142,11.611225,10.898179,1.462888, + 11.590147,10.619992,1.428874,12.128038,10.749591,-0.703050,11.801822,10.958467,0.660874,11.336705,10.899311,1.405985, + 11.346869,10.636588,1.365596,11.901940,11.040106,-0.743413,11.905290,10.764946,-0.760840,12.576799,10.865098,-2.417138, + 11.800735,10.680089,0.633141,12.320860,11.141401,-2.466356,11.507015,10.959795,0.597597,11.517179,10.697072,0.557208, + 12.324986,10.882457,-2.482468,11.586781,10.848211,0.491228,11.890890,11.063681,0.586313,11.553892,10.839688,0.615726, + 12.369637,12.600651,-0.613988,12.080689,12.874926,-0.516718,12.113819,12.883512,-0.642134,11.717952,13.044020,0.771381, + 11.706968,12.743274,0.747891,12.018371,10.823555,-0.743201,12.028522,11.101636,-0.721482,11.766747,13.039132,0.783937, + 11.755764,12.738386,0.760446,12.064022,10.819011,-0.731825,12.074173,11.097092,-0.710106,11.606200,12.510934,1.051743, + 11.616812,12.708128,1.064855,11.652618,12.517006,0.910146,11.660887,12.727989,0.931553,11.624437,12.509556,1.058267, + 11.635050,12.706749,1.071380,11.670856,12.515628,0.916671,11.679125,12.726611,0.938078,11.922641,9.485508,-0.671464, + 11.909214,9.288051,-0.671277,11.875067,9.489698,-0.530078,11.862614,9.277972,-0.537670,11.940830,9.484265,-0.664826, + 11.927403,9.286808,-0.664639,11.893257,9.488456,-0.523439,11.880804,9.276730,-0.531030,11.614157,12.424230,0.989762, + 11.606552,12.261059,0.975480,11.578714,12.416230,1.107948,11.571950,12.241887,1.086155,11.629426,12.423039,0.994641, + 11.621822,12.259869,0.980357,11.593985,12.415039,1.112826,11.587219,12.240696,1.091034,12.039503,10.762723,-0.740941, + 12.227466,8.841105,-2.647949,11.419659,8.655720,0.391728,11.412698,8.990389,0.437855,12.226542,9.171996,-2.626097, + 11.703217,8.638737,0.467661,11.890316,8.785070,-0.907903,11.890169,9.132176,-0.884737,11.893526,8.965459,-0.867797, + 12.197943,9.161830,-0.907707,11.926414,8.973982,-0.992294,11.959759,9.614591,-0.878810,11.954508,9.504971,-0.887702, + 12.346513,9.631275,-2.569071,12.352121,9.748374,-2.559573,11.990664,10.259933,-0.826466,11.985418,10.150399,-0.835350, + 12.381858,10.255168,-2.539533,12.388658,10.372484,-2.534567,12.005360,9.611441,-0.866980,12.000110,9.501820,-0.875872, + 12.395445,9.627925,-2.556747,12.401052,9.745024,-2.547248,12.036266,10.256783,-0.814635,12.031020,10.147249,-0.823520, + 12.430790,10.251818,-2.527209,12.437589,10.369134,-2.522243,12.525524,13.140164,-2.179936,12.143386,12.931863,-0.564998, + 12.063019,14.925922,0.907624,11.657776,13.008827,0.791668,11.994774,13.232821,0.762255,11.690663,13.017350,0.667170, + 12.453052,14.982664,-0.431483,11.451214,8.775208,0.462949,11.788212,8.999200,0.433536,11.484102,8.783730,0.338451, + 12.193657,14.498524,-0.482668,12.188410,14.388989,-0.491552,12.584850,14.493758,-2.195735,12.591649,14.611074,-2.190769, + 12.239258,14.495373,-0.470837,12.234013,14.385839,-0.479722,12.633781,14.490408,-2.183411,12.640580,14.607724,-2.178445, + 12.180988,13.372229,-0.539549,12.170837,13.094148,-0.561268,11.843758,14.720218,0.920197,11.854741,15.020964,0.943687, + 12.135336,13.376774,-0.550925,12.125185,13.098692,-0.572644,11.794962,14.725105,0.907641,11.805945,15.025850,0.931132, + 11.249349,8.595236,1.200116,11.242388,8.929905,1.246243,12.429644,13.067763,-2.305215,11.621837,12.882379,0.734462, + 11.611672,13.145102,0.774850,11.919294,8.727917,-0.173896,12.479279,8.823746,-2.582618,12.425517,13.326709,-2.289102, + 11.905394,12.865396,0.810395,12.681457,13.050405,-2.239884,12.092364,12.927389,-0.585654,12.089015,13.202549,-0.568226, + 11.492626,8.578640,1.263394,12.315113,12.912034,-0.527864,11.451527,12.821895,1.542850,11.516907,8.928773,1.303147, + 11.441362,13.084618,1.583238,11.906479,13.143775,0.838127,11.794603,14.914728,0.856018,11.761480,14.906145,0.981409, + 12.179510,14.976118,-0.349368,12.212641,14.984703,-0.474784,10.467460,18.404314,1.193803,11.654477,14.768170,1.185019, + 12.420571,15.030138,-1.676092,10.425223,18.362057,2.050988,10.352405,18.612335,2.058288,10.977989,16.674980,2.090910, + 11.050808,16.424702,2.083611,11.618991,16.563536,-0.066233,11.168163,16.727108,1.288226,10.722653,16.575399,2.032180, + 10.819920,16.348846,2.017276,11.313465,16.731997,-0.135933,11.407528,16.494232,-0.126838,12.045278,16.662064,-1.760866, + 11.259529,16.484163,1.287341,11.716803,16.807106,-1.838232,10.894007,16.620085,1.222986,10.991273,16.393532,1.208082, + 11.806223,16.583717,-1.829379,10.388537,18.465834,1.096021,11.009494,16.542812,1.128402,11.192723,16.835760,1.307891, + 10.976606,16.534288,1.252900,10.571767,18.758783,1.275510,10.355650,18.457312,1.220519,11.439395,16.546343,-0.034960, + 11.803862,16.402439,-0.103356,11.472526,16.554930,-0.160376,11.125555,17.635458,-0.149685,11.156910,17.538351,-0.148050, + 11.560645,17.625988,-1.851479,11.528345,17.730028,-1.857750,11.168848,17.649639,-0.137278,11.200204,17.552534,-0.135643, + 11.607104,17.641201,-1.838537,11.574804,17.745241,-1.844808,10.966416,16.824394,1.169344,11.000185,16.719816,1.171105, + 11.169995,17.548010,-0.099538,11.138844,17.644482,-0.101163,11.012785,16.839584,1.182632,11.046554,16.735004,1.184393, + 11.213381,17.562216,-0.087477,11.182230,17.658688,-0.089102,10.505106,18.189785,1.217590,10.538876,18.085205,1.219351, + 11.160169,17.549805,-0.099082,11.129018,17.646276,-0.100706,10.551475,18.204973,1.230879,10.585243,18.100395,1.232639, + 11.203554,17.564011,-0.087021,11.172403,17.660482,-0.088645,10.780689,16.917418,1.651341,10.725446,17.092405,1.645537, + 10.827726,16.927132,1.510158,10.765441,17.113892,1.511268,10.797973,16.923136,1.658100,10.742729,17.098124,1.652296, + 10.845010,16.932850,1.516916,10.782724,17.119610,1.518027,10.135164,20.126289,0.456819,10.187336,19.951193,0.475865, + 10.083687,20.125011,0.596800,10.141755,19.937294,0.609481,10.152353,20.132116,0.463678,10.204525,19.957020,0.482724, + 10.100876,20.130838,0.603658,10.158944,19.943121,0.616340,10.864490,16.861523,1.446590,10.911438,16.716852,1.447985, + 10.829285,16.852036,1.564737,10.880978,16.697393,1.559735,10.878995,16.866230,1.451671,10.925943,16.721560,1.453065, + 10.843790,16.856745,1.569817,10.895483,16.702101,1.564816,11.774663,14.755136,1.842992,11.482241,14.713101,1.749992, + 12.062237,14.893702,-0.053555,12.370003,14.837765,-1.799979,11.555053,14.647580,1.237482,11.457787,14.874134,1.252385, + 12.280581,15.061153,-1.808832,11.970423,14.804330,-0.074878,11.876360,15.042093,-0.083973,11.967525,14.912310,-0.041309, + 12.189886,15.184771,-0.097686,12.000413,14.920832,-0.165807,10.681177,20.404800,-1.768683,9.872726,20.243128,1.162489, + 9.966980,20.346313,1.774266,10.275686,18.375122,1.757439,9.689850,20.197906,1.727743,11.241819,18.627417,-1.743565, + 10.268701,20.332779,-0.154870,10.829219,18.629471,-0.122383,10.085341,20.281969,1.263853,10.514338,20.384741,-0.171367, + 11.563461,14.703938,1.298299,11.779578,15.005409,1.353291,11.596349,14.712460,1.173801,10.345459,18.747417,1.136962, + 10.379229,18.642838,1.138723,10.538335,19.467764,-0.134731,10.507184,19.564236,-0.136356,10.391828,18.762606,1.150251, + 10.425596,18.658028,1.152012,10.581720,19.481970,-0.122670,10.550570,19.578440,-0.124295,9.884150,20.112806,1.185209, + 9.917918,20.008228,1.186970,10.531151,19.473249,-0.133871,10.500000,19.569719,-0.135496,9.930517,20.127996,1.198497, + 9.964287,20.023417,1.200258,10.574535,19.487453,-0.121810,10.543385,19.583925,-0.123435,11.383699,14.602895,2.046676, + 11.286433,14.829448,2.061579,11.180637,18.521072,-1.862002,10.365688,18.330887,1.175459,10.268422,18.557440,1.190363, + 12.055111,14.840778,0.465642,12.609057,14.916111,-1.731466,11.091217,18.744461,-1.870855,10.633945,18.421518,1.254718, + 11.419693,18.599419,-1.793489,10.804115,18.435125,-0.134405,10.710053,18.672890,-0.143500,11.614588,14.678749,2.113010, + 11.015579,18.504429,-0.073800,10.194335,18.286201,1.984653,11.541769,14.929028,2.120311,10.097069,18.512754,1.999557, + 10.542579,18.664463,1.255603,9.820308,20.227949,1.098588,9.787185,20.219366,1.223977,10.224929,20.304756,-0.098472, + 10.258059,20.313343,-0.223888,-6.099906,8.949279,-7.430538,-5.995866,10.842607,-7.273437,-4.156923,10.859621,-6.786495, + -4.120943,8.754417,-6.921113,-6.340058,8.887040,-6.521423,-6.209951,10.771715,-6.379067,-4.421040,10.702491,-5.937078, + -4.345665,8.696177,-6.070413,-6.525447,9.785223,-6.553630,-6.314913,9.860138,-7.424976,-4.072565,9.718643,-5.912380, + -3.843936,9.777895,-6.777872,-5.260748,11.031970,-6.089468,-4.985108,11.192087,-6.982508,-5.390081,8.480219,-6.361091, + -5.165359,8.538459,-7.211792,-6.377939,9.788041,-6.494834,-6.099637,10.692333,-6.359410,-5.259265,10.924599,-6.096427, + -4.541513,10.600058,-5.975916,-4.240667,9.696201,-5.958323,-4.466838,8.779224,-6.096736,-5.369174,8.586866,-6.348267, + -6.194805,8.958271,-6.478176,-5.246048,9.749882,-6.386935,-6.331598,9.800051,-6.670259,-6.053296,10.704343,-6.534835, + -5.206757,10.938207,-6.295202,-4.500529,10.610679,-6.131067,-4.199683,9.706823,-6.113473,-4.429761,8.788833,-6.237097, + -5.332096,8.596476,-6.488628,-6.142297,8.971879,-6.676951,-4.742810,8.633131,-6.525356,-4.773415,8.625788,-6.455181, + -5.052510,8.568091,-6.533831,-5.017736,8.576291,-6.602454,-4.735895,8.600260,-6.525780,-4.766500,8.592917,-6.455605, + -5.045595,8.535220,-6.534254,-5.010821,8.543420,-6.602878,-4.828737,8.615461,-6.556870,-4.851602,8.609535,-6.470315, + -4.821823,8.582590,-6.557294,-4.844687,8.576664,-6.470739,-5.288416,8.513051,-6.477436,-5.248333,8.506400,-6.545080, + -4.973853,8.573244,-6.458856,-5.017988,8.578829,-6.392869,-5.281266,8.480459,-6.475433,-5.241183,8.473808,-6.543077, + -4.966702,8.540651,-6.456852,-5.010838,8.546237,-6.390866,-5.204834,8.534925,-6.443748,-5.170565,8.523903,-6.527674, + -5.197684,8.502334,-6.441745,-5.163415,8.491310,-6.525671,-4.913048,8.593721,-6.391536,-4.617846,8.658537,-6.357435, + -4.658900,8.664123,-6.304455,-4.890543,8.546698,-6.451823,-4.609535,8.626241,-6.355524,-4.650589,8.631826,-6.302544, + -4.897899,8.579180,-6.454378,-4.905692,8.561239,-6.388981,-6.170400,8.877218,-6.816237,-6.200529,8.876581,-6.745476, + -6.325670,9.155014,-6.760446,-6.301675,9.144292,-6.833212,-6.181860,8.846065,-6.821397,-6.211989,8.845428,-6.750637, + -6.356679,9.145588,-6.769282,-6.332684,9.134866,-6.842049,-6.242847,8.954946,-6.837659,-6.265712,8.949019,-6.751104, + -6.274676,8.896702,-6.850054,-6.297541,8.890776,-6.763500,-6.354549,9.365954,-6.860748,-6.334719,9.361688,-6.935579, + -6.256359,9.077185,-6.946439,-6.277307,9.085832,-6.871799,-6.365631,9.353695,-6.945607,-6.287271,9.069193,-6.956467, + -6.308218,9.077839,-6.881826,-6.385461,9.357962,-6.870777,-6.246519,9.008552,-6.894917,-6.242778,8.988976,-6.944057, + -6.095456,8.856797,-6.907606,-6.131914,8.873676,-6.853210,-6.277019,8.997158,-6.902283,-6.273278,8.977584,-6.951422, + -6.109087,8.826830,-6.913470,-6.145545,8.843709,-6.859075,-6.219402,8.921814,-6.869499,-6.196815,8.919166,-6.941291, + -6.270124,8.905008,-6.879011,-6.247537,8.902360,-6.950802,-4.964262,10.921622,-6.125603,-4.698598,10.809815,-6.059846, + -4.688374,10.831439,-6.133680,-4.687758,10.840433,-6.051687,-4.677535,10.862057,-6.125522,-4.949862,10.941613,-6.198771, + -4.939022,10.972231,-6.190612,-4.953423,10.952240,-6.117444,-4.805375,10.886904,-6.228938,-4.805083,10.911389,-6.275972, + -5.076851,11.009844,-6.332704,-5.076618,10.982997,-6.271037,-4.792423,10.927054,-6.219703,-4.792132,10.951540,-6.266737, + -5.064011,11.049965,-6.323045,-5.063778,11.023119,-6.261379,-4.895466,10.914887,-6.226628,-4.877812,10.940242,-6.295956, + -4.882627,10.955009,-6.216969,-4.864972,10.980363,-6.286297,-5.983054,10.677886,-6.389195,-6.431555,9.071760,-6.510777, + -4.931993,8.512486,-6.186630,-6.174685,9.154615,-6.556494,-6.394593,9.052154,-6.608325,-6.208996,8.756392,-6.556602, + -6.110291,8.962429,-6.415662,-6.212230,9.150270,-6.447722,-5.327857,8.432698,-6.298051,-6.086220,8.966756,-6.513348, + -6.435961,9.049370,-6.541203,-6.236045,8.743046,-6.474509,-5.365400,8.439738,-6.319803,-5.778806,8.600189,-6.431443, + -5.337817,8.729494,-6.385932,-5.676116,8.838643,-6.479028,-5.712866,8.826410,-6.370585,-5.363373,8.725704,-6.288602, + -5.343164,8.454675,-6.403059,-5.746748,8.623643,-6.499609,-5.321685,8.714300,-6.366831,-5.346682,8.673347,-6.283011, + -6.374319,10.560260,-6.496588,-6.111067,10.900271,-6.386366,-5.017972,8.720504,-6.177682,-5.732985,8.836223,-6.473933, + -4.909897,8.530443,-6.271378,-5.312085,8.462372,-6.389865,-6.167408,8.815183,-6.565730,-5.814197,8.646169,-6.516047, + -5.746739,8.824965,-6.374401,-6.064744,8.979525,-6.425809,-6.028685,8.991500,-6.534616,-5.000896,8.788054,-6.283842, + -6.199581,8.785712,-6.478235,-5.823033,8.620660,-6.430819,-6.144190,10.460688,-6.341373,-6.011591,10.679357,-6.277645, + -6.536228,9.513341,-6.547974,-6.126662,10.467304,-6.420878,-6.137277,10.917158,-6.313893,-6.404955,10.557518,-6.414717, + -6.537869,9.544552,-6.543109,-6.538983,10.006875,-6.516260,-6.287183,9.595900,-6.565874,-6.276558,9.962184,-6.550107, + -6.312091,9.960631,-6.440585,-6.310151,9.589311,-6.468049,-6.506989,9.552563,-6.624542,-6.499134,10.003238,-6.584253, + -6.249369,9.554037,-6.559100,-6.306314,9.547865,-6.481338,-6.242238,9.168798,-6.436705,-6.273404,9.993986,-6.538181, + -6.397338,9.078918,-6.593062,-6.490358,9.529731,-6.632746,-6.382094,10.502612,-6.506919,-6.498797,10.073484,-6.600848, + -6.301746,9.974786,-6.443046,-6.145690,10.397278,-6.349213,-6.111223,10.398411,-6.459182,-6.156904,9.191805,-6.527883, + -6.429670,10.502157,-6.421507,-6.537208,10.056421,-6.499829,-5.924446,10.703789,-6.359206,-5.643011,11.025959,-6.238404, + -5.993558,10.902690,-6.371496,-5.961424,10.692007,-6.265844,-5.641628,10.803221,-6.151739,-5.614107,10.802740,-6.263653, + -5.677201,11.042418,-6.148298,-6.038173,10.901912,-6.294025,-5.594980,11.065241,-6.154740,-5.163970,11.067689,-6.052001, + -5.552128,10.824377,-6.252777,-5.156843,10.825949,-6.157739,-5.180649,10.824993,-6.045078,-5.577559,10.814962,-6.155796, + -5.570089,11.062053,-6.238521,-5.151814,11.051202,-6.128191,-5.099301,10.809907,-6.133970,-4.571517,10.816834,-5.969675, + -5.069893,11.048565,-6.117514,-5.137384,10.804339,-6.040475,-4.717082,10.606019,-5.965692,-4.706020,10.607274,-6.037154, + -4.584833,10.832576,-5.874103,-5.109772,11.060184,-6.037942,-6.563894,9.771421,-6.537841,-6.357217,9.765211,-6.468099, + -6.528510,9.773585,-6.612526,-6.327940,9.769272,-6.571795,-4.283440,9.700140,-6.014505,-4.112273,9.264374,-6.001568, + -4.037739,9.649824,-5.960771,-4.298650,9.702877,-5.958436,-4.365324,9.354591,-6.002135,-4.350901,9.372296,-6.071070, + -4.114199,9.249242,-5.904995,-4.046288,9.656155,-5.872004,-4.141494,9.164207,-5.900931,-4.335122,8.693686,-5.995577, + -4.334116,9.282338,-6.036594,-4.539793,8.939765,-6.123867,-4.555883,8.926515,-6.054692,-4.351199,9.279797,-5.981619, + -4.128127,9.172232,-5.986989,-4.328904,8.717333,-6.070588,-4.588065,8.897722,-6.129831,-4.878309,8.523278,-6.267586, + -4.373440,8.653125,-6.097531,-4.594756,8.903892,-6.071921,-4.982449,8.752996,-6.222501,-4.962832,8.765914,-6.290905, + -4.891048,8.494957,-6.174879,-4.371614,8.652328,-6.007793,-4.456744,10.786152,-5.873169,-4.189788,10.365221,-5.842752, + -4.653936,10.572398,-6.032760,-4.463464,10.244595,-6.014375,-4.473295,10.238708,-5.943042,-4.670584,10.566759,-5.977882, + -4.439713,10.784318,-5.958934,-4.191929,10.364816,-5.921617,-4.442668,10.182211,-6.009881,-4.038927,9.753793,-5.952974, + -4.148456,10.293970,-5.921092,-4.474335,10.176944,-5.914005,-4.305604,9.739311,-5.922822,-4.283844,9.762507,-6.033597, + -4.038800,9.740787,-5.856073,-4.166847,10.304255,-5.833841,-6.325000,8.878653,-6.596577,-6.168374,9.039497,-6.440955, + -6.359682,8.870966,-6.522069,-6.137566,9.043834,-6.544184,-7.094045,6.549761,-7.538187,-6.849899,6.570813,-7.475442, + -6.873485,6.370886,-7.495128,-7.116352,6.543644,-7.449333,-6.874302,6.553894,-7.390030,-6.895282,6.364909,-7.408308, + -7.113405,6.395707,-7.456276,-7.090509,6.401985,-7.547472,-6.971109,6.628299,-7.501916,-6.958723,6.298188,-7.430412, + -6.937298,6.304063,-7.515749,-6.996611,6.611078,-7.412127,-6.992695,6.190781,-7.537455,-6.720300,6.174277,-7.470204, + -6.640910,6.084031,-7.456485,-7.015002,6.184664,-7.448601,-6.744702,6.157358,-7.384791,-6.662707,6.078054,-7.369665, + -7.028914,5.995306,-7.462629,-7.006019,6.001584,-7.553825,-6.857002,6.170165,-7.504807,-6.829123,5.901652,-7.425174, + -6.807699,5.907527,-7.510510,-6.882504,6.152945,-7.415019,-7.472930,6.494355,-7.637124,-7.288455,6.496211,-7.590682, + -7.257048,6.388068,-7.590242,-7.495237,6.488238,-7.548270,-7.313811,6.480444,-7.505429,-7.278845,6.382091,-7.503422, + -7.506245,6.298740,-7.561578,-7.483349,6.305018,-7.652774,-7.371538,6.529387,-7.609257,-7.411020,6.258141,-7.546723, + -7.389596,6.264016,-7.632059,-7.397993,6.513319,-7.519628,-2.751025,6.567460,-6.515427,-2.657670,6.830208,-6.480175, + -2.551369,6.879997,-6.450909,-2.773682,6.563584,-6.426536,-2.670426,6.820426,-6.391188,-2.573508,6.876210,-6.364052, + -2.602949,6.491053,-6.383681,-2.579695,6.495031,-6.474916,-2.693046,6.694460,-6.495111,-2.457538,6.656880,-6.345640, + -2.435777,6.660603,-6.431013,-2.706918,6.684488,-6.401746,-3.015964,6.240492,-6.597215,-2.965474,6.487230,-6.573586, + -2.787152,6.401343,-6.531879,-3.038621,6.236616,-6.508324,-2.978230,6.477448,-6.484599,-2.809290,6.397556,-6.445023, + -2.901402,6.193656,-6.472721,-2.878147,6.197634,-6.563956,-3.053433,6.386034,-6.600419,-2.765341,6.313902,-6.439052, + -2.743581,6.317625,-6.524424,-3.067305,6.376062,-6.507054,-3.329662,14.285665,-6.097023,-3.145881,14.287328,-6.047904, + -3.113460,14.179536,-6.051272,-3.353151,14.275844,-6.008808,-3.172276,14.267980,-5.963711,-3.136411,14.169939,-5.965076, + -3.362176,14.086928,-6.029725,-3.338069,14.097009,-6.120265,-3.229006,14.320471,-6.066348,-3.266789,14.046624,-6.015115, + -3.244230,14.056057,-6.099838,-3.256558,14.300638,-5.977810,-3.188403,13.164276,-6.184256,-2.984667,13.343124,-6.110097, + -2.867946,13.332181,-6.080237,-3.211891,13.154455,-6.096041,-3.002117,13.323624,-6.023540,-2.890897,13.322584,-5.994041, + -3.094949,13.005186,-6.079002,-3.070841,13.015265,-6.169543,-3.078593,13.244219,-6.146118,-2.890005,13.075483,-6.022909, + -2.867446,13.084915,-6.107632,-3.097200,13.224234,-6.055215,-6.692678,17.383986,-6.936546,-6.900468,17.528088,-6.943244, + -6.757962,17.658611,-6.883491,-6.710122,17.362906,-6.848902,-6.908663,17.513777,-6.854333,-6.775006,17.638016,-6.797853, + -6.621976,17.472523,-6.802461,-6.604074,17.494158,-6.892416,-6.839338,17.406958,-6.960210,-6.682467,17.645462,-6.779251, + -6.665714,17.665705,-6.863426,-6.848392,17.391607,-6.866983,-6.728271,19.682295,-6.521622,-6.998699,19.698471,-6.596464, + -7.086213,19.780998,-6.583588,-6.752649,19.643993,-6.441817,-7.021061,19.671001,-6.513263,-7.110032,19.743574,-6.505610, + -6.759406,19.815245,-6.358906,-6.734385,19.854555,-6.440814,-6.864246,19.701641,-6.553872,-6.963037,19.904268,-6.385348, + -6.939624,19.941055,-6.461994,-6.887809,19.672285,-6.466740,-7.081532,12.973638,-7.276546,-7.016201,12.795038,-7.271515, + -7.104306,12.730598,-7.299201,-7.104930,12.967573,-7.187970,-7.049248,12.789498,-7.187630,-7.127169,12.724673,-7.212652, + -7.282364,12.918122,-7.235717,-7.258348,12.924346,-7.326629,-7.014507,12.886147,-7.264830,-7.285994,12.814593,-7.250040, + -7.263522,12.820417,-7.335110,-7.048707,12.880308,-7.176583,2.262520,7.361442,-5.240107,2.357675,7.522161,-5.203968, + 2.462373,7.489388,-5.178555,2.239121,7.355378,-5.151530,2.340935,7.507727,-5.116384,2.439510,7.483463,-5.092005, + 2.387535,7.241219,-5.117632,2.411550,7.247443,-5.208543,2.287067,7.468635,-5.226284,2.471663,7.300043,-5.097658, + 2.494135,7.305866,-5.182728,2.269176,7.453903,-5.134337,2.656181,6.930900,-5.165592,2.441656,7.056007,-5.213697, + 2.570904,7.205145,-5.169344,2.632783,6.924837,-5.077016,2.426960,7.057478,-5.124484,2.548041,7.199220,-5.082795, + 2.710267,7.047130,-5.045667,2.734282,7.053354,-5.136578,2.510905,6.938547,-5.203445,2.638132,7.216581,-5.059397, + 2.660604,7.222404,-5.144468,2.495057,6.939720,-5.109870,7.136389,11.251860,-3.686283,6.967129,11.437095,-3.718313, + 7.134540,11.538438,-3.667151,7.112991,11.245795,-3.597706,6.954254,11.435650,-3.628819,7.111678,11.532513,-3.580602, + 7.222958,11.337543,-3.559867,7.246974,11.343766,-3.650778,6.999302,11.304196,-3.718913,7.203117,11.521147,-3.558815, + 7.225589,11.526971,-3.643885,6.985275,11.302453,-3.625056,4.743815,5.697498,-4.473578,4.538218,5.770711,-4.601471, + 4.624490,5.946784,-4.551774,4.695711,5.698998,-4.395388,4.497006,5.781314,-4.521683,4.577487,5.948251,-4.475373, + 4.741159,5.837144,-4.367236,4.790532,5.835604,-4.447487,4.617492,5.671489,-4.550796,4.652606,5.985841,-4.431679, + 4.698806,5.984400,-4.506774,4.573911,5.682166,-4.467157,4.139982,5.608057,-4.782424,4.203780,5.786614,-4.766988, + 4.301193,5.778414,-4.711087,4.095092,5.617218,-4.702857,4.166471,5.788649,-4.684748,4.257331,5.787365,-4.633340, + 4.241314,5.540028,-4.608683,4.287387,5.530626,-4.690348,4.147905,5.718301,-4.790647,4.310171,5.615242,-4.585482, + 4.353283,5.606444,-4.661900,4.108385,5.720787,-4.704488,-8.909622,-5.027333,-9.081071,-8.872174,-4.842185,-9.058503, + -8.763476,-4.837391,-9.029461,-8.933021,-5.033397,-8.992494,-8.886557,-4.854087,-8.970123,-8.786339,-4.843317,-8.942912, + -8.757229,-5.090646,-8.947467,-8.733213,-5.084422,-9.038379,-8.921127,-4.917190,-9.076570,-8.697082,-5.006487,-8.932094, + -8.674609,-5.000664,-9.017163,-8.936663,-4.929389,-8.983827,-8.618967,-5.128666,-8.990249,-8.697834,-4.858910,-8.992615, + -8.642656,-4.753479,-8.970820,-8.642365,-5.134730,-8.901671,-8.709787,-4.863932,-8.903122,-8.665519,-4.759404,-8.884272, + -8.465292,-5.088460,-8.849219,-8.441277,-5.082236,-8.940131,-8.646914,-4.990398,-8.988165,-8.446112,-4.865917,-8.835194, + -8.423639,-4.860093,-8.920264,-8.660020,-4.995719,-8.894310,-3.975358,-2.869098,-7.608404,-3.867847,-3.025041,-7.590680, + -3.936445,-3.111061,-7.614690,-3.998756,-2.875162,-7.519827,-3.900600,-3.033306,-7.506903,-3.959308,-3.116986,-7.528141, + -4.157067,-2.970272,-7.565650,-4.133051,-2.964049,-7.656561,-3.889015,-2.936159,-7.590187,-4.134493,-3.072125,-7.572936, + -4.112021,-3.066301,-7.658006,-3.922921,-2.944722,-7.502048,-4.185260,-4.228451,-7.756913,-4.357830,-4.291087,-7.806787, + -4.420999,-4.198435,-7.817132,-4.208658,-4.234515,-7.668337,-4.380402,-4.286511,-7.719443,-4.443861,-4.204360,-7.730582, + -4.258479,-4.050879,-7.666417,-4.234464,-4.044655,-7.757329,-4.269513,-4.295276,-7.783744,-4.357707,-4.042356,-7.698322, + -4.335235,-4.036532,-7.783392,-4.293237,-4.290999,-7.692038,-13.827968,-0.674063,-6.536208,-13.964229,-0.884145,-6.576866, + -13.843125,-0.663481,-6.540030,-13.984421,-0.870126,-6.581904,-13.800591,-0.861330,-7.164812,-13.678162,-0.640466,-7.093048, + -13.693319,-0.629884,-7.096869,-13.820782,-0.847311,-7.169850,-14.153320,-1.156581,-6.588937,-14.094933,-1.196858,-6.576270, + -13.949928,-1.077505,-7.292192,-13.891541,-1.117781,-7.279527,-13.756926,-0.667385,-6.450734,-13.815312,-0.627108,-6.463400, + -13.588289,-0.634247,-7.139858,-13.646676,-0.593970,-7.152525,-13.807676,-0.846651,-7.169246,-13.996469,-0.857591,-6.592692, + -13.933875,-1.043745,-7.215798,-13.948906,-1.033144,-7.220043,-13.827659,-0.832558,-7.174890,-13.959733,-0.883241,-6.583414, + -14.110194,-1.109696,-6.626473,-14.125226,-1.099095,-6.630718,-10.355932,-3.055710,-7.311793,-13.597765,-0.819411,-8.015060, + -13.546366,-0.738896,-7.995971,-10.304533,-2.975195,-7.292704,-10.381416,-3.062314,-7.215322,-13.623249,-0.826015,-7.918589, + -13.571850,-0.745501,-7.899499,-10.330017,-2.981800,-7.196232,-9.841937,-2.250568,-7.120896,-13.083771,-0.014269,-7.824163, + -13.032372,0.066245,-7.805074,-9.790538,-2.170054,-7.101806,-9.867421,-2.257173,-7.024424,-13.109255,-0.020874,-7.727691, + -13.057856,0.059640,-7.708601,-9.816022,-2.176658,-7.005334,-9.347900,-1.476688,-6.937410,-12.589733,0.759610,-7.640678, + -12.538334,0.840124,-7.621588,-9.296501,-1.396174,-6.918321,-9.373384,-1.483293,-6.840939,-12.615217,0.753006,-7.544206, + -12.563818,0.833520,-7.525116,-9.321985,-1.402779,-6.821848,-10.853501,-3.835122,-7.496591,-14.095335,-1.598823,-8.199859, + -14.043936,-1.518309,-8.180769,-10.802102,-3.754608,-7.477501,-10.878985,-3.841727,-7.400119,-14.120819,-1.605428,-8.103386, + -14.069420,-1.524914,-8.084296,-10.827586,-3.761213,-7.381029,-11.398897,-4.689451,-7.699151,-14.640730,-2.453152,-8.402418, + -14.574355,-2.349180,-8.377767,-11.332521,-4.585479,-7.674499,-11.424381,-4.696055,-7.602678,-14.666214,-2.459757,-8.305946, + -14.599839,-2.355784,-8.281294,-11.358006,-4.592083,-7.578027,-9.317013,-1.400472,-6.959744,-11.379326,-4.630967,-7.725688, + -11.458260,-4.576516,-7.742812,-9.395947,-1.346021,-6.976869,-9.342497,-1.407077,-6.863272,-11.404810,-4.637572,-7.629215, + -11.483745,-4.583121,-7.646339,-9.421432,-1.352626,-6.880396,-12.449296,0.760256,-7.639247,-14.511609,-2.470239,-8.405190, + -14.590544,-2.415788,-8.422314,-12.528231,0.814707,-7.656371,-12.474780,0.753651,-7.542774,-14.537093,-2.476843,-8.308718, + -14.616028,-2.422392,-8.325842,-12.553715,0.808102,-7.559898,-11.985068,0.440020,-7.538539,-14.047380,-2.790475,-8.304483, + -14.126316,-2.736024,-8.321607,-12.064003,0.494471,-7.555663,-12.010552,0.433415,-7.442067,-14.072865,-2.797080,-8.208011, + -14.151800,-2.742628,-8.225134,-12.089487,0.487866,-7.459191,-11.716823,-3.661629,-9.780890,-13.456489,-2.461563,-10.158284, + -11.605447,0.396613,-9.473639,-9.871746,-0.771428,-9.095628,-12.254442,-3.822431,-7.813968,-13.994108,-2.622365,-8.191362, + -12.116182,0.319292,-7.493900,-10.376516,-0.880773,-7.116506,-11.411601,-4.607759,-7.645086,-9.369593,-1.409077,-6.886684, + -12.292023,-4.967790,-3.756045,-15.711061,-2.609250,-4.497755,-13.649096,0.620694,-3.731941,-10.230057,-1.737846,-2.990231, + -10.776006,-3.244259,-5.385497,-14.186731,-0.899240,-6.092565,-14.135332,-0.818726,-6.073475,-10.724607,-3.163745,-5.366407, + -10.805013,-3.251777,-5.275690,-14.212215,-0.905845,-5.996092,-14.160816,-0.825331,-5.977003,-10.753613,-3.171263,-5.256600, + -10.262011,-2.439118,-5.194600,-13.672737,-0.094099,-5.901668,-13.621338,-0.013585,-5.882578,-10.210611,-2.358604,-5.175510, + -10.291018,-2.446635,-5.084792,-13.698221,-0.100703,-5.805195,-13.646822,-0.020189,-5.786105,-10.239618,-2.366121,-5.065702, + -9.758673,-1.715570,-5.012103,-13.231413,0.672229,-5.732624,-13.180014,0.752743,-5.713534,-9.707273,-1.635056,-4.993013, + -9.800226,-1.726339,-4.854800,-13.269444,0.662372,-5.588656,-13.218044,0.742886,-5.569566,-9.748827,-1.645825,-4.835711, + -11.290000,-4.049401,-5.576395,-14.700726,-1.704382,-6.283463,-14.649326,-1.623868,-6.264373,-11.238601,-3.968886,-5.557305, + -11.319007,-4.056918,-5.466587,-14.726211,-1.710986,-6.186990,-14.674810,-1.630472,-6.167900,-11.267608,-3.976404,-5.447497, + -11.742567,-4.854299,-5.740706,-15.230066,-2.473914,-6.475976,-15.169800,-2.379510,-6.453593,-11.691168,-4.773785,-5.721617, + -11.795951,-4.852789,-5.603340,-15.265426,-2.483078,-6.342120,-15.205159,-2.388674,-6.319737,-11.744552,-4.772275,-5.584250, + -9.756639,-1.637887,-4.962936,-11.779530,-4.806630,-5.714240,-11.919687,-4.715952,-5.719308,-9.896796,-1.547210,-4.968006, + -9.759420,-1.662243,-4.852724,-11.782311,-4.830985,-5.604026,-11.930956,-4.728446,-5.636272,-9.908066,-1.559704,-4.884970, + -13.036794,0.640544,-5.647696,-15.078924,-2.558335,-6.406143,-15.225365,-2.459220,-6.429882,-13.183234,0.739658,-5.671436, + -13.071875,0.642958,-5.563422,-15.114004,-2.555921,-6.321869,-15.234779,-2.473421,-6.344639,-13.192650,0.725458,-5.586193, + -11.118991,-3.395500,-3.327056,-14.783812,-0.867414,-4.122084,-14.835212,-0.947928,-4.141174,-11.170390,-3.476014,-3.346145, + -11.093093,-3.388788,-3.425096,-14.770807,-0.864043,-4.171314,-14.822206,-0.944557,-4.190404,-11.144492,-3.469302,-3.444186, + -10.611406,-2.594581,-3.120040,-14.276227,-0.066495,-3.915068,-14.324641,-0.145841,-3.944206,-10.659821,-2.673928,-3.149178, + -10.587477,-2.583060,-3.203655,-14.256544,-0.056664,-3.974542,-14.304958,-0.136011,-4.003679,-10.635891,-2.662406,-3.232793, + -10.129396,-1.862360,-3.013581,-13.794218,0.665726,-3.808609,-13.742818,0.746240,-3.789520,-10.077997,-1.781847,-2.994491, + -10.154881,-1.868965,-2.917108,-13.819702,0.659121,-3.712137,-13.768303,0.739635,-3.693047,-10.103481,-1.788451,-2.898019, + -11.672864,-4.279413,-3.584611,-15.337685,-1.751327,-4.379640,-15.285286,-1.670613,-4.364524,-11.620464,-4.198699,-3.569495, + -11.693234,-4.282146,-3.499398,-15.358056,-1.754060,-4.294426,-15.305656,-1.673346,-4.279311,-11.640836,-4.201432,-3.484283, + -12.185375,-5.082927,-3.777171,-15.850196,-2.554841,-4.572200,-15.798797,-2.474326,-4.553110,-12.133976,-5.002413,-3.758082, + -12.210859,-5.089531,-3.680699,-15.875681,-2.561445,-4.475727,-15.824281,-2.480931,-4.456637,-12.159460,-5.009017,-3.661609, + -10.192696,-1.737830,-2.986090,-12.274966,-4.999587,-3.759445,-12.316682,-4.970810,-3.768495,-10.234412,-1.709053,-2.995140, + -10.204413,-1.753238,-2.889557,-12.286684,-5.014995,-3.662912,-12.342166,-4.977415,-3.672023,-10.259896,-1.715658,-2.898668, + -13.631650,0.634447,-3.732120,-15.713921,-2.627309,-4.505476,-15.799061,-2.568577,-4.523945,-13.716791,0.693179,-3.750590, + -13.657135,0.627843,-3.635648,-15.739405,-2.633914,-4.409003,-15.831020,-2.574877,-4.411324,-13.748750,0.686879,-3.637968, + -15.148306,-3.239295,-3.355664,-14.578147,-2.423396,-8.332021,-13.086341,-0.009351,-2.589851,-12.536139,0.775286,-7.573619, + -10.413477,-1.681313,-2.977545,-13.642029,0.541489,-3.680076,-13.593590,0.617366,-3.662086,-10.369263,-1.612054,-2.961123, + -10.170038,-1.849286,-2.924553,-13.812882,0.658855,-3.715063,-13.764442,0.734733,-3.697073,-10.125824,-1.780027,-2.908131, + -13.097235,0.051666,-2.475404,-13.027041,0.039307,-2.612271,-13.045835,0.132181,-2.456314,-12.975642,0.119821,-2.593181, + -12.474368,-4.899468,-3.744800,-15.697932,-2.674943,-4.445161,-15.650650,-2.600879,-4.427601,-12.428396,-4.827456,-3.727726, + -12.221251,-5.074119,-3.689702,-15.864701,-2.560382,-4.479312,-15.817419,-2.486318,-4.461751,-12.175280,-5.002107,-3.672628, + -15.261385,-3.338343,-3.279169,-15.177695,-3.329562,-3.411023,-15.196489,-3.236688,-3.255067,-15.126295,-3.249048,-3.391934, + -15.240047,-3.357924,-3.346415,-15.271217,-3.354149,-3.278413,-13.014968,0.184887,-2.425310,-12.200318,-5.108405,-3.711307, + -10.073978,-1.777622,-2.921584,-12.197376,-5.119357,-3.673037,-10.071036,-1.788574,-2.883314,-15.958427,-2.531076,-4.462848, + -13.832088,0.799707,-3.673125,-15.872513,-2.576943,-4.500720,-13.746172,0.753839,-3.710997,-12.985931,0.171239,-2.514869, + -11.789927,-4.786180,-5.680909,-13.132505,0.655858,-5.652746,-9.789896,-1.649958,-4.927617,-15.132535,-2.480365,-6.406038, + -11.411601,-4.607759,-7.645086,-9.369593,-1.409077,-6.886684,-14.578147,-2.423396,-8.332021,-12.536139,0.775286,-7.573619, + -11.905149,-4.709578,-5.693755,-13.071665,0.611008,-5.627398,-9.905120,-1.573355,-4.940463,-15.071695,-2.525214,-6.380690, + -9.820902,-1.716758,-4.899782,-9.886092,-1.671788,-4.913924,-9.834693,-1.591274,-4.894834,-9.769503,-1.636244,-4.880692, + -10.234421,-1.829625,-2.929111,-10.299611,-1.784655,-2.943253,-10.248212,-1.704141,-2.924163,-10.183022,-1.749111,-2.910021, + -10.530056,-2.827605,-5.163161,-10.595245,-2.782635,-5.177303,-10.543846,-2.702121,-5.158214,-10.478656,-2.747090,-5.144072, + -10.994669,-2.957967,-3.267051,-11.059859,-2.912997,-3.281193,-11.008460,-2.832483,-3.262104,-10.943270,-2.877453,-3.247962, + -11.090769,-3.705927,-5.371410,-11.155958,-3.660957,-5.385552,-11.104559,-3.580443,-5.366462,-11.039369,-3.625413,-5.352320, + -11.575092,-3.867164,-3.482620,-11.640283,-3.822194,-3.496763,-11.588882,-3.741680,-3.477673,-11.523693,-3.786650,-3.463531, + -11.808383,-4.830027,-5.637932,-11.873573,-4.785057,-5.652074,-11.822173,-4.704543,-5.632984,-11.756983,-4.749513,-5.618842, + -12.275702,-5.024527,-3.678837,-12.340893,-4.979557,-3.692979,-12.297093,-4.910948,-3.676712,-12.231903,-4.955918,-3.662570, + -9.390923,-1.466981,-6.922755,-9.455809,-1.421939,-6.938021,-9.404409,-1.341425,-6.918931,-9.339523,-1.386467,-6.903666, + -9.900260,-1.652909,-4.955402,-9.965146,-1.607867,-4.970668,-9.913747,-1.527353,-4.951578,-9.848861,-1.572395,-4.936312, + -10.061940,-2.518090,-7.171971,-10.126827,-2.473048,-7.187237,-10.075427,-2.392534,-7.168147,-10.010541,-2.437576,-7.152882, + -10.561669,-2.688966,-5.201049,-10.626555,-2.643924,-5.216315,-10.575155,-2.563410,-5.197225,-10.510269,-2.608452,-5.181959, + -10.723265,-3.554013,-7.417587,-10.788151,-3.508971,-7.432853,-10.736751,-3.428457,-7.413763,-10.671865,-3.473499,-7.398497, + -11.203282,-3.694015,-5.439344,-11.268168,-3.648973,-5.454610,-11.216769,-3.568459,-5.435520,-11.151883,-3.613501,-5.420255, + -11.417826,-4.642002,-7.675547,-11.482712,-4.596959,-7.690813,-11.431313,-4.516445,-7.671723,-11.362893,-4.555954,-7.655145, + -11.887741,-4.766178,-5.693552,-11.952627,-4.721136,-5.708818,-11.901228,-4.640621,-5.689728,-11.832808,-4.680130,-5.673150, + -11.783013,-0.250401,-5.317707,-11.821033,-0.309956,-5.331828,-11.899968,-0.255505,-5.348951,-11.861948,-0.195949,-5.334831, + -12.299711,-0.288898,-3.398268,-12.337731,-0.348453,-3.412389,-12.416666,-0.294001,-3.429512,-12.378647,-0.234446,-3.415392, + -10.926879,-0.834203,-5.160579,-10.964898,-0.893758,-5.174699,-11.043833,-0.839307,-5.191823,-11.005814,-0.779752,-5.177702, + -11.359923,-0.937186,-3.194395,-11.397943,-0.996742,-3.208515,-11.476877,-0.942290,-3.225639,-11.438858,-0.882735,-3.211519, + -11.268892,-0.071719,-7.330467,-11.311231,-0.138004,-7.347374,-11.393497,-0.085863,-7.345784,-11.351158,-0.019579,-7.328876, + -11.772870,-0.247054,-5.353827,-11.815018,-0.313465,-5.370716,-11.893952,-0.259014,-5.387839,-11.851805,-0.192603,-5.370950, + -10.349229,-0.707793,-7.123928,-10.391376,-0.774203,-7.140817,-10.470311,-0.719752,-7.157941,-10.428164,-0.653342,-7.141051, + -10.923880,-0.832708,-5.169651,-10.966027,-0.899119,-5.186540,-11.044962,-0.844668,-5.203664,-11.002814,-0.778257,-5.186775, + -13.039740,-3.956434,-5.903401,-13.001720,-3.896879,-5.889281,-12.922785,-3.951330,-5.872157,-12.960805,-4.010885,-5.886278, + -13.521839,-4.145599,-3.985138,-13.483820,-4.086044,-3.971018,-13.404884,-4.140495,-3.953894,-13.442904,-4.200050,-3.968014, + -13.875031,-3.367229,-6.139429,-13.837012,-3.307674,-6.125309,-13.758078,-3.362125,-6.108185,-13.796097,-3.421680,-6.122305, + -14.455946,-3.495837,-4.210515,-14.417927,-3.436281,-4.196394,-14.338992,-3.490733,-4.179270,-14.377012,-3.550288,-4.193391, + -12.481319,-3.869486,-7.903593,-12.438577,-3.802921,-7.888954,-12.359642,-3.857373,-7.871830,-12.402385,-3.923937,-7.886469, + -13.030693,-3.954807,-5.939929,-12.987951,-3.888242,-5.925290,-12.909017,-3.942693,-5.908166,-12.951758,-4.009258,-5.922805, + -13.404313,-3.235722,-8.091418,-13.361761,-3.169031,-8.076797,-13.279495,-3.221172,-8.078388,-13.322047,-3.287862,-8.093009, + -13.865986,-3.365602,-6.175956,-13.823243,-3.299037,-6.161317,-13.744308,-3.353488,-6.144194,-13.787050,-3.420053,-6.158833, + -15.156703,-2.416214,-6.357176,-15.091513,-2.461184,-6.343034,-15.142912,-2.541698,-6.362124,-15.208103,-2.496728,-6.376266, + -15.725686,-2.532530,-4.527606,-15.660496,-2.577500,-4.513464,-15.711895,-2.658014,-4.532554,-15.777085,-2.613044,-4.546696, + -14.428085,-1.274881,-6.086568,-14.362894,-1.319851,-6.072426,-14.414294,-1.400365,-6.091516,-14.479485,-1.355395,-6.105658, + -14.997533,-1.378110,-4.213238,-14.932343,-1.423079,-4.199096,-14.983742,-1.503594,-4.218186,-15.048932,-1.458624,-4.232328, + -13.867371,-0.396559,-5.878319,-13.802181,-0.441529,-5.864177,-13.853580,-0.522043,-5.883266,-13.918770,-0.477073,-5.897408, + -14.417109,-0.468913,-3.997669,-14.351919,-0.513883,-3.983527,-14.403318,-0.594397,-4.002616,-14.468508,-0.549427,-4.016758, + -13.169218,0.697052,-5.619025,-13.104028,0.652081,-5.604883,-13.155428,0.571567,-5.623973,-13.220617,0.616537,-5.638115, + -13.688196,0.671320,-3.731912,-13.623007,0.626350,-3.717770,-13.674406,0.545836,-3.736860,-13.739596,0.590806,-3.751002, + -14.560331,-2.370165,-8.350143,-14.494851,-2.415054,-8.337128,-14.546250,-2.495568,-8.356217,-14.611731,-2.450680,-8.369232, + -15.090275,-2.452933,-6.381170,-15.024794,-2.497821,-6.368155,-15.076193,-2.578335,-6.387245,-15.141674,-2.533447,-6.400260, + -13.854767,-1.264943,-8.088097,-13.789286,-1.309832,-8.075081,-13.840685,-1.390346,-8.094171,-13.906166,-1.345457,-8.107186, + -14.394812,-1.363537,-6.122876,-14.329331,-1.408425,-6.109860,-14.380731,-1.488939,-6.128950,-14.446211,-1.444051,-6.141966, + -13.193441,-0.229021,-7.842481,-13.127960,-0.273909,-7.829465,-13.179360,-0.354423,-7.848555,-13.244841,-0.309535,-7.861570, + -13.753197,-0.358489,-5.884581,-13.687716,-0.403377,-5.871565,-13.739116,-0.483891,-5.890655,-13.804596,-0.439002,-5.903670, + -12.533424,0.804852,-7.597351,-12.467944,0.759964,-7.584335,-12.519343,0.679450,-7.603425,-12.588357,0.718804,-7.617752, + -13.102789,0.660332,-5.643019,-13.037309,0.615444,-5.630004,-13.088708,0.534930,-5.649094,-13.157722,0.574285,-5.663421, + -8.842821,-1.322673,-8.814170,-8.907707,-1.277631,-8.829436,-8.856308,-1.197117,-8.810347,-8.791422,-1.242159,-8.795080, + -9.393431,-1.465414,-6.922611,-9.458317,-1.420372,-6.937877,-9.406918,-1.339858,-6.918787,-9.342031,-1.384900,-6.903522, + -9.520657,-2.384461,-9.065918,-9.585543,-2.339419,-9.081184,-9.534142,-2.258905,-9.062094,-9.469256,-2.303947,-9.046828, + -10.064448,-2.516523,-7.171827,-10.129335,-2.471481,-7.187093,-10.077935,-2.390967,-7.168003,-10.013049,-2.436009,-7.152737, + -10.195120,-3.440968,-9.316414,-10.260006,-3.395926,-9.331679,-10.208607,-3.315412,-9.312590,-10.143721,-3.360454,-9.297324, + -10.725773,-3.552446,-7.417442,-10.790659,-3.507404,-7.432708,-10.739259,-3.426890,-7.413619,-10.674373,-3.471932,-7.398353, + -10.870676,-4.499186,-9.567315,-10.935562,-4.454144,-9.582582,-10.871023,-4.353046,-9.558611,-10.806137,-4.398089,-9.543345, + -11.401329,-4.610665,-7.668344,-11.466215,-4.565623,-7.683610,-11.414816,-4.485108,-7.664520,-11.349930,-4.530150,-7.649254, + -10.233521,-0.768242,-7.158567,-12.295834,-3.998736,-7.924511,-12.374768,-3.944285,-7.941635,-10.312456,-0.713791,-7.175692, + -10.259006,-0.774846,-7.062095,-12.321319,-4.005341,-7.828038,-12.400253,-3.950890,-7.845162,-10.337940,-0.720395,-7.079219, + -11.237706,-0.072819,-7.387841,-13.300019,-3.303314,-8.153785,-13.382285,-3.251173,-8.152195,-11.315634,-0.022147,-7.391737, + -11.246846,-0.090231,-7.289794,-13.309159,-3.320726,-8.055737,-13.391425,-3.268585,-8.054147,-11.324774,-0.039559,-7.293690, + -9.921808,-2.471832,-7.774825,-9.956934,-2.446572,-7.783229,-9.943758,-2.402985,-7.705366,-9.908632,-2.428245,-7.696961, + -10.398957,-3.007186,-7.324104,-10.434016,-2.981821,-7.332484,-10.415225,-2.929438,-7.252536,-10.380166,-2.954804,-7.244156, + -10.556941,-3.474197,-8.034461,-10.592000,-3.448832,-8.042841,-10.573209,-3.396449,-7.962892,-10.538150,-3.421815,-7.954513, + -11.027736,-3.992129,-7.557632,-11.062794,-3.966763,-7.566012,-11.044003,-3.914381,-7.486064,-11.008945,-3.939746,-7.477684, + -11.252044,-4.467561,-8.286086,-11.216565,-4.492817,-8.279298,-11.270464,-4.554298,-8.226347,-11.305943,-4.529042,-8.233134, + -11.064716,-3.984423,-7.566874,-11.029237,-4.009680,-7.560086,-11.083136,-4.071161,-7.507134,-11.118614,-4.045904,-7.513923, + -10.581699,-3.411694,-8.018649,-10.546221,-3.436951,-8.011861,-10.600119,-3.498432,-7.958909,-10.635598,-3.473176,-7.965698, + -10.379425,-2.910954,-7.312357,-10.343946,-2.936210,-7.305569,-10.397844,-2.997691,-7.252617,-10.433324,-2.972435,-7.259405, + -9.260139,-1.378432,-7.568231,-9.236012,-1.342420,-7.560247,-9.219426,-1.375142,-7.466896,-9.243553,-1.411154,-7.474880, + -9.931731,-1.058596,-7.067281,-9.907604,-1.022585,-7.059297,-9.869343,-1.065637,-6.980738,-9.893470,-1.101648,-6.988722, + -11.297802,-4.528158,-8.302322,-11.276241,-4.490438,-8.294899,-11.235538,-4.529347,-8.215412,-11.257099,-4.567067,-8.222836, + -11.969969,-4.255284,-7.824549,-11.948407,-4.217565,-7.817126,-11.907704,-4.256474,-7.737639,-11.929266,-4.294193,-7.745063, + -12.757965,0.034522,-3.513114,-12.795984,-0.025033,-3.527234,-12.874919,0.029418,-3.544358,-12.836900,0.088973,-3.530237, + -12.942563,0.068407,-2.554425,-12.980582,0.008852,-2.568545,-13.059517,0.063303,-2.585669,-13.021498,0.122859,-2.571548, + -14.839148,-3.236755,-4.286833,-14.801128,-3.177200,-4.272713,-14.722193,-3.231651,-4.255589,-14.760213,-3.291206,-4.269710, + -15.200244,-3.290016,-3.380735,-15.162224,-3.230460,-3.366614,-15.083290,-3.284911,-3.349490,-15.121309,-3.344467,-3.363611, + -11.666735,-0.716738,-3.282708,-11.704754,-0.776293,-3.296829,-11.783689,-0.721842,-3.313953,-11.745669,-0.662287,-3.299832, + -11.705071,-0.687834,-2.696820,-11.743091,-0.747389,-2.710940,-11.822025,-0.692938,-2.728063,-11.784006,-0.633383,-2.713943, + -13.831829,-3.930130,-4.074632,-13.793810,-3.870574,-4.060511,-13.714874,-3.925026,-4.043387,-13.752894,-3.984581,-4.057508, + -13.931092,-3.996664,-3.511371,-13.893072,-3.937109,-3.497250,-13.814138,-3.991560,-3.480127,-13.852158,-4.051116,-3.494247, + -11.270393,-0.685244,-4.604712,-11.308992,-0.744922,-4.616554,-11.416930,-0.695235,-4.515130,-11.378331,-0.635556,-4.503288, + -11.440685,-0.736123,-3.811535,-11.479284,-0.795802,-3.823377,-11.529216,-0.736587,-3.959048,-11.490616,-0.676908,-3.947207, + -11.731583,-0.391874,-4.579921,-11.770182,-0.451553,-4.591763,-11.820113,-0.392339,-4.727434,-11.781514,-0.332660,-4.715592, + -11.886240,-0.403997,-4.033031,-11.924839,-0.463676,-4.044873,-12.032777,-0.413988,-3.943449,-11.994178,-0.354310,-3.931607, + -11.398001,-0.694445,-4.250022,-11.415888,-0.722101,-4.255510,-11.430755,-0.723325,-4.200883,-11.412867,-0.695669,-4.195395, + -11.856884,-0.389374,-4.291718,-11.874771,-0.417030,-4.297206,-11.862758,-0.413839,-4.352452,-11.844870,-0.386183,-4.346965, + -11.678833,-0.567473,-3.959284,-11.696720,-0.595129,-3.964772,-11.742106,-0.563412,-3.976676,-11.724218,-0.535756,-3.971188, + -11.575273,-0.511292,-4.579988,-11.593160,-0.538948,-4.585476,-11.546818,-0.570508,-4.577482,-11.528930,-0.542852,-4.571995, + -11.478260,-0.718478,-3.916281,-11.936106,-0.402236,-4.017663,-11.768996,-0.390302,-4.622523,-11.352567,-0.677157,-4.534244, + -12.954148,0.432155,-6.931362,-12.950216,0.332367,-6.856912,-13.008604,0.372644,-6.869578,-13.119652,0.404074,-6.240601, + -13.076263,0.314512,-6.315515,-13.134651,0.354788,-6.328180,-13.256392,-0.015503,-6.961607,-13.198006,-0.055780,-6.948940, + -13.271392,-0.064789,-7.049187,-13.408532,-0.070095,-6.416748,-13.350145,-0.110371,-6.404081,-13.404600,-0.169883,-6.342297, + -13.462988,-0.129606,-6.354963,-14.455712,-1.710438,-6.805670,-14.397326,-1.750715,-6.793004,-14.440713,-1.661152,-6.718090, + -14.332605,-1.701324,-7.361312,-14.274218,-1.741601,-7.348646,-14.278151,-1.641813,-7.423097,-13.239427,0.177971,-6.338209, + -13.212370,0.159307,-6.332339,-13.264539,0.081052,-6.340696,-13.291595,0.099717,-6.346566,-13.131750,0.141144,-6.951673, + -13.104692,0.122479,-6.945803,-13.074314,0.169394,-6.936655,-13.101372,0.188059,-6.942524,-13.103135,0.372163,-6.288912, + -13.417332,-0.116542,-6.394586,-13.247657,-0.059720,-6.996042,-12.958527,0.392515,-6.890793,-10.440025,-1.721750,-9.341849, + -10.090687,-1.173699,-9.209461,-10.519523,-1.267655,-7.531437,-10.902983,-1.867493,-7.671211,-10.792274,-1.744764,-7.791282, + -10.552930,-1.370352,-7.704004,-10.438555,-1.349302,-8.164297,-10.663982,-1.702930,-8.249636,-10.678805,-1.692705,-8.252851, + -10.453378,-1.339077,-8.167513,-10.567752,-1.360127,-7.707220,-10.807096,-1.734539,-7.794497,-10.570722,-1.538003,-8.213709, + -10.591195,-1.523880,-8.218150,-10.568986,-1.488583,-8.208287,-10.548513,-1.502706,-8.203846,-10.676029,-1.544342,-7.748434, + -10.696502,-1.530219,-7.752875,-10.719488,-1.565718,-7.759797,-10.699015,-1.579840,-7.755356,-10.506277,-1.361159,-7.959221, + -10.526751,-1.347037,-7.963662,-10.538366,-1.350966,-7.922607,-10.517894,-1.365088,-7.918166,-10.736661,-1.707775,-7.999416, + -10.757133,-1.693653,-8.003858,-10.746922,-1.691925,-8.045434,-10.726450,-1.706048,-8.040993,-11.365399,-2.942767,-8.908286, + -11.423786,-2.902490,-8.920953,-11.403513,-2.830042,-8.784034,-11.345125,-2.870319,-8.771368,-11.578132,-2.999876,-8.126400, + -11.636518,-2.959599,-8.139066,-11.553993,-2.871019,-8.237804,-11.495606,-2.911295,-8.225139,-11.097365,-2.482216,-8.679350, + -11.155753,-2.441940,-8.692016,-11.073228,-2.353359,-8.790755,-11.014841,-2.393635,-8.778089,-11.237991,-2.507756,-8.129460, + -11.296379,-2.467479,-8.142126,-11.276105,-2.395031,-8.005208,-11.217718,-2.435308,-7.992542,-11.443851,-2.908408,-8.538022, + -11.470908,-2.889743,-8.543891,-11.484404,-2.892027,-8.488943,-11.457347,-2.910691,-8.483074,-11.168220,-2.457789,-8.375691, + -11.195277,-2.439125,-8.381561,-11.179924,-2.433931,-8.435820,-11.152867,-2.452596,-8.429950,-11.398911,-2.728008,-8.157293, + -11.425967,-2.709343,-8.163162,-11.395589,-2.662428,-8.154015,-11.368531,-2.681093,-8.148145,-11.208687,-2.639668,-8.753251, + -11.235744,-2.621003,-8.759121,-11.270782,-2.676560,-8.774269,-11.243725,-2.695225,-8.768399,-11.541753,-2.932462,-8.209023, + -11.242797,-2.464834,-8.100125,-11.089523,-2.433703,-8.707673,-11.377598,-2.885628,-8.816798,-10.687356,-3.330842,-6.599693, + -10.745743,-3.290565,-6.612359,-10.707787,-3.213534,-6.542380,-10.649400,-3.253811,-6.529715,-10.882021,-3.401735,-5.944920, + -10.940409,-3.361458,-5.957585,-10.875566,-3.277460,-5.989385,-10.817180,-3.317737,-5.976719,-10.418939,-2.888658,-6.430930, + -10.477325,-2.848381,-6.443596,-10.412483,-2.764383,-6.475396,-10.354096,-2.804659,-6.462729,-10.559565,-2.914197,-5.881041, + -10.617951,-2.873920,-5.893707,-10.579995,-2.796889,-5.823728,-10.521608,-2.837166,-5.811062,-10.765425,-3.314849,-6.289602, + -10.792481,-3.296185,-6.295472,-10.805977,-3.298468,-6.240524,-10.778919,-3.317132,-6.234654,-10.489793,-2.864231,-6.127272, + -10.516850,-2.845566,-6.133142,-10.501497,-2.840373,-6.187400,-10.474440,-2.859037,-6.181530,-10.720483,-3.134449,-5.908874, + -10.747540,-3.115785,-5.914743,-10.717162,-3.068869,-5.905595,-10.690104,-3.087534,-5.899725,-10.530259,-3.046109,-6.504832, + -10.557317,-3.027444,-6.510701,-10.586668,-3.074093,-6.523737,-10.559611,-3.092758,-6.517867,-10.863325,-3.338903,-5.960604, + -10.564369,-2.871275,-5.851706,-10.411097,-2.840145,-6.459253,-10.681872,-3.269120,-6.575144,-11.347739,-4.361143,-6.831769, + -11.406126,-4.320867,-6.844435,-11.368170,-4.243836,-6.774456,-11.309782,-4.284113,-6.761790,-11.531675,-4.419378,-6.186201, + -11.590063,-4.379102,-6.198867,-11.525221,-4.295104,-6.230667,-11.466833,-4.335381,-6.218000,-11.064804,-3.900367,-6.670805, + -11.123191,-3.860091,-6.683471,-11.058350,-3.776092,-6.715270,-10.999962,-3.816369,-6.702604,-11.192794,-3.906112,-6.116222, + -11.251181,-3.865835,-6.128888,-11.213224,-3.788805,-6.058909,-11.154838,-3.829082,-6.046243,-11.405224,-4.317056,-6.527224, + -11.432281,-4.298391,-6.533093,-11.445776,-4.300674,-6.478145,-11.418718,-4.319339,-6.472276,-11.129592,-3.866437,-6.364894, + -11.156649,-3.847773,-6.370763,-11.141296,-3.842579,-6.425021,-11.114239,-3.861244,-6.419152,-11.360282,-4.136656,-6.146495, + -11.387340,-4.117991,-6.152364,-11.356961,-4.071076,-6.143216,-11.329904,-4.089741,-6.137346,-11.170058,-4.048316,-6.742453, + -11.197116,-4.029651,-6.748322,-11.226467,-4.076300,-6.761358,-11.199410,-4.094965,-6.755488,-11.512980,-4.356547,-6.201885, + -11.197598,-3.863190,-6.086887,-11.056962,-3.851854,-6.699128,-11.342255,-4.299421,-6.807220,-11.047037,-3.519497,-4.731640, + -11.105425,-3.479220,-4.744307,-11.090416,-3.432062,-4.663537,-11.032029,-3.472339,-4.650870,-11.240267,-3.580141,-4.050895, + -11.298654,-3.539864,-4.063561,-11.247467,-3.483329,-4.119747,-11.189079,-3.523606,-4.107080,-10.784268,-3.084236,-4.558852, + -10.842656,-3.043959,-4.571518,-10.791470,-2.987425,-4.627703,-10.733082,-3.027702,-4.615037,-10.918325,-3.099484,-4.006522, + -10.976712,-3.059207,-4.019188,-10.961703,-3.012049,-3.938418,-10.903316,-3.052326,-3.925752,-11.137324,-3.520719,-4.419964, + -11.164382,-3.502054,-4.425834,-11.177877,-3.504338,-4.370886,-11.150820,-3.523002,-4.365016,-10.861692,-3.070100,-4.257634, + -10.888750,-3.051435,-4.263503,-10.873398,-3.046242,-4.317761,-10.846340,-3.064907,-4.311892,-11.092383,-3.340319,-4.039235, + -11.119440,-3.321654,-4.045105,-11.089062,-3.274739,-4.035956,-11.062005,-3.293404,-4.030087,-10.902160,-3.251978,-4.635194, + -10.929216,-3.233314,-4.641063,-10.958569,-3.279963,-4.654099,-10.931511,-3.298628,-4.648229,-11.235226,-3.544773,-4.090966, + -10.923130,-3.056562,-3.977187,-10.776427,-3.035723,-4.587175,-11.064501,-3.487648,-4.696301,-11.696564,-4.536940,-4.972874, + -11.754951,-4.496663,-4.985540,-11.740070,-4.449705,-4.904818,-11.681683,-4.489983,-4.892152,-11.896362,-4.607875,-4.294569, + -11.954749,-4.567598,-4.307235,-11.903690,-4.511264,-4.363469,-11.845304,-4.551541,-4.350802,-11.424068,-4.086442,-4.796474, + -11.482455,-4.046166,-4.809140,-11.431396,-3.989832,-4.865372,-11.373010,-4.030109,-4.852706,-11.561409,-4.106836,-4.245364, + -11.619797,-4.066559,-4.258030,-11.604916,-4.019602,-4.177307,-11.546529,-4.059879,-4.164640,-11.777123,-4.522926,-4.657585, + -11.804181,-4.504261,-4.663455,-11.817677,-4.506544,-4.608507,-11.790619,-4.525209,-4.602637,-11.501493,-4.072307,-4.495255, + -11.528549,-4.053642,-4.501125,-11.513197,-4.048450,-4.555383,-11.486139,-4.067114,-4.549514,-11.732183,-4.342525,-4.276856, + -11.759239,-4.323861,-4.282726,-11.728861,-4.276946,-4.273578,-11.701804,-4.295610,-4.267708,-11.541959,-4.254186,-4.872815, + -11.569016,-4.235520,-4.878685,-11.598368,-4.282169,-4.891720,-11.571310,-4.300835,-4.885850,-11.891449,-4.572707,-4.334687, + -11.566214,-4.063914,-4.216029,-11.416226,-4.037930,-4.824797,-11.714155,-4.505291,-4.937582,-10.419280,-2.536153,-4.498491, + -10.477667,-2.495876,-4.511158,-10.460487,-2.445316,-4.429581,-10.402100,-2.485593,-4.416914,-10.612509,-2.596796,-3.817746, + -10.670897,-2.556520,-3.830412,-10.617537,-2.496583,-3.885792,-10.559151,-2.536860,-3.873125,-10.156376,-2.109183,-4.352693, + -10.214763,-2.068906,-4.365359,-10.161405,-2.008970,-4.420738,-10.103018,-2.049247,-4.408072,-10.291681,-2.117884,-3.773787, + -10.350068,-2.077607,-3.786453,-10.332888,-2.027047,-3.704876,-10.274501,-2.067324,-3.692209,-10.497541,-2.518536,-4.182348, + -10.524598,-2.499872,-4.188218,-10.538094,-2.502155,-4.133270,-10.511036,-2.520820,-4.127400,-10.221909,-2.067918,-4.020018, + -10.248966,-2.049253,-4.025887,-10.233614,-2.044060,-4.080146,-10.206556,-2.062724,-4.074276,-10.452600,-2.338136,-3.801620, + -10.479656,-2.319471,-3.807489,-10.449278,-2.272556,-3.798341,-10.422220,-2.291221,-3.792471,-10.262376,-2.249796,-4.397578, + -10.289433,-2.231131,-4.403448,-10.318785,-2.277780,-4.416483,-10.291727,-2.296445,-4.410614,-10.605296,-2.558027,-3.857010, + -10.296486,-2.074962,-3.744452,-10.148534,-2.060670,-4.381016,-10.434572,-2.500902,-4.462345,-14.577584,-2.085070,-7.452297, + -14.519197,-2.125346,-7.439631,-14.592584,-2.134355,-7.539877,-14.729753,-2.139706,-6.907449,-14.671366,-2.179983,-6.894783, + -14.725821,-2.239494,-6.832998,-14.784208,-2.199217,-6.845665,-14.573609,-1.907808,-6.820572,-14.546552,-1.926472,-6.814702, + -14.575903,-1.973122,-6.827737,-14.602961,-1.954457,-6.833607,-14.443115,-1.913031,-7.438714,-14.416058,-1.931695,-7.432844, + -14.385679,-1.884780,-7.423696,-14.412737,-1.866116,-7.429565,-14.424196,-1.693063,-6.766401,-14.738551,-2.186153,-6.885287, + -14.568849,-2.129286,-7.486732,-14.282528,-1.681453,-7.382527,-14.785288,-1.690756,-5.463864,-14.973522,-1.713438,-4.766074, + -14.689587,-1.262660,-4.658122,-15.047508,-1.722041,-4.866418,-14.989656,-1.762435,-4.851815,-15.034254,-1.671544,-4.779249, + -14.902220,-1.707162,-5.415664,-14.844369,-1.747556,-5.401060,-14.846020,-1.648862,-5.477039,-15.159836,-2.110701,-5.511343, + -15.101984,-2.151096,-5.496738,-15.173089,-2.161199,-5.598513,-15.331402,-2.166745,-4.971857,-15.273551,-2.207139,-4.957253, + -15.329752,-2.265440,-4.895879,-15.387603,-2.225045,-4.910483,-15.169427,-1.924127,-4.882365,-15.142618,-1.942846,-4.875597, + -15.171925,-1.989527,-4.888622,-15.198733,-1.970808,-4.895390,-15.024746,-1.939196,-5.497179,-14.997936,-1.957915,-5.490411, + -14.967513,-1.911032,-5.481252,-14.994322,-1.892313,-5.488020,-15.016808,-1.704255,-4.826691,-15.340972,-2.212812,-4.949226, + -15.150557,-2.155469,-5.544913,-14.851555,-1.687873,-5.436004,-12.900393,0.395073,-6.919701,-13.065896,0.366992,-6.228939, + -13.217636,-0.101871,-7.037525,-13.409232,-0.166688,-6.343302,-14.386957,-1.698234,-6.706429,-14.224395,-1.678895,-7.411435, + -14.538828,-2.171438,-7.528215,-14.730452,-2.236299,-6.834003,-15.112358,-2.203093,-5.585338,-15.326872,-2.266940,-4.897308, + -10.487735,-1.818468,-9.378909,-10.546122,-1.778191,-9.391576,-10.477734,-1.671064,-9.366176,-10.419346,-1.711341,-9.353510, + -10.983022,-1.970277,-7.595669,-11.041409,-1.930000,-7.608335,-10.941895,-1.814806,-7.700764,-10.883508,-1.855083,-7.688097, + -10.096289,-1.205289,-9.233526,-10.154676,-1.165013,-9.246193,-10.086287,-1.057885,-9.220793,-10.027900,-1.098162,-9.208127, + -10.527600,-1.297574,-7.555913,-10.585987,-1.257297,-7.568580,-10.548724,-1.158236,-7.425352,-10.490337,-1.198513,-7.412685, + -12.814260,-1.350388,-9.902974,-13.171310,-1.908859,-10.032939,-13.598538,-2.044365,-8.494448,-13.214327,-1.441684,-8.349108, + -13.244705,-1.543595,-8.533131,-13.485297,-1.920978,-8.624102,-13.349184,-1.865875,-9.076321,-13.128667,-1.520954,-8.996036, + -13.113845,-1.531179,-8.992820,-13.334361,-1.876100,-9.073105,-13.470474,-1.931202,-8.620886,-13.229883,-1.553820,-8.529915, + -13.217757,-1.688581,-9.059771,-13.197285,-1.702703,-9.055329,-13.222590,-1.741777,-9.062925,-13.243063,-1.727654,-9.067367, + -13.378044,-1.762636,-8.556387,-13.357572,-1.776759,-8.551946,-13.333133,-1.737910,-8.541067,-13.353605,-1.723787,-8.545508, + -13.411661,-1.914952,-8.874983,-13.391188,-1.929074,-8.870541,-13.402596,-1.931019,-8.824144,-13.423068,-1.916897,-8.828586, + -13.174492,-1.524053,-8.725257,-13.154018,-1.538175,-8.720816,-13.135769,-1.532434,-8.786686,-13.156242,-1.518312,-8.791127, + -12.245556,-0.261509,-8.924551,-12.187169,-0.301786,-8.911884,-12.268779,-0.388212,-8.810511,-12.327166,-0.347935,-8.823176, + -12.441351,-0.303079,-8.137049,-12.382963,-0.343356,-8.124383,-12.405246,-0.418208,-8.259686,-12.463633,-0.377931,-8.272352, + -12.570461,-0.725376,-8.901867,-12.512074,-0.765652,-8.889201,-12.534356,-0.840505,-9.024504,-12.592743,-0.800228,-9.037170, + -12.717348,-0.771789,-8.355211,-12.658962,-0.812066,-8.342545,-12.740572,-0.898491,-8.241171,-12.798959,-0.858215,-8.253837, + -12.351678,-0.334716,-8.567519,-12.324620,-0.353381,-8.561649,-12.339306,-0.357519,-8.507116,-12.366363,-0.338855,-8.512986, + -12.658566,-0.792458,-8.608415,-12.631509,-0.811123,-8.602545,-12.618701,-0.809898,-8.657691,-12.645759,-0.791234,-8.663560, + -12.575828,-0.564750,-8.279985,-12.548771,-0.583415,-8.274116,-12.578464,-0.630175,-8.285925,-12.605521,-0.611510,-8.291795, + -12.446544,-0.571484,-8.897352,-12.419486,-0.590148,-8.891482,-12.388814,-0.543198,-8.883577,-12.415872,-0.524533,-8.889447, + -12.431556,-0.359971,-8.233808,-12.726046,-0.817787,-8.332093,-12.562331,-0.770249,-8.935595,-12.277285,-0.328659,-8.845380, + -12.757782,-1.251398,-9.899114,-12.699394,-1.291674,-9.886447,-12.767783,-1.398802,-9.911846,-12.826170,-1.358525,-9.924513, + -13.185288,-1.352118,-8.231583,-13.126902,-1.392394,-8.218917,-13.164164,-1.491455,-8.362144,-13.222551,-1.451179,-8.374811, + -13.155667,-1.874666,-10.046888,-13.097281,-1.914943,-10.034222,-13.165668,-2.022070,-10.059622,-13.224056,-1.981793,-10.072288, + -13.580482,-2.011860,-8.507747,-13.522095,-2.052136,-8.495081,-13.621610,-2.167330,-8.402652,-13.679996,-2.127053,-8.415318, + -10.348989,-1.007845,-7.477764,-10.511055,-0.896048,-7.512921,-10.405523,-0.730739,-7.473727,-10.243457,-0.842537,-7.438569, + -10.399957,-1.021054,-7.284819,-10.562023,-0.909257,-7.319976,-10.456491,-0.743948,-7.280782,-10.294426,-0.855746,-7.245625, + -10.005777,-0.944826,-8.920488,-10.167844,-0.833029,-8.955647,-10.062312,-0.667720,-8.916452,-9.900247,-0.779517,-8.881294, + -10.040321,-0.932306,-8.721443,-10.202387,-0.820509,-8.756601,-10.113281,-0.680929,-8.723507,-9.951215,-0.792727,-8.688350, + -11.712293,0.208883,-8.870492,-11.834311,0.293054,-8.896962,-11.759331,0.410507,-8.869114,-11.637312,0.326336,-8.842644, + -11.756439,0.197442,-8.703373,-11.878458,0.281613,-8.729843,-11.800192,0.404212,-8.700775,-11.678173,0.320040,-8.674305, + -13.412592,-2.592224,-9.900714,-13.560822,-2.482560,-9.932363,-13.473267,-2.345411,-9.899845,-13.325038,-2.455075,-9.868196, + -13.445081,-2.604938,-9.791382,-13.596595,-2.500420,-9.824250,-13.509040,-2.363271,-9.791733,-13.357526,-2.467789,-9.758864, + -11.880662,-3.750357,-9.139946,-12.030016,-3.647329,-9.172346,-11.958708,-3.530123,-9.128355,-11.809354,-3.633152,-9.095955, + -11.927633,-3.762530,-8.962134,-12.076987,-3.659502,-8.994534,-11.986303,-3.517450,-8.960855,-11.836948,-3.620479,-8.928454, + -12.027767,-3.725461,-8.890440,-12.251700,-3.570985,-8.939019,-12.186654,-3.469093,-8.914861,-11.962720,-3.623569,-8.866282, + -12.063942,-3.734836,-8.753496,-12.287876,-3.580360,-8.802074,-12.219038,-3.472530,-8.776508,-11.995104,-3.627005,-8.727929, + -12.152936,-3.590343,-9.155069,-12.376869,-3.435868,-9.203649,-12.327913,-3.353676,-9.167959,-12.103980,-3.508151,-9.119381, + -12.189111,-3.599718,-9.018125,-12.413044,-3.445243,-9.066704,-12.344713,-3.338206,-9.041326,-12.120779,-3.492681,-8.992746, + -13.598277,-2.401995,-9.709995,-13.461938,-2.188428,-9.659359,-13.346910,-2.267776,-9.634406,-13.483250,-2.481344,-9.685042, + -13.634453,-2.411370,-9.573051,-13.488635,-2.182956,-9.518895,-13.373608,-2.262305,-9.493941,-13.519424,-2.490719,-9.548098, + -13.423455,-2.275858,-9.913245,-13.286634,-2.061537,-9.862430,-13.229019,-2.101281,-9.849931,-13.365840,-2.315602,-9.900746, + -13.473240,-2.295785,-9.747119,-13.325672,-2.064629,-9.692312,-13.268057,-2.104373,-9.679813,-13.415625,-2.335530,-9.734620, + -12.010736,0.119466,-8.709165,-11.859882,0.355768,-8.653138,-11.742698,0.274932,-8.627717,-11.893551,0.038630,-8.683743, + -12.050738,0.104916,-8.540087,-11.903171,0.336072,-8.485280,-11.790394,0.258276,-8.460814,-11.937963,0.027120,-8.515621, + -11.627509,-3.433322,-9.282175,-11.765599,-3.649632,-9.333462,-11.823215,-3.609887,-9.345961,-11.685125,-3.393577,-9.294674, + -11.662443,-3.429985,-9.110533,-11.810011,-3.661141,-9.165339,-11.867626,-3.621397,-9.177838,-11.720058,-3.390240,-9.123032, + -10.211891,-0.885343,-7.705475,-10.356957,-1.105116,-7.735610,-10.414574,-1.065371,-7.748109,-10.269506,-0.845598,-7.717974, + -10.256302,-0.896853,-7.537354,-10.403870,-1.128009,-7.592160,-10.461486,-1.088265,-7.604659,-10.313917,-0.857108,-7.549852, + -10.784553,-2.039154,-8.734661,-10.932120,-2.270311,-8.789468,-10.989736,-2.230566,-8.801967,-10.842168,-1.999409,-8.747160, + -10.817590,-2.032848,-8.562315,-10.963504,-2.265561,-8.629697,-11.021119,-2.225816,-8.642196,-10.875206,-1.993103,-8.574814, + -9.554835,-1.629494,-6.573256,-9.668608,-1.807712,-6.615510,-9.713029,-1.777070,-6.625147,-9.599257,-1.598852,-6.582891, + -9.589076,-1.638368,-6.443636,-9.702848,-1.816586,-6.485891,-9.747269,-1.785943,-6.495527,-9.633496,-1.607726,-6.453272, + -10.549116,-2.755860,-5.571639,-10.662889,-2.934078,-5.613894,-10.707310,-2.903436,-5.623530,-10.593537,-2.725218,-5.581275, + -10.586375,-2.778399,-5.471560,-10.690292,-2.941180,-5.510155,-10.734714,-2.910538,-5.519792,-10.630796,-2.747757,-5.481197, + -9.698186,-1.792933,-6.432172,-9.799978,-1.952384,-6.469977,-9.844398,-1.921742,-6.479613,-9.742607,-1.762291,-6.441808, + -9.723334,-1.799451,-6.336970,-9.825127,-1.958902,-6.374776,-9.869547,-1.928259,-6.384412,-9.767756,-1.768808,-6.346607, + -11.576374,-3.990835,-3.820505,-11.690146,-4.169053,-3.862761,-11.734567,-4.138411,-3.872397,-11.620794,-3.960192,-3.830142, + -11.600492,-3.992791,-3.715547,-11.733974,-4.201883,-3.765122,-11.778396,-4.171241,-3.774759,-11.644914,-3.962149,-3.725183, + -10.257961,-2.375859,-4.762551,-10.371733,-2.554077,-4.804806,-10.416154,-2.523435,-4.814442,-10.302382,-2.345217,-4.772187, + -10.285364,-2.382961,-4.658812,-10.399137,-2.561179,-4.701067,-10.443558,-2.530537,-4.710703,-10.329785,-2.352319,-4.668448, + -13.796165,-0.191818,-5.547685,-13.682392,-0.013600,-5.505430,-13.637972,-0.044243,-5.495793,-13.751743,-0.222461,-5.538049, + -13.823568,-0.198920,-5.443946,-13.709796,-0.020702,-5.401691,-13.665375,-0.051345,-5.392055,-13.779147,-0.229563,-5.434310, + -15.104206,-1.769649,-4.708918,-14.990435,-1.591431,-4.666663,-14.946014,-1.622073,-4.657026,-15.059786,-1.800292,-4.699281, + -15.131610,-1.776751,-4.605179,-15.014553,-1.593387,-4.561704,-14.970133,-1.624030,-4.552068,-15.087189,-1.807393,-4.595543, + -13.849603,-1.153536,-7.854655,-13.735830,-0.975318,-7.812400,-13.691410,-1.005960,-7.802763,-13.805182,-1.184178,-7.845018, + -13.877007,-1.160638,-7.750916,-13.763234,-0.982420,-7.708662,-13.718813,-1.013062,-7.699025,-13.832585,-1.191280,-7.741281, + -11.374012,-3.518736,-2.454259,-11.375224,-3.530744,-2.388182,-13.213771,-2.190555,-3.090351,-10.990402,-2.949377,-3.249146, + -12.433813,-1.855161,-3.986996,-10.960961,-2.897554,-3.186278,-12.339385,-1.690533,-3.898780,-11.578617,-3.859827,-3.384018, + -13.121002,-2.904765,-4.156859,-11.525159,-3.777997,-3.420972,-12.967317,-2.682483,-4.158471,-12.939383,-2.342634,-3.206568, + -11.489710,-3.421273,-2.468628,-11.615176,-3.757486,-3.572767,-11.005038,-2.801742,-3.346163,-10.847255,-2.578023,-3.098847, + -10.852265,-2.580390,-3.074344,-10.704060,-2.340816,-3.017781,-10.594875,-2.423244,-3.051032,-11.519035,-3.787148,-3.424118, + -10.731009,-2.643908,-3.103111,-11.496838,-3.633920,-3.272074,-11.463665,-3.656803,-3.264877,-11.095753,-3.091536,-3.146224, + -11.128925,-3.068653,-3.153421,-10.736028,-2.646287,-3.078612,-10.991395,-2.960953,-3.212046,-11.445732,-3.432436,-2.634095, + -11.478905,-3.409553,-2.641291,-10.599894,-2.425624,-3.026532,-11.486555,-3.441655,-2.475226,-11.516962,-3.651775,-3.086699, + -11.544020,-3.633111,-3.092569,-11.557460,-3.635307,-3.037600,-11.530402,-3.653972,-3.031730,-11.217733,-3.172489,-2.941985, + -11.244790,-3.153824,-2.947855,-11.229383,-3.148544,-3.002093,-11.202325,-3.167209,-2.996223,-11.497619,-3.432083,-2.587433, + -11.524675,-3.413418,-2.593302,-11.494232,-3.366487,-2.584399,-11.467175,-3.385151,-2.578529,-11.287172,-3.338502,-3.259945, + -11.314230,-3.319837,-3.265814,-11.343516,-3.366469,-3.279095,-11.316460,-3.385134,-3.273225,-10.699049,-2.338449,-3.042284, + -13.319984,-0.782886,-2.682552,-13.323589,-0.786464,-2.656765,-13.118065,-0.456822,-2.578534,-12.998758,-0.529890,-2.621418, + -13.141177,-0.760681,-2.676211,-13.184690,-0.826773,-2.665245,-13.002362,-0.533468,-2.595631,-13.114460,-0.453244,-2.604321, + -14.337886,-3.597244,-3.349953,-14.344753,-3.600255,-3.317684,-14.189596,-3.348693,-3.258141,-14.042610,-3.428719,-3.295140, + -14.209127,-3.698632,-3.358843,-14.215267,-3.701544,-3.328875,-14.048749,-3.431630,-3.265172,-14.182728,-3.345683,-3.290410, + -10.697205,-1.972478,-2.947299,-10.703557,-1.974965,-2.919158,-10.625743,-1.847325,-2.888697,-10.520334,-1.881411,-2.928327, + -10.623365,-2.048552,-2.968153,-10.629700,-2.051011,-2.940005,-10.526670,-1.883871,-2.900180,-10.619390,-1.844838,-2.916838, + -15.623534,-2.419693,-4.168698,-15.639282,-2.414419,-4.149415,-15.766299,-2.618243,-4.194251,-15.818912,-2.563702,-4.313994, + -15.679444,-2.340374,-4.264535,-15.695202,-2.335114,-4.245256,-15.834668,-2.558441,-4.294715,-15.750551,-2.623517,-4.213533, + -15.259407,-2.336561,-3.785132,-15.274939,-2.330915,-3.768024,-15.405458,-2.539582,-3.814115,-15.447571,-2.490276,-3.929539, + -15.307148,-2.266098,-3.879771,-15.322687,-2.260463,-3.862666,-15.463109,-2.484641,-3.912434,-15.389927,-2.545228,-3.831223, + -13.202501,0.132816,-2.663285,-13.217850,0.135736,-2.635226,-13.355608,-0.084432,-2.684623,-13.413279,-0.051904,-2.796139, + -13.249286,0.209359,-2.736997,-13.261694,0.213061,-2.720005,-13.425687,-0.048203,-2.779146,-13.340261,-0.087353,-2.712682, + -13.480719,-0.007883,-2.910317,-13.496975,-0.002586,-2.889832,-13.633270,-0.221280,-2.938063,-13.688719,-0.160708,-3.061760, + -13.542545,0.073459,-3.009860,-13.558807,0.078746,-2.989378,-13.704981,-0.155421,-3.041278,-13.617016,-0.226578,-2.958547, + -13.498363,0.271490,-3.052305,-13.510083,0.275759,-3.039389,-13.602046,0.128524,-3.071744,-13.633382,0.166450,-3.158703, + -13.534859,0.323962,-3.123912,-13.546583,0.328224,-3.110998,-13.645105,0.170713,-3.145789,-13.590326,0.124254,-3.084659, + -11.903925,0.365691,-7.864309,-13.883892,-2.695386,-8.598608,-14.004220,-2.613232,-8.604429,-12.036538,0.469029,-7.873631, + -11.935474,0.369413,-7.769489,-13.907121,-2.701550,-8.501538,-14.013020,-2.630859,-8.506390,-12.045338,0.451401,-7.775591, + -13.092898,-0.742789,-10.269701,-13.154742,-0.697513,-10.294146,-13.103342,-0.616999,-10.275056,-13.041499,-0.662275,-10.250611, + -13.766127,-0.716912,-8.566162,-13.827971,-0.671636,-8.590607,-13.776571,-0.591122,-8.571517,-13.714727,-0.636398,-8.547072, + -13.783874,-1.825160,-10.526329,-13.845716,-1.779884,-10.550774,-13.794317,-1.699369,-10.531684,-13.732474,-1.744645,-10.507239, + -14.461836,-1.800509,-8.804871,-14.523680,-1.755233,-8.829315,-14.472281,-1.674719,-8.810225,-14.410437,-1.719995,-8.785781, + -12.042940,0.299943,-7.882473,-12.017687,0.335958,-7.879666,-11.974936,0.299772,-7.799968,-12.000190,0.263757,-7.802775, + -12.591288,0.713686,-7.580216,-12.566034,0.749702,-7.577409,-12.523284,0.713516,-7.497711,-12.548537,0.677500,-7.500518, + -13.795306,-2.540486,-8.568719,-13.772644,-2.505006,-8.555671,-13.738617,-2.554858,-8.479213,-13.761279,-2.590338,-8.492261, + -14.546484,-2.382602,-8.367064,-14.523822,-2.347122,-8.354016,-14.489795,-2.396974,-8.277558,-14.512457,-2.432454,-8.290606, + -13.642191,-0.597708,-8.558675,-14.478352,-1.874352,-8.855962,-14.565118,-1.807274,-8.898277,-13.737774,-0.517474,-8.610680, + -13.699351,-0.577440,-8.479566,-14.529858,-1.860684,-8.771363,-14.606190,-1.802456,-8.808011,-13.778845,-0.512656,-8.520414, + -14.570480,-1.643012,-8.837694,-13.684306,-2.347684,-8.399325,-13.734277,-2.423124,-8.416533,-14.628731,-1.728098,-8.861974, + -14.613796,-1.653149,-8.773494,-13.723457,-2.351899,-8.331596,-13.766999,-2.418054,-8.346133,-14.661454,-1.723028,-8.791574, + -13.849546,-0.514431,-8.591131,-12.915123,-1.142806,-8.113650,-12.965094,-1.218245,-8.130858,-13.907797,-0.599518,-8.615410, + -13.892862,-0.524568,-8.526930,-12.954274,-1.147020,-8.045921,-12.997816,-1.213175,-8.060459,-13.940519,-0.594448,-8.545011, + -14.541646,-1.711846,-8.806176,-13.689186,-2.352441,-8.399624,-12.970184,-1.228773,-8.133204,-13.818772,-0.587920,-8.551269, + -13.854218,-0.571800,-8.523820,-12.991643,-1.220905,-8.108609,-13.710280,-2.344854,-8.374824,-14.577528,-1.696103,-8.775959, + -14.479103,-1.706387,-8.997597,-13.756229,-0.582461,-8.742689,-13.791674,-0.566342,-8.715240,-14.514985,-1.690645,-8.967380, + -13.934036,-1.277455,-2.838764,-10.876634,-3.052853,-3.276672,-10.873692,-3.063804,-3.238402,-14.634743,-0.475523,-4.028212, + -14.548828,-0.521391,-4.066084,-13.902865,-1.281231,-2.906767,-11.995670,-1.942438,-7.592178,-11.970186,-1.935833,-7.688650, + -11.944270,-1.861924,-7.573088,-11.918786,-1.855319,-7.669560,-11.482627,-1.137543,-7.397677,-11.457143,-1.130938,-7.494149, + -11.431228,-1.057029,-7.378587,-11.405744,-1.050424,-7.475060,-12.174968,-2.939317,-2.729309,-11.685267,-2.347589,-3.555648, + -12.304016,-3.309134,-3.753515,-11.065992,-0.844545,-5.165812,-11.025735,-0.834112,-5.318208,-11.014593,-0.764031,-5.146723, + -10.974336,-0.753598,-5.299119,-13.794132,-3.475091,-6.083596,-13.756926,-3.465448,-6.224444,-13.737591,-3.386522,-6.062596, + -13.700384,-3.376880,-6.203445,-14.371207,-3.593878,-4.172090,-14.345723,-3.587273,-4.268563,-14.319808,-3.513364,-4.153000, + -14.294324,-3.506759,-4.249473,-11.022560,-3.053491,-3.252795,-11.010842,-3.038083,-3.349328,-11.052559,-3.009306,-3.358378, + -14.458922,-0.668795,-4.062797,-14.576022,-0.616363,-3.968646,-14.544064,-0.610063,-4.081267,-15.150497,-2.486033,-6.421807, + -15.112478,-2.426478,-6.407687,-14.983723,-2.515297,-6.379755,-15.021743,-2.574852,-6.393876,-14.575790,-3.404210,-4.274285, + -14.537771,-3.344655,-4.260164,-14.409016,-3.433474,-4.232233,-14.447036,-3.493029,-4.246353,-12.998855,-3.970291,-5.955040, + -12.960835,-3.910736,-5.940920,-12.832080,-3.999555,-5.912988,-12.870099,-4.059110,-5.927109,-12.424148,-4.888468,-3.807518, + -12.386127,-4.828913,-3.793398,-12.257373,-4.917732,-3.765466,-12.295392,-4.977287,-3.779587,-13.834333,-3.393957,-6.136285, + -13.796313,-3.334402,-6.122164,-13.667559,-3.423221,-6.094233,-13.705578,-3.482776,-6.108353,-13.585806,-4.087127,-4.059522, + -13.547787,-4.027572,-4.045402,-13.419031,-4.116390,-4.017470,-13.457050,-4.175945,-4.031591,-14.582068,-2.438609,-8.288756, + -14.544048,-2.379054,-8.274635,-14.415294,-2.467872,-8.246704,-14.453314,-2.527428,-8.260824,-13.953800,-3.329314,-6.189888, + -13.915781,-3.269759,-6.175767,-13.787025,-3.358577,-6.147836,-13.825045,-3.418132,-6.161956,-12.430425,-3.922867,-7.821989, + -12.392406,-3.863312,-7.807869,-12.263650,-3.952130,-7.779937,-12.301670,-4.011685,-7.794058,-12.043304,-4.624362,-5.767745, + -11.987432,-4.731060,-5.701732,-11.876530,-4.653625,-5.725693,-11.914549,-4.713181,-5.739813,-13.344795,-3.302943,-8.019909, + -13.306776,-3.243387,-8.005789,-13.178020,-3.332206,-7.977857,-13.216041,-3.391761,-7.991978,-13.115166,-3.895973,-6.001629, + -13.077147,-3.836418,-5.987509,-12.948391,-3.925236,-5.959578,-12.986410,-3.984792,-5.973698,-9.789236,-1.643438,-4.861385, + -9.827255,-1.702993,-4.875506,-9.956011,-1.614175,-4.903438,-9.917992,-1.554619,-4.889317,-11.346908,-0.962449,-3.238025, + -11.384927,-1.022004,-3.252146,-11.513682,-0.933185,-3.280077,-11.475662,-0.873630,-3.265956,-11.849710,-0.222273,-5.318302, + -11.887730,-0.281828,-5.332422,-12.016485,-0.193010,-5.360353,-11.978466,-0.133454,-5.346233,-13.557014,0.556648,-3.684621, + -13.595035,0.497092,-3.698741,-13.723789,0.585911,-3.726673,-13.685770,0.645466,-3.712552,-9.388273,-1.378154,-6.844889, + -9.426293,-1.437709,-6.859010,-9.555049,-1.348891,-6.886941,-9.517029,-1.289335,-6.872821,-10.818402,-0.895427,-5.265622, + -10.856421,-0.954982,-5.279743,-10.985177,-0.866164,-5.307674,-10.947157,-0.806608,-5.293554,-11.332279,-0.053484,-7.285723, + -11.370298,-0.113040,-7.299843,-11.499054,-0.024221,-7.327774,-11.461035,0.035334,-7.313654,-12.964787,0.553334,-5.610315, + -12.972343,0.520477,-5.607063,-13.135023,0.577420,-5.652872,-13.093542,0.642153,-5.638247,-13.789888,0.251829,-4.400064, + -13.926512,0.042000,-4.440818,-13.804777,0.262444,-4.404756,-13.946346,0.056066,-4.447013,-13.739421,0.048273,-5.022141, + -13.617747,0.269800,-4.951141,-13.632636,0.280416,-4.955833,-13.759255,0.062338,-5.028336,-14.117678,-0.228954,-4.453555, + -14.060244,-0.269413,-4.437551,-13.885724,-0.169752,-5.149890,-13.828291,-0.210211,-5.133887,-13.722237,0.260059,-4.312015, + -13.779671,0.300519,-4.328018,-13.526028,0.274014,-4.994464,-13.583462,0.314473,-5.010467,-13.746179,0.062896,-5.027225, + -13.957831,0.068427,-4.458587,-13.872384,-0.134190,-5.073792,-13.887129,-0.123567,-5.078901,-13.765779,0.077018,-5.034017, + -13.921751,0.042695,-4.447203,-14.072630,-0.183434,-4.490510,-14.087375,-0.172811,-4.495618,-11.046803,-0.602728,-5.735497, + -11.254569,-0.461561,-5.770997,-11.036732,-0.587099,-5.732235,-11.241237,-0.440759,-5.766617,-11.114584,-0.427345,-6.364471, + -10.902805,-0.565369,-6.293628,-10.892733,-0.549740,-6.290366,-11.101252,-0.406544,-6.360091,-11.532203,-0.279838,-5.775354, + -11.570152,-0.339375,-5.789740,-11.313446,-0.245936,-6.477627,-11.351395,-0.305473,-6.492012,-11.051065,-0.697451,-5.677132, + -11.013117,-0.637914,-5.662746,-10.882249,-0.635387,-6.364211,-10.844300,-0.575851,-6.349825,-11.099846,-0.419144,-6.363526, + -11.227778,-0.425827,-5.770428,-11.293131,-0.285552,-6.405159,-11.282954,-0.269908,-6.402326,-11.086318,-0.398347,-6.359759, + -11.252195,-0.463707,-5.778322,-11.476529,-0.308395,-5.814749,-11.466353,-0.292750,-5.811915,-10.180004,-2.314837,-5.710766, + -10.048552,-2.105974,-5.652022,-10.164597,-2.325356,-5.707884,-10.028055,-2.119916,-5.648129,-9.899164,-2.049459,-6.241487, + -10.033628,-2.273372,-6.267987,-10.018219,-2.283891,-6.265105,-9.878669,-2.063401,-6.237593,-9.887428,-1.840626,-5.534752, + -9.945745,-1.800331,-5.547684,-9.713671,-1.824121,-6.250103,-9.771987,-1.783827,-6.263034,-10.283752,-2.329803,-5.673220, + -10.225436,-2.370098,-5.660289,-10.088327,-2.270679,-6.353472,-10.030011,-2.310973,-6.340540,-9.890328,-2.063695,-6.243637, + -10.011839,-2.131394,-5.653019,-9.764267,-1.866636,-6.196566,-9.748759,-1.877116,-6.194113,-9.869713,-2.077627,-6.240375, + -10.049188,-2.105899,-5.659991,-9.904759,-1.880973,-5.594239,-9.889252,-1.891454,-5.591785,-20.584974,-6.387419,-9.379067, + -19.807793,-6.244104,-12.257407,-20.962729,-6.524620,-8.858652,-20.723265,-6.402596,-8.802398,-20.303942,-6.368877,-10.658443, + -15.859547,-10.839802,-11.518087,-16.588112,-11.066655,-8.570276,-16.888960,-11.334063,-8.088239,-18.024103,-9.560255,-8.240942, + -16.713348,-11.087831,-7.988150,-16.279133,-10.992005,-9.911643,-17.890362,-9.554758,-8.832382,-19.301193,-7.915050,-9.092814, + -19.434935,-7.920547,-8.501374,-18.513742,-7.734656,-12.029648,-18.257984,-9.690916,-8.067580,-18.085960,-9.909564,-8.027706, + -19.507309,-8.257635,-8.290078,-19.679331,-8.038986,-8.329952,-19.112650,-7.865088,-10.451239,-19.278919,-8.192644,-9.081787, + -19.321150,-8.063067,-8.212046,-19.498499,-7.873787,-8.271024,-18.756346,-7.909800,-10.360703,-18.947020,-7.713984,-10.397141, + -18.658749,-7.743821,-12.163574,-19.465374,-7.988705,-9.125468,-18.291380,-7.756560,-12.067927,-19.078115,-7.983150,-8.999893, + -19.255465,-7.793870,-9.058870,-18.471506,-7.573002,-12.102418,-19.165216,-7.926185,-9.138803,-19.229681,-8.302963,-9.181625, + -19.198105,-7.934708,-9.014304,-17.977316,-9.346415,-10.354223,-17.646368,-9.378500,-10.114175,-17.613239,-9.369914,-10.239592, + -17.790703,-9.632463,-8.797345,-17.988693,-9.407612,-8.834253,-18.979631,-7.833886,-10.430209,-18.796558,-8.041789,-10.396082, + -17.828028,-9.664466,-8.809396,-18.026018,-9.439614,-8.846304,-19.014393,-7.863739,-10.441808,-18.831322,-8.071642,-10.407681, + -18.206755,-9.266699,-8.535831,-18.078119,-9.415692,-8.515243,-18.177307,-9.260341,-8.681892,-18.040588,-9.419872,-8.651919, + -18.221071,-9.279504,-8.538690,-18.092436,-9.428497,-8.518099,-18.191626,-9.273146,-8.684750,-18.054905,-9.432676,-8.654777, + -19.898325,-6.853828,-10.417170,-20.030432,-6.706655,-10.424739,-19.919724,-6.866570,-10.270027,-20.059628,-6.707778,-10.285921, + -19.912560,-6.866730,-10.419893,-20.044664,-6.719555,-10.427464,-19.933956,-6.879471,-10.272752,-20.073862,-6.720679,-10.288645, + -18.249863,-9.193189,-8.600333,-18.355724,-9.069678,-8.620946,-18.278494,-9.198592,-8.480171,-18.389978,-9.065626,-8.508588, + -18.261658,-9.203714,-8.603243,-18.367519,-9.080204,-8.623857,-18.290289,-9.209118,-8.483082,-18.401773,-9.076152,-8.511497, + -19.036259,-7.805652,-10.442392,-19.799406,-6.030077,-12.347535,-20.583363,-6.250946,-9.303988,-20.359037,-6.494426,-9.236343, + -19.572304,-6.267836,-12.304379,-20.793274,-6.445781,-9.370585,-20.287535,-6.273295,-10.660187,-20.049885,-6.523311,-10.615084, + -20.176477,-6.413470,-10.613537,-20.204250,-6.738088,-10.776866,-20.143591,-6.404947,-10.738035,-19.751503,-6.908696,-10.608129, + -19.822802,-6.825830,-10.621290,-19.339537,-6.684587,-12.277529,-19.263372,-6.773105,-12.263470,-19.331766,-7.396526,-10.530647, + -19.403008,-7.313726,-10.543798,-18.929148,-7.153685,-12.223745,-18.851851,-7.241823,-12.214223,-19.785418,-6.939625,-10.619205, + -19.856714,-6.856760,-10.632366,-19.375765,-6.717689,-12.289738,-19.299603,-6.806207,-12.275679,-19.365679,-7.427455,-10.541723, + -19.436920,-7.344656,-10.554874,-18.965378,-7.186787,-12.235954,-18.888081,-7.274925,-12.226431,-17.102911,-9.374365,-11.769216, + -17.625425,-9.445360,-10.181961,-16.712963,-11.216481,-8.704838,-17.787271,-9.574416,-8.753873,-17.818848,-9.942671,-8.921194, + -17.754385,-9.565892,-8.878370,-16.405699,-11.123964,-10.063359,-20.544071,-6.375869,-9.247456,-20.575647,-6.744123,-9.414776, + -20.511185,-6.367345,-9.371953,-16.574940,-10.600585,-10.021753,-16.646181,-10.517785,-10.034904,-16.172321,-10.357743,-11.714851, + -16.095024,-10.445882,-11.705328,-16.608852,-10.631515,-10.032829,-16.680096,-10.548715,-10.045980,-16.208551,-10.390845,-11.727060, + -16.131254,-10.478984,-11.717537,-17.345041,-9.786043,-10.145848,-17.528114,-9.578140,-10.179976,-16.732506,-10.932933,-8.606012, + -16.534515,-11.157785,-8.569104,-17.310280,-9.756189,-10.134250,-17.493351,-9.548286,-10.168377,-16.695179,-10.900930,-8.593962, + -16.497189,-11.125782,-8.557054,-20.826399,-6.330863,-8.516141,-20.602074,-6.574344,-8.448498,-17.050159,-9.224931,-11.840045, + -17.834116,-9.445799,-8.796497,-17.656767,-9.635079,-8.737520,-20.619555,-6.463977,-10.030684,-19.986649,-6.200898,-12.408691, + -16.870031,-9.408489,-11.805554,-18.044027,-9.640635,-8.863096,-17.237402,-9.395751,-11.901202,-17.590384,-9.403004,-10.176676, + -17.399712,-9.598819,-10.140238,-21.007231,-6.496063,-8.575069,-17.756016,-9.554108,-10.230774,-18.077152,-9.525717,-8.008652, + -20.788231,-6.768911,-8.526529,-17.899803,-9.714997,-7.949673,-17.857571,-9.844573,-8.819414,-16.541176,-11.018778,-8.625858, + -16.574299,-11.027362,-8.500467,-16.277498,-10.964777,-9.863773,-16.244368,-10.956191,-9.989189,-5.485168,-15.866651,-5.897763, + -9.453455,-15.838449,-7.017513,-8.633249,-15.671621,-9.870844,-5.739823,-16.095421,-5.109459,-5.470581,-16.107512,-5.029762, + -7.592900,-16.098486,-5.589778,-7.862143,-16.086395,-5.669475,-7.302753,-15.936965,-7.820917,-7.378398,-16.023083,-6.384443, + -7.616330,-15.820553,-5.561404,-7.865533,-15.835017,-5.653311,-7.039732,-15.690784,-7.735108,-7.305725,-15.706836,-7.805947, + -6.867602,-15.796549,-9.510340,-7.646393,-16.031912,-6.464230,-6.620716,-15.520273,-9.426733,-7.403093,-15.723923,-6.355978, + -7.652296,-15.738387,-6.447885,-6.870961,-15.536392,-9.493417,-5.378320,-15.782459,-5.944920,-7.484938,-15.773499,-6.500793, + -7.279466,-16.084074,-6.356745,-7.517825,-15.782022,-6.376294,-5.172847,-16.093033,-5.800872,-5.411207,-15.790981,-5.820422, + -7.284536,-15.780965,-7.725532,-7.501256,-16.042358,-7.955498,-7.251406,-15.772379,-7.850948,-6.075675,-15.788565,-7.513101, + -6.182052,-15.788112,-7.541170,-5.750155,-15.621344,-9.231742,-5.635326,-15.621517,-9.206283,-6.075074,-15.835677,-7.516167, + -6.181450,-15.835225,-7.544237,-5.749419,-15.671778,-9.235373,-5.634591,-15.671951,-9.209913,-7.199962,-15.832601,-6.396515, + -7.314525,-15.832113,-6.426744,-6.188032,-15.818546,-7.500440,-6.082351,-15.818995,-7.472553,-7.199317,-15.883059,-6.399799, + -7.313881,-15.882571,-6.430029,-6.187339,-15.865635,-7.503852,-6.081657,-15.866085,-7.475966,-5.717707,-15.843867,-5.929101, + -5.832270,-15.843379,-5.959332,-6.183939,-15.810422,-7.495872,-6.078258,-15.810871,-7.467987,-5.717062,-15.894325,-5.932385, + -5.831625,-15.893838,-5.962615,-6.183247,-15.857511,-7.499285,-6.077565,-15.857961,-7.471399,-7.185473,-15.850997,-5.869256, + -6.993344,-15.852013,-5.821764,-7.150499,-15.850081,-6.014229,-6.946531,-15.850563,-5.955603,-7.185643,-15.870410,-5.868829, + -6.993515,-15.871426,-5.821336,-7.150670,-15.869495,-6.013802,-6.946701,-15.869977,-5.955175,-3.469784,-15.844604,-6.130960, + -3.664705,-15.845117,-6.165234,-3.494822,-15.843674,-5.983843,-3.702307,-15.843618,-6.028457,-3.469846,-15.863998,-6.130384, + -3.664768,-15.864511,-6.164659,-3.494884,-15.863068,-5.983269,-3.702370,-15.863013,-6.027881,-7.209405,-15.842670,-6.098069, + -7.367675,-15.841866,-6.140926,-7.241057,-15.846758,-5.978615,-7.408921,-15.845135,-6.030916,-7.209488,-15.858744,-6.098265, + -7.367757,-15.857940,-6.141123,-7.241140,-15.862831,-5.978811,-7.409003,-15.861208,-6.031112,-9.666441,-16.156704,-6.468447, + -9.613695,-15.851598,-6.446502,-9.104645,-15.838115,-8.280231,-8.783603,-15.528257,-9.998105,-9.564938,-15.730252,-6.952573, + -9.315735,-15.715788,-6.860666,-8.533358,-15.512139,-9.931421,-9.167251,-15.722056,-8.279775,-8.901258,-15.706004,-8.208936, + -9.065918,-15.762757,-8.228850,-8.829588,-16.025425,-8.318172,-9.033031,-15.754234,-8.353349,-2.743969,-15.692501,-8.317618, + -3.470471,-15.874236,-5.366173,-3.547500,-16.189016,-4.828256,-5.614104,-15.869601,-5.315731,-3.618223,-15.880886,-4.789000, + -4.686563,-15.670739,-8.830587,-3.134702,-15.826910,-6.702333,-5.004173,-15.829638,-7.195332,-3.509186,-16.109550,-5.349969, + -3.137628,-16.057362,-6.803825,-9.525686,-15.774499,-6.890495,-9.287327,-16.076550,-6.870946,-9.492800,-15.765976,-7.014994, + -5.093343,-15.841559,-5.840642,-5.207907,-15.841072,-5.870872,-4.081388,-15.816012,-6.943534,-3.975707,-15.816462,-6.915648, + -5.092699,-15.892018,-5.843926,-5.207263,-15.891531,-5.874156,-4.080695,-15.863101,-6.946946,-3.975013,-15.863551,-6.919060, + -3.611088,-15.852826,-5.373229,-3.725651,-15.852339,-5.403459,-4.074308,-15.811494,-6.938972,-3.968626,-15.811944,-6.911085, + -3.610444,-15.903285,-5.376513,-3.725007,-15.902798,-5.406743,-4.073615,-15.858583,-6.942384,-3.967933,-15.859033,-6.914498, + -9.778174,-15.826883,-6.157999,-9.528972,-15.812419,-6.066092,-4.748642,-15.545418,-8.933401,-5.529976,-15.747413,-5.887869, + -5.280774,-15.732948,-5.795962,-9.291054,-15.985041,-7.814828,-8.780244,-15.788415,-10.015028,-4.498397,-15.529299,-8.866718, + -5.524074,-16.040937,-5.904214,-4.745283,-15.805574,-8.950324,-5.191717,-15.744968,-7.231163,-4.925725,-15.728916,-7.160324, + -9.774784,-16.078260,-6.174163,-5.188745,-15.975098,-7.246133,-5.743213,-15.844044,-5.093295,-9.505542,-16.090351,-6.094466, + -5.494010,-15.829579,-5.001388,-5.256079,-16.032108,-5.824427,-3.456513,-15.801864,-5.406546,-3.489636,-15.810448,-5.281157, + -3.167031,-15.797640,-6.638990,-3.133902,-15.789055,-6.764407,-17.024630,0.437275,-8.834273,-20.885916,0.769797,-9.831509, + -17.020714,0.534303,-8.826596,-20.889832,0.672769,-9.839186,-20.911400,0.763193,-9.735037,-17.046198,0.527699,-8.730124, + -17.180878,-3.434473,-9.140610,-21.046080,-3.198978,-10.145522,-21.041023,-3.073679,-10.135609,-17.206362,-3.441077,-9.044137, + -21.071564,-3.205583,-10.049049,-17.175821,-3.309174,-9.130695,-17.033611,0.515438,-8.867005,-17.190718,-3.377676,-9.175032, + -17.284832,-3.371941,-9.199500,-17.127724,0.521172,-8.891474,-17.059095,0.508834,-8.770533,-17.216202,-3.384280,-9.078559, + -17.310316,-3.378546,-9.103027,-17.153208,0.514568,-8.795002,-21.019419,-3.144405,-10.170454,-20.862312,0.748708,-9.862429, + -20.768198,0.742975,-9.837960,-20.925306,-3.150139,-10.145986,-21.044903,-3.151010,-10.073982,-20.887796,0.742104,-9.765956, + -17.818966,-2.959427,-11.344766,-19.893150,-2.833054,-11.884032,-19.731672,0.625286,-11.604616,-17.678406,0.523595,-11.069186, + -18.341413,-3.125507,-9.374197,-20.415598,-2.999134,-9.913464,-20.272533,0.545901,-9.632977,-18.198349,0.419528,-9.093711, + -17.235632,-3.363906,-9.098413,-17.891314,0.239954,-4.864484,-18.092508,-3.614553,-5.177670,-22.195745,-3.364732,-6.242289, + -22.041771,0.450770,-5.940404,-17.395744,0.261715,-6.894155,-21.530762,0.608289,-7.929366,-17.391829,0.358744,-6.886477, + -21.534678,0.511260,-7.937043,-21.568792,0.598433,-7.785398,-17.433382,0.347975,-6.729175,-17.539618,-3.510220,-7.160204, + -21.679333,-3.275033,-8.234467,-17.596109,-3.518690,-7.024343,-21.714691,-3.284196,-8.100611,-21.674742,-3.161264,-8.225465, + -17.535702,-3.413192,-7.152527,-17.435392,0.335528,-6.856263,-17.589495,-3.483167,-7.158402,-17.755386,-3.475086,-7.175922, + -17.601282,0.343609,-6.873785,-17.433384,0.326544,-6.743733,-17.587488,-3.492152,-7.045871,-17.764715,-3.481354,-7.091948, + -17.610613,0.337342,-6.789811,-21.355804,0.590564,-7.848675,-21.511374,-3.264450,-8.153687,-21.685587,-3.254478,-8.190866, + -21.530018,0.600536,-7.885855,-21.393215,0.585495,-7.765530,-21.548786,-3.269519,-8.070541,-21.692619,-3.261029,-8.104469, + -21.537050,0.593984,-7.799459,-20.044647,0.461740,-5.403567,-20.209690,-3.628045,-5.727153,-20.105238,-3.634408,-5.699996, + -19.940195,0.455376,-5.376410,-20.018749,0.468452,-5.501607,-20.196686,-3.624674,-5.776383,-21.089632,0.523982,-5.657249, + -21.254675,-3.565802,-5.980835,-20.983109,0.518351,-5.640412,-21.073570,0.528558,-5.743418,-21.245960,-3.561191,-6.043564, + -21.148151,-3.571433,-5.963998,-22.041708,0.579418,-5.872295,-22.285719,-3.497398,-6.319511,-22.120674,0.592387,-5.995924, + -22.206751,-3.510366,-6.195882,-22.311203,-3.504003,-6.223038,-22.146158,0.585782,-5.899452,-18.907551,0.389309,-5.068099, + -19.072594,-3.700475,-5.391685,-19.149630,-3.688303,-5.506235,-18.984587,0.401482,-5.182648,-19.175907,-3.693846,-5.422775, + -19.010864,0.395939,-5.099188,-18.003201,-3.758315,-5.206100,-17.838158,0.331470,-4.882514,-17.863642,0.324866,-4.786041, + -18.028685,-3.764919,-5.109627,-18.133137,-3.758555,-5.136784,-17.968094,0.331229,-4.813197,-22.109564,0.483680,-5.964745, + -17.878065,0.225876,-4.864598,-17.879944,0.179322,-4.868281,-22.111443,0.437127,-5.968428,-22.133732,0.491813,-5.869888, + -17.902231,0.234008,-4.769741,-17.905428,0.172718,-4.771808,-22.136927,0.430522,-5.871955,-22.264437,-3.354046,-6.268388, + -18.032936,-3.611851,-5.168241,-18.036770,-3.706864,-5.175758,-22.268270,-3.449059,-6.275906,-22.289921,-3.360651,-6.171916, + -18.058420,-3.618455,-5.071768,-18.066734,-3.716937,-5.062868,-22.298233,-3.459132,-6.163015,-18.293798,-2.728778,-4.081316, + -21.011070,-3.133882,-10.079988,-22.475138,-2.514543,-5.222478,-21.977530,0.280283,-5.867588,-22.118103,-3.320937,-6.153112, + -22.298658,-3.308999,-6.213195,-22.149498,0.291698,-5.925439,-22.048729,0.557930,-5.880409,-22.208412,-3.505217,-6.200677, + -22.306849,-3.499219,-6.226270,-22.138578,0.563404,-5.903769,-22.562695,-2.538656,-5.135912,-22.441124,-2.498821,-5.242430, + -22.667145,-2.532292,-5.163068,-22.627695,-2.486517,-5.304077,-17.902212,0.027713,-4.824077,-18.047676,-3.570130,-5.109926, + -17.868412,0.308853,-4.795710,-18.033194,-3.757173,-5.116846,-18.129276,-3.751319,-5.141827,-17.961834,0.314545,-4.819999, + -18.164806,-2.806601,-3.992506,-18.171240,-2.758031,-4.145444,-18.296684,-2.798566,-4.026793,-18.127205,-2.788381,-4.052869, + -18.146448,-2.807161,-3.983259,-22.742531,-2.528306,-5.163468,-17.838053,0.338262,-4.810465,-22.159105,0.601527,-5.933894, + -17.846899,0.349601,-4.773783,-22.167952,0.612865,-5.897212,-18.022501,-3.841986,-5.080611,-22.343554,-3.578722,-6.204041, + -18.005150,-3.758205,-5.127719,-22.326202,-3.494941,-6.251148,-22.703808,-2.509113,-5.248219,-17.467934,0.304419,-6.855485, + -21.596611,-3.226446,-8.169432,-21.446079,0.503763,-7.874295,-17.665688,-3.464795,-7.161924,-17.080069,0.490872,-8.793421, + -20.855505,0.720897,-9.774996,-17.747618,-3.459312,-7.151514,-21.373020,0.550354,-7.824444,-17.597582,0.320329,-6.842870, + -21.523056,-3.229287,-8.133089,-17.456896,0.243513,-6.782713,-17.530706,0.345277,-6.795244,-17.452980,0.340541,-6.775036, + -17.895235,0.180534,-4.815183,-17.969046,0.282298,-4.827714,-17.891319,0.277563,-4.807506,-17.510920,-1.095184,-6.888632, + -17.507004,-0.998155,-6.880955,-17.960356,-1.208701,-4.987678,-17.956442,-1.111672,-4.980001,-17.553637,-2.153664,-6.972380, + -17.549721,-2.056635,-6.964703,-18.004574,-2.304388,-5.074370,-18.000658,-2.207359,-5.066693,-17.608305,-3.508332,-7.079562, + -17.686031,-3.503597,-7.099770,-17.604389,-3.411304,-7.071885,-18.052612,-3.669580,-5.112112,-18.130337,-3.664845,-5.132319, + -18.049274,-3.586899,-5.105570,-17.067774,0.426119,-8.821078,-17.145193,0.430931,-8.842409,-17.141277,0.527960,-8.834732, + -17.063858,0.523148,-8.813401,-17.553358,0.252461,-6.846610,-17.630779,0.257273,-6.867941,-17.626863,0.354302,-6.860264, + -17.549442,0.349490,-6.838933,-17.118893,-0.840587,-8.921301,-17.114977,-0.743558,-8.913624,-17.603746,-0.996106,-6.945398, + -17.599831,-0.899077,-6.937721,-17.169273,-2.088994,-9.020076,-17.165358,-1.991965,-9.012400,-17.652624,-2.207305,-7.041229, + -17.648708,-2.110276,-7.033552,-17.222187,-3.400144,-9.123816,-17.299606,-3.395332,-9.145146,-17.218002,-3.296446,-9.115611, + -17.704767,-3.499384,-7.143459,-17.782188,-3.494572,-7.164790,-17.700583,-3.395686,-7.135254,-19.331055,0.661937,-9.361471, + -19.425167,0.667671,-9.385940,-20.413078,0.427861,-5.492435,-20.507193,0.433595,-5.516903,-18.832733,0.424270,-7.162842, + -18.926847,0.430004,-7.187310,-19.292580,0.359594,-5.201116,-19.386694,0.365328,-5.225585,-18.258890,0.580990,-9.125122, + -18.353004,0.586723,-9.149590,-18.830242,0.425941,-7.172036,-18.924355,0.431675,-7.196504,-19.088396,-3.397882,-7.462982, + -18.994282,-3.403616,-7.438514,-19.545378,-3.566797,-5.536697,-19.451265,-3.572531,-5.512229,-20.086939,-3.332659,-7.778007, + -19.992826,-3.338393,-7.753538,-20.660196,-3.497056,-5.849520,-20.566084,-3.502790,-5.825051,-18.509417,-3.289099,-9.456249, + -18.415304,-3.294833,-9.431780,-19.078842,-3.396431,-7.499387,-18.984730,-3.402165,-7.474919,-19.609297,-3.223078,-9.729668, + -19.512146,-3.227443,-9.724056,-20.077387,-3.331208,-7.814412,-19.983273,-3.336942,-7.789943,-21.651945,-3.174692,-8.124892, + -21.574219,-3.179428,-8.104685,-21.578135,-3.276456,-8.112362,-21.655861,-3.271720,-8.132569,-22.214087,-3.334642,-6.296502, + -22.136360,-3.339378,-6.276294,-22.140276,-3.436407,-6.283971,-22.218002,-3.431671,-6.304179,-21.596436,-1.799254,-8.016066, + -21.600351,-1.896282,-8.023743,-22.168377,-1.942871,-6.146160,-22.172291,-2.039900,-6.153837,-21.553719,-0.740774,-7.932317, + -21.557634,-0.837803,-7.939994,-22.124157,-0.847184,-6.059468,-22.128073,-0.944213,-6.067145,-21.500530,0.577153,-7.828041, + -21.422804,0.572417,-7.807833,-21.426720,0.475388,-7.815510,-21.504446,0.480124,-7.835718,-22.067524,0.526865,-5.955293, + -21.989798,0.522129,-5.935085,-21.993713,0.425101,-5.942762,-22.071440,0.429836,-5.962970,-21.020435,-3.081455,-10.105347, + -20.946337,-3.183142,-10.093943,-21.024351,-3.178484,-10.113024,-21.574587,-3.176334,-8.143599,-21.500488,-3.278021,-8.132195, + -21.578503,-3.273362,-8.151276,-20.966682,-1.749535,-9.999964,-20.970598,-1.846563,-10.007640,-21.521605,-1.863486,-8.039724, + -21.525520,-1.960514,-8.047401,-20.916300,-0.501128,-9.901188,-20.920216,-0.598157,-9.908865,-21.472723,-0.652286,-7.943892, + -21.476639,-0.749315,-7.951569,-20.866018,0.744808,-9.802608,-20.788002,0.740150,-9.783527,-20.870203,0.641110,-9.810812, + -21.423172,0.575511,-7.846747,-21.345158,0.570852,-7.827666,-21.427357,0.471813,-7.854951,-16.527538,0.593825,-10.736327, + -16.601042,0.695666,-10.749981,-16.523623,0.690854,-10.728650,-17.070730,0.426244,-8.821152,-17.144236,0.528085,-8.834805, + -17.066814,0.523273,-8.813475,-16.579176,-0.685751,-10.837568,-16.652681,-0.583910,-10.851222,-16.575260,-0.588722,-10.829891, + -17.121851,-0.840462,-8.921374,-17.195354,-0.738621,-8.935028,-17.117935,-0.743433,-8.913697,-16.630558,-1.958962,-10.938306, + -16.707979,-1.954150,-10.959637,-16.626642,-1.861933,-10.930629,-17.172232,-2.088869,-9.020149,-17.249651,-2.084057,-9.041480, + -17.168316,-1.991840,-9.012472,-16.682024,-3.234236,-11.039207,-16.759443,-3.229424,-11.060538,-16.677107,-3.112403,-11.029568, + -17.223696,-3.364143,-9.121050,-17.301117,-3.359331,-9.142381,-17.219780,-3.267114,-9.113373,-22.240801,-2.377102,-6.165979, + -22.244354,-2.465190,-6.172948,-22.614958,-2.433404,-5.263537,-22.618513,-2.521492,-5.270507,-18.029043,-2.628290,-5.068676, + -18.025488,-2.540202,-5.061707,-18.218830,-2.789698,-4.124728,-18.215275,-2.701610,-4.117758,-22.190149,-1.160689,-6.075746, + -22.193705,-1.248776,-6.082716,-22.384762,-1.145022,-5.532045,-22.388315,-1.233110,-5.539014,-17.954306,-1.507066,-4.980515, + -17.950750,-1.418978,-4.973545,-18.101545,-1.494285,-4.424498,-18.097992,-1.406197,-4.417529,-22.098217,-0.913188,-6.074729, + -22.091829,-0.754918,-6.062207,-21.495396,0.377190,-7.855767,-21.489008,0.535460,-7.843244,-21.094404,0.296614,-9.090981, + -21.047163,0.221704,-9.003386,-21.116777,0.225945,-9.021484,-21.271542,0.274250,-8.402901,-21.184845,0.209565,-8.464670, + -21.254459,0.213806,-8.482769,-21.135654,-0.241816,-9.058495,-21.066040,-0.246057,-9.040396,-21.118570,-0.302259,-9.138363, + -21.278246,-0.298058,-8.511227,-21.208632,-0.302299,-8.493127,-21.231005,-0.372969,-8.423632,-21.300619,-0.368727,-8.441730, + -21.358023,-2.274860,-8.667633,-21.288408,-2.279101,-8.649533,-21.375105,-2.214416,-8.587764,-21.217642,-2.273424,-9.219236, + -21.148027,-2.277666,-9.201138,-21.195269,-2.202755,-9.288733,-21.258190,0.008594,-8.468050,-21.264612,-0.085571,-8.465412, + -21.104767,-0.044145,-9.070518,-21.101978,0.012366,-9.068001,-21.238258,0.249107,-8.446320,-21.264643,-0.339698,-8.482818, + -21.104050,-0.279717,-9.086456,-21.081549,0.265250,-9.045292,-17.689829,-0.605188,-11.180526,-17.663805,0.055310,-11.125846, + -18.104782,-0.034424,-9.450741,-18.134581,-0.757263,-9.505511,-18.090326,-0.611422,-9.641554,-18.071735,-0.160233,-9.607334, + -17.951288,-0.141294,-10.066168,-17.968102,-0.567477,-10.101366,-17.985775,-0.566400,-10.105961,-17.968962,-0.140218,-10.070763, + -18.089407,-0.159156,-9.611929,-18.108000,-0.610345,-9.646149,-17.970318,-0.375056,-10.088778,-17.968985,-0.332499,-10.083933, + -18.090431,-0.376245,-9.627062,-18.092541,-0.419004,-9.628966,-18.016479,-0.114873,-9.857802,-18.027458,-0.119317,-9.816615, + -18.047754,-0.622288,-9.856410,-18.036905,-0.621075,-9.897853,-17.324036,-1.778823,-8.246594,-17.372766,-1.775854,-8.259264, + -17.382294,-1.682309,-8.200697,-17.312679,-1.686550,-8.182598,-17.503086,-1.856817,-7.588181,-17.551817,-1.853848,-7.600851, + -17.534458,-1.753335,-7.644063,-17.464844,-1.757576,-7.625964,-17.298054,-1.246330,-8.135691,-17.367668,-1.242089,-8.153790, + -17.350311,-1.141576,-8.197002,-17.301580,-1.144545,-8.184333,-17.445221,-1.271265,-7.587487,-17.514833,-1.267024,-7.605586, + -17.524361,-1.173479,-7.547020,-17.475632,-1.176448,-7.534351,-17.399963,-1.767390,-7.936250,-17.414316,-1.769375,-7.881508, + -17.392290,-1.223577,-7.838324,-17.377796,-1.218085,-7.892788,-17.475245,-1.543789,-7.584321,-17.472456,-1.487278,-7.581804, + -17.312611,-1.445853,-8.186911,-17.314373,-1.502097,-8.193316,-17.495674,-1.796669,-7.607030,-17.472425,-1.233151,-7.564399, + -17.313082,-1.204133,-8.170487,-17.330303,-1.721292,-8.225436,-17.371088,-3.020662,-8.331134,-17.426006,-3.017316,-8.345411, + -17.435534,-2.923771,-8.286846,-17.365919,-2.928013,-8.268747,-17.546391,-3.083571,-7.683605,-17.601309,-3.080225,-7.697883, + -17.583950,-2.979713,-7.741096,-17.514336,-2.983954,-7.722997,-17.347258,-2.465556,-8.232157,-17.416872,-2.461315,-8.250256, + -17.399513,-2.360802,-8.293468,-17.344597,-2.364148,-8.279190,-17.493460,-2.466637,-7.682066,-17.563074,-2.462395,-7.700165, + -17.572601,-2.368850,-7.641599,-17.517685,-2.372196,-7.627321,-17.448704,-2.975164,-8.031810,-17.463057,-2.977149,-7.977068, + -17.441032,-2.431351,-7.933884,-17.426537,-2.425859,-7.988348,-17.523987,-2.751563,-7.679882,-17.521198,-2.695052,-7.677364, + -17.361351,-2.653627,-8.282471,-17.363113,-2.709871,-8.288876,-17.545166,-3.023046,-7.704062,-17.520666,-2.428523,-7.658978, + -17.362286,-2.423359,-8.266953,-17.383543,-2.962755,-8.311584,-22.206747,-3.386103,-6.236799,-22.200359,-3.227833,-6.224277, + -21.600967,-2.022425,-8.012037,-21.594580,-1.864156,-7.999515,-21.551834,-0.777883,-7.909369,-21.558220,-0.936152,-7.921892, + -22.144157,-1.835141,-6.114086,-22.150543,-1.993410,-6.126608,-17.795038,-1.403094,-5.635335,-17.813484,-1.402044,-5.639211, + -17.824305,-1.675025,-5.672959,-17.642639,-1.632213,-6.251769,-17.638927,-1.394217,-6.233911,-17.657373,-1.393167,-6.237786, + -17.779829,-1.677643,-5.662538,-17.667160,-1.630817,-6.256920,-17.660782,-1.924460,-6.318414,-17.730324,-1.920201,-6.336778, + -17.847994,-1.989616,-5.636406,-17.917538,-1.985356,-5.654770,-17.700130,-1.333776,-6.315112,-17.630587,-1.338035,-6.296750, + -17.891788,-1.347283,-5.604286,-17.822247,-1.351542,-5.585922,-17.657583,-1.624064,-6.250984,-17.668943,-1.886182,-6.247484, + -17.687292,-1.885102,-6.251789,-17.681961,-1.622678,-6.256764,-17.799879,-1.675196,-5.659278,-17.813803,-1.926779,-5.689802, + -17.824259,-1.673809,-5.665058,-17.832151,-1.925699,-5.694107,-21.236305,-2.735881,-9.255827,-21.166691,-2.740122,-9.237728, + -21.219221,-2.796325,-9.335695,-21.378899,-2.792177,-8.708563,-21.309284,-2.796418,-8.690464,-21.331657,-2.867087,-8.620969, + -21.401272,-2.862846,-8.639068,-21.362753,-2.504841,-8.654873,-21.364515,-2.561086,-8.661277,-21.204670,-2.519660,-9.266383, + -21.201881,-2.463149,-9.263866,-21.341824,-2.239559,-8.631182,-21.365295,-2.833817,-8.680155,-21.204700,-2.773782,-9.283789, + -21.182413,-2.234119,-9.243044,-21.927013,-1.745064,-6.602993,-21.975782,-2.953529,-6.698608,-21.030312,0.292709,-9.074316, + -21.207449,0.270345,-8.386237,-21.054478,-0.306164,-9.121700,-21.236526,-0.372632,-8.425068,-21.311012,-2.218321,-8.571100, + -21.131176,-2.206660,-9.272069,-21.155128,-2.800230,-9.319033,-21.337179,-2.866751,-8.622404,-17.712337,-0.714695,-11.210960, + -17.668526,-0.587950,-11.190658,-18.189886,-0.874343,-9.423571,-18.114948,-0.739532,-9.521095,-17.643915,0.021899,-11.142406, + -17.677309,0.153356,-11.142281,-18.087835,-0.067671,-9.467937,-18.152355,0.055719,-9.349983,-19.929438,-1.539388,-11.831327, + -19.955400,-2.182810,-11.882236,-20.372177,-2.328405,-10.301023,-20.343971,-1.629460,-10.245723,-19.967989,-0.193353,-10.959921, + -20.038372,-0.293700,-10.856464,-20.171432,-0.230593,-10.174144,-20.179802,-0.320300,-10.306718,-20.059498,-0.748409,-10.881756, + -19.998064,-0.842361,-10.996323,-20.201656,-0.794797,-10.333849,-20.202236,-0.899388,-10.212383,-20.083570,-0.263480,-10.605108, + -20.098021,-0.267701,-10.550518,-20.123190,-0.814177,-10.581764,-20.108902,-0.813467,-10.636555,-20.185242,-0.537500,-10.288231, + -20.187330,-0.593860,-10.293406,-20.027523,-0.554123,-10.898763,-20.024410,-0.497587,-10.897482,-20.163353,-0.284306,-10.271067, + -20.188248,-0.835884,-10.304556,-20.028147,-0.787089,-10.908925,-20.002954,-0.255124,-10.881167,-19.826971,-1.418806,-11.777979, + -20.268803,-1.514592,-10.114059,-19.862490,-2.299014,-11.847621,-20.306488,-2.448476,-10.187949,-20.250227,0.453667,-4.441080, + -20.236059,-1.693917,-4.894135,-20.606188,0.392781,-5.526913,-20.449003,-1.174646,-6.065094,-20.729637,-1.319256,-6.072508, + -19.164761,-1.417075,-5.634306,-19.414938,0.306639,-5.202687,-19.490307,-1.235105,-5.789888,-20.182661,-1.265421,-5.053599, + -20.224274,0.187549,-4.565278,-19.466728,0.104505,-5.254264,-20.580921,0.211382,-5.522961,-19.408817,0.227739,-5.251379, + -19.721092,0.226369,-5.147130,-20.372263,0.274369,-5.312127,-20.576990,0.294559,-5.542629,-20.162170,0.216621,-4.723885, + -20.243742,0.203929,-4.522251,-19.762642,0.210580,-5.037530,-19.778868,0.206952,-4.983395,-20.335398,0.232268,-5.099792, + -20.322777,0.236115,-5.154863,-20.161041,0.177814,-4.665898,-20.215147,0.181295,-4.682304,-20.037136,0.217445,-5.310268, + -19.981874,0.214263,-5.298240,-20.822243,-2.639748,-4.734393,-20.486422,0.504004,-5.554468,-20.495268,0.515343,-5.517786, + -20.670872,-3.676244,-5.824614,-20.653519,-3.592463,-5.871722,-20.803001,-2.620968,-4.804002,-20.221653,-0.505612,-4.671086, + -20.607491,-0.475513,-5.767157,-19.371294,-0.552108,-5.414437,-18.907949,0.356346,-7.318882,-18.944290,0.442942,-7.158810, + -18.904034,0.453375,-7.311205,-17.955507,-2.090858,-4.998795,-18.059958,-2.084494,-5.025951,-17.930023,-2.084253,-5.095267, + -20.427816,0.392452,-5.484155,-20.403650,0.384320,-5.579011,-20.405529,0.337766,-5.582695,-20.566200,-3.455707,-5.849665, + -20.599998,-3.560793,-5.744292,-20.570034,-3.550721,-5.857182,-21.607937,-3.239536,-8.179196,-21.454422,-3.248889,-8.139284, + -20.804901,-3.485219,-5.925319,-20.651386,-3.494573,-5.885407,-19.042555,-3.395836,-7.512223,-18.889042,-3.405189,-7.472311, + -18.239519,-3.641520,-5.258347,-18.086006,-3.650873,-5.218435,-20.038687,-3.335145,-7.771207,-19.885174,-3.344498,-7.731295, + -19.624552,-3.557134,-5.618441,-19.471039,-3.566487,-5.578529,-21.009972,-3.143672,-10.035028,-20.856457,-3.153026,-9.995115, + -20.170534,-3.345111,-7.833188,-20.017021,-3.354464,-7.793276,-18.444590,-3.299973,-9.368054,-18.291077,-3.309326,-9.328142, + -17.904396,-3.463290,-7.236530,-17.750883,-3.472643,-7.196618,-19.529507,-3.242819,-9.649553,-19.375994,-3.252172,-9.609642, + -19.176878,-3.395065,-7.568605,-19.023365,-3.404418,-7.528694,-17.467920,0.326927,-6.754903,-17.621433,0.336280,-6.794815, + -19.265917,0.339007,-5.240820,-19.419430,0.348360,-5.280733,-19.923826,0.475228,-7.403417,-20.077339,0.484581,-7.443328, + -21.900551,0.498809,-5.892618,-22.054066,0.508162,-5.932530,-17.114304,0.513304,-8.756315,-17.267817,0.522657,-8.796227, + -18.701305,0.412523,-7.258435,-18.854818,0.421876,-7.298347,-19.422804,0.638132,-9.375576,-19.576317,0.647485,-9.415487, + -21.253040,0.555665,-7.799589,-21.406553,0.565018,-7.839500,-19.011206,0.494495,-7.764266,-19.258518,0.508893,-7.818891, + -19.010334,0.513323,-7.763215,-19.257423,0.533921,-7.817454,-19.113194,0.535698,-8.411463,-18.866341,0.530272,-8.322276, + -18.865467,0.549100,-8.321224,-19.112097,0.560725,-8.410025,-19.588545,0.527399,-7.848262,-19.591372,0.455647,-7.854206, + -19.367195,0.579724,-8.548589,-19.370022,0.507972,-8.554533,-18.972471,0.417941,-7.693298,-18.969646,0.489694,-7.687354, + -18.809357,0.471636,-8.382458,-18.806530,0.543388,-8.376513,-19.104467,0.550161,-8.411676,-19.252785,0.552968,-7.823313, + -19.335066,0.564461,-8.471334,-19.334082,0.583302,-8.470709,-19.103159,0.575208,-8.410847,-19.254906,0.507332,-7.825849, + -19.523485,0.525594,-7.883346,-19.522499,0.544436,-7.882721,-17.432018,-0.545950,-7.504971,-17.424126,-0.294060,-7.475921, + -17.413670,-0.547030,-7.500666,-17.399746,-0.295446,-7.470142,-17.281828,-0.242928,-8.067627,-17.287159,-0.505352,-8.062653, + -17.268810,-0.506433,-8.058348,-17.257450,-0.244315,-8.061848,-17.422113,0.028207,-7.396785,-17.491657,0.032467,-7.415150, + -17.230453,0.041714,-8.107613,-17.299997,0.045973,-8.125977,-17.517405,-0.605607,-7.465634,-17.447861,-0.609866,-7.447269, + -17.330191,-0.540451,-8.147642,-17.260649,-0.544711,-8.129277,-17.267027,-0.251068,-8.067783,-17.379696,-0.297894,-7.473402, + -17.257240,-0.013418,-8.048650,-17.238794,-0.014468,-8.044775,-17.242506,-0.252464,-8.062633,-17.424171,-0.295275,-7.483822, + -17.413351,-0.022295,-7.450074,-17.394905,-0.023345,-7.446199,-20.452129,-2.946801,-12.018241,-20.378029,-3.048488,-12.006838, + -20.456043,-3.043830,-12.025918,-21.007568,-3.038102,-10.101078,-20.933470,-3.139789,-10.089674,-21.011484,-3.135131,-10.108755, + -20.213717,0.853348,-11.696311,-20.848354,0.737390,-9.800548,-20.770340,0.732732,-9.781467,-20.852270,0.640361,-9.808225, + -20.291731,0.858006,-11.715391,-20.295647,0.760977,-11.723068,1.450161,-4.301295,-4.512650,-1.114946,-7.244425,-5.391738, + 1.378136,-4.237369,-4.527300,-1.042920,-7.308352,-5.377089,-1.140430,-7.251029,-5.295266,1.352651,-4.243974,-4.430827, + 4.324203,-6.852146,-3.928073,1.831121,-9.859201,-4.792511,1.738111,-9.776650,-4.811430,4.298719,-6.858750,-3.831601, + 1.805637,-9.865807,-4.696039,4.231192,-6.769594,-3.946991,1.390149,-4.266016,-4.561799,4.280054,-6.830942,-3.973995, + 4.219350,-6.904160,-3.995043,1.329446,-4.339234,-4.582847,1.364665,-4.272621,-4.465326,4.254569,-6.837546,-3.877522, + 4.193866,-6.910764,-3.898571,1.303962,-4.345840,-4.486374,1.810516,-9.809599,-4.830270,-1.079388,-7.244675,-5.418074, + -1.018685,-7.171456,-5.397026,1.871220,-9.736382,-4.809222,1.785032,-9.816204,-4.733798,-1.104873,-7.251279,-5.321601, + 3.883565,-7.441229,-6.152921,2.545702,-9.054907,-6.616806,-0.008351,-6.758539,-7.134276,1.298078,-5.146485,-6.678807, + 3.385386,-7.596731,-4.175218,2.047523,-9.210408,-4.639102,-0.583996,-6.874808,-5.174350,0.753867,-5.261130,-4.710466, + 4.229708,-6.843500,-3.900615,0.461161,-4.387353,-0.567555,3.294529,-6.963417,0.008394,0.647726,-10.155381,-0.907118, + -2.184567,-7.641590,-1.483204,1.060090,-4.351564,-2.568961,-1.684487,-7.503394,-3.476375,0.988064,-4.287638,-2.583611, + -1.612462,-7.567320,-3.461725,-1.722518,-7.513250,-3.332407,0.946511,-4.298407,-2.426308,3.860579,-6.824505,-1.968297, + 1.203019,-10.055223,-2.888309,3.810931,-6.849148,-1.831734,1.167659,-10.064387,-2.754453,1.118567,-9.980269,-2.905486, + 3.788554,-6.760579,-1.982947,0.973401,-4.330063,-2.547078,3.808065,-6.845959,-1.970512,3.698816,-6.971734,-1.982233, + 0.864154,-4.455839,-2.558800,0.964867,-4.314137,-2.435627,3.799531,-6.830032,-1.859059,3.685217,-6.967912,-1.898696, + 0.850554,-4.452017,-2.475264,-1.571490,-7.365393,-3.401392,1.290132,-9.905216,-2.819340,1.177051,-10.039711,-2.850260, + -1.684571,-7.499887,-3.432312,-1.603771,-7.382588,-3.317721,1.257851,-9.922412,-2.735670,1.164773,-10.033868,-2.764402, + -1.696848,-7.494044,-3.346454,-0.999336,-6.003332,-1.049432,2.036560,-8.697830,-0.431934,2.103932,-8.616569,-0.408574, + -0.931964,-5.922071,-1.026072,-0.973438,-5.996621,-1.147472,2.049565,-8.694460,-0.481165,-1.674937,-6.814003,-1.265297, + 1.360958,-9.508501,-0.647799,-1.605277,-6.732522,-1.252234,-1.655445,-6.814072,-1.350878,1.372282,-9.510056,-0.710261, + 1.430619,-9.427020,-0.634736,-2.291883,-7.550535,-1.446034,0.702125,-10.319691,-0.948369,-2.333770,-7.625192,-1.565867, + 0.744013,-10.245033,-0.828536,0.676641,-10.326295,-0.851896,-2.359254,-7.631796,-1.469394,-0.269397,-5.113583,-0.755648, + 2.766498,-7.808082,-0.138149,2.725103,-7.880136,-0.249050,-0.310792,-5.185638,-0.866549,2.700232,-7.888999,-0.165447, + -0.335664,-5.194502,-0.782945,3.464376,-6.987969,0.009400,0.428480,-4.293470,-0.608098,0.402995,-4.300075,-0.511625, + 3.438891,-6.994574,0.105873,3.371520,-7.075834,0.082513,0.335624,-4.381337,-0.534985,-2.249072,-7.677854,-1.511411, + 0.480270,-4.385821,-0.565053,0.514827,-4.416492,-0.558023,-2.214514,-7.708525,-1.504382,-2.284624,-7.674685,-1.419902, + 0.444718,-4.382652,-0.473543,0.489342,-4.423097,-0.461551,-2.239998,-7.715130,-1.407909,0.599718,-10.206287,-0.931970, + 3.329060,-6.914254,0.014389,3.399590,-6.976852,0.028735,0.670248,-10.268886,-0.917625,0.574234,-10.212893,-0.835497, + 3.303576,-6.920859,0.110862,3.371450,-6.986130,0.142161,0.642109,-10.278163,-0.804198,2.334476,-6.380760,0.883562, + 1.794526,-9.780721,-4.744978,-0.323889,-9.668193,-0.095017,-2.025426,-7.683932,-1.376546,0.650920,-10.052994,-0.833596, + 0.535691,-10.195210,-0.886976,-2.135116,-7.819468,-1.428006,-2.278907,-7.570561,-1.448765,0.739767,-10.243999,-0.834296, + 0.676275,-10.320580,-0.856311,-2.336862,-7.640463,-1.468860,-0.374227,-9.735054,-0.001545,-0.311159,-9.635901,-0.119456, + -0.441598,-9.816315,-0.024906,-0.430267,-9.782797,-0.174181,0.608781,-4.518867,-0.479748,3.279504,-6.889677,0.062333, + 0.413494,-4.315283,-0.517206,3.431225,-6.994564,0.097290,3.369250,-7.069315,0.075802,0.353236,-4.387964,-0.538100, + 2.462438,-6.313577,0.982026,2.444174,-6.315755,0.822489,2.377375,-6.416176,0.952532,2.481528,-6.284136,0.917541, + 2.473196,-6.298161,0.990359,-0.492598,-9.871943,-0.022945,0.412775,-4.276483,-0.539527,-2.374330,-7.638183,-1.505914, + 0.393147,-4.269844,-0.506015,-2.393957,-7.631544,-1.472402,3.496840,-7.031989,0.151278,0.709734,-10.393690,-0.815109, + 3.451482,-6.975543,0.085734,0.664378,-10.337244,-0.880654,-0.469927,-9.845352,-0.111430,0.976078,-4.374058,-2.537879, + 1.209390,-9.950256,-2.839582,-1.559589,-7.492659,-3.402790,3.746131,-6.893927,-1.974809,1.368263,-4.303829,-4.482630, + -1.066920,-7.241050,-5.326993,3.688234,-6.951759,-1.962385,-1.555625,-7.399035,-3.367972,0.879558,-4.461815,-2.523609, + 1.253052,-9.888980,-2.806748,1.018438,-4.390082,-2.453760,0.896279,-4.386626,-2.485793,0.946412,-4.326157,-2.468410, + 0.496328,-4.418126,-0.505968,0.374169,-4.414669,-0.538001,0.424302,-4.354200,-0.520617,2.012168,-5.272066,-2.251637, + 1.940142,-5.208140,-2.266286,1.531036,-5.351439,-0.356718,1.459011,-5.287513,-0.371368,2.797889,-5.969431,-2.091822, + 2.725863,-5.905505,-2.106472,2.344377,-6.073318,-0.191286,2.272351,-6.009392,-0.205936,3.803475,-6.861937,-1.887286, + 3.753341,-6.922406,-1.904669,3.731449,-6.798011,-1.901937,3.351900,-6.954904,0.082919,3.301766,-7.015372,0.065535, + 3.290524,-6.900430,0.070435,1.429156,-4.339005,-4.495425,1.379324,-4.399391,-4.513931,1.307299,-4.335464,-4.528581, + 1.357130,-4.275079,-4.510075,0.959625,-4.470107,-2.513803,0.909794,-4.530493,-2.532309,0.837768,-4.466567,-2.546959, + 0.887599,-4.406181,-2.528452,2.369446,-5.173558,-4.304171,2.297421,-5.109632,-4.318820,1.886450,-5.292709,-2.325287, + 1.814425,-5.228784,-2.339937,3.296153,-5.996055,-4.115680,3.224127,-5.932129,-4.130330,2.785537,-6.090693,-2.142414, + 2.713511,-6.026766,-2.157064,4.269434,-6.859890,-3.917715,4.219604,-6.920275,-3.936222,4.192458,-6.791569,-3.933372, + 3.744662,-6.941962,-1.947329,3.694830,-7.002347,-1.965836,3.667686,-6.873642,-1.962986,-0.111830,-6.031197,-4.977008, + -0.172534,-6.104415,-4.998056,-1.195396,-6.323315,-1.112352,-1.256100,-6.396533,-1.133400,0.061008,-5.404928,-2.805214, + 0.000304,-5.478147,-2.826262,-0.472668,-5.451587,-0.861757,-0.533371,-5.524805,-0.882805,0.597798,-5.214160,-4.774950, + 0.537094,-5.287379,-4.795998,0.062689,-5.403610,-2.814646,0.001986,-5.476829,-2.835694,2.833268,-8.000731,-2.221539, + 2.893972,-7.927513,-2.200491,2.385489,-8.115435,-0.289112,2.446193,-8.042217,-0.268064,2.194062,-8.784686,-2.499775, + 2.254766,-8.711468,-2.478727,1.668440,-8.985689,-0.561212,1.729144,-8.912472,-0.540164,3.414162,-7.840914,-4.210806, + 3.474865,-7.767696,-4.189758,2.843632,-7.998927,-2.257706,2.904336,-7.925709,-2.236658,2.703630,-8.694992,-4.444365, + 2.768017,-8.621930,-4.442107,2.204426,-8.782882,-2.535943,2.265130,-8.709663,-2.514894,1.128408,-9.953189,-2.805562, + 1.178542,-9.892720,-2.788179,1.250567,-9.956646,-2.773530,1.200433,-10.017115,-2.790913,0.621280,-10.160609,-0.965891, + 0.671413,-10.100141,-0.948507,0.743439,-10.164066,-0.933858,0.693305,-10.224535,-0.951241,0.107406,-9.046997,-3.013233, + 0.179431,-9.110924,-2.998583,-0.424448,-9.244592,-1.136434,-0.352423,-9.308517,-1.121784,-0.678315,-8.349631,-3.173048, + -0.606289,-8.413557,-3.158398,-1.237788,-8.522712,-1.301866,-1.165762,-8.586637,-1.287216,-1.656626,-7.481330,-3.372035, + -1.606492,-7.420861,-3.354652,-1.534467,-7.484787,-3.340002,-1.584600,-7.545257,-3.357385,-2.256337,-7.617330,-1.513798, + -2.206203,-7.556860,-1.496414,-2.134177,-7.620787,-1.481765,-2.184311,-7.681256,-1.499147,1.752646,-9.760232,-4.781111, + 1.875097,-9.763618,-4.750205,1.824672,-9.824158,-4.766460,1.181710,-9.897985,-2.826731,1.304161,-9.901371,-2.795825, + 1.253736,-9.961910,-2.812081,0.763948,-8.882711,-4.982211,0.835973,-8.946638,-4.967561,0.207169,-9.033030,-3.024951, + 0.279195,-9.096956,-3.010302,-0.162758,-8.060214,-5.170701,-0.090732,-8.124140,-5.156052,-0.691917,-8.235045,-3.207824, + -0.619891,-8.298972,-3.193174,-1.087629,-7.239344,-5.358819,-1.037204,-7.178804,-5.342563,-1.010653,-7.307663,-5.343162, + -1.603323,-7.426126,-3.393203,-1.552898,-7.365586,-3.376947,-1.526347,-7.494446,-3.377547,1.929277,-4.159037,-6.420431, + 1.807421,-4.155497,-6.453588,1.857252,-4.095111,-6.435081,1.427187,-4.341217,-4.495397,1.305330,-4.337676,-4.528553, + 1.355162,-4.277290,-4.510046,2.879121,-5.002069,-6.227234,2.757264,-4.998528,-6.260390,2.807095,-4.938143,-6.241884, + 2.367477,-5.175770,-4.304142,2.245621,-5.172229,-4.337299,2.295452,-5.111844,-4.318792,3.824240,-5.840908,-6.034997, + 3.774409,-5.901293,-6.053504,3.752214,-5.776981,-6.049647,3.294184,-5.998266,-4.115651,3.244353,-6.058652,-4.134158, + 3.222158,-5.934340,-4.130301,4.770890,-6.681106,-5.842450,4.721059,-6.741491,-5.860956,4.680452,-6.600837,-5.860845, + 4.240834,-6.838464,-3.923104,4.191003,-6.898850,-3.941610,4.168809,-6.774538,-3.937754,-0.139247,-9.570350,-1.054356, + -0.073859,-9.628386,-1.041056,-0.468306,-9.733230,-0.147297,-0.402917,-9.791265,-0.133997,2.572927,-6.289949,-0.111410, + 2.507538,-6.231914,-0.124710,2.434738,-6.368146,0.851865,2.369350,-6.310111,0.838565,-1.040322,-8.768792,-1.243933, + -0.974934,-8.826828,-1.230633,-1.256443,-8.812781,-0.709998,-1.191055,-8.870817,-0.696698,1.759505,-5.528652,-0.282507, + 1.694116,-5.470616,-0.295807,1.573938,-5.535787,0.262022,1.508549,-5.477752,0.248722,-1.169082,-8.545963,-1.302903, + -1.286568,-8.441689,-1.326799,-1.498019,-7.605018,-3.353997,-1.615505,-7.500744,-3.377894,-0.999217,-7.564344,-4.555072, + -0.925380,-7.558489,-4.454923,-0.970282,-7.612648,-4.470491,-1.196746,-7.592705,-3.872789,-1.083453,-7.576624,-3.922004, + -1.128355,-7.630783,-3.937573,-0.623057,-7.920826,-4.399866,-0.578156,-7.866668,-4.384297,-0.554666,-7.958904,-4.464650, + -0.752164,-7.968297,-3.848435,-0.707263,-7.914139,-3.832867,-0.678327,-7.962442,-3.748286,-0.723229,-8.016602,-3.763855, + 0.715237,-9.270688,-3.549968,0.760139,-9.216530,-3.534399,0.646846,-9.232610,-3.485184,0.885028,-9.259325,-4.093123, + 0.929930,-9.205167,-4.077554,0.856093,-9.211021,-4.177704,-0.977692,-7.757010,-3.876661,-0.910953,-7.819283,-3.852514, + -0.751108,-7.777857,-4.457621,-0.792445,-7.740581,-4.468076,-1.150110,-7.590207,-3.910788,-0.716194,-7.978367,-3.811957, + -0.570122,-7.924716,-4.419865,-0.974046,-7.565627,-4.504071,2.160988,-5.867805,-6.531286,1.669934,-5.432702,-6.628629, + 1.209539,-5.530900,-4.959233,1.745353,-6.007188,-4.847712,1.683328,-5.907674,-5.015001,1.348868,-5.610381,-5.084579, + 1.479024,-5.587210,-5.540559,1.795848,-5.867959,-5.477667,1.784449,-5.881708,-5.481619,1.467625,-5.600959,-5.544511, + 1.337469,-5.624130,-5.088532,1.671929,-5.921423,-5.018954,1.647040,-5.749330,-5.508854,1.614986,-5.721326,-5.513824, + 1.503246,-5.760842,-5.054100,1.534523,-5.789047,-5.046188,1.386742,-5.584310,-5.340960,1.377027,-5.588202,-5.299400, + 1.750388,-5.919577,-5.223459,1.762502,-5.917813,-5.264531,2.848764,-5.787991,-3.426488,2.817333,-5.825901,-3.437387, + 2.731864,-5.765460,-3.401147,2.776766,-5.711301,-3.385578,2.696470,-5.857213,-2.760407,2.665039,-5.895124,-2.771306, + 2.606456,-5.827715,-2.836845,2.651358,-5.773556,-2.821276,2.446202,-5.421549,-3.440157,2.401300,-5.475708,-3.455726, + 2.342717,-5.408298,-3.521265,2.374148,-5.370387,-3.510367,2.290363,-5.453157,-2.894702,2.245461,-5.507316,-2.910271, + 2.159993,-5.446874,-2.874032,2.191424,-5.408963,-2.863133,2.745925,-5.784520,-3.123798,2.730200,-5.787103,-3.069459, + 2.325047,-5.427512,-3.151867,2.338170,-5.422618,-3.206735,2.476885,-5.642973,-2.828671,2.435548,-5.605697,-2.839127, + 2.595394,-5.564271,-3.444233,2.637757,-5.601282,-3.437664,2.658483,-5.817924,-2.792677,2.240789,-5.446613,-2.879683, + 2.409845,-5.413362,-3.482917,2.798135,-5.753759,-3.418644,3.770524,-6.601378,-3.225774,3.735101,-6.644104,-3.238056, + 3.649632,-6.583662,-3.201817,3.694534,-6.529503,-3.186248,3.610816,-6.660382,-2.573858,3.575393,-6.703107,-2.586140, + 3.516810,-6.635698,-2.651680,3.561712,-6.581539,-2.636111,3.351247,-6.224820,-3.256072,3.306345,-6.278979,-3.271641, + 3.247763,-6.211569,-3.337180,3.283185,-6.168844,-3.324898,3.177701,-6.240712,-2.714218,3.132799,-6.294871,-2.729787, + 3.047330,-6.234429,-2.693548,3.082753,-6.191704,-2.681266,3.642469,-6.580246,-2.941442,3.626744,-6.582829,-2.887104, + 3.221591,-6.223238,-2.969511,3.234714,-6.218345,-3.024379,3.373429,-6.438699,-2.646315,3.332093,-6.401423,-2.656770, + 3.491938,-6.359997,-3.261877,3.534302,-6.397008,-3.255308,3.568837,-6.625907,-2.607512,3.128127,-6.234169,-2.699200, + 3.314890,-6.216633,-3.298831,3.715903,-6.571961,-3.219314,0.656068,-10.175992,-0.896466,0.538582,-10.071718,-0.920363, + 0.272720,-9.186753,-2.958628,0.155234,-9.082479,-2.982524,-0.652434,-8.366900,-3.142403,-0.534948,-8.471174,-3.118506, + -0.495229,-9.154160,-1.130639,-0.377743,-9.258434,-1.106742,1.879012,-5.458071,-0.950116,1.867035,-5.472303,-0.953329, + 2.071589,-5.654151,-0.923945,2.240411,-5.590436,-1.504716,2.060132,-5.438343,-1.541342,2.048155,-5.452575,-1.544555, + 2.100376,-5.619696,-0.915130,2.224489,-5.609357,-1.508987,2.459727,-5.795559,-1.502669,2.414896,-5.849699,-1.518504, + 2.289038,-5.859010,-0.816180,2.244207,-5.913150,-0.832014,1.987398,-5.462690,-1.631395,2.032228,-5.408550,-1.615561, + 1.770557,-5.492765,-0.928354,1.815388,-5.438625,-0.912521,2.224608,-5.596794,-1.505151,2.415105,-5.765803,-1.441954, + 2.403230,-5.780019,-1.445596,2.208877,-5.615721,-1.510038,2.085265,-5.633044,-0.911647,2.271183,-5.803575,-0.883831, + 2.069533,-5.651972,-0.916533,2.259308,-5.817790,-0.887474,1.228315,-9.564009,-4.023299,1.273217,-9.509850,-4.007730, + 1.296707,-9.602087,-4.088083,1.099248,-9.611515,-3.471860,1.144150,-9.557357,-3.456291,1.173085,-9.605660,-3.371711, + 1.128183,-9.659819,-3.387280,0.884287,-9.413234,-3.485316,0.926650,-9.450245,-3.478747,1.086495,-9.408818,-4.083854, + 1.045158,-9.371542,-4.094310,0.693482,-9.230112,-3.523182,1.135219,-9.621585,-3.435382,1.281251,-9.567899,-4.043298, + 0.881265,-9.212304,-4.126703,-0.352815,-9.018244,-1.636149,0.544242,-9.814425,-1.453689,-0.957877,-7.514482,-4.540738, + -1.155406,-7.542842,-3.858455,-0.513326,-7.909041,-4.450316,-0.681889,-7.966739,-3.749521,0.688186,-9.182747,-3.470850, + 0.897433,-9.161160,-4.163370,1.338047,-9.552224,-4.073750,1.169524,-9.609957,-3.372946,2.233962,-5.957719,-6.535158, + 2.163023,-5.842624,-6.545964,1.786567,-6.107116,-4.739100,1.746754,-5.983954,-4.867736,1.710324,-5.440834,-6.638043, + 1.589597,-5.385817,-6.666221,1.248023,-5.541308,-4.969177,1.096171,-5.494358,-4.879526,1.536331,-8.279458,-6.856629, + 2.013952,-8.703366,-6.759481,1.625089,-8.833832,-5.169860,1.106253,-8.373343,-5.275391,0.365073,-7.328855,-6.311511, + 0.380846,-7.426308,-6.185096,0.147610,-7.369312,-5.529656,0.229694,-7.454253,-5.638011,0.715036,-7.726134,-6.105925, + 0.842157,-7.756791,-6.198806,0.578658,-7.767110,-5.556120,0.639468,-7.810279,-5.414232,0.292086,-7.398095,-5.945385, + 0.278012,-7.402151,-5.890685,0.679912,-7.762466,-5.796371,0.696568,-7.760725,-5.850465,0.387778,-7.588488,-5.570647, + 0.429839,-7.625603,-5.562841,0.590975,-7.585287,-6.167809,0.550008,-7.547965,-6.179487,0.207691,-7.413201,-5.612171, + 0.613955,-7.776834,-5.518898,0.768282,-7.730558,-6.124964,0.377886,-7.379748,-6.219390,1.502555,-8.117174,-6.836415, + 1.047844,-8.221722,-5.176498,2.155946,-8.697085,-6.703516,1.741079,-8.836997,-5.035495,-1.266301,-5.996287,-0.102125, + 0.433926,-7.383672,-0.057747,-1.286842,-6.499522,-1.129637,0.078290,-7.435821,-1.305519,0.009913,-7.741816,-1.267911, + 1.016514,-6.520349,-0.886865,-0.510362,-5.578512,-0.846027,0.694374,-6.686641,-1.065389,0.167398,-7.107772,-0.312169, + -1.030152,-6.161621,-0.163898,-0.382871,-5.751548,-0.848253,-1.134122,-6.590727,-1.085842,-0.439599,-5.630841,-0.875824, + -0.652960,-5.853516,-0.760597,-1.079902,-6.354244,-0.903927,-1.191625,-6.540125,-1.123969,-0.989153,-6.124037,-0.327497, + -1.061298,-6.158937,-0.124894,-0.683674,-5.875798,-0.648579,-0.699260,-5.880938,-0.594378,-1.055904,-6.314179,-0.689366, + -1.042642,-6.311843,-0.744372,-0.967639,-6.136734,-0.262339,-1.002332,-6.179128,-0.276757,-0.823547,-6.131006,-0.903697, + -0.787698,-6.088313,-0.893656,0.752158,-8.386993,0.336971,-1.290573,-6.343978,-1.186780,-1.310201,-6.337339,-1.153269, + 1.793491,-9.099484,-0.495976,1.748134,-9.043038,-0.561520,0.760490,-8.372969,0.264154,-0.488591,-6.603772,-0.110155, + -0.595478,-7.075959,-1.166925,0.198220,-6.109468,-0.859685,0.087478,-5.532080,-2.938448,-0.024805,-5.478587,-2.800702, + 0.015452,-5.468154,-2.953098,2.202990,-5.891139,-0.168167,2.135618,-5.972400,-0.191527,2.228474,-5.884534,-0.264640, + -1.179229,-6.354925,-1.095649,-1.143677,-6.358094,-1.187158,-1.109120,-6.388765,-1.180129,1.697091,-8.888014,-0.574762, + 1.739481,-8.959888,-0.446990,1.767621,-8.950611,-0.560416,1.213514,-9.968731,-2.845635,1.312531,-9.849300,-2.811302, + 1.578456,-9.103163,-0.631409,1.677473,-8.983732,-0.597076,2.868202,-7.972912,-2.271897,2.967219,-7.853481,-2.237564, + 3.233144,-7.107344,-0.057671,3.332161,-6.987914,-0.023338,2.225690,-8.747884,-2.494678,2.324708,-8.628453,-2.460345, + 2.339788,-8.184874,-0.367428,2.438806,-8.065443,-0.333096,1.795995,-9.777936,-4.699057,1.895012,-9.658505,-4.664724, + 2.158350,-8.866404,-2.547050,2.257368,-8.746973,-2.512718,3.450683,-7.782117,-4.125319,3.549700,-7.662686,-4.090986, + 3.603876,-7.089859,-2.037452,3.702894,-6.970428,-2.003119,2.757587,-8.631553,-4.365379,2.856605,-8.512122,-4.331047, + 2.790337,-8.085756,-2.321143,2.889354,-7.966326,-2.286811,0.944217,-4.342448,-2.445093,0.845199,-4.461879,-2.479426, + -0.434245,-5.450728,-0.896887,-0.533262,-5.570159,-0.931220,-0.637377,-6.255682,-3.003782,-0.736394,-6.375113,-3.038115, + -2.137956,-7.494999,-1.453662,-2.236973,-7.614430,-1.487995,1.324002,-4.309840,-4.450120,1.224985,-4.429272,-4.484453, + 0.167761,-5.327917,-2.901249,0.068743,-5.447348,-2.935582,-0.150215,-6.118895,-4.981390,-0.249232,-6.238325,-5.015723, + -1.486848,-7.299067,-3.350162,-1.585865,-7.418498,-3.384495,-0.017082,-5.605479,-3.398658,-0.177521,-5.796584,-3.444403, + -0.030921,-5.593065,-3.401932,-0.195965,-5.780126,-3.448714,-0.017720,-5.773088,-4.033377,0.130539,-5.570719,-3.956010, + 0.116699,-5.558305,-3.959284,-0.036164,-5.756629,-4.037687,-0.397508,-6.044344,-3.462934,-0.344162,-6.091611,-3.452364, + -0.192656,-5.965742,-4.165820,-0.139310,-6.013008,-4.155249,0.055031,-5.610117,-3.313950,0.001685,-5.562850,-3.324520, + 0.220086,-5.573506,-4.003765,0.166740,-5.526240,-4.014336,-0.023067,-5.757535,-4.037234,-0.206550,-5.765902,-3.458925, + -0.172038,-5.936730,-4.088574,-0.185752,-5.924298,-4.092272,-0.041299,-5.741007,-4.042149,-0.173010,-5.795992,-3.450976, + -0.349502,-6.001597,-3.499473,-0.363217,-5.989164,-3.503170,1.738004,-4.983212,-2.979067,1.548229,-4.817395,-3.008126, + 1.749878,-4.968997,-2.975425,1.563961,-4.798467,-3.003240,1.687572,-4.781144,-3.601631,1.881925,-4.945441,-3.537190, + 1.893801,-4.931225,-3.533547,1.703304,-4.762216,-3.596745,1.294084,-4.604048,-3.004113,1.249253,-4.658188,-3.019948, + 1.510924,-4.573973,-3.707154,1.466093,-4.628113,-3.722988,1.722903,-5.078573,-2.923608,1.767733,-5.024433,-2.907773, + 1.893592,-5.015121,-3.610098,1.938422,-4.960981,-3.594263,1.703184,-4.774779,-3.600581,1.579071,-4.785118,-3.006724, + 1.526850,-4.617997,-3.636148,1.538827,-4.603765,-3.632936,1.719106,-4.755859,-3.596310,1.550285,-4.819573,-3.015538, + 1.345730,-4.637726,-3.044923,1.357707,-4.623493,-3.041710,2.295309,-9.578536,-6.697559,2.417759,-9.581923,-6.666653, + 2.367334,-9.642462,-6.682909,1.727425,-9.722967,-4.787320,1.849877,-9.726353,-4.756414,1.799451,-9.786893,-4.772670, + -0.474518,-7.005657,-7.254307,-1.071065,-7.229942,-5.355898,-1.020640,-7.169402,-5.339642,-0.999040,-7.293868,-5.341248, + -0.524944,-7.066197,-7.270563,-0.452918,-7.130123,-7.255913,-24.569891,8.989532,-9.126437,-23.832836,9.118911,-12.004298, + -24.257582,6.978368,-9.189354,-24.547905,6.704701,-9.173750,-24.290468,6.969845,-9.064856,-24.043526,7.168143,-10.396983, + -24.298983,7.414551,-10.602418,-24.010395,7.176730,-10.522400,-24.999630,8.984421,-8.613191,-24.697029,8.962241,-8.547651, + -24.317659,9.051869,-10.410422,-23.698755,9.316479,-12.052711,-24.493067,9.086837,-9.012500,-24.451515,8.824724,-8.994381, + -23.651550,9.061390,-12.058229,-24.215132,9.123919,-10.369358,-24.166000,8.852669,-10.375474,-24.245686,9.007878,-10.358431, + -24.448397,8.782855,-10.561153,-24.212797,9.016401,-10.482928,-24.529135,8.732998,-9.107922,-24.543131,8.850574,-9.103569, + -24.166262,8.122616,-10.425810,-24.153351,8.014155,-10.429825,-24.577671,8.727716,-9.121103,-24.591665,8.845292,-9.116751, + -24.211487,8.117708,-10.438465,-24.198576,8.009248,-10.442480,-24.334866,7.052455,-9.148889,-24.358952,7.158986,-9.102954, + -24.151119,8.119488,-10.419006,-24.138208,8.011028,-10.423021,-24.383400,7.047173,-9.162069,-24.407486,7.153703,-9.116135, + -24.196344,8.114580,-10.431662,-24.183434,8.006121,-10.435677,-24.539139,9.025543,-8.974129,-24.796576,8.760400,-9.083022, + -24.506252,9.034067,-9.098627,-24.744654,9.030830,-8.225275,-24.703102,8.768717,-8.207156,-24.563257,9.066940,-9.949566, + -23.948988,9.289209,-12.120680,-24.986446,9.004287,-8.290815,-24.965542,8.724048,-8.295076,-24.331720,6.970199,-9.172158, + -24.765245,6.896866,-8.683697,-24.454145,6.935162,-8.591828,-23.585997,7.163322,-12.073926,-24.062496,7.048470,-10.479714, + -17.597485,9.348257,-9.824349,-17.411823,9.350460,-9.782923,-17.380194,9.242382,-9.783422,-17.617363,9.342026,-9.734929, + -17.434826,9.334575,-9.697027,-17.399616,9.236294,-9.696048,-17.628338,9.152515,-9.748089,-17.607935,9.158911,-9.839867, + -17.495447,9.383478,-9.799212,-17.532661,9.112103,-9.735853,-17.513571,9.118087,-9.821733,-17.519430,9.367286,-9.708912, + -18.757771,9.148013,-10.072060,-18.484257,9.086288,-10.052694,-18.418438,8.985304,-10.062943,-18.767653,9.132443,-9.982115, + -18.498335,9.060884,-9.967059,-18.428093,8.970091,-9.975058,-18.812195,8.950476,-10.016036,-18.802052,8.966455,-10.108352, + -18.623537,9.105225,-10.064719,-18.625751,8.826866,-10.023130,-18.616261,8.841819,-10.109514,-18.638102,9.079052,-9.974653, + -10.150884,40.488052,-2.139488,-8.713219,36.755455,-2.015248,-10.237458,40.451317,-2.164872,-8.626644,36.792187,-1.989863, + -8.738703,36.748852,-1.918775,-10.262942,40.444714,-2.068400,-6.696282,41.953796,-1.126572,-5.172042,38.257935,-0.976948, + -5.283841,38.210499,-1.009728,-6.721766,41.947193,-1.030099,-5.197526,38.251328,-0.880475,-6.808081,41.906361,-1.159352, + -10.200495,40.442215,-2.191442,-6.726830,41.916050,-1.172936,-6.689717,41.826061,-1.169293,-10.163382,40.352222,-2.187799, + -10.225980,40.435608,-2.094970,-6.752315,41.909447,-1.076464,-6.715201,41.819458,-1.072821,-10.188866,40.345619,-2.091327, + -5.216985,38.255093,-1.024725,-8.690649,36.781254,-2.043231,-8.727763,36.871243,-2.046874,-5.254098,38.345081,-1.028368, + -5.242469,38.248486,-0.928253,-8.716134,36.774647,-1.946759,-6.754795,41.880650,-1.095208,-11.324203,40.347317,1.753174, + -7.866136,41.764584,2.767529,-6.248775,37.841492,2.928389,-9.653191,36.397034,1.930187,-10.675143,40.499851,-0.226997, + -9.140972,36.511238,-0.061420,-10.761718,40.463120,-0.252381,-9.054398,36.547970,-0.036036,-9.179003,36.501381,0.082548, + -10.803271,40.452351,-0.095078,-7.325759,41.939766,0.786540,-5.679689,37.988945,0.954080,-7.355370,41.911686,0.928160, + -5.715048,37.979782,1.087936,-5.781199,37.945877,0.924317,-7.412334,41.903034,0.761155,-9.218479,36.686417,-0.034214, + -5.778809,38.145832,0.974324,-5.712905,37.980648,0.988583,-9.152575,36.521233,-0.019956,-9.235735,36.666645,0.053249, + -5.796065,38.126060,1.061787,-5.740540,37.989124,1.070566,-9.180208,36.529709,0.062027,-10.560225,38.252644,1.826146, + -6.911078,39.800938,2.896103,-6.952269,39.900814,2.892060,-10.601415,38.352520,1.822102,-10.534326,38.259354,1.728105, + -6.898074,39.804306,2.846872,-10.154340,37.256542,1.883271,-6.505194,38.804836,2.953229,-10.192605,37.356529,1.869091, + -10.128187,37.257011,1.799487,-6.486229,38.801971,2.892696,-6.543459,38.904823,2.939049,-9.790084,36.351776,1.950212, + -6.074264,37.806797,2.927741,-9.723410,36.258503,1.857783,-6.140938,37.900070,3.020170,-6.099748,37.800194,3.024213, + -9.748894,36.251900,1.954255,-11.022367,39.346786,1.819021,-7.373222,40.895077,2.888979,-7.310265,40.805130,2.804419, + -10.959411,39.256840,1.734461,-7.331023,40.795563,2.889061,-10.980168,39.247269,1.819103,-9.648041,36.319031,1.917523, + -11.316735,40.365139,1.753717,-11.275198,40.382763,1.765896,-9.606503,36.336655,1.929702,-9.685774,36.307106,2.007422, + -11.354469,40.353218,1.843617,-11.300682,40.376160,1.862369,-9.631988,36.330051,2.026175,-6.223796,37.771900,2.921538, + -7.892491,41.818012,2.757732,-7.807715,41.853981,2.782589,-6.139019,37.807869,2.946395,-6.249280,37.765297,3.018011, + -7.917975,41.811405,2.854205,-7.835505,41.847122,2.896274,-6.166810,37.801014,3.060080,-5.265953,38.270618,-0.949059, + -7.293122,37.371151,3.655724,-9.560698,36.537136,2.031730,-6.348844,37.904640,2.971946,-6.273026,37.729774,2.966798, + -9.488266,36.370483,2.026249,-9.766186,36.353519,1.951857,-6.142758,37.895725,3.014682,-6.103940,37.801601,3.018493, + -9.730753,36.267605,1.955335,-7.278682,37.315121,3.767049,-7.309737,37.392109,3.622757,-7.237492,37.215248,3.771092, + -7.231547,37.211494,3.617842,-9.016300,41.537830,3.525584,-9.022542,41.538265,3.599944,-7.215152,37.146084,3.791499, + -11.447657,40.360588,1.754691,-9.743650,36.228848,1.921962,-11.469350,40.352936,1.786679,-9.765343,36.221195,1.953950, + -7.737396,41.937439,2.907507,-6.033390,37.805702,3.074779,-7.794767,41.910767,2.833099,-6.090761,37.779026,3.000370, + -7.209629,37.160793,3.697671,-10.702724,40.422485,-0.184764,-5.775595,38.051254,0.972868,-9.103907,36.639084,-0.003019, + -7.320760,41.807457,0.807276,-10.194256,40.421326,-2.103685,-8.705414,36.811295,-1.957535,-7.301918,41.733307,0.838854, + -9.188600,36.691498,0.005557,-10.677441,40.301529,-0.140592,-5.813076,38.123276,0.985003,-10.684891,40.468365,-0.102886, + -10.740814,40.357311,-0.125262,-10.771465,40.431633,-0.128270,-11.292896,40.375935,1.817808,-11.348820,40.264881,1.795432, + -11.379471,40.339203,1.792424,-7.337272,41.888718,0.878662,-7.306621,41.814400,0.881671,-7.423847,41.851986,0.853277, + -7.860085,41.832767,2.832582,-7.829435,41.758450,2.835591,-7.933859,41.801468,2.810951,-10.132256,40.456047,-2.111402, + -10.101311,40.381813,-2.109519,-10.187885,40.345078,-2.134903,-10.218831,40.419315,-2.136787,-10.633471,40.369438,-0.135104, + -10.602526,40.295204,-0.133220,-10.689100,40.258472,-0.158605,-10.720045,40.332706,-0.160488,-6.718238,41.904575,-1.110386, + -6.687293,41.830338,-1.108502,-6.810763,41.865318,-1.137515,-7.285853,41.789795,0.846444,-7.254908,41.715557,0.848327, + -7.378378,41.750538,0.819315,-9.342350,38.256905,-2.011962,-9.305237,38.166916,-2.008318,-10.370129,37.925285,1.864727, + -10.333015,37.835297,1.868370,-10.215105,39.108437,-0.100950,-10.177992,39.018448,-0.097307,-10.811997,38.996693,1.821352, + -10.774884,38.906704,1.824995,-9.734486,39.282867,-2.086643,-9.697372,39.192879,-2.083000,-10.213579,39.108681,-0.110497, + -10.176466,39.018692,-0.106854,-6.771322,40.465038,0.930698,-6.808435,40.555027,0.927055,-7.266410,40.395309,2.853706, + -7.303523,40.485298,2.850063,-6.358449,39.500694,0.918030,-6.395562,39.590683,0.914386,-6.818862,39.325371,2.875577, + -6.855975,39.415359,2.871934,-6.239135,40.660168,-1.069018,-6.276248,40.750156,-1.072661,-6.760803,40.467915,0.894645, + -6.797916,40.557907,0.891002,-5.809720,39.610634,-1.014828,-5.841260,39.700142,-1.036785,-6.347929,39.503571,0.881978, + -6.385043,39.593563,0.878334,-5.818961,37.985916,1.012552,-5.849612,38.060238,1.009544,-5.763037,38.096970,1.034928, + -5.732386,38.022652,1.037937,-6.245703,37.804768,2.875258,-6.276353,37.879089,2.872249,-6.189778,37.915821,2.897634, + -6.159127,37.841499,2.900642,-7.046209,37.465214,0.652714,-6.959634,37.501945,0.678098,-7.500536,37.274105,2.550437, + -7.413961,37.310837,2.575821,-7.990647,37.064499,0.375797,-7.904073,37.101234,0.401182,-8.478173,36.859306,2.263786, + -8.391598,36.896038,2.289171,-9.166580,36.565567,0.031005,-9.197231,36.639889,0.027996,-9.110657,36.676620,0.053381, + -9.080006,36.602303,0.056389,-9.702713,36.339554,1.899875,-9.733364,36.413876,1.896866,-9.646790,36.450607,1.922250, + -9.616138,36.376286,1.925259,-5.296696,38.236412,-0.985994,-5.240471,38.347534,-0.964743,-5.210121,38.273148,-0.960609, + -5.836087,38.053200,0.973606,-5.779863,38.164322,0.994857,-5.749513,38.089931,0.998991,-6.485114,37.732185,-1.334447, + -6.398540,37.768917,-1.309063,-7.007489,37.556190,0.630142,-6.920914,37.592922,0.655527,-7.599017,37.259571,-1.661052, + -7.512443,37.296303,-1.635668,-8.088193,37.097660,0.313272,-8.001618,37.134392,0.338656,-8.710716,36.787891,-1.987010, + -8.741066,36.862282,-1.991144,-8.618191,36.827148,-1.959881,-9.183707,36.632851,-0.007942,-9.214058,36.707237,-0.012075, + -9.091182,36.672108,0.019188,-7.100469,37.391415,2.693191,-7.021872,37.424763,2.716236,-7.297484,37.205894,3.633580, + -7.218886,37.239243,3.656625,-8.183880,36.931477,2.369085,-8.105283,36.964825,2.392130,-8.354970,36.826149,2.910716, + -8.276373,36.859497,2.933761,-8.424843,36.908482,2.263646,-8.566060,36.848564,2.222239,-8.987738,36.651428,0.068734, + -9.128955,36.591511,0.027328,-8.547046,36.873074,-1.135301,-8.535733,36.959343,-1.046164,-8.508281,36.892780,-1.043469, + -8.751308,36.819572,-0.456519,-8.700540,36.916069,-0.516745,-8.673087,36.849503,-0.514051,-8.090917,37.069862,-0.921094, + -8.118369,37.136425,-0.923789,-8.012695,37.099792,-0.978626,-8.220267,37.042152,-0.368375,-8.247720,37.108719,-0.371070, + -8.208955,37.128422,-0.279237,-8.181502,37.061859,-0.276543,-6.456448,37.790520,0.148790,-6.483901,37.857082,0.146096, + -6.534669,37.760590,0.206322,-6.278195,37.838978,-0.389590,-6.305648,37.905540,-0.392285,-6.316960,37.819271,-0.481423, + -8.504269,36.935551,-0.433810,-8.423512,36.970253,-0.399321,-8.263668,37.011681,-1.004428,-8.313457,36.990471,-1.021120, + -8.723445,36.854019,-0.497290,-8.201343,37.075977,-0.333394,-8.058053,37.110378,-0.943355,-8.543673,36.904251,-1.087837, + -6.229227,37.841511,2.943413,-6.370444,37.781593,2.902007,-6.857524,37.556709,0.729324,-6.998742,37.496792,0.687918, + -7.969337,37.085163,0.407832,-7.828120,37.145081,0.449238,-7.613087,37.254356,2.537654,-7.471870,37.314274,2.579061, + -5.865564,38.014053,-0.268604,-5.893016,38.080616,-0.271299,-5.787343,38.043983,-0.326135,-5.994867,37.986362,0.284129, + -6.022320,38.052929,0.281435,-5.983555,38.072632,0.373267,-5.956102,38.006069,0.375962,-6.265529,37.885944,0.235511, + -6.214712,37.907421,0.248317,-6.054867,37.948849,-0.356790,-6.104657,37.927635,-0.373483,-6.506805,37.795033,0.165551, + -5.975943,38.020187,0.319110,-5.832701,38.054569,-0.290865,-6.313587,37.850449,-0.433958,-7.561646,37.342419,2.004837, + -6.483382,37.799911,2.320992,-8.572320,36.934357,-1.137783,-8.776584,36.880859,-0.459000,-8.037970,37.161076,-0.981107, + -8.206778,37.123142,-0.279024,-6.559944,37.821873,0.203841,-6.342235,37.880554,-0.483904,-5.812617,38.105267,-0.328617, + -5.981377,38.067352,0.373481,-10.879886,38.205666,2.755833,-8.881316,39.069607,3.033148,-10.260818,37.762756,1.901410, + -8.766500,38.495857,1.873942,-8.546004,38.305431,1.995771,-9.173921,39.807148,1.964228,-10.725085,38.909599,1.872724, + -9.153511,39.417019,1.860868,-9.196291,38.912872,2.736310,-10.612420,38.324924,2.721815,-10.515297,38.942173,1.906314, + -10.117539,37.863106,1.955825,-10.640368,38.941906,1.852408,-10.576292,38.677700,2.038080,-10.328318,38.052109,2.064488, + -10.181147,37.828491,1.910253,-10.592779,38.346096,2.551452,-10.637390,38.306507,2.761007,-10.593966,38.662457,2.154025, + -10.607679,38.656998,2.208698,-10.392590,38.132427,2.258487,-10.377455,38.134441,2.203954,-10.584197,38.371662,2.615813, + -10.562054,38.319527,2.615742,-10.394493,38.376270,1.986428,-10.415480,38.428707,1.982122,-7.948229,38.970146,3.652166, + -10.384159,37.818695,1.805852,-10.405852,37.811043,1.837839,-6.673900,39.395546,2.958668,-6.731270,39.368874,2.884259, + -7.941987,38.969711,3.577806,-9.983332,38.607632,2.848305,-9.426901,38.097862,1.964184,-9.926205,39.284782,1.944954, + -10.067924,39.048458,-0.197698,-10.194757,39.001293,-0.070687,-10.154500,39.011726,-0.223083,-10.338585,37.928326,1.887864, + -10.300852,37.940247,1.797965,-10.259315,37.957874,1.810144,-6.885638,39.391804,2.834680,-6.828651,39.420918,2.973222, + -6.800861,39.427776,2.859537,-5.756664,38.045341,0.971587,-5.817202,38.192131,0.965644,-6.748639,39.180431,2.845820, + -6.809177,39.327217,2.839877,-6.768320,40.498333,0.872280,-6.828858,40.645119,0.866337,-7.760296,41.633419,2.746512, + -7.820833,41.780205,2.740570,-6.375496,39.545841,0.910841,-6.436034,39.692631,0.904898,-7.214109,40.309067,2.800128, + -7.274647,40.455853,2.794186,-5.276548,38.282001,-0.905736,-5.337086,38.428787,-0.911679,-6.296873,39.423592,0.896771, + -6.357410,39.570381,0.890828,-6.288205,40.734989,-1.005044,-6.348742,40.881775,-1.010986,-7.210431,41.583019,0.809404, + -7.270968,41.729809,0.803462,-5.853033,39.701488,-0.959661,-5.913571,39.848278,-0.965604,-6.700246,40.370075,0.860530, + -6.760784,40.516861,0.854587,-10.763170,40.426857,-0.101395,-10.702633,40.280071,-0.095452,-10.787274,39.023796,1.784399, + -10.726736,38.877007,1.790342,-9.789444,38.077728,-0.014910,-9.728906,37.930939,-0.008967,-9.761357,36.509491,1.916506, + -9.700820,36.362705,1.922449,-10.216905,40.386311,-2.067452,-10.156366,40.239521,-2.061510,-10.210360,39.217712,-0.221723, + -10.149822,39.070927,-0.215780,-9.285313,38.183037,-1.990190,-9.224775,38.036251,-1.984247,-9.243982,36.799969,-0.008848, + -9.183445,36.653179,-0.002906,-21.140284,29.958498,-5.792806,-20.713158,33.918892,-5.408845,-21.046440,29.948437,-5.768705, + -20.807001,33.928955,-5.432947,-20.738640,33.912289,-5.312374,-21.071922,29.941833,-5.672233,-24.884960,30.359993,-6.754516, + -24.910444,30.353388,-6.658044,-24.763773,30.347000,-6.723393,-21.057539,29.974375,-5.805573,-24.822880,30.378080,-6.772590, + -24.814766,30.474756,-6.763828,-21.049423,30.071051,-5.796811,-21.083023,29.967770,-5.709100,-24.848366,30.371477,-6.676118, + -24.840250,30.468153,-6.667356,-21.074907,30.064445,-5.700338,-20.727404,33.907333,-5.449111,-20.735519,33.810658,-5.457874, + -20.752888,33.900730,-5.352639,-24.012899,31.652550,-8.503784,-20.489809,33.402000,-7.453353,-20.644190,31.291367,-7.638629, + -24.564083,31.520691,-6.538463,-20.956547,33.283745,-5.464794,-21.135395,31.153076,-5.657905,-24.825031,30.395418,-6.684433, + -22.111662,29.511557,-1.867764,-25.839155,29.957088,-2.818077,-21.795660,33.775707,-1.486326,-21.691450,29.693613,-3.906365, + -21.249632,33.924637,-3.466625,-21.597605,29.683552,-3.882264,-21.343475,33.934700,-3.490727,-21.287663,33.914780,-3.322657, + -21.639158,29.672783,-3.724962,-25.345577,30.066458,-4.815934,-25.381128,30.076618,-4.673265,-25.251734,30.056396,-4.791833, + -21.627163,29.715998,-3.844540,-25.320530,30.111988,-4.793074,-25.313101,30.274254,-4.754255,-21.619736,29.878263,-3.805722, + -21.657412,29.678320,-3.742495,-25.350777,30.074310,-4.691028,-21.278370,33.733894,-3.451588,-21.265528,33.910271,-3.427963, + -21.300081,33.742794,-3.363339,-21.288609,33.889442,-3.346784,-21.841051,31.713226,-1.630991,-25.796608,32.137325,-2.646860, + -25.805614,32.030029,-2.656585,-21.850058,31.605930,-1.640716,-21.815153,31.719936,-1.729031,-25.783604,32.140697,-2.696091, + -21.755779,32.780941,-1.517269,-25.711338,33.205044,-2.533138,-21.762051,32.674973,-1.537096,-21.734470,32.793236,-1.601523, + -25.694637,33.216759,-2.593271,-25.717607,33.099072,-2.552966,-21.949793,30.532499,-1.700499,-25.905350,30.956600,-2.716368, + -25.873329,31.065788,-2.795467,-21.917772,30.641689,-1.779598,-25.895306,31.064068,-2.710610,-21.939749,30.639971,-1.694740, + -25.972738,29.887482,-2.900309,-22.017181,29.463381,-1.884440,-22.042665,29.456776,-1.787967,-25.998222,29.880877,-2.803836, + -25.989216,29.988173,-2.794111,-22.033659,29.564072,-1.778242,-21.706745,33.841614,-1.475340,-22.125151,29.499620,-1.874793, + -22.170176,29.504448,-1.886356,-21.805315,33.851177,-1.492396,-21.717422,33.833691,-1.378021,-22.135834,29.491697,-1.777474, + -22.195660,29.497845,-1.789883,-25.836922,29.897583,-2.828053,-25.928818,29.907436,-2.851654,-25.862406,29.890980,-2.731580, + -25.960941,29.899937,-2.739158,-25.183813,29.759926,-1.569572,-22.327909,29.517403,-1.866671,-25.807451,29.891129,-2.761357, + -22.056644,29.465036,-1.798407,-25.989347,29.887150,-2.807620,-25.981064,29.985849,-2.798675,-22.048588,29.561003,-1.789709, + -25.274143,29.612476,-1.543466,-25.197441,29.665730,-1.674121,-25.262774,29.747946,-1.531188,-25.243872,29.595554,-1.608170, + -25.276033,29.592159,-1.540920,-24.883686,34.308716,-1.099574,-22.024263,29.439873,-1.816364,-21.651678,33.878590,-1.414065, + -22.020342,29.436007,-1.777350,-21.647757,33.874725,-1.375051,-26.079247,29.868797,-2.793407,-25.706661,34.307518,-2.391108, + -25.987637,29.864149,-2.826953,-24.847780,34.298523,-1.187081,-21.658596,29.747786,-3.839163,-21.360756,33.831017,-3.462532, + -25.303593,30.184473,-4.768291,-21.096767,29.995684,-5.726937,-20.771225,33.873932,-5.375435,-25.302101,30.258430,-4.731156, + -21.322855,33.744015,-3.431116,-21.648396,29.865767,-3.782617,-21.731998,29.716413,-3.786675,-21.631453,29.786194,-3.755337, + -21.638155,29.706352,-3.762573,-22.179474,29.501818,-1.831938,-22.078928,29.571598,-1.800601,-22.085630,29.491755,-1.807837, + -23.026760,29.855234,-4.119196,-22.932915,29.845173,-4.095095,-23.511381,29.674545,-2.232136,-23.417538,29.664484,-2.208035, + -24.050499,29.964996,-4.382113,-23.956656,29.954935,-4.358012,-24.571108,29.788166,-2.504296,-24.477264,29.778105,-2.480195, + -25.360708,30.105474,-4.718602,-25.354006,30.185316,-4.711366,-25.266865,30.095413,-4.694501,-25.904743,29.900490,-2.780490, + -25.898041,29.980331,-2.773254,-25.824776,29.891916,-2.759953,-21.154749,29.995531,-5.768736,-21.147751,30.075441,-5.762626, + -21.053905,30.065380,-5.738525,-21.060905,29.985470,-5.744635,-21.713259,29.827847,-3.813124,-21.706261,29.907757,-3.807013, + -21.612415,29.897696,-3.782912,-21.619415,29.817785,-3.789023,-22.379883,30.126886,-6.083376,-22.286037,30.116825,-6.059275, + -22.920847,29.957321,-4.123257,-22.827003,29.947260,-4.099156,-23.587317,30.256344,-6.393470,-23.493471,30.246283,-6.369369, + -24.092295,30.082920,-4.424109,-23.998451,30.072859,-4.400008,-24.855434,30.392309,-6.719149,-24.848436,30.472219,-6.713038, + -24.755140,30.381556,-6.693391,-25.341969,30.216908,-4.745051,-25.334969,30.296818,-4.738941,-25.241673,30.206154,-4.719294, + -20.872665,32.301090,-5.495049,-20.864552,32.397766,-5.486287,-21.865879,32.091728,-1.600860,-21.857763,32.188404,-1.592098, + -21.513962,31.133030,-3.661157,-21.505846,31.229706,-3.652395,-21.962494,30.940716,-1.705181,-21.954380,31.037392,-1.696418, + -20.972355,31.213974,-5.637140,-20.964239,31.310646,-5.628377,-21.510509,31.133560,-3.670176,-21.502394,31.230236,-3.661413, + -21.298824,33.864742,-3.388251,-21.305527,33.784901,-3.395488,-21.399370,33.794960,-3.419588,-21.392670,33.874802,-3.412352, + -21.718739,33.801804,-1.477516,-21.725441,33.721962,-1.484753,-21.819286,33.732025,-1.508854,-21.812584,33.811867,-1.501618, + -20.742735,33.891785,-5.393159,-20.749138,33.812031,-5.401520,-20.843029,33.902538,-5.418917,-21.295073,33.797623,-3.430883, + -21.301477,33.717865,-3.439244,-21.395367,33.808372,-3.456640,-20.612116,30.092726,-7.688179,-20.511272,30.162575,-7.657968, + -20.518272,30.082664,-7.664078,-21.154680,29.998348,-5.767826,-21.053839,30.068197,-5.737614,-21.060837,29.988285,-5.743725, + -21.849695,30.225416,-8.006016,-21.748854,30.295265,-7.975804,-21.755852,30.215355,-7.981915,-22.379814,30.129704,-6.082466, + -22.278971,30.199553,-6.052254,-22.285969,30.119640,-6.058364,-23.081120,30.357447,-8.322271,-23.074121,30.437357,-8.316161, + -22.987276,30.347385,-8.298170,-23.587248,30.259161,-6.392560,-23.580250,30.339071,-6.386449,-23.493404,30.249100,-6.368458, + -24.314539,30.489691,-8.639039,-24.307541,30.569601,-8.632929,-24.196705,30.477057,-8.608776,-24.820667,30.391405,-6.709327, + -24.813669,30.471315,-6.703217,-24.726824,30.381344,-6.685226,-24.890621,29.822479,-2.552018,-24.805424,29.813345,-2.530137, + -25.233574,29.705378,-1.645496,-25.148376,29.696243,-1.623616,-23.805407,29.678484,-2.283546,-23.720211,29.669350,-2.261665, + -23.902395,29.638723,-1.717851,-23.817200,29.629589,-1.695971,-21.730930,31.383202,-7.950461,-21.092587,31.314529,-7.783950, + -21.510569,31.197411,-6.104645,-22.210161,31.272186,-6.281744,-22.040051,31.268154,-6.394801,-21.603378,31.221478,-6.284225, + -21.494431,31.254108,-6.745159,-21.906334,31.298412,-6.852515,-21.904812,31.316566,-6.850869,-21.492907,31.272263,-6.743514, + -21.601854,31.239632,-6.282580,-22.038527,31.286308,-6.393156,-21.719957,31.288750,-6.803943,-21.679089,31.284225,-6.791876, + -21.812029,31.254166,-6.337105,-21.853676,31.258492,-6.346230,-21.509781,31.247814,-6.525867,-21.522259,31.245155,-6.484953, + -22.008720,31.297310,-6.609887,-21.999369,31.300304,-6.651604,-23.434141,30.141935,-5.567709,-23.429939,30.191992,-5.563173, + -23.349537,30.178448,-5.488183,-23.355539,30.106937,-5.494664,-23.640491,30.103027,-4.913833,-23.636290,30.153086,-4.909296, + -23.529001,30.146507,-4.936084,-23.535004,30.074999,-4.942565,-22.932146,30.060379,-5.373100,-22.926144,30.131889,-5.366619, + -22.818855,30.125313,-5.393407,-22.823057,30.075256,-5.397944,-23.064653,30.024569,-4.821769,-23.058651,30.096079,-4.815288, + -22.978251,30.082533,-4.740298,-22.982452,30.032476,-4.744834,-23.483912,30.113649,-5.253175,-23.496639,30.109730,-5.198137, + -22.968756,30.053131,-5.062564,-22.952635,30.056688,-5.116732,-23.333393,30.062891,-4.860383,-23.278353,30.057178,-4.848322, + -23.118507,30.098604,-5.453429,-23.172522,30.104584,-5.469376,-23.577696,30.099655,-4.922400,-23.032288,30.041368,-4.784404, + -22.884443,30.084080,-5.392592,-23.381866,30.138762,-5.535244,-24.637770,30.263409,-5.864439,-24.633034,30.319822,-5.859325, + -24.552633,30.306276,-5.784336,-24.558636,30.234766,-5.790817,-24.827152,30.223846,-5.219031,-24.822416,30.280258,-5.213918, + -24.715130,30.273682,-5.240706,-24.721132,30.202171,-5.247187,-24.111357,30.186811,-5.675946,-24.105354,30.258322,-5.669465, + -23.998068,30.251743,-5.696253,-24.002802,30.195332,-5.701366,-24.220793,30.148527,-5.118690,-24.214790,30.220037,-5.112209, + -24.134390,30.206491,-5.037219,-24.139124,30.150078,-5.042331,-24.652046,30.238894,-5.553176,-24.664774,30.234974,-5.498138, + -24.136890,30.178377,-5.362566,-24.120770,30.181932,-5.416733,-24.501528,30.188135,-5.160384,-24.446487,30.182423,-5.148324, + -24.286642,30.223848,-5.753430,-24.340656,30.229828,-5.769377,-24.763823,30.226830,-5.227023,-24.188427,30.165325,-5.081324, + -24.063654,30.210512,-5.695438,-24.584963,30.266592,-5.831397,-23.574709,29.733915,-2.922819,-23.573366,29.752571,-2.920263, + -23.835064,29.784595,-2.999402,-23.678371,29.796875,-3.586899,-23.448137,29.778084,-3.526782,-23.446795,29.796738,-3.524225, + -23.838591,29.739271,-3.004585,-23.676586,29.821674,-3.583500,-23.952868,29.847164,-3.697812,-23.946795,29.918690,-3.691597, + -24.151312,29.807888,-3.017000,-24.145239,29.879416,-3.010784,-23.374746,29.859644,-3.570983,-23.380817,29.788118,-3.577200, + -23.528107,29.813250,-2.852291,-23.534180,29.741722,-2.858507,-23.670872,29.810434,-3.579815,-23.929029,29.830572,-3.622185, + -23.927574,29.849272,-3.620053,-23.668972,29.835300,-3.577046,-23.837276,29.757097,-2.994629,-24.078663,29.790165,-3.065752, + -23.835377,29.781965,-2.991859,-24.077208,29.808865,-3.063619,-21.833107,31.418663,-7.992017,-21.711586,31.365608,-7.963495, + -22.341978,31.302895,-6.209897,-22.189331,31.257904,-6.299204,-21.121752,31.302368,-7.812014,-20.993546,31.328651,-7.776401, + -21.539520,31.188232,-6.132319,-21.442440,31.206451,-5.978877,-22.037434,31.598965,-0.673343,-24.058159,31.817184,-1.501975, + -21.898201,32.286922,-1.577100,-23.330030,32.373894,-2.421776,-23.620380,31.030148,-2.482330,-22.016998,31.059116,-1.677096, + -23.605984,31.800690,-1.586561,-22.274281,31.624966,-0.846966,-22.206718,31.132790,-1.746227,-22.076384,32.269024,-1.615698, + -22.084991,31.072128,-1.739074,-22.113472,31.334171,-1.541824,-22.049973,32.001358,-1.475644,-21.990913,32.268284,-1.619572, + -22.214041,31.615974,-1.008670,-22.266869,31.628910,-0.797690,-22.150846,31.338917,-1.429715,-22.165115,31.337032,-1.374944, + -22.130959,31.899975,-1.298498,-22.116381,31.905563,-1.352934,-22.263165,31.597839,-0.962543,-22.257872,31.654163,-0.959641, + -22.098421,31.685955,-1.592806,-22.102558,31.629932,-1.600086,-25.030422,32.358452,-1.342412,-21.781017,32.177990,-1.620409, + -21.777096,32.174126,-1.581395,-25.836000,32.606918,-2.597453,-25.744389,32.602268,-2.630998,-24.998260,32.361847,-1.409662, + -22.934256,31.684265,-1.076291,-22.818300,31.120266,-2.049071,-21.552582,31.257034,-3.794391,-21.498993,31.236542,-3.617894, + -21.458736,31.246975,-3.770290,-24.374847,29.708904,-2.409883,-24.349363,29.715509,-2.506356,-21.853212,32.100075,-1.590020, + -21.842537,32.107998,-1.687339,-21.936892,32.117184,-1.703963,-25.612370,32.507080,-2.613012,-25.704266,32.516933,-2.636612, + -21.655704,29.714569,-3.741635,-21.642467,29.872263,-3.727343,-21.974501,30.929066,-1.754489,-21.961264,31.086758,-1.740196, + -21.443335,32.240616,-3.522515,-21.430098,32.398312,-3.508222,-21.754364,33.624817,-1.478555,-21.741127,33.782509,-1.464262, + -21.082630,30.015261,-5.677249,-21.069393,30.172955,-5.662957,-21.504198,31.039848,-3.794465,-21.490961,31.197540,-3.780173, + -20.895462,32.393383,-5.482990,-20.882225,32.551079,-5.468698,-21.319605,33.622295,-3.445791,-21.306368,33.779991,-3.431499, + -21.334400,31.492229,-4.148220,-21.316105,31.490311,-4.143985,-21.291267,31.740696,-4.110661,-21.172812,31.794918,-4.707887, + -21.189434,31.532928,-4.705866,-21.171139,31.531010,-4.701632,-21.148500,31.792419,-4.702202,-21.299465,32.064152,-4.033575, + -21.109324,32.077526,-4.744812,-21.178669,32.084984,-4.762905,-21.422173,31.435856,-4.109288,-21.352827,31.428398,-4.091195, + -21.234169,31.500690,-4.791110,-21.164825,31.493229,-4.773016,-21.158375,31.786152,-4.708184,-21.271351,31.737423,-4.114013, + -21.138302,32.022926,-4.686392,-21.119909,32.021038,-4.682588,-21.133923,31.783642,-4.703126,-21.315699,31.742073,-4.124260, + -21.274637,32.012043,-4.083656,-22.368311,29.956490,-4.613110,-22.126482,29.929590,-4.541350,-22.369768,29.937790,-4.615243, + -22.128380,29.904722,-4.544119,-21.960075,29.982925,-5.126536,-22.218678,29.996897,-5.169544,-22.220135,29.978197,-5.171676, + -21.961975,29.958059,-5.129305,-21.825283,29.889347,-4.407998,-21.819212,29.960875,-4.401783,-21.671921,29.935741,-5.126690, + -21.665850,30.007271,-5.120474,-22.436342,30.027040,-4.560275,-22.442415,29.955513,-4.566491,-22.237900,30.066317,-5.241088, + -22.243971,29.994789,-5.247303,-21.967691,29.969299,-5.132990,-22.129696,29.886896,-4.554076,-21.737900,29.944363,-5.073716, + -21.739243,29.925709,-5.076273,-21.969475,29.944500,-5.136389,-22.126167,29.932220,-4.548892,-21.864470,29.900196,-4.469754, + -21.865812,29.881540,-4.472311,-20.259678,33.878399,-7.339917,-20.749998,33.874710,-5.398345,-20.756403,33.794952,-5.406706, + -20.843842,33.884769,-5.422447,-20.253273,33.958157,-7.331556,-20.347118,33.968220,-7.355658,-18.947220,38.938171,-3.148362, + -22.811935,39.210186,-4.150646,-18.944735,39.035278,-3.141058,-22.814419,39.113079,-4.157950,-22.837418,39.203579,-4.054173, + -18.970219,39.028671,-3.044585,-19.046379,35.063396,-3.439825,-22.913580,35.238304,-4.449413,-22.910370,35.363701,-4.439981, + -19.071863,35.056789,-3.343353,-22.939064,35.231697,-4.352941,-19.043171,35.188793,-3.430393,-18.957312,39.016068,-3.181406, + -19.057016,35.119907,-3.474477,-19.151176,35.124168,-3.499059,-19.051474,39.020329,-3.205989,-18.982796,39.009464,-3.084934, + -19.082500,35.113304,-3.378004,-19.176662,35.117561,-3.402587,-19.076958,39.013721,-3.109516,-22.887695,35.293163,-4.474531, + -22.793533,35.288906,-4.449949,-22.913179,35.286560,-4.378058,-19.689087,35.520508,-5.646429,-21.764345,35.614372,-6.188205, + -19.599884,39.006256,-5.384229,-20.211077,35.354404,-3.675741,-22.286333,35.448265,-4.217517,-20.120285,38.902214,-3.408873, + -19.102205,35.133312,-3.397957,-19.815014,38.743511,0.821315,-19.959362,34.885288,0.522891,-24.064718,35.070801,-0.546690, + -19.406013,34.990051,-1.459492,-23.547621,35.160358,-2.538696,-19.462517,34.981277,-1.323654,-23.582981,35.151196,-2.404840, + -23.544708,35.274216,-2.530131,-19.403528,35.087154,-1.452188,-19.358486,38.838062,-1.170374,-19.456285,35.016376,-1.457844, + -19.622259,35.021957,-1.475557,-19.524460,38.843639,-1.188088,-19.356464,38.829540,-1.057808,-19.454262,35.007858,-1.345276, + -21.970810,38.931614,0.279276,-22.075550,34.838631,-0.028599,-21.971045,34.833904,-0.001317,-21.866304,38.926888,0.306559, + -21.944912,38.938328,0.181236,-22.062546,34.841999,-0.077830,-23.016333,38.977547,0.024335,-23.121073,34.884560,-0.283540, + -22.909756,38.973541,0.041298,-23.000252,38.982025,-0.061834,-23.112362,34.889057,-0.346278,-23.014496,34.880558,-0.266577, + -24.152658,34.936531,-0.623484,-24.073637,34.925198,-0.499729,-24.178143,34.929924,-0.527012,-20.833120,38.877163,0.616132, + -20.937860,34.784176,0.308256,-21.014950,34.794777,0.193585,-20.910210,38.887760,0.501461,-21.041227,34.789169,0.277040, + -20.936489,38.882156,0.584915,-19.867928,34.742741,0.495107,-19.763187,38.835728,0.802983,-19.788671,38.829121,0.899455, + -19.893412,34.736137,0.591580,-19.997917,34.740864,0.564297,-19.893177,38.833847,0.872173,-24.133532,35.080376,-0.572897, + -19.899845,34.888897,0.532368,-19.902277,34.793812,0.525216,-24.135965,34.985287,-0.580050,-19.925329,34.882294,0.628841, + -19.932207,34.783737,0.638115,-24.165894,34.975212,-0.467150,-20.174747,35.772247,1.615604,-22.879595,35.304161,-4.384099, + -19.822842,38.531292,0.862535,-19.915255,34.930622,0.590506,-19.793196,38.813004,0.889843,-19.898024,34.743790,0.584327, + -19.994158,34.748135,0.559230,-19.886665,38.817230,0.865442,-20.044718,35.696667,1.704841,-20.051704,35.744545,1.551709, + -20.176664,35.702633,1.670394,-20.007326,35.715202,1.644444,-20.026363,35.696411,1.714108,-24.624821,35.903282,0.528344, + -19.763256,38.842796,0.875005,-24.086542,39.038330,-0.253652,-19.772306,38.854149,0.911633,-19.886127,34.659283,0.620901, + -24.209414,34.854813,-0.507755,-19.869959,34.743126,0.573485,-24.193243,34.938660,-0.555171,-24.586294,35.922714,0.443556, + -19.390570,38.806480,-1.169506,-23.465687,35.210403,-2.473769,-19.532734,35.033615,-1.461511,-19.003479,38.991108,-3.107772, + -22.780869,39.161953,-4.093913,-19.614746,35.037937,-1.451203,-19.520451,38.820538,-1.157079,-23.392136,35.208782,-2.437344, + -19.378716,38.746025,-1.096488,-19.453997,38.846645,-1.109485,-19.376230,38.843128,-1.089184,-19.818115,38.684231,0.870842, + -19.893396,38.784851,0.857845,-19.815630,38.781334,0.878146,-19.413002,37.406281,-1.197264,-19.410517,37.503384,-1.189960, + -19.862688,37.293533,0.703676,-19.860203,37.390640,0.710980,-19.440109,36.346973,-1.276946,-19.437626,36.444077,-1.269642, + -19.890749,36.196991,0.621193,-19.888264,36.294094,0.628497,-19.474804,34.991245,-1.378925,-19.552570,34.994762,-1.399227, + -19.472321,35.088348,-1.371620,-19.918730,34.831104,0.588702,-19.996496,34.834621,0.568400,-19.916613,34.913849,0.594926, + -18.990210,38.926437,-3.135166,-19.067669,38.930031,-3.156591,-19.065184,39.027134,-3.149287,-18.987724,39.023540,-3.127862, + -19.475233,38.753311,-1.160514,-19.552694,38.756905,-1.181938,-19.550209,38.854008,-1.174634,-19.472748,38.850414,-1.153209, + -19.022650,37.658737,-3.230523,-19.020166,37.755844,-3.223219,-19.507210,37.503765,-1.254505,-19.504726,37.600872,-1.247201, + -19.054625,36.409355,-3.324502,-19.052139,36.506458,-3.317198,-19.538231,36.291618,-1.345683,-19.535746,36.388725,-1.338379, + -19.088203,35.097179,-3.423205,-19.165665,35.100773,-3.444630,-19.085548,35.200958,-3.415399,-19.571323,34.998531,-1.442950, + -19.648783,35.002125,-1.464375,-19.568666,35.102310,-1.435144,-20.955959,35.078495,-1.764214,-20.861797,35.074238,-1.739632, + -21.412403,34.910347,0.162265,-21.318243,34.906086,0.186847,-21.955025,35.127853,-2.080463,-21.860865,35.123596,-2.055881, + -22.527802,34.962524,-0.151913,-22.433640,34.958263,-0.127330,-20.376579,35.188053,-3.757322,-20.282417,35.183792,-3.732740, + -20.946390,35.079948,-1.800616,-20.852228,35.075687,-1.776033,-21.477026,35.236881,-4.032067,-21.379827,35.233963,-4.026344, + -21.945457,35.129303,-2.116864,-21.851295,35.125046,-2.092282,-23.521820,35.261513,-2.429485,-23.444054,35.257996,-2.409183, + -23.446539,35.160892,-2.416487,-23.524305,35.164410,-2.436789,-24.083443,35.100407,-0.601038,-24.005678,35.096889,-0.580735, + -24.008163,34.999786,-0.588040,-24.085928,35.003304,-0.608342,-22.889702,35.356346,-4.409669,-22.814133,35.255798,-4.397799, + -22.892187,35.259239,-4.416973,-23.444427,35.260933,-2.448108,-23.368858,35.160389,-2.436238,-23.446913,35.163830,-2.455413, + -18.450514,39.094643,-5.050523,-18.525488,39.195339,-5.064644,-18.448029,39.191746,-5.043219,-18.993168,38.926517,-3.135242, + -19.068144,39.027218,-3.149363,-18.990683,39.023621,-3.127938,-18.483284,37.814064,-5.146849,-18.558260,37.914761,-5.160970, + -18.480799,37.911167,-5.139545,-19.025610,37.658821,-3.230599,-19.100584,37.759518,-3.244720,-19.023125,37.755924,-3.223295, + -18.515892,36.539856,-5.242696,-18.593353,36.543449,-5.264121,-18.513409,36.636959,-5.235392,-19.057583,36.409435,-3.324579, + -19.135042,36.413029,-3.346004,-19.055098,36.506542,-3.317274,-18.548553,35.263584,-5.338697,-18.626015,35.267178,-5.360123, + -18.545433,35.385513,-5.329526,-19.090244,35.133163,-3.420581,-19.167704,35.136757,-3.442005,-19.087759,35.230270,-3.413276, + -19.910473,35.872787,0.628119,-19.908218,35.960945,0.634751,-20.098848,35.712265,1.572502,-20.096592,35.800423,1.579133, + -19.852270,36.995319,0.712003,-19.850014,37.083477,0.718634,-20.000256,37.008091,1.267822,-19.998001,37.096245,1.274453, + -23.141687,38.067932,-2.738683,-23.211338,38.071083,-2.756866,-19.594645,37.877007,-5.491199,-19.578362,38.538021,-5.439058, + -20.019705,38.448307,-3.764048,-20.038849,37.724903,-3.816042,-19.996595,37.870850,-3.952607,-19.984655,38.322392,-3.920120, + -19.864025,38.341320,-4.378906,-19.874554,37.914806,-4.412467,-19.892237,37.915604,-4.417082,-19.881708,38.342121,-4.383522, + -20.002337,38.323193,-3.924736,-20.014277,37.871651,-3.957223,-19.879602,38.107220,-4.400627,-19.878899,38.149811,-4.395945, + -20.000162,38.106052,-3.939027,-20.001644,38.063263,-3.940768,-19.929811,38.367588,-4.170708,-19.940767,38.363144,-4.129514, + -19.953648,37.859779,-4.167377,-19.942776,37.860989,-4.208814,-19.243471,35.477497,-2.632147,-19.298418,35.479984,-2.646492, + -19.239725,35.570454,-2.570115,-19.418501,35.414528,-1.984550,-19.473446,35.417015,-1.998895,-19.457520,35.517601,-2.042480, + -19.387869,35.514454,-2.024297,-19.227882,36.033272,-2.535302,-19.297533,36.036423,-2.553485,-19.281605,36.137009,-2.597070, + -19.226658,36.134525,-2.582726,-19.374620,36.032173,-1.985354,-19.444271,36.035324,-2.003537,-19.400282,36.126461,-1.930999, + -19.322054,35.523010,-2.333078,-19.336432,35.521027,-2.278342,-19.322454,36.067253,-2.237256,-19.307985,36.072746,-2.291727, + -19.400969,35.746841,-1.982094,-19.399012,35.803398,-1.979793,-19.239166,35.844822,-2.584900,-19.240097,35.788532,-2.591087, + -19.418142,35.474987,-2.005242,-19.402407,36.069973,-1.962440,-19.243490,36.075111,-2.570276,-19.256794,35.535290,-2.612835, + -19.551279,36.577106,-0.623979,-19.620857,36.580273,-0.642429,-19.738220,36.511848,0.058092,-19.807800,36.515018,0.039645, + -19.599285,37.167156,-0.623008,-19.529705,37.163990,-0.604561,-19.721880,37.150421,0.106126,-23.205564,35.571861,-2.926439, + -23.819386,36.692825,-0.913414,-23.850336,35.483418,-1.004387,-19.615515,37.767063,-5.521231,-19.573586,37.894516,-5.501377, + -20.092516,37.607342,-3.733702,-20.019461,37.742859,-3.831676,-19.557968,38.504841,-5.455468,-19.593285,38.635796,-5.455885, + -20.002254,38.415245,-3.781099,-20.068697,38.538132,-3.663688,-22.703548,35.821667,0.959721,-22.413002,38.966812,0.127782, + -22.535873,34.783295,-0.126322,-22.519703,34.867138,-0.173738,-22.684513,35.840458,0.890057,-19.844894,36.411507,0.695987, + -19.949400,36.416233,0.668704,-19.819410,36.418110,0.599514,-22.434422,35.005245,-0.152126,-22.466784,34.900085,-0.046380, + -22.436853,34.910156,-0.159279,-23.476810,35.197113,-2.483494,-23.323217,35.190166,-2.443396,-22.672585,34.971943,-0.227899, + -22.518991,34.964996,-0.187801,-20.910103,35.081024,-1.813418,-20.756510,35.074078,-1.773320,-20.105879,34.855854,0.442177, + -19.952286,34.848907,0.482274,-21.906750,35.126102,-2.073607,-21.753157,35.119156,-2.033509,-21.491627,34.918530,0.080407, + -21.338034,34.911583,0.120505,-22.878399,35.294559,-4.339098,-22.724806,35.287613,-4.299001,-22.038372,35.113964,-2.135677, + -21.884779,35.107018,-2.095580,-20.311691,35.178471,-3.669023,-20.158098,35.171524,-3.628925,-19.771362,35.031334,-1.536355, + -19.617769,35.024384,-1.496258,-21.397038,35.218620,-3.951799,-21.243446,35.211674,-3.911702,-21.044363,35.079609,-1.869934, + -20.890772,35.072662,-1.829836,-19.340147,38.528881,-1.709686,-19.147972,38.542450,-2.420373,-19.217552,38.545616,-2.438821, + -19.426067,37.893475,-1.776168,-19.356487,37.890308,-1.757719,-19.239124,37.958733,-2.458241,-19.169546,37.955563,-2.439792, + -22.321455,35.491920,-6.322516,-22.244047,35.398674,-6.309660,-22.321844,35.393124,-6.329382,-22.877476,35.399899,-4.405556, + -22.804003,35.301044,-4.394124,-22.881800,35.295494,-4.413846,-6.505188,41.086826,3.155872,-6.780510,40.977787,3.062801, + -9.760389,46.501793,2.692705,-9.993597,46.288364,2.653332,-9.417442,46.440243,0.771172,-8.702153,46.809498,-0.612701, + -9.441017,46.594658,1.695144,-5.859797,41.291065,-0.380227,-8.818385,44.621590,3.082637,-7.691412,42.745632,3.251910, + -7.140293,42.864128,1.122720,-7.483973,42.804935,2.455291,-8.053679,42.831223,3.187011,-7.897706,42.615749,3.188374, + -7.484528,42.971737,1.038629,-7.329279,42.745358,1.064667,-6.689845,42.977726,-0.591052,-7.050376,43.055920,-0.681462, + -7.878922,42.866791,2.378092,-7.722949,42.651318,2.379455,-6.903490,42.843456,-0.656681,-6.682307,41.032784,2.464515, + -6.715196,41.024261,2.589013,-9.413258,46.418633,0.681615,-7.710100,43.591835,0.968414,-7.653569,43.497730,0.976905, + -7.258942,43.593094,-0.705890,-7.319330,43.693615,-0.714960,-8.042906,44.145821,0.918426,-7.986420,44.051792,0.926910, + -7.574412,44.128872,-0.775056,-7.633557,44.229626,-0.788644,-7.860196,43.090271,2.311581,-7.799362,42.989006,2.320719, + -7.832288,43.803802,0.995843,-7.888405,43.897217,0.987414,-8.667768,44.414677,2.234569,-8.606936,44.313412,2.243706, + -7.849041,43.798958,0.994266,-7.905159,43.892372,0.985837,-6.216991,41.181755,1.256502,-5.850560,41.091225,-0.498464, + -6.670019,40.899086,2.537672,-6.863290,41.176170,2.530642,-6.034744,41.365299,-0.528912,-6.431044,41.052704,2.613508, + -6.242937,41.091877,1.230873,-6.435483,41.379871,1.199169,-6.342569,41.247139,1.242093,-6.309682,41.255665,1.117595, + -6.642875,41.815331,1.128713,-6.586343,41.721230,1.137204,-6.191716,41.816589,-0.545590,-6.252104,41.917114,-0.554661, + -6.975680,42.369320,1.078725,-6.919194,42.275291,1.087210,-6.507186,42.352371,-0.614757,-6.566332,42.453121,-0.628345, + -6.792971,41.313766,2.471880,-6.732137,41.212502,2.481018,-6.765062,42.027302,1.156143,-6.821179,42.120716,1.147714, + -7.667339,42.758472,2.362576,-7.621801,42.661385,2.412963,-6.787311,42.018909,1.153037,-6.843428,42.112324,1.144608, + -8.994638,46.508041,-0.840202,-8.894123,44.658714,2.246560,-8.861236,44.667240,2.122062,-8.828735,45.453915,0.800393, + -8.772204,45.359810,0.808884,-8.377578,45.455170,-0.873911,-8.437965,45.555695,-0.882981,-9.161542,46.007900,0.750405, + -9.105055,45.913872,0.758889,-8.693048,45.990952,-0.943077,-8.752193,46.091702,-0.956665,-8.978832,44.952347,2.143560, + -8.917997,44.851082,2.152698,-8.950923,45.665882,0.827822,-9.007041,45.759296,0.819393,-9.794768,46.274311,2.095155, + -9.733934,46.173046,2.104293,-8.959475,45.670132,0.828237,-9.015593,45.763546,0.819808,-8.976807,45.787880,0.831348, + -6.844777,40.863514,3.346591,-7.038048,41.140602,3.339561,-8.030463,44.719414,-0.825954,-8.849922,44.527275,2.210182, + -9.005896,44.742748,2.208818,-6.053951,41.210648,1.288927,-5.636915,41.225494,-0.432835,-8.177349,44.931877,-0.850735, + -8.610947,44.680893,2.286017,-7.816818,44.853683,-0.760325,-8.374974,44.648003,0.896418,-8.530223,44.874382,0.870380, + -8.185987,44.766773,0.954471,-9.024679,44.491707,3.019101,-6.638483,40.993397,3.410127,-9.180653,44.707180,3.017737, + -9.831715,46.307976,2.009522,-9.864838,46.299393,2.134912,-9.446387,46.410049,0.807031,-4.561585,35.142105,2.154193, + -4.856284,35.112122,2.061416,-6.353728,41.218281,2.122775,-6.633462,41.073269,2.075796,-6.054057,41.204582,0.193086, + -5.280969,41.476849,-1.182158,-6.029973,41.296318,1.125357,-3.916418,35.419933,-1.376927,-5.911672,39.139942,2.367076, + -5.291458,37.034500,2.386773,-4.746835,37.156773,0.256125,-5.082723,37.094395,1.590536,-5.621094,37.212318,2.336807, + -5.524339,36.965084,2.320353,-5.053646,37.352654,0.187963,-4.960121,37.093376,0.195443,-4.297251,37.271065,-1.457828, + -4.627290,37.443050,-1.533762,-5.450066,37.258320,1.527617,-5.353311,37.011082,1.511163,-4.538367,37.199394,-1.526428, + -4.752623,35.181622,1.465564,-4.785511,35.173100,1.590062,-6.056224,41.188801,0.102250,-5.116565,38.012783,0.163455, + -5.085454,37.907169,0.164443,-4.694212,38.015709,-1.518343,-4.727446,38.128529,-1.519399,-5.299720,38.634541,0.157639, + -5.268634,38.529011,0.158626,-4.865338,38.616852,-1.544905,-4.897350,38.729893,-1.550484,-5.376301,37.473999,1.475112, + -5.342822,37.360348,1.476175,-5.181253,38.246204,0.207542,-5.212136,38.351044,0.206562,-5.825352,38.960499,1.503904, + -5.791873,38.846848,1.504967,-5.198700,38.245827,0.206088,-5.229583,38.350670,0.205107,-4.275342,35.291710,0.258050, + -3.958784,35.232735,-1.507930,-4.773728,35.044422,1.529660,-4.891128,35.360886,1.545368,-4.068351,35.545620,-1.516011, + -4.503140,35.127735,1.609034,-4.323287,35.213165,0.227386,-4.437457,35.541676,0.219159,-4.380553,35.387287,0.251088, + -4.347666,35.395809,0.126590,-4.529233,36.018963,0.182108,-4.498122,35.913349,0.183096,-4.106880,36.021889,-1.499691, + -4.140114,36.134708,-1.500747,-4.712388,36.640720,0.176291,-4.681301,36.535191,0.177278,-4.278006,36.623032,-1.526253, + -4.310018,36.736073,-1.531832,-4.788969,35.480179,1.493764,-4.755490,35.366528,1.494828,-4.593921,36.252384,0.226195, + -4.624804,36.357224,0.225214,-5.272682,37.101791,1.499767,-5.252596,36.993179,1.542641,-4.617591,36.250065,0.223129, + -4.648474,36.354904,0.222149,-5.641857,41.274555,-1.420940,-5.982918,39.252033,1.537318,-5.950030,39.260555,1.412820, + -5.732190,40.102650,0.143905,-5.701079,39.997036,0.144892,-5.309837,40.105572,-1.537894,-5.343071,40.218391,-1.538950, + -5.915345,40.724407,0.138088,-5.884258,40.618877,0.139075,-5.480963,40.706718,-1.564456,-5.512975,40.819759,-1.570035, + -5.991926,39.563866,1.455561,-5.958447,39.450214,1.456624,-5.796877,40.336071,0.187992,-5.827761,40.440910,0.187011, + -6.449437,41.048141,1.512950,-6.415958,40.934486,1.514013,-5.804080,40.342285,0.188897,-5.834963,40.447128,0.187916, + -5.791205,40.460125,0.199993,-4.944756,34.998425,2.338851,-5.062156,35.314888,2.354558,-5.158580,39.304836,-1.546124, + -5.973524,39.116524,1.491466,-6.070279,39.363762,1.507921,-4.110001,35.276566,0.288068,-3.717668,35.304401,-1.439330, + -5.247503,39.548492,-1.553458,-5.702937,39.199837,1.570840,-4.917464,39.376507,-1.477525,-5.494950,39.204166,0.176395, + -5.588475,39.463444,0.168915,-5.281663,39.267563,0.237077,-6.144552,39.070526,2.300657,-4.711875,35.067841,2.405271, + -6.241307,39.317760,2.317111,-6.477470,41.095768,1.430627,-6.510593,41.087185,1.556018,-6.089354,41.180218,0.227667, + -21.400465,47.115971,0.442654,-21.086716,45.068726,0.361056,-23.081951,44.782196,-0.121900,-21.230600,47.121582,-0.491995, + -21.245867,46.444439,0.427840,-21.140173,45.754776,0.400352,-23.342245,46.143387,-0.079599,-20.364473,47.358864,-3.404150, + -20.929522,45.240654,-0.613759,-22.753368,44.981052,-1.113320,-21.978514,45.109848,-3.984485,-20.067488,45.381859,-3.461045, + -22.743359,46.923119,0.117599,-21.739197,44.975021,0.203120,-22.429609,44.875874,0.036002,-22.022362,46.822708,0.276764, + -21.564375,46.888477,0.387621,-22.460194,45.075436,0.043956,-22.918043,45.009686,-0.066869,-23.137894,46.172733,-0.030135, + -23.170626,46.657806,-0.001179,-21.450218,46.415092,0.378376,-23.032200,45.483070,-0.057623,-22.712776,46.723557,0.109646, + -21.769779,45.174583,0.211074,-22.325882,45.135117,-0.381379,-21.948601,46.848377,-0.101859,-21.480371,46.915024,0.026392, + -22.793991,45.068489,-0.509596,-22.976433,46.208256,-0.435812,-23.053719,46.691078,-0.404556,-21.403086,46.432201,-0.004864, + -22.871277,45.551311,-0.478340,-22.585609,46.757706,-0.276339,-21.688873,45.225788,-0.206898,-22.937624,44.869240,-0.556820, + -21.026598,45.141251,-0.033380,-21.342068,47.112087,0.094204,-23.147938,46.183132,-0.471764,-21.131754,45.798195,0.009148, + -21.236912,46.455139,0.051676,-22.616146,46.930737,-0.254772,-22.300674,44.959900,-0.382356,-21.663666,45.050571,-0.207876, + -22.366196,45.150387,-2.353976,-20.675741,45.391003,-1.890952,-20.937206,47.131542,-1.840862,-22.053989,45.067616,-4.102833, + -22.832703,44.903656,-1.051814,-22.868979,45.101593,-1.022233,-22.085423,45.276863,-4.096811,-22.636715,44.931553,-0.998132, + -21.848633,45.096844,-4.046585,-22.431118,45.072613,-2.369171,-22.458790,45.256832,-2.363869,-22.249462,45.098469,-2.319415, + -20.317886,47.423954,-3.483490,-21.164375,47.161312,-0.461161,-21.140694,46.960110,-0.443067,-20.286453,47.214706,-3.489511, + -21.360363,47.133415,-0.514843,-20.523243,47.394726,-3.539738,-20.868484,47.190357,-1.811985,-20.840811,47.006138,-1.817287, + -21.050138,47.164501,-1.861741,-20.004690,45.361740,-3.542165,-20.875826,45.174885,-0.558733,-21.068733,45.147427,-0.611571, + -20.206955,45.332951,-3.597566,-20.906284,45.377640,-0.552898,-20.036604,45.574188,-3.536051,-20.622763,45.323074,-1.875140, + -20.801682,45.297607,-1.924146,-20.650858,45.510109,-1.869757,-22.834379,44.888798,-1.149653,-22.867266,44.880272,-1.025155, + -20.825956,45.168514,-0.637662,-20.858507,45.156174,-0.512407,-21.149296,47.192516,-0.463813,-21.181608,47.180267,-0.339476, + -21.026714,46.172279,-0.525995,-21.059145,46.159985,-0.401199,-21.840689,45.048290,-0.748945,-21.807678,45.056843,-0.873903, + -22.431381,45.093903,-2.340316,-22.398495,45.102428,-2.464814,-20.620056,45.346500,-1.944722,-20.896904,47.174076,-1.843334, + -20.929289,47.162296,-1.718983,-20.652678,45.334637,-1.819453,-22.488262,45.742695,-2.383875,-22.471914,45.633854,-2.387007, + -22.093290,45.748005,-4.072743,-22.110756,45.864273,-4.069397,-22.820669,45.195103,-1.092018,-22.803076,45.077980,-1.095388, + -22.516239,45.981525,-2.329719,-22.532469,46.089569,-2.326610,-23.051821,46.727436,-0.970904,-23.034227,46.610313,-0.974274, + -22.527376,45.984360,-2.328481,-22.543606,46.092403,-2.325372,-21.077959,45.205864,-0.672981,-20.964745,45.221981,-0.641971, + -21.439249,45.276653,-2.135533,-21.544182,45.261719,-2.164275,-22.713894,44.957054,-1.048123,-22.600679,44.973171,-1.017113, + -21.440073,45.247131,-2.134426,-21.545008,45.232197,-2.163168,-22.785400,44.830246,-0.204201,-22.595530,44.857437,-0.155416, + -22.753105,44.856049,-0.347649,-22.551563,44.884598,-0.287592,-22.369789,44.952202,-0.467574,-22.561726,44.920227,-0.503740, + -22.391417,44.923328,-0.322713,-22.596043,44.891411,-0.369080,-21.773174,45.062916,-0.526657,-21.929625,45.040951,-0.570559, + -21.801805,45.037106,-0.409135,-21.968006,45.015610,-0.462347,-23.227791,44.827030,0.810773,-23.050535,44.852257,0.859324, + -22.798206,45.095600,-0.543822,-22.641422,45.117916,-0.500879,-23.290245,46.637085,0.940672,-23.431471,46.430351,0.866048, + -22.917152,46.735447,-0.401101,-23.047327,46.552040,-0.448044,-21.718925,46.868893,1.344970,-21.697508,46.686924,1.361334, + -21.896181,46.843662,1.296419,-21.464888,46.919422,-0.004724,-21.441002,46.760422,-0.009299,-21.621672,46.897106,-0.047667, + -21.457956,45.072330,1.256724,-21.632425,45.047501,1.208936,-21.485502,45.255707,1.262002,-21.217060,45.317051,-0.194551, + -21.371483,45.295071,-0.236848,-21.241310,45.478481,-0.189905,-23.423082,44.537819,0.590838,-21.122072,44.857655,1.198753, + -21.476463,47.186218,1.334394,-22.817047,45.732128,2.332575,-22.086523,46.498486,1.693824,-23.043600,45.228962,1.451187, + -21.816317,45.239559,1.571584,-22.061766,44.608212,0.679242,-23.660187,45.720406,0.491892,-23.523672,45.590607,0.360318, + -22.085495,44.541222,0.827137,-22.555044,45.883045,1.446878,-21.130457,46.094887,1.175409,-21.146187,46.089848,1.012159, + -22.484518,45.721622,1.253950,-21.113930,45.937897,1.032497,-22.212708,44.571442,0.659071,-22.429569,45.793217,1.465427, + -22.559391,45.780895,1.277049,-22.486673,47.169266,0.923016,-22.582165,47.082096,0.733074,-22.389690,45.800613,1.284407, + -22.442146,47.116035,0.794603,-21.058367,45.003716,0.959513,-23.299986,44.548386,0.571548,-23.233297,44.609367,0.434590, + -21.047789,44.963848,1.118328,-23.368137,44.688725,0.426623,-22.484827,45.719154,1.582683,-21.372458,47.151184,1.245880, + -21.497049,47.190819,1.056932,-22.446218,45.733330,1.401793,-21.373137,47.108627,1.106258,-21.140675,44.870701,0.950883, + -22.565948,45.768459,1.602097,-22.457432,45.815113,1.405783,-23.768942,46.824547,0.594183,-23.595821,46.864697,0.448540, + -21.217333,45.272701,-2.045970,-21.112125,45.287678,-2.017153,-20.658377,45.254272,-3.689490,-20.770763,45.238277,-3.720273, + -21.837633,45.191917,-2.216027,-21.732510,45.206882,-2.187232,-21.250242,45.170673,-3.874072,-21.361343,45.155003,-3.909355, + -21.150154,46.870445,-0.443827,-21.167406,47.021599,-0.477263,-20.691189,45.579884,-1.876384,-20.664448,45.441921,-1.839539, + -11.736742,48.385471,3.019463,-9.746191,48.006264,3.455606,-10.078028,45.975697,3.204612,-12.068579,46.354904,2.768469, + -9.590543,48.038452,2.519021,-9.805763,47.323391,3.383440,-9.917550,46.639347,3.298887,-11.409874,48.392181,2.062641, + -12.009006,47.037777,2.840634,-11.897219,47.721821,2.925188,-10.623747,48.614792,-0.871651,-8.717452,48.244156,-0.393457, + -9.883612,46.172874,2.241358,-11.702942,46.526600,1.784979,-10.949727,46.653877,-1.092007,-9.043432,46.283241,-0.613813, + -11.085932,48.261490,3.162060,-10.397140,48.130272,3.312979,-10.728975,46.099705,3.061985,-11.417768,46.230923,2.911066, + -10.121422,46.678185,3.254217,-10.239717,46.210598,3.186563,-10.429486,47.932335,3.288512,-9.972574,47.845291,3.388624, + -11.385422,46.428860,2.935532,-11.842196,46.515877,2.835449,-11.693347,47.682983,2.969857,-11.575053,48.150570,3.037511, + -10.009635,47.362228,3.338770,-11.805134,46.998940,2.885304,-11.118279,48.063553,3.137594,-10.696629,46.297642,3.086451, + -11.242775,46.480247,2.511832,-10.354527,47.966049,2.910757,-10.065045,46.744770,2.859668,-10.140274,46.265888,2.788394, + -9.887458,47.875237,3.027921,-11.709725,46.571033,2.394697,-11.532138,47.701500,2.562950,-11.456909,48.180382,2.634224, + -9.962687,47.396355,2.956647,-11.634497,47.049915,2.465971,-10.989959,48.089592,2.751359,-10.607344,46.356701,2.671230, + -11.908064,46.429989,2.337007,-10.001769,46.059353,2.815201,-9.694692,48.014103,3.106136,-11.600986,48.384743,2.627942, + -11.703345,47.733158,2.530964,-11.805704,47.081573,2.433985,-9.899410,46.710934,2.912180,-9.797050,47.362518,3.009158, + -10.330183,48.137661,2.946723,-10.965615,48.261208,2.787325,-11.272692,46.306454,2.496390,-10.637260,46.182907,2.655788, + -11.005704,48.399769,0.742874,-11.292694,46.673397,0.548874,-9.606424,46.345543,0.971875,-9.319435,48.071911,1.165875, + -11.035505,46.646889,-1.210665,-11.801726,46.472279,1.842926,-11.775117,46.668591,1.889007,-11.001003,46.854435,-1.187342, + -11.606223,46.434269,1.891968,-10.830658,46.607063,-1.159279,-11.378512,46.620777,0.529881,-11.348138,46.803497,0.550414, + -11.197309,46.585545,0.575337,-10.650797,48.652157,-0.972515,-11.436803,48.418297,2.071793,-11.250670,48.379253,2.143901, + -10.449033,48.612930,-0.921903,-11.470234,48.217194,2.049194,-10.685826,48.441441,-0.996194,-11.084549,48.490124,0.734755, + -10.906073,48.455421,0.779525,-11.115388,48.304607,0.713908,-8.653760,48.298325,-0.469025,-9.515057,48.053272,2.550595, + -9.554260,47.853699,2.552189,-8.688262,48.090778,-0.492348,-9.710560,48.091286,2.501554,-8.858607,48.338154,-0.520411, + -9.235720,48.104233,1.196899,-9.266095,47.921513,1.176366,-9.416924,48.139465,1.151444,-8.990538,46.251801,-0.698324, + -9.852297,46.089439,2.289262,-10.044726,46.126850,2.240991,-9.192301,46.291027,-0.748936,-9.818865,46.290543,2.311861, + -8.955507,46.462517,-0.674645,-9.576779,46.263584,0.980563,-9.755255,46.298286,0.935793,-9.545939,46.449097,1.001410, + -11.470424,48.478573,2.004423,-11.503553,48.469986,2.129839,-11.808698,46.466949,1.744341,-11.841585,46.458427,1.868838, + -11.611440,47.466747,1.891436,-11.644448,47.458195,2.016393,-9.807455,46.074802,2.208439,-9.841190,46.062492,2.333383, + -9.491132,48.078480,2.549869,-9.524620,48.066257,2.673898,-9.688815,47.078697,2.404487,-9.722426,47.066433,2.528973, + -10.810855,46.280510,2.122463,-10.777846,46.289066,1.997504,-11.035460,48.457806,0.672972,-11.068590,48.449219,0.798388, + -11.371977,46.638615,0.560296,-11.339089,46.647141,0.435798,-9.567571,46.290840,0.912961,-9.268028,48.100128,1.165357, + -9.301438,48.088375,1.289438,-9.601228,46.279003,1.037958,-11.226903,47.274960,0.569234,-11.244850,47.167007,0.557103, + -10.863377,47.301617,-1.126480,-10.844207,47.416935,-1.113521,-11.700964,46.748383,1.825110,-11.720277,46.632214,1.812056, + -11.179615,47.505444,0.642700,-11.161800,47.612606,0.654742,-11.448588,48.262039,2.072675,-11.467901,48.145870,2.059620, + -11.189330,47.511436,0.644530,-11.171515,47.618599,0.656572,-10.036035,46.190273,2.184655,-9.923100,46.168316,2.212984, + -10.370078,46.491230,0.745058,-10.474752,46.511581,0.718800,-11.672227,46.486275,1.846743,-11.559293,46.464317,1.875073, + -10.379934,46.463390,0.743895,-10.484608,46.483742,0.717637,-11.772312,46.316719,2.680189,-11.582888,46.280323,2.724504, + -11.734830,46.343410,2.538172,-11.533791,46.303780,2.593429,-11.341522,46.327477,2.413213,-11.534281,46.358902,2.381171, + -11.369787,46.294495,2.556039,-11.574687,46.330715,2.514265,-10.740286,46.254986,2.342809,-10.896264,46.285706,2.302638, + -10.774499,46.229355,2.458869,-10.939686,46.264290,2.409788,-11.802166,46.698940,2.145433,-11.828712,46.538265,2.126318, + -11.839936,46.691887,2.263068,-11.867176,46.520294,2.236055,-12.185865,46.363377,3.706195,-12.009048,46.328999,3.750549, + -11.705679,46.600922,2.362843,-11.549283,46.570515,2.402075,-11.687481,48.088078,3.978402,-11.886058,47.941509,3.892747, + -11.313293,48.180401,2.636506,-11.493952,48.050240,2.579872,-10.153216,47.612759,4.347666,-10.294577,47.827637,4.301870, + -9.897845,47.719593,2.979015,-10.028024,47.907703,2.957505,-10.422766,46.017128,4.109869,-10.596803,46.050968,4.066213, + -10.130247,46.297913,2.674700,-10.284287,46.327862,2.636059,-12.462450,46.167381,3.471168,-10.169685,45.715706,4.024086, + -9.789545,48.020927,4.352164,-11.504114,46.967777,5.279000,-10.578581,47.524990,4.677446,-11.881706,46.634212,4.369326, + -10.709711,46.258766,4.448689,-11.144796,45.810345,3.518775,-12.325129,47.369736,3.472484,-12.236244,47.215988,3.326689, + -11.186760,45.741604,3.661733,-11.215704,47.105453,4.399374,-9.797307,46.893559,4.097260,-11.199840,46.947071,4.192214, + -9.831046,46.751675,3.942104,-11.299891,45.823341,3.500915,-11.123792,46.980328,4.406639,-11.252658,47.024231,4.222363, + -10.759350,48.348499,3.975044,-10.878586,48.311054,3.782234,-11.085065,46.990410,4.225500,-10.734416,48.295227,3.841454, + -10.066116,45.854912,3.794907,-12.342234,46.141380,3.448613,-12.261154,46.190365,3.314636,-10.067003,45.800476,3.949695, + -12.365108,46.307533,3.317415,-11.198183,46.917107,4.519584,-11.257802,47.071510,4.361165,-9.702090,47.963360,4.257735, + -11.158578,46.933994,4.339142,-9.716975,47.934986,4.115330,-10.185415,45.754669,3.778749,-11.151336,47.044445,4.540677, + -11.252768,46.957233,4.354671,-11.981050,48.509983,3.679180,-12.019382,48.370384,3.500748,-10.159406,46.412060,0.826501, + -10.054459,46.391655,0.852827,-9.646781,46.362228,-0.831407,-9.758887,46.384022,-0.859529,-10.775862,46.539497,0.671715, + -10.670998,46.519112,0.698020,-10.237167,46.479523,-1.001845,-10.347990,46.501614,-1.034470,-9.590847,47.771622,2.544783, + -9.561047,47.923061,2.523796,-9.562906,46.528160,1.001591,-9.579594,46.386040,1.026679,-25.968885,40.455746,-4.147410, + -25.679054,40.360435,-4.090250,-26.706966,34.192310,-4.745161,-26.410656,34.206715,-4.629058,-25.979061,34.368015,-6.548761, + -26.003365,34.473495,-8.146064,-26.494621,34.277172,-5.771543,-24.821623,40.543491,-7.558910,-26.121855,36.306492,-4.176049, + -25.888664,38.471668,-3.966220,-25.312004,38.592487,-6.088504,-25.683760,38.526638,-4.763806,-26.166632,38.224224,-4.031651, + -25.904310,38.221149,-3.987653,-25.593025,38.368744,-6.178582,-25.326529,38.363140,-6.108042,-24.857788,38.705841,-7.801298, + -25.124989,38.450829,-7.889865,-25.961411,38.237251,-4.834065,-25.699089,38.234177,-4.790068,-24.874207,38.446568,-7.823385, + -25.489426,40.352543,-4.668690,-25.522312,40.344017,-4.544192,-25.926525,34.383144,-6.623030,-25.565304,37.657410,-6.273036, + -25.552664,37.766254,-6.262246,-25.063633,37.865036,-7.919869,-25.077137,37.748764,-7.931396,-25.639717,37.016640,-6.336561, + -25.627087,37.125397,-6.325779,-25.129873,37.248417,-8.002092,-25.142170,37.132549,-8.018135,-25.819990,38.011223,-4.898939, + -25.806389,38.128353,-4.887327,-25.619476,37.417686,-6.258564,-25.632025,37.309639,-6.269275,-26.010313,36.473740,-5.008824, + -25.996710,36.590866,-4.997212,-25.604826,37.410698,-6.251992,-25.617374,37.302650,-6.262703,-25.305386,40.477100,-5.952677, + -24.627035,40.346668,-7.627977,-25.452322,40.137249,-4.594564,-25.781080,40.189274,-4.652793,-24.944342,40.399185,-7.708760, + -25.400522,40.424500,-4.559025,-25.121481,40.355606,-5.925036,-25.454239,40.411541,-6.009666,-25.252892,40.346226,-5.933482, + -25.220003,40.354752,-6.057980,-25.326681,39.712208,-6.069330,-25.314041,39.821053,-6.058539,-24.825010,39.919830,-7.716162, + -24.838512,39.803562,-7.727689,-25.401094,39.071434,-6.132854,-25.388464,39.180195,-6.122072,-24.891251,39.303215,-7.798385, + -24.903545,39.187347,-7.814427,-25.581367,40.066021,-4.695231,-25.567764,40.183147,-4.683619,-25.380854,39.472481,-6.054856, + -25.393402,39.364433,-6.065568,-25.781216,38.391869,-4.839872,-25.779623,38.497982,-4.787183,-25.359789,39.464661,-6.046481, + -25.372335,39.356613,-6.057193,-25.527027,34.509277,-8.147385,-26.006512,36.142368,-4.975427,-25.973623,36.150894,-5.099925, + -25.815422,35.503632,-6.486557,-25.802782,35.612476,-6.475766,-25.313751,35.711254,-8.133389,-25.327255,35.594986,-8.144917, + -25.889835,34.862862,-6.550081,-25.877205,34.971619,-6.539299,-25.379992,35.094639,-8.215612,-25.392288,34.978771,-8.231655, + -26.070110,35.857445,-5.112459,-26.056507,35.974575,-5.100847,-25.869595,35.263905,-6.472084,-25.882143,35.155857,-6.482795, + -26.267174,34.317863,-5.193285,-26.253572,34.434990,-5.181673,-25.866573,35.255215,-6.469498,-25.879122,35.147167,-6.480209, + -25.924364,35.153606,-6.492092,-25.652378,40.123035,-3.790866,-25.981136,40.175060,-3.849095,-25.098644,36.281399,-8.030902, + -25.923372,36.068295,-4.997592,-26.185570,36.063076,-5.042124,-25.078382,40.580589,-5.898249,-24.578314,40.601009,-7.597695, + -25.349295,36.277534,-8.097903,-25.916958,36.361286,-4.973649,-25.090128,36.541218,-8.010864,-25.525524,36.278751,-6.325581, + -25.791914,36.275719,-6.396683,-25.517990,36.508579,-6.307857,-26.129866,36.055450,-4.195501,-25.605518,40.368813,-3.761512, + -26.392063,36.050232,-4.240033,-26.221075,34.264439,-5.262943,-26.254198,34.255856,-5.137553,-25.959656,34.374557,-6.497613, + -22.929987,45.397350,-0.887815,-22.712475,45.177876,-0.858259,-26.374844,40.226940,-2.125761,-26.102627,40.094868,-2.026051, + -25.649906,40.286114,-3.938123,-25.629499,40.588547,-5.510130,-26.149900,40.336071,-3.147153,-21.873085,45.392879,-4.329498, + -24.909962,41.778694,-1.362752,-23.738785,43.575302,-0.930377,-23.174664,43.691769,-3.056271,-23.533115,43.632778,-1.727589, + -24.097921,43.485794,-1.006436,-23.864130,43.362083,-0.978234,-23.526081,43.627735,-3.154011,-23.289595,43.496651,-3.099989, + -22.722364,43.804779,-4.769595,-23.075283,43.706665,-4.870063,-23.910610,43.506432,-1.813061,-23.676819,43.382721,-1.784859, + -22.852291,43.584198,-4.819017,-22.547771,45.159027,-1.444034,-22.580658,45.150501,-1.319536,-25.596333,40.285637,-4.013186, + -23.817450,42.994705,-3.327396,-23.757751,43.084587,-3.305472,-23.280573,43.162468,-4.967657,-23.344345,43.066456,-4.991076, + -24.168896,42.465565,-3.456459,-24.109245,42.555374,-3.434553,-23.614023,42.653526,-5.113095,-23.676548,42.557896,-5.141020, + -23.884481,43.251205,-1.910388,-23.820240,43.347927,-1.886797,-23.972416,42.803600,-3.336219,-24.031677,42.714378,-3.357982, + -24.738176,41.981487,-2.177180,-24.673935,42.078209,-2.153588,-23.962374,42.790123,-3.331310,-24.021635,42.700897,-3.353072, + -22.331310,45.347847,-2.715057,-21.786362,45.140724,-4.430847,-22.609932,44.942059,-1.396244,-22.881550,45.140316,-1.429367, + -22.047565,45.337173,-4.486956,-22.435841,45.170269,-1.332441,-22.220417,45.155396,-2.711560,-22.493959,45.362164,-2.770221, + -22.342346,45.205975,-2.713397,-22.309460,45.214497,-2.837895,-22.690449,44.691525,-2.913521,-22.630749,44.781406,-2.891598, + -22.153570,44.859287,-4.553782,-22.217342,44.763275,-4.577201,-23.041895,44.162384,-3.042584,-22.982243,44.252197,-3.020679, + -22.487020,44.350346,-4.699220,-22.549547,44.254719,-4.727145,-22.757481,44.948025,-1.496513,-22.693237,45.044746,-1.472922, + -22.845413,44.500420,-2.922344,-22.904675,44.411198,-2.944107,-23.680510,43.565285,-1.812241,-23.631800,43.652412,-1.748405, + -22.829988,44.483154,-2.916106,-22.889250,44.393929,-2.937869,-25.186834,40.410751,-5.534967,-24.881847,41.681015,-2.180624, + -24.848959,41.689541,-2.305122,-24.998741,41.216148,-3.761208,-24.939043,41.306030,-3.739284,-24.461864,41.383911,-5.401468, + -24.525637,41.287895,-5.424888,-25.350189,40.687008,-3.890271,-25.290537,40.776817,-3.868365,-24.795315,40.874966,-5.546906, + -24.857841,40.779339,-5.574832,-25.065773,41.472649,-2.344200,-25.001532,41.569370,-2.320608,-25.153708,41.025043,-3.770031, + -25.212969,40.935818,-3.791794,-25.926357,40.200432,-2.581998,-25.862114,40.297153,-2.558406,-25.154852,41.015663,-3.768593, + -25.214113,40.926441,-3.790356,-25.251823,40.953560,-3.798833,-22.793137,44.917931,-0.588773,-23.064754,45.116188,-0.621896, + -24.015617,41.783455,-5.249601,-24.840322,41.581280,-2.215539,-25.077688,41.697628,-2.245189,-22.081802,45.333157,-2.662774, + -21.629660,45.341679,-4.375695,-24.242100,41.898708,-5.302064,-24.704378,41.836021,-2.159997,-23.892532,42.008255,-5.201698, + -24.394278,41.757774,-3.533120,-24.634504,41.881203,-3.588654,-24.285400,41.956627,-3.490746,-25.028692,41.561405,-1.409141, + -22.641909,45.112202,-0.535375,-25.266058,41.677753,-1.438791,-25.908985,40.141258,-2.659639,-25.942108,40.132675,-2.534248, + -25.629463,40.277050,-3.887770,9.829029,19.617104,1.634448,10.565812,19.862457,-1.247577,9.872430,19.717270,2.282367, + 9.669412,19.552238,2.202083,10.201797,19.779598,0.389161,6.124916,23.452633,-2.163932,5.300211,23.266422,0.761266, + 5.274673,23.484507,1.349266,6.604240,22.011793,1.625384,5.126138,23.204159,1.327679,5.689048,23.381992,-0.556204, + 6.772848,22.089209,1.048078,8.357511,20.808020,1.378973,8.188903,20.730602,1.956279,9.119955,21.026802,-1.561838, + 6.692998,22.143545,1.901940,6.492610,22.316111,1.870220,8.089083,21.025372,2.203582,8.289473,20.852806,2.235301, + 8.849727,20.969753,0.108418,8.284204,21.066174,1.401428,7.932950,20.796284,2.162190,8.141489,20.655869,2.182578, + 8.503952,20.937975,0.014378,8.714088,20.789545,0.060251,9.301481,21.082886,-1.605041,8.495710,20.910616,1.438262, + 8.949854,21.018017,-1.702893,8.116791,20.819826,1.354847,8.325331,20.679409,1.375235,9.148145,20.879166,-1.659493, + 8.264526,20.804489,1.273023,8.270678,21.180578,1.300395,8.231639,20.795967,1.397521,7.598544,22.174387,-0.241109, + 7.205652,22.108339,-0.194595,7.238782,22.116926,-0.320011,6.659897,22.140551,1.035787,6.881511,21.965813,1.082366, + 8.735218,20.914640,0.058152,8.530304,21.076206,0.015082,6.690764,22.179188,1.046586,6.912378,22.004452,1.093165, + 8.764134,20.950739,0.067890,8.559219,21.112303,0.024820,6.946881,21.814856,1.435677,6.803974,21.931744,1.402738, + 6.992382,21.829809,1.294446,6.836475,21.953728,1.266524,6.957796,21.829868,1.441389,6.814888,21.946756,1.408450, + 7.003296,21.844820,1.300158,6.847390,21.968740,1.272236,9.665451,20.131397,0.438890,9.804780,20.014505,0.484944, + 9.611631,20.121002,0.577628,9.763418,19.995817,0.619346,9.676217,20.146463,0.444684,9.815546,20.029572,0.490738, + 9.622397,20.136068,0.583422,9.774183,20.010883,0.625141,7.026106,21.763460,1.394940,7.145601,21.667065,1.418803, + 6.992293,21.752043,1.513322,7.121809,21.648960,1.532408,7.035364,21.775904,1.399164,7.154859,21.679508,1.423026, + 7.001550,21.764486,1.517545,7.131067,21.661404,1.536632,8.792913,20.899227,0.073180,10.639583,19.673664,-1.348010, + 9.816769,19.473909,1.686718,9.555538,19.656609,1.655274,10.388602,19.854799,-1.402467,9.987148,19.705114,1.749745, + 10.206126,19.686411,0.371303,9.943300,19.877123,0.314373,10.067090,19.793190,0.368795,10.108907,20.135012,0.269473, + 10.099977,19.801712,0.244297,9.623903,20.193262,0.206162,9.703986,20.128515,0.222884,10.108582,20.207952,-1.458367, + 10.023035,20.277117,-1.476231,9.152450,20.574429,0.107717,9.232469,20.509733,0.124426,9.659380,20.577038,-1.574273, + 9.575096,20.646458,-1.596646,9.651676,20.230150,0.216024,9.731759,20.165403,0.232746,10.138419,20.247484,-1.448151, + 10.052873,20.316648,-1.466015,9.180223,20.611317,0.117579,9.260242,20.546621,0.134288,9.689217,20.616570,-1.564056, + 9.604934,20.685989,-1.586430,7.535292,22.307991,-1.892733,7.208251,22.180416,-0.257715,5.440176,23.452967,0.719686, + 6.646976,22.077156,1.066626,6.686015,22.461767,0.969500,6.679863,22.085680,0.942128,5.841703,23.554871,-0.613292, + 9.735258,19.576183,1.726893,9.774297,19.960796,1.629768,9.768146,19.584709,1.602395,6.055951,23.077927,-0.538866, + 6.135970,23.013231,-0.522157,6.562882,23.080536,-2.220856,6.478598,23.149956,-2.243229,6.083724,23.114815,-0.529004, + 6.163743,23.050119,-0.512295,6.592719,23.120068,-2.210639,6.508435,23.189487,-2.233013,6.898036,22.451874,-0.335708, + 7.102951,22.290310,-0.292639,5.460570,23.169296,0.790229,5.238956,23.344034,0.743650,6.869120,22.415777,-0.345446, + 7.074035,22.254211,-0.302376,5.429703,23.130659,0.779430,5.208089,23.305397,0.732851,9.632927,19.450367,2.494061, + 9.371696,19.633066,2.462616,7.551672,22.169903,-1.992855,6.728857,21.970148,1.041874,6.520317,22.110563,1.021486, + 10.150721,19.810637,1.095437,10.792919,19.877384,-1.293558,7.353381,22.308756,-2.036254,6.899236,22.201353,1.104901, + 7.705008,22.373623,-1.938402,7.184313,22.133511,-0.274121,6.974177,22.281940,-0.319994,9.780910,19.647306,2.546784, + 7.319952,22.313717,-0.225954,6.545016,21.946606,1.849216,9.527830,19.862154,2.504008,6.336476,22.087023,1.828829, + 6.687731,22.356911,1.068067,5.296061,23.223080,0.685944,5.262938,23.214497,0.811335,5.670030,23.347397,-0.518023, + 5.703160,23.355984,-0.643439,-6.001774,34.524506,1.380316,-4.197325,35.427219,1.855059,-3.289382,33.565987,1.943159, + -5.093831,32.663273,1.468416,-3.850549,34.832985,1.896302,-3.544686,34.205982,1.925981,-5.654957,34.585388,0.432473, + -5.440606,33.257507,1.427172,-5.746469,33.884510,1.397494,-4.883225,34.810112,-2.505478,-3.158768,33.702995,0.958932, + -4.807029,32.875652,0.466885,-4.012865,33.012596,-2.398621,-2.285817,33.879486,-1.883055,-5.411810,34.819649,1.535533, + -4.787414,35.132015,1.699809,-3.879470,33.270782,1.787909,-4.503866,32.958416,1.623633,-3.729497,34.113529,1.877358, + -3.553781,33.659424,1.888293,-4.698909,34.950584,1.708397,-4.284715,35.157795,1.817370,-4.592371,33.139847,1.615045, + -5.006441,32.932697,1.506105,-5.561658,33.976967,1.446116,-5.737374,34.431072,1.435181,-4.035360,34.740528,1.847680, + -5.255795,33.349964,1.475795,-5.323305,34.638218,1.544121,-3.967975,33.452213,1.779321,-4.468099,33.204582,1.187405, + -4.623883,34.968456,1.329574,-3.686922,34.144825,1.476748,-3.469265,33.705944,1.485581,-4.200732,35.180855,1.455895, + -4.891142,32.992237,1.061116,-5.404952,34.028271,1.040264,-5.622609,34.467148,1.031430,-3.983074,34.741978,1.464729, + -5.108799,33.431114,1.052283,-5.199566,34.679493,1.157719,-3.892416,33.493546,1.359260,-4.967783,32.756313,1.029078, + -3.240736,33.623203,1.544644,-5.856242,34.547775,0.993021,-5.560089,33.950623,1.005040,-5.263936,33.353466,1.017059, + -3.536888,34.220356,1.532625,-3.833041,34.817513,1.520606,-4.704931,35.125675,1.336715,-5.280613,34.836712,1.164860, + -4.392155,33.045250,1.200917,-3.816472,33.334213,1.372772,-5.213782,34.641113,-0.874224,-4.447525,33.058601,-0.780148, + -2.919814,33.825432,-0.324089,-4.068608,32.941036,-2.513765,-4.861847,32.783016,0.533824,-4.956002,32.962833,0.546875, + -4.160728,33.131287,-2.525075,-4.684728,32.871922,0.586699,-3.883022,33.034191,-2.458363,-4.485999,32.964115,-0.789500, + -4.567100,33.131611,-0.799457,-4.321833,33.046520,-0.740493,-4.917812,34.810593,-2.610858,-5.692644,34.592167,0.437459, + -5.524605,34.678043,0.513339,-4.735021,34.902344,-2.556290,-5.603383,34.407822,0.448417,-4.824285,34.617435,-2.599375, + -5.328985,34.667290,-0.896341,-5.167291,34.748451,-0.848071,-5.246644,34.497234,-0.886232,-2.217299,33.872917,-1.961737, + -3.089818,33.660519,1.019582,-3.264153,33.573009,0.967538,-2.400092,33.781166,-2.016304,-3.179078,33.844864,1.008623, + -2.310827,34.066078,-1.973219,-2.849645,33.777733,-0.302351,-3.011339,33.696571,-0.350621,-2.931985,33.947788,-0.312460, + -5.748579,34.611961,0.361423,-5.781710,34.603374,0.486839,-4.855897,32.761009,0.437510,-4.888785,32.752487,0.562008, + -5.277324,33.700226,0.417025,-5.310333,33.691669,0.541983,-3.037779,33.663353,0.941855,-3.069240,33.651352,1.067421, + -3.967356,33.238632,0.832221,-3.934347,33.247185,0.707263,-5.265064,34.660984,-0.952425,-5.298194,34.652397,-0.827009, + -4.493482,32.986473,-0.762479,-4.460594,32.994999,-0.886977,-2.851750,33.795597,-0.373585,-2.883420,33.784031,-0.248045, + -4.738360,33.583748,-0.859226,-4.690445,33.484791,-0.853344,-4.308428,33.579163,-2.539537,-4.359612,33.684872,-2.545821, + -5.613304,34.459675,0.464039,-5.561742,34.353184,0.470370,-4.848995,33.806286,-0.824036,-4.896560,33.904518,-0.829875, + -3.288273,33.621262,0.901496,-3.185958,33.672615,0.932039,-3.606994,33.471016,-0.564943,-3.701826,33.423416,-0.593252, + -4.764345,32.869469,0.534149,-4.662030,32.920822,0.564693,-3.599082,33.442757,-0.561441,-3.693913,33.395157,-0.589751, + -4.822286,32.791042,1.384967,-4.650640,32.877087,1.432967,-4.794467,32.814407,1.240170,-4.612443,32.906067,1.299391, + -4.453110,33.010941,1.116033,-4.625720,32.920677,1.080982,-4.469883,32.987934,1.262578,-4.654296,32.893181,1.217249, + -3.914394,33.289375,1.053138,-4.055839,33.218616,1.009859,-3.937878,33.265141,1.172127,-4.088471,33.191227,1.119449, + -5.183986,33.202164,0.936004,-5.101213,33.024418,0.962932,-5.234833,33.200714,1.076453,-5.144329,33.009907,1.097477, + -5.017795,33.007309,0.795090,-4.946251,32.859970,0.802799,-5.054910,32.996201,0.912621,-4.977020,32.838573,0.914335, + -5.276387,32.732773,2.393079,-5.361542,32.895405,2.404882,-5.116196,32.813183,2.440899,-4.902085,33.014210,1.024760, + -4.972083,33.158772,1.016167,-4.760395,33.085331,1.067059,-6.027774,34.369003,2.305924,-5.875796,34.446671,2.374552, + -5.947044,34.202278,2.315835,-5.645032,34.480221,0.990745,-5.505475,34.550270,1.032406,-5.573964,34.333447,0.999470, + -4.457322,35.165253,2.771799,-4.383557,34.999672,2.803113,-4.617513,35.084846,2.723978,-4.186248,35.187309,1.424656, + -4.116251,35.042744,1.433250,-4.327938,35.116188,1.382359,-3.673731,33.526402,2.832407,-3.831403,33.447258,2.785337, + -3.754460,33.693130,2.822495,-3.469391,33.721714,1.368093,-3.608947,33.651665,1.326432,-3.540458,33.868488,1.359368, + -6.390613,34.509521,2.090934,-5.370161,32.382858,2.195806,-3.287680,33.417660,2.794940,-4.319406,35.538609,2.737442, + -5.201130,33.830986,3.839478,-5.240119,33.218330,3.000143,-4.075480,33.602638,3.129576,-5.628678,34.107403,3.023572, + -4.979119,33.922348,3.089604,-4.094225,32.861546,2.289607,-5.943259,33.430370,1.998856,-5.770284,33.337551,1.879445, + -4.101824,32.801868,2.442263,-5.856311,33.468204,1.887884,-4.967113,33.985882,2.946662,-4.924087,33.988068,2.796489, + -3.661031,34.590927,2.670807,-3.669295,34.569157,2.508384,-4.845800,33.838711,2.768125,-3.594193,34.435673,2.541305, + -4.226796,32.780125,2.271232,-4.821342,33.939121,2.973519,-4.935563,33.874584,2.785688,-5.265553,35.190929,2.320345, + -5.324800,35.065254,2.137341,-4.779626,33.944397,2.792841,-5.203155,35.143845,2.197075,-3.262370,33.557613,2.545139, + -5.255148,32.428089,2.176753,-5.205113,32.495655,2.035846,-3.245592,33.534775,2.706757,-5.357065,32.530464,2.020309, + -4.855961,33.861023,3.095953,-4.978830,33.928974,2.914907,-4.206896,35.529549,2.652953,-4.331477,35.515968,2.460364, + -4.817466,33.872379,2.914839,-4.190451,35.478333,2.517261,-3.301309,33.405876,2.546684,-4.892091,33.993496,3.095477, + -4.909026,33.838955,2.927184,-6.329964,34.575596,2.012849,-6.266148,34.416298,1.860051,-4.843924,33.996708,2.916361, + -6.238134,34.565205,1.899865,-3.396856,33.540028,-0.473496,-3.301776,33.587753,-0.445112,-2.804809,33.565052,-2.105300, + -2.906375,33.514069,-2.135620,-3.959654,33.265778,-0.641608,-3.864651,33.313465,-0.613247,-3.339162,33.295490,-2.287420, + -3.439452,33.244858,-2.322241,0.116147,28.623409,0.500981,-0.154782,28.503548,0.408329,-3.332443,33.911747,-0.021941, + -3.557635,33.689613,-0.059792,-2.982368,33.844345,-1.941992,-2.277288,34.226124,-3.327704,-3.014001,34.006626,-1.019610, + 0.763105,28.817175,-3.035421,-2.323775,32.070854,0.388292,-1.129827,30.238823,0.578265,-0.577710,30.356928,-1.550688, + -0.922559,30.298016,-0.218408,-1.494792,30.310558,0.511704,-1.331095,30.100924,0.515508,-0.925403,30.451138,-1.636610, + -0.762100,30.230814,-1.608031,-0.127124,30.470446,-3.264430,-0.490017,30.534609,-3.356424,-1.319289,30.344728,-0.297113, + -1.155592,30.135092,-0.293310,-0.335573,30.327877,-3.329254,-0.057050,28.556356,-0.190230,-0.089938,28.547834,-0.065733, + -2.977163,33.822048,-2.031326,-1.173173,31.061924,-1.713327,-1.113282,30.970024,-1.703797,-0.717901,31.063583,-3.386516, + -0.781878,31.161755,-3.396696,-1.525757,31.602940,-1.769427,-1.465914,31.511112,-1.759906,-1.052448,31.586849,-3.461578, + -1.115179,31.685253,-3.476274,-1.308519,30.568092,-0.365734,-1.244070,30.469198,-0.355479,-1.303056,31.269562,-1.688227, + -1.362508,31.360786,-1.697686,-2.163480,31.861458,-0.457389,-2.099031,31.762566,-0.447134,-1.319618,31.264091,-1.689796, + -1.379071,31.355320,-1.699256,0.405761,28.710600,-1.398545,0.779912,28.616684,-3.151703,-0.040106,28.423901,-0.115759, + -0.243299,28.693695,-0.125910,0.585972,28.883575,-3.185220,0.192926,28.586823,-0.040856,0.383167,28.619596,-1.423365, + 0.180368,28.900082,-1.458292,0.277928,28.771233,-1.413875,0.310816,28.779757,-1.538373,-0.042523,29.327019,-1.533426, + 0.017368,29.235119,-1.523896,0.412749,29.328680,-3.206615,0.348771,29.426849,-3.216795,-0.395108,29.868034,-1.589526, + -0.335264,29.776209,-1.580005,0.078201,29.851948,-3.281677,0.015470,29.950348,-3.296374,-0.177870,28.833187,-0.185833, + -0.113420,28.734295,-0.175578,-0.172406,29.534657,-1.508326,-0.231859,29.625883,-1.517785,-1.103869,30.244032,-0.311094, + -1.054966,30.149149,-0.259668,-0.194327,29.525433,-1.511402,-0.253779,29.616659,-1.520861,-2.558018,33.912071,-3.552962, + -2.398585,32.097210,-0.448277,-2.365697,32.105736,-0.572775,-2.358287,32.880402,-1.901894,-2.298397,32.788502,-1.892365, + -1.903015,32.882061,-3.575083,-1.966992,32.980232,-3.585263,-2.710872,33.421417,-1.957995,-2.651028,33.329590,-1.948473, + -2.237563,33.405331,-3.650146,-2.300294,33.503731,-3.664842,-2.493634,32.386570,-0.554301,-2.429184,32.287678,-0.544046, + -2.488170,33.088039,-1.876794,-2.547623,33.179264,-1.886253,-3.356941,33.677464,-0.617346,-3.292491,33.578571,-0.607092, + -2.496871,33.091980,-1.876440,-2.556324,33.183205,-1.885899,-2.518479,33.209042,-1.874506,-0.215609,28.389730,0.693059, + -0.418802,28.659527,0.682908,-1.529521,32.159908,-3.519227,-2.349540,31.967121,-0.483283,-2.513237,32.176758,-0.487086, + 0.567557,28.745710,-1.366023,0.988362,28.759254,-3.086878,-1.683965,32.366638,-3.546397,-2.116507,32.130047,-0.408380, + -1.321072,32.302479,-3.454402,-1.875795,32.092480,-1.797048,-2.039099,32.312805,-1.825628,-1.691406,32.218594,-1.739706, + -2.525043,31.932953,0.325535,-0.014341,28.527630,0.755816,-2.688739,32.142590,0.321732,-3.394857,33.708946,-0.703386, + -3.427981,33.700359,-0.577995,-3.010293,33.813461,-1.905910,-26.357491,34.364418,-6.333345,-26.054583,34.349174,-6.267249, + -25.483664,28.092308,-6.505887,-25.203552,28.188421,-6.388470,-24.777014,28.329643,-8.310883,-24.785898,28.322691,-9.911808, + -25.273081,28.161839,-7.533783,-25.181585,34.519264,-9.732685,-25.462975,30.317778,-6.078254,-25.786367,32.480621,-6.015613, + -25.204082,32.606327,-8.136077,-25.581367,32.534119,-6.813274,-25.991524,32.167385,-6.066313,-25.738054,32.233414,-6.019924, + -25.417507,32.313622,-8.213019,-25.160049,32.379967,-8.139941,-24.748941,32.720261,-9.848587,-24.941183,32.400948,-9.921755, + -25.775562,32.180153,-6.865908,-25.522093,32.246181,-6.819519,-24.699163,32.464363,-9.852956,-25.854221,34.352207,-6.842106, + -25.887108,34.343685,-6.717608,-24.728065,28.352730,-8.385555,-25.209652,31.627731,-8.258148,-25.225027,31.736706,-8.254749, + -24.733961,31.848892,-9.910916,-24.717537,31.732487,-9.914547,-25.119137,30.986195,-8.278156,-25.134499,31.095081,-8.274760, + -24.641121,31.231541,-9.951166,-24.623514,31.115536,-9.959319,-25.580299,31.993420,-6.913868,-25.596846,32.110691,-6.910211, + -25.202253,31.383533,-8.227716,-25.186991,31.275360,-8.231090,-25.375599,30.453869,-6.919546,-25.392145,30.571136,-6.915888, + -25.186491,31.380905,-8.220552,-25.171228,31.272728,-8.223927,-25.674364,34.436371,-8.129964,-24.942101,34.373871,-9.786372, + -25.766171,34.158463,-6.753047,-26.095850,34.122021,-6.817575,-25.260241,34.339344,-9.873333,-25.789087,34.451157,-6.736871, + -25.466618,34.367233,-8.092441,-25.800468,34.331860,-8.183610,-25.591202,34.324482,-8.101368,-25.558315,34.333008,-8.225866, + -25.499916,33.684978,-8.193984,-25.515291,33.793949,-8.190585,-25.024225,33.906139,-9.846752,-25.007801,33.789730,-9.850384, + -25.409399,33.043442,-8.213993,-25.424763,33.152328,-8.210597,-24.931385,33.288788,-9.887003,-24.913778,33.172779,-9.895156, + -25.870564,34.050667,-6.849705,-25.887108,34.167934,-6.846047,-25.492516,33.440781,-8.163552,-25.477253,33.332603,-8.166926, + -25.639872,32.374523,-6.880750,-25.666330,32.480766,-6.835462,-25.470387,33.439079,-8.154476,-25.455124,33.330906,-8.157850, + -24.333933,28.477310,-9.911432,-25.289581,30.137028,-6.863436,-25.256693,30.145552,-6.987934,-24.905407,29.471386,-8.325402, + -24.920780,29.580360,-8.322003,-24.429716,29.692549,-9.978170,-24.413292,29.576141,-9.981801,-24.814890,28.829851,-8.345411, + -24.830252,28.938740,-8.342014,-24.336874,29.075195,-10.018421,-24.319267,28.959190,-10.026573,-25.276054,29.837076,-6.981122, + -25.292599,29.954344,-6.977465,-24.898006,29.227190,-8.294971,-24.882744,29.119015,-8.298344,-25.078100,28.295666,-6.957726, + -25.094645,28.412933,-6.954068,-24.892967,29.219727,-8.291767,-24.877705,29.111551,-8.295141,-24.922792,29.105593,-8.307832, + -25.976870,34.145931,-5.952044,-26.306549,34.109489,-6.016573,-24.367363,30.303885,-9.913214,-25.189964,30.085054,-6.879735, + -25.441216,30.011015,-6.926088,-25.482096,34.597054,-8.080795,-24.959597,34.633678,-9.773207,-24.607201,30.232622,-9.981974, + -25.257938,30.371101,-6.875918,-24.424871,30.558182,-9.910996,-24.823654,30.303255,-8.215525,-25.078827,30.228561,-8.288570, + -24.874527,30.528200,-8.213564,-25.407194,30.072121,-6.080486,-25.993992,34.396942,-5.939234,-25.658447,29.998081,-6.126839, + -25.018286,28.251236,-7.023146,-25.051409,28.242651,-6.897755,-24.761196,28.344145,-8.260139,3.890884,23.875084,1.007546, + 3.629078,23.735710,0.915969,0.098539,28.910217,0.376483,-0.111067,28.672853,0.341706,0.462289,28.832758,-1.540644, + 1.147383,29.236586,-2.930126,0.415077,29.008715,-0.621441,4.541730,24.049700,-2.529140,1.226121,27.148607,0.823557, + 2.539112,25.404398,1.050988,3.093103,25.521879,-1.077513,2.746075,25.463366,0.254220,2.170511,25.450314,0.981699, + 2.347861,25.252228,0.989900,2.740331,25.591036,-1.166492,2.917876,25.382696,-1.133330,3.543949,25.635265,-2.791194, + 3.178055,25.673319,-2.885769,2.347521,25.481976,0.173108,2.524871,25.283890,0.181309,3.345858,25.477921,-2.854294, + 3.726154,23.784443,0.316956,3.693266,23.775919,0.441454,0.469439,28.809296,-1.629544,2.452603,26.182386,-1.255094, + 2.518465,26.094893,-1.243686,2.915407,26.185211,-2.926214,2.845051,26.278673,-2.938401,2.064864,26.697468,-1.322257, + 2.130674,26.610044,-1.310857,2.546951,26.683462,-3.011946,2.477847,26.777163,-3.028648,2.343658,25.704321,0.100553, + 2.414534,25.610167,0.112830,2.308974,26.381254,-1.234225,2.243594,26.468107,-1.245550,1.404463,26.935625,-0.017603, + 1.475339,26.841471,-0.005326,2.292823,26.374662,-1.235763,2.227443,26.461515,-1.247088,4.183849,23.948145,-0.892062, + 4.572533,23.848778,-2.641754,3.751547,23.654747,0.393849,3.530792,23.910088,0.378070,4.361326,24.101431,-2.680807, + 3.972750,23.834223,0.466760,4.167531,23.855410,-0.915343,3.946582,24.121004,-0.956084,4.052323,23.999790,-0.908982, + 4.085211,24.008312,-1.033480,3.695984,24.530647,-1.039720,3.761847,24.443153,-1.028312,4.158788,24.533470,-2.710840, + 4.088432,24.626934,-2.723027,3.308245,25.045729,-1.106883,3.374055,24.958305,-1.095483,3.790333,25.031723,-2.796572, + 3.721228,25.125422,-2.813274,3.587039,24.052582,0.315927,3.657915,23.958427,0.328203,3.552355,24.729515,-1.018852, + 3.486975,24.816368,-1.030177,2.569272,25.395725,0.161789,2.624153,25.305252,0.215097,3.531118,24.718790,-1.021850, + 3.465737,24.805643,-1.033175,0.889493,28.900505,-3.150858,1.154050,27.155199,-0.013642,1.186938,27.163723,-0.138140, + 1.149326,27.913692,-1.480843,1.215188,27.826199,-1.469434,1.612130,27.916517,-3.151963,1.541774,28.009981,-3.164150, + 0.761587,28.428776,-1.548005,0.827397,28.341351,-1.536606,1.243675,28.414770,-3.237695,1.174570,28.508469,-3.254396, + 1.040382,27.435627,-0.125196,1.111257,27.341475,-0.112919,1.005697,28.112560,-1.459974,0.940317,28.199413,-1.471299, + 0.092877,28.664406,-0.214735,0.163752,28.570253,-0.202459,0.996751,28.115915,-1.459725,0.931370,28.202768,-1.471050, + 0.967339,28.231281,-1.459969,3.574537,23.623085,1.202441,3.353783,23.878426,1.186661,2.032867,27.222130,-3.081726, + 1.211881,27.028101,-0.046123,1.034530,27.226185,-0.054323,4.342759,23.994595,-0.859526,4.770625,24.006123,-2.578654, + 1.865064,27.417530,-3.113200,1.433084,27.207577,0.026788,2.230958,27.379477,-3.018626,1.682966,27.161869,-1.360015, + 1.505421,27.370211,-1.393177,1.858193,27.301054,-1.304198,1.034871,26.996439,0.762469,3.765787,23.775253,1.263529, + 0.857520,27.194525,0.754268,0.053383,28.691757,-0.301475,0.020260,28.683172,-0.176084,0.436309,28.800709,-1.504128, + -25.381725,28.465689,-7.093922,-25.078817,28.450447,-7.027826,-24.507898,22.193579,-7.266464,-24.227787,22.289692,-7.149047, + -23.801249,22.430912,-9.071461,-23.810133,22.423962,-10.672386,-24.297316,22.263109,-8.294361,-24.205820,28.620533,-10.493262, + -24.487209,24.419048,-6.838831,-24.810602,26.581890,-6.776190,-24.228317,26.707598,-8.896654,-24.605602,26.635387,-7.573851, + -25.015759,26.268656,-6.826890,-24.762289,26.334684,-6.780501,-24.441742,26.414890,-8.973597,-24.184284,26.481239,-8.900518, + -23.773176,26.821529,-10.609164,-23.965418,26.502216,-10.682332,-24.799797,26.281425,-7.626485,-24.546328,26.347454,-7.580096, + -23.723398,26.565636,-10.613533,-24.878456,28.453480,-7.602683,-24.911343,28.444956,-7.478185,-23.752300,22.454000,-9.146132, + -24.233887,25.729002,-9.018724,-24.249262,25.837976,-9.015326,-23.758196,25.950165,-10.671494,-23.741772,25.833757,-10.675124, + -24.143372,25.087467,-9.038734,-24.158733,25.196354,-9.035337,-23.665356,25.332811,-10.711743,-23.647749,25.216806,-10.719896, + -24.604534,26.094692,-7.674446,-24.621080,26.211960,-7.670788,-24.226488,25.484806,-8.988293,-24.211226,25.376631,-8.991667, + -24.399834,24.555140,-7.680123,-24.416380,24.672407,-7.676466,-24.210726,25.482178,-8.981130,-24.195463,25.374001,-8.984504, + -24.698599,28.537642,-8.890541,-23.966335,28.475140,-10.546949,-24.790405,28.259731,-7.513624,-25.120085,28.223291,-7.578152, + -24.284475,28.440615,-10.633911,-24.813322,28.552429,-7.497448,-24.490852,28.468502,-8.853018,-24.824703,28.433132,-8.944187, + -24.615437,28.425755,-8.861945,-24.582550,28.434278,-8.986443,-24.524151,27.786247,-8.954561,-24.539526,27.895222,-8.951162, + -24.048460,28.007410,-10.607329,-24.032036,27.891001,-10.610961,-24.433634,27.144712,-8.974570,-24.448997,27.253599,-8.971174, + -23.955620,27.390057,-10.647580,-23.938013,27.274050,-10.655733,-24.894798,28.151937,-7.610282,-24.911343,28.269205,-7.606624, + -24.516750,27.542051,-8.924129,-24.501488,27.433874,-8.927504,-24.664106,26.475792,-7.641327,-24.690565,26.582037,-7.596039, + -24.494621,27.540352,-8.915054,-24.479359,27.432175,-8.918427,-23.358168,22.578581,-10.672009,-24.313816,24.238298,-7.624013, + -24.280928,24.246822,-7.748511,-23.929642,23.572657,-9.085979,-23.945015,23.681631,-9.082581,-23.453951,23.793819,-10.738748, + -23.437527,23.677412,-10.742378,-23.839125,22.931122,-9.105989,-23.854486,23.040009,-9.102592,-23.361109,23.176468,-10.778998, + -23.343502,23.060461,-10.787150,-24.300289,23.938347,-7.741700,-24.316833,24.055614,-7.738042,-23.922241,23.328461,-9.055548, + -23.906979,23.220285,-9.058922,-24.102335,22.396936,-7.718303,-24.118879,22.514204,-7.714645,-23.917202,23.320997,-9.052344, + -23.901939,23.212822,-9.055718,-23.947027,23.206863,-9.068409,-25.001104,28.247202,-6.712622,-25.330784,28.210762,-6.777150, + -23.391598,24.405155,-10.673792,-24.214199,24.186325,-7.640313,-24.465450,24.112286,-7.686665,-24.506330,28.698322,-8.841372, + -23.983831,28.734947,-10.533785,-23.631435,24.333893,-10.742551,-24.282173,24.472372,-7.636495,-23.449106,24.659452,-10.671574, + -23.847889,24.404526,-8.976103,-24.103062,24.329832,-9.049148,-23.898762,24.629471,-8.974140,-24.431429,24.173391,-6.841063, + -25.018227,28.498213,-6.699811,-24.682682,24.099352,-6.887416,-24.042521,22.352507,-7.783723,-24.075644,22.343922,-7.658332, + -23.785431,22.445415,-9.020716,-19.458872,10.413449,-8.351492,-22.436031,12.818465,-9.153463,-22.378254,12.895275,-9.137630, + -19.401094,10.490259,-8.335660,-19.483660,10.412127,-8.254622,-22.503187,12.855786,-9.089452,-22.445408,12.932596,-9.073620, + -19.425880,10.488937,-8.238790,-18.998959,11.136670,-7.776915,-21.986197,13.614872,-8.898216,-21.928419,13.691682,-8.882383, + -18.941181,11.213481,-7.761082,-19.023746,11.135348,-7.680044,-22.053352,13.652193,-8.834205,-21.995573,13.729003,-8.818372, + -18.965967,11.212158,-7.664212,-20.661383,8.888333,-8.358073,-23.597279,11.319705,-9.439554,-23.539499,11.396516,-9.423722, + -20.603603,8.965143,-8.342241,-20.686169,8.887012,-8.261203,-23.664433,11.357026,-9.375543,-23.606653,11.433837,-9.359711, + -20.628391,8.963821,-8.245371,-21.304504,8.071704,-8.408679,-24.291742,10.549905,-9.529980,-24.217129,10.649095,-9.509535, + -21.229891,8.170893,-8.388233,-21.329290,8.070381,-8.311809,-24.358896,10.587226,-9.465968,-24.284283,10.686416,-9.445523, + -21.254677,8.169571,-8.291363,-18.962454,11.209419,-7.802145,-21.280718,8.127536,-8.437395,-21.396572,8.220533,-8.465770, + -19.037069,11.269314,-7.820419,-18.987240,11.208097,-7.705275,-21.308973,8.126793,-8.324460,-21.424829,8.219790,-8.352835, + -19.061855,11.267991,-7.723549,-21.868137,13.605513,-8.822722,-24.186403,10.523629,-9.457971,-24.229662,10.571246,-9.531115, + -21.911396,13.653129,-8.895867,-21.935291,13.642834,-8.758711,-24.253557,10.560950,-9.393959,-24.296816,10.608567,-9.467104, + -21.978550,13.690450,-8.831856,-21.454573,13.209862,-8.412502,-23.772837,10.127978,-9.047752,-23.877405,10.211917,-9.073362, + -21.559141,13.293800,-8.438113,-21.479359,13.208540,-8.315632,-23.797623,10.126657,-8.950882,-23.902191,10.210594,-8.976492, + -21.583927,13.292478,-8.341242,-23.209778,10.370714,-10.924426,-21.132284,13.095560,-10.355658,-19.491230,11.807921,-9.953334, + -22.082018,9.001237,-8.573915,-19.974209,11.804423,-7.992779,-22.578146,8.409230,-10.759069,-23.515350,11.080317,-8.062531, + -23.562235,11.015846,-7.962184,-22.628256,8.341578,-10.653769,-22.714487,8.454528,-10.792063,-23.644938,11.107414,-8.104141, + -23.691822,11.042943,-8.003797,-22.764597,8.386875,-10.686762,-20.183805,12.233891,-7.277354,-22.578533,14.764802,-10.170617, + -22.661961,14.717165,-10.154515,-20.261209,12.176455,-7.263253,-20.160791,12.182158,-7.361744,-22.571959,14.738647,-10.213940, + -22.655388,14.691010,-10.197838,-20.238195,12.124722,-7.347642,-19.499775,12.944499,-7.247172,-21.919966,15.469732,-10.107203, + -21.976341,15.392851,-10.127193,-19.556150,12.867617,-7.267164,-19.447666,12.918634,-7.312842,-21.880039,15.452452,-10.153338, + -21.936417,15.375570,-10.173330,-19.504042,12.841752,-7.332833,-21.193392,8.154985,-8.258549,-23.130247,12.220667,-8.676778, + -23.042620,12.262129,-8.686312,-21.105762,8.196447,-8.268084,-21.189402,8.166512,-8.171745,-23.126257,12.232194,-8.589974, + -23.038628,12.273657,-8.599508,-21.101774,8.207975,-8.181280,-21.999365,7.665699,-8.167329,-24.006018,11.801554,-8.624319, + -23.918280,11.843519,-8.629783,-21.911629,7.707664,-8.172792,-21.998606,7.677045,-8.067978,-24.005257,11.812901,-8.524967, + -23.917521,11.854865,-8.530431,-21.910870,7.719010,-8.073441,-18.942787,9.028381,-8.964664,-22.128185,7.861171,-8.133696, + -22.150549,7.907260,-8.138788,-18.963604,9.074902,-8.971931,-18.943012,9.021647,-8.912199,-22.117758,7.840137,-8.048397, + -22.148140,7.901308,-8.047551,-18.973392,9.080143,-8.925381,-21.149052,16.118547,-9.944066,-24.143024,13.307538,-9.781496, + -24.195417,13.358958,-9.839753,-21.197065,16.169525,-10.004709,-21.198721,16.149956,-9.878339,-24.177595,13.351230,-9.711841, + -24.237223,13.411430,-9.759541,-21.256460,16.207588,-9.929158,-18.594631,11.080791,-7.149067,-22.175291,13.232722,-8.024078, + -22.151228,13.287521,-7.954442,-18.601934,11.098237,-7.067435,-18.564915,10.971113,-7.115930,-22.451712,13.447506,-8.085997, + -22.428955,13.500920,-8.015347,-18.572289,10.988729,-7.033506,-21.552040,12.322449,-7.561304,-21.422132,12.405510,-7.567433, + -21.560530,12.342730,-7.466406,-21.430622,12.425791,-7.472536,-22.149483,8.004098,-8.131022,-23.901201,11.624302,-8.537069, + -23.820494,11.662905,-8.542095,-22.098257,8.027620,-8.143072,-22.013790,7.724406,-8.099937,-23.990311,11.808220,-8.555392, + -23.909603,11.846824,-8.560418,-21.962564,7.747928,-8.111988,-23.576273,10.873191,-7.364967,-23.537111,10.831722,-7.510615, + -23.465498,10.926175,-7.371865,-23.449373,10.873688,-7.516078,-18.219248,11.381830,-9.693977,-18.256161,11.421811,-9.753231, + -18.198383,11.498622,-9.737398,-18.161469,11.458641,-9.678145,-19.933542,11.745788,-8.488589,-19.897734,11.812549,-8.611713, + -19.962061,11.867657,-8.505781,-19.944576,11.828221,-8.437876,-19.044502,9.981544,-9.956940,-19.081417,10.021525,-10.016192, + -19.023638,10.098335,-10.000360,-18.986725,10.058354,-9.941107,-20.666647,10.844422,-8.164060,-20.703562,10.884403,-8.223312, + -20.645782,10.961213,-8.207479,-20.608870,10.921232,-8.148228,-19.944229,9.129738,-10.198783,-19.981144,9.169720,-10.258036, + -19.923365,9.246530,-10.242203,-19.886452,9.206549,-10.182950,-21.285839,9.867503,-8.878588,-21.322752,9.907484,-8.937840, + -21.264973,9.984294,-8.922009,-21.228060,9.944313,-8.862755,-20.703629,8.120201,-10.406873,-20.740543,8.160182,-10.466125, + -20.667994,8.256628,-10.446245,-20.631081,8.216647,-10.386992,-21.587168,9.573297,-8.868397,-21.557119,9.570595,-8.953527, + -21.499340,9.647405,-8.937695,-21.529388,9.650106,-8.852564,-19.828814,11.904854,-8.014330,-22.147079,8.822971,-8.649580, + -22.221695,8.882866,-8.667854,-19.903431,11.964748,-8.032604,-19.874910,11.903049,-7.832028,-22.193176,8.821166,-8.467278, + -22.267792,8.881062,-8.485553,-19.949528,11.962944,-7.850303,-20.777977,12.669132,-8.258330,-23.096243,9.587249,-8.893580, + -23.174139,9.645735,-8.893043,-20.851730,12.725628,-8.263264,-20.787300,12.655807,-8.159661,-23.105566,9.573924,-8.794912, + -23.183462,9.632409,-8.794374,-20.861053,12.712302,-8.164596,-19.331387,11.651079,-8.928701,-19.345144,11.666855,-8.951468, + -19.348125,11.722124,-8.911366,-19.334366,11.706348,-8.888600,-19.538559,11.132637,-8.513148,-19.570042,11.133035,-8.446756, + -20.071259,10.604176,-9.017406,-20.086899,10.621961,-9.043203,-20.095289,10.677879,-8.999167,-20.079649,10.660094,-8.973371, + -20.515911,10.539800,-8.870461,-20.462677,10.638240,-8.879309,-20.819479,9.652989,-9.341128,-20.839087,9.675473,-9.373574, + -20.843334,9.754242,-9.316422,-20.978842,9.704448,-9.229193,-21.601131,9.505516,-9.060984,-21.542574,9.542747,-9.121444, + -21.483471,9.641535,-9.090336,-21.534988,9.606528,-9.032770,-21.103935,8.897012,-9.711654,-21.093332,8.889391,-9.676539, + -21.145304,8.915081,-9.619686,-21.155907,8.922702,-9.654800,-20.996935,9.574185,-9.215810,-19.865429,10.496126,-9.329553, + -21.076656,9.439732,-9.258501,-19.807652,10.572936,-9.313720,-20.830624,9.718283,-9.360680,-20.809935,9.695213,-9.329334, + -20.895895,9.665356,-9.294574,-20.916582,9.688425,-9.325918,-20.881063,10.471687,-8.923149,-20.875187,10.453232,-8.904851, + -20.939829,10.301007,-8.931951,-20.945705,10.319463,-8.950249,-20.056213,10.670851,-9.038122,-20.039715,10.652601,-9.013201, + -20.103001,10.635545,-8.984206,-20.119499,10.653794,-9.009128,-20.071663,11.477927,-8.663240,-20.055685,11.460111,-8.639032, + -20.122074,11.437051,-8.612185,-20.138052,11.454867,-8.636394,-19.331001,11.654966,-8.970781,-19.302074,11.676085,-8.959635, + -19.351509,11.674058,-8.875074,-19.380436,11.652940,-8.886221,-19.690805,12.042795,-9.173533,-19.718372,12.035923,-9.082121, + -21.100853,8.842440,-9.708307,-21.072262,8.875194,-9.715549,-21.120844,8.934507,-9.624245,-21.149172,8.901509,-9.618056, + -21.747261,9.392639,-9.776180,-21.721699,9.428206,-9.771255,-21.731718,9.422019,-9.674559,-21.757280,9.386452,-9.679484, + -20.386333,12.316518,-7.002261,-20.273453,12.003992,-7.729052,-20.280493,11.865076,-7.661755,-20.439327,12.339013,-7.080839, + -21.368313,12.739864,-7.386719,-21.116798,12.643290,-7.808194,-21.166975,12.758096,-7.824399,-21.281012,12.707324,-7.358284, + -23.554298,10.618868,-8.607618,-23.494535,10.566671,-8.601830,-23.511986,10.531658,-8.597982,-23.528021,10.878289,-7.483436, + -23.440069,10.820464,-7.476605,-23.485708,10.791080,-7.473800,-21.157276,12.698463,-7.877521,-21.393772,12.664037,-7.395329, + -21.126497,12.702922,-7.755072,-21.306471,12.631497,-7.366895,-20.397999,13.144367,-8.822240,-20.389313,13.102389,-8.845252, + -20.320982,13.045708,-8.829939,-20.316734,13.109434,-8.782276,-23.424507,10.130318,-10.937811,-21.612024,13.809289,-9.084450, + -21.633793,13.906238,-9.256048,-23.448267,10.205392,-11.108620,-23.345167,10.159544,-11.047855,-21.524857,13.858188,-9.192801, + -19.012527,11.206166,-7.770504,-19.073854,11.255642,-7.786724,-20.208227,8.744934,-10.173212,-20.574980,8.647614,-10.055840, + -20.184385,8.782415,-10.181247,-20.178120,8.775487,-10.159144,-20.509384,9.251575,-9.917484,-20.956024,9.028508,-9.641754, + -20.523863,9.198432,-9.944821,-20.517363,9.191314,-9.922845,-20.125710,9.131977,-10.051980,-20.135868,9.143610,-10.070583, + -20.158705,9.157406,-10.035856,-20.584728,8.658568,-10.074834,-20.537609,8.826756,-10.014712,-20.547533,8.838197,-10.033442, + -20.516325,8.810757,-10.049827,-20.603432,8.617514,-10.073820,-21.148315,9.768593,-9.677619,-21.224226,9.829527,-9.696208, + -21.196720,9.904722,-9.562061,-21.120810,9.843788,-9.543471,-21.355654,9.754795,-8.892326,-21.431564,9.815729,-8.910916, + -21.343512,9.894155,-9.013398,-21.267601,9.833221,-8.994809,-20.842300,10.214037,-9.467155,-20.918211,10.274971,-9.485744, + -20.830160,10.353396,-9.588226,-20.754250,10.292462,-9.569637,-20.978014,10.218197,-8.915457,-21.053925,10.279130,-8.934046, + -21.026421,10.354325,-8.799898,-20.950510,10.293392,-8.781309,-21.720961,13.857339,-9.147696,-20.190754,10.803737,-10.194711, + -20.266796,10.864248,-10.210753,-20.189920,10.966448,-10.189688,-20.113878,10.905935,-10.173645,-20.675400,10.751585,-8.402866, + -20.751442,10.812097,-8.418910,-20.644291,10.915911,-8.516159,-20.568249,10.855399,-8.500116,-19.750727,11.388707,-10.074134, + -19.826769,11.449219,-10.090178,-19.749891,11.551418,-10.069112,-19.673849,11.490907,-10.053068,-20.168171,11.387260,-8.390487, + -20.244213,11.447773,-8.406530,-20.197609,11.548357,-8.267150,-20.121569,11.487845,-8.251106,-22.564875,12.963149,-10.205989, + -22.513241,12.931698,-10.244868,-22.534355,12.846642,-10.195231,-22.585991,12.878094,-10.156352,-22.359125,12.686644,-9.675694, + -22.307489,12.655192,-9.714574,-22.372337,12.629722,-9.788654,-22.423973,12.661173,-9.749775,-22.866940,12.542717,-10.224017, + -22.815306,12.511266,-10.262897,-22.880154,12.485795,-10.336978,-22.931787,12.517246,-10.298098,-22.713821,12.314700,-9.820304, + -22.662186,12.283248,-9.859183,-22.683302,12.198195,-9.809546,-22.734938,12.229645,-9.770667,-19.636383,11.651624,-9.771106, + -19.789581,11.774597,-9.808626,-19.670952,11.932302,-9.776119,-19.517754,11.809328,-9.738599,-19.667492,11.673524,-9.572305, + -19.820690,11.796497,-9.609826,-19.720524,11.929657,-9.582378,-19.567326,11.806683,-9.544858,-21.875563,8.988907,-9.300024, + -22.016745,9.102235,-9.334602,-21.935949,9.214871,-9.295332,-21.794767,9.101543,-9.260755,-21.921247,8.986470,-9.121480, + -22.062429,9.099798,-9.156057,-21.960491,9.235314,-9.128124,-21.819309,9.121986,-9.093547,-22.017315,9.033710,-9.050200, + -22.228994,9.203627,-9.102044,-22.155874,9.300832,-9.082008,-21.944195,9.130914,-9.030165,-22.052498,9.031832,-8.912691, + -22.264179,9.201750,-8.964535,-22.186798,9.304620,-8.943331,-21.975117,9.134703,-8.891487,-22.134604,9.169280,-9.318186, + -22.346283,9.339198,-9.370030,-22.290615,9.418431,-9.337645,-22.078934,9.248513,-9.285801,-22.169788,9.167403,-9.180677, + -22.381468,9.337321,-9.232521,-22.304657,9.439434,-9.211473,-22.092976,9.269517,-9.159629,-21.600010,9.280035,-9.455403, + -21.755239,9.073675,-9.497938,-21.809702,9.117393,-9.511277,-21.654474,9.323752,-9.468741,-21.632551,9.291894,-9.283668, + -21.798433,9.071371,-9.329123,-21.852898,9.115089,-9.342462,-21.687016,9.335612,-9.297007,-21.421907,10.373633,-9.865836, + -21.256140,10.513580,-10.021256,-21.244543,10.524777,-9.983627,-20.688667,10.758126,-10.196101,-20.700262,10.746929,-10.233730, + -20.518932,10.714252,-10.235353,-21.210192,11.159573,-10.173414,-21.221788,11.148376,-10.211044,-21.276031,11.305142,-10.215335, + -21.309704,10.692885,-10.029531,-21.319162,10.683753,-10.060225,-21.339115,10.735916,-10.069595,-21.329657,10.745049,-10.038902, + -20.863041,10.938061,-10.215146,-20.872499,10.928928,-10.245838,-20.849264,10.877912,-10.237820,-20.839806,10.887043,-10.207127, + -21.257833,11.197815,-10.207143,-21.267292,11.188683,-10.237836,-21.216625,11.204001,-10.258008,-21.207167,11.213134,-10.227314, + -20.916542,10.569371,-10.135006,-20.926001,10.560238,-10.165699,-20.974936,10.540783,-10.144831,-20.965477,10.549915,-10.114137, + -23.911390,10.671489,-10.072893,-23.857292,10.641084,-10.112996,-23.830837,10.736806,-10.154218,-23.884937,10.767211,-10.114115, + -24.111891,10.990818,-10.578859,-24.072855,10.969212,-10.608742,-24.003681,10.995070,-10.531336,-24.042717,11.016677,-10.501452, + -23.611132,11.120214,-10.017515,-23.557034,11.089809,-10.057618,-23.492332,11.110168,-9.981907,-23.546431,11.140574,-9.941804, + -23.777884,11.358608,-10.408551,-23.738848,11.337002,-10.438435,-23.716866,11.427225,-10.481352,-23.755901,11.448832,-10.451469, + -22.158758,12.492811,-8.585446,-23.492487,9.570053,-9.023764,-23.356131,9.541540,-8.979979,-23.536472,9.509567,-8.929621, + -23.400116,9.481054,-8.885836,-23.413900,10.047591,-8.570414,-23.414661,10.036245,-8.669765,-23.326162,10.089557,-8.575877, + -23.326923,10.078211,-8.675228,-19.827776,8.870464,-8.510436,-19.815342,8.891090,-8.599365,-19.836159,8.937609,-8.606631, + -22.204977,14.889601,-10.120723,-22.326799,14.990591,-10.103814,-22.259436,14.947420,-10.189505,-20.201933,11.584660,-7.203575, + -20.226072,11.609538,-7.276173,-20.175854,11.692193,-7.264545,-20.151716,11.667314,-7.191947,-21.419353,12.363165,-6.061957, + -21.143723,11.995031,-6.820983,-21.360844,12.435838,-6.089957,-21.122868,12.118574,-6.884696,-21.356812,12.326074,-6.027535, + -21.077332,12.089154,-6.825258,-21.189259,12.024451,-6.880422,-21.298302,12.398746,-6.055535,-21.834883,13.759155,-9.018778, + -21.821627,13.682028,-9.037421,-21.915733,13.682371,-9.103406,-21.928989,13.759499,-9.084762,-22.958326,13.818963,-7.606533, + -22.576233,13.446653,-8.161568,-23.004478,13.801821,-7.690586,-22.675451,13.372686,-8.227675,-22.943020,13.894281,-7.630298, + -22.651083,13.446527,-8.248304,-22.600601,13.372811,-8.140938,-22.989170,13.877139,-7.714352,-21.182665,8.265189,-8.153536, + -21.197163,8.329649,-8.277143,-21.175415,8.283388,-8.271183,-19.190508,10.660426,-6.986005,-22.492214,13.528093,-8.238365, + -22.462067,13.587369,-8.167189,-19.160358,10.719702,-6.914827,-19.282379,10.578630,-6.878973,-22.562046,13.481253,-8.106760, + -22.521370,13.561229,-8.010725,-19.252230,10.637907,-6.807795,-20.461714,11.846889,-7.635319,-20.386961,11.898111,-7.772659, + -20.421038,11.926865,-7.539285,-20.356812,11.957387,-7.701482,-19.837650,11.792771,-7.466764,-19.889042,11.714141,-7.357871, + -19.881155,11.695303,-7.446016,-19.845499,11.811518,-7.379047,-20.341171,11.905019,-7.726653,-20.479870,12.269941,-7.073269, + -20.212776,11.964050,-7.664154,-20.426878,12.247446,-6.994691,-19.671638,12.461709,-8.507974,-19.641533,12.339168,-8.567342, + -19.559835,12.306350,-8.525661,-19.557436,12.371749,-8.478871,-21.373877,12.676327,-7.782791,-21.271290,12.784765,-7.846257, + -21.301437,12.725490,-7.917434,-21.333200,12.756304,-7.686756,-21.363071,8.626191,-8.291052,-23.005898,12.010367,-8.579431, + -22.927608,12.046803,-8.584127,-21.321527,8.643824,-8.304792,-21.220007,8.275931,-8.166697,-23.096638,12.192825,-8.597531, + -23.018349,12.229260,-8.602228,-21.179752,8.292913,-8.180693,-22.535112,11.054682,-7.717543,-22.496407,11.012805,-7.863130, + -22.427656,11.104692,-7.723989,-22.411297,11.052414,-7.868235,-23.434330,10.823873,-7.508330,-23.476517,10.919098,-7.520815, + -23.425726,10.829374,-7.426693,-23.459719,10.920553,-7.422247,-22.114971,11.106570,-7.879625,-22.131771,11.105114,-7.978194, + -22.148964,11.197749,-7.875179,-22.165764,11.196293,-7.973747,-20.587635,11.810839,-8.796586,-20.604433,11.809382,-8.895155, + -20.621626,11.902018,-8.792140,-20.638426,11.900561,-8.890708,-23.511745,13.996417,-9.909484,-23.454580,13.938706,-9.842895, + -23.566154,14.049485,-9.821115,-21.693274,9.382947,-9.025519,-22.595095,9.829472,-9.233480,-21.839464,9.207978,-9.002074, + -22.616432,9.789857,-9.006864,-21.889185,9.210157,-8.791918,-22.696873,9.703310,-8.970003,-22.448191,10.447064,-8.696394, + -22.438868,10.460389,-8.795063,-22.524927,10.504992,-8.697388,-22.515604,10.518317,-8.796057,-20.579548,9.073156,-8.201049, + -20.551291,9.073900,-8.313984,-20.679354,9.153330,-8.225492,-20.651098,9.154074,-8.338428,-21.392696,9.868328,-8.303613, + -21.346600,9.870132,-8.485914,-21.467312,9.928223,-8.321888,-21.421215,9.930028,-8.504189,-22.885239,11.307976,-8.804429, + -22.860453,11.309299,-8.901299,-22.989807,11.391914,-8.830040,-22.965021,11.393236,-8.926910,-23.191011,11.849632,-9.183433, + -23.123857,11.812311,-9.247444,-23.234270,11.897249,-9.256577,-23.167116,11.859928,-9.320589,-21.963150,9.121511,-8.780455, + -22.757812,9.623966,-8.762726,-22.052708,9.070290,-8.582661,-24.400789,11.010562,-11.101042,-22.552841,10.406622,-8.821320, + -22.519850,10.482109,-8.708617,-24.086946,10.154459,-9.980387,-23.764408,11.377448,-10.463545,-23.562090,11.093524,-10.012857, + -22.588263,12.897777,-10.200220,-22.495062,10.483432,-8.805488,-19.914310,8.911372,-8.494735,-23.889095,10.693934,-10.095325, + -24.070869,11.000823,-10.536599,-23.081705,11.162620,-9.437920,-23.768320,11.957348,-10.956362,-22.783838,13.213583,-10.667602, + -19.131634,11.178832,-7.802557,-22.577627,10.405299,-8.724449,-22.506346,12.514244,-9.733525,-24.352961,11.029195,-11.116970, + -21.517200,9.698495,-8.565994,-21.541988,9.697172,-8.469124,-24.034182,10.175238,-9.997816,-23.740913,11.387932,-10.470511, + -23.540749,11.102487,-10.022426,-20.337963,11.162673,-8.177790,-20.420528,11.084540,-8.096751,-20.362751,11.161350,-8.080919, + -22.577772,12.869574,-10.224513,-21.574980,9.621685,-8.581827,-20.395742,11.085862,-8.193622,-20.037144,9.694651,-8.378770, + -20.156914,9.768046,-8.293142,-20.064396,9.693741,-8.270483,-20.129662,9.768957,-8.401429,-19.569841,10.493312,-8.339310, + -19.511898,10.424737,-8.215860,-23.861696,10.711937,-10.104308,-24.041010,11.019349,-10.542090,-23.049013,11.158413,-9.459751, + -23.737995,11.955400,-10.975350,-22.776201,13.180201,-10.693629,-19.070305,11.129356,-7.786335,-21.599766,9.620362,-8.484957, + -22.491476,12.487874,-9.759254,-19.347790,12.218637,-8.463470,-19.358698,12.250370,-8.536588,-19.288609,12.315617,-8.518728, + -19.277699,12.283884,-8.445612,-20.341564,12.822632,-7.416195,-20.292763,12.887202,-7.470397,-20.276377,12.775560,-7.413579, + -20.150211,12.722141,-8.047359,-20.248209,12.691572,-8.120999,-20.227575,12.840131,-7.467780,-20.179844,12.760332,-8.111666, + -20.218576,12.653381,-8.056692,-20.151310,10.295587,-7.141994,-20.223099,10.330822,-7.150765,-20.180882,10.405254,-7.197308, + -20.109093,10.370019,-7.188537,-19.642433,10.691236,-5.510401,-19.912958,10.633567,-6.139550,-19.644360,10.784710,-5.537746, + -19.937162,10.754995,-6.164652,-19.581957,10.677492,-5.561641,-19.866938,10.715746,-6.164401,-19.983183,10.672816,-6.139801, + -19.583883,10.770966,-5.588987,-19.820814,10.843777,-5.800203,-19.827610,10.751256,-5.777586,-19.763529,10.732574,-5.816528, + -19.756731,10.825095,-5.839146,-22.263605,8.841529,-8.591578,-22.321806,8.891270,-8.566870,-22.260532,8.966635,-8.574256, + -22.202332,8.916894,-8.598964,-22.547758,9.306119,-9.728045,-22.864866,9.256614,-10.139674,-22.666512,9.281478,-9.692673, + -22.747427,9.287848,-10.173537,-22.605888,9.230708,-9.707481,-22.608379,9.356889,-9.713236,-22.812910,9.328876,-10.174266, + -22.799381,9.215585,-10.138945,-23.302710,12.096524,-9.307095,-23.327810,12.026364,-9.276780,-23.254993,11.980951,-9.321685, + -23.229893,12.051111,-9.351999,-22.328550,11.886155,-8.375225,-22.240271,11.962738,-7.866512,-22.431028,11.860808,-8.305824, + -22.136709,11.981281,-7.936120,-22.408678,11.929655,-8.340933,-22.350901,11.817308,-8.340117,-22.155163,11.924579,-7.886965, + -22.221817,12.019441,-7.915668,-21.258566,10.847973,-7.783285,-21.167892,10.920909,-7.810191,-21.218973,10.618621,-8.211662, + -21.316158,10.561082,-8.155046,-21.240635,10.925652,-7.835842,-21.237131,10.549181,-8.145803,-21.185823,10.843230,-7.757634, + -21.297998,10.630521,-8.220903,-21.761288,9.884595,-9.496555,-21.704466,9.833029,-9.472385,-21.760502,9.788045,-9.436620, + -21.817324,9.839611,-9.460790,-23.189415,9.637104,-9.222852,-23.205772,9.689382,-9.078606,-23.274523,9.597496,-9.217747, + -23.313229,9.639372,-9.072160,-21.615734,8.365467,-10.585196,-23.445969,10.274551,-11.128356,-23.524260,10.238115,-11.123658, + -21.679642,8.278467,-10.543328,-21.212801,8.825979,-9.681432,-21.190731,8.799086,-9.622733,-21.093111,8.811621,-9.649473, + -21.115181,8.838515,-9.708173,-20.781130,8.461401,-10.096305,-20.754168,8.434353,-10.039798,-20.744812,8.526944,-10.006741, + -20.771774,8.553991,-10.063249,-20.800911,9.178582,-9.673853,-20.778841,9.151689,-9.615154,-20.780636,9.246485,-9.577468, + -20.802704,9.273378,-9.636168,-20.457516,8.826078,-10.084102,-20.430553,8.799032,-10.027594,-20.340782,8.795785,-10.066831, + -20.367744,8.822832,-10.123339,-20.785959,9.078357,-9.931696,-20.765739,9.058239,-9.869728,-20.667801,9.048759,-9.896245, + -20.686203,9.067408,-9.959189,-20.342579,8.588419,-10.206142,-20.327242,8.572196,-10.158373,-20.317188,8.654342,-10.141533, + -20.331423,8.669674,-10.189895,-20.372522,9.393559,-9.956544,-20.354120,9.374911,-9.893600,-20.350254,9.482978,-9.869492, + -20.368654,9.501625,-9.932437,-20.081007,8.933436,-10.183199,-20.066772,8.918103,-10.134838,-19.995520,8.920444,-10.150808, + -20.009754,8.935778,-10.199169,-22.725382,12.276277,-9.842478,-22.875792,12.505111,-10.246551,-22.706539,12.255667,-9.867145, + -22.860510,12.485744,-10.267861,-24.230286,10.634285,-10.676748,-24.273624,10.600206,-10.638579,-24.157440,10.322783,-10.228934, + -24.135914,10.413372,-10.350019,-19.595924,10.492206,-8.236439,-19.485815,10.425842,-8.318731,-20.421312,9.402475,-9.907924, + -20.458227,9.442456,-9.967176,-20.479092,9.325665,-9.923756,-20.516005,9.365646,-9.983009,-20.968254,8.981594,-9.679830, + -20.958506,8.970640,-9.660835,-20.582693,8.993898,-9.839614,-20.596069,9.007951,-9.853882,-20.615738,9.010417,-9.814503, + -20.953571,8.637871,-9.836447,-20.966949,8.651924,-9.850715,-20.935499,8.633293,-9.876387,-23.903511,11.181817,-10.508655, + -23.650761,10.902374,-10.009510,-23.919863,11.190739,-10.493527,-23.941483,11.158987,-10.517120,-23.703423,10.894859,-10.040289, + -23.687071,10.885937,-10.055415,-23.653061,11.259607,-10.239936,-23.666159,11.264678,-10.220374,-23.642088,11.229603,-10.208648, + -23.949883,10.846295,-10.314607,-23.966856,10.855357,-10.300264,-23.970383,10.877858,-10.338470,-22.432156,10.002129,-9.273610, + -21.596350,9.419090,-9.302808,-22.371864,10.086899,-9.560303,-21.446186,9.605523,-9.304895,-22.205296,10.261010,-9.570187, + -21.368717,9.632553,-9.532614,-22.170956,10.327703,-9.797760,-21.268860,9.758244,-9.528385,-22.088448,10.397426,-9.796439, + -21.172689,9.785098,-9.833040,-21.970261,10.446243,-10.078269,-20.971346,10.053271,-9.776200,-21.823345,10.655828,-10.025220, + -20.514790,10.479014,-10.244967,-21.499216,11.197103,-10.360559,-20.334330,10.708147,-10.199787,-21.023710,11.687637,-10.367943, + -18.074598,11.797329,-10.070235,-18.118893,11.841140,-10.121134,-18.061115,11.917950,-10.105301,-18.016819,11.874139,-10.054403, + -20.564226,9.165728,-8.215657,-20.625555,9.215202,-8.231878,-20.567776,9.292013,-8.216045,-20.506447,9.242537,-8.199825, + -21.756729,8.438782,-10.661822,-23.355228,10.092094,-11.110255,-23.433519,10.055658,-11.105557,-21.822380,8.348956,-10.619345, + -21.236670,8.311429,-8.271998,-21.219250,8.314728,-8.155430,-19.427761,13.866180,-9.911586,-19.508528,13.891438,-9.963384, + -19.453220,13.821629,-9.969260,-19.504074,13.925376,-9.931849,-22.243452,14.908052,-10.069834,-23.493055,13.957159,-9.792006, + -20.832747,14.764362,-10.383552,-20.812307,14.721778,-10.388346,-20.902399,14.741430,-10.446588,-20.922838,14.784014,-10.441793, + -18.723907,13.282888,-9.753187,-18.673101,13.196981,-9.777006,-18.598217,13.152106,-9.747022,-18.610060,13.192299,-9.724695, + -23.726498,10.321274,-8.976673,-20.911619,12.556890,-8.222365,-20.216425,10.843856,-10.152051,-20.637264,10.821404,-8.507328, + -19.768105,11.439849,-10.029202,-20.188944,11.417397,-8.384480,-21.324194,9.831568,-8.946749,-20.711252,10.832893,-8.167575, + -20.993292,10.273004,-8.851029,-21.565298,9.050678,-10.521668,-21.147346,9.841002,-9.637903,-20.815853,10.282470,-9.544495, + -23.157282,10.421217,-10.917966,-21.186634,13.036769,-10.378028,-19.571318,11.768474,-9.982026,-22.072388,9.085151,-8.564612, + -20.058323,11.763714,-8.009164,-23.527607,10.176166,-10.998575,-23.676390,10.372695,-8.957457,-20.980974,12.504334,-8.235136, + -20.247120,10.870070,-10.167209,-20.670622,10.847476,-8.512082,-19.798800,11.466063,-10.044360,-20.222300,11.443469,-8.389234, + -21.357170,9.857659,-8.952987,-20.762880,10.835372,-8.175058,-21.026278,10.299095,-8.857238,-21.553280,9.133673,-10.525123, + -21.179205,9.867154,-9.648514,-20.847715,10.308621,-9.555091,-21.437437,10.357917,-9.923033,-20.534462,10.698536,-10.292551, + -21.291559,11.289426,-10.272532,-21.550768,11.788293,-10.501429,-21.544077,11.374077,-10.505371,-21.916624,10.645468,-10.488696, + -22.589081,9.962694,-10.710884,-22.740427,13.328150,-10.684178,-22.787355,13.262929,-10.680178,-22.740385,13.227554,-10.709582, + -22.693457,13.292775,-10.713583,-22.207401,12.760280,-9.673245,-22.301325,12.508150,-9.242902,-22.308739,12.735304,-9.676629, + -22.176807,12.515732,-9.261658,-22.260736,12.796175,-9.655121,-22.255404,12.699408,-9.694754,-22.224773,12.455195,-9.264196, + -22.253359,12.568687,-9.240364,-24.270571,11.581496,-11.275956,-24.325994,11.535617,-11.240189,-24.285185,11.480191,-11.250057, + -24.229761,11.526071,-11.285825,-19.629654,11.383409,-9.116673,-21.384594,7.715781,-10.497986,-21.466330,7.787604,-10.532712, + -19.735779,11.475101,-9.156647,-19.702898,11.373392,-8.988191,-21.438099,7.716786,-10.369970,-21.519835,7.788610,-10.404696, + -19.809023,11.465086,-9.028166,-20.376244,9.114225,-10.002201,-20.319944,9.113167,-10.136905,-20.452927,9.181609,-10.034781, + -20.396627,9.180551,-10.169484,-19.896908,10.116592,-6.660032,-21.321762,13.759223,-8.603071,-21.221498,13.809883,-8.582420, + -19.803158,10.234022,-6.718607,-19.930014,10.189713,-6.536422,-21.353018,13.766050,-8.468060,-21.252758,13.816709,-8.447409, + -19.836264,10.307141,-6.594997,-20.726267,12.277742,-7.929578,-20.693377,12.270559,-8.071643,-20.632202,12.325271,-7.910204, + -20.599312,12.318088,-8.052269,-18.363384,12.280315,-7.394537,-21.904804,13.761842,-9.300563,-21.881685,13.885995,-9.245829, + -18.353827,12.386509,-7.359312,-18.458660,12.252731,-7.285527,-21.979733,13.728987,-9.188499,-21.956614,13.853140,-9.133766, + -18.449102,12.358925,-7.250301,-20.466045,13.149471,-8.420632,-20.387203,13.184042,-8.538549,-20.440756,13.276890,-8.366365, + -20.361912,13.311460,-8.484282,-22.629339,11.327407,-10.629354,-22.545855,11.358160,-10.745147,-22.726065,11.370420,-10.686362, + -22.642580,11.401174,-10.802155,-21.669662,7.887288,-7.547462,-19.275150,11.302579,-6.174354,-19.334417,11.386208,-6.344098, + -21.737553,7.951821,-7.710566,-21.640209,7.873383,-7.682361,-19.231838,11.303613,-6.315253,-19.377729,11.385175,-6.203198, + -21.767006,7.965725,-7.575667,-20.530371,9.367511,-7.431094,-20.499376,9.352880,-7.573040,-20.621696,9.441099,-7.457555, + -20.590704,9.426469,-7.599501,-23.235456,10.933344,-8.885561,-23.152891,11.011477,-8.966599,-23.177677,11.010154,-8.869729, + -23.210670,10.934666,-8.982431,-22.076193,12.570944,-8.666484,-22.133972,12.494134,-8.682317,-22.100981,12.569622,-8.569613, + -21.541428,13.156311,-8.296662,-21.516642,13.157633,-8.393533,-21.483648,13.233121,-8.280830,-21.458862,13.234444,-8.377701, + -23.951260,10.177381,-8.965243,-23.891550,10.146850,-9.035028,-23.876648,10.276570,-8.944798,-23.816936,10.246038,-9.014583, + -19.902344,10.536107,-9.388805,-21.016649,9.595760,-9.247519,-19.844564,10.612918,-9.372972,-21.096369,9.461307,-9.290211, + -19.746183,12.007086,-9.090916,-19.323040,2.813101,-9.324873,-18.395161,6.597909,-9.000824,-18.302568,6.573663,-8.982715, + -19.230450,2.788856,-9.306763,-19.343523,2.807886,-9.227133,-18.396599,6.654160,-8.918158,-18.304008,6.629914,-8.900047, + -19.250933,2.783640,-9.209023,-18.525217,2.542540,-8.729068,-17.508144,6.452368,-8.694577,-17.415554,6.428123,-8.676467, + -18.432627,2.518294,-8.710958,-18.545700,2.537324,-8.631328,-17.509584,6.508618,-8.611911,-17.416992,6.484373,-8.593801, + -18.453110,2.513079,-8.613217,-21.212576,3.259066,-9.377998,-20.218580,7.094407,-9.325240,-20.125990,7.070161,-9.307130, + -21.119986,3.234821,-9.359888,-21.233059,3.253850,-9.280258,-20.220020,7.150658,-9.242574,-20.127430,7.126412,-9.224463, + -21.140469,3.229605,-9.262148,-22.219870,3.510013,-9.451717,-21.202797,7.419841,-9.417227,-21.083229,7.388532,-9.393840, + -22.100302,3.478703,-9.428330,-22.240353,3.504797,-9.353976,-21.204237,7.476093,-9.334559,-21.084669,7.444783,-9.311173, + -22.120785,3.473488,-9.330590,-18.441929,2.546484,-8.746651,-22.156971,3.519293,-9.473289,-22.121643,3.665568,-9.458078, + -18.419176,2.640692,-8.736856,-18.462412,2.541268,-8.648911,-22.179857,3.512969,-9.359317,-22.144527,3.659245,-9.344108, + -18.439659,2.635476,-8.639114,-17.471722,6.324704,-8.648748,-21.186764,7.297514,-9.375384,-21.156534,7.374317,-9.427117, + -17.441492,6.401506,-8.700482,-17.473160,6.380955,-8.566082,-21.188204,7.353765,-9.292717,-21.157974,7.430567,-9.344451, + -17.442930,6.457757,-8.617816,-17.681988,5.692975,-8.419482,-21.397030,6.665785,-9.146120,-21.365143,6.797811,-9.132392, + -17.650101,5.825001,-8.405754,-17.702471,5.687759,-8.321741,-21.417513,6.660569,-9.048379,-21.385626,6.792594,-9.034651, + -17.670584,5.819785,-8.308014,-20.769606,6.780924,-11.014526,-17.473465,5.894537,-10.371065,-17.947361,3.834304,-10.580320, + -21.711384,4.606709,-9.265800,-18.332943,3.721675,-8.601509,-22.266108,5.400088,-11.371588,-20.518177,6.552021,-8.069743, + -20.605164,6.540003,-7.976400,-22.357784,5.388276,-11.273444,-22.282030,5.546522,-11.365848,-20.546705,6.687626,-8.077230, + -20.633692,6.675609,-7.983886,-22.373705,5.534710,-11.267704,-18.102303,3.881680,-7.788237,-16.624393,7.776501,-9.565128, + -16.704826,7.826147,-9.541575,-18.188711,3.922684,-7.769776,-18.131214,3.863874,-7.884022,-16.641159,7.772110,-9.613126, + -16.721592,7.821756,-9.589573,-18.217625,3.904879,-7.865561,-17.170370,3.558167,-7.763368,-15.711558,7.463965,-9.504202, + -15.803238,7.488087,-9.526604,-17.262051,3.582290,-7.785769,-17.165077,3.520113,-7.842239,-15.705596,7.434681,-9.560132, + -15.797276,7.458805,-9.582534,-17.256758,3.544235,-7.864641,-22.110033,3.405072,-9.314810,-19.274948,6.837279,-8.515847, + -19.198793,6.779702,-8.535192,-22.033876,3.347496,-9.334156,-22.105585,3.382532,-9.230218,-19.270500,6.814738,-8.431255, + -19.194345,6.757162,-8.450601,-22.029430,3.324956,-9.249563,-22.907475,3.890599,-9.154600,-20.036530,7.422477,-8.364469, + -19.960234,7.363898,-8.379838,-22.831179,3.832019,-9.169970,-22.905697,3.867397,-9.057344,-20.034752,7.399275,-8.267214, + -19.958458,7.340696,-8.282583,-22.829401,3.808817,-9.072714,-20.285189,1.975546,-10.291055,-22.791435,4.072230,-9.057232, + -22.759441,4.111589,-9.048428,-20.251947,2.014317,-10.284571,-20.295925,1.958763,-10.242053,-22.813219,4.031468,-8.981792, + -22.771730,4.082251,-8.962673,-20.255602,2.012298,-10.236897,-14.808800,7.003506,-9.382179,-18.645565,8.458669,-9.150178, + -18.617212,8.540931,-9.184994,-14.778729,7.082408,-9.420283,-14.808069,7.041622,-9.302679,-18.627596,8.487397,-9.067668, + -18.595457,8.576622,-9.089140,-14.777135,7.129018,-9.328036,-18.454227,1.995208,-8.222920,-18.009571,6.227285,-7.892193, + -17.956108,6.209117,-7.819786,-18.448944,1.986327,-8.139767,-18.542442,1.916395,-8.218823,-17.932148,6.571878,-7.851753, + -17.880585,6.554026,-7.778372,-18.537106,1.907428,-8.134862,-18.594116,5.192281,-7.757010,-18.462576,5.113364,-7.773797, + -18.587973,5.181957,-7.660343,-18.456432,5.103039,-7.677129,-22.672909,4.147185,-9.022276,-20.157312,7.236204,-8.337431, + -20.087128,7.182317,-8.351570,-22.628462,4.115007,-9.039930,-22.867079,3.908298,-9.075535,-20.029764,7.392610,-8.300405, + -19.959581,7.338724,-8.314543,-22.822634,3.876119,-9.093189,-20.791481,6.332672,-7.429119,-20.798788,6.321513,-7.584968, + -20.695152,6.258711,-7.448524,-20.722492,6.262933,-7.600338,-17.797693,2.479967,-10.680984,-17.772758,2.544383,-10.722226, + -17.680168,2.520137,-10.704117,-17.705101,2.455722,-10.662874,-18.324245,3.797738,-9.096542,-18.238035,3.826571,-9.208949, + -18.225986,3.876025,-9.083228,-18.259657,3.826480,-9.029528,-19.388556,2.715299,-11.034214,-19.363621,2.779715,-11.075457, + -19.271030,2.755469,-11.057346,-19.295965,2.691054,-11.016105,-19.479568,3.991458,-8.808577,-19.454634,4.055874,-8.849818, + -19.362043,4.031629,-8.831708,-19.386978,3.967213,-8.790466,-20.522369,3.228967,-11.244412,-20.497435,3.293382,-11.285655, + -20.404844,3.269137,-11.267545,-20.429779,3.204721,-11.226303,-20.561769,4.338348,-9.554785,-20.536835,4.402764,-9.596026, + -20.444244,4.378519,-9.577917,-20.469179,4.314103,-9.536674,-21.739311,3.547633,-11.482439,-21.714376,3.612048,-11.523681, + -21.598116,3.581604,-11.500941,-21.623051,3.517189,-11.459699,-20.957497,4.481978,-9.539555,-20.939356,4.477783,-9.627934, + -20.846766,4.453537,-9.609823,-20.864906,4.457733,-9.521444,-18.177742,3.640331,-8.632914,-21.892784,4.613141,-9.359551, + -21.870031,4.707349,-9.349755,-18.154989,3.734540,-8.623118,-18.215437,3.630308,-8.448956,-21.930481,4.603117,-9.175593, + -21.907726,4.697325,-9.165797,-18.192684,3.724516,-8.439160,-17.885164,4.842814,-8.518895,-21.600206,5.815623,-9.245533, + -21.581797,5.907017,-9.217301,-17.866251,4.931276,-8.497162,-17.909821,4.818779,-8.425010,-21.624863,5.791589,-9.151649, + -21.606453,5.882983,-9.123417,-17.890907,4.907241,-8.403276,-18.108143,3.352638,-9.662623,-18.098005,3.377182,-9.678476, + -18.053312,3.390924,-9.628624,-18.063448,3.366381,-9.612771,-18.699299,3.213919,-9.322507,-18.718483,3.223556,-9.252234, + -19.360529,3.606774,-9.797645,-19.349146,3.634593,-9.815616,-19.306572,3.652259,-9.760736,-19.317955,3.624441,-9.742764, + -19.624804,3.930352,-9.576490,-19.512650,3.925441,-9.576849,-20.510181,3.970439,-10.137394,-20.495735,4.005418,-10.159987, + -20.432037,4.025003,-10.088939,-20.543333,4.100008,-9.986770,-21.007399,4.519618,-9.734420,-20.943230,4.499679,-9.797311, + -20.831715,4.478884,-9.760544,-20.890570,4.494336,-9.701462,-21.278818,4.018726,-10.580760,-21.284107,3.996838,-10.550820, + -21.288723,4.037104,-10.480460,-21.283434,4.058993,-10.510399,-20.669083,4.060217,-9.995632,-19.340263,3.468482,-10.160879, + -20.820515,4.087986,-10.046161,-19.247673,3.444236,-10.142769,-20.454830,4.011580,-10.141032,-20.469234,3.975722,-10.119833, + -20.536478,4.029595,-10.074396,-20.522076,4.065454,-10.095595,-19.840273,4.237219,-9.563967,-19.855852,4.219724,-9.551270, + -20.018003,4.222953,-9.593486,-20.002424,4.240447,-9.606182,-19.292427,3.625854,-9.807602,-19.303776,3.597337,-9.790739, + -19.349169,3.638039,-9.753065,-19.337820,3.666555,-9.769928,-18.609049,3.859344,-9.287386,-18.620174,3.831650,-9.271013, + -18.672110,3.873258,-9.235921,-18.660984,3.900952,-9.252294,-18.100800,3.365315,-9.702263,-18.070257,3.345381,-9.693500, + -18.101030,3.364819,-9.602540,-18.131573,3.384753,-9.611302,-17.892326,3.890337,-9.745505,-17.918512,3.886828,-9.653498, + -21.326656,3.993338,-10.588867,-21.284224,3.983350,-10.595378,-21.260265,4.024683,-10.486142,-21.302710,4.034630,-10.480743, + -21.109419,4.797340,-10.411222,-21.066853,4.787813,-10.404893,-21.085245,4.767775,-10.311357,-21.127811,4.777302,-10.317687, + -18.140652,4.017031,-7.466165,-18.307671,3.991469,-8.247250,-18.441086,3.923862,-8.208454,-18.136692,4.093811,-7.525982, + -18.155462,5.150449,-7.546524,-18.095421,5.006520,-8.021820,-18.013010,5.100681,-8.004416,-18.149076,5.053284,-7.543887, + -20.900694,6.550456,-8.674105,-20.921925,6.475725,-8.691256,-20.961231,6.475981,-8.690765,-20.755497,6.324734,-7.551722, + -20.769583,6.222794,-7.574865,-20.816034,6.250260,-7.568383,-18.057545,5.082862,-8.069000,-18.233727,5.144823,-7.564277, + -18.050888,5.024338,-7.957235,-18.227339,5.047657,-7.561641,-17.244413,4.853413,-9.045728,-17.276215,4.835323,-9.077800, + -17.298569,4.748707,-9.088491,-17.243813,4.757436,-9.031252,-21.077332,6.876632,-11.029467,-17.154631,6.253095,-8.913221, + -17.062206,6.357590,-9.054137,-21.005440,6.973925,-11.173488,-21.006929,6.848811,-11.145778,-17.063343,6.225809,-9.025700, + -18.469433,2.580406,-8.706503,-18.450405,2.658263,-8.699553,-20.984341,3.299566,-11.239963,-21.241596,3.549851,-11.069868, + -20.939672,3.295839,-11.245317,-20.945089,3.281568,-11.226803,-20.684114,3.695760,-10.832934,-21.102716,3.922664,-10.518992, + -20.735630,3.694674,-10.866491,-20.741104,3.680156,-10.848184,-20.612305,3.348757,-11.065381,-20.604679,3.367362,-11.078808, + -20.605316,3.383400,-11.038063,-21.234364,3.567932,-11.083888,-21.068445,3.577421,-11.003249,-21.060875,3.595778,-11.016885, + -21.070423,3.561966,-11.044472,-21.279379,3.567647,-11.087034,-20.520350,4.396141,-10.368474,-20.497202,4.491982,-10.358506, + -20.429628,4.461367,-10.221019,-20.452776,4.365525,-10.230987,-20.691946,4.358236,-9.575391,-20.668798,4.454078,-9.565424, + -20.551189,4.436203,-9.666691,-20.574337,4.340362,-9.676659,-20.006460,4.248655,-10.143690,-19.983315,4.344497,-10.133722, + -19.865705,4.326622,-10.234990,-19.888853,4.230780,-10.244958,-20.110270,4.218843,-9.585890,-20.087122,4.314684,-9.575922, + -20.019550,4.284069,-9.438435,-20.042696,4.188227,-9.448402,-17.153494,6.384876,-8.941658,-19.130503,4.111751,-10.861709, + -19.108013,4.206846,-10.849357,-18.984818,4.174587,-10.825261,-19.007307,4.079492,-10.837613,-19.545591,4.027125,-9.053715, + -19.523104,4.122221,-9.041363,-19.374889,4.096332,-9.136644,-19.397379,4.001237,-9.148996,-18.425352,3.927103,-10.723786, + -18.402864,4.022199,-10.711434,-18.279669,3.989940,-10.687338,-18.302156,3.894844,-10.699690,-18.756248,3.833353,-9.023596, + -18.733759,3.928448,-9.011243,-18.635582,3.889819,-8.867769,-18.658072,3.794723,-8.880121,-18.229317,7.055177,-9.954105, + -18.231586,7.008009,-10.008301,-18.321335,6.979031,-9.972955,-18.319065,7.026198,-9.918760,-18.433918,6.620232,-9.543057, + -18.436188,6.573064,-9.597252,-18.480755,6.639855,-9.659658,-18.478485,6.687023,-9.605465,-18.735964,7.156765,-9.990439, + -18.738232,7.109598,-10.044634,-18.782799,7.176389,-10.107041,-18.780531,7.223556,-10.052846,-18.908949,6.821732,-9.680196, + -18.911219,6.774565,-9.734390,-19.000969,6.745587,-9.699045,-18.998699,6.792754,-9.644851,-18.166603,3.849368,-10.405932, + -18.119886,4.042793,-10.385820,-17.929783,3.993013,-10.348637,-17.976498,3.799588,-10.368750,-18.177980,3.831189,-10.204663, + -18.131264,4.024613,-10.184551,-17.970749,3.982581,-10.153156,-18.017466,3.789156,-10.173267,-21.568771,4.618837,-10.007099, + -21.525721,4.797091,-9.988564,-21.393064,4.760605,-9.945804,-21.436117,4.582352,-9.964338,-21.606525,4.609224,-9.826950, + -21.563473,4.787477,-9.808415,-21.400116,4.744700,-9.776464,-21.443167,4.566447,-9.794998,-21.612312,4.692766,-9.729338, + -21.547762,4.960029,-9.701548,-21.430588,4.929346,-9.678629,-21.495136,4.662083,-9.706419,-21.641388,4.685362,-9.590593, + -21.576839,4.952625,-9.562803,-21.452835,4.920154,-9.538548,-21.517384,4.652890,-9.566339,-21.518444,4.922561,-9.935093, + -21.453894,5.189825,-9.907303,-21.361504,5.163883,-9.872418,-21.426054,4.896620,-9.900208,-21.547520,4.915157,-9.796349, + -21.482971,5.182421,-9.768559,-21.359879,5.150188,-9.744482,-21.424427,4.882925,-9.772272,-21.174294,4.536098,-10.156656, + -21.423048,4.601236,-10.205311,-21.406441,4.670000,-10.198161,-21.157684,4.604862,-10.149507,-21.192915,4.522537,-9.982985, + -21.458744,4.592146,-10.034979,-21.442135,4.660910,-10.027829,-21.176308,4.591301,-9.975835,-20.081007,4.928407,-10.373344, + -19.869783,4.881464,-10.529552,-19.858004,4.865529,-10.493731,-19.388153,4.529857,-10.767885,-19.399933,4.545791,-10.803706, + -19.350069,4.374437,-10.849551,-19.257715,5.140489,-10.558655,-19.269495,5.156424,-10.594476,-19.152313,5.267646,-10.556601, + -19.731766,5.002171,-10.491230,-19.741373,5.015169,-10.520448,-19.702515,5.056009,-10.515058,-19.692907,5.043011,-10.485841, + -19.301256,4.759521,-10.714509,-19.310863,4.772518,-10.743726,-19.347149,4.729631,-10.750874,-19.337540,4.716632,-10.721656, + -19.241251,5.206649,-10.573539,-19.250860,5.219646,-10.602756,-19.213293,5.186896,-10.629679,-19.203686,5.173898,-10.600461, + -19.661879,4.637393,-10.698619,-19.671488,4.650391,-10.727837,-19.712067,4.679785,-10.701416,-19.702457,4.666787,-10.672198, + -20.880539,7.283259,-9.993159,-20.880690,7.234686,-10.048838,-20.779797,7.260954,-10.075150,-20.779646,7.309529,-10.019473, + -20.637421,7.724070,-10.373623,-20.637150,7.689412,-10.414639,-20.590643,7.618083,-10.349874,-20.590914,7.652742,-10.308857, + -20.352610,7.184370,-9.915130,-20.352760,7.135797,-9.970807,-20.312981,7.066650,-9.907806,-20.312830,7.115222,-9.852129, + -20.177380,7.532026,-10.208348,-20.177107,7.497367,-10.249365,-20.082939,7.525818,-10.277442,-20.083212,7.560477,-10.236426, + -18.615942,6.070453,-8.578190,-21.776810,6.191143,-9.290810,-21.746792,6.048454,-9.282931,-21.858418,6.179869,-9.203237, + -21.828400,6.037179,-9.195358,-21.354563,6.189415,-8.779489,-21.356339,6.212617,-8.876743,-21.278267,6.130836,-8.794858, + -21.280045,6.154037,-8.892113,-20.852058,2.563607,-9.701720,-20.820360,2.585176,-9.785497,-20.787117,2.623947,-9.779013, + -16.354235,7.485661,-9.571003,-16.318321,7.628016,-9.509594,-16.320129,7.575151,-9.614220,-18.698275,3.618357,-7.840683, + -18.680134,3.669196,-7.900335,-18.585232,3.655048,-7.883531,-18.603374,3.604209,-7.823880,-18.631407,4.683917,-6.340155, + -18.774509,4.502453,-7.197014,-18.538357,4.669320,-6.365005,-18.649158,4.550854,-7.238268,-18.640409,4.604981,-6.327497, + -18.660892,4.483054,-7.196586,-18.762775,4.570253,-7.238698,-18.547359,4.590384,-6.352347,-17.302393,6.410314,-8.813516, + -17.364075,6.373006,-8.849229,-17.398973,6.473510,-8.892716,-17.337290,6.510818,-8.857002,-17.862164,7.033055,-7.213831, + -17.980528,6.701145,-7.898302,-17.890249,7.089517,-7.288074,-18.084213,6.776503,-7.955367,-17.785936,7.056185,-7.225077, + -18.005638,6.790257,-7.965790,-18.059103,6.687391,-7.887878,-17.814022,7.112648,-7.299321,-22.015850,3.411052,-9.194886, + -21.953573,3.483142,-9.297689,-21.986065,3.444018,-9.305571,-19.104702,2.304727,-8.024313,-17.864231,6.681009,-7.973527, + -17.804241,6.658879,-7.900039,-19.044712,2.282598,-7.950825,-19.227392,2.323362,-7.918546,-17.948162,6.687603,-7.841987, + -17.867224,6.657744,-7.742836,-19.167402,2.301232,-7.845059,-18.538649,4.068063,-8.148802,-18.448143,4.060471,-8.286008, + -18.457708,4.038205,-8.049651,-18.388153,4.038341,-8.212521,-18.330050,3.454173,-8.128319,-18.432432,3.438122,-8.028610, + -18.438137,3.447711,-8.118401,-18.324371,3.444630,-8.038966,-18.426044,4.010605,-8.250147,-18.216894,4.099679,-7.523759, + -18.322712,3.904727,-8.205557,-18.220856,4.022900,-7.463942,-17.567104,3.859428,-9.029893,-17.658554,3.800338,-9.117027, + -17.656021,3.704359,-9.100582,-17.600494,3.715612,-9.043467,-18.180048,5.237860,-7.937286,-18.032644,5.208607,-7.998340, + -18.092634,5.230737,-8.071828,-18.099110,5.208002,-7.838135,-21.758980,3.750531,-9.218365,-19.417711,6.617963,-8.489677, + -19.350552,6.565240,-8.503419,-21.723879,3.724939,-9.236766,-22.021339,3.451618,-9.197592,-19.292202,6.775153,-8.452383, + -19.225042,6.722429,-8.466125,-21.987362,3.426965,-9.216095,-20.144381,5.589598,-7.949087,-20.152258,5.578658,-8.104861, + -20.052202,5.517233,-7.967947,-20.079248,5.521342,-8.119799,-20.761246,6.227772,-7.605796,-20.693222,6.306111,-7.590324, + -20.759731,6.200196,-7.528296,-20.693249,6.265133,-7.499106,-19.900642,5.286620,-8.182062,-19.900616,5.327599,-8.273281, + -19.834160,5.351557,-8.152871,-19.834133,5.392535,-8.244089,-18.523895,4.480268,-9.242221,-18.523869,4.521247,-9.333439, + -18.457413,4.545206,-9.213030,-18.457386,4.586184,-9.304248,-17.742201,8.215758,-9.270082,-17.774839,8.124538,-9.229509, + -17.726118,8.260501,-9.163662,-21.160454,4.541714,-9.705142,-21.135067,5.566122,-9.628609,-21.382940,4.593493,-9.686327, + -21.199736,5.507260,-9.414756,-21.421091,4.580644,-9.474144,-21.315546,5.533106,-9.379543,-20.564941,5.537663,-9.023952, + -20.540283,5.561697,-9.117837,-20.546389,5.628236,-8.997540,-20.521732,5.652270,-9.091425,-21.025133,3.218401,-9.208513, + -21.002247,3.224725,-9.322485,-20.994646,3.344438,-9.195399,-20.971762,3.350761,-9.309370,-20.658037,4.275602,-8.981364, + -20.620342,4.285625,-9.165322,-20.635284,4.369810,-8.971569,-20.597589,4.379834,-9.155527,-19.974627,6.293308,-8.867805, + -19.954144,6.298523,-8.965546,-19.942739,6.425333,-8.854077,-19.922256,6.430550,-8.951818,-19.589344,6.880426,-9.061146, + -19.587904,6.824175,-9.143813,-19.559113,6.957228,-9.112881,-19.557674,6.900978,-9.195547,-21.533730,4.606901,-9.465031, + -21.431362,5.498329,-9.183712,-21.635990,4.610988,-9.266805,-20.699768,8.127134,-10.809717,-20.635798,5.647178,-9.129685, + -20.563690,5.617717,-9.013834,-21.428308,7.205424,-9.968910,-20.149807,7.542728,-10.260175,-20.355564,7.129511,-9.926136, + -18.298574,7.047993,-9.956470,-20.543207,5.622932,-9.111575,-20.854486,2.651417,-9.660591,-20.848749,7.278807,-10.014925, + -20.614296,7.680635,-10.339749,-20.134840,6.579880,-9.462149,-19.588772,7.911829,-10.618186,-18.059853,7.472576,-10.301681, + -18.542995,2.682508,-8.717663,-20.656282,5.641962,-9.031944,-18.647421,6.696079,-9.601402,-20.660843,8.097035,-10.831333, + -20.841394,4.388307,-9.239950,-20.861877,4.383091,-9.142209,-21.385178,7.172268,-9.992577,-20.129566,7.528238,-10.269711, + -20.337399,7.117010,-9.938013,-19.050076,3.834438,-8.828213,-19.163149,3.853468,-8.748583,-19.070559,3.829223,-8.730473, + -18.317139,7.034171,-9.987454,-20.933985,4.412553,-9.258060,-19.142666,3.858684,-8.846323,-20.216488,3.039959,-9.370668, + -20.210430,3.150784,-9.249239,-20.238678,3.033956,-9.261393,-20.188240,3.156787,-9.358515,-19.300907,2.938809,-9.274392, + -19.347931,2.827082,-9.181624,-20.819899,7.264451,-10.025741,-20.584209,7.663383,-10.347630,-20.122452,6.555527,-9.490724, + -19.575640,7.889675,-10.643101,-18.084148,7.459658,-10.334743,-18.562023,2.604652,-8.724612,-20.954468,4.407337,-9.160319, + -18.662310,6.679545,-9.634317,-17.647676,3.466765,-9.102464,-17.617586,3.508898,-9.164039,-17.530169,3.468706,-9.148821, + -17.560259,3.426573,-9.087246,-17.631432,4.292577,-7.773195,-17.547571,4.290385,-7.822707,-17.645432,4.216006,-7.793516, + -17.582706,4.256879,-8.437599,-17.646322,4.350539,-8.493653,-17.561571,4.213814,-7.843028,-17.555761,4.315582,-8.485556, + -17.673269,4.291836,-8.445696,-19.836416,3.042818,-8.044279,-19.835358,3.122121,-8.030789,-19.746202,3.127542,-8.069657, + -19.747261,3.048239,-8.083148,-19.403467,2.310713,-6.509948,-19.517773,2.695937,-7.067510,-19.318171,2.357153,-6.517474, + -19.417336,2.772426,-7.062764,-19.384935,2.266238,-6.574374,-19.421925,2.695211,-7.084875,-19.513184,2.773151,-7.045399, + -19.299639,2.312677,-6.581899,-19.319098,2.606710,-6.720521,-19.406925,2.569576,-6.715518,-19.392326,2.516624,-6.769878, + -19.304499,2.553759,-6.774882,-21.932013,4.706765,-9.275991,-21.914976,4.770841,-9.230427,-21.820122,4.749284,-9.235577, + -21.837156,4.685208,-9.281141,-21.539883,5.450545,-10.214698,-21.686256,5.820556,-10.552505,-21.616795,5.535047,-10.160800, + -21.604141,5.739427,-10.603392,-21.634565,5.465743,-10.197587,-21.522110,5.519848,-10.177911,-21.595852,5.813330,-10.582381, + -21.694546,5.746651,-10.573515,-19.405979,7.110437,-9.108020,-19.482426,7.096156,-9.087444,-19.487446,7.026512,-9.154569, + -19.410999,7.040793,-9.175145,-19.251820,5.919736,-8.459877,-19.189398,5.734428,-7.975923,-19.325260,5.980437,-8.376914, + -19.121561,5.670121,-8.060640,-19.250769,5.997908,-8.401767,-19.326313,5.902265,-8.435024,-19.184710,5.650258,-8.020770, + -19.126249,5.754292,-8.015795,-19.767668,4.407380,-8.319314,-19.660467,4.364431,-8.349787,-19.918289,4.397882,-8.782886, + -20.017139,4.444582,-8.719574,-19.685658,4.436998,-8.358232,-19.994184,4.368127,-8.729563,-19.742477,4.334812,-8.310867, + -19.941244,4.474337,-8.772897,-20.699358,4.929776,-10.044184,-20.722919,4.852864,-10.042983,-20.790768,4.874229,-10.005795, + -20.767206,4.951141,-10.006996,-21.567240,6.006792,-9.531809,-21.540194,6.002682,-9.379957,-21.640247,6.064107,-9.516871, + -21.632372,6.075047,-9.361097,-21.901300,4.492651,-11.414704,-20.940752,7.004891,-11.179357,-21.007910,7.057615,-11.165615, + -22.010752,4.502478,-11.378240,-21.392530,4.077459,-10.542934,-21.412159,4.031414,-10.496561,-21.356054,3.958235,-10.540137, + -21.336426,4.004280,-10.586510,-21.494671,3.667048,-11.101957,-21.512112,3.617255,-11.058737,-21.427992,3.637009,-11.010917, + -21.410549,3.686803,-11.054137,-20.897884,3.855495,-10.552830,-20.917513,3.809450,-10.506457,-20.836679,3.838587,-10.451440, + -20.817051,3.884632,-10.497812,-21.028070,3.525930,-11.086610,-21.045511,3.476138,-11.043388,-21.005869,3.406934,-11.100383, + -20.988426,3.456727,-11.143603,-20.958530,3.872649,-10.822607,-20.973181,3.830037,-10.771390,-20.936680,3.747731,-10.819122, + -20.922468,3.788430,-10.871943,-21.180191,3.363702,-11.274034,-21.192236,3.330787,-11.234639,-21.115746,3.350180,-11.204545, + -21.103968,3.381937,-11.244911,-20.493870,3.643238,-10.871208,-20.508081,3.602539,-10.818388,-20.411703,3.635713,-10.774970, + -20.397491,3.676412,-10.827790,-20.759176,3.266132,-11.239270,-20.770954,3.234375,-11.198905,-20.736414,3.177278,-11.228642, + -20.724636,3.209033,-11.269008,-18.946461,6.822561,-9.706538,-18.771532,7.155646,-10.017532,-18.954550,6.804557,-9.738141, + -18.780354,7.140343,-10.044932,-20.999804,7.712109,-10.512375,-21.052561,7.726054,-10.473406,-21.286417,7.402025,-10.159419, + -21.185261,7.452316,-10.262227,-19.322289,2.933179,-9.170589,-19.326550,2.832712,-9.285428,-20.511404,3.676269,-10.812680, + -20.486469,3.740684,-10.853923,-20.603994,3.700514,-10.830791,-20.579062,3.764930,-10.872032,-21.146730,3.925022,-10.562091, + -21.153963,3.906940,-10.548070,-20.953718,3.635895,-10.793375,-20.945705,3.657103,-10.801502,-20.955521,3.664578,-10.759178, + -21.434509,3.817659,-10.782425,-21.426497,3.838867,-10.790552,-21.427231,3.810890,-10.825366,-20.381699,7.598730,-10.312570, + -20.565725,7.129950,-9.941765,-20.382158,7.612485,-10.292912,-20.417950,7.625169,-10.317207,-20.592697,7.181441,-9.961719, + -20.592239,7.167685,-9.981375,-20.226486,7.337298,-10.092232,-20.229366,7.345461,-10.069758,-20.251329,7.307194,-10.070412, + -20.719500,7.452567,-10.182542,-20.720036,7.467138,-10.163480,-20.698061,7.489611,-10.194951,-20.905891,5.503303,-9.667361, + -21.061518,4.546817,-9.984024,-20.778526,5.562446,-9.938091,-20.828905,4.490317,-9.980962,-20.549120,5.488789,-9.948338, + -20.750959,4.495314,-10.210064,-20.454447,5.547336,-10.160530,-20.595230,4.456896,-10.202311,-20.356157,5.502563,-10.162880, + -20.502542,4.466407,-10.509072,-20.236206,5.495346,-10.448080,-20.179579,4.381666,-10.444266,-19.989105,5.435908,-10.386984, + -19.558153,4.279550,-10.905618,-19.333584,5.459492,-10.670222,-19.278236,4.200688,-10.855252,-18.686348,5.240953,-10.680786, + -17.329443,2.621640,-10.990506,-17.305027,2.691770,-11.021451,-17.212435,2.667525,-11.003341,-17.236853,2.597394,-10.972396, + -20.934250,3.245910,-9.207616,-20.915220,3.323767,-9.200666,-20.822630,3.299521,-9.182556,-20.841660,3.221665,-9.189506, + -21.890322,4.666228,-11.444322,-21.066259,6.847702,-11.216651,-21.133419,6.900424,-11.202909,-22.003119,4.676287,-11.407461, + -21.987558,3.509058,-9.288065,-21.987244,3.463368,-9.179369,-16.079521,4.588771,-10.151186,-16.087534,4.683673,-10.178999, + -16.125462,4.608992,-10.209838,-16.057959,4.684729,-10.143079,-16.358932,7.512847,-9.510593,-17.779535,8.151726,-9.169099, + -15.845560,6.305871,-10.134144,-15.874383,6.272289,-10.151335,-15.890916,6.374875,-10.184467,-15.862093,6.408457,-10.167276, + -16.309322,3.696607,-10.260569,-16.362057,3.624330,-10.310805,-16.372265,3.532691,-10.306501,-16.343378,3.553018,-10.274776, + -21.209921,6.682991,-9.049910,-18.047091,4.905228,-8.478445,-19.109489,4.138617,-10.807626,-19.457266,4.050059,-9.148128, + -18.391052,3.950488,-10.667104,-18.738829,3.861930,-9.007607,-20.604691,4.376156,-9.619102,-19.509020,4.026867,-8.804875, + -20.073483,4.236540,-9.510249,-21.271069,4.704642,-11.230415,-20.458546,4.413370,-10.316466,-19.926849,4.273879,-10.209945, + -20.702061,6.753358,-11.009436,-17.547846,5.924753,-10.392633,-18.015072,3.896494,-10.598785,-21.632832,4.629231,-9.242493, + -18.404617,3.783535,-8.607586,-21.075842,7.001747,-11.057177,-21.143711,6.654407,-9.031918,-18.123266,4.948455,-8.486459, + -19.098049,4.180080,-10.810608,-19.448025,4.090963,-9.140614,-18.379610,3.991952,-10.670087,-18.729588,3.902834,-9.000092, + -20.595135,4.417140,-9.613087,-19.528633,4.075095,-8.800770,-20.063932,4.277523,-9.504203,-21.191181,4.728183,-11.220011, + -20.448065,4.454590,-10.314861,-19.916372,4.315097,-10.208324,-20.096832,4.951312,-10.427976,-19.365894,4.397341,-10.904182, + -19.168139,5.290551,-10.611232,-18.814074,5.778934,-10.678844,-19.181881,5.608844,-10.765001,-19.998354,5.639699,-10.813601, + -20.883457,6.016490,-11.019423,-17.936853,7.484807,-10.304239,-18.016075,7.498775,-10.303349,-18.024723,7.451545,-10.348257, + -17.945501,7.437577,-10.349148,-18.302071,6.516116,-9.558027,-18.606617,6.380495,-9.175346,-18.368296,6.595792,-9.544971, + -18.543934,6.279613,-9.217861,-18.294741,6.572198,-9.522495,-18.375626,6.539708,-9.580503,-18.618837,6.298141,-9.222103, + -18.531712,6.361967,-9.171105,-20.116230,8.288624,-10.892913,-20.184614,8.309095,-10.856026,-20.215622,8.253935,-10.884848, + -20.147238,8.233464,-10.921734,-18.461374,3.558161,-9.832718,-22.390268,4.007252,-11.506473,-22.358486,4.116936,-11.508619, + -18.421957,3.698556,-9.830912,-18.513529,3.583289,-9.696259,-22.423910,4.019624,-11.372432,-22.392128,4.129307,-11.374579, + -18.474113,3.723685,-9.694453,-20.741720,3.547458,-10.968789,-20.706322,3.534439,-11.109832,-20.711903,3.650362,-10.970803, + -20.676504,3.637343,-11.111847,-19.928228,2.617358,-7.670646,-17.115273,5.847850,-8.522436,-17.028023,5.774661,-8.513702, + -19.777050,2.598098,-7.723408,-19.887997,2.641850,-7.530992,-17.134621,5.841162,-8.385204,-17.047373,5.767973,-8.376470, + -19.736818,2.622591,-7.583755,-18.242104,4.551788,-8.291222,-18.221745,4.558826,-8.435622,-18.160250,4.483124,-8.283027, + -18.139889,4.490162,-8.427428,-17.257374,2.338326,-8.271945,-17.305719,6.549365,-9.068374,-17.189230,6.563761,-8.996489, + -17.161169,2.362741,-8.219430,-17.333157,2.381036,-8.152973,-17.377628,6.571327,-8.951760,-17.261139,6.585723,-8.879875, + -17.236954,2.405452,-8.100457,-17.304729,4.805621,-8.645699,-17.229065,4.782512,-8.768404,-17.184326,4.819545,-8.574077, + -17.108662,4.796436,-8.696782,-19.685598,6.574156,-10.666082,-19.611519,6.544881,-10.788469,-19.684202,6.691537,-10.692079, + -19.610121,6.662262,-10.814466,-22.619728,3.521510,-8.586254,-18.637539,2.413997,-7.103378,-18.573545,2.545501,-7.237283, + -22.577181,3.651133,-8.715730,-22.607515,3.526921,-8.724386,-18.605381,2.414873,-7.247234,-18.605703,2.544626,-7.093427, + -22.589394,3.645722,-8.577599,-20.807583,3.083070,-8.423498,-20.794731,3.088764,-8.568845,-20.779123,3.199604,-8.415377, + -20.766272,3.205297,-8.560723,-20.455685,6.472522,-8.945583,-20.342611,6.453492,-9.025214,-20.363094,6.448277,-8.927474, + -20.435202,6.477738,-9.043324,-18.502869,6.051423,-8.657820,-18.595459,6.075669,-8.675930,-18.523352,6.046207,-8.560080, + -17.777964,5.716091,-8.300802,-17.757481,5.721307,-8.398543,-17.685373,5.691845,-8.282693,-17.664890,5.697062,-8.380433, + -21.437744,6.819235,-9.020110,-21.432959,6.773784,-9.105425,-21.318176,6.787926,-8.996723,-21.313391,6.742475,-9.082039, + -19.315329,3.532897,-10.202121,-20.655560,4.094725,-10.017676,-19.222738,3.508652,-10.184011,-20.806992,4.122494,-10.068205, + -17.955690,3.902065,-9.661749,-4.152504,-9.620267,-6.122506,-6.058149,-13.060772,-6.861441,-4.235590,-9.572986,-6.141217, + -5.975063,-13.108052,-6.842730,-6.083633,-13.067376,-6.764968,-4.261074,-9.579590,-6.044744,-0.837119,-11.506916,-5.375872, + -2.659678,-14.994701,-6.096096,-2.766972,-14.933645,-6.120258,-0.862603,-11.513520,-5.279399,-2.685163,-15.001307,-5.999623, + -0.944413,-11.445860,-5.400034,-4.217419,-9.600372,-6.174003,-0.883736,-11.497431,-5.423248,-0.928113,-11.582355,-5.440784, + -4.261796,-9.685296,-6.191539,-4.242903,-9.606977,-6.077530,-0.909220,-11.504036,-5.326776,-0.953598,-11.588959,-5.344312, + -4.287280,-9.691901,-6.095067,-2.689084,-14.952279,-6.136670,-6.022766,-13.055222,-6.887425,-5.978390,-12.970298,-6.869889, + -2.644706,-14.867355,-6.119134,-2.714568,-14.958883,-6.040198,-6.048251,-13.061826,-6.790953,-1.108040,-12.286758,-7.568947, + -2.086081,-14.158409,-7.955441,-5.038297,-12.452833,-8.618536,-4.090559,-10.589529,-8.240619,-1.602684,-12.436941,-5.589946, + -2.580725,-14.308593,-5.976439,-5.616345,-12.581145,-6.660070,-4.638305,-10.709494,-6.273576,-0.931936,-11.516056,-5.349716, + -5.179488,-9.699647,-2.186988,-1.898723,-11.619590,-1.447936,-3.833805,-15.321821,-2.210372,-7.101029,-13.462583,-2.946160, + -4.561704,-9.647515,-4.182294,-6.600757,-13.329745,-4.939648,-4.644790,-9.600235,-4.201005,-6.517671,-13.377026,-4.920937, + -6.638787,-13.339602,-4.795680,-4.686343,-9.611004,-4.043702,-1.334291,-11.471925,-3.424455,-3.272054,-15.214462,-4.189363, + -1.380595,-11.498966,-3.287173,-3.307413,-15.223626,-4.055508,-3.369473,-15.159025,-4.211303,-1.417377,-11.424644,-3.443166, + -4.651345,-9.642797,-4.162340,-1.381387,-11.503592,-3.425937,-1.462955,-11.649213,-3.431705,-4.732913,-9.788418,-4.168109, + -4.665030,-9.623177,-4.051997,-1.395072,-11.483973,-3.315593,-1.478641,-11.643895,-3.348617,-4.748599,-9.783100,-4.085021, + -6.519178,-13.168143,-4.871347,-3.218121,-15.046636,-4.127940,-3.301328,-15.202547,-4.152435,-6.602385,-13.324055,-4.895844, + -6.548951,-13.187136,-4.787138,-3.247894,-15.065628,-4.043730,-3.316169,-15.194867,-4.067127,-6.617226,-13.316375,-4.810535, + -6.276844,-11.599157,-2.592348,-2.774751,-13.592049,-1.803666,-2.725500,-13.497796,-1.784203,-6.227592,-11.504904,-2.572885, + -6.250946,-11.592445,-2.690388,-2.761747,-13.588678,-1.852897,-6.771937,-12.539243,-2.769390,-3.269845,-14.532134,-1.980708, + -6.720290,-12.444847,-2.760201,-6.751193,-12.539808,-2.854673,-3.257246,-14.534605,-2.042895,-3.218198,-14.437739,-1.971519, + -7.225112,-13.393189,-2.914903,-3.746787,-15.473730,-2.242157,-7.248880,-13.480837,-3.030838,-3.723019,-15.386082,-2.126222, + -3.772272,-15.480334,-2.145685,-7.274364,-13.487442,-2.934366,-5.745873,-10.566758,-2.341357,-2.243781,-12.559650,-1.552676, + -2.267759,-12.644193,-1.659830,-5.769852,-10.651300,-2.448512,-2.291944,-12.653548,-1.576079,-5.794036,-10.660656,-2.364760, + -1.727454,-11.609376,-1.444173,-5.229547,-9.616484,-2.232855,-5.255032,-9.623088,-2.136382,-1.752939,-11.615980,-1.347701, + -1.802190,-11.710233,-1.367164,-5.304283,-9.717340,-2.155845,-7.156401,-13.512493,-2.972889,-5.161127,-9.694174,-2.184412, + -5.121263,-9.716858,-2.175435,-7.116536,-13.535177,-2.963912,-7.193612,-13.511820,-2.881989,-5.198337,-9.693501,-2.093512, + -5.146747,-9.723463,-2.078962,-7.142021,-13.541782,-2.867439,-3.870146,-15.382562,-2.232815,-1.874872,-11.564241,-1.444338, + -1.793512,-11.610539,-1.426016,-3.788785,-15.428860,-2.214493,-3.895630,-15.389166,-2.136343,-1.900356,-11.570846,-1.347866, + -1.821385,-11.619417,-1.312491,-3.816659,-15.437737,-2.100968,-2.972671,-11.197623,-0.613855,-2.712169,-14.922842,-6.053214, + -4.898729,-14.998825,-1.434160,-6.938701,-13.466467,-2.836028,-3.852611,-15.217226,-2.142510,-3.935944,-15.382285,-2.189029, + -7.017984,-13.623777,-2.880946,-7.208335,-13.410308,-2.916430,-3.727275,-15.386221,-2.132065,-3.773692,-15.475046,-2.150407, + -7.250703,-13.491385,-2.933173,-4.936419,-15.069528,-1.337611,-4.892267,-14.965939,-1.460215,-4.985672,-15.163779,-1.357074, + -4.978436,-15.136425,-1.507853,-5.010207,-9.794050,-2.090918,-1.929258,-11.547696,-1.398220,-5.241591,-9.636140,-2.141038, + -1.760286,-11.617956,-1.356335,-1.805592,-11.704659,-1.374238,-5.285643,-9.720440,-2.158446,-2.862686,-11.101069,-0.518129, + -2.877085,-11.115117,-0.677458,-2.924871,-11.220071,-0.542703,-2.848655,-11.071760,-0.583959,-2.855398,-11.083394,-0.510558, + -5.024510,-15.228354,-1.352513,-5.249648,-9.599484,-2.165444,-7.287151,-13.498610,-2.970609,-5.270846,-9.595209,-2.132509, + -7.308349,-13.494333,-2.937673,-1.689545,-11.638573,-1.299842,-3.727048,-15.537699,-2.105007,-1.744035,-11.595872,-1.368741, + -3.781538,-15.494998,-2.173904,-5.005942,-15.202353,-1.442122,-4.640079,-9.684818,-4.150736,-3.287791,-15.107985,-4.146374, + -6.481978,-13.290309,-4.865714,-1.432352,-11.563199,-3.428133,-4.232791,-9.637674,-6.093078,-6.013024,-13.044461,-6.796576, + -1.477705,-11.630778,-3.413064,-6.497532,-13.196132,-4.836015,-4.717300,-9.789346,-4.132517,-3.257937,-15.037564,-4.116561, + -4.596984,-9.687624,-4.065518,-4.716721,-9.710479,-4.098712,-4.680070,-9.640343,-4.084229,-5.140052,-9.719490,-2.123524, + -5.259788,-9.742346,-2.156718,-5.223137,-9.672210,-2.142235,-3.450655,-10.339952,-3.807362,-3.533741,-10.292671,-3.826073, + -3.942280,-10.416513,-1.915023,-4.025366,-10.369233,-1.933734,-2.544277,-10.855735,-3.603243,-2.627363,-10.808455,-3.621954, + -3.004042,-10.950427,-1.703729,-3.087127,-10.903147,-1.722440,-1.384272,-11.515846,-3.342007,-1.420922,-11.585982,-3.356490, + -1.467358,-11.468565,-3.360718,-1.845661,-11.595867,-1.373508,-1.882311,-11.666003,-1.387991,-1.916462,-11.555577,-1.389452, + -4.165849,-9.660490,-6.103429,-4.202197,-9.730542,-6.119036,-4.285283,-9.683262,-6.137747,-4.248934,-9.613210,-6.122140, + -4.637399,-9.780839,-4.121604,-4.673748,-9.850891,-4.137211,-4.756834,-9.803610,-4.155922,-4.720485,-9.733559,-4.140315, + -3.081165,-10.277740,-5.859155,-3.164251,-10.230458,-5.877866,-3.568248,-10.389249,-3.880828,-3.651334,-10.341968,-3.899539, + -2.012152,-10.886071,-5.618410,-2.095238,-10.838790,-5.637122,-2.531096,-10.979449,-3.647259,-2.614182,-10.932169,-3.665970, + -0.889411,-11.524977,-5.365566,-0.925760,-11.595028,-5.381173,-0.978208,-11.474446,-5.385563,-1.424686,-11.609061,-3.398092, + -1.461035,-11.679113,-3.413699,-1.513483,-11.558531,-3.418089,-5.326769,-11.650732,-6.505019,-5.371146,-11.735656,-6.522555, + -6.403529,-11.954862,-2.639387,-6.447906,-12.039785,-2.656924,-5.324600,-10.891146,-4.369181,-5.368978,-10.976069,-4.386718, + -5.875181,-10.943773,-2.430599,-5.919558,-11.028697,-2.448135,-4.799358,-10.698286,-6.341825,-4.843736,-10.783209,-6.359362, + -5.323037,-10.890006,-4.378657,-5.367414,-10.974930,-4.396194,-2.099881,-12.842296,-3.621852,-2.055504,-12.757372,-3.604315, + -2.552471,-12.944767,-1.689858,-2.508094,-12.859844,-1.672321,-2.563487,-13.752147,-3.862320,-2.519110,-13.667223,-3.844784, + -3.075140,-13.954383,-1.920151,-3.030763,-13.869459,-1.902614,-1.524861,-12.671844,-5.611942,-1.480484,-12.586921,-5.594405, + -2.089399,-12.840314,-3.657975,-2.045022,-12.755390,-3.640439,-2.045126,-13.662333,-5.804579,-1.996750,-13.577792,-5.805764, + -2.553005,-13.750165,-3.898444,-2.508627,-13.665241,-3.880907,-3.367177,-15.125393,-4.112924,-3.330526,-15.055257,-4.098440, + -3.247441,-15.102537,-4.079729,-3.284091,-15.172673,-4.094212,-3.857536,-15.335293,-2.268991,-3.820886,-15.265158,-2.254508, + -3.737800,-15.312438,-2.235797,-3.774450,-15.382574,-2.250280,-4.544966,-14.455158,-4.378165,-4.461881,-14.502439,-4.359453, + -5.062225,-14.658504,-2.497903,-4.979139,-14.705786,-2.479192,-5.451344,-13.939375,-4.582283,-5.368258,-13.986656,-4.563572, + -6.000463,-14.124590,-2.709197,-5.917377,-14.171871,-2.690486,-6.579887,-13.297165,-4.836434,-6.543237,-13.227030,-4.821951, + -6.460151,-13.274310,-4.803240,-6.496801,-13.344446,-4.817723,-7.175606,-13.454874,-2.978629,-7.138956,-13.384738,-2.964146, + -7.055870,-13.432019,-2.945435,-7.092520,-13.502155,-2.959918,-2.756607,-14.913094,-6.090758,-2.636577,-14.890169,-6.058690, + -2.673521,-14.960375,-6.072046,-3.325629,-15.061760,-4.136620,-3.205600,-15.038836,-4.104552,-3.242543,-15.109041,-4.117909, + -3.897132,-14.264066,-6.347607,-3.814046,-14.311346,-6.328896,-4.449823,-14.422026,-4.389791,-4.366737,-14.469307,-4.371080, + -4.966145,-13.655733,-6.588352,-4.883059,-13.703013,-6.569640,-5.486975,-13.831823,-4.623361,-5.403889,-13.879105,-4.604650, + -6.033041,-13.048603,-6.828619,-5.996098,-12.978397,-6.815263,-5.944244,-13.099133,-6.808622,-6.538339,-13.233533,-4.860131, + -6.501396,-13.163327,-4.846775,-6.449543,-13.284063,-4.840134,-3.675215,-9.483262,-8.031129,-3.794650,-9.506033,-8.065447, + -3.758301,-9.435982,-8.049840,-4.167334,-9.663049,-6.103297,-4.286769,-9.685820,-6.137614,-4.250420,-9.615768,-6.122008, + -2.579512,-10.106782,-7.784374,-2.698946,-10.129553,-7.818692,-2.662598,-10.059501,-7.803085,-3.082651,-10.280297,-5.859023, + -3.202085,-10.303068,-5.893341,-3.165737,-10.233017,-5.877734,-1.489258,-10.727201,-7.538846,-1.525607,-10.797252,-7.554452, + -1.572344,-10.679919,-7.557557,-2.013638,-10.888629,-5.618279,-2.049986,-10.958680,-5.633885,-2.096723,-10.841348,-5.636990, + -0.397238,-11.348624,-7.292920,-0.433587,-11.418675,-7.308526,-0.501565,-11.289256,-7.316414,-0.921618,-11.510053,-5.372353, + -0.957967,-11.580104,-5.387959,-1.004704,-11.462771,-5.391064,-4.719128,-14.915524,-2.395826,-4.643698,-14.958447,-2.378839, + -5.026147,-15.094204,-1.484027,-4.950717,-15.137128,-1.467041,-2.738271,-11.112213,-1.610267,-2.813701,-11.069289,-1.627254, + -2.876386,-11.166746,-0.645352,-2.951816,-11.123822,-0.662339,-5.758816,-14.322573,-2.636300,-5.683386,-14.365497,-2.619313, + -5.971908,-14.381508,-2.102588,-5.896478,-14.424431,-2.085601,-3.684384,-10.540051,-1.829364,-3.759814,-10.497128,-1.846351, + -3.875140,-10.556240,-1.286825,-3.950569,-10.513316,-1.303812,-5.928484,-14.133563,-2.708392,-6.064011,-14.056440,-2.738913, + -6.400077,-13.385305,-4.810362,-6.535604,-13.308184,-4.840883,-5.896664,-13.307198,-6.007656,-5.827431,-13.281438,-5.907360, + -5.860256,-13.344254,-5.920331,-6.097517,-13.339439,-5.326517,-5.988827,-13.303454,-5.375586,-6.021652,-13.366271,-5.388557, + -5.459711,-13.572188,-5.830127,-5.426886,-13.509372,-5.817156,-5.383846,-13.599020,-5.892168,-5.587208,-13.616116,-5.278029, + -5.554383,-13.553299,-5.265058,-5.517975,-13.590356,-5.177733,-5.550800,-13.653172,-5.190705,-3.894469,-14.579384,-4.896819, + -3.861644,-14.516567,-4.883848,-3.970333,-14.552552,-4.834779,-3.720040,-14.562163,-5.438349,-3.687215,-14.499347,-5.425377, + -3.756448,-14.525106,-5.525673,-5.849936,-13.456279,-5.319604,-5.772541,-13.502517,-5.291543,-5.612696,-13.461090,-5.896650, + -5.660459,-13.433485,-5.909466,-6.051610,-13.329575,-5.364204,-5.550654,-13.616842,-5.240757,-5.406697,-13.566375,-5.849442, + -5.872726,-13.300752,-5.956451,-3.103536,-11.113846,-8.046825,-3.669899,-10.792080,-8.171822,-4.133123,-10.894534,-6.503464, + -3.514931,-11.246847,-6.361694,-3.592435,-11.170629,-6.534667,-3.978314,-10.950720,-6.623127,-3.846744,-10.925421,-7.078586, + -3.481328,-11.133040,-6.997851,-3.489662,-11.148988,-7.001144,-3.855077,-10.941367,-7.081879,-3.986647,-10.966667,-6.626420, + -3.600768,-11.186576,-6.537961,-3.650274,-11.048555,-7.036696,-3.687190,-11.027870,-7.043452,-3.797517,-11.065258,-6.583208, + -3.761377,-11.086145,-6.573512,-3.941537,-10.930841,-6.880220,-3.951067,-10.934457,-6.838593,-3.520373,-11.179546,-6.741600, + -3.508075,-11.177505,-6.782603,-2.505278,-10.736968,-4.945337,-2.528256,-10.780940,-4.954418,-2.624785,-10.737144,-4.922240, + -2.591959,-10.674326,-4.909268,-2.653321,-10.800915,-4.277772,-2.676298,-10.844887,-4.286853,-2.745942,-10.794123,-4.356453, + -2.713116,-10.731306,-4.343482,-2.972799,-10.460236,-4.982307,-3.005624,-10.523052,-4.995279,-3.075267,-10.472288,-5.064879, + -3.052289,-10.428316,-5.055799,-3.129546,-10.494334,-4.437263,-3.162371,-10.557151,-4.450234,-3.258900,-10.513354,-4.418056, + -3.235922,-10.469382,-4.408976,-2.612499,-10.738629,-4.644156,-2.628424,-10.741513,-4.589891,-3.095793,-10.475554,-4.695144, + -3.082870,-10.470963,-4.750085,-2.910053,-10.639063,-4.359435,-2.957817,-10.611458,-4.372251,-2.797971,-10.570032,-4.977357, + -2.749181,-10.597372,-4.968429,-2.697789,-10.771794,-4.312450,-3.179703,-10.497133,-4.423038,-3.009233,-10.461753,-5.025752, + -2.561883,-10.713266,-4.939794,-1.443171,-11.336754,-4.692925,-1.469066,-11.386310,-4.703158,-1.565595,-11.342513,-4.670980, + -1.532770,-11.279696,-4.658009,-1.600254,-11.392928,-4.040123,-1.626149,-11.442484,-4.050356,-1.695792,-11.391720,-4.119956, + -1.662967,-11.328903,-4.106985,-1.928773,-11.054348,-4.747190,-1.961598,-11.117165,-4.760161,-2.031241,-11.066401,-4.829762, + -2.005346,-11.016845,-4.819529,-2.105947,-11.076822,-4.206745,-2.138772,-11.139639,-4.219717,-2.235301,-11.095842,-4.187539, + -2.209406,-11.046287,-4.177306,-1.578280,-11.327162,-4.411247,-1.594205,-11.330046,-4.356982,-2.061574,-11.064086,-4.462235, + -2.048651,-11.059494,-4.517176,-1.875834,-11.227594,-4.126526,-1.923597,-11.199989,-4.139342,-1.763751,-11.158565,-4.744448, + -1.714961,-11.185904,-4.735520,-1.647640,-11.369390,-4.075953,-2.156104,-11.079621,-4.192521,-1.965208,-11.055865,-4.790634, + -1.502694,-11.318636,-4.688534,-3.821705,-15.339753,-2.198544,-3.957232,-15.262630,-2.229065,-4.356065,-14.555779,-4.314649, + -4.491591,-14.478656,-4.345170,-5.423117,-13.949476,-4.550528,-5.287591,-14.026599,-4.520007,-5.149797,-14.583991,-2.497634, + -5.014271,-14.661114,-2.467113,-3.568700,-10.481453,-2.498803,-3.577517,-10.497952,-2.501336,-3.341257,-10.633150,-2.460383, + -3.177554,-10.566858,-3.042330,-3.383931,-10.456253,-3.088691,-3.392748,-10.472751,-3.091224,-3.320137,-10.593199,-2.453218, + -3.189274,-10.588791,-3.045698,-2.921646,-10.723267,-3.027282,-2.954400,-10.786065,-3.040520,-3.089254,-10.784215,-2.339808, + -3.122008,-10.847013,-2.353045,-3.448570,-10.499358,-3.177889,-3.415815,-10.436560,-3.164653,-3.668393,-10.536090,-2.476092, + -3.635638,-10.473292,-2.462855,-3.191750,-10.576280,-3.042551,-2.972481,-10.700003,-2.968653,-2.981193,-10.716486,-2.971615, + -3.203271,-10.598212,-3.046531,-3.332328,-10.609117,-2.449139,-3.116563,-10.737078,-2.410524,-3.343850,-10.631050,-2.453118, + -3.125274,-10.753560,-2.413486,-3.324038,-14.787512,-5.349168,-3.291213,-14.724695,-5.336196,-3.248174,-14.814344,-5.411208, + -3.451489,-14.831465,-4.797059,-3.418664,-14.768648,-4.784087,-3.382256,-14.805706,-4.696764,-3.415082,-14.868523,-4.709735, + -3.701542,-14.681462,-4.823090,-3.652752,-14.708801,-4.814161,-3.492908,-14.667376,-5.419268,-3.540670,-14.639770,-5.432084, + -3.924427,-14.542687,-4.872466,-3.414936,-14.832192,-4.759787,-3.271024,-14.781698,-5.368482,-3.732512,-14.518661,-5.474469, + -5.027877,-14.448497,-3.008587,-3.993066,-15.037365,-2.775545,-5.866442,-13.249364,-5.995713,-6.067295,-13.281605,-5.314574, + -5.353625,-13.541186,-5.880225,-5.520578,-13.595339,-5.178762,-3.940112,-14.494719,-4.822837,-3.726227,-14.467272,-5.513731, + -3.217952,-14.756510,-5.399265,-3.384860,-14.810689,-4.697792,-3.013957,-11.187314,-8.045184,-3.106311,-11.089563,-8.062836, + -3.456605,-11.330689,-6.247461,-3.517833,-11.224873,-6.382941,-3.628527,-10.792393,-8.180440,-3.757271,-10.764326,-8.212581, + -4.093150,-10.897485,-6.512504,-4.253020,-10.877484,-6.426816,-3.225649,-13.615387,-8.245570,-2.674685,-13.928915,-8.121490, + -3.059845,-14.052659,-6.530431,-3.658355,-13.712074,-6.665217,-4.573928,-12.893054,-7.762840,-4.541358,-12.978676,-7.631179, + -4.793787,-12.935996,-6.981790,-4.694281,-13.008163,-7.084667,-4.155419,-13.200621,-7.533006,-4.022979,-13.209826,-7.623013, + -4.291310,-13.239741,-6.982945,-4.225806,-13.262401,-6.838414,-4.638544,-12.956554,-7.394111,-4.652563,-12.960529,-7.339390, + -4.188463,-13.227236,-7.222238,-4.171463,-13.224976,-7.276205,-4.513813,-13.104177,-7.008774,-4.465322,-13.131616,-6.998607, + -4.303993,-13.091008,-7.603503,-4.351379,-13.063349,-7.617539,-4.724558,-12.971099,-7.061286,-4.255499,-13.240228,-6.944955, + -4.102014,-13.195217,-7.551331,-4.552936,-12.935499,-7.667982,-3.291656,-13.462396,-8.234507,-3.747857,-13.570407,-6.575220, + -2.537931,-13.891306,-8.064765,-2.948169,-14.025474,-6.395128,-6.557882,-11.597046,-1.649096,-4.615184,-12.609730,-1.515014, + -6.457442,-12.146519,-2.647815,-4.929197,-12.796770,-2.761025,-4.935543,-13.107904,-2.707384,-4.201756,-11.690845,-2.385014, + -5.886956,-11.074701,-2.408296,-4.480537,-11.927556,-2.556906,-4.926698,-12.406629,-1.786304,-6.292241,-11.714443,-1.699797, + -5.727342,-11.218422,-2.400030,-6.290403,-12.202739,-2.597843,-5.806581,-11.113188,-2.434607,-5.973131,-11.367987,-2.309213, + -6.288189,-11.951107,-2.428628,-6.356144,-12.166782,-2.639148,-6.256487,-11.677881,-1.864851,-6.324034,-11.716070,-1.661259, + -6.000893,-11.390175,-2.196408,-6.016166,-11.395539,-2.142141,-6.276822,-11.896002,-2.216374,-6.263247,-11.893890,-2.271313, + -6.234115,-11.682607,-1.798920,-6.259322,-11.731801,-1.811298,-6.081849,-11.681142,-2.438411,-6.055486,-11.631647,-2.430410, + -4.109871,-13.506729,-1.063598,-6.491188,-11.998072,-2.713373,-6.512386,-11.993795,-2.680438,-2.931086,-14.037161,-1.847772, + -2.985576,-13.994459,-1.916669,-4.103127,-13.495096,-1.136998,-5.674158,-12.035192,-1.617528,-5.663960,-12.573181,-2.647874, + -5.086181,-11.452190,-2.387094,-5.270630,-11.017080,-4.495068,-5.393972,-10.980233,-4.361383,-5.353716,-10.969800,-4.513779, + -3.179500,-10.799479,-1.691750,-3.228752,-10.893732,-1.711212,-3.154016,-10.792875,-1.788222,-6.381675,-11.981666,-2.620853, + -6.344465,-11.982339,-2.711753,-6.304601,-12.005024,-2.702775,-3.066401,-13.853773,-1.938760,-3.012914,-13.908948,-1.806913, + -2.985040,-13.900071,-1.920438,-3.279932,-15.125540,-4.151377,-3.207545,-14.987017,-4.122772,-3.138385,-14.091027,-1.984597, + -3.065999,-13.952503,-1.955992,-2.070277,-12.810655,-3.673356,-1.997891,-12.672132,-3.644751,-1.928730,-11.776142,-1.506576, + -1.856344,-11.637619,-1.477971,-2.539983,-13.709519,-3.858970,-2.467597,-13.570996,-3.830365,-2.581815,-13.025933,-1.764657, + -2.509429,-12.887410,-1.736052,-2.712167,-14.917449,-6.007503,-2.639781,-14.778926,-5.978897,-2.581178,-13.841710,-3.905372, + -2.508792,-13.703186,-3.876767,-1.502512,-12.602565,-5.529481,-1.430126,-12.464041,-5.500876,-1.531210,-11.786718,-3.481202, + -1.458823,-11.648194,-3.452597,-2.006506,-13.585340,-5.728717,-1.934120,-13.446816,-5.700112,-2.122979,-12.939251,-3.717033, + -2.050593,-12.800727,-3.688428,-4.679400,-9.655517,-4.060080,-4.751787,-9.794040,-4.088685,-5.837045,-10.937016,-2.465401, + -5.909431,-11.075540,-2.494006,-5.834304,-11.874132,-4.526960,-5.906690,-12.012655,-4.555565,-7.085328,-13.308285,-2.924256, + -7.157714,-13.446809,-2.952862,-4.275562,-9.650782,-6.060661,-4.347948,-9.789306,-6.089266,-5.233637,-10.799295,-4.468371, + -5.306023,-10.937819,-4.496977,-5.346701,-11.744467,-6.504939,-5.419087,-11.882991,-6.533544,-6.450549,-13.083585,-4.823100, + -6.522935,-13.222109,-4.851705,-5.349523,-11.133694,-4.951456,-5.467484,-11.355278,-4.988067,-5.365505,-11.124505,-4.955517, + -5.488767,-11.343113,-4.993422,-5.304397,-11.330566,-5.576089,-5.201229,-11.098782,-5.508619,-5.217212,-11.089592,-5.512681, + -5.325679,-11.318401,-5.581444,-5.632934,-11.642858,-4.994918,-5.571407,-11.677812,-4.981343,-5.434587,-11.561061,-5.699303, + -5.373059,-11.596016,-5.685728,-5.279579,-11.119344,-4.866021,-5.341106,-11.084390,-4.879595,-5.112044,-11.085956,-5.555402, + -5.173572,-11.051002,-5.568976,-5.312678,-11.316628,-5.580832,-5.501791,-11.331857,-5.004480,-5.421686,-11.524543,-5.623582, + -5.437542,-11.515333,-5.628066,-5.333756,-11.304383,-5.586792,-5.463058,-11.354131,-4.994625,-5.593783,-11.593270,-5.033328, + -5.609639,-11.584060,-5.037811,-3.763192,-10.150152,-4.551710,-3.981767,-10.027642,-4.591342,-3.754480,-10.133670,-4.548748, + -3.970246,-10.005709,-4.587363,-3.841188,-9.994804,-5.184755,-3.619111,-10.113079,-5.109838,-3.610399,-10.096596,-5.106877, + -3.829667,-9.972872,-5.180775,-4.273556,-9.869884,-4.601079,-4.306311,-9.932683,-4.614316,-4.053733,-9.833153,-5.302876, + -4.086487,-9.895950,-5.316113,-3.759926,-10.243607,-4.491269,-3.727171,-10.180808,-4.478032,-3.592318,-10.182657,-5.178744, + -3.559563,-10.119860,-5.165506,-3.827192,-9.985383,-5.183922,-3.958055,-9.989792,-4.591442,-4.030665,-9.869344,-5.229448, + -4.021849,-9.852845,-5.226915,-3.815472,-9.963451,-5.180554,-3.979175,-10.029743,-4.598607,-4.215434,-9.894544,-4.639561, + -4.206617,-9.878045,-4.637027,-2.224814,-14.725173,-8.009651,-2.104785,-14.702248,-7.977584,-2.141728,-14.772453,-7.990940, + -2.788662,-14.882038,-6.099198,-2.668633,-14.859113,-6.067131,-2.705577,-14.929318,-6.080487,-5.443069,-12.794566,-8.728827, + -6.018757,-13.035923,-6.826077,-5.981814,-12.965717,-6.812720,-5.935672,-13.083203,-6.807365,-5.480012,-12.864773,-8.742184, + -5.396926,-12.912053,-8.723472,-3.718477,-15.856687,-5.617464,-2.895515,-15.682258,-8.469546,-1.774289,-15.557687,-5.091147, + -1.536877,-15.839105,-4.936666,-1.807177,-15.566210,-4.966649,-1.562956,-15.578274,-6.313897,-1.747102,-15.868761,-6.537250, + -1.529826,-15.569688,-6.439314,-3.899806,-16.180649,-5.060426,-3.881545,-15.871057,-5.047284,-3.360180,-15.854079,-6.877520, + -3.059701,-15.560305,-8.601928,-3.841905,-15.759759,-5.556451,-3.596722,-15.714938,-5.463528,-2.813433,-15.514456,-8.534259, + -3.435313,-15.745761,-6.880903,-3.173428,-15.698102,-6.808985,-3.330557,-15.773415,-6.828181,-3.065648,-16.010571,-6.908207, + -3.297670,-15.764892,-6.952680,-3.478754,-15.812585,-5.525806,-3.592375,-15.825751,-5.556722,-2.465746,-15.706353,-6.622896, + -2.360934,-15.694207,-6.594377,-3.472468,-15.862731,-5.527579,-3.586089,-15.875897,-5.558495,-2.459785,-15.753150,-6.624897, + -2.354973,-15.741004,-6.596378,-1.861736,-15.625998,-5.063116,-1.978518,-15.641116,-5.049996,-2.464025,-15.690183,-6.618317, + -2.359213,-15.678037,-6.589798,-1.855450,-15.676144,-5.064886,-1.972233,-15.691262,-5.051765,-2.458064,-15.736980,-6.620318, + -2.353252,-15.724834,-6.591800,-3.798551,-15.797534,-5.492846,-3.528252,-16.070429,-5.462864,-3.765664,-15.789011,-5.617345, + -4.050421,-15.856481,-4.760636,-3.805238,-15.811660,-4.667713,-3.533388,-16.007317,-6.409062,-3.027256,-15.818845,-8.611056, + -4.018929,-16.106276,-4.769269,-3.750764,-16.085951,-4.687637,-1.776297,-15.627169,-5.059094,-1.885419,-15.959425,-4.502665, + -1.932229,-15.636599,-4.485863,-1.005743,-15.448926,-7.955322,-1.424712,-15.612411,-6.349243,-2.796533,9.518564,-5.939801, + -2.754475,9.660418,-5.900205,-2.840457,9.810374,-5.898827,-2.979558,9.861051,-5.932511,-3.111278,9.795907,-5.985579, + -3.169820,9.636661,-6.015788,-3.089225,9.485872,-6.011990,-2.946198,9.434304,-5.984118,-2.823446,9.540545,-5.944039, + -2.788375,9.658831,-5.911021,-2.860073,9.783875,-5.909873,-2.976064,9.826133,-5.937961,-3.085901,9.771811,-5.982212, + -3.135178,9.638471,-6.007638,-3.067972,9.512733,-6.004471,-2.948707,9.469732,-5.981230,-2.797987,9.553125,-6.070784, + -3.125269,9.570169,-6.043599,-2.826180,9.788521,-6.062116,-2.937315,9.829092,-6.088696,-3.045382,9.776212,-6.120863, + -3.121379,9.560937,-6.048487,-3.029787,9.528092,-6.133730,-2.915666,9.494100,-6.105911,-3.133222,9.582315,-6.058783, + -2.760453,9.667703,-6.053025,-3.122371,9.569374,-6.067027,-3.102471,9.583796,-6.064895,-3.111727,9.596564,-6.054675, + -3.092787,9.648922,-6.142100,-3.107337,9.573934,-6.046744,-3.109672,9.583061,-6.039528,-2.755938,9.567983,-6.262712, + -2.718958,9.679771,-6.245290,-2.782089,9.797654,-6.253896,-2.889660,9.837244,-6.279602,-2.994729,9.785655,-6.310889, + -3.039312,9.663820,-6.331007,-2.978181,9.546673,-6.322878,-2.868610,9.506348,-6.296695,-2.882536,9.671412,-6.274023, + -2.907922,9.476294,-6.134722,-2.936193,9.854839,-6.096337,-3.054116,9.796595,-6.140300,-2.776720,9.549250,-6.095698, + -2.737842,9.675904,-6.064762,-3.105547,9.656088,-6.165960,-3.034439,9.522184,-6.160924,-2.935994,9.764235,-6.092787, + -2.812871,9.809702,-6.066589,-3.125661,9.568874,-6.049503,-3.143505,9.556346,-6.053177,-3.124382,9.570335,-6.060590, + -3.129818,9.576804,-6.056467,-3.141215,9.558473,-6.063990,-3.148252,9.563621,-6.060472,-3.131427,9.505409,-6.083979, + -3.127683,9.512654,-6.091737,-3.135997,9.508780,-6.093798,-3.044053,9.461716,-6.116510,-3.041703,9.470600,-6.123009, + -3.047179,9.464168,-6.127134,-2.925541,9.454933,-6.145748,-2.927212,9.463756,-6.149705,-2.924854,9.453114,-6.150232, + -2.780718,9.752254,-5.959069,-2.775178,9.750318,-5.968547,-2.773448,9.738676,-5.944782,-2.768082,9.732471,-5.961689, + -2.788995,9.719651,-5.964315,-2.796397,9.726812,-5.948596,-2.791590,9.740333,-5.968304,-2.799389,9.743498,-5.959939, + -2.776275,9.748200,-5.959790,-2.756691,9.758118,-5.957143,-2.771227,9.738142,-5.959605,-2.773902,9.741251,-5.951145, + -2.752768,9.747567,-5.957140,-2.753417,9.751425,-5.948591,-2.729390,9.758425,-5.982154,-2.729950,9.747225,-5.981185, + -2.724124,9.751323,-5.975049,-2.706416,9.703616,-6.035932,-2.708724,9.693797,-6.030937,-2.699541,9.695470,-6.032057, + -2.719188,9.615264,-6.090291,-2.720044,9.607199,-6.081954,-2.714406,9.608530,-6.093033,-2.796016,9.521968,-6.127908, + -2.794661,9.528323,-6.133170,-2.792075,9.519444,-6.132205,-3.081784,9.739381,-6.102476,-3.102919,9.684450,-6.110905, + -3.024968,9.739509,-6.256802,-3.038289,9.704463,-6.261469,-3.097837,9.746376,-6.108408,-3.118972,9.691445,-6.116837, + -3.041031,9.746479,-6.262738,-3.054352,9.711433,-6.267405,-3.086968,9.774612,-6.042023,-3.098467,9.743164,-6.048676, + -3.031917,9.770438,-6.196674,-3.039109,9.750330,-6.200212,-3.103015,9.781623,-6.047955,-3.114515,9.750174,-6.054606, + -3.047970,9.777434,-6.202608,-3.055161,9.757326,-6.206146,-2.779574,9.592306,-6.001135,-2.769531,9.622716,-5.998060, + -2.756783,9.619116,-6.161518,-2.750833,9.638456,-6.158999,-2.762085,9.586493,-5.999651,-2.752042,9.616903,-5.996575, + -2.739290,9.613317,-6.160031,-2.733340,9.632658,-6.157513,-2.845853,9.801647,-5.947118,-2.876724,9.813252,-5.955940, + -2.818013,9.798123,-6.108912,-2.837857,9.805165,-6.113934,-2.839619,9.819041,-5.946452,-2.870490,9.830647,-5.955275, + -2.811793,9.815522,-6.108251,-2.831637,9.822564,-6.113272,-6.465611,-0.306178,-7.748559,-6.331817,-0.303066,-7.823047, + -6.196781,-0.195542,-7.813767,-6.156549,-0.071272,-7.736372,-6.223510,0.017120,-7.626312,-6.364481,0.009961,-7.527442, + -6.496693,-0.098489,-7.529818,-6.541343,-0.221211,-7.612513,-6.446520,-0.278983,-7.737543,-6.334954,-0.276388,-7.799656, + -6.222353,-0.186728,-7.791917,-6.188804,-0.083103,-7.727380,-6.244640,-0.009396,-7.635605,-6.362720,-0.015148,-7.552666, + -6.472967,-0.105580,-7.554648,-6.510199,-0.207914,-7.623604,-6.560073,-0.140767,-7.882288,-6.440127,-0.021942,-7.548398, + -6.357535,-0.038232,-7.951180,-6.325140,0.060848,-7.889237,-6.373344,0.125447,-7.794300,-6.450916,-0.024313,-7.549892, + -6.587163,0.028187,-7.711875,-6.613809,-0.070919,-7.778366,-6.437498,-0.001708,-7.553398,-6.460277,-0.130122,-7.951424, + -6.454047,-0.007147,-7.560450,-6.443393,-0.014488,-7.581453,-6.426092,-0.011451,-7.574774,-6.484347,0.117993,-7.713531, + -6.440939,-0.028554,-7.565753,-6.429143,-0.028790,-7.564476,-6.607703,-0.078915,-7.939669,-6.510327,-0.068804,-8.007371, + -6.410058,0.020088,-8.007828,-6.378426,0.116102,-7.947991,-6.425444,0.178848,-7.855621,-6.531672,0.171106,-7.778863, + -6.631352,0.083999,-7.777293,-6.663573,-0.013799,-7.838243,-6.513117,0.042846,-7.884164,-6.594336,-0.118934,-7.724943, + -6.257240,0.018604,-7.839046,-6.315170,0.095227,-7.739026,-6.528602,-0.193900,-7.843764,-6.411738,-0.188722,-7.913234, + -6.439031,0.088071,-7.651545,-6.555466,-0.009160,-7.652568,-6.381096,0.037536,-7.865777,-6.293144,-0.091570,-7.907626, + -6.444402,-0.017997,-7.550085,-6.454593,-0.009994,-7.532169,-6.449461,-0.010220,-7.556458,-6.441187,-0.007496,-7.552923, + -6.459075,-0.002736,-7.539511,-6.452029,0.000826,-7.534406,-6.515089,-0.014913,-7.534479,-6.513839,-0.008670,-7.543761, + -6.517159,-0.003920,-7.536357,-6.579738,-0.059180,-7.601282,-6.576270,-0.052390,-7.609562,-6.583187,-0.048804,-7.604299, + -6.615897,-0.109265,-7.706779,-6.610590,-0.102001,-7.710699,-6.619954,-0.107165,-7.708518,-6.285241,-0.209691,-7.864270, + -6.292737,-0.206859,-7.872020,-6.289464,-0.229451,-7.858522,-6.304557,-0.222875,-7.867584,-6.314037,-0.213968,-7.846623, + -6.298561,-0.218142,-7.836813,-6.298845,-0.201489,-7.854614,-6.290672,-0.201738,-7.846014,-6.289526,-0.213330,-7.866526, + -6.282269,-0.222626,-7.885229,-6.298343,-0.220326,-7.866449,-6.290789,-0.223620,-7.861924,-6.291454,-0.229036,-7.884122, + -6.283480,-0.233269,-7.881498,-6.299126,-0.220340,-7.918117,-6.307770,-0.225111,-7.912712,-6.301716,-0.231257,-7.916450, + -6.376806,-0.216610,-7.937498,-6.381878,-0.222713,-7.929516,-6.382235,-0.226552,-7.938091,-6.478140,-0.205023,-7.914664, + -6.480100,-0.213669,-7.907135,-6.485794,-0.208462,-7.916973,-6.566520,-0.170419,-7.830920,-6.564338,-0.164935,-7.836843, + -6.571452,-0.170607,-7.834920,-6.338185,0.061620,-7.677297,-6.385600,0.058267,-7.641579,-6.430048,0.139424,-7.789335, + -6.459927,0.136682,-7.766375,-6.333722,0.077878,-7.669706,-6.381136,0.074524,-7.633987,-6.425606,0.155679,-7.781727, + -6.455484,0.152937,-7.758767,-6.275156,0.035156,-7.661494,-6.303382,0.034198,-7.642313,-6.370534,0.112521,-7.770503, + -6.388206,0.111303,-7.758061,-6.270681,0.051415,-7.653913,-6.298906,0.050457,-7.634731,-6.366071,0.128779,-7.762912, + -6.383744,0.127561,-7.750471,-6.440601,-0.243062,-7.818404,-6.415027,-0.239111,-7.837520,-6.509625,-0.130812,-7.916365, + -6.492997,-0.128449,-7.927928,-6.446714,-0.256497,-7.829539,-6.421140,-0.252546,-7.848655,-6.515726,-0.144245,-7.927508, + -6.499098,-0.141882,-7.939072,-6.229939,-0.161273,-7.826555,-6.221456,-0.132589,-7.810100,-6.325398,-0.062841,-7.916907, + -6.319932,-0.045032,-7.905882,-6.215973,-0.158512,-7.838353,-6.207490,-0.129828,-7.821898,-6.311429,-0.060068,-7.928697, + -6.305963,-0.042258,-7.917673,-14.930196,12.031177,-9.013103,-15.076533,12.154153,-9.014500,-15.283825,12.131148,-9.067516, + -15.398245,11.994295,-9.128914,-15.376363,11.805971,-9.172688,-15.219094,11.665545,-9.173326,-15.013930,11.686006,-9.121451, + -14.897383,11.825403,-9.058912,-14.972717,12.003761,-8.998482,-15.094744,12.106306,-8.999645,-15.267596,12.087124,-9.043855, + -15.363008,11.973006,-9.095052,-15.344761,11.815969,-9.131554,-15.213620,11.698874,-9.132087,-15.042541,11.715935,-9.088829, + -14.945355,11.832173,-9.036680,-14.981285,12.000721,-9.015910,-15.095544,12.096740,-9.016999,-15.257394,12.078777,-9.058394, + -15.346732,11.971925,-9.106333,-15.329646,11.824884,-9.140511,-15.206854,11.715241,-9.141010,-15.046664,11.731216,-9.100506, + -14.955666,11.840056,-9.051677,-15.046608,11.961502,-9.017201,-15.120173,12.023323,-9.017903,-15.224381,12.011759,-9.044555, + -15.281902,11.942961,-9.075420,-15.270902,11.848288,-9.097426,-15.191841,11.777694,-9.097748,-15.088702,11.787980,-9.071670, + -15.030112,11.858057,-9.040230,-14.990955,11.995544,-9.021258,-15.098464,12.085891,-9.022284,-15.250752,12.068990,-9.061233, + -15.334813,11.968449,-9.106339,-15.318737,11.830095,-9.138498,-15.203197,11.726929,-9.138968,-15.052471,11.741961,-9.100857, + -14.966848,11.844371,-9.054912,-15.086291,11.940250,-9.039097,-15.132164,11.978800,-9.039534,-15.197144,11.971589,-9.056153, + -15.233011,11.928689,-9.075399,-15.226152,11.869655,-9.089122,-15.176853,11.825635,-9.089322,-15.112539,11.832048,-9.073061, + -15.076005,11.875746,-9.053456,-15.149778,11.928716,-9.034340,-15.130836,11.912796,-9.034160,-15.176612,11.925737,-9.041203, + -15.191422,11.908022,-9.049150,-15.188590,11.883644,-9.054817,-15.168232,11.865466,-9.054900,-15.141674,11.868115,-9.048185, + -15.126588,11.886160,-9.040090,-1.672370,-1.072446,-0.239118,-1.635512,-1.063398,-0.251434,-1.645115,-1.047620,-0.268581, + -1.681973,-1.056669,-0.256266,-1.674281,-1.145407,-0.303888,-1.640530,-1.137121,-0.315166,-1.649323,-1.122674,-0.330868, + -1.683074,-1.130959,-0.319590,-1.676985,-1.424942,-0.576006,-1.655925,-1.150145,-0.341264,-1.650400,-1.143313,-0.349255, + -1.670548,-1.157762,-0.331857,-1.670495,-1.105626,-0.348763,-1.685460,-1.109300,-0.343763,-1.668120,-1.131936,-0.360988, + -1.683086,-1.135610,-0.355987,-1.653036,-1.159519,-0.289292,-1.641306,-1.156640,-0.293211,-1.657564,-1.174488,-0.313843, + -1.645834,-1.171609,-0.317762,-1.641607,-1.157761,-0.333553,-1.684151,-1.151599,-0.337978,-1.675358,-1.166047,-0.322276, + -1.674066,-1.140201,-0.351362,-1.653999,-1.166807,-0.322673,-1.657886,-1.339833,-0.463453,-1.685894,-1.302699,-0.503495, + -1.680984,-1.327209,-0.476271,-1.660574,-1.316577,-0.489400,-1.676176,-1.129266,-0.321895,-1.655703,-1.124240,-0.328736, + -1.662962,-1.142628,-0.307671,-1.651889,-1.139910,-0.311370,-16.832214,8.554628,-9.665717,-16.850628,8.535380,-9.600878, + -16.831263,8.571713,-9.584592,-16.812847,8.590961,-9.649431,-16.686256,8.466641,-9.647189,-16.703117,8.449017,-9.587816, + -16.685383,8.482286,-9.572904,-16.668522,8.499912,-9.632277,-16.097452,8.131015,-9.545219,-16.645226,8.451357,-9.588000, + -16.643587,8.457928,-9.568264,-16.641155,8.452039,-9.621093,-16.656935,8.531760,-9.569448,-16.649458,8.539576,-9.595776, + -16.622099,8.494342,-9.570662,-16.614622,8.502157,-9.596991,-16.712397,8.422168,-9.645178,-16.718258,8.416042,-9.624543, + -16.663639,8.410869,-9.634685,-16.669498,8.404743,-9.614050,-16.661320,8.424658,-9.583177,-16.626724,8.475554,-9.627637, + -16.644459,8.442283,-9.642550,-16.624596,8.485694,-9.593574,-16.659952,8.420759,-9.615962,-16.332069,8.208319,-9.584720, + -16.282721,8.298948,-9.553473,-16.305832,8.251975,-9.591882,-16.311512,8.251024,-9.545693,-16.671968,8.496310,-9.620143, + -16.682196,8.485619,-9.584127,-16.691910,8.460731,-9.627277,-16.697443,8.454948,-9.607799,-13.376742,14.319673,-8.731343, + -13.384212,14.308293,-8.662580,-13.361557,14.270443,-8.666383,-13.354087,14.281822,-8.735146,-13.523973,14.236049,-8.758162, + -13.530812,14.225629,-8.695196,-13.510066,14.190969,-8.698678,-13.503226,14.201389,-8.761644,-14.100749,13.876858,-8.847838, + -13.556632,14.181048,-8.721710,-13.551499,14.167020,-8.707143,-13.558268,14.194628,-8.752126,-13.480372,14.147439,-8.720866, + -13.477339,14.152060,-8.748787,-13.529948,14.137094,-8.727963,-13.526916,14.141715,-8.755884,-13.550349,14.272990,-8.733568, + -13.552727,14.269369,-8.711685,-13.583639,14.235436,-8.743399,-13.586017,14.231815,-8.721516,-13.572245,14.201679,-8.703660, + -13.544660,14.177440,-8.770109,-13.565405,14.212099,-8.766626,-13.536515,14.154247,-8.744351,-13.576591,14.219019,-8.731452, + -13.920375,14.042536,-8.796883,-13.864441,13.952133,-8.814887,-13.894802,14.008492,-8.825738,-13.892519,13.989540,-8.783286, + -13.504624,14.199260,-8.748776,-13.508773,14.192939,-8.710582,-13.526266,14.232554,-8.737045,-13.528510,14.229136,-8.716388, + 0.116014,-0.197046,-0.027701,0.109655,-0.167199,-0.048319,0.111167,-0.139560,0.036596,-0.103505,-0.145030,-0.065040, + -0.088788,-0.174000,-0.056038,0.120936,0.064798,-0.029306,-0.065643,-0.139706,-0.055369,-0.093237,0.081326,-0.031952, + 0.147608,0.093036,-0.042980,-0.110165,0.109311,-0.045999,0.131762,0.123544,0.068626,0.098725,-0.156416,0.017092, + 0.106547,0.105821,0.064192,-0.071925,0.139563,0.063712,-0.098125,0.149392,0.077112,0.066313,-0.101241,0.197638, + -0.043498,-0.063233,0.207154,0.065450,0.123202,0.207701,-0.042126,0.149723,0.205883,0.082581,-0.093881,0.139281, + -0.081931,-0.087280,0.110267,-0.065546,0.166412,0.099995,-0.079645,-0.107689,0.102077,0.083999,-0.131327,0.132837, + 0.007039,0.163130,0.203939,0.007713,-0.075198,0.207328,0.103602,-0.091897,0.205223,-0.002699,0.032560,0.296775, + 0.051418,0.030245,0.278347,0.089433,-0.011410,0.302054,0.019261,0.045189,0.437812,-0.091718,-0.051746,0.302676, + -0.049877,0.049732,0.298275,-0.016964,0.211973,0.308644,0.018180,0.190084,0.325939,0.024962,-0.118408,0.340856, + 0.000478,-0.238099,0.290233,-0.070694,0.135308,0.272109,0.081225,0.159806,0.225658,0.012372,0.223000,0.323978, + 0.044882,0.260334,0.692183,-0.004181,0.255316,0.736200,-0.027700,0.264674,0.579379,0.003482,0.309927,0.542422, + -0.096132,-0.184123,0.317925,-0.046983,-0.071220,0.470430,0.064970,-0.111910,0.469535,0.116792,-0.169481,0.006108, + 0.132843,-0.159873,-0.001210,0.117464,-0.132549,0.086008,0.136346,-0.170029,-0.045256,0.152633,0.068338,-0.039198, + 0.044015,-0.095909,0.189108,0.067396,-0.072716,0.193686,-0.068578,-0.077971,0.198228,-0.046739,-0.041710,0.205139, + 0.048270,0.122589,0.201236,0.066019,0.155412,0.193165,-0.026946,-0.072113,0.193443,0.069001,-0.137563,0.190120, + 0.088895,-0.114745,0.188878,-0.066966,0.157992,0.198007,-0.046932,0.180185,0.194493,-0.054675,-0.100914,0.193917, + 0.092003,0.128643,0.195111,0.072196,0.095033,0.207095,-0.024498,0.141462,0.198630,-0.049896,0.121281,0.208580, + 0.098847,-0.119709,0.084766,0.015295,0.105835,0.252444,0.026661,-0.028144,0.237935,0.019603,-0.160973,0.214801, + -0.022691,-0.008150,0.250990,0.001201,0.056534,0.294989,-0.020240,0.041149,0.296200,0.009693,0.080175,0.275961, + 0.078440,0.043438,0.422363,-0.014731,-0.180391,0.243862,-0.059159,-0.145151,0.251467,-0.021803,-0.135637,0.381038, + 0.130868,-0.168657,-0.001939,0.103503,-0.170060,-0.001484,0.085310,-0.122197,0.085344,0.127162,-0.147328,0.037961, + 0.036531,-0.057099,0.203682,0.090819,-0.084116,0.193749,-0.066044,-0.045660,0.211576,-0.028051,-0.047813,0.202078, + 0.043653,0.158828,0.195745,0.082268,0.152145,0.191986,-0.032030,-0.101364,0.196102,-0.069397,-0.100847,0.193243, + 0.084494,-0.137207,0.188882,0.046162,-0.134876,0.192749,-0.063411,0.182481,0.194070,-0.025724,0.169420,0.194501, + 0.051027,0.096862,0.216603,0.089007,0.099535,0.207619,-0.068417,0.128543,0.211857,-0.021561,0.111208,0.219647, + 0.022751,-0.005673,0.262764,-0.022387,0.016483,0.278847,-0.055418,-0.110012,0.334378,0.027964,-0.176544,0.270656, + -0.009312,-0.133839,0.356081,0.026427,-0.148579,0.342581,0.001645,-0.145416,0.376310,0.009865,-0.210503,0.316454, + 0.035230,-0.170227,0.317856,-0.000039,0.228239,0.371154,0.009501,0.221962,0.373842,0.021272,0.224581,0.349990, + 0.025045,0.214851,0.370056,0.016661,0.231603,0.338234,0.006593,0.233653,0.347389,-0.066707,-0.230033,0.257023, + -0.077458,-0.221913,0.260299,-0.056793,-0.238198,0.257844,-0.046729,-0.248274,0.268789,-0.085833,-0.217700,0.274805, + -0.062307,-0.238020,0.282082,-0.012405,-0.212850,0.329325,-0.065937,-0.196644,0.346864,-0.057677,-0.111659,0.339393, + -1.316975,-0.239581,0.274009,-1.298804,-0.154545,0.208549,-2.404859,-1.552840,-1.827528,-2.396750,-1.466488,-1.886571, + -1.278688,-0.255966,0.269126,-1.262801,-0.171957,0.204899,-2.356377,-1.499247,-1.873947,-2.360609,-1.573489,-1.825537, + -0.824809,-0.384328,0.179145,-0.797287,-0.313695,0.119072,-1.577739,-1.841223,-1.972417,-1.560525,-1.768790,-2.026604, + -0.781361,-0.389216,0.165862,-0.765161,-0.320229,0.111195,-1.525328,-1.790392,-2.017659,-1.538354,-1.859326,-1.968616, + -1.694827,-0.801199,-0.586293,-1.642834,-0.738951,-0.646708,-1.654255,-0.819217,-0.588542,-1.680511,-0.715658,-0.649294, + -1.300940,-1.198099,-1.030242,-1.245376,-1.141487,-1.085378,-1.259784,-1.210444,-1.033884,-1.279235,-1.126451,-1.086993, + -1.460971,-1.629586,-1.690988,-1.451048,-1.585035,-1.721414,-1.442341,-1.572102,-1.684517,-1.449640,-1.612052,-1.653694, + -2.218066,-1.354604,-1.538430,-2.185832,-1.294885,-1.536162,-2.194866,-1.336049,-1.505770,-2.205486,-1.307171,-1.565839, + -1.361908,-1.390357,-1.337800,-1.351984,-1.345806,-1.368226,-1.343277,-1.332874,-1.331328,-1.350577,-1.372824,-1.300506, + -2.012710,-1.144299,-1.194364,-1.981743,-1.084720,-1.192645,-1.990752,-1.125838,-1.162184,-1.998988,-1.097502,-1.222313, + -1.257288,-1.164021,-1.000552,-1.247365,-1.119470,-1.030978,-1.238657,-1.106538,-0.994081,-1.245957,-1.146488,-0.963258, + -1.831685,-0.947198,-0.875147,-1.803895,-0.886115,-0.872287,-1.812916,-0.927252,-0.841854,-1.818420,-0.900121,-0.902845, + -1.148348,-0.981244,-0.721265,-1.138424,-0.936693,-0.751691,-1.129717,-0.923761,-0.714794,-1.137017,-0.963711,-0.683971, + -1.670639,-0.780867,-0.603413,-1.647501,-0.717940,-0.599367,-1.656535,-0.759104,-0.568975,-1.658059,-0.733435,-0.630823, + -1.030532,-0.798137,-0.439010,-1.020608,-0.753586,-0.469436,-1.011901,-0.740654,-0.432538,-1.019201,-0.780603,-0.401716, + -1.562688,-0.612824,-0.344427,-1.539550,-0.549897,-0.340381,-1.548584,-0.591061,-0.309989,-1.550108,-0.565392,-0.371837, + -0.924522,-0.580874,-0.165263,-0.914641,-0.536307,-0.195681,-0.905075,-0.523678,-0.158951,-0.912590,-0.563552,-0.128087, + -1.439154,-0.417146,-0.043466,-1.416057,-0.354204,-0.039413,-1.424964,-0.395413,-0.009046,-1.426911,-0.369595,-0.070810, + -8.457226,19.906477,-3.984087,-8.406541,19.965902,-3.908285,-8.278160,22.012671,-5.674200,-8.239399,22.072210,-5.596992, + -8.422276,19.887808,-3.997807,-8.374190,19.947226,-3.923025,-8.212064,22.035082,-5.624135,-8.241819,21.984426,-5.690633, + -7.990491,19.704336,-4.100174,-7.934829,19.751966,-4.037019,-7.501804,21.653271,-5.911666,-7.457991,21.701668,-5.846728, + -7.946632,19.691914,-4.103357,-7.903450,19.740667,-4.041968,-7.433018,21.672184,-5.863832,-7.470531,21.626482,-5.925725, + -8.326831,20.729393,-4.694093,-8.250285,20.763117,-4.637246,-8.291348,20.707056,-4.708853,-8.280714,20.788864,-4.617753, + -7.760660,20.828344,-5.117682,-7.683920,20.854847,-5.065330,-7.723903,20.807814,-5.127003,-7.711684,20.876408,-5.053521, + -7.550056,21.392307,-5.652442,-7.525206,21.419996,-5.612132,-7.537244,21.386759,-5.593294,-7.560043,21.358137,-5.628794, + -8.271150,21.706453,-5.421318,-8.244555,21.697681,-5.359461,-8.268606,21.670122,-5.396363,-8.245621,21.730713,-5.377509, + -7.651093,21.085218,-5.357021,-7.626243,21.112907,-5.316710,-7.638281,21.079670,-5.297873,-7.661080,21.051046,-5.333373, + -8.277382,21.346598,-5.147010,-8.251573,21.338923,-5.085474,-8.275640,21.311300,-5.122319,-8.250604,21.370605,-5.103813, + -7.739076,20.786398,-5.076176,-7.714227,20.814087,-5.035865,-7.726264,20.780849,-5.017028,-7.749063,20.752226,-5.052528, + -8.291210,21.018028,-4.891335,-8.268689,21.011311,-4.828413,-8.292752,20.983715,-4.865281,-8.264951,21.042110,-4.847864, + -7.793050,20.526497,-4.846360,-7.768200,20.554186,-4.806049,-7.780239,20.520948,-4.787212,-7.803037,20.492325,-4.822712, + -8.297097,20.734457,-4.674553,-8.279138,20.729488,-4.610022,-8.303189,20.701929,-4.646924,-8.271568,20.758717,-4.630745, + -7.841062,20.259531,-4.615057,-7.816212,20.287220,-4.574747,-7.828250,20.253983,-4.555909,-7.851048,20.225359,-4.591409, + -8.341278,20.489584,-4.462301,-8.323318,20.484617,-4.397769,-8.347370,20.457058,-4.434671,-8.315750,20.513844,-4.418493, + -7.894334,20.011553,-4.352287,-7.869525,20.039261,-4.311964,-7.880747,20.005663,-4.293380,-7.903751,19.977131,-4.328816, + -8.394241,20.206093,-4.215411,-8.376320,20.201141,-4.150867,-8.400251,20.173529,-4.187807,-8.369032,20.230494,-4.171504, + -0.884236,14.128591,-2.842007,-0.990544,14.108989,-2.829332,-1.238122,14.002426,-5.522202,-1.337833,13.972863,-5.508337, + -0.888101,14.170282,-2.839775,-0.992224,14.149082,-2.827778,-1.319309,14.022760,-5.502898,-1.236039,14.050770,-5.515348, + -0.998995,14.635458,-2.796252,-1.094895,14.630497,-2.784678,-1.391740,14.874826,-5.462169,-1.481661,14.859503,-5.449585, + -1.017679,14.676815,-2.790906,-1.105453,14.662319,-2.781121,-1.471433,14.899815,-5.442118,-1.388612,14.917542,-5.454496, + -1.032884,14.147323,-3.926376,-1.130603,14.167754,-3.910203,-1.034471,14.191564,-3.922374,-1.136665,14.123904,-3.913246, + -1.208047,14.721457,-4.312972,-1.299402,14.747261,-4.295064,-1.214423,14.763580,-4.306314,-1.300573,14.710648,-4.300829, + -1.359024,14.849228,-5.093522,-1.412070,14.838968,-5.084034,-1.396436,14.837040,-5.047205,-1.346794,14.847319,-5.052614, + -1.211207,14.043599,-5.128060,-1.256907,14.042540,-5.077853,-1.206305,14.051935,-5.084983,-1.264691,14.033992,-5.113690, + -1.287646,14.788543,-4.665727,-1.340691,14.778284,-4.656240,-1.325058,14.776355,-4.619411,-1.275415,14.786634,-4.624819, + -1.157984,14.090250,-4.681103,-1.203629,14.088204,-4.631869,-1.153013,14.097593,-4.638914,-1.211771,14.081992,-4.667027, + -1.220991,14.740340,-4.254457,-1.274037,14.730082,-4.244970,-1.258403,14.728152,-4.208141,-1.208761,14.738432,-4.213550, + -1.107181,14.124301,-4.269061,-1.152071,14.118662,-4.219416,-1.101460,14.128051,-4.226496,-1.160839,14.115488,-4.254828, + -1.169134,14.722092,-3.907680,-1.222180,14.711833,-3.898192,-1.206546,14.709904,-3.861363,-1.156904,14.720183,-3.866772, + -1.064976,14.160039,-3.916382,-1.108880,14.149352,-3.866684,-1.058277,14.158748,-3.873814,-1.118461,14.150432,-3.902012, + -1.117883,14.711147,-3.555074,-1.170928,14.700890,-3.545587,-1.155295,14.698960,-3.508758,-1.105652,14.709240,-3.514167, + -1.017927,14.149850,-3.592888,-1.061831,14.139163,-3.543190,-1.011228,14.148559,-3.550320,-1.071412,14.140244,-3.578518, + -1.091206,14.674136,-3.192725,-1.144243,14.663832,-3.183240,-1.128779,14.662812,-3.146363,-1.079094,14.672864,-3.151783, + -0.962966,14.136150,-3.217496,-1.006862,14.125421,-3.167800,-0.956284,14.134951,-3.174923,-1.016384,14.126187,-3.203145, + -8.608679,1.908667,-5.927637,-8.522246,1.890886,-5.863923,-6.943288,2.027279,-8.057660,-6.860190,2.021031,-7.993909, + -8.617866,1.868039,-5.932446,-8.532460,1.852525,-5.869994,-6.891620,1.980052,-8.007887,-6.961476,1.982183,-8.062558, + -8.673911,1.391178,-5.938927,-8.599443,1.363160,-5.883927,-7.082328,1.152153,-8.113413,-7.010489,1.135848,-8.058166, + -8.672370,1.345755,-5.934179,-8.601122,1.329515,-5.882505,-7.033518,1.101014,-8.064629,-7.100266,1.112667,-8.116933, + -7.949214,1.889161,-6.801152,-7.882401,1.836434,-6.746525,-7.961849,1.846820,-6.805996,-7.864058,1.875798,-6.737424, + -7.766711,1.307243,-7.172410,-7.707454,1.251519,-7.120298,-7.776162,1.265170,-7.172328,-7.693727,1.285834,-7.117271, + -7.286670,1.170902,-7.804351,-7.244994,1.162339,-7.769726,-7.275753,1.167770,-7.744648,-7.316674,1.174991,-7.774189, + -7.173624,1.980121,-7.737521,-7.160835,1.963563,-7.672925,-7.201447,1.972015,-7.704215,-7.134204,1.970582,-7.698605, + -7.542933,1.233021,-7.454699,-7.501257,1.224458,-7.420074,-7.532017,1.229888,-7.394997,-7.572937,1.237110,-7.424538, + -7.453495,1.934297,-7.384885,-7.439999,1.918730,-7.320955,-7.480662,1.927188,-7.352175,-7.414042,1.923400,-7.346361, + -7.790414,1.282540,-7.119721,-7.748739,1.273977,-7.085096,-7.779498,1.279408,-7.060019,-7.820418,1.286629,-7.089560, + -7.710515,1.901064,-7.058765,-7.696877,1.889113,-6.994091,-7.737518,1.897570,-7.025340,-7.671099,1.890725,-7.020050, + -8.001555,1.301763,-6.839852,-7.959880,1.293200,-6.805227,-7.990639,1.298630,-6.780150,-8.031559,1.305851,-6.809691, + -7.931234,1.865985,-6.780388,-7.917071,1.859113,-6.715090,-7.957683,1.867564,-6.746380,-7.891815,1.856445,-6.741472, + -8.217084,1.313650,-6.556157,-8.175408,1.305087,-6.521532,-8.206167,1.310518,-6.496455,-8.247087,1.317739,-6.525996, + -8.128952,1.877041,-6.520097,-8.114790,1.870168,-6.454800,-8.155401,1.878620,-6.486090,-8.089533,1.867501,-6.481181, + -8.410228,1.341392,-6.247442,-8.368546,1.332875,-6.212814,-8.399434,1.337390,-6.187803,-8.440322,1.344840,-6.217327, + -8.358183,1.891758,-6.217832,-8.344014,1.884928,-6.152532,-8.384645,1.893245,-6.183831,-8.318712,1.882576,-6.178890, + 6.040792,3.233688,-2.399770,5.979092,3.353842,-2.410606,7.015262,2.104974,-3.649138,6.989336,2.252880,-3.645861, + 6.086824,3.253738,-2.385481,6.024225,3.370649,-2.397186,7.056479,2.125937,-3.636815,6.948952,2.244460,-3.657105, + 6.796827,1.670116,-2.184757,6.763005,1.760721,-2.186242,6.805028,2.514239,-3.682286,6.897272,2.424548,-3.664060, + 6.846668,1.710331,-2.166824,6.806690,1.790282,-2.171269,6.844181,2.524982,-3.671208,6.856248,2.403221,-3.676357, + 6.384439,3.312088,-3.733137,6.370992,3.437163,-3.728127,6.434381,3.330754,-3.718667,6.318623,3.427792,-3.742602, + 7.204931,1.809663,-3.619252,7.219020,1.915699,-3.608271,7.259677,1.838722,-3.602801,7.167058,1.895503,-3.623380, + 7.068092,1.804871,-3.082949,7.088821,1.815483,-3.074598,6.446113,2.433533,-2.212399,7.051431,1.801401,-3.042287, + 6.241784,3.344797,-3.181162,6.257896,3.352996,-3.169327,6.235000,3.333416,-3.139051,6.497404,2.329214,-2.200897, + 6.938430,1.760501,-2.601809,6.392345,2.396284,-2.220142,6.937492,1.765705,-2.567391,6.923752,1.757823,-2.562053, + 6.103133,3.314757,-2.667055,6.111713,3.312557,-2.621205,6.096079,3.304343,-2.625821,6.438289,2.279570,-2.211099, + 6.711394,2.672830,-3.690532,6.818921,2.554307,-3.670242,6.751777,2.681250,-3.679288,6.777704,2.533344,-3.682565, + 6.700696,1.968459,-2.224041,6.767626,1.837228,-2.215165,6.647951,1.929441,-2.231942,6.710640,1.783913,-2.225712, + 7.051878,2.050291,-3.643209,7.159395,1.931788,-3.622920,7.092237,2.058759,-3.631968,7.118203,1.910779,-3.635240, + 6.456332,3.159385,-3.724600,6.430367,3.307364,-3.721328,6.497525,3.180393,-3.712280,6.390008,3.298896,-3.732569, + 6.048304,3.042680,-2.265162,5.985614,3.188207,-2.271393,6.093626,3.082689,-2.258607,6.026695,3.213920,-2.267483, + 6.274823,2.782370,-2.357463,6.342209,2.651266,-2.350327,6.195482,2.737271,-2.375400,6.258657,2.591885,-2.371034, + 6.610901,2.882185,-3.702746,6.718428,2.763662,-3.682456,6.651285,2.890606,-3.691502,6.677211,2.742700,-3.694779, + 6.677272,1.977347,-2.468642,6.614097,2.122733,-2.473008,6.734151,2.030729,-2.457868,6.666766,2.161833,-2.465004, + 6.396702,2.394570,-2.339248,6.333596,2.539974,-2.343873,6.453353,2.447893,-2.327610,6.386016,2.579010,-2.334930, + 6.921940,1.578794,-2.161109,6.855713,1.696380,-2.173317,7.854395,0.627423,-3.409434,7.822814,0.774252,-3.407725, + 6.967130,1.600737,-2.146913,6.900132,1.715039,-2.159958,7.894744,0.650073,-3.397225,7.782815,0.764177,-3.418981, + 7.736702,0.047595,-1.928366,7.699439,0.136817,-1.930854,7.388982,1.442652,-3.476567,7.524764,1.287458,-3.451324, + 7.784915,0.089869,-1.910722,7.741917,0.168181,-1.916077,7.430768,1.449648,-3.465050,7.484248,1.265095,-3.463557, + 7.266087,1.656876,-3.494365,7.247845,1.781387,-3.490660,7.315237,1.677587,-3.479964,7.195915,1.769871,-3.505167, + 8.143201,0.188228,-3.363210,8.153188,0.294831,-3.353274,8.196748,0.219529,-3.346922,8.102079,0.272508,-3.368303, + 8.005136,0.183596,-2.827221,8.025419,0.195078,-2.818927,7.010149,1.382637,-2.010525,7.988506,0.179899,-2.786566, + 7.120730,1.689650,-2.943100,7.136483,1.698579,-2.931310,7.114268,1.678442,-2.900892,7.103413,1.214935,-1.992274, + 7.875914,0.139136,-2.345970,6.946332,1.323305,-2.031003,7.874680,0.144647,-2.311610,7.861238,0.136299,-2.306226, + 6.981883,1.659497,-2.429052,6.990413,1.658089,-2.383161,6.975117,1.649237,-2.387732,7.037433,1.138340,-2.014704, + 7.617166,1.031081,-3.444466,7.729097,0.916977,-3.422710,7.657166,1.041156,-3.433210,7.688748,0.894327,-3.434919, + 7.629324,0.341623,-1.970916,7.701208,0.213150,-1.960543,7.578136,0.300535,-1.978548,7.646336,0.157587,-1.970685, + 7.981113,0.422559,-3.389986,8.093031,0.308474,-3.368231,8.021085,0.432680,-3.378733,8.052709,0.285779,-3.380437, + 7.343752,1.507134,-3.484101,7.312129,1.654034,-3.482398,7.384076,1.529828,-3.471895,7.272156,1.643914,-3.493649, + 6.925251,1.375798,-2.028431,6.857049,1.518746,-2.036294,6.980121,1.431361,-2.018289,6.908239,1.559834,-2.028662, + 7.153928,1.136094,-1.991789,7.226266,1.007748,-1.983156,7.102820,1.094925,-1.999523,7.171504,0.952119,-1.993525, + 7.508764,1.236297,-3.459053,7.620695,1.122193,-3.437297,7.548763,1.246372,-3.447797,7.580346,1.099543,-3.449506, + 7.446932,0.477635,-2.008755,7.378247,0.620441,-2.014754,7.513963,0.539164,-1.994742,7.441625,0.667511,-2.003375, + 7.309559,0.754588,-2.091190,7.240942,0.897411,-2.097447,7.364092,0.810157,-2.079957,7.291804,0.938516,-2.088774, + 8.944242,-1.416843,-1.889786,8.863565,-1.309262,-1.906495,10.005130,-2.281183,-3.098226,9.954890,-2.139683,-3.101810, + 8.986071,-1.388788,-1.876059,8.905062,-1.284590,-1.893496,10.042089,-2.253119,-3.086541,9.916647,-2.155206,-3.112975, + 9.946738,-2.821440,-1.598783,9.898328,-2.737906,-1.604606,9.439402,-1.535538,-3.196622,9.593747,-1.670980,-3.165122, + 9.988910,-2.772731,-1.582294,9.936250,-2.700846,-1.590642,9.479810,-1.522826,-3.185077,9.556585,-1.698781,-3.176842, + 9.290154,-1.339681,-3.222639,9.255994,-1.218511,-3.223367,9.336065,-1.312330,-3.208638,9.206141,-1.237112,-3.237809, + 10.347548,-2.677641,-3.034914,10.343616,-2.570368,-3.028608,10.396437,-2.639164,-3.019365,10.295976,-2.599591,-3.043194, + 10.205325,-2.682105,-2.500011,10.223869,-2.667829,-2.491986,9.055304,-1.594825,-1.731920,10.188862,-2.686553,-2.459363, + 9.135716,-1.307503,-2.673813,9.150057,-1.296226,-2.662235,9.130285,-1.318032,-2.631285,9.169175,-1.748383,-1.707257, + 10.077602,-2.726731,-2.018376,8.999886,-1.662548,-1.750754,10.075291,-2.720279,-1.984235,10.062977,-2.730107,-1.978655, + 8.996246,-1.338095,-2.159959,9.004379,-1.336853,-2.113992,8.990402,-1.347754,-2.118355,9.113857,-1.833560,-1.727458, + 9.718307,-1.912915,-3.148781,9.843749,-2.010828,-3.122347,9.756550,-1.897391,-3.137616,9.806789,-2.038891,-3.134032, + 9.802876,-2.545318,-1.652197,9.890582,-2.663020,-1.636906,9.757490,-2.592900,-1.658741,9.843436,-2.725507,-1.645482, + 10.156944,-2.467215,-3.070858,10.282373,-2.565110,-3.044426,10.195154,-2.451649,-3.059699,10.245444,-2.593215,-3.056106, + 9.386333,-1.477721,-3.206682,9.336043,-1.336156,-3.210275,9.423262,-1.449617,-3.195003,9.297832,-1.351721,-3.221434, + 8.972195,-1.613158,-1.750141,8.886249,-1.480550,-1.763399,9.019341,-1.550670,-1.741565,8.931635,-1.432967,-1.756856, + 9.229412,-1.819985,-1.703709,9.317572,-1.937562,-1.690159,9.184116,-1.867641,-1.710351,9.270545,-2.000108,-1.698958, + 9.584554,-1.724007,-3.171181,9.709996,-1.821920,-3.144747,9.622796,-1.708484,-3.160016,9.673036,-1.849984,-3.156432, + 9.604918,-2.435323,-1.695929,9.518491,-2.302856,-1.707322,9.663311,-2.365225,-1.683611,9.575151,-2.247648,-1.697161, + 9.433950,-2.181330,-1.788809,9.347590,-2.048846,-1.800462,9.480749,-2.118844,-1.779146,9.392638,-2.001254,-1.792881, + 8.831224,-1.282767,-1.850870,8.909623,-1.392797,-1.840455,8.505569,-0.211862,-3.293092,8.551020,-0.355000,-3.290885, + 8.788072,-1.309370,-1.863334,8.867120,-1.415985,-1.852923,8.467660,-0.238559,-3.304934,8.589788,-0.340873,-3.279677, + 7.815844,0.141747,-1.899229,7.860813,0.056423,-1.891945,9.046062,-0.976984,-3.202696,8.896300,-0.836146,-3.232615, + 7.771030,0.094378,-1.912296,7.820940,0.020608,-1.903520,9.005223,-0.988224,-3.214253,8.934402,-0.809717,-3.220741, + 9.188681,-1.177981,-3.178782,9.218740,-1.300234,-3.179211,9.141844,-1.203644,-3.192911,9.269222,-1.283452,-3.164727, + 8.176569,0.196452,-3.352048,8.176869,0.089168,-3.359313,8.126378,0.159784,-3.367817,8.225499,0.116639,-3.344587, + 8.036070,0.127915,-2.821076,8.015981,0.114070,-2.825181,8.656693,-1.117673,-1.744959,8.030311,0.126397,-2.777400, + 9.051926,-1.285291,-2.634835,9.033737,-1.296869,-2.633414,9.035645,-1.280265,-2.594108,8.545503,-0.960802,-1.758497, + 7.909270,0.106454,-2.337611,8.714185,-1.052082,-1.724840,7.894419,0.095860,-2.307950,7.902371,0.104106,-2.295779, + 8.919430,-1.325264,-2.119781,8.889655,-1.331394,-2.084332,8.903964,-1.321019,-2.079766,8.603582,-0.877752,-1.737226, + 8.779928,-0.590017,-3.246506,8.657800,-0.487703,-3.271763,8.741160,-0.604144,-3.257714,8.695710,-0.461006,-3.259921, + 7.967309,-0.135157,-1.912490,7.883497,-0.014458,-1.926186,8.010006,-0.090299,-1.889436,7.928730,0.045288,-1.901991, + 8.360050,-0.020586,-3.318438,8.237935,0.081710,-3.343693,8.321314,-0.034756,-3.329641,8.275815,0.108449,-3.331856, + 9.097174,-1.036643,-3.193279,9.142673,-1.179848,-3.191063,9.059294,-1.063383,-3.205115,9.181410,-1.165679,-3.179861, + 8.737959,-1.102949,-1.717496,8.819236,-1.238535,-1.704941,8.692726,-1.162695,-1.741691,8.776538,-1.283393,-1.727995, + 8.491374,-0.886233,-1.775153,8.408028,-0.765422,-1.790588,8.534041,-0.841285,-1.752219,8.453266,-0.705584,-1.766636, + 8.907289,-0.783514,-3.226110,8.785160,-0.681200,-3.251366,8.868520,-0.797641,-3.237318,8.823070,-0.654503,-3.239525, + 8.161034,-0.252272,-1.868302,8.241809,-0.387973,-1.853886,8.104174,-0.319245,-1.895814,8.187520,-0.440055,-1.880378, + 8.355559,-0.504402,-1.899283,8.436403,-0.640085,-1.885126,8.310092,-0.564300,-1.922372,8.393487,-0.685097,-1.907121, + 4.019032,-4.154004,-4.304358,4.137573,-4.214956,-4.279980,3.334774,-3.512771,-5.870725,3.439184,-3.618811,-5.850403, + 3.993136,-4.198403,-4.313481,4.110731,-4.256039,-4.289535,3.313564,-3.554822,-5.879206,3.466815,-3.587577,-5.840966, + 2.478892,-3.355430,-4.534190,2.556735,-3.409918,-4.516110,4.153846,-3.936726,-5.683382,3.958986,-3.882826,-5.731166, + 2.460828,-3.419038,-4.541302,2.537832,-3.460900,-4.523185,4.123097,-3.966376,-5.693534,3.980486,-3.840922,-5.722618, + 4.369570,-4.047795,-5.634000,4.451064,-4.142570,-5.618961,4.340064,-4.093209,-5.644903,4.487772,-4.103339,-5.606578, + 2.862093,-3.305999,-5.981432,2.910736,-3.401691,-5.975134,2.834608,-3.362854,-5.992586,2.940999,-3.353802,-5.963861, + 2.736004,-3.370964,-5.446410,2.724501,-3.392738,-5.448790,3.783213,-4.074676,-4.220509,2.728967,-3.370046,-5.402905, + 4.263386,-4.143969,-5.081215,4.252242,-4.162264,-5.078393,4.244207,-4.142325,-5.041486,3.614652,-3.987366,-4.253963, + 2.603905,-3.393344,-4.964408,3.804033,-3.988428,-4.208663,2.593635,-3.406121,-4.933686,2.596330,-3.393879,-4.922629, + 4.132614,-4.181798,-4.565559,4.106686,-4.196704,-4.529695,4.114552,-4.180558,-4.526436,3.628127,-3.885262,-4.243172, + 3.745931,-3.718838,-5.776220,3.592679,-3.686082,-5.814461,3.718299,-3.750072,-5.785658,3.613889,-3.644031,-5.805980, + 2.738626,-3.533876,-4.512110,2.610680,-3.466280,-4.541100,2.755333,-3.472334,-4.494780,2.622929,-3.390283,-4.524506, + 3.120890,-3.411777,-5.920310,2.967658,-3.379032,-5.958547,3.093305,-3.443035,-5.929737,2.988822,-3.336957,-5.950075, + 4.225577,-3.965477,-5.666402,4.330060,-4.071555,-5.646063,4.204413,-4.007552,-5.674873,4.357646,-4.040298,-5.636637, + 3.847555,-4.021946,-4.194914,3.979959,-4.103998,-4.165188,3.835306,-4.097943,-4.211509,3.963252,-4.165540,-4.182518, + 3.533991,-3.947574,-4.280009,3.406512,-3.879862,-4.310738,3.550638,-3.885979,-4.262809,3.418740,-3.803807,-4.294395, + 3.944889,-3.830534,-5.731310,3.791637,-3.797779,-5.769551,3.917258,-3.861768,-5.740748,3.812847,-3.755728,-5.761069, + 2.961287,-3.545361,-4.453047,3.093186,-3.627532,-4.421461,2.942084,-3.633368,-4.472051,3.069563,-3.701080,-4.441322, + 3.249433,-3.684426,-4.451557,3.381400,-3.766580,-4.420230,3.236977,-3.760540,-4.467035,3.364505,-3.828239,-4.436491, + 4.128064,-4.365506,-4.154497,4.027450,-4.277793,-4.177834,5.366696,-5.056232,-5.304099,5.288681,-4.928435,-5.315958, + 4.163000,-4.328786,-4.141998,4.062766,-4.244485,-4.165877,5.396905,-5.020609,-5.293680,5.254644,-4.952039,-5.326565, + 5.390540,-5.517292,-3.777511,5.326204,-5.445890,-3.788371,4.662570,-4.448723,-5.448511,4.840689,-4.547775,-5.408240, + 5.421536,-5.460170,-3.763398,5.355471,-5.401157,-3.776168,4.699294,-4.427403,-5.437350,4.810230,-4.583185,-5.418710, + 4.476987,-4.289292,-5.486619,4.418807,-4.177916,-5.494364,4.516057,-4.252407,-5.473774,4.374101,-4.207081,-5.508170, + 5.781598,-5.370127,-5.215987,5.755706,-5.265761,-5.215682,5.821278,-5.321677,-5.202188,5.715338,-5.304862,-5.229023, + 5.632824,-5.375510,-4.682878,5.647899,-5.357332,-4.675502,4.270036,-4.508361,-3.986061,5.616823,-5.381095,-4.642186, + 4.308496,-4.260636,-4.941748,4.320000,-4.246063,-4.930693,4.304499,-4.269802,-4.898748,4.412379,-4.633781,-3.951952, + 5.507494,-5.419973,-4.200599,4.230008,-4.586907,-4.001571,5.503242,-5.412344,-4.166891,5.493090,-5.424182,-4.160876, + 4.168169,-4.292097,-4.428180,4.174973,-4.286796,-4.382286,4.163607,-4.300546,-4.386154,4.376042,-4.729436,-3.967856, + 5.011716,-4.757812,-5.377440,5.153977,-4.826382,-5.344555,5.045753,-4.734208,-5.366833,5.123769,-4.862005,-5.354973, + 5.194362,-5.279754,-3.847386,5.303953,-5.375992,-3.824845,5.159795,-5.335912,-3.851659,5.270750,-5.447184,-3.830333, + 5.552758,-5.205463,-5.265165,5.695002,-5.274019,-5.232283,5.586755,-5.181825,-5.254566,5.664833,-5.309675,-5.242693, + 4.599014,-4.403632,-5.462213,4.520936,-4.275783,-5.474085,4.629183,-4.367976,-5.451802,4.486939,-4.299420,-5.484684, + 4.192801,-4.544285,-4.003935,4.081847,-4.433013,-4.025260,4.226005,-4.473093,-3.998446,4.116414,-4.376855,-4.020988, + 4.485896,-4.691216,-3.943925,4.595940,-4.787329,-3.923125,4.451435,-4.747431,-3.948292,4.562870,-4.858566,-3.928833, + 4.842647,-4.601804,-5.411421,4.984908,-4.670374,-5.378536,4.876683,-4.578200,-5.400815,4.954699,-4.705997,-5.388955, + 4.979002,-5.215162,-3.898824,4.867567,-5.104028,-3.918283,5.021583,-5.134027,-3.889927,4.911539,-5.037914,-3.910727, + 4.761591,-5.006888,-4.007102,4.650225,-4.895737,-4.026821,4.794434,-4.935711,-4.000531,4.684438,-4.839585,-4.021515, + 2.436850,-3.321587,-4.667105,2.538823,-3.408948,-4.648912,1.901115,-2.448699,-6.178379,1.979131,-2.576495,-6.166519, + 2.401542,-3.358404,-4.678196,2.503336,-3.442301,-4.660222,1.870907,-2.484322,-6.188797,2.013168,-2.552891,-6.155912, + 1.114216,-2.185393,-4.816367,1.177940,-2.256954,-4.803186,2.605242,-3.056207,-6.033967,2.427124,-2.957155,-6.074237, + 1.082230,-2.242772,-4.826731,1.147980,-2.301867,-4.812766,2.568519,-3.077526,-6.045127,2.457582,-2.921745,-6.063767, + 2.790825,-3.215637,-5.995857,2.849006,-3.327013,-5.988113,2.751756,-3.252522,-6.008703,2.893712,-3.297848,-5.974307, + 1.486213,-2.134804,-6.266490,1.512106,-2.239170,-6.266796,1.446533,-2.183254,-6.280289,1.552473,-2.200069,-6.253455, + 1.353349,-2.202411,-5.733438,1.337218,-2.220863,-5.736814,2.225689,-3.196664,-4.573621,1.347075,-2.202599,-5.689807, + 2.670479,-3.319149,-5.447316,2.655525,-3.334616,-5.445307,2.652506,-3.315677,-5.407143,2.080841,-3.071893,-4.598248, + 1.223765,-2.224012,-5.250719,2.265500,-3.118174,-4.557290,1.211146,-2.236013,-5.220564,1.216624,-2.225387,-5.208883, + 2.538997,-3.358130,-4.931926,2.510688,-3.369005,-4.896415,2.522017,-3.355264,-4.892406,2.117058,-2.976269,-4.581891, + 2.256096,-2.747118,-6.105037,2.113835,-2.678549,-6.137922,2.222059,-2.770722,-6.115644,2.144043,-2.642925,-6.127504, + 1.327268,-2.418558,-4.810365,1.217588,-2.322344,-4.832571,1.357555,-2.363509,-4.789892,1.246781,-2.252191,-4.811900, + 1.715053,-2.299468,-6.217313,1.572809,-2.230912,-6.250195,1.681057,-2.323106,-6.227911,1.602979,-2.195256,-6.239784, + 2.668798,-3.101297,-6.020264,2.746877,-3.229146,-6.008392,2.638629,-3.136954,-6.030675,2.780873,-3.205509,-5.997793, + 2.300471,-3.161376,-4.546463,2.411245,-3.272694,-4.524455,2.271278,-3.231529,-4.567133,2.380958,-3.327743,-4.544927, + 2.010993,-3.013508,-4.620164,1.901779,-2.917180,-4.644109,2.041233,-2.958386,-4.599816,1.930962,-2.846950,-4.623686, + 2.425166,-2.903126,-6.071056,2.282905,-2.834556,-6.103941,2.391129,-2.926729,-6.081663,2.313113,-2.798933,-6.093523, + 1.542122,-2.483281,-4.757010,1.652392,-2.594717,-4.733140,1.503427,-2.563409,-4.780622,1.612641,-2.659737,-4.756678, + 1.791545,-2.683258,-4.769917,1.901883,-2.794676,-4.746308,1.762133,-2.753547,-4.789476,1.871396,-2.849862,-4.765716, + -0.486645,-1.713535,-5.137870,-0.611137,-1.671221,-5.170622,1.129544,-2.058937,-6.164095,1.011032,-1.970182,-6.189325, + -0.468005,-1.665604,-5.128909,-0.590881,-1.626361,-5.161853,1.144272,-2.013941,-6.157124,0.988384,-2.005461,-6.197723, + 1.090399,-2.284186,-4.638002,1.005057,-2.242571,-4.656451,0.705014,-1.914255,-6.271966,0.830617,-1.912820,-6.238688, + 1.097892,-2.218651,-4.629523,1.015523,-2.189320,-4.648632,0.725222,-1.878176,-6.264157,0.816272,-1.957941,-6.245566, + -0.132074,-1.637302,-6.468500,-0.226339,-1.556126,-6.487844,-0.109662,-1.587675,-6.459182,-0.256760,-1.600751,-6.498934, + 1.463008,-2.136565,-6.081321,1.400992,-2.049339,-6.091732,1.481747,-2.075915,-6.072219,1.378198,-2.101537,-6.101327, + 1.303484,-2.147149,-5.551407,1.310594,-2.124124,-5.545804,0.324903,-1.980658,-4.806697,1.288864,-2.154448,-5.510468, + -0.322818,-1.622491,-5.930454,-0.317881,-1.603775,-5.920850,-0.325066,-1.628506,-5.886776,0.431075,-2.018609,-4.776155, + 1.182168,-2.190012,-5.067959,0.311358,-2.045110,-4.805677,1.173985,-2.181414,-5.035223,1.168576,-2.195540,-5.028112, + -0.464166,-1.655931,-5.417291,-0.461739,-1.644331,-5.372122,-0.467157,-1.661577,-5.374658,0.422204,-2.095959,-4.774981, + 0.531053,-1.865727,-6.308966,0.686941,-1.874207,-6.268366,0.553701,-1.830447,-6.300568,0.672213,-1.919202,-6.275338, + 0.824559,-2.142305,-4.732829,0.960536,-2.189305,-4.699946,0.812967,-2.207352,-4.731641,0.955726,-2.267890,-4.698441, + 1.192342,-2.072231,-6.148416,1.348210,-2.080704,-6.107822,1.214941,-2.036935,-6.140030,1.333530,-2.125715,-6.114781, + 0.021971,-1.696351,-6.431849,-0.096618,-1.607571,-6.457098,0.036651,-1.651339,-6.424890,-0.119217,-1.642867,-6.465484, + -0.368795,-1.823579,-4.968572,-0.511554,-1.763041,-5.001772,-0.363152,-1.763084,-4.971096,-0.499129,-1.716084,-5.003979, + -0.017553,-1.870670,-5.013330,0.118875,-1.917548,-4.982189,-0.043396,-1.959756,-5.020146,0.099840,-2.020161,-4.988813, + 0.318504,-1.786163,-6.359665,0.474393,-1.794643,-6.319067,0.341153,-1.750883,-6.351267,0.459665,-1.839638,-6.326037, + 0.829908,-2.191032,-4.973774,0.686672,-2.130626,-5.005106,0.834569,-2.112434,-4.975067,0.698141,-2.065556,-5.006207, + 0.329566,-2.062444,-4.922194,0.186398,-2.002021,-4.953787,0.333999,-1.983906,-4.922624,0.197619,-1.937015,-4.953949, + -8.092344,-14.164698,-8.294824,-8.148807,-14.285119,-8.320746,-7.153258,-12.856892,-9.386733,-7.254171,-12.962843,-9.420644, + -8.135977,-14.137457,-8.303729,-8.189168,-14.256828,-8.329123,-7.194395,-12.834287,-9.396052,-7.223404,-12.991892,-9.414505, + -7.367838,-12.627769,-7.875877,-7.419484,-12.707576,-7.893737,-7.347210,-13.266727,-9.471657,-7.331758,-13.138349,-9.458786, + -7.430174,-12.608685,-7.889024,-7.469488,-12.687648,-7.904173,-7.379070,-13.240034,-9.478246,-7.290450,-13.160584,-9.449396, + -7.726250,-14.072932,-9.621346,-7.816653,-14.155424,-9.650874,-7.770794,-14.041708,-9.630975,-7.777973,-14.193976,-9.643295, + -7.034207,-12.529778,-9.332891,-7.126087,-12.578350,-9.360487,-7.089805,-12.500443,-9.345569,-7.079129,-12.610398,-9.350276, + -7.202357,-12.580990,-8.808037,-7.224053,-12.569432,-8.810827,-7.764694,-13.355054,-8.017762,-7.209733,-12.588173,-8.765176, + -7.926924,-14.148820,-9.092133,-7.946117,-14.139242,-9.089529,-7.933703,-14.143287,-9.048862,-7.715505,-13.252127,-7.992627, + -7.319573,-12.609413,-8.322516,-7.707227,-13.377948,-7.995138,-7.338306,-12.609525,-8.293163,-7.328101,-12.615542,-8.281373, + -8.065266,-14.189294,-8.578657,-8.088036,-14.176212,-8.540043,-8.072259,-14.184629,-8.536376,-7.644999,-13.272464,-7.966582, + -7.418554,-13.434909,-9.496386,-7.389545,-13.277304,-9.477933,-7.449321,-13.405860,-9.502524,-7.348408,-13.299910,-9.468614, + -7.529988,-12.881859,-7.970421,-7.466790,-12.751020,-7.944589,-7.471604,-12.902921,-7.947737,-7.394377,-12.767553,-7.918436, + -7.132107,-12.795067,-9.376913,-7.103107,-12.637482,-9.358464,-7.162897,-12.766066,-9.383061,-7.061948,-12.660041,-9.349136, + -7.649037,-13.925727,-9.590872,-7.749985,-14.031753,-9.624797,-7.690196,-13.903168,-9.600200,-7.719196,-14.060754,-9.618649, + -8.011039,-14.034184,-8.118711,-8.088266,-14.169553,-8.148012,-8.066008,-14.019850,-8.140407,-8.129207,-14.150688,-8.166239, + -7.882066,-13.710361,-8.196790,-7.818411,-13.579412,-8.172699,-7.801848,-13.750525,-8.172240,-7.724135,-13.615045,-8.144806, + -7.523260,-13.638342,-9.537971,-7.494251,-13.480737,-9.519519,-7.554027,-13.609293,-9.544110,-7.453114,-13.503342,-9.510200, + -7.417104,-12.931896,-8.183049,-7.494818,-13.067377,-8.210485,-7.489618,-12.915464,-8.208985,-7.553273,-13.046413,-8.233076, + -7.655265,-13.386061,-8.102108,-7.732910,-13.521523,-8.129802,-7.728007,-13.369687,-8.127179,-7.791613,-13.500625,-8.151455, + -4.801834,-10.139355,-6.908706,-4.898594,-10.227769,-6.943083,-3.582476,-9.274898,-7.956930,-3.715370,-9.332958,-7.996011, + -4.832543,-10.097378,-6.913188,-4.925871,-10.186061,-6.947085,-3.612559,-9.238079,-7.962357,-3.697315,-9.371658,-7.993891, + -3.562686,-9.021241,-6.382484,-3.640058,-9.074600,-6.405329,-4.258864,-9.890885,-8.177776,-4.140100,-9.725861,-8.135106, + -3.613814,-8.979598,-6.391125,-3.679381,-9.036928,-6.411728,-4.274371,-9.849830,-8.179062,-4.110254,-9.762899,-8.129757, + -4.436479,-10.053354,-8.235818,-4.550982,-10.093946,-8.268845,-4.466584,-10.007282,-8.240617,-4.529029,-10.144466,-8.266503, + -3.226147,-8.904506,-7.837445,-3.329609,-8.913339,-7.865380,-3.267251,-8.855864,-7.844973,-3.297555,-8.961108,-7.860183, + -3.397840,-8.943875,-7.312716,-3.413826,-8.925009,-7.313498,-4.684494,-9.990747,-6.726824,-3.407044,-8.952178,-7.270415, + -4.647437,-10.104207,-7.707607,-4.661780,-10.088628,-7.703312,-4.651432,-10.100989,-7.663759,-4.546655,-9.865653,-6.676753, + -3.514060,-8.976663,-6.827232,-4.614723,-10.044728,-6.711647,-3.531339,-8.972927,-6.797232,-3.523962,-8.983398,-6.786493, + -4.787537,-10.143308,-7.194502,-4.803686,-10.126821,-7.153906,-4.792056,-10.140717,-7.151710,-4.459943,-9.918790,-6.657242, + -3.915950,-9.586766,-8.066372,-3.831194,-9.453187,-8.034838,-3.934005,-9.548066,-8.068492,-3.801111,-9.490006,-8.029411, + -3.807153,-9.188148,-6.492804,-3.700315,-9.092524,-6.457854,-3.760364,-9.231152,-6.474685,-3.638789,-9.136777,-6.436475, + -3.414570,-9.110223,-7.901303,-3.329830,-8.976658,-7.869774,-3.432663,-9.071558,-7.903435,-3.299710,-9.013443,-7.864336, + -4.310581,-9.948128,-8.195356,-4.443534,-10.006243,-8.234456,-4.340701,-9.911343,-8.200795,-4.425441,-10.044908,-8.232324, + -4.661790,-10.074605,-6.721579,-4.783365,-10.168981,-6.759789,-4.723316,-10.030352,-6.742958,-4.830154,-10.125978,-6.777907, + -4.479733,-9.801805,-6.662166,-4.372441,-9.706067,-6.628959,-4.432842,-9.844734,-6.644133,-4.310786,-9.750242,-6.607790, + -4.088072,-9.732965,-8.121848,-4.003316,-9.599385,-8.090315,-4.106127,-9.694265,-8.123968,-3.973232,-9.636205,-8.084888, + -3.898173,-9.396770,-6.530100,-4.020229,-9.491261,-6.566442,-3.968038,-9.341224,-6.552659,-4.075330,-9.436962,-6.585866, + -4.109012,-9.596358,-6.664565,-4.230999,-9.690833,-6.701166,-4.170896,-9.552243,-6.684869,-4.278138,-9.647968,-6.718261, + -2.047751,-4.801010,-5.922625,-1.972715,-4.690893,-5.898027,-2.362159,-5.673850,-7.494946,-2.246573,-5.585197,-7.458344, + -2.008889,-4.834758,-5.913913,-1.937045,-4.725128,-5.890601,-2.324711,-5.702572,-7.487020,-2.272797,-5.551747,-7.462981, + -3.052720,-6.213489,-6.162456,-2.990427,-6.143008,-6.139928,-1.846233,-4.909675,-7.306343,-1.923981,-5.099386,-7.339869, + -2.994749,-6.242234,-6.147096,-2.944500,-6.170602,-6.128276,-1.821946,-4.946039,-7.302416,-1.961249,-5.070392,-7.347728, + -1.710917,-4.708309,-7.256812,-1.609196,-4.641138,-7.225343,-1.671359,-4.746062,-7.248947,-1.641865,-4.597080,-7.230956, + -2.623593,-6.121233,-7.594635,-2.525393,-6.087730,-7.566401,-2.572803,-6.158852,-7.583793,-2.567222,-6.048789,-7.574784, + -2.735162,-6.147498,-7.053126,-2.716430,-6.162476,-7.047054,-2.193899,-5.000385,-5.834168,-2.749395,-6.145560,-7.011453, + -1.793929,-4.716628,-6.691891,-1.779816,-4.729691,-6.682039,-1.810314,-4.727077,-6.652252,-2.301529,-5.156631,-5.868202, + -2.873446,-6.183471,-6.573689,-2.273864,-4.964529,-5.852396,-2.871980,-6.189313,-6.539392,-2.885952,-6.182620,-6.533119, + -1.926647,-4.747052,-6.176242,-1.927821,-4.767363,-6.134209,-1.942257,-4.756602,-6.137210,-2.397616,-5.125636,-5.891220, + -2.109642,-5.289114,-7.401902,-2.161557,-5.439939,-7.425941,-2.083419,-5.322564,-7.397264,-2.199004,-5.411217,-7.433867, + -2.837552,-5.985364,-6.124314,-2.919507,-6.104469,-6.153937,-2.896661,-5.956231,-6.129230,-2.992913,-6.077557,-6.163329, + -2.487575,-5.875035,-7.541849,-2.539478,-6.025843,-7.565884,-2.461323,-5.908443,-7.537201,-2.576954,-5.997163,-7.573821, + -1.809077,-4.841340,-7.291849,-1.693446,-4.752619,-7.255230,-1.771601,-4.870019,-7.283913,-1.719698,-4.719212,-7.259878, + -2.237165,-4.924876,-5.835440,-2.140913,-4.803550,-5.801342,-2.163759,-4.951789,-5.826048,-2.081805,-4.832684,-5.796425, + -2.348416,-5.233692,-5.893325,-2.429906,-5.352670,-5.924686,-2.407551,-5.204634,-5.898372,-2.503302,-5.325819,-5.934331, + -1.975971,-5.104958,-7.353983,-2.027885,-5.255784,-7.378023,-1.949747,-5.138409,-7.349346,-2.065333,-5.227061,-7.385949, + -2.797000,-5.759942,-6.097139,-2.701249,-5.638757,-6.061180,-2.713087,-5.795923,-6.085341,-2.631596,-5.676945,-6.053980, + -2.607321,-5.502290,-6.094500,-2.511502,-5.381087,-6.058800,-2.534153,-5.529201,-6.083991,-2.452614,-5.410210,-6.052814, + -7.400217,-12.541910,-7.759577,-7.496977,-12.630324,-7.793953,-6.180858,-11.677453,-8.807801,-6.313752,-11.735514,-8.846881, + -7.430925,-12.499933,-7.764059,-7.524254,-12.588616,-7.797956,-6.210942,-11.640635,-8.813228,-6.295698,-11.774214,-8.844761, + -6.161069,-11.423797,-7.233355,-6.238440,-11.477156,-7.256199,-6.857247,-12.293441,-9.028647,-6.738482,-12.128416,-8.985976, + -6.212197,-11.382154,-7.241996,-6.277764,-11.439484,-7.262599,-6.872753,-12.252385,-9.029933,-6.708636,-12.165455,-8.980628, + -7.034861,-12.455910,-9.086689,-7.149365,-12.496501,-9.119715,-7.064966,-12.409838,-9.091487,-7.127411,-12.547022,-9.117374, + -5.824529,-11.307061,-8.688315,-5.927991,-11.315894,-8.716251,-5.865633,-11.258419,-8.695844,-5.895937,-11.363664,-8.711054, + -5.996223,-11.346431,-8.163588,-6.012208,-11.327564,-8.164370,-7.282877,-12.393303,-7.577694,-6.005426,-11.354733,-8.121286, + -7.245820,-12.506763,-8.558478,-7.260163,-12.491183,-8.554182,-7.249815,-12.503545,-8.514630,-7.145037,-12.268209,-7.527624, + -6.112442,-11.379218,-7.678103,-7.213105,-12.447284,-7.562517,-6.129721,-11.375483,-7.648102,-6.122344,-11.385954,-7.637364, + -7.385920,-12.545863,-8.045373,-7.402068,-12.529376,-8.004776,-7.390438,-12.543272,-8.002580,-7.058325,-12.321345,-7.508113, + -6.514333,-11.989322,-8.917242,-6.429577,-11.855742,-8.885709,-6.532387,-11.950622,-8.919362,-6.399493,-11.892562,-8.880282, + -6.405536,-11.590704,-7.343675,-6.298697,-11.495079,-7.308725,-6.358747,-11.633707,-7.325555,-6.237171,-11.539332,-7.287346, + -6.012953,-11.512778,-8.752173,-5.928213,-11.379213,-8.720644,-6.031045,-11.474113,-8.754306,-5.898092,-11.415998,-8.715206, + -6.908963,-12.350683,-9.046227,-7.041916,-12.408798,-9.085327,-6.939084,-12.313898,-9.051666,-7.023824,-12.447463,-9.083195, + -7.260172,-12.477160,-7.572449,-7.381747,-12.571536,-7.610659,-7.321698,-12.432907,-7.593829,-7.428537,-12.528533,-7.628778, + -7.078115,-12.204361,-7.513037,-6.970824,-12.108623,-7.479830,-7.031224,-12.247290,-7.495003,-6.909168,-12.152798,-7.458661, + -6.686454,-12.135520,-8.972719,-6.601698,-12.001941,-8.941185,-6.704509,-12.096821,-8.974839,-6.571615,-12.038760,-8.935759, + -6.496556,-11.799325,-7.380970,-6.618612,-11.893817,-7.417313,-6.566421,-11.743779,-7.403529,-6.673713,-11.839518,-7.436736, + -6.707394,-11.998914,-7.515435,-6.829381,-12.093389,-7.552037,-6.769278,-11.954799,-7.535739,-6.876521,-12.050524,-7.569131, + -8.191785,-14.382175,-8.079437,-8.249612,-14.260013,-8.089113,-7.333892,-15.373207,-9.350174,-7.355042,-15.224577,-9.345586, + -8.145103,-14.363737,-8.065087,-8.203934,-14.244780,-8.075656,-7.291997,-15.353685,-9.337770,-7.395699,-15.231600,-9.356806, + -7.485980,-15.971014,-7.879422,-7.516874,-15.879360,-7.880062,-7.740981,-14.526130,-9.399719,-7.616368,-14.690941,-9.378085, + -7.434835,-15.932577,-7.861266,-7.472230,-15.851347,-7.864942,-7.698758,-14.522309,-9.388305,-7.658409,-14.710164,-9.390507, + -7.848548,-14.303493,-9.412892,-7.857956,-14.178097,-9.406794,-7.798002,-14.286565,-9.398381,-7.910628,-14.185657,-9.421225, + -7.076562,-15.832427,-9.313636,-7.059046,-15.726996,-9.301791,-7.020875,-15.805285,-9.297068,-7.111664,-15.745382,-9.316949, + -7.212377,-15.837393,-8.777075,-7.191299,-15.827523,-8.768682,-8.116991,-14.586846,-7.932979,-7.229056,-15.840672,-8.736404, + -7.988937,-14.270925,-8.860330,-7.972546,-14.263349,-8.848463,-7.995997,-14.282440,-8.818300,-8.035701,-14.761008,-7.918334, + -7.342404,-15.881674,-8.296024,-8.184916,-14.641145,-7.954198,-7.343104,-15.876736,-8.261562,-7.357079,-15.884217,-8.256259, + -8.127421,-14.300876,-8.346171,-8.118821,-14.303741,-8.300362,-8.134721,-14.311408,-8.305012,-8.107006,-14.832335,-7.941811, + -7.542233,-14.953269,-9.376460,-7.438531,-15.075356,-9.357425,-7.501576,-14.946247,-9.365240,-7.480426,-15.094876,-9.369828, + -7.572548,-15.669412,-7.915957,-7.509854,-15.802797,-7.908347,-7.626537,-15.706646,-7.924065,-7.568546,-15.854160,-7.919211, + -7.221846,-15.586809,-9.335199,-7.118154,-15.708876,-9.316164,-7.181213,-15.579740,-9.323981,-7.160027,-15.728443,-9.328565, + -7.781585,-14.458495,-9.405815,-7.802772,-14.309791,-9.401232,-7.739713,-14.438928,-9.393414,-7.843405,-14.316861,-9.412449, + -8.202234,-14.587356,-7.950544,-8.260225,-14.439841,-7.955397,-8.143543,-14.535993,-7.939680,-8.206237,-14.402607,-7.947289, + -7.990865,-14.843204,-7.919580,-7.927715,-14.976462,-7.913710,-8.044780,-14.880522,-7.927791,-7.986303,-15.027894,-7.924802, + -7.635965,-14.740695,-9.386667,-7.532263,-14.862782,-9.367632,-7.595309,-14.733673,-9.375447,-7.574159,-14.882302,-9.380035, + -7.745060,-15.520215,-7.950284,-7.803536,-15.372843,-7.953273,-7.673803,-15.463830,-7.935506,-7.736952,-15.330572,-7.941375, + -7.862919,-15.232783,-8.026845,-7.921326,-15.085393,-8.030093,-7.804559,-15.181410,-8.014889,-7.867660,-15.048140,-8.020943, + -17.721691,-8.791491,-10.470668,-17.778154,-8.911912,-10.496591,-16.782606,-7.483685,-11.562577,-16.883520,-7.589636,-11.596488, + -17.765324,-8.764250,-10.479573,-17.818516,-8.883621,-10.504968,-16.823742,-7.461079,-11.571897,-16.852753,-7.618684,-11.590349, + -16.997185,-7.254561,-10.051722,-17.048832,-7.334368,-10.069581,-16.976559,-7.893520,-11.647501,-16.961105,-7.765141,-11.634630, + -17.059523,-7.235478,-10.064868,-17.098837,-7.314441,-10.080017,-17.008417,-7.866827,-11.654090,-16.919798,-7.787377,-11.625240, + -17.355598,-8.699725,-11.797190,-17.446001,-8.782217,-11.826718,-17.400143,-8.668501,-11.806819,-17.407320,-8.820769,-11.819139, + -16.663555,-7.156571,-11.508735,-16.755434,-7.205143,-11.536331,-16.719152,-7.127237,-11.521413,-16.708477,-7.237191,-11.526120, + -16.831705,-7.207783,-10.983881,-16.853401,-7.196225,-10.986671,-17.394041,-7.981847,-10.193606,-16.839081,-7.214965,-10.941020, + -17.556273,-8.775613,-11.267977,-17.575464,-8.766035,-11.265373,-17.563051,-8.770080,-11.224706,-17.344852,-7.878919,-10.168471, + -16.948921,-7.236206,-10.498361,-17.336575,-8.004741,-10.170982,-16.967653,-7.236318,-10.469007,-16.957449,-7.242335,-10.457217, + -17.694613,-8.816087,-10.754501,-17.717384,-8.803005,-10.715887,-17.701607,-8.811422,-10.712220,-17.274345,-7.899257,-10.142426, + -17.047901,-8.061702,-11.672230,-17.018892,-7.904097,-11.653777,-17.078669,-8.032653,-11.678369,-16.977757,-7.926702,-11.644458, + -17.159336,-7.508651,-10.146265,-17.096138,-7.377813,-10.120433,-17.100952,-7.529714,-10.123581,-17.023726,-7.394346,-10.094280, + -16.761456,-7.421860,-11.552757,-16.732454,-7.264274,-11.534308,-16.792244,-7.392859,-11.558906,-16.691296,-7.286833,-11.524981, + -17.278385,-8.552520,-11.766716,-17.379333,-8.658545,-11.800641,-17.319544,-8.529961,-11.776044,-17.348543,-8.687547,-11.794493, + -17.640387,-8.660977,-10.294555,-17.717613,-8.796346,-10.323856,-17.695356,-8.646643,-10.316251,-17.758554,-8.777481,-10.342083, + -17.511414,-8.337154,-10.372634,-17.447758,-8.206205,-10.348543,-17.431196,-8.377318,-10.348084,-17.353483,-8.241838,-10.320650, + -17.152607,-8.265135,-11.713816,-17.123598,-8.107530,-11.695363,-17.183374,-8.236086,-11.719954,-17.082462,-8.130135,-11.686044, + -17.046452,-7.558690,-10.358893,-17.124165,-7.694170,-10.386329,-17.118965,-7.542257,-10.384830,-17.182621,-7.673206,-10.408920, + -17.284613,-8.012854,-10.277952,-17.362257,-8.148316,-10.305646,-17.357355,-7.996480,-10.303023,-17.420961,-8.127418,-10.327299, + -1.567992,-0.488256,-0.186390,-1.538867,-0.404870,-0.159477,-1.586072,-0.387033,-0.184639,-1.534722,-0.447535,-0.279683, + -1.490264,-0.466661,-0.239144,-1.569326,-0.519728,-0.101724,-1.671420,-0.479901,-0.187739,-1.731592,-0.925581,-0.840357, + -1.730722,-0.996266,-0.834932,-1.692507,-1.094702,-0.386800,-1.549484,-1.170509,-0.468878,-1.670602,-1.130856,-0.507428, + -1.716891,-1.093240,-0.427854,-1.583825,-0.851702,-0.486620,-1.514774,-0.866847,-0.473944,-1.568316,-0.800728,-0.462120, + -1.599779,-0.799203,-0.470421,-1.621865,-1.153304,-0.291116,-1.619479,-0.990547,-0.065994,-1.563607,-0.960576,-0.055721, + -1.718047,-0.855176,-0.884265,-1.817002,-1.002139,-0.853641,-1.718379,-1.058085,-0.860252,-1.631036,-0.904656,-0.891991, + -1.592259,-0.434244,-0.197857,-1.577431,-0.439797,-0.161378,-1.553344,-0.935494,-0.188265,-1.643350,-0.984017,-0.140751, + -1.728744,-0.695893,-0.136492,-1.722723,-0.708814,-0.180990,-1.655199,-0.717519,-0.194323,-1.685263,-0.685188,-0.118576, + -1.583767,-0.872861,-0.700918,-1.622778,-1.002380,-0.645411,-1.726194,-0.919480,-0.628192,-1.654215,-0.828164,-0.683257, + -1.650780,-0.936436,-0.778666,-1.666962,-1.022820,-0.760196,-1.779772,-0.954679,-0.746132,-1.722718,-0.892334,-0.766199, + -1.594139,-0.726207,-0.921814,-1.665595,-0.921305,-0.701522,-1.438326,-0.373748,-0.209737,-1.517100,-0.578807,-0.169430, + -1.607728,-0.551951,-0.270310,-1.472558,-0.402802,-0.296739,-1.530402,-0.336015,-0.176725,-1.427602,-0.460104,-0.242180, + -1.490301,-0.387081,-0.129367,-1.637360,-1.067001,-0.313976,-1.473081,-1.024709,0.036009,-1.426030,-1.001636,0.050309, + -1.519009,-0.987402,-0.071689,-1.520599,-1.066182,-0.078495,-1.514327,-1.045445,0.102927,-1.422019,-1.000179,0.130980, + -1.426612,-1.063909,0.184932,-1.512970,-1.039424,0.102261,-1.421517,-0.983655,0.141341,-1.410754,-1.039235,0.197868, + -1.473138,-1.152779,0.225897,-1.412133,-1.125671,0.247028,-1.518194,-1.100622,0.174596,-1.542037,-0.976414,0.072652, + -1.431700,-0.945633,0.089480,-1.562057,-1.000817,-0.375711,-1.615384,-0.942387,-0.144168,-1.764164,-0.911642,-0.038127, + -1.726690,-0.836797,-0.071627,-1.677881,-1.023562,-0.128196,-1.546974,-0.853957,-0.118617,-1.563079,-0.912518,-0.260235, + -1.630395,-0.991661,0.007370,-1.651899,-1.062135,-0.124647,-1.571687,-0.931810,-0.005895,-1.554360,-0.893889,-0.032674, + -1.615641,-0.849819,-0.170845,-1.694490,-0.991112,-0.070356,-1.636348,-1.025677,-0.044473,-1.535759,-0.481855,-0.214794, + -1.638439,-0.701732,-0.168260,-1.520942,-0.929759,-0.139046,-1.678581,-0.945737,-0.849094,-1.609829,-1.127094,-0.376741, + -1.516927,-0.828340,-0.458692,-1.614037,-1.000900,-0.012362,-1.565889,-0.940451,-0.022301,-1.553728,-0.868741,-0.180532, + -1.683383,-1.064994,-0.346242,-1.623671,-1.009216,-0.398365,-1.649943,-1.159343,-0.333332,-1.649554,-1.061855,-0.311790, + -1.573786,-0.995278,-0.374803,-1.629702,-1.151963,-0.290980,-1.656655,-1.154268,-0.324358,-1.688122,-1.060155,-0.338294, + -1.620510,-1.002669,-0.395411,-1.539018,-0.952794,-0.025208,-1.528555,-0.924043,-0.043723,-1.539908,-0.978045,0.072452, + -1.648673,-1.000003,-0.216426,-1.621247,-0.947954,-0.238029,-1.552130,-0.943274,-0.291281,-1.552719,-0.877688,-0.179404, + -1.556590,-0.902201,-0.045334,-1.374934,-1.077434,0.129235,-1.350973,-1.053157,0.159184,-1.371027,-1.082008,0.136432, + -1.354079,-1.044217,0.152184,-1.352914,-1.084992,0.130446,-1.352505,-1.079360,0.122947,-1.335928,-1.058171,0.151320, + -1.334551,-1.049319,0.143621,-0.861458,-0.845621,-0.110686,-0.784314,-0.749533,-0.075232,-0.795415,-0.779001,-0.026517, + -0.805836,-0.872156,-0.107779,-0.798914,-0.827562,-0.154582,-0.941943,-0.811096,-0.132841,-0.901369,-0.891693,-0.026700, + -1.803721,-1.454150,-1.129242,-1.841789,-1.479487,-1.082519,-1.482316,-1.160336,-0.563825,-1.592113,-1.279644,-0.482283, + -1.469359,-1.283873,-0.533679,-1.448525,-1.193578,-0.569767,-1.591013,-1.305139,-0.806439,-1.659589,-1.258499,-0.790316, + -1.595433,-1.213074,-0.844767,-1.565593,-1.242870,-0.848298,-1.616418,-1.161700,-0.554695,-1.423208,-1.238303,-0.373819, + -1.306324,-1.162877,-0.090002,-1.321579,-1.102472,-0.074382,-1.791313,-1.435917,-1.209547,-1.840923,-1.551856,-1.081387, + -1.913564,-1.470117,-1.049862,-1.857525,-1.365120,-1.183421,-0.837852,-0.832412,-0.056779,-0.862096,-0.805271,-0.072810, + -1.300136,-1.064541,-0.202460,-1.280326,-1.168703,-0.164104,-1.042796,-1.035939,-0.105075,-1.024126,-1.052766,-0.143628, + -1.037646,-1.007299,-0.203514,-1.056141,-0.989031,-0.120920,-1.752756,-1.290379,-0.986807,-1.788727,-1.400930,-0.894414, + -1.677170,-1.438244,-0.957869,-1.680699,-1.324616,-1.018083,-1.798707,-1.362737,-1.079513,-1.840585,-1.390903,-1.005455, + -1.749345,-1.480910,-1.039236,-1.737669,-1.419135,-1.099172,-1.766394,-1.301581,-1.330909,-1.748819,-1.386702,-0.993446, + -0.687500,-0.803550,-0.120489,-0.894865,-0.864253,-0.208736,-0.843956,-0.956520,-0.119258,-0.736409,-0.888237,-0.125121, + -0.727276,-0.776026,-0.027473,-0.740203,-0.827769,-0.193020,-0.730689,-0.723395,-0.088112,-1.375439,-1.179070,-0.423016, + -1.372664,-1.023287,0.027807,-1.477341,-1.068980,-0.008322,-1.421984,-1.091139,-0.028018,-1.374527,-1.068593,-0.014226, + -1.416874,-1.030573,0.000085,-1.352440,-0.990865,-0.092390,-1.355790,-1.069608,-0.098978,-1.440571,-1.116235,-0.099774, + -1.441155,-0.931523,-0.135371,-1.301376,-1.036007,0.097897,-1.487009,-1.115595,0.032328,-1.417160,-1.171771,-0.018829, + -1.324056,-1.127539,0.008228,-1.333652,-1.184765,0.068448,-1.311153,-1.095665,0.151991,-1.309455,-1.148462,0.208125, + -1.506258,-1.119623,0.021145,-1.413157,-1.169190,-0.022811,-1.307611,-1.131744,-0.001390,-1.302570,-1.179883,0.062308, + -1.484735,-1.228517,0.151302,-1.388479,-1.262843,0.119815,-1.327138,-1.236172,0.140523,-1.396012,-1.215833,0.208948, + -1.293700,-1.083059,0.152841,-1.410729,-1.240337,0.039936,-1.526985,-1.193905,0.081674,-1.535425,-1.082299,-0.040857, + -1.407539,-1.151272,-0.095880,-1.320315,-1.090444,-0.050092,-1.406826,-1.133273,0.114659,-1.482156,-1.023111,-0.412961, + -1.529280,-1.224645,-0.319024,-1.407311,-1.067028,-0.440133,-1.267557,-1.073096,-0.144968,-1.673723,-1.350961,-0.536271, + -1.388553,-0.922133,-0.175463,-1.475634,-1.107976,-0.010653,-1.130430,-1.106719,-0.025408,-1.162648,-1.021541,-0.021912, + -1.431831,-1.017324,-0.070703,-1.208501,-1.156080,-0.164242,-1.419360,-0.964175,-0.308614,-1.335950,-1.002932,-0.086748, + -1.291384,-1.055529,-0.277942,-1.284999,-1.175518,-0.020440,-1.350699,-1.220677,-0.144276,-1.506314,-1.354352,-0.628853, + -1.276534,-1.087169,-0.025130,-1.268436,-1.053754,-0.049045,-1.388553,-0.922133,-0.175463,-1.262884,-0.979075,-0.124357, + -1.514757,-1.169330,-0.115433,-1.197490,-1.155827,-0.096766,-1.269957,-1.194071,-0.089898,-0.822618,-0.844260,-0.130083, + -1.046251,-0.976544,-0.193236,-1.320781,-1.041638,-0.151916,-1.841482,-1.411568,-1.121593,-1.561481,-1.173351,-0.524461, + -1.649350,-1.202258,-0.819729,-1.310202,-1.160829,-0.032163,-1.288554,-1.086430,-0.040375,-1.252554,-1.027269,-0.200159, + -1.372141,-1.198166,-0.475815,-1.552020,-1.235321,-0.362674,-1.505915,-1.038147,-0.454579,-1.397280,-1.106082,-0.492613, + -1.439608,-1.249339,-0.420896,-1.365064,-1.183580,-0.430225,-1.482518,-1.019169,-0.417881,-1.531570,-1.228952,-0.320099, + -1.397694,-1.070623,-0.448112,-1.418559,-1.242305,-0.378880,-1.427714,-1.252226,-0.419668,-1.361961,-1.199710,-0.474078, + -1.550453,-1.238608,-0.355531,-1.501528,-1.029371,-0.453059,-1.392836,-1.100084,-0.490193,-1.392990,-0.935912,-0.132254, + -1.314063,-1.071203,-0.039868,-1.298194,-1.045298,-0.058735,-1.460834,-1.081162,-0.000127,-1.407523,-1.150157,-0.093433, + -1.227875,-1.091928,-0.232812,-1.429092,-0.981538,-0.317707,-1.259712,-1.054989,-0.236369,-1.325954,-1.062326,-0.306021, + -1.260356,-1.031578,-0.198457,-1.264687,-1.055849,-0.064357,-1.347252,-1.113423,0.094548,-1.302105,-1.116689,0.097950, + -1.343737,-1.117487,0.102236,-1.302415,-1.111385,0.087445,-1.339469,-1.102471,0.113599,-1.340226,-1.095324,0.107561, + -1.301809,-1.102528,0.108567,-1.300205,-1.093972,0.100583,-1.835590,-1.036556,-0.504228,-1.608979,-1.019542,-0.444341, + -1.811924,-1.224773,-0.501202,-1.726003,-0.949016,-0.366475,-1.394763,-1.232040,-0.719818,-1.468654,-1.126230,-0.710149, + -14.185256,12.396297,-8.853247,-14.091755,12.387091,-8.825005,-14.090961,12.397882,-8.881993,-14.167858,12.300535,-8.882236, + -14.165830,12.303116,-8.817303,-14.202501,12.468589,-8.801892,-14.178080,12.455189,-8.938392,-14.130130,12.026432,-8.768750, + -14.160891,12.014533,-8.806263,-14.516675,12.212805,-8.808764,-14.519262,12.062315,-8.919774,-14.430955,12.155359,-8.885818, + -14.471152,12.221516,-8.823850,-14.360945,12.043270,-8.611292,-14.433398,12.003852,-8.603232,-14.372057,12.014865,-8.550987, + -14.361690,12.056993,-8.550381,-14.547242,12.264633,-8.990062,-14.698766,12.551322,-8.880739,-14.678854,12.549143,-8.819713, + -13.989710,11.950407,-8.775770,-14.037441,12.084315,-8.885853,-14.117169,11.980383,-8.958838,-14.060220,11.854877,-8.844028, + -14.134040,12.394616,-8.885054,-14.133444,12.415657,-8.851315,-14.635614,12.422403,-8.838944,-14.677664,12.487113,-8.921149, + -14.407287,12.557852,-8.933177,-14.405599,12.513707,-8.956683,-14.389277,12.453434,-8.903855,-14.387844,12.545306,-8.883472, + -14.292478,11.916902,-8.649208,-14.348818,12.018741,-8.744191,-14.271847,12.098147,-8.669133,-14.227103,12.002123,-8.589362, + -14.129276,11.920490,-8.787467,-14.195173,11.990668,-8.872053,-14.118202,12.070076,-8.796995,-14.094851,11.980608,-8.735473, + -13.938257,11.747383,-8.668446,-14.271785,12.004743,-8.670630,-14.050210,12.275145,-8.816010,-14.271406,12.391292,-8.792996, + -14.262114,12.360921,-8.927543,-14.123441,12.242991,-8.872480,-14.033750,12.362009,-8.872359,-14.133509,12.251497,-8.782439, + -14.043259,12.368703,-8.792839,-14.352163,12.243453,-8.714035,-14.529656,12.306593,-8.904976,-14.843387,12.555254,-8.960728, + -14.812273,12.563146,-8.922605,-14.827945,12.729180,-8.974461,-14.748601,12.503401,-8.863484,-14.755818,12.493594,-8.939501, + -14.848107,12.621298,-9.007879,-14.783134,12.637200,-8.933378,-14.813236,12.713743,-8.925808,-14.816516,12.693138,-8.987302, + -14.738620,12.599817,-8.911688,-14.765963,12.681950,-8.902339,-14.848162,12.616066,-9.012827,-14.762333,12.639688,-8.941577, + -14.797110,12.728141,-8.930161,-14.899445,12.775981,-8.973854,-14.853055,12.790921,-8.923577,-14.880299,12.705167,-9.018585, + -14.807926,12.562705,-9.047834,-14.747929,12.576729,-8.949811,-14.782899,12.711521,-8.945271,-14.764870,12.650165,-8.953057, + -14.848921,12.721954,-8.970881,-14.847497,12.681694,-8.981929,-14.786335,12.673541,-8.897945,-14.803875,12.704295,-8.941690, + -14.785846,12.642938,-8.949477,-14.594828,12.282576,-8.825294,-14.615219,12.485559,-8.844489,-14.523271,12.635269,-8.905105, + -14.510603,12.614393,-8.818140,-14.597403,12.495700,-8.950624,-14.471591,12.240067,-8.669387,-14.631770,12.520494,-8.744145, + -14.610801,12.370255,-8.782286,-14.679441,12.612358,-8.919092,-14.625936,12.476810,-8.976333,-14.332195,12.109758,-8.862290, + -14.694411,12.610434,-8.826158,-14.680401,12.590866,-8.780409,-14.588158,12.462763,-8.756253,-14.597541,12.562355,-8.937304, + -14.663786,12.555012,-8.946378,-14.183312,12.353820,-8.844387,-14.375457,12.467546,-8.873333,-14.642035,12.461213,-8.794696, + -14.162857,11.974099,-8.795503,-14.562543,12.139028,-8.831421,-14.414441,11.985244,-8.579418,-14.687945,12.585649,-8.917296, + -14.700502,12.584846,-8.830050,-14.622200,12.460562,-8.733089,-14.493166,12.266507,-8.885280,-14.562778,12.254583,-8.816652, + -14.515053,12.234733,-8.960622,-14.509282,12.307895,-8.900205,-14.591969,12.277438,-8.812453,-14.523764,12.270685,-8.985124, + -14.505219,12.255593,-8.969836,-14.486647,12.286987,-8.886083,-14.569911,12.261868,-8.809872,-14.726982,12.571316,-8.830340, + -14.715892,12.560241,-8.797128,-14.808970,12.563316,-9.045432,-14.580499,12.418022,-8.901510,-14.585997,12.406780,-8.839952, + -14.625502,12.336492,-8.793756,-14.664977,12.439123,-8.725189,-14.681517,12.571361,-8.788946,-14.937084,12.779245,-8.910187, + -14.927842,12.785600,-8.884147,-14.979399,12.741565,-8.950322,-14.958496,12.845938,-8.926904,-14.902764,12.867792,-8.859640, + -14.990138,12.800812,-8.962474,-15.134330,12.025725,-9.137362,-15.161789,11.934283,-9.114793,-15.204556,11.957145,-9.146622, + -15.109916,11.978552,-9.223920,-15.070906,11.956607,-9.176763,-15.131694,12.055062,-9.051963,-15.224847,12.073724,-9.153857, + -14.387910,11.494791,-8.691314,-14.347612,11.524190,-8.693909,-14.681239,12.013781,-8.834848,-14.526186,12.051356,-8.928125, + -14.637448,11.978357,-8.949386,-14.698496,11.988462,-8.871595,-14.550575,11.741450,-8.781858,-14.499420,11.787780,-8.732111, + -14.587232,11.759960,-8.691705,-14.602398,11.738425,-8.724985,-14.543797,12.052410,-8.802056,-14.720649,12.126553,-9.028021, + -14.933448,12.431534,-8.924895,-14.956038,12.387877,-8.883552,-14.355472,11.347150,-8.619488,-14.277186,11.402574,-8.749585, + -14.198583,11.492702,-8.663724,-14.294951,11.427170,-8.523438,-15.181437,11.992689,-9.155453,-15.171690,11.990351,-9.116970, + -14.896912,12.289849,-8.955644,-14.897934,12.398213,-8.986778,-15.136569,12.309179,-9.102445,-15.103736,12.290823,-9.135446, + -15.082685,12.214278,-9.115756,-15.149890,12.264680,-9.073318,-14.479107,11.686187,-8.604613,-14.402329,11.710429,-8.732029, + -14.493638,11.623874,-8.776671,-14.556149,11.608088,-8.660265,-14.351498,11.513733,-8.592061,-14.278831,11.558040,-8.688396, + -14.368870,11.471241,-8.734795,-14.413798,11.470883,-8.633956,-14.435361,11.255289,-8.420131,-14.474367,11.645384,-8.688013, + -15.117295,11.847303,-9.184030,-15.046494,12.075619,-9.107823,-15.120941,12.098793,-9.221981,-15.096231,11.912891,-9.253599, + -15.209713,11.890389,-9.159657,-15.037868,11.895390,-9.186009,-15.157387,11.875088,-9.100609,-14.746856,11.833213,-8.850534, + -14.797374,12.106785,-8.969009,-14.830070,12.553753,-8.866070,-14.869730,12.529449,-8.963320,-14.915759,12.520377,-8.901660, + -14.895496,12.525493,-8.866470,-14.990246,12.659904,-8.805813,-14.852189,12.526968,-8.904208,-14.883570,12.423162,-8.844638, + -14.886343,12.413629,-8.914318,-14.830110,12.439132,-8.971375,-14.789484,12.394023,-8.807374,-14.815481,12.620761,-8.821613, + -14.926579,12.581172,-8.967335,-14.985110,12.556738,-8.890565,-14.925106,12.574256,-8.807233,-14.946176,12.655588,-8.802125, + -14.790775,12.646457,-8.796021,-14.987118,12.620318,-8.810029,-14.873405,12.542286,-8.771632,-14.898979,12.625174,-8.764121, + -14.840336,12.700043,-8.815934,-14.862642,12.772637,-8.813353,-14.947212,12.571468,-8.977375,-14.985147,12.557595,-8.870486, + -14.918660,12.572961,-8.779138,-14.945581,12.664767,-8.775884,-15.015631,12.726388,-8.853125,-14.969705,12.741131,-8.802366, + -14.987492,12.837161,-8.906999,-14.824490,12.713295,-8.801012,-15.027786,12.642213,-8.865331,-14.998971,12.653124,-8.993644, + -14.941428,12.497695,-9.002113,-14.992512,12.483916,-8.856030,-14.900796,12.511479,-8.790967,-14.874436,12.601628,-8.894949, + -14.951546,12.639537,-8.770029,-14.933455,12.578206,-8.777880,-14.986658,12.663162,-8.827757,-14.797695,12.643291,-8.803982, + -14.981450,12.624517,-8.842738,-14.894129,12.627531,-8.785937,-14.757760,12.520703,-8.815906,-14.947958,12.642795,-8.791973, + -14.929868,12.581464,-8.799824,-14.695804,12.208865,-8.830265,-14.618627,12.181071,-9.034045,-14.788136,12.134175,-8.876122, + -14.953422,12.324312,-8.951584,-14.429873,11.968391,-8.944233,-14.629942,12.111456,-8.662460,-14.817433,12.498159,-8.971833, + -15.105776,12.370519,-9.013306,-15.120208,12.323801,-8.947170,-14.823749,12.476876,-8.883996,-14.938465,12.333525,-9.039618, + -14.718407,12.284309,-8.780322,-14.723536,11.901688,-8.743170,-14.989426,12.309134,-8.847398,-14.891313,12.204551,-8.887377, + -14.986122,12.453974,-8.962935,-14.896036,12.340219,-9.046720,-14.585456,11.863126,-8.907224,-14.989995,12.436298,-8.874468, + -14.993612,12.400105,-8.844614,-14.800011,12.372518,-8.760839,-14.977762,12.246352,-8.884119,-14.750340,12.412431,-9.031625, + -14.995813,12.380105,-9.019950,-14.947164,12.414338,-8.999880,-15.106493,12.002468,-9.161255,-15.107131,12.200620,-9.092569, + -14.926105,12.296355,-8.904547,-14.350485,11.536349,-8.653928,-14.599994,12.052734,-8.831771,-14.535894,11.798251,-8.677032, + -14.962653,12.442263,-8.960518,-14.966337,12.425325,-8.875346,-14.960383,12.260404,-8.846574,-14.779540,12.064572,-8.956551, + -14.587553,12.140479,-9.006173,-14.660268,12.150901,-8.827111,-14.762873,12.093589,-8.861619,-14.710711,12.098743,-9.018771, + -14.805746,12.091492,-8.969752,-14.692523,12.196346,-8.813261,-14.605583,12.165443,-9.038995,-14.786917,12.126699,-8.860868, + -14.733237,12.111988,-9.031245,-14.731150,12.093880,-9.023947,-14.798020,12.064234,-8.961604,-14.589625,12.145254,-9.021103, + -14.671815,12.163085,-8.811685,-14.773401,12.101021,-8.856441,-14.817696,12.416162,-8.760307,-14.940228,12.430418,-8.866983, + -14.945259,12.404460,-8.846025,-14.829699,12.509183,-8.944705,-14.990657,12.485766,-8.856642,-14.896908,12.246366,-9.001324, + -14.909415,12.230167,-8.948707,-14.851596,12.197808,-8.876071,-14.920505,12.276362,-8.819922,-14.977128,12.391204,-8.853123, + -14.962725,12.768301,-8.883543,-14.940128,12.780355,-8.871380,-14.990279,12.736920,-8.939015,-14.920126,12.785326,-8.863461, + -15.012732,12.783776,-8.953218,-14.934466,12.866286,-8.844005,-15.021725,12.707242,-8.993311,-15.005734,12.825774,-8.877818, + -14.945729,12.849454,-8.814996,-15.025048,12.785911,-8.926198,-14.910388,12.860971,-8.823015,-14.721366,12.275932,-8.802122, + -14.776350,12.250680,-8.800535,-14.763933,12.249881,-8.818054,-16.733656,7.844210,-9.400893,-16.791729,7.923069,-9.395079, + -16.792063,7.906188,-9.450574,-16.669420,7.915408,-9.434335,-16.682037,7.926849,-9.371590,-16.783726,7.792798,-9.346026, + -16.769930,7.794813,-9.484639,-15.681142,8.033017,-9.393774,-15.657074,8.004096,-9.426627,-16.121469,7.655718,-9.261838, + -16.111029,7.540057,-9.407878,-16.153433,7.663839,-9.385782,-16.142839,7.688479,-9.290319,-15.879111,7.797787,-9.382493, + -15.836537,7.729503,-9.356743,-15.855845,7.786664,-9.283317,-15.884919,7.812423,-9.300700,-16.281012,7.568470,-9.313246, + -16.511000,7.364472,-9.307323,-16.531145,7.391318,-9.252562,-15.584632,8.133906,-9.315965,-15.631680,8.152311,-9.488521, + -15.528432,8.047060,-9.515860,-15.488341,8.039832,-9.341167,-16.761147,7.876651,-9.443666,-16.782087,7.869133,-9.410707, + -16.462049,7.503613,-9.282860,-16.471045,7.415258,-9.352327,-16.698015,7.561520,-9.425433,-16.662819,7.587933,-9.449258, + -16.636145,7.649430,-9.402390,-16.708494,7.592898,-9.381711,-15.710021,7.829811,-9.291222,-15.743946,7.826553,-9.437529, + -15.830505,7.919734,-9.396436,-15.794681,7.916113,-9.268806,-15.589236,7.995462,-9.352328,-15.607749,7.970310,-9.476614, + -15.694308,8.063490,-9.435521,-15.657730,8.044585,-9.332375,-15.482544,8.092932,-9.107917,-15.758690,7.884437,-9.348235, + -16.736631,8.029361,-9.397335,-16.682549,7.796080,-9.322481,-16.646538,7.798816,-9.455925,-16.656851,7.987651,-9.435815, + -16.803953,7.973218,-9.454843,-16.669634,7.990914,-9.345776,-16.814232,7.976199,-9.375193,-16.085646,7.841253,-9.299715, + -16.288052,7.630782,-9.248953,-16.496923,7.249271,-9.340514,-16.526556,7.251135,-9.295026,-16.651350,7.180605,-9.395012, + -16.496668,7.346142,-9.254007,-16.454975,7.341797,-9.323052,-16.546003,7.236847,-9.404122,-16.604137,7.240505,-9.314881, + -16.649244,7.175800,-9.342810,-16.628559,7.213030,-9.390139,-16.599936,7.275261,-9.264432,-16.650723,7.210642,-9.293171, + -16.547054,7.241965,-9.400768,-16.617807,7.254161,-9.312189,-16.669413,7.180135,-9.344140,-16.647488,7.106901,-9.438088, + -16.687721,7.106401,-9.380782,-16.600389,7.178256,-9.446609,-16.526636,7.314535,-9.397854,-16.575024,7.299634,-9.293731, + -16.663952,7.206069,-9.346166,-16.624594,7.253067,-9.326357,-16.633291,7.167608,-9.398170,-16.601263,7.194171,-9.394487, + -16.632074,7.198238,-9.295016,-16.645893,7.193071,-9.349323,-16.606535,7.240071,-9.329515,-16.234756,7.606708,-9.162174, + -16.520704,7.475409,-9.292009,-16.668381,7.464512,-9.360850,-16.680962,7.492985,-9.286315,-16.498693,7.481196,-9.359745, + -16.036217,7.767576,-9.206955,-16.555485,7.466270,-9.184225,-16.407982,7.564618,-9.166853,-16.564234,7.349985,-9.335955, + -16.460392,7.461149,-9.362565,-16.117830,7.732893,-9.465472,-16.569340,7.343441,-9.259947,-16.570026,7.372182,-9.216566, + -16.527451,7.538363,-9.192493,-16.562597,7.442699,-9.364964,-16.518953,7.394056,-9.353781,-16.704540,7.875527,-9.393265, + -16.660065,7.655516,-9.375695,-16.493185,7.481067,-9.237830,-15.633352,7.985806,-9.397346,-16.086433,7.578799,-9.291866, + -15.817599,7.743000,-9.297329,-16.538618,7.359646,-9.330436,-16.544859,7.353325,-9.260695,-16.514050,7.514624,-9.164859, + -16.251762,7.657727,-9.254927,-16.193417,7.632029,-9.177260,-16.251192,7.596987,-9.315836,-16.291012,7.648007,-9.253888, + -16.223642,7.612416,-9.152543,-16.281687,7.589959,-9.322258,-16.254684,7.609518,-9.325673,-16.270302,7.666951,-9.255871, + -16.202194,7.629059,-9.164026,-16.520103,7.342318,-9.255108,-16.523874,7.363240,-9.225109,-16.526569,7.312270,-9.396404, + -16.431581,7.543197,-9.290025,-16.438034,7.554230,-9.239064,-16.357574,7.557752,-9.154184,-16.478539,7.488636,-9.150220, + -16.552782,7.382197,-9.224119,-16.629364,7.046278,-9.399653,-16.640432,7.036314,-9.375527,-16.573275,7.055702,-9.439481, + -16.670589,7.006793,-9.443554,-16.722227,7.000751,-9.370035,-16.614794,7.025065,-9.472807,-15.977041,6.895757,-9.025797, + -15.954244,6.854607,-8.939704,-15.958237,6.811452,-8.978259,-15.877069,6.883291,-9.038599,-15.886521,6.927405,-8.991783, + -16.056568,6.928825,-8.998546,-16.023699,6.818392,-9.076855,-15.430388,7.481637,-9.415730,-15.436468,7.523345,-9.442536, + -16.015686,7.421283,-9.283836,-16.100248,7.530363,-9.411048,-16.050657,7.406782,-9.406213,-16.018251,7.384646,-9.314435, + -15.751931,7.457819,-9.435564,-15.755706,7.535757,-9.401678,-15.733495,7.469517,-9.336877,-15.732461,7.434292,-9.360736, + -16.006990,7.582089,-9.328065,-16.167711,7.365314,-9.311705,-16.356426,7.172871,-9.262733,-16.352356,7.176547,-9.198737, + -15.300252,7.484662,-9.322981,-15.296177,7.466336,-9.501799,-15.318089,7.614621,-9.505877,-15.317423,7.620489,-9.326596, + -15.962523,6.839017,-9.011391,-15.986764,6.858172,-8.986352,-16.225737,7.222838,-9.210019,-16.287701,7.188637,-9.297792, + -16.169212,6.947085,-9.221205,-16.130743,6.968199,-9.245252,-16.083471,7.009920,-9.193148,-16.155691,6.954772,-9.168631, + -15.620977,7.561438,-9.315972,-15.629246,7.561755,-9.465967,-15.608652,7.431395,-9.444850,-15.603010,7.439848,-9.312627, + -15.411016,7.569145,-9.356215,-15.430065,7.590771,-9.481083,-15.409472,7.460412,-9.459965,-15.413340,7.482702,-9.351232, + -15.293820,7.553608,-9.098060,-15.599840,7.500576,-9.382697,-15.838347,6.856120,-8.909627,-15.994565,6.997600,-9.045742, + -15.948083,6.902268,-9.134413,-15.813885,6.872150,-9.003061,-15.913886,6.787112,-8.932507,-15.834144,6.940991,-8.947100, + -15.931090,6.848494,-8.883568,-15.885032,7.295376,-9.348610,-16.107136,7.327394,-9.235085,-16.512672,7.214321,-9.247330, + -16.443947,7.215917,-9.345434,-16.433062,7.177532,-9.296944,-16.462187,7.178826,-9.251110,-16.503546,7.014569,-9.294170, + -16.474583,7.227657,-9.281203,-16.394812,7.230413,-9.188793,-16.354391,7.228806,-9.254428,-16.374041,7.288966,-9.327621, + -16.404215,7.337319,-9.163524,-16.578823,7.170441,-9.222621,-16.469589,7.171381,-9.381180,-16.424562,7.100426,-9.321267, + -16.481701,7.102967,-9.231348,-16.533060,7.045285,-9.263541,-16.609512,7.156392,-9.200773,-16.473196,7.038502,-9.284140, + -16.477190,7.137374,-9.180687,-16.529587,7.074564,-9.210526,-16.627934,7.108796,-9.252138,-16.669447,7.052340,-9.284246, + -16.453650,7.176285,-9.396467,-16.422306,7.101828,-9.315656,-16.475445,7.094238,-9.215059,-16.534203,7.028246,-9.251891, + -16.541679,6.988040,-9.365899,-16.581491,6.987068,-9.308306,-16.646902,6.980577,-9.435449,-16.643888,7.102192,-9.239626, + -16.466078,7.027375,-9.354971,-16.489265,7.107845,-9.456954,-16.396729,7.229490,-9.392295,-16.358540,7.125701,-9.283166, + -16.435810,7.143250,-9.198751,-16.522289,7.170360,-9.305617,-16.510370,7.033541,-9.241383,-16.471067,7.080603,-9.221611, + -16.507856,7.026700,-9.312590,-16.602741,7.157166,-9.209423,-16.479275,7.057136,-9.311259,-16.533909,7.087964,-9.228042, + -16.526468,7.251959,-9.165139,-16.514681,7.045673,-9.259802,-16.475378,7.092735,-9.240030,-16.163822,7.498671,-9.136292, + -16.246878,7.460705,-9.330376,-16.101151,7.385470,-9.151770,-16.259686,7.166273,-9.205993,-16.080875,7.559515,-9.534853, + -15.939015,7.597785,-9.164825,-16.411583,7.268975,-9.338802,-16.279793,6.998754,-9.221464,-16.275278,7.016768,-9.138190, + -16.436857,7.274140,-9.259961,-16.241184,7.153303,-9.281984,-16.307222,7.464468,-9.110991,-15.876101,7.376677,-9.248245, + -16.310505,7.175901,-9.101120,-16.184399,7.274981,-9.108631,-16.371737,7.114736,-9.271867,-16.255054,7.194205,-9.304547, + -15.966393,7.411461,-9.490579,-16.399273,7.139374,-9.204753,-16.387735,7.152249,-9.160984,-16.384155,7.373010,-9.116920, + -16.235014,7.186116,-9.096255,-16.340725,7.335348,-9.367397,-16.282280,7.096796,-9.271209,-16.322304,7.148513,-9.290415, + -15.936186,6.909513,-9.020479,-16.090546,6.999145,-9.159152,-16.266577,7.214138,-9.168046,-15.440197,7.547823,-9.408751, + -16.036686,7.507317,-9.304149,-15.739379,7.528613,-9.339459,-16.360643,7.140657,-9.271691,-16.386610,7.161916,-9.210567, + -16.263481,7.214612,-9.081944,-16.060349,7.358139,-9.230478,-16.218918,7.479722,-9.353492,-16.149864,7.523768,-9.138881, + -16.064501,7.406365,-9.173848,-16.105122,7.394554,-9.309690,-16.093294,7.319756,-9.235784,-16.160769,7.504927,-9.122952, + -16.254578,7.461394,-9.342572,-16.092306,7.392502,-9.143539,-16.146503,7.354712,-9.315700,-16.106588,7.370362,-9.309826, + -16.063183,7.334721,-9.232212,-16.233149,7.473264,-9.355759,-16.151852,7.519548,-9.125463,-16.070290,7.401986,-9.158479, + -16.420067,7.340753,-9.133082,-16.393599,7.187655,-9.216561,-16.386192,7.194910,-9.183603,-16.424343,7.258820,-9.323562, + -16.361111,7.126402,-9.283519,-16.189192,7.223348,-9.227377,-16.187279,7.231317,-9.170843,-16.179565,7.319227,-9.112227, + -16.286156,7.259033,-9.086862,-16.373838,7.165653,-9.168846,-16.606014,7.020046,-9.383721,-16.629244,7.023743,-9.367893, + -16.563364,7.044570,-9.432720,-16.645130,7.031292,-9.354545,-16.587946,7.012880,-9.468676,-16.702768,6.971222,-9.368969, + -16.519844,7.064917,-9.482815,-16.627571,6.958467,-9.414204,-16.683100,6.956798,-9.343340,-16.583002,6.989351,-9.451117, + -16.712955,6.980038,-9.339522,-16.287996,7.459068,-9.120431,-16.262993,7.406040,-9.098551,-16.254747,7.414816,-9.112896, + -17.871937,11.077449,-9.442053,-17.822008,11.151170,-9.400856,-17.798851,11.142651,-9.453353,-17.790026,11.026844,-9.409756, + -17.823294,11.047500,-9.357856,-17.951355,11.120494,-9.442921,-17.858669,11.094328,-9.543582,-17.352121,11.089057,-9.390667, + -17.328783,11.047613,-9.405924,-17.911369,10.873294,-9.445840,-17.847149,10.717764,-9.501041,-17.883093,10.822922,-9.557603, + -17.910088,10.888689,-9.489923,-17.609846,10.921524,-9.474025,-17.604647,10.871147,-9.406854,-17.635868,10.941195,-9.372873, + -17.642553,10.969327,-9.405945,-18.015526,10.766939,-9.600963,-18.318995,10.840864,-9.635413,-18.326929,10.867195,-9.577368, + -17.221519,11.178408,-9.301105,-17.226576,11.147029,-9.463418,-17.189411,11.009928,-9.421860,-17.202810,11.051262,-9.254731, + -17.822510,11.106987,-9.460001,-17.851648,11.128900,-9.444119,-18.229126,10.787521,-9.528487,-18.257599,10.791598,-9.637509, + -18.066597,10.995683,-9.626533,-18.036415,10.955769,-9.626779,-18.018555,10.932564,-9.550407,-18.065773,11.010554,-9.573768, + -17.498175,10.934352,-9.306402,-17.461683,10.908204,-9.450509,-17.514881,11.030290,-9.462003,-17.543682,11.046028,-9.332570, + -17.309921,11.037924,-9.305748,-17.281563,10.990460,-9.421619,-17.332830,11.112749,-9.434052,-17.353598,11.110162,-9.325011, + -17.179167,11.204066,-9.072226,-17.491367,10.985497,-9.383618,-17.734711,11.119840,-9.325117,-17.953911,11.025006,-9.401964, + -17.861788,10.977876,-9.493633,-17.733236,11.029755,-9.363431,-17.746662,11.167988,-9.417478,-17.790375,11.051437,-9.296005, + -17.797033,11.186186,-9.357557,-17.809074,11.012378,-9.532390,-18.054520,10.832784,-9.535892,-18.414251,10.717060,-9.656348, + -18.409060,10.713461,-9.607100,-18.574175,10.766055,-9.611801,-18.358078,10.717644,-9.532131,-18.357607,10.758282,-9.583256, + -18.482121,10.755595,-9.678469,-18.471699,10.752531,-9.577914,-18.551950,10.738605,-9.573027,-18.537384,10.777286,-9.622519, + -18.420397,10.764065,-9.541074,-18.506035,10.751472,-9.531686,-18.474751,10.760799,-9.680815,-18.467445,10.774705,-9.567880, + -18.561115,10.756482,-9.560302,-18.639442,10.723142,-9.646461,-18.636726,10.722785,-9.576493,-18.569508,10.756514,-9.683577, + -18.414701,10.804870,-9.692794,-18.403767,10.780527,-9.580132,-18.542229,10.774317,-9.565928,-18.479002,10.782611,-9.575085, + -18.573071,10.747767,-9.624815,-18.535009,10.750093,-9.641872,-18.503569,10.732851,-9.544023,-18.541124,10.756029,-9.578942, + -18.477898,10.764323,-9.588099,-18.086369,10.799548,-9.444191,-18.238293,10.847441,-9.558207,-18.238878,10.992157,-9.654925, + -18.241385,11.007502,-9.569694,-18.205908,10.844171,-9.652696,-17.827732,10.990982,-9.404221,-18.312534,10.883654,-9.481926, + -18.192440,10.816330,-9.445798,-18.341333,10.878048,-9.676542,-18.211849,10.808936,-9.668673,-17.782282,10.920119,-9.515819, + -18.374050,10.894165,-9.603250,-18.367186,10.902426,-9.556728,-18.246098,10.871462,-9.460824,-18.245453,10.889634,-9.663908, + -18.298477,10.839413,-9.674009,-17.850288,11.056475,-9.410779,-18.026054,10.959751,-9.527464,-18.269230,10.826329,-9.508711, + -17.329557,11.029881,-9.367982,-17.894831,10.788786,-9.418603,-17.613552,10.890219,-9.360905,-18.339466,10.852497,-9.663808, + -18.365086,10.870969,-9.595644,-18.283529,10.851499,-9.443265,-18.001356,10.858058,-9.510863,-18.041992,10.823050,-9.434105, + -17.976423,10.791571,-9.582516,-18.045307,10.853398,-9.534508,-18.082012,10.807151,-9.431155,-18.008520,10.791350,-9.601622, + -17.980684,10.809690,-9.584124,-18.015551,10.870904,-9.520110,-18.054592,10.822950,-9.428369,-18.381996,10.841518,-9.589651, + -18.378710,10.846685,-9.556550,-18.415415,10.802560,-9.691615,-18.163898,10.832455,-9.578992,-18.180397,10.838615,-9.517756, + -18.170029,10.794302,-9.439834,-18.312069,10.811656,-9.434897,-18.356554,10.883761,-9.554250,-18.648861,10.652927,-9.624961, + -18.650396,10.642203,-9.598761,-18.627962,10.645441,-9.690752,-18.719912,10.660229,-9.634133,-18.719887,10.655628,-9.544207, + -18.688499,10.655824,-9.691550,-17.834206,10.307710,-9.537089,-17.763004,10.266422,-9.483699,-17.789764,10.223379,-9.511911, + -17.763369,10.296058,-9.608921,-17.742098,10.339928,-9.565907,-17.880119,10.340067,-9.466339,-17.902130,10.230176,-9.549088, + -17.258442,10.803102,-9.382994,-17.269602,10.832503,-9.421802,-17.858179,10.675572,-9.362550,-17.841885,10.691240,-9.516255, + -17.832830,10.575637,-9.437633,-17.846697,10.630131,-9.355083,-17.553709,10.685686,-9.400103,-17.571587,10.759641,-9.438161, + -17.571915,10.753523,-9.334067,-17.559826,10.713738,-9.332747,-17.853617,10.754904,-9.371344,-17.983713,10.557294,-9.544732, + -18.351053,10.500554,-9.596393,-18.339293,10.499500,-9.533257,-17.127094,10.842707,-9.300012,-17.110245,10.838429,-9.461808, + -17.194788,10.947275,-9.480303,-17.228348,10.931228,-9.290232,-17.813679,10.251031,-9.535135,-17.817387,10.269907,-9.500332, + -18.236099,10.585034,-9.551626,-18.296249,10.540800,-9.636116,-18.099369,10.344553,-9.604856,-18.073114,10.379060,-9.629833, + -18.034157,10.428883,-9.577967,-18.081577,10.351372,-9.553445,-17.472710,10.854561,-9.326715,-17.460312,10.812135,-9.469392, + -17.414812,10.703254,-9.407724,-17.427999,10.747680,-9.285759,-17.266762,10.899414,-9.351504,-17.273588,10.884581,-9.477857, + -17.225760,10.776568,-9.418464,-17.246695,10.821514,-9.324084,-17.174448,10.825111,-9.071296,-17.430882,10.787717,-9.369144, + -17.653236,10.268715,-9.531495,-17.860687,10.409488,-9.541206,-17.878433,10.314837,-9.640393,-17.691673,10.285273,-9.620004, + -17.726542,10.199214,-9.503437,-17.673363,10.353751,-9.562938,-17.710133,10.260284,-9.453841,-17.712976,10.590241,-9.268986, + -18.015888,10.522976,-9.462973,-18.399532,10.660601,-9.580719,-18.395493,10.700332,-9.677376,-18.391632,10.622570,-9.668796, + -18.384315,10.613410,-9.629867,-18.542778,10.524014,-9.615467,-18.383066,10.668015,-9.628491,-18.287287,10.605644,-9.600036, + -18.277683,10.655526,-9.659727,-18.308884,10.730364,-9.661629,-18.279882,10.674236,-9.488138,-18.455395,10.649473,-9.524076, + -18.459305,10.668009,-9.710082,-18.442345,10.571681,-9.698953,-18.436869,10.557014,-9.597018,-18.521425,10.550470,-9.587878, + -18.471693,10.654286,-9.481147,-18.504379,10.522865,-9.626371,-18.394321,10.563060,-9.544118,-18.480303,10.553104,-9.534690, + -18.537437,10.640529,-9.516794,-18.614143,10.636228,-9.508866,-18.458206,10.659830,-9.731691,-18.448250,10.556513,-9.683908, + -18.437202,10.541574,-9.571410,-18.532393,10.535065,-9.563655,-18.616966,10.549872,-9.649085,-18.614161,10.548826,-9.579128, + -18.718472,10.624698,-9.641166,-18.545593,10.644834,-9.489992,-18.540976,10.536565,-9.686908,-18.552267,10.648007,-9.756670, + -18.387869,10.669445,-9.764068,-18.378992,10.529595,-9.696963,-18.374193,10.552556,-9.583585,-18.460108,10.657857,-9.617705, + -18.509604,10.522814,-9.569737,-18.446388,10.531199,-9.578892,-18.546425,10.542358,-9.627926,-18.471235,10.654512,-9.492147, + -18.509096,10.550328,-9.644897,-18.482716,10.572098,-9.546457,-18.343523,10.671278,-9.505287,-18.513250,10.541157,-9.582196, + -18.450035,10.549542,-9.591352,-18.077068,10.689583,-9.400970,-17.975597,10.656245,-9.599456,-18.057261,10.575743,-9.396411, + -18.250626,10.518830,-9.551230,-17.708433,10.744678,-9.516232,-17.827797,10.847431,-9.261935,-18.363293,10.694086,-9.677744, + -18.244465,10.347360,-9.609652,-18.235453,10.360221,-9.525256,-18.339239,10.677510,-9.587914,-18.218201,10.480709,-9.636626, + -18.195311,10.711974,-9.404825,-17.749104,10.714501,-9.265610,-18.292879,10.503261,-9.465014,-18.181416,10.555088,-9.436669, + -18.351774,10.462170,-9.640946,-18.219904,10.511589,-9.655275,-17.705835,10.591761,-9.402347,-18.373899,10.472431,-9.559796, + -18.359652,10.481085,-9.516916,-18.330811,10.668642,-9.448298,-18.226522,10.514222,-9.455859,-18.216167,10.667071,-9.688096, + -18.258245,10.441467,-9.639192,-18.306000,10.494534,-9.656507,-17.798820,10.321759,-9.557999,-18.032667,10.413350,-9.545129, + -18.265879,10.559822,-9.507095,-17.283285,10.863874,-9.397653,-17.869339,10.713455,-9.438057,-17.584169,10.800262,-9.384754, + -18.345806,10.489662,-9.638694,-18.365334,10.493792,-9.559067,-18.258379,10.536297,-9.440866,-17.974710,10.509845,-9.444592, + -17.931982,10.672666,-9.572394,-18.021194,10.690602,-9.382123,-18.008286,10.573141,-9.372899,-17.948502,10.555751,-9.529519, + -18.006418,10.508027,-9.452646,-18.072155,10.692122,-9.381974,-17.958807,10.656107,-9.603450,-18.052652,10.574360,-9.379568, + -17.975622,10.537873,-9.535858,-17.955883,10.533914,-9.525544,-17.982256,10.497430,-9.441585,-17.935802,10.666815,-9.586573, + -18.039562,10.692962,-9.371464,-18.022570,10.569633,-9.368591,-18.365105,10.659591,-9.473008,-18.375374,10.524869,-9.566094, + -18.365780,10.525577,-9.533595,-18.387182,10.698117,-9.660341,-18.380266,10.531610,-9.695718,-18.165779,10.502999,-9.557618, + -18.179317,10.516234,-9.502482,-18.160254,10.572083,-9.426658,-18.285856,10.575301,-9.438599,-18.348282,10.496735,-9.522965, + -18.643900,10.614689,-9.625541,-18.648020,10.623880,-9.599038,-18.625858,10.629214,-9.690998,-18.646429,10.633102,-9.579039, + -18.678089,10.630888,-9.704048,-18.726475,10.622343,-9.554226,-18.610479,10.640471,-9.757739,-18.710773,10.589782,-9.635201, + -18.711575,10.591556,-9.545177,-18.681747,10.603762,-9.692338,-18.712952,10.623652,-9.524832,-18.177961,10.702288,-9.416547, + -18.193138,10.653304,-9.403577,-18.176519,10.658030,-9.414843,-17.196644,10.335749,-9.520362,-17.318338,10.482580,-9.533416, + -17.530334,10.491516,-9.569301,-17.672289,10.371128,-9.600058,-17.688225,10.177642,-9.613092,-17.559099,10.011500,-9.599792, + -17.349743,10.000326,-9.564480,-17.205149,10.122952,-9.533151,-17.241867,10.319456,-9.498848,-17.343346,10.441895,-9.509734, + -17.520121,10.449346,-9.539657,-17.638493,10.348958,-9.565304,-17.651781,10.187616,-9.576174,-17.544107,10.049077,-9.565083, + -17.369532,10.039760,-9.535637,-17.248960,10.142014,-9.509513,-17.252371,10.315476,-9.514979,-17.347389,10.430120,-9.525172, + -17.512913,10.437098,-9.553190,-17.623749,10.343100,-9.577205,-17.636192,10.192029,-9.587383,-17.535372,10.062307,-9.576998, + -17.371910,10.053583,-9.549426,-17.259012,10.149328,-9.524965,-17.323467,10.289635,-9.505792,-17.384645,10.363449,-9.512355, + -17.491219,10.367941,-9.530394,-17.562580,10.307421,-9.545856,-17.570591,10.210153,-9.552409,-17.505678,10.126631,-9.545722, + -17.400433,10.121014,-9.527970,-17.327744,10.182660,-9.512221,-17.263247,10.311475,-9.518800,-17.352652,10.419346,-9.528391, + -17.508398,10.425911,-9.554753,-17.612686,10.337466,-9.577350,-17.624393,10.195319,-9.586926,-17.529530,10.073261,-9.577154, + -17.375723,10.065053,-9.551211,-17.269497,10.155141,-9.528195,-17.368099,10.273213,-9.521416,-17.406248,10.319242,-9.525508, + -17.472702,10.322042,-9.536757,-17.517200,10.284304,-9.546398,-17.522196,10.223652,-9.550485,-17.481720,10.171571,-9.546315, + -17.416092,10.168068,-9.535246,-17.370766,10.206508,-9.525425,-17.431936,10.274798,-9.510997,-17.416183,10.255791,-9.509307, + -17.459379,10.275955,-9.515641,-17.477755,10.260371,-9.519623,-17.479818,10.235325,-9.521310,-17.463102,10.213819,-9.519588, + -17.436003,10.212372,-9.515018,-17.417284,10.228246,-9.510962,-14.607742,14.254395,-8.879196,-14.673095,14.181271,-8.876570, + -14.642859,14.174839,-8.925654,-14.678815,14.292591,-8.940866,-14.703305,14.289290,-8.880729,-14.563566,14.228909,-8.804633, + -14.532700,14.216271,-8.939895,-15.205112,14.978342,-8.459062,-15.222129,15.030664,-8.503764,-14.585090,14.846632,-8.739877, + -14.575044,14.998749,-8.838359,-14.635595,14.880974,-8.852160,-14.614102,14.826298,-8.771923,-14.849379,14.970093,-8.663458, + -14.813398,15.031187,-8.619179,-14.810690,14.946491,-8.572938,-14.830719,14.922606,-8.601093,-14.463365,14.801932,-8.873511, + -14.219903,14.598867,-8.742180,-14.255551,14.583256,-8.691081,-15.211272,14.941126,-8.383924,-15.283867,14.981260,-8.543447, + -15.254812,15.088266,-8.518843,-15.187180,15.035892,-8.361173,-14.622424,14.212629,-8.920156,-14.619766,14.200467,-8.882388, + -14.367318,14.616869,-8.759497,-14.264101,14.616656,-8.804878,-14.348614,14.337875,-8.869234,-14.371161,14.371593,-8.893394, + -14.423079,14.400205,-8.847372,-14.375993,14.330128,-8.824455,-14.994812,15.015623,-8.476701,-15.043118,15.081377,-8.600494, + -15.062097,14.950075,-8.616721,-15.009567,14.934359,-8.500337,-15.117172,15.030489,-8.457673,-15.137533,15.081469,-8.528749, + -15.164323,14.955063,-8.558262,-15.131275,14.948902,-8.478169,-15.136683,14.931664,-8.217363,-15.069627,14.999672,-8.535847, + -14.783691,14.208084,-8.913828,-14.591718,14.328936,-8.806643,-14.567032,14.338260,-8.942346,-14.749320,14.287095,-8.960317, + -14.703107,14.146744,-8.940938,-14.772986,14.290568,-8.872516,-14.724326,14.150777,-8.863529,-14.489601,14.761086,-8.796999, + -14.104069,14.633299,-8.752331,-14.111872,14.612898,-8.702596,-14.215648,14.624522,-8.692610,-14.204169,14.654451,-8.764913, + -14.066823,14.577826,-8.798641,-14.082130,14.537803,-8.701068,-14.004494,14.511730,-8.717982,-14.072334,14.576218,-8.796281, + -14.093199,14.522000,-8.698168,-14.019462,14.490973,-8.698677,-13.915823,14.505790,-8.779974,-13.922405,14.477998,-8.716043, + -13.990181,14.532153,-8.814004,-14.145745,14.578931,-8.813464,-14.149083,14.555346,-8.700162,-14.460348,14.798365,-8.689219, + -14.341620,14.591359,-8.730337,-14.346481,14.425200,-8.812147,-14.374359,14.424887,-8.726409,-14.339280,14.591194,-8.833995, + -14.309958,14.566182,-8.623023,-14.414027,14.673879,-8.659293,-14.215463,14.520128,-8.798363,-14.311407,14.625662,-8.848510, + -14.211573,14.528425,-8.713979,-14.234360,14.533140,-8.670231,-14.389484,14.555291,-8.654914,-14.311703,14.529050,-8.826788, + -14.249978,14.566557,-8.821455,-14.644867,14.276098,-8.885314,-14.429187,14.378404,-8.819134,-14.351570,14.600768,-8.704741, + -15.191874,15.030725,-8.438895,-14.550351,14.928730,-8.746145,-14.792316,15.002834,-8.564180,-14.219643,14.546475,-8.792831, + -14.218971,14.546364,-8.714916,-14.358410,14.607380,-8.630293,-14.545782,14.762050,-8.794525,-14.524332,14.791892,-8.704843, + -14.509766,14.822248,-8.867089,-14.498719,14.751275,-8.797742,-14.469771,14.789412,-8.688878,-14.469893,14.797637,-8.874984, + -14.510600,14.810196,-8.869407,-14.545510,14.751703,-8.795912,-14.520139,14.787457,-8.699910,-14.203270,14.570511,-8.707618, + -14.220569,14.571479,-8.676333,-14.143980,14.579801,-8.811630,-14.400245,14.647353,-8.785807,-14.417554,14.646916,-8.725573, + -14.423903,14.715872,-8.672283,-14.354403,14.612297,-8.636782,-14.243205,14.544033,-8.676351,-14.004555,14.570068,-8.667460, + -14.011401,14.533976,-8.640799,-13.997025,14.565257,-8.664610,-14.022702,14.536985,-8.642141,-13.993546,14.572513,-8.647058, + -14.001436,14.577346,-8.645470,-14.007292,14.543635,-8.626546,-14.018029,14.547470,-8.623462,-13.947378,15.270466,-8.500441, + -13.934608,15.317741,-8.415430,-13.883090,15.317175,-8.442080,-13.951092,15.366455,-8.533387,-14.003099,15.355478,-8.495947, + -13.970737,15.191704,-8.462868,-13.852199,15.235071,-8.521826,-14.849875,15.517164,-8.363785,-14.900272,15.524710,-8.412902, + -14.450669,15.063030,-8.706590,-14.573986,15.020361,-8.832731,-14.474045,15.107901,-8.823970,-14.432229,15.097237,-8.734375, + -14.651958,15.292572,-8.655523,-14.701669,15.228798,-8.629253,-14.628399,15.246866,-8.568836,-14.609651,15.279501,-8.588772, + -14.581222,15.012577,-8.694502,-14.340287,14.994902,-8.839688,-14.077065,14.799039,-8.695500,-14.097648,14.813734,-8.636458, + -14.828575,15.509314,-8.283512,-14.886998,15.608992,-8.421277,-14.968659,15.529125,-8.431649,-14.901118,15.440344,-8.291218, + -13.899972,15.300467,-8.478298,-13.919969,15.277351,-8.452856,-14.162487,14.921417,-8.686482,-14.095997,14.854433,-8.748169, + -13.894924,15.053114,-8.651850,-13.917226,15.080187,-8.687514,-13.988667,15.098942,-8.668880,-13.927166,15.056244,-8.612705, + -14.781555,15.330830,-8.447660,-14.853146,15.386593,-8.564909,-14.746774,15.464767,-8.543996,-14.716177,15.386551,-8.446539, + -14.855318,15.419027,-8.399338,-14.904351,15.439236,-8.471806,-14.805056,15.526505,-8.462238,-14.789560,15.473240,-8.395399, + -14.796425,15.392239,-8.146927,-14.799606,15.420790,-8.478179,-13.965517,15.433422,-8.414312,-14.035583,15.225836,-8.536569, + -13.931282,15.276697,-8.611709,-13.961479,15.435871,-8.512103,-13.880023,15.373636,-8.403930,-14.037239,15.410362,-8.468618, + -13.947492,15.351536,-8.366271,-14.327330,15.015509,-8.752406,-14.091739,14.643625,-8.652862,-14.081144,14.690882,-8.762428, + -14.059160,14.719268,-8.710909,-14.066607,14.699550,-8.660845,-14.102907,14.670593,-8.696726,-14.144160,14.761372,-8.626674, + -14.133437,14.789855,-8.699673,-14.168119,14.743407,-8.777147,-14.239547,14.699575,-8.608734,-14.041867,14.585859,-8.587041, + -14.024960,14.670507,-8.781055,-13.981423,14.741308,-8.719873,-13.996032,14.702623,-8.621655,-13.922791,14.668134,-8.642624, + -13.968751,14.557952,-8.608390,-13.899205,14.525943,-8.617357,-14.028708,14.681750,-8.800327,-13.984610,14.744152,-8.715367, + -13.993087,14.713647,-8.605829,-13.924379,14.672990,-8.610977,-13.876853,14.603007,-8.801538,-13.841417,14.648227,-8.711346, + -13.847703,14.621002,-8.647141,-13.851917,14.547754,-8.713896,-13.977011,14.552982,-8.589121,-13.895730,14.712963,-8.726887, + -13.941664,14.653041,-8.835114,-14.090940,14.724128,-8.820810,-14.027536,14.805222,-8.704433,-14.051188,14.742750,-8.609867, + -13.964477,14.603568,-8.707699,-14.413118,14.871861,-8.663986,-14.399940,14.902853,-8.888769,-14.364475,14.948681,-8.662872, + -14.124434,14.901485,-8.657549,-14.637807,15.062420,-8.933378,-14.250175,14.729588,-8.571049,-14.113058,14.685261,-8.791316, + -13.958226,14.979597,-8.682027,-13.986364,14.978912,-8.596376,-14.163109,14.695548,-8.685810,-14.101380,14.930895,-8.754265, + -14.360189,14.814519,-8.604650,-14.112875,14.847601,-8.556973,-14.240781,14.921261,-8.601231,-13.999321,14.828762,-8.725924, + -14.119347,14.899910,-8.784142,-14.546701,15.201569,-8.837770,-14.023368,14.797167,-8.650903,-14.045271,14.803144,-8.606859, + -14.250175,14.729588,-8.571049,-14.125276,14.932560,-8.566367,-14.199520,14.759320,-8.848875,-14.036520,14.921989,-8.734563, + -14.049095,14.853403,-8.754130,-13.969466,15.307129,-8.507830,-13.991206,15.093586,-8.634233,-14.157266,14.892202,-8.635252, + -14.890179,15.476259,-8.360702,-14.519100,15.009840,-8.728364,-14.675216,15.208216,-8.573591,-14.025902,14.823123,-8.727901, + -14.042129,14.798882,-8.655649,-14.166366,14.881603,-8.565930,-14.352953,15.064381,-8.741535,-14.442584,14.929169,-8.883738, + -14.455478,14.898848,-8.663819,-14.384072,15.011801,-8.666298,-14.379454,15.026562,-8.831279,-14.322466,15.027620,-8.749307, + -14.416124,14.872818,-8.658516,-14.402406,14.905079,-8.892498,-14.360675,14.960463,-8.658897,-14.339081,15.002735,-8.839036, + -14.368760,15.032583,-8.830428,-14.343439,15.068527,-8.740381,-14.437368,14.926826,-8.889359,-14.451051,14.894650,-8.655985, + -14.379085,15.008612,-8.661148,-14.214365,14.709035,-8.590331,-14.059827,14.775336,-8.659544,-14.073678,14.781226,-8.627105, + -14.104454,14.672543,-8.762802,-14.027628,14.802536,-8.704313,-14.184797,14.954996,-8.713601,-14.367645,14.824023,-8.622896, + -14.203537,14.952517,-8.653847,-14.279682,14.921808,-8.623949,-14.167977,14.878498,-8.574303,-14.057073,14.809816,-8.613970, + -13.980226,14.616643,-8.645020,-13.968452,14.616195,-8.601184,-13.973040,14.611173,-8.642487,-13.977295,14.623909,-8.600260, + -13.981730,14.595134,-8.636159,-13.990644,14.598004,-8.635516,-13.977304,14.601039,-8.598887,-13.987843,14.605257,-8.595619, + -14.783941,14.795171,-8.768643,-14.566895,14.976803,-8.547755,-14.736192,14.904942,-8.891431,-14.683411,14.807728,-8.632272, + -14.428345,15.253048,-8.683461,-14.458279,15.163811,-8.594591,-14.190910,12.268485,-8.849314,-14.127211,12.243639,-8.864764, + -14.123432,12.227737,-8.823614,-14.187132,12.252583,-8.808164,-14.118328,12.415970,-8.800645,-14.059999,12.393219,-8.814793, + -14.056539,12.378657,-8.777112,-14.114868,12.401409,-8.762964,-13.808146,12.988482,-8.586754,-14.052382,12.431096,-8.771613, + -14.036682,12.420616,-8.762721,-14.082178,12.445922,-8.773728,-14.068136,12.365482,-8.722699,-14.094001,12.375571,-8.716426, + -14.049638,12.413157,-8.723098,-14.075502,12.423245,-8.716825,-14.103326,12.425496,-8.849116,-14.083054,12.417589,-8.854033, + -14.082111,12.461739,-8.819935,-14.061839,12.453832,-8.824852,-14.040142,12.435178,-8.800402,-14.095012,12.443367,-8.748573, + -14.098472,12.457929,-8.786253,-14.067559,12.425562,-8.734537,-14.068304,12.450939,-8.807498,-13.909026,12.795488,-8.709869, + -13.907987,12.760069,-8.608037,-13.928391,12.788486,-8.662736,-13.886803,12.767793,-8.659785,-14.102947,12.396759,-8.765856, + -14.067565,12.382958,-8.774438,-14.098765,12.408340,-8.805389,-14.079629,12.400876,-8.810031,-1.155225,14.540949,-2.699614, + -1.123883,14.557847,-2.614420,-1.146423,14.608838,-2.622869,-1.071346,14.603930,-2.721206,-1.059023,14.544273,-2.704621, + -1.205947,14.471600,-2.671713,-1.238749,14.601879,-2.708579,-1.186102,14.492161,-3.841344,-1.236177,14.441973,-3.840973, + -1.390813,14.423952,-3.386575,-1.332987,14.253978,-3.413107,-1.377894,14.351899,-3.491357,-1.397857,14.430212,-3.433408, + -1.124494,14.493327,-3.455835,-1.090628,14.441236,-3.423507,-1.081994,14.528008,-3.427129,-1.100784,14.547078,-3.444360, + -1.453910,14.299396,-3.285637,-1.380542,14.200741,-3.020445,-1.331718,14.182211,-2.983051,-1.116942,14.526583,-3.874517, + -1.293566,14.494167,-3.883530,-1.264696,14.385699,-3.866172,-1.091083,14.430520,-3.861023,-1.156579,14.592540,-2.668401, + -1.163633,14.559129,-2.648021,-1.251410,14.272243,-3.044266,-1.361838,14.262890,-3.065039,-1.364712,14.474687,-2.851826, + -1.340822,14.491035,-2.888504,-1.280050,14.458017,-2.893961,-1.334714,14.446824,-2.826334,-1.084795,14.449016,-3.662597, + -1.215188,14.391621,-3.629712,-1.231122,14.524158,-3.636332,-1.105341,14.531783,-3.662274,-1.154771,14.438141,-3.760384, + -1.230506,14.390377,-3.753443,-1.262258,14.518366,-3.766779,-1.175439,14.520738,-3.765493,-0.934382,14.528042,-3.866413, + -1.173404,14.470482,-3.689627,-1.007567,14.553054,-2.607306,-1.143326,14.450388,-2.751903,-1.162379,14.576012,-2.806375, + -1.000137,14.607353,-2.688434,-1.091455,14.604186,-2.570702,-1.003673,14.516517,-2.692598,-1.093949,14.523985,-2.575190, + -1.377177,14.343877,-3.267084,-1.356056,14.066483,-2.950264,-1.324841,14.023712,-2.962386,-1.281934,14.131668,-3.002954, + -1.349601,14.153259,-3.037742,-1.368834,14.068599,-2.870006,-1.307595,13.984688,-2.893787,-1.359978,13.951888,-2.837452, + -1.362925,14.068925,-2.871882,-1.289480,13.982984,-2.886746,-1.331469,13.937278,-2.836267,-1.444682,13.956391,-2.770030, + -1.406451,13.899220,-2.783172,-1.409435,14.029025,-2.799427,-1.310944,14.120158,-2.890985,-1.263621,14.022569,-2.931504, + -1.269559,14.299647,-3.285097,-1.294398,14.267421,-2.993571,-1.395569,14.347358,-2.881527,-1.335014,14.297938,-2.838199, + -1.401902,14.300490,-3.034504,-1.232703,14.191251,-2.953372,-1.208732,14.286459,-3.098113,-1.438605,14.199771,-2.978488, + -1.433713,14.254835,-3.056380,-1.372724,14.149468,-2.960508,-1.325731,14.143962,-2.945789,-1.226261,14.264634,-2.926116, + -1.407470,14.294506,-2.970688,-1.416188,14.222414,-2.975043,-1.112725,14.544811,-2.707705,-1.275120,14.442430,-2.863267, + -1.247361,14.228295,-3.004800,-1.162914,14.439412,-3.836629,-1.360716,14.349051,-3.348238,-1.067394,14.475407,-3.409017, + -1.417333,14.200336,-2.990768,-1.362666,14.156416,-2.975607,-1.205840,14.240387,-3.006398,-1.375614,14.390681,-3.298232, + -1.286094,14.356948,-3.313787,-1.448557,14.327547,-3.327896,-1.377906,14.356842,-3.263721,-1.269225,14.312412,-3.282646, + -1.455417,14.307202,-3.285506,-1.450693,14.334738,-3.318147,-1.376829,14.396025,-3.289343,-1.281025,14.355831,-3.307903, + -1.354795,14.140069,-2.998206,-1.293521,14.156410,-2.968298,-1.312297,14.118059,-2.891985,-1.343990,14.316477,-3.102160, + -1.274983,14.317817,-3.090729,-1.243838,14.277357,-3.180030,-1.214164,14.246039,-3.030015,-1.289232,14.184107,-2.948860, + -1.377080,13.928771,-2.909068,-1.344688,13.899453,-2.896754,-1.379664,13.921242,-2.904107,-1.337713,13.907077,-2.902394, + -1.381380,13.907484,-2.917545,-1.377269,13.911593,-2.924917,-1.349129,13.888799,-2.910173,-1.341797,13.892800,-2.918525, + -1.165415,13.876242,-3.653398,-1.138449,13.818937,-3.696536,-1.196083,13.812570,-3.694937,-1.190341,13.915768,-3.763544, + -1.126317,13.915628,-3.752231,-1.121003,13.838886,-3.584167,-1.256581,13.843912,-3.615811,-1.157304,14.225170,-4.196693, + -1.197997,14.280265,-4.208221,-1.291811,14.151182,-3.513139,-1.428112,14.269852,-3.529829,-1.415952,14.137686,-3.540428, + -1.320662,14.114621,-3.523775,-1.301952,14.177616,-3.819213,-1.263557,14.250549,-3.801130,-1.204006,14.174825,-3.796448, + -1.230495,14.143641,-3.807171,-1.291713,14.288550,-3.541924,-1.421251,14.091851,-3.382529,-1.372679,13.923430,-3.154726, + -1.315370,13.896273,-3.144550,-1.093028,14.172880,-4.205565,-1.242373,14.249967,-4.269456,-1.189637,14.347760,-4.246298, + -1.045428,14.259452,-4.187726,-1.199999,13.841195,-3.688231,-1.168773,13.823810,-3.670793,-1.255490,14.015415,-3.167396, + -1.366252,13.997978,-3.179267,-1.275378,13.932014,-3.429107,-1.273272,13.980196,-3.440139,-1.198265,14.009015,-3.426553, + -1.222564,13.919376,-3.421556,-1.139454,14.253573,-3.987422,-1.271773,14.314793,-4.013811,-1.283573,14.184511,-4.041221, + -1.160613,14.172235,-4.005591,-1.134609,14.280934,-4.111337,-1.191905,14.347664,-4.129529,-1.254186,14.232143,-4.148051, + -1.175946,14.206857,-4.120053,-0.929031,14.123715,-4.141663,-1.207171,14.239779,-4.055058,-1.111915,13.814509,-3.813220, + -1.099717,13.939279,-3.600604,-1.230622,13.966347,-3.635857,-1.169718,13.891788,-3.829719,-1.177270,13.769718,-3.744562, + -1.082629,13.902304,-3.805508,-1.100305,13.779846,-3.723766,-1.334117,14.070239,-3.394833,-1.343335,13.982744,-3.004843, + -1.408110,14.080954,-2.982269,-1.426310,14.036900,-3.023150,-1.395653,13.993893,-3.035850,-1.361365,14.032180,-3.007529, + -1.287200,13.986485,-3.087096,-1.354811,14.009609,-3.120995,-1.390647,14.098215,-3.105917,-1.209270,14.068439,-3.065894, + -1.333260,13.886824,-2.975620,-1.447010,14.061942,-2.937056,-1.502432,14.012341,-3.008608,-1.442288,13.927969,-3.033523, + -1.487792,13.898067,-2.970053,-1.382317,13.859307,-2.917165,-1.422837,13.822252,-2.863067,-1.455525,14.082900,-2.937355, + -1.500162,14.011135,-3.014258,-1.446095,13.917033,-3.049225,-1.480215,13.874641,-2.990583,-1.534052,13.984355,-2.821664, + -1.561082,13.907375,-2.890790,-1.523315,13.850008,-2.904412,-1.499372,13.883862,-2.814302,-1.367645,13.846235,-2.926002, + -1.557194,13.966805,-2.952719,-1.519003,14.059137,-2.866524,-1.434708,14.143420,-2.981987,-1.495870,14.042286,-3.082836, + -1.416769,13.958078,-3.090387,-1.438295,13.951820,-2.900758,-1.244768,14.220362,-3.322083,-1.469783,14.191491,-3.336087, + -1.244119,14.137979,-3.360572,-1.277272,13.961464,-3.199892,-1.520779,14.305541,-3.597663,-1.179635,14.099599,-3.110046, + -1.419904,14.043856,-3.018141,-1.342453,13.853520,-3.335624,-1.258354,13.833320,-3.309436,-1.307311,14.061834,-3.045378, + -1.378489,13.958369,-3.241591,-1.195393,14.164166,-3.236649,-1.209236,13.900797,-3.142668,-1.196959,14.023525,-3.220428, + -1.411391,13.874662,-3.190152,-1.418941,13.959633,-3.213386,-1.426874,14.153705,-3.667579,-1.347984,13.849656,-3.139565, + -1.299521,13.847173,-3.129540,-1.179635,14.099599,-3.110046,-1.191149,13.921733,-3.214051,-1.463176,14.097539,-3.125469, + -1.372796,13.931700,-3.263685,-1.406329,13.934937,-3.197482,-1.152260,13.900066,-3.687250,-1.174668,13.981644,-3.424381, + -1.241125,13.960913,-3.149271,-1.123594,14.270738,-4.187251,-1.316459,14.236940,-3.508242,-1.202061,14.234664,-3.787784, + -1.382281,13.893514,-3.099415,-1.307067,13.904102,-3.082040,-1.188546,13.945813,-3.151055,-1.324446,14.065516,-3.450037, + -1.465858,14.213237,-3.381343,-1.245711,14.241483,-3.367642,-1.248876,14.120430,-3.424207,-1.413979,14.107802,-3.430485, + -1.331137,14.059627,-3.402478,-1.239362,14.222402,-3.324631,-1.473587,14.192350,-3.339209,-1.240276,14.128443,-3.368532, + -1.420706,14.086615,-3.388489,-1.413056,14.095554,-3.429810,-1.323208,14.055273,-3.448425,-1.471356,14.210081,-3.376436, + -1.237741,14.240054,-3.361896,-1.243596,14.117972,-3.418948,-1.204467,14.081432,-3.076431,-1.306149,13.930848,-3.069131, + -1.271978,13.933815,-3.079250,-1.393007,14.036364,-3.001733,-1.494318,14.041410,-3.080822,-1.312016,14.012569,-3.261528, + -1.212294,14.170049,-3.249243,-1.235287,14.025580,-3.231652,-1.235818,14.049804,-3.297081,-1.195912,13.950571,-3.148751, + -1.286889,13.876089,-3.120646,-1.415141,13.912744,-2.948555,-1.411878,13.871160,-2.966459,-1.417187,13.905441,-2.943034, + -1.408748,13.877164,-2.976089,-1.399866,13.899700,-2.936723,-1.394151,13.904484,-2.942432,-1.396040,13.869044,-2.958841, + -1.389021,13.872914,-2.967517,-1.356321,14.566876,-3.486500,-1.205492,14.371751,-3.395472,-1.477836,14.473527,-3.519030, + -1.312988,14.553185,-3.385180,-1.289294,14.018335,-3.652731,-1.195306,14.099990,-3.617180,-1.733051,13.356042,-4.517764, + -1.676656,13.308300,-4.454027,-1.720943,13.333063,-4.445743,-1.664811,13.427876,-4.498524,-1.623068,13.387729,-4.507508, + -1.768717,13.282645,-4.556513,-1.818045,13.370050,-4.459895,-1.238972,13.356973,-5.484426,-1.252453,13.291657,-5.508449, + -1.677708,13.143418,-4.969511,-1.667074,12.995469,-5.074089,-1.745153,13.103256,-5.070386,-1.714140,13.160533,-4.995239, + -1.528405,13.260472,-5.207048,-1.466722,13.212037,-5.174388,-1.470234,13.299253,-5.134797,-1.502486,13.316428,-5.156717, + -1.797394,13.059073,-4.885447,-1.854656,13.086344,-4.541175,-1.797708,13.115790,-4.537271,-1.187548,13.422985,-5.476280, + -1.296200,13.322846,-5.578725,-1.234440,13.235105,-5.541481,-1.131676,13.345785,-5.444701,-1.727005,13.357376,-4.457769, + -1.725525,13.321611,-4.475092,-1.801470,13.139480,-4.670414,-1.886341,13.092418,-4.613009,-1.963779,13.380753,-4.592027, + -1.961174,13.397060,-4.626001,-1.911657,13.395522,-4.687020,-1.928871,13.373146,-4.610375,-1.300215,13.294453,-5.286971, + -1.371916,13.194526,-5.371408,-1.428437,13.313078,-5.396198,-1.347236,13.362934,-5.309754,-1.233035,13.305448,-5.396310, + -1.269646,13.230271,-5.429072,-1.344511,13.333294,-5.465794,-1.283272,13.371141,-5.417192,-1.059931,13.498332,-5.369356, + -1.336768,13.295970,-5.377125,-1.641394,13.392142,-4.372285,-1.733851,13.354521,-4.622997,-1.775524,13.457706,-4.540977, + -1.646294,13.461082,-4.441629,-1.730530,13.345035,-4.401046,-1.571926,13.409647,-4.431385,-1.664271,13.300407,-4.392278, + -1.775877,13.146951,-4.890499,-1.772563,12.982935,-4.485082,-1.757965,13.023145,-4.451605,-1.791156,13.040665,-4.560036, + -1.780728,12.964054,-4.576687,-1.845774,12.955057,-4.463353,-1.817136,13.033944,-4.397676,-1.850219,12.978739,-4.344277, + -1.845446,12.961054,-4.464926,-1.827531,13.050404,-4.396394,-1.854362,13.008689,-4.333624,-1.895345,12.883451,-4.319291, + -1.877913,12.933249,-4.273258,-1.893355,12.909765,-4.401058,-1.851826,13.005476,-4.525571,-1.800894,13.076591,-4.449720, + -1.669271,13.190080,-4.865257,-1.821214,13.166138,-4.612616,-1.971161,13.219670,-4.536886,-1.845674,13.291059,-4.506736, + -1.908307,13.117078,-4.651854,-1.725655,13.174358,-4.561351,-1.734894,13.201340,-4.695788,-1.890382,13.104828,-4.481963, + -1.885426,13.059719,-4.672789,-1.805463,13.104674,-4.481791,-1.762486,13.123712,-4.497472,-1.752114,13.232988,-4.610332, + -1.932798,13.131981,-4.589869,-1.901470,13.055518,-4.584781,-1.695577,13.377144,-4.523856,-1.896045,13.387758,-4.679005, + -1.763919,13.145329,-4.625014,-1.201403,13.319032,-5.464860,-1.635694,13.065944,-4.984288,-1.437954,13.248263,-5.129189, + -1.884037,13.086814,-4.510439,-1.804972,13.099331,-4.500463,-1.732815,13.195695,-4.614896,-1.782804,13.164072,-4.943623, + -1.695389,13.201550,-4.924975,-1.786582,13.063571,-4.935145,-1.784673,13.155420,-4.896053,-1.676762,13.198838,-4.871277, + -1.802476,13.062698,-4.890374,-1.796656,13.070034,-4.932305,-1.790862,13.169763,-4.940199,-1.694265,13.206712,-4.919173, + -1.795079,13.073030,-4.509093,-1.783595,13.103124,-4.506374,-1.850064,13.004742,-4.523676,-1.841594,13.152332,-4.713062, + -1.800452,13.192835,-4.701101,-1.709365,13.196522,-4.719010,-1.742062,13.197439,-4.608477,-1.799508,13.133410,-4.503973, + -1.773183,12.979982,-4.339841,-1.785147,13.014258,-4.312594,-1.775440,12.977924,-4.330973,-1.783284,13.020663,-4.322294, + -1.759046,12.981318,-4.321353,-1.754041,12.985928,-4.327820,-1.768895,13.014451,-4.305581,-1.763681,13.022374,-4.312623, + -1.335097,13.153970,-4.494992,-1.352520,13.194221,-4.393320,-1.306226,13.160131,-4.401036,-1.295379,13.230119,-4.502888, + -1.352563,13.256487,-4.486707,-1.402686,13.094567,-4.502972,-1.267039,13.077992,-4.475891,-1.736937,12.538003,-5.351777, + -1.791283,12.571442,-5.325565,-1.495304,12.986398,-4.997899,-1.674752,12.963402,-5.012347,-1.573454,12.890347,-4.966197, + -1.489973,12.942856,-4.978981,-1.498687,12.828999,-5.239118,-1.531750,12.886423,-5.288566,-1.446812,12.860836,-5.296461, + -1.437976,12.832415,-5.269538,-1.582093,13.040739,-5.086304,-1.620186,12.922015,-4.827641,-1.588235,12.848249,-4.585520, + -1.580592,12.888538,-4.536085,-1.701909,12.479823,-5.400468,-1.808563,12.525263,-5.263034,-1.861394,12.590555,-5.339797, + -1.751364,12.534698,-5.468451,-1.303759,13.155809,-4.443491,-1.341636,13.143963,-4.440953,-1.590222,12.993509,-4.620883, + -1.589113,12.885940,-4.654655,-1.292746,12.947369,-4.650425,-1.292158,12.977058,-4.687253,-1.333654,13.032829,-4.699312, + -1.317635,12.971366,-4.632738,-1.625986,12.717155,-5.391400,-1.711422,12.760615,-5.278205,-1.629255,12.666633,-5.230458, + -1.577660,12.660728,-5.348160,-1.719561,12.628109,-5.401134,-1.783535,12.673796,-5.357814,-1.713916,12.604004,-5.269217, + -1.672845,12.585950,-5.343595,-1.615118,12.448170,-5.558143,-1.667735,12.670759,-5.317615,-1.306720,13.304739,-4.388107, + -1.392422,13.160020,-4.583050,-1.254523,13.157816,-4.573550,-1.268979,13.293774,-4.477777,-1.283467,13.207264,-4.357295, + -1.354162,13.323433,-4.465725,-1.358598,13.234053,-4.347481,-1.542236,12.966245,-4.814285,-1.703766,13.020792,-4.421942, + -1.733917,12.936113,-4.501132,-1.680522,12.934309,-4.468131,-1.665194,12.974133,-4.434518,-1.709059,12.994885,-4.467516, + -1.626715,13.054383,-4.529107,-1.618023,12.977628,-4.546084,-1.692313,12.924786,-4.578508,-1.705879,13.112088,-4.589459, + -1.710389,13.042488,-4.323750,-1.762964,12.893505,-4.465640,-1.670747,12.862591,-4.431117,-1.640675,12.940720,-4.365176, + -1.682769,12.890276,-4.313437,-1.747517,12.989128,-4.275222,-1.780193,12.946569,-4.219881,-1.765799,12.881522,-4.484620, + -1.665652,12.866069,-4.431812,-1.622350,12.942007,-4.358605,-1.659490,12.905738,-4.297734,-1.832874,12.801869,-4.348906, + -1.742849,12.802886,-4.291205,-1.724809,12.852365,-4.245060,-1.823452,12.852271,-4.255489,-1.739400,13.007339,-4.267053, + -1.699776,12.807498,-4.365405,-1.812179,12.811226,-4.434436,-1.743192,12.899003,-4.557224,-1.609554,12.877483,-4.480950, + -1.600254,12.970593,-4.412767,-1.772501,12.915142,-4.351793,-1.593003,13.146460,-4.841822,-1.728128,12.964504,-4.859003, + -1.531233,13.083317,-4.820229,-1.545139,12.951335,-4.595783,-1.689371,12.896893,-5.138138,-1.610451,13.119056,-4.561424, + -1.782913,12.920907,-4.544776,-1.392045,12.848248,-4.579666,-1.397580,12.915097,-4.520326,-1.706370,13.009252,-4.535895, + -1.550794,12.860485,-4.668585,-1.585942,13.143850,-4.700098,-1.547904,12.976478,-4.500819,-1.542715,13.045097,-4.639723, + -1.544541,12.792970,-4.572602,-1.620232,12.840837,-4.670708,-1.513670,12.845585,-5.087650,-1.574440,12.839194,-4.507995, + -1.576083,12.881920,-4.482951,-1.610451,13.119056,-4.561424,-1.504237,13.009435,-4.537589,-1.780516,12.920518,-4.672320, + -1.489350,12.852987,-4.631777,-1.557993,12.823536,-4.624118,-1.333233,13.197097,-4.499817,-1.341989,13.033421,-4.674149, + -1.587042,12.983221,-4.562664,-1.762884,12.564136,-5.396075,-1.572933,13.022857,-5.023009,-1.488760,12.898380,-5.319131, + -1.632576,12.831985,-4.534029,-1.600232,12.892990,-4.497926,-1.572714,13.024333,-4.529728,-1.505166,12.949338,-4.853057, + -1.713541,12.963043,-4.907185,-1.581340,13.141061,-4.890375,-1.493442,13.045358,-4.859099,-1.598957,12.918456,-4.873941, + -1.530900,12.959144,-4.813272,-1.588982,13.150537,-4.844482,-1.729637,12.961135,-4.862367,-1.519682,13.077349,-4.820037, + -1.614130,12.917026,-4.828935,-1.592433,12.912082,-4.865687,-1.499916,12.944736,-4.845292,-1.718254,12.959132,-4.902011, + -1.577965,13.148041,-4.884172,-1.491173,13.049634,-4.852924,-1.634788,13.091705,-4.534290,-1.621302,12.913933,-4.498469, + -1.595699,12.938800,-4.496234,-1.770816,12.935483,-4.518507,-1.611598,12.878760,-4.479756,-1.543822,12.943164,-4.698666, + -1.592927,13.135343,-4.719010,-1.538973,13.014941,-4.654396,-1.516100,13.028660,-4.714867,-1.577675,13.019790,-4.535715, + -1.573549,12.900019,-4.495826,-1.723319,12.953639,-4.330658,-1.697121,12.967755,-4.296382,-1.726282,12.951955,-4.321919, + -1.690221,12.971498,-4.305154,-1.734828,12.968523,-4.316893,-1.731923,12.974242,-4.323747,-1.707437,12.981983,-4.294262, + -1.701813,12.989689,-4.301229,-1.759068,13.243837,-5.148384,-1.475737,13.130507,-5.045520,-1.784446,13.057098,-5.177329, + -1.609632,13.277212,-4.984502,-1.394315,12.831364,-5.051808,-1.385565,12.952851,-5.095804,-1.389078,13.361689,-4.133429, + -1.517922,13.443037,-4.117921,-1.681737,13.409668,-4.161889,-1.760389,13.297692,-4.227670,-1.725011,13.157475,-4.286807, + -1.587181,13.054170,-4.292336,-1.425442,13.081720,-4.244084,-1.343386,13.197645,-4.183081,-1.416119,13.343702,-4.146495, + -1.523557,13.411537,-4.133564,-1.660157,13.383712,-4.170227,-1.725742,13.290339,-4.225080,-1.696241,13.173416,-4.274392, + -1.580875,13.086684,-4.279190,-1.446006,13.109658,-4.238955,-1.377583,13.206324,-4.188087,-1.388875,13.383265,-4.267173, + -1.505926,13.077503,-4.298018,-1.616800,13.431017,-4.312462,-1.679798,13.341551,-4.364714,-1.654124,13.225657,-4.402386, + -1.495051,13.078671,-4.300172,-1.417030,13.162342,-4.360555,-1.359560,13.256613,-4.307990,-1.515675,13.075259,-4.316491, + -1.488379,13.453628,-4.267780,-1.498527,13.082114,-4.319971,-1.506641,13.105295,-4.317665,-1.523662,13.099710,-4.311984, + -1.544854,13.142241,-4.404098,-1.503444,13.095905,-4.298904,-1.514351,13.095961,-4.294228,-1.342734,13.445135,-4.448469, + -1.439736,13.514115,-4.448912,-1.564814,13.492973,-4.492089,-1.626093,13.406475,-4.542712,-1.600965,13.293741,-4.579313, + -1.496201,13.214628,-4.580621,-1.372262,13.234162,-4.538384,-1.309844,13.322268,-4.486821,-1.472109,13.359756,-4.501621, + -1.333696,13.260856,-4.330796,-1.701378,13.351521,-4.377263,-1.670657,13.225693,-4.426803,-1.372953,13.404357,-4.286914, + -1.486512,13.478642,-4.277111,-1.549231,13.134664,-4.430685,-1.406149,13.158542,-4.386308,-1.618438,13.322467,-4.354932, + -1.631426,13.450740,-4.319012,-1.503373,13.077257,-4.303506,-1.496030,13.056759,-4.307356,-1.501597,13.079939,-4.314292, + -1.510172,13.076500,-4.312553,-1.494646,13.060582,-4.317852,-1.502313,13.055267,-4.316681,-1.437790,13.054697,-4.324473, + -1.441478,13.061247,-4.332851,-1.439784,13.052355,-4.335391,-1.364067,13.126132,-4.332455,-1.369987,13.131775,-4.340189, + -1.364595,13.124931,-4.343722,-1.316295,13.238420,-4.339860,-1.323950,13.240021,-4.345787,-1.313299,13.238896,-4.343693, + -1.595767,13.452950,-4.198105,-1.590020,13.458421,-4.205936,-1.584667,13.454175,-4.180311,-1.573176,13.458794,-4.194446, + -1.566711,13.435214,-4.197726,-1.579380,13.429087,-4.185270,-1.585590,13.439730,-4.206305,-1.592849,13.432622,-4.200173, + -1.590557,13.455914,-4.197230,-1.594727,13.477312,-4.193542,-1.579846,13.457449,-4.194131,-1.585597,13.455147,-4.187058, + -1.583841,13.477645,-4.190700,-1.589721,13.477486,-4.183365,-1.580905,13.505439,-4.213260,-1.570953,13.501247,-4.210084, + -1.574585,13.507493,-4.204068,-1.510224,13.514509,-4.249945,-1.503055,13.508743,-4.243460,-1.501670,13.518043,-4.243387, + -1.418712,13.479206,-4.286045,-1.413576,13.475066,-4.276465,-1.410422,13.481816,-4.286505,-1.345294,13.380377,-4.315445, + -1.349470,13.384163,-4.321622,-1.340753,13.383680,-4.318419,-1.635161,13.177890,-4.382934,-1.588385,13.141187,-4.383074, + -1.580488,13.245566,-4.522488,-1.550774,13.222239,-4.521865,-1.644790,13.165519,-4.392736,-1.598014,13.128816,-4.392876, + -1.590096,13.233179,-4.532290,-1.560382,13.209851,-4.531668,-1.684265,13.178745,-4.332826,-1.656857,13.158464,-4.334569, + -1.626043,13.243413,-4.472086,-1.608650,13.230533,-4.472484,-1.693906,13.166385,-4.342629,-1.666498,13.146104,-4.344373, + -1.635672,13.231043,-4.481890,-1.618279,13.218163,-4.482288,-1.437101,13.406803,-4.205163,-1.463079,13.425704,-4.206890, + -1.415418,13.451452,-4.361678,-1.432206,13.463009,-4.362307,-1.427045,13.421310,-4.199661,-1.453023,13.440211,-4.201388, + -1.405374,13.465967,-4.356176,-1.422162,13.477524,-4.356805,-1.663218,13.406186,-4.207520,-1.680670,13.381572,-4.223492, + -1.611681,13.446044,-4.358253,-1.622674,13.430029,-4.367806,-1.677663,13.417559,-4.209482,-1.695115,13.392944,-4.225454, + -1.626134,13.457404,-4.360222,-1.637127,13.441390,-4.369775,-17.499231,14.161990,-8.681581,-17.504744,14.157384,-8.678215, + -17.501989,14.153329,-8.679253,-17.763527,14.108583,-9.182522,-17.446789,14.158405,-8.590078,-17.503544,14.153304,-8.670329, + -17.493780,14.168742,-8.677028,-17.484159,14.143487,-8.679528,-17.502764,14.167987,-8.664820,-17.723701,14.139564,-9.070415, + -17.691614,14.099387,-9.083219,-17.713303,14.127080,-9.100014,-17.724781,14.108930,-9.092138,-17.730360,14.111763,-9.128911, + -17.735458,14.107503,-9.125799,-17.735662,14.117024,-9.126657,-17.714540,14.118867,-9.090141,-17.533243,14.152800,-8.742248, + -17.113813,14.066298,-9.417385,-17.066555,13.981007,-9.406567,-17.054546,14.000044,-9.460029,-17.178389,14.004577,-9.465697, + -17.178431,13.989117,-9.402546,-17.069036,14.109148,-9.351662,-17.058123,14.114573,-9.490440,-17.234188,13.904532,-9.280320, + -17.249723,13.914897,-9.326648,-17.517294,14.220220,-9.355842,-17.554651,14.138193,-9.498390,-17.427328,14.156079,-9.423755, + -17.467598,14.214141,-9.354095,-17.496859,13.960201,-9.201218,-17.573839,13.948705,-9.229682,-17.537086,13.922674,-9.161966, + -17.518036,13.956502,-9.142591,-17.428108,14.308480,-9.514840,-17.296448,14.564463,-9.333982,-17.289370,14.533171,-9.278337, + -17.182873,13.792417,-9.256068,-17.079016,13.930910,-9.328508,-17.140804,13.889661,-9.458570,-17.229496,13.754942,-9.379030, + -17.082825,14.032681,-9.456721,-17.067387,14.036308,-9.420254,-17.363693,14.431108,-9.326936,-17.333015,14.520636,-9.388230, + -17.113804,14.351994,-9.430161,-17.146849,14.330907,-9.461265,-17.187906,14.271047,-9.423566,-17.114708,14.317800,-9.387314, + -17.451225,13.835052,-9.263873,-17.439358,13.970181,-9.324734,-17.381355,13.993764,-9.206686,-17.396259,13.872807,-9.160704, + -17.252871,13.818129,-9.337790,-17.257477,13.924199,-9.404806,-17.200565,13.947532,-9.286242,-17.228931,13.846722,-9.259699, + -17.350334,13.627734,-9.210083,-17.403629,13.909644,-9.242534,-17.131521,13.882087,-9.424817,-17.172541,14.116752,-9.346093, + -17.184351,14.123847,-9.483648,-17.198219,13.934427,-9.473776,-17.049393,13.932320,-9.466326,-17.202065,13.925920,-9.383256, + -17.053810,13.924821,-9.386433,-17.401062,14.163602,-9.213784,-17.392937,14.300502,-9.426562,-17.372215,14.672848,-9.381243, + -17.353016,14.663074,-9.333718,-17.219917,14.754976,-9.400373,-17.366039,14.568426,-9.299039,-17.372631,14.577277,-9.377735, + -17.315090,14.700920,-9.430354,-17.274944,14.680594,-9.338377,-17.230875,14.750583,-9.346960,-17.241045,14.721471,-9.405437, + -17.283421,14.634289,-9.300092,-17.233278,14.705070,-9.307610,-17.318142,14.692488,-9.433883,-17.260248,14.665161,-9.339529, + -17.209438,14.745826,-9.348211,-17.222258,14.835661,-9.428433,-17.190813,14.826006,-9.366619,-17.262959,14.765904,-9.457754, + -17.334066,14.620157,-9.448254,-17.302238,14.615465,-9.337034,-17.212873,14.720658,-9.356036,-17.251575,14.669314,-9.352000, + -17.238129,14.767715,-9.403695,-17.268583,14.739872,-9.410200,-17.252224,14.716945,-9.309865,-17.231087,14.733397,-9.359358, + -17.269789,14.682054,-9.355323,-17.451622,14.315692,-9.345615,-17.300737,14.452648,-9.324087,-17.122938,14.480730,-9.370350, + -17.136463,14.438264,-9.291782,-17.276533,14.469579,-9.428068,-17.525261,14.190681,-9.210483,-17.287888,14.461947,-9.217731, + -17.393366,14.368344,-9.285397,-17.233952,14.593682,-9.363527,-17.307213,14.487700,-9.452429,-17.430300,14.019341,-9.454804, + -17.249413,14.582050,-9.270967,-17.258980,14.549026,-9.232368,-17.307129,14.397533,-9.247005,-17.224058,14.504770,-9.403004, + -17.268427,14.556074,-9.404141,-17.147030,14.038314,-9.416821,-17.169909,14.261087,-9.393588,-17.338806,14.447946,-9.275921, + -17.265341,13.876547,-9.332968,-17.566732,14.179700,-9.413890,-17.570738,13.918917,-9.210295,-17.259922,14.585456,-9.366258, + -17.273302,14.573071,-9.278425,-17.328939,14.417964,-9.220472,-17.401800,14.242222,-9.422001,-17.455208,14.272456,-9.347430, + -17.435089,14.257674,-9.498343,-17.381695,14.286346,-9.423233,-17.454668,14.307467,-9.334546,-17.409140,14.294155,-9.510992, + -17.411465,14.266257,-9.502968,-17.383615,14.251400,-9.418309,-17.454012,14.280626,-9.338389,-17.299969,14.586148,-9.276943, + -17.303865,14.563247,-9.248499,-17.334488,14.622081,-9.446422,-17.330952,14.400158,-9.397230,-17.346373,14.383471,-9.338667, + -17.428560,14.363219,-9.300321,-17.369307,14.437895,-9.211370,-17.274792,14.540730,-9.244020,-17.249580,14.886658,-9.382243, + -17.242765,14.891941,-9.355234,-17.298628,14.883518,-9.431291,-17.205082,14.935555,-9.410789,-17.165068,14.928455,-9.330438, + -17.254793,14.921635,-9.451259,-17.999937,14.589555,-9.526949,-18.076422,14.532793,-9.503429,-18.097841,14.585173,-9.516171, + -18.032824,14.565549,-9.619985,-18.010212,14.511627,-9.591557,-17.960266,14.584236,-9.445964,-18.034832,14.685130,-9.506531, + -17.865732,13.780871,-9.104573,-17.817476,13.768745,-9.108979,-17.706100,14.272571,-9.398585,-17.586321,14.154653,-9.483426, + -17.716017,14.174386,-9.479850,-17.741135,14.253074,-9.424325,-17.789858,14.044358,-9.212181,-17.714167,14.059962,-9.176618, + -17.791420,14.112022,-9.143179,-17.820749,14.100579,-9.170394,-17.606054,14.138158,-9.373051,-17.644447,14.369277,-9.554399, + -17.538956,14.700753,-9.367870,-17.575731,14.670459,-9.324798,-17.949274,13.671423,-9.007089,-17.869299,13.624259,-9.145588, + -17.742800,13.639554,-9.072782,-17.840326,13.701647,-8.928168,-18.059340,14.599614,-9.529767,-18.045946,14.580570,-9.497528, + -17.615473,14.583640,-9.420640,-17.549446,14.672802,-9.440738,-17.802443,14.788198,-9.471217,-17.798626,14.764334,-9.515035, + -17.831400,14.689552,-9.510172,-17.835815,14.755199,-9.442875,-17.774023,13.979957,-9.038818,-17.713167,13.926951,-9.165826, + -17.840513,13.937706,-9.204040,-17.886477,13.984131,-9.088689,-17.822166,13.773782,-9.008003,-17.747232,13.738387,-9.106271, + -17.874113,13.747293,-9.145604,-17.897696,13.789482,-9.046803,-18.047453,13.725958,-8.801951,-17.806581,13.943691,-9.117015, + -18.118418,14.462205,-9.590565,-17.897976,14.563462,-9.526527,-17.958866,14.659795,-9.604781,-18.073822,14.517819,-9.657675, + -18.149378,14.543299,-9.531771,-18.030245,14.449244,-9.616691,-18.110371,14.482561,-9.496441,-17.878353,14.200630,-9.351488, + -17.709894,14.404312,-9.490594,-17.378382,14.688356,-9.284413,-17.410732,14.697774,-9.395114,-17.450094,14.727990,-9.343241, + -17.438282,14.718412,-9.297819,-17.391052,14.892172,-9.293262,-17.407846,14.679966,-9.326417,-17.513227,14.636577,-9.287002, + -17.517773,14.643673,-9.359701,-17.458431,14.610592,-9.413809,-17.481153,14.531114,-9.269221,-17.321693,14.729556,-9.240835, + -17.398527,14.754573,-9.412864,-17.461979,14.807703,-9.354424,-17.423967,14.791485,-9.256532,-17.370605,14.857422,-9.266026, + -17.290762,14.738186,-9.213921,-17.420933,14.865685,-9.292849,-17.425541,14.748225,-9.211142,-17.373533,14.817513,-9.219826, + -17.272297,14.797457,-9.249879,-17.226231,14.858891,-9.265428,-17.415213,14.752718,-9.431374,-17.462582,14.808284,-9.343480, + -17.425083,14.797308,-9.236362,-17.365992,14.871332,-9.250227,-17.344769,14.933876,-9.351756,-17.313812,14.924612,-9.289637, + -17.231323,14.958776,-9.401505,-17.254698,14.800237,-9.235781,-17.418474,14.890579,-9.360419,-17.375723,14.833104,-9.471247, + -17.468607,14.697842,-9.446394,-17.528698,14.776193,-9.326436,-17.463425,14.744688,-9.236150,-17.360897,14.742602,-9.331635, + -17.390699,14.863218,-9.244738,-17.429337,14.811823,-9.240743,-17.383364,14.884148,-9.312795,-17.296152,14.738935,-9.223494, + -17.409826,14.853106,-9.321798,-17.365885,14.808065,-9.238727,-17.371765,14.634614,-9.210680,-17.383011,14.855194,-9.264270, + -17.421648,14.803799,-9.260275,-17.570780,14.353785,-9.347735,-17.536295,14.325481,-9.562828,-17.682997,14.393770,-9.390847, + -17.631367,14.642733,-9.394429,-17.597595,14.034222,-9.544449,-17.690514,14.173232,-9.275584,-17.404654,14.655597,-9.419825, + -17.709883,14.797917,-9.407076,-17.744923,14.753560,-9.341955,-17.430672,14.620557,-9.330743,-17.623886,14.668814,-9.486634, + -17.523624,14.403271,-9.283278,-17.798849,14.273346,-9.279736,-17.650238,14.627710,-9.288324,-17.682289,14.511173,-9.368539, + -17.556654,14.759886,-9.386478,-17.587610,14.644305,-9.503866,-17.775972,14.086447,-9.497801,-17.561544,14.724006,-9.301658, + -17.585249,14.691887,-9.275264,-17.492483,14.513070,-9.238876,-17.696068,14.588956,-9.333535,-17.431210,14.564017,-9.500046, + -17.628117,14.733220,-9.445380,-17.563072,14.716833,-9.437125,-18.001047,14.562482,-9.560898,-17.853016,14.687719,-9.480997, + -17.620928,14.591256,-9.362180,-17.807819,13.781770,-9.070357,-17.622244,14.238623,-9.394353,-17.725550,14.111270,-9.137613, + -17.548819,14.735144,-9.392021,-17.554405,14.701365,-9.310706,-17.668976,14.575953,-9.301239,-17.730459,14.365604,-9.484889, + -17.551512,14.271239,-9.548119,-17.595934,14.291921,-9.360880,-17.701460,14.347679,-9.388419,-17.658562,14.345705,-9.548947, + -17.727928,14.400536,-9.494754,-17.579681,14.340012,-9.334036,-17.540705,14.307457,-9.572553,-17.689186,14.385070,-9.377677, + -17.664465,14.368371,-9.559340,-17.675694,14.357342,-9.553158,-17.743011,14.379322,-9.489311,-17.548178,14.279132,-9.561406, + -17.593912,14.304319,-9.341855,-17.702101,14.358975,-9.380364,-17.468754,14.552348,-9.227890,-17.530935,14.685141,-9.310338, + -17.549543,14.663931,-9.291224,-17.403353,14.664701,-9.389585,-17.526062,14.775664,-9.326518,-17.658346,14.573125,-9.472519, + -17.676880,14.557383,-9.420516,-17.666424,14.477283,-9.367922,-17.627710,14.552195,-9.285228,-17.582247,14.677484,-9.289182, + -17.276617,14.908333,-9.365321,-17.255720,14.902327,-9.347125,-17.310101,14.892715,-9.424109,-17.241470,14.892797,-9.333208, + -17.282682,14.931812,-9.449028,-17.186331,14.956482,-9.326681,-17.344557,14.881378,-9.483286,-17.254892,14.975487,-9.379614, + -17.210369,14.964775,-9.302083,-17.291603,14.951147,-9.428220,-17.179947,14.942280,-9.298289,-17.532139,14.405901,-9.305037, + -17.582941,14.433451,-9.299510,-17.576653,14.427803,-9.318512,-9.738877,19.216175,-6.396454,-9.683240,19.093311,-6.409516, + -9.895855,20.564022,-7.617750,-9.879263,20.416756,-7.642171,-9.786789,19.200714,-6.410257,-9.729847,19.081030,-6.422802, + -9.938627,20.547379,-7.631302,-9.838132,20.421196,-7.631371,-10.456711,20.791821,-6.142228,-10.429105,20.699646,-6.152092, + -9.512959,19.707397,-7.690577,-9.633148,19.876810,-7.686922,-10.510338,20.756702,-6.159938,-10.475576,20.674511,-6.166755, + -9.555567,19.706196,-7.701108,-9.590239,19.893152,-7.673395,-9.411748,19.482218,-7.709586,-9.406239,19.358482,-7.732143, + -9.463143,19.468645,-7.724630,-9.352999,19.362724,-7.718454,-10.140298,21.030630,-7.586752,-10.161249,20.928131,-7.611606, + -10.197188,21.007334,-7.605002,-10.107724,20.943010,-7.595795,-10.273934,20.898046,-7.066242,-10.296470,20.889141,-7.071239, + -9.874120,19.389975,-6.253495,-10.278438,20.890038,-7.023130,-9.548880,19.309187,-7.182944,-9.568926,19.301151,-7.182254, + -9.562510,19.309988,-7.140962,-9.952826,19.564804,-6.233623,-10.386492,20.816694,-6.585629,-9.804267,19.439104,-6.226679, + -10.402143,20.804058,-6.557204,-10.392335,20.808418,-6.544392,-9.669604,19.205494,-6.673919,-9.698818,19.198959,-6.638078, + -9.682612,19.205511,-6.632820,-9.878941,19.630501,-6.202833,-9.699468,20.138956,-7.652342,-9.799963,20.265139,-7.652274, + -9.740600,20.134516,-7.663142,-9.757191,20.281782,-7.638721,-10.362917,20.498091,-6.210917,-10.421878,20.632853,-6.198969, + -10.311526,20.529436,-6.183654,-10.365050,20.677917,-6.168296,-10.001859,20.780598,-7.601561,-10.102345,20.906761,-7.601493, + -10.042969,20.776110,-7.612364,-10.059594,20.923450,-7.587937,-9.474236,19.638512,-7.694516,-9.457611,19.491169,-7.718944, + -9.516988,19.621822,-7.708072,-9.416501,19.495659,-7.708139,-9.790685,19.384199,-6.229404,-9.737161,19.235718,-6.244762, + -9.847511,19.339134,-6.260078,-9.788551,19.204372,-6.272026,-9.991825,19.649933,-6.234150,-10.050365,19.785019,-6.223927, + -9.940451,19.681391,-6.206987,-9.993522,19.830214,-6.193477,-9.611859,19.924496,-7.672570,-9.712355,20.050678,-7.672501, + -9.652990,19.920055,-7.683370,-9.669582,20.067322,-7.658948,-10.194525,20.340889,-6.199521,-10.141454,20.192066,-6.213033, + -10.264273,20.291595,-6.233882,-10.205732,20.156507,-6.244106,-10.054260,20.066135,-6.284407,-10.001127,19.917362,-6.298174, + -10.111311,20.020775,-6.314001,-10.052726,19.885723,-6.324407,-10.384498,20.326223,-5.563736,-10.350007,20.195688,-5.575233, + -10.297085,21.671093,-6.795233,-10.305010,21.522924,-6.818528,-10.434126,20.318871,-5.578165,-10.397824,20.191256,-5.589143, + -10.341846,21.661716,-6.809327,-10.263867,21.520521,-6.807138,-10.832276,22.001719,-5.329671,-10.820333,21.906149,-5.338572, + -10.061808,20.761963,-6.857219,-10.152023,20.949097,-6.856374,-10.890770,21.975906,-5.347975,-10.870147,21.889009,-5.353781, + -10.103866,20.767807,-6.868381,-10.107177,20.958153,-6.842301,-9.999410,20.522886,-6.873369,-10.014351,20.399786,-6.895106, + -10.052137,20.517965,-6.889102,-9.961346,20.395187,-6.880646,-10.460491,22.172224,-6.770678,-10.497937,22.074461,-6.795234, + -10.520219,22.158607,-6.789641,-10.442902,22.080322,-6.778710,-10.621581,22.068186,-6.251453,-10.645217,22.063129,-6.256734, + -10.490745,20.521364,-5.423858,-10.627954,22.061403,-6.208367,-10.170791,20.379606,-6.347826,-10.191906,20.375040,-6.347389, + -10.184674,20.383026,-6.306058,-10.539385,20.707047,-5.406207,-10.752775,22.010803,-5.772108,-10.414039,20.558357,-5.396288, + -10.770710,22.001198,-5.743847,-10.760489,22.003963,-5.730915,-10.314163,20.301800,-5.840063,-10.344550,20.300537,-5.804626, + -10.327552,20.304335,-5.799164,-10.455988,20.759731,-5.374703,-10.174059,21.218918,-6.824350,-10.252038,21.360113,-6.826539, + -10.215201,21.221321,-6.835740,-10.207276,21.369490,-6.812445,-10.787965,21.695883,-5.395199,-10.823728,21.838697,-5.384938, + -10.732439,21.718430,-5.367355,-10.760596,21.873890,-5.353683,-10.365606,21.902462,-6.781922,-10.443580,22.043636,-6.784112, + -10.406734,21.904814,-6.793315,-10.398831,22.053062,-6.770015,-10.035094,20.687544,-6.860167,-10.042996,20.539297,-6.883467, + -10.079842,20.678118,-6.874264,-10.001869,20.536945,-6.872075,-10.409789,20.501932,-5.398484,-10.381632,20.346474,-5.412155, + -10.472920,20.466742,-5.429739,-10.437159,20.323927,-5.440000,-10.563593,20.797485,-5.407825,-10.598863,20.940535,-5.399283, + -10.508062,20.820147,-5.380082,-10.535690,20.975851,-5.368253,-10.123263,20.992674,-6.841987,-10.201241,21.133869,-6.844175, + -10.164405,20.995077,-6.853376,-10.156481,21.143246,-6.830081,-10.648395,21.512859,-5.380345,-10.620767,21.357155,-5.392175, + -10.724920,21.475626,-5.415455,-10.689651,21.332577,-5.423997,-10.554875,21.217834,-5.461483,-10.527174,21.062166,-5.473569, + -10.618292,21.182398,-5.491660,-10.582970,21.039373,-5.500384,-10.252558,17.448170,-6.614459,-10.290763,17.321329,-6.642977, + -9.478393,18.888447,-7.668394,-9.562415,18.769775,-7.706029,-10.299342,17.469107,-6.624362,-10.334472,17.343760,-6.652252, + -9.522042,18.905151,-7.678679,-9.528034,18.745272,-7.699269,-9.763474,19.066484,-6.162320,-9.802855,18.980431,-6.182301, + -9.610277,18.456472,-7.762201,-9.613430,18.585581,-7.747820,-9.827505,19.076767,-6.177059,-9.854873,18.993250,-6.193976, + -9.645394,18.478497,-7.769462,-9.569665,18.569263,-7.737456,-9.867708,17.606855,-7.929304,-9.944755,17.512833,-7.962065, + -9.915937,17.631617,-7.939923,-9.901241,17.480017,-7.953722,-9.408139,19.228371,-7.608463,-9.491481,19.167696,-7.639048, + -9.466958,19.249743,-7.622458,-9.440763,19.142450,-7.627787,-9.581367,19.147552,-7.089012,-9.604394,19.155975,-7.092317, + -10.049876,18.292393,-6.321461,-9.588801,19.138876,-7.046439,-10.069761,17.496977,-7.406621,-10.090176,17.503727,-7.404480, + -10.078408,17.500969,-7.363513,-10.016381,18.400902,-6.294083,-9.706350,19.096945,-6.607250,-9.990380,18.277536,-6.297418, + -9.725658,19.093836,-6.578439,-9.715026,19.089170,-6.566416,-10.214699,17.431124,-6.897612,-10.240111,17.440395,-6.859547, + -10.223409,17.434237,-6.855507,-9.944434,18.390369,-6.266231,-9.656506,18.280243,-7.790348,-9.650514,18.440123,-7.769758, + -9.690886,18.304745,-7.797107,-9.606864,18.423418,-7.759472,-9.885590,18.793289,-6.263536,-9.842185,18.931391,-6.234831, + -9.825447,18.780375,-6.239392,-9.768890,18.924892,-6.206785,-9.466441,18.952507,-7.657461,-9.460455,19.112366,-7.636876, + -9.500836,18.976961,-7.664231,-9.416791,19.095711,-7.626580,-9.812867,17.763075,-7.895426,-9.896913,17.644325,-7.933076, + -9.856531,17.779730,-7.905721,-9.862516,17.619871,-7.926306,-10.195209,17.586649,-6.435030,-10.251765,17.442131,-6.467637, + -10.251050,17.593370,-6.458147,-10.294454,17.455269,-6.486852,-10.111143,17.926334,-6.506711,-10.067256,18.064632,-6.479734, + -10.026750,17.897560,-6.480247,-9.969678,18.042280,-6.449492,-9.730330,18.064627,-7.836582,-9.724338,18.224506,-7.815992, + -9.764710,18.089130,-7.843342,-9.680689,18.207802,-7.805707,-9.761130,18.762255,-6.473308,-9.818202,18.617533,-6.504064, + -9.834517,18.768637,-6.501141,-9.878404,18.630339,-6.528118,-9.934952,18.278133,-6.402943,-9.991951,18.133444,-6.433955, + -10.008578,18.284416,-6.429918,-10.052414,18.146139,-6.457079,-8.363173,21.795547,-3.381511,-8.332067,21.886675,-3.397330, + -8.357845,21.867887,-3.357011,-8.437882,21.828838,-3.440647,-8.396975,21.849073,-3.477417,-8.282530,21.761053,-3.359890, + -8.389942,21.802584,-3.281496,-7.979496,20.819786,-3.867349,-7.992648,20.776192,-3.813061,-8.108746,21.214859,-3.289827, + -8.115598,21.055590,-3.203078,-8.204958,21.136110,-3.260170,-8.155924,21.214252,-3.297307,-8.124998,21.028412,-3.534746, + -8.049402,21.007069,-3.502969,-8.046538,21.089611,-3.553739,-8.087138,21.092272,-3.566028,-8.253793,21.220253,-3.147698, + -8.368134,21.510761,-2.946583,-8.312206,21.487635,-2.968096,-7.949891,20.833572,-3.944822,-8.077113,20.765959,-3.837254, + -7.990961,20.715040,-3.783538,-7.873788,20.787176,-3.898620,-8.378614,21.849611,-3.359685,-8.339787,21.842953,-3.365115, + -8.379190,21.404833,-3.051519,-8.429478,21.482473,-2.987050,-8.379186,21.617992,-3.211186,-8.416332,21.596855,-3.235329, + -8.386995,21.544500,-3.286310,-8.335276,21.601698,-3.237485,-7.944824,20.938507,-3.684817,-8.040896,20.830584,-3.636848, + -8.109452,20.906790,-3.722619,-8.003977,20.979794,-3.732479,-7.906294,20.850954,-3.803130,-7.939997,20.807943,-3.731860, + -8.038143,20.873753,-3.791888,-7.968973,20.895931,-3.839516,-7.801288,20.881863,-4.039592,-8.016747,20.885323,-3.726222, + -8.432974,21.955704,-3.400122,-8.336936,21.705126,-3.428549,-8.456294,21.734377,-3.365229,-8.483641,21.879358,-3.434615, + -8.379944,21.899271,-3.329448,-8.436460,21.933725,-3.490287,-8.338988,21.947149,-3.379339,-8.235103,21.281073,-3.212214, + -8.305274,21.489473,-2.832193,-8.274746,21.526844,-2.807248,-8.323363,21.470430,-2.914804,-8.328895,21.398544,-2.882295, + -8.381802,21.516394,-2.837483,-8.321911,21.589706,-2.788543,-8.391521,21.591162,-2.742221,-8.377449,21.519852,-2.840245, + -8.319434,21.607523,-2.796096,-8.377453,21.619965,-2.742438,-8.490580,21.556398,-2.715394,-8.454082,21.605131,-2.680811, + -8.457556,21.536524,-2.792184,-8.342963,21.527182,-2.906944,-8.273165,21.588285,-2.837666,-8.140137,21.350664,-3.211421, + -8.354620,21.466724,-3.048892,-8.459572,21.550991,-3.070106,-8.285910,21.592581,-3.109146,-8.420236,21.421721,-3.047504, + -8.262136,21.458994,-3.022321,-8.283203,21.433748,-3.112495,-8.357947,21.580767,-2.936833,-8.392866,21.351252,-3.019357, + -8.291936,21.527580,-2.932668,-8.260818,21.496012,-2.954815,-8.278128,21.447805,-3.103491,-8.441481,21.470615,-3.025277, + -8.430414,21.406969,-2.959995,-8.382451,21.803385,-3.419637,-8.351995,21.550703,-3.291648,-8.323653,21.414965,-3.033678, + -7.930149,20.795412,-3.846675,-8.062269,21.151831,-3.246777,-8.008656,21.054600,-3.521725,-8.378606,21.537346,-2.935241, + -8.303373,21.512396,-2.936673,-8.284446,21.458229,-3.063473,-8.228976,21.254002,-3.261132,-8.150667,21.311066,-3.263392, + -8.230906,21.190739,-3.182515,-8.242521,21.281086,-3.223391,-8.146186,21.350822,-3.222929,-8.257594,21.218189,-3.154372, + -8.241611,21.195002,-3.186819,-8.237853,21.258575,-3.264188,-8.151253,21.318888,-3.263140,-8.309978,21.491034,-2.916828, + -8.328708,21.508211,-2.929726,-8.342453,21.526638,-2.904360,-8.353690,21.400253,-3.104231,-8.328716,21.431969,-3.119621, + -8.216248,21.449158,-3.124568,-8.287922,21.488964,-3.058887,-8.339795,21.524374,-2.954596,-8.333830,21.555111,-2.705781, + -8.325855,21.598728,-2.696062,-8.338433,21.558880,-2.698528,-8.318626,21.597931,-2.705318,-8.325727,21.557510,-2.684054, + -8.317872,21.555321,-2.688705,-8.314826,21.593895,-2.683088,-8.304600,21.593739,-2.688998,-8.035779,21.655767,-2.479554, + -8.115212,21.711393,-2.438584,-8.138519,21.659100,-2.429266,-8.024255,21.636803,-2.386415,-8.008361,21.696104,-2.407809, + -8.030334,21.696333,-2.560086,-8.085705,21.574680,-2.520804,-8.276516,20.668436,-3.490474,-8.327325,20.709917,-3.468500, + -7.941767,21.144924,-3.149912,-8.121832,21.140373,-3.127667,-8.018111,21.077696,-3.072518,-7.935542,21.111135,-3.116719, + -8.004948,20.902838,-3.308715,-8.029422,20.958313,-3.367023,-7.948453,20.923056,-3.381598,-7.943887,20.896616,-3.349238, + -8.037330,21.162447,-3.244682,-8.091907,21.204950,-2.983114,-8.140003,21.328133,-2.773395,-8.165361,21.385490,-2.787277, + -8.245716,20.608494,-3.539529,-8.361894,20.663494,-3.413809,-8.390721,20.741817,-3.490643,-8.273615,20.676720,-3.607687, + -8.090129,21.641405,-2.457702,-8.088377,21.672802,-2.482044,-8.056817,21.414616,-2.862590,-8.066685,21.320608,-2.801122, + -7.953281,21.493210,-2.638875,-7.914889,21.483070,-2.635358,-7.881302,21.540386,-2.665260,-7.954203,21.544069,-2.655495, + -8.130417,20.825367,-3.496578,-8.222674,20.876106,-3.392102,-8.166995,20.764778,-3.343423,-8.100164,20.757652,-3.453120, + -8.235995,20.757013,-3.527703,-8.296440,20.810926,-3.488982,-8.254746,20.722700,-3.399290,-8.206873,20.702547,-3.468909, + -8.143301,20.572302,-3.686489,-8.190504,20.782637,-3.434101,-8.081507,21.748047,-2.329683,-7.939847,21.686657,-2.509884, + -7.975350,21.562881,-2.459580,-8.023247,21.669849,-2.320945,-8.159658,21.695156,-2.375362,-7.994039,21.746243,-2.360845, + -8.132924,21.762451,-2.410226,-8.021663,21.260897,-2.995217,-8.241004,21.511465,-2.757771,-8.303282,21.428434,-2.817585, + -8.270395,21.415411,-2.765699,-8.239591,21.452194,-2.740225,-8.253261,21.474155,-2.792898,-8.161903,21.476557,-2.869210, + -8.169140,21.404604,-2.837181,-8.251164,21.353996,-2.845743,-8.223074,21.497190,-2.964455,-8.249853,21.576193,-2.681036, + -8.358607,21.428677,-2.788295,-8.315476,21.375553,-2.711034,-8.255043,21.447714,-2.661059,-8.328068,21.456419,-2.621247, + -8.320437,21.578773,-2.641137,-8.382030,21.590113,-2.596201,-8.364944,21.412592,-2.802887,-8.309318,21.375177,-2.710352, + -8.241683,21.442421,-2.647863,-8.303608,21.463158,-2.601653,-8.490456,21.451738,-2.693450,-8.432792,21.433689,-2.605223, + -8.396064,21.481934,-2.570202,-8.468124,21.526976,-2.621365,-8.304222,21.591688,-2.635259,-8.384201,21.380758,-2.652333, + -8.453555,21.408325,-2.761161,-8.323766,21.380116,-2.860659,-8.251156,21.332233,-2.731915,-8.197134,21.426838,-2.692714, + -8.372500,21.502110,-2.699217,-8.070689,21.353527,-3.152789,-8.189912,21.189064,-3.050812,-8.014033,21.338745,-3.083216, + -8.078547,21.418247,-2.799695,-8.079082,20.955513,-3.181643,-8.157651,21.527863,-2.948527,-8.320920,21.368216,-2.817611, + -8.077814,21.425247,-2.614563,-8.105385,21.500208,-2.654336,-8.252602,21.450756,-2.865173,-8.056748,21.307821,-2.772346, + -8.099729,21.452652,-3.055458,-8.133298,21.477814,-2.820105,-8.027242,21.442505,-2.918317,-8.156480,21.315571,-2.704819, + -8.123883,21.263025,-2.810133,-7.922036,20.992531,-3.087905,-8.205647,21.366730,-2.751405,-8.212198,21.409269,-2.775957, + -8.157651,21.527863,-2.948527,-8.088608,21.505892,-2.803838,-8.286222,21.278994,-2.901928,-8.064373,21.356060,-2.699635, + -8.105053,21.306231,-2.735608,-8.020768,21.666504,-2.440233,-7.897943,21.570009,-2.669856,-8.109854,21.437632,-2.849831, + -8.290410,20.702446,-3.534930,-8.020481,21.178751,-3.175320,-7.984700,20.962524,-3.406868,-8.174919,21.346992,-2.723500, + -8.155172,21.420677,-2.739369,-8.118237,21.490425,-2.860417,-7.975344,21.230026,-3.003273,-8.163530,21.157356,-3.079709, + -8.046887,21.318260,-3.179479,-7.966181,21.293627,-3.075831,-8.059503,21.174538,-3.008255,-8.010690,21.259171,-2.987696, + -8.066284,21.355286,-3.156958,-8.190387,21.184092,-3.050808,-8.002688,21.337257,-3.077040,-8.085533,21.201925,-2.979444, + -8.055046,21.177366,-2.997144,-7.972063,21.233450,-2.993969,-8.169248,21.157328,-3.074089,-8.045468,21.328075,-3.179963, + -7.965720,21.301350,-3.074516,-8.187004,21.523134,-2.913993,-8.176207,21.430099,-2.758121,-8.152987,21.454004,-2.771093, + -8.316457,21.399118,-2.809016,-8.252089,21.334751,-2.732080,-8.016207,21.344585,-2.849096,-8.101352,21.432119,-3.062848, + -8.009048,21.429529,-2.859386,-8.024037,21.378641,-2.970851,-8.116537,21.481951,-2.861759,-8.173269,21.421276,-2.772836, + -8.314935,21.514988,-2.669757,-8.292499,21.527897,-2.632468,-8.319805,21.519323,-2.663014,-8.283361,21.523046,-2.638085, + -8.316550,21.538023,-2.666558,-8.309491,21.537523,-2.672726,-8.291536,21.544441,-2.638688,-8.281155,21.543955,-2.644301, + -8.190624,21.147848,-3.456864,-7.931582,21.192877,-3.359483,-8.167133,21.016912,-3.338773,-8.089982,21.243973,-3.436660, + -7.861373,20.969830,-3.154355,-7.853908,21.064474,-3.242396,-2.700194,22.700851,-4.697156,-3.523713,22.483980,-1.663786, + -3.780843,22.433952,-1.710047,-2.945821,22.653101,-4.765835,-3.565647,22.774805,-1.652762,-3.231639,22.688963,-3.005414, + -3.429619,22.626080,-3.041884,-3.262048,22.917458,-2.997804,-3.803949,24.254940,-1.658687,-3.755967,23.891785,-1.669511, + -4.000437,24.230576,-1.712260,-3.737158,22.471413,-0.863512,-3.994287,22.421387,-0.909773,-3.601256,22.666866,-1.556153, + -4.000086,24.127527,-0.859808,-3.981011,22.593904,-1.389596,-4.196573,24.103163,-0.913381,-3.834013,22.730637,-1.718289, + -2.734570,22.959160,-4.688553,-4.083828,24.024296,-1.652153,-3.997004,23.890869,-1.738078,-3.472095,23.898783,-2.987446, + -4.183820,24.027117,-1.366709,-3.770590,22.720964,-0.855109,-3.825768,24.099325,-1.561376,-3.903269,24.075724,-1.278695, + -4.043176,22.697283,-0.919335,-3.887631,22.587721,-1.655037,-3.961548,23.837776,-0.869376,-3.665632,22.649942,-1.313186, + -4.197863,23.800158,-0.938571,-5.835804,23.868984,-2.193624,-7.383743,22.136982,-2.720687,-4.945069,24.160025,-5.095273, + -7.055853,23.901638,-5.706796,-7.856677,22.216290,-2.497905,-5.857433,23.738392,-1.628063,-5.612944,22.494514,-1.886151, + -5.644334,22.342621,-2.236681,-7.770883,22.174528,-2.240584,-3.636922,22.565546,-1.777148,-5.774956,23.711905,-1.845605, + -5.657054,22.293077,-1.637673,-5.868010,23.878229,-1.584879,-3.851450,24.180109,-1.724638,-2.818209,22.812445,-4.625697, + -4.734113,22.574871,-5.148068,-7.955139,23.619423,-2.153935,-4.580039,22.568024,-5.203356,-5.587455,22.301849,-2.219748, + -5.787152,22.276236,-2.248642,-4.782819,22.542879,-5.258644,-5.609090,22.464417,-2.214334,-4.602707,22.738361,-5.197683, + -5.021710,22.481573,-3.477773,-5.200237,22.459436,-3.526448,-5.041763,22.632252,-3.472754,-6.880365,22.293545,-5.830560, + -7.500584,22.098412,-2.739806,-7.528175,22.256792,-2.710640,-6.902693,22.461319,-5.824972,-7.304096,22.122776,-2.686234, + -6.674484,22.319075,-5.774426,-7.262129,22.177887,-4.106381,-7.281879,22.326296,-4.101439,-7.080873,22.200363,-4.056962, + -7.101134,23.922129,-5.777210,-7.532695,23.716164,-2.615782,-6.898355,23.947273,-5.721922,-7.698163,23.531246,-2.697764, + -7.078466,23.751791,-5.782884,-7.480291,23.717197,-4.058455,-7.301764,23.739334,-4.009780,-7.460238,23.566519,-4.063474, + -4.781960,24.212484,-5.144927,-5.762370,23.759037,-2.208611,-4.802039,24.039452,-5.162077,-5.980153,23.894684,-2.256855, + -5.030248,24.181696,-5.212623,-5.200095,23.978310,-3.462416,-5.222753,23.824642,-3.478921,-5.423759,23.950577,-3.523397, + -7.631309,22.028063,-2.874777,-7.898030,22.300323,-2.926595,-5.544179,22.286869,-2.305721,-5.637544,22.580582,-2.308904, + -5.577067,22.278345,-2.181223,-6.591746,22.486790,-2.562286,-6.540068,22.193035,-2.548679,-6.573077,22.184479,-2.423722, + -7.039474,22.238527,-4.115952,-7.070529,22.510227,-4.125620,-7.072604,22.229940,-3.990535,-5.219026,22.459566,-3.486189, + -5.223022,22.739017,-3.622305,-5.185904,22.468149,-3.611578,-6.793001,22.532831,-3.519760,-6.339552,22.583065,-3.216133, + -5.797397,22.656288,-3.248309,-6.764392,22.260498,-3.500835,-6.310942,22.310730,-3.197208,-5.768787,22.383953,-3.229384, + -6.813942,22.247656,-3.313258,-6.360493,22.297890,-3.009630,-5.818337,22.371111,-3.041806,-5.962275,23.843445,-3.007038, + -6.535131,23.781452,-2.966617,-7.001111,23.714846,-3.316089,-5.923087,23.853600,-3.155385,-6.485827,23.794230,-3.153259, + -7.642612,22.168745,-3.525460,-7.831450,22.145844,-3.580102,-7.602821,22.187815,-3.667917,-7.807159,22.161617,-3.718910, + -7.645629,22.187788,-3.523151,-7.834467,22.164886,-3.577793,-7.605838,22.206860,-3.665609,-7.810175,22.180660,-3.716602, + -5.181067,22.483402,-3.095014,-4.998900,22.507744,-3.021582,-5.233595,22.456404,-2.957963,-5.035498,22.483290,-2.886724, + -5.184708,22.502253,-3.092199,-5.002540,22.526592,-3.018767,-5.237236,22.475252,-2.955149,-5.039138,22.502140,-2.883908, + -7.621554,22.209778,-3.891308,-7.464203,22.229267,-3.849510,-7.652404,22.197584,-3.772196,-7.482098,22.218580,-3.733840, + -7.623837,22.225626,-3.889899,-7.466485,22.245115,-3.848102,-7.654686,22.213432,-3.770787,-7.484381,22.234430,-3.732431, + -6.961793,23.725035,-3.464930,-5.896083,23.671679,-3.171690,-6.450734,23.565565,-3.177976,-6.932918,23.542856,-3.487983, + -7.415772,23.692703,-3.848924,-7.366279,23.705528,-4.036286,-5.300568,23.927769,-3.398297,-5.218273,23.712118,-3.602053, + -7.328448,23.476486,-4.070871,-5.251401,23.940510,-3.584421,-5.176552,22.471806,-3.500711,-5.205162,22.744141,-3.519637, + -5.226103,22.458963,-3.313134,-7.217312,22.212051,-3.856037,-7.196371,22.497227,-4.062540,-7.167761,22.224894,-4.043614, + -3.936220,23.976559,-1.129580,-3.658484,22.740574,-1.464447,-5.683754,22.433336,-1.671528,-3.729638,22.676491,-1.164013, + -3.849286,23.952406,-1.431886,-3.723755,22.535334,-1.186381,-3.934710,24.120487,-1.133587,-5.103763,22.554789,-3.507675, + -5.238246,23.897913,-3.488530,-3.391912,22.758890,-3.047866,-3.345758,22.684694,-3.008910,-3.546695,22.937073,-3.178480, + -3.312871,22.693218,-3.133408,-3.951465,22.630127,-3.245599,-3.845989,22.643206,-3.216841,-3.406594,22.705820,-4.890052, + -3.519267,22.691849,-4.920772,-4.572408,22.553129,-3.414899,-4.467015,22.566198,-3.386164,-3.999985,22.632988,-5.074300, + -4.111372,22.619337,-5.109520,-3.957684,22.676907,-3.244040,-3.852208,22.689985,-3.215281,-3.413164,22.755945,-4.888728, + -3.525836,22.741974,-4.919448,-4.578627,22.599909,-3.413340,-4.473235,22.612978,-3.384604,-4.006554,22.683113,-5.072975, + -4.117941,22.669462,-5.108196,-3.848987,22.517292,-1.814950,-3.735484,22.531366,-1.784003,-4.196291,22.614319,-3.266160, + -4.300995,22.601336,-3.294708,-3.855647,22.567394,-1.813279,-3.742144,22.581467,-1.782332,-4.202419,22.661121,-3.264946, + -4.307123,22.648140,-3.293494,-5.484671,22.348663,-2.229963,-5.390127,22.358891,-2.159284,-4.198341,22.590456,-3.264989, + -4.303045,22.577473,-3.293536,-5.491333,22.398764,-2.228290,-5.396788,22.408993,-2.157611,-4.204468,22.637259,-3.263775, + -4.309173,22.624275,-3.292323,-8.812451,22.069151,-6.260027,-9.766046,23.368172,-3.264686,-9.567665,21.877304,-3.314093, + -9.742200,21.982481,-3.011993,-9.904213,23.199871,-2.971447,-9.762094,21.927616,-2.783487,-9.935773,23.232672,-2.740022, + -8.018689,23.433678,-2.457359,-7.744184,22.034269,-2.206729,-7.615828,23.642498,-2.668436,-9.735394,21.787357,-2.749632, + -6.821242,22.316065,-5.717124,-9.946349,23.372511,-2.696838,-9.232625,22.073828,-4.616900,-7.404188,23.623812,-4.020326, + -7.176474,22.304779,-4.036797,-9.610314,21.791088,-3.380769,-9.352740,22.131308,-3.309503,-9.643445,21.782503,-3.255352, + -7.664196,22.019539,-2.750279,-8.678876,22.227982,-3.131342,-8.627197,21.934227,-3.117735,-8.660207,21.925673,-2.992777, + -9.244760,21.974871,-4.699152,-9.019903,22.278305,-4.639047,-9.277889,21.966286,-4.573736,-3.586307,22.489727,-1.631040, + -3.575894,22.796015,-1.741089,-3.553419,22.498251,-1.755538,-8.029804,22.124409,-4.357558,-7.924327,22.137487,-4.328800, + -7.484934,22.200102,-6.002011,-7.597606,22.186131,-6.032731,-8.650747,22.047409,-4.526858,-8.545355,22.060478,-4.498123, + -8.078325,22.127268,-6.186259,-8.189712,22.113617,-6.221479,-8.036023,22.171186,-4.355999,-7.930547,22.184265,-4.327240, + -7.491502,22.250227,-6.000687,-7.604175,22.236256,-6.031407,-8.656966,22.094189,-4.525299,-8.551574,22.107258,-4.496563, + -8.084893,22.177393,-6.184935,-8.196281,22.163742,-6.220155,-7.936475,22.045393,-2.921160,-7.822971,22.059467,-2.890213, + -8.274631,22.108601,-4.378119,-8.379335,22.095617,-4.406667,-7.943135,22.095493,-2.919489,-7.829632,22.109568,-2.888542, + -8.280758,22.155403,-4.376905,-8.385462,22.142420,-4.405453,-9.442523,21.856094,-3.255327,-9.329019,21.870169,-3.224380, + -8.282249,22.102829,-4.378144,-8.386954,22.089846,-4.406692,-9.449183,21.906197,-3.253656,-9.335681,21.920269,-3.222710, + -8.288377,22.149633,-4.376931,-8.393081,22.136650,-4.405478,-7.944563,23.479584,-2.197119,-7.312259,23.798975,-4.196662, + -7.389883,23.858480,-3.995773,-6.359299,22.324551,-3.072753,-6.549961,23.757376,-3.024495,-5.710993,22.426235,-3.132409, + -5.898160,23.832714,-3.085125,-7.044802,23.687124,-3.381502,-6.858668,22.288107,-3.428311,-5.083034,22.287939,-3.437110, + -7.192105,23.807697,-4.164268,-7.078194,22.141262,-4.217518,-5.325486,24.114185,-3.423102,-7.121502,22.035450,-4.002711, + -6.972549,22.149006,-4.176421,-5.083464,22.383255,-3.661362,-5.282797,22.263168,-3.491575,-7.214570,23.879936,-3.938161, + -5.239491,22.368980,-3.706383,-5.303020,24.041946,-3.649209,-5.551179,24.086199,-3.484636,-6.972119,22.053690,-3.952169, + -5.473556,24.026695,-3.685526,2.241549,23.807877,-1.009048,0.091286,22.389204,-1.674186,-0.168362,22.524775,-1.391119, + 2.055725,23.668383,-0.487796,2.095500,22.413742,-0.800697,2.197138,22.285923,-1.124974,-0.088439,22.458748,-1.137012, + 4.058634,22.200119,-0.711641,2.131237,23.638466,-0.707412,2.021516,22.211411,-0.560173,2.068050,23.806114,-0.438706, + 4.105552,23.783178,-0.594042,4.884259,22.398521,-3.564630,2.951169,22.493330,-4.068786,-0.037802,23.909397,-0.987919, + 3.142157,22.404297,-4.119949,2.087221,22.234077,-1.142325,1.885790,22.242016,-1.169380,2.937557,22.414331,-4.173309, + 2.091994,22.397625,-1.129868,3.147157,22.575661,-4.106896,2.527278,22.381916,-2.435734,2.347150,22.390749,-2.482712, + 2.531701,22.533501,-2.424188,0.781700,22.561655,-4.733473,0.162365,22.362009,-1.642795,0.160766,22.521353,-1.606697, + 0.786625,22.730440,-4.720617,0.360616,22.352285,-1.591091,0.989427,22.551468,-4.679297,0.431417,22.459751,-3.000038, + 0.435774,22.609055,-2.988665,0.614298,22.450781,-2.952342,0.021030,22.319378,-1.778671,-0.198932,22.632788,-1.815320, + 2.126883,22.216097,-1.229458,1.906920,22.529505,-1.266107,2.093995,22.207573,-1.104960,1.123060,22.591938,-1.462424, + 1.127035,22.293390,-1.461746,1.094025,22.284836,-1.336789,0.582244,22.488197,-3.030786,0.853322,22.748863,-2.961398, + 0.549113,22.479610,-2.905369,2.558185,22.381075,-2.381397,2.862394,22.650328,-2.437426,2.591316,22.389662,-2.506814, + 1.737820,22.438936,-2.701088,1.844242,22.433716,-2.673333,2.275337,22.497465,-4.348658,2.161654,22.503042,-4.378307, + 1.111307,22.469664,-2.864485,1.217644,22.464447,-2.836751,1.676574,22.528538,-4.527212,1.564176,22.534418,-4.561362, + 1.739200,22.485996,-2.697502,1.845622,22.480776,-2.669746,2.276906,22.547892,-4.345163,2.163224,22.553467,-4.374813, + 1.112687,22.516724,-2.860898,1.219024,22.511507,-2.833165,1.678143,22.578964,-4.523717,1.565746,22.584845,-4.557867, + 1.828110,22.284016,-1.270689,1.942631,22.278399,-1.240821,1.493481,22.463406,-2.718763,1.387838,22.468586,-2.746315, + 1.829587,22.334417,-1.266848,1.944109,22.328800,-1.236980,1.494952,22.510489,-2.715523,1.389309,22.515671,-2.743075, + 0.308720,22.352728,-1.590716,0.423242,22.347111,-1.560849,1.487638,22.440149,-2.718552,1.381995,22.445330,-2.746104, + 0.310198,22.403130,-1.586875,0.424720,22.397512,-1.557008,1.489109,22.487232,-2.715312,1.383466,22.492414,-2.742864, + 0.375077,22.316969,-1.243757,0.184604,22.326958,-1.296579,0.416335,22.335564,-1.385859,0.210062,22.344624,-1.434949, + 0.375173,22.336132,-1.240618,0.184700,22.346121,-1.293440,0.416432,22.354729,-1.382720,0.210159,22.363787,-1.431811, + 0.019429,22.321276,-1.302515,0.205832,22.311682,-1.236700,-0.031454,22.306934,-1.162957,0.170967,22.296774,-1.100002, + 0.019546,22.340515,-1.300007,0.205949,22.330921,-1.234193,-0.031336,22.326174,-1.160449,0.171084,22.316013,-1.097494, + 0.477217,22.314295,-1.275105,0.635969,22.306534,-1.234803,0.445713,22.302059,-1.156169,0.617466,22.293859,-1.119430, + 0.477518,22.330229,-1.273008,0.636270,22.322468,-1.232707,0.446013,22.317993,-1.154073,0.617767,22.309793,-1.117333, + 3.987633,23.570700,-0.008414,4.067246,22.325481,-0.397315,2.017414,22.355465,-0.587799,3.989003,22.260687,-0.098803, + 4.063303,23.547300,-0.313644,3.971991,22.121508,-0.127083,3.978844,23.713306,-0.015231,2.619254,22.427868,-2.430803, + 4.357832,22.378086,-1.974756,4.982566,22.281948,-3.641636,4.157858,22.068760,-0.608328,3.895692,22.062561,-0.652919, + 4.731949,22.277124,-3.708694,4.163218,22.361795,-0.584659,4.990149,22.541815,-3.621842,4.468895,22.282150,-1.944371, + 4.202536,22.278099,-2.015535,4.987002,24.068552,-3.519489,4.165466,23.859846,-0.525814,4.154471,23.494503,-0.552367, + 4.978336,23.771593,-3.542108,3.967216,23.869572,-0.577519,4.779275,24.078741,-3.573665,4.434506,23.814928,-1.849329, + 4.425823,23.512936,-1.872826,4.251625,23.823898,-1.897025,4.355276,22.287079,-1.947105,4.196165,22.575441,-2.103164, + 4.388164,22.295601,-2.071603,3.746892,22.340401,-2.177116,3.853314,22.335180,-2.149361,4.284409,22.398930,-3.824686, + 4.170726,22.404505,-3.854335,3.120379,22.371128,-2.340513,3.226717,22.365911,-2.312779,3.685646,22.430002,-4.003240, + 3.573248,22.435883,-4.037390,3.748271,22.387461,-2.173530,3.854694,22.382240,-2.145774,4.285978,22.449356,-3.821191, + 4.172296,22.454931,-3.850840,3.121758,22.418188,-2.336926,3.228096,22.412971,-2.309193,3.687215,22.480427,-3.999745, + 3.574818,22.486309,-4.033895,3.837182,22.185480,-0.746717,3.951704,22.179863,-0.716849,3.502553,22.364870,-2.194791, + 3.396909,22.370050,-2.222342,3.838660,22.235882,-0.742875,3.953181,22.230265,-0.713008,3.504024,22.411953,-2.191550, + 3.398381,22.417135,-2.219103,2.196105,22.264242,-1.152068,2.291597,22.256147,-1.082393,3.496710,22.341614,-2.194580, + 3.391067,22.346794,-2.222132,2.197582,22.314644,-1.148225,2.293074,22.306549,-1.078550,3.498181,22.388697,-2.191340, + 3.392538,22.393879,-2.218892,-1.163756,22.695148,-5.141971,-1.873375,24.009695,-2.082233,-1.917786,22.487740,-2.198159, + -2.070800,22.618080,-1.887281,-2.035062,23.842804,-1.793996,-2.097510,22.557283,-1.660984,-2.059199,23.870201,-1.560981, + -0.132624,23.749498,-1.297834,-0.084336,22.314693,-1.109386,0.135697,23.911160,-1.558261,-2.093408,22.413229,-1.633358, + 0.845316,22.596613,-4.617999,-2.046874,24.007933,-1.511891,-1.495671,22.629686,-3.503988,0.513401,22.531151,-2.980015, + -1.974122,22.424170,-2.265531,-1.664764,22.715395,-2.183939,-2.007253,22.415583,-2.140115,-0.011857,22.310856,-1.654173, + -0.982793,22.695221,-2.011637,-0.978818,22.396673,-2.010959,-1.011827,22.388119,-1.886002,-1.523609,22.591480,-3.579998, + -1.252530,22.852146,-3.510611,-1.556739,22.582893,-3.454582,4.093416,22.108322,-0.567904,3.906342,22.430254,-0.729051, + 4.126304,22.116846,-0.692402,-0.368032,22.542219,-3.250301,-0.261610,22.536999,-3.222546,0.169485,22.600748,-4.897871, + 0.055802,22.606323,-4.927520,-0.994546,22.572947,-3.413697,-0.888208,22.567730,-3.385964,-0.429279,22.631821,-5.076425, + -0.541676,22.637701,-5.110575,-0.366653,22.589279,-3.246715,-0.260230,22.584059,-3.218959,0.171054,22.651173,-4.894376, + 0.057371,22.656750,-4.924026,-0.993166,22.620007,-3.410111,-0.886828,22.614790,-3.382378,-0.427709,22.682245,-5.072930, + -0.540107,22.688128,-5.107080,-0.277743,22.387297,-1.819901,-0.163221,22.381680,-1.790034,-0.612372,22.566689,-3.267975, + -0.718015,22.571869,-3.295527,-0.276265,22.437700,-1.816061,-0.161743,22.432083,-1.786193,-0.610900,22.613771,-3.264735, + -0.716544,22.618954,-3.292287,-1.797132,22.456011,-2.139929,-1.682610,22.450394,-2.110062,-0.620818,22.562218,-3.268130, + -0.726461,22.567398,-3.295682,-1.795654,22.506413,-2.136088,-1.681132,22.500795,-2.106221,-0.619347,22.609301,-3.264890, + -0.724990,22.614483,-3.292442,-0.050127,23.771666,-1.037009,3.951215,22.055937,0.193725,3.689048,22.049738,0.149135, + 4.111481,22.256872,-0.492105,3.957468,23.731056,0.269837,3.726208,22.238480,-0.323269,3.759217,23.740780,0.218133, + 3.890755,22.364006,-0.648094,4.475603,22.512024,-1.926862,3.852261,23.676888,-0.524819,3.915900,23.535126,-0.617439, + 3.756178,23.683332,-0.238095,3.958323,22.307022,0.212943,4.148364,23.704849,-0.426869,4.070218,23.681759,-0.144324, + 3.684992,22.330055,0.151717,3.815378,22.228912,-0.590054,3.948939,23.439560,0.247717,4.047061,22.239983,-0.249147, + 3.709134,23.443258,0.180428,-2.124856,22.206148,-0.283224,-4.110600,22.153305,-0.875120,-4.194053,24.222187,-0.779851, + -2.208309,24.275030,-0.187955,-3.792911,22.264097,-1.763518,-4.188601,22.837931,-0.858534,-4.216714,23.534883,-0.826441, + -1.949010,22.315882,-1.272887,-2.130308,23.590405,-0.204542,-2.102195,22.893452,-0.236635,-1.178049,22.493832,-4.214243, + -3.110087,22.439571,-4.728326,-3.857386,24.171329,-1.722508,-2.013486,24.223114,-1.231877,-2.774095,22.188871,-0.476744, + -3.461224,22.170586,-0.681559,-3.544676,24.239468,-0.586290,-2.857547,24.257753,-0.381475,-4.013334,23.540295,-0.765819, + -3.992351,24.025667,-0.731441,-3.469358,22.372257,-0.672271,-3.925167,22.360128,-0.808136,-2.849412,24.056082,-0.390763, + -2.393741,24.068207,-0.254939,-2.305575,22.888041,-0.297257,-2.326558,22.402668,-0.331635,-3.985221,22.843344,-0.797912, + -2.333688,23.584993,-0.265162,-2.782229,22.390543,-0.467458,-3.536541,24.037796,-0.595576,-2.758233,24.058140,-0.831435, + -3.346625,22.394773,-1.038174,-3.859073,23.537186,-1.139281,-3.875623,24.026758,-1.128754,-3.820004,22.381479,-1.164132, + -2.284976,24.071430,-0.705509,-2.245907,22.915726,-0.730360,-2.229357,22.426151,-0.740887,-3.836554,22.871054,-1.153605, + -2.268426,23.581858,-0.716036,-2.702613,22.412861,-0.866812,-3.402246,24.040052,-1.002796,-2.122988,24.252468,-0.645965, + -4.055027,24.198210,-1.160049,-3.987470,22.199812,-1.203020,-2.055431,22.254072,-0.688936,-2.077950,22.920204,-0.674613, + -2.100469,23.586336,-0.660289,-4.032508,23.532076,-1.174373,-4.009989,22.865944,-1.188696,-3.343396,22.217901,-1.031642, + -2.699383,22.235987,-0.860281,-2.766941,24.234385,-0.817310,-3.410954,24.216297,-0.988672,-1.667231,22.476866,-2.614484, + -1.743208,24.233152,-2.514318,-3.452249,24.185154,-2.969065,-3.376273,22.428867,-3.069232,-1.969933,24.282244,-1.128562, + -1.967518,24.079239,-1.116210,-2.168076,24.276678,-1.181285,-1.673932,24.302269,-2.484006,-1.665891,24.116383,-2.494608, + -1.857584,24.297110,-2.532873,-1.098576,22.480446,-4.290442,-1.924253,22.293558,-1.253398,-2.125578,22.286449,-1.281455, + -1.303064,22.474703,-4.344853,-1.933103,22.498148,-1.241730,-1.107849,22.694815,-4.278216,-1.574958,22.404343,-2.588551, + -1.755844,22.399263,-2.636681,-1.583122,22.593071,-2.577787,-3.115575,22.389786,-4.829287,-3.868357,22.231102,-1.775088, + -3.883365,22.430843,-1.739765,-3.115680,22.910322,-4.793678,-3.670215,22.236666,-1.722365,-2.907960,22.395615,-4.774044, + -3.454276,22.377607,-3.086649,-3.452383,22.903923,-3.050117,-3.270624,22.382765,-3.037782,-1.849558,22.253080,-1.299053, + -2.226661,22.548990,-1.398477,-1.882688,22.244493,-1.173636,-1.918745,24.306356,-1.209769,-2.274642,24.059978,-1.320650, + -1.951632,24.297832,-1.085270,-2.270895,23.250719,-1.368588,-1.917503,23.277645,-1.253326,-1.950512,23.269089,-1.128368, + -3.963123,24.254387,-1.656378,-3.882318,22.202713,-1.789492,-3.578324,22.448256,-1.699564,-3.915355,22.197958,-1.664832, + -3.579207,23.258093,-1.662443,-3.884005,23.231173,-1.744245,-3.917163,23.226400,-1.619126,-2.887378,22.261225,-1.575928, + -2.880303,22.538208,-1.637255,-2.920536,22.256453,-1.450808,-3.614093,23.963881,-1.668118,-3.929843,24.259176,-1.781957, + -1.595154,22.438347,-2.664096,-1.931347,22.696831,-2.755275,-1.628284,22.429760,-2.538680,-3.412941,22.392809,-3.097416, + -3.140899,22.607565,-3.018036,-3.445957,22.387579,-2.972784,-1.981291,24.000736,-1.214170,-1.986403,24.118919,-1.207429, + -1.685320,23.390961,-2.549691,-1.680604,23.281939,-2.555908,-2.042355,23.999029,-1.230417,-2.047467,24.117212,-1.223677, + -1.742244,23.389389,-2.565207,-1.737528,23.280369,-2.571425,-1.933142,22.447329,-1.231166,-1.938254,22.565512,-1.224426, + -1.657773,23.387058,-2.539335,-1.653057,23.278038,-2.545552,-1.994206,22.445621,-1.247414,-1.999318,22.563805,-1.240674, + -1.714697,23.385487,-2.554852,-1.709981,23.276466,-2.561069,-2.244283,22.259285,-1.308893,-2.090442,22.283491,-1.305824, + -3.214292,22.407200,-2.945377,-3.357792,22.384533,-2.945610,-2.247003,22.322336,-1.305295,-2.093163,22.346542,-1.302226, + -3.216728,22.465816,-2.942379,-3.360229,22.443150,-2.942613,-2.071975,23.913790,-0.835489,-2.063282,23.716591,-0.849885, + -2.048084,23.926397,-0.982590,-2.039021,23.714487,-0.989924,-2.102467,23.912807,-0.841810,-2.093774,23.715609,-0.856205, + -2.078576,23.925415,-0.988911,-2.069513,23.713505,-0.996245,-2.068233,23.758682,-0.731792,-2.082308,23.954254,-0.704889, + -2.097467,23.735809,-0.587100,-2.109956,23.946596,-0.565789,-2.098607,23.757597,-0.738729,-2.112680,23.953171,-0.711827, + -2.127841,23.734724,-0.594038,-2.140329,23.945511,-0.572726,-2.058382,24.008301,-0.883575,-2.065093,24.171923,-0.875250, + -2.083536,24.000427,-0.762663,-2.088530,24.176167,-0.760021,-2.083549,24.007605,-0.889345,-2.090260,24.171227,-0.881020, + -2.108702,23.999731,-0.768433,-2.113697,24.175472,-0.765790,-2.549414,24.118067,0.679322,-2.547230,23.934465,0.690494, + -2.728618,24.113033,0.631639,-2.266256,24.047525,-0.737170,-2.259315,23.887089,-0.746320,-2.424764,24.043074,-0.779346, + -2.508100,22.319464,0.566418,-2.690182,22.313034,0.541042,-2.516104,22.504498,0.576971,-2.196206,22.405460,-0.769204, + -2.352326,22.401077,-0.810745,-2.203252,22.568350,-0.759914,-4.266384,22.262978,0.094593,-4.279957,22.443626,0.126538, + -4.087180,22.268009,0.142276,-3.818227,22.382385,-1.199108,-3.825168,22.542822,-1.189957,-3.659719,22.386837,-1.156931, + -4.318924,24.078178,0.170793,-4.142537,24.083132,0.217727,-4.310920,23.893145,0.160240,-3.822836,24.014498,-1.234184, + -3.666715,24.018883,-1.192643,-3.815790,23.851608,-1.243474,-2.232838,22.118719,0.449358,-2.250765,22.114073,0.517223, + -2.311453,24.322409,0.561596,-2.329249,24.317797,0.628963,-2.306644,23.218678,0.501666,-2.324505,23.214048,0.569282, + -4.475913,24.270468,-0.034128,-4.494009,24.269897,0.033940,-4.409075,22.066330,-0.102056,-4.427038,22.065763,-0.034488, + -4.414122,23.169853,-0.041217,-4.432151,23.169283,0.026602,-3.347681,22.127352,0.153676,-3.365710,22.126783,0.221495, + -3.443593,24.263643,0.327387,-3.726604,23.132416,1.652212,-3.425731,24.268272,0.259770,-3.530344,22.660933,0.876668, + -3.553920,23.736597,0.862287,-4.123879,23.157944,0.615433,-3.081604,23.173515,1.070805,-3.056121,23.684122,1.080004, + -4.095498,22.542238,0.630169,-4.177770,23.832359,0.589328,-3.084405,22.714020,1.071324,-3.561903,23.157801,0.882681, + -3.476287,24.508820,0.036661,-3.523366,23.107996,0.738989,-3.371037,24.580044,0.228089,-2.107330,23.367996,0.478933, + -2.081209,23.209333,0.474972,-2.124443,23.369253,0.315750,-3.524527,24.556854,0.185955,-2.108289,23.214239,0.331624, + -3.459068,23.214155,0.763242,-3.528014,23.291868,0.741901,-3.483400,23.127029,0.589160,-4.635121,23.124243,-0.215873, + -4.661242,23.282904,-0.211911,-4.539950,23.143213,-0.348183,-3.476758,23.295988,0.563663,-4.567029,23.295397,-0.322699, + -3.333119,24.526066,0.097880,-3.634609,23.212107,0.708282,-3.427782,23.224884,0.610552,-3.260866,21.925327,0.097385, + -3.414355,21.902136,0.055252,-3.231048,21.993591,-0.048814,-3.579567,23.228319,0.531873,-3.385142,21.973515,-0.068674, + -4.511590,24.230820,-0.267723,-3.511597,23.138239,0.881093,-4.506126,24.384514,-0.097008,-2.347964,24.406307,0.551192, + -2.221075,24.311220,0.578202,-2.341870,24.369080,0.391504,-4.596872,24.255817,-0.129789,-2.227043,24.272934,0.437474, + -3.539681,23.261536,0.882115,-3.639842,23.265768,0.847498,-3.477681,23.154978,0.729509,-4.410022,21.947742,-0.174870, + -4.536912,22.042828,-0.201880,-4.338058,22.005199,-0.310677,-3.584255,23.275110,0.670762,-4.463810,22.098515,-0.315287, + -4.426578,24.351295,-0.214798,-3.659236,23.130594,0.833120,-3.506104,23.265968,0.729599,-2.108527,22.137356,0.432110, + -2.199273,22.008661,0.399328,-2.115750,22.182585,0.274549,-3.609306,23.151400,0.655675,-2.211688,22.059277,0.262983, + -2.620714,22.435530,-2.903453,-2.514349,22.438517,-2.875152,-2.077370,22.434807,-4.551183,-2.190991,22.431616,-4.581415, + -2.623254,22.494400,-2.900094,-2.516890,22.497387,-2.871792,-2.079999,22.497881,-4.547931,-2.193620,22.494690,-4.578164, + -3.868361,22.517950,-1.721961,-3.847682,22.369938,-1.765857,-3.459723,23.995457,-2.978309,-3.491250,24.131456,-2.938100, + -3.807290,22.514215,-1.706084,-3.786611,22.366203,-1.749980,-3.402886,23.997068,-2.963557,-3.434412,24.133066,-2.923348, + -3.740080,22.167652,-0.879341,-3.921345,22.154617,-0.932647,-3.731002,22.189926,-1.027307,-3.896532,22.173420,-1.071110, + -3.741590,22.191652,-0.876296,-3.931992,22.186993,-0.930102,-3.732511,22.213926,-1.024261,-3.907179,22.205793,-1.068565, + -3.637815,22.171240,-0.910228,-3.479145,22.175684,-0.869112,-3.668981,22.157990,-0.791272,-3.497289,22.162788,-0.753658, + -3.638847,22.191193,-0.908208,-3.480176,22.195637,-0.867093,-3.670013,22.177944,-0.789252,-3.498320,22.182741,-0.751639, + -15.104636,22.067730,-5.710362,-13.073224,23.659962,-5.064737,-14.302396,22.191679,-8.647152,-12.198155,22.261011,-8.086548, + -12.970617,23.495409,-4.706524,-15.212028,22.136688,-5.154120,-16.234009,22.128035,-9.161766,-15.232747,23.420876,-5.309192, + -15.177464,23.590630,-5.625342,-13.170614,23.519754,-4.520173,-17.001888,23.534552,-6.183650,-15.174142,22.195391,-5.377608, + -15.307698,23.588518,-5.043595,-15.231389,21.992823,-5.132679,-16.925316,21.950918,-6.275010,-13.127148,22.062155,-4.572074, + -12.216711,22.239693,-8.189011,-13.067508,22.072927,-5.161257,-13.268788,22.064871,-5.189366,-12.421154,22.232956,-8.243478, + -13.075334,22.236576,-5.152121,-12.224911,22.411163,-8.179438,-12.770066,22.215740,-6.503883,-12.950056,22.209808,-6.551836, + -12.777321,22.367420,-6.495415,-14.353618,22.166553,-8.758734,-14.999488,22.027348,-5.712534,-15.007190,22.188423,-5.703541, + -14.361693,22.335442,-8.749306,-14.801389,22.033875,-5.659757,-14.146049,22.173391,-8.703435,-14.731071,22.179667,-7.024602, + -14.738215,22.329063,-7.016262,-14.548327,22.185688,-6.975917,-14.991353,22.011833,-5.803114,-14.724881,22.278521,-5.663818, + -15.028142,22.003130,-5.678730,-13.276495,22.311041,-5.216120,-14.055443,22.310881,-5.439986,-14.025790,22.059153,-5.448830, + -14.062444,22.050482,-5.324901,-14.785779,22.180614,-7.061487,-12.059732,22.508350,-6.382526,-13.753485,22.243931,-6.797138, + -13.647143,22.247435,-6.768807,-13.204857,22.206757,-8.474638,-13.318453,22.203014,-8.504902,-13.755730,22.291021,-6.794508, + -13.649388,22.294525,-6.766176,-13.207170,22.257214,-8.472167,-13.320766,22.253471,-8.502431,-13.355811,22.078693,-5.203530, + -13.200485,22.089731,-5.200971,-14.337085,22.217285,-6.918702,-14.480636,22.197245,-6.918768,-13.352942,22.129112,-5.199322, + -13.197618,22.140150,-5.196761,-14.339227,22.264175,-6.916429,-14.482780,22.244135,-6.916496,-17.130901,22.079588,-5.689185, + -17.148216,23.363960,-5.930512,-15.274854,23.450422,-5.080778,-17.232483,23.387329,-5.627557,-17.050850,22.144468,-5.987213, + -17.219326,23.529758,-5.628590,-17.104259,21.940056,-5.705958,-14.826142,22.213270,-7.053884,-16.526714,22.157238,-7.506945, + -17.152580,23.644859,-6.129809,-16.904263,23.668814,-6.037487,-17.136444,23.351580,-6.143435,-16.237381,22.062443,-9.263479, + -17.001965,21.862526,-6.254157,-17.019775,22.227924,-6.232484,-16.803864,21.869053,-6.201380,-16.029816,22.069281,-9.208179, + -16.597397,22.090513,-7.523187,-16.414654,22.096535,-7.474502,-16.561317,22.133301,-7.583157,-16.311100,22.375677,-7.521114, + -16.597641,22.124613,-7.458649,-14.994948,22.405087,-7.108559,-14.821836,22.171989,-6.937891,-15.761020,22.177786,-7.331978, + -15.654679,22.181290,-7.303648,-15.212394,22.140610,-9.009480,-15.325988,22.136868,-9.039743,-15.763263,22.224876,-7.329348, + -15.656922,22.228378,-7.301017,-15.214705,22.191069,-9.007008,-15.328301,22.187325,-9.037271,-15.205319,22.007418,-5.776872, + -15.049994,22.018456,-5.774312,-16.344616,22.151140,-7.453542,-16.488171,22.131100,-7.453608,-15.202451,22.057837,-5.772663, + -15.047128,22.068874,-5.770103,-16.346760,22.198030,-7.451270,-16.490311,22.177990,-7.451336,-10.992861,22.203207,-4.614917, + -11.065689,23.726107,-4.529897,-10.190621,22.327156,-7.551707,-11.069634,23.558044,-4.200070,-11.011029,22.332560,-4.268486, + -11.163079,23.585899,-3.985332,-11.100253,22.272165,-4.058675,-12.912011,22.269924,-4.774940,-13.203457,23.657850,-4.482990, + -13.000397,22.137062,-5.149757,-11.195923,23.723995,-3.948150,-11.119613,22.128300,-4.037233,-10.714367,22.348747,-5.958439, + -12.721902,22.282602,-6.493279,-17.012394,21.935545,-6.167420,-16.737408,22.210030,-6.160935,-13.037107,22.060066,-5.162879, + -13.073626,22.051426,-5.039406,-10.932866,22.129398,-4.602275,-11.172255,22.380373,-4.655516,-10.969385,22.120758,-4.478802, + -11.951202,22.380213,-4.879382,-11.921549,22.128485,-4.888226,-11.958202,22.119814,-4.764297,-16.975609,21.944248,-6.291805, + -12.264688,22.267736,-6.433819,-12.300986,22.259054,-6.309401,-10.674003,22.316092,-5.966042,-10.883172,22.540564,-6.013114, + -10.710061,22.307467,-5.842445,-11.649243,22.313263,-6.236534,-11.542902,22.316767,-6.208202,-11.100616,22.276089,-7.914034, + -11.214212,22.272346,-7.944298,-11.651488,22.360353,-6.233903,-11.545147,22.363857,-6.205572,-11.102930,22.326546,-7.911563, + -11.216525,22.322803,-7.941827,-11.251570,22.148026,-4.642926,-11.096245,22.159063,-4.640366,-12.232843,22.286617,-6.358097, + -12.376394,22.266577,-6.358163,-11.248701,22.198444,-4.638717,-11.093376,22.209482,-4.636156,-12.234985,22.333508,-6.355824, + -12.378539,22.313467,-6.355892,-13.107789,22.206020,-4.593515,-17.364349,23.548140,-5.334854,-17.116032,23.572094,-5.242531, + -17.148090,23.443832,-6.026791,-17.222221,21.881401,-5.451634,-16.898026,23.453653,-5.688191,-17.024124,21.887928,-5.398858, + -16.869122,23.370445,-6.063138,-16.750999,22.056616,-6.078317,-16.776817,22.207619,-6.174526,-16.611717,22.392761,-7.506806, + -16.251591,22.359587,-9.246890,-16.806229,22.012094,-5.784291,-17.352188,23.296894,-5.348693,-17.052265,22.001831,-6.143834, + -17.124271,21.986340,-5.859146,-17.082893,23.294897,-5.268291,-16.846828,23.498617,-5.961274,-17.236191,22.173067,-5.435268, + -17.212090,23.427464,-5.783686,-16.995155,22.189629,-5.374657,-11.720257,21.786659,-2.846671,-11.645007,23.855736,-2.748865, + -9.635744,23.759033,-2.249040,-9.710996,21.689957,-2.346846,-11.361752,23.834703,-3.655385,-10.976902,23.876116,-2.580663, + -10.300035,23.843540,-2.412285,-11.417266,21.932261,-3.800291,-10.379100,21.669577,-2.515049,-11.055968,21.702152,-2.683427, + -10.663198,22.140957,-6.744005,-9.500257,23.748901,-3.242053,-9.555771,21.846458,-3.386959,-8.730107,22.046146,-6.239849, + -11.695654,22.463142,-2.814694,-11.669616,23.179108,-2.780850,-9.660353,23.082405,-2.281025,-9.686393,22.366440,-2.314868, + -10.307741,23.631624,-2.422302,-9.838940,23.566771,-2.307297,-11.473756,23.169682,-2.732127,-11.456483,23.644619,-2.709677, + -9.882252,22.375868,-2.363591,-9.899519,21.901073,-2.386034,-11.048260,21.914066,-2.673410,-11.517062,21.978922,-2.788415, + -10.984611,23.664202,-2.590679,-10.371392,21.881491,-2.505031,-11.499795,22.453716,-2.765971,-9.856214,23.091833,-2.329746, + -9.793273,22.431816,-2.801155,-11.379708,23.170294,-3.107107,-10.237464,23.606709,-2.819442,-9.759632,23.584684,-2.713343, + -11.365457,23.658701,-3.069905,-9.807521,21.943535,-2.838347,-10.935512,21.995527,-3.088809,-11.413345,22.017553,-3.194909, + -10.887623,23.636677,-2.963805,-10.285354,21.965561,-2.944446,-11.399097,22.505835,-3.157718,-9.773884,23.096277,-2.750544, + -9.642679,21.758753,-2.803094,-9.584512,23.752132,-2.651260,-11.534986,23.842035,-3.084350,-11.593153,21.848656,-3.236183, + -10.942994,21.818687,-3.091820,-10.292837,21.788721,-2.947457,-10.234670,23.782101,-2.795623,-10.884827,23.812067,-2.939986, + -11.554377,23.177513,-3.134966,-11.573766,22.513054,-3.185577,-9.623292,22.423149,-2.752487,-9.603903,23.087610,-2.701876, + -10.994753,22.087816,-5.105083,-9.292879,22.004347,-4.661230,-9.241426,23.767651,-4.526921,-10.943299,23.851120,-4.970776, + -8.677018,21.942150,-6.328465,-9.518518,21.767879,-3.294737,-9.719951,21.775820,-3.321791,-8.881618,21.952185,-6.381824, + -9.512553,21.972315,-3.279166,-8.670767,22.156357,-6.312149,-9.231485,21.924341,-4.643209,-9.411613,21.933176,-4.690187, + -9.225956,22.113825,-4.628777,-10.661589,22.091457,-6.843246,-11.443131,21.904165,-3.794571,-11.443557,22.103754,-3.755407, + -10.655433,22.302437,-6.827176,-11.244880,21.894442,-3.742866,-10.453860,22.081268,-6.789070,-11.071424,21.997425,-5.125003, + -11.065979,22.184053,-5.110787,-10.888544,21.988455,-5.077307,-11.391430,23.911963,-3.647316,-11.202592,23.900759,-3.572587, + -11.397396,23.707529,-3.662887,-10.989707,23.933956,-4.970667,-10.809580,23.925121,-4.923689,-10.995236,23.744473,-4.985099, + -9.440720,23.799202,-3.177538,-9.446592,23.597982,-3.192865,-9.638971,23.808926,-3.229242,-9.169620,23.809074,-4.498650, + -9.175065,23.622446,-4.512865,-9.352500,23.818045,-4.546345,-11.474111,21.851219,-3.868994,-11.162532,22.218554,-3.781605, + -11.507241,21.842632,-3.743578,-9.479028,21.744072,-3.382314,-9.696786,22.133028,-3.413209,-9.511915,21.735550,-3.257816, + -10.480468,22.201572,-3.609060,-10.478655,21.828922,-3.614027,-10.511664,21.820368,-3.489069,-9.402013,23.830330,-3.256849, + -9.715549,23.516212,-3.310531,-9.431452,23.821568,-3.130527,-11.416330,23.931774,-3.661310,-11.194981,23.598631,-3.632831, + -11.445556,23.923075,-3.535914,-11.406172,22.919615,-3.781186,-11.122565,22.913342,-3.788856,-11.435506,22.910883,-3.655327, + -9.499811,22.809469,-3.187572,-9.729187,22.828539,-3.381122,-9.466803,22.818024,-3.312530,-11.023015,22.038481,-5.181942, + -10.749952,22.367159,-5.107374,-11.056147,22.029894,-5.056526,-9.259115,21.933792,-4.622394,-9.416258,22.289665,-4.773311, + -9.226228,21.942316,-4.746892,-9.172387,23.802244,-4.571749,-9.432250,23.525545,-4.679985,-9.202291,23.793505,-4.445549, + -9.210277,22.891075,-4.550430,-9.443947,22.911173,-4.745045,-9.177268,22.899630,-4.675389,-9.867371,21.991596,-4.852064, + -9.760947,21.986376,-4.824308,-9.330225,22.037392,-6.500604,-9.443908,22.042967,-6.530253,-10.493883,22.022324,-5.015460, + -10.387545,22.017109,-4.987727,-9.928988,22.068464,-6.679157,-10.041386,22.074345,-6.713307,-9.865646,22.050423,-4.847581, + -9.759224,22.045202,-4.819826,-9.328287,22.100418,-6.496149,-9.441970,22.105993,-6.525798,-10.492160,22.081150,-5.010978, + -10.385821,22.075933,-4.983244,-9.927052,22.131489,-6.674703,-10.039449,22.137371,-6.708853,-9.777394,21.825914,-3.422483, + -9.662873,21.820297,-3.392617,-10.111594,22.020039,-4.869436,-10.217237,22.025219,-4.896988,-9.775550,21.888916,-3.417683, + -9.661027,21.883299,-3.387816,-10.109778,22.078886,-4.865299,-10.215422,22.084068,-4.892852,-11.296783,21.894627,-3.742512, + -11.182262,21.889009,-3.712644,-10.117606,21.990967,-4.869668,-10.223248,21.996149,-4.897220,-11.294938,21.957628,-3.737711, + -11.180416,21.952011,-3.707843,-10.115791,22.049816,-4.865532,-10.221434,22.054998,-4.893084,-9.487073,23.587833,-3.267227, + -9.483627,23.705925,-3.258232,-9.249939,22.963144,-4.619311,-9.253133,22.853689,-4.627648,-9.548171,23.590836,-3.283161, + -9.544724,23.708929,-3.274165,-9.306623,22.965960,-4.634464,-9.309817,22.856504,-4.642801,-9.541340,21.892897,-3.323556, + -9.537894,22.010990,-3.314561,-9.222836,22.957058,-4.609222,-9.226030,22.847601,-4.617559,-9.602437,21.895901,-3.339490, + -9.598991,22.013994,-3.330495,-9.279521,22.959873,-4.624375,-9.282715,22.850416,-4.632712,-11.464162,22.226557,-3.746664, + -11.441793,22.078655,-3.790107,-10.989888,23.659779,-4.913633,-11.011362,23.796896,-4.870692,-11.403066,22.223553,-3.730730, + -11.380695,22.075651,-3.774173,-10.933021,23.657011,-4.899172,-10.954494,23.794128,-4.856231,-9.687955,21.968855,-2.482712, + -9.681474,22.166298,-2.470716,-9.666324,21.976273,-2.630236,-9.661347,22.187437,-2.609603,-9.663971,21.967920,-2.479322, + -9.657491,22.165365,-2.467326,-9.642341,21.975340,-2.626845,-9.637365,22.186504,-2.606212,-9.633843,22.339048,-2.823949, + -9.639695,22.141228,-2.822311,-9.650464,22.341600,-2.675613,-9.656655,22.129555,-2.681892,-9.609777,22.338301,-2.821160, + -9.615628,22.140480,-2.819523,-9.626397,22.340853,-2.672825,-9.632589,22.128807,-2.679105,-9.576536,22.922098,-2.993727, + -9.581304,22.758755,-3.007240,-9.590407,22.913055,-2.871158,-9.595445,22.738571,-2.892272,-9.556600,22.921280,-2.991467, + -9.561366,22.757936,-3.004978,-9.570470,22.912237,-2.868898,-9.575508,22.737753,-2.890010,-9.937283,21.795435,-3.058218, + -10.127748,21.805670,-3.111022,-9.895864,21.819456,-3.199908,-10.102150,21.828093,-3.249030,-9.936843,21.826324,-3.054187, + -10.127308,21.836559,-3.106990,-9.895427,21.850346,-3.195876,-10.101711,21.858984,-3.244999,-10.109893,21.769300,-2.992276, + -9.923474,21.760225,-2.926422,-10.160867,21.751818,-2.852958,-9.958437,21.741985,-2.789978,-10.109432,21.800285,-2.988873, + -9.923015,21.791208,-2.923020,-10.160406,21.782803,-2.849556,-9.957977,21.772970,-2.786576,-9.835177,21.791504,-3.089663, + -9.676426,21.783707,-3.049364,-9.866755,21.776791,-2.970916,-9.695008,21.768358,-2.934194,-9.834594,21.817169,-3.086825, + -9.675842,21.809372,-3.046526,-9.866171,21.802458,-2.968078,-9.694425,21.794024,-2.931356,-10.035201,21.743135,-1.460719, + -10.217379,21.750315,-1.485187,-10.029805,21.928030,-1.446636,-9.824762,21.937750,-2.878267,-9.980227,21.945375,-2.918813, + -9.819990,22.101292,-2.865810,-11.775856,21.866394,-1.912777,-11.776239,22.046906,-1.877357,-11.596553,21.857601,-1.866014, + -11.428170,21.996843,-3.235901,-11.423469,22.157921,-3.223632,-11.270327,21.989101,-3.194735,-11.729095,23.682281,-1.779597, + -11.558308,23.672150,-1.712012,-11.734491,23.497389,-1.793680,-11.357640,23.668245,-3.102694,-11.202174,23.660620,-3.062148, + -11.362412,23.504705,-3.115151,-9.964838,23.580299,-1.354721,-9.970149,23.398314,-1.368583,-10.144140,23.589094,-1.401483, + -9.750992,23.569725,-2.830620,-9.755693,23.408648,-2.842889,-9.908836,23.577467,-2.871786,-11.950727,21.658371,-2.149243, + -11.968656,21.653725,-2.081378,-9.812725,21.542196,-1.610280,-9.830522,21.537584,-1.542913,-10.882651,21.634211,-1.872252, + -10.900514,21.629580,-1.804636,-9.734963,23.781143,-1.456862,-9.748939,23.776306,-1.387997,-11.882136,23.894173,-1.951012, + -11.896008,23.889370,-1.882652,-10.812593,23.802105,-1.688158,-10.826515,23.797285,-1.619546,-11.878205,22.805506,-2.053328, + -11.892128,22.800686,-1.984715,-9.818372,22.690542,-1.464275,-11.188506,22.609440,-0.354733,-9.800510,22.695171,-1.531892, + -11.497746,22.707359,-1.224829,-10.440498,22.658998,-1.030650,-10.955918,23.317127,-1.178426,-11.036039,22.185284,-1.098100, + -10.537531,22.122538,-1.003199,-11.562446,23.328659,-1.288466,-10.289472,23.329235,-1.059588,-11.486489,22.219908,-1.182005, + -11.011796,22.700447,-1.116599,-9.520246,22.798040,-1.677037,-11.032296,22.713911,-1.271555,-9.488917,22.631952,-1.521382, + -10.732762,21.442955,-1.931357,-10.887611,21.430677,-1.973102,-10.699080,21.511665,-2.076505,-9.502543,22.792051,-1.514021, + -10.854240,21.502140,-2.095925,-10.933372,22.637966,-1.250622,-10.852634,22.704494,-1.233188,-10.984118,22.723188,-1.419882, + -10.821583,24.070251,-1.785329,-10.666734,24.082529,-1.743584,-10.777206,24.021770,-1.935676,-10.813493,22.713324,-1.414304, + -10.632972,24.028465,-1.874897,-9.516181,22.641941,-1.664430,-10.923624,22.821541,-1.243928,-10.892721,22.656940,-1.400274, + -12.065471,22.755850,-2.171588,-12.079098,22.915951,-2.164227,-11.969710,22.770092,-2.304066,-10.873013,22.825361,-1.422356, + -11.984701,22.923361,-2.275314,-9.727320,23.892954,-1.668644,-11.030898,22.654842,-1.138305,-9.610567,23.821970,-1.483913, + -9.728255,21.574146,-1.592282,-9.827425,21.452309,-1.626820,-9.733100,21.622515,-1.749000,-9.729762,23.927208,-1.508194, + -9.837009,21.506021,-1.762205,-10.910118,22.672398,-1.105198,-10.898618,22.777815,-1.103392,-10.984590,22.670557,-1.286685, + -11.983921,23.926853,-2.040107,-11.884751,24.048691,-2.005569,-11.901018,23.898714,-2.178884,-10.854675,22.781704,-1.283577, + -11.808033,24.012377,-2.124319,-9.620149,23.787205,-1.625354,-11.028158,22.810217,-1.135393,-10.875688,22.689594,-1.256614, + -11.929645,21.545288,-2.202778,-12.048839,21.650526,-2.227059,-11.854028,21.599773,-2.337822,-10.972814,22.818874,-1.312240, + -11.972125,21.702690,-2.339754,-11.631908,23.506344,-2.872405,-11.633229,23.695557,-2.864331,-11.580773,23.543949,-3.008211, + -11.587459,23.715487,-2.997181,-11.608982,23.505106,-2.864632,-11.601951,23.702520,-2.852451,-11.557847,23.542713,-3.000438, + -11.556181,23.722452,-2.985300,-11.622763,23.419525,-2.934080,-11.627333,23.256174,-2.947573,-11.659192,23.411495,-2.816157, + -11.662783,23.236956,-2.837124,-11.603601,23.418451,-2.928165,-11.608171,23.255100,-2.941659,-11.640029,23.410421,-2.810242, + -11.643621,23.235882,-2.831209,-20.982250,21.874069,-7.276254,-18.950836,23.466303,-6.630630,-20.180008,21.998018,-10.213045, + -18.075768,22.067350,-9.652441,-18.848228,23.301748,-6.272416,-21.089642,21.943027,-6.720013,-22.111618,21.934376,-10.727658, + -21.110355,23.227215,-6.875084,-21.055077,23.396971,-7.191234,-19.048225,23.326094,-6.086066,-22.879501,23.340891,-7.749542, + -21.051750,22.001730,-6.943501,-21.185310,23.394857,-6.609487,-21.109001,21.799164,-6.698571,-22.802929,21.757259,-7.840902, + -19.004761,21.868496,-6.137967,-18.094326,22.046032,-9.754904,-18.945122,21.879267,-6.727149,-19.146400,21.871212,-6.755259, + -18.298767,22.039295,-9.809371,-18.952946,22.042915,-6.718013,-18.102524,22.217503,-9.745331,-18.647682,22.022079,-8.069777, + -18.827671,22.016150,-8.117728,-18.654934,22.173759,-8.061308,-20.231228,21.972893,-10.324627,-20.877098,21.833687,-7.278426, + -20.884800,21.994762,-7.269434,-20.239307,22.141783,-10.315198,-20.678997,21.840214,-7.225649,-20.023663,21.979731,-10.269327, + -20.608681,21.986006,-8.590495,-20.615826,22.135403,-8.582154,-20.425941,21.992027,-8.541810,-20.868965,21.818172,-7.369007, + -20.602493,22.084860,-7.229711,-20.905754,21.809469,-7.244622,-19.154106,22.117380,-6.782012,-19.933056,22.117222,-7.005879, + -19.903404,21.865494,-7.014722,-19.940060,21.856821,-6.890793,-20.663391,21.986954,-8.627379,-17.937344,22.314690,-7.948419, + -19.631096,22.050272,-8.363031,-19.524757,22.053776,-8.334700,-19.082470,22.013096,-10.040531,-19.196068,22.009354,-10.070795, + -19.633343,22.097361,-8.360399,-19.527000,22.100864,-8.332069,-19.084785,22.063553,-10.038060,-19.198380,22.059811,-10.068324, + -19.233421,21.885033,-6.769423,-19.078098,21.896072,-6.766862,-20.214695,22.023626,-8.484594,-20.358250,22.003586,-8.484661, + -19.230556,21.935452,-6.765213,-19.075230,21.946491,-6.762653,-20.216839,22.070517,-8.482323,-20.360390,22.050476,-8.482388, + -23.008514,21.885927,-7.255077,-23.025826,23.170300,-7.496405,-21.152470,23.256762,-6.646670,-23.110100,23.193670,-7.193450, + -22.928459,21.950808,-7.553106,-23.096939,23.336098,-7.194482,-22.981873,21.746397,-7.271851,-20.703754,22.019611,-8.619777, + -22.404327,21.963579,-9.072837,-23.030193,23.451200,-7.695702,-22.781876,23.475155,-7.603379,-23.014057,23.157921,-7.709327, + -22.114994,21.868782,-10.829371,-22.879574,21.668867,-7.820050,-22.897388,22.034264,-7.798377,-22.129204,22.165926,-10.812782, + -22.681477,21.675394,-7.767272,-21.907425,21.875620,-10.774072,-22.475006,21.896852,-9.089081,-22.292267,21.902874,-9.040396, + -22.438927,21.939640,-9.149050,-22.188713,22.182018,-9.087007,-22.475250,21.930952,-9.024541,-20.872562,22.211426,-8.674452, + -20.699451,21.978331,-8.503784,-21.638630,21.984125,-8.897871,-21.532291,21.987629,-8.869540,-21.090004,21.946951,-10.575372, + -21.203602,21.943209,-10.605636,-21.640877,22.031216,-8.895241,-21.534538,22.034719,-8.866910,-21.092316,21.997408,-10.572901, + -21.205917,21.993666,-10.603165,-21.082932,21.813757,-7.342764,-20.927605,21.824795,-7.340204,-22.222229,21.957479,-9.019434, + -22.365784,21.937439,-9.019502,-21.080063,21.864176,-7.338555,-20.924736,21.875214,-7.335995,-22.224373,22.004372,-9.017162, + -22.367928,21.984329,-9.017229,-16.870472,22.009548,-6.180810,-16.943302,23.532448,-6.095790,-16.068230,22.133497,-9.117599, + -16.947247,23.364384,-5.765964,-16.888641,22.138899,-5.834379,-17.040691,23.392241,-5.551226,-16.977863,22.078505,-5.624568, + -18.789623,22.076263,-6.340832,-19.081070,23.464190,-6.048882,-18.878010,21.943401,-6.715650,-17.073536,23.530334,-5.514042, + -16.997223,21.934641,-5.603127,-16.591980,22.155088,-7.524332,-18.599514,22.088942,-8.059172,-22.890007,21.741886,-7.733313, + -22.615021,22.016371,-7.726828,-18.914722,21.866405,-6.728772,-18.951237,21.857765,-6.605298,-16.810478,21.935738,-6.168168, + -17.049866,22.186712,-6.221408,-16.846996,21.927097,-6.044694,-17.828812,22.186554,-6.445274,-17.799160,21.934826,-6.454118, + -17.835815,21.926153,-6.330188,-22.853218,21.750589,-7.857697,-18.142300,22.074076,-7.999712,-18.178596,22.065395,-7.875293, + -16.551613,22.122433,-7.531934,-16.760784,22.346905,-7.579007,-16.587673,22.113808,-7.408339,-17.526855,22.119604,-7.802426, + -17.420517,22.123108,-7.774096,-16.978230,22.082428,-9.479927,-17.091824,22.078686,-9.510191,-17.529099,22.166693,-7.799795, + -17.422760,22.170197,-7.771465,-16.980541,22.132885,-9.477455,-17.094139,22.129143,-9.507719,-17.129181,21.954365,-6.208818, + -16.973854,21.965403,-6.206259,-18.110455,22.092958,-7.923989,-18.254005,22.072916,-7.924056,-17.126316,22.004784,-6.204610, + -16.970989,22.015821,-6.202049,-18.112595,22.139849,-7.921717,-18.256149,22.119808,-7.921783,-18.985401,22.012360,-6.159408, + -23.241962,23.354481,-6.900747,-22.993645,23.378435,-6.808424,-23.025703,23.250174,-7.592683,-23.099834,21.687742,-7.017527, + -22.775635,23.259993,-7.254084,-22.901737,21.694269,-6.964750,-22.746735,23.176786,-7.629031,-22.628616,21.862955,-7.644210, + -22.654430,22.013960,-7.740418,-22.489330,22.199100,-9.072701,-22.683842,21.818434,-7.350183,-23.229801,23.103235,-6.914586, + -22.929874,21.808170,-7.709726,-23.001884,21.792681,-7.425039,-22.960503,23.101236,-6.834182,-22.724442,23.304956,-7.527166, + -23.113804,21.979408,-7.001161,-23.089703,23.233803,-7.349578,-22.872765,21.995968,-6.940549,-11.504273,-14.821327,-6.241101, + -9.697584,-15.775764,-5.892908,-10.590317,-17.606272,-6.278372,-12.397005,-16.651834,-6.626565,-9.547213,-15.716474,-6.829031, + -9.947789,-16.406885,-6.011889,-10.248528,-17.023535,-6.141741,-11.196980,-14.832855,-7.204342,-12.146800,-16.020716,-6.507586, + -11.846062,-15.404065,-6.377732,-10.405176,-14.614266,-10.137410,-8.676550,-15.540121,-9.744159,-10.356484,-17.397934,-7.230450, + -12.006252,-16.514317,-7.605761,-9.543772,-17.307985,-10.094274,-10.913577,-15.133381,-6.127259,-10.288406,-15.463646,-6.006774, + -11.181138,-17.294153,-6.392238,-11.806309,-16.963888,-6.512724,-10.433568,-16.925781,-6.177403,-10.679407,-17.334801,-6.274739, + -10.375428,-15.642080,-6.044348,-9.960720,-15.861162,-5.964424,-11.719286,-16.785454,-6.475149,-12.133869,-16.566437,-6.555050, + -11.661021,-15.501819,-6.342071,-11.415182,-15.092799,-6.244734,-10.132830,-16.309132,-6.047550,-11.961760,-16.118469,-6.471923, + -11.000599,-15.311815,-6.164833,-11.094116,-17.115719,-6.354664,-11.571580,-16.743645,-6.898169,-10.297250,-15.601746,-6.420800, + -10.364099,-16.847490,-6.567691,-10.571833,-17.279110,-6.670733,-9.873712,-15.828593,-6.324448,-11.995010,-16.516855,-6.994496, + -11.504623,-15.497957,-6.751252,-11.296888,-15.066338,-6.648211,-10.081447,-16.260214,-6.427489,-11.787275,-16.085236,-6.891455, + -10.873459,-15.293127,-6.551883,-10.995371,-17.052263,-6.767085,-12.225544,-16.591766,-7.056164,-10.496918,-17.517620,-6.662913, + -9.648962,-15.755786,-6.242306,-11.377588,-14.829931,-6.635557,-11.660240,-15.417210,-6.775759,-11.942892,-16.004488,-6.915961, + -10.214266,-16.930342,-6.522711,-9.931614,-16.343065,-6.382508,-10.225224,-15.447139,-6.373402,-10.801434,-15.138521,-6.504486, + -11.649389,-16.900354,-6.925093,-11.073181,-17.208973,-6.794009,-10.818385,-14.837262,-8.531687,-10.052772,-17.212666,-8.492063, + -9.289278,-15.656255,-8.183825,-10.421463,-14.563164,-10.234490,-11.215378,-14.801022,-7.192546,-11.047180,-14.896112,-7.129012, + -10.238504,-14.661157,-10.192868,-11.304317,-14.982327,-7.228452,-10.514654,-14.753136,-10.272113,-10.868639,-14.728083,-8.530964, + -10.706798,-14.814766,-8.494146,-10.950684,-14.895332,-8.564087,-8.548869,-15.502876,-9.803983,-9.470341,-15.725884,-6.798749, + -9.564178,-15.905972,-6.810254,-8.640656,-15.689988,-9.841040,-9.647622,-15.630932,-6.839079,-8.786580,-15.400836,-9.859791, + -9.147629,-15.653732,-8.139537,-9.228438,-15.818463,-8.172161,-9.363899,-15.563176,-8.190468,-9.502608,-17.346390,-10.182361, + -10.349542,-17.490232,-7.189590,-10.524035,-17.396772,-7.229287,-9.685567,-17.248396,-10.223983,-10.260602,-17.308928,-7.153684, + -9.409417,-17.156418,-10.144737,-10.047350,-17.300062,-8.490146,-10.209191,-17.213379,-8.526963,-9.965305,-17.132812,-8.457023, + -11.231227,-14.728737,-7.254399,-11.028872,-15.174492,-7.251527,-11.264358,-14.737322,-7.128983,-12.124876,-16.538614,-7.647377, + -11.694675,-16.504833,-7.531423,-12.157763,-16.547138,-7.522880,-11.318508,-15.803379,-7.377558,-11.652618,-15.648624,-7.435156, + -11.685628,-15.657179,-7.310199,-10.311336,-17.510582,-7.272558,-10.474971,-17.096096,-7.236762,-10.346100,-17.522526,-7.147861, + -9.440289,-15.708418,-6.798387,-9.820806,-15.767648,-6.910145,-9.474799,-15.720274,-6.674603,-10.194048,-16.468216,-7.074790, + -9.912934,-16.598404,-7.008887,-9.947571,-16.610304,-6.884646,-10.318690,-15.258322,-7.052879,-10.415420,-15.494599,-7.176765, + -10.353328,-15.270222,-6.928638,-10.831178,-14.768006,-8.596339,-10.647183,-15.160812,-8.594693,-10.864308,-14.776592,-8.470923, + -10.163281,-16.900532,-8.585967,-9.232009,-15.643626,-8.183862,-9.569805,-15.692330,-8.283614,-9.266312,-15.655061,-8.059994, + -10.065969,-17.282877,-8.431090,-10.031413,-17.271357,-8.555872,-10.932552,-14.932369,-7.095435,-11.060272,-14.876032,-7.164543, + -9.462479,-15.555557,-8.140135,-9.344601,-15.608019,-8.073361,-10.959968,-14.988241,-7.106503,-11.087688,-14.931904,-7.175611, + -9.487864,-15.607453,-8.150765,-9.369986,-15.659915,-8.083992,-12.021772,-16.274220,-7.160410,-11.934616,-16.099398,-7.128609, + -11.972784,-16.273859,-7.301719,-11.882925,-16.086096,-7.260348,-11.995318,-16.288713,-7.152613,-11.908163,-16.113892,-7.120811, + -11.946329,-16.288353,-7.293921,-11.856471,-16.100590,-7.252551,-12.007563,-16.137693,-7.033981,-12.096124,-16.313749,-7.052197, + -12.046843,-16.131872,-6.889978,-12.140521,-16.320316,-6.917446,-11.980848,-16.152042,-7.026747,-12.069410,-16.328098,-7.044964, + -12.020129,-16.146221,-6.882744,-12.113808,-16.334665,-6.910212,-12.049795,-16.349363,-7.231103,-12.120706,-16.494184,-7.260853, + -12.087012,-16.354582,-7.113196,-12.161733,-16.509048,-7.151579,-12.027740,-16.361427,-7.225177,-12.098650,-16.506250,-7.254927, + -12.064957,-16.366648,-7.107270,-12.139677,-16.521114,-7.145652,-12.499104,-16.683064,-5.687545,-12.425625,-16.523140,-5.634022, + -12.338768,-16.768940,-5.651069,-11.982979,-16.486940,-7.024239,-11.913233,-16.344763,-6.996081,-11.841159,-16.562899,-6.991976, + -11.684711,-15.107530,-5.365237,-11.532589,-15.193532,-5.307776,-11.765148,-15.271505,-5.397711,-11.298757,-15.031939,-6.682007, + -11.159073,-15.106754,-6.650229,-11.369569,-15.176291,-6.710595,-10.106467,-15.943993,-5.009080,-10.191336,-16.106867,-5.019485, + -10.266804,-15.858116,-5.045556,-9.858212,-15.828659,-6.355865,-9.927957,-15.970837,-6.384022,-10.000031,-15.752700,-6.388127, + -10.901632,-17.539701,-5.362564,-11.059448,-17.455175,-5.398466,-10.821194,-17.375725,-5.330090,-10.554164,-17.242527,-6.782096, + -10.693848,-17.167711,-6.813873,-10.483353,-17.098175,-6.753508,-11.745687,-14.796289,-5.536067,-11.763614,-14.800936,-5.468202, + -12.709610,-16.740862,-5.941684,-12.727407,-16.745472,-5.874317,-12.199024,-15.784287,-5.726958,-12.216887,-15.788917,-5.659342, + -10.767165,-17.785843,-5.520509,-10.786855,-17.794096,-5.453387,-9.816027,-15.846578,-5.071181,-9.835572,-15.854771,-5.004552, + -10.326791,-16.803087,-5.284963,-10.346409,-16.811310,-5.218087,-10.766232,-15.365071,-5.318047,-10.785850,-15.373294,-5.251172, + -11.717851,-17.259737,-5.646341,-11.661201,-16.417009,-4.096653,-11.699989,-17.255108,-5.713958,-11.219513,-15.914607,-4.740692, + -11.667062,-16.856705,-5.005207,-10.863138,-16.643759,-4.834942,-11.877379,-16.131554,-4.888821,-12.125276,-16.560261,-5.016145, + -10.621350,-16.096998,-4.684249,-11.105940,-17.254154,-4.998909,-11.673757,-15.735606,-4.775209,-11.416950,-16.360094,-4.843011, + -11.657714,-17.489624,-5.945069,-11.353238,-16.298391,-4.972420,-11.862377,-17.497408,-5.840916,-12.403135,-15.813436,-5.868478, + -12.351136,-15.663134,-5.844452,-12.310432,-15.823931,-6.003458,-11.716121,-17.554642,-5.806199,-12.262320,-15.681690,-5.958790, + -11.460110,-16.357782,-5.004717,-11.431923,-16.459715,-5.012698,-11.317803,-16.295528,-5.124552,-10.054678,-16.875494,-5.331192, + -10.106678,-17.025797,-5.355218,-10.069323,-16.844769,-5.491707,-11.384425,-16.438427,-5.190753,-10.128361,-16.989841,-5.495015, + -11.803010,-17.432337,-5.957309,-11.300251,-16.444437,-4.976870,-11.413099,-16.352112,-5.153599,-10.715007,-15.147055,-5.354982, + -10.568750,-15.204288,-5.320265,-10.695355,-15.191843,-5.511607,-11.261807,-16.431696,-5.157902,-10.560986,-15.251961,-5.458008, + -10.607862,-17.770638,-5.698842,-11.445372,-16.317923,-4.861171,-10.763566,-17.899950,-5.590075,-12.713897,-16.831799,-5.955544, + -12.780780,-16.685717,-5.963212,-12.623451,-16.797342,-6.088043,-10.622725,-17.834394,-5.548383,-12.690147,-16.656307,-6.073787, + -11.478918,-16.438643,-4.878297,-11.388473,-16.492773,-4.866559,-11.403521,-16.316124,-5.011681,-9.727366,-15.744867,-5.105242, + -9.660482,-15.890948,-5.097575,-9.739754,-15.759093,-5.268238,-11.347262,-16.473822,-5.046435,-9.683982,-15.902960,-5.241135, + -10.750710,-17.831865,-5.718548,-11.307461,-16.385693,-4.837828,-11.430949,-16.426376,-5.026474,-11.838766,-14.750068,-5.608852, + -11.697927,-14.684512,-5.567160,-11.775572,-14.793594,-5.753888,-11.266685,-16.379496,-5.018692,-11.643650,-14.735197,-5.692822, + -9.941523,-15.281770,-8.364752,-10.036688,-15.230798,-8.386401,-9.537602,-15.016519,-10.031103,-9.435945,-15.070967,-10.007977, + -9.967120,-15.333937,-8.375085,-10.062286,-15.282965,-8.396734,-9.564927,-15.072366,-10.042516,-9.463268,-15.126815,-10.019389, + -9.980172,-15.602129,-6.058750,-9.812003,-15.682149,-6.024335,-9.923874,-15.617570,-6.196824,-9.770682,-15.686638,-6.160032, + -9.991077,-15.623625,-6.061301,-9.819475,-15.715479,-6.025449,-9.934779,-15.639066,-6.199374,-9.778153,-15.719968,-6.161146, + -10.043361,-15.554030,-6.130295,-10.184776,-15.477989,-6.163549,-10.072736,-15.557630,-6.010205,-10.222364,-15.475371,-6.052170, + -10.052342,-15.571794,-6.132957,-10.193758,-15.495752,-6.166212,-10.081717,-15.575393,-6.012868,-10.231346,-15.493134,-6.054832, + -17.349936,-13.362526,-7.685426,-18.678530,-11.801630,-7.993250,-17.186035,-10.439919,-7.530092,-15.857443,-12.000814,-7.222267, + -18.351549,-11.770128,-8.884623,-18.217350,-11.310575,-7.847486,-17.714565,-10.851850,-7.691460,-17.113560,-13.204841,-8.655816, + -16.318623,-12.491870,-7.368032,-16.821405,-12.950595,-7.524057,-17.655275,-11.510689,-11.840130,-16.965647,-10.513720,-8.505035, + -15.727657,-11.948433,-8.276229,-14.923682,-11.701477,-11.131612,-16.220848,-10.198185,-11.371356,-17.784319,-12.852192,-7.786068, + -18.244055,-12.312073,-7.892586,-16.751560,-10.950361,-7.429427,-16.291826,-11.490480,-7.322910,-17.578491,-11.011716,-7.659933, + -17.202013,-10.724810,-7.545234,-18.098568,-12.179336,-7.847437,-18.403534,-11.821047,-7.918096,-16.437313,-11.623218,-7.368058, + -16.132437,-11.981399,-7.297421,-16.957479,-12.790729,-7.555585,-17.333958,-13.077635,-7.670284,-18.081274,-11.470442,-7.815958, + -16.454699,-12.332004,-7.399559,-17.638834,-12.719454,-7.740921,-16.897047,-11.083099,-7.474576,-16.358646,-11.592391,-7.810067, + -17.986586,-12.175137,-8.217434,-17.464611,-11.045475,-8.046160,-17.108858,-10.722965,-7.948723,-18.304409,-11.806808,-8.276175, + -16.040903,-11.960625,-7.751341,-16.880703,-12.721956,-7.981356,-17.236454,-13.044468,-8.078794,-17.948658,-11.484297,-8.178738, + -16.396654,-12.283135,-7.848779,-17.554197,-12.676234,-8.137520,-16.791035,-11.091293,-7.889982,-15.800442,-11.977579,-7.684623, + -17.097607,-10.474287,-7.924367,-18.549753,-11.790751,-8.322099,-17.252588,-13.294043,-8.082355,-16.768539,-12.855221,-7.949778, + -16.284491,-12.416400,-7.817200,-17.581656,-10.913109,-8.056944,-18.065704,-11.351930,-8.189522,-18.117325,-12.291895,-8.242176, + -17.684937,-12.792992,-8.162262,-16.232788,-11.476528,-7.764530,-16.665176,-10.975431,-7.844445,-15.492434,-11.859770,-9.562547, + -16.639877,-10.529988,-9.774619,-17.902737,-11.685503,-10.187324,-14.805292,-11.754946,-11.199518,-15.658514,-11.965487,-8.171370, + -15.809608,-12.099608,-8.194853,-14.957113,-11.893862,-11.249133,-15.791548,-11.811315,-8.195957,-14.944684,-11.593405,-11.225281, + -15.396011,-11.873388,-9.530728,-15.529674,-11.995688,-9.574409,-15.519316,-11.730492,-9.553517,-17.692360,-11.516263,-11.946409, + -18.425682,-11.733007,-8.891046,-18.287182,-11.602150,-8.819888,-17.540539,-11.377346,-11.896794,-18.292648,-11.887180,-8.866458, + -17.552967,-11.677805,-11.920648,-17.992027,-11.656878,-10.202254,-17.858366,-11.534576,-10.158573,-17.868725,-11.799774,-10.179465, + -16.197931,-10.144277,-11.457943,-16.962385,-10.427073,-8.452898,-16.831444,-10.578821,-8.428698,-16.060638,-10.303387,-11.432569, + -17.109497,-10.561678,-8.500975,-16.352074,-10.285316,-11.508317,-16.617512,-10.447249,-9.756579,-16.496067,-10.587995,-9.734133, + -16.753218,-10.571420,-9.800928,-17.093954,-13.312551,-8.706149,-17.117355,-12.823620,-8.698925,-17.127083,-13.321137,-8.580732, + -15.603510,-11.970014,-8.253529,-16.019079,-11.840483,-8.354438,-15.636397,-11.978537,-8.129030,-16.621559,-12.349470,-8.541960, + -16.372358,-12.618245,-8.474465,-16.405367,-12.626800,-8.349508,-16.945358,-10.391129,-8.537607,-16.962574,-10.837580,-8.522072, + -16.975750,-10.397215,-8.411353,-18.455637,-11.737675,-8.908051,-18.074173,-11.824854,-8.820436,-18.485804,-11.743717,-8.782721, + -17.468956,-11.315235,-8.643762,-17.687336,-11.089647,-8.685448,-17.717613,-11.095712,-8.559656,-16.348133,-11.183427,-8.269084, + -16.508244,-11.354748,-8.457372,-16.315125,-11.174872,-8.394043,-15.425090,-11.881851,-9.511522,-15.760174,-11.754482,-9.725087, + -15.392202,-11.873328,-9.636020,-16.606670,-10.465653,-9.826876,-16.602798,-10.857613,-9.873335,-16.637405,-10.472055,-9.700735, + -17.952913,-11.675295,-10.215909,-17.615234,-11.756248,-10.139436,-17.983421,-11.681650,-10.090692,-16.032465,-11.146006,-9.628064, + -16.196310,-11.319645,-9.817496,-15.999456,-11.137451,-9.753023,-16.846138,-10.625203,-8.498729,-16.922985,-10.536144,-8.512932, + -16.101742,-11.131571,-9.708713,-16.030514,-11.214117,-9.695549,-16.891479,-10.666681,-8.513545,-16.968327,-10.577621,-8.527748, + -16.143784,-11.170092,-9.722828,-16.072557,-11.252637,-9.709664,-15.755054,-11.895108,-8.223403,-15.831902,-11.806049,-8.237606, + -16.078815,-11.116127,-9.698254,-16.007589,-11.198672,-9.685089,-15.800396,-11.936586,-8.238220,-15.877243,-11.847527,-8.252422, + -16.120859,-11.154647,-9.712369,-16.049633,-11.237192,-9.699205,-16.009956,-11.805401,-7.410224,-16.137562,-11.656500,-7.436971, + -15.982027,-11.808907,-7.556831,-16.120836,-11.649735,-7.577739,-15.991995,-11.789398,-7.407264,-16.119598,-11.640496,-7.434011, + -15.964064,-11.792904,-7.553871,-16.102875,-11.633732,-7.574780,-16.176613,-11.555733,-7.818028,-16.049850,-11.702318,-7.777853, + -16.207548,-11.541523,-7.672677,-16.070694,-11.699869,-7.637493,-16.158644,-11.539633,-7.815698,-16.031881,-11.686220,-7.775522, + -16.189579,-11.525423,-7.670346,-16.052723,-11.683771,-7.635162,-16.501755,-11.122921,-8.099121,-16.395340,-11.246276,-8.080524, + -16.520018,-11.119328,-7.976848,-16.405540,-11.252120,-7.963534,-16.486731,-11.109735,-8.097198,-16.380314,-11.233090,-8.078604, + -16.504993,-11.106142,-7.974925,-16.390516,-11.238934,-7.961612,-16.013424,-12.189852,-7.935231,-16.154993,-12.319023,-7.984661, + -15.982551,-12.167122,-8.079793,-16.135174,-12.307509,-8.124943,-16.034060,-12.166600,-7.937289,-16.175629,-12.295772,-7.986719, + -16.003187,-12.143870,-8.081851,-16.155809,-12.284258,-8.127001,-16.131231,-12.314425,-7.861550,-15.994915,-12.185069,-7.799454, + -16.173239,-12.339240,-7.720365,-16.024254,-12.200111,-7.661305,-16.151840,-12.291192,-7.864244,-16.015526,-12.161836,-7.802149, + -16.193848,-12.316007,-7.723060,-16.044865,-12.176878,-7.664000,-15.931736,-12.128968,-7.967630,-15.813804,-12.021366,-7.930213, + -15.958891,-12.141994,-7.847599,-15.830519,-12.026671,-7.813864,-15.948661,-12.109584,-7.969848,-15.830728,-12.001981,-7.932431, + -15.975815,-12.122608,-7.849817,-15.847443,-12.007287,-7.816081,-16.233700,-12.039890,-6.356205,-16.370352,-12.161192,-6.377444, + -16.354017,-11.900454,-6.378442,-16.045248,-11.982744,-7.788973,-16.160610,-12.088301,-7.826674,-16.151669,-11.859411,-7.808641, + -17.550694,-13.194062,-6.783803,-17.674814,-13.058294,-6.784132,-17.417645,-13.072323,-6.740322,-17.228985,-13.075913,-8.114632, + -17.333805,-12.954438,-8.134004,-17.111860,-12.968743,-8.076354,-18.736376,-11.829632,-7.007092,-18.611115,-11.711282,-6.942737, + -18.616058,-11.969069,-6.984855,-18.301218,-11.799860,-8.310363,-18.185856,-11.694304,-8.272662,-18.194798,-11.923193,-8.290694, + -17.412945,-10.648521,-6.610825,-17.294519,-10.785765,-6.588937,-17.545994,-10.770260,-6.654305,-17.079140,-10.746578,-8.061024, + -16.974321,-10.868053,-8.041651,-17.196266,-10.853748,-8.099300,-17.514904,-13.499574,-6.971294,-17.532833,-13.504220,-6.903430, + -15.918785,-12.059074,-6.468905,-15.936582,-12.063686,-6.401538,-16.740902,-12.754246,-6.719306,-16.758762,-12.758875,-6.651690, + -17.364605,-10.364944,-6.755256,-17.379597,-10.366908,-6.686463,-18.970539,-11.806771,-7.212877,-18.985420,-11.808722,-7.144588, + -18.148771,-11.111756,-6.961592,-18.163708,-11.113714,-6.893051,-18.233494,-12.606835,-7.101775,-18.248430,-12.608793,-7.033234, + -16.701694,-11.210115,-6.548717,-17.787632,-12.014624,-5.413627,-16.683832,-11.205486,-6.616335,-17.981785,-12.290149,-6.278887, + -17.190262,-11.582739,-6.103162,-17.991159,-11.477634,-6.364211,-17.308477,-12.336457,-6.063691,-16.909140,-12.031226,-5.969794, + -18.434641,-11.894960,-6.460540,-17.520071,-11.001507,-6.265213,-17.654882,-12.627914,-6.142434,-17.630306,-11.950918,-6.182483, + -16.528309,-10.965603,-6.785052,-17.636684,-11.979592,-6.336594,-16.412720,-11.039789,-6.600847,-16.496414,-12.800920,-6.743524, + -16.597975,-12.920630,-6.778547,-16.500519,-12.751661,-6.899985,-16.529879,-10.932133,-6.624425,-16.606689,-12.866046,-6.913642, + -17.515545,-11.964556,-6.303564,-17.501997,-11.859392,-6.301234,-17.590271,-11.964016,-6.484955,-18.322254,-10.939524,-7.108782, + -18.220692,-10.819813,-7.073759,-18.240089,-10.968552,-7.247815,-17.458218,-11.855430,-6.481457,-18.144846,-10.856998,-7.192799, + -16.423155,-11.073634,-6.742451,-17.630924,-11.824318,-6.332890,-17.480978,-11.947252,-6.454937,-18.325474,-12.787511,-7.203834, + -18.442631,-12.679855,-7.227412,-18.248985,-12.733810,-7.338702,-17.575647,-11.815826,-6.509767,-18.365063,-12.628612,-7.339943, + -17.408945,-10.312651,-6.984844,-17.611683,-12.000166,-6.194473,-17.296638,-10.256027,-6.792552,-15.879596,-11.976287,-6.459388, + -15.868113,-12.136528,-6.467325,-15.897362,-11.969488,-6.622365,-17.451820,-10.264073,-6.834095,-15.895369,-12.125671,-6.610312, + -17.537823,-11.900945,-6.168170,-17.599483,-11.816763,-6.187143,-17.570917,-11.981208,-6.344095,-19.057293,-11.865807,-7.304281, + -19.068775,-11.705567,-7.296344,-18.961468,-11.852377,-7.436798,-17.548985,-11.812989,-6.365604,-18.974384,-11.699026,-7.407492, + -17.264486,-10.310047,-6.924286,-17.713097,-11.885616,-6.221869,-17.506474,-11.889389,-6.320786,-17.418156,-13.575576,-7.002302, + -17.573338,-13.583622,-7.043846,-17.382975,-13.506768,-7.147048,-17.657713,-11.870193,-6.398242,-17.538359,-13.512204,-7.166247, + -16.237188,-10.934448,-9.699785,-16.308601,-10.851686,-9.712984,-15.756800,-10.647047,-11.343122,-15.680514,-10.735455,-11.329023, + -15.816777,-11.421663,-9.622085,-15.888133,-11.338968,-9.635273,-15.345761,-11.115553,-11.289127,-15.268342,-11.203579,-11.279565, + -16.279522,-10.973175,-9.713620,-16.350935,-10.890414,-9.726819,-15.802050,-10.688501,-11.358286,-15.725764,-10.776908,-11.344187, + -15.859113,-11.460390,-9.635920,-15.930469,-11.377695,-9.649107,-15.391010,-11.157007,-11.304291,-15.313592,-11.245033,-11.294727, + -10.064468,-14.884465,-10.162237,-10.884088,-15.078194,-7.167031,-11.067705,-15.387897,-7.235374,-11.053840,-14.969301,-7.204418, + -10.242334,-14.770366,-10.201411,-10.669850,-15.067698,-8.501229,-10.821274,-15.323683,-8.559282,-10.826442,-14.967247,-8.535717, + -11.694666,-16.454367,-7.317657,-11.127731,-15.198471,-6.380213,-12.042109,-16.311176,-7.127766,-11.297483,-15.089578,-6.417600, + -11.246623,-15.090046,-7.167353,-11.258215,-15.231268,-7.279809,-10.213479,-15.136188,-10.218833,-11.327840,-15.077353,-6.876274, + -10.997671,-15.203135,-7.091860,-11.077177,-15.224087,-6.809528,-11.968445,-16.325991,-7.399006,-11.274020,-15.445563,-6.435684, + -11.759179,-16.471109,-7.074713,-11.483194,-15.320240,-6.486555,-12.721546,-14.059770,-7.554471,-14.997871,-14.382239,-8.177448, + -11.800260,-13.864141,-10.454582,-13.621307,-12.685457,-10.891186,-15.326858,-14.074148,-7.900978,-12.825878,-14.247059,-7.014639, + -10.145051,-14.925926,-10.090032,-13.388428,-15.317616,-7.474049,-13.501410,-15.355739,-7.838344,-15.287820,-14.203299,-7.661992, + -11.781859,-16.473150,-7.546613,-12.773876,-14.279457,-7.240635,-13.549636,-15.491154,-7.254594,-12.749434,-14.139376,-6.950669, + -10.966524,-15.096279,-7.238325,-12.600462,-15.215919,-10.758508,-14.552568,-12.982697,-7.347800,-12.481916,-15.304528,-10.828779, + -13.481492,-15.424731,-7.833107,-13.654873,-15.319182,-7.846069,-12.657104,-15.192148,-10.867363,-13.399426,-15.286098,-7.801937, + -12.395927,-15.159268,-10.796120,-12.907188,-15.406541,-9.099929,-13.061423,-15.307603,-9.133898,-12.831125,-15.278047,-9.071039, + -14.462666,-14.021314,-11.264923,-15.113688,-14.338453,-8.190659,-15.039209,-14.203630,-8.136143,-14.377973,-13.878241,-11.232755, + -14.943935,-14.447346,-8.153272,-14.284800,-14.135412,-11.225749,-14.858318,-14.181948,-9.547493,-14.783400,-14.055388,-9.519038, + -14.701727,-14.282399,-9.513004,-13.643721,-12.629911,-10.953159,-14.313696,-12.972786,-7.889695,-14.152908,-13.081599,-7.829059, + -13.468533,-12.742291,-10.914575,-14.395761,-13.111420,-7.920865,-13.729710,-12.775171,-10.985819,-14.091751,-12.860655,-9.254365, + -13.937517,-12.959593,-9.220396,-14.167815,-12.989149,-9.283255,-11.638420,-13.913022,-10.511509,-12.649565,-14.050566,-7.561686, + -12.730341,-14.187020,-7.592365,-11.759751,-14.032593,-10.551745,-12.819317,-13.941672,-7.599072,-11.852923,-13.775421,-10.558752, + -12.134691,-14.136691,-8.848919,-12.246248,-14.239748,-8.885444,-12.327921,-14.012737,-8.891477,-12.603377,-14.035530,-7.640122, + -12.758794,-14.252517,-7.639936,-12.633347,-14.046131,-7.514066,-14.259539,-13.288870,-7.912986,-13.597066,-13.738420,-7.786851, + -13.485881,-13.514997,-7.741628,-13.515740,-13.525559,-7.616034,-12.321451,-14.025650,-8.892707,-14.087030,-13.154175,-9.352592, + -14.277860,-14.290998,-8.963227,-13.892146,-14.578373,-8.700605,-13.417727,-14.842759,-8.773787,-14.421751,-14.523520,-8.987144, + -14.036036,-14.810894,-8.724523,-13.561617,-15.075280,-8.797705,-14.471302,-14.536362,-8.799567,-14.085588,-14.823736,-8.536945, + -13.611168,-15.088121,-8.610126,-12.826553,-13.861429,-8.346888,-13.318533,-13.571225,-8.260992,-13.723562,-13.281036,-8.569937, + -12.787365,-13.851274,-8.495236,-13.269230,-13.558448,-8.447634,-13.684244,-13.270846,-8.718777,-12.876854,-14.006309,-8.540472, + -13.380745,-13.753275,-8.508762,-13.772319,-13.426034,-8.770876,-14.058387,-12.955195,-9.057858,-14.008893,-12.942369,-9.245220, + -12.245955,-14.126619,-8.783502,-12.309788,-14.308544,-9.023550,-14.118341,-13.137420,-9.316383,-12.196789,-14.113877,-8.969625, + -13.035456,-15.316751,-9.109032,-12.891565,-15.084230,-9.085114,-13.085007,-15.329593,-8.921454,-14.805274,-14.226072,-9.300334, + -14.611833,-13.980710,-9.463995,-14.755723,-14.213231,-9.487912,-11.165789,-15.307416,-6.674032,-11.696181,-16.378487,-7.211084, + -13.484684,-15.359977,-7.264861,-11.795616,-16.437874,-6.917800,-11.107713,-15.325895,-6.983573,-11.876857,-16.547384,-6.961016, + -11.076654,-15.195605,-6.657091,-12.927058,-15.294852,-9.110771,-12.213648,-14.171699,-8.882705,-10.770350,-15.095388,-8.533957, + -10.683397,-15.075970,-8.577804,-11.014567,-15.130849,-8.689691,-10.713764,-15.086315,-8.451835,-12.435161,-14.220604,-8.944237, + -12.354342,-14.034174,-8.768196,-11.396860,-14.649954,-8.700381,-11.487984,-14.591499,-8.720450,-10.951418,-14.350136,-10.382069, + -10.854077,-14.412579,-10.360630,-11.420480,-14.689842,-8.709352,-11.511604,-14.631388,-8.729421,-10.976624,-14.392833,-10.392022, + -10.879283,-14.455276,-10.370584,-12.435946,-14.197498,-7.476691,-12.553163,-14.117983,-7.541438,-10.909506,-14.963784,-8.558702, + -10.797292,-15.029131,-8.494307,-12.465660,-14.237165,-7.487256,-12.582875,-14.157651,-7.552002,-10.932923,-15.003459,-8.567975, + -10.820709,-15.068807,-8.503580,-16.125227,-11.892210,-8.303760,-16.877859,-13.163612,-8.589361,-15.323662,-11.603942,-11.230593, + -16.955820,-13.029198,-8.259748,-16.341269,-11.991039,-8.026335,-17.008087,-13.099777,-8.040872,-16.349281,-11.986859,-7.790650, + -14.712307,-13.035990,-7.667564,-15.352772,-14.334475,-7.651725,-14.263021,-13.079607,-7.883660,-17.073038,-13.230955,-8.030605, + -14.403598,-14.059240,-11.155639,-16.272835,-11.879177,-7.726680,-15.761183,-11.917086,-9.632642,-14.089019,-12.985893,-9.237798, + -14.713932,-14.146990,-9.468687,-10.926698,-15.149595,-7.099577,-11.289402,-15.202579,-7.283069,-14.327969,-12.944941,-7.900331, + -14.357718,-12.955463,-7.775199,-16.131104,-11.788261,-8.297462,-16.062674,-12.132191,-8.310118,-16.160852,-11.798785,-8.172330, + -15.400201,-12.581741,-8.183983,-15.289017,-12.358319,-8.138760,-15.318875,-12.368881,-8.013165,-10.896729,-15.138995,-7.225633, + -13.974974,-12.958609,-9.291774,-14.008038,-12.967176,-9.166603,-15.746249,-11.829332,-9.643540,-15.688822,-12.134113,-9.656422, + -15.776394,-11.839602,-9.518495,-14.920263,-12.389755,-9.476392,-15.011387,-12.331301,-9.496462,-14.474821,-12.089937,-11.158079, + -14.377480,-12.152380,-11.136641,-14.943883,-12.429644,-9.485362,-15.035007,-12.371189,-9.505432,-14.500027,-12.132633,-11.168033, + -14.402686,-12.195076,-11.146594,-15.894348,-11.986230,-8.206212,-16.011564,-11.906715,-8.270958,-14.432909,-12.703585,-9.334712, + -14.320694,-12.768932,-9.270317,-15.924060,-12.025898,-8.216776,-16.041277,-11.946383,-8.281523,-14.456326,-12.743260,-9.343987, + -14.344110,-12.808608,-9.279592,-14.629013,-13.090380,-7.411770,-13.906943,-12.874233,-9.394669,-13.934721,-12.816156,-9.180709, + -14.067530,-14.792691,-8.595313,-13.344213,-13.570920,-8.320067,-13.491319,-15.094152,-8.701612,-12.781307,-13.894824,-8.431512, + -13.774220,-13.264847,-8.634184,-14.480497,-14.457827,-8.902627,-13.074520,-15.527361,-9.082285,-13.806906,-12.945567,-9.373069, + -14.733577,-14.301997,-9.679977,-12.151526,-13.962170,-8.778283,-14.835312,-14.395719,-9.479776,-14.645739,-14.366859,-9.648555, + -13.013700,-15.413783,-9.289106,-13.247102,-15.416653,-9.120295,-13.783566,-12.915247,-9.137732,-13.145366,-15.322931,-9.320495, + -12.174867,-13.992491,-9.013620,-12.346510,-13.837091,-8.821227,-14.706559,-14.480437,-9.441732,-12.318733,-13.895167,-9.035186, + -21.665049,-4.661551,-8.229637,-20.622532,-6.450829,-8.140462,-22.337814,-7.477529,-8.688184,-23.380333,-5.688251,-8.777359, + -20.460432,-6.340749,-9.070010,-21.164833,-6.836596,-8.319806,-21.742668,-7.182465,-8.504319,-21.405924,-4.688251,-9.206641, + -22.838032,-5.302484,-8.598015,-22.260197,-4.956614,-8.413502,-20.607336,-4.481222,-12.138709,-19.616652,-6.212708,-11.995547, + -22.026716,-7.282449,-9.620758,-22.972206,-5.629951,-9.757389,-22.268288,-5.473444,-12.645395,-21.277603,-7.204930,-12.502234, + -21.324200,-5.246554,-8.200481,-20.963455,-5.865700,-8.169624,-22.678738,-6.892401,-8.717346,-23.039482,-6.273255,-8.748203, + -21.849442,-6.999207,-8.513453,-22.272236,-7.203032,-8.643486,-21.130657,-5.965781,-8.223015,-20.891357,-6.376493,-8.202546, + -22.872278,-6.173173,-8.694812,-23.111506,-5.762585,-8.715276,-22.153423,-5.139873,-8.404368,-21.730629,-4.936047,-8.274336, + -21.271606,-6.653338,-8.328939,-22.731255,-5.485741,-8.588881,-21.491402,-5.346635,-8.253872,-22.511536,-6.792320,-8.663955, + -22.723148,-6.151942,-9.118864,-21.041761,-5.916744,-8.596040,-21.748133,-6.911616,-8.894693,-22.150188,-7.153343,-9.036067, + -20.799028,-6.340982,-8.560963,-22.965820,-5.727811,-9.153933,-22.016714,-5.157179,-8.820202,-21.614658,-4.915450,-8.678828, + -21.201084,-6.582711,-8.702336,-22.563766,-5.486083,-9.012559,-21.371990,-5.339581,-8.643761,-22.392921,-6.729104,-9.071144, + -23.201391,-5.662910,-9.207359,-22.210705,-7.394397,-9.064198,-20.569553,-6.407683,-8.487123,-21.560238,-4.676196,-8.630285, + -22.107288,-5.005101,-8.822643,-22.654341,-5.334004,-9.015001,-21.663654,-7.065493,-8.871840,-21.116604,-6.736588,-8.679482, + -20.899813,-5.830467,-8.534849,-21.230042,-5.253304,-8.582569,-22.871193,-6.240018,-9.159643,-22.540966,-6.817180,-9.111922, + -21.081131,-4.692200,-10.548167,-22.543419,-5.565742,-10.994249,-21.667078,-7.097381,-10.867611,-20.204792,-6.223839,-10.421529, + -22.326874,-5.389955,-12.750675,-23.080875,-5.605982,-9.696692,-22.919508,-5.507454,-9.621708,-22.151077,-5.284937,-12.697047, + -22.979273,-5.783557,-9.682010,-22.220417,-5.576017,-12.735291,-22.639347,-5.533475,-11.010101,-22.484577,-5.441019,-10.962888, + -22.545177,-5.698063,-10.996492,-20.594276,-4.415419,-12.227031,-21.405052,-4.653628,-9.189564,-21.311344,-4.830045,-9.151276, + -20.489424,-4.598680,-12.211879,-21.575392,-4.755387,-9.241528,-20.772762,-4.522041,-12.281479,-21.067060,-4.574247,-10.529852, + -20.974308,-4.736357,-10.516449,-21.224197,-4.668118,-10.577787,-19.531059,-6.207442,-12.068679,-20.399849,-6.392834,-9.046953, + -20.573811,-6.494624,-9.074263,-19.706856,-6.312459,-12.122307,-20.501450,-6.215259,-9.061635,-19.637518,-6.021379,-12.084063, + -20.125717,-6.270391,-10.397130,-20.280487,-6.362848,-10.444344,-20.219887,-6.105803,-10.410739,-21.262245,-7.245627,-12.597294, + -22.069061,-7.369913,-9.592587,-22.169067,-7.195129,-9.607039,-21.367100,-7.062366,-12.612446,-21.898720,-7.268155,-9.540624, + -21.083759,-7.139006,-12.542846,-21.708046,-7.174196,-10.877224,-21.800797,-7.012086,-10.890627,-21.550911,-7.080326,-10.829288, + -21.380680,-4.575363,-9.240383,-21.440552,-5.056335,-9.309193,-21.413811,-4.583948,-9.114966,-23.085960,-5.583080,-9.792847, + -22.701658,-5.793759,-9.705752,-23.118847,-5.591603,-9.668349,-22.015308,-5.418821,-9.492303,-22.219467,-5.107279,-9.504839, + -22.252476,-5.115833,-9.379882,-22.083099,-7.405073,-9.555672,-20.365101,-6.393667,-9.046602,-20.720299,-6.230728,-9.136463, + -20.401108,-6.404059,-8.923115,-21.403660,-6.604842,-9.360680,-21.231930,-6.869518,-9.332878,-21.268070,-6.879949,-9.208935, + -20.878977,-5.522964,-9.176006,-21.084370,-5.654136,-9.321402,-20.915119,-5.533393,-9.052062,-21.970345,-6.965693,-9.579859, + -22.046825,-7.394604,-9.680071,-21.055723,-4.617654,-10.602367,-21.103638,-5.044295,-10.664298,-21.088854,-4.626241,-10.476951, + -22.622856,-5.533183,-10.978257,-22.250473,-5.715265,-11.026123,-22.589970,-5.524660,-11.102756,-21.679272,-7.148539,-10.939768, + -21.598263,-6.763173,-10.912634,-21.715149,-7.158770,-10.815247,-20.149343,-6.242748,-10.424206,-20.462643,-6.094753,-10.504022, + -20.184956,-6.252904,-10.300597,-22.808361,-5.495633,-9.680486,-22.906761,-5.554415,-9.710503,-21.855635,-5.126435,-10.775496, + -21.764864,-5.072211,-10.747807,-22.777056,-5.550363,-9.675962,-22.875454,-5.609143,-9.705980,-21.826313,-5.177513,-10.771620, + -21.735542,-5.123287,-10.743929,-21.537897,-4.730309,-9.215853,-21.636295,-4.789091,-9.245871,-21.867174,-5.099170,-10.773332, + -21.776403,-5.044946,-10.745642,-21.506592,-4.785038,-9.211330,-21.604992,-4.843820,-9.241348,-21.837852,-5.150247,-10.769455, + -21.747082,-5.096022,-10.741765,-21.232561,-4.924756,-9.131169,-21.311932,-4.801117,-9.182898,-20.300173,-6.055882,-10.352678, + -20.227171,-6.170828,-10.302036,-21.285061,-4.956111,-9.147184,-21.364429,-4.832470,-9.198913,-20.348867,-6.084995,-10.367907, + -20.275866,-6.199941,-10.317265,-22.861584,-5.484885,-9.285221,-22.696133,-5.387071,-9.238010,-22.819162,-5.489088,-9.428577, + -22.644684,-5.383160,-9.370457,-22.846596,-5.511918,-9.281312,-22.681147,-5.414104,-9.234100,-22.804178,-5.516122,-9.424668, + -22.629700,-5.410193,-9.366548,-22.778633,-5.395636,-9.143870,-22.945969,-5.495763,-9.177698,-22.809553,-5.391625,-8.997783, + -22.987688,-5.498200,-9.041957,-22.763348,-5.422598,-9.140518,-22.930683,-5.522725,-9.174347,-22.794270,-5.418588,-8.994432, + -22.972403,-5.525163,-9.038605,-22.924469,-5.523413,-9.362617,-23.060417,-5.604606,-9.405191,-22.959307,-5.525944,-9.243897, + -23.103512,-5.612037,-9.295954,-22.911963,-5.545851,-9.359923,-23.047913,-5.627043,-9.402498,-22.946800,-5.548382,-9.241203, + -23.091003,-5.634475,-9.293261,-23.486616,-5.800006,-7.844956,-23.340673,-5.710896,-7.777139,-23.394726,-5.960608,-7.831677, + -22.939859,-5.704411,-9.180442,-22.806280,-5.624611,-9.139692,-22.858582,-5.846464,-9.168696,-21.970970,-4.938681,-7.386300, + -21.886223,-5.098234,-7.351671,-22.125031,-5.030712,-7.433297,-21.598207,-4.880494,-8.707747,-21.518154,-5.020410,-8.696178, + -21.733829,-4.961513,-8.749119,-21.061850,-6.511649,-7.257320,-21.219181,-6.603711,-7.282020,-21.153740,-6.351047,-7.270599, + -20.785742,-6.344420,-8.593195,-20.919323,-6.424218,-8.633945,-20.867020,-6.202366,-8.604940,-22.571514,-7.395338,-7.750803, + -22.661961,-7.237260,-7.763873,-22.417454,-7.303306,-7.703805,-22.115688,-7.115220,-9.142879,-22.195744,-6.975305,-9.154447, + -21.980068,-7.034203,-9.101506,-21.860125,-4.619487,-7.511196,-21.878054,-4.624131,-7.443331,-23.695583,-5.702696,-8.088070, + -23.713379,-5.707307,-8.020702,-22.761665,-5.190879,-7.791965,-22.779526,-5.195508,-7.724348,-22.584694,-7.649194,-7.948277, + -22.606003,-7.655864,-7.881476,-20.763048,-6.570289,-7.327896,-20.784203,-6.576910,-7.261584,-21.697086,-7.082098,-7.623046, + -21.718319,-7.088743,-7.556489,-21.321827,-5.637133,-7.440443,-21.343060,-5.643778,-7.373886,-23.120991,-6.695966,-7.935403, + -22.637852,-6.242186,-6.299681,-23.103130,-6.691337,-8.003021,-21.996975,-5.951644,-6.905606,-22.869406,-6.476472,-7.253792, + -22.072964,-6.736946,-7.117914,-22.670958,-5.773213,-7.030924,-23.105682,-5.988175,-7.192969,-21.581944,-6.422668,-6.917299, + -22.598001,-7.102435,-7.339670,-22.291050,-5.561013,-6.883325,-22.397480,-6.210494,-7.048790,-23.188679,-6.877022,-8.264555, + -22.310537,-6.172297,-7.173673,-23.367672,-6.793237,-8.147352,-22.950577,-5.089266,-7.920517,-22.827888,-4.992843,-7.881506, + -22.876545,-5.126130,-8.062235,-23.272850,-6.922146,-8.131128,-22.761438,-5.037539,-8.003543,-22.432598,-6.162474,-7.205244, + -22.461695,-6.261850,-7.228181,-22.278345,-6.165801,-7.326412,-21.502552,-7.276883,-7.698147,-21.625240,-7.373306,-7.737158, + -21.498528,-7.219790,-7.851924,-22.409519,-6.242224,-7.405115,-21.624557,-7.311214,-7.869256,-23.282721,-6.751872,-8.258610, + -22.341496,-6.322217,-7.200562,-22.389074,-6.160064,-7.355270,-21.164288,-5.474215,-7.453066,-21.069466,-5.603123,-7.436843, + -21.170404,-5.499108,-7.615135,-22.301495,-6.304688,-7.380855,-21.087284,-5.627090,-7.579721,-22.440300,-7.692387,-8.134547, + -22.399673,-6.157570,-7.059287,-22.640930,-7.737087,-8.031857,-23.746632,-5.775166,-8.113019,-23.727472,-5.616261,-8.097080, + -23.651085,-5.773305,-8.246402,-22.486702,-7.760633,-7.992726,-23.634468,-5.621979,-8.209433,-22.491211,-6.239577,-7.089081, + -22.442316,-6.333672,-7.091054,-22.362568,-6.155521,-7.211032,-20.634247,-6.525247,-7.355234,-20.653404,-6.684152,-7.371172, + -20.651733,-6.506877,-7.517345,-22.396717,-6.312501,-7.269619,-20.679276,-6.661035,-7.512955,-22.594051,-7.667388,-8.151231, + -22.317432,-6.289385,-7.055033,-22.443430,-6.232201,-7.237643,-21.915205,-4.521725,-7.570416,-21.760977,-4.545269,-7.531287, + -21.883547,-4.569740,-7.724090,-22.278854,-6.278607,-7.236165,-21.740723,-4.597569,-7.666047,-20.565382,-5.544516,-10.504543, + -20.619923,-5.449192,-10.512424,-20.077286,-5.284173,-12.148993,-20.019024,-5.386001,-12.140574,-20.614401,-5.573791,-10.519496, + -20.668941,-5.478467,-10.527377,-20.129694,-5.315502,-12.165355,-20.071434,-5.417330,-12.156936,-20.772549,-6.134037,-8.261484, + -20.670918,-6.293439,-8.250080,-20.732147,-6.155823,-8.404191,-20.637589,-6.298601,-8.387934,-20.793058,-6.146167,-8.265930, + -20.694672,-6.317537,-8.254864,-20.752655,-6.167952,-8.408638,-20.661343,-6.322699,-8.392717,-20.801153,-6.050309,-8.321453, + -20.882038,-5.908248,-8.334199,-20.828461,-6.055842,-8.200951,-20.913086,-5.903015,-8.220913,-20.818073,-6.060266,-8.325679, + -20.898960,-5.918204,-8.338425,-20.845381,-6.065800,-8.205176,-20.930006,-5.912971,-8.225138,-0.738950,18.827427,-4.808415, + -1.035124,19.293165,-4.886848,-0.733026,18.808020,-4.976924,-0.948849,18.822123,-5.066350,-1.026175,18.822731,-4.886050, + -0.749472,19.330021,-4.809527,-0.992044,19.293715,-5.046260,-0.720510,19.326485,-4.963235,-2.700373,21.046970,-4.736400, + -3.116777,21.396198,-4.860620,-2.681209,21.017685,-4.902479,-2.887218,20.960178,-4.997499,-2.969528,20.951195,-4.819646, + -2.858593,21.522089,-4.780455,-3.068457,21.397648,-5.018517,-2.822806,21.515873,-4.932633,-2.189148,21.062103,-4.438527, + -1.877467,20.600174,-4.422440,-2.114210,21.102304,-4.585413,-1.881608,21.092300,-4.561505,-1.900135,21.066965,-4.367849, + -2.163961,20.563400,-4.496615,-1.838869,20.620670,-4.581683,-2.115837,20.586788,-4.643634,-10.081049,21.940565,-6.520906, + -9.779334,21.473501,-6.480883,-10.007423,21.970079,-6.670957,-9.774768,21.956263,-6.649601,-9.790988,21.943138,-6.454530, + -10.067626,21.438816,-6.548838,-9.742649,21.483429,-6.641581,-10.021174,21.452152,-6.697640,-3.753658,21.275679,-5.052364, + -3.213827,21.335569,-4.926752,-3.717393,21.322729,-5.211356,-3.596488,21.523113,-5.209496,-3.626757,21.542450,-5.016630, + -3.312060,21.055542,-4.956220,-3.176829,21.339521,-5.087636,-3.275305,21.071922,-5.107409,-2.398844,21.524956,-4.479946, + -1.965946,21.180681,-4.410251,-2.336419,21.565535,-4.632470,-2.111525,21.627216,-4.612636,-2.125179,21.623388,-4.416966, + -2.227804,21.052301,-4.472559,-1.932283,21.190342,-4.571625,-2.186090,21.069098,-4.622411,-1.062828,19.605396,-4.683232, + -0.761112,19.138332,-4.643209,-0.989202,19.634911,-4.833283,-0.756548,19.621094,-4.811927,-0.772766,19.607969,-4.616857, + -1.049405,19.103647,-4.711165,-0.724427,19.148260,-4.803907,-1.002954,19.116983,-4.859966,-1.838919,20.927225,-4.699047, + -1.900228,20.411274,-4.901079,-1.927452,20.879513,-4.562326,-1.947734,20.358536,-4.751981,-2.128215,20.779072,-4.628516, + -2.095414,20.830643,-4.814935,-1.631243,20.478849,-4.791471,-2.024115,20.469639,-4.702291,-1.900228,20.411274,-4.901079, + -1.688233,20.428530,-4.654732,-0.738898,19.876219,-4.972904,-1.007665,19.398935,-5.076576,-0.818801,19.883650,-4.823346, + -1.049746,19.388029,-4.917271,-1.049282,19.857889,-4.854822,-1.026363,19.868296,-5.049383,-0.719885,19.374729,-5.002213, + -1.073774,19.525166,-4.881725,-1.007665,19.398935,-5.076576,-0.771575,19.367960,-4.854702,-0.664736,19.181303,-5.101425, + -0.933501,18.704020,-5.205098,-0.744638,19.188734,-4.951867,-0.975583,18.693113,-5.045792,-0.975119,19.162973,-4.983343, + -0.952200,19.173380,-5.177905,-0.645722,18.679813,-5.130734,-0.999612,18.830250,-5.010246,-0.933501,18.704020,-5.205098, + -0.697412,18.673044,-4.983223,-3.474926,1.688660,-7.138080,-3.489427,2.117925,-6.782687,-3.644649,1.687914,-7.137285, + -3.723238,1.683332,-6.916880,-3.541021,1.655096,-6.849892,-3.420024,2.183031,-7.065314,-3.649399,2.140700,-6.816724, + -3.574218,2.199360,-7.086175,-7.206203,-9.171879,-8.975384,-7.031386,-8.824884,-8.575612,-7.359365,-9.099458,-8.965205, + -7.431359,-9.096371,-8.742533,-7.279310,-9.208303,-8.689243,-6.941566,-8.762358,-8.853023,-7.165662,-8.731418,-8.598022, + -7.073396,-8.678743,-8.863370,-4.160876,21.807077,-5.506382,-3.668303,20.211388,-5.880491,-4.337362,21.531025,-4.639401, + -3.827721,19.962030,-5.097353,-4.236554,20.763294,-4.925447,-4.068640,21.025940,-5.750315,-4.295391,21.779604,-5.556500, + -4.078472,20.755945,-4.895607,-4.296906,21.271688,-5.212774,-4.108338,21.296936,-5.162700,-3.913051,21.014692,-5.708235, + -4.077579,21.322363,-5.244490,-4.405639,21.412794,-5.003945,-4.210641,21.420113,-4.958557,-4.175586,21.450216,-5.037071, + -4.109047,21.230240,-5.118352,-4.371496,21.452442,-5.084908,-4.286760,21.172010,-5.169860,-4.134775,21.190605,-5.016841, + -4.312113,21.140476,-5.090516,-4.299027,21.023407,-4.986191,-4.137611,21.089926,-4.909832,-4.293048,21.050350,-5.070872, + -4.378352,21.330957,-4.987078,-4.117756,21.128260,-5.013146,-4.183637,21.348501,-4.932045,-4.214136,21.319170,-4.851368, + -4.391984,21.295549,-4.898461,-4.024346,21.127197,-5.303609,-4.262015,21.306280,-5.295737,-4.193166,21.057981,-5.352961, + -4.044721,21.094149,-5.198573,-4.218946,21.030643,-5.272224,-4.474368,21.499653,-4.677279,-3.979437,19.935417,-5.136710, + -3.818012,20.187912,-5.929703,-4.048232,20.052118,-5.060708,-4.152176,20.350109,-4.991085,-4.250790,20.699390,-4.894710, + -4.378627,21.116386,-4.784721,-4.045117,20.781412,-4.938968,-4.150639,21.172310,-4.846735,-4.184792,21.132034,-4.709405, + -4.069331,20.746658,-4.832599,-4.221327,20.732428,-4.986857,-4.340376,21.142237,-4.882961,-3.933399,20.402536,-5.022354, + -3.964052,20.376772,-4.940650,-3.873429,20.113781,-4.987525,-3.936247,20.427639,-5.008867,-4.022480,20.079544,-5.141422, + -4.117231,20.384533,-5.074091,-4.228920,20.698639,-4.997048,-4.137408,20.421381,-5.069766,-3.955626,20.394287,-4.915412, + -4.068204,20.722448,-4.847353,-4.036848,20.745007,-4.955817,-3.853056,20.146835,-5.092561,-4.264332,20.667658,-4.912725, + -4.162753,20.383860,-4.993374,-4.178689,21.212633,-4.788646,-4.463295,21.424707,-4.770764,-4.384531,21.179176,-4.846776, + -4.187309,21.175858,-4.721206,-4.309224,21.475639,-4.650570,-4.289728,21.504850,-4.722708,-4.478608,21.398178,-4.709715, + -4.401909,21.129349,-4.779700,-3.704314,20.350101,-5.877355,-3.239979,18.857033,-6.224536,-3.880800,20.074047,-5.010374, + -3.399398,18.607676,-5.441398,-3.796831,19.362429,-5.281981,-3.628918,19.625074,-6.106849,-3.838828,20.322626,-5.927473, + -3.638750,19.355080,-5.252141,-3.706070,19.117033,-5.456638,-3.514013,19.131166,-5.409393,-3.473329,19.613827,-6.064769, + -3.482425,19.153948,-5.491856,-3.859668,19.695234,-5.465443,-3.664671,19.702553,-5.420055,-3.629616,19.732656,-5.498569, + -3.563076,19.512680,-5.579851,-3.825525,19.734880,-5.546406,-3.740790,19.454451,-5.631358,-3.588805,19.473043,-5.478339, + -3.766143,19.422915,-5.552014,-3.730913,19.219183,-5.451728,-3.569496,19.285702,-5.375370,-3.724933,19.246128,-5.536409, + -3.810237,19.526733,-5.452616,-3.549641,19.324036,-5.478683,-3.615522,19.544277,-5.397583,-3.646021,19.514946,-5.316905, + -3.823869,19.491327,-5.363998,-3.391849,18.839817,-5.581254,-3.671594,19.152948,-5.539265,-3.555932,18.755512,-5.634445, + -3.412237,18.806810,-5.476206,-3.581925,18.728855,-5.553535,-4.017806,20.042675,-5.048252,-3.551114,18.581064,-5.480755, + -3.389688,18.833559,-6.273747,-3.684280,18.892643,-5.355806,-3.808425,19.280821,-5.258909,-3.817123,19.316204,-5.237936, + -3.939193,19.716076,-5.150104,-3.592002,19.338009,-5.306320,-3.710916,19.771444,-5.203270,-3.745710,19.735016,-5.074636, + -3.615433,19.300795,-5.190730,-3.787112,19.348988,-5.338965,-3.900653,19.741371,-5.239496,-3.584779,19.317736,-5.294127, + -3.616368,19.294952,-5.211664,-3.514592,18.970596,-5.278477,-3.739954,19.811102,-5.175635,-3.658286,18.919298,-5.436717, + -3.773949,19.316736,-5.341536,-4.012211,20.077450,-5.121084,-3.915696,19.810307,-5.220355,-3.756373,19.769020,-5.085185, + -3.875282,20.086710,-4.985532,-3.846974,20.119701,-5.092148,-3.494203,19.003603,-5.383525,-4.044920,20.038126,-5.039183, + -3.938367,19.765448,-5.147146,-3.362003,18.604258,-5.445147,-3.658267,18.890741,-5.449994,-3.568284,18.574160,-5.504611, + -3.367914,18.575598,-5.394364,-3.505825,18.958679,-5.338682,-3.485721,18.978672,-5.405025,-3.681470,18.865265,-5.361749, + -3.587772,18.526291,-5.431713,-4.512024,23.141016,-5.410446,-4.121039,21.588165,-5.444746,-4.739596,23.045170,-4.517119, + -4.326603,21.501587,-4.637809,-4.685889,22.291452,-4.644589,-4.469371,22.382645,-5.494524,-4.645735,23.111074,-5.461297, + -4.529855,22.282219,-4.605831,-4.602398,22.012993,-4.764802,-4.411944,22.026487,-4.711295,-4.316550,22.372057,-5.443153, + -4.375734,22.031471,-4.794847,-4.721781,22.585613,-4.890651,-4.528713,22.591928,-4.837526,-4.488784,22.604677,-4.918413, + -4.431811,22.370211,-4.953109,-4.682110,22.607292,-4.975791,-4.610335,22.311972,-5.001721,-4.463932,22.352068,-4.847389, + -4.640704,22.297503,-4.919252,-4.621467,22.115284,-4.780577,-4.459737,22.187208,-4.709999,-4.610470,22.125177,-4.868406, + -4.682754,22.420477,-4.843674,-4.433477,22.204020,-4.817541,-4.489770,22.438677,-4.783039,-4.525199,22.426876,-4.699943, + -4.702034,22.403416,-4.750778,-4.299902,21.701979,-4.818465,-4.562541,22.030680,-4.850851,-4.466270,21.617188,-4.863099, + -4.326457,21.690748,-4.710258,-4.497059,21.607834,-4.780049,-4.876519,23.013874,-4.555357,-4.477863,21.475395,-4.679152, + -4.269712,21.563063,-5.496243,-4.597785,21.811285,-4.622375,-4.703123,22.216444,-4.607127,-4.710612,22.255573,-4.593698, + -4.812831,22.670359,-4.589443,-4.481991,22.252813,-4.653334,-4.579744,22.703260,-4.640342,-4.621834,22.693901,-4.509098, + -4.512257,22.239630,-4.534148,-4.674635,22.266882,-4.697428,-4.769259,22.676138,-4.679910,-4.476460,22.234922,-4.637172, + -4.512669,22.229939,-4.553620,-4.427183,21.894199,-4.552583,-4.607547,22.748852,-4.622231,-4.566996,21.820639,-4.705424, + -4.663266,22.234131,-4.693175,-4.865939,23.033733,-4.633067,-4.781058,22.748117,-4.674947,-4.630070,22.725737,-4.526419, + -4.734378,23.062071,-4.494871,-4.699860,23.072598,-4.604207,-4.400628,21.905430,-4.660790,-4.904201,23.012482,-4.546994, + -4.809271,22.719280,-4.595837,-4.289347,21.495686,-4.638921,-4.568084,21.790100,-4.713043,-4.494412,21.464897,-4.702121, + -4.298984,21.477610,-4.584007,-4.416659,21.870552,-4.608917,-4.392728,21.876455,-4.676724,-4.596323,21.783171,-4.622880, + -4.519611,21.432898,-4.622583,-6.833407,22.959766,-6.036073,-6.692117,21.367653,-6.139020,-7.066547,22.863062,-5.144276, + -6.902711,21.280298,-5.333465,-7.133163,22.116352,-5.303051,-6.911347,22.208361,-6.151530,-6.970541,22.953377,-6.086215, + -6.980245,22.081097,-5.266897,-7.095468,21.833588,-5.435655,-6.904871,21.814724,-5.384326,-6.761721,22.171740,-6.102785, + -6.868954,21.817499,-5.468107,-7.124121,22.422665,-5.536411,-6.932076,22.396324,-5.485792,-6.891243,22.406061,-5.566645, + -6.872167,22.167242,-5.611650,-7.082168,22.441433,-5.621147,-7.057993,22.139875,-5.660078,-6.905952,22.149902,-5.506316, + -7.089643,22.126871,-5.577848,-7.098307,21.938177,-5.446986,-6.926746,21.980757,-5.375820,-7.086546,21.949938,-5.534485, + -7.111236,22.251606,-5.496745,-6.898971,21.997778,-5.482947,-6.917346,22.236689,-5.438137,-6.953570,22.227085,-5.355101, + -7.132268,22.233862,-5.404358,-6.846137,21.481485,-5.506175,-7.053967,21.848427,-5.521465,-7.024111,21.425842,-5.551879, + -6.873319,21.469990,-5.398152,-7.055367,21.417927,-5.468855,-7.206972,22.855307,-5.181828,-7.056514,21.279961,-5.373710, + -6.843270,21.368412,-6.189401,-7.121613,21.627802,-5.301632,-7.161714,22.043461,-5.268433,-7.162846,22.082676,-5.253318, + -7.198433,22.507809,-5.230754,-6.937965,22.046579,-5.316225,-6.963461,22.505829,-5.283543,-7.005517,22.497639,-5.152209, + -6.969038,22.033272,-5.197260,-7.126315,22.092583,-5.356998,-7.155172,22.510504,-5.321514,-6.935200,22.027374,-5.300884, + -6.971117,22.024599,-5.217103,-6.939565,21.679865,-5.230929,-6.983601,22.554411,-5.263203,-7.090357,21.635717,-5.384657, + -7.120214,22.058302,-5.354242,-7.193978,22.876534,-5.258805,-7.155452,22.583168,-5.313461,-7.008765,22.531078,-5.168103, + -7.058566,22.877975,-5.121433,-7.023639,22.887577,-5.230725,-6.912383,21.691360,-5.338953,-7.234464,22.857924,-5.173140, + -7.187262,22.555792,-5.235201,-6.866859,21.268671,-5.335340,-7.096299,21.606079,-5.393497,-7.074680,21.273174,-5.396852, + -6.878811,21.250023,-5.281076,-6.933318,21.657267,-5.288321,-6.909264,21.662207,-5.356162,-7.124601,21.599854,-5.303303, + -7.104009,21.242186,-5.318336,-6.478814,20.098974,-6.627461,-6.258016,18.567593,-7.041598,-6.690084,19.817556,-5.770036, + -6.448854,18.313391,-6.267092,-6.721264,19.113745,-6.071527,-6.520257,19.381493,-6.887304,-6.616347,20.095114,-6.676761, + -6.566094,19.080404,-6.044236,-6.671590,18.864769,-6.257283,-6.479356,18.846550,-6.212206,-6.368069,19.344179,-6.847907, + -6.445191,18.867565,-6.294109,-6.732275,19.459763,-6.240395,-6.538225,19.434437,-6.197492,-6.499455,19.461964,-6.275200, + -6.468998,19.237913,-6.366292,-6.692921,19.496950,-6.320148,-6.654044,19.210550,-6.417623,-6.499887,19.198542,-6.266126, + -6.683453,19.180052,-6.339280,-6.679998,18.969250,-6.247871,-6.509554,19.006298,-6.171146,-6.670483,18.998487,-6.331462, + -6.709903,19.285200,-6.235129,-6.484683,19.045385,-6.273083,-6.514448,19.269600,-6.182170,-6.548583,19.242027,-6.102333, + -6.728278,19.248648,-6.147843,-6.405887,18.547182,-6.397479,-6.632507,18.898294,-6.338856,-6.581593,18.492022,-6.451746, + -6.430433,18.513365,-6.293585,-6.610855,18.466372,-6.371629,-6.830600,19.809723,-5.807230,-6.603158,18.312626,-6.305363, + -6.409918,18.570026,-7.089616,-6.684657,18.635670,-6.165981,-6.745392,19.034065,-6.051634,-6.748253,19.069454,-6.029119, + -6.805166,19.479446,-5.923381,-6.523025,19.058516,-6.099716,-6.571422,19.500484,-5.977454,-6.610556,19.464552,-5.849933, + -6.551158,19.020576,-5.985417,-6.714210,19.101372,-6.129141,-6.763793,19.502142,-6.012203,-6.518993,19.036861,-6.088460, + -6.553158,19.015846,-6.006557,-6.504235,18.682661,-6.087936,-6.593644,19.543001,-5.947823,-6.655395,18.661318,-6.246097, + -6.706309,19.067591,-6.133208,-6.820143,19.846243,-5.878658,-6.767648,19.571711,-5.990063,-6.615809,19.500225,-5.858938, + -6.682455,19.828131,-5.744780,-6.650102,19.860758,-5.850352,-6.479690,18.716480,-6.191830,-6.858024,19.809109,-5.797973, + -6.796553,19.527906,-5.918429,-6.412494,18.304304,-6.271502,-6.659972,18.633701,-6.260524,-6.621380,18.309521,-6.329237, + -6.422464,18.274801,-6.221850,-6.497905,18.672075,-6.148694,-6.475400,18.691460,-6.214445,-6.686238,18.608465,-6.173072, + -6.647618,18.262260,-6.258080,-6.697442,21.592516,-6.191132,-6.465121,19.956585,-6.636744,-6.908711,21.311100,-5.333707, + -6.655960,19.702383,-5.862238,-6.932208,20.549891,-5.652143,-6.731200,20.817638,-6.467919,-6.834975,21.588657,-6.240431, + -6.777038,20.516550,-5.624851,-6.913890,21.073172,-5.917669,-6.723330,21.066349,-5.869265,-6.579012,20.780325,-6.428523, + -6.689563,21.090073,-5.950376,-6.997478,21.220621,-5.701764,-6.803429,21.195295,-5.658861,-6.764658,21.222822,-5.736569, + -6.734201,20.998772,-5.827662,-6.958125,21.257809,-5.781518,-6.919248,20.971409,-5.878993,-6.765091,20.959400,-5.727496, + -6.948657,20.940910,-5.800650,-6.953391,20.818924,-5.701368,-6.782947,20.855972,-5.624643,-6.943876,20.848160,-5.784959, + -6.983295,21.134872,-5.688626,-6.758075,20.895058,-5.726580,-6.787841,21.119274,-5.635667,-6.821975,21.091702,-5.555829, + -7.001670,21.098320,-5.601340,-6.668173,20.891653,-6.018130,-6.874608,21.105341,-5.999639,-6.846150,20.851963,-6.067879, + -6.692712,20.857792,-5.914249,-6.875309,20.825615,-5.987967,-7.049228,21.303267,-5.370901,-6.810264,19.701618,-5.900509, + -6.617023,19.959019,-6.684762,-6.859251,19.824347,-5.818862,-6.914446,20.131739,-5.735718,-6.956100,20.487768,-5.623834, + -7.015846,20.914623,-5.495183,-6.740414,20.538277,-5.667604,-6.782365,20.936630,-5.558069,-6.821407,20.896433,-5.422025, + -6.769001,20.503281,-5.562408,-6.922492,20.519648,-5.714966,-6.974736,20.938288,-5.592819,-6.690382,20.150438,-5.767900, + -6.724099,20.126368,-5.686890,-6.676377,19.854635,-5.745695,-6.689141,20.175083,-5.753364,-6.830105,19.850784,-5.898748, + -6.875137,20.163736,-5.817738,-6.935388,20.487932,-5.726416,-6.889227,20.203077,-5.811634,-6.712831,20.141256,-5.661080, + -6.771812,20.479841,-5.578149,-6.738106,20.501774,-5.686036,-6.651838,19.888502,-5.849575,-6.974605,20.459349,-5.642934, + -6.919592,20.166800,-5.736483,-6.803280,20.978357,-5.497999,-7.050794,21.231543,-5.467505,-7.012251,20.980135,-5.554543, + -6.817080,20.940567,-5.431997,-6.889730,21.252508,-5.347515,-6.866417,21.281324,-5.418671,-7.069637,21.205183,-5.407376, + -7.036757,20.930857,-5.489312,6.012098,4.376498,-3.881980,6.505099,2.853254,-3.836509,5.811388,4.319314,-2.978955, + 6.323798,2.801600,-3.020811,5.912481,3.564475,-3.063923,6.103442,3.618882,-3.923084,5.879588,4.334904,-3.927496, + 6.069608,3.567788,-3.028790,6.011693,3.285410,-3.169950,6.201964,3.314489,-3.122315,6.257735,3.621387,-3.875202, + 6.235890,3.316850,-3.206934,5.851545,3.840492,-3.325584,6.044895,3.862568,-3.277982,6.082071,3.873064,-3.360488, + 6.153796,3.641177,-3.383026,5.887774,3.859613,-3.412844,5.978523,3.568599,-3.423497,6.125321,3.627296,-3.275629, + 5.951034,3.557109,-3.339563,5.985486,3.385114,-3.191119,6.143579,3.471533,-3.129079,5.993838,3.390462,-3.279630, + 5.902555,3.681350,-3.270159,6.166257,3.483594,-3.238065,6.095194,3.715706,-3.215748,6.062492,3.706580,-3.131210, + 5.886530,3.668623,-3.175958,6.333022,2.992199,-3.213406,6.048353,3.300512,-3.257892,6.171738,2.894206,-3.248687, + 6.309693,2.985717,-3.104072,6.143500,2.887817,-3.164458,5.676044,4.276913,-3.011722,6.173743,2.763158,-3.056597, + 6.357325,2.815462,-3.882559,6.032943,3.093270,-3.016250,5.901136,3.490863,-3.021741,5.891350,3.530149,-3.010409, + 5.761767,3.936878,-3.027511,6.118260,3.538799,-3.075745,5.990943,3.981863,-3.086309,5.952506,3.977600,-2.953687, + 6.091604,3.530781,-2.955245,5.924172,3.537592,-3.115526,5.802830,3.940099,-3.119269,6.125333,3.522302,-3.058725, + 6.091407,3.519942,-2.974106,6.199136,3.191170,-2.955863,5.960567,4.026536,-3.070148,6.061181,3.099658,-3.100479, + 5.937796,3.505965,-3.109683,5.683541,4.292761,-3.090701,5.786362,4.011321,-3.118176,5.941778,4.007740,-2.972601, + 5.815960,4.337814,-2.957867,5.847254,4.344050,-3.068495,6.222465,3.197652,-3.065197,5.648711,4.274213,-3.002571, + 5.761907,3.985461,-3.036819,6.361332,2.798090,-3.022554,6.061965,3.068715,-3.106285,6.157426,2.750252,-3.078479, + 6.354149,2.782724,-2.966452,6.209959,3.164950,-3.010990,6.231926,3.168358,-3.079628,6.036268,3.065332,-3.015165, + 6.136199,2.721464,-2.996590,5.528886,5.885634,-3.924951,6.052195,4.256865,-3.879425,5.328176,5.828450,-3.021926, + 5.870895,4.205211,-3.063728,5.447231,5.016011,-3.106549,5.638192,5.070417,-3.965710,5.396376,5.844040,-3.970467, + 5.604358,5.019323,-3.071415,5.389986,5.436607,-3.512116,5.576547,5.477084,-3.464584,5.792485,5.072923,-3.917828, + 5.609590,5.482157,-3.549228,5.272973,5.622695,-3.347732,5.466323,5.644771,-3.300131,5.503500,5.655267,-3.382636, + 5.575223,5.423379,-3.405174,5.309202,5.641816,-3.434993,5.399951,5.350802,-3.445646,5.546749,5.409499,-3.297777, + 5.372462,5.339313,-3.361711,5.383616,5.251853,-3.231379,5.541710,5.338272,-3.169339,5.391969,5.257201,-3.319890, + 5.300686,5.548089,-3.310419,5.564387,5.350333,-3.278324,5.493324,5.582445,-3.256008,5.460622,5.573319,-3.171470, + 5.284661,5.535362,-3.216218,5.667012,5.279515,-3.556799,5.427087,5.450352,-3.600046,5.500691,5.196998,-3.592220, + 5.643697,5.272990,-3.447465,5.472681,5.189910,-3.507985,5.192833,5.786048,-3.054693,5.720840,4.166769,-3.099514, + 5.904421,4.219073,-3.925475,5.648266,4.297244,-3.056644,5.538598,4.601119,-3.065713,5.432789,4.961391,-3.061390, + 5.296529,5.390062,-3.061421,5.638771,5.033958,-3.118774,5.525693,5.433399,-3.128935,5.487665,5.427565,-2.986921, + 5.611598,5.026035,-3.007836,5.464776,4.971260,-3.157983,5.337580,5.391635,-3.161895,5.757617,4.648468,-3.102840, + 5.724686,4.643049,-3.018194,5.819897,4.378435,-2.996107,5.754040,4.676060,-3.096057,5.676248,4.304421,-3.140880, + 5.575756,4.614690,-3.153641,5.457916,4.935860,-3.159719,5.555011,4.651067,-3.159116,5.732093,4.666405,-2.997838, + 5.613483,4.998962,-3.016115,5.648008,4.994691,-3.125872,5.843211,4.384965,-3.105442,5.420208,4.925939,-3.071380, + 5.527696,4.633052,-3.076562,5.495325,5.486244,-3.083413,5.207777,5.690600,-3.126423,5.291856,5.435490,-3.137204, + 5.485001,5.467068,-3.009247,5.357318,5.772580,-3.018279,5.378752,5.783479,-3.094822,5.190844,5.679646,-3.061165, + 5.272946,5.403408,-3.060410,5.145294,7.403829,-4.393928,5.638294,5.880584,-4.348455,4.836798,7.313751,-3.005947, + 5.349208,5.796036,-3.047804,4.937891,6.558911,-3.090915,5.236638,6.646212,-4.435031,5.012784,7.362236,-4.439444, + 5.095018,6.562223,-3.055782,5.037103,6.279847,-3.196942,5.227374,6.308926,-3.149307,5.390931,6.648717,-4.387149, + 5.261300,6.311286,-3.233926,4.876955,6.834929,-3.352576,5.070304,6.857005,-3.304975,5.107481,6.867500,-3.387480, + 5.179205,6.635612,-3.410019,4.913184,6.854049,-3.439837,5.003933,6.563035,-3.450490,5.150731,6.621732,-3.302622, + 4.976444,6.551546,-3.366555,5.010896,6.379550,-3.218111,5.168989,6.465969,-3.156071,5.019248,6.384898,-3.306623, + 4.927965,6.675786,-3.297151,5.191667,6.478031,-3.265057,5.120604,6.710143,-3.242741,5.087902,6.701016,-3.158202, + 4.911940,6.663060,-3.202951,5.358432,5.986635,-3.240398,5.073762,6.294948,-3.284884,5.197148,5.888641,-3.275680, + 5.335103,5.980154,-3.131064,5.168910,5.882254,-3.191451,4.701454,7.271349,-3.038714,5.199153,5.757594,-3.083590, + 5.490520,5.842793,-4.394506,5.058352,6.087707,-3.043242,4.926546,6.485300,-3.048734,4.916760,6.524585,-3.037401, + 4.787177,6.931314,-3.054503,5.143670,6.533236,-3.102738,5.016353,6.976300,-3.113302,4.977915,6.972036,-2.980680, + 5.117014,6.525218,-2.982238,4.949582,6.532028,-3.142519,4.828240,6.934536,-3.146261,5.150743,6.516738,-3.085718, + 5.116817,6.514378,-3.001099,5.224545,6.185606,-2.982856,4.985977,7.020973,-3.097141,5.086591,6.094094,-3.127471, + 4.963205,6.500401,-3.136675,4.708951,7.287198,-3.117693,4.811771,7.005758,-3.145168,4.967188,7.002177,-2.999594, + 4.841370,7.332251,-2.984859,4.872664,7.338486,-3.095487,5.247875,6.192088,-3.092189,4.674121,7.268650,-3.029563, + 4.787317,6.979898,-3.063811,5.386742,5.792527,-3.049546,5.087375,6.063151,-3.133277,5.182836,5.744688,-3.105471, + 5.379559,5.777161,-2.993444,5.235368,6.159386,-3.037982,5.257336,6.162795,-3.106620,5.061677,6.059768,-3.042157, + 5.161608,5.715900,-3.023582,7.865880,5.843276,-3.352255,7.528356,7.402334,-4.054925,7.594572,5.778132,-2.468424, + 7.118207,7.305189,-2.563030,7.522978,6.540616,-2.495132,7.781107,6.602596,-3.336032,8.002158,5.885847,-3.321006, + 7.369097,6.538145,-2.542551,7.479393,6.834097,-2.599684,7.291393,6.805606,-2.655915,7.623395,6.599205,-3.370973, + 7.303561,6.815192,-2.745787,7.713952,6.298300,-2.725734,7.523054,6.276859,-2.782615,7.531627,6.278220,-2.873302, + 7.472495,6.513371,-2.898434,7.725978,6.291685,-2.821150,7.642458,6.584572,-2.837864,7.443996,6.512486,-2.790154, + 7.624719,6.584341,-2.750583,7.515961,6.737078,-2.617738,7.350807,6.648829,-2.653046,7.552395,6.743337,-2.698769, + 7.636957,6.450707,-2.682794,7.385069,6.651525,-2.759612,7.443743,6.416202,-2.735025,7.430322,6.413375,-2.644962, + 7.604153,6.450780,-2.592150,7.211298,7.141104,-2.757751,7.491245,6.831568,-2.695386,7.365682,7.237310,-2.696351, + 7.177619,7.132812,-2.651276,7.348622,7.231959,-2.609098,7.727021,5.819783,-2.424697,7.265074,7.342803,-2.515174, + 7.678307,7.440690,-4.017115,7.378860,7.005690,-2.453253,7.509632,6.607829,-2.443839,7.513896,6.567112,-2.434272, + 7.648749,6.161749,-2.437116,7.348877,6.574502,-2.603227,7.479766,6.132363,-2.606184,7.447856,6.118395,-2.472502, + 7.312550,6.566196,-2.485301,7.537275,6.574234,-2.541906,7.658246,6.171630,-2.536757,7.333799,6.588923,-2.589942, + 7.321631,6.579338,-2.500069,7.207858,6.906543,-2.495430,7.499754,6.084998,-2.583020,7.395920,7.011042,-2.540505, + 7.521483,6.605299,-2.539541,7.759865,5.814390,-2.498434,7.674436,6.100337,-2.536793,7.467506,6.090567,-2.487360, + 7.580847,5.757259,-2.454865,7.608224,5.766229,-2.566340,7.241537,6.914836,-2.601906,7.746213,5.820374,-2.403030, + 7.654839,6.114780,-2.451393,7.086288,7.310153,-2.582539,7.397051,7.042482,-2.541950,7.289597,7.357836,-2.524354, + 7.064435,7.317994,-2.528723,7.224663,6.939924,-2.544896,7.239414,6.946031,-2.615256,7.374493,7.033359,-2.450393, + 7.266833,7.375224,-2.439709,9.560743,11.614779,-3.467676,8.047580,12.002957,-3.821297,9.173349,11.471024,-2.104212, + 7.684445,11.868319,-2.543635,8.519225,11.810788,-2.313741,8.894434,11.949965,-3.634108,9.596918,11.755913,-3.456122, + 8.443465,11.673323,-2.349766,8.274734,11.910732,-2.484614,8.202553,11.729610,-2.520699,8.815133,11.811169,-3.657606, + 8.217046,11.728006,-2.610723,8.862216,11.797435,-2.488512,8.782806,11.617528,-2.526790,8.802106,11.608442,-2.615359, + 8.582592,11.679420,-2.694096,8.890730,11.786098,-2.579895,8.609295,11.869057,-2.663262,8.548749,11.675552,-2.587432, + 8.584547,11.870523,-2.577717,8.376993,11.886222,-2.480351,8.362459,11.696239,-2.482836,8.406214,11.904580,-2.562460, + 8.688148,11.822482,-2.479934,8.397756,11.706155,-2.588634,8.617248,11.634604,-2.510354,8.596539,11.638787,-2.421736, + 8.654162,11.812272,-2.390305,7.903111,11.822114,-2.697114,8.299886,11.901362,-2.577271,7.900681,12.012263,-2.670707, + 7.872698,11.809699,-2.590058,7.880472,12.011574,-2.583966,9.205983,11.610826,-2.080132,7.727694,12.018682,-2.515432, + 8.093680,12.154391,-3.803178,8.054133,11.945757,-2.379250,8.448398,11.844915,-2.279897,8.482172,11.828655,-2.260861, + 8.886913,11.724931,-2.171761,8.413118,11.664548,-2.416206,8.845509,11.538039,-2.317910,8.816004,11.529152,-2.183245, + 8.379265,11.652069,-2.297913,8.507983,11.831712,-2.368130,8.901356,11.719454,-2.271147,8.390708,11.662189,-2.406006, + 8.376215,11.663793,-2.315982,8.046360,11.743882,-2.385341,8.891117,11.533799,-2.285026,8.074343,11.946446,-2.465990, + 8.473548,11.835545,-2.372555,9.241399,11.621402,-2.152097,8.968257,11.695069,-2.254576,8.852118,11.527896,-2.191935, + 9.180288,11.451138,-2.085126,9.207494,11.457765,-2.196808,8.076774,11.756297,-2.492397,9.212491,11.631057,-2.060472, + 8.930887,11.702424,-2.174356,7.665951,11.840902,-2.561814,8.049710,11.963770,-2.475206,7.730771,12.045224,-2.529490, + 7.638118,11.837006,-2.510382,8.037175,11.766253,-2.442426,8.052572,11.768581,-2.512874,8.028750,11.957336,-2.383043, + 7.689373,12.051377,-2.450536,10.958679,11.311252,-2.740553,12.502472,11.263890,-2.316464,10.730179,11.285835,-1.842695, + 12.296068,11.240932,-1.505433,11.465756,11.109178,-1.720474,11.683158,11.133359,-2.574720,10.956598,11.166244,-2.758695, + 11.513839,11.261978,-1.703912,11.777823,11.086070,-1.752750,11.812367,11.280510,-1.734931,11.728014,11.285801,-2.545481, + 11.842152,11.295814,-1.819758,11.254074,11.093786,-2.041906,11.296075,11.288709,-2.022452,11.319290,11.310151,-2.107896, + 11.559729,11.294049,-2.071094,11.270259,11.116305,-2.134229,11.568288,11.100265,-2.071302,11.537186,11.284413,-1.961839, + 11.549280,11.087695,-1.985201,11.683172,11.091155,-1.798477,11.650837,11.278021,-1.779864,11.701549,11.083133,-1.885256, + 11.403700,11.098405,-1.949219,11.673197,11.281393,-1.889528,11.432856,11.298136,-1.926673,11.409629,11.281676,-1.840134, + 11.387785,11.098014,-1.854145,12.171860,11.275207,-1.743978,11.797937,11.107504,-1.844629,12.207339,11.086816,-1.733470, + 12.144161,11.273172,-1.635493,12.183398,11.075325,-1.648456,10.724871,11.140469,-1.848160,12.282361,11.082744,-1.513400, + 12.491362,11.105990,-2.334635,11.923672,11.071656,-1.553968,11.518097,11.082401,-1.658263,11.476549,11.088795,-1.657573, + 11.066229,11.102352,-1.775751,11.568797,11.287791,-1.745450,11.125194,11.316907,-1.867903,11.084554,11.306306,-1.736297, + 11.538702,11.284387,-1.625543,11.505994,11.100729,-1.763274,11.099537,11.123107,-1.868357,11.582425,11.292145,-1.725271, + 11.552640,11.276841,-1.640444,11.884435,11.269504,-1.541006,11.069978,11.307094,-1.862035,11.947612,11.083147,-1.638983, + 11.538211,11.103835,-1.750142,10.731331,11.137062,-1.928731,11.029098,11.132021,-1.885787,11.057720,11.302784,-1.761770, + 10.710493,11.300419,-1.828282,10.741697,11.309451,-1.938742,11.912132,11.271538,-1.649490,10.714959,11.116196,-1.835884, + 11.024728,11.116922,-1.798387,12.313714,11.273986,-1.509926,11.977030,11.072351,-1.635847,12.292786,11.059058,-1.528955, + 12.312120,11.273318,-1.451342,11.924548,11.259781,-1.587266,11.945280,11.267581,-1.655930,11.949782,11.065571,-1.545369, + 12.292140,11.046056,-1.440548,-15.257892,19.195057,-9.125760,-13.885305,19.899481,-8.695429,-15.503515,19.169411,-8.232440, + -14.107176,19.876316,-7.888498,-14.775610,19.359821,-8.087116,-14.541918,19.384222,-8.937044,-15.193584,19.063812,-9.125422, + -14.802305,19.518610,-8.089897,-14.485072,19.477062,-8.115471,-14.542603,19.666697,-8.122304,-14.572081,19.542648,-8.927214, + -14.517880,19.684244,-8.208315,-14.938367,19.214462,-8.404522,-14.989562,19.408083,-8.409776,-14.973415,19.428019,-8.497190, + -14.753989,19.526743,-8.458078,-14.928563,19.231400,-8.498913,-14.659366,19.359171,-8.433757,-14.776249,19.520216,-8.348536, + -14.675782,19.349064,-8.346803,-14.569036,19.433599,-8.161698,-14.682845,19.586344,-8.166945,-14.543899,19.425129,-8.246722, + -14.812530,19.296644,-8.312810,-14.657913,19.587200,-8.276101,-14.877520,19.489048,-8.315635,-14.895978,19.473639,-8.227764, + -14.832187,19.299713,-8.218487,-14.219150,19.823753,-8.129755,-14.471305,19.494867,-8.209275,-14.103580,19.674337,-8.095424, + -14.249372,19.821531,-8.021951,-14.124815,19.662830,-8.009695,-15.442676,19.037804,-8.219490,-14.047922,19.729284,-7.876428, + -13.823261,19.752741,-8.693512,-14.360358,19.552547,-7.916118,-14.720615,19.366779,-8.021894,-14.760571,19.353703,-8.022117, + -15.125498,19.166723,-8.142033,-14.762423,19.561686,-8.134236,-15.163756,19.372925,-8.260440,-15.203045,19.359846,-8.128646, + -14.794846,19.558443,-8.014933,-14.733400,19.365784,-8.128409,-15.099618,19.189819,-8.236442,-14.753424,19.573961,-8.114738, + -14.778147,19.556414,-8.028728,-14.484916,19.711250,-7.928374,-15.208932,19.339899,-8.253508,-14.339124,19.564056,-8.001846, + -14.706848,19.384584,-8.115699,-15.430605,19.028715,-8.298968,-15.165391,19.163866,-8.255025,-15.223877,19.341738,-8.153533, + -15.528468,19.175009,-8.220035,-15.498143,19.184788,-8.330676,-14.454693,19.713472,-8.036179,-15.441347,19.013214,-8.204267, + -15.167698,19.158295,-8.166428,-14.106011,19.913042,-7.897094,-14.308234,19.568174,-7.997300,-14.027073,19.711313,-7.888838, + -14.110610,19.918274,-7.838899,-14.442039,19.715643,-7.972938,-14.422979,19.724258,-8.041987,-14.334855,19.559946,-7.906756, + -14.027061,19.709394,-7.799498,-16.769920,18.864367,-9.532657,-15.173256,19.264940,-9.064663,-17.007931,18.839890,-8.637246, + -15.388250,19.242830,-8.255844,-16.198359,18.879917,-8.481101,-15.971909,18.903206,-9.333017,-16.734373,18.722826,-9.540621, + -16.191401,19.040688,-8.474857,-16.484512,18.775883,-8.983053,-16.512564,18.970598,-8.981654,-15.968311,19.063629,-9.314133, + -16.488131,18.986788,-9.067811,-16.724339,18.707209,-8.868553,-16.734104,18.907221,-8.862425,-16.714897,18.928270,-8.948955, + -16.479393,18.976925,-8.909023,-16.712019,18.727041,-8.962080,-16.421564,18.792259,-8.895592,-16.501596,18.968988,-8.799562, + -16.438992,18.780890,-8.808990,-16.393137,18.810757,-8.661459,-16.472658,18.983847,-8.656255,-16.371037,18.802065,-8.747300, + -16.661093,18.736086,-8.814769,-16.449020,18.985668,-8.765687,-16.684586,18.937634,-8.806005,-16.705105,18.921457,-8.718732, + -16.678881,18.737839,-8.720042,-16.286583,19.026529,-9.020717,-16.466793,18.796041,-9.075664,-16.219666,18.850870,-9.000902, + -16.315649,19.024559,-8.912590,-16.241417,18.839375,-8.915315,-16.975744,18.698004,-8.632569,-15.360838,19.086260,-8.252837, + -15.143138,19.108648,-9.071834,-15.506433,19.033260,-8.241817,-15.805715,18.946642,-8.327708,-16.161831,18.870567,-8.419378, + -16.585382,18.768908,-8.531609,-16.186827,19.066191,-8.529353,-16.576706,18.983072,-8.645671,-16.617968,18.973135,-8.504791, + -16.215546,19.060658,-8.418660,-16.138557,18.883751,-8.518046,-16.551931,18.789587,-8.632781,-15.811107,19.157104,-8.412949, + -15.835199,19.140999,-8.326699,-15.578802,19.218910,-8.238585,-15.839693,19.156963,-8.414671,-15.484771,19.044735,-8.327428, + -15.787825,18.966843,-8.420272,-16.105425,18.874092,-8.507456,-15.823349,18.948170,-8.433420,-15.862344,19.153934,-8.316184, + -16.187229,19.058891,-8.418224,-16.146360,19.070946,-8.525187,-15.549741,19.220879,-8.346712,-16.126963,18.853703,-8.415563, + -15.834168,18.936218,-8.346093,-16.644096,18.966145,-8.614705,-16.862307,18.691595,-8.672185,-16.606672,18.752914,-8.615984, + -16.649136,18.969091,-8.537628,-16.952322,18.864981,-8.621065,-16.937302,18.871826,-8.699579,-16.873363,18.686949,-8.604943, + -16.601383,18.747025,-8.531006,-20.362324,17.096737,-10.119329,-21.590849,15.968521,-10.502302,-20.580050,17.003750,-9.223250, + -21.787519,15.884527,-9.692879,-21.246126,16.594116,-9.487699,-21.038977,16.682585,-10.340252,-20.453949,17.207991,-10.143581, + -21.176958,16.448696,-9.485983,-20.860466,16.924339,-9.782454,-20.746191,16.764881,-9.767705,-20.972881,16.535854,-10.325884, + -20.719769,16.761053,-9.854707,-20.760008,17.057177,-9.564268,-20.659187,16.884329,-9.554455,-20.626282,16.878504,-9.639206, + -20.799900,16.728186,-9.720969,-20.719402,17.056961,-9.651697,-20.938490,16.862883,-9.737560,-20.834148,16.718283,-9.614825, + -20.968138,16.859457,-9.653644,-21.052645,16.778957,-9.548105,-20.911127,16.659006,-9.504572,-21.036524,16.797853,-9.633636, + -20.817680,16.992666,-9.548820,-20.880920,16.673666,-9.611391,-20.706793,16.823559,-9.529933,-20.736677,16.825478,-9.443895, + -20.844269,16.975941,-9.457684,-20.874855,16.630993,-9.913446,-20.824221,16.921366,-9.871755,-21.018818,16.752480,-9.928995, + -20.900425,16.619034,-9.805079,-21.044788,16.751207,-9.843822,-20.674747,17.113691,-9.234852,-21.884903,16.009737,-9.703547, + -21.685757,16.094790,-10.523155,-21.804028,16.114258,-9.621920,-21.580080,16.335413,-9.548523,-21.305202,16.572376,-9.452079, + -20.982256,16.864780,-9.340136,-21.144615,16.437420,-9.535662,-20.836691,16.700506,-9.443946,-20.870958,16.692804,-9.301066, + -21.173273,16.427830,-9.425230,-21.273924,16.574654,-9.549379,-20.954062,16.856842,-9.444656,-21.438032,16.173372,-9.620317, + -21.464714,16.176960,-9.533404,-21.661083,15.980778,-9.583656,-21.415543,16.185816,-9.607686,-21.777990,16.115591,-9.707068, + -21.543966,16.332321,-9.637867,-21.308426,16.566797,-9.556532,-21.520134,16.366638,-9.631708,-21.442345,16.174414,-9.510869, + -21.195915,16.417479,-9.438843,-21.175013,16.415396,-9.552049,-21.635509,15.992739,-9.692021,-21.341557,16.571733,-9.465966, + -21.555414,16.360796,-9.550425,-20.806803,16.736044,-9.383691,-20.747231,17.081505,-9.325345,-20.937170,16.907810,-9.402937, + -20.834906,16.717171,-9.314200,-20.617439,16.954712,-9.236712,-20.591627,16.961180,-9.312402,-20.770128,17.074146,-9.261417, + -20.980816,16.890501,-9.331666,-21.535822,16.035189,-10.354613,-22.431206,14.742764,-10.660095,-21.747396,15.946899,-9.456588, + -22.622318,14.663013,-9.848914,-22.274284,15.441950,-9.690335,-22.072987,15.525951,-10.544740,-21.648043,16.123449,-10.385880, + -22.176481,15.314442,-9.679830,-22.427408,15.224829,-9.858779,-22.289516,15.084074,-9.836607,-21.978170,15.397196,-10.521556, + -22.262726,15.078899,-9.923627,-22.082493,15.712990,-9.885577,-21.948206,15.565722,-9.865170,-21.913118,15.562361,-9.949177, + -22.050076,15.375013,-10.023791,-22.040985,15.716566,-9.972507,-22.213247,15.476789,-10.049129,-22.083641,15.363878,-9.917551, + -22.243212,15.471750,-9.965407,-22.364199,15.308962,-9.857393,-22.201763,15.223637,-9.805964,-22.350641,15.326204,-9.943716, + -22.178753,15.566593,-9.868182,-22.173126,15.238539,-9.913181,-22.035574,15.425562,-9.838844,-22.066923,15.425806,-9.753306, + -22.203108,15.549589,-9.776475,-22.457687,14.813325,-10.003214,-22.388762,15.225853,-9.947160,-22.632458,14.888060,-10.030233, + -22.482357,14.802147,-9.894556,-22.658888,14.886549,-9.945193,-21.862604,16.033913,-9.475176,-22.743340,14.764429,-9.867456, + -22.549820,14.845184,-10.688845,-22.572617,15.059095,-9.747243,-22.341135,15.397375,-9.660829,-22.316832,15.425545,-9.641253, + -22.076248,15.770206,-9.564819,-22.167040,15.270615,-9.738159,-21.896814,15.633507,-9.649196,-21.930161,15.629906,-9.515184, + -22.195499,15.258507,-9.618415,-22.285753,15.428986,-9.747104,-22.044043,15.761686,-9.659721,-22.176455,15.251446,-9.725677, + -22.203243,15.256620,-9.638657,-22.396086,14.974693,-9.696606,-21.881199,15.679644,-9.620786,-22.546186,15.060606,-9.832283, + -22.302488,15.398399,-9.749209,-21.841776,16.055819,-9.550218,-21.998272,15.816288,-9.643325,-21.912188,15.660408,-9.526492, + -21.731041,15.949425,-9.433479,-21.701591,15.954607,-9.544667,-22.371416,14.985870,-9.805264,-21.882011,16.051298,-9.462556, + -22.037537,15.801001,-9.565156,-22.601854,14.632360,-9.857024,-22.569746,15.043039,-9.843605,-22.762503,14.774467,-9.888519, + -22.621025,14.615804,-9.804171,-22.407402,14.963608,-9.756544,-22.387920,14.964582,-9.826006,-22.592575,15.039747,-9.751720, + -22.802105,14.754832,-9.810857,-4.252531,11.777815,-6.464035,-4.075864,11.393131,-6.453782,-4.310522,11.750528,-6.352178, + -4.395564,11.594910,-6.364512,-4.368766,11.589749,-6.511003,-3.939986,11.567119,-6.403057,-4.106914,11.382097,-6.332762, + -3.976480,11.550594,-6.291179,-7.218023,10.013522,-7.354145,-6.989128,10.361938,-7.279907,-7.219938,9.991723,-7.227099, + -7.054535,9.997570,-7.162222,-6.998700,10.005256,-7.300163,-7.207062,10.394572,-7.332323,-7.019286,10.355842,-7.158314, + -7.226615,10.385549,-7.215456,-6.114052,7.994438,-7.082110,-5.920208,7.619104,-7.053010,-6.174757,7.967936,-6.971512, + -6.251975,7.808138,-6.981676,-6.219639,7.799678,-7.126891,-5.794495,7.800860,-7.003327,-5.955107,7.610396,-6.932852, + -5.834241,7.786126,-6.892310,-7.416284,7.214185,-7.361681,-7.644162,7.441066,-7.637170,-7.316779,7.293012,-7.384146, + -7.288344,7.306177,-7.559130,-7.387395,7.197961,-7.585259,-7.690516,7.473863,-7.417891,-7.558457,7.532535,-7.632733, + -7.606293,7.557573,-7.422453,-7.854810,7.913922,-7.483046,-7.610859,7.624947,-7.673517,-7.956244,7.864612,-7.545490, + -7.921017,7.854265,-7.719425,-7.794396,7.930439,-7.700215,-7.658518,7.587590,-7.455249,-7.713191,7.560551,-7.706882, + -7.754174,7.529970,-7.495888,-8.094806,11.495726,-7.438284,-8.271928,11.253217,-7.736805,-8.164502,11.594898,-7.482180, + -8.142838,11.610986,-7.657887,-8.034961,11.508209,-7.655880,-8.347781,11.223334,-7.525473,-8.359653,11.340802,-7.755907, + -8.426214,11.308644,-7.551778,-8.361121,8.379951,-7.531461,-8.505806,8.691395,-7.779184,-8.241689,8.424369,-7.551017, + -8.211920,8.443172,-7.725263,-8.340790,8.375198,-7.756515,-8.537356,8.717758,-7.556435,-8.395143,8.749776,-7.770420, + -8.430671,8.770095,-7.557211,-2.224632,8.229828,-6.110286,-1.931824,8.502232,-6.249418,-2.139092,8.134747,-6.126472, + -2.071006,8.141912,-6.290528,-2.169290,8.247197,-6.328736,-1.970739,8.502364,-6.026274,-1.843177,8.414866,-6.233907, + -1.886709,8.418488,-6.021245,-2.590708,11.901724,-6.010150,-2.790277,12.159527,-6.280348,-2.491246,11.983739,-6.010535, + -2.442824,12.019314,-6.177840,-2.535407,11.914330,-6.228937,-2.862826,12.163734,-6.065810,-2.707984,12.250527,-6.254304, + -2.780756,12.248168,-6.049776,-2.222548,11.669862,-5.897649,-1.939035,11.410560,-6.075637,-2.315514,11.604887,-5.958928, + -2.277133,11.593291,-6.132115,-2.162390,11.686781,-6.114858,-1.983716,11.374804,-5.856472,-2.031167,11.331564,-6.107307, + -2.070078,11.303173,-5.895616,4.680664,10.293406,-4.118216,4.394303,10.252716,-4.427472,4.702093,10.413996,-4.158446, + 4.734608,10.414580,-4.333214,4.739208,10.265648,-4.334750,4.312365,10.279498,-4.218004,4.393952,10.377111,-4.443514, + 4.317268,10.395927,-4.241280,0.234632,8.147717,-5.466266,0.635554,8.112591,-5.597892,0.212586,8.029400,-5.512463, + 0.267838,8.019044,-5.681109,0.292800,8.165922,-5.683913,0.601025,8.090799,-5.375091,0.619962,7.988986,-5.612398, + 0.585875,7.975268,-5.398428,-11.996764,10.959337,-8.283538,-12.283126,10.918647,-8.592794,-11.975335,11.079926,-8.323769, + -11.942822,11.080511,-8.498536,-11.938220,10.931579,-8.500072,-12.365064,10.945429,-8.383327,-12.283477,11.043042,-8.608836, + -12.360161,11.061858,-8.406602,-14.103758,8.719261,-8.897209,-13.699694,8.712514,-9.023639,-14.109261,8.592333,-8.919081, + -14.050488,8.556592,-9.083000,-14.045097,8.702069,-9.114806,-13.734534,8.730362,-8.800534,-13.698599,8.587505,-9.013467, + -13.733928,8.611529,-8.800611,-4.181318,16.006121,-6.056253,-4.079907,16.339182,-6.297257,-4.055754,15.978127,-6.047905, + -3.984006,15.972900,-6.210466,-4.118986,15.984806,-6.272460,-4.139357,16.384663,-6.083470,-3.960115,16.328463,-6.261665, + -4.024004,16.370756,-6.058533,-3.470570,4.937006,-6.769929,-3.419413,5.119033,-6.748952,-3.310296,5.116016,-6.721271, + -3.493227,4.933130,-6.681037,-3.433507,5.108675,-6.660331,-3.332435,5.112229,-6.634414,-3.321533,4.863412,-6.637815, + -3.298277,4.867390,-6.729049,-3.473939,5.047717,-6.765960,-3.255208,4.943025,-6.623692,-3.233447,4.946748,-6.709064, + -3.489150,5.037169,-6.672962,-3.456697,13.719643,-6.193863,-3.476182,13.970816,-6.171088,-3.282579,13.936901,-6.123314, + -3.480186,13.709820,-6.105649,-3.488542,13.958015,-6.082428,-3.305530,13.927305,-6.037118,-3.337626,13.705978,-6.065598, + -3.313518,13.716059,-6.156139,-3.532327,13.849428,-6.199552,-3.240637,13.858829,-6.029059,-3.218079,13.868261,-6.113782, + -3.545843,13.836145,-6.106547,-6.869572,18.878725,-6.782806,-7.073235,19.028444,-6.773163,-6.932905,19.138351,-6.677547, + -6.893950,18.840424,-6.703001,-7.088346,18.996155,-6.690059,-6.956726,19.100927,-6.599569,-6.807258,18.934649,-6.628513, + -6.782238,18.973961,-6.710421,-7.013543,18.911417,-6.811095,-6.865700,19.100975,-6.573505,-6.842286,19.137758,-6.650150, + -7.029856,18.877243,-6.724061,-7.639605,12.706657,-7.442245,-7.536128,12.476122,-7.430693,-7.727175,12.436296,-7.483886, + -7.663003,12.700594,-7.353668,-7.569901,12.469296,-7.347087,-7.750038,12.430372,-7.397337,-7.797600,12.650629,-7.390135, + -7.773585,12.656853,-7.481046,-7.525347,12.611893,-7.418550,-7.832796,12.471489,-7.417973,-7.810324,12.477312,-7.503043, + -7.560271,12.604767,-7.330582,2.817919,7.068758,-5.113429,2.928679,7.291775,-5.068903,3.079450,7.160506,-5.038062, + 2.794521,7.062693,-5.024853,2.913380,7.277526,-4.980926,3.056587,7.154581,-4.951512,2.916334,6.983657,-4.995576, + 2.940349,6.989882,-5.086488,2.818258,7.218722,-5.103073,3.078064,7.062391,-4.953740,3.100536,7.068215,-5.038810, + 2.801805,7.204175,-5.010734,7.416415,10.978086,-3.631053,7.299248,11.126514,-3.651842,7.362092,11.217136,-3.629038, + 7.393016,10.972022,-3.542476,7.286093,11.123603,-3.562523,7.339229,11.211211,-3.542488,7.543465,11.077497,-3.493005, + 7.567481,11.083721,-3.583916,7.326055,11.039172,-3.650740,7.517481,11.178606,-3.499222,7.539954,11.184430,-3.584292, + 7.311746,11.035962,-3.557059,4.689761,5.496689,-4.525143,4.778247,5.701516,-4.405967,4.910844,5.558432,-4.352498, + 4.638259,5.476328,-4.451910,4.734623,5.672757,-4.332162,4.860523,5.538537,-4.280941,4.743802,5.386496,-4.399628, + 4.796661,5.407393,-4.474792,4.685861,5.642155,-4.487442,4.881991,5.447133,-4.293178,4.931454,5.466689,-4.363512, + 4.639701,5.612392,-4.410031,-4.078642,-3.469689,-7.676804,-3.935310,-3.710507,-7.655428,-3.961992,-3.827540,-7.670488, + -4.102040,-3.475753,-7.588228,-3.968438,-3.720215,-7.571849,-3.984855,-3.833466,-7.583939,-4.261908,-3.568316,-7.634286, + -4.237893,-3.562092,-7.725198,-4.017173,-3.596448,-7.669244,-4.221746,-3.788230,-7.645009,-4.199274,-3.782407,-7.730079, + -4.051454,-3.606455,-7.581304,-7.225923,-2.787544,-8.457547,-7.118005,-2.399014,-8.072605,-7.389211,-2.741590,-8.451856, + -7.464095,-2.741002,-8.230118,-7.296238,-2.823294,-8.170624,-7.035734,-2.334364,-8.351864,-7.265714,-2.330571,-8.100276, + -7.179562,-2.274686,-8.367020,-3.297713,10.655537,-6.175644,-3.644104,10.887975,-6.248331,-3.284599,10.641239,-6.303092, + -3.437387,10.583875,-6.373565,-3.494661,10.563515,-6.237516,-3.458036,11.001878,-6.187406,-3.611387,10.899022,-6.368909, + -3.433999,11.005874,-6.303715,-5.406192,7.563416,-6.925359,-5.723614,7.836829,-6.986901,-5.419942,7.560406,-6.798541, + -5.414861,7.758169,-6.764694,-5.378992,7.786994,-6.906422,-5.776512,7.594133,-7.011251,-5.753018,7.830095,-6.865157, + -5.800332,7.596544,-6.894853,-3.184178,12.527729,-6.082228,-2.817144,12.373692,-6.226643,-3.245573,12.443726,-6.158343, + -3.183838,12.456390,-6.324565,-3.104537,12.577103,-6.287909,-2.876863,12.310572,-6.017460,-2.877412,12.274329,-6.273830, + -2.932862,12.220444,-6.070964,-6.534708,14.735617,-6.779015,-6.448687,15.110764,-6.955548,-6.407922,14.713028,-6.773157, + -6.334191,14.740278,-6.932602,-6.468919,14.756058,-6.994280,-6.512871,15.114651,-6.738355,-6.328895,15.100044,-6.919956, + -6.397221,15.102455,-6.713900,-6.895674,22.420378,-4.164352,-7.215494,22.367908,-4.094611,-5.241105,22.881771,-4.000361, + -5.216426,22.888268,-4.097043,-5.223659,22.764929,-4.004795,-6.758867,22.674984,-4.522740,-5.143711,22.622177,-3.390345, + -5.348806,22.631744,-3.617672,-5.785125,22.698439,-5.254327,-5.650533,22.876766,-5.206565,-5.795965,22.856554,-5.246366, + -5.628959,22.719952,-5.211601,-6.543869,22.510708,-5.467610,-6.822735,22.468414,-5.539930,-4.752903,22.727036,-4.974969, + -4.993413,22.726223,-5.043286,-6.630617,22.715540,-5.257119,-6.560479,22.612823,-5.465006,-6.353427,22.717157,-3.261693, + -6.616695,22.597176,-5.247431,-6.683029,22.576176,-4.867630,-6.655975,22.583574,-4.973759,-6.696949,22.694538,-4.877317, + -6.204335,22.737816,-3.220895,-5.109974,22.798300,-4.562275,-6.321089,22.561363,-3.263816,-6.671658,22.701242,-4.976425, + -5.136449,22.791187,-4.458479,-5.129216,22.914526,-4.550727,-5.153895,22.908031,-4.454046,-5.197184,22.772041,-4.108590, + -6.161380,22.583193,-3.220133,-6.784159,22.668280,-4.423633,-6.743185,22.557316,-4.520074,-6.770238,22.549917,-4.413945, + -6.997961,22.504614,-4.015183,-6.399225,22.561666,-5.425912,-6.428968,22.774197,-5.419219,-6.546926,22.541349,-5.466320, + -6.859967,22.442911,-3.735699,-6.936038,22.441759,-4.061136,-6.902829,22.655319,-3.732480,-6.970907,22.512012,-4.121312, + -7.011882,22.622978,-4.024871,-6.986589,22.629681,-4.123978,-5.451382,22.719627,-3.606033,-5.444148,22.842964,-3.698280, + -5.468827,22.836470,-3.601599,-5.424906,22.726740,-3.709828,-6.467241,22.707392,-3.292229,-6.326167,22.726929,-3.253626, + -6.434426,22.493919,-3.298175,-6.283305,22.514521,-3.256845,-5.891192,22.633451,-5.286795,-5.773235,22.866299,-5.239695, + -5.910772,22.847185,-5.277335,-5.743492,22.653769,-5.246387,-5.614147,22.834520,-3.379793,-5.581333,22.621048,-3.385739, + -5.355162,22.661098,-3.628514,-5.117170,22.740088,-5.075028,-5.136750,22.953821,-5.065568,-4.969470,22.760406,-5.034621, + -6.810964,22.422947,-3.830214,-7.117152,22.367224,-3.676154,-6.671448,22.434441,-3.525176,-6.927426,22.378859,-3.260004, + -6.265624,22.486965,-3.282813,-6.361339,22.443266,-2.914587,-5.755645,22.562754,-3.308800,-5.712811,22.530624,-2.928530, + -5.478407,22.609100,-3.496755,-5.323303,22.590212,-3.151809,-6.941414,22.731316,-4.155149,-5.394546,22.942682,-3.608468, + -6.589609,22.821646,-5.458405,-5.039154,23.037163,-5.034081,-6.856704,22.733885,-3.821010,-6.717188,22.745378,-3.515972, + -6.311364,22.797903,-3.273609,-5.801385,22.873692,-3.299595,-5.524148,22.920038,-3.487551,-5.017332,22.826811,-5.042718, + -5.070117,22.812189,-4.838281,-5.087563,22.929031,-4.833847,-5.352011,22.857573,-3.733913,-5.359244,22.734236,-3.641666, + -6.894453,22.644289,-4.159611,-5.332769,22.741348,-3.745461,-6.878770,22.526621,-4.156945,-6.905824,22.519222,-4.050816, + -6.296526,22.707926,-3.353933,-6.279185,22.590929,-3.357890,-6.305969,22.583664,-3.252849,-6.666522,22.661200,-3.606216, + -6.651276,22.543705,-3.607616,-6.726322,22.530104,-3.529458,-5.789134,22.783123,-3.382242,-5.773053,22.666195,-3.390112, + -5.746564,22.666813,-3.285431,-5.446055,22.781652,-5.159061,-5.371984,22.879791,-5.132776,-5.452020,22.868670,-5.154680, + -5.360111,22.793491,-5.135548,-5.965941,22.738274,-3.278339,-5.883891,22.749643,-3.255886,-5.948144,22.652534,-3.279508, + -5.860251,22.664549,-3.255467,-6.180506,22.679562,-5.360064,-6.106435,22.777702,-5.333778,-6.186471,22.766579,-5.355682, + -6.094562,22.691402,-5.336550,-6.710252,22.633629,-3.442016,-6.628201,22.644997,-3.419564,-6.692455,22.547890,-3.443185, + -6.604562,22.559902,-3.419145,-12.528769,-14.136858,-9.089847,-12.329248,-14.312012,-8.891315,-13.926764,-13.337133,-9.709061, + -13.900610,-13.331011,-9.805378,-13.862857,-13.240246,-9.686589,-12.603591,-14.251566,-9.529422,-14.113837,-13.043890,-9.136342, + -13.884436,-13.204461,-9.260540,-12.881280,-13.650693,-10.552057,-13.098858,-13.686291,-10.611970,-12.976662,-13.772991,-10.585627, + -13.012371,-13.557454,-10.580303,-12.189896,-14.043316,-10.396300,-11.955270,-14.206739,-10.341269,-13.675630,-12.951678,-10.709311, + -13.492662,-13.119019,-10.677162,-12.362482,-14.238953,-10.235901,-12.244297,-14.128999,-10.416536,-13.478009,-13.928885,-8.587259, + -12.302090,-14.142488,-10.199229,-12.426764,-14.148995,-9.833848,-12.398199,-14.142495,-9.939639,-12.487158,-14.245461,-9.870519, + -13.603241,-13.839957,-8.614253,-13.691635,-13.221442,-10.229868,-13.400255,-13.793287,-8.557437,-12.460372,-14.239221,-9.969263, + -13.719639,-13.227901,-10.126431,-13.757391,-13.318666,-10.245220,-13.783545,-13.324789,-10.148903,-13.834854,-13.233788,-9.790026, + -13.534206,-13.697808,-8.586285,-12.630377,-14.257806,-9.430677,-12.541418,-14.154840,-9.499798,-12.569983,-14.161340,-9.394007, + -12.587671,-14.258818,-8.943333,-12.331631,-13.979478,-10.429370,-12.448467,-14.154440,-10.472212,-12.207664,-14.067683,-10.402662, + -12.767320,-14.102673,-8.732843,-12.565557,-14.173607,-8.989665,-12.874249,-14.286692,-8.773688,-12.559106,-14.252318,-9.049124, + -12.648065,-14.355284,-8.980004,-12.621279,-14.349044,-9.078749,-13.880546,-13.337724,-9.235916,-13.918298,-13.428489,-9.354705, + -13.944452,-13.434612,-9.258388,-13.852542,-13.331265,-9.339353,-13.386434,-14.001116,-8.567816,-13.504923,-13.916964,-8.593355, + -13.271280,-13.823329,-8.525226,-13.397994,-13.732944,-8.552511,-12.759268,-13.677463,-10.521659,-13.000071,-13.764219,-10.591209, + -12.884508,-13.846214,-10.566296,-12.883233,-13.589258,-10.548368,-13.957108,-13.518501,-9.007147,-13.841955,-13.340714,-8.964557, + -13.893619,-13.230881,-9.275948,-13.409014,-13.215341,-10.661659,-13.534254,-13.384092,-10.706296,-13.532979,-13.127136,-10.688368, + -12.740916,-14.060545,-8.829078,-12.587664,-14.218863,-8.560676,-12.979123,-13.955219,-8.617395,-12.909740,-14.072635,-8.270509, + -13.379640,-13.702389,-8.574324,-13.466375,-13.713043,-8.201463,-13.733094,-13.412111,-8.813711,-13.919253,-13.336147,-8.486532, + -13.846436,-13.268740,-9.098200,-14.094298,-13.128176,-8.848785,-12.698040,-14.394385,-9.152192,-14.053707,-13.461987,-9.322886, + -12.359167,-14.300843,-10.458645,-13.661934,-13.376546,-10.739508,-12.910188,-14.318071,-8.891423,-13.148394,-14.212747,-8.679741, + -13.548910,-13.959916,-8.636668,-13.902365,-13.669638,-8.876056,-14.015707,-13.526266,-9.160545,-13.540587,-13.208685,-10.695961, + -13.594963,-13.221394,-10.491813,-13.658870,-13.318281,-10.514284,-13.968130,-13.378613,-9.425426,-13.930378,-13.287848,-9.306638, + -12.671111,-14.299169,-9.149470,-13.902374,-13.281389,-9.410074,-12.608938,-14.202442,-9.119845,-12.637504,-14.208942,-9.014054, + -13.464290,-13.889073,-8.687549,-13.400447,-13.792115,-8.664575,-13.428751,-13.798596,-8.559880,-13.085081,-14.122353,-8.754693, + -13.020825,-14.026299,-8.728527,-13.002358,-14.062665,-8.627225,-13.814666,-13.600267,-8.927823,-13.748232,-13.504457,-8.907827, + -13.814548,-13.480447,-8.826059,-13.189803,-13.474742,-10.621511,-13.309544,-13.494332,-10.654484,-13.242294,-13.542048,-10.639985, + -13.261947,-13.423429,-10.637056,-13.725334,-13.681521,-8.756108,-13.794252,-13.632581,-8.770964,-13.682543,-13.606896,-8.739697, + -13.756261,-13.554352,-8.755572,-12.572681,-13.912582,-10.488467,-12.692423,-13.932173,-10.521439,-12.625174,-13.979887,-10.506941, + -12.644826,-13.861269,-10.504012,-13.118073,-14.121916,-8.585739,-13.186992,-14.072976,-8.600595,-13.075282,-14.047292,-8.569326, + -13.149000,-13.994746,-8.585203,-15.595967,14.745053,-9.226799,-15.576888,14.937767,-9.224017,-15.385002,14.918510,-9.206153, + -15.404082,14.725798,-9.208934,-15.632496,14.743038,-8.836625,-15.613416,14.935751,-8.833844,-15.421530,14.916496,-8.815979, + -15.440610,14.723783,-8.818761,-15.599021,14.744885,-9.194188,-15.579941,14.937597,-9.191406,-15.388055,14.918343,-9.173542, + -15.407135,14.725630,-9.176323,-15.670589,14.709800,-8.867301,-15.644167,14.976677,-8.863449,-15.378436,14.950010,-8.838709, + -15.404859,14.683133,-8.842561,-15.618223,14.749357,-8.911337,-15.600448,14.928894,-8.908745,-15.421681,14.910955,-8.892101, + -15.439457,14.731419,-8.894693,-15.589729,14.755363,-9.153377,-15.573000,14.924339,-9.150937,-15.404750,14.907455,-9.135273, + -15.421479,14.738480,-9.137712,-15.645753,14.729442,-8.875813,-15.623640,14.952797,-8.872589,-15.401242,14.930479,-8.851884, + -15.423356,14.707124,-8.855107,-15.586184,14.755560,-9.191247,-15.569454,14.924534,-9.188808,-15.401204,14.907650,-9.173143, + -15.417934,14.738676,-9.175583,-15.440747,14.695614,-8.848515,-15.438038,14.722984,-8.848120,-15.410786,14.720249,-8.845583, + -15.413495,14.692880,-8.845978,-15.431777,14.732368,-9.179835,-15.429727,14.753074,-9.179537,-15.409110,14.751004,-9.177617, + -15.411160,14.730298,-9.177916,-15.529885,14.829609,-8.795617,-15.605813,14.961702,-8.862594,-15.606767,14.934214,-8.862825, + -15.634136,14.935184,-8.865383,-15.633183,14.962675,-8.865151,-15.550901,14.929834,-9.189968,-15.551622,14.909039,-9.190143, + -15.572330,14.909773,-9.192078,-15.571608,14.930571,-9.191903,-15.393031,14.912626,-8.842927,-15.420298,14.915209,-8.845467, + -15.417739,14.942595,-8.845085,-15.390471,14.940010,-8.842546,-15.396955,14.892183,-9.175750,-15.417583,14.894138,-9.177671, + -15.415648,14.914854,-9.177383,-15.395020,14.912901,-9.175462,-15.656182,14.748755,-8.868409,-15.628958,14.745751,-8.865876, + -15.631935,14.718410,-8.866296,-15.659160,14.721414,-8.868830,-15.590237,14.772062,-9.194466,-15.569640,14.769790,-9.192549, + -15.571893,14.749105,-9.192866,-15.592489,14.751377,-9.194783,-15.440423,14.725042,-9.042435,-15.438262,14.746876,-9.042119, + -15.416522,14.744694,-9.040095,-15.418684,14.722860,-9.040410,-15.615472,14.765154,-9.030063,-15.593185,14.762695,-9.027989, + -15.595622,14.740313,-9.028333,-15.617909,14.742771,-9.030407,-15.402718,14.897543,-9.009222,-15.425044,14.899658,-9.011301, + -15.422949,14.922081,-9.010989,-15.400622,14.919966,-9.008909,-15.568821,14.935131,-9.054175,-15.569581,14.913219,-9.054359, + -15.591398,14.913994,-9.056398,-15.590638,14.935905,-9.056214,-15.606665,14.749365,-9.042851,-15.588746,14.930351,-9.040238, + -15.408537,14.912266,-9.023461,-15.426455,14.731281,-9.026073,-15.587107,14.870609,-8.613760,-15.591936,14.854597,-8.635597, + -15.577605,14.871906,-8.651461,-15.572776,14.887918,-8.629623,-15.427796,14.710621,-8.833011,-15.448424,14.712576,-8.834932, + -15.446488,14.733293,-8.834644,-15.425860,14.731339,-8.832723,-15.483220,14.785347,-8.643478,-15.492810,14.775837,-8.661502, + -15.487053,14.793680,-8.673981,-15.477463,14.803190,-8.655956,-15.694457,14.969141,-8.678724,-15.697020,14.942303,-8.684182, + -15.670055,14.940790,-8.689403,-15.667493,14.967628,-8.683945,-15.615843,14.922144,-8.854075,-15.620767,14.895330,-8.857742, + -15.597301,14.892958,-8.871897,-15.592378,14.919769,-8.868231,-1.277471,-1.601782,-1.182439,-1.208239,-1.438423,-1.104781, + -1.027458,-1.503647,-1.128743,-1.096690,-1.667006,-1.206401,-1.289495,-1.765786,-0.826726,-1.220262,-1.602427,-0.749068, + -1.039481,-1.667651,-0.773030,-1.108714,-1.831011,-0.850688,-1.278476,-1.615489,-1.152709,-1.209244,-1.452130,-1.075050, + -1.028463,-1.517355,-1.099012,-1.097695,-1.680714,-1.176670,-1.336779,-1.773445,-0.861403,-1.240903,-1.547218,-0.753859, + -0.990551,-1.637544,-0.787042,-1.086427,-1.863770,-0.894586,-1.278624,-1.730731,-0.893646,-1.214125,-1.578540,-0.821298, + -1.045704,-1.639306,-0.843621,-1.110203,-1.791496,-0.915970,-1.264296,-1.626065,-1.113353,-1.203592,-1.482828,-1.045261, + -1.045079,-1.540019,-1.066271,-1.105784,-1.683256,-1.134364,-1.308215,-1.757806,-0.865225,-1.227974,-1.568471,-0.775219, + -1.018447,-1.644067,-0.802991,-1.098688,-1.833402,-0.892997,-1.263129,-1.610147,-1.147879,-1.202425,-1.466910,-1.079787, + -1.043912,-1.524101,-1.100797,-1.104617,-1.667338,-1.168889,-1.118062,-1.842665,-0.888840,-1.108229,-1.819464,-0.877811, + -1.082554,-1.828727,-0.881214,-1.092386,-1.851928,-0.892243,-1.119863,-1.668076,-1.172953,-1.112424,-1.650524,-1.164609, + -1.093000,-1.657532,-1.167183,-1.100439,-1.675084,-1.175527,-1.165434,-1.729617,-0.771903,-1.207859,-1.568805,-0.765611, + -1.216023,-1.592553,-0.776836,-1.242277,-1.584799,-0.774148,-1.234113,-1.561051,-0.762923,-1.183237,-1.465692,-1.081784, + -1.189412,-1.483658,-1.090277,-1.209274,-1.477792,-1.088243,-1.203098,-1.459826,-1.079751,-1.014694,-1.665327,-0.803583, + -1.040423,-1.656192,-0.800241,-1.030732,-1.632940,-0.789193,-1.005003,-1.642075,-0.792535,-1.044048,-1.537397,-1.110140, + -1.063512,-1.530486,-1.107611,-1.056181,-1.512895,-1.099253,-1.036716,-1.519806,-1.101782,-1.312727,-1.741927,-0.848974, + -1.287149,-1.751418,-0.852486,-1.297233,-1.774527,-0.863481,-1.322811,-1.765036,-0.859970,-1.262886,-1.593449,-1.143380, + -1.243536,-1.600629,-1.146036,-1.251165,-1.618112,-1.154355,-1.270515,-1.610932,-1.151698,-1.121777,-1.732510,-1.051084, + -1.113933,-1.714003,-1.042286,-1.093452,-1.721392,-1.045001,-1.101295,-1.739900,-1.053799,-1.279024,-1.665773,-0.994311, + -1.258086,-1.673542,-0.997185,-1.266341,-1.692460,-1.006186,-1.287280,-1.684690,-1.003312,-1.038080,-1.604032,-0.957438, + -1.059147,-1.596552,-0.954701,-1.051212,-1.577513,-0.945655,-1.030145,-1.584993,-0.948392,-1.190857,-1.516422,-0.954674, + -1.197364,-1.535352,-0.963621,-1.218292,-1.529171,-0.961479,-1.211785,-1.510241,-0.952531,-1.275473,-1.675879,-1.013692, + -1.210454,-1.522460,-0.940760,-1.040674,-1.583716,-0.963264,-1.105693,-1.737134,-1.036196,-1.198709,-1.760859,-0.582314, + -1.208896,-1.764335,-0.607627,-1.191507,-1.745312,-0.617238,-1.181320,-1.741836,-0.591925,-1.100703,-1.839029,-0.870986, + -1.120168,-1.832118,-0.868458,-1.112837,-1.814527,-0.860100,-1.093372,-1.821438,-0.862628,-1.122911,-1.844490,-0.661092, + -1.135740,-1.842930,-0.679538,-1.126260,-1.823100,-0.684455,-1.113431,-1.824660,-0.666009,-1.280098,-1.623642,-0.582592, + -1.289956,-1.644204,-0.597976,-1.264708,-1.648958,-0.607801,-1.254850,-1.628396,-0.592417,-1.227406,-1.605005,-0.772364, + -1.239422,-1.625825,-0.785733,-1.218312,-1.626700,-0.803345,-1.206295,-1.605880,-0.789976,-8.162282,22.019342,-2.048495, + -8.045360,21.944595,-2.113308,-7.951681,21.808990,-2.061173,-7.945268,21.715429,-1.941770,-8.024749,21.700996,-1.808038, + -8.166030,21.769865,-1.737351,-8.264500,21.899679,-1.789302,-8.267817,21.999445,-1.907321,-8.151834,21.993259,-2.027618, + -8.054336,21.930929,-2.081663,-7.976220,21.817854,-2.038189,-7.970873,21.739838,-1.938623,-8.037149,21.727802,-1.827109, + -8.155485,21.785383,-1.767646,-8.237596,21.893631,-1.810966,-8.240361,21.976822,-1.909378,-8.024035,22.141470,-1.906578, + -8.193889,21.849440,-1.745777,-7.841356,21.990124,-1.904678,-7.836302,21.915136,-1.809521,-7.905792,21.896496,-1.707868, + -8.198153,21.859671,-1.744602,-8.101857,22.049526,-1.697270,-8.100867,22.122019,-1.795742,-8.180264,21.846581,-1.730045, + -7.922369,22.091389,-1.951390,-8.183720,21.865015,-1.731222,-8.165430,21.868042,-1.747498,-8.162371,21.849548,-1.748834, + -8.020157,21.949509,-1.652992,-8.182993,21.860123,-1.756396,-8.179232,21.849569,-1.760310,-7.971491,22.201302,-1.851386, + -7.872211,22.152603,-1.895427,-7.792917,22.054258,-1.850742,-7.787767,21.981489,-1.758667,-7.855471,21.963469,-1.659817, + -7.964738,22.014574,-1.607999,-8.043936,22.111565,-1.650973,-8.049182,22.185688,-1.744759,-7.925921,22.073660,-1.759278, + -8.156081,22.085732,-1.829994,-7.866400,21.838821,-1.856258,-7.938974,21.823835,-1.739043,-8.064397,22.103575,-1.953828, + -7.957679,22.040167,-2.009510,-8.063965,21.884167,-1.677535,-8.152270,21.998213,-1.724518,-7.888237,21.953871,-1.804291, + -7.872211,21.921951,-1.962024,-8.192642,21.853279,-1.741262,-8.207970,21.851351,-1.725443,-8.186330,21.859587,-1.734402, + -8.184608,21.850363,-1.733806,-8.200852,21.857754,-1.719523,-8.200555,21.848621,-1.717305,-8.233261,21.904259,-1.709626, + -8.222628,21.906998,-1.707149,-8.227986,21.905222,-1.699631,-8.224746,22.000177,-1.746080,-8.213772,22.000446,-1.743592, + -8.219382,22.002985,-1.736488,-8.175624,22.092981,-1.808691,-8.167208,22.089378,-1.805160,-8.175021,22.096960,-1.805915, + -7.953546,21.911758,-2.057813,-7.949210,21.921614,-2.054925,-7.968237,21.915499,-2.072357,-7.964421,21.931829,-2.063879, + -7.981530,21.927588,-2.046622,-7.984783,21.910166,-2.052871,-7.963537,21.916929,-2.043014,-7.967194,21.905655,-2.043583, + -7.955031,21.917109,-2.060235,-7.940829,21.922119,-2.076423,-7.961689,21.925608,-2.063420,-7.963592,21.917439,-2.067669, + -7.948225,21.930304,-2.078662,-7.948813,21.922913,-2.084441,-7.920314,21.952904,-2.078023,-7.930266,21.958155,-2.077749, + -7.927319,21.955961,-2.086403,-7.935319,22.027704,-2.053459,-7.946430,22.028831,-2.054866,-7.941268,22.034163,-2.060638, + -7.990911,22.099407,-2.001572,-8.001432,22.098553,-2.006454,-7.993667,22.107590,-2.002667,-8.080628,22.125141,-1.916071, + -8.072639,22.125483,-1.913628,-8.079523,22.131384,-1.915688,-8.012463,21.816746,-1.743372,-8.062367,21.838789,-1.719734, + -7.927446,21.939453,-1.674385,-7.959523,21.953211,-1.659920,-8.009912,21.806484,-1.728205,-8.059815,21.828527,-1.704566, + -7.924917,21.929203,-1.659207,-7.956994,21.942961,-1.644742,-8.010195,21.759745,-1.784221,-8.037786,21.773775,-1.769819, + -7.929265,21.883923,-1.713541,-7.947148,21.892582,-1.704952,-8.007628,21.749479,-1.769059,-8.035220,21.763510,-1.754658, + -7.926712,21.873663,-1.698373,-7.944595,21.882322,-1.689784,-8.069020,22.024239,-2.020824,-8.041324,22.011930,-2.031617, + -7.971425,22.114975,-1.924894,-7.954202,22.106560,-1.931846,-8.068211,22.037264,-2.033921,-8.040514,22.024956,-2.044714, + -7.970603,22.127995,-1.937995,-7.953380,22.119579,-1.944948,-7.940716,21.838043,-2.022792,-7.938431,21.817850,-1.995359, + -7.866029,21.949316,-1.927896,-7.865181,21.936195,-1.910700,-7.924241,21.831926,-2.028538,-7.921956,21.811733,-2.001105, + -7.849554,21.943190,-1.933630,-7.848705,21.930069,-1.916434,-25.118826,23.071463,-6.463415,-23.143377,23.469387,-5.978059, + -22.721956,21.440588,-6.029951,-24.697405,21.042664,-6.515307,-22.970331,23.471027,-6.912139,-22.953581,22.806797,-5.982963, + -22.811615,22.123348,-6.000443,-24.775982,23.108795,-7.413920,-24.887203,21.705254,-6.510404,-25.029167,22.388702,-6.492922, + -22.570162,21.607075,-7.006564,-24.375813,21.244843,-7.508345,-23.597412,21.374601,-10.378509,-21.705452,21.754150,-9.852742, + -24.472954,23.201563,-6.304728,-23.789387,23.339258,-6.136780,-23.367966,21.310459,-6.188672,-24.051533,21.172766,-6.356620, + -23.013939,22.082594,-6.050154,-22.955601,21.599564,-6.072205,-23.748306,23.141495,-6.141838,-23.294861,23.232834,-6.030429, + -24.092613,21.370529,-6.351562,-24.545921,21.279217,-6.462937,-24.826843,22.429459,-6.443213,-24.885183,22.912487,-6.421162, + -23.155905,22.766043,-6.032672,-24.684877,21.746008,-6.460693,-24.431873,23.003799,-6.309786,-23.409046,21.508224,-6.183614, + -23.959942,21.431320,-6.777253,-23.674496,23.165781,-6.520542,-22.968451,22.129295,-6.448939,-22.865730,21.650831,-6.473177, + -23.210938,23.258776,-6.391721,-24.423380,21.338350,-6.906041,-24.665867,22.467831,-6.848823,-24.768587,22.946295,-6.824584, + -23.108217,22.780312,-6.415960,-24.526100,21.816814,-6.881802,-24.305149,23.039265,-6.695797,-23.329288,21.557837,-6.601998, + -24.556133,21.131176,-6.950933,-22.664173,21.510723,-6.425168,-23.083471,23.463772,-6.326229,-24.975431,23.084225,-6.851994, + -24.835667,22.433208,-6.884974,-24.695900,21.782192,-6.917953,-22.803940,22.161739,-6.392188,-22.943707,22.812756,-6.359208, + -23.714184,23.337244,-6.501501,-24.344837,23.210728,-6.676755,-23.925539,21.257679,-6.775694,-23.294886,21.384195,-6.600440, + -23.993166,21.417185,-8.749992,-22.319576,21.752926,-8.284910,-22.672510,23.477795,-8.260056,-23.670088,21.326820,-10.496497, + -24.451204,21.164230,-7.446018,-24.497969,21.360369,-7.419332,-23.712517,21.534184,-10.493509,-24.257172,21.203156,-7.392097, + -23.466780,21.367605,-10.440000,-24.053841,21.335892,-8.764305,-24.091196,21.518454,-8.761675,-23.873999,21.371971,-8.714329, + -22.906412,23.514612,-6.881650,-22.872242,23.315210,-6.860663,-23.100445,23.475689,-6.935571,-22.607098,23.540541,-8.231784, + -22.569742,23.357981,-8.234415,-22.786940,23.504463,-8.281761,-21.641361,21.736252,-9.933369,-22.513296,21.544992,-6.950449, + -22.704279,21.506680,-7.003522,-21.841606,21.696081,-9.989017,-22.554409,21.745922,-6.947554,-21.679573,22.014898,-9.924387, + -22.263157,21.688107,-8.267977,-22.440290,21.652573,-8.317201,-22.296219,21.941570,-8.259357,-24.451706,21.147953,-7.543644, + -24.140636,21.451746,-7.440673,-24.484594,21.139429,-7.419147,-24.275600,22.250711,-7.415154,-24.628553,22.161091,-7.494460, + -24.661562,22.152536,-7.369502,-22.462847,21.540173,-7.029119,-22.844414,21.770565,-7.063496,-22.495199,21.527864,-6.903810, + -22.892986,23.546532,-6.884691,-23.149700,23.253525,-6.979750,-22.925102,23.534313,-6.760300,-23.011915,22.455460,-7.016077, + -22.716614,22.533409,-6.932176,-22.748850,22.521147,-6.807326,-23.837006,23.329790,-7.202168,-23.760851,23.068367,-7.282107, + -23.869240,23.317528,-7.077318,-23.469391,21.365112,-7.141993,-23.493011,21.639078,-7.263741,-23.436382,21.373667,-7.266952, + -22.716324,21.563698,-7.065774,-22.604239,21.586184,-7.034626,-23.075026,21.595129,-8.530337,-23.178913,21.574289,-8.559207, + -22.728987,21.625622,-7.064880,-22.616901,21.648108,-7.033732,-23.086702,21.652699,-8.529853,-23.190590,21.631857,-8.558722, + -24.335388,21.223862,-7.442691,-24.223303,21.246347,-7.411543,-23.074299,21.565624,-8.528819,-23.178186,21.544783,-8.557689, + -24.348051,21.285786,-7.441797,-24.235966,21.308271,-7.410649,-23.085976,21.623192,-8.528335,-23.189863,21.602350,-8.557204, + -24.409027,21.128532,-6.594297,-24.221048,21.166365,-6.545283,-24.377567,21.154018,-6.737987,-24.178047,21.193975,-6.677683, + -24.403469,21.105133,-6.597311,-24.215490,21.142965,-6.548297,-24.372009,21.130619,-6.741002,-24.172491,21.170574,-6.680698, + -23.999645,21.268425,-6.857450,-24.189487,21.225883,-6.893786,-24.020298,21.240459,-6.712269,-24.222775,21.197165,-6.758848, + -23.993813,21.245171,-6.861020,-24.183655,21.202629,-6.897355,-24.014465,21.217205,-6.715839,-24.216942,21.173910,-6.762416, + -23.408274,21.405643,-6.916672,-23.563175,21.374859,-6.960768,-23.435974,21.379986,-6.798894,-23.600599,21.349031,-6.852338, + -23.403624,21.386345,-6.919714,-23.558525,21.355562,-6.963811,-23.431324,21.360687,-6.801937,-23.595951,21.329733,-6.855380, + -24.849106,21.092636,-5.583830,-24.891401,21.270027,-5.559694,-24.673620,21.127840,-5.535064,-24.428881,21.364727,-6.940657, + -24.461121,21.522293,-6.938386,-24.273661,21.395866,-6.897522,-25.174318,22.865334,-5.549064,-25.007286,22.898508,-5.479505, + -25.137135,22.683609,-5.551682,-24.787445,22.967173,-6.863794,-24.634563,22.997843,-6.821309,-24.754713,22.807198,-6.866099, + -23.451969,23.218365,-5.073406,-23.421066,23.038021,-5.054425,-23.627457,23.183161,-5.122173,-23.195583,23.263554,-6.422845, + -23.163343,23.105988,-6.425116,-23.350803,23.232416,-6.465980,-23.096428,21.437004,-5.135629,-23.269156,21.402355,-5.183629, + -23.133612,21.618729,-5.133010,-22.862986,21.674000,-6.589402,-23.015869,21.643330,-6.631887,-22.895720,21.833975,-6.587097, + -25.392820,23.047138,-5.770367,-25.410748,23.042492,-5.702502,-24.957891,20.883055,-5.821490,-24.975687,20.878443,-5.754122, + -25.144312,21.971867,-5.781833,-25.162174,21.967237,-5.714217,-22.827187,21.302942,-5.250298,-22.844286,21.294298,-5.182520, + -23.273264,23.461472,-5.155049,-23.290239,23.452890,-5.087768,-23.087112,22.372738,-5.193785,-23.104151,22.364126,-5.126255, + -24.293930,23.226927,-5.469550,-24.310968,23.218315,-5.402020,-23.886408,21.120562,-5.453305,-24.492634,22.039068,-4.073535, + -23.868546,21.125191,-5.520922,-24.380629,22.606211,-4.800231,-24.147985,21.559677,-4.892215,-23.651903,22.237865,-4.771419, + -24.760208,22.016560,-4.900363,-24.688879,21.512527,-4.948516,-23.800940,22.833954,-4.720589,-23.464344,21.589449,-4.824305, + -24.845863,22.466156,-4.859494,-24.261486,22.123238,-4.821489,-23.672665,20.933773,-5.708506,-24.235422,22.191326,-4.960406, + -23.840738,20.818846,-5.602022,-25.275841,21.804914,-5.913613,-25.326668,21.957491,-5.916594,-25.182987,21.833261,-6.045894, + -23.693422,20.867678,-5.559764,-25.234045,21.980171,-6.027104,-24.281857,22.075447,-4.980605,-24.197691,22.011606,-4.971190, + -24.194498,22.192953,-5.111172,-22.822897,22.474176,-5.230199,-22.772070,22.321600,-5.227218,-22.837692,22.466059,-5.393413, + -24.155731,22.031195,-5.150825,-22.797560,22.316317,-5.370843,-23.821381,20.888824,-5.728648,-24.105467,22.108501,-4.940195, + -24.233711,22.086754,-5.128801,-24.380098,23.423170,-5.544270,-24.232784,23.472002,-5.502012,-24.322798,23.377304,-5.691022, + -24.065315,22.115486,-5.121170,-24.185007,23.419420,-5.629521,-22.692602,21.385441,-5.430553,-24.307606,22.136385,-4.846310, + -22.749453,21.205750,-5.299123,-24.905581,20.807297,-5.819361,-25.045464,20.879974,-5.851336,-24.841652,20.869808,-5.956943, + -22.680569,21.348385,-5.271163,-24.980450,20.941832,-5.966458,-24.260448,22.019131,-4.841880,-24.157215,22.033258,-4.822091, + -24.261095,22.141302,-4.995376,-23.260336,23.589804,-5.207294,-23.120453,23.517126,-5.175318,-23.246206,23.547523,-5.365206, + -24.118689,22.046947,-5.003036,-23.118336,23.472668,-5.314332,-22.767757,21.248165,-5.437585,-24.159550,22.170271,-4.813328, + -24.215553,22.036282,-4.990535,-25.487623,23.016371,-5.848878,-25.418741,23.159008,-5.820918,-25.397533,22.999544,-5.984982, + -24.113640,22.173573,-4.993034,-25.333303,23.133989,-5.936591,-22.853569,21.604118,-8.440009,-22.749411,21.625013,-8.411064, + -22.287891,21.592461,-10.081290,-22.399157,21.570139,-10.112210,-23.466751,21.481106,-8.610410,-23.362677,21.501984,-8.581488, + -22.873798,21.475245,-10.266600,-22.983778,21.453251,-10.302019,-22.865393,21.661936,-8.439175,-22.761234,21.682831,-8.410230, + -22.300465,21.654408,-10.080743,-22.411728,21.632088,-10.111663,-23.478575,21.538925,-8.609575,-23.374500,21.559803,-8.580653, + -22.886370,21.537191,-10.266051,-22.996351,21.515200,-10.301472,-22.876966,23.225170,-6.860198,-22.902020,23.374725,-6.895803, + -22.345003,21.940912,-8.273040,-22.311184,21.805073,-8.234179,-22.937634,23.218563,-6.876676,-22.962688,23.368118,-6.912282, + -22.400482,21.929796,-8.288828,-22.366661,21.793957,-8.249968,3.070027,21.504076,1.264081,3.270109,23.563046,1.394171, + 5.271707,23.337643,1.883161,5.071625,21.278673,1.753071,3.548281,23.539541,0.486139,3.938837,23.540497,1.559599, + 4.613122,23.464565,1.724327,3.377763,21.646450,0.311493,4.402898,21.301222,1.587642,3.728611,21.377155,1.422915, + 4.132305,21.856548,-2.631999,4.310974,23.840128,-2.449005,5.402722,23.335293,0.889499,5.232204,21.442202,0.714854, + 6.058000,21.637548,-2.138299,6.236669,23.621128,-1.955305,3.135444,22.177256,1.306614,3.204679,22.889723,1.351629, + 5.206276,22.664320,1.840619,5.137042,21.951853,1.795604,4.592630,23.253685,1.711003,5.057091,23.158911,1.822814, + 3.399791,22.867752,1.399295,3.445718,23.340368,1.429156,4.941929,21.973825,1.747938,4.896016,21.501350,1.718086, + 3.749104,21.588034,1.436238,3.284643,21.682810,1.324428,3.918344,23.329618,1.546275,4.423390,21.512102,1.600966, + 3.330556,22.155285,1.354280,5.011164,22.686293,1.792953,5.032522,22.031326,1.310906,3.492339,22.868713,1.023944, + 4.659832,23.230953,1.313200,5.135855,23.178524,1.416740,3.536115,23.354719,1.068780,4.988757,21.545444,1.266081, + 3.865040,21.669210,1.021661,3.389018,21.721640,0.918121,4.012137,23.302290,1.172320,4.512735,21.597874,1.162541, + 3.432783,22.207521,0.962946,5.092078,22.692518,1.371904,5.142299,21.350538,1.297656,5.320967,23.334118,1.480650, + 3.377883,23.548130,1.058009,3.199215,21.564548,0.875015,3.846910,21.493212,1.015896,4.494604,21.421875,1.156776, + 4.673273,23.405455,1.339770,4.025578,23.476791,1.198889,3.318322,22.886873,0.997005,3.258766,22.225679,0.936007, + 5.201849,22.011669,1.358648,5.261405,22.672863,1.419646,3.804122,21.797195,-0.992612,5.499485,21.604389,-0.557963, + 5.657532,23.359024,-0.396091,3.962169,23.551830,-0.830740,6.104407,21.531979,-2.228787,5.264991,21.360058,0.805652, + 5.064306,21.380531,0.779653,5.900590,21.555159,-2.281041,5.283315,21.563486,0.824419,6.123607,21.745132,-2.209123, + 5.556014,21.520555,-0.541490,5.376576,21.540962,-0.587494,5.572998,21.709106,-0.524095,4.130569,21.808638,-2.732014, + 3.350273,21.619873,0.316889,3.362012,21.818474,0.359198,4.149479,22.018581,-2.712646,3.547765,21.597414,0.367521, + 4.337501,21.785105,-2.678962,3.722074,21.711908,-1.013602,3.738801,21.897621,-0.996469,3.904255,21.691191,-0.966895, + 3.523338,23.618305,0.495562,3.711429,23.594566,0.569235,3.505014,23.414877,0.476795,3.920834,23.637295,-0.829110, + 4.100272,23.616888,-0.783107,3.903850,23.448744,-0.846505,6.293918,23.659555,-2.033883,5.465414,23.380880,0.954525, + 5.447378,23.180649,0.936053,6.275007,23.449612,-2.053251,5.267921,23.403339,0.903893,6.086985,23.683090,-2.086935, + 5.731805,23.395594,-0.367499,5.715076,23.209883,-0.384632,5.549623,23.416313,-0.414206,3.315889,21.570086,0.241782, + 3.649343,21.916563,0.333522,3.282759,21.561499,0.367199,5.302658,21.335323,0.717530,5.108609,21.737120,0.693777, + 5.269770,21.326799,0.842028,4.329770,21.855818,0.502638,4.309118,21.483860,0.491785,4.276109,21.475306,0.616742, + 5.505637,23.410889,0.875538,5.173558,23.117105,0.818349,5.476183,23.401890,1.001840,3.499626,23.639801,0.481998, + 3.700611,23.293530,0.504198,3.470387,23.630867,0.607374,4.482148,23.175589,0.684487,4.492587,23.491163,0.709406, + 4.463240,23.482199,0.835245,3.448370,22.630915,0.346122,3.731055,22.607716,0.337050,3.419023,22.621948,0.471961, + 5.346786,22.396782,0.929150,5.118272,22.432716,0.736982,5.379796,22.405336,0.804191,3.772660,21.750885,-1.070109, + 4.065292,22.061304,-0.991621,3.739530,21.742300,-0.944692,5.529078,21.531317,-0.520402,5.393106,21.898371,-0.664960, + 5.561966,21.539839,-0.644900,5.728364,23.390116,-0.440684,5.451916,23.131321,-0.552076,5.698447,23.381168,-0.314501, + 3.935357,23.600079,-0.850549,4.110600,23.291216,-0.832587,3.905659,23.591198,-0.725290,5.635745,22.482653,-0.433570, + 5.403002,22.519886,-0.626766,5.668754,22.491207,-0.558528,4.924578,21.629282,-0.746330,5.030593,21.617226,-0.719150, + 5.457499,21.669090,-2.396396,5.344251,21.681971,-2.425430,4.300462,21.700260,-0.906338,4.406392,21.688213,-0.879180, + 4.861048,21.738987,-2.571681,4.749085,21.752165,-2.605217,4.929857,21.687819,-0.740928,5.035872,21.675760,-0.713748, + 5.463244,21.731806,-2.390956,5.349997,21.744686,-2.419991,4.305741,21.758797,-0.900936,4.411672,21.746748,-0.873778, + 4.866793,21.801702,-2.566242,4.754830,21.814880,-2.599777,5.009617,21.435598,0.680029,5.123701,21.422625,0.709277, + 4.682449,21.672640,-0.762128,4.577210,21.684608,-0.789108,5.015272,21.498291,0.685814,5.129355,21.485317,0.715062, + 4.687819,21.731199,-0.757072,4.582581,21.743168,-0.784053,3.495969,21.600714,0.368117,3.610053,21.587740,0.397365, + 4.674696,21.643991,-0.762791,4.569457,21.655960,-0.789772,3.501623,21.663406,0.373903,3.615707,21.650431,0.403151, + 4.680066,21.702551,-0.757735,4.574828,21.714520,-0.784716,5.406089,23.174147,0.861726,5.416674,23.291658,0.872568, + 5.600244,22.558071,-0.501121,5.590433,22.449154,-0.511169,5.345226,23.181074,0.846123,5.355811,23.298588,0.856964, + 5.543777,22.564533,-0.515967,5.533967,22.455616,-0.526016,5.249635,21.486666,0.778914,5.260221,21.604179,0.789755, + 5.626968,22.550203,-0.491254,5.617157,22.441284,-0.501303,5.188772,21.493595,0.763311,5.199358,21.611107,0.774152, + 5.570501,22.556665,-0.506100,5.560690,22.447748,-0.516149,3.348872,21.942137,0.369972,3.362134,21.793873,0.324099, + 3.904348,23.362747,-0.776409,3.891329,23.500202,-0.731212,3.409734,21.935207,0.385575,3.422997,21.786945,0.339702, + 3.960999,23.356331,-0.762256,3.947979,23.493786,-0.717059,5.110926,21.557821,1.621517,5.129330,21.754301,1.636597, + 5.132427,21.566290,1.474031,5.150186,21.776413,1.497970,5.134821,21.555393,1.624782,5.153224,21.751871,1.639862, + 5.156322,21.563860,1.477296,5.174081,21.773985,1.501235,5.185990,21.929510,1.285919,5.168242,21.732399,1.284462, + 5.170094,21.930681,1.434351,5.151121,21.719521,1.424755,5.209978,21.927273,1.288584,5.192229,21.730160,1.287127, + 5.194082,21.928442,1.437016,5.175108,21.717281,1.427420,5.277689,22.510702,1.125097,5.263044,22.348179,1.109032, + 5.263746,22.500547,1.247571,5.248132,22.327042,1.223731,5.297550,22.508650,1.127254,5.282904,22.346127,1.111188, + 5.283606,22.498495,1.249727,5.267992,22.324991,1.225888,4.849513,21.408960,1.044499,4.659818,21.431480,0.992741, + 4.891785,21.432714,0.903018,4.686216,21.454533,0.854987,4.851825,21.439701,1.049016,4.662130,21.462219,0.997257, + 4.894097,21.463453,0.907535,4.688529,21.485271,0.859504,4.675882,21.392204,1.110814,4.861654,21.370876,1.175659, + 4.624455,21.375591,1.250073,4.826154,21.352589,1.311958,4.678220,21.423048,1.114704,4.863992,21.401718,1.179547, + 4.626793,21.406433,1.253961,4.828492,21.383430,1.315847,4.951079,21.399399,1.012528,5.109217,21.381420,1.051968, + 4.919106,21.384712,1.131172,5.090166,21.365374,1.166966,4.953218,21.424934,1.015768,5.111357,21.406954,1.055207, + 4.921246,21.410248,1.134412,5.092305,21.390909,1.170206,4.754440,21.337055,2.641409,4.572937,21.355572,2.617895, + 4.771012,21.521040,2.658382,4.971054,21.541348,1.226155,4.816183,21.558960,1.186450,4.985712,21.704084,1.241168, + 3.022734,21.572037,2.199363,3.033351,21.751654,2.237628,3.201350,21.551723,2.245155,3.372824,21.702518,0.876877, + 3.387261,21.862804,0.891664,3.530063,21.684635,0.917189,3.179257,23.379456,2.360958,3.349370,23.357985,2.427589, + 3.162685,23.195471,2.343985,3.544372,23.364300,1.036110,3.699243,23.346687,1.075815,3.529713,23.201565,1.021097, + 4.935706,23.164722,2.776052,4.919394,22.983631,2.759346,4.757090,23.185036,2.730260,5.143149,23.164955,1.299203, + 5.128712,23.004669,1.284416,4.985910,23.182837,1.258891,2.834789,21.378727,1.960451,2.816862,21.374081,2.028316, + 4.963863,21.125519,2.487674,4.946067,21.120905,2.555041,3.900473,21.285917,2.232111,3.882611,21.281288,2.299727, + 5.176885,23.352985,2.676037,5.162897,23.347895,2.744880,3.038632,23.602888,2.193614,3.024747,23.597834,2.261953, + 4.101639,23.442442,2.450060,4.087702,23.437370,2.518652,2.976617,22.517736,2.074119,2.962680,22.512663,2.142710, + 5.027919,22.269636,2.651803,3.659437,22.253338,3.766217,5.045781,22.274265,2.584186,3.353489,22.383615,2.899207, + 4.406605,22.268631,3.087733,3.931223,22.958860,2.952731,3.783374,21.832745,3.015559,4.277541,21.738609,3.107164, + 3.326095,23.008621,2.845677,4.597618,22.928946,3.068678,3.335525,21.895744,2.934283,3.838533,22.345747,3.005078, + 5.331201,22.362398,2.439394,3.818316,22.362902,2.850449,5.353037,22.192253,2.592263,4.038357,21.086964,2.169308, + 3.882898,21.084694,2.128086,4.075587,21.155840,2.025108,5.349104,22.352745,2.602212,3.920065,21.155979,2.006255, + 3.912564,22.280817,2.869726,3.997223,22.342079,2.887836,3.866425,22.371639,2.702067,4.108462,23.712166,2.357173, + 4.263921,23.714436,2.398395,4.149290,23.663521,2.205879,4.036165,22.351439,2.706704,4.293886,23.660549,2.266091, + 5.325903,22.206156,2.449517,3.933373,22.463341,2.879270,3.953737,22.299707,2.720207,2.786271,22.481339,1.955952, + 2.782338,22.641830,1.965901,2.882233,22.491915,1.823276,3.983473,22.466969,2.700694,2.876605,22.645327,1.854512, + 5.190478,23.467512,2.466012,3.816639,22.301727,2.982742,5.303415,23.386681,2.649062,5.050170,21.152037,2.505785, + 4.943717,21.036955,2.469786,5.047677,21.203114,2.349874,5.190688,23.499275,2.626992,4.936892,21.093309,2.335311, + 3.938377,22.311451,3.015566,3.956212,22.415943,3.018983,3.863269,22.317003,2.834418,2.938677,23.643057,2.105514, + 3.045130,23.758139,2.141513,3.019228,23.612209,1.965932,3.999652,22.420071,2.838681,3.119088,23.719183,2.021853, + 5.291243,23.354826,2.507135,3.828743,22.456589,2.988093,3.973231,22.328970,2.864285,2.848830,21.265453,1.905043, + 2.736103,21.378048,1.882974,2.927098,21.317448,1.770529,3.883864,22.464733,2.811152,2.815408,21.427299,1.770765, + 5.646594,22.785343,-0.442106,5.656431,22.894545,-0.432032,6.238185,22.983793,-2.062158,6.227678,22.867142,-2.072919, + 5.588688,22.142466,-0.501414,5.598517,22.251581,-0.491348,6.187867,22.365147,-2.140314,6.178564,22.248898,-2.155591, + 5.589767,22.791811,-0.456675,5.599603,22.901014,-0.446600,6.177414,22.990746,-2.078107,6.166906,22.874094,-2.088869, + 5.531861,22.148935,-0.515983,5.541690,22.258051,-0.505916,6.127096,22.372099,-2.156263,6.117792,22.255850,-2.171541, + 3.261693,23.215523,1.265076,3.271798,23.404318,1.276139,3.314505,23.252155,1.129645,3.318201,23.423586,1.143411, + 3.284530,23.212784,1.272722,3.303482,23.409197,1.287984,3.337342,23.249418,1.137292,3.349885,23.428465,1.155256, + 3.265368,23.129311,1.201998,3.250919,22.966766,1.185950,3.228951,23.121597,1.319946,3.214777,22.947950,1.296243, + 3.284451,23.126991,1.207806,3.270002,22.964447,1.191758,3.248034,23.119278,1.325754,3.233860,22.945631,1.302052, + -11.280675,21.193184,-4.424775,-10.746097,21.079985,-6.678542,-10.567685,20.801556,-7.903204,-10.805197,20.845686,-7.967653, + -11.212889,21.167833,-6.207690,-11.170934,21.002304,-5.663344,-11.138062,21.111786,-5.668100,-10.763176,21.272011,-6.628961, + -10.843246,21.271294,-6.671381,-10.562210,21.151508,-7.877823,-10.796053,21.159065,-7.943783,-10.812590,20.811880,-5.750242, + -11.351108,21.333815,-6.048532,-11.223988,21.109097,-5.728209,-11.642118,21.080030,-5.622133,-11.301802,21.341328,-6.231818, + -11.543829,21.542774,-6.039396,-10.854653,20.838947,-4.844951,-10.829092,20.990879,-4.933851,-11.642411,21.622305,-5.265518, + -11.278292,20.985931,-5.518511,-11.094568,21.815067,-5.347898,-11.360159,20.720667,-5.001604,-11.521997,20.968864,-6.167108, + -10.950649,21.166050,-6.294636,-11.074536,20.766796,-5.778627,-10.693930,20.972319,-5.881119,-10.854348,21.431538,-6.052505, + -11.244378,20.622267,-6.001020,-12.079380,20.270916,-5.058709,-10.970525,20.327351,-6.959114,-10.496328,20.277086,-8.107662, + -10.534084,20.031942,-8.139147,-10.896898,19.786232,-6.126279,-11.538589,19.990877,-6.913658,-11.394884,20.150188,-6.451000, + -11.505543,20.178753,-6.445711,-11.159612,20.324949,-7.021282,-11.146836,20.237839,-7.042721,-10.835591,20.289721,-8.196441, + -10.837961,20.047636,-8.218345,-11.179782,20.523655,-6.696447,-11.226388,19.416780,-6.205595,-11.506582,20.083796,-6.490269, + -11.580077,19.606520,-6.396212,-11.073748,19.478924,-6.368739,-11.962477,19.696859,-6.794579,-11.403991,20.554239,-5.881407, + -11.671268,20.840305,-6.038162,-12.323095,19.711771,-6.194049,-11.044725,19.931284,-5.786587,-11.836362,20.535637,-6.869113, + -11.225335,19.958437,-5.826495,-11.022842,19.498810,-6.051554,-10.898423,19.729216,-6.356026,-10.859431,19.957853,-6.053158, + -10.997156,20.011272,-6.172841,-11.266972,19.580360,-5.953889,-11.171710,19.723257,-6.309433,-10.811130,19.745743,-5.968756, + -16.148113,-9.332878,-7.910350,-15.153006,-9.560671,-9.860260,-14.763770,-9.676188,-11.035719,-14.916689,-9.865283,-11.093788, + -15.353951,-10.178191,-9.105186,-15.813078,-9.582063,-9.817538,-15.609921,-9.577734,-9.349785,-15.692432,-9.500129,-9.333704, + -15.319043,-9.462509,-9.909454,-15.350540,-9.540995,-9.941998,-15.053391,-9.488562,-11.099403,-15.173959,-9.693488,-11.149987, + -15.239457,-9.325750,-9.562509,-15.822094,-10.326607,-9.205997,-15.739809,-9.575516,-9.389163,-16.037565,-9.965021,-9.348337, + -15.658524,-10.324532,-9.370366,-16.326668,-9.646815,-9.706460,-15.420239,-9.302621,-8.736507,-15.513216,-8.904396,-8.839540, + -16.634005,-9.541595,-9.085672,-15.411949,-10.027910,-8.741407,-15.806068,-8.973283,-9.688099,-15.556133,-9.911391,-8.765575, + -15.604495,-10.375631,-9.057216,-15.383121,-10.195121,-9.339492,-15.237287,-10.058180,-9.014679,-15.331195,-9.928809,-9.117586, + -15.777481,-10.200235,-8.934334,-15.624354,-10.074148,-9.275742,-15.299028,-10.276401,-8.959764,-14.954266,-8.998909,-7.399712, + -14.542852,-9.046174,-9.681499,-14.523208,-9.204863,-10.939905,-14.708693,-9.042715,-10.982531,-14.907025,-8.808651,-9.173293, + -14.951638,-9.046771,-8.656785,-14.869379,-8.967500,-8.650562,-14.463757,-8.878854,-9.608205,-14.533915,-8.834817,-9.644942, + -14.347130,-8.908755,-10.873143,-14.547318,-8.779767,-10.921900,-14.732359,-9.373065,-8.789720,-14.946346,-8.620141,-8.986468, + -14.945602,-8.919895,-8.704665,-15.324468,-8.756817,-8.575063,-14.899619,-8.612373,-9.170418,-15.012108,-8.347466,-8.939432, + -14.756062,-9.453703,-7.886951,-14.659371,-9.322659,-7.958492,-15.059371,-8.337324,-8.156748,-15.053312,-9.028757,-8.508097, + -14.487272,-8.425177,-8.251932,-15.254710,-9.289202,-8.022434,-15.273978,-8.836184,-9.136254,-14.679204,-8.925408,-9.277203, + -14.982834,-9.281079,-8.805691,-14.550310,-9.274051,-8.908056,-14.465340,-8.776083,-9.011969,-15.201618,-9.292985,-9.031933, + -22.649385,20.581804,-6.844305,-21.801601,20.766062,-8.994971,-21.120945,20.831896,-10.063392,-21.077232,20.585924,-10.073413, + -21.949295,20.375404,-8.472585,-22.024368,20.553026,-7.935661,-22.127779,20.547483,-7.984292,-21.987333,20.695629,-9.007910, + -21.950687,20.614536,-9.025001,-21.443039,20.727566,-10.155643,-21.367144,20.496634,-10.156109,-21.908623,20.935564,-8.047418, + -22.125053,20.217451,-8.345520,-22.081072,20.458809,-8.015250,-21.994743,20.094593,-7.798861,-22.072380,20.232460,-8.527404, + -22.267319,19.971334,-8.354210,-22.274849,21.028633,-7.223238,-22.381433,20.989399,-7.360134,-22.615234,19.974184,-7.651445, + -22.040068,20.480726,-7.770443,-22.887785,20.410088,-7.933897,-21.985716,20.570848,-7.193223,-21.713079,20.157766,-8.289227, + -21.977709,20.607134,-8.620323,-21.793745,20.701323,-7.989212,-22.029087,20.973906,-8.249822,-22.331261,20.648703,-8.512356, + -21.537426,20.555010,-8.099152,-21.388842,20.036562,-6.908454,-20.969133,20.756790,-8.945461,-20.592812,21.036560,-10.097270, + -20.353584,21.075855,-10.036114,-20.830568,21.130630,-8.032834,-20.549614,20.342831,-8.644429,-20.906237,20.497408,-8.314262, + -20.906731,20.385717,-8.289474,-20.896761,20.571440,-8.951087,-20.814140,20.608246,-8.945593,-20.486874,20.702057,-10.092209, + -20.262712,20.774874,-10.032715,-21.194828,20.538857,-8.715495,-20.391268,20.930529,-7.897471,-20.804775,20.408573,-8.298759, + -20.399508,20.509304,-8.038661,-20.420124,21.027399,-8.106183,-20.231577,20.061121,-8.328521,-21.484699,20.446758,-7.926199, + -21.612732,20.080231,-8.090848,-20.390808,19.813381,-7.692773,-21.055674,20.998629,-7.732522,-20.978399,19.895395,-8.702419, + -21.020288,20.815081,-7.729798,-20.573662,21.117889,-7.838170,-20.690107,21.111876,-8.222454,-21.020617,21.121378,-8.032196, + -20.987949,20.956902,-8.121785,-20.624691,20.878883,-7.711441,-20.636417,20.866058,-8.105907,-20.876802,21.248333,-7.899351, + -11.609765,37.543217,0.578866,-11.190057,38.263447,-1.458140,-10.813734,38.543213,-2.609949,-10.574509,38.582512,-2.548793, + -11.051491,38.637283,-0.545513,-10.770538,37.849487,-1.157108,-11.127161,38.004063,-0.826941,-11.127653,37.892372,-0.802153, + -11.117685,38.078094,-1.463766,-11.035065,38.114899,-1.458272,-10.707797,38.208710,-2.604887,-10.483636,38.281528,-2.545393, + -11.415751,38.045513,-1.228174,-10.612190,38.437183,-0.410151,-11.025699,37.915230,-0.811438,-10.620430,38.015961,-0.551340, + -10.641047,38.534054,-0.618862,-10.452501,37.567776,-0.841200,-11.705623,37.953411,-0.438878,-11.833654,37.586884,-0.603527, + -10.611732,37.320038,-0.205452,-11.276596,38.505283,-0.245202,-11.199323,37.402050,-1.215098,-11.241211,38.321735,-0.242477, + -10.794585,38.624542,-0.350849,-10.911031,38.618530,-0.735133,-11.241540,38.628033,-0.544876,-11.208872,38.463554,-0.634464, + -10.845613,38.385536,-0.224120,-10.857340,38.372711,-0.618586,-11.097727,38.754986,-0.412031,-17.008345,34.087822,-2.127869, + -16.160561,34.272076,-4.278535,-15.479903,34.337914,-5.346956,-15.436193,34.091942,-5.356977,-16.308254,33.881420,-3.756149, + -16.383327,34.059044,-3.219226,-16.486738,34.053501,-3.267856,-16.346292,34.201645,-4.291474,-16.309647,34.120552,-4.308564, + -15.801999,34.233582,-5.439207,-15.726103,34.002647,-5.439673,-16.267582,34.441582,-3.330982,-16.484013,33.723469,-3.629084, + -16.440031,33.964825,-3.298815,-16.353703,33.600609,-3.082426,-16.431339,33.738476,-3.810968,-16.626278,33.477348,-3.637774, + -16.633808,34.534649,-2.506804,-16.740393,34.495415,-2.643699,-16.974194,33.480198,-2.935010,-16.399027,33.986740,-3.054008, + -17.246744,33.916103,-3.217461,-16.344675,34.076862,-2.476788,-16.072039,33.663780,-3.572791,-16.336668,34.113148,-3.903888, + -16.152704,34.207336,-3.272776,-16.388046,34.479919,-3.533386,-16.690220,34.154720,-3.795920,-15.896384,34.061028,-3.382715, + 10.954980,12.147213,0.885592,10.923159,12.333940,-1.307215,11.066140,12.535512,-2.526017,11.091204,12.783562,-2.507143, + 10.402678,12.747993,-0.565929,11.362610,12.675526,-0.949193,11.027462,12.447783,-0.639526,11.123655,12.421729,-0.583335, + 11.117393,12.350287,-1.266841,11.108551,12.439197,-1.281940,11.405145,12.544821,-2.435851,11.395105,12.787521,-2.426593, + 10.995371,12.107707,-0.999122,10.692654,13.133688,-0.429909,11.137331,12.522084,-0.610635,11.110445,12.982757,-0.440053, + 10.645430,13.091492,-0.652992,11.645008,12.960698,-0.603889,10.795927,11.966687,-0.189288,11.131254,11.713293,-0.223790, + 11.667017,12.869569,0.090456,10.379214,12.559784,-0.216200,11.650693,12.138177,-0.823969,10.558025,12.543474,-0.164138, + 10.448604,13.025012,-0.407161,10.510547,12.837355,-0.756757,10.350670,12.566724,-0.540603,10.533572,12.534711,-0.581437, + 10.620673,12.936881,-0.211169,10.724580,12.843895,-0.580577,10.247671,12.763184,-0.468197,7.804560,5.234788,0.759395, + 8.547464,5.924185,-1.194346,9.018695,6.134449,-2.325842,9.242606,6.033864,-2.278308,8.858769,6.030901,-0.254375, + 8.685456,5.313040,-0.981182,8.462316,5.579667,-0.608083,8.403060,5.482337,-0.597835,8.511537,5.731501,-1.229083, + 8.601145,5.718617,-1.225144,8.932822,5.797299,-2.371631,9.161560,5.732987,-2.320316,8.240080,5.824319,-0.977877, + 9.126655,5.613857,-0.179146,8.501824,5.449851,-0.611752,8.898572,5.284945,-0.372090,9.153795,5.741306,-0.370971, + 8.806653,4.863715,-0.728746,7.942354,5.780643,-0.187341,7.641243,5.563568,-0.387478,8.538701,4.643955,-0.119803, + 8.596842,5.992539,0.042620,8.085634,5.168688,-1.063604,8.530378,5.819387,0.019152,9.069879,5.857543,-0.082805, + 8.969023,5.970151,-0.454850,8.692268,6.121972,-0.240649,8.633848,5.979973,-0.352761,8.900319,5.664348,0.015749, + 8.884977,5.718220,-0.375106,8.880894,6.134123,-0.103826,10.255444,5.166544,1.613530,10.790022,5.053345,-0.640236, + 10.968433,4.774916,-1.864899,10.730922,4.819047,-1.929347,10.323231,5.141194,-0.169384,10.365185,4.975664,0.374961, + 10.398057,5.085145,0.370205,10.772943,5.245372,-0.590655,10.692873,5.244654,-0.633075,10.973908,5.124868,-1.839518, + 10.740066,5.132426,-1.905478,10.723529,4.785242,0.288064,10.185011,5.307176,-0.010227,10.312132,5.082457,0.310097, + 9.894001,5.053391,0.416173,10.234317,5.314689,-0.193513,9.992290,5.516135,-0.001091,10.681465,4.812308,1.193355, + 10.707026,4.964240,1.104455,9.893707,5.595666,0.772788,10.257827,4.959291,0.519794,10.441550,5.788428,0.690407, + 10.175960,4.694027,1.036702,10.014121,4.942225,-0.128802,10.585469,5.139410,-0.256330,10.461582,4.740157,0.259678, + 10.842189,4.945678,0.157187,10.681770,5.404898,-0.014200,10.291740,4.595627,0.037285,8.748207,4.496024,1.150651, + 9.485290,4.422277,-1.046921,9.956056,4.153211,-2.193715,9.764459,4.006485,-2.259100,9.034171,4.232919,-0.590907, + 9.111275,4.237144,-0.025655,9.059546,4.335309,-0.053533,9.334217,4.551520,-1.037035,9.282967,4.487846,-1.076151, + 9.714812,4.403751,-2.240312,9.551305,4.234007,-2.299831,9.508725,4.342418,-0.081978,8.801361,4.277096,-0.465075, + 9.007676,4.263251,-0.109395,8.717091,3.967053,0.012086,8.853893,4.286778,-0.647361,8.518570,4.288137,-0.493282, + 9.348268,4.480484,0.799637,9.272372,4.589102,0.680971,8.297835,4.401286,0.250630,9.028303,4.174251,0.122435, + 8.564609,4.905871,0.115349,9.089641,4.017935,0.684630,8.946761,3.884731,-0.501976,9.232780,4.401459,-0.683001, + 9.356980,4.122642,-0.093213,9.498391,4.515378,-0.246073,9.087818,4.692851,-0.502829,9.363517,3.866702,-0.276640, + 9.423767,5.459915,0.401377,9.669260,5.644510,-1.232325,9.660314,5.846635,-2.118819,9.718952,6.014341,-2.095237, + 9.688857,5.834402,-0.792559,9.482951,5.700052,-0.465779,9.557316,5.665552,-0.463502,9.795881,5.620242,-1.171187, + 9.808158,5.683566,-1.178819,9.898844,5.793210,-2.059482,9.932055,5.963408,-2.042430,9.338192,5.505554,-0.638132, + 9.788679,5.868482,-0.631745,9.571512,5.737155,-0.481534,9.565176,5.994494,-0.308954,9.819822,5.877515,-0.763986, + 9.946593,5.968516,-0.550395,9.214015,5.318717,-0.028168,9.331980,5.303422,-0.074074,9.884244,5.843443,-0.005941, + 9.456160,5.739774,-0.345187,9.990831,5.473670,-0.175346,9.194590,5.706795,-0.017498,9.567022,6.055720,-0.712207, + 9.682227,5.680284,-0.916754,9.330863,5.692289,-0.595818,9.461943,5.436994,-0.734291,9.820395,5.526324,-0.748497, + 9.278958,5.875461,-0.717150,11.076998,4.331370,0.799429,11.322491,4.515965,-0.834273,11.313544,4.718090,-1.720767, + 11.372183,4.885797,-1.697185,11.342088,4.705857,-0.394508,11.136182,4.571507,-0.067727,11.210546,4.537007,-0.065451, + 11.449112,4.491697,-0.773135,11.461389,4.555021,-0.780767,11.552074,4.664665,-1.661431,11.585286,4.834864,-1.644379, + 10.991423,4.377009,-0.240080,11.441910,4.739937,-0.233693,11.224743,4.608611,-0.083483,11.218407,4.865950,0.089098, + 11.473053,4.748970,-0.365934,11.599824,4.839972,-0.152343,10.867246,4.190173,0.369884,10.985210,4.174877,0.323978, + 11.537475,4.714898,0.392111,11.109390,4.611229,0.052865,11.644062,4.345125,0.222706,10.847820,4.578250,0.380553, + 11.220253,4.927176,-0.314156,11.335458,4.551739,-0.518702,10.984094,4.563745,-0.197766,11.115173,4.308449,-0.336239, + 11.473625,4.397779,-0.350445,10.932189,4.746916,-0.319098,3.693111,-5.317058,-3.207564,3.938604,-5.132463,-4.841266, + 3.929658,-4.930338,-5.727760,3.988296,-4.762631,-5.704178,3.958201,-4.942571,-4.401501,3.752295,-5.076921,-4.074720, + 3.826660,-5.111421,-4.072444,4.065225,-5.156731,-4.780128,4.077501,-5.093407,-4.787760,4.168188,-4.983763,-5.668424, + 4.201399,-4.813564,-5.651371,3.607536,-5.271419,-4.247073,4.058023,-4.908491,-4.240686,3.840856,-5.039817,-4.090476, + 3.834520,-4.782478,-3.917895,4.089166,-4.899458,-4.372927,4.215938,-4.808456,-4.159336,3.483358,-5.458255,-3.637109, + 3.601324,-5.473551,-3.683015,4.153588,-4.933530,-3.614882,3.725503,-5.037199,-3.954128,4.260175,-5.303303,-3.784287, + 3.463934,-5.070178,-3.626440,3.836367,-4.721252,-4.321149,3.951571,-5.096689,-4.525695,3.600207,-5.084683,-4.204760, + 3.731287,-5.339979,-4.343232,4.089738,-5.250648,-4.357439,3.548302,-4.901512,-4.326091,1.508724,-3.400578,-2.667570, + 2.245806,-3.474324,-4.865142,2.716572,-3.743391,-6.011935,2.524975,-3.890116,-6.077321,1.794687,-3.663682,-4.409128, + 1.871791,-3.659458,-3.843876,1.820063,-3.561293,-3.871754,2.094733,-3.345081,-4.855256,2.043483,-3.408756,-4.894372, + 2.475328,-3.492850,-6.058533,2.311821,-3.662594,-6.118052,2.269242,-3.554183,-3.900199,1.561878,-3.619506,-4.283296, + 1.768192,-3.633351,-3.927616,1.477607,-3.929549,-3.806135,1.614409,-3.609823,-4.465582,1.279086,-3.608464,-4.311502, + 2.108784,-3.416118,-3.018584,2.032888,-3.307499,-3.137250,1.058352,-3.495316,-3.567591,1.788819,-3.722350,-3.695786, + 1.325125,-2.990730,-3.702872,1.850157,-3.878667,-3.133591,1.707277,-4.011870,-4.320197,1.993296,-3.495142,-4.501222, + 2.117497,-3.773960,-3.911433,2.258907,-3.381224,-4.064294,1.848335,-3.203751,-4.321050,2.124033,-4.029900,-4.094861, + 2.582924,-4.173043,-2.436693,3.117503,-4.286242,-4.690459,3.295914,-4.564671,-5.915122,3.058402,-4.520539,-5.979570, + 2.650711,-4.198392,-4.219607,2.692666,-4.363923,-3.675262,2.725538,-4.254441,-3.680018,3.100424,-4.094214,-4.640879, + 3.020354,-4.094933,-4.683298,3.301389,-4.214719,-5.889741,3.067547,-4.207160,-5.955701,3.051010,-4.554345,-3.762159, + 2.512492,-4.032411,-4.060450,2.639612,-4.257130,-3.740126,2.221482,-4.286196,-3.634050,2.561798,-4.024898,-4.243736, + 2.319771,-3.823452,-4.051314,3.008945,-4.527278,-2.856868,3.034507,-4.375347,-2.945768,2.221189,-3.743920,-3.277436, + 2.585308,-4.380296,-3.530429,2.769031,-3.551159,-3.359816,2.503441,-4.645559,-3.013522,2.341602,-4.397362,-4.179025, + 2.912951,-4.200177,-4.306554,2.789063,-4.599430,-3.790545,3.169670,-4.393909,-3.893036,3.009251,-3.934689,-4.064423, + 2.619221,-4.743959,-4.012938,5.750622,-3.790927,-1.104302,6.557170,-3.492947,-3.258075,7.204085,-3.259189,-4.323913, + 7.346698,-3.463677,-4.304967,6.558130,-3.852783,-2.694310,6.387637,-3.668221,-2.182118,6.298654,-3.721680,-2.230217, + 6.418596,-3.635747,-3.263511,6.486524,-3.695268,-3.270861,6.960045,-3.498041,-4.404753,7.125105,-3.674467,-4.377934, + 6.339342,-3.286353,-2.337254,6.457642,-4.055736,-2.550443,6.379607,-3.785259,-2.250412,6.598156,-4.054907,-1.992620, + 6.508824,-4.039036,-2.732605,6.431441,-4.338265,-2.530966,5.924587,-3.270307,-1.531167,5.851419,-3.364667,-1.663009, + 6.077291,-4.408526,-1.834853,6.394750,-3.722797,-2.009661,5.663360,-4.159270,-2.167430,6.376031,-3.558620,-1.446673, + 6.853449,-3.930800,-2.485781,6.443676,-3.671144,-2.868207,6.538057,-3.443296,-2.251609,6.224741,-3.323413,-2.543269, + 6.099749,-3.770792,-2.767364,6.837442,-3.479102,-2.342607,5.248903,-4.724276,-1.900602,5.257788,-4.353054,-4.070024, + 5.445639,-4.102961,-5.273652,5.545735,-3.876884,-5.236461,4.895540,-3.863855,-3.281795,5.783772,-4.193148,-3.701581, + 5.397492,-4.333013,-3.399406,5.481517,-4.391791,-3.348670,5.448000,-4.400181,-4.035058,5.466732,-4.311872,-4.042915, + 5.771890,-4.205107,-5.194485,5.836855,-3.972589,-5.166111,5.259667,-4.615596,-3.782996,5.290956,-3.597850,-3.126116, + 5.525090,-4.298467,-3.368553,5.642213,-3.867600,-3.161970,5.231225,-3.604717,-3.350084,6.142870,-4.037791,-3.344904, + 5.033275,-4.756637,-2.980282,5.274416,-5.096389,-3.045577,6.141597,-4.189334,-2.660845,4.818366,-4.064647,-2.947115, + 5.894169,-4.801290,-3.628142,4.983978,-4.139032,-2.902517,5.025532,-3.628421,-3.103667,5.024040,-3.795937,-3.468641, + 4.790648,-4.022079,-3.268861,4.954571,-4.104799,-3.318180,5.163887,-3.780986,-2.920992,5.231208,-3.869825,-3.299780, + 4.753478,-3.810385,-3.178023,-6.644444,-14.261431,-5.564857,-6.198110,-13.877088,-7.807872,-6.038083,-13.441637,-8.988519, + -5.837966,-13.303262,-8.930911,-6.029808,-13.776773,-7.168400,-6.376300,-13.840806,-6.719718,-6.318394,-13.938704,-6.732059, + -6.072787,-14.017685,-7.743446,-6.008358,-13.953968,-7.743283,-5.807494,-13.702633,-8.945497,-5.634498,-13.540013,-8.893371, + -6.694827,-13.908375,-6.977008,-5.890029,-13.852802,-6.952374,-6.245076,-13.864784,-6.744856,-6.050019,-13.607609,-6.457204, + -5.845659,-13.837221,-7.136412,-5.630372,-13.881904,-6.840035,-6.992367,-14.159739,-6.158265,-6.868662,-14.259270,-6.238455, + -5.807232,-14.097159,-6.107016,-6.376853,-13.802027,-6.542895,-5.976549,-14.560907,-6.423787,-6.706758,-13.707912,-6.066907, + -5.994818,-13.448919,-7.000854,-6.158353,-13.917916,-7.368116,-6.555496,-13.700927,-6.882103,-6.606200,-14.061373,-7.137276, + -6.123910,-14.238422,-7.182444,-6.468312,-13.425649,-7.007860,-7.342851,-14.091836,-5.910144,-7.262716,-14.296153,-8.100146, + -7.153319,-14.234302,-9.337385,-7.288954,-14.025914,-9.363677,-7.998920,-14.194295,-7.437219,-7.167104,-13.706181,-7.815948, + -7.318823,-14.044053,-7.465367,-7.233361,-13.995404,-7.406897,-7.125417,-14.156045,-8.066340,-7.185736,-14.095773,-8.096998, + -6.903786,-14.001539,-9.255556,-7.062521,-13.820654,-9.289810,-7.097564,-14.378147,-7.757628,-8.024815,-13.697250,-7.377017, + -7.281969,-13.914098,-7.451953,-7.604747,-13.552815,-7.366339,-8.013148,-13.792410,-7.588169,-7.157817,-13.259587,-7.531739, + -7.247314,-14.490034,-6.932673,-6.825784,-14.479283,-6.926320,-7.154111,-13.211921,-6.832727,-7.936054,-14.300847,-7.059095, + -6.622993,-13.918522,-7.600843,-7.791776,-14.193646,-7.007700,-8.150248,-13.929791,-7.331414,-7.950855,-14.086863,-7.642608, + -7.930005,-14.361827,-7.379010,-7.763497,-14.277953,-7.416241,-7.981305,-13.860304,-7.125458,-7.805703,-13.921597,-7.473757, + -8.138998,-14.265093,-7.341431 + PolygonVertexIndex: 13,14,10,-12,48,47,-43,47,45,-43,45,46,-43,46,48,-43,98,15,9,-98,15,16,12,-10,96,7,15,-99,43,44,3,-5, + 35,32,36,-40,34,35,39,-39,33,34,38,-38,41,32,-36,41,35,-35,41,34,-34,41,33,-33,29,30,26,-28,31,28,18,-20, + 28,29,27,-19,93,25,31,-95,25,24,28,-32,32,33,37,-37,23,22,21,-21,38,39,20,-22,37,38,21,-23,36,37,22,-24, + 0,44,-44,0,6,-45,0,5,-7,0,43,-6,44,6,2,-4,6,5,1,-3,5,43,4,-2,39,36,-41,20,39,-41,36,23, + -41,23,20,-41,1,4,47,-49,2,1,48,-47,4,3,45,-48,3,2,46,-46,94,31,19,-96,51,178,188,-57,52,51,56,-58, + 177,52,57,-188,186,182,-55,186,54,52,-178,55,182,-186,54,55,51,-53,55,185,178,-52,54,182,-56,71,59,53,-71,60,71,70, + -62,71,76,73,-60,187,57,58,-197,119,121,124,-123,64,67,65,-67,205,64,66,-198,66,65,119,-121,65,121,-120,197,66,120,-284, + 62,198,207,-68,63,62,67,-65,69,63,-212,64,205,-212,63,64,-212,61,74,215,-193,53,72,75,-71,59,73,72,-54,70,75,74, + -62,85,99,100,-89,83,80,-90,85,92,-100,91,92,85,-80,80,79,88,-90,79,85,-89,81,86,92,-92,30,94,95,-27,14,98, + 97,-11,16,13,11,-13,91,79,-79,79,80,-79,80,90,-79,81,91,-79,92,243,227,-100,99,227,273,111,-101,87,225,256,-105,268, + 110,106,-262,112,111,-231,111,273,-231,270,112,-231,68,69,211,-114,208,68,113,-212,62,63,69,-69,198,62,68,-209,50,114,115,-78, + 241,118,112,-271,89,88,100,-119,101,90,80,-84,101,83,89,-119,86,243,-93,84,101,-118,118,100,111,-113,117,101,-119,77,221,261, + -107,222,17,107,-263,77,115,-117,49,82,-143,86,81,-115,102,49,87,-105,103,82,49,-103,60,218,215,-75,60,61,192,-219,60,74, + 75,-77,60,76,-72,116,115,-85,103,102,109,-111,225,87,-143,87,49,-143,82,226,-143,114,81,-79,90,115,-79,115,114,-79,104,256, + 267,-109,226,82,103,-258,108,267,262,-108,105,109,108,-108,106,110,109,-106,102,104,108,-110,50,77,106,-106,17,50,105,-108,257,103, + 110,-269,17,86,114,-51,84,115,90,-102,17,222,243,-87,8,14,-14,7,16,-16,24,29,-29,24,93,30,-30,93,94,-31,8,96, + 98,-15,7,8,13,-17,121,207,286,-125,283,120,123,-291,120,119,122,-124,67,207,121,-66,286,284,-125,290,123,-286,123,122,-286,124, + 284,204,-123,122,204,-286,241,117,-119,138,136,135,-140,174,168,-174,173,168,-172,171,168,-173,172,168,-175,251,250,134,-141,140,134,137, + -142,249,251,140,-133,169,129,128,-171,161,165,162,-159,160,164,165,-162,159,163,164,-161,167,161,-159,167,160,-162,167,159,-161,167,158, + -160,155,153,152,-157,157,145,144,-155,154,144,153,-156,246,247,157,-152,151,157,154,-151,158,162,163,-160,149,146,147,-149,164,147,146, + -166,163,148,147,-165,162,149,148,-164,125,169,-171,125,170,-132,125,131,-131,125,130,-170,170,128,127,-132,131,127,126,-131,130,126,129, + -170,165,166,-163,146,166,-166,162,166,-150,149,166,-147,126,174,173,-130,127,172,174,-127,129,173,171,-129,128,171,172,-128,247,248,145, + -158,179,189,188,-179,180,190,189,-180,177,187,190,-181,186,183,-183,186,177,180,-184,184,185,-183,183,180,179,-185,184,179,178,-186,183, + 184,-183,213,212,181,-194,194,195,212,-214,213,193,216,-221,232,241,-293,187,196,191,-191,280,287,289,-283,201,203,202,-207,205,197,203, + -202,203,281,280,-203,202,280,-283,197,283,281,-204,199,206,207,-199,200,201,206,-200,210,211,-201,201,211,-206,200,211,-202,195,192,215, + -218,181,212,219,-215,193,181,214,-217,212,195,217,-220,236,239,253,-253,234,240,-230,236,252,-246,244,228,236,-246,229,240,239,-229,228, + 239,-237,231,244,245,-238,156,152,248,-248,139,135,250,-252,141,137,136,-139,244,224,-229,228,224,-230,229,224,-243,231,224,-245,245,252, + 227,-244,252,253,271,273,-228,238,259,256,-226,268,261,263,-270,272,230,-272,271,230,-274,270,230,-273,209,274,211,-211,208,211,274,-210, + 199,209,210,-201,198,208,209,-200,176,223,276,-276,241,270,272,-280,240,279,253,-240,254,234,229,-243,254,279,240,-235,237,245,-244,235, + 278,-255,279,272,271,-254,278,279,-255,223,263,261,-222,222,262,264,-144,223,277,-277,175,142,-234,237,275,-232,255,259,238,-176,258,255, + 175,-234,194,217,215,-219,194,218,192,-196,194,220,219,-218,194,213,-221,277,235,-277,258,269,266,-256,225,142,-239,238,142,-176,233,142, + -227,275,224,-232,242,224,-277,276,224,-276,259,265,267,-257,226,257,258,-234,265,264,262,-268,260,264,265,-267,263,260,266,-270,255,266, + 265,-260,176,260,263,-224,143,264,260,-177,257,268,269,-259,143,176,275,-238,235,254,242,-277,143,237,243,-223,133,138,-140,132,140,-142, + 150,154,-156,150,155,156,-247,246,156,-248,133,139,251,-250,132,141,138,-134,282,289,286,-208,283,290,288,-282,281,288,287,-281,206,202, + 282,-208,286,289,-285,290,285,-289,288,285,-288,289,287,204,-285,287,285,-205,241,279,-279,223,221,293,-278,221,77,116,-292,241,278,235, + -293,293,292,235,-278,293,291,-233,293,221,-292,293,232,-293,232,84,117,-242,291,116,84,-233,314,313,317,-312,295,294,296,-298,301,300, + 299,-299,295,297,301,-299,296,294,299,-301,297,296,300,-302,309,304,-308,307,306,308,-310,307,302,303,-307,308,305,304,-310,310,312,313, + -315,303,302,304,-306,302,307,-305,311,317,316,-316,310,314,311,-316,313,312,316,-318,1546,323,319,-1548,323,324,320,-320,1548,325,321,-1550, + 325,322,318,-322,1547,319,320,-1550,358,359,360,-362,1550,331,327,-1552,331,332,328,-328,1552,333,329,-1554,333,330,326,-330,1551,327,328,-1554, + 365,362,358,-362,338,339,335,-335,339,340,336,-336,340,341,337,-337,341,338,334,-338,334,335,336,-338,364,365,361,-361,346,347,343,-343, + 347,348,344,-344,348,349,345,-345,349,346,342,-346,342,343,344,-346,363,364,360,-360,354,355,351,-351,355,356,352,-352,356,357,353,-353, + 357,354,350,-354,350,351,352,-354,362,363,359,-359,366,367,368,-370,373,370,366,-370,372,373,369,-369,371,372,368,-368,370,371,367,-367, + 374,375,376,-378,381,378,374,-378,380,381,377,-377,379,380,376,-376,378,379,375,-375,386,387,383,-383,387,388,384,-384,388,389,385,-385, + 389,386,382,-386,338,341,340,-340,362,365,364,-364,461,460,464,-466,1550,1552,332,-332,1546,1548,324,-324,346,349,348,-348,354,357,356,-356, + 370,373,372,-372,400,401,397,-397,401,402,398,-398,402,403,399,-399,403,400,396,-400,396,397,398,-400,436,437,438,-440,408,409,405,-405, + 409,410,406,-406,410,411,407,-407,411,408,404,-408,404,405,406,-408,759,756,752,-756,1557,417,413,-1559,417,418,414,-414,1559,419,415,-1561, + 419,416,412,-416,1558,413,414,-1561,462,461,465,-467,424,425,421,-421,425,426,422,-422,426,427,423,-423,427,424,420,-424,420,421,422,-424, + 758,759,755,-755,1561,433,429,-1563,433,434,430,-430,1563,435,431,-1565,435,432,428,-432,1562,429,430,-1565,440,441,437,-437,444,445,446,-448, + 757,758,754,-754,450,451,447,-447,756,757,753,-753,463,462,466,-468,473,474,470,-470,472,473,469,-469,499,496,492,-496,467,466,465,-465, + 460,463,467,-465,481,482,478,-478,480,481,477,-477,468,469,470,-472,475,472,468,-472,474,475,471,-471,1557,1559,418,-418,1570,493,494,-1572, + 459,458,457,-457,452,455,459,-457,453,452,456,-458,454,453,457,-459,455,454,458,-460,482,483,479,-479,483,480,476,-480,476,477,478,-480, + 497,498,494,-494,1565,489,485,-1567,489,490,486,-486,1567,491,487,-1569,491,488,484,-488,1566,485,486,-1569,1569,497,493,-1571,1572,501,502,-1575, + 507,504,500,-504,1573,507,503,-1575,505,506,502,-502,472,475,474,-474,390,509,511,-392,528,532,533,-525,520,517,513,-522,521,513,514,-524, + 534,531,527,-536,522,519,515,-524,533,525,526,-536,516,520,521,-513,512,521,523,-516,518,522,523,-515,532,529,525,-534,524,533,535,-528, + 530,534,535,-527,1542,541,539,-1542,1540,537,541,-1543,1540,538,544,-1544,1543,544,546,-1545,537,536,539,-542,395,392,548,-551,1541,539,536,-1546, + 1544,546,547,-1546,547,538,542,-541,538,547,546,-545,543,545,536,-538,393,394,549,-552,558,556,552,-554,556,559,554,-553,559,557,555,-555, + 557,558,553,-556,548,393,-552,394,550,-550,510,395,550,-395,392,508,393,-549,564,565,561,-561,565,566,562,-562,566,567,563,-563,567,564, + 560,-564,572,573,569,-569,440,443,442,-442,574,575,571,-571,575,572,568,-572,580,581,577,-577,582,583,579,-579,583,580,576,-580,589,590, + 586,-586,588,589,585,-585,590,591,587,-587,591,588,584,-588,1561,1563,434,-434,596,597,593,-593,597,598,594,-594,598,599,595,-595,599,596, + 592,-596,604,605,601,-601,606,607,603,-603,607,604,600,-604,612,613,609,-609,614,615,611,-611,615,612,608,-612,621,622,618,-618,620,621, + 617,-617,622,623,619,-619,623,620,616,-620,628,629,625,-625,630,631,627,-627,631,628,624,-628,636,637,633,-633,638,639,635,-635,639,636, + 632,-636,644,645,641,-641,646,647,643,-643,647,644,640,-644,652,653,649,-649,654,655,651,-651,655,652,648,-652,660,661,657,-657,662,663, + 659,-659,663,660,656,-660,668,669,665,-665,670,671,667,-667,671,668,664,-668,676,677,673,-673,678,679,675,-675,679,676,672,-676,684,685, + 681,-681,686,687,683,-683,687,684,680,-684,692,693,689,-689,693,694,690,-690,694,695,691,-691,695,692,688,-692,700,701,697,-697,702,703, + 699,-699,703,700,696,-700,708,709,705,-705,710,711,707,-707,711,708,704,-708,717,718,714,-714,716,717,713,-713,718,719,715,-715,719,716, + 712,-716,724,725,721,-721,725,726,722,-722,726,727,723,-723,727,724,720,-724,732,733,729,-729,734,735,731,-731,735,732,728,-732,740,741, + 737,-737,742,743,739,-739,743,740,736,-740,749,750,746,-746,748,749,745,-745,750,751,747,-747,751,748,744,-748,449,448,451,-451,767,764, + 760,-764,766,767,763,-763,765,766,762,-762,764,765,761,-761,775,772,768,-772,774,775,771,-771,773,774,770,-770,772,773,769,-769,783,780, + 776,-780,782,783,779,-779,781,782,778,-778,780,781,777,-777,784,785,786,-788,791,788,784,-788,790,791,787,-787,789,790,786,-786,788,789, + 785,-785,792,793,794,-796,799,796,792,-796,798,799,795,-795,797,798,794,-794,796,797,793,-793,807,804,800,-804,806,807,803,-803,805,806, + 802,-802,804,805,801,-801,815,812,808,-812,814,815,811,-811,813,814,810,-810,812,813,809,-809,823,820,816,-820,822,823,819,-819,821,822, + 818,-818,820,821,817,-817,831,828,824,-828,830,831,827,-827,829,830,826,-826,828,829,825,-825,839,836,832,-836,838,839,835,-835,837,838, + 834,-834,836,837,833,-833,847,844,840,-844,846,847,843,-843,845,846,842,-842,844,845,841,-841,855,852,848,-852,854,855,851,-851,853,854, + 850,-850,852,853,849,-849,863,860,856,-860,862,863,859,-859,861,862,858,-858,860,861,857,-857,868,869,865,-865,870,871,867,-867,871,868, + 864,-868,876,877,873,-873,878,879,875,-875,879,876,872,-876,884,885,881,-881,886,887,883,-883,887,884,880,-884,892,893,889,-889,894,895, + 891,-891,895,892,888,-892,896,899,903,-901,897,896,900,-902,899,898,902,-904,908,909,906,-906,909,907,904,-907,913,914,911,-911,916,913, + 910,-913,908,914,913,-910,909,913,916,-908,904,912,910,-907,906,910,911,-906,917,919,922,-921,918,917,920,-922,924,929,930,-924,923,930, + 927,-927,926,927,928,-926,931,934,933,-933,944,941,940,-946,940,937,938,-940,945,940,939,-947,943,942,941,-945,942,935,936,-942,941,936, + 937,-941,939,938,935,-943,946,939,942,-944,946,943,944,-946,951,950,949,-953,954,947,950,-952,953,948,947,-955,959,958,957,-961,962,955, + 958,-960,961,956,955,-963,967,968,964,-964,969,970,966,-966,970,967,963,-967,975,976,972,-972,977,978,974,-974,978,975,971,-975,969,976, + 975,-971,970,975,978,-968,967,978,977,-969,964,973,974,-964,963,974,971,-967,966,971,972,-966,980,985,986,-980,979,986,983,-983,982,983, + 984,-982,988,993,994,-988,987,994,991,-991,990,991,992,-990,995,998,997,-997,1003,1004,1000,-1000,1005,1006,1002,-1002,1006,1003,999,-1003,1011,1012, + 1008,-1008,1013,1014,1010,-1010,1014,1011,1007,-1011,1005,1012,1011,-1007,1006,1011,1014,-1004,1003,1014,1013,-1005,1000,1009,1010,-1000,999,1010,1007,-1003,1002,1007, + 1008,-1002,1016,1021,1022,-1016,1015,1022,1019,-1019,1018,1019,1020,-1018,1024,1029,1030,-1024,1023,1030,1027,-1027,1026,1027,1028,-1026,1031,1034,1033,-1033,1039,1040, + 1036,-1036,1041,1042,1038,-1038,1042,1039,1035,-1039,1047,1048,1044,-1044,1049,1050,1046,-1046,1050,1047,1043,-1047,1041,1048,1047,-1043,1042,1047,1050,-1040,1039,1050, + 1049,-1041,1036,1045,1046,-1036,1035,1046,1043,-1039,1038,1043,1044,-1038,1052,1057,1058,-1052,1051,1058,1055,-1055,1054,1055,1056,-1054,1060,1065,1066,-1060,1059,1066, + 1063,-1063,1062,1063,1064,-1062,1067,1070,1069,-1069,1071,1074,1078,-1076,1072,1071,1075,-1077,1074,1073,1077,-1079,1083,1084,1080,-1080,1085,1086,1082,-1082,1086,1083, + 1079,-1083,1091,1092,1088,-1088,1094,1090,1093,-1090,1093,1087,1088,-1090,1102,1097,-1101,1101,1102,1100,-1100,1094,1092,1091,-1091,1096,1099,1100,-1096,1097,1102,1101, + -1099,1097,1098,1096,-1096,1095,1100,-1098,1107,1108,1104,-1104,1108,1110,1105,-1105,1109,1107,1103,-1107,1103,1104,1105,-1107,1109,1110,1108,-1108,1090,1091,1087,-1094, + 1114,1115,1112,-1112,1117,1114,1111,-1114,918,1115,1114,-918,917,1114,1117,-920,922,1113,1111,-921,920,1111,1112,-922,1119,1124,1125,-1119,1118,1125,1122,-1122, + 1121,1122,1123,-1121,1126,1129,1128,-1128,1113,922,1137,-1139,904,907,1133,-1133,919,1117,1139,-1137,1117,1113,1138,-1140,912,904,1132,-1135,922,919,1136,-1138, + 907,916,1135,-1134,916,912,1134,-1136,1144,1145,1141,-1141,1146,1147,1143,-1143,1147,1144,1140,-1144,1152,1153,1149,-1149,1154,1155,1151,-1151,1155,1152,1148,-1152, + 1146,1153,1152,-1148,1147,1152,1155,-1145,1144,1155,1154,-1146,1165,1162,1161,-1167,1161,1158,1159,-1161,1166,1161,1160,-1168,1164,1163,1162,-1166,1163,1156,1157,-1163, + 1162,1157,1158,-1162,1160,1159,1156,-1164,1167,1160,1163,-1165,1167,1164,1165,-1167,1172,1171,1170,-1174,1175,1168,1171,-1173,1174,1169,1168,-1176,1180,1179,1178,-1182, + 1183,1176,1179,-1181,1182,1177,1176,-1184,1188,1189,1185,-1185,1190,1191,1187,-1187,1191,1188,1184,-1188,1196,1197,1193,-1193,1198,1199,1195,-1195,1199,1196,1192,-1196, + 1190,1197,1196,-1192,1191,1196,1199,-1189,1188,1199,1198,-1190,1185,1194,1195,-1185,1184,1195,1192,-1188,1187,1192,1193,-1187,1201,1206,1207,-1201,1200,1207,1204,-1204, + 1203,1204,1205,-1203,1209,1214,1215,-1209,1208,1215,1212,-1212,1211,1212,1213,-1211,1216,1219,1218,-1218,1224,1225,1221,-1221,1226,1227,1223,-1223,1227,1224,1220,-1224, + 1232,1233,1229,-1229,1234,1235,1231,-1231,1235,1232,1228,-1232,1226,1233,1232,-1228,1227,1232,1235,-1225,1240,1241,1237,-1237,1241,1242,1238,-1238,1242,1243,1239,-1239, + 1243,1240,1236,-1240,1236,1237,1238,-1240,1243,1242,1241,-1241,1248,1249,1245,-1245,1249,1250,1246,-1246,1250,1251,1247,-1247,1251,1248,1244,-1248,1244,1245,1246,-1248, + 1251,1250,1249,-1249,1256,1257,1253,-1253,1257,1258,1254,-1254,1258,1259,1255,-1255,1259,1256,1252,-1256,1252,1253,1254,-1256,1259,1258,1257,-1257,1264,1265,1261,-1261, + 1265,1266,1262,-1262,1266,1267,1263,-1263,1267,1264,1260,-1264,1260,1261,1262,-1264,1267,1266,1265,-1265,1272,1273,1269,-1269,1273,1274,1270,-1270,1274,1275,1271,-1271, + 1275,1272,1268,-1272,1268,1269,1270,-1272,1275,1274,1273,-1273,1280,1281,1277,-1277,1281,1282,1278,-1278,1288,1289,1285,-1285,1283,1280,1276,-1280,1276,1277,1278,-1280, + 1283,1282,1281,-1281,1289,1290,1286,-1286,1291,1288,1284,-1288,1284,1285,1286,-1288,1291,1290,1289,-1289,1296,1297,1293,-1293,1297,1298,1294,-1294,1299,1296,1292,-1296, + 1292,1293,1294,-1296,1299,1298,1297,-1297,1304,1305,1301,-1301,1305,1306,1302,-1302,1307,1304,1300,-1304,1300,1301,1302,-1304,1307,1306,1305,-1305,1312,1313,1309,-1309, + 1313,1314,1310,-1310,1315,1312,1308,-1312,1308,1309,1310,-1312,1315,1314,1313,-1313,1320,1321,1317,-1317,1321,1322,1318,-1318,1323,1320,1316,-1320,1316,1317,1318,-1320, + 1323,1322,1321,-1321,1328,1329,1325,-1325,1329,1330,1326,-1326,1331,1328,1324,-1328,1324,1325,1326,-1328,1331,1330,1329,-1329,1336,1337,1333,-1333,1337,1338,1334,-1334, + 1339,1336,1332,-1336,1332,1333,1334,-1336,1339,1338,1337,-1337,1344,1345,1341,-1341,1345,1346,1342,-1342,1347,1344,1340,-1344,1340,1341,1342,-1344,1347,1346,1345,-1345, + 1352,1353,1349,-1349,1353,1354,1350,-1350,1355,1352,1348,-1352,1348,1349,1350,-1352,1355,1354,1353,-1353,1360,1361,1357,-1357,1361,1362,1358,-1358,1363,1360,1356,-1360, + 1356,1357,1358,-1360,1363,1362,1361,-1361,1368,1369,1365,-1365,1369,1370,1366,-1366,1371,1368,1364,-1368,1364,1365,1366,-1368,1371,1370,1369,-1369,1376,1377,1373,-1373, + 1377,1378,1374,-1374,1379,1376,1372,-1376,1372,1373,1374,-1376,1379,1378,1377,-1377,1384,1385,1381,-1381,1385,1386,1382,-1382,1387,1384,1380,-1384,1380,1381,1382,-1384, + 1387,1386,1385,-1385,1392,1393,1389,-1389,1393,1394,1390,-1390,1395,1392,1388,-1392,1388,1389,1390,-1392,1395,1394,1393,-1393,1400,1401,1397,-1397,1401,1402,1398,-1398, + 1403,1400,1396,-1400,1396,1397,1398,-1400,1403,1402,1401,-1401,1554,1405,1409,-1556,1554,1406,1412,-1557,1405,1404,1407,-1410,1408,1407,1404,-1416,1413,1414,1415,-1405, + 1411,1413,1404,-1406,1416,1417,-1419,1423,1430,1427,-1427,1451,1421,1433,-1423,1426,1427,1428,-1426,1431,1432,1428,-1428,1421,1420,1429,-1434,1434,1431,1427,-1431,1425, + 1432,1431,-1427,1426,1431,1434,-1424,1420,1419,1424,-1430,1459,1454,1458,-1456,1451,1419,1420,-1422,1433,1429,1424,-1423,1436,1441,1442,-1436,1435,1442,1439,-1439,1438, + 1439,1440,-1438,1444,1449,1450,-1444,1443,1450,1447,-1447,1446,1447,1448,-1446,1454,1453,1457,-1459,1453,1452,1456,-1458,1459,1452,1453,-1455,1458,1457,1456,-1456,1467, + 1462,1466,-1464,1462,1461,1465,-1467,1461,1460,1464,-1466,1467,1460,1461,-1463,1466,1465,1464,-1464,1475,1470,1474,-1472,1470,1469,1473,-1475,1469,1468,1472,-1474,1475, + 1468,1469,-1471,1474,1473,1472,-1472,1483,1478,1482,-1480,1478,1477,1481,-1483,1477,1476,1480,-1482,1483,1476,1477,-1479,1482,1481,1480,-1480,1491,1486,1490,-1488,1486, + 1485,1489,-1491,1485,1484,1488,-1490,1491,1484,1485,-1487,1490,1489,1488,-1488,1499,1494,1498,-1496,1494,1493,1497,-1499,1493,1492,1496,-1498,1499,1492,1493,-1495,1498, + 1497,1496,-1496,1507,1502,1506,-1504,1502,1501,1505,-1507,1501,1500,1504,-1506,1507,1500,1501,-1503,1506,1505,1504,-1504,1515,1510,1514,-1512,1510,1509,1513,-1515,1509, + 1508,1512,-1514,1515,1508,1509,-1511,1514,1513,1512,-1512,1806,1517,1518,-1809,1523,1520,1516,-1520,1807,1523,1519,-1809,1521,1522,1518,-1518,1805,1521,1517,-1807,1805, + 1807,1522,-1522,1531,1528,1524,-1528,1530,1531,1527,-1527,1529,1530,1526,-1526,1528,1529,1525,-1525,1539,1536,1532,-1536,1538,1539,1535,-1535,1537,1538,1534,-1534,1536, + 1537,1533,-1533,542,1542,1541,-541,538,1540,1542,-543,537,1540,1543,-544,543,1543,1544,-546,540,1541,1545,-548,545,1544,1545,-537,322,1546,1547,-319,324, + 1548,1549,-321,318,1547,1549,-322,322,325,1548,-1547,330,1550,1551,-327,332,1552,1553,-329,326,1551,1553,-330,330,333,1552,-1551,1406,1554,1555,-1411,1405, + 1554,1556,-1412,416,1557,1558,-413,418,1559,1560,-415,412,1558,1560,-416,416,419,1559,-1558,432,1561,1562,-429,434,1563,1564,-431,428,1562,1564,-432,432, + 435,1563,-1562,488,1565,1566,-485,490,1567,1568,-487,484,1566,1568,-488,492,1570,1571,-496,496,1569,1570,-493,500,1572,1574,-504,506,1573,1574,-503,1579, + 1580,1576,-1576,1581,1582,1578,-1578,1582,1579,1575,-1579,1587,1588,1584,-1584,1589,1590,1586,-1586,1590,1587,1583,-1587,1595,1596,1592,-1592,1597,1598,1594,-1594,1598, + 1595,1591,-1595,1603,1604,1600,-1600,1605,1606,1602,-1602,1606,1603,1599,-1603,1611,1612,1608,-1608,1613,1614,1610,-1610,1614,1611,1607,-1611,1619,1620,1616,-1616,1621, + 1622,1618,-1618,1622,1619,1615,-1619,1627,1628,1624,-1624,1629,1630,1626,-1626,1630,1627,1623,-1627,1635,1636,1632,-1632,1637,1638,1634,-1634,1638,1635,1631,-1635,1643, + 1644,1640,-1640,1645,1646,1642,-1642,1646,1643,1639,-1643,1651,1652,1648,-1648,1653,1654,1650,-1650,1654,1651,1647,-1651,1675,1674,1678,-1673,1656,1655,1657,-1659,1662, + 1661,1660,-1660,1656,1658,1662,-1660,1657,1655,1660,-1662,1658,1657,1661,-1663,1670,1665,-1669,1668,1667,1669,-1671,1668,1663,1664,-1668,1669,1666,1665,-1671,1671,1673, + 1674,-1676,1664,1663,1665,-1667,1663,1668,-1666,1672,1678,1677,-1677,1671,1675,1672,-1677,1674,1673,1677,-1679,1699,1698,1702,-1697,1680,1679,1681,-1683,1686,1685,1684, + -1684,1680,1682,1686,-1684,1681,1679,1684,-1686,1682,1681,1685,-1687,1694,1689,-1693,1692,1691,1693,-1695,1692,1687,1688,-1692,1693,1690,1689,-1695,1695,1697,1698,-1700, + 1688,1687,1689,-1691,1687,1692,-1690,1696,1702,1701,-1701,1695,1699,1696,-1701,1698,1697,1701,-1703,1763,1721,1707,-1745,1740,1709,1708,-1743,1775,1769,1709,-1741,1721, + 1764,1750,-1708,1765,1716,1719,-1753,1728,1717,1714,-1743,1746,1713,1714,-1745,1776,1770,1713,-1747,1703,1749,1764,-1722,1764,1733,1726,-1751,1754,1725,1726,-1753,1778, + 1772,1725,-1755,1779,1771,1722,-1757,1767,1732,1731,-1761,1777,1768,1710,-1749,1766,1729,1738,-1759,1762,1737,1738,-1761,1780,1774,1737,-1763,1713,1740,1742,-1715,1770, + 1775,1740,-1714,1720,1728,1742,-1709,1717,1763,1744,-1715,1710,1746,1744,-1708,1768,1776,1746,-1711,1725,1748,1750,-1727,1772,1777,1748,-1726,1748,1710,1707,-1751,1733, + 1765,1752,-1727,1722,1754,1752,-1720,1771,1778,1754,-1723,1737,1756,1758,-1739,1774,1779,1756,-1738,1743,1703,1721,-1764,1729,1767,1760,-1739,1734,1762,1760,-1732,1773, + 1780,1762,-1735,1756,1722,1719,-1759,1716,1766,1758,-1720,1751,1715,1716,-1766,1741,1712,1717,-1729,1749,1724,1733,-1765,1759,1727,1732,-1768,1757,1736,1729,-1767,1704, + 1741,1728,-1721,1712,1743,1763,-1718,1724,1751,1765,-1734,1736,1759,1767,-1730,1715,1757,1766,-1717,1739,1705,1769,-1776,1745,1711,1770,-1777,1753,1723,1772,-1779,1755, + 1718,1771,-1780,1747,1706,1768,-1778,1761,1735,1774,-1781,1711,1739,1775,-1771,1706,1745,1776,-1769,1723,1747,1777,-1773,1718,1753,1778,-1772,1735,1755,1779,-1775,1730, + 1761,1780,-1774,1785,1786,1782,-1782,1781,1782,1783,-1785,1788,1785,1781,-1785,1787,1788,1784,-1784,1785,1788,1787,-1787,1793,1794,1790,-1790,1789,1790,1791,-1793,1796, + 1793,1789,-1793,1795,1796,1792,-1792,1793,1796,1795,-1795,1801,1802,1798,-1798,1797,1798,1799,-1801,1804,1801,1797,-1801,1803,1804,1800,-1800,1801,1804,1803,-1803,1516, + 1806,1808,-1520,1522,1807,1808,-1519,1520,1805,1806,-1517,1520,1523,1807,-1806,1813,1814,1810,-1810,1809,1810,1811,-1813,1816,1813,1809,-1813,1815,1816,1812,-1812,1813, + 1816,1815,-1815,1824,1821,1817,-1821,1823,1824,1820,-1820,1822,1823,1819,-1819,1821,1822,1818,-1818,1832,1829,1825,-1829,1831,1832,1828,-1828,1830,1831,1827,-1827,1829, + 1830,1826,-1826,1840,1837,1833,-1837,1839,1840,1836,-1836,1838,1839,1835,-1835,1837,1838,1834,-1834,1848,1845,1841,-1845,1847,1848,1844,-1844,1846,1847,1843,-1843,1845, + 1846,1842,-1842,1856,1853,1849,-1853,1855,1856,1852,-1852,1854,1855,1851,-1851,1853,1854,1850,-1850,1864,1861,1857,-1861,1863,1864,1860,-1860,1862,1863,1859,-1859,1861, + 1862,1858,-1858,1884,1882,1865,-1869,1883,1884,1868,-1868,1881,1883,1867,-1867,1882,1881,1866,-1866,1880,1877,1873,-1877,1879,1880,1876,-1876,1878,1879,1875,-1875,1877, + 1878,1874,-1874,1872,1869,1882,-1885,1871,1872,1884,-1884,1870,1871,1883,-1882,1869,1870,1881,-1883,1905,1888,1892,-1908,1908,1887,1888,-1906,1907,1892,1891,-1907,1885, + 1889,1886,-1891,1888,1887,1891,-1893,1901,1898,1894,-1903,1904,1902,1923,-1925,1900,1897,1893,-1897,1926,1900,1896,-1929,1901,1903,1899,-1899,1927,1901,1902,-1926,1925, + 1902,1904,-1929,1899,1903,1904,-1896,1927,1926,1903,-1902,1889,1905,1907,-1887,1885,1908,1905,-1890,1886,1907,1906,-1891,1906,1908,1885,-1891,1891,1887,1908,-1907,1916, + 1915,1918,-1920,1911,1910,1913,-1915,1910,1909,1912,-1914,1909,1911,1914,-1913,1917,1916,1919,-1921,1915,1917,1920,-1919,1897,1927,1925,-1894,1903,1926,1928,-1905,1895, + 1904,1924,-1923,1902,1894,1921,-1924,1893,1925,1928,-1897,1897,1900,1926,-1928,1930,1935,1936,-1930,1929,1936,1933,-1933,1932,1933,1934,-1932,1938,1943,1944,-1938,1937, + 1944,1941,-1941,1940,1941,1942,-1940,1949,1950,1946,-1946,1951,1952,1948,-1948,1952,1949,1945,-1949,1957,1958,1954,-1954,1959,1960,1956,-1956,1960,1957,1953,-1957,1951, + 1958,1957,-1953,1952,1957,1960,-1950,1949,1960,1959,-1951,1946,1955,1956,-1946,1945,1956,1953,-1949,1948,1953,1954,-1948,1962,1967,1968,-1962,1961,1968,1965,-1965,1964, + 1965,1966,-1964,1970,1975,1976,-1970,1969,1976,1973,-1973,1972,1973,1974,-1972,1977,1980,1979,-1979,1982,1987,1988,-1982,1981,1988,1985,-1985,1984,1985,1986,-1984,1990, + 1995,1996,-1990,1989,1996,1993,-1993,1992,1993,1994,-1992,1998,2003,2004,-1998,1997,2004,2001,-2001,2000,2001,2002,-2000,2005,2006,2007,-2009,2012,2009,2005,-2009,2011, + 2012,2008,-2008,2010,2011,2007,-2007,2009,2010,2006,-2006,2017,2018,2014,-2014,2018,2019,2015,-2015,2019,2020,2016,-2016,2020,2017,2013,-2017,2009,2012,2011,-2011,2092, + 2091,2095,-2097,2031,2032,2028,-2028,2032,2033,2029,-2029,2033,2034,2030,-2030,2034,2031,2027,-2031,2027,2028,2029,-2031,2067,2068,2069,-2071,2039,2040,2036,-2036,2040, + 2041,2037,-2037,2041,2042,2038,-2038,2042,2039,2035,-2039,2035,2036,2037,-2039,3060,3062,2279,-2283,3067,2048,2044,-3069,2048,2049,2045,-2045,3069,2050,2046,-3071,2050, + 2047,2043,-2047,3068,2044,2045,-3071,2093,2092,2096,-2098,2055,2056,2052,-2052,2056,2057,2053,-2053,2057,2058,2054,-2054,2058,2055,2051,-2055,2051,2052,2053,-2055,3061, + 3060,2282,-2282,3071,2064,2060,-3073,2064,2065,2061,-2061,3073,2066,2062,-3075,2066,2063,2059,-2063,3072,2060,2061,-3075,2071,2072,2068,-2068,2075,2076,2077,-2079,3063, + 3061,2281,-2281,2081,2082,2078,-2078,3062,3063,2280,-2280,2094,2093,2097,-2099,2104,2105,2101,-2101,2103,2104,2100,-2100,2130,2127,2123,-2127,2098,2097,2096,-2096,2091, + 2094,2098,-2096,2112,2113,2109,-2109,2111,2112,2108,-2108,2099,2100,2101,-2103,2106,2103,2099,-2103,2105,2106,2102,-2102,3067,3069,2049,-2049,3080,2124,2125,-3082,2090, + 2089,2088,-2088,2083,2086,2090,-2088,2084,2083,2087,-2089,2085,2084,2088,-2090,2086,2085,2089,-2091,2113,2114,2110,-2110,2114,2111,2107,-2111,2107,2108,2109,-2111,2128, + 2129,2125,-2125,3075,2120,2116,-3077,2120,2121,2117,-2117,3077,2122,2118,-3079,2122,2119,2115,-2119,3076,2116,2117,-3079,3079,2128,2124,-3081,3082,2132,2133,-3085,2138, + 2135,2131,-2135,3083,2138,2134,-3085,2136,2137,2133,-2133,2103,2106,2105,-2105,2021,2140,2142,-2023,2159,2163,2164,-2156,2151,2148,2144,-2153,2152,2144,2145,-2155,2165, + 2162,2158,-2167,2153,2150,2146,-2155,2164,2156,2157,-2167,2147,2151,2152,-2144,2143,2152,2154,-2147,2149,2153,2154,-2146,2163,2160,2156,-2165,2155,2164,2166,-2159,2161, + 2165,2166,-2158,3056,2172,2170,-3056,3054,2168,2172,-3057,3054,2169,2175,-3058,3057,2175,2177,-3059,2168,2167,2170,-2173,2026,2023,2179,-2182,3055,2170,2167,-3060,3058, + 2177,2178,-3060,2178,2169,2173,-2172,2169,2178,2177,-2176,2174,2176,2167,-2169,2024,2025,2180,-2183,2179,2024,-2183,2025,2181,-2181,2141,2026,2181,-2026,2023,2139,2024, + -2180,2187,2188,2184,-2184,2188,2189,2185,-2185,2189,2190,2186,-2186,2190,2187,2183,-2187,2195,2196,2192,-2192,2071,2074,2073,-2073,2197,2198,2194,-2194,2198,2195,2191, + -2195,2203,2204,2200,-2200,2205,2206,2202,-2202,2206,2203,2199,-2203,2212,2213,2209,-2209,2211,2212,2208,-2208,2213,2214,2210,-2210,2214,2211,2207,-2211,3071,3073,2065, + -2065,2219,2220,2216,-2216,2221,2222,2218,-2218,2222,2219,2215,-2219,2227,2228,2224,-2224,2229,2230,2226,-2226,2230,2227,2223,-2227,2235,2236,2232,-2232,2237,2238,2234, + -2234,2238,2235,2231,-2235,2243,2244,2240,-2240,2245,2246,2242,-2242,2246,2243,2239,-2243,2251,2252,2248,-2248,2252,2253,2249,-2249,2253,2254,2250,-2250,2254,2251,2247, + -2251,2259,2260,2256,-2256,2261,2262,2258,-2258,2262,2259,2255,-2259,2267,2268,2264,-2264,2269,2270,2266,-2266,2270,2267,2263,-2267,2276,2277,2273,-2273,2275,2276,2272, + -2272,2277,2278,2274,-2274,2278,2275,2271,-2275,2080,2079,2082,-2082,2294,2291,2287,-2291,2293,2294,2290,-2290,2292,2293,2289,-2289,2291,2292,2288,-2288,2302,2299,2295, + -2299,2301,2302,2298,-2298,2300,2301,2297,-2297,2299,2300,2296,-2296,2310,2307,2303,-2307,2309,2310,2306,-2306,2308,2309,2305,-2305,2307,2308,2304,-2304,2311,2312,2313, + -2315,2318,2315,2311,-2315,2317,2318,2314,-2314,2316,2317,2313,-2313,2315,2316,2312,-2312,2319,2320,2321,-2323,2326,2323,2319,-2323,2325,2326,2322,-2322,2324,2325,2321, + -2321,2323,2324,2320,-2320,2334,2331,2327,-2331,2333,2334,2330,-2330,2332,2333,2329,-2329,2331,2332,2328,-2328,2342,2339,2335,-2339,2341,2342,2338,-2338,2340,2341,2337, + -2337,2339,2340,2336,-2336,2350,2347,2343,-2347,2349,2350,2346,-2346,2348,2349,2345,-2345,2347,2348,2344,-2344,2358,2355,2351,-2355,2357,2358,2354,-2354,2356,2357,2353, + -2353,2355,2356,2352,-2352,2366,2363,2359,-2363,2365,2366,2362,-2362,2364,2365,2361,-2361,2363,2364,2360,-2360,2374,2371,2367,-2371,2373,2374,2370,-2370,2372,2373,2369, + -2369,2371,2372,2368,-2368,2382,2379,2375,-2379,2381,2382,2378,-2378,2380,2381,2377,-2377,2379,2380,2376,-2376,2390,2387,2383,-2387,2389,2390,2386,-2386,2388,2389,2385, + -2385,2387,2388,2384,-2384,2395,2396,2392,-2392,2397,2398,2394,-2394,2398,2395,2391,-2395,2403,2404,2400,-2400,2405,2406,2402,-2402,2406,2403,2399,-2403,2411,2412,2408, + -2408,2413,2414,2410,-2410,2414,2411,2407,-2411,2419,2420,2416,-2416,2421,2422,2418,-2418,2422,2419,2415,-2419,2427,2428,2424,-2424,2429,2430,2426,-2426,2430,2427,2423, + -2427,2435,2436,2432,-2432,2437,2438,2434,-2434,2438,2435,2431,-2435,2429,2436,2435,-2431,2430,2435,2438,-2428,2427,2438,2437,-2429,2424,2433,2434,-2424,2423,2434,2431, + -2427,2426,2431,2432,-2426,2440,2445,2446,-2440,2439,2446,2443,-2443,2442,2443,2444,-2442,2448,2453,2454,-2448,2447,2454,2451,-2451,2450,2451,2452,-2450,2455,2458,2457, + -2457,2470,2467,2466,-2472,2466,2463,2464,-2466,2471,2466,2465,-2473,2469,2468,2467,-2471,2468,2461,2462,-2468,2467,2462,2463,-2467,2465,2464,2461,-2469,2472,2465,2468, + -2470,2472,2469,2470,-2472,2477,2476,2475,-2479,2480,2473,2476,-2478,2479,2474,2473,-2481,2485,2484,2483,-2487,2488,2481,2484,-2486,2487,2482,2481,-2489,2493,2494,2490, + -2490,2495,2496,2492,-2492,2496,2493,2489,-2493,2501,2502,2498,-2498,2503,2504,2500,-2500,2504,2501,2497,-2501,2495,2502,2501,-2497,2496,2501,2504,-2494,2493,2504,2503, + -2495,2490,2499,2500,-2490,2489,2500,2497,-2493,2492,2497,2498,-2492,2506,2511,2512,-2506,2505,2512,2509,-2509,2508,2509,2510,-2508,2514,2519,2520,-2514,2513,2520,2517, + -2517,2516,2517,2518,-2516,2521,2524,2523,-2523,2529,2530,2526,-2526,2531,2532,2528,-2528,2532,2529,2525,-2529,2537,2538,2534,-2534,2539,2540,2536,-2536,2540,2537,2533, + -2537,2531,2538,2537,-2533,2532,2537,2540,-2530,2529,2540,2539,-2531,2526,2535,2536,-2526,2525,2536,2533,-2529,2528,2533,2534,-2528,2542,2547,2548,-2542,2541,2548,2545, + -2545,2544,2545,2546,-2544,2550,2555,2556,-2550,2549,2556,2553,-2553,2552,2553,2554,-2552,2557,2560,2559,-2559,2565,2566,2562,-2562,2567,2568,2564,-2564,2568,2565,2561, + -2565,2573,2574,2570,-2570,2575,2576,2572,-2572,2576,2573,2569,-2573,2567,2574,2573,-2569,2568,2573,2576,-2566,2565,2576,2575,-2567,2562,2571,2572,-2562,2561,2572,2569, + -2565,2564,2569,2570,-2564,2578,2583,2584,-2578,2577,2584,2581,-2581,2580,2581,2582,-2580,2586,2591,2592,-2586,2585,2592,2589,-2589,2588,2589,2590,-2588,2593,2596,2595, + -2595,2608,2607,2606,-2610,2611,2603,2607,-2609,3173,3172,3178,-3170,2612,2615,2619,-2617,2621,2614,2615,-2621,2610,2605,2603,-2612,2601,3159,3160,-2603,2600,2604,2625, + -2627,2631,2617,2616,-2636,2623,2612,2613,-2623,2615,2614,2618,-2620,2620,2623,2635,-2625,2621,2620,2624,-2628,2623,2622,2631,-2636,2632,2630,2629,-2629,2600,2626,2632, + -2629,2635,2616,2619,-2625,2625,2604,2629,-2631,2626,2625,2630,-2633,2641,2636,-2640,2639,2638,2640,-2642,2620,2615,2612,-2624,2639,2633,2634,-2639,2640,2637,2636,-2642, + 3180,3167,-3177,3168,3171,3172,-3174,2624,2619,2618,-2628,2634,2633,2636,-2638,2633,2639,-2637,2613,2612,2616,-2618,2646,2647,2643,-2643,2648,2649,2645,-2645,2649,2646, + 2642,-2646,2654,2655,2651,-2651,2656,2657,2653,-2653,2657,2654,2650,-2654,2648,2655,2654,-2650,2649,2654,2657,-2647,2646,2657,2656,-2648,2667,2664,2663,-2669,2663,2660, + 2661,-2663,2668,2663,2662,-2670,2666,2665,2664,-2668,2665,2658,2659,-2665,2664,2659,2660,-2664,2662,2661,2658,-2666,2669,2662,2665,-2667,2669,2666,2667,-2669,2674,2673, + 2672,-2676,2677,2670,2673,-2675,2676,2671,2670,-2678,2682,2681,2680,-2684,2685,2678,2681,-2683,2684,2679,2678,-2686,2690,2691,2687,-2687,2692,2693,2689,-2689,2693,2690, + 2686,-2690,2698,2699,2695,-2695,2700,2701,2697,-2697,2701,2698,2694,-2698,2692,2699,2698,-2694,2693,2698,2701,-2691,2690,2701,2700,-2692,2687,2696,2697,-2687,2686,2697, + 2694,-2690,2689,2694,2695,-2689,2703,2708,2709,-2703,2702,2709,2706,-2706,2705,2706,2707,-2705,2711,2716,2717,-2711,2710,2717,2714,-2714,2713,2714,2715,-2713,2718,2721, + 2720,-2720,2726,2727,2723,-2723,2728,2729,2725,-2725,2729,2726,2722,-2726,2734,2735,2731,-2731,2736,2737,2733,-2733,2737,2734,2730,-2734,2728,2735,2734,-2730,2729,2734, + 2737,-2727,2742,2743,2739,-2739,2743,2744,2740,-2740,2744,2745,2741,-2741,2745,2742,2738,-2742,2738,2739,2740,-2742,2745,2744,2743,-2743,2750,2751,2747,-2747,2751,2752, + 2748,-2748,2752,2753,2749,-2749,2753,2750,2746,-2750,2746,2747,2748,-2750,2753,2752,2751,-2751,2758,2759,2755,-2755,2759,2760,2756,-2756,2760,2761,2757,-2757,2761,2758, + 2754,-2758,2754,2755,2756,-2758,2761,2760,2759,-2759,2766,2767,2763,-2763,2767,2768,2764,-2764,2768,2769,2765,-2765,2769,2766,2762,-2766,2762,2763,2764,-2766,2769,2768, + 2767,-2767,2774,2775,2771,-2771,2775,2776,2772,-2772,2782,2783,2779,-2779,2777,2774,2770,-2774,2770,2771,2772,-2774,2777,2776,2775,-2775,2783,2784,2780,-2780,2785,2782, + 2778,-2782,2778,2779,2780,-2782,2785,2784,2783,-2783,2790,2791,2787,-2787,2791,2792,2788,-2788,2793,2790,2786,-2790,2786,2787,2788,-2790,2793,2792,2791,-2791,2798,2799, + 2795,-2795,2799,2800,2796,-2796,2801,2798,2794,-2798,2794,2795,2796,-2798,2801,2800,2799,-2799,2806,2807,2803,-2803,2807,2808,2804,-2804,2809,2806,2802,-2806,2802,2803, + 2804,-2806,2809,2808,2807,-2807,2814,2815,2811,-2811,2815,2816,2812,-2812,2817,2814,2810,-2814,2810,2811,2812,-2814,2817,2816,2815,-2815,2822,2823,2819,-2819,2823,2824, + 2820,-2820,2825,2822,2818,-2822,2818,2819,2820,-2822,2825,2824,2823,-2823,2830,2831,2827,-2827,2831,2832,2828,-2828,2833,2830,2826,-2830,2826,2827,2828,-2830,2833,2832, + 2831,-2831,2838,2839,2835,-2835,2839,2840,2836,-2836,2841,2838,2834,-2838,2834,2835,2836,-2838,2841,2840,2839,-2839,2846,2847,2843,-2843,2847,2848,2844,-2844,2849,2846, + 2842,-2846,2842,2843,2844,-2846,2849,2848,2847,-2847,2854,2855,2851,-2851,2855,2856,2852,-2852,2857,2854,2850,-2854,2850,2851,2852,-2854,2857,2856,2855,-2855,2862,2863, + 2859,-2859,2863,2864,2860,-2860,2865,2862,2858,-2862,2858,2859,2860,-2862,2865,2864,2863,-2863,3064,2867,2871,-3066,3064,2868,2874,-3067,2867,2866,2869,-2872,2870,2869, + 2866,-2878,2875,2876,2877,-2867,2873,2875,2866,-2868,2878,2879,-2881,2885,2892,2889,-2889,2913,2883,2895,-2885,2888,2889,2890,-2888,2893,2894,2890,-2890,2883,2882,2891, + -2896,2896,2893,2889,-2893,2887,2894,2893,-2889,2888,2893,2896,-2886,2882,2881,2886,-2892,2921,2916,2920,-2918,2913,2881,2882,-2884,2895,2891,2886,-2885,2898,2903,2904, + -2898,2897,2904,2901,-2901,2900,2901,2902,-2900,2906,2911,2912,-2906,2905,2912,2909,-2909,2908,2909,2910,-2908,2916,2915,2919,-2921,2915,2914,2918,-2920,2921,2914,2915, + -2917,2920,2919,2918,-2918,2929,2924,2928,-2926,2924,2923,2927,-2929,2923,2922,2926,-2928,2929,2922,2923,-2925,2928,2927,2926,-2926,2937,2932,2936,-2934,2932,2931,2935, + -2937,2931,2930,2934,-2936,2937,2930,2931,-2933,2936,2935,2934,-2934,2945,2940,2944,-2942,2940,2939,2943,-2945,2939,2938,2942,-2944,2945,2938,2939,-2941,2944,2943,2942, + -2942,2953,2948,2952,-2950,2948,2947,2951,-2953,2947,2946,2950,-2952,2953,2946,2947,-2949,2952,2951,2950,-2950,2961,2956,2960,-2958,2956,2955,2959,-2961,2955,2954,2958, + -2960,2961,2954,2955,-2957,2960,2959,2958,-2958,2969,2964,2968,-2966,2964,2963,2967,-2969,2963,2962,2966,-2968,2969,2962,2963,-2965,2968,2967,2966,-2966,2977,2972,2976, + -2974,2972,2971,2975,-2977,2971,2970,2974,-2976,2977,2970,2971,-2973,2976,2975,2974,-2974,2978,2979,2980,-2982,2984,2985,2981,-2981,3321,3322,3318,-3318,2982,2983,2979, + -2979,2982,2985,2984,-2984,2993,2990,2986,-2990,2992,2993,2989,-2989,2991,2992,2988,-2988,2990,2991,2987,-2987,3001,2998,2994,-2998,3000,3001,2997,-2997,2999,3000,2996, + -2996,2998,2999,2995,-2995,3009,3006,3002,-3006,3008,3009,3005,-3005,3007,3008,3004,-3004,3006,3007,3003,-3003,3017,3014,3010,-3014,3016,3017,3013,-3013,3015,3016,3012, + -3012,3014,3015,3011,-3011,3018,3019,3020,-3022,3025,3022,3018,-3022,3024,3025,3021,-3021,3023,3024,3020,-3020,3022,3023,3019,-3019,3022,3025,3024,-3024,3026,3027,3028, + -3030,3033,3030,3026,-3030,3032,3033,3029,-3029,3034,3035,3036,-3038,3030,3031,3027,-3027,3030,3033,3032,-3032,3041,3038,3034,-3038,3040,3041,3037,-3037,3038,3039,3035, + -3035,3038,3041,3040,-3040,3045,3044,3043,-3043,3045,3042,3050,-3052,3046,3049,3048,-3048,3053,3052,3051,-3051,3049,3046,3052,-3054,3042,3049,3053,-3051,3046,3045,3051, + -3053,2173,3056,3055,-2172,2169,3054,3056,-2174,2168,3054,3057,-2175,2174,3057,3058,-2177,2171,3055,3059,-2179,2176,3058,3059,-2168,2283,2284,3063,-3063,2284,2285,3061, + -3064,2285,2286,3060,-3062,2286,2283,3062,-3061,2868,3064,3065,-2873,2867,3064,3066,-2874,2047,3067,3068,-2044,2049,3069,3070,-2046,2043,3068,3070,-2047,2047,2050,3069, + -3068,2063,3071,3072,-2060,2065,3073,3074,-2062,2059,3072,3074,-2063,2063,2066,3073,-3072,2119,3075,3076,-2116,2121,3077,3078,-2118,2115,3076,3078,-2119,2123,3080,3081, + -2127,2127,3079,3080,-2124,2131,3082,3084,-2135,2137,3083,3084,-2134,3122,3086,3089,-3124,3086,3085,3087,-3090,3088,3087,3085,-3094,3091,3092,3093,-3086,3090,3091,3085, + -3087,3094,3095,-3097,3097,3102,3100,-3100,3099,3100,3101,-3099,3103,3104,3101,-3101,3105,3103,3100,-3103,3098,3104,3103,-3100,3099,3103,3105,-3098,3107,3112,3113,-3107, + 3106,3113,3110,-3110,3109,3110,3111,-3109,3115,3120,3121,-3115,3114,3121,3118,-3118,3117,3118,3119,-3117,3086,3122,3124,-3091,3129,3130,3126,-3126,3130,3131,3127,-3127, + 3132,3129,3125,-3129,3125,3126,3127,-3129,3132,3131,3130,-3130,3137,3138,3134,-3134,3138,3139,3135,-3135,3140,3137,3133,-3137,3133,3134,3135,-3137,3140,3139,3138,-3138, + 3145,3146,3142,-3142,3146,3147,3143,-3143,3148,3145,3141,-3145,3141,3142,3143,-3145,3148,3147,3146,-3146,3153,3154,3150,-3150,3154,3155,3151,-3151,3156,3153,3149,-3153, + 3149,3150,3151,-3153,3156,3155,3154,-3154,2602,3160,3157,-2599,2598,3157,3158,-2600,3161,3164,3163,-3163,3169,3178,3177,-3175,3179,3180,3176,-3176,3168,3173,3169,-3175, + 3166,3175,3176,-3166,3167,3180,3179,-3171,3167,3170,3166,-3166,3165,3176,-3168,3172,3171,3177,-3179,3185,3186,3182,-3182,3186,3187,3183,-3183,3188,3185,3181,-3185,3181, + 3182,3183,-3185,3188,3187,3186,-3186,3193,3194,3190,-3190,3194,3195,3191,-3191,3196,3193,3189,-3193,3189,3190,3191,-3193,3196,3195,3194,-3194,3201,3202,3198,-3198,3202, + 3203,3199,-3199,3204,3201,3197,-3201,3197,3198,3199,-3201,3204,3203,3202,-3202,3209,3210,3206,-3206,3210,3211,3207,-3207,3212,3209,3205,-3209,3205,3206,3207,-3209,3212, + 3211,3210,-3210,3233,3232,3236,-3231,3213,3214,3215,-3217,3220,3219,3218,-3218,3213,3216,3220,-3218,3215,3214,3218,-3220,3216,3215,3219,-3221,3228,3223,-3227,3226,3225, + 3227,-3229,3226,3221,3222,-3226,3227,3224,3223,-3229,3229,3231,3232,-3234,3222,3221,3223,-3225,3221,3226,-3224,3230,3236,3235,-3235,3229,3233,3230,-3235,3232,3231,3235, + -3237,3257,3256,3260,-3255,3237,3238,3239,-3241,3244,3243,3242,-3242,3237,3240,3244,-3242,3239,3238,3242,-3244,3240,3239,3243,-3245,3252,3247,-3251,3250,3249,3251,-3253, + 3250,3245,3246,-3250,3251,3248,3247,-3253,3253,3255,3256,-3258,3246,3245,3247,-3249,3245,3250,-3248,3254,3260,3259,-3259,3253,3257,3254,-3259,3256,3255,3259,-3261,3281, + 3280,3284,-3279,3261,3262,3263,-3265,3268,3267,3266,-3266,3261,3264,3268,-3266,3263,3262,3266,-3268,3264,3263,3267,-3269,3276,3271,-3275,3274,3273,3275,-3277,3274,3269, + 3270,-3274,3275,3272,3271,-3277,3277,3279,3280,-3282,3270,3269,3271,-3273,3269,3274,-3272,3278,3284,3283,-3283,3277,3281,3278,-3283,3280,3279,3283,-3285,3305,3304,3308, + -3303,3285,3286,3287,-3289,3292,3291,3290,-3290,3285,3288,3292,-3290,3287,3286,3290,-3292,3288,3287,3291,-3293,3300,3295,-3299,3298,3297,3299,-3301,3298,3293,3294,-3298, + 3299,3296,3295,-3301,3301,3303,3304,-3306,3294,3293,3295,-3297,3293,3298,-3296,3302,3308,3307,-3307,3301,3305,3302,-3307,3304,3303,3307,-3309,2075,2079,2080,-2077,3313, + 3314,3310,-3310,3314,3315,3311,-3311,3315,3316,3312,-3312,3316,3313,3309,-3313,3322,3323,3319,-3319,3323,3324,3320,-3320,3324,3321,3317,-3321,3345,3344,3348,-3343,3326, + 3325,3327,-3329,3332,3331,3330,-3330,3326,3328,3332,-3330,3327,3325,3330,-3332,3328,3327,3331,-3333,3340,3335,-3339,3338,3337,3339,-3341,3338,3333,3334,-3338,3339,3336, + 3335,-3341,3341,3343,3344,-3346,3334,3333,3335,-3337,3333,3338,-3336,3342,3348,3347,-3347,3341,3345,3342,-3347,3344,3343,3347,-3349,4737,3354,3350,-4739,3354,3355,3351, + -3351,4739,3356,3352,-4741,3356,3353,3349,-3353,4738,3350,3351,-4741,3389,3390,3391,-3393,4741,3362,3358,-4743,3362,3363,3359,-3359,4743,3364,3360,-4745,3364,3361,3357, + -3361,4742,3358,3359,-4745,3396,3393,3389,-3393,3369,3370,3366,-3366,3370,3371,3367,-3367,3371,3372,3368,-3368,3372,3369,3365,-3369,3365,3366,3367,-3369,3395,3396,3392, + -3392,3377,3378,3374,-3374,3378,3379,3375,-3375,3379,3380,3376,-3376,3380,3377,3373,-3377,3373,3374,3375,-3377,3394,3395,3391,-3391,3385,3386,3382,-3382,3386,3387,3383, + -3383,3387,3388,3384,-3384,3388,3385,3381,-3385,3381,3382,3383,-3385,3393,3394,3390,-3390,3397,3398,3399,-3401,3404,3401,3397,-3401,3403,3404,3400,-3400,3402,3403,3399, + -3399,3401,3402,3398,-3398,3405,3406,3407,-3409,3412,3409,3405,-3409,3411,3412,3408,-3408,3410,3411,3407,-3407,3409,3410,3406,-3406,3417,3418,3414,-3414,3418,3419,3415, + -3415,3419,3420,3416,-3416,3420,3417,3413,-3417,3369,3372,3371,-3371,3393,3396,3395,-3395,3492,3491,3495,-3497,4741,4743,3363,-3363,4737,4739,3355,-3355,3377,3380,3379, + -3379,3385,3388,3387,-3387,3401,3404,3403,-3403,3431,3432,3428,-3428,3432,3433,3429,-3429,3433,3434,3430,-3430,3434,3431,3427,-3431,3427,3428,3429,-3431,3467,3468,3469, + -3471,3439,3440,3436,-3436,3440,3441,3437,-3437,3441,3442,3438,-3438,3442,3439,3435,-3439,3435,3436,3437,-3439,3790,3787,3783,-3787,4748,3448,3444,-4750,3448,3449,3445, + -3445,4750,3450,3446,-4752,3450,3447,3443,-3447,4749,3444,3445,-4752,3493,3492,3496,-3498,3455,3456,3452,-3452,3456,3457,3453,-3453,3457,3458,3454,-3454,3458,3455,3451, + -3455,3451,3452,3453,-3455,3789,3790,3786,-3786,4752,3464,3460,-4754,3464,3465,3461,-3461,4754,3466,3462,-4756,3466,3463,3459,-3463,4753,3460,3461,-4756,3471,3472,3468, + -3468,3475,3476,3477,-3479,3788,3789,3785,-3785,3481,3482,3478,-3478,3787,3788,3784,-3784,3494,3493,3497,-3499,3504,3505,3501,-3501,3503,3504,3500,-3500,3530,3527,3523, + -3527,3498,3497,3496,-3496,3491,3494,3498,-3496,3512,3513,3509,-3509,3511,3512,3508,-3508,3499,3500,3501,-3503,3506,3503,3499,-3503,3505,3506,3502,-3502,4748,4750,3449, + -3449,4761,3524,3525,-4763,3490,3489,3488,-3488,3483,3486,3490,-3488,3484,3483,3487,-3489,3485,3484,3488,-3490,3486,3485,3489,-3491,3513,3514,3510,-3510,3514,3511,3507, + -3511,3507,3508,3509,-3511,3528,3529,3525,-3525,4756,3520,3516,-4758,3520,3521,3517,-3517,4758,3522,3518,-4760,3522,3519,3515,-3519,4757,3516,3517,-4760,4760,3528,3524, + -4762,4763,3532,3533,-4766,3538,3535,3531,-3535,4764,3538,3534,-4766,3536,3537,3533,-3533,3503,3506,3505,-3505,3421,3540,3542,-3423,3559,3563,3564,-3556,3551,3548,3544, + -3553,3552,3544,3545,-3555,3565,3562,3558,-3567,3553,3550,3546,-3555,3564,3556,3557,-3567,3547,3551,3552,-3544,3543,3552,3554,-3547,3549,3553,3554,-3546,3563,3560,3556, + -3565,3555,3564,3566,-3559,3561,3565,3566,-3558,4733,3572,3570,-4733,4731,3568,3572,-4734,4731,3569,3575,-4735,4734,3575,3577,-4736,3568,3567,3570,-3573,3426,3423,3579, + -3582,4732,3570,3567,-4737,4735,3577,3578,-4737,3578,3569,3573,-3572,3569,3578,3577,-3576,3574,3576,3567,-3569,3424,3425,3580,-3583,3589,3587,3583,-3585,3587,3590,3585, + -3584,3590,3588,3586,-3586,3588,3589,3584,-3587,3579,3424,-3583,3425,3581,-3581,3541,3426,3581,-3426,3423,3539,3424,-3580,3595,3596,3592,-3592,3596,3597,3593,-3593,3597, + 3598,3594,-3594,3598,3595,3591,-3595,3603,3604,3600,-3600,3471,3474,3473,-3473,3605,3606,3602,-3602,3606,3603,3599,-3603,3611,3612,3608,-3608,3613,3614,3610,-3610,3614, + 3611,3607,-3611,3620,3621,3617,-3617,3619,3620,3616,-3616,3621,3622,3618,-3618,3622,3619,3615,-3619,4752,4754,3465,-3465,3627,3628,3624,-3624,3628,3629,3625,-3625,3629, + 3630,3626,-3626,3630,3627,3623,-3627,3635,3636,3632,-3632,3637,3638,3634,-3634,3638,3635,3631,-3635,3643,3644,3640,-3640,3645,3646,3642,-3642,3646,3643,3639,-3643,3652, + 3653,3649,-3649,3651,3652,3648,-3648,3653,3654,3650,-3650,3654,3651,3647,-3651,3659,3660,3656,-3656,3661,3662,3658,-3658,3662,3659,3655,-3659,3667,3668,3664,-3664,3669, + 3670,3666,-3666,3670,3667,3663,-3667,3675,3676,3672,-3672,3677,3678,3674,-3674,3678,3675,3671,-3675,3683,3684,3680,-3680,3685,3686,3682,-3682,3686,3683,3679,-3683,3691, + 3692,3688,-3688,3693,3694,3690,-3690,3694,3691,3687,-3691,3699,3700,3696,-3696,3701,3702,3698,-3698,3702,3699,3695,-3699,3707,3708,3704,-3704,3709,3710,3706,-3706,3710, + 3707,3703,-3707,3715,3716,3712,-3712,3717,3718,3714,-3714,3718,3715,3711,-3715,3723,3724,3720,-3720,3724,3725,3721,-3721,3725,3726,3722,-3722,3726,3723,3719,-3723,3731, + 3732,3728,-3728,3733,3734,3730,-3730,3734,3731,3727,-3731,3739,3740,3736,-3736,3741,3742,3738,-3738,3742,3739,3735,-3739,3748,3749,3745,-3745,3747,3748,3744,-3744,3749, + 3750,3746,-3746,3750,3747,3743,-3747,3755,3756,3752,-3752,3756,3757,3753,-3753,3757,3758,3754,-3754,3758,3755,3751,-3755,3763,3764,3760,-3760,3765,3766,3762,-3762,3766, + 3763,3759,-3763,3771,3772,3768,-3768,3773,3774,3770,-3770,3774,3771,3767,-3771,3780,3781,3777,-3777,3779,3780,3776,-3776,3781,3782,3778,-3778,3782,3779,3775,-3779,3480, + 3479,3482,-3482,3798,3795,3791,-3795,3797,3798,3794,-3794,3796,3797,3793,-3793,3795,3796,3792,-3792,3806,3803,3799,-3803,3805,3806,3802,-3802,3804,3805,3801,-3801,3803, + 3804,3800,-3800,3814,3811,3807,-3811,3813,3814,3810,-3810,3812,3813,3809,-3809,3811,3812,3808,-3808,3815,3816,3817,-3819,3822,3819,3815,-3819,3821,3822,3818,-3818,3820, + 3821,3817,-3817,3819,3820,3816,-3816,3823,3824,3825,-3827,3830,3827,3823,-3827,3829,3830,3826,-3826,3828,3829,3825,-3825,3827,3828,3824,-3824,3838,3835,3831,-3835,3837, + 3838,3834,-3834,3836,3837,3833,-3833,3835,3836,3832,-3832,3846,3843,3839,-3843,3845,3846,3842,-3842,3844,3845,3841,-3841,3843,3844,3840,-3840,3854,3851,3847,-3851,3853, + 3854,3850,-3850,3852,3853,3849,-3849,3851,3852,3848,-3848,3862,3859,3855,-3859,3861,3862,3858,-3858,3860,3861,3857,-3857,3859,3860,3856,-3856,3870,3867,3863,-3867,3869, + 3870,3866,-3866,3868,3869,3865,-3865,3867,3868,3864,-3864,3878,3875,3871,-3875,3877,3878,3874,-3874,3876,3877,3873,-3873,3875,3876,3872,-3872,3883,3884,3880,-3880,3885, + 3886,3882,-3882,3886,3883,3879,-3883,3891,3892,3888,-3888,3893,3894,3890,-3890,3894,3891,3887,-3891,3899,3900,3896,-3896,3901,3902,3898,-3898,3902,3899,3895,-3899,3907, + 3908,3904,-3904,3909,3910,3906,-3906,3910,3907,3903,-3907,3915,3916,3912,-3912,3917,3918,3914,-3914,3918,3915,3911,-3915,3923,3924,3920,-3920,3925,3926,3922,-3922,3926, + 3923,3919,-3923,3917,3924,3923,-3919,3918,3923,3926,-3916,3915,3926,3925,-3917,3912,3921,3922,-3912,3911,3922,3919,-3915,3914,3919,3920,-3914,3928,3933,3934,-3928,3927, + 3934,3931,-3931,3930,3931,3932,-3930,3936,3941,3942,-3936,3935,3942,3939,-3939,3938,3939,3940,-3938,3943,3946,3945,-3945,3951,3952,3949,-3949,3952,3950,3947,-3950,3956, + 3957,3954,-3954,3959,3956,3953,-3956,3951,3957,3956,-3953,3952,3956,3959,-3951,3947,3955,3953,-3950,3949,3953,3954,-3949,3960,3962,3965,-3964,3961,3960,3963,-3965,3967, + 3972,3973,-3967,3966,3973,3970,-3970,3969,3970,3971,-3969,3974,3977,3976,-3976,3987,3984,3983,-3989,3983,3980,3981,-3983,3988,3983,3982,-3990,3986,3985,3984,-3988,3985, + 3978,3979,-3985,3984,3979,3980,-3984,3982,3981,3978,-3986,3989,3982,3985,-3987,3989,3986,3987,-3989,3994,3993,3992,-3996,3997,3990,3993,-3995,3996,3991,3990,-3998,4002, + 4001,4000,-4004,4005,3998,4001,-4003,4004,3999,3998,-4006,4010,4011,4007,-4007,4012,4013,4009,-4009,4013,4010,4006,-4010,4018,4019,4015,-4015,4020,4021,4017,-4017,4021, + 4018,4014,-4018,4012,4019,4018,-4014,4013,4018,4021,-4011,4010,4021,4020,-4012,4007,4016,4017,-4007,4006,4017,4014,-4010,4009,4014,4015,-4009,4023,4028,4029,-4023,4022, + 4029,4026,-4026,4025,4026,4027,-4025,4031,4036,4037,-4031,4030,4037,4034,-4034,4033,4034,4035,-4033,4038,4041,4040,-4040,4046,4047,4043,-4043,4048,4049,4045,-4045,4049, + 4046,4042,-4046,4054,4055,4051,-4051,4056,4057,4053,-4053,4057,4054,4050,-4054,4048,4055,4054,-4050,4049,4054,4057,-4047,4046,4057,4056,-4048,4043,4052,4053,-4043,4042, + 4053,4050,-4046,4045,4050,4051,-4045,4059,4064,4065,-4059,4058,4065,4062,-4062,4061,4062,4063,-4061,4067,4072,4073,-4067,4066,4073,4070,-4070,4069,4070,4071,-4069,4074, + 4077,4076,-4076,4082,4083,4079,-4079,4084,4085,4081,-4081,4085,4082,4078,-4082,4090,4091,4087,-4087,4092,4093,4089,-4089,4093,4090,4086,-4090,4084,4091,4090,-4086,4085, + 4090,4093,-4083,4082,4093,4092,-4084,4079,4088,4089,-4079,4078,4089,4086,-4082,4081,4086,4087,-4081,4095,4100,4101,-4095,4094,4101,4098,-4098,4097,4098,4099,-4097,4103, + 4108,4109,-4103,4102,4109,4106,-4106,4105,4106,4107,-4105,4110,4113,4112,-4112,4118,4119,4115,-4115,4120,4121,4117,-4117,4121,4118,4114,-4118,4126,4127,4123,-4123,4128, + 4129,4125,-4125,4129,4126,4122,-4126,4120,4127,4126,-4122,4121,4126,4129,-4119,4118,4129,4128,-4120,4115,4124,4125,-4115,4114,4125,4122,-4118,4117,4122,4123,-4117,4131, + 4136,4137,-4131,4130,4137,4134,-4134,4133,4134,4135,-4133,4139,4144,4145,-4139,4138,4145,4142,-4142,4141,4142,4143,-4141,4146,4149,4148,-4148,4154,4155,4151,-4151,4156, + 4157,4153,-4153,4157,4154,4150,-4154,4162,4163,4159,-4159,4164,4165,4161,-4161,4165,4162,4158,-4162,4156,4163,4162,-4158,4157,4162,4165,-4155,4154,4165,4164,-4156,4151, + 4160,4161,-4151,4150,4161,4158,-4154,4153,4158,4159,-4153,4167,4172,4173,-4167,4166,4173,4170,-4170,4169,4170,4171,-4169,4175,4180,4181,-4175,4174,4181,4178,-4178,4177, + 4178,4179,-4177,4182,4185,4184,-4184,4190,4191,4187,-4187,4192,4193,4189,-4189,4193,4190,4186,-4190,4198,4199,4195,-4195,4200,4201,4197,-4197,4201,4198,4194,-4198,4192, + 4199,4198,-4194,4193,4198,4201,-4191,4190,4201,4200,-4192,4187,4196,4197,-4187,4186,4197,4194,-4190,4189,4194,4195,-4189,4203,4208,4209,-4203,4202,4209,4206,-4206,4205, + 4206,4207,-4205,4211,4216,4217,-4211,4210,4217,4214,-4214,4213,4214,4215,-4213,4218,4221,4220,-4220,4225,4226,4223,-4223,4228,4225,4222,-4225,3961,4226,4225,-3961,3960, + 4225,4228,-3963,3965,4224,4222,-3964,3963,4222,4223,-3965,4230,4235,4236,-4230,4229,4236,4233,-4233,4232,4233,4234,-4232,4237,4240,4239,-4239,4256,4252,4277,-4279,4246, + 4256,4278,-4243,4244,4246,4249,-4248,4245,4244,4247,-4249,4253,4254,4251,-4251,4256,4253,4250,-4253,4245,4254,4253,-4245,4244,4253,4256,-4247,4249,4252,4250,-4248,4247, + 4250,4251,-4249,4258,4263,4264,-4258,4257,4264,4261,-4261,4260,4261,4262,-4260,4265,4268,4267,-4267,4224,3965,4274,-4276,3947,3950,4270,-4270,3962,4228,4276,-4274,4228, + 4224,4275,-4277,3955,3947,4269,-4272,3965,3962,4273,-4275,3950,3959,4272,-4271,3959,3955,4271,-4273,4252,4249,4241,-4278,4249,4246,4242,-4242,4283,4284,4280,-4280,4285, + 4286,4282,-4282,4286,4283,4279,-4283,4291,4292,4288,-4288,4293,4294,4290,-4290,4294,4291,4287,-4291,4285,4292,4291,-4287,4286,4291,4294,-4284,4283,4294,4293,-4285,4304, + 4301,4300,-4306,4300,4297,4298,-4300,4305,4300,4299,-4307,4303,4302,4301,-4305,4302,4295,4296,-4302,4301,4296,4297,-4301,4299,4298,4295,-4303,4306,4299,4302,-4304,4306, + 4303,4304,-4306,4311,4310,4309,-4313,4314,4307,4310,-4312,4313,4308,4307,-4315,4319,4318,4317,-4321,4322,4315,4318,-4320,4321,4316,4315,-4323,4327,4328,4324,-4324,4329, + 4330,4326,-4326,4330,4327,4323,-4327,4335,4336,4332,-4332,4337,4338,4334,-4334,4338,4335,4331,-4335,4329,4336,4335,-4331,4330,4335,4338,-4328,4327,4338,4337,-4329,4324, + 4333,4334,-4324,4323,4334,4331,-4327,4326,4331,4332,-4326,4340,4345,4346,-4340,4339,4346,4343,-4343,4342,4343,4344,-4342,4348,4353,4354,-4348,4347,4354,4351,-4351,4350, + 4351,4352,-4350,4355,4358,4357,-4357,4363,4364,4360,-4360,4365,4366,4362,-4362,4366,4363,4359,-4363,4371,4372,4368,-4368,4373,4374,4370,-4370,4374,4371,4367,-4371,4365, + 4372,4371,-4367,4366,4371,4374,-4364,4379,4380,4376,-4376,4380,4381,4377,-4377,4381,4382,4378,-4378,4382,4379,4375,-4379,4375,4376,4377,-4379,4382,4381,4380,-4380,4387, + 4388,4384,-4384,4388,4389,4385,-4385,4389,4390,4386,-4386,4390,4387,4383,-4387,4383,4384,4385,-4387,4390,4389,4388,-4388,4395,4396,4392,-4392,4396,4397,4393,-4393,4397, + 4398,4394,-4394,4398,4395,4391,-4395,4391,4392,4393,-4395,4398,4397,4396,-4396,4403,4404,4400,-4400,4404,4405,4401,-4401,4405,4406,4402,-4402,4406,4403,4399,-4403,4399, + 4400,4401,-4403,4406,4405,4404,-4404,4411,4412,4408,-4408,4412,4413,4409,-4409,4413,4414,4410,-4410,4414,4411,4407,-4411,4407,4408,4409,-4411,4414,4413,4412,-4412,4419, + 4420,4416,-4416,4420,4421,4417,-4417,4427,4428,4424,-4424,4422,4419,4415,-4419,4415,4416,4417,-4419,4422,4421,4420,-4420,4428,4429,4425,-4425,4430,4427,4423,-4427,4423, + 4424,4425,-4427,4430,4429,4428,-4428,4435,4436,4432,-4432,4436,4437,4433,-4433,4438,4435,4431,-4435,4431,4432,4433,-4435,4438,4437,4436,-4436,4443,4444,4440,-4440,4444, + 4445,4441,-4441,4446,4443,4439,-4443,4439,4440,4441,-4443,4446,4445,4444,-4444,4451,4452,4448,-4448,4452,4453,4449,-4449,4454,4451,4447,-4451,4447,4448,4449,-4451,4454, + 4453,4452,-4452,4459,4460,4456,-4456,4460,4461,4457,-4457,4462,4459,4455,-4459,4455,4456,4457,-4459,4462,4461,4460,-4460,4467,4468,4464,-4464,4468,4469,4465,-4465,4470, + 4467,4463,-4467,4463,4464,4465,-4467,4470,4469,4468,-4468,4475,4476,4472,-4472,4476,4477,4473,-4473,4478,4475,4471,-4475,4471,4472,4473,-4475,4478,4477,4476,-4476,4483, + 4484,4480,-4480,4484,4485,4481,-4481,4486,4483,4479,-4483,4479,4480,4481,-4483,4486,4485,4484,-4484,4491,4492,4488,-4488,4492,4493,4489,-4489,4494,4491,4487,-4491,4487, + 4488,4489,-4491,4494,4493,4492,-4492,4499,4500,4496,-4496,4500,4501,4497,-4497,4502,4499,4495,-4499,4495,4496,4497,-4499,4502,4501,4500,-4500,4507,4508,4504,-4504,4508, + 4509,4505,-4505,4510,4507,4503,-4507,4503,4504,4505,-4507,4510,4509,4508,-4508,4515,4516,4512,-4512,4516,4517,4513,-4513,4518,4515,4511,-4515,4511,4512,4513,-4515,4518, + 4517,4516,-4516,4523,4524,4520,-4520,4524,4525,4521,-4521,4526,4523,4519,-4523,4519,4520,4521,-4523,4526,4525,4524,-4524,4531,4532,4528,-4528,4532,4533,4529,-4529,4534, + 4531,4527,-4531,4527,4528,4529,-4531,4534,4533,4532,-4532,4539,4540,4536,-4536,4540,4541,4537,-4537,4542,4539,4535,-4539,4535,4536,4537,-4539,4542,4541,4540,-4540,4745, + 4544,4548,-4747,4745,4545,4551,-4748,4544,4543,4546,-4549,4547,4546,4543,-4555,4552,4553,4554,-4544,4550,4552,4543,-4545,4555,4556,-4558,4562,4569,4566,-4566,4590,4560, + 4572,-4562,4565,4566,4567,-4565,4570,4571,4567,-4567,4560,4559,4568,-4573,4573,4570,4566,-4570,4564,4571,4570,-4566,4565,4570,4573,-4563,4559,4558,4563,-4569,4598,4593, + 4597,-4595,4590,4558,4559,-4561,4572,4568,4563,-4562,4575,4580,4581,-4575,4574,4581,4578,-4578,4577,4578,4579,-4577,4583,4588,4589,-4583,4582,4589,4586,-4586,4585,4586, + 4587,-4585,4593,4592,4596,-4598,4592,4591,4595,-4597,4598,4591,4592,-4594,4597,4596,4595,-4595,4606,4601,4605,-4603,4601,4600,4604,-4606,4600,4599,4603,-4605,4606,4599, + 4600,-4602,4605,4604,4603,-4603,4614,4609,4613,-4611,4609,4608,4612,-4614,4608,4607,4611,-4613,4614,4607,4608,-4610,4613,4612,4611,-4611,4622,4617,4621,-4619,4617,4616, + 4620,-4622,4616,4615,4619,-4621,4622,4615,4616,-4618,4621,4620,4619,-4619,4630,4625,4629,-4627,4625,4624,4628,-4630,4624,4623,4627,-4629,4630,4623,4624,-4626,4629,4628, + 4627,-4627,4638,4633,4637,-4635,4633,4632,4636,-4638,4632,4631,4635,-4637,4638,4631,4632,-4634,4637,4636,4635,-4635,4646,4641,4645,-4643,4641,4640,4644,-4646,4640,4639, + 4643,-4645,4646,4639,4640,-4642,4645,4644,4643,-4643,4654,4649,4653,-4651,4649,4648,4652,-4654,4648,4647,4651,-4653,4654,4647,4648,-4650,4653,4652,4651,-4651,4655,4656, + 4657,-4659,4662,4659,4655,-4659,4661,4662,4658,-4658,4660,4661,4657,-4657,4659,4660,4656,-4656,4659,4662,4661,-4661,4670,4667,4663,-4667,4669,4670,4666,-4666,4668,4669, + 4665,-4665,4667,4668,4664,-4664,4678,4675,4671,-4675,4677,4678,4674,-4674,4676,4677,4673,-4673,4675,4676,4672,-4672,4686,4683,4679,-4683,4685,4686,4682,-4682,4684,4685, + 4681,-4681,4683,4684,4680,-4680,4694,4691,4687,-4691,4693,4694,4690,-4690,4692,4693,4689,-4689,4691,4692,4688,-4688,4695,4696,4697,-4699,4702,4699,4695,-4699,4701,4702, + 4698,-4698,4700,4701,4697,-4697,4699,4700,4696,-4696,4699,4702,4701,-4701,4703,4704,4705,-4707,4710,4707,4703,-4707,4709,4710,4706,-4706,4711,4712,4713,-4715,4707,4708, + 4704,-4704,4707,4710,4709,-4709,4718,4715,4711,-4715,4717,4718,4714,-4714,4715,4716,4712,-4712,4715,4718,4717,-4717,4722,4721,4720,-4720,4722,4719,4727,-4729,4723,4726, + 4725,-4725,4730,4729,4728,-4728,4726,4723,4729,-4731,4719,4726,4730,-4728,4723,4722,4728,-4730,3573,4733,4732,-3572,3569,4731,4733,-3574,3568,4731,4734,-3575,3574,4734, + 4735,-3577,3571,4732,4736,-3579,3576,4735,4736,-3568,3353,4737,4738,-3350,3355,4739,4740,-3352,3349,4738,4740,-3353,3353,3356,4739,-4738,3361,4741,4742,-3358,3363,4743, + 4744,-3360,3357,4742,4744,-3361,3361,3364,4743,-4742,4545,4745,4746,-4550,4544,4745,4747,-4551,3447,4748,4749,-3444,3449,4750,4751,-3446,3443,4749,4751,-3447,3447,3450, + 4750,-4749,3463,4752,4753,-3460,3465,4754,4755,-3462,3459,4753,4755,-3463,3463,3466,4754,-4753,3519,4756,4757,-3516,3521,4758,4759,-3518,3515,4757,4759,-3519,3523,4761, + 4762,-3527,3527,4760,4761,-3524,3531,4763,4765,-3535,3537,4764,4765,-3534,4770,4771,4767,-4767,4772,4773,4769,-4769,4773,4770,4766,-4770,4778,4779,4775,-4775,4780,4781, + 4777,-4777,4781,4778,4774,-4778,4786,4787,4783,-4783,4788,4789,4785,-4785,4789,4786,4782,-4786,4794,4795,4791,-4791,4796,4797,4793,-4793,4797,4794,4790,-4794,4802,4803, + 4799,-4799,4804,4805,4801,-4801,4805,4802,4798,-4802,4810,4811,4807,-4807,4812,4813,4809,-4809,4813,4810,4806,-4810,4818,4819,4815,-4815,4820,4821,4817,-4817,4821,4818, + 4814,-4818,4826,4827,4823,-4823,4828,4829,4825,-4825,4829,4826,4822,-4826,4834,4835,4831,-4831,4836,4837,4833,-4833,4837,4834,4830,-4834,4842,4843,4839,-4839,4844,4845, + 4841,-4841,4845,4842,4838,-4842,4866,4865,4869,-4864,4847,4846,4848,-4850,4853,4852,4851,-4851,4847,4849,4853,-4851,4848,4846,4851,-4853,4849,4848,4852,-4854,4861,4856, + -4860,4859,4858,4860,-4862,4859,4854,4855,-4859,4860,4857,4856,-4862,4862,4864,4865,-4867,4855,4854,4856,-4858,4854,4859,-4857,4863,4869,4868,-4868,4862,4866,4863,-4868, + 4865,4864,4868,-4870,4890,4889,4893,-4888,4871,4870,4872,-4874,4877,4876,4875,-4875,4871,4873,4877,-4875,4872,4870,4875,-4877,4873,4872,4876,-4878,4885,4880,-4884,4883, + 4882,4884,-4886,4883,4878,4879,-4883,4884,4881,4880,-4886,4886,4888,4889,-4891,4879,4878,4880,-4882,4878,4883,-4881,4887,4893,4892,-4892,4886,4890,4887,-4892,4889,4888, + 4892,-4894,4914,4913,4917,-4912,4895,4894,4896,-4898,4901,4900,4899,-4899,4895,4897,4901,-4899,4896,4894,4899,-4901,4897,4896,4900,-4902,4909,4904,-4908,4907,4906,4908, + -4910,4907,4902,4903,-4907,4908,4905,4904,-4910,4910,4912,4913,-4915,4903,4902,4904,-4906,4902,4907,-4905,4911,4917,4916,-4916,4910,4914,4911,-4916,4913,4912,4916,-4918, + 5424,4923,4919,-5426,4923,4924,4920,-4920,5426,4925,4921,-5428,4925,4922,4918,-4922,5425,4919,4920,-5428,5539,4959,4960,-5542,5428,4931,4927,-5430,4931,4932,4928,-4928, + 5430,4933,4929,-5432,4933,4930,4926,-4930,5429,4927,4928,-5432,4965,4962,4958,-4962,4938,4939,4935,-4935,4939,4940,4936,-4936,4940,4941,4937,-4937,4941,4938,4934,-4938, + 4934,4935,4936,-4938,5540,4965,4961,-5542,5584,4947,4943,-5559,4947,4948,4944,-4944,5590,4949,4945,-5589,4949,4946,4942,-4946,5558,4943,4944,-5571,4963,4964,4960,-4960, + 4954,4955,4951,-4951,4955,4956,4952,-4952,4956,4957,4953,-4953,4957,4954,4950,-4954,4950,4951,4952,-4954,5538,4963,4959,-5540,5551,4967,4968,-5554,4973,4970,4966,-4970, + 5552,4973,4969,-5554,4971,4972,4968,-4968,5550,4971,4967,-5552,5547,4975,4976,-5550,4981,4978,4974,-4978,5548,4981,4977,-5550,4979,4980,4976,-4976,5546,4979,4975,-5548, + 4938,4941,4940,-4940,5538,5540,4964,-4964,5004,5003,5007,-5009,5428,5430,4932,-4932,5424,5426,4924,-4924,5584,5560,4948,-4948,4954,4957,4956,-4956,5550,5552,4972,-4972, + 5074,5071,5067,-5071,5005,5004,5008,-5010,5073,5074,5070,-5070,5432,4992,4988,-5434,4992,4993,4989,-4989,5434,4994,4990,-5436,4994,4991,4987,-4991,5433,4988,4989,-5436, + 5072,5073,5069,-5069,5071,5072,5068,-5068,5006,5005,5009,-5011,5034,5031,5027,-5031,5010,5009,5008,-5008,5003,5006,5010,-5008,5016,5017,5013,-5013,5015,5016,5012,-5012, + 5472,5028,5029,-5809,5002,5001,5000,-5000,4995,4998,5002,-5000,4996,4995,4999,-5001,4997,4996,5000,-5002,4998,4997,5001,-5003,5017,5018,5014,-5014,5018,5015,5011,-5015, + 5011,5012,5013,-5015,5032,5033,5029,-5029,5436,5024,5020,-5438,5024,5025,5021,-5021,5438,5026,5022,-5440,5026,5023,5019,-5023,5437,5020,5021,-5440,5470,5032,5028,-5473, + 5526,5036,5037,-5526,5200,5199,5813,-5812,5444,5042,5038,-5446,5041,5040,5815,-5528,5059,5063,5064,-5056,5051,5048,5044,-5053,5052,5044,5045,-5055,5065,5062,5058,-5067, + 5486,5050,5046,-5489,5064,5056,5057,-5067,5487,5051,5052,-5486,5485,5052,5054,-5489,5049,5053,5054,-5046,5063,5060,5056,-5065,5055,5064,5066,-5059,5061,5065,5066,-5058, + 5432,5434,4993,-4993,5082,5079,5075,-5079,5081,5082,5078,-5078,5080,5081,5077,-5077,5079,5080,5076,-5076,5090,5087,5083,-5087,5089,5090,5086,-5086,5088,5089,5085,-5085, + 5087,5088,5084,-5084,5098,5095,5091,-5095,5097,5098,5094,-5094,5096,5097,5093,-5093,5095,5096,5092,-5092,5543,5100,5101,-5546,5106,5103,5099,-5103,5544,5106,5102,-5546, + 5104,5105,5101,-5101,5542,5104,5100,-5544,5535,5108,5109,-5538,5114,5111,5107,-5111,5536,5114,5110,-5538,5112,5113,5109,-5109,5534,5112,5108,-5536,5122,5119,5115,-5119, + 5121,5122,5118,-5118,5120,5121,5117,-5117,5119,5120,5116,-5116,5130,5127,5123,-5127,5129,5130,5126,-5126,5128,5129,5125,-5125,5127,5128,5124,-5124,5138,5135,5131,-5135, + 5137,5138,5134,-5134,5136,5137,5133,-5133,5135,5136,5132,-5132,5146,5143,5139,-5143,5145,5146,5142,-5142,5144,5145,5141,-5141,5143,5144,5140,-5140,5154,5151,5147,-5151, + 5153,5154,5150,-5150,5152,5153,5149,-5149,5151,5152,5148,-5148,5162,5159,5155,-5159,5161,5162,5158,-5158,5160,5161,5157,-5157,5159,5160,5156,-5156,5170,5167,5163,-5167, + 5169,5170,5166,-5166,5168,5169,5165,-5165,5167,5168,5164,-5164,5178,5175,5171,-5175,5177,5178,5174,-5174,5176,5177,5173,-5173,5175,5176,5172,-5172,5198,5196,5195,-5185, + 5186,5198,5184,-5198,5197,5184,5201,-5203,5191,5192,5188,-5188,5192,5194,5190,-5189,5194,5191,5187,-5191,5196,5183,5185,-5196,5184,5195,5200,-5202,5185,5197,5202,-5200, + 5203,5846,5206,-5208,5931,5203,5207,-5933,5933,5245,5205,-5935,5215,5213,5219,-5218,5220,5213,5216,-5218,5760,5228,5214,-5219,5227,5222,-5222,5227,5221,5223,-5226,5224, + 5228,5759,-5219,5233,5234,5230,-5230,5235,5236,5232,-5232,5236,5233,5229,-5233,5241,5242,5238,-5238,5243,5244,5240,-5240,5244,5241,5237,-5241,5235,5242,5241,-5237,5236, + 5241,5244,-5234,5233,5244,5243,-5235,5230,5239,5240,-5230,5229,5240,5237,-5233,5232,5237,5238,-5232,5251,5252,5248,-5248,5253,5254,5250,-5250,5254,5251,5247,-5251,5259, + 5260,5256,-5256,5261,5262,5258,-5258,5262,5259,5255,-5259,5253,5260,5259,-5255,5254,5259,5262,-5252,5251,5262,5261,-5253,5252,5253,5249,-5249,5261,5260,5253,-5253,5257, + 5256,5260,-5262,5234,5235,5231,-5231,5243,5242,5235,-5235,5239,5238,5242,-5244,5230,5231,5238,-5240,5267,5268,5264,-5264,5269,5270,5266,-5266,5270,5267,5263,-5267,5275, + 5276,5272,-5272,5277,5278,5274,-5274,5278,5275,5271,-5275,5269,5276,5275,-5271,5270,5275,5278,-5268,5267,5278,5277,-5269,5264,5273,5274,-5264,5263,5274,5271,-5267,5266, + 5271,5272,-5266,5283,5284,5280,-5280,5285,5286,5282,-5282,5286,5283,5279,-5283,5291,5292,5288,-5288,5293,5294,5290,-5290,5294,5291,5287,-5291,5285,5292,5291,-5287,5286, + 5291,5294,-5284,5299,5300,5296,-5296,5300,5301,5297,-5297,5301,5302,5298,-5298,5302,5299,5295,-5299,5295,5296,5297,-5299,5302,5301,5300,-5300,5307,5308,5304,-5304,5308, + 5309,5305,-5305,5309,5310,5306,-5306,5310,5307,5303,-5307,5303,5304,5305,-5307,5310,5309,5308,-5308,5315,5316,5312,-5312,5316,5317,5313,-5313,5317,5318,5314,-5314,5318, + 5315,5311,-5315,5875,5876,5872,-5872,5318,5317,5316,-5316,5323,5324,5320,-5320,5324,5325,5321,-5321,5325,5326,5322,-5322,5326,5323,5319,-5323,5319,5320,5321,-5323,5326, + 5325,5324,-5324,5331,5332,5328,-5328,5332,5333,5329,-5329,5339,5340,5336,-5336,5334,5331,5327,-5331,5327,5328,5329,-5331,5334,5333,5332,-5332,5340,5341,5337,-5337,5342, + 5339,5335,-5339,5335,5336,5337,-5339,5342,5341,5340,-5340,5347,5348,5344,-5344,5348,5349,5345,-5345,5350,5347,5343,-5347,5343,5344,5345,-5347,5350,5349,5348,-5348,5355, + 5356,5352,-5352,5356,5357,5353,-5353,5358,5355,5351,-5355,5351,5352,5353,-5355,5358,5357,5356,-5356,5363,5364,5360,-5360,5364,5365,5361,-5361,5366,5363,5359,-5363,5359, + 5360,5361,-5363,5366,5365,5364,-5364,5371,5372,5368,-5368,5372,5373,5369,-5369,5374,5371,5367,-5371,5367,5368,5369,-5371,5374,5373,5372,-5372,5379,5380,5376,-5376,5380, + 5381,5377,-5377,5382,5379,5375,-5379,5375,5376,5377,-5379,5382,5381,5380,-5380,5383,5388,5386,-5386,5385,5386,5387,-5385,5389,5390,5387,-5387,5391,5389,5386,-5389,5384, + 5390,5389,-5386,5385,5389,5391,-5384,5393,5398,5399,-5393,5392,5399,5396,-5396,5395,5396,5397,-5395,5401,5406,5407,-5401,5400,5407,5404,-5404,5403,5404,5405,-5403,5422, + 5421,5414,-5414,5413,5414,5410,-5410,5409,5410,5417,-5419,5418,5417,5421,-5423,5420,5415,5414,-5422,5423,5412,5415,-5421,5422,5413,5412,-5424,5419,5408,5409,-5419,5416, + 5411,5408,-5420,5417,5410,5411,-5417,5408,5411,5415,-5413,5409,5408,5412,-5414,5411,5410,5414,-5416,5416,5419,5423,-5421,5417,5416,5420,-5422,5419,5418,5422,-5424,5268, + 5269,5265,-5265,5277,5276,5269,-5269,5273,5272,5276,-5278,5264,5265,5272,-5274,4922,5424,5425,-4919,4924,5426,5427,-4921,4918,5425,5427,-4922,4922,4925,5426,-5425,4930, + 5428,5429,-4927,4932,5430,5431,-4929,4926,5429,5431,-4930,4930,4933,5430,-5429,4991,5432,5433,-4988,4993,5434,5435,-4990,4987,5433,5435,-4991,4991,4994,5434,-5433,5023, + 5436,5437,-5020,5025,5438,5439,-5022,5019,5437,5439,-5023,5027,5441,5442,-5031,5031,5440,5441,-5028,5035,5443,5445,-5039,5527,5444,5445,-5526,5467,5463,5458,-5462,5468, + 5465,5460,-5460,5464,5469,5467,-5466,5455,5451,5446,-5450,5452,5457,5455,-5454,5456,5453,5448,-5448,5451,5456,5447,-5447,5454,5450,5456,-5452,5450,5452,5453,-5457,5453, + 5455,5449,-5449,5457,5454,5451,-5456,5452,5450,5454,-5458,5463,5468,5459,-5459,5466,5462,5468,-5464,5462,5464,5465,-5469,5465,5467,5461,-5461,5469,5466,5463,-5468,5464, + 5462,5466,-5470,5441,5472,5471,-5443,5440,5470,5472,-5442,5023,5026,5438,-5437,5436,5438,5025,-5025,5497,5478,5474,-5500,5478,5479,5475,-5475,5483,5480,5476,-5485,5480, + 5477,5473,-5477,5499,5474,5475,-5499,5497,5500,5479,-5479,5477,5481,5482,-5474,5500,5483,5484,-5499,5473,5482,5484,-5477,5477,5480,5483,-5482,5043,5046,5050,-5048,5486, + 5053,5051,-5488,5053,5486,5488,-5055,5047,5487,5485,-5044,5043,5485,5488,-5047,5050,5486,5487,-5048,5195,5185,5199,-5201,5183,5186,5197,-5186,5196,5198,5186,-5184,5492, + 5490,5489,-5182,5179,5492,5181,-5492,5491,5181,5495,-5497,5490,5182,5180,-5490,5181,5489,5494,-5496,5180,5491,5496,-5494,5489,5180,5493,-5495,5182,5179,5491,-5181,5490, + 5492,5179,-5183,5481,5497,5499,-5483,5482,5499,5498,-5485,5481,5483,5500,-5498,5479,5500,5498,-5476,5015,5018,5017,-5017,4996,4997,4998,-4996,5505,5509,5510,-5502,5511, + 5508,5504,-5513,5510,5502,5503,-5513,5509,5506,5502,-5511,5501,5510,5512,-5505,5507,5511,5512,-5504,5517,5515,5513,-5519,5519,5517,5521,-5524,5518,5513,5514,-5521,5516, + 5519,5520,-5515,5517,5519,5516,-5516,5518,5520,5524,-5523,5520,5519,5523,-5525,5517,5518,5522,-5522,5522,5524,5523,-5522,5443,5526,5525,-5446,5041,5527,5525,-5038,5793, + 5792,5794,-5796,5791,5790,5792,-5794,5789,5788,5790,-5792,5787,5786,5788,-5790,5785,5784,5786,-5788,5783,5782,5784,-5786,5781,5780,5782,-5784,5779,5528,5780,-5782,5107, + 5535,5537,-5111,5113,5536,5537,-5110,5111,5534,5535,-5108,4958,5539,5541,-4962,4964,5540,5541,-4961,4962,5538,5539,-4959,4962,4965,5540,-5539,5099,5543,5545,-5103,5105, + 5544,5545,-5102,5103,5542,5543,-5100,4974,5547,5549,-4978,4980,5548,5549,-4977,4978,5546,5547,-4975,4966,5551,5553,-4970,4972,5552,5553,-4969,4970,5550,5551,-4967,4970, + 4973,5552,-5551,5529,5530,5528,-5780,5531,5532,5530,-5530,5533,5554,5532,-5532,5555,5556,5554,-5534,5568,5567,5750,-5750,5501,5504,5508,-5506,5034,5030,5442,-5572,5809, + 5571,5442,5471,-5809,5573,5565,-5757,5576,5575,5749,-5751,5575,5562,5577,-5560,5579,5557,-5747,5564,5578,5561,-5581,5579,5563,5581,-5558,5564,5580,-5742,5589,5751,5598, + -5600,5603,5596,5607,-5603,5604,5597,-5754,5605,5606,5751,-5590,5592,5607,5586,-5607,5605,5589,5608,-5594,5609,5591,-5749,5595,5611,5591,-5610,5610,5587,5612,-5595,4948, + 5560,5570,-4945,5559,5589,5599,-5569,5566,5597,5608,-5578,5617,5618,5797,-5797,5575,5605,5593,-5563,5573,5603,5602,-5573,5633,5634,5801,-5801,5561,5591,5611,-5581,5719, + 5718,5722,-5724,5710,5711,5718,-5720,5577,5608,5589,-5560,5619,5620,5799,-5799,5574,5604,5603,-5574,5714,5715,5711,-5711,5576,5606,5605,-5576,5449,5446,5614,-5212,5580, + 5611,5616,-5586,5723,5722,5715,-5715,5626,5622,5617,-5621,5629,5632,5626,-5625,5627,5624,5619,-5619,5622,5627,5618,-5618,5631,5630,5627,-5623,5630,5629,5624,-5628,5624, + 5626,5620,-5620,5632,5631,5622,-5627,5623,5621,5625,-5629,5623,5628,5632,-5630,5625,5621,5630,-5632,5621,5623,5629,-5631,5628,5625,5631,-5633,5642,5638,5633,-5637,5645, + 5648,5642,-5641,5643,5640,5635,-5635,5638,5643,5634,-5634,5647,5646,5643,-5639,5646,5645,5640,-5644,5640,5642,5636,-5636,5648,5647,5638,-5643,5639,5637,5641,-5645,5639, + 5644,5648,-5646,5641,5637,5646,-5648,5637,5639,5645,-5647,5644,5641,5647,-5649,5658,5654,5649,-5653,5666,5671,5668,-5673,5659,5656,5651,-5651,5654,5659,5650,-5650,5672, + 5668,5665,-5670,5671,5666,5667,-5671,5656,5658,5652,-5652,5668,5671,5670,-5666,5666,5672,5669,-5668,5667,5669,5653,-5661,5665,5670,5661,-5664,5670,5667,5660,-5662,5669, + 5665,5663,-5654,5655,5664,5658,-5657,5657,5662,5659,-5655,5662,5655,5656,-5660,5664,5657,5654,-5659,5655,5662,5657,-5665,5678,5683,5680,-5685,5684,5680,5677,-5682,5683, + 5678,5679,-5683,5680,5683,5682,-5678,5678,5684,5681,-5680,5679,5681,5673,-5675,5677,5682,5675,-5677,5682,5679,5674,-5676,5681,5677,5676,-5674,5688,5692,5693,-5697,5687, + 5690,5695,-5695,5692,5687,5694,-5694,5690,5688,5696,-5696,5691,5685,5688,-5691,5689,5686,5687,-5693,5686,5691,5690,-5688,5685,5689,5692,-5689,5691,5686,5689,-5686,5702, + 5707,5704,-5709,5708,5704,5701,-5706,5707,5702,5703,-5707,5704,5707,5706,-5702,5702,5708,5705,-5704,5703,5705,5697,-5699,5701,5706,5699,-5701,5706,5703,5698,-5700,5705, + 5701,5700,-5698,5721,5716,5715,-5723,5724,5713,5716,-5722,5723,5714,5713,-5725,5720,5709,5710,-5720,5717,5712,5709,-5721,5718,5711,5712,-5718,5709,5712,5716,-5714,5710, + 5709,5713,-5715,5712,5711,5715,-5717,5717,5720,5724,-5722,5718,5717,5721,-5723,5720,5719,5723,-5725,5735,5734,5738,-5740,5726,5727,5734,-5736,5730,5731,5727,-5727,5739, + 5738,5731,-5731,5737,5732,5731,-5739,5740,5729,5732,-5738,5739,5730,5729,-5741,5736,5725,5726,-5736,5733,5728,5725,-5737,5734,5727,5728,-5734,5725,5728,5732,-5730,5726, + 5725,5729,-5731,5728,5727,5731,-5733,5733,5736,5740,-5738,5734,5733,5737,-5739,5736,5735,5739,-5741,5563,5564,5741,-5743,5581,5563,-5743,5594,5612,-5745,5610,5745,-5588, + 5578,5579,5746,-5748,5561,5578,-5748,5610,5609,5748,-5746,5559,5568,-5750,5575,5559,-5750,5567,5246,-5751,5246,5576,-5751,5751,5586,-5599,5606,5586,-5752,5593,5608,-5753, + 5603,5604,5753,-5755,5596,5603,-5755,5566,5574,-5756,5574,5573,5756,-5756,5577,5562,-5758,5742,5569,5582,-5582,5573,5572,5607,-5566,5757,5574,5566,-5578,5758,5576,5246, + -5608,5744,5612,5613,-5601,5602,5607,-5593,5752,5608,5597,-5605,5595,5743,-5612,5572,5602,5752,-5758,5757,5752,5604,-5575,5447,5448,5212,-5584,5758,5592,5606,-5577,5562, + 5593,5592,-5759,5448,5449,5211,-5213,5580,5585,-5742,4946,4949,5590,-5616,4942,5601,5588,-4946,5611,5743,-5617,4946,5615,5601,-4943,5595,5594,5744,-5744,5752,5602,-5593, + 5592,5593,-5753,5572,5757,-5759,5607,5572,-5759,5562,5758,-5758,5223,5222,5227,-5227,5219,5213,-5221,5217,5216,-5216,5225,5223,-5227,5766,5762,-5762,5766,5761,5763,-5765, + 5763,5762,5766,-5766,5759,5228,-5761,5218,5214,-5225,5764,5763,-5766,5772,5770,5767,-5769,5769,5770,5771,-5769,5778,5774,-5774,5778,5773,5775,-5777,5775,5774,5778,-5778, + 5771,5770,-5773,5768,5767,-5770,5776,5775,-5778,5111,5114,5536,-5535,5534,5536,5113,-5113,4978,4981,5548,-5547,5546,5548,4980,-4980,5103,5106,5544,-5543,5542,5544,5105, + -5105,5289,5288,5292,-5294,5281,5280,5284,-5286,5285,5284,5293,-5293,5283,5294,5293,-5285,5565,5596,5754,-5757,5756,5754,5753,-5756,5755,5753,5597,-5567,5568,5599,5598, + -5568,5569,5600,5613,-5583,5651,5652,5807,-5807,5446,5447,5583,-5615,5649,5650,5805,-5805,5635,5636,5803,-5803,5636,5633,5800,-5804,5620,5617,5796,-5800,5652,5649,5804, + -5808,5650,5651,5806,-5806,5634,5635,5802,-5802,5618,5619,5798,-5798,5031,5034,-5441,5470,5440,-5572,5032,5470,-5034,5470,5571,-5810,5033,5470,-5810,5440,5034,-5572,5033, + 5809,5808,-5030,5471,5472,-5809,5006,5003,5004,-5006,5505,5508,5511,-5510,5509,5511,5507,-5507,5051,5053,5049,-5049,5059,5062,5065,-5064,5063,5065,5061,-5061,5526,5443, + 5814,-5816,5495,5494,5821,-5823,5444,5814,5039,-5043,5527,5815,5814,-5445,5496,5495,5822,-5824,5036,5526,5815,-5041,5443,5035,5039,-5815,5459,5460,5818,-5818,5458,5459, + 5817,-5817,5199,5202,5810,-5814,5494,5493,5820,-5822,5461,5458,5816,-5820,5202,5201,5812,-5811,5201,5200,5811,-5813,5493,5496,5823,-5821,5460,5461,5819,-5819,5557,5587, + 5745,-5747,5746,5745,5748,-5748,5747,5748,5591,-5562,5824,5827,-5829,5826,5824,5828,-5830,4986,5835,5831,-5834,5840,5839,5838,-5831,5835,4985,5834,-5837,5835,5836,-5832, + 4985,5826,4982,-5839,5828,5827,4983,-5826,5827,4986,4984,-4984,5834,4985,5838,-5840,5826,5829,5837,-4983,4986,5833,5832,-4985,5831,5836,5840,-5831,5847,5851,-5851,5849, + 5852,5851,-5848,5845,5856,5854,-5859,5863,5853,5861,-5863,5858,5859,5857,-5845,5858,5854,-5860,5844,5861,5841,-5850,5851,5848,5842,-5851,5850,5842,5843,-5846,5857,5862, + 5861,-5845,5849,5841,5860,-5853,5845,5843,5855,-5857,5854,5853,5863,-5860,5869,5870,-5786,5827,5850,5845,-4987,4985,5844,5849,-5827,5870,5529,-5780,5870,5531,-5530,5699, + 5698,5189,-5211,5785,5787,-5870,5869,5787,-5790,5697,5700,5209,-5194,5869,5791,-5794,5533,5870,-5556,5868,5869,-5794,5700,5699,5210,-5210,5698,5697,5193,-5190,5870,5781, + -5784,5867,5868,-5794,5533,5531,-5871,5870,5779,-5782,5388,5383,5864,-5866,5391,5388,5865,-5867,5793,5795,-5868,5383,5391,5866,-5865,5870,5783,-5786,5869,5789,-5792,5876, + 5877,5873,-5873,5877,5878,5874,-5874,5878,5875,5871,-5875,5878,5877,5876,-5876,5884,5889,5886,-5891,5890,5886,5883,-5888,5889,5884,5885,-5889,5886,5889,5888,-5884,5884, + 5890,5887,-5886,5885,5887,5879,-5881,5883,5888,5881,-5883,5888,5885,5880,-5882,5887,5883,5882,-5880,5674,5673,5891,-5893,5676,5675,5893,-5895,5673,5676,5894,-5892,5675, + 5674,5892,-5894,5903,5900,5896,-5905,5900,5901,5897,-5897,5905,5902,5898,-5907,5902,5899,5895,-5899,5904,5896,5897,-5907,5903,5905,5901,-5901,5899,5903,5904,-5896,5901, + 5905,5906,-5898,5895,5904,5906,-5899,5899,5902,5905,-5904,5915,5912,5908,-5917,5912,5913,5909,-5909,5917,5914,5910,-5919,5914,5911,5907,-5911,5916,5908,5909,-5919,5915, + 5917,5913,-5913,5911,5915,5916,-5908,5913,5917,5918,-5910,5907,5916,5918,-5911,5911,5914,5917,-5916,5927,5924,5920,-5929,5924,5925,5921,-5921,5929,5926,5922,-5931,5926, + 5923,5919,-5923,5928,5920,5921,-5931,5927,5929,5925,-5925,5923,5927,5928,-5920,5925,5929,5930,-5922,5919,5928,5930,-5923,5923,5926,5929,-5928,5245,5204,5208,-5206,5932, + 5207,5206,-5935,5931,5933,5846,-5204,5204,5931,5932,-5209,5846,5933,5934,-5207,5208,5932,5934,-5206,5204,5245,5933,-5932,5935,5942,5938,-5940,5943,5935,5939,-5945,5945, + 5941,5937,-5947,5941,5936,5940,-5938,5944,5939,5938,-5947,5943,5945,5942,-5936,5936,5943,5944,-5941,5942,5945,5946,-5939,5940,5944,5946,-5938,5936,5941,5945,-5944,5967, + 5966,5970,-5965,5948,5947,5949,-5951,5954,5953,5952,-5952,5948,5950,5954,-5952,5949,5947,5952,-5954,5950,5949,5953,-5955,5962,5957,-5961,5960,5959,5961,-5963,5960,5955, + 5956,-5960,5961,5958,5957,-5963,5963,5965,5966,-5968,5956,5955,5957,-5959,5955,5960,-5958,5964,5970,5969,-5969,5963,5967,5964,-5969,5966,5965,5969,-5971,6944,5976,5972, + -6946,5976,5977,5973,-5973,6946,5978,5974,-6948,5978,5975,5971,-5975,6945,5972,5973,-6948,7199,6012,6013,-7202,6948,5984,5980,-6950,5984,5985,5981,-5981,6950,5986,5982, + -6952,5986,5983,5979,-5983,6949,5980,5981,-6952,6018,6015,6011,-6015,5991,5992,5988,-5988,5992,5993,5989,-5989,5993,5994,5990,-5990,5994,5991,5987,-5991,5987,5988,5989, + -5991,7200,6018,6014,-7202,5999,6000,5996,-5996,6000,6001,5997,-5997,6001,6002,5998,-5998,6002,5999,5995,-5999,5995,5996,5997,-5999,6016,6017,6013,-6013,6007,6008,6004, + -6004,6008,6009,6005,-6005,6009,6010,6006,-6006,6010,6007,6003,-6007,6003,6004,6005,-6007,7198,6016,6012,-7200,7217,6020,6021,-7220,6026,6023,6019,-6023,7218,6026,6022, + -7220,6024,6025,6021,-6021,7216,6024,6020,-7218,7213,6028,6029,-7216,6034,6031,6027,-6031,7214,6034,6030,-7216,6032,6033,6029,-6029,7212,6032,6028,-7214,6039,6040,6036, + -6036,6040,6041,6037,-6037,6041,6042,6038,-6038,6042,6039,6035,-6039,5991,5994,5993,-5993,7198,7200,6017,-6017,6110,6109,6113,-6115,6948,6950,5985,-5985,6944,6946,5977, + -5977,5999,6002,6001,-6001,6007,6010,6009,-6009,7216,7218,6025,-6025,6049,6050,6046,-6046,6050,6051,6047,-6047,6051,6052,6048,-6048,6052,6049,6045,-6049,6045,6046,6047, + -6049,7187,6086,6087,-7189,6057,6058,6054,-6054,6058,6059,6055,-6055,6059,6060,6056,-6056,6060,6057,6053,-6057,6053,6054,6055,-6057,6294,6291,6287,-6291,6955,6066,6062, + -6957,6066,6067,6063,-6063,6957,6068,6064,-6959,6068,6065,6061,-6065,6956,6062,6063,-6959,6111,6110,6114,-6116,7225,6074,6070,-7225,6074,6075,6071,-6071,7222,6076,6072, + -7227,6076,6073,6069,-6073,7224,6070,6071,-7227,6293,6294,6290,-6290,6959,6082,6078,-6961,6082,6083,6079,-6079,6961,6084,6080,-6963,6084,6081,6077,-6081,6960,6078,6079, + -6963,7186,6090,6086,-7188,7190,6094,6095,-7193,6292,6293,6289,-6289,7191,6100,6096,-7193,6291,6292,6288,-6288,6112,6111,6115,-6117,6140,6137,6133,-6137,6116,6115,6114, + -6114,6109,6112,6116,-6114,6122,6123,6119,-6119,6121,6122,6118,-6118,6955,6957,6067,-6067,7093,6134,6135,-7093,6108,6107,6106,-6106,6101,6104,6108,-6106,6102,6101,6105, + -6107,6103,6102,6106,-6108,6104,6103,6107,-6109,6123,6124,6120,-6120,6124,6121,6117,-6121,6117,6118,6119,-6121,6138,6139,6135,-6135,6963,6130,6126,-6965,6130,6131,6127, + -6127,6965,6132,6128,-6967,6132,6129,6125,-6129,6964,6126,6127,-6967,7091,6138,6134,-7094,7149,6142,6143,-7149,6148,6145,6141,-6145,6971,6148,6144,-6973,6146,6147,6143, + -6143,6165,6169,6170,-6162,6157,6154,6150,-6159,6158,6150,6151,-6161,6171,6168,6164,-6173,7107,6156,6152,-7110,6170,6162,6163,-6173,7108,6157,6158,-7107,7106,6158,6160, + -7110,6155,6159,6160,-6152,6169,6166,6162,-6171,6161,6170,6172,-6165,6167,6171,6172,-6164,7065,6178,6176,-7065,7061,6174,6178,-7066,6938,6175,6181,-6942,6941,6181,6183, + -6943,6174,6173,6176,-6179,7064,6176,6173,-7067,6942,6183,6184,-6944,6184,6175,6179,-6178,6175,6184,6183,-6182,6180,6182,6173,-6175,7205,6188,6186,-7205,7186,7189,6091, + -6091,6959,6961,6083,-6083,6195,6196,6192,-6192,6196,6197,6193,-6193,6197,6198,6194,-6194,6198,6195,6191,-6195,6203,6204,6200,-6200,6205,6206,6202,-6202,6206,6203,6199, + -6203,6211,6212,6208,-6208,6213,6214,6210,-6210,6214,6211,6207,-6211,6220,6221,6217,-6217,6219,6220,6216,-6216,6221,6222,6218,-6218,6222,6219,6215,-6219,6227,6228,6224, + -6224,6229,6230,6226,-6226,6230,6227,6223,-6227,6235,6236,6232,-6232,6237,6238,6234,-6234,6238,6235,6231,-6235,6243,6244,6240,-6240,6245,6246,6242,-6242,6246,6243,6239, + -6243,6251,6252,6248,-6248,6253,6254,6250,-6250,6254,6251,6247,-6251,6259,6260,6256,-6256,6260,6261,6257,-6257,6261,6262,6258,-6258,6262,6259,6255,-6259,6267,6268,6264, + -6264,6269,6270,6266,-6266,6270,6267,6263,-6267,6275,6276,6272,-6272,6277,6278,6274,-6274,6278,6275,6271,-6275,6284,6285,6281,-6281,6283,6284,6280,-6280,6285,6286,6282, + -6282,6286,6283,6279,-6283,7193,6097,6100,-7192,6302,6299,6295,-6299,6301,6302,6298,-6298,6300,6301,6297,-6297,6299,6300,6296,-6296,6310,6307,6303,-6307,6309,6310,6306, + -6306,6308,6309,6305,-6305,6307,6308,6304,-6304,6318,6315,6311,-6315,6317,6318,6314,-6314,6316,6317,6313,-6313,6315,6316,6312,-6312,7209,6320,6321,-7212,6326,6323,6319, + -6323,7210,6326,6322,-7212,6324,6325,6321,-6321,7208,6324,6320,-7210,7195,6328,6329,-7198,6334,6331,6327,-6331,7196,6334,6330,-7198,6332,6333,6329,-6329,7194,6332,6328, + -7196,6342,6339,6335,-6339,6341,6342,6338,-6338,6340,6341,6337,-6337,6339,6340,6336,-6336,6350,6347,6343,-6347,6349,6350,6346,-6346,6348,6349,6345,-6345,6347,6348,6344, + -6344,6358,6355,6351,-6355,6357,6358,6354,-6354,6356,6357,6353,-6353,6355,6356,6352,-6352,6366,6363,6359,-6363,6365,6366,6362,-6362,6364,6365,6361,-6361,6363,6364,6360, + -6360,6374,6371,6367,-6371,6373,6374,6370,-6370,6372,6373,6369,-6369,6371,6372,6368,-6368,6382,6379,6375,-6379,6381,6382,6378,-6378,6380,6381,6377,-6377,6379,6380,6376, + -6376,6390,6387,6383,-6387,6389,6390,6386,-6386,6388,6389,6385,-6385,6387,6388,6384,-6384,6398,6395,6391,-6395,6397,6398,6394,-6394,6396,6397,6393,-6393,6395,6396,6392, + -6392,6418,6416,6415,-6405,6406,6418,6404,-6418,6417,6404,6421,-6423,6411,6412,6408,-6408,6413,6414,6410,-6410,6414,6411,6407,-6411,6416,6403,6405,-6416,6404,6415,6420, + -6422,6405,6417,6422,-6420,6427,6428,6424,-6424,6429,6430,6426,-6426,6430,6427,6423,-6427,6435,6436,6433,-6433,6436,6434,6431,-6434,6440,6441,6438,-6438,6443,6440,6437, + -6440,6435,6441,6440,-6437,6436,6440,6443,-6435,6431,6439,6437,-6434,6433,6437,6438,-6433,6444,6446,6449,-6448,6445,6444,6447,-6449,6451,6456,6457,-6451,6450,6457,6454, + -6454,6453,6454,6455,-6453,6458,6461,6460,-6460,6468,6466,6472,-6471,6473,6466,6469,-6471,7445,6481,6467,-6472,6480,6475,-6475,6480,6474,6476,-6479,6477,6481,7444,-6472, + 6486,6487,6483,-6483,6488,6489,6485,-6485,6489,6486,6482,-6486,6494,6495,6491,-6491,6496,6497,6493,-6493,6497,6494,6490,-6494,6488,6495,6494,-6490,6489,6494,6497,-6487, + 6486,6497,6496,-6488,6483,6492,6493,-6483,6482,6493,6490,-6486,6485,6490,6491,-6485,6499,6504,6505,-6499,6498,6505,6502,-6502,6501,6502,6503,-6501,6507,6512,6513,-6507, + 6506,6513,6510,-6510,6509,6510,6511,-6509,6514,6517,6516,-6516,6522,6523,6519,-6519,6524,6525,6521,-6521,6525,6522,6518,-6522,6530,6531,6527,-6527,6532,6533,6529,-6529, + 6533,6530,6526,-6530,6524,6531,6530,-6526,6525,6530,6533,-6523,6522,6533,6532,-6524,6519,6528,6529,-6519,6518,6529,6526,-6522,6521,6526,6527,-6521,6535,6540,6541,-6535, + 6534,6541,6538,-6538,6537,6538,6539,-6537,6543,6548,6549,-6543,6542,6549,6546,-6546,6545,6546,6547,-6545,6550,6553,6552,-6552,6558,6559,6555,-6555,6560,6561,6557,-6557, + 6561,6558,6554,-6558,6566,6567,6563,-6563,6568,6569,6565,-6565,6569,6566,6562,-6566,6560,6567,6566,-6562,6561,6566,6569,-6559,6558,6569,6568,-6560,6555,6564,6565,-6555, + 6554,6565,6562,-6558,6557,6562,6563,-6557,6571,6576,6577,-6571,6570,6577,6574,-6574,6573,6574,6575,-6573,6579,6584,6585,-6579,6578,6585,6582,-6582,6581,6582,6583,-6581, + 6586,6589,6588,-6588,6593,6594,6591,-6591,6596,6593,6590,-6593,6445,6594,6593,-6445,6444,6593,6596,-6447,6449,6592,6590,-6448,6447,6590,6591,-6449,6598,6603,6604,-6598, + 6597,6604,6601,-6601,6600,6601,6602,-6600,6605,6608,6607,-6607,6592,6449,6616,-6618,6431,6434,6612,-6612,6446,6596,6618,-6616,6596,6592,6617,-6619,6439,6431,6611,-6614, + 6449,6446,6615,-6617,6434,6443,6614,-6613,6443,6439,6613,-6615,6623,6624,6620,-6620,6625,6626,6622,-6622,6626,6623,6619,-6623,6631,6632,6628,-6628,6633,6634,6630,-6630, + 6634,6631,6627,-6631,6625,6632,6631,-6627,6626,6631,6634,-6624,6623,6634,6633,-6625,6644,6641,6640,-6646,6640,6637,6638,-6640,6645,6640,6639,-6647,6643,6642,6641,-6645, + 6642,6635,6636,-6642,6641,6636,6637,-6641,6639,6638,6635,-6643,6646,6639,6642,-6644,6646,6643,6644,-6646,6651,6650,6649,-6653,6654,6647,6650,-6652,6653,6648,6647,-6655, + 6659,6658,6657,-6661,6662,6655,6658,-6660,6661,6656,6655,-6663,6667,6668,6664,-6664,6669,6670,6666,-6666,6670,6667,6663,-6667,6675,6676,6672,-6672,6677,6678,6674,-6674, + 6678,6675,6671,-6675,6669,6676,6675,-6671,6670,6675,6678,-6668,6667,6678,6677,-6669,6664,6673,6674,-6664,6663,6674,6671,-6667,6666,6671,6672,-6666,6683,6684,6680,-6680, + 6685,6686,6682,-6682,6686,6683,6679,-6683,6691,6692,6688,-6688,6693,6694,6690,-6690,6694,6691,6687,-6691,6685,6692,6691,-6687,6686,6691,6694,-6684,6699,6700,6696,-6696, + 6700,6701,6697,-6697,6701,6702,6698,-6698,6702,6699,6695,-6699,6695,6696,6697,-6699,6702,6701,6700,-6700,6707,6708,6704,-6704,6708,6709,6705,-6705,6709,6710,6706,-6706, + 6710,6707,6703,-6707,6703,6704,6705,-6707,6710,6709,6708,-6708,6715,6716,6712,-6712,6716,6717,6713,-6713,6717,6718,6714,-6714,6718,6715,6711,-6715,6711,6712,6713,-6715, + 6718,6717,6716,-6716,6723,6724,6720,-6720,6724,6725,6721,-6721,6725,6726,6722,-6722,6726,6723,6719,-6723,6719,6720,6721,-6723,6726,6725,6724,-6724,6731,6732,6728,-6728, + 6732,6733,6729,-6729,6739,6740,6736,-6736,6734,6731,6727,-6731,6727,6728,6729,-6731,6734,6733,6732,-6732,6740,6741,6737,-6737,6742,6739,6735,-6739,6735,6736,6737,-6739, + 6742,6741,6740,-6740,6747,6748,6744,-6744,6748,6749,6745,-6745,6750,6747,6743,-6747,6743,6744,6745,-6747,6750,6749,6748,-6748,6755,6756,6752,-6752,6756,6757,6753,-6753, + 6758,6755,6751,-6755,6751,6752,6753,-6755,6758,6757,6756,-6756,6763,6764,6760,-6760,6764,6765,6761,-6761,6766,6763,6759,-6763,6759,6760,6761,-6763,6766,6765,6764,-6764, + 6771,6772,6768,-6768,6772,6773,6769,-6769,6774,6771,6767,-6771,6767,6768,6769,-6771,6774,6773,6772,-6772,6779,6780,6776,-6776,6780,6781,6777,-6777,6782,6779,6775,-6779, + 6775,6776,6777,-6779,6782,6781,6780,-6780,6787,6788,6784,-6784,6788,6789,6785,-6785,6790,6787,6783,-6787,6783,6784,6785,-6787,6790,6789,6788,-6788,6795,6796,6792,-6792, + 6796,6797,6793,-6793,6798,6795,6791,-6795,6791,6792,6793,-6795,6798,6797,6796,-6796,6803,6804,6800,-6800,6804,6805,6801,-6801,6806,6803,6799,-6803,6799,6800,6801,-6803, + 6806,6805,6804,-6804,6811,6812,6808,-6808,6812,6813,6809,-6809,6814,6811,6807,-6811,6807,6808,6809,-6811,6814,6813,6812,-6812,6952,6816,6820,-6954,6952,6817,6823,-6955, + 6816,6815,6818,-6821,6822,6824,6815,-6817,6819,6818,-6816,6829,6836,6833,-6833,6857,6827,6839,-6829,6832,6833,6834,-6832,6837,6838,6834,-6834,6827,6826,6835,-6840,6840, + 6837,6833,-6837,6831,6838,6837,-6833,6832,6837,6840,-6830,6826,6825,6830,-6836,6865,6860,6864,-6862,6857,6825,6826,-6828,6839,6835,6830,-6829,6842,6847,6848,-6842,6841, + 6848,6845,-6845,6844,6845,6846,-6844,6850,6855,6856,-6850,6849,6856,6853,-6853,6852,6853,6854,-6852,6860,6859,6863,-6865,6859,6858,6862,-6864,6865,6858,6859,-6861,6864, + 6863,6862,-6862,6873,6868,6872,-6870,6868,6867,6871,-6873,6867,6866,6870,-6872,6873,6866,6867,-6869,6872,6871,6870,-6870,6881,6876,6880,-6878,6876,6875,6879,-6881,6875, + 6874,6878,-6880,6881,6874,6875,-6877,6880,6879,6878,-6878,6889,6884,6888,-6886,6884,6883,6887,-6889,6883,6882,6886,-6888,6889,6882,6883,-6885,6888,6887,6886,-6886,6897, + 6892,6896,-6894,6892,6891,6895,-6897,6891,6890,6894,-6896,6897,6890,6891,-6893,6896,6895,6894,-6894,6905,6900,6904,-6902,6900,6899,6903,-6905,6899,6898,6902,-6904,6905, + 6898,6899,-6901,6904,6903,6902,-6902,6913,6908,6912,-6910,6908,6907,6911,-6913,6907,6906,6910,-6912,6913,6906,6907,-6909,6912,6911,6910,-6910,6921,6916,6920,-6918,6916, + 6915,6919,-6921,6915,6914,6918,-6920,6921,6914,6915,-6917,6920,6919,6918,-6918,6936,6935,6928,-6928,6927,6928,6924,-6924,6923,6924,6931,-6933,6932,6931,6935,-6937,6934, + 6929,6928,-6936,6937,6926,6929,-6935,6936,6927,6926,-6938,6933,6922,6923,-6933,6930,6925,6922,-6934,6931,6924,6925,-6931,6922,6925,6929,-6927,6923,6922,6926,-6928,6925, + 6924,6928,-6930,6930,6933,6937,-6935,6931,6930,6934,-6936,6933,6932,6936,-6938,6668,6669,6665,-6665,6677,6676,6669,-6669,6673,6672,6676,-6678,6664,6665,6672,-6674,6179, + 6940,6939,-6178,6175,6938,6940,-6180,7061,6938,6941,-7063,7062,6941,6942,-7064,6177,6939,6943,-6185,7063,6942,6943,-7067,5975,6944,6945,-5972,5977,6946,6947,-5974,5971, + 6945,6947,-5975,5975,5978,6946,-6945,5983,6948,6949,-5980,5985,6950,6951,-5982,5979,6949,6951,-5983,5983,5986,6950,-6949,6817,6952,6953,-6822,6816,6952,6954,-6823,6065, + 6955,6956,-6062,6067,6957,6958,-6064,6061,6956,6958,-6065,6065,6068,6957,-6956,6081,6959,6960,-6078,6083,6961,6962,-6080,6077,6960,6962,-6081,6081,6084,6961,-6960,6129, + 6963,6964,-6126,6131,6965,6966,-6128,6125,6964,6966,-6129,6133,6968,6969,-6137,6137,6967,6968,-6134,6141,6970,6972,-6145,7150,6971,6972,-7149,6977,6978,6974,-6974,6979, + 6980,6976,-6976,6980,6977,6973,-6977,6985,6986,6982,-6982,6987,6988,6984,-6984,6988,6985,6981,-6985,6993,6994,6990,-6990,6995,6996,6992,-6992,6996,6993,6989,-6993,7001, + 7002,6998,-6998,7003,7004,7000,-7000,7004,7001,6997,-7001,7009,7010,7006,-7006,7011,7012,7008,-7008,7012,7009,7005,-7009,7033,7032,7036,-7031,7014,7013,7015,-7017,7020, + 7019,7018,-7018,7014,7016,7020,-7018,7015,7013,7018,-7020,7016,7015,7019,-7021,7028,7023,-7027,7026,7025,7027,-7029,7026,7021,7022,-7026,7027,7024,7023,-7029,7029,7031, + 7032,-7034,7022,7021,7023,-7025,7021,7026,-7024,7030,7036,7035,-7035,7029,7033,7030,-7035,7032,7031,7035,-7037,7057,7056,7060,-7055,7038,7037,7039,-7041,7044,7043,7042, + -7042,7038,7040,7044,-7042,7039,7037,7042,-7044,7040,7039,7043,-7045,7052,7047,-7051,7050,7049,7051,-7053,7050,7045,7046,-7050,7051,7048,7047,-7053,7053,7055,7056,-7058, + 7046,7045,7047,-7049,7045,7050,-7048,7054,7060,7059,-7059,7053,7057,7054,-7059,7056,7055,7059,-7061,6940,7065,7064,-6940,7061,7065,-7124,7064,7066,-7123,6174,7061,7062, + -6181,6180,7062,7063,-6183,6182,7063,7066,-6174,7088,7084,7079,-7083,7089,7086,7081,-7081,7085,7090,7088,-7087,7076,7072,7067,-7071,7073,7078,7076,-7075,7077,7074,7069, + -7069,7072,7077,7068,-7068,7075,7071,7077,-7073,7071,7073,7074,-7078,7074,7076,7070,-7070,7078,7075,7072,-7077,7073,7071,7075,-7079,7084,7089,7080,-7080,7087,7083,7089, + -7085,7083,7085,7086,-7090,7086,7088,7082,-7082,7090,7087,7084,-7089,7085,7083,7087,-7091,6968,7093,7092,-6970,6967,7091,7093,-6969,6824,6819,-6816,6129,6132,6965,-6964, + 6963,6965,6131,-6131,7118,7099,7095,-7121,7099,7100,7096,-7096,7104,7101,7097,-7106,7101,7098,7094,-7098,7120,7095,7096,-7120,7118,7121,7100,-7100,7098,7102,7103,-7095, + 7121,7104,7105,-7120,7094,7103,7105,-7098,7098,7101,7104,-7103,6149,6152,6156,-6154,7107,6159,6157,-7109,6159,7107,7109,-6161,6153,7108,7106,-6150,6149,7106,7109,-6153, + 6156,7107,7108,-6154,6415,6405,6419,-6421,6403,6406,6417,-6406,6416,6418,6406,-6404,7113,7111,7110,-6402,6399,7113,6401,-7113,7112,6401,7116,-7118,7111,6402,6400,-7111, + 6401,7110,7115,-7117,6400,7112,7117,-7115,7110,6400,7114,-7116,6402,6399,7112,-6401,7111,7113,6399,-6403,7102,7118,7120,-7104,7103,7120,7119,-7106,7102,7104,7121,-7119, + 7100,7121,7119,-7097,6943,6939,-7123,6939,7064,-7123,7066,6943,-7123,6940,6938,-7124,6938,7061,-7124,7065,6940,-7124,6121,6124,6123,-6123,6102,6103,6104,-6102,7128,7132, + 7133,-7125,7134,7131,7127,-7136,7133,7125,7126,-7136,7132,7129,7125,-7134,7124,7133,7135,-7128,7130,7134,7135,-7127,7140,7138,7136,-7142,7142,7140,7144,-7147,7141,7136, + 7137,-7144,7139,7142,7143,-7138,7140,7142,7139,-7139,7141,7143,7147,-7146,7143,7142,7146,-7148,7140,7141,7145,-7145,7145,7147,7146,-7145,6970,7149,7148,-6973,6147,7150, + 7148,-6144,7279,7280,7277,-7279,7244,7431,-7228,7151,7155,7158,-7158,7158,7155,7159,-7161,7160,7159,7161,-7163,7162,7161,7163,-7165,7164,7163,7165,-7167,7166,7165,7167, + -7169,7168,7167,7169,-7171,7170,7169,7171,-7173,7172,7171,7173,-7175,7174,7173,7175,-7177,7176,7175,7177,-7179,7178,7177,7179,-7181,7180,7179,7181,-7183,7185,7177,7175, + -7174,7180,7182,7184,-7184,7183,7178,-7181,7183,7174,7176,-7179,7183,7170,7172,-7175,7183,7166,7168,-7171,7162,7164,7166,-7184,7160,7162,7183,-7159,7152,7181,7179,7177, + -7186,7220,7221,7156,-7155,7185,7173,7171,-7170,7185,7169,7167,-7166,7185,7165,7163,-7162,7155,7185,7161,-7160,7181,7152,7184,-7183,6085,7187,7188,-6089,6089,7186,7187, + -6086,6089,6092,7189,-7187,6093,7190,7192,-6097,6099,7191,7192,-6096,6098,7193,7191,-6100,6327,7195,7197,-6331,6333,7196,7197,-6330,6331,7194,7195,-6328,6011,7199,7201, + -6015,6017,7200,7201,-6014,6015,7198,7199,-6012,6015,6018,7200,-7199,6190,7205,7204,-6186,6319,7209,7211,-6323,6325,7210,7211,-6322,6323,7208,7209,-6320,6027,7213,7215, + -6031,6033,7214,7215,-6030,6031,7212,7213,-6028,6019,7217,7219,-6023,6025,7218,7219,-6022,6023,7216,7217,-6020,6023,6026,7218,-7217,7276,7269,-7439,6069,7224,7226,-6073, + 6075,7222,7226,-6072,6073,7225,7224,-6070,7155,7223,7153,-7157,7185,7155,7156,-7222,7152,7185,7221,-7221,7155,7151,-7224,7239,7231,6609,-7239,7278,7277,7263,-7270,7270, + 7284,-7434,7236,6609,-7442,7240,7239,7238,-7242,7230,7240,7241,-7261,7243,7242,7435,-7435,7243,7245,7244,-7243,7124,7127,7131,-7129,6140,6136,6969,-7249,6139,7248,6969, + 7092,-6136,7250,7236,-7442,7253,7252,7434,-7436,7252,7233,7254,-7230,7256,7227,-7432,7235,7255,7232,-7258,7256,7234,7258,-7228,7235,7257,-7427,7246,7228,7260,-7260,7228, + 7261,7230,-7261,7261,7247,7262,-7231,7268,7299,7280,-7280,7267,7436,7281,-7283,7282,7281,7283,-7285,7288,7275,7292,-7288,7289,7276,-7439,7290,7291,7436,-7268,7271,7292, + 7264,-7292,7290,7267,7293,-7273,7294,7270,-7434,7274,7296,7270,-7295,7295,7265,7297,-7274,7285,7298,7299,-7267,7266,7299,7268,-7301,7300,7268,7301,-7287,7286,7301,-7429, + 6609,7263,7277,-7239,7229,7267,7282,-7244,7237,7276,7293,-7255,7238,7277,7280,-7242,7260,7299,7298,-7260,7244,7283,7281,-7243,7252,7290,7272,-7234,7250,7288,7287,-7250, + 7242,7281,7264,-6611,7232,7270,7296,-7258,7245,7284,7270,-7233,7230,7268,7279,-7241,7404,7403,7407,-7409,7395,7396,7403,-7405,7254,7293,7267,-7230,7259,7298,7297,-7259, + 7241,7280,7299,-7261,7251,7289,7288,-7251,7399,7400,7396,-7396,7253,7291,7290,-7253,7243,7282,7284,-7246,7236,7275,7263,-6610,7258,7297,7265,-7228,7240,7279,7278,-7240, + 7231,7269,7276,-7238,7257,7296,7301,-7263,7239,7278,7269,-7232,7408,7407,7400,-7400,7227,7265,7283,-7245,7262,7301,7268,-7231,7311,7307,7302,-7306,7314,7317,7311,-7310, + 7312,7309,7304,-7304,7307,7312,7303,-7303,7316,7315,7312,-7308,7315,7314,7309,-7313,7309,7311,7305,-7305,7317,7316,7307,-7312,7308,7306,7310,-7314,7308,7313,7317,-7315, + 7310,7306,7315,-7317,7306,7308,7314,-7316,7313,7310,7316,-7318,7327,7323,7318,-7322,7330,7333,7327,-7326,7328,7325,7320,-7320,7323,7328,7319,-7319,7332,7331,7328,-7324, + 7331,7330,7325,-7329,7325,7327,7321,-7321,7333,7332,7323,-7328,7324,7322,7326,-7330,7324,7329,7333,-7331,7326,7322,7331,-7333,7322,7324,7330,-7332,7329,7326,7332,-7334, + 7343,7339,7334,-7338,7351,7356,7353,-7358,7344,7341,7336,-7336,7339,7344,7335,-7335,7357,7353,7350,-7355,7356,7351,7352,-7356,7341,7343,7337,-7337,7353,7356,7355,-7351, + 7351,7357,7354,-7353,7352,7354,7338,-7346,7350,7355,7346,-7349,7355,7352,7345,-7347,7354,7350,7348,-7339,7340,7349,7343,-7342,7342,7347,7344,-7340,7347,7340,7341,-7345, + 7349,7342,7339,-7344,7340,7347,7342,-7350,7363,7368,7365,-7370,7369,7365,7362,-7367,7368,7363,7364,-7368,7365,7368,7367,-7363,7363,7369,7366,-7365,7364,7366,7358,-7360, + 7362,7367,7360,-7362,7367,7364,7359,-7361,7366,7362,7361,-7359,7373,7377,7378,-7382,7372,7375,7380,-7380,7377,7372,7379,-7379,7375,7373,7381,-7381,7376,7370,7373,-7376, + 7374,7371,7372,-7378,7371,7376,7375,-7373,7370,7374,7377,-7374,7376,7371,7374,-7371,7387,7392,7389,-7394,7393,7389,7386,-7391,7392,7387,7388,-7392,7389,7392,7391,-7387, + 7387,7393,7390,-7389,7388,7390,7382,-7384,7386,7391,7384,-7386,7391,7388,7383,-7385,7390,7386,7385,-7383,7406,7401,7400,-7408,7409,7398,7401,-7407,7408,7399,7398,-7410, + 7405,7394,7395,-7405,7402,7397,7394,-7406,7403,7396,7397,-7403,7394,7397,7401,-7399,7395,7394,7398,-7400,7397,7396,7400,-7402,7402,7405,7409,-7407,7403,7402,7406,-7408, + 7405,7404,7408,-7410,7420,7419,7423,-7425,7411,7412,7419,-7421,7415,7416,7412,-7412,7424,7423,7416,-7416,7422,7417,7416,-7424,7425,7414,7417,-7423,7424,7415,7414,-7426, + 7421,7410,7411,-7421,7418,7413,7410,-7422,7419,7412,7413,-7419,7410,7413,7417,-7415,7411,7410,7414,-7416,7413,7412,7416,-7418,7418,7421,7425,-7423,7419,7418,7422,-7424, + 7421,7420,7424,-7426,7234,7235,7426,-7428,7258,7234,-7428,7273,7297,-7430,7295,7430,-7266,7283,7265,-7431,7244,7245,7432,-7432,7255,7256,7431,-7433,7245,7232,-7433,7232, + 7255,-7433,7295,7294,7433,-7431,7284,7283,7430,-7434,7229,7243,-7435,7252,7229,-7435,7242,6610,-7436,6610,7253,-7436,7436,7264,-7282,7291,7264,-7437,7272,7293,-7438,6465, + 6463,-6465,7269,7263,7439,-7439,7288,7289,7438,-7440,7263,7275,-7440,7275,7288,-7440,7237,7251,-7441,7231,7237,-7441,7251,7250,7441,-7441,6609,7231,7440,-7442,6465,6462, + -6464,7254,7233,-7443,7427,7246,7259,-7259,7250,7249,7292,-7237,7442,7251,7237,-7255,7443,7253,6610,-7293,7429,7297,7298,-7286,7287,7292,-7272,7437,7293,7276,-7290,7274, + 7428,-7297,7249,7287,7437,-7443,7442,7437,7289,-7252,7292,7275,-7237,7443,7271,7291,-7254,7233,7272,7271,-7444,6610,7264,-7293,7257,7262,-7427,7262,7247,-7427,7426,7246, + -7428,7247,7246,-7427,7296,7428,-7302,7285,7286,-7429,7428,7429,-7286,7274,7273,7429,-7429,7437,7287,-7272,7271,7272,-7438,7249,7442,-7444,7292,7249,-7444,7233,7443,-7443, + 6476,6475,6480,-6480,6472,6466,-6474,6470,6469,-6469,6478,6476,-6480,7451,7447,-7447,7451,7446,7448,-7450,7448,7447,7451,-7451,7444,6481,-7446,6471,6467,-6478,7449,7448, + -7451,7457,7455,7452,-7454,7454,7455,7456,-7454,7463,7459,-7459,7463,7458,7460,-7462,7460,7459,7463,-7463,7456,7455,-7458,7453,7452,-7455,7461,7460,-7463,7206,7207,6186, + -6045,7203,6187,6043,-7203,6187,6190,6185,-6044,6188,6189,6044,-6187,6189,7203,7202,-6045,6043,6185,7207,-7207,7484,7483,7487,-7482,7465,7464,7466,-7468,7471,7470,7469, + -7469,7465,7467,7471,-7469,7466,7464,7469,-7471,7467,7466,7470,-7472,7479,7474,-7478,7477,7476,7478,-7480,7477,7472,7473,-7477,7478,7475,7474,-7480,7480,7482,7483,-7485, + 7473,7472,7474,-7476,7472,7477,-7475,7481,7487,7486,-7486,7480,7484,7481,-7486,7483,7482,7486,-7488,8518,7490,7488,-8520,7490,7491,7489,-7489,7494,7497,7496,-7496,8519, + 7488,7489,-8522,7522,7523,7524,-7526,7497,7494,7492,-7494,7529,7526,7522,-7526,7502,7503,7499,-7499,7503,7504,7500,-7500,7504,7505,7501,-7501,7505,7502,7498,-7502,7498, + 7499,7500,-7502,7528,7529,7525,-7525,7510,7511,7507,-7507,7511,7512,7508,-7508,7512,7513,7509,-7509,7513,7510,7506,-7510,7506,7507,7508,-7510,7527,7528,7524,-7524,7518, + 7519,7515,-7515,7519,7520,7516,-7516,7520,7521,7517,-7517,7521,7518,7514,-7518,7514,7515,7516,-7518,7526,7527,7523,-7523,7530,7531,7532,-7534,7537,7534,7530,-7534,7536, + 7537,7533,-7533,7535,7536,7532,-7532,7534,7535,7531,-7531,7538,7539,7540,-7542,7545,7542,7538,-7542,7544,7545,7541,-7541,7543,7544,7540,-7540,7542,7543,7539,-7539,7550, + 7551,7547,-7547,7551,7552,7548,-7548,7552,7553,7549,-7549,7553,7550,7546,-7550,7502,7505,7504,-7504,7526,7529,7528,-7528,8518,8520,7491,-7491,7510,7513,7512,-7512,7518, + 7521,7520,-7520,7534,7537,7536,-7536,7564,7565,7561,-7561,7565,7566,7562,-7562,7566,7567,7563,-7563,7567,7564,7560,-7564,7560,7561,7562,-7564,7600,7601,7602,-7604,7572, + 7573,7569,-7569,7573,7574,7570,-7570,7574,7575,7571,-7571,7575,7572,7568,-7572,7568,7569,7570,-7572,7865,7862,7858,-7862,8524,7581,7577,-8526,7581,7582,7578,-7578,8526, + 7583,7579,-8528,7583,7580,7576,-7580,8525,7577,7578,-8528,7588,7589,7585,-7585,7589,7590,7586,-7586,7590,7591,7587,-7587,7591,7588,7584,-7588,7584,7585,7586,-7588,7864, + 7865,7861,-7861,8528,7597,7593,-8530,7597,7598,7594,-7594,8530,7599,7595,-8532,7599,7596,7592,-7596,8529,7593,7594,-8532,7604,7605,7601,-7601,7608,7609,7610,-7612,7863, + 7864,7860,-7860,7614,7615,7611,-7611,7862,7863,7859,-7859,7621,7622,7618,-7618,8941,7621,7617,-8940,7639,7636,7632,-7636,8939,7617,7618,-8946,7623,7620,7616,-7620,8944, + 7623,7619,-8946,8524,8526,7582,-7582,8537,7633,7634,-8539,7637,7638,7634,-7634,8532,7629,7625,-8534,7629,7630,7626,-7626,8534,7631,7627,-8536,7631,7628,7624,-7628,8533, + 7625,7626,-8536,8536,7637,7633,-8538,8941,8944,7622,-7622,7554,7641,7643,-7556,7648,7652,7653,-7645,7654,7651,7647,-7656,7653,7645,7646,-7656,7652,7649,7645,-7654,7644, + 7653,7655,-7648,7650,7654,7655,-7647,8007,8008,8004,-8004,8964,8963,7658,-8970,7662,7665,7660,-7659,7665,7663,7661,-7661,7663,7664,7659,-7662,8918,7656,-8918,7588,7591, + 7590,-7590,7670,7671,7667,-7667,7671,7672,7668,-7668,7672,7673,7669,-7669,7673,7670,7666,-7670,8935,8936,7675,-7675,7604,7607,7606,-7606,8937,8938,7677,-7677,8938,8935, + 7674,-7678,8931,8932,7683,-7683,8933,8934,7685,-7685,8934,8931,7682,-7686,7695,7696,7692,-7692,7694,7695,7691,-7691,7696,7697,7693,-7693,7697,7694,7690,-7694,8528,8530, + 7598,-7598,7702,7703,7699,-7699,7703,7704,7700,-7700,7704,7705,7701,-7701,7705,7702,7698,-7702,7710,7711,7707,-7707,7712,7713,7709,-7709,7713,7710,7706,-7710,7718,7719, + 7715,-7715,7720,7721,7717,-7717,7721,7718,7714,-7718,7727,7728,7724,-7724,7726,7727,7723,-7723,7728,7729,7725,-7725,7729,7726,7722,-7726,7734,7735,7731,-7731,7736,7737, + 7733,-7733,7737,7734,7730,-7734,7742,7743,7739,-7739,7744,7745,7741,-7741,7745,7742,7738,-7742,7750,7751,7747,-7747,7752,7753,7749,-7749,7753,7750,7746,-7750,7758,7759, + 7755,-7755,7760,7761,7757,-7757,7761,7758,7754,-7758,7766,7767,7763,-7763,7768,7769,7765,-7765,7769,7766,7762,-7766,7774,7775,7771,-7771,7776,7777,7773,-7773,7777,7774, + 7770,-7774,7782,7783,7779,-7779,7784,7785,7781,-7781,7785,7782,7778,-7782,7790,7791,7787,-7787,7792,7793,7789,-7789,7793,7790,7786,-7790,8958,8959,7795,-7795,8959,8960, + 7796,-7796,8960,8961,7797,-7797,8961,8958,7794,-7798,7806,7807,7803,-7803,7808,7809,7805,-7805,7809,7806,7802,-7806,7814,7815,7811,-7811,7816,7817,7813,-7813,7817,7814, + 7810,-7814,7823,7824,7820,-7820,7822,7823,7819,-7819,7824,7825,7821,-7821,7825,7822,7818,-7822,7830,7831,7827,-7827,7831,7832,7828,-7828,7832,7833,7829,-7829,7833,7830, + 7826,-7830,7838,7839,7835,-7835,7840,7841,7837,-7837,7841,7838,7834,-7838,7846,7847,7843,-7843,7848,7849,7845,-7845,7849,7846,7842,-7846,7855,7856,7852,-7852,7854,7855, + 7851,-7851,7856,7857,7853,-7853,7857,7854,7850,-7854,7613,7612,7615,-7615,7873,7870,7866,-7870,7872,7873,7869,-7869,7871,7872,7868,-7868,7870,7871,7867,-7867,7881,7878, + 7874,-7878,7880,7881,7877,-7877,7879,7880,7876,-7876,7878,7879,7875,-7875,7889,7886,7882,-7886,7888,7889,7885,-7885,7887,7888,7884,-7884,7886,7887,7883,-7883,7890,7891, + 7892,-7894,7897,7894,7890,-7894,7896,7897,7893,-7893,7895,7896,7892,-7892,7894,7895,7891,-7891,7898,7899,7900,-7902,7905,7902,7898,-7902,7904,7905,7901,-7901,7903,7904, + 7900,-7900,7902,7903,7899,-7899,7913,7910,7906,-7910,7912,7913,7909,-7909,7911,7912,7908,-7908,7910,7911,7907,-7907,7921,7918,7914,-7918,7920,7921,7917,-7917,7919,7920, + 7916,-7916,7918,7919,7915,-7915,7929,7926,7922,-7926,7928,7929,7925,-7925,7927,7928,7924,-7924,7926,7927,7923,-7923,7937,7934,7930,-7934,7936,7937,7933,-7933,7935,7936, + 7932,-7932,7934,7935,7931,-7931,7945,7942,7938,-7942,7944,7945,7941,-7941,7943,7944,7940,-7940,7942,7943,7939,-7939,7953,7950,7946,-7950,7952,7953,7949,-7949,7951,7952, + 7948,-7948,7950,7951,7947,-7947,7961,7958,7954,-7958,7960,7961,7957,-7957,7959,7960,7956,-7956,7958,7959,7955,-7955,7969,7966,7962,-7966,7968,7969,7965,-7965,7967,7968, + 7964,-7964,7966,7967,7963,-7963,8946,8947,7971,-7971,8948,8949,7973,-7973,8949,8946,7970,-7974,7982,7983,7979,-7979,7984,7985,7981,-7981,7985,7982,7978,-7982,7990,7991, + 7987,-7987,7992,7993,7989,-7989,7993,7990,7986,-7990,7998,7999,7995,-7995,8000,8001,7997,-7997,8001,7998,7994,-7998,8002,8005,8009,-8007,8003,8002,8006,-8008,8005,8004, + 8008,-8010,8014,8015,8012,-8012,8015,8013,8010,-8013,8019,8020,8017,-8017,8022,8019,8016,-8019,8014,8020,8019,-8016,8015,8019,8022,-8014,8010,8018,8016,-8013,8012,8016, + 8017,-8012,8023,8025,8028,-8027,8024,8023,8026,-8028,8030,8035,8036,-8030,8029,8036,8033,-8033,8032,8033,8034,-8032,8037,8040,8039,-8039,8050,8047,8046,-8052,8046,8043, + 8044,-8046,8051,8046,8045,-8053,8049,8048,8047,-8051,8048,8041,8042,-8048,8047,8042,8043,-8047,8045,8044,8041,-8049,8052,8045,8048,-8050,8052,8049,8050,-8052,8057,8056, + 8055,-8059,8060,8053,8056,-8058,8059,8054,8053,-8061,8065,8064,8063,-8067,8068,8061,8064,-8066,8067,8062,8061,-8069,8073,8074,8070,-8070,8075,8076,8072,-8072,8076,8073, + 8069,-8073,8081,8082,8078,-8078,8083,8084,8080,-8080,8084,8081,8077,-8081,8075,8082,8081,-8077,8076,8081,8084,-8074,8073,8084,8083,-8075,8070,8079,8080,-8070,8069,8080, + 8077,-8073,8072,8077,8078,-8072,8086,8091,8092,-8086,8085,8092,8089,-8089,8088,8089,8090,-8088,8094,8099,8100,-8094,8093,8100,8097,-8097,8096,8097,8098,-8096,8101,8104, + 8103,-8103,8109,8110,8106,-8106,8111,8112,8108,-8108,8112,8109,8105,-8109,8117,8118,8114,-8114,8119,8120,8116,-8116,8120,8117,8113,-8117,8111,8118,8117,-8113,8112,8117, + 8120,-8110,8109,8120,8119,-8111,8106,8115,8116,-8106,8105,8116,8113,-8109,8108,8113,8114,-8108,8896,8901,8881,8886,-8944,8891,8900,8880,-8876,8895,8899,8888,-8877,8125, + 8126,8122,-8122,8127,8128,8124,-8124,8128,8125,8121,-8125,8133,8134,8130,-8130,8135,8136,8132,-8132,8136,8133,8129,-8133,8127,8134,8133,-8129,8128,8133,8136,-8126,8125, + 8136,8135,-8127,8122,8131,8132,-8122,8121,8132,8129,-8125,8124,8129,8130,-8124,8145,8146,-8148,8137,8142,8140,-8140,8138,8142,-8138,8139,8140,-8142,8143,8148,8146,-8146, + 8149,8152,8156,-8154,8150,8149,8153,-8155,8152,8151,8155,-8157,8161,8162,8158,-8158,8163,8164,8160,-8160,8164,8161,8157,-8161,8169,8170,8166,-8166,8172,8168,8171,-8168, + 8171,8165,8166,-8168,8180,8175,-8179,8179,8180,8178,-8178,8172,8170,8169,-8169,8174,8177,8178,-8174,8175,8180,8179,-8177,8175,8176,8174,-8174,8173,8178,-8176,8185,8186, + 8182,-8182,8186,8188,8183,-8183,8187,8185,8181,-8185,8181,8182,8183,-8185,8187,8188,8186,-8186,8168,8169,8165,-8172,8192,8193,8190,-8190,8195,8192,8189,-8192,8024,8193, + 8192,-8024,8023,8192,8195,-8026,8028,8191,8189,-8027,8026,8189,8190,-8028,8197,8202,8203,-8197,8196,8203,8200,-8200,8199,8200,8201,-8199,8204,8207,8206,-8206,8191,8028, + 8215,-8217,8010,8013,8211,-8211,8025,8195,8217,-8215,8195,8191,8216,-8218,8018,8010,8210,-8213,8028,8025,8214,-8216,8013,8022,8213,-8212,8022,8018,8212,-8214,8222,8223, + 8219,-8219,8224,8225,8221,-8221,8225,8222,8218,-8222,8230,8231,8227,-8227,8232,8233,8229,-8229,8233,8230,8226,-8230,8224,8231,8230,-8226,8225,8230,8233,-8223,8222,8233, + 8232,-8224,8243,8240,8239,-8245,8239,8236,8237,-8239,8244,8239,8238,-8246,8242,8241,8240,-8244,8241,8234,8235,-8241,8240,8235,8236,-8240,8238,8237,8234,-8242,8245,8238, + 8241,-8243,8245,8242,8243,-8245,8250,8249,8248,-8252,8253,8246,8249,-8251,8252,8247,8246,-8254,8258,8257,8256,-8260,8261,8254,8257,-8259,8260,8255,8254,-8262,8266,8267, + 8263,-8263,8268,8269,8265,-8265,8269,8266,8262,-8266,8274,8275,8271,-8271,8276,8277,8273,-8273,8277,8274,8270,-8274,8268,8275,8274,-8270,8269,8274,8277,-8267,8266,8277, + 8276,-8268,8263,8272,8273,-8263,8262,8273,8270,-8266,8265,8270,8271,-8265,8279,8284,8285,-8279,8278,8285,8282,-8282,8281,8282,8283,-8281,8287,8292,8293,-8287,8286,8293, + 8290,-8290,8289,8290,8291,-8289,8294,8297,8296,-8296,8302,8303,8299,-8299,8304,8305,8301,-8301,8305,8302,8298,-8302,8310,8311,8307,-8307,8312,8313,8309,-8309,8313,8310, + 8306,-8310,8304,8311,8310,-8306,8305,8310,8313,-8303,8318,8319,8315,-8315,8319,8320,8316,-8316,8320,8321,8317,-8317,8321,8318,8314,-8318,8314,8315,8316,-8318,8321,8320, + 8319,-8319,8326,8327,8323,-8323,8327,8328,8324,-8324,8328,8329,8325,-8325,8329,8326,8322,-8326,8322,8323,8324,-8326,8329,8328,8327,-8327,8334,8335,8331,-8331,8335,8336, + 8332,-8332,8336,8337,8333,-8333,8337,8334,8330,-8334,8330,8331,8332,-8334,8337,8336,8335,-8335,8342,8343,8339,-8339,8343,8344,8340,-8340,8344,8345,8341,-8341,8345,8342, + 8338,-8342,8338,8339,8340,-8342,8345,8344,8343,-8343,8350,8351,8347,-8347,8351,8352,8348,-8348,8358,8359,8355,-8355,8353,8350,8346,-8350,8346,8347,8348,-8350,8353,8352, + 8351,-8351,8359,8360,8356,-8356,8361,8358,8354,-8358,8354,8355,8356,-8358,8361,8360,8359,-8359,8366,8367,8363,-8363,8367,8368,8364,-8364,8369,8366,8362,-8366,8362,8363, + 8364,-8366,8369,8368,8367,-8367,8374,8375,8371,-8371,8375,8376,8372,-8372,8377,8374,8370,-8374,8370,8371,8372,-8374,8377,8376,8375,-8375,8382,8383,8379,-8379,8383,8384, + 8380,-8380,8385,8382,8378,-8382,8378,8379,8380,-8382,8385,8384,8383,-8383,8390,8391,8387,-8387,8391,8392,8388,-8388,8393,8390,8386,-8390,8386,8387,8388,-8390,8393,8392, + 8391,-8391,8398,8399,8395,-8395,8399,8400,8396,-8396,8401,8398,8394,-8398,8394,8395,8396,-8398,8401,8400,8399,-8399,8406,8407,8403,-8403,8407,8408,8404,-8404,8409,8406, + 8402,-8406,8402,8403,8404,-8406,8409,8408,8407,-8407,8414,8415,8411,-8411,8415,8416,8412,-8412,8417,8414,8410,-8414,8410,8411,8412,-8414,8417,8416,8415,-8415,8422,8423, + 8419,-8419,8423,8424,8420,-8420,8425,8422,8418,-8422,8418,8419,8420,-8422,8425,8424,8423,-8423,8430,8431,8427,-8427,8431,8432,8428,-8428,8433,8430,8426,-8430,8426,8427, + 8428,-8430,8433,8432,8431,-8431,8438,8439,8435,-8435,8439,8440,8436,-8436,8441,8438,8434,-8438,8434,8435,8436,-8438,8441,8440,8439,-8439,8446,8447,8443,-8443,8447,8448, + 8444,-8444,8449,8446,8442,-8446,8442,8443,8444,-8446,8449,8448,8447,-8447,8454,8455,8451,-8451,8455,8456,8452,-8452,8457,8454,8450,-8454,8450,8451,8452,-8454,8457,8456, + 8455,-8455,8462,8463,8459,-8459,8463,8464,8460,-8460,8465,8462,8458,-8462,8458,8459,8460,-8462,8465,8464,8463,-8463,8470,8471,8467,-8467,8471,8472,8468,-8468,8473,8470, + 8466,-8470,8466,8467,8468,-8470,8473,8472,8471,-8471,8481,8476,8480,-8478,8476,8475,8479,-8481,8475,8474,8478,-8480,8481,8474,8475,-8477,8480,8479,8478,-8478,8489,8484, + 8488,-8486,8484,8483,8487,-8489,8483,8482,8486,-8488,8489,8482,8483,-8485,8488,8487,8486,-8486,7652,7654,7650,-7650,7648,7651,7654,-7653,8940,8942,7642,-7557,8926,8920, + 8495,-7560,8595,8599,8600,-8597,8922,8491,-8921,8903,8912,8871,-8871,8910,8491,8897,-8908,8923,8492,8893,-8920,8491,8495,-8921,8925,8921,8497,-8495,8922,8923,-8492,8924, + 8490,8497,-8922,8909,8492,8496,-8872,8910,8493,7642,-8943,7572,7575,7574,-7574,7564,7567,7566,-7566,8926,7559,-7657,8498,8499,8500,-8502,8509,8506,8502,-8506,8508,8509, + 8505,-8505,8507,8508,8504,-8504,8506,8507,8503,-8503,8517,8514,8510,-8514,8516,8517,8513,-8513,8515,8516,8512,-8512,8514,8515,8511,-8511,7494,7495,8522,-7493,7491,8520, + 8521,-7490,7496,7497,7493,-8524,7495,7496,8523,-8523,7492,8522,8523,-7494,7580,8524,8525,-7577,7582,8526,8527,-7579,7576,8525,8527,-7580,7580,7583,8526,-8525,7596,8528, + 8529,-7593,7598,8530,8531,-7595,7592,8529,8531,-7596,7596,7599,8530,-8529,7628,8532,8533,-7625,7630,8534,8535,-7627,7624,8533,8535,-7628,7632,8537,8538,-7636,7636,8536, + 8537,-7633,8954,8955,8541,-8541,8956,8957,8543,-8543,8957,8954,8540,-8544,8552,8553,8549,-8549,8554,8555,8551,-8551,8555,8552,8548,-8552,8950,8951,8557,-8557,8952,8953, + 8559,-8559,8953,8950,8556,-8560,8566,8567,8563,-8563,8568,8569,8565,-8565,8569,8566,8562,-8566,8574,8575,8571,-8571,8576,8577,8573,-8573,8577,8574,8570,-8574,8582,8583, + 8579,-8579,8584,8585,8581,-8581,8585,8582,8578,-8582,8590,8591,8587,-8587,8592,8593,8589,-8589,8593,8590,8586,-8590,8598,8599,8595,-8595,8600,8601,8597,-8597,8601,8598, + 8594,-8598,8606,8607,8603,-8603,8608,8609,8605,-8605,8609,8606,8602,-8606,8614,8615,8611,-8611,8616,8617,8613,-8613,8617,8614,8610,-8614,8638,8637,8641,-8636,8619,8618, + 8620,-8622,8625,8624,8623,-8623,8619,8621,8625,-8623,8620,8618,8623,-8625,8621,8620,8624,-8626,8633,8628,-8632,8631,8630,8632,-8634,8631,8626,8627,-8631,8632,8629,8628, + -8634,8634,8636,8637,-8639,8627,8626,8628,-8630,8626,8631,-8629,8635,8641,8640,-8640,8634,8638,8635,-8640,8637,8636,8640,-8642,8662,8661,8665,-8660,8643,8642,8644,-8646, + 8649,8648,8647,-8647,8643,8645,8649,-8647,8644,8642,8647,-8649,8645,8644,8648,-8650,8657,8652,-8656,8655,8654,8656,-8658,8655,8650,8651,-8655,8656,8653,8652,-8658,8658, + 8660,8661,-8663,8651,8650,8652,-8654,8650,8655,-8653,8659,8665,8664,-8664,8658,8662,8659,-8664,8661,8660,8664,-8666,8674,8707,8694,-8669,8708,8671,8673,-8697,8666,8693, + 8707,-8675,8707,8685,8679,-8695,8698,8678,8679,-8697,8717,8713,8678,-8699,8718,8712,8675,-8701,8710,8684,8683,-8705,8716,8711,8669,-8693,8709,8681,8690,-8703,8706,8689, + 8690,-8705,8719,8715,8689,-8707,8678,8692,8694,-8680,8713,8716,8692,-8679,8692,8669,8668,-8695,8685,8708,8696,-8680,8675,8698,8696,-8674,8712,8717,8698,-8676,8689,8700, + 8702,-8691,8715,8718,8700,-8690,8681,8710,8704,-8691,8686,8706,8704,-8684,8714,8719,8706,-8687,8700,8675,8673,-8703,8671,8709,8702,-8674,8695,8670,8671,-8709,8693,8677, + 8685,-8708,8703,8680,8684,-8711,8701,8688,8681,-8710,8677,8695,8708,-8686,8688,8703,8710,-8682,8670,8701,8709,-8672,8697,8676,8713,-8718,8699,8672,8712,-8719,8691,8667, + 8711,-8717,8705,8687,8715,-8720,8676,8691,8716,-8714,8672,8697,8717,-8713,8687,8699,8718,-8716,8682,8705,8719,-8715,8724,8725,8721,-8721,8720,8721,8722,-8724,8727,8724, + 8720,-8724,8726,8727,8723,-8723,8724,8727,8726,-8726,8732,8733,8729,-8729,8728,8729,8730,-8732,8735,8732,8728,-8732,8734,8735,8731,-8731,8732,8735,8734,-8734,8739,8738, + 8737,-8737,8498,8501,8739,-8737,8500,8499,8737,-8739,8501,8500,8738,-8740,8744,8745,8741,-8741,8740,8741,8742,-8744,8747,8744,8740,-8744,8746,8747,8743,-8743,8744,8747, + 8746,-8746,8755,8752,8748,-8752,8754,8755,8751,-8751,8753,8754,8750,-8750,8752,8753,8749,-8749,8763,8760,8756,-8760,8762,8763,8759,-8759,8761,8762,8758,-8758,8760,8761, + 8757,-8757,8771,8768,8764,-8768,8770,8771,8767,-8767,8769,8770,8766,-8766,8768,8769,8765,-8765,8779,8776,8772,-8776,8778,8779,8775,-8775,8777,8778,8774,-8774,8776,8777, + 8773,-8773,8787,8784,8780,-8784,8786,8787,8783,-8783,8785,8786,8782,-8782,8784,8785,8781,-8781,8795,8792,8788,-8792,8794,8795,8791,-8791,8793,8794,8790,-8790,8792,8793, + 8789,-8789,8815,8813,8796,-8800,8814,8815,8799,-8799,8812,8814,8798,-8798,8813,8812,8797,-8797,8811,8808,8804,-8808,8810,8811,8807,-8807,8809,8810,8806,-8806,8808,8809, + 8805,-8805,8803,8800,8813,-8816,8802,8803,8815,-8815,8801,8802,8814,-8813,8800,8801,8812,-8814,8836,8819,8823,-8839,8839,8818,8819,-8837,8838,8823,8822,-8838,8816,8820, + 8817,-8822,8819,8818,8822,-8824,8832,8829,8825,-8834,8835,8833,8848,-8850,8831,8828,8824,-8828,8851,8831,8827,-8854,8832,8834,8830,-8830,8852,8832,8833,-8851,8850,8833, + 8835,-8854,8830,8834,8835,-8827,8852,8851,8834,-8833,8820,8836,8838,-8818,8816,8839,8836,-8821,8817,8838,8837,-8822,8837,8839,8816,-8822,8822,8818,8839,-8838,8842,8841, + 8844,-8846,8841,8840,8843,-8845,8840,8842,8845,-8844,8828,8852,8850,-8825,8834,8851,8853,-8836,8826,8835,8849,-8848,8833,8825,8846,-8849,8824,8850,8853,-8828,8828,8831, + 8851,-8853,8855,8860,8861,-8855,8854,8861,8858,-8858,8857,8858,8859,-8857,8863,8868,8869,-8863,8862,8869,8866,-8866,8865,8866,8867,-8865,8870,8871,8496,-7559,7557,8497, + 8872,-8874,8536,7636,7639,-8875,7637,8536,8874,-7639,8538,8874,7639,-7636,7634,7638,8874,-8539,8898,8894,8885,-8888,8899,8890,8883,-8889,8890,8898,8887,-8884,8897,8919, + 8928,-8914,8908,8902,8877,-8915,8907,8897,-8914,8490,8924,8892,-8903,8493,8910,8907,-8893,7628,7631,8534,-8533,8532,8534,7630,-7630,7999,8000,7996,-7996,7983,7984,7980, + -7980,7894,7897,7896,-7896,7902,7905,7904,-7904,7559,8904,8905,-7657,8903,8906,-7658,7559,8495,8911,-8905,8873,8872,8912,-8904,8878,8884,8889,-8540,8490,8909,-8913,8495, + 8491,8910,-8912,8930,8929,8927,-8883,8928,8914,8877,-8914,8892,8907,-8914,8884,8878,8930,-8883,8893,8908,8914,-8929,8539,8889,8927,-8930,8919,8893,-8929,8913,8877,-8893, + 8878,8539,8929,-8931,8496,8492,8923,-8923,7642,8493,8921,-8926,8493,8924,-8922,8920,8926,8918,-8923,8491,8923,8919,-8898,8902,8892,-8878,8922,8918,7558,-8497,7558,8918, + 8917,-8907,8903,8870,7558,-8907,8918,8926,-7657,8497,8490,8912,-8873,7557,8873,8903,-7658,7686,7687,8932,-8932,7688,7689,8934,-8934,7689,7686,8931,-8935,7678,7679,8936, + -8936,7680,7681,8938,-8938,7681,7678,8935,-8939,7731,7735,7736,-7733,8904,8940,-8906,8912,8909,-8872,8911,8910,-8943,8904,8911,8942,-8941,7811,7815,7816,-7813,7987,7991, + 7992,-7989,8947,7975,7976,-8949,7974,7977,7976,-7976,7990,7993,7992,-7992,8158,8162,8163,-8160,7803,7807,7808,-7805,7763,7767,7768,-7765,7620,8941,8939,-7617,7616,8939, + 8945,-7620,7622,8944,8945,-7619,7620,7623,8944,-8942,7974,7975,8947,-8947,7976,7977,8949,-8949,7977,7974,8946,-8950,7971,8947,8948,-7973,7766,7769,7768,-7768,8557,8951, + 8952,-8559,8544,8545,8955,-8955,8546,8547,8957,-8957,8547,8544,8954,-8958,8544,8547,8546,-8546,8545,8546,8956,-8956,7771,7775,7776,-7773,7771,7772,7773,-7771,8152,8149, + 8150,-8152,8154,8155,8151,-8151,7798,7801,7800,-7800,7798,7799,8959,-8959,7799,7800,8960,-8960,7800,7801,8961,-8961,7801,7798,8958,-8962,8962,8963,8893,-8493,8963,8964, + 8908,-8894,8965,8962,8492,-8910,8964,8965,8909,-8909,8966,8967,8902,-8909,8967,8968,8490,-8903,8963,8962,7662,-7659,8924,8493,-8893,8962,8965,8970,-7663,8968,8967,7659, + -7665,8967,8966,8969,-7660,8974,8973,8971,-8973,8978,8976,8975,-8978,8974,8978,8977,-8974,8984,8985,-8982,8979,8983,8989,-8988,8973,8977,8982,-8981,8986,8983,-8980,8977, + 8975,8985,8984,-8983,8980,8982,8984,-8984,8971,8973,8980,8983,-8987,8989,8990,8994,-8994,8983,8984,8990,-8990,8984,8981,8988,-8991,8990,8988,8992,-8995,8987,8989,8993, + -8992,8135,8134,8127,-8127,8131,8130,8134,-8136,8122,8123,8130,-8132,9010,9001,9004,-9010,8126,8127,8123,-8123,9009,9004,9003,-9003,9013,9006,9000,-9006,9006,9012,8998, + -9001,9008,9011,8997,-8997,9014,8999,9001,-9011,9007,8995,8999,-9015,9012,9008,8996,-8999,8106,8107,8114,-8116,8115,8114,8118,-8120,8119,8118,8111,-8111,8110,8111,8107, + -8107,8138,8139,8141,-8143,8144,8145,8147,-8149,8901,8891,8875,-8882,8900,8895,8876,-8881,8144,8148,-8144,8876,8888,-8880,9015,9016,9017,-9019,9022,9021,9020,-9020,9015, + 9018,9022,-9020,9017,9016,9020,-9022,9018,9017,9021,-9023,9023,9024,9025,-9027,9030,9029,9028,-9028,9023,9026,9030,-9028,9025,9024,9028,-9030,9026,9025,9029,-9031,9031, + 9032,9033,-9035,9038,9037,9036,-9036,9031,9034,9038,-9036,9033,9032,9036,-9038,9034,9033,9037,-9039,9039,9040,9041,-9043,9046,9045,9044,-9044,9041,9040,9044,-9046,9042, + 9041,9045,-9047,9050,9048,-9048,9049,9050,-9048,9055,9056,9052,-9052,9057,9058,9054,-9054,9055,9058,9057,-9057,9063,9064,9060,-9060,9065,9066,9062,-9062,9063,9066,9065, + -9065,9071,9072,9068,-9068,9073,9074,9070,-9070,9071,9074,9073,-9073,8916,7557,-7658,8915,7640,7557,-8917,7556,8915,-8917,8940,7556,8916,-8906,8520,8518,8519,-8522,8951, + 9075,9076,-8953,9076,8561,8953,-8953,8560,8561,-9076,8560,9075,8951,-8951,8561,8560,8950,-8954,9075,8561,-9077,8970,8965,-9078,8968,9077,8909,-8491,9077,8966,8908,-8910, + 8964,8969,-8967,9077,8968,7664,-8971,8965,8966,-9078,8965,8964,-8967,10333,9079,9080,-10336,9085,9082,9078,-9082,10337,9085,9081,-10340,9083,9084,9080,-9080,10332,9083,9079, + -10334,9090,9091,9087,-9087,9091,9092,9088,-9088,9092,9093,9089,-9089,10051,9090,9086,-10051,10332,10334,9084,-9084,10346,9164,9168,-10346,9104,9105,9101,-9101,9105,9106,9102, + -9102,9106,9107,9103,-9103,9107,9104,9100,-9104,9100,9101,9102,-9104,10329,9141,9142,-10331,10324,9113,9109,-10326,9113,9114,9110,-9110,10326,9115,9111,-10328,9115,9112,9108, + -9112,10325,9109,9110,-10328,10067,10069,9343,-9347,10074,9121,9117,-10076,9121,9122,9118,-9118,10076,9123,9119,-10078,9123,9120,9116,-9120,10075,9117,9118,-10078,9166,9165,9169, + -9171,9128,9129,9125,-9125,9129,9130,9126,-9126,9130,9131,9127,-9127,9131,9128,9124,-9128,9124,9125,9126,-9128,10068,10067,9346,-9346,10078,9137,9133,-10080,9137,9138,9134, + -9134,10080,9139,9135,-10082,9139,9136,9132,-9136,10079,9133,9134,-10082,10328,9145,9141,-10330,9148,9149,9150,-9152,10070,10068,9345,-9345,9154,9155,9151,-9151,10069,10070,9344, + -9344,10344,9166,9170,-10348,9177,9178,9174,-9174,10298,9177,9173,-10300,10347,9170,9169,-10346,9164,9167,9171,-9169,9185,9186,9182,-9182,9184,9185,9181,-9181,10299,9173,9174, + -10302,9179,9176,9172,-9176,10300,9179,9175,-10302,10074,10076,9122,-9122,10342,9162,9161,-10341,9156,9159,9163,-9161,10341,9156,9160,-10341,9158,9157,9161,-9163,10343,9158,9162, + -10343,9186,9187,9183,-9183,9187,9184,9180,-9184,9180,9181,9182,-9184,10082,9193,9189,-10084,9193,9194,9190,-9190,10084,9195,9191,-10086,9195,9192,9188,-9192,10083,9189,9190, + -10086,10086,9197,9198,-10089,9203,9200,9196,-9200,10087,9203,9199,-10089,9201,9202,9198,-9198,10298,10300,9178,-9178,10308,10310,-10314,9223,9227,9228,-9220,9215,9212,9208,-9217, + 9216,9208,9209,-9219,9229,9226,9222,-9231,9217,9214,9210,-9219,9228,9220,9221,-9231,9211,9215,9216,-9208,9207,9216,9218,-9211,9213,9217,9218,-9210,9227,9224,9220,-9229, + 9219,9228,9230,-9223,9225,9229,9230,-9222,10287,9236,9234,-10287,10287,10285,-9237,10061,9233,9239,-10065,10064,9239,9241,-10066,10318,9096,9243,-10320,10065,9241,9242,-10067,9242, + 9233,9237,-9236,9233,9242,9241,-9240,9238,9240,9231,-9233,10289,10288,9244,-9247,9243,9097,10289,-9247,9176,10298,10299,-9173,9096,9204,9097,-9244,9434,9433,9248,-9248,9433, + 9432,9249,-9249,9432,9431,9250,-9250,9431,9434,9247,-9251,10378,10379,9256,-9256,10328,10331,9146,-9146,10380,10381,9258,-9258,10381,10378,9255,-9259,9267,9268,9264,-9264,9269, + 9270,9266,-9266,9270,9267,9263,-9267,9276,9277,9273,-9273,9275,9276,9272,-9272,9277,9278,9274,-9274,9278,9275,9271,-9275,10078,10080,9138,-9138,10544,10545,9280,-9280,10546, + 10547,9282,-9282,10547,10544,9279,-9283,10543,10540,9288,-9288,10541,10542,9290,-9290,10542,10543,9287,-9291,9299,9300,9296,-9296,9301,9302,9298,-9298,9302,9299,9295,-9299,9307, + 9308,9304,-9304,9309,9310,9306,-9306,9310,9307,9303,-9307,9315,9316,9312,-9312,9316,9317,9313,-9313,9317,9318,9314,-9314,9318,9315,9311,-9315,9323,9324,9320,-9320,9325, + 9326,9322,-9322,9326,9323,9319,-9323,9331,9332,9328,-9328,9333,9334,9330,-9330,9334,9331,9327,-9331,9340,9341,9337,-9337,9339,9340,9336,-9336,9341,9342,9338,-9338,9342, + 9339,9335,-9339,9153,9152,9155,-9155,10408,10406,9351,-9355,10407,10408,9354,-9354,10405,10407,9353,-9353,10406,10405,9352,-9352,9366,9363,9359,-9363,9365,9366,9362,-9362,9364, + 9365,9361,-9361,9363,9364,9360,-9360,9374,9371,9367,-9371,9373,9374,9370,-9370,9372,9373,9369,-9369,9371,9372,9368,-9368,10321,9376,9377,-10324,9382,9379,9375,-9379,10322, + 9382,9378,-10324,9380,9381,9377,-9377,10320,9380,9376,-10322,9383,9384,9385,-9387,9390,9387,9383,-9387,9389,9390,9386,-9386,9388,9389,9385,-9385,9387,9388,9384,-9384,9398, + 9395,9391,-9395,9397,9398,9394,-9394,9396,9397,9393,-9393,9395,9396,9392,-9392,9406,9403,9399,-9403,9405,9406,9402,-9402,9404,9405,9401,-9401,9403,9404,9400,-9400,9414, + 9411,9407,-9411,9413,9414,9410,-9410,9412,9413,9409,-9409,9411,9412,9408,-9408,9422,9419,9415,-9419,9421,9422,9418,-9418,9420,9421,9417,-9417,9419,9420,9416,-9416,9430, + 9427,9423,-9427,9429,9430,9426,-9426,9428,9429,9425,-9425,9427,9428,9424,-9424,9253,9254,9431,-9433,9252,9253,9432,-9434,9251,9252,9433,-9435,9439,9442,9441,-9441,9442, + 9439,9435,-9439,9441,9442,9438,-9438,9440,9441,9437,-9437,9439,9440,9436,-9436,9450,9447,9443,-9447,9449,9450,9446,-9446,9448,9449,9445,-9445,9447,9448,9444,-9444,9455, + 9456,9452,-9452,9457,9458,9454,-9454,9458,9455,9451,-9455,9463,9464,9460,-9460,9465,9466,9462,-9462,9466,9463,9459,-9463,9471,9472,9468,-9468,9473,9474,9470,-9470,9474, + 9471,9467,-9471,9479,9480,9476,-9476,9481,9482,9478,-9478,9482,9479,9475,-9479,9487,9488,9484,-9484,9489,9490,9486,-9486,9490,9487,9483,-9487,9495,9496,9492,-9492,9497, + 9498,9494,-9494,9498,9495,9491,-9495,10315,10094,10100,-9519,9517,9516,10290,-10292,9484,9493,9494,-9484,9483,9494,9491,-9487,9486,9491,9492,-9486,9500,9505,9506,-9500,9499, + 9506,9503,-9503,9502,9503,9504,-9502,9508,9513,9514,-9508,9507,9514,9511,-9511,9510,9511,9512,-9510,9530,9527,9526,-9532,9526,9523,9524,-9526,9531,9526,9525,-9533,9529, + 9528,9527,-9531,9528,9521,9522,-9528,9527,9522,9523,-9527,9525,9524,9521,-9529,9532,9525,9528,-9530,9532,9529,9530,-9532,9537,9536,9535,-9539,9540,9533,9536,-9538,9539, + 9534,9533,-9541,9545,9544,9543,-9547,9548,9541,9544,-9546,9547,9542,9541,-9549,9553,9554,9550,-9550,9555,9556,9552,-9552,9556,9553,9549,-9553,9561,9562,9558,-9558,9563, + 9564,9560,-9560,9564,9561,9557,-9561,9555,9562,9561,-9557,9556,9561,9564,-9554,9553,9564,9563,-9555,9550,9559,9560,-9550,9549,9560,9557,-9553,9552,9557,9558,-9552,9566, + 9571,9572,-9566,9565,9572,9569,-9569,9568,9569,9570,-9568,9574,9579,9580,-9574,9573,9580,9577,-9577,9576,9577,9578,-9576,9581,9584,9583,-9583,9589,9590,9586,-9586,9591, + 9592,9588,-9588,9592,9589,9585,-9589,9620,9617,9614,-9616,9614,9613,9616,-9616,9606,9605,9608,-9608,9600,9597,9594,-9596,9590,9591,9587,-9587,10400,10397,9591,-9591,9600, + 9595,9596,-9600,9599,9596,9593,-9599,9598,9593,9594,-9598,9602,9607,9608,-9602,9601,9608,9605,-9605,9604,9605,9606,-9604,9620,9615,9616,-9620,9619,9616,9613,-9619,9618, + 9613,9614,-9618,10400,10399,10398,-10398,9625,9626,9622,-9622,9627,9628,9624,-9624,9628,9625,9621,-9625,9633,9634,9630,-9630,9635,9636,9632,-9632,9636,9633,9629,-9633,9627, + 9634,9633,-9629,9628,9633,9636,-9626,9625,9636,9635,-9627,9622,9631,9632,-9622,9621,9632,9629,-9625,9624,9629,9630,-9624,9638,9643,9644,-9638,9637,9644,9641,-9641,9640, + 9641,9642,-9640,9646,9651,9652,-9646,9645,9652,9649,-9649,9648,9649,9650,-9648,9653,9656,9655,-9655,9668,9667,9666,-9670,9671,9663,9667,-9669,10133,10132,10138,-10130,9672, + 9675,9679,-9677,9681,9674,9675,-9681,9670,9665,9663,-9672,9661,10119,10120,-9663,9660,9664,9685,-9687,9691,9677,9676,-9696,9683,9672,9673,-9683,9675,9674,9678,-9680,9680, + 9683,9695,-9685,9681,9680,9684,-9688,9683,9682,9691,-9696,9692,9690,9689,-9689,9660,9686,9692,-9689,9695,9676,9679,-9685,9685,9664,9689,-9691,9686,9685,9690,-9693,9701, + 9696,-9700,9699,9698,9700,-9702,9680,9675,9672,-9684,9699,9693,9694,-9699,9700,9697,9696,-9702,10140,10127,-10137,10128,10131,10132,-10134,9684,9679,9678,-9688,9694,9693,9696, + -9698,9693,9699,-9697,9673,9672,9676,-9678,9706,9707,9703,-9703,9708,9709,9705,-9705,9709,9706,9702,-9706,9714,9715,9711,-9711,9716,9717,9713,-9713,9717,9714,9710,-9714, + 9708,9715,9714,-9710,9709,9714,9717,-9707,9706,9717,9716,-9708,9727,9724,9723,-9729,9723,9720,9721,-9723,9728,9723,9722,-9730,9726,9725,9724,-9728,9725,9718,9719,-9725, + 9724,9719,9720,-9724,9722,9721,9718,-9726,9729,9722,9725,-9727,9729,9726,9727,-9729,9734,9733,9732,-9736,9737,9730,9733,-9735,9736,9731,9730,-9738,9742,9741,9740,-9744, + 9745,9738,9741,-9743,9744,9739,9738,-9746,9750,9751,9747,-9747,9752,9753,9749,-9749,9753,9750,9746,-9750,9758,9759,9755,-9755,9760,9761,9757,-9757,9761,9758,9754,-9758, + 9752,9759,9758,-9754,9753,9758,9761,-9751,9750,9761,9760,-9752,9747,9756,9757,-9747,9746,9757,9754,-9750,9749,9754,9755,-9749,9763,9768,9769,-9763,9762,9769,9766,-9766, + 9765,9766,9767,-9765,9771,9776,9777,-9771,9770,9777,9774,-9774,9773,9774,9775,-9773,9778,9781,9780,-9780,9786,9787,9783,-9783,9788,9789,9785,-9785,9789,9786,9782,-9786, + 9794,9795,9791,-9791,9796,9797,9793,-9793,9797,9794,9790,-9794,9788,9795,9794,-9790,9789,9794,9797,-9787,9802,9803,9799,-9799,9803,9804,9800,-9800,9804,9805,9801,-9801, + 9805,9802,9798,-9802,9798,9799,9800,-9802,9805,9804,9803,-9803,9810,9811,9807,-9807,9811,9812,9808,-9808,9812,9813,9809,-9809,9813,9810,9806,-9810,9806,9807,9808,-9810, + 9813,9812,9811,-9811,9818,9819,9815,-9815,9819,9820,9816,-9816,9820,9821,9817,-9817,9821,9818,9814,-9818,9814,9815,9816,-9818,9821,9820,9819,-9819,9826,9827,9823,-9823, + 9827,9828,9824,-9824,9828,9829,9825,-9825,9829,9826,9822,-9826,9822,9823,9824,-9826,9829,9828,9827,-9827,9834,9835,9831,-9831,9835,9836,9832,-9832,9842,9843,9839,-9839, + 9837,9834,9830,-9834,9830,9831,9832,-9834,9837,9836,9835,-9835,9843,9844,9840,-9840,9845,9842,9838,-9842,9838,9839,9840,-9842,9845,9844,9843,-9843,9850,9851,9847,-9847, + 9851,9852,9848,-9848,9853,9850,9846,-9850,9846,9847,9848,-9850,9853,9852,9851,-9851,9858,9859,9855,-9855,9859,9860,9856,-9856,9861,9858,9854,-9858,9854,9855,9856,-9858, + 9861,9860,9859,-9859,9866,9867,9863,-9863,9867,9868,9864,-9864,9869,9866,9862,-9866,9862,9863,9864,-9866,9869,9868,9867,-9867,9874,9875,9871,-9871,9875,9876,9872,-9872, + 9877,9874,9870,-9874,9870,9871,9872,-9874,9877,9876,9875,-9875,9882,9883,9879,-9879,9883,9884,9880,-9880,9885,9882,9878,-9882,9878,9879,9880,-9882,9885,9884,9883,-9883, + 9890,9891,9887,-9887,9891,9892,9888,-9888,9893,9890,9886,-9890,9886,9887,9888,-9890,9893,9892,9891,-9891,9898,9899,9895,-9895,9899,9900,9896,-9896,9901,9898,9894,-9898, + 9894,9895,9896,-9898,9901,9900,9899,-9899,9906,9907,9903,-9903,9907,9908,9904,-9904,9909,9906,9902,-9906,9902,9903,9904,-9906,9909,9908,9907,-9907,9914,9915,9911,-9911, + 9915,9916,9912,-9912,9917,9914,9910,-9914,9910,9911,9912,-9914,9917,9916,9915,-9915,9922,9923,9919,-9919,9923,9924,9920,-9920,9925,9922,9918,-9922,9918,9919,9920,-9922, + 9925,9924,9923,-9923,10071,9927,9931,-10073,10071,9928,10539,-10074,9927,9926,9929,-9932,9932,9934,9926,-9928,9943,9938,9937,-9937,9938,9943,9941,-9941,9940,9941,9942,-9940, + 9944,9945,9942,-9942,9946,9944,9941,-9944,9939,9945,9944,-9941,9940,9944,9946,-9939,9969,9964,9968,-9966,9947,9953,9950,-9950,10533,10348,9948,-10533,9955,9960,9961,-9955, + 9954,9961,9958,-9958,9957,9958,9959,-9957,9964,9963,9967,-9969,9963,9962,9966,-9968,9969,9962,9963,-9965,9968,9967,9966,-9966,9977,9972,9976,-9974,9972,9971,9975,-9977, + 9971,9970,9974,-9976,9977,9970,9971,-9973,9976,9975,9974,-9974,9985,9980,9984,-9982,9980,9979,9983,-9985,9979,9978,9982,-9984,9985,9978,9979,-9981,9984,9983,9982,-9982, + 9993,9988,9992,-9990,9988,9987,9991,-9993,9987,9986,9990,-9992,9993,9986,9987,-9989,9992,9991,9990,-9990,10001,9996,10000,-9998,9996,9995,9999,-10001,9995,9994,9998,-10000, + 10001,9994,9995,-9997,10000,9999,9998,-9998,10009,10004,10008,-10006,10004,10003,10007,-10009,10003,10002,10006,-10008,10009,10002,10003,-10005,10008,10007,10006,-10006,10017,10012,10016,-10014, + 10012,10011,10015,-10017,10011,10010,10014,-10016,10017,10010,10011,-10013,10016,10015,10014,-10014,10025,10020,10024,-10022,10020,10019,10023,-10025,10019,10018,10022,-10024,10025,10018,10019,-10021, + 10024,10023,10022,-10022,10026,10027,10028,-10030,10032,10033,10029,-10029,10281,10282,10278,-10278,10030,10031,10027,-10027,10030,10033,10032,-10032,10041,10038,10034,-10038,10040,10041,10037,-10037, + 10039,10040,10036,-10036,10038,10039,10035,-10035,10049,10046,10042,-10046,10048,10049,10045,-10045,10047,10048,10044,-10044,10046,10047,10043,-10043,9093,10051,10050,-9090,10057,10056,-10059,10056, + 10055,-10059,10409,10053,10059,-10411,10056,10057,10052,-10061,10409,10057,10058,-10412,9237,10063,10062,-9236,9233,10061,-10064,9232,10061,10064,-9239,9238,10064,10065,-9241,10062,10066,-9243, + 9240,10065,10066,-9232,9347,9348,10070,-10070,9348,9349,10068,-10071,9349,9350,10067,-10069,9350,9347,10069,-10068,9927,10071,10073,-9933,9120,10074,10075,-9117,9122,10076,10077,-9119, + 9116,10075,10077,-9120,9120,9123,10076,-10075,9136,10078,10079,-9133,9138,10080,10081,-9135,9132,10079,10081,-9136,9136,9139,10080,-10079,9192,10082,10083,-9189,9194,10084,10085,-9191, + 9188,10083,10085,-9192,9196,10086,10088,-9200,9202,10087,10088,-9199,10099,10089,10090,-10099,10316,9517,10291,-10315,9515,10091,10096,-10298,9516,10297,-10297,10297,10096,10097,-10297,10091, + 10098,-10097,10315,10317,10092,-10095,9516,9515,-10298,10098,10090,-10098,10094,10093,10099,-10101,10093,10095,10089,-10100,10105,10106,10102,-10102,10106,10107,10103,-10103,10108,10105,10101,-10105, + 10101,10102,10103,-10105,10108,10107,10106,-10106,10113,10114,10110,-10110,10114,10115,10111,-10111,10116,10113,10109,-10113,10109,10110,10111,-10113,10116,10115,10114,-10114,9662,10120,10117,-9659, + 9658,10117,10118,-9660,10121,10124,10123,-10123,10129,10138,10137,-10135,10139,10140,10136,-10136,10128,10133,10129,-10135,10126,10135,10136,-10126,10127,10140,10139,-10131,10127,10130,10126,-10126, + 10125,10136,-10128,10132,10131,10137,-10139,10145,10146,10142,-10142,10146,10147,10143,-10143,10148,10145,10141,-10145,10141,10142,10143,-10145,10148,10147,10146,-10146,10153,10154,10150,-10150,10154, + 10155,10151,-10151,10156,10153,10149,-10153,10149,10150,10151,-10153,10156,10155,10154,-10154,10161,10162,10158,-10158,10162,10163,10159,-10159,10164,10161,10157,-10161,10157,10158,10159,-10161,10164, + 10163,10162,-10162,10169,10170,10166,-10166,10170,10171,10167,-10167,10172,10169,10165,-10169,10165,10166,10167,-10169,10172,10171,10170,-10170,10193,10192,10196,-10191,10173,10174,10175,-10177,10180, + 10179,10178,-10178,10173,10176,10180,-10178,10175,10174,10178,-10180,10176,10175,10179,-10181,10188,10183,-10187,10186,10185,10187,-10189,10186,10181,10182,-10186,10187,10184,10183,-10189,10189,10191, + 10192,-10194,10182,10181,10183,-10185,10181,10186,-10184,10190,10196,10195,-10195,10189,10193,10190,-10195,10192,10191,10195,-10197,10217,10216,10220,-10215,10197,10198,10199,-10201,10204,10203,10202, + -10202,10197,10200,10204,-10202,10199,10198,10202,-10204,10200,10199,10203,-10205,10212,10207,-10211,10210,10209,10211,-10213,10210,10205,10206,-10210,10211,10208,10207,-10213,10213,10215,10216,-10218, + 10206,10205,10207,-10209,10205,10210,-10208,10214,10220,10219,-10219,10213,10217,10214,-10219,10216,10215,10219,-10221,10241,10240,10244,-10239,10221,10222,10223,-10225,10228,10227,10226,-10226,10221, + 10224,10228,-10226,10223,10222,10226,-10228,10224,10223,10227,-10229,10236,10231,-10235,10234,10233,10235,-10237,10234,10229,10230,-10234,10235,10232,10231,-10237,10237,10239,10240,-10242,10230,10229, + 10231,-10233,10229,10234,-10232,10238,10244,10243,-10243,10237,10241,10238,-10243,10240,10239,10243,-10245,10265,10264,10268,-10263,10245,10246,10247,-10249,10252,10251,10250,-10250,10245,10248,10252, + -10250,10247,10246,10250,-10252,10248,10247,10251,-10253,10260,10255,-10259,10258,10257,10259,-10261,10258,10253,10254,-10258,10259,10256,10255,-10261,10261,10263,10264,-10266,10254,10253,10255,-10257, + 10253,10258,-10256,10262,10268,10267,-10267,10261,10265,10262,-10267,10264,10263,10267,-10269,9148,9152,9153,-9150,10273,10274,10270,-10270,10274,10275,10271,-10271,10275,10276,10272,-10272,10276, + 10273,10269,-10273,10282,10283,10279,-10279,10283,10284,10280,-10280,10284,10281,10277,-10281,10349,10287,10286,-10349,9929,9926,9928,-10539,10063,10061,-10537,10066,10062,-10538,9237,9233,-10064, + 9235,10062,-9243,9097,9098,10288,-10290,9508,9509,9512,-9514,9517,10316,10315,-9519,9508,9507,9510,-9510,9500,9501,9504,-9506,9500,9499,9502,-9502,9484,9488,9489,-9486,9492, + 9496,9497,-9494,9484,9485,9492,-9494,9495,9498,9497,-9497,9487,9490,9489,-9489,9291,9292,10293,-10293,9293,9294,10295,-10295,9294,9291,10292,-10296,9291,9294,9293,-9293,9292, + 9293,10294,-10294,10350,10293,10294,-10352,9172,10299,10301,-9176,9178,10300,10301,-9175,9176,9179,10300,-10299,10308,10313,-10312,10308,10311,-10306,10311,10312,10302,-10306,10312,9095,-10303, + 10307,9206,-10304,10306,9205,9206,-10308,9094,9205,-10307,9094,10306,-10310,9094,10309,-10305,10309,10313,10310,-10305,10303,9095,10312,-10308,9206,10302,9095,-10304,10306,10311,10313,-10310, + 10307,10312,10311,-10307,10288,10316,10314,-9245,9098,10315,10316,-10289,9098,10317,-10316,10394,10395,10392,-10394,10324,10326,9114,-9114,10320,10322,9381,-9381,9375,10321,10323,-9379,9381, + 10322,10323,-9378,9379,10320,10321,-9376,9379,9382,10322,-10321,9112,10324,10325,-9109,9114,10326,10327,-9111,9108,10325,10327,-9112,9112,9115,10326,-10325,10401,10329,10330,-10405,10403, + 10328,10329,-10402,10403,10402,10331,-10329,10336,10333,10335,-10340,9084,10334,10335,-9081,10338,10332,10333,-10337,10338,10337,10334,-10333,10334,10337,10339,-10336,9078,10336,10339,-9082,9082, + 10338,10336,-9079,9082,9085,10337,-10339,9254,9251,9434,-9432,9251,9254,9253,-9253,9163,10342,10340,-9161,9157,10341,10340,-9162,9159,10343,10342,-9164,9159,9156,10341,-10344,9165, + 10346,10345,-9170,9167,10344,10347,-9172,9171,10347,10345,-9169,9167,9164,10346,-10345,9937,9939,9942,-9937,9942,9945,9946,-9944,9955,9956,9959,-9961,10534,10349,10348,-10534,9939, + 9938,9946,-9946,9947,9952,-9954,9949,9950,-9952,9947,9949,9951,-9953,9926,9934,10539,-9929,10285,9948,9234,-9237,10286,9234,-9949,10535,10285,10349,-10535,10348,10286,-9949,10285, + 10287,-10350,10535,10532,9948,-10286,10072,10538,9928,-10072,10292,10293,10350,-10354,10294,10295,10352,-10352,10295,10292,10353,-10353,10540,10350,10351,-10542,10094,10092,10354,-10357,10095,10093, + 10355,-10358,10093,10094,10356,-10356,9468,9472,9473,-9470,10364,10365,10373,-10373,10366,10367,10365,-10365,10368,10366,10364,-10364,10367,10369,10362,-10366,10360,10361,10367,-10367,10359,10360, + 10366,-10369,10361,10358,10369,-10368,10373,10370,10374,-10378,10363,10364,10372,-10372,10365,10362,10370,-10374,10375,10376,10377,-10375,10372,10373,10377,-10377,10371,10372,10376,-10376,9259,9260, + 10379,-10379,9261,9262,10381,-10381,9262,9259,10378,-10382,10382,10383,10385,-10385,9099,10318,-10320,10387,10389,10388,-10387,10390,10391,-10394,9099,10390,10392,-10319,9245,9099,-10320,9245, + 10391,10390,-9100,10387,10386,10396,-10395,10394,10396,-10396,10355,10388,10389,-10358,10354,10388,10355,-10357,10103,10107,10108,-10105,9602,9603,9606,-9608,9594,9593,9596,-9596,9591,10397, + 10398,-9593,9592,10398,10399,-9590,9589,10399,10400,-9591,9610,9611,9617,-9621,9610,9620,9619,-9610,9609,9619,9618,-9613,9612,9618,9617,-9612,9586,9587,9597,-9601,9586,9600, + 9599,-9586,9585,9599,9598,-9589,9588,9598,9597,-9588,9140,10401,10404,-9144,9144,10403,10401,-9141,9144,9147,10402,-10404,9142,9146,10331,-10331,10330,10331,10402,-10405,10404,10402, + 9147,-9144,9358,9355,10406,-10409,9357,9358,10408,-10408,9356,9357,10407,-10406,9355,9356,10405,-10407,10057,10409,10410,-10053,10053,10409,10411,-10055,10416,10417,10413,-10413,10417,10418, + 10414,-10414,10418,10419,10415,-10415,10419,10416,10412,-10416,10412,10413,10414,-10416,10419,10418,10417,-10417,10424,10425,10421,-10421,10425,10426,10422,-10422,10426,10427,10423,-10423,10427,10424, + 10420,-10424,10420,10421,10422,-10424,10427,10426,10425,-10425,10439,10435,-10429,10436,10432,-10430,10443,10441,10435,-10440,10440,10442,10436,-10435,10436,10439,10437,-10433,10442,10443,10439,-10437, + 10434,10436,-10430,10437,10439,-10429,10438,10431,10441,-10444,10430,10433,10442,-10441,10433,10438,10443,-10443,9184,9187,9186,-9186,9158,10343,10341,-9158,10448,10449,10445,-10445,10449,10450, + 10446,-10446,10450,10451,10447,-10447,10451,10448,10444,-10448,10444,10445,10446,-10448,10451,10450,10449,-10449,10456,10457,10453,-10453,10460,10458,10454,-10462,10458,10459,10455,-10455,10462,10456, + 10452,-10464,10463,10461,10454,-10456,10462,10460,10457,-10457,10457,10460,10461,-10454,10459,10462,10463,-10456,10452,10453,10461,-10464,10459,10458,10460,-10463,10468,10469,10465,-10465,10469,10470, + 10466,-10466,10470,10471,10467,-10467,10471,10468,10464,-10468,10464,10465,10466,-10468,10471,10470,10469,-10469,10476,10477,10473,-10473,10477,10478,10474,-10474,10478,10479,10475,-10475,10479,10476, + 10472,-10476,10472,10473,10474,-10476,10479,10478,10477,-10477,10484,10485,10481,-10481,10492,10493,10489,-10489,10486,10487,10483,-10483,10487,10484,10480,-10484,10480,10481,10482,-10484,10487,10486, + 10485,-10485,10494,10495,10491,-10491,10495,10492,10488,-10492,10488,10489,10490,-10492,10495,10494,10493,-10493,10500,10501,10497,-10497,10508,10509,10505,-10505,10502,10503,10499,-10499,10503,10500, + 10496,-10500,10496,10497,10498,-10500,10503,10502,10501,-10501,10510,10511,10507,-10507,10511,10508,10504,-10508,10504,10505,10506,-10508,10511,10510,10509,-10509,10515,10512,10513,-10515,10520,10521, + 10517,-10517,10522,10523,10519,-10519,10523,10520,10516,-10520,10528,10529,10525,-10525,10530,10531,10527,-10527,10531,10528,10524,-10528,10522,10529,10528,-10524,10523,10528,10531,-10521,10520,10531, + 10530,-10522,10533,10532,9231,-10538,10063,10534,10533,-10063,10536,10534,-10064,9232,9231,10532,-10536,9232,10535,10534,-10537,10061,9232,-10537,10062,10533,-10538,9231,10066,-10538,10096,10098, + -10098,10290,9516,-10297,10353,10350,10540,-10544,10351,10352,10542,-10542,10352,10353,10543,-10543,9288,10540,10541,-9290,9283,9284,10545,-10545,9285,9286,10547,-10547,9286,9283,10544,-10548, + 10548,10549,10551,-10551,10553,10548,10550,-10553,10551,10554,10552,-10551,10549,10555,10554,-10552,10549,10548,10553,-10556,10556,10557,10559,-10559,10561,10556,10558,-10561,10559,10562,10560,-10559, + 10557,10563,10562,-10560,10557,10556,10561,-10564,10564,10565,10567,-10567,10572,10564,10566,-10575,10573,10570,10568,-10575,10575,10571,10570,-10574,10575,10572,10569,-10572,10569,10572,10574,-10569, + 10567,10573,10574,-10567,10565,10575,10573,-10568,10565,10564,10572,-10576,10576,10577,10579,-10579,10580,10576,10578,-10583,10579,10581,10582,-10579,10577,10583,10581,-10580,10577,10576,10580,-10584, + 10392,10390,-10394,9268,9269,9265,-9265,10590,10585,10586,-10590,10589,10586,-10589,10585,10584,10588,-10587,10584,10590,10589,-10589,10587,10592,-10592,10593,10594,-10596,10600,10601,10597,-10597, + 10601,10602,10598,-10598,10602,10603,10599,-10599,10603,10600,10596,-10600,10606,10604,10600,-10604,10604,10605,10601,-10601,10605,10606,10602,-10602,10606,10603,-10603,10605,10604,10610,-10616,10621, + 10617,-10617,10615,10610,10611,-10615,10620,10618,10617,-10622,10622,10619,10618,-10621,10612,10608,10619,-10623,10613,10614,-10608,10614,10611,-10608,10606,10605,10615,-10610,10610,10609,10613,-10612, + 10609,10615,10614,-10614,10604,10606,10609,-10611,10611,10613,-10608,10630,10625,-10627,10629,10630,10626,-10628,10631,10629,10627,-10629,10624,10631,10628,-10624,10954,10674,-10956,10969,10677,-10971, + 10709,10678,-10680,10962,10681,-10681,10974,10683,-10974,10978,10685,-10978,10685,10686,-10688,10781,10688,-10755,10935,10691,-10691,10931,10701,-10701,11134,10702,-11136,10680,10705,-10705,10706,10709, + -10708,10834,10711,-10816,10710,10713,-10712,10659,10670,-10633,10646,10978,-10977,10967,10676,-10970,10632,10698,-10661,10953,10692,-10956,10661,10672,-10635,10648,10684,-10647,10668,10710,-10668,10933, + 10688,-10936,10665,10678,-10709,10643,10705,-10682,10641,10709,-10680,10971,10677,-10974,10634,10692,-10655,10668,10713,-10713,10640,10679,-10679,10663,10704,-10706,10635,10693,-10674,10643,10961,-10960, + 10968,10696,-10971,10975,10683,-10978,10658,10671,-10697,10934,10691,-10937,10664,10958,-10957,10644,10974,-10973,10633,10695,-10672,10952,10675,-10955,10964,10698,-10967,10649,10685,-10688,10656,10673, + -10695,10642,10704,-10663,10714,10949,-10952,10722,10728,-10715,10859,10744,-10854,10719,11110,-11114,10731,10734,-10733,10731,10724,-10731,10730,10734,-10732,10674,10768,-10768,10768,10766,-10768,10766, + 10770,-10766,10770,10764,-10766,10764,10772,-10764,10772,10762,-10764,10762,10774,-10762,10774,10760,-10762,10760,10776,-10760,10776,10758,-10760,10758,10778,-10758,10778,10756,-10758,10756,10780,-10756, + 10780,10754,-10756,10651,10781,-10781,10753,10778,-10778,10753,10777,-10777,10752,10776,-10776,10752,10775,-10775,10752,10774,-10774,10751,10772,-10772,10750,10763,-10750,10751,10771,-10771,10751,10770, + -10770,10750,10767,-10767,10637,10768,-10676,10750,10766,-10766,10749,10762,-10762,10749,10761,-10761,10749,10759,-10749,10748,10759,-10759,10748,10758,-10758,10748,10755,-10651,10650,10755,-10755,10650, + 10754,-10689,10651,10689,-10782,10753,10780,-10780,10636,10767,-10751,10748,10757,-10757,10749,10763,-10763,10750,10765,-10765,10751,10769,-10769,10752,10773,-10773,10753,10779,-10779,10786,10803,-10792, + 10783,10692,-10673,10785,10696,-10672,10787,10694,-10674,10789,10698,-10671,10787,10693,-10791,10782,10693,-10693,10785,10695,-10792,10786,10695,-10695,10792,10670,-10698,10784,10697,-10697,10793,10672, + -10700,10788,10699,-10699,10979,10797,-10804,10787,10798,-10787,10788,10805,-10794,10785,10803,-10798,10784,10797,-10797,10793,10795,-10784,10782,10802,-10791,10783,10794,-10783,10792,10796,-10805,10790, + 10799,-10788,10792,10801,-10790,10789,10800,-10789,10706,10824,-10709,10824,10826,-10824,10826,10822,-10824,10822,10828,-10822,10821,10829,-10821,10820,10830,-10820,10819,10831,-10819,10831,10817,-10819, + 10832,10816,-10818,10833,10815,-10817,10813,10828,-10813,10806,10817,-10817,10809,10823,-10823,10667,10710,-10835,10810,10708,-10825,10669,10711,-10714,10811,10706,-10665,10811,10826,-10826,10812,10826, + -10812,10812,10828,-10828,10813,10830,-10830,10814,10830,-10814,10814,10832,-10832,10667,10832,-10815,10667,10834,-10834,10806,10815,-10712,10806,10816,-10816,10807,10818,-10818,10807,10819,-10819,10808, + 10820,-10820,10808,10821,-10821,10809,10822,-10822,10810,10824,-10824,11056,11083,-10848,10738,11092,-11080,10741,11104,-11082,10742,11089,-11058,10851,11101,-11070,10852,11103,-11072,11058,11082,-10743, + 11061,11083,-11094,10836,11027,-10992,10984,11019,-10747,10992,11018,-10837,10746,11037,-11002,11070,11084,-10852,10742,10874,-10873,10983,10869,-10852,10867,10983,-10742,10870,10742,-10873,10873,10847, + -10739,10746,10843,-10837,10837,10843,-10846,10838,10842,-10747,10858,10745,-10858,10854,10862,-10862,10863,10865,-10867,10864,10863,-10867,10853,10863,-10860,10862,10865,-10862,10858,10866,-10863,10737, + 10874,-10874,10855,10856,-10860,10872,10846,-10849,10871,10743,-10870,10868,10851,-10870,10739,10871,-10868,10740,10869,-10744,10849,10872,-10849,10875,10878,-10878,10880,10881,-10880,10883,10886,-10886, + 10887,10890,-10890,10891,10894,-10894,10896,10897,-10896,10900,10901,-10900,10904,10905,-10904,10908,10909,-10908,10911,10914,-10914,10915,10918,-10918,10926,10924,-10923,10920,10924,-10927,10923,10926, + -10922,10919,10925,-10927,10925,10920,-10927,10923,10919,-10927,10930,10927,-10930,10700,10930,-10930,10690,10932,-10932,10688,10936,-10936,10933,10690,-10653,10934,10689,-10652,10840,10843,-10840,10843, + 10835,-10840,10844,10835,-10843,10727,10728,-10730,10943,10717,-10940,11200,10729,-10724,10945,10939,-10942,10940,10716,-10938,10716,10940,-10734,10945,11213,-10943,10937,10943,-10945,10942,10944,-10946, + 10944,10943,-10940,10692,10954,-10956,10953,10674,-10637,10952,10693,-10656,10956,10695,-10658,10966,10961,-10963,10959,10965,-10964,10642,10962,-10681,10960,10966,-10963,10698,10965,-10967,10963,10699, + -10662,10696,10969,-10971,10659,10969,-10698,10968,10677,-10640,10676,10973,-10678,10645,10973,-10684,10972,10676,-10639,10682,10977,-10684,10976,10682,-10645,10647,10977,-10686,11111,10719,-10719,10946, + 10942,-11216,10946,10940,-10938,10730,10733,-11202,10716,10730,-10725,10939,10717,-10951,10946,10937,-10943,10940,10946,-10734,10725,10716,-10725,10717,10716,-10726,10946,11208,-10734,10715,10948,-10719, + 10946,10951,-10950,10733,11208,-11202,11116,11111,-10719,10714,10951,-10939,10796,10797,-10980,10805,10979,-10796,10979,10799,-10803,10979,10802,-10795,10801,10804,-10980,10804,10796,-10980,10795,10979, + -10795,10800,10801,-10980,10799,10979,-10799,10798,10979,-10804,10805,10800,-10980,10747,11113,-11113,10721,11121,-11121,10707,10958,-10707,10957,10694,-10708,10957,10709,-10667,10694,10958,-10708,11067, + 11106,-11100,10990,11025,-10990,11011,11022,-10987,10991,11042,-11007,11017,11020,-10985,10989,11044,-11009,11016,11036,-11001,10996,11031,-10996,11009,11024,-10989,11004,11041,-11041,11015,11052,-11017, + 10988,11023,-10988,11014,11034,-10999,10999,11036,-11036,11007,11026,-10991,11003,11038,-11003,10994,11029,-10994,11013,11050,-11015,10985,11048,-11013,10993,11041,-11006,10998,11033,-10998,10986,11021, + -10986,10987,11046,-11011,11003,11031,-11040,11076,11104,-11073,11065,11088,-11057,11077,11100,-11069,11064,11092,-11061,11055,11094,-11088,11073,11085,-11106,11071,11106,-11075,11066,11108,-11077,11075, + 11101,-11108,11068,11085,-10984,11059,11094,-11063,11054,11096,-11065,10982,11091,-11060,11063,11089,-11096,11112,11113,-11116,11110,11115,-11114,11111,11114,-11111,11176,10721,-11178,11112,11177,-10722, + 11178,10720,-11177,10939,10950,-11179,11112,11122,-10748,11112,11120,-11120,11126,11123,-11119,10980,11118,-10982,11123,10981,-11119,11124,11125,-10981,11128,11118,-11126,11128,11126,-11119,11129,11126, + -11132,11131,11127,-11131,11131,11126,-11129,10927,11132,-11134,11137,11134,-11136,11133,11136,-11138,11129,11139,-11127,10981,11138,-10981,11140,11142,-11140,11123,11139,-10982,11139,11141,-10982,10855, + 10859,-10865,10855,10864,-10859,10857,10855,-10859,11148,11145,-11145,11147,11148,-11145,11151,11148,-11151,11151,11149,-11147,11161,11149,-11164,11162,11151,-11151,11163,11151,-11165,11152,11165,-11162, + 11145,11155,-11145,11157,11166,-11166,11156,11159,-11159,11145,11156,-11159,11149,11145,-11147,11149,11156,-11146,11165,11159,-11157,11154,11163,-11165,11154,11162,-11154,11152,11163,-11155,11149,11165, + -11157,11175,11170,-11175,11168,11175,-11174,11175,11169,-11172,11167,11175,-11172,11117,11178,-11177,11114,11177,-11116,11180,11181,-11180,11183,10725,-11186,11180,11183,-11185,11184,11185,-11187,10725, + 11187,-11186,11186,11187,-11189,10724,11189,-11188,11188,11189,-11191,10731,11191,-11190,11189,11192,-11191,11191,10723,-11194,11191,11193,-11195,11193,10723,-10730,11193,11195,-11197,11195,11198,-11197, + 11179,10950,-11184,10720,11181,-10722,11183,10950,-10718,11195,10729,-10729,11197,10728,-10727,11195,11193,-10730,11192,11191,-11195,11194,11193,-11197,11114,11117,-11177,11127,11128,-11126,11124,11127, + -11126,10941,10939,-11179,10941,11178,-11118,11199,11202,-11202,11203,11202,-10737,10727,11200,-11207,11200,11205,-11207,10723,11207,-11206,10734,11207,-10733,11208,11199,-11202,11213,11214,-10948,11215, + 10942,-11214,11211,11213,-10948,10718,10948,-11117,10730,11202,-11204,11214,10941,-11213,10735,10730,-11204,11199,10727,-11207,10735,11203,-11205,11199,10949,-10728,10951,10946,-11212,10951,11216,-11211, + 11212,11117,-11117,11204,10736,-11200,11204,11203,-10737,11211,10947,-10949,11209,10948,-10716,10948,11212,-11117,11216,10715,-11211,10947,11214,-11213,10948,10947,-11213,11211,10946,-11216,10954,10675, + -10675,10969,10676,-10678,10709,10708,-10679,10962,10961,-10682,10974,10682,-10684,10978,10684,-10686,10685,10684,-10687,10781,10689,-10689,10935,10936,-10692,10931,10932,-10702,11134,10703,-10703,10680, + 10681,-10706,10706,10708,-10710,10834,10710,-10712,10710,10712,-10714,10659,10697,-10671,10646,10684,-10979,10967,10638,-10677,10632,10670,-10699,10953,10654,-10693,10661,10699,-10673,10648,10686,-10685, + 10668,10712,-10711,10933,10650,-10689,10665,10640,-10679,10643,10663,-10706,10641,10666,-10710,10971,10639,-10678,10634,10672,-10693,10668,10669,-10714,10640,10641,-10680,10663,10662,-10705,10635,10655, + -10694,10643,10681,-10962,10968,10658,-10697,10975,10645,-10684,10658,10633,-10672,10934,10653,-10692,10664,10706,-10959,10644,10682,-10975,10633,10657,-10696,10952,10637,-10676,10964,10660,-10699,10649, + 10647,-10686,10656,10635,-10674,10642,10680,-10705,10714,10727,-10950,10727,10714,-10729,10722,10726,-10729,10859,10856,-10745,10730,10735,-10735,10674,10675,-10769,10768,10769,-10767,10766,10769,-10771, + 10770,10771,-10765,10764,10771,-10773,10772,10773,-10763,10762,10773,-10775,10774,10775,-10761,10760,10775,-10777,10776,10777,-10759,10758,10777,-10779,10778,10779,-10757,10756,10779,-10781,10780,10781, + -10755,10752,10753,-10777,10751,10752,-10773,10750,10764,-10764,10637,10751,-10769,10749,10760,-10760,10748,10756,-10756,10753,10651,-10781,10636,10674,-10768,10786,10798,-10804,10783,10782,-10693,10785, + 10784,-10697,10787,10786,-10695,10789,10788,-10699,10787,10673,-10694,10782,10790,-10694,10785,10671,-10696,10786,10791,-10696,10792,10789,-10671,10784,10792,-10698,10793,10783,-10673,10788,10793,-10700, + 10787,10799,-10799,10788,10800,-10806,10785,10791,-10804,10784,10785,-10798,10793,10805,-10796,10782,10794,-10803,10783,10795,-10795,10792,10784,-10797,10790,10802,-10800,10792,10804,-10802,10789,10801, + -10801,10706,10825,-10825,10824,10825,-10827,10826,10827,-10823,10822,10827,-10829,10821,10828,-10830,10820,10829,-10831,10819,10830,-10832,10831,10832,-10818,10832,10833,-10817,10833,10834,-10816,10813, + 10829,-10829,10806,10807,-10818,10809,10810,-10824,10810,10665,-10709,10669,10806,-10712,10811,10825,-10707,10812,10827,-10827,10814,10831,-10831,10667,10833,-10833,10807,10808,-10820,10808,10809,-10822, + 11056,11088,-11084,10738,11060,-11093,10741,11072,-11105,10742,11082,-11090,10851,11084,-11102,10852,11080,-11104,11058,11090,-11083,11061,10847,-11084,10836,11018,-11028,10984,11020,-11020,10992,11028, + -11019,10746,11019,-11038,11070,11102,-11085,10742,10847,-10875,10983,10871,-10870,10867,10871,-10984,10870,10982,-10743,10873,10874,-10848,10746,10842,-10844,10837,10836,-10844,10838,10844,-10843,10858, + 10854,-10746,10854,10858,-10863,10863,10860,-10866,10864,10859,-10864,10853,10860,-10864,10862,10866,-10866,10858,10864,-10867,10737,10846,-10875,10872,10874,-10847,10871,10850,-10744,10868,10852,-10852, + 10739,10850,-10872,10740,10868,-10870,10849,10870,-10873,10875,10876,-10879,10880,10882,-10882,10883,10884,-10887,10887,10888,-10891,10891,10892,-10895,10896,10898,-10898,10900,10902,-10902,10904,10906, + -10906,10908,10910,-10910,10911,10912,-10915,10915,10916,-10919,10930,10928,-10928,10700,10701,-10931,10690,10691,-10933,10688,10689,-10937,10933,10935,-10691,10934,10936,-10690,10840,10845,-10844,10843, + 10842,-10836,10844,10841,-10836,11200,10727,-10730,10945,10944,-10940,10945,11214,-11214,10937,10716,-10944,10942,10937,-10945,10692,10693,-10955,10953,10955,-10675,10952,10954,-10694,10956,10958,-10696, + 10966,10965,-10962,10959,10961,-10966,10642,10960,-10963,10960,10964,-10967,10698,10699,-10966,10963,10965,-10700,10696,10697,-10970,10659,10967,-10970,10968,10970,-10678,10676,10974,-10974,10645,10971, + -10974,10972,10974,-10677,10682,10978,-10978,10976,10978,-10683,10647,10975,-10978,11111,11110,-10720,10716,10733,-10731,10717,10943,-10717,10946,10949,-11209,11116,11117,-11112,10747,10719,-11114,10957, + 10656,-10695,10957,10707,-10710,10694,10695,-10959,11067,11074,-11107,10990,11026,-11026,11011,11047,-11023,10991,11027,-11043,11017,11053,-11021,10989,11025,-11045,11016,11052,-11037,10996,11032,-11032, + 11009,11045,-11025,11004,11005,-11042,11015,11051,-11053,10988,11024,-11024,11014,11050,-11035,10999,11000,-11037,11007,11043,-11027,11003,11039,-11039,10994,11030,-11030,11013,11049,-11051,10985,11021, + -11049,10993,11029,-11042,10998,11034,-11034,10986,11022,-11022,10987,11023,-11047,11003,10995,-11032,11076,11108,-11105,11065,11097,-11089,11077,11109,-11101,11064,11096,-11093,11055,11062,-11095,11073, + 10983,-11086,11071,11103,-11107,11066,11098,-11109,11075,11069,-11102,11068,11100,-11086,11059,11091,-11095,11054,11086,-11097,10982,11078,-11092,11063,11057,-11090,11110,11114,-11116,11111,11117,-11115, + 11176,10720,-10722,11112,11115,-11178,11178,10950,-10721,11112,11119,-11123,11112,10721,-11121,10980,11125,-11119,11131,11128,-11128,10927,10928,-11133,11137,11136,-11135,11133,11132,-11137,11129,11140, + -11140,10981,11141,-11139,11140,11143,-11143,11123,11126,-11140,11139,11142,-11142,11148,11146,-11146,11147,11150,-11149,11151,11146,-11149,11162,11164,-11152,11163,11149,-11152,11152,11157,-11166,11145, + 11158,-11156,11157,11160,-11167,11165,11166,-11160,11154,11164,-11163,11152,11161,-11164,11149,11161,-11166,11175,11172,-11171,11168,11172,-11176,11175,11174,-11170,11167,11173,-11176,11114,11176,-11178, + 11180,11182,-11182,11183,10717,-10726,11180,11179,-11184,11184,11183,-11186,10725,10724,-11188,11186,11185,-11188,10724,10731,-11190,11188,11187,-11190,10731,10732,-11192,11189,11191,-11193,11191,10732, + -10724,11195,11197,-11199,11179,10720,-10951,10720,11179,-11182,11197,11195,-10729,11199,10736,-11203,11200,10723,-11206,10723,10732,-11208,10734,10735,-11208,11208,10949,-11200,11211,11215,-11214,10730, + 11201,-11203,11214,10945,-10942,11204,11205,-11208,11207,10735,-11205,11210,10938,-10952,10951,11211,-11210,11209,11216,-10952,11212,10941,-11118,11199,11206,-11206,11205,11204,-11200,11209,11211,-10949, + 11216,11209,-10716,11217,11218,11219,-11221,11224,11221,11217,-11221,11223,11224,11220,-11220,11222,11223,11219,-11219,11221,11222,11218,-11218,11229,11230,11226,-11226,11230,11231,11227,-11227,11231, + 11232,11228,-11228,11232,11229,11225,-11229,11221,11224,11223,-11223,11304,11303,11307,-11309,11243,11244,11240,-11240,11244,11245,11241,-11241,11245,11246,11242,-11242,11246,11243,11239,-11243,11239, + 11240,11241,-11243,11279,11280,11281,-11283,11251,11252,11248,-11248,11252,11253,11249,-11249,11253,11254,11250,-11250,11254,11251,11247,-11251,11247,11248,11249,-11251,12272,12274,11491,-11495,12279, + 11260,11256,-12281,11260,11261,11257,-11257,12281,11262,11258,-12283,11262,11259,11255,-11259,12280,11256,11257,-12283,11305,11304,11308,-11310,11267,11268,11264,-11264,11268,11269,11265,-11265,11269, + 11270,11266,-11266,11270,11267,11263,-11267,11263,11264,11265,-11267,12273,12272,11494,-11494,12283,11276,11272,-12285,11276,11277,11273,-11273,12285,11278,11274,-12287,11278,11275,11271,-11275,12284, + 11272,11273,-12287,11283,11284,11280,-11280,11287,11288,11289,-11291,12275,12273,11493,-11493,11293,11294,11290,-11290,12274,12275,11492,-11492,11306,11305,11309,-11311,11316,11317,11313,-11313,11315, + 11316,11312,-11312,11342,11339,11335,-11339,11310,11309,11308,-11308,11303,11306,11310,-11308,11324,11325,11321,-11321,11323,11324,11320,-11320,11311,11312,11313,-11315,11318,11315,11311,-11315,11317, + 11318,11314,-11314,12279,12281,11261,-11261,12292,11336,11337,-12294,11302,11301,11300,-11300,11295,11298,11302,-11300,11296,11295,11299,-11301,11297,11296,11300,-11302,11298,11297,11301,-11303,11325, + 11326,11322,-11322,11326,11323,11319,-11323,11319,11320,11321,-11323,11340,11341,11337,-11337,12287,11332,11328,-12289,11332,11333,11329,-11329,12289,11334,11330,-12291,11334,11331,11327,-11331,12288, + 11328,11329,-12291,12291,11340,11336,-12293,12294,11344,11345,-12297,11350,11347,11343,-11347,12295,11350,11346,-12297,11348,11349,11345,-11345,11315,11318,11317,-11317,11233,11352,11354,-11235,11371, + 11375,11376,-11368,11363,11360,11356,-11365,11364,11356,11357,-11367,11377,11374,11370,-11379,11365,11362,11358,-11367,11376,11368,11369,-11379,11359,11363,11364,-11356,11355,11364,11366,-11359,11361, + 11365,11366,-11358,11375,11372,11368,-11377,11367,11376,11378,-11371,11373,11377,11378,-11370,12268,11384,11382,-12268,12266,11380,11384,-12269,12266,11381,11387,-12270,12269,11387,11389,-12271,11380, + 11379,11382,-11385,11238,11235,11391,-11394,12267,11382,11379,-12272,12270,11389,11390,-12272,11390,11381,11385,-11384,11381,11390,11389,-11388,11386,11388,11379,-11381,11236,11237,11392,-11395,11391, + 11236,-11395,11237,11393,-11393,11353,11238,11393,-11238,11235,11351,11236,-11392,11399,11400,11396,-11396,11400,11401,11397,-11397,11401,11402,11398,-11398,11402,11399,11395,-11399,11407,11408,11404, + -11404,11283,11286,11285,-11285,11409,11410,11406,-11406,11410,11407,11403,-11407,11415,11416,11412,-11412,11417,11418,11414,-11414,11418,11415,11411,-11415,11424,11425,11421,-11421,11423,11424,11420, + -11420,11425,11426,11422,-11422,11426,11423,11419,-11423,12283,12285,11277,-11277,11431,11432,11428,-11428,11433,11434,11430,-11430,11434,11431,11427,-11431,11439,11440,11436,-11436,11441,11442,11438, + -11438,11442,11439,11435,-11439,11447,11448,11444,-11444,11449,11450,11446,-11446,11450,11447,11443,-11447,11455,11456,11452,-11452,11457,11458,11454,-11454,11458,11455,11451,-11455,11463,11464,11460, + -11460,11464,11465,11461,-11461,11465,11466,11462,-11462,11466,11463,11459,-11463,11471,11472,11468,-11468,11473,11474,11470,-11470,11474,11471,11467,-11471,11479,11480,11476,-11476,11481,11482,11478, + -11478,11482,11479,11475,-11479,11488,11489,11485,-11485,11487,11488,11484,-11484,11489,11490,11486,-11486,11490,11487,11483,-11487,11292,11291,11294,-11294,11506,11503,11499,-11503,11505,11506,11502, + -11502,11504,11505,11501,-11501,11503,11504,11500,-11500,11514,11511,11507,-11511,11513,11514,11510,-11510,11512,11513,11509,-11509,11511,11512,11508,-11508,11522,11519,11515,-11519,11521,11522,11518, + -11518,11520,11521,11517,-11517,11519,11520,11516,-11516,11523,11524,11525,-11527,11530,11527,11523,-11527,11529,11530,11526,-11526,11528,11529,11525,-11525,11527,11528,11524,-11524,11531,11532,11533, + -11535,11538,11535,11531,-11535,11537,11538,11534,-11534,11536,11537,11533,-11533,11535,11536,11532,-11532,11546,11543,11539,-11543,11545,11546,11542,-11542,11544,11545,11541,-11541,11543,11544,11540, + -11540,11554,11551,11547,-11551,11553,11554,11550,-11550,11552,11553,11549,-11549,11551,11552,11548,-11548,11562,11559,11555,-11559,11561,11562,11558,-11558,11560,11561,11557,-11557,11559,11560,11556, + -11556,11570,11567,11563,-11567,11569,11570,11566,-11566,11568,11569,11565,-11565,11567,11568,11564,-11564,11578,11575,11571,-11575,11577,11578,11574,-11574,11576,11577,11573,-11573,11575,11576,11572, + -11572,11586,11583,11579,-11583,11585,11586,11582,-11582,11584,11585,11581,-11581,11583,11584,11580,-11580,11594,11591,11587,-11591,11593,11594,11590,-11590,11592,11593,11589,-11589,11591,11592,11588, + -11588,11602,11599,11595,-11599,11601,11602,11598,-11598,11600,11601,11597,-11597,11599,11600,11596,-11596,11607,11608,11604,-11604,11609,11610,11606,-11606,11610,11607,11603,-11607,11615,11616,11612, + -11612,11617,11618,11614,-11614,11618,11615,11611,-11615,11623,11624,11620,-11620,11625,11626,11622,-11622,11626,11623,11619,-11623,11631,11632,11628,-11628,11633,11634,11630,-11630,11634,11631,11627, + -11631,11639,11640,11636,-11636,11641,11642,11638,-11638,11642,11639,11635,-11639,11647,11648,11644,-11644,11649,11650,11646,-11646,11650,11647,11643,-11647,11641,11648,11647,-11643,11642,11647,11650, + -11640,11639,11650,11649,-11641,11636,11645,11646,-11636,11635,11646,11643,-11639,11638,11643,11644,-11638,11652,11657,11658,-11652,11651,11658,11655,-11655,11654,11655,11656,-11654,11660,11665,11666, + -11660,11659,11666,11663,-11663,11662,11663,11664,-11662,11667,11670,11669,-11669,11682,11679,11678,-11684,11678,11675,11676,-11678,11683,11678,11677,-11685,11681,11680,11679,-11683,11680,11673,11674, + -11680,11679,11674,11675,-11679,11677,11676,11673,-11681,11684,11677,11680,-11682,11684,11681,11682,-11684,11689,11688,11687,-11691,11692,11685,11688,-11690,11691,11686,11685,-11693,11697,11696,11695, + -11699,11700,11693,11696,-11698,11699,11694,11693,-11701,11705,11706,11702,-11702,11707,11708,11704,-11704,11708,11705,11701,-11705,11713,11714,11710,-11710,11715,11716,11712,-11712,11716,11713,11709, + -11713,11707,11714,11713,-11709,11708,11713,11716,-11706,11705,11716,11715,-11707,11702,11711,11712,-11702,11701,11712,11709,-11705,11704,11709,11710,-11704,11718,11723,11724,-11718,11717,11724,11721, + -11721,11720,11721,11722,-11720,11726,11731,11732,-11726,11725,11732,11729,-11729,11728,11729,11730,-11728,11733,11736,11735,-11735,11741,11742,11738,-11738,11743,11744,11740,-11740,11744,11741,11737, + -11741,11749,11750,11746,-11746,11751,11752,11748,-11748,11752,11749,11745,-11749,11743,11750,11749,-11745,11744,11749,11752,-11742,11741,11752,11751,-11743,11738,11747,11748,-11738,11737,11748,11745, + -11741,11740,11745,11746,-11740,11754,11759,11760,-11754,11753,11760,11757,-11757,11756,11757,11758,-11756,11762,11767,11768,-11762,11761,11768,11765,-11765,11764,11765,11766,-11764,11769,11772,11771, + -11771,11777,11778,11774,-11774,11779,11780,11776,-11776,11780,11777,11773,-11777,11785,11786,11782,-11782,11787,11788,11784,-11784,11788,11785,11781,-11785,11779,11786,11785,-11781,11780,11785,11788, + -11778,11777,11788,11787,-11779,11774,11783,11784,-11774,11773,11784,11781,-11777,11776,11781,11782,-11776,11790,11795,11796,-11790,11789,11796,11793,-11793,11792,11793,11794,-11792,11798,11803,11804, + -11798,11797,11804,11801,-11801,11800,11801,11802,-11800,11805,11808,11807,-11807,11820,11819,11818,-11822,11823,11815,11819,-11821,12385,12384,12390,-12382,11824,11827,11831,-11829,11833,11826,11827, + -11833,11822,11817,11815,-11824,11813,12371,12372,-11815,11812,11816,11837,-11839,11843,11829,11828,-11848,11835,11824,11825,-11835,11827,11826,11830,-11832,11832,11835,11847,-11837,11833,11832,11836, + -11840,11835,11834,11843,-11848,11844,11842,11841,-11841,11812,11838,11844,-11841,11847,11828,11831,-11837,11837,11816,11841,-11843,11838,11837,11842,-11845,11853,11848,-11852,11851,11850,11852,-11854, + 11832,11827,11824,-11836,11851,11845,11846,-11851,11852,11849,11848,-11854,12392,12379,-12389,12380,12383,12384,-12386,11836,11831,11830,-11840,11846,11845,11848,-11850,11845,11851,-11849,11825,11824, + 11828,-11830,11858,11859,11855,-11855,11860,11861,11857,-11857,11861,11858,11854,-11858,11866,11867,11863,-11863,11868,11869,11865,-11865,11869,11866,11862,-11866,11860,11867,11866,-11862,11861,11866, + 11869,-11859,11858,11869,11868,-11860,11879,11876,11875,-11881,11875,11872,11873,-11875,11880,11875,11874,-11882,11878,11877,11876,-11880,11877,11870,11871,-11877,11876,11871,11872,-11876,11874,11873, + 11870,-11878,11881,11874,11877,-11879,11881,11878,11879,-11881,11886,11885,11884,-11888,11889,11882,11885,-11887,11888,11883,11882,-11890,11894,11893,11892,-11896,11897,11890,11893,-11895,11896,11891, + 11890,-11898,11902,11903,11899,-11899,11904,11905,11901,-11901,11905,11902,11898,-11902,11910,11911,11907,-11907,11912,11913,11909,-11909,11913,11910,11906,-11910,11904,11911,11910,-11906,11905,11910, + 11913,-11903,11902,11913,11912,-11904,11899,11908,11909,-11899,11898,11909,11906,-11902,11901,11906,11907,-11901,11915,11920,11921,-11915,11914,11921,11918,-11918,11917,11918,11919,-11917,11923,11928, + 11929,-11923,11922,11929,11926,-11926,11925,11926,11927,-11925,11930,11933,11932,-11932,11938,11939,11935,-11935,11940,11941,11937,-11937,11941,11938,11934,-11938,11946,11947,11943,-11943,11948,11949, + 11945,-11945,11949,11946,11942,-11946,11940,11947,11946,-11942,11941,11946,11949,-11939,11954,11955,11951,-11951,11955,11956,11952,-11952,11956,11957,11953,-11953,11957,11954,11950,-11954,11950,11951, + 11952,-11954,11957,11956,11955,-11955,11962,11963,11959,-11959,11963,11964,11960,-11960,11964,11965,11961,-11961,11965,11962,11958,-11962,11958,11959,11960,-11962,11965,11964,11963,-11963,11970,11971, + 11967,-11967,11971,11972,11968,-11968,11972,11973,11969,-11969,11973,11970,11966,-11970,11966,11967,11968,-11970,11973,11972,11971,-11971,11978,11979,11975,-11975,11979,11980,11976,-11976,11980,11981, + 11977,-11977,11981,11978,11974,-11978,11974,11975,11976,-11978,11981,11980,11979,-11979,11986,11987,11983,-11983,11987,11988,11984,-11984,11994,11995,11991,-11991,11989,11986,11982,-11986,11982,11983, + 11984,-11986,11989,11988,11987,-11987,11995,11996,11992,-11992,11997,11994,11990,-11994,11990,11991,11992,-11994,11997,11996,11995,-11995,12002,12003,11999,-11999,12003,12004,12000,-12000,12005,12002, + 11998,-12002,11998,11999,12000,-12002,12005,12004,12003,-12003,12010,12011,12007,-12007,12011,12012,12008,-12008,12013,12010,12006,-12010,12006,12007,12008,-12010,12013,12012,12011,-12011,12018,12019, + 12015,-12015,12019,12020,12016,-12016,12021,12018,12014,-12018,12014,12015,12016,-12018,12021,12020,12019,-12019,12026,12027,12023,-12023,12027,12028,12024,-12024,12029,12026,12022,-12026,12022,12023, + 12024,-12026,12029,12028,12027,-12027,12034,12035,12031,-12031,12035,12036,12032,-12032,12037,12034,12030,-12034,12030,12031,12032,-12034,12037,12036,12035,-12035,12042,12043,12039,-12039,12043,12044, + 12040,-12040,12045,12042,12038,-12042,12038,12039,12040,-12042,12045,12044,12043,-12043,12050,12051,12047,-12047,12051,12052,12048,-12048,12053,12050,12046,-12050,12046,12047,12048,-12050,12053,12052, + 12051,-12051,12058,12059,12055,-12055,12059,12060,12056,-12056,12061,12058,12054,-12058,12054,12055,12056,-12058,12061,12060,12059,-12059,12066,12067,12063,-12063,12067,12068,12064,-12064,12069,12066, + 12062,-12066,12062,12063,12064,-12066,12069,12068,12067,-12067,12074,12075,12071,-12071,12075,12076,12072,-12072,12077,12074,12070,-12074,12070,12071,12072,-12074,12077,12076,12075,-12075,12276,12079, + 12083,-12278,12276,12080,12086,-12279,12079,12078,12081,-12084,12082,12081,12078,-12090,12087,12088,12089,-12079,12085,12087,12078,-12080,12090,12091,-12093,12097,12104,12101,-12101,12125,12095,12107, + -12097,12100,12101,12102,-12100,12105,12106,12102,-12102,12095,12094,12103,-12108,12108,12105,12101,-12105,12099,12106,12105,-12101,12100,12105,12108,-12098,12094,12093,12098,-12104,12133,12128,12132, + -12130,12125,12093,12094,-12096,12107,12103,12098,-12097,12110,12115,12116,-12110,12109,12116,12113,-12113,12112,12113,12114,-12112,12118,12123,12124,-12118,12117,12124,12121,-12121,12120,12121,12122, + -12120,12128,12127,12131,-12133,12127,12126,12130,-12132,12133,12126,12127,-12129,12132,12131,12130,-12130,12141,12136,12140,-12138,12136,12135,12139,-12141,12135,12134,12138,-12140,12141,12134,12135, + -12137,12140,12139,12138,-12138,12149,12144,12148,-12146,12144,12143,12147,-12149,12143,12142,12146,-12148,12149,12142,12143,-12145,12148,12147,12146,-12146,12157,12152,12156,-12154,12152,12151,12155, + -12157,12151,12150,12154,-12156,12157,12150,12151,-12153,12156,12155,12154,-12154,12165,12160,12164,-12162,12160,12159,12163,-12165,12159,12158,12162,-12164,12165,12158,12159,-12161,12164,12163,12162, + -12162,12173,12168,12172,-12170,12168,12167,12171,-12173,12167,12166,12170,-12172,12173,12166,12167,-12169,12172,12171,12170,-12170,12181,12176,12180,-12178,12176,12175,12179,-12181,12175,12174,12178, + -12180,12181,12174,12175,-12177,12180,12179,12178,-12178,12189,12184,12188,-12186,12184,12183,12187,-12189,12183,12182,12186,-12188,12189,12182,12183,-12185,12188,12187,12186,-12186,12190,12191,12192, + -12194,12196,12197,12193,-12193,12533,12534,12530,-12530,12194,12195,12191,-12191,12194,12197,12196,-12196,12205,12202,12198,-12202,12204,12205,12201,-12201,12203,12204,12200,-12200,12202,12203,12199, + -12199,12213,12210,12206,-12210,12212,12213,12209,-12209,12211,12212,12208,-12208,12210,12211,12207,-12207,12221,12218,12214,-12218,12220,12221,12217,-12217,12219,12220,12216,-12216,12218,12219,12215, + -12215,12229,12226,12222,-12226,12228,12229,12225,-12225,12227,12228,12224,-12224,12226,12227,12223,-12223,12230,12231,12232,-12234,12237,12234,12230,-12234,12236,12237,12233,-12233,12235,12236,12232, + -12232,12234,12235,12231,-12231,12234,12237,12236,-12236,12238,12239,12240,-12242,12245,12242,12238,-12242,12244,12245,12241,-12241,12246,12247,12248,-12250,12242,12243,12239,-12239,12242,12245,12244, + -12244,12253,12250,12246,-12250,12252,12253,12249,-12249,12250,12251,12247,-12247,12250,12253,12252,-12252,12257,12256,12255,-12255,12257,12254,12262,-12264,12258,12261,12260,-12260,12265,12264,12263, + -12263,12261,12258,12264,-12266,12254,12261,12265,-12263,12258,12257,12263,-12265,11385,12268,12267,-11384,11381,12266,12268,-11386,11380,12266,12269,-11387,11386,12269,12270,-11389,11383,12267,12271, + -11391,11388,12270,12271,-11380,11495,11496,12275,-12275,11496,11497,12273,-12276,11497,11498,12272,-12274,11498,11495,12274,-12273,12080,12276,12277,-12085,12079,12276,12278,-12086,11259,12279,12280, + -11256,11261,12281,12282,-11258,11255,12280,12282,-11259,11259,11262,12281,-12280,11275,12283,12284,-11272,11277,12285,12286,-11274,11271,12284,12286,-11275,11275,11278,12285,-12284,11331,12287,12288, + -11328,11333,12289,12290,-11330,11327,12288,12290,-11331,11335,12292,12293,-11339,11339,12291,12292,-11336,11343,12294,12296,-11347,11349,12295,12296,-11346,12334,12298,12301,-12336,12298,12297,12299, + -12302,12300,12299,12297,-12306,12303,12304,12305,-12298,12302,12303,12297,-12299,12306,12307,-12309,12309,12314,12312,-12312,12311,12312,12313,-12311,12315,12316,12313,-12313,12317,12315,12312,-12315, + 12310,12316,12315,-12312,12311,12315,12317,-12310,12319,12324,12325,-12319,12318,12325,12322,-12322,12321,12322,12323,-12321,12327,12332,12333,-12327,12326,12333,12330,-12330,12329,12330,12331,-12329, + 12298,12334,12336,-12303,12341,12342,12338,-12338,12342,12343,12339,-12339,12344,12341,12337,-12341,12337,12338,12339,-12341,12344,12343,12342,-12342,12349,12350,12346,-12346,12350,12351,12347,-12347, + 12352,12349,12345,-12349,12345,12346,12347,-12349,12352,12351,12350,-12350,12357,12358,12354,-12354,12358,12359,12355,-12355,12360,12357,12353,-12357,12353,12354,12355,-12357,12360,12359,12358,-12358, + 12365,12366,12362,-12362,12366,12367,12363,-12363,12368,12365,12361,-12365,12361,12362,12363,-12365,12368,12367,12366,-12366,11814,12372,12369,-11811,11810,12369,12370,-11812,12373,12376,12375,-12375, + 12381,12390,12389,-12387,12391,12392,12388,-12388,12380,12385,12381,-12387,12378,12387,12388,-12378,12379,12392,12391,-12383,12379,12382,12378,-12378,12377,12388,-12380,12384,12383,12389,-12391,12397, + 12398,12394,-12394,12398,12399,12395,-12395,12400,12397,12393,-12397,12393,12394,12395,-12397,12400,12399,12398,-12398,12405,12406,12402,-12402,12406,12407,12403,-12403,12408,12405,12401,-12405,12401, + 12402,12403,-12405,12408,12407,12406,-12406,12413,12414,12410,-12410,12414,12415,12411,-12411,12416,12413,12409,-12413,12409,12410,12411,-12413,12416,12415,12414,-12414,12421,12422,12418,-12418,12422, + 12423,12419,-12419,12424,12421,12417,-12421,12417,12418,12419,-12421,12424,12423,12422,-12422,12445,12444,12448,-12443,12425,12426,12427,-12429,12432,12431,12430,-12430,12425,12428,12432,-12430,12427, + 12426,12430,-12432,12428,12427,12431,-12433,12440,12435,-12439,12438,12437,12439,-12441,12438,12433,12434,-12438,12439,12436,12435,-12441,12441,12443,12444,-12446,12434,12433,12435,-12437,12433,12438, + -12436,12442,12448,12447,-12447,12441,12445,12442,-12447,12444,12443,12447,-12449,12469,12468,12472,-12467,12449,12450,12451,-12453,12456,12455,12454,-12454,12449,12452,12456,-12454,12451,12450,12454, + -12456,12452,12451,12455,-12457,12464,12459,-12463,12462,12461,12463,-12465,12462,12457,12458,-12462,12463,12460,12459,-12465,12465,12467,12468,-12470,12458,12457,12459,-12461,12457,12462,-12460,12466, + 12472,12471,-12471,12465,12469,12466,-12471,12468,12467,12471,-12473,12493,12492,12496,-12491,12473,12474,12475,-12477,12480,12479,12478,-12478,12473,12476,12480,-12478,12475,12474,12478,-12480,12476, + 12475,12479,-12481,12488,12483,-12487,12486,12485,12487,-12489,12486,12481,12482,-12486,12487,12484,12483,-12489,12489,12491,12492,-12494,12482,12481,12483,-12485,12481,12486,-12484,12490,12496,12495, + -12495,12489,12493,12490,-12495,12492,12491,12495,-12497,12517,12516,12520,-12515,12497,12498,12499,-12501,12504,12503,12502,-12502,12497,12500,12504,-12502,12499,12498,12502,-12504,12500,12499,12503, + -12505,12512,12507,-12511,12510,12509,12511,-12513,12510,12505,12506,-12510,12511,12508,12507,-12513,12513,12515,12516,-12518,12506,12505,12507,-12509,12505,12510,-12508,12514,12520,12519,-12519,12513, + 12517,12514,-12519,12516,12515,12519,-12521,11287,11291,11292,-11289,12525,12526,12522,-12522,12526,12527,12523,-12523,12527,12528,12524,-12524,12528,12525,12521,-12525,12534,12535,12531,-12531,12535, + 12536,12532,-12532,12536,12533,12529,-12533,12557,12556,12560,-12555,12538,12537,12539,-12541,12544,12543,12542,-12542,12538,12540,12544,-12542,12539,12537,12542,-12544,12540,12539,12543,-12545,12552, + 12547,-12551,12550,12549,12551,-12553,12550,12545,12546,-12550,12551,12548,12547,-12553,12553,12555,12556,-12558,12546,12545,12547,-12549,12545,12550,-12548,12554,12560,12559,-12559,12553,12557,12554, + -12559,12556,12555,12559,-12561,13789,12566,12562,-13791,12566,12567,12563,-12563,13791,12568,12564,-13793,12568,12565,12561,-12565,13790,12562,12563,-13793,12601,12602,12603,-12605,13793,12574,12570, + -13795,12574,12575,12571,-12571,13795,12576,12572,-13797,12576,12573,12569,-12573,13794,12570,12571,-13797,12608,12605,12601,-12605,12581,12582,12578,-12578,12582,12583,12579,-12579,12583,12584,12580, + -12580,12584,12581,12577,-12581,12577,12578,12579,-12581,12607,12608,12604,-12604,12589,12590,12586,-12586,12590,12591,12587,-12587,12591,12592,12588,-12588,12592,12589,12585,-12589,12585,12586,12587, + -12589,12606,12607,12603,-12603,12597,12598,12594,-12594,12598,12599,12595,-12595,12599,12600,12596,-12596,12600,12597,12593,-12597,12593,12594,12595,-12597,12605,12606,12602,-12602,12609,12610,12611, + -12613,12616,12613,12609,-12613,12615,12616,12612,-12612,12614,12615,12611,-12611,12613,12614,12610,-12610,12617,12618,12619,-12621,12624,12621,12617,-12621,12623,12624,12620,-12620,12622,12623,12619, + -12619,12621,12622,12618,-12618,12629,12630,12626,-12626,12630,12631,12627,-12627,12631,12632,12628,-12628,12632,12629,12625,-12629,12581,12584,12583,-12583,12605,12608,12607,-12607,12704,12703,12707, + -12709,13793,13795,12575,-12575,13789,13791,12567,-12567,12589,12592,12591,-12591,12597,12600,12599,-12599,12613,12616,12615,-12615,12643,12644,12640,-12640,12644,12645,12641,-12641,12645,12646,12642, + -12642,12646,12643,12639,-12643,12639,12640,12641,-12643,12679,12680,12681,-12683,12651,12652,12648,-12648,12652,12653,12649,-12649,12653,12654,12650,-12650,12654,12651,12647,-12651,12647,12648,12649, + -12651,13002,12999,12995,-12999,13800,12660,12656,-13802,12660,12661,12657,-12657,13802,12662,12658,-13804,12662,12659,12655,-12659,13801,12656,12657,-13804,12705,12704,12708,-12710,12667,12668,12664, + -12664,12668,12669,12665,-12665,12669,12670,12666,-12666,12670,12667,12663,-12667,12663,12664,12665,-12667,13001,13002,12998,-12998,13804,12676,12672,-13806,12676,12677,12673,-12673,13806,12678,12674, + -13808,12678,12675,12671,-12675,13805,12672,12673,-13808,12683,12684,12680,-12680,12687,12688,12689,-12691,13000,13001,12997,-12997,12693,12694,12690,-12690,12999,13000,12996,-12996,12706,12705,12709, + -12711,12716,12717,12713,-12713,12715,12716,12712,-12712,12742,12739,12735,-12739,12710,12709,12708,-12708,12703,12706,12710,-12708,12724,12725,12721,-12721,12723,12724,12720,-12720,12711,12712,12713, + -12715,12718,12715,12711,-12715,12717,12718,12714,-12714,13800,13802,12661,-12661,13813,12736,12737,-13815,12702,12701,12700,-12700,12695,12698,12702,-12700,12696,12695,12699,-12701,12697,12696,12700, + -12702,12698,12697,12701,-12703,12725,12726,12722,-12722,12726,12723,12719,-12723,12719,12720,12721,-12723,12740,12741,12737,-12737,13808,12732,12728,-13810,12732,12733,12729,-12729,13810,12734,12730, + -13812,12734,12731,12727,-12731,13809,12728,12729,-13812,13812,12740,12736,-13814,13815,12744,12745,-13818,12750,12747,12743,-12747,13816,12750,12746,-13818,12748,12749,12745,-12745,12715,12718,12717, + -12717,12633,12752,12754,-12635,12771,12775,12776,-12768,12763,12760,12756,-12765,12764,12756,12757,-12767,12777,12774,12770,-12779,12765,12762,12758,-12767,12776,12768,12769,-12779,12759,12763,12764, + -12756,12755,12764,12766,-12759,12761,12765,12766,-12758,12775,12772,12768,-12777,12767,12776,12778,-12771,12773,12777,12778,-12770,13785,12784,12782,-13785,13783,12780,12784,-13786,13783,12781,12787, + -13787,13786,12787,12789,-13788,12780,12779,12782,-12785,12638,12635,12791,-12794,13784,12782,12779,-13789,13787,12789,12790,-13789,12790,12781,12785,-12784,12781,12790,12789,-12788,12786,12788,12779, + -12781,12636,12637,12792,-12795,12801,12799,12795,-12797,12799,12802,12797,-12796,12802,12800,12798,-12798,12800,12801,12796,-12799,12791,12636,-12795,12637,12793,-12793,12753,12638,12793,-12638,12635, + 12751,12636,-12792,12807,12808,12804,-12804,12808,12809,12805,-12805,12809,12810,12806,-12806,12810,12807,12803,-12807,12815,12816,12812,-12812,12683,12686,12685,-12685,12817,12818,12814,-12814,12818, + 12815,12811,-12815,12823,12824,12820,-12820,12825,12826,12822,-12822,12826,12823,12819,-12823,12832,12833,12829,-12829,12831,12832,12828,-12828,12833,12834,12830,-12830,12834,12831,12827,-12831,13804, + 13806,12677,-12677,12839,12840,12836,-12836,12840,12841,12837,-12837,12841,12842,12838,-12838,12842,12839,12835,-12839,12847,12848,12844,-12844,12849,12850,12846,-12846,12850,12847,12843,-12847,12855, + 12856,12852,-12852,12857,12858,12854,-12854,12858,12855,12851,-12855,12864,12865,12861,-12861,12863,12864,12860,-12860,12865,12866,12862,-12862,12866,12863,12859,-12863,12871,12872,12868,-12868,12873, + 12874,12870,-12870,12874,12871,12867,-12871,12879,12880,12876,-12876,12881,12882,12878,-12878,12882,12879,12875,-12879,12887,12888,12884,-12884,12889,12890,12886,-12886,12890,12887,12883,-12887,12895, + 12896,12892,-12892,12897,12898,12894,-12894,12898,12895,12891,-12895,12903,12904,12900,-12900,12905,12906,12902,-12902,12906,12903,12899,-12903,12911,12912,12908,-12908,12913,12914,12910,-12910,12914, + 12911,12907,-12911,12919,12920,12916,-12916,12921,12922,12918,-12918,12922,12919,12915,-12919,12927,12928,12924,-12924,12929,12930,12926,-12926,12930,12927,12923,-12927,12935,12936,12932,-12932,12936, + 12937,12933,-12933,12937,12938,12934,-12934,12938,12935,12931,-12935,12943,12944,12940,-12940,12945,12946,12942,-12942,12946,12943,12939,-12943,12951,12952,12948,-12948,12953,12954,12950,-12950,12954, + 12951,12947,-12951,12960,12961,12957,-12957,12959,12960,12956,-12956,12961,12962,12958,-12958,12962,12959,12955,-12959,12967,12968,12964,-12964,12968,12969,12965,-12965,12969,12970,12966,-12966,12970, + 12967,12963,-12967,12975,12976,12972,-12972,12977,12978,12974,-12974,12978,12975,12971,-12975,12983,12984,12980,-12980,12985,12986,12982,-12982,12986,12983,12979,-12983,12992,12993,12989,-12989,12991, + 12992,12988,-12988,12993,12994,12990,-12990,12994,12991,12987,-12991,12692,12691,12694,-12694,13010,13007,13003,-13007,13009,13010,13006,-13006,13008,13009,13005,-13005,13007,13008,13004,-13004,13018, + 13015,13011,-13015,13017,13018,13014,-13014,13016,13017,13013,-13013,13015,13016,13012,-13012,13026,13023,13019,-13023,13025,13026,13022,-13022,13024,13025,13021,-13021,13023,13024,13020,-13020,13027, + 13028,13029,-13031,13034,13031,13027,-13031,13033,13034,13030,-13030,13032,13033,13029,-13029,13031,13032,13028,-13028,13035,13036,13037,-13039,13042,13039,13035,-13039,13041,13042,13038,-13038,13040, + 13041,13037,-13037,13039,13040,13036,-13036,13050,13047,13043,-13047,13049,13050,13046,-13046,13048,13049,13045,-13045,13047,13048,13044,-13044,13058,13055,13051,-13055,13057,13058,13054,-13054,13056, + 13057,13053,-13053,13055,13056,13052,-13052,13066,13063,13059,-13063,13065,13066,13062,-13062,13064,13065,13061,-13061,13063,13064,13060,-13060,13074,13071,13067,-13071,13073,13074,13070,-13070,13072, + 13073,13069,-13069,13071,13072,13068,-13068,13082,13079,13075,-13079,13081,13082,13078,-13078,13080,13081,13077,-13077,13079,13080,13076,-13076,13090,13087,13083,-13087,13089,13090,13086,-13086,13088, + 13089,13085,-13085,13087,13088,13084,-13084,13098,13095,13091,-13095,13097,13098,13094,-13094,13096,13097,13093,-13093,13095,13096,13092,-13092,13106,13103,13099,-13103,13105,13106,13102,-13102,13104, + 13105,13101,-13101,13103,13104,13100,-13100,13111,13112,13108,-13108,13113,13114,13110,-13110,13114,13111,13107,-13111,13119,13120,13116,-13116,13121,13122,13118,-13118,13122,13119,13115,-13119,13127, + 13128,13124,-13124,13129,13130,13126,-13126,13130,13127,13123,-13127,13135,13136,13132,-13132,13137,13138,13134,-13134,13138,13135,13131,-13135,13139,13142,13146,-13144,13140,13139,13143,-13145,13142, + 13141,13145,-13147,13151,13152,13149,-13149,13152,13150,13147,-13150,13156,13157,13154,-13154,13159,13156,13153,-13156,13151,13157,13156,-13153,13152,13156,13159,-13151,13147,13155,13153,-13150,13149, + 13153,13154,-13149,13160,13162,13165,-13164,13161,13160,13163,-13165,13167,13172,13173,-13167,13166,13173,13170,-13170,13169,13170,13171,-13169,13174,13177,13176,-13176,13187,13184,13183,-13189,13183, + 13180,13181,-13183,13188,13183,13182,-13190,13186,13185,13184,-13188,13185,13178,13179,-13185,13184,13179,13180,-13184,13182,13181,13178,-13186,13189,13182,13185,-13187,13189,13186,13187,-13189,13194, + 13193,13192,-13196,13197,13190,13193,-13195,13196,13191,13190,-13198,13202,13201,13200,-13204,13205,13198,13201,-13203,13204,13199,13198,-13206,13210,13211,13207,-13207,13212,13213,13209,-13209,13213, + 13210,13206,-13210,13218,13219,13215,-13215,13220,13221,13217,-13217,13221,13218,13214,-13218,13212,13219,13218,-13214,13213,13218,13221,-13211,13210,13221,13220,-13212,13207,13216,13217,-13207,13206, + 13217,13214,-13210,13209,13214,13215,-13209,13223,13228,13229,-13223,13222,13229,13226,-13226,13225,13226,13227,-13225,13231,13236,13237,-13231,13230,13237,13234,-13234,13233,13234,13235,-13233,13238, + 13241,13240,-13240,13246,13247,13243,-13243,13248,13249,13245,-13245,13249,13246,13242,-13246,13254,13255,13251,-13251,13256,13257,13253,-13253,13257,13254,13250,-13254,13248,13255,13254,-13250,13249, + 13254,13257,-13247,13246,13257,13256,-13248,13243,13252,13253,-13243,13242,13253,13250,-13246,13245,13250,13251,-13245,13259,13264,13265,-13259,13258,13265,13262,-13262,13261,13262,13263,-13261,13267, + 13272,13273,-13267,13266,13273,13270,-13270,13269,13270,13271,-13269,13274,13277,13276,-13276,13282,13283,13279,-13279,13284,13285,13281,-13281,13285,13282,13278,-13282,13290,13291,13287,-13287,13292, + 13293,13289,-13289,13293,13290,13286,-13290,13284,13291,13290,-13286,13285,13290,13293,-13283,13282,13293,13292,-13284,13279,13288,13289,-13279,13278,13289,13286,-13282,13281,13286,13287,-13281,13295, + 13300,13301,-13295,13294,13301,13298,-13298,13297,13298,13299,-13297,13303,13308,13309,-13303,13302,13309,13306,-13306,13305,13306,13307,-13305,13310,13313,13312,-13312,13314,13317,13321,-13319,13315, + 13314,13318,-13320,13317,13316,13320,-13322,13326,13327,13323,-13323,13328,13329,13325,-13325,13329,13326,13322,-13326,13334,13335,13331,-13331,13337,13333,13336,-13333,13336,13330,13331,-13333,13345, + 13340,-13344,13344,13345,13343,-13343,13337,13335,13334,-13334,13339,13342,13343,-13339,13340,13345,13344,-13342,13340,13341,13339,-13339,13338,13343,-13341,13350,13351,13347,-13347,13351,13353,13348, + -13348,13352,13350,13346,-13350,13346,13347,13348,-13350,13352,13353,13351,-13351,13333,13334,13330,-13337,13357,13358,13355,-13355,13360,13357,13354,-13357,13161,13358,13357,-13161,13160,13357,13360, + -13163,13165,13356,13354,-13164,13163,13354,13355,-13165,13362,13367,13368,-13362,13361,13368,13365,-13365,13364,13365,13366,-13364,13369,13372,13371,-13371,13356,13165,13380,-13382,13147,13150,13376, + -13376,13162,13360,13382,-13380,13360,13356,13381,-13383,13155,13147,13375,-13378,13165,13162,13379,-13381,13150,13159,13378,-13377,13159,13155,13377,-13379,13387,13388,13384,-13384,13389,13390,13386, + -13386,13390,13387,13383,-13387,13395,13396,13392,-13392,13397,13398,13394,-13394,13398,13395,13391,-13395,13389,13396,13395,-13391,13390,13395,13398,-13388,13387,13398,13397,-13389,13408,13405,13404, + -13410,13404,13401,13402,-13404,13409,13404,13403,-13411,13407,13406,13405,-13409,13406,13399,13400,-13406,13405,13400,13401,-13405,13403,13402,13399,-13407,13410,13403,13406,-13408,13410,13407,13408, + -13410,13415,13414,13413,-13417,13418,13411,13414,-13416,13417,13412,13411,-13419,13423,13422,13421,-13425,13426,13419,13422,-13424,13425,13420,13419,-13427,13431,13432,13428,-13428,13433,13434,13430, + -13430,13434,13431,13427,-13431,13439,13440,13436,-13436,13441,13442,13438,-13438,13442,13439,13435,-13439,13433,13440,13439,-13435,13434,13439,13442,-13432,13431,13442,13441,-13433,13428,13437,13438, + -13428,13427,13438,13435,-13431,13430,13435,13436,-13430,13444,13449,13450,-13444,13443,13450,13447,-13447,13446,13447,13448,-13446,13452,13457,13458,-13452,13451,13458,13455,-13455,13454,13455,13456, + -13454,13459,13462,13461,-13461,13467,13468,13464,-13464,13469,13470,13466,-13466,13470,13467,13463,-13467,13475,13476,13472,-13472,13477,13478,13474,-13474,13478,13475,13471,-13475,13469,13476,13475, + -13471,13470,13475,13478,-13468,13483,13484,13480,-13480,13484,13485,13481,-13481,13485,13486,13482,-13482,13486,13483,13479,-13483,13479,13480,13481,-13483,13486,13485,13484,-13484,13491,13492,13488, + -13488,13492,13493,13489,-13489,13493,13494,13490,-13490,13494,13491,13487,-13491,13487,13488,13489,-13491,13494,13493,13492,-13492,13499,13500,13496,-13496,13500,13501,13497,-13497,13501,13502,13498, + -13498,13502,13499,13495,-13499,13495,13496,13497,-13499,13502,13501,13500,-13500,13507,13508,13504,-13504,13508,13509,13505,-13505,13509,13510,13506,-13506,13510,13507,13503,-13507,13503,13504,13505, + -13507,13510,13509,13508,-13508,13515,13516,13512,-13512,13516,13517,13513,-13513,13517,13518,13514,-13514,13518,13515,13511,-13515,13511,13512,13513,-13515,13518,13517,13516,-13516,13523,13524,13520, + -13520,13524,13525,13521,-13521,13531,13532,13528,-13528,13526,13523,13519,-13523,13519,13520,13521,-13523,13526,13525,13524,-13524,13532,13533,13529,-13529,13534,13531,13527,-13531,13527,13528,13529, + -13531,13534,13533,13532,-13532,13539,13540,13536,-13536,13540,13541,13537,-13537,13542,13539,13535,-13539,13535,13536,13537,-13539,13542,13541,13540,-13540,13547,13548,13544,-13544,13548,13549,13545, + -13545,13550,13547,13543,-13547,13543,13544,13545,-13547,13550,13549,13548,-13548,13555,13556,13552,-13552,13556,13557,13553,-13553,13558,13555,13551,-13555,13551,13552,13553,-13555,13558,13557,13556, + -13556,13563,13564,13560,-13560,13564,13565,13561,-13561,13566,13563,13559,-13563,13559,13560,13561,-13563,13566,13565,13564,-13564,13571,13572,13568,-13568,13572,13573,13569,-13569,13574,13571,13567, + -13571,13567,13568,13569,-13571,13574,13573,13572,-13572,13579,13580,13576,-13576,13580,13581,13577,-13577,13582,13579,13575,-13579,13575,13576,13577,-13579,13582,13581,13580,-13580,13587,13588,13584, + -13584,13588,13589,13585,-13585,13590,13587,13583,-13587,13583,13584,13585,-13587,13590,13589,13588,-13588,13595,13596,13592,-13592,13596,13597,13593,-13593,13598,13595,13591,-13595,13591,13592,13593, + -13595,13598,13597,13596,-13596,13603,13604,13600,-13600,13604,13605,13601,-13601,13606,13603,13599,-13603,13599,13600,13601,-13603,13606,13605,13604,-13604,13611,13612,13608,-13608,13612,13613,13609, + -13609,13614,13611,13607,-13611,13607,13608,13609,-13611,13614,13613,13612,-13612,13619,13620,13616,-13616,13620,13621,13617,-13617,13622,13619,13615,-13619,13615,13616,13617,-13619,13622,13621,13620, + -13620,13627,13628,13624,-13624,13628,13629,13625,-13625,13630,13627,13623,-13627,13623,13624,13625,-13627,13630,13629,13628,-13628,13635,13636,13632,-13632,13636,13637,13633,-13633,13638,13635,13631, + -13635,13631,13632,13633,-13635,13638,13637,13636,-13636,13643,13644,13640,-13640,13644,13645,13641,-13641,13646,13643,13639,-13643,13639,13640,13641,-13643,13646,13645,13644,-13644,13797,13648,13652, + -13799,13797,13649,13655,-13800,13648,13647,13650,-13653,13651,13650,13647,-13659,13656,13657,13658,-13648,13654,13656,13647,-13649,13659,13660,-13662,13666,13673,13670,-13670,13694,13664,13676,-13666, + 13669,13670,13671,-13669,13674,13675,13671,-13671,13664,13663,13672,-13677,13677,13674,13670,-13674,13668,13675,13674,-13670,13669,13674,13677,-13667,13663,13662,13667,-13673,13702,13697,13701,-13699, + 13694,13662,13663,-13665,13676,13672,13667,-13666,13679,13684,13685,-13679,13678,13685,13682,-13682,13681,13682,13683,-13681,13687,13692,13693,-13687,13686,13693,13690,-13690,13689,13690,13691,-13689, + 13697,13696,13700,-13702,13696,13695,13699,-13701,13702,13695,13696,-13698,13701,13700,13699,-13699,13710,13705,13709,-13707,13705,13704,13708,-13710,13704,13703,13707,-13709,13710,13703,13704,-13706, + 13709,13708,13707,-13707,13718,13713,13717,-13715,13713,13712,13716,-13718,13712,13711,13715,-13717,13718,13711,13712,-13714,13717,13716,13715,-13715,13726,13721,13725,-13723,13721,13720,13724,-13726, + 13720,13719,13723,-13725,13726,13719,13720,-13722,13725,13724,13723,-13723,13734,13729,13733,-13731,13729,13728,13732,-13734,13728,13727,13731,-13733,13734,13727,13728,-13730,13733,13732,13731,-13731, + 13742,13737,13741,-13739,13737,13736,13740,-13742,13736,13735,13739,-13741,13742,13735,13736,-13738,13741,13740,13739,-13739,13750,13745,13749,-13747,13745,13744,13748,-13750,13744,13743,13747,-13749, + 13750,13743,13744,-13746,13749,13748,13747,-13747,13758,13753,13757,-13755,13753,13752,13756,-13758,13752,13751,13755,-13757,13758,13751,13752,-13754,13757,13756,13755,-13755,14049,13760,13761,-14052, + 13766,13763,13759,-13763,14050,13766,13762,-14052,13764,13765,13761,-13761,14048,13764,13760,-14050,14048,14050,13765,-13765,13774,13771,13767,-13771,13773,13774,13770,-13770,13772,13773,13769,-13769, + 13771,13772,13768,-13768,13782,13779,13775,-13779,13781,13782,13778,-13778,13780,13781,13777,-13777,13779,13780,13776,-13776,12785,13785,13784,-12784,12781,13783,13785,-12786,12780,13783,13786,-12787, + 12786,13786,13787,-12789,12783,13784,13788,-12791,12788,13787,13788,-12780,12565,13789,13790,-12562,12567,13791,13792,-12564,12561,13790,13792,-12565,12565,12568,13791,-13790,12573,13793,13794,-12570, + 12575,13795,13796,-12572,12569,13794,13796,-12573,12573,12576,13795,-13794,13649,13797,13798,-13654,13648,13797,13799,-13655,12659,13800,13801,-12656,12661,13802,13803,-12658,12655,13801,13803,-12659, + 12659,12662,13802,-13801,12675,13804,13805,-12672,12677,13806,13807,-12674,12671,13805,13807,-12675,12675,12678,13806,-13805,12731,13808,13809,-12728,12733,13810,13811,-12730,12727,13809,13811,-12731, + 12735,13813,13814,-12739,12739,13812,13813,-12736,12743,13815,13817,-12747,12749,13816,13817,-12746,13822,13823,13819,-13819,13824,13825,13821,-13821,13825,13822,13818,-13822,13830,13831,13827,-13827, + 13832,13833,13829,-13829,13833,13830,13826,-13830,13838,13839,13835,-13835,13840,13841,13837,-13837,13841,13838,13834,-13838,13846,13847,13843,-13843,13848,13849,13845,-13845,13849,13846,13842,-13846, + 13854,13855,13851,-13851,13856,13857,13853,-13853,13857,13854,13850,-13854,13862,13863,13859,-13859,13864,13865,13861,-13861,13865,13862,13858,-13862,13870,13871,13867,-13867,13872,13873,13869,-13869, + 13873,13870,13866,-13870,13878,13879,13875,-13875,13880,13881,13877,-13877,13881,13878,13874,-13878,13886,13887,13883,-13883,13888,13889,13885,-13885,13889,13886,13882,-13886,13894,13895,13891,-13891, + 13896,13897,13893,-13893,13897,13894,13890,-13894,13918,13917,13921,-13916,13899,13898,13900,-13902,13905,13904,13903,-13903,13899,13901,13905,-13903,13900,13898,13903,-13905,13901,13900,13904,-13906, + 13913,13908,-13912,13911,13910,13912,-13914,13911,13906,13907,-13911,13912,13909,13908,-13914,13914,13916,13917,-13919,13907,13906,13908,-13910,13906,13911,-13909,13915,13921,13920,-13920,13914,13918, + 13915,-13920,13917,13916,13920,-13922,13942,13941,13945,-13940,13923,13922,13924,-13926,13929,13928,13927,-13927,13923,13925,13929,-13927,13924,13922,13927,-13929,13925,13924,13928,-13930,13937,13932, + -13936,13935,13934,13936,-13938,13935,13930,13931,-13935,13936,13933,13932,-13938,13938,13940,13941,-13943,13931,13930,13932,-13934,13930,13935,-13933,13939,13945,13944,-13944,13938,13942,13939,-13944, + 13941,13940,13944,-13946,14006,13964,13950,-13988,13983,13952,13951,-13986,14018,14012,13952,-13984,13964,14007,13993,-13951,14008,13959,13962,-13996,13971,13960,13957,-13986,13989,13956,13957,-13988, + 14019,14013,13956,-13990,13946,13992,14007,-13965,14007,13976,13969,-13994,13997,13968,13969,-13996,14021,14015,13968,-13998,14022,14014,13965,-14000,14010,13975,13974,-14004,14020,14011,13953,-13992, + 14009,13972,13981,-14002,14005,13980,13981,-14004,14023,14017,13980,-14006,13956,13983,13985,-13958,14013,14018,13983,-13957,13963,13971,13985,-13952,13960,14006,13987,-13958,13953,13989,13987,-13951, + 14011,14019,13989,-13954,13968,13991,13993,-13970,14015,14020,13991,-13969,13991,13953,13950,-13994,13976,14008,13995,-13970,13965,13997,13995,-13963,14014,14021,13997,-13966,13980,13999,14001,-13982, + 14017,14022,13999,-13981,13986,13946,13964,-14007,13972,14010,14003,-13982,13977,14005,14003,-13975,14016,14023,14005,-13978,13999,13965,13962,-14002,13959,14009,14001,-13963,13994,13958,13959,-14009, + 13984,13955,13960,-13972,13992,13967,13976,-14008,14002,13970,13975,-14011,14000,13979,13972,-14010,13947,13984,13971,-13964,13955,13986,14006,-13961,13967,13994,14008,-13977,13979,14002,14010,-13973, + 13958,14000,14009,-13960,13982,13948,14012,-14019,13988,13954,14013,-14020,13996,13966,14015,-14022,13998,13961,14014,-14023,13990,13949,14011,-14021,14004,13978,14017,-14024,13954,13982,14018,-14014, + 13949,13988,14019,-14012,13966,13990,14020,-14016,13961,13996,14021,-14015,13978,13998,14022,-14018,13973,14004,14023,-14017,14028,14029,14025,-14025,14024,14025,14026,-14028,14031,14028,14024,-14028, + 14030,14031,14027,-14027,14028,14031,14030,-14030,14036,14037,14033,-14033,14032,14033,14034,-14036,14039,14036,14032,-14036,14038,14039,14035,-14035,14036,14039,14038,-14038,14044,14045,14041,-14041, + 14040,14041,14042,-14044,14047,14044,14040,-14044,14046,14047,14043,-14043,14044,14047,14046,-14046,13759,14049,14051,-13763,13765,14050,14051,-13762,13763,14048,14049,-13760,13763,13766,14050,-14049, + 14056,14057,14053,-14053,14052,14053,14054,-14056,14059,14056,14052,-14056,14058,14059,14055,-14055,14056,14059,14058,-14058,14067,14064,14060,-14064,14066,14067,14063,-14063,14065,14066,14062,-14062, + 14064,14065,14061,-14061,14075,14072,14068,-14072,14074,14075,14071,-14071,14073,14074,14070,-14070,14072,14073,14069,-14069,14083,14080,14076,-14080,14082,14083,14079,-14079,14081,14082,14078,-14078, + 14080,14081,14077,-14077,14091,14088,14084,-14088,14090,14091,14087,-14087,14089,14090,14086,-14086,14088,14089,14085,-14085,14099,14096,14092,-14096,14098,14099,14095,-14095,14097,14098,14094,-14094, + 14096,14097,14093,-14093,14107,14104,14100,-14104,14106,14107,14103,-14103,14105,14106,14102,-14102,14104,14105,14101,-14101,14127,14125,14108,-14112,14126,14127,14111,-14111,14124,14126,14110,-14110, + 14125,14124,14109,-14109,14123,14120,14116,-14120,14122,14123,14119,-14119,14121,14122,14118,-14118,14120,14121,14117,-14117,14115,14112,14125,-14128,14114,14115,14127,-14127,14113,14114,14126,-14125, + 14112,14113,14124,-14126,14148,14131,14135,-14151,14151,14130,14131,-14149,14150,14135,14134,-14150,14128,14132,14129,-14134,14131,14130,14134,-14136,14144,14141,14137,-14146,14147,14145,14166,-14168, + 14143,14140,14136,-14140,14169,14143,14139,-14172,14144,14146,14142,-14142,14170,14144,14145,-14169,14168,14145,14147,-14172,14142,14146,14147,-14139,14170,14169,14146,-14145,14132,14148,14150,-14130, + 14128,14151,14148,-14133,14129,14150,14149,-14134,14149,14151,14128,-14134,14134,14130,14151,-14150,14159,14158,14161,-14163,14154,14153,14156,-14158,14153,14152,14155,-14157,14152,14154,14157,-14156, + 14160,14159,14162,-14164,14158,14160,14163,-14162,14140,14170,14168,-14137,14146,14169,14171,-14148,14138,14147,14167,-14166,14145,14137,14164,-14167,14136,14168,14171,-14140,14140,14143,14169,-14171, + 14173,14178,14179,-14173,14172,14179,14176,-14176,14175,14176,14177,-14175,14181,14186,14187,-14181,14180,14187,14184,-14184,14183,14184,14185,-14183,14192,14193,14189,-14189,14194,14195,14191,-14191, + 14195,14192,14188,-14192,14200,14201,14197,-14197,14202,14203,14199,-14199,14203,14200,14196,-14200,14194,14201,14200,-14196,14195,14200,14203,-14193,14192,14203,14202,-14194,14189,14198,14199,-14189, + 14188,14199,14196,-14192,14191,14196,14197,-14191,14205,14210,14211,-14205,14204,14211,14208,-14208,14207,14208,14209,-14207,14213,14218,14219,-14213,14212,14219,14216,-14216,14215,14216,14217,-14215, + 14220,14223,14222,-14222,14225,14230,14231,-14225,14224,14231,14228,-14228,14227,14228,14229,-14227,14233,14238,14239,-14233,14232,14239,14236,-14236,14235,14236,14237,-14235,14241,14246,14247,-14241, + 14240,14247,14244,-14244,14243,14244,14245,-14243,14297,14292,14251,-14257,14301,14295,14248,-14265,14278,14275,14287,-14291,14303,14293,14250,-14267,14299,14294,14249,-14254,14295,14296,14257,-14249, + 14276,14271,14284,-14289,14293,14298,14254,-14251,14294,14300,14265,-14250,14269,14268,14282,-14284,14292,14302,14267,-14252,14279,14269,14283,-14292,14277,14273,14285,-14290,14268,14269,14250,-14255, + 14270,14271,14249,-14266,14272,14273,14251,-14268,14274,14275,14248,-14258,14271,14276,14253,-14250,14273,14277,14256,-14252,14275,14278,14264,-14249,14269,14279,14266,-14251,14275,14274,14286,-14288, + 14261,14260,14303,-14303,14290,14301,14264,-14279,14253,14276,14288,-14300,14299,14288,14282,-14299,14298,14282,14268,-14255,14266,14279,14291,-14304,14256,14277,14289,-14298,14297,14289,14286,-14297, + 14296,14286,14274,-14258,14316,14314,14308,-14314,14315,14314,14309,-14311,14312,14309,14314,-14317,14311,14308,14314,-14316,14310,14312,14316,-14316,14315,14316,14313,-14312,14325,14323,14317,-14323, + 14324,14323,14318,-14320,14321,14318,14323,-14326,14320,14317,14323,-14325,14319,14321,14325,-14325,14324,14325,14322,-14321,14334,14332,14326,-14332,14333,14332,14327,-14329,14330,14327,14332,-14335, + 14329,14326,14332,-14334,14328,14330,14334,-14334,14333,14334,14331,-14330,14343,14341,14335,-14341,14342,14341,14336,-14338,14339,14336,14341,-14344,14338,14335,14341,-14343,14337,14339,14343,-14343, + 14342,14343,14340,-14339,14350,14351,14344,-14346,14352,14351,14347,-14350,14350,14352,14349,-14349,14348,14347,14351,-14351,14346,14344,14351,-14353,14345,14346,14352,-14351,14359,14360,14353,-14355, + 14361,14360,14356,-14359,14359,14361,14358,-14358,14357,14356,14360,-14360,14355,14353,14360,-14362,14354,14355,14361,-14360,14365,14355,14354,-14367,14366,14354,14353,-14368,14367,14353,14355,-14366, + 14362,14356,14357,-14364,14363,14357,14358,-14365,14364,14358,14356,-14363,14344,14362,14363,-14346,14345,14363,14364,-14347,14346,14364,14362,-14345,14349,14365,14366,-14349,14348,14366,14367,-14348, + 14347,14367,14365,-14350,14372,14373,14368,-14370,14380,14376,14375,-14382,14381,14375,14374,-14383,14382,14374,14376,-14381,14368,14377,14378,-14370,14369,14378,14379,-14371,14370,14379,14377,-14369, + 14370,14368,14373,-14372,14369,14370,14371,-14373,14378,14377,14374,-14376,14376,14374,14377,-14380,14375,14376,14379,-14379,14371,14380,14381,-14373,14372,14381,14382,-14374,14373,14382,14380,-14372, + 14384,14383,14386,-14386,14388,14387,14390,-14390,14385,14393,14392,-14385,14389,14397,14396,-14389,14383,14391,14394,-14387,14387,14395,14398,-14391,14400,14399,14402,-14402,14401,14405,14404,-14401, + 14399,14403,14406,-14403,14408,14407,14410,-14410,14409,14413,14412,-14409,14407,14411,14414,-14411,14416,14415,14418,-14418,14417,14421,14420,-14417,14415,14419,14422,-14419,14424,14423,14426,-14426, + 14425,14429,14428,-14425,14423,14427,14430,-14427,14432,14431,14434,-14434,14433,14437,14436,-14433,14431,14435,14438,-14435,14441,14439,14440,-14443,14445,14446,14444,-14444,14440,14439,14443,-14445, + 14441,14442,14446,-14446,14439,14441,14445,-14444,14442,14440,14444,-14447,14449,14447,14448,-14451,14453,14454,14452,-14452,14448,14447,14451,-14453,14449,14450,14454,-14454,14447,14449,14453,-14452, + 14450,14448,14452,-14455,14457,14455,14456,-14459,14461,14462,14460,-14460,14456,14455,14459,-14461,14457,14458,14462,-14462,14455,14457,14461,-14460,14458,14456,14460,-14463,14465,14463,14464,-14467, + 14469,14470,14468,-14468,14464,14463,14467,-14469,14465,14466,14470,-14470,14463,14465,14469,-14468,14466,14464,14468,-14471,14473,14471,14472,-14475,14477,14478,14476,-14476,14472,14471,14475,-14477, + 14473,14474,14478,-14478,14471,14473,14477,-14476,14474,14472,14476,-14479,14481,14479,14480,-14483,14485,14486,14484,-14484,14480,14479,14483,-14485,14481,14482,14486,-14486,14479,14481,14485,-14484, + 14482,14480,14484,-14487,14491,14490,14487,-14489,14489,14487,14490,-14493,14488,14489,14492,-14492,14497,14496,14493,-14495,14495,14493,14496,-14499,14494,14495,14498,-14498,14503,14502,14499,-14501, + 14501,14499,14502,-14505,14500,14501,14504,-14504,14509,14508,14505,-14507,14507,14505,14508,-14511,14506,14507,14510,-14510,14516,14515,14513,-14515,14533,14520,14524,-14529,14512,14511,14515,-14517, + 14532,14529,-14527,14522,14521,14519,-14521,14534,14518,14522,-14531,14529,14534,-14527,14518,14517,14521,-14523,14533,14526,-14531,14531,14532,-14527,14535,14531,-14527,14527,14517,14518,-14526,14528, + 14524,14512,-14536,14536,14523,-14520,14524,14520,14519,-14524,14512,14524,14523,-14512,14513,14527,14525,-14515,14516,14514,14532,-14532,14512,14516,14531,-14536,14526,14534,-14531,14520,14533,14530, + -14523,14514,14525,14529,-14533,14525,14518,14534,-14530,14526,14533,-14529,14526,14528,-14536,14511,14523,-14537,14536,14521,-14518,14513,14515,-14537,14527,14513,-14537,14521,14536,-14520,14527,14536, + -14518,14515,14511,-14537,14555,14545,14556,-14559,14557,14556,14545,-14555,14545,14555,14553,-14540,14555,14559,14537,-14554,14540,14541,14544,-14543,14559,14554,14543,-14538,14539,14543,14554,-14546, + 14551,14547,14550,-14553,14546,14551,14552,-14550,14548,14549,14552,-14551,14556,14557,14560,-14559,14554,14559,14560,-14558,14559,14555,14558,-14561,14543,14539,14553,-14538,14541,14540,14546,-14539, + 14551,14546,14540,-14543,14547,14551,14542,-14545,14538,14547,14544,-14542,14549,14548,14538,-14547,14547,14538,14548,-14551,14579,14569,14580,-14583,14581,14580,14569,-14579,14569,14579,14577,-14564, + 14579,14583,14561,-14578,14564,14565,14568,-14567,14583,14578,14567,-14562,14563,14567,14578,-14570,14575,14571,14574,-14577,14570,14575,14576,-14574,14572,14573,14576,-14575,14580,14581,14584,-14583, + 14578,14583,14584,-14582,14583,14579,14582,-14585,14567,14563,14577,-14562,14565,14564,14570,-14563,14575,14570,14564,-14567,14571,14575,14566,-14569,14562,14571,14568,-14566,14573,14572,14562,-14571, + 14571,14562,14572,-14575,14586,14585,14588,-14588,14590,14589,14592,-14592,14587,14595,14594,-14587,14591,14599,14598,-14591,14585,14593,14596,-14589,14589,14597,14600,-14593,14602,14601,14604,-14604, + 14603,14607,14606,-14603,14601,14605,14608,-14605,14610,14609,14612,-14612,14611,14615,14614,-14611,14609,14613,14616,-14613,14618,14617,14620,-14620,14619,14623,14622,-14619,14617,14621,14624,-14621, + 14627,14625,14626,-14629,14631,14632,14630,-14630,14626,14625,14629,-14631,14627,14628,14632,-14632,14625,14627,14631,-14630,14628,14626,14630,-14633,14635,14633,14634,-14637,14639,14640,14638,-14638, + 14634,14633,14637,-14639,14635,14636,14640,-14640,14633,14635,14639,-14638,14636,14634,14638,-14641,14304,14305,14261,-14256,14307,14252,14260,-14307,14304,14307,14259,-14259,14306,14305,14262,-14264, + 14271,14270,14281,-14285,14281,14288,-14285,14291,14283,-14283,14291,14282,14288,-14282,14286,14290,-14288,14285,14280,-14290,14289,14280,14290,-14287,14280,14291,14281,-14291,14273,14272,14280,-14286, + 14261,14292,-14298,14255,14295,-14302,14260,14293,-14304,14252,14294,-14300,14255,14296,-14296,14255,14261,14297,-14297,14260,14298,-14294,14260,14252,14299,-14299,14252,14300,-14295,14252,14255,14301, + -14301,14261,14302,-14293,14270,14265,14300,-14282,14281,14300,14301,-14291,14303,14291,14280,-14303,14302,14280,14272,-14268,14258,14262,14305,-14305,14259,14307,14306,-14264,14255,14252,14307,-14305, + 14260,14261,14305,-14307,14641,14642,14643,-14645,14648,14645,14641,-14645,14647,14648,14644,-14644,14646,14647,14643,-14643,14645,14646,14642,-14642,14653,14654,14650,-14650,14654,14655,14651,-14651, + 14655,14656,14652,-14652,14656,14653,14649,-14653,14645,14648,14647,-14647,14728,14727,14731,-14733,14667,14668,14664,-14664,14668,14669,14665,-14665,14669,14670,14666,-14666,14670,14667,14663,-14667, + 14663,14664,14665,-14667,14703,14704,14705,-14707,14675,14676,14672,-14672,14676,14677,14673,-14673,14677,14678,14674,-14674,14678,14675,14671,-14675,14671,14672,14673,-14675,15696,15698,14915,-14919, + 15703,14684,14680,-15705,14684,14685,14681,-14681,15705,14686,14682,-15707,14686,14683,14679,-14683,15704,14680,14681,-15707,14729,14728,14732,-14734,14691,14692,14688,-14688,14692,14693,14689,-14689, + 14693,14694,14690,-14690,14694,14691,14687,-14691,14687,14688,14689,-14691,15697,15696,14918,-14918,15707,14700,14696,-15709,14700,14701,14697,-14697,15709,14702,14698,-15711,14702,14699,14695,-14699, + 15708,14696,14697,-15711,14707,14708,14704,-14704,14711,14712,14713,-14715,15699,15697,14917,-14917,14717,14718,14714,-14714,15698,15699,14916,-14916,14730,14729,14733,-14735,14740,14741,14737,-14737, + 14739,14740,14736,-14736,14766,14763,14759,-14763,14734,14733,14732,-14732,14727,14730,14734,-14732,14748,14749,14745,-14745,14747,14748,14744,-14744,14735,14736,14737,-14739,14742,14739,14735,-14739, + 14741,14742,14738,-14738,15703,15705,14685,-14685,15716,14760,14761,-15718,14726,14725,14724,-14724,14719,14722,14726,-14724,14720,14719,14723,-14725,14721,14720,14724,-14726,14722,14721,14725,-14727, + 14749,14750,14746,-14746,14750,14747,14743,-14747,14743,14744,14745,-14747,14764,14765,14761,-14761,15711,14756,14752,-15713,14756,14757,14753,-14753,15713,14758,14754,-15715,14758,14755,14751,-14755, + 15712,14752,14753,-15715,15715,14764,14760,-15717,15718,14768,14769,-15721,14774,14771,14767,-14771,15719,14774,14770,-15721,14772,14773,14769,-14769,14739,14742,14741,-14741,14657,14776,14778,-14659, + 14795,14799,14800,-14792,14787,14784,14780,-14789,14788,14780,14781,-14791,14801,14798,14794,-14803,14789,14786,14782,-14791,14800,14792,14793,-14803,14783,14787,14788,-14780,14779,14788,14790,-14783, + 14785,14789,14790,-14782,14799,14796,14792,-14801,14791,14800,14802,-14795,14797,14801,14802,-14794,15692,14808,14806,-15692,15690,14804,14808,-15693,15690,14805,14811,-15694,15693,14811,14813,-15695, + 14804,14803,14806,-14809,14662,14659,14815,-14818,15691,14806,14803,-15696,15694,14813,14814,-15696,14814,14805,14809,-14808,14805,14814,14813,-14812,14810,14812,14803,-14805,14660,14661,14816,-14819, + 14815,14660,-14819,14661,14817,-14817,14777,14662,14817,-14662,14659,14775,14660,-14816,14823,14824,14820,-14820,14824,14825,14821,-14821,14825,14826,14822,-14822,14826,14823,14819,-14823,14831,14832, + 14828,-14828,14707,14710,14709,-14709,14833,14834,14830,-14830,14834,14831,14827,-14831,14839,14840,14836,-14836,14841,14842,14838,-14838,14842,14839,14835,-14839,14848,14849,14845,-14845,14847,14848, + 14844,-14844,14849,14850,14846,-14846,14850,14847,14843,-14847,15707,15709,14701,-14701,14855,14856,14852,-14852,14857,14858,14854,-14854,14858,14855,14851,-14855,14863,14864,14860,-14860,14865,14866, + 14862,-14862,14866,14863,14859,-14863,14871,14872,14868,-14868,14873,14874,14870,-14870,14874,14871,14867,-14871,14879,14880,14876,-14876,14881,14882,14878,-14878,14882,14879,14875,-14879,14887,14888, + 14884,-14884,14888,14889,14885,-14885,14889,14890,14886,-14886,14890,14887,14883,-14887,14895,14896,14892,-14892,14897,14898,14894,-14894,14898,14895,14891,-14895,14903,14904,14900,-14900,14905,14906, + 14902,-14902,14906,14903,14899,-14903,14912,14913,14909,-14909,14911,14912,14908,-14908,14913,14914,14910,-14910,14914,14911,14907,-14911,14716,14715,14718,-14718,14930,14927,14923,-14927,14929,14930, + 14926,-14926,14928,14929,14925,-14925,14927,14928,14924,-14924,14938,14935,14931,-14935,14937,14938,14934,-14934,14936,14937,14933,-14933,14935,14936,14932,-14932,14946,14943,14939,-14943,14945,14946, + 14942,-14942,14944,14945,14941,-14941,14943,14944,14940,-14940,14947,14948,14949,-14951,14954,14951,14947,-14951,14953,14954,14950,-14950,14952,14953,14949,-14949,14951,14952,14948,-14948,14955,14956, + 14957,-14959,14962,14959,14955,-14959,14961,14962,14958,-14958,14960,14961,14957,-14957,14959,14960,14956,-14956,14970,14967,14963,-14967,14969,14970,14966,-14966,14968,14969,14965,-14965,14967,14968, + 14964,-14964,14978,14975,14971,-14975,14977,14978,14974,-14974,14976,14977,14973,-14973,14975,14976,14972,-14972,14986,14983,14979,-14983,14985,14986,14982,-14982,14984,14985,14981,-14981,14983,14984, + 14980,-14980,14994,14991,14987,-14991,14993,14994,14990,-14990,14992,14993,14989,-14989,14991,14992,14988,-14988,15002,14999,14995,-14999,15001,15002,14998,-14998,15000,15001,14997,-14997,14999,15000, + 14996,-14996,15010,15007,15003,-15007,15009,15010,15006,-15006,15008,15009,15005,-15005,15007,15008,15004,-15004,15018,15015,15011,-15015,15017,15018,15014,-15014,15016,15017,15013,-15013,15015,15016, + 15012,-15012,15026,15023,15019,-15023,15025,15026,15022,-15022,15024,15025,15021,-15021,15023,15024,15020,-15020,15031,15032,15028,-15028,15033,15034,15030,-15030,15034,15031,15027,-15031,15039,15040, + 15036,-15036,15041,15042,15038,-15038,15042,15039,15035,-15039,15047,15048,15044,-15044,15049,15050,15046,-15046,15050,15047,15043,-15047,15055,15056,15052,-15052,15057,15058,15054,-15054,15058,15055, + 15051,-15055,15063,15064,15060,-15060,15065,15066,15062,-15062,15066,15063,15059,-15063,15071,15072,15068,-15068,15073,15074,15070,-15070,15074,15071,15067,-15071,15065,15072,15071,-15067,15066,15071, + 15074,-15064,15063,15074,15073,-15065,15060,15069,15070,-15060,15059,15070,15067,-15063,15062,15067,15068,-15062,15076,15081,15082,-15076,15075,15082,15079,-15079,15078,15079,15080,-15078,15084,15089, + 15090,-15084,15083,15090,15087,-15087,15086,15087,15088,-15086,15091,15094,15093,-15093,15106,15103,15102,-15108,15102,15099,15100,-15102,15107,15102,15101,-15109,15105,15104,15103,-15107,15104,15097, + 15098,-15104,15103,15098,15099,-15103,15101,15100,15097,-15105,15108,15101,15104,-15106,15108,15105,15106,-15108,15113,15112,15111,-15115,15116,15109,15112,-15114,15115,15110,15109,-15117,15121,15120, + 15119,-15123,15124,15117,15120,-15122,15123,15118,15117,-15125,15129,15130,15126,-15126,15131,15132,15128,-15128,15132,15129,15125,-15129,15137,15138,15134,-15134,15139,15140,15136,-15136,15140,15137, + 15133,-15137,15131,15138,15137,-15133,15132,15137,15140,-15130,15129,15140,15139,-15131,15126,15135,15136,-15126,15125,15136,15133,-15129,15128,15133,15134,-15128,15142,15147,15148,-15142,15141,15148, + 15145,-15145,15144,15145,15146,-15144,15150,15155,15156,-15150,15149,15156,15153,-15153,15152,15153,15154,-15152,15157,15160,15159,-15159,15165,15166,15162,-15162,15167,15168,15164,-15164,15168,15165, + 15161,-15165,15173,15174,15170,-15170,15175,15176,15172,-15172,15176,15173,15169,-15173,15167,15174,15173,-15169,15168,15173,15176,-15166,15165,15176,15175,-15167,15162,15171,15172,-15162,15161,15172, + 15169,-15165,15164,15169,15170,-15164,15178,15183,15184,-15178,15177,15184,15181,-15181,15180,15181,15182,-15180,15186,15191,15192,-15186,15185,15192,15189,-15189,15188,15189,15190,-15188,15193,15196, + 15195,-15195,15201,15202,15198,-15198,15203,15204,15200,-15200,15204,15201,15197,-15201,15209,15210,15206,-15206,15211,15212,15208,-15208,15212,15209,15205,-15209,15203,15210,15209,-15205,15204,15209, + 15212,-15202,15201,15212,15211,-15203,15198,15207,15208,-15198,15197,15208,15205,-15201,15200,15205,15206,-15200,15214,15219,15220,-15214,15213,15220,15217,-15217,15216,15217,15218,-15216,15222,15227, + 15228,-15222,15221,15228,15225,-15225,15224,15225,15226,-15224,15229,15232,15231,-15231,15244,15243,15242,-15246,15247,15239,15243,-15245,15809,15808,15814,-15806,15248,15251,15255,-15253,15257,15250, + 15251,-15257,15246,15241,15239,-15248,15237,15795,15796,-15239,15236,15240,15261,-15263,15267,15253,15252,-15272,15259,15248,15249,-15259,15251,15250,15254,-15256,15256,15259,15271,-15261,15257,15256, + 15260,-15264,15259,15258,15267,-15272,15268,15266,15265,-15265,15236,15262,15268,-15265,15271,15252,15255,-15261,15261,15240,15265,-15267,15262,15261,15266,-15269,15277,15272,-15276,15275,15274,15276, + -15278,15256,15251,15248,-15260,15275,15269,15270,-15275,15276,15273,15272,-15278,15816,15803,-15813,15804,15807,15808,-15810,15260,15255,15254,-15264,15270,15269,15272,-15274,15269,15275,-15273,15249, + 15248,15252,-15254,15282,15283,15279,-15279,15284,15285,15281,-15281,15285,15282,15278,-15282,15290,15291,15287,-15287,15292,15293,15289,-15289,15293,15290,15286,-15290,15284,15291,15290,-15286,15285, + 15290,15293,-15283,15282,15293,15292,-15284,15303,15300,15299,-15305,15299,15296,15297,-15299,15304,15299,15298,-15306,15302,15301,15300,-15304,15301,15294,15295,-15301,15300,15295,15296,-15300,15298, + 15297,15294,-15302,15305,15298,15301,-15303,15305,15302,15303,-15305,15310,15309,15308,-15312,15313,15306,15309,-15311,15312,15307,15306,-15314,15318,15317,15316,-15320,15321,15314,15317,-15319,15320, + 15315,15314,-15322,15326,15327,15323,-15323,15328,15329,15325,-15325,15329,15326,15322,-15326,15334,15335,15331,-15331,15336,15337,15333,-15333,15337,15334,15330,-15334,15328,15335,15334,-15330,15329, + 15334,15337,-15327,15326,15337,15336,-15328,15323,15332,15333,-15323,15322,15333,15330,-15326,15325,15330,15331,-15325,15339,15344,15345,-15339,15338,15345,15342,-15342,15341,15342,15343,-15341,15347, + 15352,15353,-15347,15346,15353,15350,-15350,15349,15350,15351,-15349,15354,15357,15356,-15356,15362,15363,15359,-15359,15364,15365,15361,-15361,15365,15362,15358,-15362,15370,15371,15367,-15367,15372, + 15373,15369,-15369,15373,15370,15366,-15370,15364,15371,15370,-15366,15365,15370,15373,-15363,15378,15379,15375,-15375,15379,15380,15376,-15376,15380,15381,15377,-15377,15381,15378,15374,-15378,15374, + 15375,15376,-15378,15381,15380,15379,-15379,15386,15387,15383,-15383,15387,15388,15384,-15384,15388,15389,15385,-15385,15389,15386,15382,-15386,15382,15383,15384,-15386,15389,15388,15387,-15387,15394, + 15395,15391,-15391,15395,15396,15392,-15392,15396,15397,15393,-15393,15397,15394,15390,-15394,15390,15391,15392,-15394,15397,15396,15395,-15395,15402,15403,15399,-15399,15403,15404,15400,-15400,15404, + 15405,15401,-15401,15405,15402,15398,-15402,15398,15399,15400,-15402,15405,15404,15403,-15403,15410,15411,15407,-15407,15411,15412,15408,-15408,15418,15419,15415,-15415,15413,15410,15406,-15410,15406, + 15407,15408,-15410,15413,15412,15411,-15411,15419,15420,15416,-15416,15421,15418,15414,-15418,15414,15415,15416,-15418,15421,15420,15419,-15419,15426,15427,15423,-15423,15427,15428,15424,-15424,15429, + 15426,15422,-15426,15422,15423,15424,-15426,15429,15428,15427,-15427,15434,15435,15431,-15431,15435,15436,15432,-15432,15437,15434,15430,-15434,15430,15431,15432,-15434,15437,15436,15435,-15435,15442, + 15443,15439,-15439,15443,15444,15440,-15440,15445,15442,15438,-15442,15438,15439,15440,-15442,15445,15444,15443,-15443,15450,15451,15447,-15447,15451,15452,15448,-15448,15453,15450,15446,-15450,15446, + 15447,15448,-15450,15453,15452,15451,-15451,15458,15459,15455,-15455,15459,15460,15456,-15456,15461,15458,15454,-15458,15454,15455,15456,-15458,15461,15460,15459,-15459,15466,15467,15463,-15463,15467, + 15468,15464,-15464,15469,15466,15462,-15466,15462,15463,15464,-15466,15469,15468,15467,-15467,15474,15475,15471,-15471,15475,15476,15472,-15472,15477,15474,15470,-15474,15470,15471,15472,-15474,15477, + 15476,15475,-15475,15482,15483,15479,-15479,15483,15484,15480,-15480,15485,15482,15478,-15482,15478,15479,15480,-15482,15485,15484,15483,-15483,15490,15491,15487,-15487,15491,15492,15488,-15488,15493, + 15490,15486,-15490,15486,15487,15488,-15490,15493,15492,15491,-15491,15498,15499,15495,-15495,15499,15500,15496,-15496,15501,15498,15494,-15498,15494,15495,15496,-15498,15501,15500,15499,-15499,15700, + 15503,15507,-15702,15700,15504,15510,-15703,15503,15502,15505,-15508,15506,15505,15502,-15514,15511,15512,15513,-15503,15509,15511,15502,-15504,15514,15515,-15517,15521,15528,15525,-15525,15549,15519, + 15531,-15521,15524,15525,15526,-15524,15529,15530,15526,-15526,15519,15518,15527,-15532,15532,15529,15525,-15529,15523,15530,15529,-15525,15524,15529,15532,-15522,15518,15517,15522,-15528,15557,15552, + 15556,-15554,15549,15517,15518,-15520,15531,15527,15522,-15521,15534,15539,15540,-15534,15533,15540,15537,-15537,15536,15537,15538,-15536,15542,15547,15548,-15542,15541,15548,15545,-15545,15544,15545, + 15546,-15544,15552,15551,15555,-15557,15551,15550,15554,-15556,15557,15550,15551,-15553,15556,15555,15554,-15554,15565,15560,15564,-15562,15560,15559,15563,-15565,15559,15558,15562,-15564,15565,15558, + 15559,-15561,15564,15563,15562,-15562,15573,15568,15572,-15570,15568,15567,15571,-15573,15567,15566,15570,-15572,15573,15566,15567,-15569,15572,15571,15570,-15570,15581,15576,15580,-15578,15576,15575, + 15579,-15581,15575,15574,15578,-15580,15581,15574,15575,-15577,15580,15579,15578,-15578,15589,15584,15588,-15586,15584,15583,15587,-15589,15583,15582,15586,-15588,15589,15582,15583,-15585,15588,15587, + 15586,-15586,15597,15592,15596,-15594,15592,15591,15595,-15597,15591,15590,15594,-15596,15597,15590,15591,-15593,15596,15595,15594,-15594,15605,15600,15604,-15602,15600,15599,15603,-15605,15599,15598, + 15602,-15604,15605,15598,15599,-15601,15604,15603,15602,-15602,15613,15608,15612,-15610,15608,15607,15611,-15613,15607,15606,15610,-15612,15613,15606,15607,-15609,15612,15611,15610,-15610,15614,15615, + 15616,-15618,15620,15621,15617,-15617,15957,15958,15954,-15954,15618,15619,15615,-15615,15618,15621,15620,-15620,15629,15626,15622,-15626,15628,15629,15625,-15625,15627,15628,15624,-15624,15626,15627, + 15623,-15623,15637,15634,15630,-15634,15636,15637,15633,-15633,15635,15636,15632,-15632,15634,15635,15631,-15631,15645,15642,15638,-15642,15644,15645,15641,-15641,15643,15644,15640,-15640,15642,15643, + 15639,-15639,15653,15650,15646,-15650,15652,15653,15649,-15649,15651,15652,15648,-15648,15650,15651,15647,-15647,15654,15655,15656,-15658,15661,15658,15654,-15658,15660,15661,15657,-15657,15659,15660, + 15656,-15656,15658,15659,15655,-15655,15658,15661,15660,-15660,15662,15663,15664,-15666,15669,15666,15662,-15666,15668,15669,15665,-15665,15670,15671,15672,-15674,15666,15667,15663,-15663,15666,15669, + 15668,-15668,15677,15674,15670,-15674,15676,15677,15673,-15673,15674,15675,15671,-15671,15674,15677,15676,-15676,15681,15680,15679,-15679,15681,15678,15686,-15688,15682,15685,15684,-15684,15689,15688, + 15687,-15687,15685,15682,15688,-15690,15678,15685,15689,-15687,15682,15681,15687,-15689,14809,15692,15691,-14808,14805,15690,15692,-14810,14804,15690,15693,-14811,14810,15693,15694,-14813,14807,15691, + 15695,-14815,14812,15694,15695,-14804,14919,14920,15699,-15699,14920,14921,15697,-15700,14921,14922,15696,-15698,14922,14919,15698,-15697,15504,15700,15701,-15509,15503,15700,15702,-15510,14683,15703, + 15704,-14680,14685,15705,15706,-14682,14679,15704,15706,-14683,14683,14686,15705,-15704,14699,15707,15708,-14696,14701,15709,15710,-14698,14695,15708,15710,-14699,14699,14702,15709,-15708,14755,15711, + 15712,-14752,14757,15713,15714,-14754,14751,15712,15714,-14755,14759,15716,15717,-14763,14763,15715,15716,-14760,14767,15718,15720,-14771,14773,15719,15720,-14770,15758,15722,15725,-15760,15722,15721, + 15723,-15726,15724,15723,15721,-15730,15727,15728,15729,-15722,15726,15727,15721,-15723,15730,15731,-15733,15733,15738,15736,-15736,15735,15736,15737,-15735,15739,15740,15737,-15737,15741,15739,15736, + -15739,15734,15740,15739,-15736,15735,15739,15741,-15734,15743,15748,15749,-15743,15742,15749,15746,-15746,15745,15746,15747,-15745,15751,15756,15757,-15751,15750,15757,15754,-15754,15753,15754,15755, + -15753,15722,15758,15760,-15727,15765,15766,15762,-15762,15766,15767,15763,-15763,15768,15765,15761,-15765,15761,15762,15763,-15765,15768,15767,15766,-15766,15773,15774,15770,-15770,15774,15775,15771, + -15771,15776,15773,15769,-15773,15769,15770,15771,-15773,15776,15775,15774,-15774,15781,15782,15778,-15778,15782,15783,15779,-15779,15784,15781,15777,-15781,15777,15778,15779,-15781,15784,15783,15782, + -15782,15789,15790,15786,-15786,15790,15791,15787,-15787,15792,15789,15785,-15789,15785,15786,15787,-15789,15792,15791,15790,-15790,15238,15796,15793,-15235,15234,15793,15794,-15236,15797,15800,15799, + -15799,15805,15814,15813,-15811,15815,15816,15812,-15812,15804,15809,15805,-15811,15802,15811,15812,-15802,15803,15816,15815,-15807,15803,15806,15802,-15802,15801,15812,-15804,15808,15807,15813,-15815, + 15821,15822,15818,-15818,15822,15823,15819,-15819,15824,15821,15817,-15821,15817,15818,15819,-15821,15824,15823,15822,-15822,15829,15830,15826,-15826,15830,15831,15827,-15827,15832,15829,15825,-15829, + 15825,15826,15827,-15829,15832,15831,15830,-15830,15837,15838,15834,-15834,15838,15839,15835,-15835,15840,15837,15833,-15837,15833,15834,15835,-15837,15840,15839,15838,-15838,15845,15846,15842,-15842, + 15846,15847,15843,-15843,15848,15845,15841,-15845,15841,15842,15843,-15845,15848,15847,15846,-15846,15869,15868,15872,-15867,15849,15850,15851,-15853,15856,15855,15854,-15854,15849,15852,15856,-15854, + 15851,15850,15854,-15856,15852,15851,15855,-15857,15864,15859,-15863,15862,15861,15863,-15865,15862,15857,15858,-15862,15863,15860,15859,-15865,15865,15867,15868,-15870,15858,15857,15859,-15861,15857, + 15862,-15860,15866,15872,15871,-15871,15865,15869,15866,-15871,15868,15867,15871,-15873,15893,15892,15896,-15891,15873,15874,15875,-15877,15880,15879,15878,-15878,15873,15876,15880,-15878,15875,15874, + 15878,-15880,15876,15875,15879,-15881,15888,15883,-15887,15886,15885,15887,-15889,15886,15881,15882,-15886,15887,15884,15883,-15889,15889,15891,15892,-15894,15882,15881,15883,-15885,15881,15886,-15884, + 15890,15896,15895,-15895,15889,15893,15890,-15895,15892,15891,15895,-15897,15917,15916,15920,-15915,15897,15898,15899,-15901,15904,15903,15902,-15902,15897,15900,15904,-15902,15899,15898,15902,-15904, + 15900,15899,15903,-15905,15912,15907,-15911,15910,15909,15911,-15913,15910,15905,15906,-15910,15911,15908,15907,-15913,15913,15915,15916,-15918,15906,15905,15907,-15909,15905,15910,-15908,15914,15920, + 15919,-15919,15913,15917,15914,-15919,15916,15915,15919,-15921,15941,15940,15944,-15939,15921,15922,15923,-15925,15928,15927,15926,-15926,15921,15924,15928,-15926,15923,15922,15926,-15928,15924,15923, + 15927,-15929,15936,15931,-15935,15934,15933,15935,-15937,15934,15929,15930,-15934,15935,15932,15931,-15937,15937,15939,15940,-15942,15930,15929,15931,-15933,15929,15934,-15932,15938,15944,15943,-15943, + 15937,15941,15938,-15943,15940,15939,15943,-15945,14711,14715,14716,-14713,15949,15950,15946,-15946,15950,15951,15947,-15947,15951,15952,15948,-15948,15952,15949,15945,-15949,15958,15959,15955,-15955, + 15959,15960,15956,-15956,15960,15957,15953,-15957,15969,15968,-15971,16034,16031,16036,-16038,16037,16036,16032,-16034,16100,16087,16099,-15978,15990,15987,15979,-15984,16086,16091,15976,-16098,16087, + 16086,16097,-16100,15981,15989,15982,-15979,15989,15990,15983,-15983,15989,15981,15980,-15985,15979,15978,15982,-15984,15984,15985,15990,-15990,15999,15998,16001,-16001,16000,16004,16003,-16000,15998, + 16002,16005,-16002,16008,16006,16007,-16010,16012,16013,16011,-16011,16007,16006,16010,-16012,16008,16009,16013,-16013,16006,16008,16012,-16011,16009,16007,16011,-16014,16016,16014,16015,-16018,16020, + 16021,16019,-16019,16015,16014,16018,-16020,16016,16017,16021,-16021,16014,16016,16020,-16019,16017,16015,16019,-16022,16024,16022,16023,-16026,16028,16029,16027,-16027,16023,16022,16026,-16028,16024, + 16025,16029,-16029,16022,16024,16028,-16027,16025,16023,16027,-16030,16030,15965,15961,-15974,16042,16041,16044,-16044,16046,16045,16048,-16048,16043,16051,16050,-16043,16047,16055,16054,-16047,16041, + 16049,16052,-16045,16045,16053,16056,-16049,16068,16067,16070,-16070,16069,16073,16072,-16069,16067,16071,16074,-16071,16082,16078,16075,-16080,16080,16076,16077,-16082,16081,16082,16079,-16081,16090, + 16085,16093,-16095,16091,16086,16093,-16097,16096,16093,16085,-16093,16094,16093,16086,-16088,15996,15997,16040,-16039,15992,15993,16065,-16067,15993,15994,16064,-16066,15994,15992,16066,-16065,15972, + 15973,15974,-15970,16058,16030,15973,-15973,16057,15975,16030,-16059,15973,15961,15964,-15975,15967,15972,15969,-15971,15975,15962,15965,-16031,15964,15963,-15975,15971,16058,15972,-15968,15966,16057, + 16058,-15972,15974,15963,15968,-15970,16095,16098,16084,-16084,15976,15977,16099,-16098,16033,16032,16083,-16085,16088,16033,16084,-16099,15988,15991,15985,-15985,16032,16035,16095,-16084,16035,16088, + 16098,-16096,15979,15987,15981,-15979,16059,16101,-16103,16061,16062,16101,-16060,15977,15976,16091,-16101,16063,16104,-16104,15984,15980,15986,-15989,15980,15985,15991,-15987,15993,15992,16062,-16062, + 15987,15990,15985,-15981,16103,16104,15997,-15997,16102,16101,16062,-16061,15995,15996,16038,-16040,16039,16040,15997,-15996,16061,16060,15994,-15994,16060,16062,15992,-15995,16087,16100,16096,-16095, + 16094,16096,16092,-16091,16059,16102,16060,-16062,16063,16103,15996,-15996,15995,15997,16104,-16064,16033,16088,-16038,16037,16088,16089,-16035,16035,16032,16036,-16089,16088,16036,16031,-16090,16113, + 16112,-16115,16178,16175,16180,-16182,16181,16180,16176,-16178,16244,16231,16243,-16122,16134,16131,16123,-16128,16230,16235,16120,-16242,16231,16230,16241,-16244,16125,16133,16126,-16123,16133,16134, + 16127,-16127,16133,16125,16124,-16129,16123,16122,16126,-16128,16128,16129,16134,-16134,16143,16142,16145,-16145,16144,16148,16147,-16144,16142,16146,16149,-16146,16152,16150,16151,-16154,16156,16157, + 16155,-16155,16151,16150,16154,-16156,16152,16153,16157,-16157,16150,16152,16156,-16155,16153,16151,16155,-16158,16160,16158,16159,-16162,16164,16165,16163,-16163,16159,16158,16162,-16164,16160,16161, + 16165,-16165,16158,16160,16164,-16163,16161,16159,16163,-16166,16168,16166,16167,-16170,16172,16173,16171,-16171,16167,16166,16170,-16172,16168,16169,16173,-16173,16166,16168,16172,-16171,16169,16167, + 16171,-16174,16174,16109,16105,-16118,16186,16185,16188,-16188,16190,16189,16192,-16192,16187,16195,16194,-16187,16191,16199,16198,-16191,16185,16193,16196,-16189,16189,16197,16200,-16193,16212,16211, + 16214,-16214,16213,16217,16216,-16213,16211,16215,16218,-16215,16226,16222,16219,-16224,16224,16220,16221,-16226,16225,16226,16223,-16225,16234,16229,16237,-16239,16235,16230,16237,-16241,16240,16237, + 16229,-16237,16238,16237,16230,-16232,16140,16141,16184,-16183,16136,16137,16209,-16211,16137,16138,16208,-16210,16138,16136,16210,-16209,16116,16117,16118,-16114,16202,16174,16117,-16117,16201,16119, + 16174,-16203,16117,16105,16108,-16119,16111,16116,16113,-16115,16119,16106,16109,-16175,16108,16107,-16119,16115,16202,16116,-16112,16110,16201,16202,-16116,16118,16107,16112,-16114,16239,16242,16228, + -16228,16120,16121,16243,-16242,16177,16176,16227,-16229,16232,16177,16228,-16243,16132,16135,16129,-16129,16176,16179,16239,-16228,16179,16232,16242,-16240,16123,16131,16125,-16123,16203,16245,-16247, + 16205,16206,16245,-16204,16121,16120,16235,-16245,16207,16248,-16248,16128,16124,16130,-16133,16124,16129,16135,-16131,16137,16136,16206,-16206,16131,16134,16129,-16125,16247,16248,16141,-16141,16246, + 16245,16206,-16205,16139,16140,16182,-16184,16183,16184,16141,-16140,16205,16204,16138,-16138,16204,16206,16136,-16139,16231,16244,16240,-16239,16238,16240,16236,-16235,16203,16246,16204,-16206,16207, + 16247,16140,-16140,16139,16141,16248,-16208,16177,16232,-16182,16181,16232,16233,-16179,16179,16176,16180,-16233,16232,16180,16175,-16234,16331,16328,16332,-16334,16333,16332,16329,-16331,16383,16370, + 16382,-16254,16266,16263,16255,-16260,16369,16374,16252,-16381,16370,16369,16380,-16383,16257,16265,16258,-16255,16265,16266,16259,-16259,16265,16257,16256,-16261,16255,16254,16258,-16260,16260,16261, + 16266,-16266,16272,16273,16271,-16271,16278,16277,16280,-16280,16279,16283,16282,-16279,16277,16281,16284,-16281,16286,16285,16288,-16288,16287,16291,16290,-16287,16285,16289,16292,-16289,16294,16293, + 16296,-16296,16295,16299,16298,-16295,16293,16297,16300,-16297,16303,16301,16302,-16305,16307,16308,16306,-16306,16302,16301,16305,-16307,16303,16304,16308,-16308,16301,16303,16307,-16306,16304,16302, + 16306,-16309,16311,16309,16310,-16313,16315,16316,16314,-16314,16310,16309,16313,-16315,16311,16312,16316,-16316,16309,16311,16315,-16314,16312,16310,16314,-16317,16319,16317,16318,-16321,16323,16324, + 16322,-16322,16318,16317,16321,-16323,16319,16320,16324,-16324,16317,16319,16323,-16322,16320,16318,16322,-16325,16351,16350,16353,-16353,16352,16356,16355,-16352,16350,16354,16357,-16354,16359,16358, + 16361,-16361,16360,16364,16363,-16360,16358,16362,16365,-16362,16373,16368,16376,-16378,16374,16369,16376,-16380,16379,16376,16368,-16376,16377,16376,16369,-16371,16275,16274,16334,-16336,16274,16276, + 16336,-16335,16335,16336,16276,-16276,16269,16270,16348,-16350,16270,16271,16347,-16349,16271,16269,16349,-16348,16343,16344,16249,-16339,16337,16342,16344,-16344,16338,16249,16340,-16342,16378,16381, + 16367,-16367,16252,16253,16382,-16381,16330,16329,16366,-16368,16371,16330,16367,-16382,16264,16267,16261,-16261,16260,16256,16262,-16265,16256,16261,16267,-16263,16263,16266,16261,-16257,16340,16339, + -16342,16370,16383,16379,-16378,16377,16379,16375,-16374,16383,16253,16252,-16375,16273,16268,16269,-16272,16270,16269,16268,-16273,16386,16387,16276,-16275,16385,16384,16268,-16274,16344,16327,16250, + -16250,16342,16251,16327,-16345,16249,16250,16326,-16341,16326,16325,16339,-16341,16275,16276,16387,-16347,16346,16387,-16387,16346,16386,16274,-16276,16345,16385,16273,-16273,16272,16268,16384,-16346, + 16345,16384,-16386,16255,16263,16257,-16255,16330,16371,-16334,16333,16371,16372,-16332,16329,16371,16378,-16367,16371,16329,-16333,16371,16332,16328,-16373,16371,16381,-16379,16396,16395,-16398,16461, + 16458,16463,-16465,16464,16463,16459,-16461,16527,16514,16526,-16405,16417,16414,16406,-16411,16513,16518,16403,-16525,16514,16513,16524,-16527,16408,16416,16409,-16406,16416,16417,16410,-16410,16416, + 16408,16407,-16412,16406,16405,16409,-16411,16411,16412,16417,-16417,16426,16425,16428,-16428,16427,16431,16430,-16427,16425,16429,16432,-16429,16435,16433,16434,-16437,16439,16440,16438,-16438,16434, + 16433,16437,-16439,16435,16436,16440,-16440,16433,16435,16439,-16438,16436,16434,16438,-16441,16443,16441,16442,-16445,16447,16448,16446,-16446,16442,16441,16445,-16447,16443,16444,16448,-16448,16441, + 16443,16447,-16446,16444,16442,16446,-16449,16451,16449,16450,-16453,16455,16456,16454,-16454,16450,16449,16453,-16455,16451,16452,16456,-16456,16449,16451,16455,-16454,16452,16450,16454,-16457,16457, + 16392,16388,-16401,16469,16468,16471,-16471,16473,16472,16475,-16475,16470,16478,16477,-16470,16474,16482,16481,-16474,16468,16476,16479,-16472,16472,16480,16483,-16476,16495,16494,16497,-16497,16496, + 16500,16499,-16496,16494,16498,16501,-16498,16509,16505,16502,-16507,16507,16503,16504,-16509,16508,16509,16506,-16508,16517,16512,16520,-16522,16518,16513,16520,-16524,16523,16520,16512,-16520,16521, + 16520,16513,-16515,16423,16424,16467,-16466,16419,16420,16492,-16494,16420,16421,16491,-16493,16421,16419,16493,-16492,16399,16400,16401,-16397,16485,16457,16400,-16400,16484,16402,16457,-16486,16400, + 16388,16391,-16402,16394,16399,16396,-16398,16402,16389,16392,-16458,16391,16390,-16402,16398,16485,16399,-16395,16393,16484,16485,-16399,16401,16390,16395,-16397,16522,16525,16511,-16511,16403,16404, + 16526,-16525,16460,16459,16510,-16512,16515,16460,16511,-16526,16415,16418,16412,-16412,16459,16462,16522,-16511,16462,16515,16525,-16523,16406,16414,16408,-16406,16486,16528,-16530,16488,16489,16528, + -16487,16404,16403,16518,-16528,16490,16531,-16531,16411,16407,16413,-16416,16407,16412,16418,-16414,16420,16419,16489,-16489,16414,16417,16412,-16408,16530,16531,16424,-16424,16529,16528,16489,-16488, + 16422,16423,16465,-16467,16466,16467,16424,-16423,16488,16487,16421,-16421,16487,16489,16419,-16422,16514,16527,16523,-16522,16521,16523,16519,-16518,16486,16529,16487,-16489,16490,16530,16423,-16423, + 16422,16424,16531,-16491,16460,16515,-16465,16464,16515,16516,-16462,16462,16459,16463,-16516,16515,16463,16458,-16517,16614,16611,16615,-16617,16616,16615,16612,-16614,16666,16653,16665,-16537,16549, + 16546,16538,-16543,16652,16657,16535,-16664,16653,16652,16663,-16666,16540,16548,16541,-16538,16548,16549,16542,-16542,16548,16540,16539,-16544,16538,16537,16541,-16543,16543,16544,16549,-16549,16555, + 16556,16554,-16554,16561,16560,16563,-16563,16562,16566,16565,-16562,16560,16564,16567,-16564,16569,16568,16571,-16571,16570,16574,16573,-16570,16568,16572,16575,-16572,16577,16576,16579,-16579,16578, + 16582,16581,-16578,16576,16580,16583,-16580,16586,16584,16585,-16588,16590,16591,16589,-16589,16585,16584,16588,-16590,16586,16587,16591,-16591,16584,16586,16590,-16589,16587,16585,16589,-16592,16594, + 16592,16593,-16596,16598,16599,16597,-16597,16593,16592,16596,-16598,16594,16595,16599,-16599,16592,16594,16598,-16597,16595,16593,16597,-16600,16602,16600,16601,-16604,16606,16607,16605,-16605,16601, + 16600,16604,-16606,16602,16603,16607,-16607,16600,16602,16606,-16605,16603,16601,16605,-16608,16634,16633,16636,-16636,16635,16639,16638,-16635,16633,16637,16640,-16637,16642,16641,16644,-16644,16643, + 16647,16646,-16643,16641,16645,16648,-16645,16656,16651,16659,-16661,16657,16652,16659,-16663,16662,16659,16651,-16659,16660,16659,16652,-16654,16558,16557,16617,-16619,16557,16559,16619,-16618,16618, + 16619,16559,-16559,16552,16553,16631,-16633,16553,16554,16630,-16632,16554,16552,16632,-16631,16626,16627,16532,-16622,16620,16625,16627,-16627,16621,16532,16623,-16625,16661,16664,16650,-16650,16535, + 16536,16665,-16664,16613,16612,16649,-16651,16654,16613,16650,-16665,16547,16550,16544,-16544,16543,16539,16545,-16548,16539,16544,16550,-16546,16546,16549,16544,-16540,16623,16622,-16625,16653,16666, + 16662,-16661,16660,16662,16658,-16657,16666,16536,16535,-16658,16556,16551,16552,-16555,16553,16552,16551,-16556,16669,16670,16559,-16558,16668,16667,16551,-16557,16627,16610,16533,-16533,16625,16534, + 16610,-16628,16532,16533,16609,-16624,16609,16608,16622,-16624,16558,16559,16670,-16630,16629,16670,-16670,16629,16669,16557,-16559,16628,16668,16556,-16556,16555,16551,16667,-16629,16628,16667,-16669, + 16538,16546,16540,-16538,16613,16654,-16617,16616,16654,16655,-16615,16612,16654,16661,-16650,16654,16612,-16616,16654,16615,16611,-16656,16654,16664,-16662,16679,16678,-16681,16744,16741,16746,-16748, + 16747,16746,16742,-16744,16810,16797,16809,-16688,16700,16697,16689,-16694,16796,16801,16686,-16808,16797,16796,16807,-16810,16691,16699,16692,-16689,16699,16700,16693,-16693,16699,16691,16690,-16695, + 16689,16688,16692,-16694,16694,16695,16700,-16700,16709,16708,16711,-16711,16710,16714,16713,-16710,16708,16712,16715,-16712,16718,16716,16717,-16720,16722,16723,16721,-16721,16717,16716,16720,-16722, + 16718,16719,16723,-16723,16716,16718,16722,-16721,16719,16717,16721,-16724,16726,16724,16725,-16728,16730,16731,16729,-16729,16725,16724,16728,-16730,16726,16727,16731,-16731,16724,16726,16730,-16729, + 16727,16725,16729,-16732,16734,16732,16733,-16736,16738,16739,16737,-16737,16733,16732,16736,-16738,16734,16735,16739,-16739,16732,16734,16738,-16737,16735,16733,16737,-16740,16740,16675,16671,-16684, + 16752,16751,16754,-16754,16756,16755,16758,-16758,16753,16761,16760,-16753,16757,16765,16764,-16757,16751,16759,16762,-16755,16755,16763,16766,-16759,16778,16777,16780,-16780,16779,16783,16782,-16779, + 16777,16781,16784,-16781,16792,16788,16785,-16790,16790,16786,16787,-16792,16791,16792,16789,-16791,16800,16795,16803,-16805,16801,16796,16803,-16807,16806,16803,16795,-16803,16804,16803,16796,-16798, + 16706,16707,16750,-16749,16702,16703,16775,-16777,16703,16704,16774,-16776,16704,16702,16776,-16775,16682,16683,16684,-16680,16768,16740,16683,-16683,16767,16685,16740,-16769,16683,16671,16674,-16685, + 16677,16682,16679,-16681,16685,16672,16675,-16741,16674,16673,-16685,16681,16768,16682,-16678,16676,16767,16768,-16682,16684,16673,16678,-16680,16805,16808,16794,-16794,16686,16687,16809,-16808,16743, + 16742,16793,-16795,16798,16743,16794,-16809,16698,16701,16695,-16695,16742,16745,16805,-16794,16745,16798,16808,-16806,16689,16697,16691,-16689,16769,16811,-16813,16771,16772,16811,-16770,16687,16686, + 16801,-16811,16773,16814,-16814,16694,16690,16696,-16699,16690,16695,16701,-16697,16703,16702,16772,-16772,16697,16700,16695,-16691,16813,16814,16707,-16707,16812,16811,16772,-16771,16705,16706,16748, + -16750,16749,16750,16707,-16706,16771,16770,16704,-16704,16770,16772,16702,-16705,16797,16810,16806,-16805,16804,16806,16802,-16801,16769,16812,16770,-16772,16773,16813,16706,-16706,16705,16707,16814, + -16774,16743,16798,-16748,16747,16798,16799,-16745,16745,16742,16746,-16799,16798,16746,16741,-16800,16857,16854,16858,-16860,16859,16858,16855,-16857,16909,16896,16908,-16820,16832,16829,16821,-16826, + 16895,16900,16818,-16907,16896,16895,16906,-16909,16823,16831,16824,-16821,16831,16832,16825,-16825,16831,16823,16822,-16827,16821,16820,16824,-16826,16826,16827,16832,-16832,16838,16839,16837,-16837, + 16845,16843,16844,-16847,16849,16850,16848,-16848,16844,16843,16847,-16849,16845,16846,16850,-16850,16843,16845,16849,-16848,16846,16844,16848,-16851,16877,16876,16879,-16879,16878,16882,16881,-16878, + 16876,16880,16883,-16880,16885,16884,16887,-16887,16886,16890,16889,-16886,16884,16888,16891,-16888,16899,16894,16902,-16904,16900,16895,16902,-16906,16905,16902,16894,-16902,16903,16902,16895,-16897, + 16841,16840,16860,-16862,16840,16842,16862,-16861,16861,16862,16842,-16842,16835,16836,16874,-16876,16836,16837,16873,-16875,16837,16835,16875,-16874,16869,16870,16815,-16865,16863,16868,16870,-16870, + 16864,16815,16866,-16868,16904,16907,16893,-16893,16818,16819,16908,-16907,16856,16855,16892,-16894,16897,16856,16893,-16908,16830,16833,16827,-16827,16826,16822,16828,-16831,16822,16827,16833,-16829, + 16829,16832,16827,-16823,16866,16865,-16868,16896,16909,16905,-16904,16903,16905,16901,-16900,16909,16819,16818,-16901,16839,16834,16835,-16838,16836,16835,16834,-16839,16912,16913,16842,-16841,16911, + 16910,16834,-16840,16870,16853,16816,-16816,16868,16817,16853,-16871,16815,16816,16852,-16867,16852,16851,16865,-16867,16841,16842,16913,-16873,16872,16913,-16913,16872,16912,16840,-16842,16871,16911, + 16839,-16839,16838,16834,16910,-16872,16871,16910,-16912,16821,16829,16823,-16821,16856,16897,-16860,16859,16897,16898,-16858,16855,16897,16904,-16893,16897,16855,-16859,16897,16858,16854,-16899,16897, + 16907,-16905,16922,16921,-16924,16987,16984,16989,-16991,16990,16989,16985,-16987,17053,17040,17052,-16931,16943,16940,16932,-16937,17039,17044,16929,-17051,17040,17039,17050,-17053,16934,16942,16935, + -16932,16942,16943,16936,-16936,16942,16934,16933,-16938,16932,16931,16935,-16937,16937,16938,16943,-16943,16952,16951,16954,-16954,16953,16957,16956,-16953,16951,16955,16958,-16955,16961,16959,16960, + -16963,16965,16966,16964,-16964,16960,16959,16963,-16965,16961,16962,16966,-16966,16959,16961,16965,-16964,16962,16960,16964,-16967,16969,16967,16968,-16971,16973,16974,16972,-16972,16968,16967,16971, + -16973,16969,16970,16974,-16974,16967,16969,16973,-16972,16970,16968,16972,-16975,16977,16975,16976,-16979,16981,16982,16980,-16980,16976,16975,16979,-16981,16977,16978,16982,-16982,16975,16977,16981, + -16980,16978,16976,16980,-16983,16983,16918,16914,-16927,16995,16994,16997,-16997,16999,16998,17001,-17001,16996,17004,17003,-16996,17000,17008,17007,-17000,16994,17002,17005,-16998,16998,17006,17009, + -17002,17021,17020,17023,-17023,17022,17026,17025,-17022,17020,17024,17027,-17024,17035,17031,17028,-17033,17033,17029,17030,-17035,17034,17035,17032,-17034,17043,17038,17046,-17048,17044,17039,17046, + -17050,17049,17046,17038,-17046,17047,17046,17039,-17041,16949,16950,16993,-16992,16945,16946,17018,-17020,16946,16947,17017,-17019,16947,16945,17019,-17018,16925,16926,16927,-16923,17011,16983,16926, + -16926,17010,16928,16983,-17012,16926,16914,16917,-16928,16920,16925,16922,-16924,16928,16915,16918,-16984,16917,16916,-16928,16924,17011,16925,-16921,16919,17010,17011,-16925,16927,16916,16921,-16923, + 17048,17051,17037,-17037,16929,16930,17052,-17051,16986,16985,17036,-17038,17041,16986,17037,-17052,16941,16944,16938,-16938,16985,16988,17048,-17037,16988,17041,17051,-17049,16932,16940,16934,-16932, + 17012,17054,-17056,17014,17015,17054,-17013,16930,16929,17044,-17054,17016,17057,-17057,16937,16933,16939,-16942,16933,16938,16944,-16940,16946,16945,17015,-17015,16940,16943,16938,-16934,17056,17057, + 16950,-16950,17055,17054,17015,-17014,16948,16949,16991,-16993,16992,16993,16950,-16949,17014,17013,16947,-16947,17013,17015,16945,-16948,17040,17053,17049,-17048,17047,17049,17045,-17044,17012,17055, + 17013,-17015,17016,17056,16949,-16949,16948,16950,17057,-17017,16986,17041,-16991,16990,17041,17042,-16988,16988,16985,16989,-17042,17041,16989,16984,-17043,17062,17063,17059,-17059,17063,17064,17060, + -17060,17064,17065,17061,-17061,17065,17062,17058,-17062,17068,17066,17062,-17066,17066,17067,17063,-17063,17067,17068,17064,-17064,17068,17065,-17065,17067,17066,17072,-17078,17083,17079,-17079,17077, + 17072,17073,-17077,17082,17080,17079,-17084,17084,17081,17080,-17083,17074,17070,17081,-17085,17075,17076,-17070,17076,17073,-17070,17068,17067,17077,-17072,17072,17071,17075,-17074,17071,17077,17076, + -17076,17066,17068,17071,-17073,17073,17075,-17070,17092,17087,-17089,17091,17092,17088,-17090,17093,17091,17089,-17091,17086,17093,17090,-17086,17100,17095,17096,-17100,17099,17096,-17099,17095,17094, + 17098,-17097,17094,17100,17099,-17099,17097,17102,-17102,17103,17104,-17106,17612,17111,17107,-17614,17111,17112,17108,-17108,17614,17113,17109,-17616,17113,17110,17106,-17110,17613,17107,17108,-17616, + 17727,17147,17148,-17730,17616,17119,17115,-17618,17119,17120,17116,-17116,17618,17121,17117,-17620,17121,17118,17114,-17118,17617,17115,17116,-17620,17153,17150,17146,-17150,17126,17127,17123,-17123, + 17127,17128,17124,-17124,17128,17129,17125,-17125,17129,17126,17122,-17126,17122,17123,17124,-17126,17728,17153,17149,-17730,17772,17135,17131,-17747,17135,17136,17132,-17132,17778,17137,17133,-17777, + 17137,17134,17130,-17134,17746,17131,17132,-17759,17151,17152,17148,-17148,17142,17143,17139,-17139,17143,17144,17140,-17140,17144,17145,17141,-17141,17145,17142,17138,-17142,17138,17139,17140,-17142, + 17726,17151,17147,-17728,17739,17155,17156,-17742,17161,17158,17154,-17158,17740,17161,17157,-17742,17159,17160,17156,-17156,17738,17159,17155,-17740,17735,17163,17164,-17738,17169,17166,17162,-17166, + 17736,17169,17165,-17738,17167,17168,17164,-17164,17734,17167,17163,-17736,17126,17129,17128,-17128,17726,17728,17152,-17152,17192,17191,17195,-17197,17616,17618,17120,-17120,17612,17614,17112,-17112, + 17772,17748,17136,-17136,17142,17145,17144,-17144,17738,17740,17160,-17160,17262,17259,17255,-17259,17193,17192,17196,-17198,17261,17262,17258,-17258,17620,17180,17176,-17622,17180,17181,17177,-17177, + 17622,17182,17178,-17624,17182,17179,17175,-17179,17621,17176,17177,-17624,17260,17261,17257,-17257,17259,17260,17256,-17256,17194,17193,17197,-17199,17222,17219,17215,-17219,17198,17197,17196,-17196, + 17191,17194,17198,-17196,17204,17205,17201,-17201,17203,17204,17200,-17200,17660,17216,17217,-17997,17190,17189,17188,-17188,17183,17186,17190,-17188,17184,17183,17187,-17189,17185,17184,17188,-17190, + 17186,17185,17189,-17191,17205,17206,17202,-17202,17206,17203,17199,-17203,17199,17200,17201,-17203,17220,17221,17217,-17217,17624,17212,17208,-17626,17212,17213,17209,-17209,17626,17214,17210,-17628, + 17214,17211,17207,-17211,17625,17208,17209,-17628,17658,17220,17216,-17661,17714,17224,17225,-17714,17388,17387,18001,-18000,17632,17230,17226,-17634,17229,17228,18003,-17716,17247,17251,17252,-17244, + 17239,17236,17232,-17241,17240,17232,17233,-17243,17253,17250,17246,-17255,17674,17238,17234,-17677,17252,17244,17245,-17255,17675,17239,17240,-17674,17673,17240,17242,-17677,17237,17241,17242,-17234, + 17251,17248,17244,-17253,17243,17252,17254,-17247,17249,17253,17254,-17246,17620,17622,17181,-17181,17270,17267,17263,-17267,17269,17270,17266,-17266,17268,17269,17265,-17265,17267,17268,17264,-17264, + 17278,17275,17271,-17275,17277,17278,17274,-17274,17276,17277,17273,-17273,17275,17276,17272,-17272,17286,17283,17279,-17283,17285,17286,17282,-17282,17284,17285,17281,-17281,17283,17284,17280,-17280, + 17731,17288,17289,-17734,17294,17291,17287,-17291,17732,17294,17290,-17734,17292,17293,17289,-17289,17730,17292,17288,-17732,17723,17296,17297,-17726,17302,17299,17295,-17299,17724,17302,17298,-17726, + 17300,17301,17297,-17297,17722,17300,17296,-17724,17310,17307,17303,-17307,17309,17310,17306,-17306,17308,17309,17305,-17305,17307,17308,17304,-17304,17318,17315,17311,-17315,17317,17318,17314,-17314, + 17316,17317,17313,-17313,17315,17316,17312,-17312,17326,17323,17319,-17323,17325,17326,17322,-17322,17324,17325,17321,-17321,17323,17324,17320,-17320,17334,17331,17327,-17331,17333,17334,17330,-17330, + 17332,17333,17329,-17329,17331,17332,17328,-17328,17342,17339,17335,-17339,17341,17342,17338,-17338,17340,17341,17337,-17337,17339,17340,17336,-17336,17350,17347,17343,-17347,17349,17350,17346,-17346, + 17348,17349,17345,-17345,17347,17348,17344,-17344,17358,17355,17351,-17355,17357,17358,17354,-17354,17356,17357,17353,-17353,17355,17356,17352,-17352,17366,17363,17359,-17363,17365,17366,17362,-17362, + 17364,17365,17361,-17361,17363,17364,17360,-17360,17386,17384,17383,-17373,17374,17386,17372,-17386,17385,17372,17389,-17391,17379,17380,17376,-17376,17380,17382,17378,-17377,17382,17379,17375,-17379, + 17384,17371,17373,-17384,17372,17383,17388,-17390,17373,17385,17390,-17388,17391,18034,17394,-17396,18119,17391,17395,-18121,18121,17433,17393,-18123,17403,17401,17407,-17406,17408,17401,17404,-17406, + 17948,17416,17402,-17407,17415,17410,-17410,17415,17409,17411,-17414,17412,17416,17947,-17407,17421,17422,17418,-17418,17423,17424,17420,-17420,17424,17421,17417,-17421,17429,17430,17426,-17426,17431, + 17432,17428,-17428,17432,17429,17425,-17429,17423,17430,17429,-17425,17424,17429,17432,-17422,17421,17432,17431,-17423,17418,17427,17428,-17418,17417,17428,17425,-17421,17420,17425,17426,-17420,17439, + 17440,17436,-17436,17441,17442,17438,-17438,17442,17439,17435,-17439,17447,17448,17444,-17444,17449,17450,17446,-17446,17450,17447,17443,-17447,17441,17448,17447,-17443,17442,17447,17450,-17440,17439, + 17450,17449,-17441,17440,17441,17437,-17437,17449,17448,17441,-17441,17445,17444,17448,-17450,17422,17423,17419,-17419,17431,17430,17423,-17423,17427,17426,17430,-17432,17418,17419,17426,-17428,17455, + 17456,17452,-17452,17457,17458,17454,-17454,17458,17455,17451,-17455,17463,17464,17460,-17460,17465,17466,17462,-17462,17466,17463,17459,-17463,17457,17464,17463,-17459,17458,17463,17466,-17456,17455, + 17466,17465,-17457,17452,17461,17462,-17452,17451,17462,17459,-17455,17454,17459,17460,-17454,17471,17472,17468,-17468,17473,17474,17470,-17470,17474,17471,17467,-17471,17479,17480,17476,-17476,17481, + 17482,17478,-17478,17482,17479,17475,-17479,17473,17480,17479,-17475,17474,17479,17482,-17472,17487,17488,17484,-17484,17488,17489,17485,-17485,17489,17490,17486,-17486,17490,17487,17483,-17487,17483, + 17484,17485,-17487,17490,17489,17488,-17488,17495,17496,17492,-17492,17496,17497,17493,-17493,17497,17498,17494,-17494,17498,17495,17491,-17495,17491,17492,17493,-17495,17498,17497,17496,-17496,17503, + 17504,17500,-17500,17504,17505,17501,-17501,17505,17506,17502,-17502,17506,17503,17499,-17503,18063,18064,18060,-18060,17506,17505,17504,-17504,17511,17512,17508,-17508,17512,17513,17509,-17509,17513, + 17514,17510,-17510,17514,17511,17507,-17511,17507,17508,17509,-17511,17514,17513,17512,-17512,17519,17520,17516,-17516,17520,17521,17517,-17517,17527,17528,17524,-17524,17522,17519,17515,-17519,17515, + 17516,17517,-17519,17522,17521,17520,-17520,17528,17529,17525,-17525,17530,17527,17523,-17527,17523,17524,17525,-17527,17530,17529,17528,-17528,17535,17536,17532,-17532,17536,17537,17533,-17533,17538, + 17535,17531,-17535,17531,17532,17533,-17535,17538,17537,17536,-17536,17543,17544,17540,-17540,17544,17545,17541,-17541,17546,17543,17539,-17543,17539,17540,17541,-17543,17546,17545,17544,-17544,17551, + 17552,17548,-17548,17552,17553,17549,-17549,17554,17551,17547,-17551,17547,17548,17549,-17551,17554,17553,17552,-17552,17559,17560,17556,-17556,17560,17561,17557,-17557,17562,17559,17555,-17559,17555, + 17556,17557,-17559,17562,17561,17560,-17560,17567,17568,17564,-17564,17568,17569,17565,-17565,17570,17567,17563,-17567,17563,17564,17565,-17567,17570,17569,17568,-17568,17571,17576,17574,-17574,17573, + 17574,17575,-17573,17577,17578,17575,-17575,17579,17577,17574,-17577,17572,17578,17577,-17574,17573,17577,17579,-17572,17581,17586,17587,-17581,17580,17587,17584,-17584,17583,17584,17585,-17583,17589, + 17594,17595,-17589,17588,17595,17592,-17592,17591,17592,17593,-17591,17610,17609,17602,-17602,17601,17602,17598,-17598,17597,17598,17605,-17607,17606,17605,17609,-17611,17608,17603,17602,-17610,17611, + 17600,17603,-17609,17610,17601,17600,-17612,17607,17596,17597,-17607,17604,17599,17596,-17608,17605,17598,17599,-17605,17596,17599,17603,-17601,17597,17596,17600,-17602,17599,17598,17602,-17604,17604, + 17607,17611,-17609,17605,17604,17608,-17610,17607,17606,17610,-17612,17456,17457,17453,-17453,17465,17464,17457,-17457,17461,17460,17464,-17466,17452,17453,17460,-17462,17110,17612,17613,-17107,17112, + 17614,17615,-17109,17106,17613,17615,-17110,17110,17113,17614,-17613,17118,17616,17617,-17115,17120,17618,17619,-17117,17114,17617,17619,-17118,17118,17121,17618,-17617,17179,17620,17621,-17176,17181, + 17622,17623,-17178,17175,17621,17623,-17179,17179,17182,17622,-17621,17211,17624,17625,-17208,17213,17626,17627,-17210,17207,17625,17627,-17211,17215,17629,17630,-17219,17219,17628,17629,-17216,17223, + 17631,17633,-17227,17715,17632,17633,-17714,17655,17651,17646,-17650,17656,17653,17648,-17648,17652,17657,17655,-17654,17643,17639,17634,-17638,17640,17645,17643,-17642,17644,17641,17636,-17636,17639, + 17644,17635,-17635,17642,17638,17644,-17640,17638,17640,17641,-17645,17641,17643,17637,-17637,17645,17642,17639,-17644,17640,17638,17642,-17646,17651,17656,17647,-17647,17654,17650,17656,-17652,17650, + 17652,17653,-17657,17653,17655,17649,-17649,17657,17654,17651,-17656,17652,17650,17654,-17658,17629,17660,17659,-17631,17628,17658,17660,-17630,17211,17214,17626,-17625,17624,17626,17213,-17213,17685, + 17666,17662,-17688,17666,17667,17663,-17663,17671,17668,17664,-17673,17668,17665,17661,-17665,17687,17662,17663,-17687,17685,17688,17667,-17667,17665,17669,17670,-17662,17688,17671,17672,-17687,17661, + 17670,17672,-17665,17665,17668,17671,-17670,17231,17234,17238,-17236,17674,17241,17239,-17676,17241,17674,17676,-17243,17235,17675,17673,-17232,17231,17673,17676,-17235,17238,17674,17675,-17236,17383, + 17373,17387,-17389,17371,17374,17385,-17374,17384,17386,17374,-17372,17680,17678,17677,-17370,17367,17680,17369,-17680,17679,17369,17683,-17685,17678,17370,17368,-17678,17369,17677,17682,-17684,17368, + 17679,17684,-17682,17677,17368,17681,-17683,17370,17367,17679,-17369,17678,17680,17367,-17371,17669,17685,17687,-17671,17670,17687,17686,-17673,17669,17671,17688,-17686,17667,17688,17686,-17664,17203, + 17206,17205,-17205,17184,17185,17186,-17184,17693,17697,17698,-17690,17699,17696,17692,-17701,17698,17690,17691,-17701,17697,17694,17690,-17699,17689,17698,17700,-17693,17695,17699,17700,-17692,17705, + 17703,17701,-17707,17707,17705,17709,-17712,17706,17701,17702,-17709,17704,17707,17708,-17703,17705,17707,17704,-17704,17706,17708,17712,-17711,17708,17707,17711,-17713,17705,17706,17710,-17710,17710, + 17712,17711,-17710,17631,17714,17713,-17634,17229,17715,17713,-17226,17981,17980,17982,-17984,17979,17978,17980,-17982,17977,17976,17978,-17980,17975,17974,17976,-17978,17973,17972,17974,-17976,17971, + 17970,17972,-17974,17969,17968,17970,-17972,17967,17716,17968,-17970,17295,17723,17725,-17299,17301,17724,17725,-17298,17299,17722,17723,-17296,17146,17727,17729,-17150,17152,17728,17729,-17149,17150, + 17726,17727,-17147,17150,17153,17728,-17727,17287,17731,17733,-17291,17293,17732,17733,-17290,17291,17730,17731,-17288,17162,17735,17737,-17166,17168,17736,17737,-17165,17166,17734,17735,-17163,17154, + 17739,17741,-17158,17160,17740,17741,-17157,17158,17738,17739,-17155,17158,17161,17740,-17739,17717,17718,17716,-17968,17719,17720,17718,-17718,17721,17742,17720,-17720,17743,17744,17742,-17722,17756, + 17755,17938,-17938,17689,17692,17696,-17694,17222,17218,17630,-17760,17997,17759,17630,17659,-17997,17761,17753,-17945,17764,17763,17937,-17939,17763,17750,17765,-17748,17767,17745,-17935,17752,17766, + 17749,-17769,17767,17751,17769,-17746,17752,17768,-17930,17777,17939,17786,-17788,17791,17784,17795,-17791,17792,17785,-17942,17793,17794,17939,-17778,17780,17795,17774,-17795,17793,17777,17796,-17782, + 17797,17779,-17937,17783,17799,17779,-17798,17798,17775,17800,-17783,17136,17748,17758,-17133,17747,17777,17787,-17757,17754,17785,17796,-17766,17805,17806,17985,-17985,17763,17793,17781,-17751,17761, + 17791,17790,-17761,17821,17822,17989,-17989,17749,17779,17799,-17769,17907,17906,17910,-17912,17898,17899,17906,-17908,17765,17796,17777,-17748,17807,17808,17987,-17987,17762,17792,17791,-17762,17902, + 17903,17899,-17899,17764,17794,17793,-17764,17637,17634,17802,-17400,17768,17799,17804,-17774,17911,17910,17903,-17903,17814,17810,17805,-17809,17817,17820,17814,-17813,17815,17812,17807,-17807,17810, + 17815,17806,-17806,17819,17818,17815,-17811,17818,17817,17812,-17816,17812,17814,17808,-17808,17820,17819,17810,-17815,17811,17809,17813,-17817,17811,17816,17820,-17818,17813,17809,17818,-17820,17809, + 17811,17817,-17819,17816,17813,17819,-17821,17830,17826,17821,-17825,17833,17836,17830,-17829,17831,17828,17823,-17823,17826,17831,17822,-17822,17835,17834,17831,-17827,17834,17833,17828,-17832,17828, + 17830,17824,-17824,17836,17835,17826,-17831,17827,17825,17829,-17833,17827,17832,17836,-17834,17829,17825,17834,-17836,17825,17827,17833,-17835,17832,17829,17835,-17837,17846,17842,17837,-17841,17854, + 17859,17856,-17861,17847,17844,17839,-17839,17842,17847,17838,-17838,17860,17856,17853,-17858,17859,17854,17855,-17859,17844,17846,17840,-17840,17856,17859,17858,-17854,17854,17860,17857,-17856,17855, + 17857,17841,-17849,17853,17858,17849,-17852,17858,17855,17848,-17850,17857,17853,17851,-17842,17843,17852,17846,-17845,17845,17850,17847,-17843,17850,17843,17844,-17848,17852,17845,17842,-17847,17843, + 17850,17845,-17853,17866,17871,17868,-17873,17872,17868,17865,-17870,17871,17866,17867,-17871,17868,17871,17870,-17866,17866,17872,17869,-17868,17867,17869,17861,-17863,17865,17870,17863,-17865,17870, + 17867,17862,-17864,17869,17865,17864,-17862,17876,17880,17881,-17885,17875,17878,17883,-17883,17880,17875,17882,-17882,17878,17876,17884,-17884,17879,17873,17876,-17879,17877,17874,17875,-17881,17874, + 17879,17878,-17876,17873,17877,17880,-17877,17879,17874,17877,-17874,17890,17895,17892,-17897,17896,17892,17889,-17894,17895,17890,17891,-17895,17892,17895,17894,-17890,17890,17896,17893,-17892,17891, + 17893,17885,-17887,17889,17894,17887,-17889,17894,17891,17886,-17888,17893,17889,17888,-17886,17909,17904,17903,-17911,17912,17901,17904,-17910,17911,17902,17901,-17913,17908,17897,17898,-17908,17905, + 17900,17897,-17909,17906,17899,17900,-17906,17897,17900,17904,-17902,17898,17897,17901,-17903,17900,17899,17903,-17905,17905,17908,17912,-17910,17906,17905,17909,-17911,17908,17907,17911,-17913,17923, + 17922,17926,-17928,17914,17915,17922,-17924,17918,17919,17915,-17915,17927,17926,17919,-17919,17925,17920,17919,-17927,17928,17917,17920,-17926,17927,17918,17917,-17929,17924,17913,17914,-17924,17921, + 17916,17913,-17925,17922,17915,17916,-17922,17913,17916,17920,-17918,17914,17913,17917,-17919,17916,17915,17919,-17921,17921,17924,17928,-17926,17922,17921,17925,-17927,17924,17923,17927,-17929,17751, + 17752,17929,-17931,17769,17751,-17931,17782,17800,-17933,17798,17933,-17776,17766,17767,17934,-17936,17749,17766,-17936,17798,17797,17936,-17934,17747,17756,-17938,17763,17747,-17938,17755,17434,-17939, + 17434,17764,-17939,17939,17774,-17787,17794,17774,-17940,17781,17796,-17941,17791,17792,17941,-17943,17784,17791,-17943,17754,17762,-17944,17762,17761,17944,-17944,17765,17750,-17946,17930,17757,17770, + -17770,17761,17760,17795,-17754,17945,17762,17754,-17766,17946,17764,17434,-17796,17932,17800,17801,-17789,17790,17795,-17781,17940,17796,17785,-17793,17783,17931,-17800,17760,17790,17940,-17946,17945, + 17940,17792,-17763,17635,17636,17400,-17772,17946,17780,17794,-17765,17750,17781,17780,-17947,17636,17637,17399,-17401,17768,17773,-17930,17134,17137,17778,-17804,17130,17789,17776,-17134,17799,17931, + -17805,17134,17803,17789,-17131,17783,17782,17932,-17932,17940,17790,-17781,17780,17781,-17941,17760,17945,-17947,17795,17760,-17947,17750,17946,-17946,17411,17410,17415,-17415,17407,17401,-17409,17405, + 17404,-17404,17413,17411,-17415,17954,17950,-17950,17954,17949,17951,-17953,17951,17950,17954,-17954,17947,17416,-17949,17406,17402,-17413,17952,17951,-17954,17960,17958,17955,-17957,17957,17958,17959, + -17957,17966,17962,-17962,17966,17961,17963,-17965,17963,17962,17966,-17966,17959,17958,-17961,17956,17955,-17958,17964,17963,-17966,17299,17302,17724,-17723,17722,17724,17301,-17301,17166,17169,17736, + -17735,17734,17736,17168,-17168,17291,17294,17732,-17731,17730,17732,17293,-17293,17477,17476,17480,-17482,17469,17468,17472,-17474,17473,17472,17481,-17481,17471,17482,17481,-17473,17753,17784,17942, + -17945,17944,17942,17941,-17944,17943,17941,17785,-17755,17756,17787,17786,-17756,17757,17788,17801,-17771,17839,17840,17995,-17995,17634,17635,17771,-17803,17837,17838,17993,-17993,17823,17824,17991, + -17991,17824,17821,17988,-17992,17808,17805,17984,-17988,17840,17837,17992,-17996,17838,17839,17994,-17994,17822,17823,17990,-17990,17806,17807,17986,-17986,17219,17222,-17629,17658,17628,-17760,17220, + 17658,-17222,17658,17759,-17998,17221,17658,-17998,17628,17222,-17760,17221,17997,17996,-17218,17659,17660,-17997,17194,17191,17192,-17194,17693,17696,17699,-17698,17697,17699,17695,-17695,17239,17241, + 17237,-17237,17247,17250,17253,-17252,17251,17253,17249,-17249,17714,17631,18002,-18004,17683,17682,18009,-18011,17632,18002,17227,-17231,17715,18003,18002,-17633,17684,17683,18010,-18012,17224,17714, + 18003,-17229,17631,17223,17227,-18003,17647,17648,18006,-18006,17646,17647,18005,-18005,17387,17390,17998,-18002,17682,17681,18008,-18010,17649,17646,18004,-18008,17390,17389,18000,-17999,17389,17388, + 17999,-18001,17681,17684,18011,-18009,17648,17649,18007,-18007,17745,17775,17933,-17935,17934,17933,17936,-17936,17935,17936,17779,-17750,18012,18015,-18017,18014,18012,18016,-18018,17174,18023,18019, + -18022,18028,18027,18026,-18019,18023,17173,18022,-18025,18023,18024,-18020,17173,18014,17170,-18027,18016,18015,17171,-18014,18015,17174,17172,-17172,18022,17173,18026,-18028,18014,18017,18025,-17171, + 17174,18021,18020,-17173,18019,18024,18028,-18019,18035,18039,-18039,18037,18040,18039,-18036,18033,18044,18042,-18047,18051,18041,18049,-18051,18046,18047,18045,-18033,18046,18042,-18048,18032,18049, + 18029,-18038,18039,18036,18030,-18039,18038,18030,18031,-18034,18045,18050,18049,-18033,18037,18029,18048,-18041,18033,18031,18043,-18045,18042,18041,18051,-18048,18057,18058,-17974,18015,18038,18033, + -17175,17173,18032,18037,-18015,18058,17717,-17968,18058,17719,-17718,17887,17886,17377,-17399,17973,17975,-18058,18057,17975,-17978,17885,17888,17397,-17382,18057,17979,-17982,17721,18058,-17744,18056, + 18057,-17982,17888,17887,17398,-17398,17886,17885,17381,-17378,18058,17969,-17972,18055,18056,-17982,17721,17719,-18059,18058,17967,-17970,17576,17571,18052,-18054,17579,17576,18053,-18055,17981,17983, + -18056,17571,17579,18054,-18053,18058,17971,-17974,18057,17977,-17980,18064,18065,18061,-18061,18065,18066,18062,-18062,18066,18063,18059,-18063,18066,18065,18064,-18064,18072,18077,18074,-18079,18078, + 18074,18071,-18076,18077,18072,18073,-18077,18074,18077,18076,-18072,18072,18078,18075,-18074,18073,18075,18067,-18069,18071,18076,18069,-18071,18076,18073,18068,-18070,18075,18071,18070,-18068,17862, + 17861,18079,-18081,17864,17863,18081,-18083,17861,17864,18082,-18080,17863,17862,18080,-18082,18091,18088,18084,-18093,18088,18089,18085,-18085,18093,18090,18086,-18095,18090,18087,18083,-18087,18092, + 18084,18085,-18095,18091,18093,18089,-18089,18087,18091,18092,-18084,18089,18093,18094,-18086,18083,18092,18094,-18087,18087,18090,18093,-18092,18103,18100,18096,-18105,18100,18101,18097,-18097,18105, + 18102,18098,-18107,18102,18099,18095,-18099,18104,18096,18097,-18107,18103,18105,18101,-18101,18099,18103,18104,-18096,18101,18105,18106,-18098,18095,18104,18106,-18099,18099,18102,18105,-18104,18115, + 18112,18108,-18117,18112,18113,18109,-18109,18117,18114,18110,-18119,18114,18111,18107,-18111,18116,18108,18109,-18119,18115,18117,18113,-18113,18111,18115,18116,-18108,18113,18117,18118,-18110,18107, + 18116,18118,-18111,18111,18114,18117,-18116,17433,17392,17396,-17394,18120,17395,17394,-18123,18119,18121,18034,-17392,17392,18119,18120,-17397,18034,18121,18122,-17395,17396,18120,18122,-17394,17392, + 17433,18121,-18120,18123,18130,18126,-18128,18131,18123,18127,-18133,18133,18129,18125,-18135,18129,18124,18128,-18126,18132,18127,18126,-18135,18131,18133,18130,-18124,18124,18131,18132,-18129,18130, + 18133,18134,-18127,18128,18132,18134,-18126,18124,18129,18133,-18132,18217,18214,18218,-18220,18219,18218,18215,-18217,18269,18256,18268,-18140,18152,18149,18141,-18146,18255,18260,18138,-18267,18256, + 18255,18266,-18269,18143,18151,18144,-18141,18151,18152,18145,-18145,18151,18143,18142,-18147,18141,18140,18144,-18146,18146,18147,18152,-18152,18158,18159,18157,-18157,18164,18163,18166,-18166,18165, + 18169,18168,-18165,18163,18167,18170,-18167,18172,18171,18174,-18174,18173,18177,18176,-18173,18171,18175,18178,-18175,18180,18179,18182,-18182,18181,18185,18184,-18181,18179,18183,18186,-18183,18189, + 18187,18188,-18191,18193,18194,18192,-18192,18188,18187,18191,-18193,18189,18190,18194,-18194,18187,18189,18193,-18192,18190,18188,18192,-18195,18197,18195,18196,-18199,18201,18202,18200,-18200,18196, + 18195,18199,-18201,18197,18198,18202,-18202,18195,18197,18201,-18200,18198,18196,18200,-18203,18205,18203,18204,-18207,18209,18210,18208,-18208,18204,18203,18207,-18209,18205,18206,18210,-18210,18203, + 18205,18209,-18208,18206,18204,18208,-18211,18237,18236,18239,-18239,18238,18242,18241,-18238,18236,18240,18243,-18240,18245,18244,18247,-18247,18246,18250,18249,-18246,18244,18248,18251,-18248,18259, + 18254,18262,-18264,18260,18255,18262,-18266,18265,18262,18254,-18262,18263,18262,18255,-18257,18161,18160,18220,-18222,18160,18162,18222,-18221,18221,18222,18162,-18162,18155,18156,18234,-18236,18156, + 18157,18233,-18235,18157,18155,18235,-18234,18229,18230,18135,-18225,18223,18228,18230,-18230,18224,18135,18226,-18228,18264,18267,18253,-18253,18138,18139,18268,-18267,18216,18215,18252,-18254,18257, + 18216,18253,-18268,18150,18153,18147,-18147,18146,18142,18148,-18151,18142,18147,18153,-18149,18149,18152,18147,-18143,18226,18225,-18228,18256,18269,18265,-18264,18263,18265,18261,-18260,18269,18139, + 18138,-18261,18159,18154,18155,-18158,18156,18155,18154,-18159,18272,18273,18162,-18161,18271,18270,18154,-18160,18230,18213,18136,-18136,18228,18137,18213,-18231,18135,18136,18212,-18227,18212,18211, + 18225,-18227,18161,18162,18273,-18233,18232,18273,-18273,18232,18272,18160,-18162,18231,18271,18159,-18159,18158,18154,18270,-18232,18231,18270,-18272,18141,18149,18143,-18141,18216,18257,-18220,18219, + 18257,18258,-18218,18215,18257,18264,-18253,18257,18215,-18219,18257,18218,18214,-18259,18257,18267,-18265,18282,18281,-18284,18347,18344,18349,-18351,18350,18349,18345,-18347,18413,18400,18412,-18291, + 18303,18300,18292,-18297,18399,18404,18289,-18411,18400,18399,18410,-18413,18294,18302,18295,-18292,18302,18303,18296,-18296,18302,18294,18293,-18298,18292,18291,18295,-18297,18297,18298,18303,-18303, + 18312,18311,18314,-18314,18313,18317,18316,-18313,18311,18315,18318,-18315,18321,18319,18320,-18323,18325,18326,18324,-18324,18320,18319,18323,-18325,18321,18322,18326,-18326,18319,18321,18325,-18324, + 18322,18320,18324,-18327,18329,18327,18328,-18331,18333,18334,18332,-18332,18328,18327,18331,-18333,18329,18330,18334,-18334,18327,18329,18333,-18332,18330,18328,18332,-18335,18337,18335,18336,-18339, + 18341,18342,18340,-18340,18336,18335,18339,-18341,18337,18338,18342,-18342,18335,18337,18341,-18340,18338,18336,18340,-18343,18343,18278,18274,-18287,18355,18354,18357,-18357,18359,18358,18361,-18361, + 18356,18364,18363,-18356,18360,18368,18367,-18360,18354,18362,18365,-18358,18358,18366,18369,-18362,18381,18380,18383,-18383,18382,18386,18385,-18382,18380,18384,18387,-18384,18395,18391,18388,-18393, + 18393,18389,18390,-18395,18394,18395,18392,-18394,18403,18398,18406,-18408,18404,18399,18406,-18410,18409,18406,18398,-18406,18407,18406,18399,-18401,18309,18310,18353,-18352,18305,18306,18378,-18380, + 18306,18307,18377,-18379,18307,18305,18379,-18378,18285,18286,18287,-18283,18371,18343,18286,-18286,18370,18288,18343,-18372,18286,18274,18277,-18288,18280,18285,18282,-18284,18288,18275,18278,-18344, + 18277,18276,-18288,18284,18371,18285,-18281,18279,18370,18371,-18285,18287,18276,18281,-18283,18408,18411,18397,-18397,18289,18290,18412,-18411,18346,18345,18396,-18398,18401,18346,18397,-18412,18301, + 18304,18298,-18298,18345,18348,18408,-18397,18348,18401,18411,-18409,18292,18300,18294,-18292,18372,18414,-18416,18374,18375,18414,-18373,18290,18289,18404,-18414,18376,18417,-18417,18297,18293,18299, + -18302,18293,18298,18304,-18300,18306,18305,18375,-18375,18300,18303,18298,-18294,18416,18417,18310,-18310,18415,18414,18375,-18374,18308,18309,18351,-18353,18352,18353,18310,-18309,18374,18373,18307, + -18307,18373,18375,18305,-18308,18400,18413,18409,-18408,18407,18409,18405,-18404,18372,18415,18373,-18375,18376,18416,18309,-18309,18308,18310,18417,-18377,18346,18401,-18351,18350,18401,18402,-18348, + 18348,18345,18349,-18402,18401,18349,18344,-18403,18500,18497,18501,-18503,18502,18501,18498,-18500,18552,18539,18551,-18423,18435,18432,18424,-18429,18538,18543,18421,-18550,18539,18538,18549,-18552, + 18426,18434,18427,-18424,18434,18435,18428,-18428,18434,18426,18425,-18430,18424,18423,18427,-18429,18429,18430,18435,-18435,18441,18442,18440,-18440,18447,18446,18449,-18449,18448,18452,18451,-18448, + 18446,18450,18453,-18450,18455,18454,18457,-18457,18456,18460,18459,-18456,18454,18458,18461,-18458,18463,18462,18465,-18465,18464,18468,18467,-18464,18462,18466,18469,-18466,18472,18470,18471,-18474, + 18476,18477,18475,-18475,18471,18470,18474,-18476,18472,18473,18477,-18477,18470,18472,18476,-18475,18473,18471,18475,-18478,18480,18478,18479,-18482,18484,18485,18483,-18483,18479,18478,18482,-18484, + 18480,18481,18485,-18485,18478,18480,18484,-18483,18481,18479,18483,-18486,18488,18486,18487,-18490,18492,18493,18491,-18491,18487,18486,18490,-18492,18488,18489,18493,-18493,18486,18488,18492,-18491, + 18489,18487,18491,-18494,18520,18519,18522,-18522,18521,18525,18524,-18521,18519,18523,18526,-18523,18528,18527,18530,-18530,18529,18533,18532,-18529,18527,18531,18534,-18531,18542,18537,18545,-18547, + 18543,18538,18545,-18549,18548,18545,18537,-18545,18546,18545,18538,-18540,18444,18443,18503,-18505,18443,18445,18505,-18504,18504,18505,18445,-18445,18438,18439,18517,-18519,18439,18440,18516,-18518, + 18440,18438,18518,-18517,18512,18513,18418,-18508,18506,18511,18513,-18513,18507,18418,18509,-18511,18547,18550,18536,-18536,18421,18422,18551,-18550,18499,18498,18535,-18537,18540,18499,18536,-18551, + 18433,18436,18430,-18430,18429,18425,18431,-18434,18425,18430,18436,-18432,18432,18435,18430,-18426,18509,18508,-18511,18539,18552,18548,-18547,18546,18548,18544,-18543,18552,18422,18421,-18544,18442, + 18437,18438,-18441,18439,18438,18437,-18442,18555,18556,18445,-18444,18554,18553,18437,-18443,18513,18496,18419,-18419,18511,18420,18496,-18514,18418,18419,18495,-18510,18495,18494,18508,-18510,18444, + 18445,18556,-18516,18515,18556,-18556,18515,18555,18443,-18445,18514,18554,18442,-18442,18441,18437,18553,-18515,18514,18553,-18555,18424,18432,18426,-18424,18499,18540,-18503,18502,18540,18541,-18501, + 18498,18540,18547,-18536,18540,18498,-18502,18540,18501,18497,-18542,18540,18550,-18548,18565,18562,18558,-18567,18569,18563,18559,-18571,18567,18564,18560,-18569,18571,18561,18557,-18573,18575,18574, + 18583,-18585,18561,18565,18566,-18558,18563,18567,18568,-18560,18578,18577,18586,-18588,18562,18569,18570,-18559,18564,18571,18572,-18561,18579,18578,18587,-18589,18580,18579,18588,-18590,18573,18574, + 18562,-18566,18575,18576,18563,-18570,18577,18578,18564,-18568,18579,18580,18561,-18572,18580,18573,18565,-18562,18576,18577,18567,-18564,18574,18575,18569,-18563,18578,18579,18571,-18565,18581,18584, + 18583,-18583,18588,18581,18582,-18590,18586,18585,18584,-18582,18587,18586,18581,-18589,18576,18575,18584,-18586,18577,18576,18585,-18587,18574,18573,18582,-18584,18573,18580,18589,-18583,18601,18596, + 18597,-18601,18598,18590,18594,-18601,18590,18591,18595,-18595,18592,18593,18597,-18597,18599,18592,18596,-18602,18595,18601,18600,-18595,18593,18598,18600,-18598,18591,18599,18601,-18596,18613,18608, + 18609,-18613,18610,18602,18606,-18613,18602,18603,18607,-18607,18604,18605,18609,-18609,18611,18604,18608,-18614,18607,18613,18612,-18607,18605,18610,18612,-18610,18603,18611,18613,-18608,18615,18616, + 18619,-18619,18633,18628,18629,-18633,18630,18622,18626,-18633,18622,18623,18627,-18627,18624,18625,18629,-18629,18631,18624,18628,-18634,18627,18633,18632,-18627,18625,18630,18632,-18630,18623,18631, + 18633,-18628,18636,18637,18640,-18640,18653,18648,18649,-18653,18650,18642,18646,-18653,18642,18643,18647,-18647,18644,18645,18649,-18649,18651,18644,18648,-18654,18647,18653,18652,-18647,18645,18650, + 18652,-18650,18643,18651,18653,-18648,18661,18657,18658,-18661,18655,18656,18658,-18658,18656,18659,18660,-18659,18673,18668,18669,-18673,18670,18662,18666,-18673,18662,18663,18667,-18667,18664,18665, + 18669,-18669,18671,18664,18668,-18674,18667,18673,18672,-18667,18665,18670,18672,-18670,18663,18671,18673,-18668,18808,18807,18681,-18685,18735,18724,18725,-18727,18735,18726,-18676,18724,18712,-18726, + 18737,18732,18733,-18737,18806,18808,18684,-18679,18762,18763,18720,-18718,18674,18713,18696,-18698,18735,18675,-18729,18764,18762,18717,-18724,18692,18686,18687,-18694,18696,18715,18714,-18698,18715, + 18710,18711,-18715,18707,18676,-18701,18809,18683,18679,-18807,18686,18691,18690,-18688,18709,18704,18705,-18709,18694,18682,-18696,18707,18698,-18677,18707,18694,18695,-18699,18694,18707,18700,-18702, + 18703,18709,18708,-18703,18694,18701,-18683,18700,18676,18682,-18702,18676,18698,18695,-18683,18677,18678,-18685,18809,18677,18681,-18808,18683,18680,-18686,18677,18684,-18682,18683,18685,-18680,18689, + 18688,18692,-18694,18689,18687,-18691,18688,18691,-18687,18688,18689,18690,-18692,18689,18693,-18688,18706,18702,-18709,18706,18699,18703,-18703,18699,18706,18705,-18705,18699,18704,-18710,18706,18708, + -18706,18699,18709,-18704,18688,18686,-18693,18724,18735,18728,-18730,18731,18737,18736,-18731,18724,18729,-18713,18728,18675,18712,-18730,18675,18726,18725,-18713,18674,18697,-18715,18713,18674,18711, + -18711,18713,18710,-18716,18674,18714,-18712,18713,18715,-18697,18765,18718,18722,-18765,18719,18717,-18721,18718,18721,-18717,18765,18719,18720,-18764,18719,18723,-18718,18734,18730,-18737,18734,18727, + 18731,-18731,18727,18734,18733,-18733,18727,18732,-18738,18734,18736,-18734,18727,18737,-18732,18718,18716,-18723,18761,18757,18758,-18761,18746,18751,18750,-18748,18752,18746,18747,-18754,18745,18741, + 18742,-18745,18740,18745,18744,-18740,18743,18739,-18745,18743,18738,18740,-18740,18738,18743,18742,-18742,18738,18741,-18746,18743,18744,-18743,18738,18745,-18741,18756,18761,18760,-18756,18749,18748, + 18752,-18754,18749,18747,-18751,18748,18751,-18747,18748,18749,18750,-18752,18749,18753,-18748,18759,18755,-18761,18759,18754,18756,-18756,18754,18759,18758,-18758,18754,18757,-18762,18759,18760,-18759, + 18754,18761,-18757,18748,18746,-18753,18716,18721,18763,-18763,18722,18716,18762,-18765,18719,18765,18764,-18724,18718,18765,18763,-18722,18789,18785,18786,-18789,18774,18779,18778,-18776,18780,18774, + 18775,-18782,18773,18769,18770,-18773,18768,18773,18772,-18768,18771,18767,-18773,18771,18766,18768,-18768,18766,18771,18770,-18770,18766,18769,-18774,18771,18772,-18771,18766,18773,-18769,18784,18789, + 18788,-18784,18777,18776,18780,-18782,18777,18775,-18779,18776,18779,-18775,18776,18777,18778,-18780,18777,18781,-18776,18787,18783,-18789,18787,18782,18784,-18784,18782,18787,18786,-18786,18782,18785, + -18790,18787,18788,-18787,18782,18789,-18785,18776,18774,-18781,18805,18801,18802,-18805,18790,18795,18794,-18792,18796,18790,18791,-18798,18800,18805,18804,-18800,18793,18792,18796,-18798,18793,18791, + -18795,18792,18795,-18791,18792,18793,18794,-18796,18793,18797,-18792,18803,18799,-18805,18803,18798,18800,-18800,18798,18803,18802,-18802,18798,18801,-18806,18803,18804,-18803,18798,18805,-18801,18792, + 18790,-18797,18685,18680,18807,-18809,18679,18685,18808,-18807,18677,18809,18806,-18679,18683,18809,18807,-18681,18617,18618,18619,-18622,18614,18620,18617,-18622,18620,18615,18618,-18618,18616,18614, + 18621,-18620,18638,18639,18640,-18642,18634,18635,18638,-18642,18635,18636,18639,-18639,18637,18634,18641,-18641,18659,18654,18661,-18661,18654,18655,18657,-18662,18816,18813,18810,-18818,18815,18819, + 18820,-18813,18821,18816,-18820,18821,18815,-18815,18813,18821,18818,-18811,18814,18815,18812,-18812,18821,18819,-18816,18819,18816,18817,-18821,18821,18814,18811,-18819,18821,18813,-18817,18828,18825, + 18822,-18830,18827,18831,18832,-18825,18833,18828,-18832,18833,18827,-18827,18825,18833,18830,-18823,18826,18827,18824,-18824,18833,18831,-18828,18831,18828,18829,-18833,18833,18826,18823,-18831,18833, + 18825,-18829,18840,18837,18834,-18842,18839,18843,18844,-18837,18845,18840,-18844,18845,18839,-18839,18837,18845,18842,-18835,18838,18839,18836,-18836,18845,18843,-18840,18843,18840,18841,-18845,18845, + 18838,18835,-18843,18845,18837,-18841,18852,18849,18846,-18854,18851,18855,18856,-18849,18857,18852,-18856,18857,18851,-18851,18849,18857,18854,-18847,18850,18851,18848,-18848,18857,18855,-18852,18855, + 18852,18853,-18857,18857,18850,18847,-18855,18857,18849,-18853,18864,18861,18858,-18866,18863,18867,18868,-18861,18869,18864,-18868,18869,18863,-18863,18861,18869,18866,-18859,18862,18863,18860,-18860, + 18869,18867,-18864,18867,18864,18865,-18869,18869,18862,18859,-18867,18869,18861,-18865,18876,18873,18870,-18878,18875,18879,18880,-18873,18881,18876,-18880,18881,18875,-18875,18873,18881,18878,-18871, + 18874,18875,18872,-18872,18881,18879,-18876,18879,18876,18877,-18881,18881,18874,18871,-18879,18881,18873,-18877,18888,18885,18882,-18890,18887,18891,18892,-18885,18893,18888,-18892,18893,18887,-18887, + 18885,18893,18890,-18883,18886,18887,18884,-18884,18893,18891,-18888,18891,18888,18889,-18893,18893,18886,18883,-18891,18893,18885,-18889,18900,18897,18894,-18902,18899,18903,18904,-18897,18905,18900, + -18904,18905,18899,-18899,18897,18905,18902,-18895,18898,18899,18896,-18896,18905,18903,-18900,18903,18900,18901,-18905,18905,18898,18895,-18903,18905,18897,-18901,18912,18909,18906,-18914,18911,18915, + 18916,-18909,18917,18912,-18916,18917,18911,-18911,18909,18917,18914,-18907,18910,18911,18908,-18908,18917,18915,-18912,18915,18912,18913,-18917,18917,18910,18907,-18915,18917,18909,-18913,18924,18921, + 18918,-18926,18923,18927,18928,-18921,18929,18924,-18928,18929,18923,-18923,18921,18929,18926,-18919,18922,18923,18920,-18920,18929,18927,-18924,18927,18924,18925,-18929,18929,18922,18919,-18927,18929, + 18921,-18925,18936,18933,18930,-18938,18935,18939,18940,-18933,18941,18936,-18940,18941,18935,-18935,18933,18941,18938,-18931,18934,18935,18932,-18932,18941,18939,-18936,18939,18936,18937,-18941,18941, + 18934,18931,-18939,18941,18933,-18937,18948,18945,18942,-18950,18947,18951,18952,-18945,18953,18948,-18952,18953,18947,-18947,18945,18953,18950,-18943,18946,18947,18944,-18944,18953,18951,-18948,18951, + 18948,18949,-18953,18953,18946,18943,-18951,18953,18945,-18949,18960,18957,18954,-18962,18959,18963,18964,-18957,18965,18960,-18964,18965,18959,-18959,18957,18965,18962,-18955,18958,18959,18956,-18956, + 18965,18963,-18960,18963,18960,18961,-18965,18965,18958,18955,-18963,18965,18957,-18961,18972,18969,18966,-18974,18971,18975,18976,-18969,18977,18972,-18976,18977,18971,-18971,18969,18977,18974,-18967, + 18970,18971,18968,-18968,18977,18975,-18972,18975,18972,18973,-18977,18977,18970,18967,-18975,18977,18969,-18973,18984,18981,18978,-18986,18983,18987,18988,-18981,18989,18984,-18988,18989,18983,-18983, + 18981,18989,18986,-18979,18982,18983,18980,-18980,18989,18987,-18984,18987,18984,18985,-18989,18989,18982,18979,-18987,18989,18981,-18985,18996,18993,18990,-18998,18995,18999,19000,-18993,19001,18996, + -19000,19001,18995,-18995,18993,19001,18998,-18991,18994,18995,18992,-18992,19001,18999,-18996,18999,18996,18997,-19001,19001,18994,18991,-18999,19001,18993,-18997,19008,19005,19002,-19010,19007,19011, + 19012,-19005,19013,19008,-19012,19013,19007,-19007,19005,19013,19010,-19003,19006,19007,19004,-19004,19013,19011,-19008,19011,19008,19009,-19013,19013,19006,19003,-19011,19013,19005,-19009,19020,19017, + 19014,-19022,19019,19023,19024,-19017,19025,19020,-19024,19025,19019,-19019,19017,19025,19022,-19015,19018,19019,19016,-19016,19025,19023,-19020,19023,19020,19021,-19025,19025,19018,19015,-19023,19025, + 19017,-19021,19032,19029,19026,-19034,19031,19035,19036,-19029,19037,19032,-19036,19037,19031,-19031,19029,19037,19034,-19027,19030,19031,19028,-19028,19037,19035,-19032,19035,19032,19033,-19037,19037, + 19030,19027,-19035,19037,19029,-19033,19058,19057,19061,-19056,19039,19038,19040,-19042,19045,19044,19043,-19043,19039,19041,19045,-19043,19040,19038,19043,-19045,19041,19040,19044,-19046,19053,19048, + -19052,19051,19050,19052,-19054,19051,19046,19047,-19051,19052,19049,19048,-19054,19054,19056,19057,-19059,19047,19046,19048,-19050,19046,19051,-19049,19055,19061,19060,-19060,19054,19058,19055,-19060, + 19057,19056,19060,-19062,20450,19067,19063,-20452,19067,19068,19064,-19064,20452,19069,19065,-20454,19069,19066,19062,-19066,20451,19063,19064,-20454,19102,19103,19104,-19106,20454,19075,19071,-20456, + 19075,19076,19072,-19072,20456,19077,19073,-20458,19077,19074,19070,-19074,20455,19071,19072,-20458,19109,19106,19102,-19106,19082,19083,19079,-19079,19083,19084,19080,-19080,19084,19085,19081,-19081, + 19085,19082,19078,-19082,19078,19079,19080,-19082,19108,19109,19105,-19105,19090,19091,19087,-19087,19091,19092,19088,-19088,19092,19093,19089,-19089,19093,19090,19086,-19090,19086,19087,19088,-19090, + 19107,19108,19104,-19104,19098,19099,19095,-19095,19099,19100,19096,-19096,19100,19101,19097,-19097,19101,19098,19094,-19098,19094,19095,19096,-19098,19106,19107,19103,-19103,19110,19111,19112,-19114, + 19117,19114,19110,-19114,19116,19117,19113,-19113,19115,19116,19112,-19112,19114,19115,19111,-19111,19118,19119,19120,-19122,19125,19122,19118,-19122,19124,19125,19121,-19121,19123,19124,19120,-19120, + 19122,19123,19119,-19119,19130,19131,19127,-19127,19131,19132,19128,-19128,19132,19133,19129,-19129,19133,19130,19126,-19130,19082,19085,19084,-19084,19106,19109,19108,-19108,19205,19204,19208,-19210, + 20454,20456,19076,-19076,20450,20452,19068,-19068,19090,19093,19092,-19092,19098,19101,19100,-19100,19114,19117,19116,-19116,19144,19145,19141,-19141,19145,19146,19142,-19142,19146,19147,19143,-19143, + 19147,19144,19140,-19144,19140,19141,19142,-19144,19180,19181,19182,-19184,19152,19153,19149,-19149,19153,19154,19150,-19150,19154,19155,19151,-19151,19155,19152,19148,-19152,19148,19149,19150,-19152, + 19503,19500,19496,-19500,20461,19161,19157,-20463,19161,19162,19158,-19158,20463,19163,19159,-20465,19163,19160,19156,-19160,20462,19157,19158,-20465,19206,19205,19209,-19211,19168,19169,19165,-19165, + 19169,19170,19166,-19166,19170,19171,19167,-19167,19171,19168,19164,-19168,19164,19165,19166,-19168,19502,19503,19499,-19499,20465,19177,19173,-20467,19177,19178,19174,-19174,20467,19179,19175,-20469, + 19179,19176,19172,-19176,20466,19173,19174,-20469,19184,19185,19181,-19181,19188,19189,19190,-19192,19501,19502,19498,-19498,19194,19195,19191,-19191,19500,19501,19497,-19497,19207,19206,19210,-19212, + 19217,19218,19214,-19214,19216,19217,19213,-19213,19243,19240,19236,-19240,19211,19210,19209,-19209,19204,19207,19211,-19209,19225,19226,19222,-19222,19224,19225,19221,-19221,19212,19213,19214,-19216, + 19219,19216,19212,-19216,19218,19219,19215,-19215,20461,20463,19162,-19162,20474,19237,19238,-20476,19203,19202,19201,-19201,19196,19199,19203,-19201,19197,19196,19200,-19202,19198,19197,19201,-19203, + 19199,19198,19202,-19204,19226,19227,19223,-19223,19227,19224,19220,-19224,19220,19221,19222,-19224,19241,19242,19238,-19238,20469,19233,19229,-20471,19233,19234,19230,-19230,20471,19235,19231,-20473, + 19235,19232,19228,-19232,20470,19229,19230,-20473,20473,19241,19237,-20475,20476,19245,19246,-20479,19251,19248,19244,-19248,20477,19251,19247,-20479,19249,19250,19246,-19246,19216,19219,19218,-19218, + 19134,19253,19255,-19136,19272,19276,19277,-19269,19264,19261,19257,-19266,19265,19257,19258,-19268,19278,19275,19271,-19280,19266,19263,19259,-19268,19277,19269,19270,-19280,19260,19264,19265,-19257, + 19256,19265,19267,-19260,19262,19266,19267,-19259,19276,19273,19269,-19278,19268,19277,19279,-19272,19274,19278,19279,-19271,20446,19285,19283,-20446,20444,19281,19285,-20447,20444,19282,19288,-20448, + 20447,19288,19290,-20449,19281,19280,19283,-19286,19139,19136,19292,-19295,20445,19283,19280,-20450,20448,19290,19291,-20450,19291,19282,19286,-19285,19282,19291,19290,-19289,19287,19289,19280,-19282, + 19137,19138,19293,-19296,19302,19300,19296,-19298,19300,19303,19298,-19297,19303,19301,19299,-19299,19301,19302,19297,-19300,19292,19137,-19296,19138,19294,-19294,19254,19139,19294,-19139,19136,19252, + 19137,-19293,19308,19309,19305,-19305,19309,19310,19306,-19306,19310,19311,19307,-19307,19311,19308,19304,-19308,19316,19317,19313,-19313,19184,19187,19186,-19186,19318,19319,19315,-19315,19319,19316, + 19312,-19316,19324,19325,19321,-19321,19326,19327,19323,-19323,19327,19324,19320,-19324,19333,19334,19330,-19330,19332,19333,19329,-19329,19334,19335,19331,-19331,19335,19332,19328,-19332,20465,20467, + 19178,-19178,19340,19341,19337,-19337,19341,19342,19338,-19338,19342,19343,19339,-19339,19343,19340,19336,-19340,19348,19349,19345,-19345,19350,19351,19347,-19347,19351,19348,19344,-19348,19356,19357, + 19353,-19353,19358,19359,19355,-19355,19359,19356,19352,-19356,19365,19366,19362,-19362,19364,19365,19361,-19361,19366,19367,19363,-19363,19367,19364,19360,-19364,19372,19373,19369,-19369,19374,19375, + 19371,-19371,19375,19372,19368,-19372,19380,19381,19377,-19377,19382,19383,19379,-19379,19383,19380,19376,-19380,19388,19389,19385,-19385,19390,19391,19387,-19387,19391,19388,19384,-19388,19396,19397, + 19393,-19393,19398,19399,19395,-19395,19399,19396,19392,-19396,19404,19405,19401,-19401,19406,19407,19403,-19403,19407,19404,19400,-19404,19412,19413,19409,-19409,19414,19415,19411,-19411,19415,19412, + 19408,-19412,19420,19421,19417,-19417,19422,19423,19419,-19419,19423,19420,19416,-19420,19428,19429,19425,-19425,19430,19431,19427,-19427,19431,19428,19424,-19428,19436,19437,19433,-19433,19437,19438, + 19434,-19434,19438,19439,19435,-19435,19439,19436,19432,-19436,19444,19445,19441,-19441,19446,19447,19443,-19443,19447,19444,19440,-19444,19452,19453,19449,-19449,19454,19455,19451,-19451,19455,19452, + 19448,-19452,19461,19462,19458,-19458,19460,19461,19457,-19457,19462,19463,19459,-19459,19463,19460,19456,-19460,19468,19469,19465,-19465,19469,19470,19466,-19466,19470,19471,19467,-19467,19471,19468, + 19464,-19468,19476,19477,19473,-19473,19478,19479,19475,-19475,19479,19476,19472,-19476,19484,19485,19481,-19481,19486,19487,19483,-19483,19487,19484,19480,-19484,19493,19494,19490,-19490,19492,19493, + 19489,-19489,19494,19495,19491,-19491,19495,19492,19488,-19492,19193,19192,19195,-19195,19511,19508,19504,-19508,19510,19511,19507,-19507,19509,19510,19506,-19506,19508,19509,19505,-19505,19519,19516, + 19512,-19516,19518,19519,19515,-19515,19517,19518,19514,-19514,19516,19517,19513,-19513,19527,19524,19520,-19524,19526,19527,19523,-19523,19525,19526,19522,-19522,19524,19525,19521,-19521,19528,19529, + 19530,-19532,19535,19532,19528,-19532,19534,19535,19531,-19531,19533,19534,19530,-19530,19532,19533,19529,-19529,19536,19537,19538,-19540,19543,19540,19536,-19540,19542,19543,19539,-19539,19541,19542, + 19538,-19538,19540,19541,19537,-19537,19551,19548,19544,-19548,19550,19551,19547,-19547,19549,19550,19546,-19546,19548,19549,19545,-19545,19559,19556,19552,-19556,19558,19559,19555,-19555,19557,19558, + 19554,-19554,19556,19557,19553,-19553,19567,19564,19560,-19564,19566,19567,19563,-19563,19565,19566,19562,-19562,19564,19565,19561,-19561,19575,19572,19568,-19572,19574,19575,19571,-19571,19573,19574, + 19570,-19570,19572,19573,19569,-19569,19583,19580,19576,-19580,19582,19583,19579,-19579,19581,19582,19578,-19578,19580,19581,19577,-19577,19591,19588,19584,-19588,19590,19591,19587,-19587,19589,19590, + 19586,-19586,19588,19589,19585,-19585,19596,19597,19593,-19593,19598,19599,19595,-19595,19599,19596,19592,-19596,19604,19605,19601,-19601,19606,19607,19603,-19603,19607,19604,19600,-19604,19612,19613, + 19609,-19609,19614,19615,19611,-19611,19615,19612,19608,-19612,19620,19621,19617,-19617,19622,19623,19619,-19619,19623,19620,19616,-19620,19628,19629,19625,-19625,19630,19631,19627,-19627,19631,19628, + 19624,-19628,19636,19637,19633,-19633,19638,19639,19635,-19635,19639,19636,19632,-19636,19630,19637,19636,-19632,19631,19636,19639,-19629,19628,19639,19638,-19630,19625,19634,19635,-19625,19624,19635, + 19632,-19628,19627,19632,19633,-19627,19641,19646,19647,-19641,19640,19647,19644,-19644,19643,19644,19645,-19643,19649,19654,19655,-19649,19648,19655,19652,-19652,19651,19652,19653,-19651,19656,19659, + 19658,-19658,19664,19665,19662,-19662,19665,19663,19660,-19663,19669,19670,19667,-19667,19672,19669,19666,-19669,19664,19670,19669,-19666,19665,19669,19672,-19664,19660,19668,19666,-19663,19662,19666, + 19667,-19662,19673,19675,19678,-19677,19674,19673,19676,-19678,19680,19685,19686,-19680,19679,19686,19683,-19683,19682,19683,19684,-19682,19687,19690,19689,-19689,19700,19697,19696,-19702,19696,19693, + 19694,-19696,19701,19696,19695,-19703,19699,19698,19697,-19701,19698,19691,19692,-19698,19697,19692,19693,-19697,19695,19694,19691,-19699,19702,19695,19698,-19700,19702,19699,19700,-19702,19707,19706, + 19705,-19709,19710,19703,19706,-19708,19709,19704,19703,-19711,19715,19714,19713,-19717,19718,19711,19714,-19716,19717,19712,19711,-19719,19723,19724,19720,-19720,19725,19726,19722,-19722,19726,19723, + 19719,-19723,19731,19732,19728,-19728,19733,19734,19730,-19730,19734,19731,19727,-19731,19725,19732,19731,-19727,19726,19731,19734,-19724,19723,19734,19733,-19725,19720,19729,19730,-19720,19719,19730, + 19727,-19723,19722,19727,19728,-19722,19736,19741,19742,-19736,19735,19742,19739,-19739,19738,19739,19740,-19738,19744,19749,19750,-19744,19743,19750,19747,-19747,19746,19747,19748,-19746,19751,19754, + 19753,-19753,19759,19760,19756,-19756,19761,19762,19758,-19758,19762,19759,19755,-19759,19767,19768,19764,-19764,19769,19770,19766,-19766,19770,19767,19763,-19767,19761,19768,19767,-19763,19762,19767, + 19770,-19760,19759,19770,19769,-19761,19756,19765,19766,-19756,19755,19766,19763,-19759,19758,19763,19764,-19758,19772,19777,19778,-19772,19771,19778,19775,-19775,19774,19775,19776,-19774,19780,19785, + 19786,-19780,19779,19786,19783,-19783,19782,19783,19784,-19782,19787,19790,19789,-19789,19795,19796,19792,-19792,19797,19798,19794,-19794,19798,19795,19791,-19795,19803,19804,19800,-19800,19805,19806, + 19802,-19802,19806,19803,19799,-19803,19797,19804,19803,-19799,19798,19803,19806,-19796,19795,19806,19805,-19797,19792,19801,19802,-19792,19791,19802,19799,-19795,19794,19799,19800,-19794,19808,19813, + 19814,-19808,19807,19814,19811,-19811,19810,19811,19812,-19810,19816,19821,19822,-19816,19815,19822,19819,-19819,19818,19819,19820,-19818,19823,19826,19825,-19825,19831,19832,19828,-19828,19833,19834, + 19830,-19830,19834,19831,19827,-19831,19839,19840,19836,-19836,19841,19842,19838,-19838,19842,19839,19835,-19839,19833,19840,19839,-19835,19834,19839,19842,-19832,19831,19842,19841,-19833,19828,19837, + 19838,-19828,19827,19838,19835,-19831,19830,19835,19836,-19830,19844,19849,19850,-19844,19843,19850,19847,-19847,19846,19847,19848,-19846,19852,19857,19858,-19852,19851,19858,19855,-19855,19854,19855, + 19856,-19854,19859,19862,19861,-19861,19867,19868,19864,-19864,19869,19870,19866,-19866,19870,19867,19863,-19867,19875,19876,19872,-19872,19877,19878,19874,-19874,19878,19875,19871,-19875,19869,19876, + 19875,-19871,19870,19875,19878,-19868,19867,19878,19877,-19869,19864,19873,19874,-19864,19863,19874,19871,-19867,19866,19871,19872,-19866,19880,19885,19886,-19880,19879,19886,19883,-19883,19882,19883, + 19884,-19882,19888,19893,19894,-19888,19887,19894,19891,-19891,19890,19891,19892,-19890,19895,19898,19897,-19897,19903,19904,19900,-19900,19905,19906,19902,-19902,19906,19903,19899,-19903,19911,19912, + 19908,-19908,19913,19914,19910,-19910,19914,19911,19907,-19911,19905,19912,19911,-19907,19906,19911,19914,-19904,19903,19914,19913,-19905,19900,19909,19910,-19900,19899,19910,19907,-19903,19902,19907, + 19908,-19902,19916,19921,19922,-19916,19915,19922,19919,-19919,19918,19919,19920,-19918,19924,19929,19930,-19924,19923,19930,19927,-19927,19926,19927,19928,-19926,19931,19934,19933,-19933,19938,19939, + 19936,-19936,19941,19938,19935,-19938,19674,19939,19938,-19674,19673,19938,19941,-19676,19678,19937,19935,-19677,19676,19935,19936,-19678,19943,19948,19949,-19943,19942,19949,19946,-19946,19945,19946, + 19947,-19945,19950,19953,19952,-19952,19969,19965,19990,-19992,19959,19969,19991,-19956,19957,19959,19962,-19961,19958,19957,19960,-19962,19966,19967,19964,-19964,19969,19966,19963,-19966,19958,19967, + 19966,-19958,19957,19966,19969,-19960,19962,19965,19963,-19961,19960,19963,19964,-19962,19971,19976,19977,-19971,19970,19977,19974,-19974,19973,19974,19975,-19973,19978,19981,19980,-19980,19937,19678, + 19987,-19989,19660,19663,19983,-19983,19675,19941,19989,-19987,19941,19937,19988,-19990,19668,19660,19982,-19985,19678,19675,19986,-19988,19663,19672,19985,-19984,19672,19668,19984,-19986,19965,19962, + 19954,-19991,19962,19959,19955,-19955,19996,19997,19993,-19993,19998,19999,19995,-19995,19999,19996,19992,-19996,20004,20005,20001,-20001,20006,20007,20003,-20003,20007,20004,20000,-20004,19998,20005, + 20004,-20000,19999,20004,20007,-19997,19996,20007,20006,-19998,20017,20014,20013,-20019,20013,20010,20011,-20013,20018,20013,20012,-20020,20016,20015,20014,-20018,20015,20008,20009,-20015,20014,20009, + 20010,-20014,20012,20011,20008,-20016,20019,20012,20015,-20017,20019,20016,20017,-20019,20024,20023,20022,-20026,20027,20020,20023,-20025,20026,20021,20020,-20028,20032,20031,20030,-20034,20035,20028, + 20031,-20033,20034,20029,20028,-20036,20040,20041,20037,-20037,20042,20043,20039,-20039,20043,20040,20036,-20040,20048,20049,20045,-20045,20050,20051,20047,-20047,20051,20048,20044,-20048,20042,20049, + 20048,-20044,20043,20048,20051,-20041,20040,20051,20050,-20042,20037,20046,20047,-20037,20036,20047,20044,-20040,20039,20044,20045,-20039,20053,20058,20059,-20053,20052,20059,20056,-20056,20055,20056, + 20057,-20055,20061,20066,20067,-20061,20060,20067,20064,-20064,20063,20064,20065,-20063,20068,20071,20070,-20070,20076,20077,20073,-20073,20078,20079,20075,-20075,20079,20076,20072,-20076,20084,20085, + 20081,-20081,20086,20087,20083,-20083,20087,20084,20080,-20084,20078,20085,20084,-20080,20079,20084,20087,-20077,20092,20093,20089,-20089,20093,20094,20090,-20090,20094,20095,20091,-20091,20095,20092, + 20088,-20092,20088,20089,20090,-20092,20095,20094,20093,-20093,20100,20101,20097,-20097,20101,20102,20098,-20098,20102,20103,20099,-20099,20103,20100,20096,-20100,20096,20097,20098,-20100,20103,20102, + 20101,-20101,20108,20109,20105,-20105,20109,20110,20106,-20106,20110,20111,20107,-20107,20111,20108,20104,-20108,20104,20105,20106,-20108,20111,20110,20109,-20109,20116,20117,20113,-20113,20117,20118, + 20114,-20114,20118,20119,20115,-20115,20119,20116,20112,-20116,20112,20113,20114,-20116,20119,20118,20117,-20117,20124,20125,20121,-20121,20125,20126,20122,-20122,20126,20127,20123,-20123,20127,20124, + 20120,-20124,20120,20121,20122,-20124,20127,20126,20125,-20125,20132,20133,20129,-20129,20133,20134,20130,-20130,20140,20141,20137,-20137,20135,20132,20128,-20132,20128,20129,20130,-20132,20135,20134, + 20133,-20133,20141,20142,20138,-20138,20143,20140,20136,-20140,20136,20137,20138,-20140,20143,20142,20141,-20141,20148,20149,20145,-20145,20149,20150,20146,-20146,20151,20148,20144,-20148,20144,20145, + 20146,-20148,20151,20150,20149,-20149,20156,20157,20153,-20153,20157,20158,20154,-20154,20159,20156,20152,-20156,20152,20153,20154,-20156,20159,20158,20157,-20157,20164,20165,20161,-20161,20165,20166, + 20162,-20162,20167,20164,20160,-20164,20160,20161,20162,-20164,20167,20166,20165,-20165,20172,20173,20169,-20169,20173,20174,20170,-20170,20175,20172,20168,-20172,20168,20169,20170,-20172,20175,20174, + 20173,-20173,20180,20181,20177,-20177,20181,20182,20178,-20178,20183,20180,20176,-20180,20176,20177,20178,-20180,20183,20182,20181,-20181,20188,20189,20185,-20185,20189,20190,20186,-20186,20191,20188, + 20184,-20188,20184,20185,20186,-20188,20191,20190,20189,-20189,20196,20197,20193,-20193,20197,20198,20194,-20194,20199,20196,20192,-20196,20192,20193,20194,-20196,20199,20198,20197,-20197,20204,20205, + 20201,-20201,20205,20206,20202,-20202,20207,20204,20200,-20204,20200,20201,20202,-20204,20207,20206,20205,-20205,20212,20213,20209,-20209,20213,20214,20210,-20210,20215,20212,20208,-20212,20208,20209, + 20210,-20212,20215,20214,20213,-20213,20220,20221,20217,-20217,20221,20222,20218,-20218,20223,20220,20216,-20220,20216,20217,20218,-20220,20223,20222,20221,-20221,20228,20229,20225,-20225,20229,20230, + 20226,-20226,20231,20228,20224,-20228,20224,20225,20226,-20228,20231,20230,20229,-20229,20236,20237,20233,-20233,20237,20238,20234,-20234,20239,20236,20232,-20236,20232,20233,20234,-20236,20239,20238, + 20237,-20237,20244,20245,20241,-20241,20245,20246,20242,-20242,20247,20244,20240,-20244,20240,20241,20242,-20244,20247,20246,20245,-20245,20252,20253,20249,-20249,20253,20254,20250,-20250,20255,20252, + 20248,-20252,20248,20249,20250,-20252,20255,20254,20253,-20253,20458,20257,20261,-20460,20458,20258,20264,-20461,20257,20256,20259,-20262,20260,20259,20256,-20268,20265,20266,20267,-20257,20263,20265, + 20256,-20258,20268,20269,-20271,20275,20282,20279,-20279,20303,20273,20285,-20275,20278,20279,20280,-20278,20283,20284,20280,-20280,20273,20272,20281,-20286,20286,20283,20279,-20283,20277,20284,20283, + -20279,20278,20283,20286,-20276,20272,20271,20276,-20282,20311,20306,20310,-20308,20303,20271,20272,-20274,20285,20281,20276,-20275,20288,20293,20294,-20288,20287,20294,20291,-20291,20290,20291,20292, + -20290,20296,20301,20302,-20296,20295,20302,20299,-20299,20298,20299,20300,-20298,20306,20305,20309,-20311,20305,20304,20308,-20310,20311,20304,20305,-20307,20310,20309,20308,-20308,20319,20314,20318, + -20316,20314,20313,20317,-20319,20313,20312,20316,-20318,20319,20312,20313,-20315,20318,20317,20316,-20316,20327,20322,20326,-20324,20322,20321,20325,-20327,20321,20320,20324,-20326,20327,20320,20321, + -20323,20326,20325,20324,-20324,20335,20330,20334,-20332,20330,20329,20333,-20335,20329,20328,20332,-20334,20335,20328,20329,-20331,20334,20333,20332,-20332,20343,20338,20342,-20340,20338,20337,20341, + -20343,20337,20336,20340,-20342,20343,20336,20337,-20339,20342,20341,20340,-20340,20351,20346,20350,-20348,20346,20345,20349,-20351,20345,20344,20348,-20350,20351,20344,20345,-20347,20350,20349,20348, + -20348,20359,20354,20358,-20356,20354,20353,20357,-20359,20353,20352,20356,-20358,20359,20352,20353,-20355,20358,20357,20356,-20356,20367,20362,20366,-20364,20362,20361,20365,-20367,20361,20360,20364, + -20366,20367,20360,20361,-20363,20366,20365,20364,-20364,20368,20369,20370,-20372,20375,20372,20368,-20372,20374,20375,20371,-20371,20373,20374,20370,-20370,20372,20373,20369,-20369,20372,20375,20374, + -20374,20383,20380,20376,-20380,20382,20383,20379,-20379,20381,20382,20378,-20378,20380,20381,20377,-20377,20391,20388,20384,-20388,20390,20391,20387,-20387,20389,20390,20386,-20386,20388,20389,20385, + -20385,20399,20396,20392,-20396,20398,20399,20395,-20395,20397,20398,20394,-20394,20396,20397,20393,-20393,20407,20404,20400,-20404,20406,20407,20403,-20403,20405,20406,20402,-20402,20404,20405,20401, + -20401,20408,20409,20410,-20412,20415,20412,20408,-20412,20414,20415,20411,-20411,20413,20414,20410,-20410,20412,20413,20409,-20409,20412,20415,20414,-20414,20416,20417,20418,-20420,20423,20420,20416, + -20420,20422,20423,20419,-20419,20424,20425,20426,-20428,20420,20421,20417,-20417,20420,20423,20422,-20422,20431,20428,20424,-20428,20430,20431,20427,-20427,20428,20429,20425,-20425,20428,20431,20430, + -20430,20435,20434,20433,-20433,20435,20432,20440,-20442,20436,20439,20438,-20438,20443,20442,20441,-20441,20439,20436,20442,-20444,20432,20439,20443,-20441,20436,20435,20441,-20443,19286,20446,20445, + -19285,19282,20444,20446,-19287,19281,20444,20447,-19288,19287,20447,20448,-19290,19284,20445,20449,-19292,19289,20448,20449,-19281,19066,20450,20451,-19063,19068,20452,20453,-19065,19062,20451,20453, + -19066,19066,19069,20452,-20451,19074,20454,20455,-19071,19076,20456,20457,-19073,19070,20455,20457,-19074,19074,19077,20456,-20455,20258,20458,20459,-20263,20257,20458,20460,-20264,19160,20461,20462, + -19157,19162,20463,20464,-19159,19156,20462,20464,-19160,19160,19163,20463,-20462,19176,20465,20466,-19173,19178,20467,20468,-19175,19172,20466,20468,-19176,19176,19179,20467,-20466,19232,20469,20470, + -19229,19234,20471,20472,-19231,19228,20470,20472,-19232,19236,20474,20475,-19240,19240,20473,20474,-19237,19244,20476,20478,-19248,19250,20477,20478,-19247,20483,20484,20480,-20480,20485,20486,20482, + -20482,20486,20483,20479,-20483,20491,20492,20488,-20488,20493,20494,20490,-20490,20494,20491,20487,-20491,20499,20500,20496,-20496,20501,20502,20498,-20498,20502,20499,20495,-20499,20507,20508,20504, + -20504,20509,20510,20506,-20506,20510,20507,20503,-20507,20515,20516,20512,-20512,20517,20518,20514,-20514,20518,20515,20511,-20515,20523,20524,20520,-20520,20525,20526,20522,-20522,20526,20523,20519, + -20523,20531,20532,20528,-20528,20533,20534,20530,-20530,20534,20531,20527,-20531,20539,20540,20536,-20536,20541,20542,20538,-20538,20542,20539,20535,-20539,20547,20548,20544,-20544,20549,20550,20546, + -20546,20550,20547,20543,-20547,20555,20556,20552,-20552,20557,20558,20554,-20554,20558,20555,20551,-20555,20579,20578,20582,-20577,20560,20559,20561,-20563,20566,20565,20564,-20564,20560,20562,20566, + -20564,20561,20559,20564,-20566,20562,20561,20565,-20567,20574,20569,-20573,20572,20571,20573,-20575,20572,20567,20568,-20572,20573,20570,20569,-20575,20575,20577,20578,-20580,20568,20567,20569,-20571, + 20567,20572,-20570,20576,20582,20581,-20581,20575,20579,20576,-20581,20578,20577,20581,-20583,20603,20602,20606,-20601,20584,20583,20585,-20587,20590,20589,20588,-20588,20584,20586,20590,-20588,20585, + 20583,20588,-20590,20586,20585,20589,-20591,20598,20593,-20597,20596,20595,20597,-20599,20596,20591,20592,-20596,20597,20594,20593,-20599,20599,20601,20602,-20604,20592,20591,20593,-20595,20591,20596, + -20594,20600,20606,20605,-20605,20599,20603,20600,-20605,20602,20601,20605,-20607,20627,20626,20630,-20625,20608,20607,20609,-20611,20614,20613,20612,-20612,20608,20610,20614,-20612,20609,20607,20612, + -20614,20610,20609,20613,-20615,20622,20617,-20621,20620,20619,20621,-20623,20620,20615,20616,-20620,20621,20618,20617,-20623,20623,20625,20626,-20628,20616,20615,20617,-20619,20615,20620,-20618,20624, + 20630,20629,-20629,20623,20627,20624,-20629,20626,20625,20629,-20631,20639,20638,-20641,20704,20701,20706,-20708,20707,20706,20702,-20704,20770,20757,20769,-20648,20660,20657,20649,-20654,20756,20761, + 20646,-20768,20757,20756,20767,-20770,20651,20659,20652,-20649,20659,20660,20653,-20653,20659,20651,20650,-20655,20649,20648,20652,-20654,20654,20655,20660,-20660,20669,20668,20671,-20671,20670,20674, + 20673,-20670,20668,20672,20675,-20672,20678,20676,20677,-20680,20682,20683,20681,-20681,20677,20676,20680,-20682,20678,20679,20683,-20683,20676,20678,20682,-20681,20679,20677,20681,-20684,20686,20684, + 20685,-20688,20690,20691,20689,-20689,20685,20684,20688,-20690,20686,20687,20691,-20691,20684,20686,20690,-20689,20687,20685,20689,-20692,20694,20692,20693,-20696,20698,20699,20697,-20697,20693,20692, + 20696,-20698,20694,20695,20699,-20699,20692,20694,20698,-20697,20695,20693,20697,-20700,20700,20635,20631,-20644,20712,20711,20714,-20714,20716,20715,20718,-20718,20713,20721,20720,-20713,20717,20725, + 20724,-20717,20711,20719,20722,-20715,20715,20723,20726,-20719,20738,20737,20740,-20740,20739,20743,20742,-20739,20737,20741,20744,-20741,20752,20748,20745,-20750,20750,20746,20747,-20752,20751,20752, + 20749,-20751,20760,20755,20763,-20765,20761,20756,20763,-20767,20766,20763,20755,-20763,20764,20763,20756,-20758,20666,20667,20710,-20709,20662,20663,20735,-20737,20663,20664,20734,-20736,20664,20662, + 20736,-20735,20642,20643,20644,-20640,20728,20700,20643,-20643,20727,20645,20700,-20729,20643,20631,20634,-20645,20637,20642,20639,-20641,20645,20632,20635,-20701,20634,20633,-20645,20641,20728,20642, + -20638,20636,20727,20728,-20642,20644,20633,20638,-20640,20765,20768,20754,-20754,20646,20647,20769,-20768,20703,20702,20753,-20755,20758,20703,20754,-20769,20658,20661,20655,-20655,20702,20705,20765, + -20754,20705,20758,20768,-20766,20649,20657,20651,-20649,20729,20771,-20773,20731,20732,20771,-20730,20647,20646,20761,-20771,20733,20774,-20774,20654,20650,20656,-20659,20650,20655,20661,-20657,20663, + 20662,20732,-20732,20657,20660,20655,-20651,20773,20774,20667,-20667,20772,20771,20732,-20731,20665,20666,20708,-20710,20709,20710,20667,-20666,20731,20730,20664,-20664,20730,20732,20662,-20665,20757, + 20770,20766,-20765,20764,20766,20762,-20761,20729,20772,20730,-20732,20733,20773,20666,-20666,20665,20667,20774,-20734,20703,20758,-20708,20707,20758,20759,-20705,20705,20702,20706,-20759,20758,20706, + 20701,-20760,20857,20854,20858,-20860,20859,20858,20855,-20857,20909,20896,20908,-20780,20792,20789,20781,-20786,20895,20900,20778,-20907,20896,20895,20906,-20909,20783,20791,20784,-20781,20791,20792, + 20785,-20785,20791,20783,20782,-20787,20781,20780,20784,-20786,20786,20787,20792,-20792,20798,20799,20797,-20797,20804,20803,20806,-20806,20805,20809,20808,-20805,20803,20807,20810,-20807,20812,20811, + 20814,-20814,20813,20817,20816,-20813,20811,20815,20818,-20815,20820,20819,20822,-20822,20821,20825,20824,-20821,20819,20823,20826,-20823,20829,20827,20828,-20831,20833,20834,20832,-20832,20828,20827, + 20831,-20833,20829,20830,20834,-20834,20827,20829,20833,-20832,20830,20828,20832,-20835,20837,20835,20836,-20839,20841,20842,20840,-20840,20836,20835,20839,-20841,20837,20838,20842,-20842,20835,20837, + 20841,-20840,20838,20836,20840,-20843,20845,20843,20844,-20847,20849,20850,20848,-20848,20844,20843,20847,-20849,20845,20846,20850,-20850,20843,20845,20849,-20848,20846,20844,20848,-20851,20877,20876, + 20879,-20879,20878,20882,20881,-20878,20876,20880,20883,-20880,20885,20884,20887,-20887,20886,20890,20889,-20886,20884,20888,20891,-20888,20899,20894,20902,-20904,20900,20895,20902,-20906,20905,20902, + 20894,-20902,20903,20902,20895,-20897,20801,20800,20860,-20862,20800,20802,20862,-20861,20861,20862,20802,-20802,20795,20796,20874,-20876,20796,20797,20873,-20875,20797,20795,20875,-20874,20869,20870, + 20775,-20865,20863,20868,20870,-20870,20864,20775,20866,-20868,20904,20907,20893,-20893,20778,20779,20908,-20907,20856,20855,20892,-20894,20897,20856,20893,-20908,20790,20793,20787,-20787,20786,20782, + 20788,-20791,20782,20787,20793,-20789,20789,20792,20787,-20783,20866,20865,-20868,20896,20909,20905,-20904,20903,20905,20901,-20900,20909,20779,20778,-20901,20799,20794,20795,-20798,20796,20795,20794, + -20799,20912,20913,20802,-20801,20911,20910,20794,-20800,20870,20853,20776,-20776,20868,20777,20853,-20871,20775,20776,20852,-20867,20852,20851,20865,-20867,20801,20802,20913,-20873,20872,20913,-20913, + 20872,20912,20800,-20802,20871,20911,20799,-20799,20798,20794,20910,-20872,20871,20910,-20912,20781,20789,20783,-20781,20856,20897,-20860,20859,20897,20898,-20858,20855,20897,20904,-20893,20897,20855, + -20859,20897,20858,20854,-20899,20897,20907,-20905,20926,20927,20928,-20930,20933,20930,20926,-20930,20918,20919,20916,-20916,20932,20933,20929,-20929,20931,20932,20928,-20928,20923,20924,20921,-20921, + 20930,20931,20927,-20927,20938,20939,20935,-20935,20944,20945,20941,-20941,20945,20946,20942,-20942,20946,20947,20943,-20943,20947,20944,20940,-20944,20930,20933,20932,-20932,20988,20987,20990,-20992, + 20936,20939,20938,-20938,20965,20966,20967,-20969,21192,21190,21187,-21190,21463,20958,20955,-21465,20969,20970,20966,-20966,20973,20974,20975,-20977,20979,20980,20976,-20976,21190,21191,21188,-21188, + 21018,21015,21011,-21015,20997,20998,20995,-20995,21462,21463,20957,-20957,21469,21012,21013,-21471,20982,20981,20985,-20987,21003,21004,21002,-21002,20999,21000,21001,-21003,21016,21017,21013,-21013, + 21466,21010,21006,-21468,21468,21016,21012,-21470,21471,21020,21021,-21474,21026,21023,21019,-21023,21472,21026,21022,-21474,21024,21025,21021,-21021,21044,21048,21049,-21043,21038,21035,21031,-21040, + 21039,21031,21032,-21042,21040,21037,21033,-21042,21034,21038,21039,-21031,21030,21039,21041,-21034,21036,21040,21041,-21033,21048,21045,21043,-21050,21455,21056,21054,-21455,21453,21052,21056,-21456, + 21453,21053,21059,-21457,21456,21059,21061,-21458,21052,21051,21054,-21057,20952,20949,21063,-21066,21454,21054,21051,-21459,21457,21061,21062,-21459,21062,21053,21057,-21056,21053,21062,21061,-21060, + 21058,21060,21051,-21053,20950,20951,21064,-21067,21070,21071,21067,-21069,21063,20950,-21067,20951,21065,-21065,21029,20952,21065,-20952,20949,21027,20950,-21064,21076,21077,21074,-21074,21077,21078, + 21075,-21075,20969,20972,20971,-20971,21082,21081,21079,-21081,21086,21085,21083,-21085,21092,21090,21087,-21090,21097,21098,21094,-21094,21098,21099,21095,-21095,21099,21100,21096,-21096,21100,21097, + 21093,-21097,21104,21103,21101,-21103,21108,21107,21105,-21107,21114,21112,21109,-21112,21118,21117,21115,-21117,21122,21121,21119,-21121,21126,21125,21123,-21125,21130,21129,21127,-21129,21134,21133, + 21131,-21133,21138,21137,21135,-21137,21142,21141,21139,-21141,21147,21148,21144,-21144,21148,21149,21145,-21145,21149,21150,21146,-21146,21150,21147,21143,-21147,21154,21153,21151,-21153,21158,21157, + 21155,-21157,21164,21165,21161,-21161,21163,21164,21160,-21160,21165,21166,21162,-21162,21166,21163,21159,-21163,21171,21172,21169,-21169,21176,21175,21173,-21175,21180,21179,21177,-21179,21184,21185, + 21182,-21182,21186,21184,21181,-21184,20978,20977,20980,-20980,21198,21196,21193,-21196,21196,21197,21194,-21194,21203,21204,21201,-21201,21202,21203,21200,-21200,21209,21210,21207,-21207,21208,21209, + 21206,-21206,21214,21213,21211,-21213,21218,21217,21215,-21217,21222,21221,21219,-21221,21226,21225,21223,-21225,21227,21228,21230,-21230,21235,21236,21233,-21233,21236,21234,21231,-21234,21240,21241, + 21238,-21238,21243,21240,21237,-21240,21235,21241,21240,-21237,21236,21240,21243,-21235,21231,21239,21237,-21234,21233,21237,21238,-21233,21244,21246,21249,-21248,21245,21244,21247,-21249,21250,21253, + 21252,-21252,21254,21257,21256,-21256,21267,21264,21263,-21269,21263,21260,21261,-21263,21268,21263,21262,-21270,21266,21265,21264,-21268,21265,21258,21259,-21265,21264,21259,21260,-21264,21262,21261, + 21258,-21266,21269,21262,21265,-21267,21269,21266,21267,-21269,21273,21270,21271,-21273,21277,21274,21275,-21277,21282,21283,21279,-21279,21284,21285,21281,-21281,21285,21282,21278,-21282,21290,21291, + 21287,-21287,21292,21293,21289,-21289,21293,21290,21286,-21290,21284,21291,21290,-21286,21285,21290,21293,-21283,21282,21293,21292,-21284,21279,21288,21289,-21279,21278,21289,21286,-21282,21281,21286, + 21287,-21281,21294,21297,21296,-21296,21298,21301,21300,-21300,21302,21305,21304,-21304,21310,21311,21307,-21307,21312,21313,21309,-21309,21313,21310,21306,-21310,21318,21319,21315,-21315,21320,21321, + 21317,-21317,21321,21318,21314,-21318,21312,21319,21318,-21314,21313,21318,21321,-21311,21310,21321,21320,-21312,21307,21316,21317,-21307,21306,21317,21314,-21310,21309,21314,21315,-21309,21322,21325, + 21324,-21324,21326,21329,21328,-21328,21330,21333,21332,-21332,21334,21335,21337,-21337,21341,21340,21338,-21340,21346,21347,21343,-21343,21349,21345,21348,-21345,21348,21342,21343,-21345,21357,21352, + -21356,21356,21357,21355,-21355,21349,21347,21346,-21346,21351,21354,21355,-21351,21352,21357,21356,-21354,21352,21353,21351,-21351,21350,21355,-21353,21362,21363,21359,-21359,21363,21365,21360,-21360, + 21364,21362,21358,-21362,21358,21359,21360,-21362,21364,21365,21363,-21363,21345,21346,21342,-21349,21369,21370,21367,-21367,21372,21369,21366,-21369,21245,21370,21369,-21245,21244,21369,21372,-21247, + 21249,21368,21366,-21248,21247,21366,21367,-21249,21373,21376,21375,-21375,21377,21380,21379,-21379,21368,21249,21388,-21390,21231,21234,21384,-21384,21246,21372,21390,-21388,21372,21368,21389,-21391, + 21239,21231,21383,-21386,21249,21246,21387,-21389,21234,21243,21386,-21385,21243,21239,21385,-21387,20987,20989,-20991,21394,21393,21391,-21393,20989,20992,20991,-20991,21398,21397,21395,-21397,21394, + 21397,21398,-21394,20992,20988,-20992,21570,21571,21573,-21569,21427,21459,21461,-21434,21459,21427,21429,-21461,21402,21401,21426,-21425,21399,21401,-21403,21069,21072,21028,-20949,21071,21069,20948, + -21068,21406,21405,21403,-21405,20948,21028,21068,-21068,21004,20999,-21003,21410,21409,21407,-21409,20983,20982,-20987,21406,21409,21410,-21406,20981,20984,-20986,20984,20983,20986,-20986,21403,21408, + 21407,-21405,21000,21003,-21002,21411,21414,21413,-21413,21415,21418,21417,-21417,21419,21422,21421,-21421,21426,21401,21400,-21426,21402,21424,21423,-21400,21072,21070,21068,-21029,21459,21428,21432, + -21462,21430,21429,21427,-21436,21433,21434,21435,-21428,21436,21437,-21439,21439,21442,21441,-21441,21444,21443,21441,-21443,21440,21443,21444,-21440,21445,21448,21447,-21447,21449,21452,21451,-21451, + 21057,21455,21454,-21056,21053,21453,21455,-21058,21052,21453,21456,-21059,21058,21456,21457,-21061,21055,21454,21458,-21063,21060,21457,21458,-21052,21428,21459,21460,-21432,20957,21463,21464,-20955, + 21011,21469,21470,-21015,21015,21468,21469,-21012,21019,21471,21473,-21023,21025,21472,21473,-21022,21477,21476,21474,-21476,21481,21480,21478,-21480,21485,21484,21482,-21484,21489,21488,21486,-21488, + 21493,21492,21490,-21492,21497,21496,21494,-21496,21501,21500,21498,-21500,21505,21504,21502,-21504,21509,21508,21506,-21508,21513,21512,21510,-21512,21534,21533,21537,-21532,21515,21514,21516,-21518, + 21521,21520,21519,-21519,21515,21517,21521,-21519,21516,21514,21519,-21521,21517,21516,21520,-21522,21529,21524,-21528,21527,21526,21528,-21530,21527,21522,21523,-21527,21528,21525,21524,-21530,21530, + 21532,21533,-21535,21523,21522,21524,-21526,21522,21527,-21525,21531,21537,21536,-21536,21530,21534,21531,-21536,21533,21532,21536,-21538,21558,21557,21561,-21556,21539,21538,21540,-21542,21545,21544, + 21543,-21543,21539,21541,21545,-21543,21540,21538,21543,-21545,21541,21540,21544,-21546,21553,21548,-21552,21551,21550,21552,-21554,21551,21546,21547,-21551,21552,21549,21548,-21554,21554,21556,21557, + -21559,21547,21546,21548,-21550,21546,21551,-21549,21555,21561,21560,-21560,21554,21558,21555,-21560,21557,21556,21560,-21562,21567,21565,21562,-21565,21565,21566,21563,-21563,20936,20937,20934,-20936, + 20920,20921,20922,-20926,20925,20923,-20921,20924,20922,-20922,20914,20917,20915,-20917,20919,20914,-20917,20917,20918,-20916,21399,21400,-21402,21571,21569,21572,-21574,20939,20936,-20936,20937,20938, + -20935,20914,20919,20918,-20918,20923,20925,20922,-20925,20956,20957,-20955,20958,20953,-20956,21462,20956,20954,-21465,21191,21192,21189,-21189,20962,20963,-20961,20964,20961,-20960,20996,20997,-20995, + 20993,20996,20994,-20996,20998,20993,-20996,21465,21008,21005,-21468,21008,21009,-21006,21010,21007,-21007,20993,20998,20997,-20997,21049,21043,21046,-21051,21042,21049,21050,-21048,21078,21076,21073, + -21076,21090,21091,21088,-21088,21091,21092,21089,-21089,21112,21113,21110,-21110,21113,21114,21111,-21111,21170,21171,21168,-21168,21172,21170,21167,-21170,21185,21186,21183,-21183,21197,21198,21195, + -21195,21204,21202,21199,-21202,21210,21208,21205,-21208,21569,21570,21568,-21573,20953,21462,21464,-20956,20953,20958,21463,-21463,20961,20962,20960,-20960,20959,20960,20963,-20965,20961,20964,20963, + -20963,21007,21465,21467,-21007,21009,21466,21467,-21006,21566,21567,21564,-21564,21586,21587,21588,-21590,21593,21590,21586,-21590,21578,21579,21576,-21576,21592,21593,21589,-21589,21591,21592,21588, + -21588,21583,21584,21581,-21581,21590,21591,21587,-21587,21598,21599,21595,-21595,21604,21605,21601,-21601,21605,21606,21602,-21602,21606,21607,21603,-21603,21607,21604,21600,-21604,21590,21593,21592, + -21592,21648,21647,21650,-21652,21596,21599,21598,-21598,21625,21626,21627,-21629,21852,21850,21847,-21850,22123,21618,21615,-22125,21629,21630,21626,-21626,21633,21634,21635,-21637,21639,21640,21636, + -21636,21850,21851,21848,-21848,21678,21675,21671,-21675,21657,21658,21655,-21655,22122,22123,21617,-21617,22129,21672,21673,-22131,21642,21641,21645,-21647,21663,21664,21662,-21662,21659,21660,21661, + -21663,21676,21677,21673,-21673,22126,21670,21666,-22128,22128,21676,21672,-22130,22131,21680,21681,-22134,21686,21683,21679,-21683,22132,21686,21682,-22134,21684,21685,21681,-21681,21704,21708,21709, + -21703,21698,21695,21691,-21700,21699,21691,21692,-21702,21700,21697,21693,-21702,21694,21698,21699,-21691,21690,21699,21701,-21694,21696,21700,21701,-21693,21708,21705,21703,-21710,22115,21716,21714, + -22115,22113,21712,21716,-22116,22113,21713,21719,-22117,22116,21719,21721,-22118,21712,21711,21714,-21717,21612,21609,21723,-21726,22114,21714,21711,-22119,22117,21721,21722,-22119,21722,21713,21717, + -21716,21713,21722,21721,-21720,21718,21720,21711,-21713,21610,21611,21724,-21727,21730,21731,21727,-21729,21723,21610,-21727,21611,21725,-21725,21689,21612,21725,-21612,21609,21687,21610,-21724,21736, + 21737,21734,-21734,21737,21738,21735,-21735,21629,21632,21631,-21631,21742,21741,21739,-21741,21746,21745,21743,-21745,21752,21750,21747,-21750,21757,21758,21754,-21754,21758,21759,21755,-21755,21759, + 21760,21756,-21756,21760,21757,21753,-21757,21764,21763,21761,-21763,21768,21767,21765,-21767,21774,21772,21769,-21772,21778,21777,21775,-21777,21782,21781,21779,-21781,21786,21785,21783,-21785,21790, + 21789,21787,-21789,21794,21793,21791,-21793,21798,21797,21795,-21797,21802,21801,21799,-21801,21807,21808,21804,-21804,21808,21809,21805,-21805,21809,21810,21806,-21806,21810,21807,21803,-21807,21814, + 21813,21811,-21813,21818,21817,21815,-21817,21824,21825,21821,-21821,21823,21824,21820,-21820,21825,21826,21822,-21822,21826,21823,21819,-21823,21831,21832,21829,-21829,21836,21835,21833,-21835,21840, + 21839,21837,-21839,21844,21845,21842,-21842,21846,21844,21841,-21844,21638,21637,21640,-21640,21858,21856,21853,-21856,21856,21857,21854,-21854,21863,21864,21861,-21861,21862,21863,21860,-21860,21869, + 21870,21867,-21867,21868,21869,21866,-21866,21874,21873,21871,-21873,21878,21877,21875,-21877,21882,21881,21879,-21881,21886,21885,21883,-21885,21887,21888,21890,-21890,21895,21896,21893,-21893,21896, + 21894,21891,-21894,21900,21901,21898,-21898,21903,21900,21897,-21900,21895,21901,21900,-21897,21896,21900,21903,-21895,21891,21899,21897,-21894,21893,21897,21898,-21893,21904,21906,21909,-21908,21905, + 21904,21907,-21909,21910,21913,21912,-21912,21914,21917,21916,-21916,21927,21924,21923,-21929,21923,21920,21921,-21923,21928,21923,21922,-21930,21926,21925,21924,-21928,21925,21918,21919,-21925,21924, + 21919,21920,-21924,21922,21921,21918,-21926,21929,21922,21925,-21927,21929,21926,21927,-21929,21933,21930,21931,-21933,21937,21934,21935,-21937,21942,21943,21939,-21939,21944,21945,21941,-21941,21945, + 21942,21938,-21942,21950,21951,21947,-21947,21952,21953,21949,-21949,21953,21950,21946,-21950,21944,21951,21950,-21946,21945,21950,21953,-21943,21942,21953,21952,-21944,21939,21948,21949,-21939,21938, + 21949,21946,-21942,21941,21946,21947,-21941,21954,21957,21956,-21956,21958,21961,21960,-21960,21962,21965,21964,-21964,21970,21971,21967,-21967,21972,21973,21969,-21969,21973,21970,21966,-21970,21978, + 21979,21975,-21975,21980,21981,21977,-21977,21981,21978,21974,-21978,21972,21979,21978,-21974,21973,21978,21981,-21971,21970,21981,21980,-21972,21967,21976,21977,-21967,21966,21977,21974,-21970,21969, + 21974,21975,-21969,21982,21985,21984,-21984,21986,21989,21988,-21988,21990,21993,21992,-21992,21994,21995,21997,-21997,22001,22000,21998,-22000,22006,22007,22003,-22003,22009,22005,22008,-22005,22008, + 22002,22003,-22005,22017,22012,-22016,22016,22017,22015,-22015,22009,22007,22006,-22006,22011,22014,22015,-22011,22012,22017,22016,-22014,22012,22013,22011,-22011,22010,22015,-22013,22022,22023,22019, + -22019,22023,22025,22020,-22020,22024,22022,22018,-22022,22018,22019,22020,-22022,22024,22025,22023,-22023,22005,22006,22002,-22009,22029,22030,22027,-22027,22032,22029,22026,-22029,21905,22030,22029, + -21905,21904,22029,22032,-21907,21909,22028,22026,-21908,21907,22026,22027,-21909,22033,22036,22035,-22035,22037,22040,22039,-22039,22028,21909,22048,-22050,21891,21894,22044,-22044,21906,22032,22050, + -22048,22032,22028,22049,-22051,21899,21891,22043,-22046,21909,21906,22047,-22049,21894,21903,22046,-22045,21903,21899,22045,-22047,21647,21649,-21651,22054,22053,22051,-22053,21649,21652,21651,-21651, + 22058,22057,22055,-22057,22054,22057,22058,-22054,21652,21648,-21652,22230,22231,22233,-22229,22087,22119,22121,-22094,22119,22087,22089,-22121,22062,22061,22086,-22085,22059,22061,-22063,21729,21732, + 21688,-21609,21731,21729,21608,-21728,22066,22065,22063,-22065,21608,21688,21728,-21728,21664,21659,-21663,22070,22069,22067,-22069,21643,21642,-21647,22066,22069,22070,-22066,21641,21644,-21646,21644, + 21643,21646,-21646,22063,22068,22067,-22065,21660,21663,-21662,22071,22074,22073,-22073,22075,22078,22077,-22077,22079,22082,22081,-22081,22086,22061,22060,-22086,22062,22084,22083,-22060,21732,21730, + 21728,-21689,22119,22088,22092,-22122,22090,22089,22087,-22096,22093,22094,22095,-22088,22096,22097,-22099,22099,22102,22101,-22101,22104,22103,22101,-22103,22100,22103,22104,-22100,22105,22108,22107, + -22107,22109,22112,22111,-22111,21717,22115,22114,-21716,21713,22113,22115,-21718,21712,22113,22116,-21719,21718,22116,22117,-21721,21715,22114,22118,-21723,21720,22117,22118,-21712,22088,22119,22120, + -22092,21617,22123,22124,-21615,21671,22129,22130,-21675,21675,22128,22129,-21672,21679,22131,22133,-21683,21685,22132,22133,-21682,22137,22136,22134,-22136,22141,22140,22138,-22140,22145,22144,22142, + -22144,22149,22148,22146,-22148,22153,22152,22150,-22152,22157,22156,22154,-22156,22161,22160,22158,-22160,22165,22164,22162,-22164,22169,22168,22166,-22168,22173,22172,22170,-22172,22194,22193,22197, + -22192,22175,22174,22176,-22178,22181,22180,22179,-22179,22175,22177,22181,-22179,22176,22174,22179,-22181,22177,22176,22180,-22182,22189,22184,-22188,22187,22186,22188,-22190,22187,22182,22183,-22187, + 22188,22185,22184,-22190,22190,22192,22193,-22195,22183,22182,22184,-22186,22182,22187,-22185,22191,22197,22196,-22196,22190,22194,22191,-22196,22193,22192,22196,-22198,22218,22217,22221,-22216,22199, + 22198,22200,-22202,22205,22204,22203,-22203,22199,22201,22205,-22203,22200,22198,22203,-22205,22201,22200,22204,-22206,22213,22208,-22212,22211,22210,22212,-22214,22211,22206,22207,-22211,22212,22209, + 22208,-22214,22214,22216,22217,-22219,22207,22206,22208,-22210,22206,22211,-22209,22215,22221,22220,-22220,22214,22218,22215,-22220,22217,22216,22220,-22222,22227,22225,22222,-22225,22225,22226,22223, + -22223,21596,21597,21594,-21596,21580,21581,21582,-21586,21585,21583,-21581,21584,21582,-21582,21574,21577,21575,-21577,21579,21574,-21577,21577,21578,-21576,22059,22060,-22062,22231,22229,22232,-22234, + 21599,21596,-21596,21597,21598,-21595,21574,21579,21578,-21578,21583,21585,21582,-21585,21616,21617,-21615,21618,21613,-21616,22122,21616,21614,-22125,21851,21852,21849,-21849,21622,21623,-21621,21624, + 21621,-21620,21656,21657,-21655,21653,21656,21654,-21656,21658,21653,-21656,22125,21668,21665,-22128,21668,21669,-21666,21670,21667,-21667,21653,21658,21657,-21657,21709,21703,21706,-21711,21702,21709, + 21710,-21708,21738,21736,21733,-21736,21750,21751,21748,-21748,21751,21752,21749,-21749,21772,21773,21770,-21770,21773,21774,21771,-21771,21830,21831,21828,-21828,21832,21830,21827,-21830,21845,21846, + 21843,-21843,21857,21858,21855,-21855,21864,21862,21859,-21862,21870,21868,21865,-21868,22229,22230,22228,-22233,21613,22122,22124,-21616,21613,21618,22123,-22123,21621,21622,21620,-21620,21619,21620, + 21623,-21625,21621,21624,21623,-21623,21667,22125,22127,-21667,21669,22126,22127,-21666,22226,22227,22224,-22224,22248,22245,22249,-22251,22250,22249,22246,-22248,22255,22254,22257,-22257,22256,22260, + 22259,-22256,22254,22258,22261,-22258,22263,22262,22265,-22265,22264,22268,22267,-22264,22262,22266,22269,-22266,22240,22239,22251,-22253,22239,22241,22253,-22252,22252,22253,22241,-22241,22236,22237, + 22271,-22273,22237,22238,22270,-22272,22238,22236,22272,-22271,22277,22278,22274,-22274,22247,22246,22273,-22275,22275,22247,22274,-22279,22283,22244,22234,-22280,22282,22235,22244,-22284,22279,22234, + 22243,-22282,22247,22275,-22251,22250,22275,22276,-22249,22246,22275,22277,-22274,22275,22246,-22250,22275,22249,22245,-22277,22275,22278,-22278,22243,22242,22280,-22282,22290,22287,22284,-22292,22289, + 22293,22294,-22287,22295,22290,-22294,22295,22289,-22289,22287,22295,22292,-22285,22288,22289,22286,-22286,22295,22293,-22290,22293,22290,22291,-22295,22295,22288,22285,-22293,22295,22287,-22291,22302, + 22299,22296,-22304,22301,22305,22306,-22299,22307,22302,-22306,22307,22301,-22301,22299,22307,22304,-22297,22300,22301,22298,-22298,22307,22305,-22302,22305,22302,22303,-22307,22307,22300,22297,-22305, + 22307,22299,-22303,22320,22321,22322,-22324,22327,22324,22320,-22324,22312,22313,22310,-22310,22326,22327,22323,-22323,22325,22326,22322,-22322,22317,22318,22315,-22315,22332,22333,22329,-22329,22324, + 22327,22326,-22326,22366,22365,22368,-22370,22330,22333,22332,-22332,22641,22344,22341,-22643,22351,22352,22353,-22355,22357,22358,22354,-22354,22390,22387,22383,-22387,22375,22376,22373,-22373,22640, + 22641,22343,-22343,22644,22384,22385,-22646,22360,22359,22363,-22365,22381,22382,22380,-22380,22377,22378,22379,-22381,22388,22389,22385,-22385,22643,22388,22384,-22645,22646,22392,22393,-22649,22398, + 22395,22391,-22395,22647,22398,22394,-22649,22396,22397,22393,-22393,22409,22406,22402,-22411,22410,22402,22403,-22413,22411,22408,22404,-22413,22405,22409,22410,-22402,22401,22410,22412,-22405,22407, + 22411,22412,-22404,22633,22418,22416,-22633,22631,22414,22418,-22634,22631,22415,22421,-22635,22634,22421,22423,-22636,22338,22335,22425,-22428,22632,22416,22413,-22637,22635,22423,22424,-22637,22424, + 22415,22419,-22418,22415,22424,22423,-22422,22336,22337,22426,-22429,22432,22433,22429,-22431,22337,22427,-22427,22400,22338,22427,-22338,22438,22439,22436,-22436,22439,22440,22437,-22437,22446,22444, + 22441,-22444,22451,22452,22448,-22448,22452,22453,22449,-22449,22453,22454,22450,-22450,22454,22451,22447,-22451,22460,22458,22455,-22458,22464,22463,22461,-22463,22468,22467,22465,-22467,22472,22471, + 22469,-22471,22476,22475,22473,-22475,22480,22479,22477,-22479,22484,22483,22481,-22483,22488,22487,22485,-22487,22493,22494,22490,-22490,22494,22495,22491,-22491,22495,22496,22492,-22492,22496,22493, + 22489,-22493,22500,22499,22497,-22499,22504,22503,22501,-22503,22510,22511,22507,-22507,22509,22510,22506,-22506,22511,22512,22508,-22508,22512,22509,22505,-22509,22517,22518,22515,-22515,22522,22521, + 22519,-22521,22526,22525,22523,-22525,22530,22531,22528,-22528,22532,22530,22527,-22530,22356,22355,22358,-22358,22536,22535,22533,-22535,22540,22539,22537,-22539,22541,22542,22544,-22544,22549,22550, + 22547,-22547,22550,22548,22545,-22548,22554,22555,22552,-22552,22557,22554,22551,-22554,22549,22555,22554,-22551,22550,22554,22557,-22549,22545,22553,22551,-22548,22547,22551,22552,-22547,22558,22560, + 22563,-22562,22559,22558,22561,-22563,22564,22567,22566,-22566,22568,22571,22570,-22570,22572,22573,22575,-22575,22579,22578,22576,-22578,22583,22584,22581,-22581,22586,22583,22580,-22583,22559,22584, + 22583,-22559,22558,22583,22586,-22561,22563,22582,22580,-22562,22561,22580,22581,-22563,22587,22590,22589,-22589,22591,22594,22593,-22593,22582,22563,22602,-22604,22545,22548,22598,-22598,22560,22586, + 22604,-22602,22586,22582,22603,-22605,22553,22545,22597,-22600,22563,22560,22601,-22603,22548,22557,22600,-22599,22557,22553,22599,-22601,22365,22367,-22369,22367,22370,22369,-22369,22370,22366,-22370, + 22605,22637,22639,-22612,22637,22605,22607,-22639,22431,22434,22399,-22335,22382,22377,-22381,22361,22360,-22365,22359,22362,-22364,22362,22361,22364,-22364,22378,22381,-22380,22434,22432,22430,-22400, + 22637,22606,22610,-22640,22608,22607,22605,-22614,22611,22612,22613,-22606,22614,22615,-22617,22617,22620,22619,-22619,22622,22621,22619,-22621,22618,22621,22622,-22618,22623,22626,22625,-22625,22627, + 22630,22629,-22629,22419,22633,22632,-22418,22415,22631,22633,-22420,22414,22631,22634,-22421,22420,22634,22635,-22423,22417,22632,22636,-22425,22422,22635,22636,-22414,22606,22637,22638,-22610,22343, + 22641,22642,-22341,22383,22644,22645,-22387,22387,22643,22644,-22384,22391,22646,22648,-22395,22397,22647,22648,-22394,22652,22651,22649,-22651,22656,22655,22653,-22655,22660,22659,22657,-22659,22664, + 22663,22661,-22663,22668,22667,22665,-22667,22672,22671,22669,-22671,22676,22675,22673,-22675,22680,22679,22677,-22679,22684,22683,22681,-22683,22688,22687,22685,-22687,22330,22331,22328,-22330,22314, + 22315,22316,-22320,22318,22316,-22316,22308,22311,22309,-22311,22313,22308,-22311,22311,22312,-22310,22333,22330,-22330,22331,22332,-22329,22308,22313,22312,-22312,22317,22319,22316,-22319,22342,22343, + -22341,22344,22339,-22342,22640,22342,22340,-22643,22348,22349,-22347,22350,22347,-22346,22374,22375,-22373,22371,22374,22372,-22374,22376,22371,-22374,22371,22376,22375,-22375,22440,22438,22435,-22438, + 22444,22445,22442,-22442,22445,22446,22443,-22443,22458,22459,22456,-22456,22459,22460,22457,-22457,22516,22517,22514,-22514,22518,22516,22513,-22516,22531,22532,22529,-22529,22339,22640,22642,-22342, + 22339,22344,22641,-22641,22347,22348,22346,-22346,22345,22346,22349,-22351,22347,22350,22349,-22349,22698,22699,22700,-22702,22705,22702,22698,-22702,22693,22694,22691,-22691,22703,22704,22700,-22700, + 22702,22703,22699,-22699,22713,22714,22711,-22711,22714,22712,22709,-22712,22702,22705,22704,-22704,22728,22729,22730,-22732,22875,22873,22870,-22873,23043,22724,22721,-23045,22732,22733,22729,-22729, + 22873,22874,22871,-22871,23048,22763,22764,-23050,22750,22751,22752,-22754,22767,22768,22764,-22764,23047,22767,22763,-23049,23050,22769,22770,-23052,22771,22772,22770,-22770,22776,22780,22781,-22775, + 22780,22777,22775,-22782,23036,22788,22786,-23036,23034,22784,22788,-23037,23034,22785,22791,-23038,22784,22783,22786,-22789,22718,22716,22794,-22796,23035,22786,22783,-23040,22790,22792,22783,-22785, + 22800,22801,22797,-22799,22794,22717,-22797,22716,22773,22717,-22795,22806,22807,22804,-22804,22811,22810,22808,-22810,22815,22814,22812,-22814,22821,22819,22816,-22819,22826,22827,22823,-22823,22827, + 22828,22824,-22824,22828,22829,22825,-22825,22829,22826,22822,-22826,22833,22832,22830,-22832,22837,22836,22834,-22836,22843,22841,22838,-22841,22847,22846,22844,-22846,22851,22850,22848,-22850,22855, + 22854,22852,-22854,22861,22862,22858,-22858,22860,22861,22857,-22857,22862,22863,22859,-22859,22867,22868,22865,-22865,22881,22879,22876,-22879,22879,22880,22877,-22877,22886,22887,22884,-22884,22885, + 22886,22883,-22883,22891,22892,22889,-22889,22897,22896,22894,-22896,22901,22900,22898,-22900,22911,22908,22907,-22913,22907,22904,22905,-22907,22912,22907,22906,-22914,22910,22909,22908,-22912,22909, + 22902,22903,-22909,22908,22903,22904,-22908,22906,22905,22902,-22910,22913,22906,22909,-22911,22913,22910,22911,-22913,22917,22914,22915,-22917,22921,22918,22919,-22921,22926,22927,22923,-22923,22928, + 22929,22925,-22925,22929,22926,22922,-22926,22934,22935,22931,-22931,22936,22937,22933,-22933,22937,22934,22930,-22934,22928,22935,22934,-22930,22929,22934,22937,-22927,22923,22932,22933,-22923,22922, + 22933,22930,-22926,22938,22941,22940,-22940,22942,22945,22944,-22944,22946,22949,22948,-22948,22954,22955,22951,-22951,22956,22957,22953,-22953,22957,22954,22950,-22954,22962,22963,22959,-22959,22964, + 22965,22961,-22961,22965,22962,22958,-22962,22956,22963,22962,-22958,22957,22962,22965,-22955,22951,22960,22961,-22951,22950,22961,22958,-22954,22966,22969,22968,-22968,22970,22973,22972,-22972,22974, + 22977,22976,-22976,22982,22983,22979,-22979,22985,22981,22984,-22981,22993,22988,-22992,22992,22993,22991,-22991,22985,22983,22982,-22982,22987,22990,22991,-22987,22988,22989,22987,-22987,22986,22991, + -22989,22998,22999,22995,-22995,22999,23001,22996,-22996,23000,22998,22994,-22998,22994,22995,22996,-22998,22981,22982,22978,-22985,22744,22746,-22748,23005,23004,23002,-23004,22746,22749,22748,-22748, + 23009,23008,23006,-23008,23005,23008,23009,-23005,22749,22745,-22749,23115,23116,23118,-23114,23010,23040,23041,-23016,22801,22799,22715,-22798,22755,22750,-22754,22740,22739,-22744,22738,22741,-22743, + 22741,22740,22743,-22743,22751,22754,-22753,23040,23011,23014,-23042,23013,23012,23010,-23017,23017,23018,-23020,23020,23023,23022,-23022,23025,23024,23022,-23024,23021,23024,23025,-23021,23026,23029, + 23028,-23028,23030,23033,23032,-23032,22789,23036,23035,-22788,22785,23034,23036,-22790,22784,23034,23037,-22791,22790,23037,23038,-22793,22787,23035,23039,-22794,22792,23038,23039,-22784,22723,23043, + 23044,-22721,22762,23048,23049,-22766,22766,23047,23048,-22763,23055,23054,23052,-23054,23059,23058,23056,-23058,23063,23062,23060,-23062,23067,23066,23064,-23066,23086,23085,23088,-23084,23074,23073, + 23072,-23072,23069,23068,23072,-23074,23070,23069,23073,-23075,23081,23076,-23080,23079,23078,23080,-23082,23080,23077,23076,-23082,23082,23084,23085,-23087,23075,23079,-23077,23082,23086,23083,-23088, + 23109,23108,23112,-23107,23090,23089,23091,-23093,23096,23095,23094,-23094,23090,23092,23096,-23094,23091,23089,23094,-23096,23092,23091,23095,-23097,23104,23099,-23103,23102,23101,23103,-23105,23103, + 23100,23099,-23105,23105,23107,23108,-23110,23098,23097,23099,-23101,23097,23102,-23100,23106,23112,23111,-23111,23105,23109,23106,-23111,23108,23107,23111,-23113,22697,22696,-22696,22689,22692,22690, + -22692,22694,22689,-22692,22708,22707,-22707,22724,22719,-22722,23042,22722,22720,-23045,22874,22875,22872,-22872,22727,22726,-22726,23045,22759,22756,-23047,22759,22760,-22757,22761,22758,-22758,22781, + 22775,22778,-22783,22774,22781,22782,-22780,22807,22805,22802,-22805,22819,22820,22817,-22817,22841,22842,22839,-22839,22868,22869,22866,-22866,22880,22881,22878,-22878,22887,22885,22882,-22885,22893, + 22891,22888,-22891,23114,23115,23113,-23118,22719,23042,23044,-22722,22758,23045,23046,-22758,23131,23132,23133,-23135,23138,23135,23131,-23135,23137,23138,23134,-23134,23136,23137,23133,-23133,23128, + 23129,23126,-23126,23135,23136,23132,-23132,23145,23146,23143,-23143,23147,23145,23142,-23145,23135,23138,23137,-23137,23171,23170,23173,-23175,23158,23159,23160,-23162,23305,23303,23300,-23303,23162, + 23163,23159,-23159,23303,23304,23301,-23301,23165,23164,23168,-23170,23183,23184,23182,-23182,23179,23180,23181,-23183,23404,23190,23186,-23406,23406,23192,23193,-23409,23407,23197,23194,-23409,23195, + 23196,23193,-23193,23202,23206,23207,-23201,23206,23203,23201,-23208,23398,23211,23216,-23401,23400,23216,23218,-23402,23210,23209,23212,-23215,23399,23212,23209,-23403,23215,23217,23209,-23211,23150, + 23151,23221,-23223,23220,23150,-23223,23149,23198,23150,-23221,23231,23232,23229,-23229,23232,23233,23230,-23230,23237,23236,23234,-23236,23241,23240,23238,-23240,23247,23245,23242,-23245,23252,23253, + 23249,-23249,23253,23254,23250,-23250,23254,23255,23251,-23251,23255,23252,23248,-23252,23259,23258,23256,-23258,23263,23262,23260,-23262,23269,23267,23264,-23267,23273,23272,23270,-23272,23277,23276, + 23274,-23276,23281,23280,23278,-23280,23285,23284,23282,-23284,23290,23291,23287,-23287,23291,23292,23288,-23288,23292,23293,23289,-23289,23293,23290,23286,-23290,23298,23299,23296,-23296,23311,23309, + 23306,-23309,23309,23310,23307,-23307,23316,23317,23314,-23314,23315,23316,23313,-23313,23322,23323,23320,-23320,23321,23322,23319,-23319,23327,23326,23324,-23326,23331,23330,23328,-23330,23339,23336, + 23337,-23339,23341,23334,23335,-23341,23340,23335,23336,-23340,23338,23337,23334,-23342,23345,23342,23343,-23345,23349,23346,23347,-23349,23353,23350,23351,-23353,23357,23358,23355,-23355,23360,23357, + 23354,-23357,23365,23366,23362,-23362,23367,23365,23361,-23365,23359,23366,23365,-23361,23360,23365,23367,-23358,23355,23363,23364,-23355,23354,23364,23361,-23357,23368,23371,23370,-23370,23372,23375, + 23374,-23374,23376,23379,23378,-23378,23386,23382,-23386,23381,23384,23385,-23381,23382,23383,23381,-23381,23380,23385,-23383,23393,23392,23390,-23392,23172,23175,23174,-23174,23397,23396,23394,-23396, + 23393,23396,23397,-23393,23175,23171,-23175,23225,23227,23199,-23149,23226,23225,23148,-23224,23148,23199,23224,-23224,23166,23165,-23170,23167,23166,23169,-23169,23180,23183,-23182,23210,23398,23400, + -23216,23215,23400,23401,-23218,23213,23399,23402,-23220,23191,23406,23408,-23195,23196,23407,23408,-23194,23412,23411,23409,-23411,23416,23415,23413,-23415,23420,23419,23417,-23419,23424,23423,23421, + -23423,23428,23427,23425,-23427,23432,23431,23429,-23431,23439,23434,-23438,23437,23436,23438,-23440,23438,23435,23434,-23440,23433,23437,-23435,23445,23443,23440,-23443,23125,23126,23127,-23131,23130, + 23128,-23126,23119,23122,23120,-23122,23124,23119,-23122,23140,23141,-23140,23119,23124,23123,-23123,23128,23130,23127,-23130,23304,23305,23302,-23302,23157,23154,-23153,23177,23178,-23177,23403,23188, + 23185,-23406,23188,23189,-23186,23190,23187,-23187,23207,23201,23204,-23209,23200,23207,23208,-23206,23233,23231,23228,-23231,23245,23246,23243,-23243,23246,23247,23244,-23244,23267,23268,23265,-23265, + 23268,23269,23266,-23266,23297,23298,23295,-23295,23299,23297,23294,-23297,23310,23311,23308,-23308,23317,23315,23312,-23315,23323,23321,23318,-23321,23154,23155,23153,-23153,23152,23153,23156,-23158, + 23187,23403,23405,-23187,23189,23404,23405,-23186,23444,23445,23442,-23442,23450,23452,-23452,23490,23487,23492,-23494,23493,23492,23488,-23490,23536,23535,23545,-23548,23464,23465,23459,-23459,23460, + 23461,23465,-23465,23471,23470,23473,-23473,23475,23474,23477,-23477,23479,23478,23481,-23481,23483,23482,23485,-23485,23457,23465,23461,-23457,23497,23496,23499,-23499,23501,23500,23503,-23503,23505, + 23504,23507,-23507,23509,23508,23511,-23511,23516,23515,23518,-23518,23520,23519,23522,-23522,23524,23523,23526,-23526,23528,23527,23530,-23530,23539,23534,23542,-23544,23540,23535,23542,-23545,23544, + 23542,23534,-23542,23543,23542,23535,-23537,23546,23533,-23533,23447,23446,23448,-23450,23450,23486,23447,-23450,23489,23488,23532,-23534,23463,23466,23461,-23461,23465,23457,23455,-23460,23535,23540, + 23454,-23546,23491,23488,23492,-23538,23456,23461,23466,-23463,23488,23491,23546,-23533,23549,23548,23514,-23514,23455,23458,-23460,23454,23547,-23546,23513,23514,23467,-23469,23537,23492,23487,-23539, + 23449,23448,-23453,23512,23450,-23452,23450,23449,-23453,23512,23453,23486,-23451,23550,23469,23495,-23495,23555,23557,-23557,23595,23592,23597,-23599,23598,23597,23593,-23595,23641,23640,23650,-23653, + 23569,23570,23564,-23564,23565,23566,23570,-23570,23576,23575,23578,-23578,23580,23579,23582,-23582,23584,23583,23586,-23586,23588,23587,23590,-23590,23562,23570,23566,-23562,23602,23601,23604,-23604, + 23606,23605,23608,-23608,23610,23609,23612,-23612,23614,23613,23616,-23616,23621,23620,23623,-23623,23625,23624,23627,-23627,23629,23628,23631,-23631,23633,23632,23635,-23635,23644,23639,23647,-23649, + 23645,23640,23647,-23650,23649,23647,23639,-23647,23648,23647,23640,-23642,23651,23638,-23638,23552,23551,23553,-23555,23555,23591,23552,-23555,23594,23593,23637,-23639,23568,23571,23566,-23566,23570, + 23562,23560,-23565,23640,23645,23559,-23651,23596,23593,23597,-23643,23561,23566,23571,-23568,23593,23596,23651,-23638,23654,23653,23619,-23619,23560,23563,-23565,23559,23652,-23651,23618,23619,23572, + -23574,23642,23597,23592,-23644,23554,23553,-23558,23617,23555,-23557,23555,23554,-23558,23617,23558,23591,-23556,23655,23574,23600,-23600,23679,23676,23686,-23690,23699,23692,23657,-23670,23696,23693, + 23656,-23661,23677,23672,23683,-23688,23692,23695,23661,-23658,23691,23698,23670,-23659,23678,23674,23684,-23689,23676,23675,23685,-23687,23665,23664,23699,-23699,23689,23697,23668,-23680,23660,23677, + 23687,-23697,23669,23680,23690,-23700,23694,23685,23675,-23663,23711,23709,23703,-23709,23707,23704,23709,-23712,23705,23707,23711,-23711,23710,23711,23708,-23707,23719,23718,23713,-23715,23715,23712, + 23718,-23720,23714,23716,23720,-23720,23719,23720,23717,-23716,23729,23727,23721,-23727,23728,23727,23722,-23724,23725,23722,23727,-23730,23724,23721,23727,-23729,23723,23725,23729,-23729,23728,23729, + 23726,-23725,23737,23736,23734,-23736,23733,23732,23736,-23738,23739,23732,23733,-23739,23730,23739,23738,-23732,23747,23746,23749,-23749,23751,23750,23753,-23753,23755,23754,23757,-23757,23759,23758, + 23761,-23761,23803,23804,-23802,23763,23762,23765,-23765,23741,23742,23745,-23741,23745,23742,23743,-23745,23768,23769,23767,-23767,23772,23773,23771,-23771,23776,23777,23775,-23775,23779,23778,23780, + -23782,23782,23783,23785,-23785,23790,23789,23786,-23788,23787,23788,23791,-23791,23796,23795,23792,-23794,23794,23792,23795,-23798,23801,23804,-23803,23819,23815,23808,-23806,23809,23812,23813,-23811, + 23819,23816,23818,-23821,23812,23809,23806,-23808,23826,23829,23830,-23828,23829,23826,23822,-23824,23837,23836,23839,-23839,23841,23840,23843,-23843,23798,23799,23804,-23804,23804,23799,23800,-23803, + 23845,23844,23847,-23847,23702,23659,23664,-23702,23701,23700,23666,-23668,23672,23671,23682,-23684,23664,23692,-23700,23659,23693,-23697,23664,23695,-23693,23664,23659,23696,-23696,23665,23698,-23692, + 23698,23681,23673,-23671,23663,23702,23701,-23668,23664,23665,23700,-23702,23815,23816,23814,-23809,23810,23813,-23812,23815,23819,23820,-23818,23808,23814,-23806,23833,23832,23834,-23836,23832,23833, + 23831,-23825,23822,23825,-23824,23827,23830,-23829,23824,23831,-23822,23897,23892,23851,-23857,23878,23875,23887,-23891,23903,23893,23850,-23867,23899,23894,23849,-23854,23895,23896,23857,-23849,23876, + 23871,23884,-23889,23893,23898,23854,-23851,23869,23868,23882,-23884,23892,23902,23867,-23852,23877,23873,23885,-23890,23875,23874,23886,-23888,23861,23860,23903,-23903,23890,23901,23864,-23879,23853, + 23876,23888,-23900,23866,23879,23891,-23904,23896,23886,23874,-23858,23916,23914,23908,-23914,23915,23914,23909,-23911,23912,23909,23914,-23917,23911,23908,23914,-23916,23910,23912,23916,-23916,23915, + 23916,23913,-23912,23925,23923,23917,-23923,23921,23918,23923,-23926,23919,23921,23925,-23925,23924,23925,23922,-23921,23933,23932,23927,-23929,23929,23926,23932,-23934,23928,23930,23934,-23934,23933, + 23934,23931,-23930,23943,23941,23935,-23941,23942,23941,23936,-23938,23939,23936,23941,-23944,23938,23935,23941,-23943,23937,23939,23943,-23943,23942,23943,23940,-23939,23949,23948,23946,-23948,23945, + 23944,23948,-23950,23955,23954,23952,-23954,23951,23950,23954,-23956,23957,23950,23951,-23957,23946,23957,23956,-23948,23959,23958,23961,-23961,23967,23966,23969,-23969,23971,23970,23973,-23973,23975, + 23974,23977,-23977,23979,23978,23981,-23981,24023,24024,-24022,23983,23982,23985,-23985,23961,23962,23965,-23961,23965,23962,23963,-23965,23988,23989,23987,-23987,23992,23993,23991,-23991,23996,23997, + 23995,-23995,24000,23998,23999,-24002,24003,24002,24004,-24006,24006,24007,24009,-24009,24010,24011,24013,-24013,24017,24016,24014,-24016,24021,24024,-24023,24038,24034,24028,-24026,24029,24031,24032, + -24031,24038,24035,24037,-24040,24031,24029,24026,-24028,24045,24048,24049,-24048,24048,24045,24041,-24043,24046,24048,24042,-24045,24056,24055,24058,-24058,24060,24059,24062,-24062,24018,24019,24024, + -24024,24024,24019,24020,-24023,24064,24063,24066,-24066,23904,23905,23861,-23856,23907,23852,23860,-23907,23906,23905,23862,-23864,23871,23870,23881,-23885,23861,23892,-23898,23860,23893,-23904,23852, + 23894,-23900,23855,23896,-23896,23855,23861,23897,-23897,23860,23898,-23894,23860,23852,23899,-23899,23861,23902,-23893,23870,23865,23900,-23882,23902,23880,23872,-23868,23858,23862,23905,-23905,23859, + 23907,23906,-23864,23860,23861,23905,-23907,24034,24035,24033,-24029,24034,24038,24039,-24037,24028,24033,-24026,24052,24051,24053,-24055,24051,24052,24050,-24044,24041,24044,-24043,24043,24050,-24041, + 24071,24073,-24073,24111,24108,24113,-24115,24114,24113,24109,-24111,24157,24156,24166,-24169,24085,24086,24080,-24080,24081,24082,24086,-24086,24092,24091,24094,-24094,24096,24095,24098,-24098,24100, + 24099,24102,-24102,24104,24103,24106,-24106,24078,24086,24082,-24078,24118,24117,24120,-24120,24122,24121,24124,-24124,24126,24125,24128,-24128,24130,24129,24132,-24132,24137,24136,24139,-24139,24141, + 24140,24143,-24143,24145,24144,24147,-24147,24149,24148,24151,-24151,24160,24155,24163,-24165,24161,24156,24163,-24166,24165,24163,24155,-24163,24164,24163,24156,-24158,24167,24154,-24154,24068,24067, + 24069,-24071,24071,24107,24068,-24071,24110,24109,24153,-24155,24084,24087,24082,-24082,24086,24078,24076,-24081,24156,24161,24075,-24167,24112,24109,24113,-24159,24077,24082,24087,-24084,24109,24112, + 24167,-24154,24170,24169,24135,-24135,24076,24079,-24081,24075,24168,-24167,24134,24135,24088,-24090,24158,24113,24108,-24160,24070,24069,-24074,24133,24071,-24073,24071,24070,-24074,24133,24074,24107, + -24072,24171,24090,24116,-24116,24176,24178,-24178,24216,24213,24218,-24220,24219,24218,24214,-24216,24262,24261,24271,-24274,24190,24191,24185,-24185,24186,24187,24191,-24191,24197,24196,24199,-24199, + 24201,24200,24203,-24203,24205,24204,24207,-24207,24209,24208,24211,-24211,24183,24191,24187,-24183,24223,24222,24225,-24225,24227,24226,24229,-24229,24231,24230,24233,-24233,24235,24234,24237,-24237, + 24242,24241,24244,-24244,24246,24245,24248,-24248,24250,24249,24252,-24252,24254,24253,24256,-24256,24265,24260,24268,-24270,24266,24261,24268,-24271,24270,24268,24260,-24268,24269,24268,24261,-24263, + 24272,24259,-24259,24173,24172,24174,-24176,24176,24212,24173,-24176,24215,24214,24258,-24260,24189,24192,24187,-24187,24191,24183,24181,-24186,24261,24266,24180,-24272,24217,24214,24218,-24264,24182, + 24187,24192,-24189,24214,24217,24272,-24259,24275,24274,24240,-24240,24181,24184,-24186,24180,24273,-24272,24239,24240,24193,-24195,24263,24218,24213,-24265,24175,24174,-24179,24238,24176,-24178,24176, + 24175,-24179,24238,24179,24212,-24177,24276,24195,24221,-24221,24285,24284,-24287,24350,24347,24352,-24354,24353,24352,24348,-24350,24416,24403,24415,-24294,24306,24303,24295,-24300,24402,24407,24292, + -24414,24403,24402,24413,-24416,24297,24305,24298,-24295,24305,24306,24299,-24299,24305,24297,24296,-24301,24295,24294,24298,-24300,24300,24301,24306,-24306,24315,24314,24317,-24317,24316,24320,24319, + -24316,24314,24318,24321,-24318,24324,24322,24323,-24326,24328,24329,24327,-24327,24323,24322,24326,-24328,24324,24325,24329,-24329,24322,24324,24328,-24327,24325,24323,24327,-24330,24332,24330,24331, + -24334,24336,24337,24335,-24335,24331,24330,24334,-24336,24332,24333,24337,-24337,24330,24332,24336,-24335,24333,24331,24335,-24338,24340,24338,24339,-24342,24344,24345,24343,-24343,24339,24338,24342, + -24344,24340,24341,24345,-24345,24338,24340,24344,-24343,24341,24339,24343,-24346,24346,24281,24277,-24290,24358,24357,24360,-24360,24362,24361,24364,-24364,24359,24367,24366,-24359,24363,24371,24370, + -24363,24357,24365,24368,-24361,24361,24369,24372,-24365,24384,24383,24386,-24386,24385,24389,24388,-24385,24383,24387,24390,-24387,24398,24394,24391,-24396,24396,24392,24393,-24398,24397,24398,24395, + -24397,24406,24401,24409,-24411,24407,24402,24409,-24413,24412,24409,24401,-24409,24410,24409,24402,-24404,24312,24313,24356,-24355,24308,24309,24381,-24383,24309,24310,24380,-24382,24310,24308,24382, + -24381,24288,24289,24290,-24286,24374,24346,24289,-24289,24373,24291,24346,-24375,24289,24277,24280,-24291,24283,24288,24285,-24287,24291,24278,24281,-24347,24280,24279,-24291,24287,24374,24288,-24284, + 24282,24373,24374,-24288,24290,24279,24284,-24286,24411,24414,24400,-24400,24292,24293,24415,-24414,24349,24348,24399,-24401,24404,24349,24400,-24415,24304,24307,24301,-24301,24348,24351,24411,-24400, + 24351,24404,24414,-24412,24295,24303,24297,-24295,24375,24417,-24419,24377,24378,24417,-24376,24293,24292,24407,-24417,24379,24420,-24420,24300,24296,24302,-24305,24296,24301,24307,-24303,24309,24308, + 24378,-24378,24303,24306,24301,-24297,24419,24420,24313,-24313,24418,24417,24378,-24377,24311,24312,24354,-24356,24355,24356,24313,-24312,24377,24376,24310,-24310,24376,24378,24308,-24311,24403,24416, + 24412,-24411,24410,24412,24408,-24407,24375,24418,24376,-24378,24379,24419,24312,-24312,24311,24313,24420,-24380,24349,24404,-24354,24353,24404,24405,-24351,24351,24348,24352,-24405,24404,24352,24347, + -24406,24467,24463,24424,-24429,24449,24446,24458,-24462,24473,24464,24423,-24438,24465,24466,24429,-24422,24447,24442,24455,-24460,24440,24439,24453,-24455,24463,24472,24438,-24425,24450,24440,24454, + -24463,24448,24444,24456,-24461,24439,24440,24423,-24427,24441,24442,24422,-24437,24443,24444,24424,-24439,24445,24446,24421,-24430,24442,24447,24425,-24423,24444,24448,24428,-24425,24446,24449,24435, + -24422,24440,24450,24437,-24424,24446,24445,24457,-24459,24432,24431,24473,-24473,24461,24471,24435,-24450,24425,24447,24459,-24470,24469,24459,24453,-24469,24468,24453,24439,-24427,24437,24450,24462, + -24474,24428,24448,24460,-24468,24467,24460,24457,-24467,24466,24457,24445,-24430,24485,24483,24477,-24483,24484,24483,24478,-24480,24481,24478,24483,-24486,24480,24477,24483,-24485,24479,24481,24485, + -24485,24484,24485,24482,-24481,24494,24492,24486,-24492,24490,24487,24492,-24495,24488,24490,24494,-24494,24493,24494,24491,-24490,24502,24501,24496,-24498,24498,24495,24501,-24503,24497,24499,24503, + -24503,24502,24503,24500,-24499,24509,24508,24506,-24508,24505,24504,24508,-24510,24513,24510,24511,-24513,24506,24513,24512,-24508,24515,24514,24517,-24517,24521,24520,24523,-24523,24525,24524,24527, + -24527,24529,24528,24531,-24531,24585,24586,-24585,24533,24532,24535,-24535,24517,24518,24519,-24517,24538,24539,24537,-24537,24542,24543,24541,-24541,24546,24547,24545,-24545,24550,24548,24549,-24552, + 24554,24552,24553,-24556,24560,24559,24556,-24558,24558,24556,24559,-24562,24564,24562,24565,-24568,24563,24564,24567,-24567,24572,24571,24568,-24570,24569,24570,24573,-24573,24578,24577,24574,-24576, + 24576,24574,24577,-24580,24575,24576,24579,-24579,24602,24605,24589,-24601,24605,24601,24592,-24590,24598,24595,24597,-24600,24594,24598,24599,-24597,24605,24602,24604,-24607,24598,24594,24590,-24592, + 24595,24598,24591,-24594,24620,24623,24607,-24619,24616,24613,24615,-24618,24612,24616,24617,-24615,24623,24620,24622,-24625,24616,24612,24608,-24610,24613,24616,24609,-24612,24626,24625,24628,-24628, + 24630,24629,24632,-24632,24581,24580,-24589,24582,24581,-24589,24588,24583,-24583,24581,24582,24586,-24586,24580,24581,24585,-24588,24588,24580,-24584,24587,24585,-24585,24474,24475,24432,-24428,24476, + 24475,24433,-24435,24442,24441,24452,-24456,24452,24459,-24456,24462,24454,-24454,24462,24453,24459,-24453,24457,24461,-24459,24456,24451,-24461,24460,24451,24461,-24458,24451,24462,24452,-24462,24444, + 24443,24451,-24457,24432,24463,-24468,24431,24464,-24474,24427,24466,-24466,24427,24432,24467,-24467,24432,24472,-24464,24441,24436,24470,-24453,24452,24470,24471,-24462,24473,24462,24451,-24473,24472, + 24451,24443,-24439,24430,24433,24475,-24475,24431,24432,24475,-24477,24602,24601,24603,-24605,24601,24602,24600,-24593,24590,24593,-24592,24603,24606,-24605,24601,24605,24606,-24604,24592,24600,-24590, + 24620,24619,24621,-24623,24619,24620,24618,-24611,24608,24611,-24610,24610,24618,-24608,24637,24639,-24639,24677,24674,24679,-24681,24680,24679,24675,-24677,24723,24722,24732,-24735,24651,24652,24646, + -24646,24647,24648,24652,-24652,24658,24657,24660,-24660,24662,24661,24664,-24664,24666,24665,24668,-24668,24670,24669,24672,-24672,24644,24652,24648,-24644,24684,24683,24686,-24686,24688,24687,24690, + -24690,24692,24691,24694,-24694,24696,24695,24698,-24698,24703,24702,24705,-24705,24707,24706,24709,-24709,24711,24710,24713,-24713,24715,24714,24717,-24717,24726,24721,24729,-24731,24727,24722,24729, + -24732,24731,24729,24721,-24729,24730,24729,24722,-24724,24733,24720,-24720,24634,24633,24635,-24637,24637,24673,24634,-24637,24676,24675,24719,-24721,24650,24653,24648,-24648,24652,24644,24642,-24647, + 24722,24727,24641,-24733,24678,24675,24679,-24725,24643,24648,24653,-24650,24675,24678,24733,-24720,24736,24735,24701,-24701,24642,24645,-24647,24641,24734,-24733,24700,24701,24654,-24656,24724,24679, + 24674,-24726,24636,24635,-24640,24699,24637,-24639,24637,24636,-24640,24699,24640,24673,-24638,24737,24656,24682,-24682,24742,24744,-24744,24782,24779,24784,-24786,24785,24784,24780,-24782,24828,24827, + 24837,-24840,24756,24757,24751,-24751,24752,24753,24757,-24757,24763,24762,24765,-24765,24767,24766,24769,-24769,24771,24770,24773,-24773,24775,24774,24777,-24777,24749,24757,24753,-24749,24789,24788, + 24791,-24791,24793,24792,24795,-24795,24797,24796,24799,-24799,24801,24800,24803,-24803,24808,24807,24810,-24810,24812,24811,24814,-24814,24816,24815,24818,-24818,24820,24819,24822,-24822,24831,24826, + 24834,-24836,24832,24827,24834,-24837,24836,24834,24826,-24834,24835,24834,24827,-24829,24838,24825,-24825,24739,24738,24740,-24742,24742,24778,24739,-24742,24781,24780,24824,-24826,24755,24758,24753, + -24753,24757,24749,24747,-24752,24827,24832,24746,-24838,24783,24780,24784,-24830,24748,24753,24758,-24755,24780,24783,24838,-24825,24841,24840,24806,-24806,24747,24750,-24752,24746,24839,-24838,24805, + 24806,24759,-24761,24829,24784,24779,-24831,24741,24740,-24745,24804,24742,-24744,24742,24741,-24745,24804,24745,24778,-24743,24842,24761,24787,-24787,24847,24849,-24849,24887,24884,24889,-24891,24890, + 24889,24885,-24887,24933,24932,24942,-24945,24861,24862,24856,-24856,24857,24858,24862,-24862,24868,24867,24870,-24870,24872,24871,24874,-24874,24876,24875,24878,-24878,24880,24879,24882,-24882,24854, + 24862,24858,-24854,24894,24893,24896,-24896,24898,24897,24900,-24900,24902,24901,24904,-24904,24906,24905,24908,-24908,24913,24912,24915,-24915,24917,24916,24919,-24919,24921,24920,24923,-24923,24925, + 24924,24927,-24927,24936,24931,24939,-24941,24937,24932,24939,-24942,24941,24939,24931,-24939,24940,24939,24932,-24934,24943,24930,-24930,24844,24843,24845,-24847,24847,24883,24844,-24847,24886,24885, + 24929,-24931,24860,24863,24858,-24858,24862,24854,24852,-24857,24932,24937,24851,-24943,24888,24885,24889,-24935,24853,24858,24863,-24860,24885,24888,24943,-24930,24946,24945,24911,-24911,24852,24855, + -24857,24851,24944,-24943,24910,24911,24864,-24866,24934,24889,24884,-24936,24846,24845,-24850,24909,24847,-24849,24847,24846,-24850,24909,24850,24883,-24848,24947,24866,24892,-24892,24952,24954,-24954, + 24992,24989,24994,-24996,24995,24994,24990,-24992,25038,25037,25047,-25050,24966,24967,24961,-24961,24962,24963,24967,-24967,24973,24972,24975,-24975,24977,24976,24979,-24979,24981,24980,24983,-24983, + 24985,24984,24987,-24987,24959,24967,24963,-24959,24999,24998,25001,-25001,25003,25002,25005,-25005,25007,25006,25009,-25009,25011,25010,25013,-25013,25018,25017,25020,-25020,25022,25021,25024,-25024, + 25026,25025,25028,-25028,25030,25029,25032,-25032,25041,25036,25044,-25046,25042,25037,25044,-25047,25046,25044,25036,-25044,25045,25044,25037,-25039,25048,25035,-25035,24949,24948,24950,-24952,24952, + 24988,24949,-24952,24991,24990,25034,-25036,24965,24968,24963,-24963,24967,24959,24957,-24962,25037,25042,24956,-25048,24993,24990,24994,-25040,24958,24963,24968,-24965,24990,24993,25048,-25035,25051, + 25050,25016,-25016,24957,24960,-24962,24956,25049,-25048,25015,25016,24969,-24971,25039,24994,24989,-25041,24951,24950,-24955,25014,24952,-24954,24952,24951,-24955,25014,24955,24988,-24953,25052,24971, + 24997,-24997,25584,25086,25087,-25587,25058,25059,25055,-25055,25627,25060,25056,-25626,25060,25057,25053,-25057,25938,25054,25055,-25938,25092,25089,25085,-25089,25940,25066,25062,-25942,25066,25067, + 25063,-25063,25942,25068,25064,-25944,25068,25065,25061,-25065,25941,25062,25063,-25944,25757,25092,25088,-25636,25933,25074,25070,-25937,25074,25075,25071,-25071,25621,25076,25072,-25621,25076,25073, + 25069,-25073,25936,25070,25071,-25935,25090,25091,25087,-25087,25944,25082,25078,-25946,25082,25083,25079,-25079,25946,25084,25080,-25948,25084,25081,25077,-25081,25945,25078,25079,-25948,25583,25090, + 25086,-25585,25596,25094,25095,-25599,25100,25097,25093,-25097,25597,25100,25096,-25599,25098,25099,25095,-25095,25595,25098,25094,-25597,25592,25102,25103,-25595,25108,25105,25101,-25105,25593,25108, + 25104,-25595,25106,25107,25103,-25103,25591,25106,25102,-25593,25940,25942,25067,-25067,25583,25585,25091,-25091,25131,25130,25134,-25136,25933,25935,25075,-25075,25944,25946,25083,-25083,25595,25597, + 25099,-25099,25201,25198,25194,-25198,25132,25131,25135,-25137,25200,25201,25197,-25197,25477,25119,25115,-25479,25119,25120,25116,-25116,25479,25121,25117,-25481,25121,25118,25114,-25118,25478,25115, + 25116,-25481,25199,25200,25196,-25196,25198,25199,25195,-25195,25133,25132,25136,-25138,25161,25158,25154,-25158,25137,25136,25135,-25135,25130,25133,25137,-25135,25143,25144,25140,-25140,25142,25143, + 25139,-25139,25517,25155,25156,-25813,25129,25128,25127,-25127,25122,25125,25129,-25127,25123,25122,25126,-25128,25124,25123,25127,-25129,25125,25124,25128,-25130,25144,25145,25141,-25141,25145,25142, + 25138,-25142,25138,25139,25140,-25142,25159,25160,25156,-25156,25481,25151,25147,-25483,25151,25152,25148,-25148,25483,25153,25149,-25485,25153,25150,25146,-25150,25482,25147,25148,-25485,25515,25159, + 25155,-25518,25571,25163,25164,-25571,25319,25318,25817,-25816,25489,25169,25165,-25491,25168,25167,25819,-25573,25186,25190,25191,-25183,25178,25175,25171,-25180,25179,25171,25172,-25182,25192,25189, + 25185,-25194,25531,25177,25173,-25534,25191,25183,25184,-25194,25532,25178,25179,-25531,25530,25179,25181,-25534,25176,25180,25181,-25173,25190,25187,25183,-25192,25182,25191,25193,-25186,25188,25192, + 25193,-25185,25477,25479,25120,-25120,25269,25267,25202,-25206,25950,25269,25205,-25205,25948,25950,25204,-25204,25267,25948,25203,-25203,25759,25761,25210,-25214,25760,25759,25213,-25213,25762,25760, + 25212,-25212,25761,25762,25211,-25211,25225,25222,25218,-25222,25224,25225,25221,-25221,25223,25224,25220,-25220,25222,25223,25219,-25219,25588,25227,25228,-25591,25233,25230,25226,-25230,25589,25233, + 25229,-25591,25231,25232,25228,-25228,25587,25231,25227,-25589,25580,25235,25236,-25583,25241,25238,25234,-25238,25581,25241,25237,-25583,25239,25240,25236,-25236,25579,25239,25235,-25581,25246,25243, + -25243,25246,25247,25244,-25244,25252,25249,-25249,25252,25253,25250,-25250,25261,25258,25254,-25258,25260,25261,25257,-25257,25259,25260,25256,-25256,25258,25259,25255,-25255,25951,25949,25262,-25266, + 25277,25274,25270,-25274,25276,25277,25273,-25273,25275,25276,25272,-25272,25274,25275,25271,-25271,25285,25282,25278,-25282,25284,25285,25281,-25281,25283,25284,25280,-25280,25282,25283,25279,-25279, + 25291,25290,-25953,25290,25291,25288,-25288,25299,25296,25292,-25296,25298,25299,25295,-25295,25297,25298,25294,-25294,25296,25297,25293,-25293,25317,25315,25314,-25306,25307,25317,25305,-25317,25316, + 25305,25320,-25322,25311,25312,25309,-25309,25312,25313,25310,-25310,25313,25311,25308,-25311,25315,25304,25306,-25315,25305,25314,25319,-25321,25306,25316,25321,-25319,25322,25845,25325,-25327,25917, + 25322,25326,-25919,25919,25362,25324,-25921,25332,25330,25336,-25335,25337,25330,25333,-25335,25764,25345,25331,-25336,25344,25339,-25339,25344,25338,25340,-25343,25341,25345,25763,-25336,25350,25351, + 25347,-25347,25352,25353,25349,-25349,25353,25350,25346,-25350,25358,25359,25355,-25355,25360,25361,25357,-25357,25361,25358,25354,-25358,25352,25359,25358,-25354,25353,25358,25361,-25351,25350,25361, + 25360,-25352,25347,25356,25357,-25347,25346,25357,25354,-25350,25349,25354,25355,-25349,25367,25368,25364,-25364,25369,25370,25366,-25366,25370,25367,25363,-25367,25375,25376,25372,-25372,25377,25378, + 25374,-25374,25378,25375,25371,-25375,25369,25376,25375,-25371,25370,25375,25378,-25368,25367,25378,25377,-25369,25368,25369,25365,-25365,25377,25376,25369,-25369,25373,25372,25376,-25378,25351,25352, + 25348,-25348,25360,25359,25352,-25352,25356,25355,25359,-25361,25347,25348,25355,-25357,25383,25384,25380,-25380,25385,25386,25382,-25382,25386,25383,25379,-25383,25391,25392,25388,-25388,25393,25394, + 25390,-25390,25394,25391,25387,-25391,25385,25392,25391,-25387,25386,25391,25394,-25384,25383,25394,25393,-25385,25380,25389,25390,-25380,25379,25390,25387,-25383,25382,25387,25388,-25382,25399,25400, + 25396,-25396,25400,25401,25397,-25397,25401,25402,25398,-25398,25402,25399,25395,-25399,25395,25396,25397,-25399,25402,25401,25400,-25400,25407,25408,25404,-25404,25408,25409,25405,-25405,25409,25410, + 25406,-25406,25410,25407,25403,-25407,25403,25404,25405,-25407,25410,25409,25408,-25408,25415,25416,25412,-25412,25416,25417,25413,-25413,25423,25424,25420,-25420,25418,25415,25411,-25415,25411,25412, + 25413,-25415,25418,25417,25416,-25416,25424,25425,25421,-25421,25426,25423,25419,-25423,25419,25420,25421,-25423,25426,25425,25424,-25424,25431,25432,25428,-25428,25432,25433,25429,-25429,25434,25431, + 25427,-25431,25427,25428,25429,-25431,25434,25433,25432,-25432,25253,25251,-25251,25253,25252,25248,-25252,25435,25440,25438,-25438,25437,25438,25439,-25437,25441,25442,25439,-25439,25443,25441,25438, + -25441,25436,25442,25441,-25438,25437,25441,25443,-25436,25445,25450,25451,-25445,25444,25451,25448,-25448,25447,25448,25449,-25447,25453,25458,25459,-25453,25452,25459,25456,-25456,25455,25456,25457, + -25455,25474,25473,25466,-25466,25465,25466,25462,-25462,25461,25462,25469,-25471,25470,25469,25473,-25475,25472,25467,25466,-25474,25475,25464,25467,-25473,25474,25465,25464,-25476,25471,25460,25461, + -25471,25468,25463,25460,-25472,25469,25462,25463,-25469,25460,25463,25467,-25465,25461,25460,25464,-25466,25463,25462,25466,-25468,25468,25471,25475,-25473,25469,25468,25472,-25474,25471,25470,25474, + -25476,25384,25385,25381,-25381,25393,25392,25385,-25385,25389,25388,25392,-25394,25380,25381,25388,-25390,25118,25477,25478,-25115,25120,25479,25480,-25117,25114,25478,25480,-25118,25118,25121,25479, + -25478,25150,25481,25482,-25147,25152,25483,25484,-25149,25146,25482,25484,-25150,25154,25486,25487,-25158,25158,25485,25486,-25155,25162,25488,25490,-25166,25572,25489,25490,-25571,25512,25508,25503, + -25507,25513,25510,25505,-25505,25509,25514,25512,-25511,25500,25496,25491,-25495,25497,25502,25500,-25499,25501,25498,25493,-25493,25496,25501,25492,-25492,25499,25495,25501,-25497,25495,25497,25498, + -25502,25498,25500,25494,-25494,25502,25499,25496,-25501,25497,25495,25499,-25503,25508,25513,25504,-25504,25511,25507,25513,-25509,25507,25509,25510,-25514,25510,25512,25506,-25506,25514,25511,25508, + -25513,25509,25507,25511,-25515,25486,25517,25516,-25488,25485,25515,25517,-25487,25150,25153,25483,-25482,25481,25483,25152,-25152,25542,25523,25519,-25545,25523,25524,25520,-25520,25528,25525,25521, + -25530,25525,25522,25518,-25522,25544,25519,25520,-25544,25542,25545,25524,-25524,25522,25526,25527,-25519,25545,25528,25529,-25544,25518,25527,25529,-25522,25522,25525,25528,-25527,25170,25173,25177, + -25175,25531,25180,25178,-25533,25180,25531,25533,-25182,25174,25532,25530,-25171,25170,25530,25533,-25174,25177,25531,25532,-25175,25314,25306,25318,-25320,25304,25307,25316,-25307,25315,25317,25307, + -25305,25537,25535,25534,-25303,25300,25537,25302,-25537,25536,25302,25540,-25542,25535,25303,25301,-25535,25302,25534,25539,-25541,25301,25536,25541,-25539,25534,25301,25538,-25540,25303,25300,25536, + -25302,25535,25537,25300,-25304,25526,25542,25544,-25528,25527,25544,25543,-25530,25526,25528,25545,-25543,25524,25545,25543,-25521,25142,25145,25144,-25144,25123,25124,25125,-25123,25550,25554,25555, + -25547,25556,25553,25549,-25558,25555,25547,25548,-25558,25554,25551,25547,-25556,25546,25555,25557,-25550,25552,25556,25557,-25549,25562,25560,25558,-25564,25564,25562,25566,-25569,25563,25558,25559, + -25566,25561,25564,25565,-25560,25562,25564,25561,-25561,25563,25565,25569,-25568,25565,25564,25568,-25570,25562,25563,25567,-25567,25567,25569,25568,-25567,25488,25571,25570,-25491,25168,25572,25570, + -25165,25797,25796,25798,-25800,25795,25794,25796,-25798,25793,25792,25794,-25796,25791,25790,25792,-25794,25789,25788,25790,-25792,25787,25786,25788,-25790,25785,25784,25786,-25788,25783,25573,25784, + -25786,25234,25580,25582,-25238,25240,25581,25582,-25237,25238,25579,25580,-25235,25631,25584,25586,-25635,25091,25585,25586,-25088,25633,25583,25584,-25632,25633,25632,25585,-25584,25226,25588,25590, + -25230,25232,25589,25590,-25229,25230,25587,25588,-25227,25101,25592,25594,-25105,25107,25593,25594,-25104,25105,25591,25592,-25102,25093,25596,25598,-25097,25099,25597,25598,-25096,25097,25595,25596, + -25094,25097,25100,25597,-25596,25574,25575,25573,-25784,25576,25577,25575,-25575,25578,25599,25577,-25577,25600,25601,25599,-25579,25546,25549,25553,-25551,25161,25157,25487,-25611,25813,25610,25487, + 25516,-25813,25612,25602,-25755,25607,25611,25605,-25614,25612,25606,25614,-25603,25607,25613,-25750,25637,25622,-25757,25624,25639,25622,-25638,25638,25619,25640,-25624,25935,25604,25609,-25935,25645, + 25646,25801,-25801,25657,25658,25805,-25805,25605,25622,25639,-25614,25727,25726,25730,-25732,25718,25719,25726,-25728,25647,25648,25803,-25803,25722,25723,25719,-25719,25494,25491,25642,-25329,25613, + 25639,25644,-25619,25731,25730,25723,-25723,25650,25649,25651,-25655,25666,25662,25657,-25661,25669,25672,25666,-25665,25667,25664,25659,-25659,25662,25667,25658,-25658,25671,25670,25667,-25663,25670, + 25669,25664,-25668,25664,25666,25660,-25660,25672,25671,25662,-25667,25663,25661,25665,-25669,25663,25668,25672,-25670,25665,25661,25670,-25672,25661,25663,25669,-25671,25668,25665,25671,-25673,25678, + 25683,25680,-25685,25684,25680,25677,-25682,25683,25678,25679,-25683,25680,25683,25682,-25678,25678,25684,25681,-25680,25679,25681,25673,-25675,25677,25682,25675,-25677,25682,25679,25674,-25676,25681, + 25677,25676,-25674,25690,25695,25692,-25697,25696,25692,25689,-25694,25695,25690,25691,-25695,25692,25695,25694,-25690,25690,25696,25693,-25692,25691,25693,25685,-25687,25689,25694,25687,-25689,25694, + 25691,25686,-25688,25693,25689,25688,-25686,25700,25704,25705,-25709,25699,25702,25707,-25707,25704,25699,25706,-25706,25702,25700,25708,-25708,25703,25697,25700,-25703,25701,25698,25699,-25705,25698, + 25703,25702,-25700,25697,25701,25704,-25701,25703,25698,25701,-25698,25712,25710,25714,-25716,25729,25724,25723,-25731,25732,25721,25724,-25730,25731,25722,25721,-25733,25728,25717,25718,-25728,25725, + 25720,25717,-25729,25726,25719,25720,-25726,25717,25720,25724,-25722,25718,25717,25721,-25723,25720,25719,25723,-25725,25725,25728,25732,-25730,25726,25725,25729,-25731,25728,25727,25731,-25733,25743, + 25742,25746,-25748,25734,25735,25742,-25744,25738,25739,25735,-25735,25747,25746,25739,-25739,25745,25740,25739,-25747,25748,25737,25740,-25746,25747,25738,25737,-25749,25744,25733,25734,-25744,25741, + 25736,25733,-25745,25742,25735,25736,-25742,25733,25736,25740,-25738,25734,25733,25737,-25739,25736,25735,25739,-25741,25741,25744,25748,-25746,25742,25741,25745,-25747,25744,25743,25747,-25749,25606, + 25607,25749,-25751,25614,25606,-25751,25623,25640,-25753,25638,25753,-25620,25611,25612,25754,-25756,25605,25611,-25756,25638,25637,25756,-25754,25057,25060,25627,-25627,25750,25608,25615,-25615,25053, + 25630,25625,-25057,25057,25626,25630,-25054,25752,25640,25641,-25629,25585,25632,25634,-25587,25636,25757,25632,-25634,25624,25751,-25640,25636,25633,25631,-25759,25758,25631,25634,-25636,25492,25493, + 25329,-25617,25089,25092,25757,-25637,25089,25636,25758,-25086,25493,25494,25328,-25330,25613,25618,-25750,25073,25076,25621,-25644,25069,25629,25620,-25073,25639,25751,-25645,25073,25643,25629,-25070, + 25624,25623,25752,-25752,25085,25758,25635,-25089,25632,25757,25635,-25635,25340,25339,25344,-25344,25336,25330,-25338,25334,25333,-25333,25342,25340,-25344,25770,25766,-25766,25770,25765,25767,-25769, + 25767,25766,25770,-25770,25763,25345,-25765,25335,25331,-25342,25768,25767,-25770,25776,25774,25771,-25773,25773,25774,25775,-25773,25782,25778,-25778,25782,25777,25779,-25781,25779,25778,25782,-25782, + 25775,25774,-25777,25772,25771,-25774,25780,25779,-25782,25238,25241,25581,-25580,25579,25581,25240,-25240,25105,25108,25593,-25592,25591,25593,25107,-25107,25230,25233,25589,-25588,25587,25589,25232, + -25232,25214,25215,25762,-25762,25215,25216,25760,-25763,25216,25217,25759,-25761,25608,25628,25641,-25616,25716,25713,25710,-25713,25491,25492,25616,-25643,25811,25808,25713,-25717,25659,25660,25807, + -25807,25660,25657,25804,-25808,25648,25645,25800,-25804,25714,25710,25709,-25810,25811,25711,25709,-25809,25658,25659,25806,-25806,25646,25647,25802,-25802,25158,25161,-25486,25515,25485,-25611,25159, + 25515,-25161,25515,25610,-25814,25160,25515,-25814,25485,25161,-25611,25160,25813,25812,-25157,25516,25517,-25813,25133,25130,25131,-25133,25550,25553,25556,-25555,25554,25556,25552,-25552,25178,25180, + 25176,-25176,25186,25189,25192,-25191,25190,25192,25188,-25188,25571,25488,25818,-25820,25540,25539,25825,-25827,25489,25818,25166,-25170,25572,25819,25818,-25490,25541,25540,25826,-25828,25163,25571, + 25819,-25168,25488,25162,25166,-25819,25504,25505,25822,-25822,25503,25504,25821,-25821,25318,25321,25814,-25818,25539,25538,25824,-25826,25506,25503,25820,-25824,25321,25320,25816,-25815,25320,25319, + 25815,-25817,25538,25541,25827,-25825,25505,25506,25823,-25823,25602,25619,25753,-25755,25754,25753,25756,-25756,25755,25756,25622,-25606,25113,25835,25831,-25834,25839,25838,25837,-25831,25835,25112, + 25834,-25837,25835,25836,-25832,25112,25828,25109,-25838,25829,25113,25111,-25111,25834,25112,25837,-25839,25113,25833,25832,-25112,25831,25836,25839,-25831,25844,25851,25849,-25854,25857,25848,25855, + -25857,25853,25854,25852,-25844,25853,25849,-25855,25843,25855,25840,-25847,25829,25110,25841,-25848,25847,25841,25842,-25845,25852,25856,25855,-25844,25846,25840,25109,-25829,25844,25842,25850,-25852, + 25849,25848,25857,-25855,25863,25864,-25790,25829,25847,25844,-25114,25112,25843,25846,-25829,25864,25574,-25784,25864,25576,-25575,25712,25715,25810,-25712,25789,25791,-25864,25863,25791,-25794,25711, + 25810,25809,-25710,25863,25795,-25798,25578,25864,-25601,25862,25863,-25798,25710,25713,25808,-25710,25716,25712,25711,-25812,25864,25785,-25788,25861,25862,-25798,25578,25576,-25865,25864,25783,-25786, + 25440,25435,25858,-25860,25443,25440,25859,-25861,25797,25799,-25862,25435,25443,25860,-25859,25864,25787,-25790,25863,25793,-25796,25870,25875,25872,-25877,25876,25872,25869,-25874,25875,25870,25871, + -25875,25872,25875,25874,-25870,25870,25876,25873,-25872,25871,25873,25865,-25867,25869,25874,25867,-25869,25874,25871,25866,-25868,25873,25869,25868,-25866,25686,25685,25877,-25879,25688,25687,25879, + -25881,25685,25688,25880,-25878,25687,25686,25878,-25880,25889,25886,25882,-25891,25886,25887,25883,-25883,25891,25888,25884,-25893,25888,25885,25881,-25885,25217,25214,25761,-25760,25889,25891,25887, + -25887,25885,25889,25890,-25882,25887,25891,25892,-25884,25881,25890,25892,-25885,25885,25888,25891,-25890,25901,25898,25894,-25903,25898,25899,25895,-25895,25903,25900,25896,-25905,25900,25897,25893, + -25897,25902,25894,25895,-25905,25901,25903,25899,-25899,25897,25901,25902,-25894,25899,25903,25904,-25896,25893,25902,25904,-25897,25897,25900,25903,-25902,25913,25910,25906,-25915,25910,25911,25907, + -25907,25915,25912,25908,-25917,25912,25909,25905,-25909,25914,25906,25907,-25917,25913,25915,25911,-25911,25909,25913,25914,-25906,25911,25915,25916,-25908,25905,25914,25916,-25909,25909,25912,25915, + -25914,25362,25323,25327,-25325,25476,25058,25054,-25939,25917,25919,25845,-25323,25323,25917,25918,-25328,25845,25919,25920,-25326,25327,25918,25920,-25325,25323,25362,25919,-25918,25921,25928,25924, + -25926,25929,25921,25925,-25931,25931,25927,25923,-25933,25927,25922,25926,-25924,25930,25925,25924,-25933,25929,25931,25928,-25922,25922,25929,25930,-25927,25928,25931,25932,-25925,25926,25930,25932, + -25924,25922,25927,25931,-25930,25617,25933,25936,-25604,25603,25936,25934,-25610,25617,25604,25935,-25934,25075,25935,25934,-25072,25059,25939,25937,-25056,25065,25940,25941,-25062,25067,25942,25943, + -25064,25061,25941,25943,-25065,25065,25068,25942,-25941,25081,25944,25945,-25078,25083,25946,25947,-25080,25077,25945,25947,-25081,25081,25084,25946,-25945,25266,25268,25264,-25264,25949,25266,25263, + -25263,25206,25207,25948,-25268,25207,25208,25950,-25949,25268,25951,25265,-25265,25208,25209,25269,-25951,25268,25266,25949,-25952,25209,25206,25267,-25270,25291,25952,25289,-25289,25952,25290,25286, + -25290,25247,25245,-25245,25290,25287,-25287,25247,25246,25242,-25246,25476,25939,25059,-25059,25626,25476,25938,-25631,25630,25938,25937,-25626,25626,25627,25939,-25477,25652,25656,25645,-25649,25653, + 25655,25647,-25647,25656,25653,25646,-25646,25655,25652,25648,-25648,25650,25654,25652,-25656,25651,25649,25653,-25657,25649,25650,25655,-25654,25654,25651,25656,-25653,25939,25627,25625,-25938,26484, + 25986,25987,-26487,25958,25959,25955,-25955,26527,25960,25956,-26526,25960,25957,25953,-25957,26838,25954,25955,-26838,25992,25989,25985,-25989,26840,25966,25962,-26842,25966,25967,25963,-25963,26842, + 25968,25964,-26844,25968,25965,25961,-25965,26841,25962,25963,-26844,26657,25992,25988,-26536,26833,25974,25970,-26837,25974,25975,25971,-25971,26521,25976,25972,-26521,25976,25973,25969,-25973,26836, + 25970,25971,-26835,25990,25991,25987,-25987,26844,25982,25978,-26846,25982,25983,25979,-25979,26846,25984,25980,-26848,25984,25981,25977,-25981,26845,25978,25979,-26848,26483,25990,25986,-26485,26496, + 25994,25995,-26499,26000,25997,25993,-25997,26497,26000,25996,-26499,25998,25999,25995,-25995,26495,25998,25994,-26497,26492,26002,26003,-26495,26008,26005,26001,-26005,26493,26008,26004,-26495,26006, + 26007,26003,-26003,26491,26006,26002,-26493,26840,26842,25967,-25967,26483,26485,25991,-25991,26031,26030,26034,-26036,26833,26835,25975,-25975,26844,26846,25983,-25983,26495,26497,25999,-25999,26101, + 26098,26094,-26098,26032,26031,26035,-26037,26100,26101,26097,-26097,26377,26019,26015,-26379,26019,26020,26016,-26016,26379,26021,26017,-26381,26021,26018,26014,-26018,26378,26015,26016,-26381,26099, + 26100,26096,-26096,26098,26099,26095,-26095,26033,26032,26036,-26038,26061,26058,26054,-26058,26037,26036,26035,-26035,26030,26033,26037,-26035,26043,26044,26040,-26040,26042,26043,26039,-26039,26417, + 26055,26056,-26713,26029,26028,26027,-26027,26022,26025,26029,-26027,26023,26022,26026,-26028,26024,26023,26027,-26029,26025,26024,26028,-26030,26044,26045,26041,-26041,26045,26042,26038,-26042,26038, + 26039,26040,-26042,26059,26060,26056,-26056,26381,26051,26047,-26383,26051,26052,26048,-26048,26383,26053,26049,-26385,26053,26050,26046,-26050,26382,26047,26048,-26385,26415,26059,26055,-26418,26471, + 26063,26064,-26471,26219,26218,26717,-26716,26389,26069,26065,-26391,26068,26067,26719,-26473,26086,26090,26091,-26083,26078,26075,26071,-26080,26079,26071,26072,-26082,26092,26089,26085,-26094,26431, + 26077,26073,-26434,26091,26083,26084,-26094,26432,26078,26079,-26431,26430,26079,26081,-26434,26076,26080,26081,-26073,26090,26087,26083,-26092,26082,26091,26093,-26086,26088,26092,26093,-26085,26377, + 26379,26020,-26020,26169,26167,26102,-26106,26850,26169,26105,-26105,26848,26850,26104,-26104,26167,26848,26103,-26103,26659,26661,26110,-26114,26660,26659,26113,-26113,26662,26660,26112,-26112,26661, + 26662,26111,-26111,26125,26122,26118,-26122,26124,26125,26121,-26121,26123,26124,26120,-26120,26122,26123,26119,-26119,26488,26127,26128,-26491,26133,26130,26126,-26130,26489,26133,26129,-26491,26131, + 26132,26128,-26128,26487,26131,26127,-26489,26480,26135,26136,-26483,26141,26138,26134,-26138,26481,26141,26137,-26483,26139,26140,26136,-26136,26479,26139,26135,-26481,26146,26143,-26143,26146,26147, + 26144,-26144,26152,26149,-26149,26152,26153,26150,-26150,26161,26158,26154,-26158,26160,26161,26157,-26157,26159,26160,26156,-26156,26158,26159,26155,-26155,26851,26849,26162,-26166,26177,26174,26170, + -26174,26176,26177,26173,-26173,26175,26176,26172,-26172,26174,26175,26171,-26171,26185,26182,26178,-26182,26184,26185,26181,-26181,26183,26184,26180,-26180,26182,26183,26179,-26179,26191,26190,-26853, + 26190,26191,26188,-26188,26199,26196,26192,-26196,26198,26199,26195,-26195,26197,26198,26194,-26194,26196,26197,26193,-26193,26217,26215,26214,-26206,26207,26217,26205,-26217,26216,26205,26220,-26222, + 26211,26212,26209,-26209,26212,26213,26210,-26210,26213,26211,26208,-26211,26215,26204,26206,-26215,26205,26214,26219,-26221,26206,26216,26221,-26219,26222,26745,26225,-26227,26817,26222,26226,-26819, + 26819,26262,26224,-26821,26232,26230,26236,-26235,26237,26230,26233,-26235,26664,26245,26231,-26236,26244,26239,-26239,26244,26238,26240,-26243,26241,26245,26663,-26236,26250,26251,26247,-26247,26252, + 26253,26249,-26249,26253,26250,26246,-26250,26258,26259,26255,-26255,26260,26261,26257,-26257,26261,26258,26254,-26258,26252,26259,26258,-26254,26253,26258,26261,-26251,26250,26261,26260,-26252,26247, + 26256,26257,-26247,26246,26257,26254,-26250,26249,26254,26255,-26249,26267,26268,26264,-26264,26269,26270,26266,-26266,26270,26267,26263,-26267,26275,26276,26272,-26272,26277,26278,26274,-26274,26278, + 26275,26271,-26275,26269,26276,26275,-26271,26270,26275,26278,-26268,26267,26278,26277,-26269,26268,26269,26265,-26265,26277,26276,26269,-26269,26273,26272,26276,-26278,26251,26252,26248,-26248,26260, + 26259,26252,-26252,26256,26255,26259,-26261,26247,26248,26255,-26257,26283,26284,26280,-26280,26285,26286,26282,-26282,26286,26283,26279,-26283,26291,26292,26288,-26288,26293,26294,26290,-26290,26294, + 26291,26287,-26291,26285,26292,26291,-26287,26286,26291,26294,-26284,26283,26294,26293,-26285,26280,26289,26290,-26280,26279,26290,26287,-26283,26282,26287,26288,-26282,26299,26300,26296,-26296,26300, + 26301,26297,-26297,26301,26302,26298,-26298,26302,26299,26295,-26299,26295,26296,26297,-26299,26302,26301,26300,-26300,26307,26308,26304,-26304,26308,26309,26305,-26305,26309,26310,26306,-26306,26310, + 26307,26303,-26307,26303,26304,26305,-26307,26310,26309,26308,-26308,26315,26316,26312,-26312,26316,26317,26313,-26313,26323,26324,26320,-26320,26318,26315,26311,-26315,26311,26312,26313,-26315,26318, + 26317,26316,-26316,26324,26325,26321,-26321,26326,26323,26319,-26323,26319,26320,26321,-26323,26326,26325,26324,-26324,26331,26332,26328,-26328,26332,26333,26329,-26329,26334,26331,26327,-26331,26327, + 26328,26329,-26331,26334,26333,26332,-26332,26153,26151,-26151,26153,26152,26148,-26152,26335,26340,26338,-26338,26337,26338,26339,-26337,26341,26342,26339,-26339,26343,26341,26338,-26341,26336,26342, + 26341,-26338,26337,26341,26343,-26336,26345,26350,26351,-26345,26344,26351,26348,-26348,26347,26348,26349,-26347,26353,26358,26359,-26353,26352,26359,26356,-26356,26355,26356,26357,-26355,26374,26373, + 26366,-26366,26365,26366,26362,-26362,26361,26362,26369,-26371,26370,26369,26373,-26375,26372,26367,26366,-26374,26375,26364,26367,-26373,26374,26365,26364,-26376,26371,26360,26361,-26371,26368,26363, + 26360,-26372,26369,26362,26363,-26369,26360,26363,26367,-26365,26361,26360,26364,-26366,26363,26362,26366,-26368,26368,26371,26375,-26373,26369,26368,26372,-26374,26371,26370,26374,-26376,26284,26285, + 26281,-26281,26293,26292,26285,-26285,26289,26288,26292,-26294,26280,26281,26288,-26290,26018,26377,26378,-26015,26020,26379,26380,-26017,26014,26378,26380,-26018,26018,26021,26379,-26378,26050,26381, + 26382,-26047,26052,26383,26384,-26049,26046,26382,26384,-26050,26054,26386,26387,-26058,26058,26385,26386,-26055,26062,26388,26390,-26066,26472,26389,26390,-26471,26412,26408,26403,-26407,26413,26410, + 26405,-26405,26409,26414,26412,-26411,26400,26396,26391,-26395,26397,26402,26400,-26399,26401,26398,26393,-26393,26396,26401,26392,-26392,26399,26395,26401,-26397,26395,26397,26398,-26402,26398,26400, + 26394,-26394,26402,26399,26396,-26401,26397,26395,26399,-26403,26408,26413,26404,-26404,26411,26407,26413,-26409,26407,26409,26410,-26414,26410,26412,26406,-26406,26414,26411,26408,-26413,26409,26407, + 26411,-26415,26386,26417,26416,-26388,26385,26415,26417,-26387,26050,26053,26383,-26382,26381,26383,26052,-26052,26442,26423,26419,-26445,26423,26424,26420,-26420,26428,26425,26421,-26430,26425,26422, + 26418,-26422,26444,26419,26420,-26444,26442,26445,26424,-26424,26422,26426,26427,-26419,26445,26428,26429,-26444,26418,26427,26429,-26422,26422,26425,26428,-26427,26070,26073,26077,-26075,26431,26080, + 26078,-26433,26080,26431,26433,-26082,26074,26432,26430,-26071,26070,26430,26433,-26074,26077,26431,26432,-26075,26214,26206,26218,-26220,26204,26207,26216,-26207,26215,26217,26207,-26205,26437,26435, + 26434,-26203,26200,26437,26202,-26437,26436,26202,26440,-26442,26435,26203,26201,-26435,26202,26434,26439,-26441,26201,26436,26441,-26439,26434,26201,26438,-26440,26203,26200,26436,-26202,26435,26437, + 26200,-26204,26426,26442,26444,-26428,26427,26444,26443,-26430,26426,26428,26445,-26443,26424,26445,26443,-26421,26042,26045,26044,-26044,26023,26024,26025,-26023,26450,26454,26455,-26447,26456,26453, + 26449,-26458,26455,26447,26448,-26458,26454,26451,26447,-26456,26446,26455,26457,-26450,26452,26456,26457,-26449,26462,26460,26458,-26464,26464,26462,26466,-26469,26463,26458,26459,-26466,26461,26464, + 26465,-26460,26462,26464,26461,-26461,26463,26465,26469,-26468,26465,26464,26468,-26470,26462,26463,26467,-26467,26467,26469,26468,-26467,26388,26471,26470,-26391,26068,26472,26470,-26065,26697,26696, + 26698,-26700,26695,26694,26696,-26698,26693,26692,26694,-26696,26691,26690,26692,-26694,26689,26688,26690,-26692,26687,26686,26688,-26690,26685,26684,26686,-26688,26683,26473,26684,-26686,26134,26480, + 26482,-26138,26140,26481,26482,-26137,26138,26479,26480,-26135,26531,26484,26486,-26535,25991,26485,26486,-25988,26533,26483,26484,-26532,26533,26532,26485,-26484,26126,26488,26490,-26130,26132,26489, + 26490,-26129,26130,26487,26488,-26127,26001,26492,26494,-26005,26007,26493,26494,-26004,26005,26491,26492,-26002,25993,26496,26498,-25997,25999,26497,26498,-25996,25997,26495,26496,-25994,25997,26000, + 26497,-26496,26474,26475,26473,-26684,26476,26477,26475,-26475,26478,26499,26477,-26477,26500,26501,26499,-26479,26446,26449,26453,-26451,26061,26057,26387,-26511,26713,26510,26387,26416,-26713,26512, + 26502,-26655,26507,26511,26505,-26514,26512,26506,26514,-26503,26507,26513,-26650,26537,26522,-26657,26524,26539,26522,-26538,26538,26519,26540,-26524,26835,26504,26509,-26835,26545,26546,26701,-26701, + 26557,26558,26705,-26705,26505,26522,26539,-26514,26627,26626,26630,-26632,26618,26619,26626,-26628,26547,26548,26703,-26703,26622,26623,26619,-26619,26394,26391,26542,-26229,26513,26539,26544,-26519, + 26631,26630,26623,-26623,26550,26549,26551,-26555,26566,26562,26557,-26561,26569,26572,26566,-26565,26567,26564,26559,-26559,26562,26567,26558,-26558,26571,26570,26567,-26563,26570,26569,26564,-26568, + 26564,26566,26560,-26560,26572,26571,26562,-26567,26563,26561,26565,-26569,26563,26568,26572,-26570,26565,26561,26570,-26572,26561,26563,26569,-26571,26568,26565,26571,-26573,26578,26583,26580,-26585, + 26584,26580,26577,-26582,26583,26578,26579,-26583,26580,26583,26582,-26578,26578,26584,26581,-26580,26579,26581,26573,-26575,26577,26582,26575,-26577,26582,26579,26574,-26576,26581,26577,26576,-26574, + 26590,26595,26592,-26597,26596,26592,26589,-26594,26595,26590,26591,-26595,26592,26595,26594,-26590,26590,26596,26593,-26592,26591,26593,26585,-26587,26589,26594,26587,-26589,26594,26591,26586,-26588, + 26593,26589,26588,-26586,26600,26604,26605,-26609,26599,26602,26607,-26607,26604,26599,26606,-26606,26602,26600,26608,-26608,26603,26597,26600,-26603,26601,26598,26599,-26605,26598,26603,26602,-26600, + 26597,26601,26604,-26601,26603,26598,26601,-26598,26612,26610,26614,-26616,26629,26624,26623,-26631,26632,26621,26624,-26630,26631,26622,26621,-26633,26628,26617,26618,-26628,26625,26620,26617,-26629, + 26626,26619,26620,-26626,26617,26620,26624,-26622,26618,26617,26621,-26623,26620,26619,26623,-26625,26625,26628,26632,-26630,26626,26625,26629,-26631,26628,26627,26631,-26633,26643,26642,26646,-26648, + 26634,26635,26642,-26644,26638,26639,26635,-26635,26647,26646,26639,-26639,26645,26640,26639,-26647,26648,26637,26640,-26646,26647,26638,26637,-26649,26644,26633,26634,-26644,26641,26636,26633,-26645, + 26642,26635,26636,-26642,26633,26636,26640,-26638,26634,26633,26637,-26639,26636,26635,26639,-26641,26641,26644,26648,-26646,26642,26641,26645,-26647,26644,26643,26647,-26649,26506,26507,26649,-26651, + 26514,26506,-26651,26523,26540,-26653,26538,26653,-26520,26511,26512,26654,-26656,26505,26511,-26656,26538,26537,26656,-26654,25957,25960,26527,-26527,26650,26508,26515,-26515,25953,26530,26525,-25957, + 25957,26526,26530,-25954,26652,26540,26541,-26529,26485,26532,26534,-26487,26536,26657,26532,-26534,26524,26651,-26540,26536,26533,26531,-26659,26658,26531,26534,-26536,26392,26393,26229,-26517,25989, + 25992,26657,-26537,25989,26536,26658,-25986,26393,26394,26228,-26230,26513,26518,-26650,25973,25976,26521,-26544,25969,26529,26520,-25973,26539,26651,-26545,25973,26543,26529,-25970,26524,26523,26652, + -26652,25985,26658,26535,-25989,26532,26657,26535,-26535,26240,26239,26244,-26244,26236,26230,-26238,26234,26233,-26233,26242,26240,-26244,26670,26666,-26666,26670,26665,26667,-26669,26667,26666,26670, + -26670,26663,26245,-26665,26235,26231,-26242,26668,26667,-26670,26676,26674,26671,-26673,26673,26674,26675,-26673,26682,26678,-26678,26682,26677,26679,-26681,26679,26678,26682,-26682,26675,26674,-26677, + 26672,26671,-26674,26680,26679,-26682,26138,26141,26481,-26480,26479,26481,26140,-26140,26005,26008,26493,-26492,26491,26493,26007,-26007,26130,26133,26489,-26488,26487,26489,26132,-26132,26114,26115, + 26662,-26662,26115,26116,26660,-26663,26116,26117,26659,-26661,26508,26528,26541,-26516,26616,26613,26610,-26613,26391,26392,26516,-26543,26711,26708,26613,-26617,26559,26560,26707,-26707,26560,26557, + 26704,-26708,26548,26545,26700,-26704,26614,26610,26609,-26710,26711,26611,26609,-26709,26558,26559,26706,-26706,26546,26547,26702,-26702,26058,26061,-26386,26415,26385,-26511,26059,26415,-26061,26415, + 26510,-26714,26060,26415,-26714,26385,26061,-26511,26060,26713,26712,-26057,26416,26417,-26713,26033,26030,26031,-26033,26450,26453,26456,-26455,26454,26456,26452,-26452,26078,26080,26076,-26076,26086, + 26089,26092,-26091,26090,26092,26088,-26088,26471,26388,26718,-26720,26440,26439,26725,-26727,26389,26718,26066,-26070,26472,26719,26718,-26390,26441,26440,26726,-26728,26063,26471,26719,-26068,26388, + 26062,26066,-26719,26404,26405,26722,-26722,26403,26404,26721,-26721,26218,26221,26714,-26718,26439,26438,26724,-26726,26406,26403,26720,-26724,26221,26220,26716,-26715,26220,26219,26715,-26717,26438, + 26441,26727,-26725,26405,26406,26723,-26723,26502,26519,26653,-26655,26654,26653,26656,-26656,26655,26656,26522,-26506,26013,26735,26731,-26734,26739,26738,26737,-26731,26735,26012,26734,-26737,26735, + 26736,-26732,26012,26728,26009,-26738,26729,26013,26011,-26011,26734,26012,26737,-26739,26013,26733,26732,-26012,26731,26736,26739,-26731,26744,26751,26749,-26754,26757,26748,26755,-26757,26753,26754, + 26752,-26744,26753,26749,-26755,26743,26755,26740,-26747,26729,26010,26741,-26748,26747,26741,26742,-26745,26752,26756,26755,-26744,26746,26740,26009,-26729,26744,26742,26750,-26752,26749,26748,26757, + -26755,26763,26764,-26690,26729,26747,26744,-26014,26012,26743,26746,-26729,26764,26474,-26684,26764,26476,-26475,26612,26615,26710,-26612,26689,26691,-26764,26763,26691,-26694,26611,26710,26709,-26610, + 26763,26695,-26698,26478,26764,-26501,26762,26763,-26698,26610,26613,26708,-26610,26616,26612,26611,-26712,26764,26685,-26688,26761,26762,-26698,26478,26476,-26765,26764,26683,-26686,26340,26335,26758, + -26760,26343,26340,26759,-26761,26697,26699,-26762,26335,26343,26760,-26759,26764,26687,-26690,26763,26693,-26696,26770,26775,26772,-26777,26776,26772,26769,-26774,26775,26770,26771,-26775,26772,26775, + 26774,-26770,26770,26776,26773,-26772,26771,26773,26765,-26767,26769,26774,26767,-26769,26774,26771,26766,-26768,26773,26769,26768,-26766,26586,26585,26777,-26779,26588,26587,26779,-26781,26585,26588, + 26780,-26778,26587,26586,26778,-26780,26789,26786,26782,-26791,26786,26787,26783,-26783,26791,26788,26784,-26793,26788,26785,26781,-26785,26117,26114,26661,-26660,26789,26791,26787,-26787,26785,26789, + 26790,-26782,26787,26791,26792,-26784,26781,26790,26792,-26785,26785,26788,26791,-26790,26801,26798,26794,-26803,26798,26799,26795,-26795,26803,26800,26796,-26805,26800,26797,26793,-26797,26802,26794, + 26795,-26805,26801,26803,26799,-26799,26797,26801,26802,-26794,26799,26803,26804,-26796,26793,26802,26804,-26797,26797,26800,26803,-26802,26813,26810,26806,-26815,26810,26811,26807,-26807,26815,26812, + 26808,-26817,26812,26809,26805,-26809,26814,26806,26807,-26817,26813,26815,26811,-26811,26809,26813,26814,-26806,26811,26815,26816,-26808,26805,26814,26816,-26809,26809,26812,26815,-26814,26262,26223, + 26227,-26225,26376,25958,25954,-26839,26817,26819,26745,-26223,26223,26817,26818,-26228,26745,26819,26820,-26226,26227,26818,26820,-26225,26223,26262,26819,-26818,26821,26828,26824,-26826,26829,26821, + 26825,-26831,26831,26827,26823,-26833,26827,26822,26826,-26824,26830,26825,26824,-26833,26829,26831,26828,-26822,26822,26829,26830,-26827,26828,26831,26832,-26825,26826,26830,26832,-26824,26822,26827, + 26831,-26830,26517,26833,26836,-26504,26503,26836,26834,-26510,26517,26504,26835,-26834,25975,26835,26834,-25972,25959,26839,26837,-25956,25965,26840,26841,-25962,25967,26842,26843,-25964,25961,26841, + 26843,-25965,25965,25968,26842,-26841,25981,26844,26845,-25978,25983,26846,26847,-25980,25977,26845,26847,-25981,25981,25984,26846,-26845,26166,26168,26164,-26164,26849,26166,26163,-26163,26106,26107, + 26848,-26168,26107,26108,26850,-26849,26168,26851,26165,-26165,26108,26109,26169,-26851,26168,26166,26849,-26852,26109,26106,26167,-26170,26191,26852,26189,-26189,26852,26190,26186,-26190,26147,26145, + -26145,26190,26187,-26187,26147,26146,26142,-26146,26376,26839,25959,-25959,26526,26376,26838,-26531,26530,26838,26837,-26526,26526,26527,26839,-26377,26552,26556,26545,-26549,26553,26555,26547,-26547, + 26556,26553,26546,-26546,26555,26552,26548,-26548,26550,26554,26552,-26556,26551,26549,26553,-26557,26549,26550,26555,-26554,26554,26551,26556,-26553,26839,26527,26525,-26838,26865,26866,26867,-26869, + 26872,26869,26865,-26869,26857,26858,26855,-26855,26871,26872,26868,-26868,26870,26871,26867,-26867,26862,26863,26860,-26860,26869,26870,26866,-26866,26877,26878,26874,-26874,26883,26884,26880,-26880, + 26884,26885,26881,-26881,26885,26886,26882,-26882,26886,26883,26879,-26883,26869,26872,26871,-26871,26927,26926,26929,-26931,26875,26878,26877,-26877,26904,26905,26906,-26908,27131,27129,27126,-27129, + 27402,26897,26894,-27404,26908,26909,26905,-26905,26912,26913,26914,-26916,26918,26919,26915,-26915,27129,27130,27127,-27127,26957,26954,26950,-26954,26936,26937,26934,-26934,27401,27402,26896,-26896, + 27408,26951,26952,-27410,26921,26920,26924,-26926,26942,26943,26941,-26941,26938,26939,26940,-26942,26955,26956,26952,-26952,27405,26949,26945,-27407,27407,26955,26951,-27409,27410,26959,26960,-27413, + 26965,26962,26958,-26962,27411,26965,26961,-27413,26963,26964,26960,-26960,26983,26987,26988,-26982,26977,26974,26970,-26979,26978,26970,26971,-26981,26979,26976,26972,-26981,26973,26977,26978,-26970, + 26969,26978,26980,-26973,26975,26979,26980,-26972,26987,26984,26982,-26989,27394,26995,26993,-27394,27392,26991,26995,-27395,27392,26992,26998,-27396,27395,26998,27000,-27397,26991,26990,26993,-26996, + 26891,26888,27002,-27005,27393,26993,26990,-27398,27396,27000,27001,-27398,27001,26992,26996,-26995,26992,27001,27000,-26999,26997,26999,26990,-26992,26889,26890,27003,-27006,27009,27010,27006,-27008, + 27002,26889,-27006,26890,27004,-27004,26968,26891,27004,-26891,26888,26966,26889,-27003,27015,27016,27013,-27013,27016,27017,27014,-27014,26908,26911,26910,-26910,27021,27020,27018,-27020,27025,27024, + 27022,-27024,27031,27029,27026,-27029,27036,27037,27033,-27033,27037,27038,27034,-27034,27038,27039,27035,-27035,27039,27036,27032,-27036,27043,27042,27040,-27042,27047,27046,27044,-27046,27053,27051, + 27048,-27051,27057,27056,27054,-27056,27061,27060,27058,-27060,27065,27064,27062,-27064,27069,27068,27066,-27068,27073,27072,27070,-27072,27077,27076,27074,-27076,27081,27080,27078,-27080,27086,27087, + 27083,-27083,27087,27088,27084,-27084,27088,27089,27085,-27085,27089,27086,27082,-27086,27093,27092,27090,-27092,27097,27096,27094,-27096,27103,27104,27100,-27100,27102,27103,27099,-27099,27104,27105, + 27101,-27101,27105,27102,27098,-27102,27110,27111,27108,-27108,27115,27114,27112,-27114,27119,27118,27116,-27118,27123,27124,27121,-27121,27125,27123,27120,-27123,26917,26916,26919,-26919,27137,27135, + 27132,-27135,27135,27136,27133,-27133,27142,27143,27140,-27140,27141,27142,27139,-27139,27148,27149,27146,-27146,27147,27148,27145,-27145,27153,27152,27150,-27152,27157,27156,27154,-27156,27161,27160, + 27158,-27160,27165,27164,27162,-27164,27166,27167,27169,-27169,27174,27175,27172,-27172,27175,27173,27170,-27173,27179,27180,27177,-27177,27182,27179,27176,-27179,27174,27180,27179,-27176,27175,27179, + 27182,-27174,27170,27178,27176,-27173,27172,27176,27177,-27172,27183,27185,27188,-27187,27184,27183,27186,-27188,27189,27192,27191,-27191,27193,27196,27195,-27195,27206,27203,27202,-27208,27202,27199, + 27200,-27202,27207,27202,27201,-27209,27205,27204,27203,-27207,27204,27197,27198,-27204,27203,27198,27199,-27203,27201,27200,27197,-27205,27208,27201,27204,-27206,27208,27205,27206,-27208,27212,27209, + 27210,-27212,27216,27213,27214,-27216,27221,27222,27218,-27218,27223,27224,27220,-27220,27224,27221,27217,-27221,27229,27230,27226,-27226,27231,27232,27228,-27228,27232,27229,27225,-27229,27223,27230, + 27229,-27225,27224,27229,27232,-27222,27221,27232,27231,-27223,27218,27227,27228,-27218,27217,27228,27225,-27221,27220,27225,27226,-27220,27233,27236,27235,-27235,27237,27240,27239,-27239,27241,27244, + 27243,-27243,27249,27250,27246,-27246,27251,27252,27248,-27248,27252,27249,27245,-27249,27257,27258,27254,-27254,27259,27260,27256,-27256,27260,27257,27253,-27257,27251,27258,27257,-27253,27252,27257, + 27260,-27250,27249,27260,27259,-27251,27246,27255,27256,-27246,27245,27256,27253,-27249,27248,27253,27254,-27248,27261,27264,27263,-27263,27265,27268,27267,-27267,27269,27272,27271,-27271,27273,27274, + 27276,-27276,27280,27279,27277,-27279,27285,27286,27282,-27282,27288,27284,27287,-27284,27287,27281,27282,-27284,27296,27291,-27295,27295,27296,27294,-27294,27288,27286,27285,-27285,27290,27293,27294, + -27290,27291,27296,27295,-27293,27291,27292,27290,-27290,27289,27294,-27292,27301,27302,27298,-27298,27302,27304,27299,-27299,27303,27301,27297,-27301,27297,27298,27299,-27301,27303,27304,27302,-27302, + 27284,27285,27281,-27288,27308,27309,27306,-27306,27311,27308,27305,-27308,27184,27309,27308,-27184,27183,27308,27311,-27186,27188,27307,27305,-27187,27186,27305,27306,-27188,27312,27315,27314,-27314, + 27316,27319,27318,-27318,27307,27188,27327,-27329,27170,27173,27323,-27323,27185,27311,27329,-27327,27311,27307,27328,-27330,27178,27170,27322,-27325,27188,27185,27326,-27328,27173,27182,27325,-27324, + 27182,27178,27324,-27326,26926,26928,-26930,27333,27332,27330,-27332,26928,26931,26930,-26930,27337,27336,27334,-27336,27333,27336,27337,-27333,26931,26927,-26931,27509,27510,27512,-27508,27366,27398, + 27400,-27373,27398,27366,27368,-27400,27341,27340,27365,-27364,27338,27340,-27342,27008,27011,26967,-26888,27010,27008,26887,-27007,27345,27344,27342,-27344,26887,26967,27007,-27007,26943,26938,-26942, + 27349,27348,27346,-27348,26922,26921,-26926,27345,27348,27349,-27345,26920,26923,-26925,26923,26922,26925,-26925,27342,27347,27346,-27344,26939,26942,-26941,27350,27353,27352,-27352,27354,27357,27356, + -27356,27358,27361,27360,-27360,27365,27340,27339,-27365,27341,27363,27362,-27339,27011,27009,27007,-26968,27398,27367,27371,-27401,27369,27368,27366,-27375,27372,27373,27374,-27367,27375,27376,-27378, + 27378,27381,27380,-27380,27383,27382,27380,-27382,27379,27382,27383,-27379,27384,27387,27386,-27386,27388,27391,27390,-27390,26996,27394,27393,-26995,26992,27392,27394,-26997,26991,27392,27395,-26998, + 26997,27395,27396,-27000,26994,27393,27397,-27002,26999,27396,27397,-26991,27367,27398,27399,-27371,26896,27402,27403,-26894,26950,27408,27409,-26954,26954,27407,27408,-26951,26958,27410,27412,-26962, + 26964,27411,27412,-26961,27416,27415,27413,-27415,27420,27419,27417,-27419,27424,27423,27421,-27423,27428,27427,27425,-27427,27432,27431,27429,-27431,27436,27435,27433,-27435,27440,27439,27437,-27439, + 27444,27443,27441,-27443,27448,27447,27445,-27447,27452,27451,27449,-27451,27473,27472,27476,-27471,27454,27453,27455,-27457,27460,27459,27458,-27458,27454,27456,27460,-27458,27455,27453,27458,-27460, + 27456,27455,27459,-27461,27468,27463,-27467,27466,27465,27467,-27469,27466,27461,27462,-27466,27467,27464,27463,-27469,27469,27471,27472,-27474,27462,27461,27463,-27465,27461,27466,-27464,27470,27476, + 27475,-27475,27469,27473,27470,-27475,27472,27471,27475,-27477,27497,27496,27500,-27495,27478,27477,27479,-27481,27484,27483,27482,-27482,27478,27480,27484,-27482,27479,27477,27482,-27484,27480,27479, + 27483,-27485,27492,27487,-27491,27490,27489,27491,-27493,27490,27485,27486,-27490,27491,27488,27487,-27493,27493,27495,27496,-27498,27486,27485,27487,-27489,27485,27490,-27488,27494,27500,27499,-27499, + 27493,27497,27494,-27499,27496,27495,27499,-27501,27506,27504,27501,-27504,27504,27505,27502,-27502,26875,26876,26873,-26875,26859,26860,26861,-26865,26864,26862,-26860,26863,26861,-26861,26853,26856, + 26854,-26856,26858,26853,-26856,26856,26857,-26855,27338,27339,-27341,27510,27508,27511,-27513,26878,26875,-26875,26876,26877,-26874,26853,26858,26857,-26857,26862,26864,26861,-26864,26895,26896,-26894, + 26897,26892,-26895,27401,26895,26893,-27404,27130,27131,27128,-27128,26901,26902,-26900,26903,26900,-26899,26935,26936,-26934,26932,26935,26933,-26935,26937,26932,-26935,27404,26947,26944,-27407,26947, + 26948,-26945,26949,26946,-26946,26932,26937,26936,-26936,26988,26982,26985,-26990,26981,26988,26989,-26987,27017,27015,27012,-27015,27029,27030,27027,-27027,27030,27031,27028,-27028,27051,27052,27049, + -27049,27052,27053,27050,-27050,27109,27110,27107,-27107,27111,27109,27106,-27109,27124,27125,27122,-27122,27136,27137,27134,-27134,27143,27141,27138,-27141,27149,27147,27144,-27147,27508,27509,27507, + -27512,26892,27401,27403,-26895,26892,26897,27402,-27402,26900,26901,26899,-26899,26898,26899,26902,-26904,26900,26903,26902,-26902,26946,27404,27406,-26946,26948,27405,27406,-26945,27505,27506,27503, + -27503,27527,27524,27528,-27530,27529,27528,27525,-27527,27534,27533,27536,-27536,27535,27539,27538,-27535,27533,27537,27540,-27537,27542,27541,27544,-27544,27543,27547,27546,-27543,27541,27545,27548, + -27545,27519,27518,27530,-27532,27518,27520,27532,-27531,27531,27532,27520,-27520,27515,27516,27550,-27552,27516,27517,27549,-27551,27517,27515,27551,-27550,27556,27557,27553,-27553,27526,27525,27552, + -27554,27554,27526,27553,-27558,27562,27523,27513,-27559,27561,27514,27523,-27563,27558,27513,27522,-27561,27526,27554,-27530,27529,27554,27555,-27528,27525,27554,27556,-27553,27554,27525,-27529,27554, + 27528,27524,-27556,27554,27557,-27557,27522,27521,27559,-27561,27568,27569,27577,-27577,27563,27564,27572,-27572,27567,27568,27576,-27576,27566,27567,27575,-27575,27570,27563,27571,-27579,27565,27566, + 27574,-27574,27569,27570,27578,-27578,27564,27565,27573,-27573,27578,27571,27579,-27587,27573,27574,27582,-27582,27577,27578,27586,-27586,27574,27575,27583,-27583,27611,27581,-27583,27610,27609,27600, + -27602,27608,27607,27595,-27597,27609,27606,27599,-27601,27606,27605,27598,-27600,27607,27604,27602,-27596,27605,27612,27597,-27599,27604,27610,27601,-27603,27612,27608,27596,-27598,27611,27588,-27582, + 27611,27579,-27589,27575,27576,27592,-27584,27571,27572,27588,-27580,27576,27577,27585,-27593,27572,27573,27581,-27589,27565,27564,27608,-27613,27570,27569,27610,-27605,27566,27565,27612,-27606,27596, + 27595,-27604,27601,27600,-27604,27597,27596,-27604,27602,27601,-27604,27598,27597,-27604,27595,27602,-27604,27599,27598,-27604,27600,27599,-27604,27563,27570,27604,-27608,27567,27566,27605,-27607,27568, + 27567,27606,-27610,27564,27563,27607,-27609,27569,27568,27609,-27611,27590,27593,27584,-27590,27593,27594,27580,-27585,27594,27591,27587,-27581,27591,27590,27589,-27588,27615,27613,27614,-27618,27652, + 27648,27650,-27654,27611,27582,-27584,27611,27583,-27593,27611,27592,-27586,27611,27585,-27587,27611,27586,-27580,27616,27615,27617,-27619,27613,27615,27589,-27585,27615,27616,27587,-27590,27618,27617, + 27620,-27622,27613,27616,27618,-27615,27613,27584,-27581,27616,27613,27580,-27588,27619,27621,27624,-27623,27614,27618,27621,-27620,27617,27614,27619,-27621,27623,27622,27625,-27627,27620,27619,27622, + -27624,27621,27620,27623,-27625,27625,27651,27652,-27627,27624,27623,27626,-27628,27622,27624,27627,-27626,27632,27634,27629,-27632,27634,27635,27628,-27630,27635,27633,27630,-27629,27633,27632,27631, + -27631,27638,27636,27637,-27641,27651,27649,27648,-27653,27639,27638,27640,-27642,27636,27638,27631,-27630,27638,27639,27630,-27632,27641,27640,27643,-27645,27636,27639,27641,-27638,27636,27629,-27629, + 27639,27636,27628,-27631,27642,27644,27647,-27646,27637,27641,27644,-27643,27640,27637,27642,-27644,27646,27645,27648,-27650,27643,27642,27645,-27647,27644,27643,27646,-27648,27626,27652,27653,-27628, + 27647,27646,27649,-27651,27645,27647,27650,-27649,27653,27650,27649,-27652,27627,27653,27651,-27626,27667,27666,27668,-27670,27659,27658,27660,-27662,27656,27657,27661,-27661,27655,27654,27658,-27660, + 27657,27655,27659,-27662,27654,27656,27660,-27659,27664,27665,27669,-27669,27663,27662,27666,-27668,27665,27663,27667,-27670,27662,27664,27668,-27667,27683,27682,27684,-27686,27675,27674,27676,-27678, + 27672,27673,27677,-27677,27671,27670,27674,-27676,27673,27671,27675,-27678,27670,27672,27676,-27675,27680,27681,27685,-27685,27679,27678,27682,-27684,27681,27679,27683,-27686,27678,27680,27684,-27683, + 27691,27692,27700,-27700,27686,27687,27695,-27695,27690,27691,27699,-27699,27689,27690,27698,-27698,27693,27686,27694,-27702,27688,27689,27697,-27697,27692,27693,27701,-27701,27687,27688,27696,-27696, + 27701,27694,27702,-27710,27696,27697,27705,-27705,27700,27701,27709,-27709,27697,27698,27706,-27706,27734,27704,-27706,27733,27732,27723,-27725,27731,27730,27718,-27720,27732,27729,27722,-27724,27729, + 27728,27721,-27723,27730,27727,27725,-27719,27728,27735,27720,-27722,27727,27733,27724,-27726,27735,27731,27719,-27721,27734,27711,-27705,27734,27702,-27712,27698,27699,27715,-27707,27694,27695,27711, + -27703,27699,27700,27708,-27716,27695,27696,27704,-27712,27688,27687,27731,-27736,27693,27692,27733,-27728,27689,27688,27735,-27729,27719,27718,-27727,27724,27723,-27727,27720,27719,-27727,27725,27724, + -27727,27721,27720,-27727,27718,27725,-27727,27722,27721,-27727,27723,27722,-27727,27686,27693,27727,-27731,27690,27689,27728,-27730,27691,27690,27729,-27733,27687,27686,27730,-27732,27692,27691,27732, + -27734,27713,27716,27707,-27713,27716,27717,27703,-27708,27717,27714,27710,-27704,27714,27713,27712,-27711,27738,27736,27737,-27741,27775,27771,27773,-27777,27734,27705,-27707,27734,27706,-27716,27734, + 27715,-27709,27734,27708,-27710,27734,27709,-27703,27739,27738,27740,-27742,27736,27738,27712,-27708,27738,27739,27710,-27713,27741,27740,27743,-27745,27736,27739,27741,-27738,27736,27707,-27704,27739, + 27736,27703,-27711,27742,27744,27747,-27746,27737,27741,27744,-27743,27740,27737,27742,-27744,27746,27745,27748,-27750,27743,27742,27745,-27747,27744,27743,27746,-27748,27748,27774,27775,-27750,27747, + 27746,27749,-27751,27745,27747,27750,-27749,27755,27757,27752,-27755,27757,27758,27751,-27753,27758,27756,27753,-27752,27756,27755,27754,-27754,27761,27759,27760,-27764,27774,27772,27771,-27776,27762, + 27761,27763,-27765,27759,27761,27754,-27753,27761,27762,27753,-27755,27764,27763,27766,-27768,27759,27762,27764,-27761,27759,27752,-27752,27762,27759,27751,-27754,27765,27767,27770,-27769,27760,27764, + 27767,-27766,27763,27760,27765,-27767,27769,27768,27771,-27773,27766,27765,27768,-27770,27767,27766,27769,-27771,27749,27775,27776,-27751,27770,27769,27772,-27774,27768,27770,27773,-27772,27776,27773, + 27772,-27775,27750,27776,27774,-27749,27790,27789,27791,-27793,27782,27781,27783,-27785,27779,27780,27784,-27784,27778,27777,27781,-27783,27780,27778,27782,-27785,27777,27779,27783,-27782,27787,27788, + 27792,-27792,27786,27785,27789,-27791,27788,27786,27790,-27793,27785,27787,27791,-27790,27806,27805,27807,-27809,27798,27797,27799,-27801,27795,27796,27800,-27800,27794,27793,27797,-27799,27796,27794, + 27798,-27801,27793,27795,27799,-27798,27803,27804,27808,-27808,27802,27801,27805,-27807,27804,27802,27806,-27809,27801,27803,27807,-27806,27814,27815,27823,-27823,27809,27810,27818,-27818,27813,27814, + 27822,-27822,27812,27813,27821,-27821,27816,27809,27817,-27825,27811,27812,27820,-27820,27815,27816,27824,-27824,27810,27811,27819,-27819,27824,27817,27825,-27833,27819,27820,27828,-27828,27823,27824, + 27832,-27832,27818,27819,27827,-27827,27822,27823,27831,-27831,27817,27818,27826,-27826,27821,27822,27830,-27830,27820,27821,27829,-27829,27831,27832,27840,-27840,27826,27827,27835,-27835,27830,27831, + 27839,-27839,27825,27826,27834,-27834,27829,27830,27838,-27838,27828,27829,27837,-27837,27832,27825,27833,-27841,27827,27828,27836,-27836,27857,27859,27860,27861,27862,27863,27864,-27859,27815,27814, + 27846,-27848,27810,27809,27841,-27843,27814,27813,27845,-27847,27813,27812,27844,-27846,27809,27816,27848,-27842,27812,27811,27843,-27845,27816,27815,27847,-27849,27811,27810,27842,-27844,27846,27845, + 27853,-27855,27845,27844,27852,-27854,27841,27848,27856,-27850,27844,27843,27851,-27853,27848,27847,27855,-27857,27843,27842,27850,-27852,27847,27846,27854,-27856,27842,27841,27849,-27851,27850,27849, + 27856,27855,27854,27853,27852,-27852,27857,27858,27833,-27835,27859,27857,27834,-27836,27860,27859,27835,-27837,27861,27860,27836,-27838,27862,27861,27837,-27839,27863,27862,27838,-27840,27864,27863, + 27839,-27841,27858,27864,27840,-27834,27865,27866,27867,-27869,27885,27870,27882,-27885,27869,27872,27886,-27888,27871,27870,27885,-27876,27871,27875,27879,-27878,27878,27877,27879,-27881,27886,27872, + 27878,-27881,27895,27871,-27878,27882,27881,27883,-27885,27896,27869,-27882,27869,27887,27883,-27882,27892,27891,-27874,27893,27890,-27874,27891,27893,-27874,27889,27874,27885,-27885,27890,27892,-27874, + 27874,27889,27890,-27894,27872,27894,-27879,27876,27888,27891,-27893,27894,27895,27877,-27879,27897,27896,27881,-27883,27870,27897,-27883,27896,27897,27866,-27866,27897,27895,27867,-27867,27895,27894, + 27868,-27868,27894,27896,27865,-27869,27889,27876,27892,-27891,27888,27874,27893,-27892,27874,27875,-27886,27876,27887,-27887,27888,27880,-27880,27874,27888,27879,-27876,27888,27876,27886,-27881,27889, + 27884,-27884,27876,27889,27883,-27888,27870,27871,27895,-27898,27872,27869,27896,-27895,27898,27899,27900,-27902,27918,27903,27915,-27918,27902,27905,27919,-27921,27904,27903,27918,-27909,27904,27908, + 27912,-27911,27911,27910,27912,-27914,27919,27905,27911,-27914,27928,27904,-27911,27915,27914,27916,-27918,27929,27902,-27915,27902,27920,27916,-27915,27925,27924,-27907,27926,27923,-27907,27924,27926, + -27907,27922,27907,27918,-27918,27923,27925,-27907,27907,27922,27923,-27927,27905,27927,-27912,27909,27921,27924,-27926,27927,27928,27910,-27912,27930,27929,27914,-27916,27903,27930,-27916,27929,27930, + 27899,-27899,27930,27928,27900,-27900,27928,27927,27901,-27901,27927,27929,27898,-27902,27922,27909,27925,-27924,27921,27907,27926,-27925,27907,27908,-27919,27909,27920,-27920,27921,27913,-27913,27907, + 27921,27912,-27909,27921,27909,27919,-27914,27922,27917,-27917,27909,27922,27916,-27921,27903,27904,27928,-27931,27905,27902,27929,-27928,27931,27932,27933,-27935,27951,27936,27948,-27951,27935,27938, + 27952,-27954,27937,27936,27951,-27942,27937,27941,27945,-27944,27944,27943,27945,-27947,27952,27938,27944,-27947,27961,27937,-27944,27948,27947,27949,-27951,27962,27935,-27948,27935,27953,27949,-27948, + 27958,27957,-27940,27959,27956,-27940,27957,27959,-27940,27955,27940,27951,-27951,27956,27958,-27940,27940,27955,27956,-27960,27938,27960,-27945,27942,27954,27957,-27959,27960,27961,27943,-27945,27963, + 27962,27947,-27949,27936,27963,-27949,27962,27963,27932,-27932,27963,27961,27933,-27933,27961,27960,27934,-27934,27960,27962,27931,-27935,27955,27942,27958,-27957,27954,27940,27959,-27958,27940,27941, + -27952,27942,27953,-27953,27954,27946,-27946,27940,27954,27945,-27942,27954,27942,27952,-27947,27955,27950,-27950,27942,27955,27949,-27954,27936,27937,27961,-27964,27938,27935,27962,-27961,27965,27975, + -28015,28014,28044,-27965,27966,28014,-27976,27972,27969,-27977,27964,28011,-28046,28014,28012,-28045,27964,28045,-27966,27970,27967,-27985,27967,27970,-27969,27976,28060,-28021,28020,28052,-27973,28032, + 28049,-28025,28024,28056,-27988,27974,28053,-28029,28028,28061,-27975,27967,27968,-27987,27973,27971,-27979,27976,28015,-27975,27978,27971,-27978,28023,28056,-28025,27979,28024,-28050,28017,28048,-28017, + 27979,28016,-28058,28027,28054,-28023,27980,28022,-28052,27980,28019,-28051,28018,28055,-28028,27981,28029,-28062,27981,28028,-28054,28021,28052,-28021,27981,28020,-28061,28031,28063,-28031,27982,28030, + -28060,28026,28058,-28026,27982,28025,-28063,27983,28017,-28050,27976,27974,-28062,28029,28060,-27977,27978,28062,-28026,28025,28058,-27979,27972,28052,-28022,27972,28021,-28054,27970,28051,-28023,27970, + 28022,-28055,27984,27986,-28056,28018,28050,-27985,27977,27985,-28060,28030,28063,-27978,27985,27978,-28059,28026,28059,-27986,27970,28054,-28028,27986,28027,-28056,27975,28047,-27988,28023,28057,-27988, + 27984,28050,-28020,27970,28019,-28052,27977,28063,-28032,27977,28031,-28063,27988,28020,-28061,27988,28033,-28064,28030,28059,-27989,27989,28034,-28049,27989,28016,-28058,27989,28035,-28055,27989,28022, + -28052,28036,28051,-28020,28019,28050,-27997,27996,28065,-28037,27990,28049,-28018,27990,28017,-28049,28034,28051,-28037,27996,28038,-28066,27996,28031,-28064,28033,28060,-28040,27992,28039,-28061,28029, + 28061,-27993,28040,27994,-28000,27994,28066,-28000,27995,27994,-28002,27995,27996,-28051,28001,28062,-27997,27997,28059,-28027,27997,28026,-28059,28002,28053,-28022,28002,28021,-28053,27988,28003,-28003, + 27998,27997,-27995,27994,28040,-27999,28023,28056,-28068,28042,28055,-28028,28027,28054,-28043,28042,28054,-28036,28041,28067,-28001,28083,28084,-28009,27999,28067,-28041,28042,28018,-28056,27995,28050, + -28019,27990,28067,-28057,28024,28049,-27991,27993,28040,-28068,28083,28008,28042,-28081,28066,28042,-28009,28001,28025,-28063,27997,28058,-28026,28002,28028,-28054,28076,28004,28006,-28075,28074,28006, + -28074,28075,28004,-28077,28078,28007,-28078,28005,28007,-28007,28071,28010,-28071,28043,28009,-28088,27992,27990,-28065,28002,27992,-28062,28002,28040,-27994,27975,27965,-28046,27973,27985,-27978,27985, + 27973,-27979,28011,27964,-28045,27964,27965,-28015,27972,28015,-27970,27977,27971,-27974,27975,27987,-28047,28016,27987,-28058,27972,27976,-28021,27984,27967,-27987,28015,27972,-27975,27976,27969,-28016, + 27986,27968,-27971,27979,28023,-28025,28017,27979,-28050,27979,28017,-28017,28023,27979,-28058,27980,28027,-28023,28019,27980,-28052,28018,27980,-28051,27980,28018,-28028,28028,27981,-28062,28021,27981, + -28054,27981,28021,-28021,28029,27981,-28061,27982,28031,-28031,28026,27982,-28060,27982,28026,-28026,28031,27982,-28063,28032,27983,-28050,28029,27976,-28062,27974,27972,-28054,28018,27984,-28056,28030, + 27977,-28060,28026,27985,-28059,27986,27970,-28028,28023,27987,-28057,27970,27984,-28020,27978,27977,-28063,28020,27988,-28053,28033,27988,-28061,28030,27988,-28064,28016,27989,-28049,28035,27989,-28058, + 28022,27989,-28055,28034,27989,-28052,27996,28036,-28020,28031,27996,-28063,28029,27992,-28061,28002,27993,-27993,27992,27993,-27991,27995,28001,-27997,27997,27988,-28060,27988,27997,-28004,27988,28002, + -28053,27994,27997,-28002,28002,27998,-28041,28002,28003,-27999,28080,28042,-28080,28081,28041,28000,-28083,28043,28066,-28010,28068,28066,28043,-28071,28068,28010,-28070,28072,28069,-28011,27994,27995, + -28067,28042,27995,-28019,28024,27990,-28057,27990,27993,-28068,28042,28066,-27996,28071,28072,-28011,28066,28008,-28088,28001,27997,-28026,28073,28078,-27998,28075,28003,-28078,28007,28005,-28005,28006, + 28004,-28006,28085,28043,-28087,28028,28002,-28062,28000,28067,28072,-28072,28071,28070,28043,-28086,28067,27999,28069,-28073,28010,28068,-28071,28066,28068,28069,-28000,27997,28078,28077,-28004,28003, + 28075,28076,-27999,28004,28075,28077,-28008,27998,28076,-28075,27998,28074,28073,-27998,28006,28007,28078,-28074,28000,28008,-28085,28041,28081,28079,-28043,28082,28000,-28085,27975,28046,-28033,27987, + 27983,-28047,28016,28048,-27984,28013,27987,-28048,28011,27975,-28046,28047,28044,-28013,28047,28012,-28015,28014,28032,-28014,27983,28032,-28047,27983,28048,-28018,28034,28064,-27991,28034,28065,-28065, + 27991,28038,-28038,27991,28064,-28066,27996,28037,-28039,28039,28037,-27997,28039,28063,-28034,27992,28037,-28040,28041,28042,-28036,27991,28037,-27993,27966,27975,-28033,28014,27966,-28033,27987,28016, + -27984,28013,28032,-28025,28013,28024,-27988,28047,28011,-28045,27975,28011,-28048,28047,28014,-28014,28034,27990,-28049,28034,28036,-28066,27991,28065,-28039,28039,27996,-28064,28023,28035,-28058,28035, + 28023,-28068,28041,28035,-28068,28081,28082,-28080,27991,27992,-28065,28083,28082,-28085,28083,28080,28079,-28083,28008,28086,-28088,28000,28085,28086,-28009,28000,28071,-28086,28009,28066,-28088,28086, + 28043,-28088,28094,28095,28090,-28092,28092,28093,28089,-28089,28106,28104,28090,-28096,28105,28106,28095,-28095,28107,28105,28094,-28092,28104,28107,28091,-28091,28102,28103,28098,-28100,28100,28101, + 28097,-28097,28110,28108,28098,-28104,28109,28110,28103,-28103,28111,28109,28102,-28100,28108,28111,28099,-28099,28092,28088,28104,-28107,28093,28092,28106,-28106,28089,28093,28105,-28108,28088,28089, + 28107,-28105,28100,28096,28108,-28111,28101,28100,28110,-28110,28097,28101,28109,-28112,28096,28097,28111,-28109,28118,28116,28112,-28116,28117,28118,28115,-28115,28119,28117,28114,-28114,28116,28119, + 28113,-28113,28126,28124,28120,-28124,28125,28126,28123,-28123,28127,28125,28122,-28122,28124,28127,28121,-28121,28134,28132,28128,-28132,28133,28134,28131,-28131,28135,28133,28130,-28130,28132,28135, + 28129,-28129,28142,28140,28136,-28140,28141,28142,28139,-28139,28143,28141,28138,-28138,28140,28143,28137,-28137,28150,28148,28144,-28148,28149,28150,28147,-28147,28151,28149,28146,-28146,28148,28151, + 28145,-28145,28158,28156,28152,-28156,28157,28158,28155,-28155,28159,28157,28154,-28154,28156,28159,28153,-28153,28166,28167,28162,-28164,28164,28165,28161,-28161,28178,28176,28162,-28168,28177,28178, + 28167,-28167,28179,28177,28166,-28164,28176,28179,28163,-28163,28174,28175,28170,-28172,28172,28173,28169,-28169,28182,28180,28170,-28176,28181,28182,28175,-28175,28183,28181,28174,-28172,28180,28183, + 28171,-28171,28164,28160,28176,-28179,28165,28164,28178,-28178,28161,28165,28177,-28180,28160,28161,28179,-28177,28172,28168,28180,-28183,28173,28172,28182,-28182,28169,28173,28181,-28184,28168,28169, + 28183,-28181,28190,28188,28184,-28188,28189,28190,28187,-28187,28191,28189,28186,-28186,28188,28191,28185,-28185,28198,28196,28192,-28196,28197,28198,28195,-28195,28199,28197,28194,-28194,28196,28199, + 28193,-28193,28206,28204,28200,-28204,28205,28206,28203,-28203,28207,28205,28202,-28202,28204,28207,28201,-28201,28214,28212,28208,-28212,28213,28214,28211,-28211,28215,28213,28210,-28210,28212,28215, + 28209,-28209,28222,28220,28216,-28220,28221,28222,28219,-28219,28223,28221,28218,-28218,28220,28223,28217,-28217,28230,28228,28224,-28228,28229,28230,28227,-28227,28231,28229,28226,-28226,28228,28231, + 28225,-28225,28238,28239,28234,-28236,28236,28237,28233,-28233,28250,28248,28234,-28240,28249,28250,28239,-28239,28251,28249,28238,-28236,28248,28251,28235,-28235,28246,28247,28242,-28244,28244,28245, + 28241,-28241,28254,28252,28242,-28248,28253,28254,28247,-28247,28255,28253,28246,-28244,28252,28255,28243,-28243,28236,28232,28248,-28251,28237,28236,28250,-28250,28233,28237,28249,-28252,28232,28233, + 28251,-28249,28244,28240,28252,-28255,28245,28244,28254,-28254,28241,28245,28253,-28256,28240,28241,28255,-28253,28262,28260,28256,-28260,28261,28262,28259,-28259,28263,28261,28258,-28258,28260,28263, + 28257,-28257,28270,28268,28264,-28268,28269,28270,28267,-28267,28271,28269,28266,-28266,28268,28271,28265,-28265,28278,28276,28272,-28276,28277,28278,28275,-28275,28279,28277,28274,-28274,28276,28279, + 28273,-28273,28286,28284,28280,-28284,28285,28286,28283,-28283,28287,28285,28282,-28282,28284,28287,28281,-28281,28294,28292,28288,-28292,28293,28294,28291,-28291,28295,28293,28290,-28290,28292,28295, + 28289,-28289,28302,28300,28296,-28300,28301,28302,28299,-28299,28303,28301,28298,-28298,28300,28303,28297,-28297,28310,28311,28306,-28308,28308,28309,28305,-28305,28322,28320,28306,-28312,28321,28322, + 28311,-28311,28323,28321,28310,-28308,28320,28323,28307,-28307,28318,28319,28314,-28316,28316,28317,28313,-28313,28326,28324,28314,-28320,28325,28326,28319,-28319,28327,28325,28318,-28316,28324,28327, + 28315,-28315,28308,28304,28320,-28323,28309,28308,28322,-28322,28305,28309,28321,-28324,28304,28305,28323,-28321,28316,28312,28324,-28327,28317,28316,28326,-28326,28313,28317,28325,-28328,28312,28313, + 28327,-28325,28334,28332,28328,-28332,28333,28334,28331,-28331,28335,28333,28330,-28330,28332,28335,28329,-28329,28342,28340,28336,-28340,28341,28342,28339,-28339,28343,28341,28338,-28338,28340,28343, + 28337,-28337,28350,28348,28344,-28348,28349,28350,28347,-28347,28351,28349,28346,-28346,28348,28351,28345,-28345,28358,28356,28352,-28356,28357,28358,28355,-28355,28359,28357,28354,-28354,28356,28359, + 28353,-28353,28366,28364,28360,-28364,28365,28366,28363,-28363,28367,28365,28362,-28362,28364,28367,28361,-28361,28374,28372,28368,-28372,28373,28374,28371,-28371,28375,28373,28370,-28370,28372,28375, + 28369,-28369,28404,28405,28401,-28401,28380,28381,28377,-28377,28437,28436,28438,-28440,28446,28447,28445,-28445,28446,28444,28378,-28383,28447,28446,28382,-28380,28405,28406,28403,-28402,28388,28389, + 28385,-28385,28445,28447,28379,-28384,28444,28445,28383,-28379,28412,28413,-28409,28413,28410,-28409,28380,28376,28392,-28395,28381,28380,28394,-28394,28377,28381,28393,-28396,28376,28377,28395,-28393, + 28388,28384,28396,-28399,28389,28388,28398,-28398,28385,28389,28397,-28400,28384,28385,28399,-28397,28406,28404,28400,-28404,28415,28409,28386,-28392,28409,28402,28390,-28387,28402,28407,28387,-28391, + 28414,28412,28408,-28412,28413,28414,28411,-28411,28407,28415,28391,-28388,28407,28402,28409,-28416,28450,28448,28419,-28418,28450,28451,28449,-28449,28421,28420,28422,-28424,28423,28422,28424,-28428, + 28422,28420,28426,-28425,28420,28421,28425,-28427,28421,28423,28427,-28426,28434,28432,28428,-28431,28435,28434,28430,-28430,28433,28435,28429,-28432,28432,28433,28431,-28429,28434,28435,28433,-28433, + 28439,28438,28440,-28444,28438,28436,28442,-28441,28436,28437,28441,-28443,28437,28439,28443,-28442,28451,28450,28417,-28419,28449,28451,28418,-28417,28448,28449,28416,-28420,28480,28481,28477,-28477, + 28456,28457,28453,-28453,28513,28512,28514,-28516,28522,28523,28521,-28521,28522,28520,28454,-28459,28523,28522,28458,-28456,28481,28482,28479,-28478,28464,28465,28461,-28461,28521,28523,28455,-28460, + 28520,28521,28459,-28455,28488,28489,-28485,28489,28486,-28485,28456,28452,28468,-28471,28457,28456,28470,-28470,28453,28457,28469,-28472,28452,28453,28471,-28469,28464,28460,28472,-28475,28465,28464, + 28474,-28474,28461,28465,28473,-28476,28460,28461,28475,-28473,28482,28480,28476,-28480,28491,28485,28462,-28468,28485,28478,28466,-28463,28478,28483,28463,-28467,28490,28488,28484,-28488,28489,28490, + 28487,-28487,28483,28491,28467,-28464,28483,28478,28485,-28492,28526,28524,28495,-28494,28526,28527,28525,-28525,28497,28496,28498,-28500,28499,28498,28500,-28504,28498,28496,28502,-28501,28496,28497, + 28501,-28503,28497,28499,28503,-28502,28510,28508,28504,-28507,28511,28510,28506,-28506,28509,28511,28505,-28508,28508,28509,28507,-28505,28510,28511,28509,-28509,28515,28514,28516,-28520,28514,28512, + 28518,-28517,28512,28513,28517,-28519,28513,28515,28519,-28518,28527,28526,28493,-28495,28525,28527,28494,-28493,28524,28525,28492,-28496,28556,28557,28553,-28553,28532,28533,28529,-28529,28589,28588, + 28590,-28592,28598,28599,28597,-28597,28598,28596,28530,-28535,28599,28598,28534,-28532,28557,28558,28555,-28554,28540,28541,28537,-28537,28597,28599,28531,-28536,28596,28597,28535,-28531,28564,28565, + -28561,28565,28562,-28561,28532,28528,28544,-28547,28533,28532,28546,-28546,28529,28533,28545,-28548,28528,28529,28547,-28545,28540,28536,28548,-28551,28541,28540,28550,-28550,28537,28541,28549,-28552, + 28536,28537,28551,-28549,28558,28556,28552,-28556,28567,28561,28538,-28544,28561,28554,28542,-28539,28554,28559,28539,-28543,28566,28564,28560,-28564,28565,28566,28563,-28563,28559,28567,28543,-28540, + 28559,28554,28561,-28568,28602,28600,28571,-28570,28602,28603,28601,-28601,28573,28572,28574,-28576,28575,28574,28576,-28580,28574,28572,28578,-28577,28572,28573,28577,-28579,28573,28575,28579,-28578, + 28586,28584,28580,-28583,28587,28586,28582,-28582,28585,28587,28581,-28584,28584,28585,28583,-28581,28586,28587,28585,-28585,28591,28590,28592,-28596,28590,28588,28594,-28593,28588,28589,28593,-28595, + 28589,28591,28595,-28594,28603,28602,28569,-28571,28601,28603,28570,-28569,28600,28601,28568,-28572,28632,28633,28629,-28629,28608,28609,28605,-28605,28665,28664,28666,-28668,28674,28675,28673,-28673, + 28674,28672,28606,-28611,28675,28674,28610,-28608,28633,28634,28631,-28630,28616,28617,28613,-28613,28673,28675,28607,-28612,28672,28673,28611,-28607,28640,28641,-28637,28641,28638,-28637,28608,28604, + 28620,-28623,28609,28608,28622,-28622,28605,28609,28621,-28624,28604,28605,28623,-28621,28616,28612,28624,-28627,28617,28616,28626,-28626,28613,28617,28625,-28628,28612,28613,28627,-28625,28634,28632, + 28628,-28632,28643,28637,28614,-28620,28637,28630,28618,-28615,28630,28635,28615,-28619,28642,28640,28636,-28640,28641,28642,28639,-28639,28635,28643,28619,-28616,28635,28630,28637,-28644,28678,28676, + 28647,-28646,28678,28679,28677,-28677,28649,28648,28650,-28652,28651,28650,28652,-28656,28650,28648,28654,-28653,28648,28649,28653,-28655,28649,28651,28655,-28654,28662,28660,28656,-28659,28663,28662, + 28658,-28658,28661,28663,28657,-28660,28660,28661,28659,-28657,28662,28663,28661,-28661,28667,28666,28668,-28672,28666,28664,28670,-28669,28664,28665,28669,-28671,28665,28667,28671,-28670,28679,28678, + 28645,-28647,28677,28679,28646,-28645,28676,28677,28644,-28648,28708,28709,28705,-28705,28684,28685,28681,-28681,28741,28740,28742,-28744,28750,28751,28749,-28749,28750,28748,28682,-28687,28751,28750, + 28686,-28684,28709,28710,28707,-28706,28692,28693,28689,-28689,28749,28751,28683,-28688,28748,28749,28687,-28683,28716,28717,-28713,28717,28714,-28713,28684,28680,28696,-28699,28685,28684,28698,-28698, + 28681,28685,28697,-28700,28680,28681,28699,-28697,28692,28688,28700,-28703,28693,28692,28702,-28702,28689,28693,28701,-28704,28688,28689,28703,-28701,28710,28708,28704,-28708,28719,28713,28690,-28696, + 28713,28706,28694,-28691,28706,28711,28691,-28695,28718,28716,28712,-28716,28717,28718,28715,-28715,28711,28719,28695,-28692,28711,28706,28713,-28720,28754,28752,28723,-28722,28754,28755,28753,-28753, + 28725,28724,28726,-28728,28727,28726,28728,-28732,28726,28724,28730,-28729,28724,28725,28729,-28731,28725,28727,28731,-28730,28738,28736,28732,-28735,28739,28738,28734,-28734,28737,28739,28733,-28736, + 28736,28737,28735,-28733,28738,28739,28737,-28737,28743,28742,28744,-28748,28742,28740,28746,-28745,28740,28741,28745,-28747,28741,28743,28747,-28746,28755,28754,28721,-28723,28753,28755,28722,-28721, + 28752,28753,28720,-28724,28784,28785,28781,-28781,28760,28761,28757,-28757,28817,28816,28818,-28820,28826,28827,28825,-28825,28826,28824,28758,-28763,28827,28826,28762,-28760,28785,28786,28783,-28782, + 28768,28769,28765,-28765,28825,28827,28759,-28764,28824,28825,28763,-28759,28792,28793,-28789,28793,28790,-28789,28760,28756,28772,-28775,28761,28760,28774,-28774,28757,28761,28773,-28776,28756,28757, + 28775,-28773,28768,28764,28776,-28779,28769,28768,28778,-28778,28765,28769,28777,-28780,28764,28765,28779,-28777,28786,28784,28780,-28784,28795,28789,28766,-28772,28789,28782,28770,-28767,28782,28787, + 28767,-28771,28794,28792,28788,-28792,28793,28794,28791,-28791,28787,28795,28771,-28768,28787,28782,28789,-28796,28830,28828,28799,-28798,28830,28831,28829,-28829,28801,28800,28802,-28804,28803,28802, + 28804,-28808,28802,28800,28806,-28805,28800,28801,28805,-28807,28801,28803,28807,-28806,28814,28812,28808,-28811,28815,28814,28810,-28810,28813,28815,28809,-28812,28812,28813,28811,-28809,28814,28815, + 28813,-28813,28819,28818,28820,-28824,28818,28816,28822,-28821,28816,28817,28821,-28823,28817,28819,28823,-28822,28831,28830,28797,-28799,28829,28831,28798,-28797,28828,28829,28796,-28800,28860,28861, + 28857,-28857,28836,28837,28833,-28833,28893,28892,28894,-28896,28902,28903,28901,-28901,28902,28900,28834,-28839,28903,28902,28838,-28836,28861,28862,28859,-28858,28844,28845,28841,-28841,28901,28903, + 28835,-28840,28900,28901,28839,-28835,28868,28869,-28865,28869,28866,-28865,28836,28832,28848,-28851,28837,28836,28850,-28850,28833,28837,28849,-28852,28832,28833,28851,-28849,28844,28840,28852,-28855, + 28845,28844,28854,-28854,28841,28845,28853,-28856,28840,28841,28855,-28853,28862,28860,28856,-28860,28871,28865,28842,-28848,28865,28858,28846,-28843,28858,28863,28843,-28847,28870,28868,28864,-28868, + 28869,28870,28867,-28867,28863,28871,28847,-28844,28863,28858,28865,-28872,28906,28904,28875,-28874,28906,28907,28905,-28905,28877,28876,28878,-28880,28879,28878,28880,-28884,28878,28876,28882,-28881, + 28876,28877,28881,-28883,28877,28879,28883,-28882,28890,28888,28884,-28887,28891,28890,28886,-28886,28889,28891,28885,-28888,28888,28889,28887,-28885,28890,28891,28889,-28889,28895,28894,28896,-28900, + 28894,28892,28898,-28897,28892,28893,28897,-28899,28893,28895,28899,-28898,28907,28906,28873,-28875,28905,28907,28874,-28873,28904,28905,28872,-28876,28936,28937,28933,-28933,28912,28913,28909,-28909, + 28969,28968,28970,-28972,28978,28979,28977,-28977,28978,28976,28910,-28915,28979,28978,28914,-28912,28937,28938,28935,-28934,28920,28921,28917,-28917,28977,28979,28911,-28916,28976,28977,28915,-28911, + 28944,28945,-28941,28945,28942,-28941,28912,28908,28924,-28927,28913,28912,28926,-28926,28909,28913,28925,-28928,28908,28909,28927,-28925,28920,28916,28928,-28931,28921,28920,28930,-28930,28917,28921, + 28929,-28932,28916,28917,28931,-28929,28938,28936,28932,-28936,28947,28941,28918,-28924,28941,28934,28922,-28919,28934,28939,28919,-28923,28946,28944,28940,-28944,28945,28946,28943,-28943,28939,28947, + 28923,-28920,28939,28934,28941,-28948,28982,28980,28951,-28950,28982,28983,28981,-28981,28953,28952,28954,-28956,28955,28954,28956,-28960,28954,28952,28958,-28957,28952,28953,28957,-28959,28953,28955, + 28959,-28958,28966,28964,28960,-28963,28967,28966,28962,-28962,28965,28967,28961,-28964,28964,28965,28963,-28961,28966,28967,28965,-28965,28971,28970,28972,-28976,28970,28968,28974,-28973,28968,28969, + 28973,-28975,28969,28971,28975,-28974,28983,28982,28949,-28951,28981,28983,28950,-28949,28980,28981,28948,-28952,29012,29013,29009,-29009,28988,28989,28985,-28985,29045,29044,29046,-29048,29054,29055, + 29053,-29053,29054,29052,28986,-28991,29055,29054,28990,-28988,29013,29014,29011,-29010,28996,28997,28993,-28993,29053,29055,28987,-28992,29052,29053,28991,-28987,29020,29021,-29017,29021,29018,-29017, + 28988,28984,29000,-29003,28989,28988,29002,-29002,28985,28989,29001,-29004,28984,28985,29003,-29001,28996,28992,29004,-29007,28997,28996,29006,-29006,28993,28997,29005,-29008,28992,28993,29007,-29005, + 29014,29012,29008,-29012,29023,29017,28994,-29000,29017,29010,28998,-28995,29010,29015,28995,-28999,29022,29020,29016,-29020,29021,29022,29019,-29019,29015,29023,28999,-28996,29015,29010,29017,-29024, + 29058,29056,29027,-29026,29058,29059,29057,-29057,29029,29028,29030,-29032,29031,29030,29032,-29036,29030,29028,29034,-29033,29028,29029,29033,-29035,29029,29031,29035,-29034,29042,29040,29036,-29039, + 29043,29042,29038,-29038,29041,29043,29037,-29040,29040,29041,29039,-29037,29042,29043,29041,-29041,29047,29046,29048,-29052,29046,29044,29050,-29049,29044,29045,29049,-29051,29045,29047,29051,-29050, + 29059,29058,29025,-29027,29057,29059,29026,-29025,29056,29057,29024,-29028,29088,29089,29085,-29085,29064,29065,29061,-29061,29121,29120,29122,-29124,29130,29131,29129,-29129,29130,29128,29062,-29067, + 29131,29130,29066,-29064,29089,29090,29087,-29086,29072,29073,29069,-29069,29129,29131,29063,-29068,29128,29129,29067,-29063,29096,29097,-29093,29097,29094,-29093,29064,29060,29076,-29079,29065,29064, + 29078,-29078,29061,29065,29077,-29080,29060,29061,29079,-29077,29072,29068,29080,-29083,29073,29072,29082,-29082,29069,29073,29081,-29084,29068,29069,29083,-29081,29090,29088,29084,-29088,29099,29093, + 29070,-29076,29093,29086,29074,-29071,29086,29091,29071,-29075,29098,29096,29092,-29096,29097,29098,29095,-29095,29091,29099,29075,-29072,29091,29086,29093,-29100,29134,29132,29103,-29102,29134,29135, + 29133,-29133,29105,29104,29106,-29108,29107,29106,29108,-29112,29106,29104,29110,-29109,29104,29105,29109,-29111,29105,29107,29111,-29110,29118,29116,29112,-29115,29119,29118,29114,-29114,29117,29119, + 29113,-29116,29116,29117,29115,-29113,29118,29119,29117,-29117,29123,29122,29124,-29128,29122,29120,29126,-29125,29120,29121,29125,-29127,29121,29123,29127,-29126,29135,29134,29101,-29103,29133,29135, + 29102,-29101,29132,29133,29100,-29104,29164,29165,29161,-29161,29140,29141,29137,-29137,29197,29196,29198,-29200,29206,29207,29205,-29205,29206,29204,29138,-29143,29207,29206,29142,-29140,29165,29166, + 29163,-29162,29148,29149,29145,-29145,29205,29207,29139,-29144,29204,29205,29143,-29139,29172,29173,-29169,29173,29170,-29169,29140,29136,29152,-29155,29141,29140,29154,-29154,29137,29141,29153,-29156, + 29136,29137,29155,-29153,29148,29144,29156,-29159,29149,29148,29158,-29158,29145,29149,29157,-29160,29144,29145,29159,-29157,29166,29164,29160,-29164,29175,29169,29146,-29152,29169,29162,29150,-29147, + 29162,29167,29147,-29151,29174,29172,29168,-29172,29173,29174,29171,-29171,29167,29175,29151,-29148,29167,29162,29169,-29176,29210,29208,29179,-29178,29210,29211,29209,-29209,29181,29180,29182,-29184, + 29183,29182,29184,-29188,29182,29180,29186,-29185,29180,29181,29185,-29187,29181,29183,29187,-29186,29194,29192,29188,-29191,29195,29194,29190,-29190,29193,29195,29189,-29192,29192,29193,29191,-29189, + 29194,29195,29193,-29193,29199,29198,29200,-29204,29198,29196,29202,-29201,29196,29197,29201,-29203,29197,29199,29203,-29202,29211,29210,29177,-29179,29209,29211,29178,-29177,29208,29209,29176,-29180, + 29240,29241,29237,-29237,29216,29217,29213,-29213,29273,29272,29274,-29276,29282,29283,29281,-29281,29282,29280,29214,-29219,29283,29282,29218,-29216,29241,29242,29239,-29238,29224,29225,29221,-29221, + 29281,29283,29215,-29220,29280,29281,29219,-29215,29248,29249,-29245,29249,29246,-29245,29216,29212,29228,-29231,29217,29216,29230,-29230,29213,29217,29229,-29232,29212,29213,29231,-29229,29224,29220, + 29232,-29235,29225,29224,29234,-29234,29221,29225,29233,-29236,29220,29221,29235,-29233,29242,29240,29236,-29240,29251,29245,29222,-29228,29245,29238,29226,-29223,29238,29243,29223,-29227,29250,29248, + 29244,-29248,29249,29250,29247,-29247,29243,29251,29227,-29224,29243,29238,29245,-29252,29286,29284,29255,-29254,29286,29287,29285,-29285,29257,29256,29258,-29260,29259,29258,29260,-29264,29258,29256, + 29262,-29261,29256,29257,29261,-29263,29257,29259,29263,-29262,29270,29268,29264,-29267,29271,29270,29266,-29266,29269,29271,29265,-29268,29268,29269,29267,-29265,29270,29271,29269,-29269,29275,29274, + 29276,-29280,29274,29272,29278,-29277,29272,29273,29277,-29279,29273,29275,29279,-29278,29287,29286,29253,-29255,29285,29287,29254,-29253,29284,29285,29252,-29256,29316,29317,29313,-29313,29292,29293, + 29289,-29289,29349,29348,29350,-29352,29358,29359,29357,-29357,29358,29356,29290,-29295,29359,29358,29294,-29292,29317,29318,29315,-29314,29300,29301,29297,-29297,29357,29359,29291,-29296,29356,29357, + 29295,-29291,29324,29325,-29321,29325,29322,-29321,29292,29288,29304,-29307,29293,29292,29306,-29306,29289,29293,29305,-29308,29288,29289,29307,-29305,29300,29296,29308,-29311,29301,29300,29310,-29310, + 29297,29301,29309,-29312,29296,29297,29311,-29309,29318,29316,29312,-29316,29327,29321,29298,-29304,29321,29314,29302,-29299,29314,29319,29299,-29303,29326,29324,29320,-29324,29325,29326,29323,-29323, + 29319,29327,29303,-29300,29319,29314,29321,-29328,29362,29360,29331,-29330,29362,29363,29361,-29361,29333,29332,29334,-29336,29335,29334,29336,-29340,29334,29332,29338,-29337,29332,29333,29337,-29339, + 29333,29335,29339,-29338,29346,29344,29340,-29343,29347,29346,29342,-29342,29345,29347,29341,-29344,29344,29345,29343,-29341,29346,29347,29345,-29345,29351,29350,29352,-29356,29350,29348,29354,-29353, + 29348,29349,29353,-29355,29349,29351,29355,-29354,29363,29362,29329,-29331,29361,29363,29330,-29329,29360,29361,29328,-29332,29392,29393,29389,-29389,29368,29369,29365,-29365,29425,29424,29426,-29428, + 29434,29435,29433,-29433,29434,29432,29366,-29371,29435,29434,29370,-29368,29393,29394,29391,-29390,29376,29377,29373,-29373,29433,29435,29367,-29372,29432,29433,29371,-29367,29400,29401,-29397,29401, + 29398,-29397,29368,29364,29380,-29383,29369,29368,29382,-29382,29365,29369,29381,-29384,29364,29365,29383,-29381,29376,29372,29384,-29387,29377,29376,29386,-29386,29373,29377,29385,-29388,29372,29373, + 29387,-29385,29394,29392,29388,-29392,29403,29397,29374,-29380,29397,29390,29378,-29375,29390,29395,29375,-29379,29402,29400,29396,-29400,29401,29402,29399,-29399,29395,29403,29379,-29376,29395,29390, + 29397,-29404,29438,29436,29407,-29406,29438,29439,29437,-29437,29409,29408,29410,-29412,29411,29410,29412,-29416,29410,29408,29414,-29413,29408,29409,29413,-29415,29409,29411,29415,-29414,29422,29420, + 29416,-29419,29423,29422,29418,-29418,29421,29423,29417,-29420,29420,29421,29419,-29417,29422,29423,29421,-29421,29427,29426,29428,-29432,29426,29424,29430,-29429,29424,29425,29429,-29431,29425,29427, + 29431,-29430,29439,29438,29405,-29407,29437,29439,29406,-29405,29436,29437,29404,-29408,29453,29454,29450,-29452,29488,29487,-29483,29487,29485,-29483,29485,29486,-29483,29486,29488,-29483,29524,29455, + 29449,-29524,29455,29456,29452,-29450,29522,29447,29455,-29525,29483,29484,29443,-29445,29475,29472,29476,-29480,29474,29475,29479,-29479,29473,29474,29478,-29478,29481,29472,-29476,29481,29475,-29475, + 29481,29474,-29474,29481,29473,-29473,29469,29470,29466,-29468,29471,29468,29458,-29460,29468,29469,29467,-29459,29519,29465,29471,-29521,29465,29464,29468,-29472,29472,29473,29477,-29477,29463,29462, + 29461,-29461,29478,29479,29460,-29462,29477,29478,29461,-29463,29476,29477,29462,-29464,29440,29484,-29484,29440,29446,-29485,29440,29445,-29447,29440,29483,-29446,29484,29446,29442,-29444,29446,29445, + 29441,-29443,29445,29483,29444,-29442,29479,29476,-29481,29460,29479,-29481,29476,29463,-29481,29463,29460,-29481,29441,29444,29487,-29489,29442,29441,29488,-29487,29444,29443,29485,-29488,29443,29442, + 29486,-29486,29520,29471,29459,-29522,29490,29605,29614,-29495,29491,29490,29494,-29496,29604,29491,29495,-29614,29612,29608,-29493,29612,29492,29491,-29605,29493,29608,-29612,29492,29493,29490,-29492, + 29493,29611,29605,-29491,29492,29608,-29494,29495,29496,-29619,29502,29630,29624,-29501,29499,29502,29500,-29502,29628,29499,29501,-29620,29501,29500,-29628,29500,29624,-29628,29619,29501,-29628,29497, + 29620,29630,-29503,29498,29497,29502,-29500,29504,29498,-29635,29499,29628,-29635,29498,29499,-29635,29512,29525,29526,-29515,29510,29508,-29516,29512,29518,-29526,29689,29542,29511,-29647,29517,29518, + 29512,-29508,29508,29507,29514,-29516,29507,29512,-29515,29509,29513,29518,-29518,29470,29520,29521,-29467,29454,29524,29523,-29451,29456,29453,29451,-29453,29517,29507,-29507,29507,29508,-29507,29508, + 29516,-29507,29509,29517,-29507,29518,29656,29641,-29526,29525,29641,29686,29537,-29527,29681,29536,29532,-29675,29538,29537,-29645,29537,29686,-29645,29683,29538,-29645,29503,29504,29634,-29540,29631, + 29503,29539,-29635,29497,29498,29504,-29504,29620,29497,29503,-29632,29489,29540,29541,-29506,29646,29511,29543,-29641,29654,29544,29538,-29684,29515,29514,29526,-29545,29516,29508,-29511,29545,29547, + 29546,-29549,29513,29656,-29519,29511,29527,-29544,29544,29526,29537,-29539,29547,29549,29551,-29547,29505,29635,29674,-29533,29636,29457,29533,-29676,29505,29541,-29543,29635,29505,29542,-29690,29550, + 29545,29548,-29553,29513,29509,-29541,29542,29541,-29512,29529,29528,29535,-29537,29540,29509,-29507,29516,29541,-29507,29541,29540,-29507,29530,29669,29680,-29535,29703,29705,29529,-29671,29534,29680, + 29675,-29534,29531,29535,29534,-29534,29532,29536,29535,-29532,29528,29530,29534,-29536,29489,29505,29532,-29532,29457,29489,29531,-29534,29670,29529,29536,-29682,29457,29513,29540,-29490,29511,29541, + 29516,-29528,29457,29636,29656,-29514,29448,29454,-29454,29447,29456,-29456,29464,29469,-29469,29464,29519,29470,-29470,29519,29520,-29471,29448,29522,29524,-29455,29447,29448,29453,-29457,29549,29550, + 29552,-29552,29552,29548,29546,-29552,29527,29516,-29511,29510,29515,29544,-29544,29654,29543,-29545,29640,29543,-29655,29527,29510,-29544,29613,29495,-29619,29566,29564,29563,-29568,29602,29596,-29602, + 29601,29596,-29600,29599,29596,-29601,29600,29596,-29603,29664,29663,29562,-29569,29568,29562,29565,-29570,29662,29664,29568,-29561,29597,29557,29556,-29599,29589,29593,29590,-29587,29588,29592,29593, + -29590,29587,29591,29592,-29589,29595,29589,-29587,29595,29588,-29590,29595,29587,-29589,29595,29586,-29588,29583,29581,29580,-29585,29585,29573,29572,-29583,29582,29572,29581,-29584,29659,29660,29585, + -29580,29579,29585,29582,-29579,29586,29590,29591,-29588,29577,29574,29575,-29577,29592,29575,29574,-29594,29591,29576,29575,-29593,29590,29577,29576,-29592,29553,29597,-29599,29553,29598,-29560,29553, + 29559,-29559,29553,29558,-29598,29598,29556,29555,-29560,29559,29555,29554,-29559,29558,29554,29557,-29598,29593,29594,-29591,29574,29594,-29594,29590,29594,-29578,29577,29594,-29575,29554,29602,29601, + -29558,29555,29600,29602,-29555,29557,29601,29599,-29557,29556,29599,29600,-29556,29660,29661,29573,-29586,29606,29615,29614,-29606,29607,29616,29615,-29607,29604,29613,29616,-29608,29612,29609,-29609, + 29612,29604,29607,-29610,29610,29611,-29609,29609,29607,29606,-29611,29610,29606,29605,-29612,29609,29610,-29609,29616,29618,-29618,29629,29625,29624,-29631,29623,29626,29625,-29630,29628,29619,29626, + -29624,29626,29627,-29626,29625,29627,-29625,29619,29627,-29627,29621,29629,29630,-29621,29622,29623,29629,-29622,29633,29634,-29623,29623,29634,-29629,29622,29634,-29624,29649,29652,29666,-29666,29647, + 29653,-29644,29649,29665,-29659,29689,29646,29648,-29692,29657,29642,29649,-29659,29643,29653,29652,-29643,29642,29652,-29650,29645,29657,29658,-29651,29584,29580,29661,-29661,29567,29563,29663,-29665, + 29569,29565,29564,-29567,29657,29638,-29643,29642,29638,-29644,29643,29638,-29656,29645,29638,-29658,29658,29665,29641,-29657,29665,29666,29684,29686,-29642,29681,29674,29676,-29683,29685,29644,-29685, + 29684,29644,-29687,29683,29644,-29686,29632,29687,29634,-29634,29631,29634,29687,-29633,29621,29632,29633,-29623,29620,29631,29632,-29622,29603,29637,29690,-29689,29646,29640,29692,-29649,29654,29683, + 29685,-29694,29653,29693,29666,-29653,29655,29647,-29644,29694,29697,29695,-29697,29650,29658,-29657,29648,29692,-29668,29693,29685,29684,-29667,29696,29695,29700,-29699,29637,29676,29674,-29636,29636, + 29675,29677,-29572,29637,29691,-29691,29635,29689,29691,-29638,29699,29701,29697,-29695,29650,29688,-29646,29691,29648,-29691,29671,29682,29679,-29669,29639,29570,-29652,29688,29638,-29646,29655,29638, + -29691,29690,29638,-29689,29672,29678,29680,-29670,29703,29670,29671,-29708,29678,29677,29675,-29681,29673,29677,29678,-29680,29676,29673,29679,-29683,29668,29679,29678,-29673,29603,29673,29676,-29638, + 29571,29677,29673,-29604,29670,29681,29682,-29672,29571,29603,29688,-29651,29648,29667,29655,-29691,29571,29650,29656,-29637,29561,29566,-29568,29560,29568,-29570,29578,29582,-29584,29578,29583,29584, + -29660,29659,29584,-29661,29561,29567,29664,-29663,29560,29569,29566,-29562,29698,29700,29701,-29700,29701,29700,29695,-29698,29667,29647,-29656,29647,29692,29693,-29654,29654,29693,-29693,29640,29654, + -29693,29667,29692,-29648,29613,29618,-29617,29528,29702,29704,-29531,29529,29705,29702,-29529,29671,29668,29706,-29708,29704,29639,29669,-29531,29702,29705,-29571,29639,29704,-29571,29704,29702,-29571, + 29705,29703,-29571,29651,29672,29669,-29640,29706,29570,-29708,29651,29570,-29707,29707,29570,-29704,29668,29672,29651,-29707,29721,29722,29718,-29720,29756,29755,-29751,29755,29753,-29751,29753,29754, + -29751,29754,29756,-29751,29806,29723,29717,-29806,29723,29724,29720,-29718,29804,29715,29723,-29807,29751,29752,29711,-29713,29743,29740,29744,-29748,29742,29743,29747,-29747,29741,29742,29746,-29746, + 29749,29740,-29744,29749,29743,-29743,29749,29742,-29742,29749,29741,-29741,29737,29738,29734,-29736,29739,29736,29726,-29728,29736,29737,29735,-29727,29801,29733,29739,-29803,29733,29732,29736,-29740, + 29740,29741,29745,-29745,29731,29730,29729,-29729,29746,29747,29728,-29730,29745,29746,29729,-29731,29744,29745,29730,-29732,29708,29752,-29752,29708,29714,-29753,29708,29713,-29715,29708,29751,-29714, + 29752,29714,29710,-29712,29714,29713,29709,-29711,29713,29751,29712,-29710,29747,29744,-29749,29728,29747,-29749,29744,29731,-29749,29731,29728,-29749,29709,29712,29755,-29757,29710,29709,29756,-29755, + 29712,29711,29753,-29756,29711,29710,29754,-29754,29802,29739,29727,-29804,29759,29886,29896,-29765,29760,29759,29764,-29766,29885,29760,29765,-29896,29894,29890,-29763,29894,29762,29760,-29886,29763, + 29890,-29894,29762,29763,29759,-29761,29763,29893,29886,-29760,29762,29890,-29764,29779,29767,29761,-29779,29768,29779,29778,-29770,29779,29784,29781,-29768,29895,29765,29766,-29905,29827,29829,29832, + -29831,29772,29775,29773,-29775,29913,29772,29774,-29906,29774,29773,29827,-29829,29773,29829,-29828,29905,29774,29828,-29992,29770,29906,29915,-29776,29771,29770,29775,-29773,29777,29771,-29920,29772, + 29913,-29920,29771,29772,-29920,29769,29782,29923,-29901,29761,29780,29783,-29779,29767,29781,29780,-29762,29778,29783,29782,-29770,29793,29807,29808,-29797,29791,29788,-29798,29793,29800,-29808,29799, + 29800,29793,-29788,29788,29787,29796,-29798,29787,29793,-29797,29789,29794,29800,-29800,29738,29802,29803,-29735,29722,29806,29805,-29719,29724,29721,29719,-29721,29799,29787,-29787,29787,29788,-29787, + 29788,29798,-29787,29789,29799,-29787,29800,29951,29935,-29808,29807,29935,29981,29819,-29809,29795,29933,29964,-29813,29976,29818,29814,-29970,29820,29819,-29939,29819,29981,-29939,29978,29820,-29939, + 29776,29777,29919,-29822,29916,29776,29821,-29920,29770,29771,29777,-29777,29906,29770,29776,-29917,29758,29822,29823,-29786,29949,29826,29820,-29979,29797,29796,29808,-29827,29809,29798,29788,-29792, + 29809,29791,29797,-29827,29794,29951,-29801,29792,29809,-29826,29826,29808,29819,-29821,29825,29809,-29827,29785,29929,29969,-29815,29930,29725,29815,-29971,29785,29823,-29825,29757,29790,-29851,29794, + 29789,-29823,29810,29757,29795,-29813,29811,29790,29757,-29811,29768,29926,29923,-29783,29768,29769,29900,-29927,29768,29782,29783,-29785,29768,29784,-29780,29824,29823,-29793,29811,29810,29817,-29819, + 29933,29795,-29851,29795,29757,-29851,29790,29934,-29851,29822,29789,-29787,29798,29823,-29787,29823,29822,-29787,29812,29964,29975,-29817,29934,29790,29811,-29966,29816,29975,29970,-29816,29813,29817, + 29816,-29816,29814,29818,29817,-29814,29810,29812,29816,-29818,29758,29785,29814,-29814,29725,29758,29813,-29816,29965,29811,29818,-29977,29725,29794,29822,-29759,29792,29823,29798,-29810,29725,29930, + 29951,-29795,29716,29722,-29722,29715,29724,-29724,29732,29737,-29737,29732,29801,29738,-29738,29801,29802,-29739,29716,29804,29806,-29723,29715,29716,29721,-29725,29829,29915,29994,-29833,29991,29828, + 29831,-29999,29828,29827,29830,-29832,29775,29915,29829,-29774,29994,29992,-29833,29998,29831,-29994,29831,29830,-29994,29832,29992,29912,-29831,29830,29912,-29994,29949,29825,-29827,29846,29844,29843, + -29848,29882,29876,-29882,29881,29876,-29880,29879,29876,-29881,29880,29876,-29883,29959,29958,29842,-29849,29848,29842,29845,-29850,29957,29959,29848,-29841,29877,29837,29836,-29879,29869,29873,29870, + -29867,29868,29872,29873,-29870,29867,29871,29872,-29869,29875,29869,-29867,29875,29868,-29870,29875,29867,-29869,29875,29866,-29868,29863,29861,29860,-29865,29865,29853,29852,-29863,29862,29852,29861, + -29864,29954,29955,29865,-29860,29859,29865,29862,-29859,29866,29870,29871,-29868,29857,29854,29855,-29857,29872,29855,29854,-29874,29871,29856,29855,-29873,29870,29857,29856,-29872,29833,29877,-29879, + 29833,29878,-29840,29833,29839,-29839,29833,29838,-29878,29878,29836,29835,-29840,29839,29835,29834,-29839,29838,29834,29837,-29878,29873,29874,-29871,29854,29874,-29874,29870,29874,-29858,29857,29874, + -29855,29834,29882,29881,-29838,29835,29880,29882,-29835,29837,29881,29879,-29837,29836,29879,29880,-29836,29955,29956,29853,-29866,29887,29897,29896,-29887,29888,29898,29897,-29888,29885,29895,29898, + -29889,29894,29891,-29891,29894,29885,29888,-29892,29892,29893,-29891,29891,29888,29887,-29893,29892,29887,29886,-29894,29891,29892,-29891,29921,29920,29889,-29902,29902,29903,29920,-29922,29921,29901, + 29924,-29929,29940,29949,-30001,29895,29904,29899,-29899,29988,29995,29997,-29991,29909,29911,29910,-29915,29913,29905,29911,-29910,29911,29989,29988,-29911,29910,29988,-29991,29905,29991,29989,-29912, + 29907,29914,29915,-29907,29908,29909,29914,-29908,29918,29919,-29909,29909,29919,-29914,29908,29919,-29910,29903,29900,29923,-29926,29889,29920,29927,-29923,29901,29889,29922,-29925,29920,29903,29925, + -29928,29944,29947,29961,-29961,29942,29948,-29938,29944,29960,-29954,29952,29936,29944,-29954,29937,29948,29947,-29937,29936,29947,-29945,29939,29952,29953,-29946,29864,29860,29956,-29956,29847,29843, + 29958,-29960,29849,29845,29844,-29847,29952,29932,-29937,29936,29932,-29938,29937,29932,-29951,29939,29932,-29953,29953,29960,29935,-29952,29960,29961,29979,29981,-29936,29946,29967,29964,-29934,29976, + 29969,29971,-29978,29980,29938,-29980,29979,29938,-29982,29978,29938,-29981,29917,29982,29919,-29919,29916,29919,29982,-29918,29907,29917,29918,-29909,29906,29916,29917,-29908,29884,29931,29984,-29984, + 29949,29978,29980,-29988,29948,29987,29961,-29948,29962,29942,29937,-29951,29962,29987,29948,-29943,29945,29953,-29952,29943,29986,-29963,29987,29980,29979,-29962,29986,29987,-29963,29931,29971,29969, + -29930,29930,29970,29972,-29852,29931,29985,-29985,29883,29850,-29942,29945,29983,-29940,29963,29967,29946,-29884,29966,29963,29883,-29942,29902,29925,29923,-29927,29902,29926,29900,-29904,29902,29928, + 29927,-29926,29902,29921,-29929,29985,29943,-29985,29966,29977,29974,-29964,29933,29850,-29947,29946,29850,-29884,29941,29850,-29935,29983,29932,-29940,29950,29932,-29985,29984,29932,-29984,29967,29973, + 29975,-29965,29934,29965,29966,-29942,29973,29972,29970,-29976,29968,29972,29973,-29975,29971,29968,29974,-29978,29963,29974,29973,-29968,29884,29968,29971,-29932,29851,29972,29968,-29885,29965,29976, + 29977,-29967,29851,29884,29983,-29946,29943,29962,29950,-29985,29851,29945,29951,-29931,29841,29846,-29848,29840,29848,-29850,29858,29862,-29864,29858,29863,29864,-29955,29954,29864,-29956,29841,29847, + 29959,-29958,29840,29849,29846,-29842,29990,29997,29994,-29916,29991,29998,29996,-29990,29989,29996,29995,-29989,29914,29910,29990,-29916,29994,29997,-29993,29998,29993,-29997,29996,29993,-29996,29997, + 29995,29912,-29993,29995,29993,-29913,29949,29987,-29987,29931,29929,30001,-29986,29929,29785,29824,-30000,29949,29986,29943,-30001,30001,30000,29943,-29986,30001,29999,-29941,30001,29929,-30000,30001, + 29940,-30001,29940,29792,29825,-29950,29999,29824,29792,-29941,30015,30016,30012,-30014,30050,30049,-30045,30049,30047,-30045,30047,30048,-30045,30048,30050,-30045,30100,30017,30011,-30100,30017,30018, + 30014,-30012,30098,30009,30017,-30101,30045,30046,30005,-30007,30037,30034,30038,-30042,30036,30037,30041,-30041,30035,30036,30040,-30040,30043,30034,-30038,30043,30037,-30037,30043,30036,-30036,30043, + 30035,-30035,30031,30032,30028,-30030,30033,30030,30020,-30022,30030,30031,30029,-30021,30095,30027,30033,-30097,30027,30026,30030,-30034,30034,30035,30039,-30039,30025,30024,30023,-30023,30040,30041, + 30022,-30024,30039,30040,30023,-30025,30038,30039,30024,-30026,30002,30046,-30046,30002,30008,-30047,30002,30007,-30009,30002,30045,-30008,30046,30008,30004,-30006,30008,30007,30003,-30005,30007,30045, + 30006,-30004,30041,30038,-30043,30022,30041,-30043,30038,30025,-30043,30025,30022,-30043,30003,30006,30049,-30051,30004,30003,30050,-30049,30006,30005,30047,-30050,30005,30004,30048,-30048,30096,30033, + 30021,-30098,30053,30180,30190,-30059,30054,30053,30058,-30060,30179,30054,30059,-30190,30188,30184,-30057,30188,30056,30054,-30180,30057,30184,-30188,30056,30057,30053,-30055,30057,30187,30180,-30054, + 30056,30184,-30058,30073,30061,30055,-30073,30062,30073,30072,-30064,30073,30078,30075,-30062,30189,30059,30060,-30199,30121,30123,30126,-30125,30066,30069,30067,-30069,30207,30066,30068,-30200,30068, + 30067,30121,-30123,30067,30123,-30122,30199,30068,30122,-30286,30064,30200,30209,-30070,30065,30064,30069,-30067,30071,30065,-30214,30066,30207,-30214,30065,30066,-30214,30063,30076,30217,-30195,30055, + 30074,30077,-30073,30061,30075,30074,-30056,30072,30077,30076,-30064,30087,30101,30102,-30091,30085,30082,-30092,30087,30094,-30102,30093,30094,30087,-30082,30082,30081,30090,-30092,30081,30087,-30091, + 30083,30088,30094,-30094,30032,30096,30097,-30029,30016,30100,30099,-30013,30018,30015,30013,-30015,30093,30081,-30081,30081,30082,-30081,30082,30092,-30081,30083,30093,-30081,30094,30245,30229,-30102, + 30101,30229,30275,30113,-30103,30089,30227,30258,-30107,30270,30112,30108,-30264,30114,30113,-30233,30113,30275,-30233,30272,30114,-30233,30070,30071,30213,-30116,30210,30070,30115,-30214,30064,30065, + 30071,-30071,30200,30064,30070,-30211,30052,30116,30117,-30080,30243,30120,30114,-30273,30091,30090,30102,-30121,30103,30092,30082,-30086,30103,30085,30091,-30121,30088,30245,-30095,30086,30103,-30120, + 30120,30102,30113,-30115,30119,30103,-30121,30079,30223,30263,-30109,30224,30019,30109,-30265,30079,30117,-30119,30051,30084,-30145,30088,30083,-30117,30104,30051,30089,-30107,30105,30084,30051,-30105, + 30062,30220,30217,-30077,30062,30063,30194,-30221,30062,30076,30077,-30079,30062,30078,-30074,30118,30117,-30087,30105,30104,30111,-30113,30227,30089,-30145,30089,30051,-30145,30084,30228,-30145,30116, + 30083,-30081,30092,30117,-30081,30117,30116,-30081,30106,30258,30269,-30111,30228,30084,30105,-30260,30110,30269,30264,-30110,30107,30111,30110,-30110,30108,30112,30111,-30108,30104,30106,30110,-30112, + 30052,30079,30108,-30108,30019,30052,30107,-30110,30259,30105,30112,-30271,30019,30088,30116,-30053,30086,30117,30092,-30104,30019,30224,30245,-30089,30010,30016,-30016,30009,30018,-30018,30026,30031, + -30031,30026,30095,30032,-30032,30095,30096,-30033,30010,30098,30100,-30017,30009,30010,30015,-30019,30123,30209,30288,-30127,30285,30122,30125,-30293,30122,30121,30124,-30126,30069,30209,30123,-30068, + 30288,30286,-30127,30292,30125,-30288,30125,30124,-30288,30126,30286,30206,-30125,30124,30206,-30288,30243,30119,-30121,30140,30138,30137,-30142,30176,30170,-30176,30175,30170,-30174,30173,30170,-30175, + 30174,30170,-30177,30253,30252,30136,-30143,30142,30136,30139,-30144,30251,30253,30142,-30135,30171,30131,30130,-30173,30163,30167,30164,-30161,30162,30166,30167,-30164,30161,30165,30166,-30163,30169, + 30163,-30161,30169,30162,-30164,30169,30161,-30163,30169,30160,-30162,30157,30155,30154,-30159,30159,30147,30146,-30157,30156,30146,30155,-30158,30248,30249,30159,-30154,30153,30159,30156,-30153,30160, + 30164,30165,-30162,30151,30148,30149,-30151,30166,30149,30148,-30168,30165,30150,30149,-30167,30164,30151,30150,-30166,30127,30171,-30173,30127,30172,-30134,30127,30133,-30133,30127,30132,-30172,30172, + 30130,30129,-30134,30133,30129,30128,-30133,30132,30128,30131,-30172,30167,30168,-30165,30148,30168,-30168,30164,30168,-30152,30151,30168,-30149,30128,30176,30175,-30132,30129,30174,30176,-30129,30131, + 30175,30173,-30131,30130,30173,30174,-30130,30249,30250,30147,-30160,30181,30191,30190,-30181,30182,30192,30191,-30182,30179,30189,30192,-30183,30188,30185,-30185,30188,30179,30182,-30186,30186,30187, + -30185,30185,30182,30181,-30187,30186,30181,30180,-30188,30185,30186,-30185,30215,30214,30183,-30196,30196,30197,30214,-30216,30215,30195,30218,-30223,30234,30243,-30295,30189,30198,30193,-30193,30282, + 30289,30291,-30285,30203,30205,30204,-30209,30207,30199,30205,-30204,30205,30283,30282,-30205,30204,30282,-30285,30199,30285,30283,-30206,30201,30208,30209,-30201,30202,30203,30208,-30202,30212,30213, + -30203,30203,30213,-30208,30202,30213,-30204,30197,30194,30217,-30220,30183,30214,30221,-30217,30195,30183,30216,-30219,30214,30197,30219,-30222,30238,30241,30255,-30255,30236,30242,-30232,30238,30254, + -30248,30246,30230,30238,-30248,30231,30242,30241,-30231,30230,30241,-30239,30233,30246,30247,-30240,30158,30154,30250,-30250,30141,30137,30252,-30254,30143,30139,30138,-30141,30246,30226,-30231,30230, + 30226,-30232,30231,30226,-30245,30233,30226,-30247,30247,30254,30229,-30246,30254,30255,30273,30275,-30230,30240,30261,30258,-30228,30270,30263,30265,-30272,30274,30232,-30274,30273,30232,-30276,30272, + 30232,-30275,30211,30276,30213,-30213,30210,30213,30276,-30212,30201,30211,30212,-30203,30200,30210,30211,-30202,30178,30225,30278,-30278,30243,30272,30274,-30282,30242,30281,30255,-30242,30256,30236, + 30231,-30245,30256,30281,30242,-30237,30239,30247,-30246,30237,30280,-30257,30281,30274,30273,-30256,30280,30281,-30257,30225,30265,30263,-30224,30224,30264,30266,-30146,30225,30279,-30279,30177,30144, + -30236,30239,30277,-30234,30257,30261,30240,-30178,30260,30257,30177,-30236,30196,30219,30217,-30221,30196,30220,30194,-30198,30196,30222,30221,-30220,30196,30215,-30223,30279,30237,-30279,30260,30271, + 30268,-30258,30227,30144,-30241,30240,30144,-30178,30235,30144,-30229,30277,30226,-30234,30244,30226,-30279,30278,30226,-30278,30261,30267,30269,-30259,30228,30259,30260,-30236,30267,30266,30264,-30270, + 30262,30266,30267,-30269,30265,30262,30268,-30272,30257,30268,30267,-30262,30178,30262,30265,-30226,30145,30266,30262,-30179,30259,30270,30271,-30261,30145,30178,30277,-30240,30237,30256,30244,-30279, + 30145,30239,30245,-30225,30135,30140,-30142,30134,30142,-30144,30152,30156,-30158,30152,30157,30158,-30249,30248,30158,-30250,30135,30141,30253,-30252,30134,30143,30140,-30136,30284,30291,30288,-30210, + 30285,30292,30290,-30284,30283,30290,30289,-30283,30208,30204,30284,-30210,30288,30291,-30287,30292,30287,-30291,30290,30287,-30290,30291,30289,30206,-30287,30289,30287,-30207,30243,30281,-30281,30225, + 30223,30295,-30280,30223,30079,30118,-30294,30243,30280,30237,-30295,30295,30294,30237,-30280,30295,30293,-30235,30295,30223,-30294,30295,30234,-30295,30234,30086,30119,-30244,30293,30118,30086,-30235, + 30309,30310,30306,-30308,30344,30343,-30339,30343,30341,-30339,30341,30342,-30339,30342,30344,-30339,30394,30311,30305,-30394,30311,30312,30308,-30306,30392,30303,30311,-30395,30339,30340,30299,-30301, + 30331,30328,30332,-30336,30330,30331,30335,-30335,30329,30330,30334,-30334,30337,30328,-30332,30337,30331,-30331,30337,30330,-30330,30337,30329,-30329,30325,30326,30322,-30324,30327,30324,30314,-30316, + 30324,30325,30323,-30315,30389,30321,30327,-30391,30321,30320,30324,-30328,30328,30329,30333,-30333,30319,30318,30317,-30317,30334,30335,30316,-30318,30333,30334,30317,-30319,30332,30333,30318,-30320, + 30296,30340,-30340,30296,30302,-30341,30296,30301,-30303,30296,30339,-30302,30340,30302,30298,-30300,30302,30301,30297,-30299,30301,30339,30300,-30298,30335,30332,-30337,30316,30335,-30337,30332,30319, + -30337,30319,30316,-30337,30297,30300,30343,-30345,30298,30297,30344,-30343,30300,30299,30341,-30344,30299,30298,30342,-30342,30390,30327,30315,-30392,30347,30474,30484,-30353,30348,30347,30352,-30354, + 30473,30348,30353,-30484,30482,30478,-30351,30482,30350,30348,-30474,30351,30478,-30482,30350,30351,30347,-30349,30351,30481,30474,-30348,30350,30478,-30352,30367,30355,30349,-30367,30356,30367,30366, + -30358,30367,30372,30369,-30356,30483,30353,30354,-30493,30415,30417,30420,-30419,30360,30363,30361,-30363,30501,30360,30362,-30494,30362,30361,30415,-30417,30361,30417,-30416,30493,30362,30416,-30580, + 30358,30494,30503,-30364,30359,30358,30363,-30361,30365,30359,-30508,30360,30501,-30508,30359,30360,-30508,30357,30370,30511,-30489,30349,30368,30371,-30367,30355,30369,30368,-30350,30366,30371,30370, + -30358,30381,30395,30396,-30385,30379,30376,-30386,30381,30388,-30396,30387,30388,30381,-30376,30376,30375,30384,-30386,30375,30381,-30385,30377,30382,30388,-30388,30326,30390,30391,-30323,30310,30394, + 30393,-30307,30312,30309,30307,-30309,30387,30375,-30375,30375,30376,-30375,30376,30386,-30375,30377,30387,-30375,30388,30539,30523,-30396,30395,30523,30569,30407,-30397,30383,30521,30552,-30401,30564, + 30406,30402,-30558,30408,30407,-30527,30407,30569,-30527,30566,30408,-30527,30364,30365,30507,-30410,30504,30364,30409,-30508,30358,30359,30365,-30365,30494,30358,30364,-30505,30346,30410,30411,-30374, + 30537,30414,30408,-30567,30385,30384,30396,-30415,30397,30386,30376,-30380,30397,30379,30385,-30415,30382,30539,-30389,30380,30397,-30414,30414,30396,30407,-30409,30413,30397,-30415,30373,30517,30557, + -30403,30518,30313,30403,-30559,30373,30411,-30413,30345,30378,-30439,30382,30377,-30411,30398,30345,30383,-30401,30399,30378,30345,-30399,30356,30514,30511,-30371,30356,30357,30488,-30515,30356,30370, + 30371,-30373,30356,30372,-30368,30412,30411,-30381,30399,30398,30405,-30407,30521,30383,-30439,30383,30345,-30439,30378,30522,-30439,30410,30377,-30375,30386,30411,-30375,30411,30410,-30375,30400,30552, + 30563,-30405,30522,30378,30399,-30554,30404,30563,30558,-30404,30401,30405,30404,-30404,30402,30406,30405,-30402,30398,30400,30404,-30406,30346,30373,30402,-30402,30313,30346,30401,-30404,30553,30399, + 30406,-30565,30313,30382,30410,-30347,30380,30411,30386,-30398,30313,30518,30539,-30383,30304,30310,-30310,30303,30312,-30312,30320,30325,-30325,30320,30389,30326,-30326,30389,30390,-30327,30304,30392, + 30394,-30311,30303,30304,30309,-30313,30417,30503,30582,-30421,30579,30416,30419,-30587,30416,30415,30418,-30420,30363,30503,30417,-30362,30582,30580,-30421,30586,30419,-30582,30419,30418,-30582,30420, + 30580,30500,-30419,30418,30500,-30582,30537,30413,-30415,30434,30432,30431,-30436,30470,30464,-30470,30469,30464,-30468,30467,30464,-30469,30468,30464,-30471,30547,30546,30430,-30437,30436,30430,30433, + -30438,30545,30547,30436,-30429,30465,30425,30424,-30467,30457,30461,30458,-30455,30456,30460,30461,-30458,30455,30459,30460,-30457,30463,30457,-30455,30463,30456,-30458,30463,30455,-30457,30463,30454, + -30456,30451,30449,30448,-30453,30453,30441,30440,-30451,30450,30440,30449,-30452,30542,30543,30453,-30448,30447,30453,30450,-30447,30454,30458,30459,-30456,30445,30442,30443,-30445,30460,30443,30442, + -30462,30459,30444,30443,-30461,30458,30445,30444,-30460,30421,30465,-30467,30421,30466,-30428,30421,30427,-30427,30421,30426,-30466,30466,30424,30423,-30428,30427,30423,30422,-30427,30426,30422,30425, + -30466,30461,30462,-30459,30442,30462,-30462,30458,30462,-30446,30445,30462,-30443,30422,30470,30469,-30426,30423,30468,30470,-30423,30425,30469,30467,-30425,30424,30467,30468,-30424,30543,30544,30441, + -30454,30475,30485,30484,-30475,30476,30486,30485,-30476,30473,30483,30486,-30477,30482,30479,-30479,30482,30473,30476,-30480,30480,30481,-30479,30479,30476,30475,-30481,30480,30475,30474,-30482,30479, + 30480,-30479,30509,30508,30477,-30490,30490,30491,30508,-30510,30509,30489,30512,-30517,30528,30537,-30589,30483,30492,30487,-30487,30576,30583,30585,-30579,30497,30499,30498,-30503,30501,30493,30499, + -30498,30499,30577,30576,-30499,30498,30576,-30579,30493,30579,30577,-30500,30495,30502,30503,-30495,30496,30497,30502,-30496,30506,30507,-30497,30497,30507,-30502,30496,30507,-30498,30491,30488,30511, + -30514,30477,30508,30515,-30511,30489,30477,30510,-30513,30508,30491,30513,-30516,30532,30535,30549,-30549,30530,30536,-30526,30532,30548,-30542,30540,30524,30532,-30542,30525,30536,30535,-30525,30524, + 30535,-30533,30527,30540,30541,-30534,30452,30448,30544,-30544,30435,30431,30546,-30548,30437,30433,30432,-30435,30540,30520,-30525,30524,30520,-30526,30525,30520,-30539,30527,30520,-30541,30541,30548, + 30523,-30540,30548,30549,30567,30569,-30524,30534,30555,30552,-30522,30564,30557,30559,-30566,30568,30526,-30568,30567,30526,-30570,30566,30526,-30569,30505,30570,30507,-30507,30504,30507,30570,-30506, + 30495,30505,30506,-30497,30494,30504,30505,-30496,30472,30519,30572,-30572,30537,30566,30568,-30576,30536,30575,30549,-30536,30550,30530,30525,-30539,30550,30575,30536,-30531,30533,30541,-30540,30531, + 30574,-30551,30575,30568,30567,-30550,30574,30575,-30551,30519,30559,30557,-30518,30518,30558,30560,-30440,30519,30573,-30573,30471,30438,-30530,30533,30571,-30528,30551,30555,30534,-30472,30554,30551, + 30471,-30530,30490,30513,30511,-30515,30490,30514,30488,-30492,30490,30516,30515,-30514,30490,30509,-30517,30573,30531,-30573,30554,30565,30562,-30552,30521,30438,-30535,30534,30438,-30472,30529,30438, + -30523,30571,30520,-30528,30538,30520,-30573,30572,30520,-30572,30555,30561,30563,-30553,30522,30553,30554,-30530,30561,30560,30558,-30564,30556,30560,30561,-30563,30559,30556,30562,-30566,30551,30562, + 30561,-30556,30472,30556,30559,-30520,30439,30560,30556,-30473,30553,30564,30565,-30555,30439,30472,30571,-30534,30531,30550,30538,-30573,30439,30533,30539,-30519,30429,30434,-30436,30428,30436,-30438, + 30446,30450,-30452,30446,30451,30452,-30543,30542,30452,-30544,30429,30435,30547,-30546,30428,30437,30434,-30430,30578,30585,30582,-30504,30579,30586,30584,-30578,30577,30584,30583,-30577,30502,30498, + 30578,-30504,30582,30585,-30581,30586,30581,-30585,30584,30581,-30584,30585,30583,30500,-30581,30583,30581,-30501,30537,30575,-30575,30519,30517,30589,-30574,30517,30373,30412,-30588,30537,30574,30531, + -30589,30589,30588,30531,-30574,30589,30587,-30529,30589,30517,-30588,30589,30528,-30589,30528,30380,30413,-30538,30587,30412,30380,-30529,30595,30596,30604,-30604,30590,30591,30599,-30599,30594,30595, + 30603,-30603,30593,30594,30602,-30602,30597,30590,30598,-30606,30592,30593,30601,-30601,30596,30597,30605,-30605,30591,30592,30600,-30600,30605,30598,30606,-30614,30600,30601,30609,-30609,30604,30605, + 30613,-30613,30599,30600,30608,-30608,30603,30604,30612,-30612,30598,30599,30607,-30607,30602,30603,30611,-30611,30601,30602,30610,-30610,30612,30613,30621,-30621,30607,30608,30616,-30616,30611,30612, + 30620,-30620,30606,30607,30615,-30615,30610,30611,30619,-30619,30609,30610,30618,-30618,30613,30606,30614,-30622,30608,30609,30617,-30617,30638,30640,30641,30642,30643,30644,30645,-30640,30596,30595, + 30627,-30629,30591,30590,30622,-30624,30595,30594,30626,-30628,30594,30593,30625,-30627,30590,30597,30629,-30623,30593,30592,30624,-30626,30597,30596,30628,-30630,30592,30591,30623,-30625,30627,30626, + 30634,-30636,30626,30625,30633,-30635,30622,30629,30637,-30631,30625,30624,30632,-30634,30629,30628,30636,-30638,30624,30623,30631,-30633,30628,30627,30635,-30637,30623,30622,30630,-30632,30631,30630, + 30637,30636,30635,30634,30633,-30633,30638,30639,30614,-30616,30640,30638,30615,-30617,30641,30640,30616,-30618,30642,30641,30617,-30619,30643,30642,30618,-30620,30644,30643,30619,-30621,30645,30644, + 30620,-30622,30639,30645,30621,-30615,30659,30660,30656,-30658,30694,30693,-30689,30693,30691,-30689,30691,30692,-30689,30692,30694,-30689,30730,30661,30655,-30730,30661,30662,30658,-30656,30728,30653, + 30661,-30731,30689,30690,30649,-30651,30681,30678,30682,-30686,30680,30681,30685,-30685,30679,30680,30684,-30684,30687,30678,-30682,30687,30681,-30681,30687,30680,-30680,30687,30679,-30679,30675,30676, + 30672,-30674,30677,30674,30664,-30666,30674,30675,30673,-30665,30725,30671,30677,-30727,30671,30670,30674,-30678,30678,30679,30683,-30683,30669,30668,30667,-30667,30684,30685,30666,-30668,30683,30684, + 30667,-30669,30682,30683,30668,-30670,30646,30690,-30690,30646,30652,-30691,30646,30651,-30653,30646,30689,-30652,30690,30652,30648,-30650,30652,30651,30647,-30649,30651,30689,30650,-30648,30685,30682, + -30687,30666,30685,-30687,30682,30669,-30687,30669,30666,-30687,30647,30650,30693,-30695,30648,30647,30694,-30693,30650,30649,30691,-30694,30649,30648,30692,-30692,30726,30677,30665,-30728,30696,30811, + 30820,-30701,30697,30696,30700,-30702,30810,30697,30701,-30820,30818,30814,-30699,30818,30698,30697,-30811,30699,30814,-30818,30698,30699,30696,-30698,30699,30817,30811,-30697,30698,30814,-30700,30701, + 30702,-30825,30708,30836,30830,-30707,30705,30708,30706,-30708,30834,30705,30707,-30826,30707,30706,-30834,30706,30830,-30834,30825,30707,-30834,30703,30826,30836,-30709,30704,30703,30708,-30706,30710, + 30704,-30841,30705,30834,-30841,30704,30705,-30841,30718,30731,30732,-30721,30716,30714,-30722,30718,30724,-30732,30895,30748,30717,-30853,30723,30724,30718,-30714,30714,30713,30720,-30722,30713,30718, + -30721,30715,30719,30724,-30724,30676,30726,30727,-30673,30660,30730,30729,-30657,30662,30659,30657,-30659,30723,30713,-30713,30713,30714,-30713,30714,30722,-30713,30715,30723,-30713,30724,30862,30847, + -30732,30731,30847,30892,30743,-30733,30887,30742,30738,-30881,30744,30743,-30851,30743,30892,-30851,30889,30744,-30851,30709,30710,30840,-30746,30837,30709,30745,-30841,30703,30704,30710,-30710,30826, + 30703,30709,-30838,30695,30746,30747,-30712,30852,30717,30749,-30847,30860,30750,30744,-30890,30721,30720,30732,-30751,30722,30714,-30717,30751,30753,30752,-30755,30719,30862,-30725,30717,30733,-30750, + 30750,30732,30743,-30745,30753,30755,30757,-30753,30711,30841,30880,-30739,30842,30663,30739,-30882,30711,30747,-30749,30841,30711,30748,-30896,30756,30751,30754,-30759,30719,30715,-30747,30748,30747, + -30718,30735,30734,30741,-30743,30746,30715,-30713,30722,30747,-30713,30747,30746,-30713,30736,30875,30886,-30741,30909,30911,30735,-30877,30740,30886,30881,-30740,30737,30741,30740,-30740,30738,30742, + 30741,-30738,30734,30736,30740,-30742,30695,30711,30738,-30738,30663,30695,30737,-30740,30876,30735,30742,-30888,30663,30719,30746,-30696,30717,30747,30722,-30734,30663,30842,30862,-30720,30654,30660, + -30660,30653,30662,-30662,30670,30675,-30675,30670,30725,30676,-30676,30725,30726,-30677,30654,30728,30730,-30661,30653,30654,30659,-30663,30755,30756,30758,-30758,30758,30754,30752,-30758,30733,30722, + -30717,30716,30721,30750,-30750,30860,30749,-30751,30846,30749,-30861,30733,30716,-30750,30819,30701,-30825,30772,30770,30769,-30774,30808,30802,-30808,30807,30802,-30806,30805,30802,-30807,30806,30802, + -30809,30870,30869,30768,-30775,30774,30768,30771,-30776,30868,30870,30774,-30767,30803,30763,30762,-30805,30795,30799,30796,-30793,30794,30798,30799,-30796,30793,30797,30798,-30795,30801,30795,-30793, + 30801,30794,-30796,30801,30793,-30795,30801,30792,-30794,30789,30787,30786,-30791,30791,30779,30778,-30789,30788,30778,30787,-30790,30865,30866,30791,-30786,30785,30791,30788,-30785,30792,30796,30797, + -30794,30783,30780,30781,-30783,30798,30781,30780,-30800,30797,30782,30781,-30799,30796,30783,30782,-30798,30759,30803,-30805,30759,30804,-30766,30759,30765,-30765,30759,30764,-30804,30804,30762,30761, + -30766,30765,30761,30760,-30765,30764,30760,30763,-30804,30799,30800,-30797,30780,30800,-30800,30796,30800,-30784,30783,30800,-30781,30760,30808,30807,-30764,30761,30806,30808,-30761,30763,30807,30805, + -30763,30762,30805,30806,-30762,30866,30867,30779,-30792,30812,30821,30820,-30812,30813,30822,30821,-30813,30810,30819,30822,-30814,30818,30815,-30815,30818,30810,30813,-30816,30816,30817,-30815,30815, + 30813,30812,-30817,30816,30812,30811,-30818,30815,30816,-30815,30822,30824,-30824,30835,30831,30830,-30837,30829,30832,30831,-30836,30834,30825,30832,-30830,30832,30833,-30832,30831,30833,-30831,30825, + 30833,-30833,30827,30835,30836,-30827,30828,30829,30835,-30828,30839,30840,-30829,30829,30840,-30835,30828,30840,-30830,30855,30858,30872,-30872,30853,30859,-30850,30855,30871,-30865,30895,30852,30854, + -30898,30863,30848,30855,-30865,30849,30859,30858,-30849,30848,30858,-30856,30851,30863,30864,-30857,30790,30786,30867,-30867,30773,30769,30869,-30871,30775,30771,30770,-30773,30863,30844,-30849,30848, + 30844,-30850,30849,30844,-30862,30851,30844,-30864,30864,30871,30847,-30863,30871,30872,30890,30892,-30848,30887,30880,30882,-30889,30891,30850,-30891,30890,30850,-30893,30889,30850,-30892,30838,30893, + 30840,-30840,30837,30840,30893,-30839,30827,30838,30839,-30829,30826,30837,30838,-30828,30809,30843,30896,-30895,30852,30846,30898,-30855,30860,30889,30891,-30900,30859,30899,30872,-30859,30861,30853, + -30850,30900,30903,30901,-30903,30856,30864,-30863,30854,30898,-30874,30899,30891,30890,-30873,30902,30901,30906,-30905,30843,30882,30880,-30842,30842,30881,30883,-30778,30843,30897,-30897,30841,30895, + 30897,-30844,30905,30907,30903,-30901,30856,30894,-30852,30897,30854,-30897,30877,30888,30885,-30875,30845,30776,-30858,30894,30844,-30852,30861,30844,-30897,30896,30844,-30895,30878,30884,30886,-30876, + 30909,30876,30877,-30914,30884,30883,30881,-30887,30879,30883,30884,-30886,30882,30879,30885,-30889,30874,30885,30884,-30879,30809,30879,30882,-30844,30777,30883,30879,-30810,30876,30887,30888,-30878, + 30777,30809,30894,-30857,30854,30873,30861,-30897,30777,30856,30862,-30843,30767,30772,-30774,30766,30774,-30776,30784,30788,-30790,30784,30789,30790,-30866,30865,30790,-30867,30767,30773,30870,-30869, + 30766,30775,30772,-30768,30904,30906,30907,-30906,30907,30906,30901,-30904,30873,30853,-30862,30853,30898,30899,-30860,30860,30899,-30899,30846,30860,-30899,30873,30898,-30854,30819,30824,-30823,30734, + 30908,30910,-30737,30735,30911,30908,-30735,30877,30874,30912,-30914,30910,30845,30875,-30737,30908,30911,-30777,30845,30910,-30777,30910,30908,-30777,30911,30909,-30777,30857,30878,30875,-30846,30912, + 30776,-30914,30857,30776,-30913,30913,30776,-30910,30874,30878,30857,-30913,30914,30915,30916,-30918,30934,30919,30931,-30934,30918,30921,30935,-30937,30920,30919,30934,-30925,30920,30924,30928,-30927, + 30927,30926,30928,-30930,30935,30921,30927,-30930,30944,30920,-30927,30931,30930,30932,-30934,30945,30918,-30931,30918,30936,30932,-30931,30941,30940,-30923,30942,30939,-30923,30940,30942,-30923,30938, + 30923,30934,-30934,30939,30941,-30923,30923,30938,30939,-30943,30921,30943,-30928,30925,30937,30940,-30942,30943,30944,30926,-30928,30946,30945,30930,-30932,30919,30946,-30932,30945,30946,30915,-30915, + 30946,30944,30916,-30916,30944,30943,30917,-30917,30943,30945,30914,-30918,30938,30925,30941,-30940,30937,30923,30942,-30941,30923,30924,-30935,30925,30936,-30936,30937,30929,-30929,30923,30937,30928, + -30925,30937,30925,30935,-30930,30938,30933,-30933,30925,30938,30932,-30937,30919,30920,30944,-30947,30921,30918,30945,-30944,30960,30961,30957,-30959,30995,30994,-30990,30994,30992,-30990,30992,30993, + -30990,30993,30995,-30990,31031,30962,30956,-31031,30962,30963,30959,-30957,31029,30954,30962,-31032,30990,30991,30950,-30952,30982,30979,30983,-30987,30981,30982,30986,-30986,30980,30981,30985,-30985, + 30988,30979,-30983,30988,30982,-30982,30988,30981,-30981,30988,30980,-30980,30976,30977,30973,-30975,30978,30975,30965,-30967,30975,30976,30974,-30966,31026,30972,30978,-31028,30972,30971,30975,-30979, + 30979,30980,30984,-30984,30970,30969,30968,-30968,30985,30986,30967,-30969,30984,30985,30968,-30970,30983,30984,30969,-30971,30947,30991,-30991,30947,30953,-30992,30947,30952,-30954,30947,30990,-30953, + 30991,30953,30949,-30951,30953,30952,30948,-30950,30952,30990,30951,-30949,30986,30983,-30988,30967,30986,-30988,30983,30970,-30988,30970,30967,-30988,30948,30951,30994,-30996,30949,30948,30995,-30994, + 30951,30950,30992,-30995,30950,30949,30993,-30993,31027,30978,30966,-31029,30997,31112,31121,-31002,30998,30997,31001,-31003,31111,30998,31002,-31121,31119,31115,-31000,31119,30999,30998,-31112,31000, + 31115,-31119,30999,31000,30997,-30999,31000,31118,31112,-30998,30999,31115,-31001,31002,31003,-31126,31009,31137,31131,-31008,31006,31009,31007,-31009,31135,31006,31008,-31127,31008,31007,-31135,31007, + 31131,-31135,31126,31008,-31135,31004,31127,31137,-31010,31005,31004,31009,-31007,31011,31005,-31142,31006,31135,-31142,31005,31006,-31142,31019,31032,31033,-31022,31017,31015,-31023,31019,31025,-31033, + 31196,31049,31018,-31154,31024,31025,31019,-31015,31015,31014,31021,-31023,31014,31019,-31022,31016,31020,31025,-31025,30977,31027,31028,-30974,30961,31031,31030,-30958,30963,30960,30958,-30960,31024, + 31014,-31014,31014,31015,-31014,31015,31023,-31014,31016,31024,-31014,31025,31163,31148,-31033,31032,31148,31193,31044,-31034,31188,31043,31039,-31182,31045,31044,-31152,31044,31193,-31152,31190,31045, + -31152,31010,31011,31141,-31047,31138,31010,31046,-31142,31004,31005,31011,-31011,31127,31004,31010,-31139,30996,31047,31048,-31013,31153,31018,31050,-31148,31161,31051,31045,-31191,31022,31021,31033, + -31052,31023,31015,-31018,31052,31054,31053,-31056,31020,31163,-31026,31018,31034,-31051,31051,31033,31044,-31046,31054,31056,31058,-31054,31012,31142,31181,-31040,31143,30964,31040,-31183,31012,31048, + -31050,31142,31012,31049,-31197,31057,31052,31055,-31060,31020,31016,-31048,31049,31048,-31019,31036,31035,31042,-31044,31047,31016,-31014,31023,31048,-31014,31048,31047,-31014,31037,31176,31187,-31042, + 31210,31212,31036,-31178,31041,31187,31182,-31041,31038,31042,31041,-31041,31039,31043,31042,-31039,31035,31037,31041,-31043,30996,31012,31039,-31039,30964,30996,31038,-31041,31177,31036,31043,-31189, + 30964,31020,31047,-30997,31018,31048,31023,-31035,30964,31143,31163,-31021,30955,30961,-30961,30954,30963,-30963,30971,30976,-30976,30971,31026,30977,-30977,31026,31027,-30978,30955,31029,31031,-30962, + 30954,30955,30960,-30964,31056,31057,31059,-31059,31059,31055,31053,-31059,31034,31023,-31018,31017,31022,31051,-31051,31161,31050,-31052,31147,31050,-31162,31034,31017,-31051,31120,31002,-31126,31073, + 31071,31070,-31075,31109,31103,-31109,31108,31103,-31107,31106,31103,-31108,31107,31103,-31110,31171,31170,31069,-31076,31075,31069,31072,-31077,31169,31171,31075,-31068,31104,31064,31063,-31106,31096, + 31100,31097,-31094,31095,31099,31100,-31097,31094,31098,31099,-31096,31102,31096,-31094,31102,31095,-31097,31102,31094,-31096,31102,31093,-31095,31090,31088,31087,-31092,31092,31080,31079,-31090,31089, + 31079,31088,-31091,31166,31167,31092,-31087,31086,31092,31089,-31086,31093,31097,31098,-31095,31084,31081,31082,-31084,31099,31082,31081,-31101,31098,31083,31082,-31100,31097,31084,31083,-31099,31060, + 31104,-31106,31060,31105,-31067,31060,31066,-31066,31060,31065,-31105,31105,31063,31062,-31067,31066,31062,31061,-31066,31065,31061,31064,-31105,31100,31101,-31098,31081,31101,-31101,31097,31101,-31085, + 31084,31101,-31082,31061,31109,31108,-31065,31062,31107,31109,-31062,31064,31108,31106,-31064,31063,31106,31107,-31063,31167,31168,31080,-31093,31113,31122,31121,-31113,31114,31123,31122,-31114,31111, + 31120,31123,-31115,31119,31116,-31116,31119,31111,31114,-31117,31117,31118,-31116,31116,31114,31113,-31118,31117,31113,31112,-31119,31116,31117,-31116,31123,31125,-31125,31136,31132,31131,-31138,31130, + 31133,31132,-31137,31135,31126,31133,-31131,31133,31134,-31133,31132,31134,-31132,31126,31134,-31134,31128,31136,31137,-31128,31129,31130,31136,-31129,31140,31141,-31130,31130,31141,-31136,31129,31141, + -31131,31156,31159,31173,-31173,31154,31160,-31151,31156,31172,-31166,31196,31153,31155,-31199,31164,31149,31156,-31166,31150,31160,31159,-31150,31149,31159,-31157,31152,31164,31165,-31158,31091,31087, + 31168,-31168,31074,31070,31170,-31172,31076,31072,31071,-31074,31164,31145,-31150,31149,31145,-31151,31150,31145,-31163,31152,31145,-31165,31165,31172,31148,-31164,31172,31173,31191,31193,-31149,31188, + 31181,31183,-31190,31192,31151,-31192,31191,31151,-31194,31190,31151,-31193,31139,31194,31141,-31141,31138,31141,31194,-31140,31128,31139,31140,-31130,31127,31138,31139,-31129,31110,31144,31197,-31196, + 31153,31147,31199,-31156,31161,31190,31192,-31201,31160,31200,31173,-31160,31162,31154,-31151,31201,31204,31202,-31204,31157,31165,-31164,31155,31199,-31175,31200,31192,31191,-31174,31203,31202,31207, + -31206,31144,31183,31181,-31143,31143,31182,31184,-31079,31144,31198,-31198,31142,31196,31198,-31145,31206,31208,31204,-31202,31157,31195,-31153,31198,31155,-31198,31178,31189,31186,-31176,31146,31077, + -31159,31195,31145,-31153,31162,31145,-31198,31197,31145,-31196,31179,31185,31187,-31177,31210,31177,31178,-31215,31185,31184,31182,-31188,31180,31184,31185,-31187,31183,31180,31186,-31190,31175,31186, + 31185,-31180,31110,31180,31183,-31145,31078,31184,31180,-31111,31177,31188,31189,-31179,31078,31110,31195,-31158,31155,31174,31162,-31198,31078,31157,31163,-31144,31068,31073,-31075,31067,31075,-31077, + 31085,31089,-31091,31085,31090,31091,-31167,31166,31091,-31168,31068,31074,31171,-31170,31067,31076,31073,-31069,31205,31207,31208,-31207,31208,31207,31202,-31205,31174,31154,-31163,31154,31199,31200, + -31161,31161,31200,-31200,31147,31161,-31200,31174,31199,-31155,31120,31125,-31124,31035,31209,31211,-31038,31036,31212,31209,-31036,31178,31175,31213,-31215,31211,31146,31176,-31038,31209,31212,-31078, + 31146,31211,-31078,31211,31209,-31078,31212,31210,-31078,31158,31179,31176,-31147,31213,31077,-31215,31158,31077,-31214,31214,31077,-31211,31175,31179,31158,-31214,31228,31229,31225,-31227,31263,31262, + -31258,31262,31260,-31258,31260,31261,-31258,31261,31263,-31258,31299,31230,31224,-31299,31230,31231,31227,-31225,31297,31222,31230,-31300,31258,31259,31218,-31220,31250,31247,31251,-31255,31249,31250, + 31254,-31254,31248,31249,31253,-31253,31256,31247,-31251,31256,31250,-31250,31256,31249,-31249,31256,31248,-31248,31244,31245,31241,-31243,31246,31243,31233,-31235,31243,31244,31242,-31234,31294,31240, + 31246,-31296,31240,31239,31243,-31247,31247,31248,31252,-31252,31238,31237,31236,-31236,31253,31254,31235,-31237,31252,31253,31236,-31238,31251,31252,31237,-31239,31215,31259,-31259,31215,31221,-31260, + 31215,31220,-31222,31215,31258,-31221,31259,31221,31217,-31219,31221,31220,31216,-31218,31220,31258,31219,-31217,31254,31251,-31256,31235,31254,-31256,31251,31238,-31256,31238,31235,-31256,31216,31219, + 31262,-31264,31217,31216,31263,-31262,31219,31218,31260,-31263,31218,31217,31261,-31261,31295,31246,31234,-31297,31265,31380,31389,-31270,31266,31265,31269,-31271,31379,31266,31270,-31389,31387,31383, + -31268,31387,31267,31266,-31380,31268,31383,-31387,31267,31268,31265,-31267,31268,31386,31380,-31266,31267,31383,-31269,31270,31271,-31394,31277,31405,31399,-31276,31274,31277,31275,-31277,31403,31274, + 31276,-31395,31276,31275,-31403,31275,31399,-31403,31394,31276,-31403,31272,31395,31405,-31278,31273,31272,31277,-31275,31279,31273,-31410,31274,31403,-31410,31273,31274,-31410,31287,31300,31301,-31290, + 31285,31283,-31291,31287,31293,-31301,31464,31317,31286,-31422,31292,31293,31287,-31283,31283,31282,31289,-31291,31282,31287,-31290,31284,31288,31293,-31293,31245,31295,31296,-31242,31229,31299,31298, + -31226,31231,31228,31226,-31228,31292,31282,-31282,31282,31283,-31282,31283,31291,-31282,31284,31292,-31282,31293,31431,31416,-31301,31300,31416,31461,31312,-31302,31456,31311,31307,-31450,31313,31312, + -31420,31312,31461,-31420,31458,31313,-31420,31278,31279,31409,-31315,31406,31278,31314,-31410,31272,31273,31279,-31279,31395,31272,31278,-31407,31264,31315,31316,-31281,31421,31286,31318,-31416,31429, + 31319,31313,-31459,31290,31289,31301,-31320,31291,31283,-31286,31320,31322,31321,-31324,31288,31431,-31294,31286,31302,-31319,31319,31301,31312,-31314,31322,31324,31326,-31322,31280,31410,31449,-31308, + 31411,31232,31308,-31451,31280,31316,-31318,31410,31280,31317,-31465,31325,31320,31323,-31328,31288,31284,-31316,31317,31316,-31287,31304,31303,31310,-31312,31315,31284,-31282,31291,31316,-31282,31316, + 31315,-31282,31305,31444,31455,-31310,31478,31480,31304,-31446,31309,31455,31450,-31309,31306,31310,31309,-31309,31307,31311,31310,-31307,31303,31305,31309,-31311,31264,31280,31307,-31307,31232,31264, + 31306,-31309,31445,31304,31311,-31457,31232,31288,31315,-31265,31286,31316,31291,-31303,31232,31411,31431,-31289,31223,31229,-31229,31222,31231,-31231,31239,31244,-31244,31239,31294,31245,-31245,31294, + 31295,-31246,31223,31297,31299,-31230,31222,31223,31228,-31232,31324,31325,31327,-31327,31327,31323,31321,-31327,31302,31291,-31286,31285,31290,31319,-31319,31429,31318,-31320,31415,31318,-31430,31302, + 31285,-31319,31388,31270,-31394,31341,31339,31338,-31343,31377,31371,-31377,31376,31371,-31375,31374,31371,-31376,31375,31371,-31378,31439,31438,31337,-31344,31343,31337,31340,-31345,31437,31439,31343, + -31336,31372,31332,31331,-31374,31364,31368,31365,-31362,31363,31367,31368,-31365,31362,31366,31367,-31364,31370,31364,-31362,31370,31363,-31365,31370,31362,-31364,31370,31361,-31363,31358,31356,31355, + -31360,31360,31348,31347,-31358,31357,31347,31356,-31359,31434,31435,31360,-31355,31354,31360,31357,-31354,31361,31365,31366,-31363,31352,31349,31350,-31352,31367,31350,31349,-31369,31366,31351,31350, + -31368,31365,31352,31351,-31367,31328,31372,-31374,31328,31373,-31335,31328,31334,-31334,31328,31333,-31373,31373,31331,31330,-31335,31334,31330,31329,-31334,31333,31329,31332,-31373,31368,31369,-31366, + 31349,31369,-31369,31365,31369,-31353,31352,31369,-31350,31329,31377,31376,-31333,31330,31375,31377,-31330,31332,31376,31374,-31332,31331,31374,31375,-31331,31435,31436,31348,-31361,31381,31390,31389, + -31381,31382,31391,31390,-31382,31379,31388,31391,-31383,31387,31384,-31384,31387,31379,31382,-31385,31385,31386,-31384,31384,31382,31381,-31386,31385,31381,31380,-31387,31384,31385,-31384,31391,31393, + -31393,31404,31400,31399,-31406,31398,31401,31400,-31405,31403,31394,31401,-31399,31401,31402,-31401,31400,31402,-31400,31394,31402,-31402,31396,31404,31405,-31396,31397,31398,31404,-31397,31408,31409, + -31398,31398,31409,-31404,31397,31409,-31399,31424,31427,31441,-31441,31422,31428,-31419,31424,31440,-31434,31464,31421,31423,-31467,31432,31417,31424,-31434,31418,31428,31427,-31418,31417,31427,-31425, + 31420,31432,31433,-31426,31359,31355,31436,-31436,31342,31338,31438,-31440,31344,31340,31339,-31342,31432,31413,-31418,31417,31413,-31419,31418,31413,-31431,31420,31413,-31433,31433,31440,31416,-31432, + 31440,31441,31459,31461,-31417,31456,31449,31451,-31458,31460,31419,-31460,31459,31419,-31462,31458,31419,-31461,31407,31462,31409,-31409,31406,31409,31462,-31408,31396,31407,31408,-31398,31395,31406, + 31407,-31397,31378,31412,31465,-31464,31421,31415,31467,-31424,31429,31458,31460,-31469,31428,31468,31441,-31428,31430,31422,-31419,31469,31472,31470,-31472,31425,31433,-31432,31423,31467,-31443,31468, + 31460,31459,-31442,31471,31470,31475,-31474,31412,31451,31449,-31411,31411,31450,31452,-31347,31412,31466,-31466,31410,31464,31466,-31413,31474,31476,31472,-31470,31425,31463,-31421,31466,31423,-31466, + 31446,31457,31454,-31444,31414,31345,-31427,31463,31413,-31421,31430,31413,-31466,31465,31413,-31464,31447,31453,31455,-31445,31478,31445,31446,-31483,31453,31452,31450,-31456,31448,31452,31453,-31455, + 31451,31448,31454,-31458,31443,31454,31453,-31448,31378,31448,31451,-31413,31346,31452,31448,-31379,31445,31456,31457,-31447,31346,31378,31463,-31426,31423,31442,31430,-31466,31346,31425,31431,-31412, + 31336,31341,-31343,31335,31343,-31345,31353,31357,-31359,31353,31358,31359,-31435,31434,31359,-31436,31336,31342,31439,-31438,31335,31344,31341,-31337,31473,31475,31476,-31475,31476,31475,31470,-31473, + 31442,31422,-31431,31422,31467,31468,-31429,31429,31468,-31468,31415,31429,-31468,31442,31467,-31423,31388,31393,-31392,31303,31477,31479,-31306,31304,31480,31477,-31304,31446,31443,31481,-31483,31479, + 31414,31444,-31306,31477,31480,-31346,31414,31479,-31346,31479,31477,-31346,31480,31478,-31346,31426,31447,31444,-31415,31481,31345,-31483,31426,31345,-31482,31482,31345,-31479,31443,31447,31426,-31482, + 31488,31489,31497,-31497,31483,31484,31492,-31492,31487,31488,31496,-31496,31486,31487,31495,-31495,31490,31483,31491,-31499,31485,31486,31494,-31494,31489,31490,31498,-31498,31484,31485,31493,-31493, + 31498,31491,31499,-31507,31493,31494,31502,-31502,31497,31498,31506,-31506,31494,31495,31503,-31503,31531,31501,-31503,31530,31529,31520,-31522,31528,31527,31515,-31517,31529,31526,31519,-31521,31526, + 31525,31518,-31520,31527,31524,31522,-31516,31525,31532,31517,-31519,31524,31530,31521,-31523,31532,31528,31516,-31518,31531,31508,-31502,31531,31499,-31509,31495,31496,31512,-31504,31491,31492,31508, + -31500,31496,31497,31505,-31513,31492,31493,31501,-31509,31485,31484,31528,-31533,31490,31489,31530,-31525,31486,31485,31532,-31526,31516,31515,-31524,31521,31520,-31524,31517,31516,-31524,31522,31521, + -31524,31518,31517,-31524,31515,31522,-31524,31519,31518,-31524,31520,31519,-31524,31483,31490,31524,-31528,31487,31486,31525,-31527,31488,31487,31526,-31530,31484,31483,31527,-31529,31489,31488,31529, + -31531,31510,31513,31504,-31510,31513,31514,31500,-31505,31514,31511,31507,-31501,31511,31510,31509,-31508,31535,31533,31534,-31538,31572,31568,31570,-31574,31531,31502,-31504,31531,31503,-31513,31531, + 31512,-31506,31531,31505,-31507,31531,31506,-31500,31536,31535,31537,-31539,31533,31535,31509,-31505,31535,31536,31507,-31510,31538,31537,31540,-31542,31533,31536,31538,-31535,31533,31504,-31501,31536, + 31533,31500,-31508,31539,31541,31544,-31543,31534,31538,31541,-31540,31537,31534,31539,-31541,31543,31542,31545,-31547,31540,31539,31542,-31544,31541,31540,31543,-31545,31545,31571,31572,-31547,31544, + 31543,31546,-31548,31542,31544,31547,-31546,31552,31554,31549,-31552,31554,31555,31548,-31550,31555,31553,31550,-31549,31553,31552,31551,-31551,31558,31556,31557,-31561,31571,31569,31568,-31573,31559, + 31558,31560,-31562,31556,31558,31551,-31550,31558,31559,31550,-31552,31561,31560,31563,-31565,31556,31559,31561,-31558,31556,31549,-31549,31559,31556,31548,-31551,31562,31564,31567,-31566,31557,31561, + 31564,-31563,31560,31557,31562,-31564,31566,31565,31568,-31570,31563,31562,31565,-31567,31564,31563,31566,-31568,31546,31572,31573,-31548,31567,31566,31569,-31571,31565,31567,31570,-31569,31573,31570, + 31569,-31572,31547,31573,31571,-31546,31587,31586,31588,-31590,31579,31578,31580,-31582,31576,31577,31581,-31581,31575,31574,31578,-31580,31577,31575,31579,-31582,31574,31576,31580,-31579,31584,31585, + 31589,-31589,31583,31582,31586,-31588,31585,31583,31587,-31590,31582,31584,31588,-31587,31603,31602,31604,-31606,31595,31594,31596,-31598,31592,31593,31597,-31597,31591,31590,31594,-31596,31593,31591, + 31595,-31598,31590,31592,31596,-31595,31600,31601,31605,-31605,31599,31598,31602,-31604,31601,31599,31603,-31606,31598,31600,31604,-31603,31620,31619,-31609,31617,31616,-31610,31618,31615,-31610,31616, + 31618,-31610,31615,31617,-31610,31621,31620,31608,-31608,31621,31607,-31607,31610,31614,-31612,31610,31613,-31613,31610,31612,-31615,31610,31611,-31614,31613,31611,-31624,31614,31612,-31624,31612,31613, + -31624,31611,31614,-31624,31619,31621,31606,-31609,31622,31615,-31619,31622,31616,-31618,31622,31617,-31616,31622,31618,-31617,31637,31638,31634,-31636,31672,31671,-31667,31671,31669,-31667,31669,31670, + -31667,31670,31672,-31667,31722,31639,31633,-31722,31639,31640,31636,-31634,31720,31631,31639,-31723,31667,31668,31627,-31629,31659,31656,31660,-31664,31658,31659,31663,-31663,31657,31658,31662,-31662, + 31665,31656,-31660,31665,31659,-31659,31665,31658,-31658,31665,31657,-31657,31653,31654,31650,-31652,31655,31652,31642,-31644,31652,31653,31651,-31643,31717,31649,31655,-31719,31649,31648,31652,-31656, + 31656,31657,31661,-31661,31647,31646,31645,-31645,31662,31663,31644,-31646,31661,31662,31645,-31647,31660,31661,31646,-31648,31624,31668,-31668,31624,31630,-31669,31624,31629,-31631,31624,31667,-31630, + 31668,31630,31626,-31628,31630,31629,31625,-31627,31629,31667,31628,-31626,31663,31660,-31665,31644,31663,-31665,31660,31647,-31665,31647,31644,-31665,31625,31628,31671,-31673,31626,31625,31672,-31671, + 31628,31627,31669,-31672,31627,31626,31670,-31670,31718,31655,31643,-31720,31675,31802,31812,-31681,31676,31675,31680,-31682,31801,31676,31681,-31812,31810,31806,-31679,31810,31678,31676,-31802,31679, + 31806,-31810,31678,31679,31675,-31677,31679,31809,31802,-31676,31678,31806,-31680,31695,31683,31677,-31695,31684,31695,31694,-31686,31695,31700,31697,-31684,31811,31681,31682,-31821,31743,31745,31748, + -31747,31688,31691,31689,-31691,31829,31688,31690,-31822,31690,31689,31743,-31745,31689,31745,-31744,31821,31690,31744,-31908,31686,31822,31831,-31692,31687,31686,31691,-31689,31693,31687,-31836,31688, + 31829,-31836,31687,31688,-31836,31685,31698,31839,-31817,31677,31696,31699,-31695,31683,31697,31696,-31678,31694,31699,31698,-31686,31709,31723,31724,-31713,31707,31704,-31714,31709,31716,-31724,31715, + 31716,31709,-31704,31704,31703,31712,-31714,31703,31709,-31713,31705,31710,31716,-31716,31654,31718,31719,-31651,31638,31722,31721,-31635,31640,31637,31635,-31637,31715,31703,-31703,31703,31704,-31703, + 31704,31714,-31703,31705,31715,-31703,31716,31867,31851,-31724,31723,31851,31897,31735,-31725,31711,31849,31880,-31729,31892,31734,31730,-31886,31736,31735,-31855,31735,31897,-31855,31894,31736,-31855, + 31692,31693,31835,-31738,31832,31692,31737,-31836,31686,31687,31693,-31693,31822,31686,31692,-31833,31674,31738,31739,-31702,31865,31742,31736,-31895,31713,31712,31724,-31743,31725,31714,31704,-31708, + 31725,31707,31713,-31743,31710,31867,-31717,31708,31725,-31742,31742,31724,31735,-31737,31741,31725,-31743,31701,31845,31885,-31731,31846,31641,31731,-31887,31701,31739,-31741,31673,31706,-31767,31710, + 31705,-31739,31726,31673,31711,-31729,31727,31706,31673,-31727,31684,31842,31839,-31699,31684,31685,31816,-31843,31684,31698,31699,-31701,31684,31700,-31696,31740,31739,-31709,31727,31726,31733,-31735, + 31849,31711,-31767,31711,31673,-31767,31706,31850,-31767,31738,31705,-31703,31714,31739,-31703,31739,31738,-31703,31728,31880,31891,-31733,31850,31706,31727,-31882,31732,31891,31886,-31732,31729,31733, + 31732,-31732,31730,31734,31733,-31730,31726,31728,31732,-31734,31674,31701,31730,-31730,31641,31674,31729,-31732,31881,31727,31734,-31893,31641,31710,31738,-31675,31708,31739,31714,-31726,31641,31846, + 31867,-31711,31632,31638,-31638,31631,31640,-31640,31648,31653,-31653,31648,31717,31654,-31654,31717,31718,-31655,31632,31720,31722,-31639,31631,31632,31637,-31641,31745,31831,31910,-31749,31907,31744, + 31747,-31915,31744,31743,31746,-31748,31691,31831,31745,-31690,31910,31908,-31749,31914,31747,-31910,31747,31746,-31910,31748,31908,31828,-31747,31746,31828,-31910,31865,31741,-31743,31762,31760,31759, + -31764,31798,31792,-31798,31797,31792,-31796,31795,31792,-31797,31796,31792,-31799,31875,31874,31758,-31765,31764,31758,31761,-31766,31873,31875,31764,-31757,31793,31753,31752,-31795,31785,31789,31786, + -31783,31784,31788,31789,-31786,31783,31787,31788,-31785,31791,31785,-31783,31791,31784,-31786,31791,31783,-31785,31791,31782,-31784,31779,31777,31776,-31781,31781,31769,31768,-31779,31778,31768,31777, + -31780,31870,31871,31781,-31776,31775,31781,31778,-31775,31782,31786,31787,-31784,31773,31770,31771,-31773,31788,31771,31770,-31790,31787,31772,31771,-31789,31786,31773,31772,-31788,31749,31793,-31795, + 31749,31794,-31756,31749,31755,-31755,31749,31754,-31794,31794,31752,31751,-31756,31755,31751,31750,-31755,31754,31750,31753,-31794,31789,31790,-31787,31770,31790,-31790,31786,31790,-31774,31773,31790, + -31771,31750,31798,31797,-31754,31751,31796,31798,-31751,31753,31797,31795,-31753,31752,31795,31796,-31752,31871,31872,31769,-31782,31803,31813,31812,-31803,31804,31814,31813,-31804,31801,31811,31814, + -31805,31810,31807,-31807,31810,31801,31804,-31808,31808,31809,-31807,31807,31804,31803,-31809,31808,31803,31802,-31810,31807,31808,-31807,31837,31836,31805,-31818,31818,31819,31836,-31838,31837,31817, + 31840,-31845,31856,31865,-31917,31811,31820,31815,-31815,31904,31911,31913,-31907,31825,31827,31826,-31831,31829,31821,31827,-31826,31827,31905,31904,-31827,31826,31904,-31907,31821,31907,31905,-31828, + 31823,31830,31831,-31823,31824,31825,31830,-31824,31834,31835,-31825,31825,31835,-31830,31824,31835,-31826,31819,31816,31839,-31842,31805,31836,31843,-31839,31817,31805,31838,-31841,31836,31819,31841, + -31844,31860,31863,31877,-31877,31858,31864,-31854,31860,31876,-31870,31868,31852,31860,-31870,31853,31864,31863,-31853,31852,31863,-31861,31855,31868,31869,-31862,31780,31776,31872,-31872,31763,31759, + 31874,-31876,31765,31761,31760,-31763,31868,31848,-31853,31852,31848,-31854,31853,31848,-31867,31855,31848,-31869,31869,31876,31851,-31868,31876,31877,31895,31897,-31852,31862,31883,31880,-31850,31892, + 31885,31887,-31894,31896,31854,-31896,31895,31854,-31898,31894,31854,-31897,31833,31898,31835,-31835,31832,31835,31898,-31834,31823,31833,31834,-31825,31822,31832,31833,-31824,31800,31847,31900,-31900, + 31865,31894,31896,-31904,31864,31903,31877,-31864,31878,31858,31853,-31867,31878,31903,31864,-31859,31861,31869,-31868,31859,31902,-31879,31903,31896,31895,-31878,31902,31903,-31879,31847,31887,31885, + -31846,31846,31886,31888,-31768,31847,31901,-31901,31799,31766,-31858,31861,31899,-31856,31879,31883,31862,-31800,31882,31879,31799,-31858,31818,31841,31839,-31843,31818,31842,31816,-31820,31818,31844, + 31843,-31842,31818,31837,-31845,31901,31859,-31901,31882,31893,31890,-31880,31849,31766,-31863,31862,31766,-31800,31857,31766,-31851,31899,31848,-31856,31866,31848,-31901,31900,31848,-31900,31883,31889, + 31891,-31881,31850,31881,31882,-31858,31889,31888,31886,-31892,31884,31888,31889,-31891,31887,31884,31890,-31894,31879,31890,31889,-31884,31800,31884,31887,-31848,31767,31888,31884,-31801,31881,31892, + 31893,-31883,31767,31800,31899,-31862,31859,31878,31866,-31901,31767,31861,31867,-31847,31757,31762,-31764,31756,31764,-31766,31774,31778,-31780,31774,31779,31780,-31871,31870,31780,-31872,31757,31763, + 31875,-31874,31756,31765,31762,-31758,31906,31913,31910,-31832,31907,31914,31912,-31906,31905,31912,31911,-31905,31830,31826,31906,-31832,31910,31913,-31909,31914,31909,-31913,31912,31909,-31912,31913, + 31911,31828,-31909,31911,31909,-31829,31865,31903,-31903,31847,31845,31917,-31902,31845,31701,31740,-31916,31865,31902,31859,-31917,31917,31916,31859,-31902,31917,31915,-31857,31917,31845,-31916,31917, + 31856,-31917,31856,31708,31741,-31866,31915,31740,31708,-31857,31946,31947,31943,-31943,31922,31923,31919,-31919,31979,31978,31980,-31982,31988,31989,31987,-31987,31988,31986,31920,-31925,31989,31988, + 31924,-31922,31947,31948,31945,-31944,31930,31931,31927,-31927,31987,31989,31921,-31926,31986,31987,31925,-31921,31954,31955,-31951,31955,31952,-31951,31922,31918,31934,-31937,31923,31922,31936,-31936, + 31919,31923,31935,-31938,31918,31919,31937,-31935,31930,31926,31938,-31941,31931,31930,31940,-31940,31927,31931,31939,-31942,31926,31927,31941,-31939,31948,31946,31942,-31946,31957,31951,31928,-31934, + 31951,31944,31932,-31929,31944,31949,31929,-31933,31956,31954,31950,-31954,31955,31956,31953,-31953,31949,31957,31933,-31930,31949,31944,31951,-31958,31992,31990,31961,-31960,31992,31993,31991,-31991, + 31963,31962,31964,-31966,31965,31964,31966,-31970,31964,31962,31968,-31967,31962,31963,31967,-31969,31963,31965,31969,-31968,31976,31974,31970,-31973,31977,31976,31972,-31972,31975,31977,31971,-31974, + 31974,31975,31973,-31971,31976,31977,31975,-31975,31981,31980,31982,-31986,31980,31978,31984,-31983,31978,31979,31983,-31985,31979,31981,31985,-31984,31993,31992,31959,-31961,31991,31993,31960,-31959, + 31990,31991,31958,-31962,32022,32023,32019,-32019,31998,31999,31995,-31995,32055,32054,32056,-32058,32064,32065,32063,-32063,32064,32062,31996,-32001,32065,32064,32000,-31998,32023,32024,32021,-32020, + 32006,32007,32003,-32003,32063,32065,31997,-32002,32062,32063,32001,-31997,32030,32031,-32027,32031,32028,-32027,31998,31994,32010,-32013,31999,31998,32012,-32012,31995,31999,32011,-32014,31994,31995, + 32013,-32011,32006,32002,32014,-32017,32007,32006,32016,-32016,32003,32007,32015,-32018,32002,32003,32017,-32015,32024,32022,32018,-32022,32033,32027,32004,-32010,32027,32020,32008,-32005,32020,32025, + 32005,-32009,32032,32030,32026,-32030,32031,32032,32029,-32029,32025,32033,32009,-32006,32025,32020,32027,-32034,32068,32066,32037,-32036,32068,32069,32067,-32067,32039,32038,32040,-32042,32041,32040, + 32042,-32046,32040,32038,32044,-32043,32038,32039,32043,-32045,32039,32041,32045,-32044,32052,32050,32046,-32049,32053,32052,32048,-32048,32051,32053,32047,-32050,32050,32051,32049,-32047,32052,32053, + 32051,-32051,32057,32056,32058,-32062,32056,32054,32060,-32059,32054,32055,32059,-32061,32055,32057,32061,-32060,32069,32068,32035,-32037,32067,32069,32036,-32035,32066,32067,32034,-32038,32098,32099, + 32095,-32095,32074,32075,32071,-32071,32131,32130,32132,-32134,32140,32141,32139,-32139,32140,32138,32072,-32077,32141,32140,32076,-32074,32099,32100,32097,-32096,32082,32083,32079,-32079,32139,32141, + 32073,-32078,32138,32139,32077,-32073,32106,32107,-32103,32107,32104,-32103,32074,32070,32086,-32089,32075,32074,32088,-32088,32071,32075,32087,-32090,32070,32071,32089,-32087,32082,32078,32090,-32093, + 32083,32082,32092,-32092,32079,32083,32091,-32094,32078,32079,32093,-32091,32100,32098,32094,-32098,32109,32103,32080,-32086,32103,32096,32084,-32081,32096,32101,32081,-32085,32108,32106,32102,-32106, + 32107,32108,32105,-32105,32101,32109,32085,-32082,32101,32096,32103,-32110,32144,32142,32113,-32112,32144,32145,32143,-32143,32115,32114,32116,-32118,32117,32116,32118,-32122,32116,32114,32120,-32119, + 32114,32115,32119,-32121,32115,32117,32121,-32120,32128,32126,32122,-32125,32129,32128,32124,-32124,32127,32129,32123,-32126,32126,32127,32125,-32123,32128,32129,32127,-32127,32133,32132,32134,-32138, + 32132,32130,32136,-32135,32130,32131,32135,-32137,32131,32133,32137,-32136,32145,32144,32111,-32113,32143,32145,32112,-32111,32142,32143,32110,-32114,32159,32160,32156,-32158,32194,32193,-32189,32193, + 32191,-32189,32191,32192,-32189,32192,32194,-32189,32230,32161,32155,-32230,32161,32162,32158,-32156,32228,32153,32161,-32231,32189,32190,32149,-32151,32181,32178,32182,-32186,32180,32181,32185,-32185, + 32179,32180,32184,-32184,32187,32178,-32182,32187,32181,-32181,32187,32180,-32180,32187,32179,-32179,32175,32176,32172,-32174,32177,32174,32164,-32166,32174,32175,32173,-32165,32225,32171,32177,-32227, + 32171,32170,32174,-32178,32178,32179,32183,-32183,32169,32168,32167,-32167,32184,32185,32166,-32168,32183,32184,32167,-32169,32182,32183,32168,-32170,32146,32190,-32190,32146,32152,-32191,32146,32151, + -32153,32146,32189,-32152,32190,32152,32148,-32150,32152,32151,32147,-32149,32151,32189,32150,-32148,32185,32182,-32187,32166,32185,-32187,32182,32169,-32187,32169,32166,-32187,32147,32150,32193,-32195, + 32148,32147,32194,-32193,32150,32149,32191,-32194,32149,32148,32192,-32192,32226,32177,32165,-32228,32196,32311,32320,-32201,32197,32196,32200,-32202,32310,32197,32201,-32320,32318,32314,-32199,32318, + 32198,32197,-32311,32199,32314,-32318,32198,32199,32196,-32198,32199,32317,32311,-32197,32198,32314,-32200,32201,32202,-32325,32208,32336,32330,-32207,32205,32208,32206,-32208,32334,32205,32207,-32326, + 32207,32206,-32334,32206,32330,-32334,32325,32207,-32334,32203,32326,32336,-32209,32204,32203,32208,-32206,32210,32204,-32341,32205,32334,-32341,32204,32205,-32341,32218,32231,32232,-32221,32216,32214, + -32222,32218,32224,-32232,32395,32248,32217,-32353,32223,32224,32218,-32214,32214,32213,32220,-32222,32213,32218,-32221,32215,32219,32224,-32224,32176,32226,32227,-32173,32160,32230,32229,-32157,32162, + 32159,32157,-32159,32223,32213,-32213,32213,32214,-32213,32214,32222,-32213,32215,32223,-32213,32224,32362,32347,-32232,32231,32347,32392,32243,-32233,32387,32242,32238,-32381,32244,32243,-32351,32243, + 32392,-32351,32389,32244,-32351,32209,32210,32340,-32246,32337,32209,32245,-32341,32203,32204,32210,-32210,32326,32203,32209,-32338,32195,32246,32247,-32212,32352,32217,32249,-32347,32360,32250,32244, + -32390,32221,32220,32232,-32251,32222,32214,-32217,32251,32253,32252,-32255,32219,32362,-32225,32217,32233,-32250,32250,32232,32243,-32245,32253,32255,32257,-32253,32211,32341,32380,-32239,32342,32163, + 32239,-32382,32211,32247,-32249,32341,32211,32248,-32396,32256,32251,32254,-32259,32219,32215,-32247,32248,32247,-32218,32235,32234,32241,-32243,32246,32215,-32213,32222,32247,-32213,32247,32246,-32213, + 32236,32375,32386,-32241,32409,32411,32235,-32377,32240,32386,32381,-32240,32237,32241,32240,-32240,32238,32242,32241,-32238,32234,32236,32240,-32242,32195,32211,32238,-32238,32163,32195,32237,-32240, + 32376,32235,32242,-32388,32163,32219,32246,-32196,32217,32247,32222,-32234,32163,32342,32362,-32220,32154,32160,-32160,32153,32162,-32162,32170,32175,-32175,32170,32225,32176,-32176,32225,32226,-32177, + 32154,32228,32230,-32161,32153,32154,32159,-32163,32255,32256,32258,-32258,32258,32254,32252,-32258,32233,32222,-32217,32216,32221,32250,-32250,32360,32249,-32251,32346,32249,-32361,32233,32216,-32250, + 32319,32201,-32325,32272,32270,32269,-32274,32308,32302,-32308,32307,32302,-32306,32305,32302,-32307,32306,32302,-32309,32370,32369,32268,-32275,32274,32268,32271,-32276,32368,32370,32274,-32267,32303, + 32263,32262,-32305,32295,32299,32296,-32293,32294,32298,32299,-32296,32293,32297,32298,-32295,32301,32295,-32293,32301,32294,-32296,32301,32293,-32295,32301,32292,-32294,32289,32287,32286,-32291,32291, + 32279,32278,-32289,32288,32278,32287,-32290,32365,32366,32291,-32286,32285,32291,32288,-32285,32292,32296,32297,-32294,32283,32280,32281,-32283,32298,32281,32280,-32300,32297,32282,32281,-32299,32296, + 32283,32282,-32298,32259,32303,-32305,32259,32304,-32266,32259,32265,-32265,32259,32264,-32304,32304,32262,32261,-32266,32265,32261,32260,-32265,32264,32260,32263,-32304,32299,32300,-32297,32280,32300, + -32300,32296,32300,-32284,32283,32300,-32281,32260,32308,32307,-32264,32261,32306,32308,-32261,32263,32307,32305,-32263,32262,32305,32306,-32262,32366,32367,32279,-32292,32312,32321,32320,-32312,32313, + 32322,32321,-32313,32310,32319,32322,-32314,32318,32315,-32315,32318,32310,32313,-32316,32316,32317,-32315,32315,32313,32312,-32317,32316,32312,32311,-32318,32315,32316,-32315,32322,32324,-32324,32335, + 32331,32330,-32337,32329,32332,32331,-32336,32334,32325,32332,-32330,32332,32333,-32332,32331,32333,-32331,32325,32333,-32333,32327,32335,32336,-32327,32328,32329,32335,-32328,32339,32340,-32329,32329, + 32340,-32335,32328,32340,-32330,32355,32358,32372,-32372,32353,32359,-32350,32355,32371,-32365,32395,32352,32354,-32398,32363,32348,32355,-32365,32349,32359,32358,-32349,32348,32358,-32356,32351,32363, + 32364,-32357,32290,32286,32367,-32367,32273,32269,32369,-32371,32275,32271,32270,-32273,32363,32344,-32349,32348,32344,-32350,32349,32344,-32362,32351,32344,-32364,32364,32371,32347,-32363,32371,32372, + 32390,32392,-32348,32387,32380,32382,-32389,32391,32350,-32391,32390,32350,-32393,32389,32350,-32392,32338,32393,32340,-32340,32337,32340,32393,-32339,32327,32338,32339,-32329,32326,32337,32338,-32328, + 32309,32343,32396,-32395,32352,32346,32398,-32355,32360,32389,32391,-32400,32359,32399,32372,-32359,32361,32353,-32350,32400,32403,32401,-32403,32356,32364,-32363,32354,32398,-32374,32399,32391,32390, + -32373,32402,32401,32406,-32405,32343,32382,32380,-32342,32342,32381,32383,-32278,32343,32397,-32397,32341,32395,32397,-32344,32405,32407,32403,-32401,32356,32394,-32352,32397,32354,-32397,32377,32388, + 32385,-32375,32345,32276,-32358,32394,32344,-32352,32361,32344,-32397,32396,32344,-32395,32378,32384,32386,-32376,32409,32376,32377,-32414,32384,32383,32381,-32387,32379,32383,32384,-32386,32382,32379, + 32385,-32389,32374,32385,32384,-32379,32309,32379,32382,-32344,32277,32383,32379,-32310,32376,32387,32388,-32378,32277,32309,32394,-32357,32354,32373,32361,-32397,32277,32356,32362,-32343,32267,32272, + -32274,32266,32274,-32276,32284,32288,-32290,32284,32289,32290,-32366,32365,32290,-32367,32267,32273,32370,-32369,32266,32275,32272,-32268,32404,32406,32407,-32406,32407,32406,32401,-32404,32373,32353, + -32362,32353,32398,32399,-32360,32360,32399,-32399,32346,32360,-32399,32373,32398,-32354,32319,32324,-32323,32234,32408,32410,-32237,32235,32411,32408,-32235,32377,32374,32412,-32414,32410,32345,32375, + -32237,32408,32411,-32277,32345,32410,-32277,32410,32408,-32277,32411,32409,-32277,32357,32378,32375,-32346,32412,32276,-32414,32357,32276,-32413,32413,32276,-32410,32374,32378,32357,-32413,32418,32415, + 32419,-32422,32420,32419,32415,-32417,32417,32414,32419,-32421,32422,32424,32430,-32429,32437,32440,32426,-32426,32438,32439,32443,-32428,32416,32415,32425,-32427,32431,32416,32426,-32441,32418,32431, + 32440,-32438,32434,32423,32442,-32445,32444,32442,32428,-32431,32424,32434,32444,-32431,32439,32436,32429,-32444,32415,32418,32437,-32426,32436,32433,32441,-32430,32423,32422,32428,-32443,32470,32468, + 32462,-32468,32469,32468,32463,-32465,32466,32463,32468,-32471,32465,32462,32468,-32470,32464,32466,32470,-32470,32469,32470,32467,-32466,32479,32477,32471,-32477,32478,32477,32472,-32474,32475,32472, + 32477,-32480,32474,32471,32477,-32479,32473,32475,32479,-32479,32478,32479,32476,-32475,32487,32485,32480,-32485,32481,32483,32487,-32487,32486,32487,32484,-32483,32490,32488,32493,-32495,32489,32491, + 32495,-32495,32494,32495,32492,-32491,32501,32502,32496,-32498,32503,32502,32498,-32501,32501,32503,32500,-32500,32499,32498,32502,-32502,32511,32517,32518,-32513,32510,32516,32517,-32512,32562,32561, + 32516,-32511,32550,32520,32521,-32552,32549,32519,32520,-32551,32555,32554,32519,-32550,32550,32523,32522,-32550,32551,32548,32523,-32551,32556,32553,32548,-32552,32526,32524,32525,-32528,32530,32531, + 32529,-32529,32525,32524,32528,-32530,32526,32527,32531,-32531,32524,32526,32530,-32529,32527,32525,32529,-32532,32534,32532,32533,-32536,32538,32539,32537,-32537,32533,32532,32536,-32538,32534,32535, + 32539,-32539,32532,32534,32538,-32537,32535,32533,32537,-32540,32542,32540,32541,-32544,32546,32547,32545,-32545,32541,32540,32544,-32546,32542,32543,32547,-32547,32540,32542,32546,-32545,32543,32541, + 32545,-32548,32549,32522,32557,-32556,32551,32521,32552,-32557,32512,32518,32560,-32560,32518,32515,32558,-32561,32510,32513,32563,-32563,32571,32573,32454,-32453,32578,32577,32580,-32580,32582,32581, + 32584,-32584,32579,32587,32586,-32579,32583,32591,32590,-32583,32577,32585,32588,-32581,32581,32589,32592,-32585,32594,32593,32596,-32596,32595,32599,32598,-32595,32593,32597,32600,-32597,32602,32601, + 32604,-32604,32603,32607,32606,-32603,32601,32605,32608,-32605,32460,32459,32573,-32572,32633,32634,32506,-32506,32634,32632,32504,-32507,32629,32630,32625,-32627,32627,32625,32630,-32632,32626,32627, + 32631,-32630,32639,32638,32641,-32641,32643,32642,32645,-32645,32640,32648,32647,-32640,32644,32652,32651,-32644,32638,32646,32649,-32642,32642,32650,32653,-32646,32655,32654,32657,-32657,32656,32660, + 32659,-32656,32654,32658,32661,-32658,32663,32662,32665,-32665,32664,32668,32667,-32664,32662,32666,32669,-32666,32505,32504,32632,-32634,32497,32496,32630,-32630,32629,32631,32628,-32498,32631,32630, + 32496,-32629,32508,32507,32574,-32576,32507,32509,32576,-32575,32575,32576,32509,-32509,32497,32628,32503,-32502,32628,32496,32502,-32504,32498,32499,32636,-32638,32499,32500,32635,-32637,32500,32498, + 32637,-32636,32456,32566,32453,-32618,32461,32670,32450,-32458,32516,32513,32514,-32518,32561,32563,32513,-32517,32620,32448,32623,-32625,32457,32450,32564,-32571,32569,32567,32566,-32457,32566,32451, + 32449,-32454,32446,32452,32456,-32618,32616,32449,32451,-32456,32455,32450,32670,-32617,32445,32618,32461,-32458,32567,32565,32451,-32567,32452,32454,32569,-32457,32455,32451,32565,-32569,32568,32564, + 32450,-32456,32458,32445,32457,-32571,32617,32453,32614,-32620,32621,32615,32670,-32462,32622,32624,32446,-32612,32609,32620,32624,-32623,32453,32449,32612,-32615,32611,32446,32617,-32620,32613,32612, + 32449,-32617,32616,32670,32615,-32614,32618,32610,32621,-32462,32559,32558,32515,-32513,32447,32460,32571,-32573,32517,32514,32515,-32519,32512,32515,32514,-32512,32511,32514,32513,-32511,32676,32675, + 32673,-32675,32572,32571,32675,-32677,32674,32673,32678,-32678,32673,32675,-32453,32677,32678,32624,-32624,32624,32678,-32447,32675,32571,-32453,32673,32452,-32447,32683,32691,32687,-32673,32691,32683, + 32681,-32685,32688,32686,32690,-32693,32680,32687,32691,-32685,32685,32688,32692,-32690,32684,32681,32671,-32681,32681,32683,32672,-32672,32689,32682,32679,-32686,32679,32686,32688,-32686,32686,32679, + 32682,-32691,32808,32805,32811,-32813,32812,32811,32806,-32808,32716,32714,32708,-32714,32715,32714,32709,-32711,32712,32709,32714,-32717,32711,32708,32714,-32716,32710,32712,32716,-32716,32715,32716, + 32713,-32712,32725,32723,32717,-32723,32724,32723,32718,-32720,32721,32718,32723,-32726,32720,32717,32723,-32725,32719,32721,32725,-32725,32724,32725,32722,-32721,32731,32732,32726,-32728,32733,32732, + 32728,-32731,32731,32733,32730,-32730,32729,32728,32732,-32732,32738,32739,32734,-32736,32736,32734,32739,-32738,32735,32736,32737,-32739,32741,32740,32743,-32743,32745,32744,32747,-32747,32742,32750, + 32749,-32742,32746,32754,32753,-32746,32740,32748,32751,-32744,32744,32752,32755,-32748,32757,32756,32759,-32759,32758,32762,32761,-32758,32756,32760,32763,-32760,32765,32764,32767,-32767,32766,32770, + 32769,-32766,32764,32768,32771,-32768,32774,32772,32773,-32776,32778,32779,32777,-32777,32773,32772,32776,-32778,32774,32775,32779,-32779,32772,32774,32778,-32777,32775,32773,32777,-32780,32782,32780, + 32781,-32784,32786,32787,32785,-32785,32781,32780,32784,-32786,32782,32783,32787,-32787,32780,32782,32786,-32785,32783,32781,32785,-32788,32790,32788,32789,-32792,32794,32795,32793,-32793,32789,32788, + 32792,-32794,32790,32791,32795,-32795,32788,32790,32794,-32793,32791,32789,32793,-32796,32803,32804,32700,-32699,32821,32819,32813,-32819,32820,32819,32814,-32816,32817,32814,32819,-32822,32816,32813, + 32819,-32821,32826,32825,32828,-32828,32830,32829,32832,-32832,32827,32835,32834,-32827,32831,32839,32838,-32831,32825,32833,32836,-32829,32829,32837,32840,-32833,32842,32841,32844,-32844,32843,32847, + 32846,-32843,32841,32845,32848,-32845,32850,32849,32852,-32852,32851,32855,32854,-32851,32849,32853,32856,-32853,32706,32705,32804,-32804,32880,32881,32736,-32736,32881,32879,32734,-32737,32876,32877, + 32872,-32874,32874,32872,32877,-32879,32873,32874,32878,-32877,32886,32885,32888,-32888,32890,32889,32892,-32892,32887,32895,32894,-32887,32891,32899,32898,-32891,32885,32893,32896,-32889,32889,32897, + 32900,-32893,32902,32901,32904,-32904,32903,32907,32906,-32903,32901,32905,32908,-32905,32910,32909,32912,-32912,32911,32915,32914,-32911,32909,32913,32916,-32913,32735,32734,32879,-32881,32727,32726, + 32877,-32877,32876,32878,32875,-32728,32878,32877,32726,-32876,32738,32737,32822,-32824,32737,32739,32824,-32823,32823,32824,32739,-32739,32727,32875,32733,-32732,32875,32726,32732,-32734,32728,32729, + 32883,-32885,32729,32730,32882,-32884,32730,32728,32884,-32883,32702,32798,32699,-32866,32707,32917,32696,-32704,32871,32803,32698,-32695,32868,32706,32803,-32872,32703,32696,32796,-32803,32801,32799, + 32798,-32703,32798,32697,32695,-32700,32694,32698,32702,-32866,32864,32695,32697,-32702,32701,32696,32917,-32865,32693,32866,32707,-32704,32799,32797,32697,-32799,32698,32700,32801,-32703,32701,32697, + 32797,-32801,32800,32796,32696,-32702,32704,32693,32703,-32803,32865,32699,32862,-32868,32869,32863,32917,-32708,32870,32871,32694,-32860,32857,32868,32871,-32871,32699,32695,32860,-32863,32859,32694, + 32865,-32868,32861,32860,32695,-32865,32864,32917,32863,-32862,32866,32858,32869,-32708,32814,32817,32923,-32922,32807,32924,32925,-32813,32929,32932,32919,-32919,32930,32931,32935,-32921,32807,32806, + 32918,-32920,32924,32807,32919,-32933,32809,32924,32932,-32930,32927,32815,32934,-32937,32936,32934,32921,-32924,32817,32927,32936,-32924,32931,32928,32922,-32936,32806,32809,32929,-32919,32928,32926, + 32933,-32923,32815,32814,32921,-32935,32984,32979,32940,-32946,32988,32982,32937,-32952,32965,32962,32974,-32978,32990,32980,32939,-32954,32986,32981,32938,-32943,32982,32983,32946,-32938,32963,32958, + 32971,-32976,32980,32985,32943,-32940,32981,32987,32952,-32939,32956,32955,32969,-32971,32979,32989,32954,-32941,32966,32956,32970,-32979,32964,32960,32972,-32977,32955,32956,32939,-32944,32957,32958, + 32938,-32953,32959,32960,32940,-32955,32961,32962,32937,-32947,32958,32963,32942,-32939,32960,32964,32945,-32941,32962,32965,32951,-32938,32956,32966,32953,-32940,32962,32961,32973,-32975,32950,32949, + 32990,-32990,32977,32988,32951,-32966,32942,32963,32975,-32987,32986,32975,32969,-32986,32985,32969,32955,-32944,32953,32966,32978,-32991,32945,32964,32976,-32985,32984,32976,32973,-32984,32983,32973, + 32961,-32947,32999,32998,32995,-32997,32997,32995,32998,-33001,32996,32997,33000,-33000,33009,33007,33001,-33007,33008,33007,33002,-33004,33005,33002,33007,-33010,33004,33001,33007,-33009,33003,33005, + 33009,-33009,33008,33009,33006,-33005,33018,33016,33010,-33016,33017,33016,33011,-33013,33014,33011,33016,-33019,33013,33010,33016,-33018,33012,33014,33018,-33018,33017,33018,33015,-33014,33025,33026, + 33019,-33021,33027,33026,33022,-33025,33025,33027,33024,-33024,33023,33022,33026,-33026,33021,33019,33026,-33028,33020,33021,33027,-33026,33034,33033,33029,-33032,33032,33034,33031,-33031,33030,33029, + 33033,-33033,33035,33029,33030,-33037,33036,33030,33031,-33038,33037,33031,33029,-33036,33019,33035,33036,-33021,33020,33036,33037,-33022,33021,33037,33035,-33020,33023,33038,33039,-33023,33040,33043, + 33044,-33042,33041,33044,33045,-33043,33042,33045,33043,-33041,33047,33046,33049,-33049,33048,33052,33051,-33048,33046,33050,33053,-33050,33055,33054,33057,-33057,33056,33060,33059,-33056,33054,33058, + 33061,-33058,33802,33884,-33886,33885,33807,33805,-33804,33803,33800,33806,-33886,33885,33806,33801,-33803,33297,33378,-33380,33380,33295,33300,-33380,33063,33062,33065,-33065,33064,33068,33067,-33064, + 33062,33066,33069,-33066,33379,33300,33296,-33298,33022,33039,33028,-33025,33024,33028,33038,-33024,33038,33028,33034,-33033,33028,33039,33033,-33035,33032,33033,33039,-33039,32815,32927,-32821,32812, + 32925,32810,-32809,32820,32821,32818,-32817,32927,32817,32821,-32821,32924,32809,-32926,32925,32811,32805,-32811,32809,32806,32811,-32926,32423,32434,-32436,32420,32421,32432,-32418,33072,33070,33071, + -33074,33076,33077,33075,-33075,33071,33070,33074,-33076,33072,33073,33077,-33077,33070,33072,33076,-33075,33073,33071,33075,-33078,33080,33078,33079,-33082,33084,33085,33083,-33083,33079,33078,33082, + -33084,33080,33081,33085,-33085,33078,33080,33084,-33083,33081,33079,33083,-33086,33088,33086,33087,-33090,33092,33093,33091,-33091,33087,33086,33090,-33092,33088,33089,33093,-33093,33086,33088,33092, + -33091,33089,33087,33091,-33094,33098,33097,33094,-33096,33096,33094,33097,-33100,33095,33096,33099,-33099,33104,33103,33100,-33102,33102,33100,33103,-33106,33101,33102,33105,-33105,33110,33109,33106, + -33108,33108,33106,33109,-33112,33107,33108,33111,-33111,33116,33115,33112,-33114,33114,33112,33115,-33118,33113,33114,33117,-33117,33123,33122,33120,-33122,33140,33127,33131,-33136,33119,33118,33122, + -33124,33139,33136,-33134,33129,33128,33126,-33128,33141,33125,33129,-33138,33136,33141,-33134,33125,33124,33128,-33130,33140,33133,-33138,33138,33139,-33134,33142,33138,-33134,33134,33124,33125,-33133, + 33135,33131,33119,-33143,33143,33130,-33127,33131,33127,33126,-33131,33119,33131,33130,-33119,33120,33134,33132,-33122,33123,33121,33139,-33139,33119,33123,33138,-33143,33133,33141,-33138,33127,33140, + 33137,-33130,33121,33132,33136,-33140,33132,33125,33141,-33137,33133,33140,-33136,33133,33135,-33143,33118,33130,-33144,33143,33128,-33125,33120,33122,-33144,33134,33120,-33144,33128,33143,-33127,33134, + 33143,-33125,33122,33118,-33144,33162,33152,33163,-33166,33164,33163,33152,-33162,33152,33162,33160,-33147,33162,33166,33144,-33161,33147,33148,33151,-33150,33166,33161,33150,-33145,33146,33150,33161, + -33153,33158,33154,33157,-33160,33153,33158,33159,-33157,33155,33156,33159,-33158,33163,33164,33167,-33166,33161,33166,33167,-33165,33166,33162,33165,-33168,33150,33146,33160,-33145,33148,33147,33153, + -33146,33158,33153,33147,-33150,33154,33158,33149,-33152,33145,33154,33151,-33149,33156,33155,33145,-33154,33154,33145,33155,-33158,33186,33176,33187,-33190,33188,33187,33176,-33186,33176,33186,33184, + -33171,33186,33190,33168,-33185,33171,33172,33175,-33174,33190,33185,33174,-33169,33170,33174,33185,-33177,33182,33178,33181,-33184,33177,33182,33183,-33181,33179,33180,33183,-33182,33187,33188,33191, + -33190,33185,33190,33191,-33189,33190,33186,33189,-33192,33174,33170,33184,-33169,33172,33171,33177,-33170,33182,33177,33171,-33174,33178,33182,33173,-33176,33169,33178,33175,-33173,33180,33179,33169, + -33178,33178,33169,33179,-33182,32416,32431,32421,-32421,32431,32418,-32422,32421,32419,32414,-32433,33193,33192,33195,-33195,33194,33198,33197,-33194,33192,33196,33199,-33196,33201,33200,33203,-33203, + 33202,33206,33205,-33202,33200,33204,33207,-33204,33210,33208,33209,-33212,33214,33215,33213,-33213,33209,33208,33212,-33214,33210,33211,33215,-33215,33208,33210,33214,-33213,33211,33209,33213,-33216, + 33218,33216,33217,-33220,33222,33223,33221,-33221,33217,33216,33220,-33222,33218,33219,33223,-33223,33216,33218,33222,-33221,33219,33217,33221,-33224,32991,32992,32950,-32945,32994,32941,32949,-32994, + 32991,32994,32948,-32948,32958,32957,32968,-32972,32968,32975,-32972,32978,32970,-32970,32978,32969,32975,-32969,32973,32977,-32975,32972,32967,-32977,32976,32967,32977,-32974,32967,32978,32968,-32978, + 32960,32959,32967,-32973,32950,32979,-32985,32944,32982,-32989,32949,32980,-32991,32941,32981,-32987,32944,32983,-32983,32944,32950,32984,-32984,32949,32985,-32981,32949,32941,32986,-32986,32941,32987, + -32982,32941,32944,32988,-32988,32950,32989,-32980,32957,32952,32987,-32969,32968,32987,32988,-32978,32990,32978,32967,-32990,32989,32967,32959,-32955,32944,32941,32994,-32992,33248,33246,33240,-33246, + 33247,33246,33241,-33243,33244,33241,33246,-33249,33243,33240,33246,-33248,33242,33244,33248,-33248,33247,33248,33245,-33244,33257,33255,33249,-33255,33256,33255,33250,-33252,33253,33250,33255,-33258, + 33252,33249,33255,-33257,33251,33253,33257,-33257,33256,33257,33254,-33253,33262,33263,33258,-33260,33260,33258,33263,-33265,33259,33260,33264,-33263,33268,33267,33270,-33270,33269,33273,33272,-33269, + 33267,33271,33274,-33271,33276,33275,33278,-33278,33277,33281,33280,-33277,33275,33279,33282,-33279,33301,33300,33295,-33300,33298,33296,33300,-33302,33378,33298,33301,-33380,33379,33301,33299,-33381, + 33303,33304,33306,-33306,33308,33307,33310,-33310,33309,33313,33312,-33309,33307,33311,33314,-33311,33316,33315,33318,-33318,33317,33321,33320,-33317,33315,33319,33322,-33319,33266,33349,33352,-33352, + 33351,33350,33348,-33267,33346,33345,33341,-33344,33344,33346,33343,-33343,33342,33341,33345,-33345,33340,33339,33345,-33347,33349,33348,33350,-33353,33354,33353,33356,-33356,33355,33359,33358,-33355, + 33353,33357,33360,-33357,33362,33361,33364,-33364,33363,33367,33366,-33363,33361,33365,33368,-33365,33304,33302,33265,-33307,33305,33265,33302,-33304,33305,33306,33349,-33267,33306,33265,33348,-33350, + 33266,33348,33265,-33306,33261,33340,33346,-33345,33344,33345,33339,-33262,33261,33339,33263,-33263,33262,33264,33340,-33262,33264,33263,33339,-33341,33259,33258,33347,-33339,33260,33259,33338,-33338, + 33258,33260,33337,-33348,33236,33285,33233,-33332,33239,33369,33229,-33238,33336,33332,33224,-33291,33227,33336,33290,-33227,33290,33224,33238,-33292,33237,33229,33283,-33290,33288,33286,33285,-33237, + 33285,33231,33228,-33234,33225,33232,33236,-33332,33330,33228,33231,-33236,33235,33229,33369,-33331,33224,33332,33239,-33238,33226,33290,33291,-33231,33286,33284,33231,-33286,33232,33234,33288,-33237, + 33235,33231,33284,-33288,33287,33283,33229,-33236,33238,33224,33237,-33290,33331,33233,33328,-33334,33334,33329,33369,-33240,33335,33323,33332,-33337,33325,33335,33336,-33228,33233,33228,33326,-33329, + 33324,33225,33331,-33334,33327,33326,33228,-33331,33330,33369,33329,-33328,33332,33323,33334,-33240,33296,33298,33375,-33374,33382,33385,33371,-33371,33383,33384,33388,-33373,33293,33292,33370,-33372, + 33376,33293,33371,-33386,33294,33376,33385,-33383,33378,33297,33387,-33390,33389,33387,33373,-33376,33298,33378,33389,-33376,33384,33381,33374,-33389,33292,33294,33382,-33371,33381,33377,33386,-33375, + 33297,33296,33373,-33388,33437,33432,33393,-33399,33441,33435,33390,-33405,33418,33415,33427,-33431,33443,33433,33392,-33407,33439,33434,33391,-33396,33435,33436,33399,-33391,33416,33411,33424,-33429, + 33433,33438,33396,-33393,33434,33440,33405,-33392,33409,33408,33422,-33424,33432,33442,33407,-33394,33419,33409,33423,-33432,33417,33413,33425,-33430,33408,33409,33392,-33397,33410,33411,33391,-33406, + 33412,33413,33393,-33408,33414,33415,33390,-33400,33411,33416,33395,-33392,33413,33417,33398,-33394,33415,33418,33404,-33391,33409,33419,33406,-33393,33415,33414,33426,-33428,33402,33401,33443,-33443, + 33430,33441,33404,-33419,33395,33416,33428,-33440,33439,33428,33422,-33439,33438,33422,33408,-33397,33406,33419,33431,-33444,33398,33417,33429,-33438,33437,33429,33426,-33437,33436,33426,33414,-33400, + 33456,33454,33448,-33454,33455,33454,33449,-33451,33452,33449,33454,-33457,33451,33448,33454,-33456,33450,33452,33456,-33456,33455,33456,33453,-33452,33465,33463,33457,-33463,33464,33463,33458,-33460, + 33461,33458,33463,-33466,33460,33457,33463,-33465,33459,33461,33465,-33465,33464,33465,33462,-33461,33470,33469,33466,-33468,33468,33466,33469,-33472,33467,33468,33471,-33471,33476,33475,33472,-33474, + 33474,33472,33475,-33478,33473,33474,33477,-33477,33484,33485,33478,-33480,33486,33485,33481,-33484,33484,33486,33483,-33483,33482,33481,33485,-33485,33480,33478,33485,-33487,33479,33480,33486,-33485, + 33488,33489,33492,-33492,33496,33489,33488,-33498,33497,33488,33487,-33499,33498,33487,33489,-33497,33478,33493,33494,-33480,33479,33494,33495,-33481,33480,33495,33493,-33479,33483,33496,33497,-33483, + 33482,33497,33498,-33482,33481,33498,33496,-33484,33503,33504,33499,-33501,33508,33507,33506,-33510,33509,33506,33505,-33511,33510,33505,33507,-33509,33501,33499,33504,-33503,33500,33501,33502,-33504, + 33493,33490,33491,-33495,33489,33487,33490,-33493,33491,33490,33487,-33489,33502,33508,33509,-33504,33503,33509,33510,-33505,33504,33510,33508,-33503,33512,33511,33514,-33514,33516,33515,33518,-33518, + 33513,33521,33520,-33513,33517,33525,33524,-33517,33511,33519,33522,-33515,33515,33523,33526,-33519,33528,33527,33530,-33530,33529,33533,33532,-33529,33527,33531,33534,-33531,33536,33535,33538,-33538, + 33537,33541,33540,-33537,33535,33539,33542,-33539,33544,33543,33546,-33546,33545,33549,33548,-33545,33543,33547,33550,-33547,33552,33551,33554,-33554,33553,33557,33556,-33553,33551,33555,33558,-33555, + 33560,33559,33562,-33562,33561,33565,33564,-33561,33559,33563,33566,-33563,33569,33567,33568,-33571,33573,33574,33572,-33572,33568,33567,33571,-33573,33569,33570,33574,-33574,33567,33569,33573,-33572, + 33570,33568,33572,-33575,33577,33575,33576,-33579,33581,33582,33580,-33580,33576,33575,33579,-33581,33577,33578,33582,-33582,33575,33577,33581,-33580,33578,33576,33580,-33583,33585,33583,33584,-33587, + 33589,33590,33588,-33588,33584,33583,33587,-33589,33585,33586,33590,-33590,33583,33585,33589,-33588,33586,33584,33588,-33591,33593,33591,33592,-33595,33597,33598,33596,-33596,33592,33591,33595,-33597, + 33593,33594,33598,-33598,33591,33593,33597,-33596,33594,33592,33596,-33599,33601,33599,33600,-33603,33605,33606,33604,-33604,33600,33599,33603,-33605,33601,33602,33606,-33606,33599,33601,33605,-33604, + 33602,33600,33604,-33607,33609,33607,33608,-33611,33613,33614,33612,-33612,33608,33607,33611,-33613,33609,33610,33614,-33614,33607,33609,33613,-33612,33610,33608,33612,-33615,33619,33618,33615,-33617, + 33617,33615,33618,-33621,33616,33617,33620,-33620,33625,33624,33621,-33623,33623,33621,33624,-33627,33622,33623,33626,-33626,33631,33630,33627,-33629,33629,33627,33630,-33633,33628,33629,33632,-33632, + 33637,33636,33633,-33635,33635,33633,33636,-33639,33634,33635,33638,-33638,33644,33643,33641,-33643,33661,33648,33652,-33657,33640,33639,33643,-33645,33660,33657,-33655,33650,33649,33647,-33649,33662, + 33646,33650,-33659,33657,33662,-33655,33646,33645,33649,-33651,33661,33654,-33659,33659,33660,-33655,33663,33659,-33655,33655,33645,33646,-33654,33656,33652,33640,-33664,33664,33651,-33648,33652,33648, + 33647,-33652,33640,33652,33651,-33640,33641,33655,33653,-33643,33644,33642,33660,-33660,33640,33644,33659,-33664,33654,33662,-33659,33648,33661,33658,-33651,33642,33653,33657,-33661,33653,33646,33662, + -33658,33654,33661,-33657,33654,33656,-33664,33639,33651,-33665,33664,33649,-33646,33641,33643,-33665,33655,33641,-33665,33649,33664,-33648,33655,33664,-33646,33643,33639,-33665,33683,33673,33684,-33687, + 33685,33684,33673,-33683,33673,33683,33681,-33668,33683,33687,33665,-33682,33668,33669,33672,-33671,33687,33682,33671,-33666,33667,33671,33682,-33674,33679,33675,33678,-33681,33674,33679,33680,-33678, + 33676,33677,33680,-33679,33684,33685,33688,-33687,33682,33687,33688,-33686,33687,33683,33686,-33689,33671,33667,33681,-33666,33669,33668,33674,-33667,33679,33674,33668,-33671,33675,33679,33670,-33673, + 33666,33675,33672,-33670,33677,33676,33666,-33675,33675,33666,33676,-33679,33707,33697,33708,-33711,33709,33708,33697,-33707,33697,33707,33705,-33692,33707,33711,33689,-33706,33692,33693,33696,-33695, + 33711,33706,33695,-33690,33691,33695,33706,-33698,33703,33699,33702,-33705,33698,33703,33704,-33702,33700,33701,33704,-33703,33708,33709,33712,-33711,33706,33711,33712,-33710,33711,33707,33710,-33713, + 33695,33691,33705,-33690,33693,33692,33698,-33691,33703,33698,33692,-33695,33699,33703,33694,-33697,33690,33699,33696,-33694,33701,33700,33690,-33699,33699,33690,33700,-33703,33495,33492,33490,-33494, + 33494,33491,33492,-33496,33715,33713,33714,-33717,33719,33720,33718,-33718,33714,33713,33717,-33719,33715,33716,33720,-33720,33713,33715,33719,-33718,33716,33714,33718,-33721,33723,33721,33722,-33725, + 33727,33728,33726,-33726,33722,33721,33725,-33727,33723,33724,33728,-33728,33721,33723,33727,-33726,33724,33722,33726,-33729,33444,33445,33402,-33398,33447,33394,33401,-33447,33411,33410,33421,-33425, + 33421,33428,-33425,33431,33423,-33423,33431,33422,33428,-33422,33426,33430,-33428,33425,33420,-33430,33429,33420,33430,-33427,33420,33431,33421,-33431,33413,33412,33420,-33426,33402,33432,-33438,33397, + 33435,-33442,33401,33433,-33444,33394,33434,-33440,33397,33436,-33436,33397,33402,33437,-33437,33401,33438,-33434,33401,33394,33439,-33439,33394,33440,-33435,33394,33397,33441,-33441,33402,33442,-33433, + 33410,33405,33440,-33422,33421,33440,33441,-33431,33443,33431,33420,-33443,33442,33420,33412,-33408,33400,33403,33445,-33445,33397,33394,33447,-33445,33401,33402,33445,-33447,33753,33751,33745,-33751, + 33752,33751,33746,-33748,33749,33746,33751,-33754,33748,33745,33751,-33753,33747,33749,33753,-33753,33752,33753,33750,-33749,33762,33760,33754,-33760,33761,33760,33755,-33757,33758,33755,33760,-33763, + 33757,33754,33760,-33762,33756,33758,33762,-33762,33761,33762,33759,-33758,33767,33768,33763,-33765,33765,33763,33768,-33770,33764,33765,33769,-33768,33773,33772,33775,-33775,33774,33778,33777,-33774, + 33772,33776,33779,-33776,33781,33780,33783,-33783,33782,33786,33785,-33782,33780,33784,33787,-33784,33807,33806,33800,-33806,33804,33801,33806,-33808,33884,33804,33807,-33886,33809,33810,33812,-33812, + 33814,33813,33816,-33816,33815,33819,33818,-33815,33813,33817,33820,-33817,33822,33821,33824,-33824,33823,33827,33826,-33823,33821,33825,33828,-33825,33771,33855,33858,-33858,33857,33856,33854,-33772, + 33852,33851,33847,-33850,33850,33852,33849,-33849,33848,33847,33851,-33851,33846,33845,33851,-33853,33855,33854,33856,-33859,33860,33859,33862,-33862,33861,33865,33864,-33861,33859,33863,33866,-33863, + 33868,33867,33870,-33870,33869,33873,33872,-33869,33867,33871,33874,-33871,33810,33808,33770,-33813,33811,33770,33808,-33810,33811,33812,33855,-33772,33812,33770,33854,-33856,33771,33854,33770,-33812, + 33766,33846,33852,-33851,33850,33851,33845,-33767,33766,33845,33768,-33768,33767,33769,33846,-33767,33769,33768,33845,-33847,33764,33763,33853,-33845,33765,33764,33844,-33844,33763,33765,33843,-33854, + 33741,33790,33738,-33838,33744,33875,33734,-33743,33842,33838,33729,-33796,33732,33842,33795,-33732,33795,33729,33743,-33797,33742,33734,33788,-33795,33793,33791,33790,-33742,33790,33736,33733,-33739, + 33730,33737,33741,-33838,33836,33733,33736,-33741,33740,33734,33875,-33837,33729,33838,33744,-33743,33731,33795,33796,-33736,33791,33789,33736,-33791,33737,33739,33793,-33742,33740,33736,33789,-33793, + 33792,33788,33734,-33741,33743,33729,33742,-33795,33837,33738,33834,-33840,33840,33835,33875,-33745,33841,33829,33838,-33843,33831,33841,33842,-33733,33738,33733,33832,-33835,33830,33730,33837,-33840, + 33833,33832,33733,-33837,33836,33875,33835,-33834,33838,33829,33840,-33745,33801,33804,33881,-33880,33887,33890,33877,-33877,33888,33889,33893,-33879,33798,33797,33876,-33878,33882,33798,33877,-33891, + 33799,33882,33890,-33888,33884,33802,33892,-33895,33894,33892,33879,-33882,33804,33884,33894,-33882,33889,33886,33880,-33894,33797,33799,33887,-33877,33886,33883,33891,-33881,33802,33801,33879,-33893, + 33943,33938,33898,-33904,33947,33941,33895,-33911,33924,33921,33933,-33937,33949,33939,33897,-33913,33945,33940,33896,-33901,33941,33942,33904,-33896,33922,33917,33930,-33935,33939,33944,33901,-33898, + 33940,33946,33911,-33897,33915,33914,33928,-33930,33938,33948,33913,-33899,33925,33915,33929,-33938,33923,33919,33931,-33936,33914,33915,33897,-33902,33916,33917,33896,-33912,33918,33919,33898,-33914, + 33920,33921,33895,-33905,33917,33922,33900,-33897,33919,33923,33903,-33899,33921,33924,33910,-33896,33915,33925,33912,-33898,33921,33920,33932,-33934,33908,33907,33949,-33949,33936,33947,33910,-33925, + 33900,33922,33934,-33946,33945,33934,33928,-33945,33944,33928,33914,-33902,33912,33925,33937,-33950,33903,33923,33935,-33944,33943,33935,33932,-33943,33942,33932,33920,-33905,33961,33959,33953,-33959, + 33960,33959,33954,-33956,33957,33954,33959,-33962,33956,33953,33959,-33961,33955,33957,33961,-33961,33960,33961,33958,-33957,33970,33968,33962,-33968,33969,33968,33963,-33965,33966,33963,33968,-33971, + 33965,33962,33968,-33970,33964,33966,33970,-33970,33969,33970,33967,-33966,33979,33977,33971,-33977,33978,33977,33972,-33974,33975,33972,33977,-33980,33974,33971,33977,-33979,33973,33975,33979,-33979, + 33978,33979,33976,-33975,33986,33987,33980,-33982,33988,33987,33983,-33986,33986,33988,33985,-33985,33984,33983,33987,-33987,33982,33980,33987,-33989,33981,33982,33988,-33987,33995,33996,33989,-33991, + 33997,33996,33992,-33995,33995,33997,33994,-33994,33993,33992,33996,-33996,33991,33989,33996,-33998,33990,33991,33997,-33996,33998,33992,33993,-34000,33999,33993,33994,-34001,34000,33994,33992,-33999, + 33980,33998,33999,-33982,33981,33999,34000,-33983,33982,34000,33998,-33981,34001,34005,34006,-34003,34002,34006,34007,-34004,34003,34007,34005,-34002,34011,34010,34013,-34013,34012,34016,34015,-34012, + 34010,34014,34017,-34014,34020,34018,34019,-34022,34024,34025,34023,-34023,34019,34018,34022,-34024,34020,34021,34025,-34025,34018,34020,34024,-34023,34021,34019,34023,-34026,34028,34026,34027,-34030, + 34032,34033,34031,-34031,34027,34026,34030,-34032,34028,34029,34033,-34033,34026,34028,34032,-34031,34029,34027,34031,-34034,34036,34034,34035,-34038,34040,34041,34039,-34039,34035,34034,34038,-34040, + 34036,34037,34041,-34041,34034,34036,34040,-34039,34037,34035,34039,-34042,34046,34045,34042,-34044,34044,34042,34045,-34048,34043,34044,34047,-34047,34052,34051,34048,-34050,34050,34048,34051,-34054, + 34049,34050,34053,-34053,34058,34057,34054,-34056,34056,34054,34057,-34060,34055,34056,34059,-34059,34064,34063,34060,-34062,34062,34060,34063,-34066,34061,34062,34065,-34065,34071,34070,34068,-34070, + 34088,34075,34079,-34084,34067,34066,34070,-34072,34087,34084,-34082,34077,34076,34074,-34076,34089,34073,34077,-34086,34084,34089,-34082,34073,34072,34076,-34078,34088,34081,-34086,34086,34087,-34082, + 34090,34086,-34082,34082,34072,34073,-34081,34083,34079,34067,-34091,34091,34078,-34075,34079,34075,34074,-34079,34067,34079,34078,-34067,34068,34082,34080,-34070,34071,34069,34087,-34087,34067,34071, + 34086,-34091,34081,34089,-34086,34075,34088,34085,-34078,34069,34080,34084,-34088,34080,34073,34089,-34085,34081,34088,-34084,34081,34083,-34091,34066,34078,-34092,34091,34076,-34073,34068,34070,-34092, + 34082,34068,-34092,34076,34091,-34075,34082,34091,-34073,34070,34066,-34092,34110,34100,34111,-34114,34112,34111,34100,-34110,34100,34110,34108,-34095,34110,34114,34092,-34109,34095,34096,34099,-34098, + 34114,34109,34098,-34093,34094,34098,34109,-34101,34106,34102,34105,-34108,34101,34106,34107,-34105,34103,34104,34107,-34106,34111,34112,34115,-34114,34109,34114,34115,-34113,34114,34110,34113,-34116, + 34098,34094,34108,-34093,34096,34095,34101,-34094,34106,34101,34095,-34098,34102,34106,34097,-34100,34093,34102,34099,-34097,34104,34103,34093,-34102,34102,34093,34103,-34106,34134,34124,34135,-34138, + 34136,34135,34124,-34134,34124,34134,34132,-34119,34134,34138,34116,-34133,34119,34120,34123,-34122,34138,34133,34122,-34117,34118,34122,34133,-34125,34130,34126,34129,-34132,34125,34130,34131,-34129, + 34127,34128,34131,-34130,34135,34136,34139,-34138,34133,34138,34139,-34137,34138,34134,34137,-34140,34122,34118,34132,-34117,34120,34119,34125,-34118,34130,34125,34119,-34122,34126,34130,34121,-34124, + 34117,34126,34123,-34121,34128,34127,34117,-34126,34126,34117,34127,-34130,34141,34140,34143,-34143,34142,34146,34145,-34142,34140,34144,34147,-34144,34150,34148,34149,-34152,34154,34155,34153,-34153, + 34149,34148,34152,-34154,34150,34151,34155,-34155,34148,34150,34154,-34153,34151,34149,34153,-34156,34158,34156,34157,-34160,34162,34163,34161,-34161,34157,34156,34160,-34162,34158,34159,34163,-34163, + 34156,34158,34162,-34161,34159,34157,34161,-34164,33952,33899,33907,-33952,33950,33952,33906,-33906,33917,33916,33927,-33931,33927,33934,-33931,33937,33929,-33929,33937,33928,33934,-33928,33932,33936, + -33934,33931,33926,-33936,33935,33926,33936,-33933,33926,33937,33927,-33937,33919,33918,33926,-33932,33908,33938,-33944,33902,33941,-33948,33907,33939,-33950,33899,33940,-33946,33902,33942,-33942,33902, + 33908,33943,-33943,33907,33944,-33940,33907,33899,33945,-33945,33899,33946,-33941,33899,33902,33947,-33947,33908,33948,-33939,33916,33911,33946,-33928,33927,33946,33947,-33937,33949,33937,33926,-33949, + 33948,33926,33918,-33914,34004,34008,34007,-34007,33906,33952,33951,-33910,33902,33899,33952,-33951,34212,34207,34167,-34173,34216,34210,34164,-34180,34193,34190,34202,-34206,34218,34208,34166,-34182, + 34214,34209,34165,-34170,34210,34211,34173,-34165,34191,34186,34199,-34204,34208,34213,34170,-34167,34209,34215,34180,-34166,34184,34183,34197,-34199,34207,34217,34182,-34168,34194,34184,34198,-34207, + 34192,34188,34200,-34205,34183,34184,34166,-34171,34185,34186,34165,-34181,34187,34188,34167,-34183,34189,34190,34164,-34174,34186,34191,34169,-34166,34188,34192,34172,-34168,34190,34193,34179,-34165, + 34184,34194,34181,-34167,34190,34189,34201,-34203,34176,34175,34218,-34218,34205,34216,34179,-34194,34169,34191,34203,-34215,34214,34203,34197,-34214,34213,34197,34183,-34171,34181,34194,34206,-34219, + 34172,34192,34204,-34213,34212,34204,34201,-34212,34211,34201,34189,-34174,34230,34228,34222,-34228,34229,34228,34223,-34225,34226,34223,34228,-34231,34225,34222,34228,-34230,34224,34226,34230,-34230, + 34229,34230,34227,-34226,34239,34237,34231,-34237,34238,34237,34232,-34234,34235,34232,34237,-34240,34234,34231,34237,-34239,34233,34235,34239,-34239,34238,34239,34236,-34235,34248,34246,34240,-34246, + 34247,34246,34241,-34243,34244,34241,34246,-34249,34243,34240,34246,-34248,34242,34244,34248,-34248,34247,34248,34245,-34244,34255,34256,34249,-34251,34257,34256,34252,-34255,34255,34257,34254,-34254, + 34253,34252,34256,-34256,34251,34249,34256,-34258,34250,34251,34257,-34256,34264,34265,34258,-34260,34266,34265,34261,-34264,34264,34266,34263,-34263,34262,34261,34265,-34265,34260,34258,34265,-34267, + 34259,34260,34266,-34265,34267,34260,34259,-34269,34268,34259,34258,-34270,34269,34258,34260,-34268,34254,34267,34268,-34254,34253,34268,34269,-34253,34252,34269,34267,-34255,34279,34275,34274,-34281, + 34280,34274,34273,-34282,34281,34273,34275,-34280,34277,34276,34273,-34275,34275,34273,34276,-34279,34274,34275,34278,-34278,34270,34279,34280,-34272,34271,34280,34281,-34273,34272,34281,34279,-34271, + 34283,34282,34285,-34285,34284,34288,34287,-34284,34282,34286,34289,-34286,34291,34290,34293,-34293,34292,34296,34295,-34292,34290,34294,34297,-34294,34300,34298,34299,-34302,34304,34305,34303,-34303, + 34299,34298,34302,-34304,34300,34301,34305,-34305,34298,34300,34304,-34303,34301,34299,34303,-34306,34308,34306,34307,-34310,34312,34313,34311,-34311,34307,34306,34310,-34312,34308,34309,34313,-34313, + 34306,34308,34312,-34311,34309,34307,34311,-34314,34316,34314,34315,-34318,34320,34321,34319,-34319,34315,34314,34318,-34320,34316,34317,34321,-34321,34314,34316,34320,-34319,34317,34315,34319,-34322, + 34324,34322,34323,-34326,34328,34329,34327,-34327,34323,34322,34326,-34328,34324,34325,34329,-34329,34322,34324,34328,-34327,34325,34323,34327,-34330,34332,34330,34331,-34334,34336,34337,34335,-34335, + 34331,34330,34334,-34336,34332,34333,34337,-34337,34330,34332,34336,-34335,34333,34331,34335,-34338,34340,34338,34339,-34342,34344,34345,34343,-34343,34339,34338,34342,-34344,34340,34341,34345,-34345, + 34338,34340,34344,-34343,34341,34339,34343,-34346,34350,34349,34346,-34348,34348,34346,34349,-34352,34347,34348,34351,-34351,34356,34355,34352,-34354,34354,34352,34355,-34358,34353,34354,34357,-34357, + 34362,34361,34358,-34360,34360,34358,34361,-34364,34359,34360,34363,-34363,34368,34367,34364,-34366,34366,34364,34367,-34370,34365,34366,34369,-34369,34375,34374,34372,-34374,34392,34379,34383,-34388, + 34371,34370,34374,-34376,34391,34388,-34386,34381,34380,34378,-34380,34393,34377,34381,-34390,34388,34393,-34386,34377,34376,34380,-34382,34392,34385,-34390,34390,34391,-34386,34394,34390,-34386,34386, + 34376,34377,-34385,34387,34383,34371,-34395,34395,34382,-34379,34383,34379,34378,-34383,34371,34383,34382,-34371,34372,34386,34384,-34374,34375,34373,34391,-34391,34371,34375,34390,-34395,34385,34393, + -34390,34379,34392,34389,-34382,34373,34384,34388,-34392,34384,34377,34393,-34389,34385,34392,-34388,34385,34387,-34395,34370,34382,-34396,34395,34380,-34377,34372,34374,-34396,34386,34372,-34396,34380, + 34395,-34379,34386,34395,-34377,34374,34370,-34396,34414,34404,34415,-34418,34416,34415,34404,-34414,34404,34414,34412,-34399,34414,34418,34396,-34413,34399,34400,34403,-34402,34418,34413,34402,-34397, + 34398,34402,34413,-34405,34410,34406,34409,-34412,34405,34410,34411,-34409,34407,34408,34411,-34410,34415,34416,34419,-34418,34413,34418,34419,-34417,34418,34414,34417,-34420,34402,34398,34412,-34397, + 34400,34399,34405,-34398,34410,34405,34399,-34402,34406,34410,34401,-34404,34397,34406,34403,-34401,34408,34407,34397,-34406,34406,34397,34407,-34410,34438,34428,34439,-34442,34440,34439,34428,-34438, + 34428,34438,34436,-34423,34438,34442,34420,-34437,34423,34424,34427,-34426,34442,34437,34426,-34421,34422,34426,34437,-34429,34434,34430,34433,-34436,34429,34434,34435,-34433,34431,34432,34435,-34434, + 34439,34440,34443,-34442,34437,34442,34443,-34441,34442,34438,34441,-34444,34426,34422,34436,-34421,34424,34423,34429,-34422,34434,34429,34423,-34426,34430,34434,34425,-34428,34421,34430,34427,-34425, + 34432,34431,34421,-34430,34430,34421,34431,-34434,34445,34444,34447,-34447,34449,34448,34451,-34451,34446,34454,34453,-34446,34450,34458,34457,-34450,34444,34452,34455,-34448,34448,34456,34459,-34452, + 34008,34009,34005,-34008,34221,34168,34175,-34221,34220,34219,34177,-34179,34186,34185,34196,-34200,34196,34203,-34200,34206,34198,-34198,34206,34197,34203,-34197,34201,34205,-34203,34200,34195,-34205, + 34204,34195,34205,-34202,34195,34206,34196,-34206,34188,34187,34195,-34201,34176,34207,-34213,34171,34210,-34217,34175,34208,-34219,34168,34209,-34215,34171,34211,-34211,34171,34176,34212,-34212,34175, + 34213,-34209,34175,34168,34214,-34214,34168,34215,-34210,34168,34171,34216,-34216,34176,34217,-34208,34185,34180,34215,-34197,34196,34215,34216,-34206,34218,34206,34195,-34218,34217,34195,34187,-34183, + 34006,34005,34009,-34005,34174,34221,34220,-34179,34175,34176,34219,-34221,34467,34465,34460,-34465,34777,34781,34791,-34777,34791,34781,34787,-34786,34466,34465,34461,-34463,34463,34461,34465,-34468, + 34461,34463,34471,-34470,34781,34792,34786,-34788,34785,34786,34792,-34792,34462,34473,-34467,34476,34477,34480,-34469,34466,34467,34464,-34475,34473,34463,34467,-34467,34474,34460,34465,-34467,34473, + 34462,34479,-34482,34481,34479,34469,-34472,34463,34473,34481,-34472,34477,34475,34470,-34481,34475,34472,34478,-34471,34462,34461,34469,-34480,34507,34505,34499,-34505,34503,34500,34505,-34508,34501, + 34503,34507,-34507,34506,34507,34504,-34503,34515,34514,34509,-34511,34511,34508,34514,-34516,34510,34512,34516,-34516,34515,34516,34513,-34512,34525,34523,34517,-34523,34524,34523,34518,-34520,34521, + 34518,34523,-34526,34520,34517,34523,-34525,34519,34521,34525,-34525,34524,34525,34522,-34521,34534,34532,34526,-34532,34533,34532,34527,-34529,34530,34527,34532,-34535,34529,34526,34532,-34534,34528, + 34530,34534,-34534,34533,34534,34531,-34530,34539,34540,34535,-34537,34537,34535,34540,-34542,34536,34537,34541,-34540,34545,34551,34552,-34547,34544,34550,34551,-34546,34572,34571,34550,-34545,34560, + 34554,34555,-34562,34559,34553,34554,-34561,34565,34564,34553,-34560,34554,34557,34558,-34556,34553,34556,34557,-34555,34564,34567,34556,-34554,34560,34557,34556,-34560,34561,34558,34557,-34561,34566, + 34563,34558,-34562,34559,34556,34567,-34566,34555,34558,34563,-34563,34561,34555,34562,-34567,34546,34552,34570,-34570,34544,34547,34573,-34573,34585,34586,34588,-34588,34590,34589,34592,-34592,34591, + 34595,34594,-34591,34589,34593,34596,-34593,34598,34597,34600,-34600,34599,34603,34602,-34599,34597,34601,34604,-34601,34543,34633,34636,-34636,34635,34634,34632,-34544,34630,34629,34625,-34628,34628, + 34630,34627,-34627,34626,34625,34629,-34629,34624,34623,34629,-34631,34633,34632,34634,-34637,34638,34637,34640,-34640,34639,34643,34642,-34639,34637,34641,34644,-34641,34646,34645,34648,-34648,34647, + 34651,34650,-34647,34645,34649,34652,-34649,34586,34584,34542,-34589,34587,34542,34584,-34586,34538,34624,34630,-34629,34628,34629,34623,-34539,34538,34623,34540,-34540,34539,34541,34624,-34539,34541, + 34540,34623,-34625,34536,34535,34631,-34623,34537,34536,34622,-34622,34535,34537,34621,-34632,34494,34576,34491,-34614,34498,34653,34487,-34496,34616,34485,34619,-34621,34582,34482,34496,-34584,34495, + 34487,34574,-34581,34579,34577,34576,-34495,34576,34489,34486,-34492,34483,34490,34494,-34614,34612,34486,34489,-34494,34493,34487,34653,-34613,34482,34614,34498,-34496,34484,34582,34583,-34489,34577, + 34575,34489,-34577,34490,34492,34579,-34495,34493,34489,34575,-34579,34578,34574,34487,-34494,34496,34482,34495,-34581,34613,34491,34610,-34616,34617,34611,34653,-34499,34618,34605,34614,-34620,34607, + 34618,34619,-34486,34491,34486,34608,-34611,34606,34483,34613,-34616,34609,34608,34486,-34613,34612,34653,34611,-34610,34614,34605,34617,-34499,34569,34568,34549,-34547,34484,34497,34581,-34583,34546, + 34549,34548,-34546,34545,34548,34547,-34545,34659,34658,34656,-34658,34582,34581,34658,-34660,34657,34656,34661,-34661,34660,34619,-34615,34582,34659,-34483,34660,34661,34620,-34620,34657,34660,-34615, + 34659,34657,-34483,34666,34674,34670,-34656,34671,34669,34673,-34676,34663,34670,34674,-34668,34668,34671,34675,-34673,34663,34654,34655,-34671,34667,34664,34654,-34664,34664,34666,34655,-34655,34672, + 34675,34673,-34666,34672,34665,34662,-34669,34669,34662,34665,-34674,34725,34720,34679,-34685,34729,34723,34676,-34693,34706,34703,34715,-34719,34731,34721,34678,-34695,34727,34722,34677,-34682,34723, + 34724,34685,-34677,34704,34699,34712,-34717,34721,34726,34682,-34679,34722,34728,34693,-34678,34697,34696,34710,-34712,34720,34730,34695,-34680,34707,34697,34711,-34720,34705,34701,34713,-34718,34696, + 34697,34678,-34683,34698,34699,34677,-34694,34700,34701,34679,-34696,34702,34703,34676,-34686,34699,34704,34681,-34678,34701,34705,34684,-34680,34703,34706,34692,-34677,34697,34707,34694,-34679,34703, + 34702,34714,-34716,34689,34688,34731,-34731,34718,34729,34692,-34707,34681,34704,34716,-34728,34727,34716,34710,-34727,34726,34710,34696,-34683,34694,34707,34719,-34732,34684,34705,34717,-34726,34725, + 34717,34714,-34725,34724,34714,34702,-34686,34743,34742,34737,-34739,34739,34736,34742,-34744,34738,34740,34744,-34744,34743,34744,34741,-34740,34753,34751,34745,-34751,34752,34751,34746,-34748,34749, + 34746,34751,-34754,34748,34745,34751,-34753,34747,34749,34753,-34753,34752,34753,34750,-34749,34762,34760,34754,-34760,34761,34760,34755,-34757,34758,34755,34760,-34763,34757,34754,34760,-34762,34756, + 34758,34762,-34762,34761,34762,34759,-34758,34771,34769,34763,-34769,34767,34764,34769,-34772,34765,34767,34771,-34771,34770,34771,34768,-34767,34778,34779,34772,-34774,34780,34779,34775,-34778,34778, + 34780,34777,-34777,34776,34775,34779,-34779,34774,34772,34779,-34781,34773,34774,34780,-34779,34787,34786,34782,-34785,34785,34787,34784,-34784,34783,34782,34786,-34786,34788,34782,34783,-34790,34789, + 34783,34784,-34791,34790,34784,34782,-34789,34772,34788,34789,-34774,34773,34789,34790,-34775,34774,34790,34788,-34773,34797,34798,34793,-34795,34793,34802,34803,-34795,34794,34803,34804,-34796,34795, + 34804,34802,-34794,34795,34793,34798,-34797,34794,34795,34796,-34798,34803,34802,34799,-34801,34801,34799,34802,-34805,34800,34801,34804,-34804,34806,34805,34808,-34808,34807,34811,34810,-34807,34805, + 34809,34812,-34809,34814,34813,34816,-34816,34815,34819,34818,-34815,34813,34817,34820,-34817,34822,34821,34824,-34824,34823,34827,34826,-34823,34821,34825,34828,-34825,34831,34829,34830,-34833,34835, + 34836,34834,-34834,34830,34829,34833,-34835,34831,34832,34836,-34836,34829,34831,34835,-34834,34832,34830,34834,-34837,34839,34837,34838,-34841,34843,34844,34842,-34842,34838,34837,34841,-34843,34839, + 34840,34844,-34844,34837,34839,34843,-34842,34840,34838,34842,-34845,34847,34845,34846,-34849,34851,34852,34850,-34850,34846,34845,34849,-34851,34847,34848,34852,-34852,34845,34847,34851,-34850,34848, + 34846,34850,-34853,34857,34856,34853,-34855,34855,34853,34856,-34859,34854,34855,34858,-34858,34863,34862,34859,-34861,34861,34859,34862,-34865,34860,34861,34864,-34864,34869,34868,34865,-34867,34867, + 34865,34868,-34871,34866,34867,34870,-34870,34875,34874,34871,-34873,34873,34871,34874,-34877,34872,34873,34876,-34876,34882,34881,34879,-34881,34899,34886,34890,-34895,34878,34877,34881,-34883,34898, + 34895,-34893,34888,34887,34885,-34887,34900,34884,34888,-34897,34895,34900,-34893,34884,34883,34887,-34889,34899,34892,-34897,34897,34898,-34893,34901,34897,-34893,34893,34883,34884,-34892,34894,34890, + 34878,-34902,34902,34889,-34886,34890,34886,34885,-34890,34878,34890,34889,-34878,34879,34893,34891,-34881,34882,34880,34898,-34898,34878,34882,34897,-34902,34892,34900,-34897,34886,34899,34896,-34889, + 34880,34891,34895,-34899,34891,34884,34900,-34896,34892,34899,-34895,34892,34894,-34902,34877,34889,-34903,34902,34887,-34884,34879,34881,-34903,34893,34879,-34903,34887,34902,-34886,34893,34902,-34884, + 34881,34877,-34903,34921,34911,34922,-34925,34923,34922,34911,-34921,34911,34921,34919,-34906,34921,34925,34903,-34920,34906,34907,34910,-34909,34925,34920,34909,-34904,34905,34909,34920,-34912,34917, + 34913,34916,-34919,34912,34917,34918,-34916,34914,34915,34918,-34917,34922,34923,34926,-34925,34920,34925,34926,-34924,34925,34921,34924,-34927,34909,34905,34919,-34904,34907,34906,34912,-34905,34917, + 34912,34906,-34909,34913,34917,34908,-34911,34904,34913,34910,-34908,34915,34914,34904,-34913,34913,34904,34914,-34917,34945,34935,34946,-34949,34947,34946,34935,-34945,34935,34945,34943,-34930,34945, + 34949,34927,-34944,34930,34931,34934,-34933,34949,34944,34933,-34928,34929,34933,34944,-34936,34941,34937,34940,-34943,34936,34941,34942,-34940,34938,34939,34942,-34941,34946,34947,34950,-34949,34944, + 34949,34950,-34948,34949,34945,34948,-34951,34933,34929,34943,-34928,34931,34930,34936,-34929,34941,34936,34930,-34933,34937,34941,34932,-34935,34928,34937,34934,-34932,34939,34938,34928,-34937,34937, + 34928,34938,-34941,34952,34951,34954,-34954,34953,34957,34956,-34953,34951,34955,34958,-34955,34961,34959,34960,-34963,34965,34966,34964,-34964,34960,34959,34963,-34965,34961,34962,34966,-34966,34959, + 34961,34965,-34964,34962,34960,34964,-34967,34969,34967,34968,-34971,34973,34974,34972,-34972,34968,34967,34971,-34973,34969,34970,34974,-34974,34967,34969,34973,-34972,34970,34968,34972,-34975,34732, + 34733,34689,-34684,34735,34680,34688,-34735,34732,34735,34687,-34687,34699,34698,34709,-34713,34709,34716,-34713,34719,34711,-34711,34719,34710,34716,-34710,34714,34718,-34716,34713,34708,-34718,34717, + 34708,34718,-34715,34708,34719,34709,-34719,34701,34700,34708,-34714,34689,34720,-34726,34683,34723,-34730,34688,34721,-34732,34680,34722,-34728,34683,34724,-34724,34683,34689,34725,-34725,34688,34726, + -34722,34688,34680,34727,-34727,34680,34728,-34723,34680,34683,34729,-34729,34689,34730,-34721,34698,34693,34728,-34710,34709,34728,34729,-34719,34731,34719,34708,-34731,34730,34708,34700,-34696,34686, + 34690,34733,-34733,34687,34735,34734,-34692,34683,34680,34735,-34733,34978,34977,34975,-34980,34982,34978,-34982,34977,34982,-34981,34975,34977,-34981,34981,34978,-34980,34982,34977,-34979,34975,34980, + -34980,34980,34976,-34980,34976,34981,-34980,34982,34981,34976,-34981,34986,34985,34983,-34988,34990,34986,-34990,34985,34990,-34989,34983,34985,-34989,34989,34986,-34988,34990,34985,-34987,34983,34988, + -34988,34988,34984,-34988,34984,34989,-34988,34990,34989,34984,-34989,34994,34993,34991,-34996,34998,34994,-34998,34993,34998,-34997,34991,34993,-34997,34997,34994,-34996,34998,34993,-34995,34991,34996, + -34996,34996,34992,-34996,34992,34997,-34996,34998,34997,34992,-34997,35002,35001,34999,-35004,35006,35002,-35006,35001,35006,-35005,34999,35001,-35005,35005,35002,-35004,35006,35001,-35003,34999,35004, + -35004,35004,35000,-35004,35000,35005,-35004,35006,35005,35000,-35005,35010,35009,35007,-35012,35014,35010,-35014,35009,35014,-35013,35007,35009,-35013,35013,35010,-35012,35014,35009,-35011,35007,35012, + -35012,35012,35008,-35012,35008,35013,-35012,35014,35013,35008,-35013,35018,35017,35015,-35020,35022,35018,-35022,35017,35022,-35021,35015,35017,-35021,35021,35018,-35020,35022,35017,-35019,35015,35020, + -35020,35020,35016,-35020,35016,35021,-35020,35022,35021,35016,-35021,35026,35025,35023,-35028,35030,35026,-35030,35025,35030,-35029,35023,35025,-35029,35029,35026,-35028,35030,35025,-35027,35023,35028, + -35028,35028,35024,-35028,35024,35029,-35028,35030,35029,35024,-35029,35035,35033,35031,-35037,35034,35038,35039,-35033,35040,35035,-35039,35037,35032,35039,-35037,35033,35040,-35038,35031,35033,-35038, + 35040,35038,-35035,35038,35035,-35037,35039,35038,-35037,35040,35033,-35036,35040,35034,35032,-35038,35031,35037,-35037,35045,35043,35041,-35047,35044,35048,35049,-35043,35050,35045,-35049,35047,35042, + 35049,-35047,35043,35050,-35048,35041,35043,-35048,35050,35048,-35045,35048,35045,-35047,35049,35048,-35047,35050,35043,-35046,35050,35044,35042,-35048,35041,35047,-35047,35055,35053,35051,-35057,35054, + 35058,35059,-35053,35060,35055,-35059,35057,35052,35059,-35057,35053,35060,-35058,35051,35053,-35058,35060,35058,-35055,35058,35055,-35057,35059,35058,-35057,35060,35053,-35056,35060,35054,35052,-35058, + 35051,35057,-35057,35064,35063,35061,-35066,35068,35064,-35068,35063,35068,-35067,35061,35063,-35067,35067,35064,-35066,35068,35063,-35065,35061,35066,-35066,35066,35062,-35066,35062,35067,-35066,35068, + 35067,35062,-35067,35072,35071,35069,-35074,35076,35072,-35076,35071,35076,-35075,35069,35071,-35075,35075,35072,-35074,35076,35071,-35073,35069,35074,-35074,35074,35070,-35074,35070,35075,-35074,35076, + 35075,35070,-35075,35110,35079,35077,-35084,35111,35081,35082,-35113,35080,35084,35081,-35112,35079,35084,35087,-35078,35088,35105,35107,-35107,35105,35088,35086,-35109,35091,35092,35094,-35094,35096, + 35095,35090,-35090,35102,35104,-35104,35094,35096,35089,-35094,35092,35091,35090,-35096,35091,35093,-35090,35092,35096,-35095,35101,35097,-35100,35091,35089,-35091,35092,35095,-35097,35107,35109,35085, + -35107,35102,35100,-35105,35101,35098,-35098,35099,35097,35104,-35101,35101,35102,35103,-35099,35109,35108,35086,-35086,35102,35101,35099,-35101,35097,35098,35103,-35105,35080,35111,35112,-35079,35084, + 35079,35110,-35082,35088,35106,-35086,35105,35108,-35110,35088,35085,-35087,35105,35109,-35108,35081,35110,35083,-35083,35084,35080,35078,-35088,35121,35115,35116,-35123,35134,35113,-35128,35115,35120, + 35119,-35117,35136,35131,35132,-35136,35123,35114,-35125,35134,35125,-35114,35134,35123,35124,-35126,35123,35134,35127,-35129,35130,35136,35135,-35130,35123,35128,-35115,35127,35113,35114,-35129,35113, + 35125,35124,-35115,35118,35117,35121,-35123,35118,35116,-35120,35117,35120,-35116,35117,35118,35119,-35121,35118,35122,-35117,35133,35129,-35136,35133,35126,35130,-35130,35126,35133,35132,-35132,35126, + 35131,-35137,35133,35135,-35133,35126,35136,-35131,35117,35115,-35122,35144,35140,35141,-35144,35139,35144,35143,-35139,35142,35138,-35144,35142,35137,35139,-35139,35137,35142,35141,-35141,35137,35140, + -35145,35142,35143,-35142,35137,35144,-35140,35178,35147,35145,-35152,35179,35149,35150,-35181,35148,35152,35149,-35180,35147,35152,35155,-35146,35156,35173,35175,-35175,35173,35156,35154,-35177,35159, + 35160,35162,-35162,35164,35163,35158,-35158,35170,35172,-35172,35162,35164,35157,-35162,35160,35159,35158,-35164,35159,35161,-35158,35160,35164,-35163,35169,35165,-35168,35159,35157,-35159,35160,35163, + -35165,35175,35177,35153,-35175,35170,35168,-35173,35169,35166,-35166,35167,35165,35172,-35169,35169,35170,35171,-35167,35177,35176,35154,-35154,35170,35169,35167,-35169,35165,35166,35171,-35173,35148, + 35179,35180,-35147,35152,35147,35178,-35150,35156,35174,-35154,35173,35176,-35178,35156,35153,-35155,35173,35177,-35176,35149,35178,35151,-35151,35152,35148,35146,-35156,35189,35183,35184,-35191,35202, + 35181,-35196,35183,35188,35187,-35185,35204,35199,35200,-35204,35191,35182,-35193,35202,35193,-35182,35202,35191,35192,-35194,35191,35202,35195,-35197,35198,35204,35203,-35198,35191,35196,-35183,35195, + 35181,35182,-35197,35181,35193,35192,-35183,35186,35185,35189,-35191,35186,35184,-35188,35185,35188,-35184,35185,35186,35187,-35189,35186,35190,-35185,35201,35197,-35204,35201,35194,35198,-35198,35194, + 35201,35200,-35200,35194,35199,-35205,35201,35203,-35201,35194,35204,-35199,35185,35183,-35190,35212,35208,35209,-35212,35207,35212,35211,-35207,35210,35206,-35212,35210,35205,35207,-35207,35205,35210, + 35209,-35209,35205,35208,-35213,35210,35211,-35210,35205,35212,-35208,35246,35215,35213,-35220,35247,35217,35218,-35249,35216,35220,35217,-35248,35215,35220,35223,-35214,35224,35241,35243,-35243,35241, + 35224,35222,-35245,35227,35228,35230,-35230,35232,35231,35226,-35226,35238,35240,-35240,35230,35232,35225,-35230,35228,35227,35226,-35232,35227,35229,-35226,35228,35232,-35231,35237,35233,-35236,35227, + 35225,-35227,35228,35231,-35233,35243,35245,35221,-35243,35238,35236,-35241,35237,35234,-35234,35235,35233,35240,-35237,35237,35238,35239,-35235,35245,35244,35222,-35222,35238,35237,35235,-35237,35233, + 35234,35239,-35241,35216,35247,35248,-35215,35220,35215,35246,-35218,35224,35242,-35222,35241,35244,-35246,35224,35221,-35223,35241,35245,-35244,35217,35246,35219,-35219,35220,35216,35214,-35224,35257, + 35251,35252,-35259,35270,35249,-35264,35251,35256,35255,-35253,35272,35267,35268,-35272,35259,35250,-35261,35270,35261,-35250,35270,35259,35260,-35262,35259,35270,35263,-35265,35266,35272,35271,-35266, + 35259,35264,-35251,35263,35249,35250,-35265,35249,35261,35260,-35251,35254,35253,35257,-35259,35254,35252,-35256,35253,35256,-35252,35253,35254,35255,-35257,35254,35258,-35253,35269,35265,-35272,35269, + 35262,35266,-35266,35262,35269,35268,-35268,35262,35267,-35273,35269,35271,-35269,35262,35272,-35267,35253,35251,-35258,35280,35276,35277,-35280,35275,35280,35279,-35275,35278,35274,-35280,35278,35273, + 35275,-35275,35273,35278,35277,-35277,35273,35276,-35281,35278,35279,-35278,35273,35280,-35276,35314,35283,35281,-35288,35315,35285,35286,-35317,35284,35288,35285,-35316,35283,35288,35291,-35282,35292, + 35309,35311,-35311,35309,35292,35290,-35313,35295,35296,35298,-35298,35300,35299,35294,-35294,35306,35308,-35308,35298,35300,35293,-35298,35296,35295,35294,-35300,35295,35297,-35294,35296,35300,-35299, + 35305,35301,-35304,35295,35293,-35295,35296,35299,-35301,35311,35313,35289,-35311,35306,35304,-35309,35305,35302,-35302,35303,35301,35308,-35305,35305,35306,35307,-35303,35313,35312,35290,-35290,35306, + 35305,35303,-35305,35301,35302,35307,-35309,35284,35315,35316,-35283,35288,35283,35314,-35286,35292,35310,-35290,35309,35312,-35314,35292,35289,-35291,35309,35313,-35312,35285,35314,35287,-35287,35288, + 35284,35282,-35292,35325,35319,35320,-35327,35338,35317,-35332,35319,35324,35323,-35321,35340,35335,35336,-35340,35327,35318,-35329,35338,35329,-35318,35338,35327,35328,-35330,35327,35338,35331,-35333, + 35334,35340,35339,-35334,35327,35332,-35319,35331,35317,35318,-35333,35317,35329,35328,-35319,35322,35321,35325,-35327,35322,35320,-35324,35321,35324,-35320,35321,35322,35323,-35325,35322,35326,-35321, + 35337,35333,-35340,35337,35330,35334,-35334,35330,35337,35336,-35336,35330,35335,-35341,35337,35339,-35337,35330,35340,-35335,35321,35319,-35326,35348,35344,35345,-35348,35343,35348,35347,-35343,35346, + 35342,-35348,35346,35341,35343,-35343,35341,35346,35345,-35345,35341,35344,-35349,35346,35347,-35346,35341,35348,-35344,35382,35351,35349,-35356,35383,35353,35354,-35385,35352,35356,35353,-35384,35351, + 35356,35359,-35350,35360,35377,35379,-35379,35377,35360,35358,-35381,35363,35364,35366,-35366,35368,35367,35362,-35362,35374,35376,-35376,35366,35368,35361,-35366,35364,35363,35362,-35368,35363,35365, + -35362,35364,35368,-35367,35373,35369,-35372,35363,35361,-35363,35364,35367,-35369,35379,35381,35357,-35379,35374,35372,-35377,35373,35370,-35370,35371,35369,35376,-35373,35373,35374,35375,-35371,35381, + 35380,35358,-35358,35374,35373,35371,-35373,35369,35370,35375,-35377,35352,35383,35384,-35351,35356,35351,35382,-35354,35360,35378,-35358,35377,35380,-35382,35360,35357,-35359,35377,35381,-35380,35353, + 35382,35355,-35355,35356,35352,35350,-35360,35393,35387,35388,-35395,35406,35385,-35400,35387,35392,35391,-35389,35408,35403,35404,-35408,35395,35386,-35397,35406,35397,-35386,35406,35395,35396,-35398, + 35395,35406,35399,-35401,35402,35408,35407,-35402,35395,35400,-35387,35399,35385,35386,-35401,35385,35397,35396,-35387,35390,35389,35393,-35395,35390,35388,-35392,35389,35392,-35388,35389,35390,35391, + -35393,35390,35394,-35389,35405,35401,-35408,35405,35398,35402,-35402,35398,35405,35404,-35404,35398,35403,-35409,35405,35407,-35405,35398,35408,-35403,35389,35387,-35394,35416,35412,35413,-35416,35411, + 35416,35415,-35411,35414,35410,-35416,35414,35409,35411,-35411,35409,35414,35413,-35413,35409,35412,-35417,35414,35415,-35414,35409,35416,-35412,35450,35419,35417,-35424,35451,35421,35422,-35453,35420, + 35424,35421,-35452,35419,35424,35427,-35418,35428,35445,35447,-35447,35445,35428,35426,-35449,35431,35432,35434,-35434,35436,35435,35430,-35430,35442,35444,-35444,35434,35436,35429,-35434,35432,35431, + 35430,-35436,35431,35433,-35430,35432,35436,-35435,35441,35437,-35440,35431,35429,-35431,35432,35435,-35437,35447,35449,35425,-35447,35442,35440,-35445,35441,35438,-35438,35439,35437,35444,-35441,35441, + 35442,35443,-35439,35449,35448,35426,-35426,35442,35441,35439,-35441,35437,35438,35443,-35445,35420,35451,35452,-35419,35424,35419,35450,-35422,35428,35446,-35426,35445,35448,-35450,35428,35425,-35427, + 35445,35449,-35448,35421,35450,35423,-35423,35424,35420,35418,-35428,35461,35455,35456,-35463,35474,35453,-35468,35455,35460,35459,-35457,35476,35471,35472,-35476,35463,35454,-35465,35474,35465,-35454, + 35474,35463,35464,-35466,35463,35474,35467,-35469,35470,35476,35475,-35470,35463,35468,-35455,35467,35453,35454,-35469,35453,35465,35464,-35455,35458,35457,35461,-35463,35458,35456,-35460,35457,35460, + -35456,35457,35458,35459,-35461,35458,35462,-35457,35473,35469,-35476,35473,35466,35470,-35470,35466,35473,35472,-35472,35466,35471,-35477,35473,35475,-35473,35466,35476,-35471,35457,35455,-35462,35484, + 35480,35481,-35484,35479,35484,35483,-35479,35482,35478,-35484,35482,35477,35479,-35479,35477,35482,35481,-35481,35477,35480,-35485,35482,35483,-35482,35477,35484,-35480,35518,35487,35485,-35492,35519, + 35489,35490,-35521,35488,35492,35489,-35520,35487,35492,35495,-35486,35496,35513,35515,-35515,35513,35496,35494,-35517,35499,35500,35502,-35502,35504,35503,35498,-35498,35510,35512,-35512,35502,35504, + 35497,-35502,35500,35499,35498,-35504,35499,35501,-35498,35500,35504,-35503,35509,35505,-35508,35499,35497,-35499,35500,35503,-35505,35515,35517,35493,-35515,35510,35508,-35513,35509,35506,-35506,35507, + 35505,35512,-35509,35509,35510,35511,-35507,35517,35516,35494,-35494,35510,35509,35507,-35509,35505,35506,35511,-35513,35488,35519,35520,-35487,35492,35487,35518,-35490,35496,35514,-35494,35513,35516, + -35518,35496,35493,-35495,35513,35517,-35516,35489,35518,35491,-35491,35492,35488,35486,-35496,35529,35523,35524,-35531,35542,35521,-35536,35523,35528,35527,-35525,35544,35539,35540,-35544,35531,35522, + -35533,35542,35533,-35522,35542,35531,35532,-35534,35531,35542,35535,-35537,35538,35544,35543,-35538,35531,35536,-35523,35535,35521,35522,-35537,35521,35533,35532,-35523,35526,35525,35529,-35531,35526, + 35524,-35528,35525,35528,-35524,35525,35526,35527,-35529,35526,35530,-35525,35541,35537,-35544,35541,35534,35538,-35538,35534,35541,35540,-35540,35534,35539,-35545,35541,35543,-35541,35534,35544,-35539, + 35525,35523,-35530,35552,35548,35549,-35552,35547,35552,35551,-35547,35550,35546,-35552,35550,35545,35547,-35547,35545,35550,35549,-35549,35545,35548,-35553,35550,35551,-35550,35545,35552,-35548,35586, + 35555,35553,-35560,35587,35557,35558,-35589,35556,35560,35557,-35588,35555,35560,35563,-35554,35564,35581,35583,-35583,35581,35564,35562,-35585,35567,35568,35570,-35570,35572,35571,35566,-35566,35578, + 35580,-35580,35570,35572,35565,-35570,35568,35567,35566,-35572,35567,35569,-35566,35568,35572,-35571,35577,35573,-35576,35567,35565,-35567,35568,35571,-35573,35583,35585,35561,-35583,35578,35576,-35581, + 35577,35574,-35574,35575,35573,35580,-35577,35577,35578,35579,-35575,35585,35584,35562,-35562,35578,35577,35575,-35577,35573,35574,35579,-35581,35556,35587,35588,-35555,35560,35555,35586,-35558,35564, + 35582,-35562,35581,35584,-35586,35564,35561,-35563,35581,35585,-35584,35557,35586,35559,-35559,35560,35556,35554,-35564,35597,35591,35592,-35599,35610,35589,-35604,35591,35596,35595,-35593,35612,35607, + 35608,-35612,35599,35590,-35601,35610,35601,-35590,35610,35599,35600,-35602,35599,35610,35603,-35605,35606,35612,35611,-35606,35599,35604,-35591,35603,35589,35590,-35605,35589,35601,35600,-35591,35594, + 35593,35597,-35599,35594,35592,-35596,35593,35596,-35592,35593,35594,35595,-35597,35594,35598,-35593,35609,35605,-35612,35609,35602,35606,-35606,35602,35609,35608,-35608,35602,35607,-35613,35609,35611, + -35609,35602,35612,-35607,35593,35591,-35598,35620,35616,35617,-35620,35615,35620,35619,-35615,35618,35614,-35620,35618,35613,35615,-35615,35613,35618,35617,-35617,35613,35616,-35621,35618,35619,-35618, + 35613,35620,-35616,35654,35623,35621,-35628,35655,35625,35626,-35657,35624,35628,35625,-35656,35623,35628,35631,-35622,35632,35649,35651,-35651,35649,35632,35630,-35653,35635,35636,35638,-35638,35640, + 35639,35634,-35634,35646,35648,-35648,35638,35640,35633,-35638,35636,35635,35634,-35640,35635,35637,-35634,35636,35640,-35639,35645,35641,-35644,35635,35633,-35635,35636,35639,-35641,35651,35653,35629, + -35651,35646,35644,-35649,35645,35642,-35642,35643,35641,35648,-35645,35645,35646,35647,-35643,35653,35652,35630,-35630,35646,35645,35643,-35645,35641,35642,35647,-35649,35624,35655,35656,-35623,35628, + 35623,35654,-35626,35632,35650,-35630,35649,35652,-35654,35632,35629,-35631,35649,35653,-35652,35625,35654,35627,-35627,35628,35624,35622,-35632,35665,35659,35660,-35667,35678,35657,-35672,35659,35664, + 35663,-35661,35680,35675,35676,-35680,35667,35658,-35669,35678,35669,-35658,35678,35667,35668,-35670,35667,35678,35671,-35673,35674,35680,35679,-35674,35667,35672,-35659,35671,35657,35658,-35673,35657, + 35669,35668,-35659,35662,35661,35665,-35667,35662,35660,-35664,35661,35664,-35660,35661,35662,35663,-35665,35662,35666,-35661,35677,35673,-35680,35677,35670,35674,-35674,35670,35677,35676,-35676,35670, + 35675,-35681,35677,35679,-35677,35670,35680,-35675,35661,35659,-35666,35688,35684,35685,-35688,35683,35688,35687,-35683,35686,35682,-35688,35686,35681,35683,-35683,35681,35686,35685,-35685,35681,35684, + -35689,35686,35687,-35686,35681,35688,-35684,35722,35691,35689,-35696,35723,35693,35694,-35725,35692,35696,35693,-35724,35691,35696,35699,-35690,35700,35717,35719,-35719,35717,35700,35698,-35721,35703, + 35704,35706,-35706,35708,35707,35702,-35702,35714,35716,-35716,35706,35708,35701,-35706,35704,35703,35702,-35708,35703,35705,-35702,35704,35708,-35707,35713,35709,-35712,35703,35701,-35703,35704,35707, + -35709,35719,35721,35697,-35719,35714,35712,-35717,35713,35710,-35710,35711,35709,35716,-35713,35713,35714,35715,-35711,35721,35720,35698,-35698,35714,35713,35711,-35713,35709,35710,35715,-35717,35692, + 35723,35724,-35691,35696,35691,35722,-35694,35700,35718,-35698,35717,35720,-35722,35700,35697,-35699,35717,35721,-35720,35693,35722,35695,-35695,35696,35692,35690,-35700,35733,35727,35728,-35735,35746, + 35725,-35740,35727,35732,35731,-35729,35748,35743,35744,-35748,35735,35726,-35737,35746,35737,-35726,35746,35735,35736,-35738,35735,35746,35739,-35741,35742,35748,35747,-35742,35735,35740,-35727,35739, + 35725,35726,-35741,35725,35737,35736,-35727,35730,35729,35733,-35735,35730,35728,-35732,35729,35732,-35728,35729,35730,35731,-35733,35730,35734,-35729,35745,35741,-35748,35745,35738,35742,-35742,35738, + 35745,35744,-35744,35738,35743,-35749,35745,35747,-35745,35738,35748,-35743,35729,35727,-35734,35756,35752,35753,-35756,35751,35756,35755,-35751,35754,35750,-35756,35754,35749,35751,-35751,35749,35754, + 35753,-35753,35749,35752,-35757,35754,35755,-35754,35749,35756,-35752,35790,35759,35757,-35764,35791,35761,35762,-35793,35760,35764,35761,-35792,35759,35764,35767,-35758,35768,35785,35787,-35787,35785, + 35768,35766,-35789,35771,35772,35774,-35774,35776,35775,35770,-35770,35782,35784,-35784,35774,35776,35769,-35774,35772,35771,35770,-35776,35771,35773,-35770,35772,35776,-35775,35781,35777,-35780,35771, + 35769,-35771,35772,35775,-35777,35787,35789,35765,-35787,35782,35780,-35785,35781,35778,-35778,35779,35777,35784,-35781,35781,35782,35783,-35779,35789,35788,35766,-35766,35782,35781,35779,-35781,35777, + 35778,35783,-35785,35760,35791,35792,-35759,35764,35759,35790,-35762,35768,35786,-35766,35785,35788,-35790,35768,35765,-35767,35785,35789,-35788,35761,35790,35763,-35763,35764,35760,35758,-35768,35801, + 35795,35796,-35803,35814,35793,-35808,35795,35800,35799,-35797,35816,35811,35812,-35816,35803,35794,-35805,35814,35805,-35794,35814,35803,35804,-35806,35803,35814,35807,-35809,35810,35816,35815,-35810, + 35803,35808,-35795,35807,35793,35794,-35809,35793,35805,35804,-35795,35798,35797,35801,-35803,35798,35796,-35800,35797,35800,-35796,35797,35798,35799,-35801,35798,35802,-35797,35813,35809,-35816,35813, + 35806,35810,-35810,35806,35813,35812,-35812,35806,35811,-35817,35813,35815,-35813,35806,35816,-35811,35797,35795,-35802,35824,35820,35821,-35824,35819,35824,35823,-35819,35822,35818,-35824,35822,35817, + 35819,-35819,35817,35822,35821,-35821,35817,35820,-35825,35822,35823,-35822,35817,35824,-35820,35858,35827,35825,-35832,35859,35829,35830,-35861,35828,35832,35829,-35860,35827,35832,35835,-35826,35836, + 35853,35855,-35855,35853,35836,35834,-35857,35839,35840,35842,-35842,35844,35843,35838,-35838,35850,35852,-35852,35842,35844,35837,-35842,35840,35839,35838,-35844,35839,35841,-35838,35840,35844,-35843, + 35849,35845,-35848,35839,35837,-35839,35840,35843,-35845,35855,35857,35833,-35855,35850,35848,-35853,35849,35846,-35846,35847,35845,35852,-35849,35849,35850,35851,-35847,35857,35856,35834,-35834,35850, + 35849,35847,-35849,35845,35846,35851,-35853,35828,35859,35860,-35827,35832,35827,35858,-35830,35836,35854,-35834,35853,35856,-35858,35836,35833,-35835,35853,35857,-35856,35829,35858,35831,-35831,35832, + 35828,35826,-35836,35869,35863,35864,-35871,35882,35861,-35876,35863,35868,35867,-35865,35884,35879,35880,-35884,35871,35862,-35873,35882,35873,-35862,35882,35871,35872,-35874,35871,35882,35875,-35877, + 35878,35884,35883,-35878,35871,35876,-35863,35875,35861,35862,-35877,35861,35873,35872,-35863,35866,35865,35869,-35871,35866,35864,-35868,35865,35868,-35864,35865,35866,35867,-35869,35866,35870,-35865, + 35881,35877,-35884,35881,35874,35878,-35878,35874,35881,35880,-35880,35874,35879,-35885,35881,35883,-35881,35874,35884,-35879,35865,35863,-35870,35892,35888,35889,-35892,35887,35892,35891,-35887,35890, + 35886,-35892,35890,35885,35887,-35887,35885,35890,35889,-35889,35885,35888,-35893,35890,35891,-35890,35885,35892,-35888,35926,35895,35893,-35900,35927,35897,35898,-35929,35896,35900,35897,-35928,35895, + 35900,35903,-35894,35904,35921,35923,-35923,35921,35904,35902,-35925,35907,35908,35910,-35910,35912,35911,35906,-35906,35918,35920,-35920,35910,35912,35905,-35910,35908,35907,35906,-35912,35907,35909, + -35906,35908,35912,-35911,35917,35913,-35916,35907,35905,-35907,35908,35911,-35913,35923,35925,35901,-35923,35918,35916,-35921,35917,35914,-35914,35915,35913,35920,-35917,35917,35918,35919,-35915,35925, + 35924,35902,-35902,35918,35917,35915,-35917,35913,35914,35919,-35921,35896,35927,35928,-35895,35900,35895,35926,-35898,35904,35922,-35902,35921,35924,-35926,35904,35901,-35903,35921,35925,-35924,35897, + 35926,35899,-35899,35900,35896,35894,-35904,35937,35931,35932,-35939,35950,35929,-35944,35931,35936,35935,-35933,35952,35947,35948,-35952,35939,35930,-35941,35950,35941,-35930,35950,35939,35940,-35942, + 35939,35950,35943,-35945,35946,35952,35951,-35946,35939,35944,-35931,35943,35929,35930,-35945,35929,35941,35940,-35931,35934,35933,35937,-35939,35934,35932,-35936,35933,35936,-35932,35933,35934,35935, + -35937,35934,35938,-35933,35949,35945,-35952,35949,35942,35946,-35946,35942,35949,35948,-35948,35942,35947,-35953,35949,35951,-35949,35942,35952,-35947,35933,35931,-35938,35960,35956,35957,-35960,35955, + 35960,35959,-35955,35958,35954,-35960,35958,35953,35955,-35955,35953,35958,35957,-35957,35953,35956,-35961,35958,35959,-35958,35953,35960,-35956,35994,35963,35961,-35968,35995,35965,35966,-35997,35964, + 35968,35965,-35996,35963,35968,35971,-35962,35972,35989,35991,-35991,35989,35972,35970,-35993,35975,35976,35978,-35978,35980,35979,35974,-35974,35986,35988,-35988,35978,35980,35973,-35978,35976,35975, + 35974,-35980,35975,35977,-35974,35976,35980,-35979,35985,35981,-35984,35975,35973,-35975,35976,35979,-35981,35991,35993,35969,-35991,35986,35984,-35989,35985,35982,-35982,35983,35981,35988,-35985,35985, + 35986,35987,-35983,35993,35992,35970,-35970,35986,35985,35983,-35985,35981,35982,35987,-35989,35964,35995,35996,-35963,35968,35963,35994,-35966,35972,35990,-35970,35989,35992,-35994,35972,35969,-35971, + 35989,35993,-35992,35965,35994,35967,-35967,35968,35964,35962,-35972,36005,35999,36000,-36007,36018,35997,-36012,35999,36004,36003,-36001,36020,36015,36016,-36020,36007,35998,-36009,36018,36009,-35998, + 36018,36007,36008,-36010,36007,36018,36011,-36013,36014,36020,36019,-36014,36007,36012,-35999,36011,35997,35998,-36013,35997,36009,36008,-35999,36002,36001,36005,-36007,36002,36000,-36004,36001,36004, + -36000,36001,36002,36003,-36005,36002,36006,-36001,36017,36013,-36020,36017,36010,36014,-36014,36010,36017,36016,-36016,36010,36015,-36021,36017,36019,-36017,36010,36020,-36015,36001,35999,-36006,36028, + 36024,36025,-36028,36023,36028,36027,-36023,36026,36022,-36028,36026,36021,36023,-36023,36021,36026,36025,-36025,36021,36024,-36029,36026,36027,-36026,36021,36028,-36024,36062,36031,36029,-36036,36063, + 36033,36034,-36065,36032,36036,36033,-36064,36031,36036,36039,-36030,36040,36057,36059,-36059,36057,36040,36038,-36061,36043,36044,36046,-36046,36048,36047,36042,-36042,36054,36056,-36056,36046,36048, + 36041,-36046,36044,36043,36042,-36048,36043,36045,-36042,36044,36048,-36047,36053,36049,-36052,36043,36041,-36043,36044,36047,-36049,36059,36061,36037,-36059,36054,36052,-36057,36053,36050,-36050,36051, + 36049,36056,-36053,36053,36054,36055,-36051,36061,36060,36038,-36038,36054,36053,36051,-36053,36049,36050,36055,-36057,36032,36063,36064,-36031,36036,36031,36062,-36034,36040,36058,-36038,36057,36060, + -36062,36040,36037,-36039,36057,36061,-36060,36033,36062,36035,-36035,36036,36032,36030,-36040,36073,36067,36068,-36075,36086,36065,-36080,36067,36072,36071,-36069,36088,36083,36084,-36088,36075,36066, + -36077,36086,36077,-36066,36086,36075,36076,-36078,36075,36086,36079,-36081,36082,36088,36087,-36082,36075,36080,-36067,36079,36065,36066,-36081,36065,36077,36076,-36067,36070,36069,36073,-36075,36070, + 36068,-36072,36069,36072,-36068,36069,36070,36071,-36073,36070,36074,-36069,36085,36081,-36088,36085,36078,36082,-36082,36078,36085,36084,-36084,36078,36083,-36089,36085,36087,-36085,36078,36088,-36083, + 36069,36067,-36074,36096,36092,36093,-36096,36091,36096,36095,-36091,36094,36090,-36096,36094,36089,36091,-36091,36089,36094,36093,-36093,36089,36092,-36097,36094,36095,-36094,36089,36096,-36092,36130, + 36099,36097,-36104,36131,36101,36102,-36133,36100,36104,36101,-36132,36099,36104,36107,-36098,36108,36125,36127,-36127,36125,36108,36106,-36129,36111,36112,36114,-36114,36116,36115,36110,-36110,36122, + 36124,-36124,36114,36116,36109,-36114,36112,36111,36110,-36116,36111,36113,-36110,36112,36116,-36115,36121,36117,-36120,36111,36109,-36111,36112,36115,-36117,36127,36129,36105,-36127,36122,36120,-36125, + 36121,36118,-36118,36119,36117,36124,-36121,36121,36122,36123,-36119,36129,36128,36106,-36106,36122,36121,36119,-36121,36117,36118,36123,-36125,36100,36131,36132,-36099,36104,36099,36130,-36102,36108, + 36126,-36106,36125,36128,-36130,36108,36105,-36107,36125,36129,-36128,36101,36130,36103,-36103,36104,36100,36098,-36108,36141,36135,36136,-36143,36154,36133,-36148,36135,36140,36139,-36137,36156,36151, + 36152,-36156,36143,36134,-36145,36154,36145,-36134,36154,36143,36144,-36146,36143,36154,36147,-36149,36150,36156,36155,-36150,36143,36148,-36135,36147,36133,36134,-36149,36133,36145,36144,-36135,36138, + 36137,36141,-36143,36138,36136,-36140,36137,36140,-36136,36137,36138,36139,-36141,36138,36142,-36137,36153,36149,-36156,36153,36146,36150,-36150,36146,36153,36152,-36152,36146,36151,-36157,36153,36155, + -36153,36146,36156,-36151,36137,36135,-36142,36164,36160,36161,-36164,36159,36164,36163,-36159,36162,36158,-36164,36162,36157,36159,-36159,36157,36162,36161,-36161,36157,36160,-36165,36162,36163,-36162, + 36157,36164,-36160,36168,36167,36165,-36170,36172,36168,-36172,36167,36172,-36171,36165,36167,-36171,36171,36168,-36170,36172,36167,-36169,36165,36170,-36170,36170,36166,-36170,36166,36171,-36170,36172, + 36171,36166,-36171,36176,36175,36173,-36178,36180,36176,-36180,36175,36180,-36179,36173,36175,-36179,36179,36176,-36178,36180,36175,-36177,36173,36178,-36178,36178,36174,-36178,36174,36179,-36178,36180, + 36179,36174,-36179,36184,36183,36181,-36186,36188,36184,-36188,36183,36188,-36187,36181,36183,-36187,36187,36184,-36186,36188,36183,-36185,36181,36186,-36186,36186,36182,-36186,36182,36187,-36186,36188, + 36187,36182,-36187,36192,36191,36189,-36194,36196,36192,-36196,36191,36196,-36195,36189,36191,-36195,36195,36192,-36194,36196,36191,-36193,36189,36194,-36194,36194,36190,-36194,36190,36195,-36194,36196, + 36195,36190,-36195,36200,36199,36197,-36202,36204,36200,-36204,36199,36204,-36203,36197,36199,-36203,36203,36200,-36202,36204,36199,-36201,36197,36202,-36202,36202,36198,-36202,36198,36203,-36202,36204, + 36203,36198,-36203,36208,36207,36205,-36210,36212,36208,-36212,36207,36212,-36211,36205,36207,-36211,36211,36208,-36210,36212,36207,-36209,36205,36210,-36210,36210,36206,-36210,36206,36211,-36210,36212, + 36211,36206,-36211,36216,36215,36213,-36218,36220,36216,-36220,36215,36220,-36219,36213,36215,-36219,36219,36216,-36218,36220,36215,-36217,36213,36218,-36218,36218,36214,-36218,36214,36219,-36218,36220, + 36219,36214,-36219,36224,36223,36221,-36226,36228,36224,-36228,36223,36228,-36227,36221,36223,-36227,36227,36224,-36226,36228,36223,-36225,36221,36226,-36226,36226,36222,-36226,36222,36227,-36226,36228, + 36227,36222,-36227,36232,36231,36229,-36234,36236,36232,-36236,36231,36236,-36235,36229,36231,-36235,36235,36232,-36234,36236,36231,-36233,36229,36234,-36234,36234,36230,-36234,36230,36235,-36234,36236, + 36235,36230,-36235,36240,36239,36237,-36242,36244,36240,-36244,36239,36244,-36243,36237,36239,-36243,36243,36240,-36242,36244,36239,-36241,36237,36242,-36242,36242,36238,-36242,36238,36243,-36242,36244, + 36243,36238,-36243,36248,36247,36245,-36250,36252,36248,-36252,36247,36252,-36251,36245,36247,-36251,36251,36248,-36250,36252,36247,-36249,36245,36250,-36250,36250,36246,-36250,36246,36251,-36250,36252, + 36251,36246,-36251,36256,36255,36253,-36258,36260,36256,-36260,36255,36260,-36259,36253,36255,-36259,36259,36256,-36258,36260,36255,-36257,36253,36258,-36258,36258,36254,-36258,36254,36259,-36258,36260, + 36259,36254,-36259,36264,36263,36261,-36266,36268,36264,-36268,36263,36268,-36267,36261,36263,-36267,36267,36264,-36266,36268,36263,-36265,36261,36266,-36266,36266,36262,-36266,36262,36267,-36266,36268, + 36267,36262,-36267,36272,36271,36269,-36274,36276,36272,-36276,36271,36276,-36275,36269,36271,-36275,36275,36272,-36274,36276,36271,-36273,36269,36274,-36274,36274,36270,-36274,36270,36275,-36274,36276, + 36275,36270,-36275,36280,36279,36277,-36282,36284,36280,-36284,36279,36284,-36283,36277,36279,-36283,36283,36280,-36282,36284,36279,-36281,36277,36282,-36282,36282,36278,-36282,36278,36283,-36282,36284, + 36283,36278,-36283,36291,36288,36285,-36293,36290,36294,36295,-36288,36296,36291,-36295,36296,36290,-36290,36288,36296,36293,-36286,36289,36290,36287,-36287,36296,36294,-36291,36294,36291,36292,-36296, + 36296,36289,36286,-36294,36296,36288,-36292,36303,36300,36297,-36305,36302,36306,36307,-36300,36308,36303,-36307,36308,36302,-36302,36300,36308,36305,-36298,36301,36302,36299,-36299,36308,36306,-36303, + 36306,36303,36304,-36308,36308,36301,36298,-36306,36308,36300,-36304,36315,36312,36309,-36317,36314,36318,36319,-36312,36320,36315,-36319,36320,36314,-36314,36312,36320,36317,-36310,36313,36314,36311, + -36311,36320,36318,-36315,36318,36315,36316,-36320,36320,36313,36310,-36318,36320,36312,-36316,36327,36324,36321,-36329,36326,36330,36331,-36324,36332,36327,-36331,36332,36326,-36326,36324,36332,36329, + -36322,36325,36326,36323,-36323,36332,36330,-36327,36330,36327,36328,-36332,36332,36325,36322,-36330,36332,36324,-36328,36339,36336,36333,-36341,36338,36342,36343,-36336,36344,36339,-36343,36344,36338, + -36338,36336,36344,36341,-36334,36337,36338,36335,-36335,36344,36342,-36339,36342,36339,36340,-36344,36344,36337,36334,-36342,36344,36336,-36340,36351,36348,36345,-36353,36350,36354,36355,-36348,36356, + 36351,-36355,36356,36350,-36350,36348,36356,36353,-36346,36349,36350,36347,-36347,36356,36354,-36351,36354,36351,36352,-36356,36356,36349,36346,-36354,36356,36348,-36352,36363,36360,36357,-36365,36362, + 36366,36367,-36360,36368,36363,-36367,36368,36362,-36362,36360,36368,36365,-36358,36361,36362,36359,-36359,36368,36366,-36363,36366,36363,36364,-36368,36368,36361,36358,-36366,36368,36360,-36364,36375, + 36372,36369,-36377,36374,36378,36379,-36372,36380,36375,-36379,36380,36374,-36374,36372,36380,36377,-36370,36373,36374,36371,-36371,36380,36378,-36375,36378,36375,36376,-36380,36380,36373,36370,-36378, + 36380,36372,-36376,36384,36383,36381,-36386,36388,36384,-36388,36383,36388,-36387,36381,36383,-36387,36387,36384,-36386,36388,36383,-36385,36381,36386,-36386,36386,36382,-36386,36382,36387,-36386,36388, + 36387,36382,-36387,36392,36391,36389,-36394,36396,36392,-36396,36391,36396,-36395,36389,36391,-36395,36395,36392,-36394,36396,36391,-36393,36389,36394,-36394,36394,36390,-36394,36390,36395,-36394,36396, + 36395,36390,-36395,36400,36399,36397,-36402,36404,36400,-36404,36399,36404,-36403,36397,36399,-36403,36403,36400,-36402,36404,36399,-36401,36397,36402,-36402,36402,36398,-36402,36398,36403,-36402,36404, + 36403,36398,-36403,36408,36407,36405,-36410,36412,36408,-36412,36407,36412,-36411,36405,36407,-36411,36411,36408,-36410,36412,36407,-36409,36405,36410,-36410,36410,36406,-36410,36406,36411,-36410,36412, + 36411,36406,-36411,36416,36415,36413,-36418,36420,36416,-36420,36415,36420,-36419,36413,36415,-36419,36419,36416,-36418,36420,36415,-36417,36413,36418,-36418,36418,36414,-36418,36414,36419,-36418,36420, + 36419,36414,-36419,36516,36515,36512,-36514,36479,36478,36482,-36482,36440,36438,36503,-36505,36442,36447,36449,-36446,36441,36442,36445,-36449,36443,36441,36448,-36451,36519,36518,36506,-36510,36520, + 36519,36509,-36508,36421,36422,36434,-36434,36427,36428,36436,-36436,36526,36528,36524,-36523,36452,36446,36429,-36433,36446,36439,36431,-36430,36437,36440,36504,-36506,36444,36452,36432,-36431,36463, + 36465,36467,-36470,36462,36460,36457,-36459,36456,36463,36469,-36467,36460,36461,36459,-36458,36453,36455,36425,-36424,36455,36454,36451,-36426,36454,36426,36424,-36452,36473,36472,36474,-36478,36472, + 36470,36476,-36475,36471,36473,36477,-36476,36464,36456,36466,-36469,36480,36479,36481,-36484,36422,36421,36484,-36486,36485,36484,36486,-36488,36487,36486,36488,-36490,36489,36488,36490,-36492,36491, + 36490,36492,-36494,36427,36493,36492,-36429,36490,36501,36502,-36493,36421,36494,36498,-36485,36428,36495,36497,-36437,36488,36500,36501,-36491,36492,36502,36495,-36429,36486,36499,36500,-36489,36433, + 36496,36494,-36422,36484,36498,36499,-36487,36517,36516,36513,-36515,36510,36508,36515,-36517,36511,36510,36516,-36518,36527,36525,36523,-36522,36513,36512,36518,-36520,36514,36513,36519,-36521,36528, + 36527,36521,-36525,36534,36536,36532,-36531,36535,36533,36531,-36530,36536,36535,36529,-36533,36632,36631,36628,-36630,36595,36594,36598,-36598,36556,36554,36619,-36621,36558,36563,36565,-36562,36557, + 36558,36561,-36565,36559,36557,36564,-36567,36635,36634,36622,-36626,36636,36635,36625,-36624,36537,36538,36550,-36550,36543,36544,36552,-36552,36642,36644,36640,-36639,36568,36562,36545,-36549,36562, + 36555,36547,-36546,36553,36556,36620,-36622,36560,36568,36548,-36547,36579,36581,36583,-36586,36578,36576,36573,-36575,36572,36579,36585,-36583,36576,36577,36575,-36574,36569,36571,36541,-36540,36571, + 36570,36567,-36542,36570,36542,36540,-36568,36589,36588,36590,-36594,36588,36586,36592,-36591,36587,36589,36593,-36592,36580,36572,36582,-36585,36596,36595,36597,-36600,36538,36537,36600,-36602,36601, + 36600,36602,-36604,36603,36602,36604,-36606,36605,36604,36606,-36608,36607,36606,36608,-36610,36543,36609,36608,-36545,36606,36617,36618,-36609,36537,36610,36614,-36601,36544,36611,36613,-36553,36604, + 36616,36617,-36607,36608,36618,36611,-36545,36602,36615,36616,-36605,36549,36612,36610,-36538,36600,36614,36615,-36603,36633,36632,36629,-36631,36626,36624,36631,-36633,36627,36626,36632,-36634,36643, + 36641,36639,-36638,36629,36628,36634,-36636,36630,36629,36635,-36637,36644,36643,36637,-36641,36650,36652,36648,-36647,36651,36649,36647,-36646,36652,36651,36645,-36649,36661,36662,36654,-36654,36662, + 36663,36655,-36655,36663,36664,36656,-36656,36664,36661,36653,-36657,36653,36654,36655,-36657,36659,36658,-36694,36673,36674,36662,-36662,36674,36675,36663,-36663,36675,36676,36664,-36664,36676,36673, + 36661,-36665,36657,36658,36666,-36666,36658,36659,36667,-36667,36659,36660,36668,-36668,36660,36657,36665,-36669,36665,36666,36670,-36670,36666,36667,36671,-36671,36667,36668,36672,-36672,36668,36665, + 36669,-36673,36721,36718,36689,-36693,36720,36721,36692,-36692,36719,36720,36691,-36691,36718,36719,36690,-36690,36734,36735,36682,-36682,36735,36736,36683,-36683,36736,36737,36684,-36684,36737,36734, + 36681,-36685,36657,36660,-36694,36660,36659,-36694,36658,36657,-36694,36733,36730,36698,-36702,36732,36733,36701,-36701,36731,36732,36700,-36700,36730,36731,36699,-36699,36729,36726,36706,-36710,36728, + 36729,36709,-36709,36727,36728,36708,-36708,36726,36727,36707,-36707,36725,36722,36714,-36718,36724,36725,36717,-36717,36723,36724,36716,-36716,36722,36723,36715,-36715,36688,36685,36718,-36722,36687, + 36688,36721,-36721,36686,36687,36720,-36720,36685,36686,36719,-36719,36713,36710,36722,-36726,36712,36713,36725,-36725,36711,36712,36724,-36724,36710,36711,36723,-36723,36705,36702,36726,-36730,36704, + 36705,36729,-36729,36703,36704,36728,-36728,36702,36703,36727,-36727,36697,36694,36730,-36734,36696,36697,36733,-36733,36695,36696,36732,-36732,36694,36695,36731,-36731,36677,36678,36735,-36735,36678, + 36679,36736,-36736,36679,36680,36737,-36737,36680,36677,36734,-36738,36749,36746,36742,-36746,36748,36749,36745,-36745,36747,36748,36744,-36744,36746,36747,36743,-36743,36741,36738,36746,-36750,36740, + 36741,36749,-36749,36739,36740,36748,-36748,36738,36739,36747,-36747,36740,36739,36751,-36753,36741,36740,36752,-36754,36738,36741,36753,-36751,36739,36738,36750,-36752,36752,36751,36755,-36757,36753, + 36752,36756,-36758,36750,36753,36757,-36755,36751,36750,36754,-36756,36766,36767,36759,-36759,36767,36768,36760,-36760,36768,36769,36761,-36761,36769,36766,36758,-36762,36758,36759,36760,-36762,36764, + 36763,-36799,36778,36779,36767,-36767,36779,36780,36768,-36768,36780,36781,36769,-36769,36781,36778,36766,-36770,36762,36763,36771,-36771,36763,36764,36772,-36772,36764,36765,36773,-36773,36765,36762, + 36770,-36774,36770,36771,36775,-36775,36771,36772,36776,-36776,36772,36773,36777,-36777,36773,36770,36774,-36778,36826,36823,36794,-36798,36825,36826,36797,-36797,36824,36825,36796,-36796,36823,36824, + 36795,-36795,36839,36840,36787,-36787,36840,36841,36788,-36788,36841,36842,36789,-36789,36842,36839,36786,-36790,36762,36765,-36799,36765,36764,-36799,36763,36762,-36799,36838,36835,36803,-36807,36837, + 36838,36806,-36806,36836,36837,36805,-36805,36835,36836,36804,-36804,36834,36831,36811,-36815,36833,36834,36814,-36814,36832,36833,36813,-36813,36831,36832,36812,-36812,36830,36827,36819,-36823,36829, + 36830,36822,-36822,36828,36829,36821,-36821,36827,36828,36820,-36820,36793,36790,36823,-36827,36792,36793,36826,-36826,36791,36792,36825,-36825,36790,36791,36824,-36824,36818,36815,36827,-36831,36817, + 36818,36830,-36830,36816,36817,36829,-36829,36815,36816,36828,-36828,36810,36807,36831,-36835,36809,36810,36834,-36834,36808,36809,36833,-36833,36807,36808,36832,-36832,36802,36799,36835,-36839,36801, + 36802,36838,-36838,36800,36801,36837,-36837,36799,36800,36836,-36836,36782,36783,36840,-36840,36783,36784,36841,-36841,36784,36785,36842,-36842,36785,36782,36839,-36843,36854,36851,36847,-36851,36853, + 36854,36850,-36850,36852,36853,36849,-36849,36851,36852,36848,-36848,36846,36843,36851,-36855,36845,36846,36854,-36854,36844,36845,36853,-36853,36843,36844,36852,-36852,36845,36844,36856,-36858,36846, + 36845,36857,-36859,36843,36846,36858,-36856,36844,36843,36855,-36857,36857,36856,36860,-36862,36858,36857,36861,-36863,36855,36858,36862,-36860,36856,36855,36859,-36861,36868,36869,36877,-36877,36863, + 36864,36872,-36872,36867,36868,36876,-36876,36866,36867,36875,-36875,36870,36863,36871,-36879,36865,36866,36874,-36874,36869,36870,36878,-36878,36864,36865,36873,-36873,36878,36871,36879,-36887,36873, + 36874,36882,-36882,36877,36878,36886,-36886,36874,36875,36883,-36883,36911,36881,-36883,36910,36909,36900,-36902,36908,36907,36895,-36897,36909,36906,36899,-36901,36906,36905,36898,-36900,36907,36904, + 36902,-36896,36905,36912,36897,-36899,36904,36910,36901,-36903,36912,36908,36896,-36898,36911,36888,-36882,36911,36879,-36889,36875,36876,36892,-36884,36871,36872,36888,-36880,36876,36877,36885,-36893, + 36872,36873,36881,-36889,36865,36864,36908,-36913,36870,36869,36910,-36905,36866,36865,36912,-36906,36896,36895,-36904,36901,36900,-36904,36897,36896,-36904,36902,36901,-36904,36898,36897,-36904,36895, + 36902,-36904,36899,36898,-36904,36900,36899,-36904,36863,36870,36904,-36908,36867,36866,36905,-36907,36868,36867,36906,-36910,36864,36863,36907,-36909,36869,36868,36909,-36911,36890,36893,36884,-36890, + 36893,36894,36880,-36885,36894,36891,36887,-36881,36891,36890,36889,-36888,36915,36913,36914,-36918,36952,36948,36950,-36954,36911,36882,-36884,36911,36883,-36893,36911,36892,-36886,36911,36885,-36887, + 36911,36886,-36880,36916,36915,36917,-36919,36913,36915,36889,-36885,36915,36916,36887,-36890,36918,36917,36920,-36922,36913,36916,36918,-36915,36913,36884,-36881,36916,36913,36880,-36888,36919,36921, + 36924,-36923,36914,36918,36921,-36920,36917,36914,36919,-36921,36923,36922,36925,-36927,36920,36919,36922,-36924,36921,36920,36923,-36925,36925,36951,36952,-36927,36924,36923,36926,-36928,36922,36924, + 36927,-36926,36932,36934,36929,-36932,36934,36935,36928,-36930,36935,36933,36930,-36929,36933,36932,36931,-36931,36938,36936,36937,-36941,36951,36949,36948,-36953,36939,36938,36940,-36942,36936,36938, + 36931,-36930,36938,36939,36930,-36932,36941,36940,36943,-36945,36936,36939,36941,-36938,36936,36929,-36929,36939,36936,36928,-36931,36942,36944,36947,-36946,36937,36941,36944,-36943,36940,36937,36942, + -36944,36946,36945,36948,-36950,36943,36942,36945,-36947,36944,36943,36946,-36948,36926,36952,36953,-36928,36947,36946,36949,-36951,36945,36947,36950,-36949,36953,36950,36949,-36952,36927,36953,36951, + -36926,36967,36966,36968,-36970,36959,36958,36960,-36962,36956,36957,36961,-36961,36955,36954,36958,-36960,36957,36955,36959,-36962,36954,36956,36960,-36959,36964,36965,36969,-36969,36963,36962,36966, + -36968,36965,36963,36967,-36970,36962,36964,36968,-36967,36983,36982,36984,-36986,36975,36974,36976,-36978,36972,36973,36977,-36977,36971,36970,36974,-36976,36973,36971,36975,-36978,36970,36972,36976, + -36975,36980,36981,36985,-36985,36979,36978,36982,-36984,36981,36979,36983,-36986,36978,36980,36984,-36983,37033,37028,36989,-36995,37037,37031,36986,-37001,37014,37011,37023,-37027,37039,37029,36988, + -37003,37035,37030,36987,-36992,37031,37032,36995,-36987,37012,37007,37020,-37025,37029,37034,36992,-36989,37030,37036,37001,-36988,37005,37004,37018,-37020,37028,37038,37003,-36990,37015,37005,37019, + -37028,37013,37009,37021,-37026,37004,37005,36988,-36993,37006,37007,36987,-37002,37008,37009,36989,-37004,37010,37011,36986,-36996,37007,37012,36991,-36988,37009,37013,36994,-36990,37011,37014,37000, + -36987,37005,37015,37002,-36989,37011,37010,37022,-37024,36997,36996,37039,-37039,37026,37037,37000,-37015,36991,37012,37024,-37036,37035,37024,37018,-37035,37034,37018,37004,-36993,37002,37015,37027, + -37040,36994,37013,37025,-37034,37033,37025,37022,-37033,37032,37022,37010,-36996,37051,37049,37043,-37049,37050,37049,37044,-37046,37047,37044,37049,-37052,37046,37043,37049,-37051,37045,37047,37051, + -37051,37050,37051,37048,-37047,37056,37055,37052,-37054,37054,37052,37055,-37058,37053,37054,37057,-37057,37066,37064,37058,-37064,37065,37064,37059,-37061,37062,37059,37064,-37067,37061,37058,37064, + -37066,37060,37062,37066,-37066,37065,37066,37063,-37062,37072,37071,37067,-37070,37070,37072,37069,-37069,37068,37067,37071,-37071,37079,37080,37073,-37075,37081,37080,37076,-37079,37079,37081,37078, + -37078,37077,37076,37080,-37080,37075,37073,37080,-37082,37074,37075,37081,-37080,37085,37075,37074,-37087,37086,37074,37073,-37088,37087,37073,37075,-37086,37082,37076,37077,-37084,37083,37077,37078, + -37085,37084,37078,37076,-37083,37069,37085,37086,-37069,37068,37086,37087,-37068,37067,37087,37085,-37070,37089,37088,37091,-37091,37090,37094,37093,-37090,37088,37092,37095,-37092,37097,37096,37099, + -37099,37098,37102,37101,-37098,37096,37100,37103,-37100,37106,37104,37105,-37108,37110,37111,37109,-37109,37105,37104,37108,-37110,37106,37107,37111,-37111,37104,37106,37110,-37109,37107,37105,37109, + -37112,37114,37112,37113,-37116,37118,37119,37117,-37117,37113,37112,37116,-37118,37114,37115,37119,-37119,37112,37114,37118,-37117,37115,37113,37117,-37120,37122,37120,37121,-37124,37126,37127,37125, + -37125,37121,37120,37124,-37126,37122,37123,37127,-37127,37120,37122,37126,-37125,37123,37121,37125,-37128,37132,37131,37128,-37130,37130,37128,37131,-37134,37129,37130,37133,-37133,37138,37137,37134, + -37136,37136,37134,37137,-37140,37135,37136,37139,-37139,37144,37143,37140,-37142,37142,37140,37143,-37146,37141,37142,37145,-37145,37150,37149,37146,-37148,37148,37146,37149,-37152,37147,37148,37151, + -37151,37157,37156,37154,-37156,37174,37161,37165,-37170,37153,37152,37156,-37158,37173,37170,-37168,37163,37162,37160,-37162,37175,37159,37163,-37172,37170,37175,-37168,37159,37158,37162,-37164,37174, + 37167,-37172,37172,37173,-37168,37176,37172,-37168,37168,37158,37159,-37167,37169,37165,37153,-37177,37177,37164,-37161,37165,37161,37160,-37165,37153,37165,37164,-37153,37154,37168,37166,-37156,37157, + 37155,37173,-37173,37153,37157,37172,-37177,37167,37175,-37172,37161,37174,37171,-37164,37155,37166,37170,-37174,37166,37159,37175,-37171,37167,37174,-37170,37167,37169,-37177,37152,37164,-37178,37177, + 37162,-37159,37154,37156,-37178,37168,37154,-37178,37162,37177,-37161,37168,37177,-37159,37156,37152,-37178,37196,37186,37197,-37200,37198,37197,37186,-37196,37186,37196,37194,-37181,37196,37200,37178, + -37195,37181,37182,37185,-37184,37200,37195,37184,-37179,37180,37184,37195,-37187,37192,37188,37191,-37194,37187,37192,37193,-37191,37189,37190,37193,-37192,37197,37198,37201,-37200,37195,37200,37201, + -37199,37200,37196,37199,-37202,37184,37180,37194,-37179,37182,37181,37187,-37180,37192,37187,37181,-37184,37188,37192,37183,-37186,37179,37188,37185,-37183,37190,37189,37179,-37188,37188,37179,37189, + -37192,37220,37210,37221,-37224,37222,37221,37210,-37220,37210,37220,37218,-37205,37220,37224,37202,-37219,37205,37206,37209,-37208,37224,37219,37208,-37203,37204,37208,37219,-37211,37216,37212,37215, + -37218,37211,37216,37217,-37215,37213,37214,37217,-37216,37221,37222,37225,-37224,37219,37224,37225,-37223,37224,37220,37223,-37226,37208,37204,37218,-37203,37206,37205,37211,-37204,37216,37211,37205, + -37208,37212,37216,37207,-37210,37203,37212,37209,-37207,37214,37213,37203,-37212,37212,37203,37213,-37216,37227,37226,37229,-37229,37231,37230,37233,-37233,37228,37236,37235,-37228,37232,37240,37239, + -37232,37226,37234,37237,-37230,37230,37238,37241,-37234,37243,37242,37245,-37245,37244,37248,37247,-37244,37242,37246,37249,-37246,37042,36990,36996,-37042,37041,37040,36998,-37000,37007,37006,37017, + -37021,37017,37024,-37021,37027,37019,-37019,37027,37018,37024,-37018,37022,37026,-37024,37021,37016,-37026,37025,37016,37026,-37023,37016,37027,37017,-37027,37009,37008,37016,-37022,36997,37028,-37034, + 36993,37031,-37038,36996,37029,-37040,36990,37030,-37036,36993,37032,-37032,36993,36997,37033,-37033,36996,37034,-37030,36996,36990,37035,-37035,36990,37036,-37031,36990,36993,37037,-37037,36997,37038, + -37029,37006,37001,37036,-37018,37017,37036,37037,-37027,37039,37027,37016,-37039,37038,37016,37008,-37004,36996,36997,37040,-37042,37299,37294,37253,-37259,37303,37297,37250,-37267,37280,37277,37289, + -37293,37305,37295,37252,-37269,37301,37296,37251,-37256,37297,37298,37259,-37251,37278,37273,37286,-37291,37295,37300,37256,-37253,37296,37302,37267,-37252,37271,37270,37284,-37286,37294,37304,37269, + -37254,37281,37271,37285,-37294,37279,37275,37287,-37292,37270,37271,37252,-37257,37272,37273,37251,-37268,37274,37275,37253,-37270,37276,37277,37250,-37260,37273,37278,37255,-37252,37275,37279,37258, + -37254,37277,37280,37266,-37251,37271,37281,37268,-37253,37277,37276,37288,-37290,37263,37262,37305,-37305,37292,37303,37266,-37281,37255,37278,37290,-37302,37301,37290,37284,-37301,37300,37284,37270, + -37257,37268,37281,37293,-37306,37258,37279,37291,-37300,37299,37291,37288,-37299,37298,37288,37276,-37260,37318,37316,37310,-37316,37317,37316,37311,-37313,37314,37311,37316,-37319,37313,37310,37316, + -37318,37312,37314,37318,-37318,37317,37318,37315,-37314,37327,37325,37319,-37325,37326,37325,37320,-37322,37323,37320,37325,-37328,37322,37319,37325,-37327,37321,37323,37327,-37327,37326,37327,37324, + -37323,37332,37331,37328,-37330,37330,37328,37331,-37334,37329,37330,37333,-37333,37341,37340,37335,-37337,37337,37334,37340,-37342,37336,37338,37342,-37342,37341,37342,37339,-37338,37349,37350,37343, + -37345,37351,37350,37346,-37349,37349,37351,37348,-37348,37347,37346,37350,-37350,37345,37343,37350,-37352,37344,37345,37351,-37350,37358,37359,37352,-37354,37360,37359,37355,-37358,37358,37360,37357, + -37357,37356,37355,37359,-37359,37354,37352,37359,-37361,37353,37354,37360,-37359,37364,37354,37353,-37366,37365,37353,37352,-37367,37366,37352,37354,-37365,37361,37355,37356,-37363,37362,37356,37357, + -37364,37363,37357,37355,-37362,37343,37361,37362,-37345,37344,37362,37363,-37346,37345,37363,37361,-37344,37348,37364,37365,-37348,37347,37365,37366,-37347,37346,37366,37364,-37349,37371,37372,37367, + -37369,37379,37375,37374,-37381,37380,37374,37373,-37382,37381,37373,37375,-37380,37367,37376,37377,-37369,37368,37377,37378,-37370,37369,37378,37376,-37368,37369,37367,37372,-37371,37368,37369,37370, + -37372,37370,37379,37380,-37372,37371,37380,37381,-37373,37372,37381,37379,-37371,37383,37382,37385,-37385,37387,37386,37389,-37389,37384,37392,37391,-37384,37388,37396,37395,-37388,37382,37390,37393, + -37386,37386,37394,37397,-37390,37399,37398,37401,-37401,37400,37404,37403,-37400,37398,37402,37405,-37402,37407,37406,37409,-37409,37408,37412,37411,-37408,37406,37410,37413,-37410,37415,37414,37417, + -37417,37416,37420,37419,-37416,37414,37418,37421,-37418,37423,37422,37425,-37425,37424,37428,37427,-37424,37422,37426,37429,-37426,37431,37430,37433,-37433,37432,37436,37435,-37432,37430,37434,37437, + -37434,37440,37438,37439,-37442,37444,37445,37443,-37443,37439,37438,37442,-37444,37440,37441,37445,-37445,37438,37440,37444,-37443,37441,37439,37443,-37446,37448,37446,37447,-37450,37452,37453,37451, + -37451,37447,37446,37450,-37452,37448,37449,37453,-37453,37446,37448,37452,-37451,37449,37447,37451,-37454,37456,37454,37455,-37458,37460,37461,37459,-37459,37455,37454,37458,-37460,37456,37457,37461, + -37461,37454,37456,37460,-37459,37457,37455,37459,-37462,37464,37462,37463,-37466,37468,37469,37467,-37467,37463,37462,37466,-37468,37464,37465,37469,-37469,37462,37464,37468,-37467,37465,37463,37467, + -37470,37472,37470,37471,-37474,37476,37477,37475,-37475,37471,37470,37474,-37476,37472,37473,37477,-37477,37470,37472,37476,-37475,37473,37471,37475,-37478,37480,37478,37479,-37482,37484,37485,37483, + -37483,37479,37478,37482,-37484,37480,37481,37485,-37485,37478,37480,37484,-37483,37481,37479,37483,-37486,37490,37489,37486,-37488,37488,37486,37489,-37492,37487,37488,37491,-37491,37496,37495,37492, + -37494,37494,37492,37495,-37498,37493,37494,37497,-37497,37502,37501,37498,-37500,37500,37498,37501,-37504,37499,37500,37503,-37503,37508,37507,37504,-37506,37506,37504,37507,-37510,37505,37506,37509, + -37509,37515,37514,37512,-37514,37532,37519,37523,-37528,37511,37510,37514,-37516,37531,37528,-37526,37521,37520,37518,-37520,37533,37517,37521,-37530,37528,37533,-37526,37517,37516,37520,-37522,37532, + 37525,-37530,37530,37531,-37526,37534,37530,-37526,37526,37516,37517,-37525,37527,37523,37511,-37535,37535,37522,-37519,37523,37519,37518,-37523,37511,37523,37522,-37511,37512,37526,37524,-37514,37515, + 37513,37531,-37531,37511,37515,37530,-37535,37525,37533,-37530,37519,37532,37529,-37522,37513,37524,37528,-37532,37524,37517,37533,-37529,37525,37532,-37528,37525,37527,-37535,37510,37522,-37536,37535, + 37520,-37517,37512,37514,-37536,37526,37512,-37536,37520,37535,-37519,37526,37535,-37517,37514,37510,-37536,37554,37544,37555,-37558,37556,37555,37544,-37554,37544,37554,37552,-37539,37554,37558,37536, + -37553,37539,37540,37543,-37542,37558,37553,37542,-37537,37538,37542,37553,-37545,37550,37546,37549,-37552,37545,37550,37551,-37549,37547,37548,37551,-37550,37555,37556,37559,-37558,37553,37558,37559, + -37557,37558,37554,37557,-37560,37542,37538,37552,-37537,37540,37539,37545,-37538,37550,37545,37539,-37542,37546,37550,37541,-37544,37537,37546,37543,-37541,37548,37547,37537,-37546,37546,37537,37547, + -37550,37578,37568,37579,-37582,37580,37579,37568,-37578,37568,37578,37576,-37563,37578,37582,37560,-37577,37563,37564,37567,-37566,37582,37577,37566,-37561,37562,37566,37577,-37569,37574,37570,37573, + -37576,37569,37574,37575,-37573,37571,37572,37575,-37574,37579,37580,37583,-37582,37577,37582,37583,-37581,37582,37578,37581,-37584,37566,37562,37576,-37561,37564,37563,37569,-37562,37574,37569,37563, + -37566,37570,37574,37565,-37568,37561,37570,37567,-37565,37572,37571,37561,-37570,37570,37561,37571,-37574,37585,37584,37587,-37587,37589,37588,37591,-37591,37586,37594,37593,-37586,37590,37598,37597, + -37590,37584,37592,37595,-37588,37588,37596,37599,-37592,37602,37600,37601,-37604,37606,37607,37605,-37605,37601,37600,37604,-37606,37602,37603,37607,-37607,37600,37602,37606,-37605,37603,37601,37605, + -37608,37610,37608,37609,-37612,37614,37615,37613,-37613,37609,37608,37612,-37614,37610,37611,37615,-37615,37608,37610,37614,-37613,37611,37609,37613,-37616,37306,37307,37263,-37258,37306,37309,37261, + -37261,37308,37307,37264,-37266,37273,37272,37283,-37287,37283,37290,-37287,37293,37285,-37285,37293,37284,37290,-37284,37288,37292,-37290,37287,37282,-37292,37291,37282,37292,-37289,37282,37293,37283, + -37293,37275,37274,37282,-37288,37263,37294,-37300,37257,37297,-37304,37262,37295,-37306,37254,37296,-37302,37257,37298,-37298,37257,37263,37299,-37299,37262,37300,-37296,37262,37254,37301,-37301,37254, + 37302,-37297,37254,37257,37303,-37303,37263,37304,-37295,37272,37267,37302,-37284,37283,37302,37303,-37293,37305,37293,37282,-37305,37304,37282,37274,-37270,37260,37264,37307,-37307,37257,37254,37309, + -37307,37262,37263,37307,-37309,37623,37625,37626,-37625,37633,37627,-37635,37643,37640,-37632,37638,37630,-37628,37624,37626,-37620,37621,37629,37624,-37618,37618,37625,-37624,37644,37636,-37640,37636, + 37643,-37629,37617,37624,-37620,37636,37628,-37640,37617,37619,-37619,37617,37622,-37622,37623,37624,-37630,37623,37629,-37623,37617,37623,-37623,37617,37618,-37624,37637,37632,-37636,37644,37639,-37641, + 37635,37632,-37631,37641,37640,-37643,37638,37616,-37631,37637,37627,-37621,37634,37637,-37617,37633,37638,-37628,37616,37637,-37636,37616,37633,-37635,37616,37638,-37634,37630,37632,-37621,37616,37635, + -37631,37627,37630,-37621,37627,37637,-37635,37632,37637,-37621,37642,37643,-37637,37641,37644,-37641,37636,37641,-37643,37636,37644,-37642,37639,37628,-37632,37640,37639,-37632,37640,37643,-37643,37628, + 37643,-37632,37653,37655,37656,-37655,37663,37657,-37665,37674,37670,-37662,37668,37660,-37658,37654,37656,-37649,37651,37659,37654,-37647,37647,37655,-37654,37675,37666,-37670,37652,37659,-37650,37646, + 37654,-37649,37649,37659,-37652,37646,37648,-37648,37649,37651,-37653,37646,37652,-37652,37673,37658,-37670,37653,37654,-37660,37653,37659,-37653,37674,37658,-37674,37646,37653,-37653,37646,37647,-37654, + 37667,37662,-37666,37675,37669,-37671,37665,37662,-37661,37671,37670,-37673,37668,37645,-37661,37667,37657,-37651,37664,37667,-37646,37663,37668,-37658,37645,37667,-37666,37645,37663,-37665,37645,37668, + -37664,37660,37662,-37651,37645,37665,-37661,37657,37660,-37651,37657,37667,-37665,37662,37667,-37651,37672,37674,-37667,37671,37675,-37671,37666,37674,-37674,37666,37671,-37673,37666,37675,-37672,37669, + 37658,-37662,37666,37673,-37670,37670,37669,-37662,37670,37674,-37673,37658,37674,-37662,37684,37686,37687,-37686,37694,37688,-37696,37705,37701,-37693,37699,37691,-37689,37685,37687,-37680,37682,37690, + 37685,-37678,37678,37686,-37685,37706,37697,-37701,37683,37690,-37681,37677,37685,-37680,37680,37690,-37683,37677,37679,-37679,37680,37682,-37684,37677,37683,-37683,37704,37689,-37701,37684,37685,-37691, + 37684,37690,-37684,37705,37689,-37705,37677,37684,-37684,37677,37678,-37685,37698,37693,-37697,37706,37700,-37702,37696,37693,-37692,37702,37701,-37704,37699,37676,-37692,37698,37688,-37682,37695,37698, + -37677,37694,37699,-37689,37676,37698,-37697,37676,37694,-37696,37676,37699,-37695,37691,37693,-37682,37676,37696,-37692,37688,37691,-37682,37688,37698,-37696,37693,37698,-37682,37703,37705,-37698,37702, + 37706,-37702,37697,37705,-37705,37697,37702,-37704,37697,37706,-37703,37700,37689,-37693,37697,37704,-37701,37701,37700,-37693,37701,37705,-37704,37689,37705,-37693,37714,37716,37717,-37716,37724,37718, + -37726,37734,37731,-37723,37729,37721,-37719,37715,37717,-37711,37712,37720,37715,-37709,37709,37716,-37715,37735,37727,-37731,37727,37734,-37720,37708,37715,-37711,37727,37719,-37731,37708,37710,-37710, + 37708,37713,-37713,37714,37715,-37721,37714,37720,-37714,37708,37714,-37714,37708,37709,-37715,37728,37723,-37727,37735,37730,-37732,37726,37723,-37722,37732,37731,-37734,37729,37707,-37722,37728,37718, + -37712,37725,37728,-37708,37724,37729,-37719,37707,37728,-37727,37707,37724,-37726,37707,37729,-37725,37721,37723,-37712,37707,37726,-37722,37718,37721,-37712,37718,37728,-37726,37723,37728,-37712,37733, + 37734,-37728,37732,37735,-37732,37727,37732,-37734,37727,37735,-37733,37730,37719,-37723,37731,37730,-37723,37731,37734,-37734,37719,37734,-37723,37743,37745,37746,-37745,37753,37747,-37755,37763,37760, + -37752,37758,37750,-37748,37744,37746,-37740,37741,37749,37744,-37738,37738,37745,-37744,37764,37756,-37760,37756,37763,-37749,37737,37744,-37740,37756,37748,-37760,37737,37739,-37739,37737,37742,-37742, + 37743,37744,-37750,37743,37749,-37743,37737,37743,-37743,37737,37738,-37744,37757,37752,-37756,37764,37759,-37761,37755,37752,-37751,37761,37760,-37763,37758,37736,-37751,37757,37747,-37741,37754,37757, + -37737,37753,37758,-37748,37736,37757,-37756,37736,37753,-37755,37736,37758,-37754,37750,37752,-37741,37736,37755,-37751,37747,37750,-37741,37747,37757,-37755,37752,37757,-37741,37762,37763,-37757,37761, + 37764,-37761,37756,37761,-37763,37756,37764,-37762,37759,37748,-37752,37760,37759,-37752,37760,37763,-37763,37748,37763,-37752,37773,37775,37776,-37775,37783,37777,-37785,37794,37790,-37782,37788,37780, + -37778,37774,37776,-37769,37771,37779,37774,-37767,37767,37775,-37774,37795,37786,-37790,37772,37779,-37770,37766,37774,-37769,37769,37779,-37772,37766,37768,-37768,37769,37771,-37773,37766,37772,-37772, + 37793,37778,-37790,37773,37774,-37780,37773,37779,-37773,37794,37778,-37794,37766,37773,-37773,37766,37767,-37774,37787,37782,-37786,37795,37789,-37791,37785,37782,-37781,37791,37790,-37793,37788,37765, + -37781,37787,37777,-37771,37784,37787,-37766,37783,37788,-37778,37765,37787,-37786,37765,37783,-37785,37765,37788,-37784,37780,37782,-37771,37765,37785,-37781,37777,37780,-37771,37777,37787,-37785,37782, + 37787,-37771,37792,37794,-37787,37791,37795,-37791,37786,37794,-37794,37786,37791,-37793,37786,37795,-37792,37789,37778,-37782,37786,37793,-37790,37790,37789,-37782,37790,37794,-37793,37778,37794,-37782, + 37804,37806,37807,-37806,37814,37808,-37816,37825,37821,-37813,37819,37811,-37809,37805,37807,-37800,37802,37810,37805,-37798,37798,37806,-37805,37826,37817,-37821,37803,37810,-37801,37797,37805,-37800, + 37800,37810,-37803,37797,37799,-37799,37800,37802,-37804,37797,37803,-37803,37824,37809,-37821,37804,37805,-37811,37804,37810,-37804,37825,37809,-37825,37797,37804,-37804,37797,37798,-37805,37818,37813, + -37817,37826,37820,-37822,37816,37813,-37812,37822,37821,-37824,37819,37796,-37812,37818,37808,-37802,37815,37818,-37797,37814,37819,-37809,37796,37818,-37817,37796,37814,-37816,37796,37819,-37815,37811, + 37813,-37802,37796,37816,-37812,37808,37811,-37802,37808,37818,-37816,37813,37818,-37802,37823,37825,-37818,37822,37826,-37822,37817,37825,-37825,37817,37822,-37824,37817,37826,-37823,37820,37809,-37813, + 37817,37824,-37821,37821,37820,-37813,37821,37825,-37824,37809,37825,-37813,37834,37836,37837,-37836,37844,37838,-37846,37854,37851,-37843,37849,37841,-37839,37835,37837,-37831,37832,37840,37835,-37829, + 37829,37836,-37835,37855,37847,-37851,37847,37854,-37840,37828,37835,-37831,37847,37839,-37851,37828,37830,-37830,37828,37833,-37833,37834,37835,-37841,37834,37840,-37834,37828,37834,-37834,37828,37829, + -37835,37848,37843,-37847,37855,37850,-37852,37846,37843,-37842,37852,37851,-37854,37849,37827,-37842,37848,37838,-37832,37845,37848,-37828,37844,37849,-37839,37827,37848,-37847,37827,37844,-37846,37827, + 37849,-37845,37841,37843,-37832,37827,37846,-37842,37838,37841,-37832,37838,37848,-37846,37843,37848,-37832,37853,37854,-37848,37852,37855,-37852,37847,37852,-37854,37847,37855,-37853,37850,37839,-37843, + 37851,37850,-37843,37851,37854,-37854,37839,37854,-37843,37864,37866,37867,-37866,37874,37868,-37876,37885,37881,-37873,37879,37871,-37869,37865,37867,-37860,37862,37870,37865,-37858,37858,37866,-37865, + 37886,37877,-37881,37863,37870,-37861,37857,37865,-37860,37860,37870,-37863,37857,37859,-37859,37860,37862,-37864,37857,37863,-37863,37884,37869,-37881,37864,37865,-37871,37864,37870,-37864,37885,37869, + -37885,37857,37864,-37864,37857,37858,-37865,37878,37873,-37877,37886,37880,-37882,37876,37873,-37872,37882,37881,-37884,37879,37856,-37872,37878,37868,-37862,37875,37878,-37857,37874,37879,-37869,37856, + 37878,-37877,37856,37874,-37876,37856,37879,-37875,37871,37873,-37862,37856,37876,-37872,37868,37871,-37862,37868,37878,-37876,37873,37878,-37862,37883,37885,-37878,37882,37886,-37882,37877,37885,-37885, + 37877,37882,-37884,37877,37886,-37883,37880,37869,-37873,37877,37884,-37881,37881,37880,-37873,37881,37885,-37884,37869,37885,-37873,37895,37897,37898,-37897,37905,37899,-37907,37916,37912,-37904,37910, + 37902,-37900,37896,37898,-37891,37893,37901,37896,-37889,37889,37897,-37896,37917,37908,-37912,37894,37901,-37892,37888,37896,-37891,37891,37901,-37894,37888,37890,-37890,37891,37893,-37895,37888,37894, + -37894,37915,37900,-37912,37895,37896,-37902,37895,37901,-37895,37916,37900,-37916,37888,37895,-37895,37888,37889,-37896,37909,37904,-37908,37917,37911,-37913,37907,37904,-37903,37913,37912,-37915,37910, + 37887,-37903,37909,37899,-37893,37906,37909,-37888,37905,37910,-37900,37887,37909,-37908,37887,37905,-37907,37887,37910,-37906,37902,37904,-37893,37887,37907,-37903,37899,37902,-37893,37899,37909,-37907, + 37904,37909,-37893,37914,37916,-37909,37913,37917,-37913,37908,37916,-37916,37908,37913,-37915,37908,37917,-37914,37911,37900,-37904,37908,37915,-37912,37912,37911,-37904,37912,37916,-37915,37900,37916, + -37904,37925,37927,37928,-37927,37935,37929,-37937,37945,37942,-37934,37940,37932,-37930,37926,37928,-37922,37923,37931,37926,-37920,37920,37927,-37926,37946,37938,-37942,37938,37945,-37931,37919,37926, + -37922,37938,37930,-37942,37919,37921,-37921,37919,37924,-37924,37925,37926,-37932,37925,37931,-37925,37919,37925,-37925,37919,37920,-37926,37939,37934,-37938,37946,37941,-37943,37937,37934,-37933,37943, + 37942,-37945,37940,37918,-37933,37939,37929,-37923,37936,37939,-37919,37935,37940,-37930,37918,37939,-37938,37918,37935,-37937,37918,37940,-37936,37932,37934,-37923,37918,37937,-37933,37929,37932,-37923, + 37929,37939,-37937,37934,37939,-37923,37944,37945,-37939,37943,37946,-37943,37938,37943,-37945,37938,37946,-37944,37941,37930,-37934,37942,37941,-37934,37942,37945,-37945,37930,37945,-37934,37954,37956, + 37957,-37956,37964,37958,-37966,37974,37971,-37963,37969,37961,-37959,37955,37957,-37951,37952,37960,37955,-37949,37949,37956,-37955,37975,37967,-37971,37967,37974,-37960,37948,37955,-37951,37967,37959, + -37971,37948,37950,-37950,37948,37953,-37953,37954,37955,-37961,37954,37960,-37954,37948,37954,-37954,37948,37949,-37955,37968,37963,-37967,37975,37970,-37972,37966,37963,-37962,37972,37971,-37974,37969, + 37947,-37962,37968,37958,-37952,37965,37968,-37948,37964,37969,-37959,37947,37968,-37967,37947,37964,-37966,37947,37969,-37965,37961,37963,-37952,37947,37966,-37962,37958,37961,-37952,37958,37968,-37966, + 37963,37968,-37952,37973,37974,-37968,37972,37975,-37972,37967,37972,-37974,37967,37975,-37973,37970,37959,-37963,37971,37970,-37963,37971,37974,-37974,37959,37974,-37963,37983,37985,37986,-37985,37993, + 37987,-37995,38003,38000,-37992,37998,37990,-37988,37984,37986,-37980,37981,37989,37984,-37978,37978,37985,-37984,38004,37996,-38000,37996,38003,-37989,37977,37984,-37980,37996,37988,-38000,37977,37979, + -37979,37977,37982,-37982,37983,37984,-37990,37983,37989,-37983,37977,37983,-37983,37977,37978,-37984,37997,37992,-37996,38004,37999,-38001,37995,37992,-37991,38001,38000,-38003,37998,37976,-37991,37997, + 37987,-37981,37994,37997,-37977,37993,37998,-37988,37976,37997,-37996,37976,37993,-37995,37976,37998,-37994,37990,37992,-37981,37976,37995,-37991,37987,37990,-37981,37987,37997,-37995,37992,37997,-37981, + 38002,38003,-37997,38001,38004,-38001,37996,38001,-38003,37996,38004,-38002,37999,37988,-37992,38000,37999,-37992,38000,38003,-38003,37988,38003,-37992,38012,38014,38015,-38014,38022,38016,-38024,38032, + 38029,-38021,38027,38019,-38017,38013,38015,-38009,38010,38018,38013,-38007,38007,38014,-38013,38033,38025,-38029,38025,38032,-38018,38006,38013,-38009,38025,38017,-38029,38006,38008,-38008,38006,38011, + -38011,38012,38013,-38019,38012,38018,-38012,38006,38012,-38012,38006,38007,-38013,38026,38021,-38025,38033,38028,-38030,38024,38021,-38020,38030,38029,-38032,38027,38005,-38020,38026,38016,-38010,38023, + 38026,-38006,38022,38027,-38017,38005,38026,-38025,38005,38022,-38024,38005,38027,-38023,38019,38021,-38010,38005,38024,-38020,38016,38019,-38010,38016,38026,-38024,38021,38026,-38010,38031,38032,-38026, + 38030,38033,-38030,38025,38030,-38032,38025,38033,-38031,38028,38017,-38021,38029,38028,-38021,38029,38032,-38032,38017,38032,-38021,38041,38043,38044,-38043,38051,38045,-38053,38061,38058,-38050,38056, + 38048,-38046,38042,38044,-38038,38039,38047,38042,-38036,38036,38043,-38042,38062,38054,-38058,38054,38061,-38047,38035,38042,-38038,38054,38046,-38058,38035,38037,-38037,38035,38040,-38040,38041,38042, + -38048,38041,38047,-38041,38035,38041,-38041,38035,38036,-38042,38055,38050,-38054,38062,38057,-38059,38053,38050,-38049,38059,38058,-38061,38056,38034,-38049,38055,38045,-38039,38052,38055,-38035,38051, + 38056,-38046,38034,38055,-38054,38034,38051,-38053,38034,38056,-38052,38048,38050,-38039,38034,38053,-38049,38045,38048,-38039,38045,38055,-38053,38050,38055,-38039,38060,38061,-38055,38059,38062,-38059, + 38054,38059,-38061,38054,38062,-38060,38057,38046,-38050,38058,38057,-38050,38058,38061,-38061,38046,38061,-38050,38070,38072,38073,-38072,38080,38074,-38082,38090,38087,-38079,38085,38077,-38075,38071, + 38073,-38067,38068,38076,38071,-38065,38065,38072,-38071,38091,38083,-38087,38083,38090,-38076,38064,38071,-38067,38083,38075,-38087,38064,38066,-38066,38064,38069,-38069,38070,38071,-38077,38070,38076, + -38070,38064,38070,-38070,38064,38065,-38071,38084,38079,-38083,38091,38086,-38088,38082,38079,-38078,38088,38087,-38090,38085,38063,-38078,38084,38074,-38068,38081,38084,-38064,38080,38085,-38075,38063, + 38084,-38083,38063,38080,-38082,38063,38085,-38081,38077,38079,-38068,38063,38082,-38078,38074,38077,-38068,38074,38084,-38082,38079,38084,-38068,38089,38090,-38084,38088,38091,-38088,38083,38088,-38090, + 38083,38091,-38089,38086,38075,-38079,38087,38086,-38079,38087,38090,-38090,38075,38090,-38079,38099,38101,38102,-38101,38109,38103,-38111,38119,38116,-38108,38114,38106,-38104,38100,38102,-38096,38097, + 38105,38100,-38094,38094,38101,-38100,38120,38112,-38116,38112,38119,-38105,38093,38100,-38096,38112,38104,-38116,38093,38095,-38095,38093,38098,-38098,38099,38100,-38106,38099,38105,-38099,38093,38099, + -38099,38093,38094,-38100,38113,38108,-38112,38120,38115,-38117,38111,38108,-38107,38117,38116,-38119,38114,38092,-38107,38113,38103,-38097,38110,38113,-38093,38109,38114,-38104,38092,38113,-38112,38092, + 38109,-38111,38092,38114,-38110,38106,38108,-38097,38092,38111,-38107,38103,38106,-38097,38103,38113,-38111,38108,38113,-38097,38118,38119,-38113,38117,38120,-38117,38112,38117,-38119,38112,38120,-38118, + 38115,38104,-38108,38116,38115,-38108,38116,38119,-38119,38104,38119,-38108,38128,38130,38131,-38130,38138,38132,-38140,38148,38145,-38137,38143,38135,-38133,38129,38131,-38125,38126,38134,38129,-38123, + 38123,38130,-38129,38149,38141,-38145,38141,38148,-38134,38122,38129,-38125,38141,38133,-38145,38122,38124,-38124,38122,38127,-38127,38128,38129,-38135,38128,38134,-38128,38122,38128,-38128,38122,38123, + -38129,38142,38137,-38141,38149,38144,-38146,38140,38137,-38136,38146,38145,-38148,38143,38121,-38136,38142,38132,-38126,38139,38142,-38122,38138,38143,-38133,38121,38142,-38141,38121,38138,-38140,38121, + 38143,-38139,38135,38137,-38126,38121,38140,-38136,38132,38135,-38126,38132,38142,-38140,38137,38142,-38126,38147,38148,-38142,38146,38149,-38146,38141,38146,-38148,38141,38149,-38147,38144,38133,-38137, + 38145,38144,-38137,38145,38148,-38148,38133,38148,-38137,38158,38160,38161,-38160,38168,38162,-38170,38179,38175,-38167,38173,38165,-38163,38159,38161,-38154,38156,38164,38159,-38152,38152,38160,-38159, + 38180,38171,-38175,38157,38164,-38155,38151,38159,-38154,38154,38164,-38157,38151,38153,-38153,38154,38156,-38158,38151,38157,-38157,38178,38163,-38175,38158,38159,-38165,38158,38164,-38158,38179,38163, + -38179,38151,38158,-38158,38151,38152,-38159,38172,38167,-38171,38180,38174,-38176,38170,38167,-38166,38176,38175,-38178,38173,38150,-38166,38172,38162,-38156,38169,38172,-38151,38168,38173,-38163,38150, + 38172,-38171,38150,38168,-38170,38150,38173,-38169,38165,38167,-38156,38150,38170,-38166,38162,38165,-38156,38162,38172,-38170,38167,38172,-38156,38177,38179,-38172,38176,38180,-38176,38171,38179,-38179, + 38171,38176,-38178,38171,38180,-38177,38174,38163,-38167,38171,38178,-38175,38175,38174,-38167,38175,38179,-38178,38163,38179,-38167,38188,38190,38191,-38190,38198,38192,-38200,38208,38205,-38197,38203, + 38195,-38193,38189,38191,-38185,38186,38194,38189,-38183,38183,38190,-38189,38209,38201,-38205,38201,38208,-38194,38182,38189,-38185,38201,38193,-38205,38182,38184,-38184,38182,38187,-38187,38188,38189, + -38195,38188,38194,-38188,38182,38188,-38188,38182,38183,-38189,38202,38197,-38201,38209,38204,-38206,38200,38197,-38196,38206,38205,-38208,38203,38181,-38196,38202,38192,-38186,38199,38202,-38182,38198, + 38203,-38193,38181,38202,-38201,38181,38198,-38200,38181,38203,-38199,38195,38197,-38186,38181,38200,-38196,38192,38195,-38186,38192,38202,-38200,38197,38202,-38186,38207,38208,-38202,38206,38209,-38206, + 38201,38206,-38208,38201,38209,-38207,38204,38193,-38197,38205,38204,-38197,38205,38208,-38208,38193,38208,-38197,38218,38220,38221,-38220,38228,38222,-38230,38239,38235,-38227,38233,38225,-38223,38219, + 38221,-38214,38216,38224,38219,-38212,38212,38220,-38219,38240,38231,-38235,38217,38224,-38215,38211,38219,-38214,38214,38224,-38217,38211,38213,-38213,38214,38216,-38218,38211,38217,-38217,38238,38223, + -38235,38218,38219,-38225,38218,38224,-38218,38239,38223,-38239,38211,38218,-38218,38211,38212,-38219,38232,38227,-38231,38240,38234,-38236,38230,38227,-38226,38236,38235,-38238,38233,38210,-38226,38232, + 38222,-38216,38229,38232,-38211,38228,38233,-38223,38210,38232,-38231,38210,38228,-38230,38210,38233,-38229,38225,38227,-38216,38210,38230,-38226,38222,38225,-38216,38222,38232,-38230,38227,38232,-38216, + 38237,38239,-38232,38236,38240,-38236,38231,38239,-38239,38231,38236,-38238,38231,38240,-38237,38234,38223,-38227,38231,38238,-38235,38235,38234,-38227,38235,38239,-38238,38223,38239,-38227,34482,34657, + -34615,32678,32673,-32447 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.177115,-0.516003,-0.838076,-0.177115,-0.516003,-0.838076,-0.177115,-0.516003,-0.838076,-0.177115,-0.516003,-0.838076, + 0.585377,0.751529,0.304201,0.585377,0.751529,0.304201,0.585377,0.751529,0.304201,0.732158,0.282896,-0.619608, + 0.732158,0.282896,-0.619608,0.732158,0.282896,-0.619608,-0.150192,0.372195,-0.915922,-0.150192,0.372195,-0.915922, + -0.150192,0.372195,-0.915922,-0.118553,0.919519,-0.374739,-0.118553,0.919519,-0.374739,-0.118553,0.919519,-0.374739, + 0.528961,0.546006,0.649674,0.528961,0.546006,0.649674,0.528961,0.546006,0.649674,0.528961,0.546006,0.649674, + -0.118692,0.743567,0.658043,-0.118692,0.743567,0.658043,-0.118692,0.743567,0.658043,-0.118692,0.743567,0.658043, + 0.477784,0.705998,-0.522770,0.477784,0.705998,-0.522770,0.477784,0.705998,-0.522770,0.477784,0.705998,-0.522770, + 0.885282,-0.209143,-0.415373,0.885282,-0.209143,-0.415373,0.885282,-0.209143,-0.415373,0.885282,-0.209143,-0.415373, + 0.500549,0.703087,-0.505094,0.500549,0.703087,-0.505094,0.500549,0.703087,-0.505094,0.500549,0.703087,-0.505094, + -0.782217,0.605551,-0.146438,-0.782217,0.605551,-0.146438,-0.782217,0.605551,-0.146438,-0.782217,0.605551,-0.146438, + -0.632437,-0.671627,0.385929,-0.632437,-0.671627,0.385929,-0.632437,-0.671627,0.385929,-0.632437,-0.671627,0.385929, + 0.030963,0.160563,0.986540,0.030963,0.160563,0.986540,0.030963,0.160563,0.986540,0.344738,0.199215,0.917316, + 0.344738,0.199215,0.917316,0.344738,0.199215,0.917316,0.281862,0.482031,0.829578,0.281862,0.482031,0.829578, + 0.281862,0.482031,0.829578,-0.052681,0.460596,0.886045,-0.052681,0.460596,0.886045,-0.052681,0.460596,0.886045, + -0.022158,-0.422333,-0.906170,-0.022158,-0.422333,-0.906170,-0.022158,-0.422333,-0.906170,-0.022158,-0.422333,-0.906170, + -0.549696,0.304438,0.777915,-0.549696,0.304438,0.777915,-0.549696,0.304438,0.777915,-0.549696,0.304438,0.777915, + -0.954796,-0.279347,-0.101639,-0.954796,-0.279347,-0.101639,-0.954796,-0.279347,-0.101639,-0.954796,-0.279347,-0.101639, + 0.631417,0.358706,0.687490,0.631417,0.358706,0.687490,0.631417,0.358706,0.687490,0.631417,0.358706,0.687490, + -0.705980,0.137173,0.694821,-0.705980,0.137173,0.694821,-0.705980,0.137173,0.694821,-0.705980,0.137173,0.694821, + 0.877960,-0.477140,-0.039042,0.877960,-0.477140,-0.039042,0.877960,-0.477140,-0.039042,0.877960,-0.477140,-0.039042, + 0.023086,-0.169173,-0.985316,0.023086,-0.169173,-0.985316,0.023086,-0.169173,-0.985316,0.023086,-0.169173,-0.985316, + -0.709821,0.700710,-0.071840,-0.709821,0.700710,-0.071840,-0.709821,0.700710,-0.071840,-0.709821,0.700710,-0.071840, + -0.592914,-0.635940,0.493998,-0.592914,-0.635940,0.493998,-0.592914,-0.635940,0.493998,-0.592914,-0.635940,0.493998, + 0.831895,-0.447610,0.328018,0.831895,-0.447610,0.328018,0.831895,-0.447610,0.328018,0.831895,-0.447610,0.328018, + -0.684469,-0.483903,0.545289,-0.684469,-0.483903,0.545289,-0.684469,-0.483903,0.545289,0.250857,-0.590544,0.767026, + 0.250857,-0.590544,0.767026,0.250857,-0.590544,0.767026,0.446562,-0.892154,0.068143,0.446562,-0.892154,0.068143, + 0.446562,-0.892154,0.068143,-0.446561,-0.890638,-0.085709,-0.446561,-0.890638,-0.085709,-0.446561,-0.890638,-0.085709, + -0.568186,-0.065912,-0.820256,-0.568186,-0.065912,-0.820256,-0.568186,-0.065912,-0.820256,-0.568186,-0.065912,-0.820256, + -0.759599,0.300574,0.576771,-0.759599,0.300574,0.576771,-0.759599,0.300574,0.576771,-0.759599,0.300574,0.576771, + 0.567531,0.601995,0.561703,0.567531,0.601995,0.561703,0.567531,0.601995,0.561703,0.567531,0.601995,0.561703, + 0.295883,0.243217,0.923742,0.295883,0.243217,0.923742,0.295883,0.243217,0.923742,-0.518990,0.854124,-0.033479, + -0.518990,0.854124,-0.033479,-0.518990,0.854124,-0.033479,0.735583,-0.288151,0.613096,0.735583,-0.288151,0.613096, + 0.735583,-0.288151,0.613096,0.055992,-0.140288,-0.988526,0.055992,-0.140288,-0.988526,0.055992,-0.140288,-0.988526, + 0.296320,0.038976,0.954293,0.296320,0.038976,0.954293,0.296320,0.038976,0.954293,0.296320,0.038976,0.954293, + -0.747764,0.434489,0.502064,-0.747764,0.434489,0.502064,-0.747764,0.434489,0.502064,-0.747764,0.434489,0.502064, + 0.599321,-0.788663,-0.137202,0.599321,-0.788663,-0.137202,0.599321,-0.788663,-0.137202,0.599321,-0.788663,-0.137202, + -0.587782,-0.290270,-0.755153,-0.587782,-0.290270,-0.755153,-0.587782,-0.290270,-0.755153,-0.587782,-0.290270,-0.755153, + 0.520398,0.555340,0.648677,0.520398,0.555340,0.648677,0.520398,0.555340,0.648677,0.520398,0.555340,0.648677, + -0.538584,-0.602147,-0.589360,-0.538584,-0.602147,-0.589360,-0.538584,-0.602147,-0.589360,-0.538584,-0.602147,-0.589360, + -0.916373,0.303731,-0.260782,-0.916373,0.303731,-0.260782,-0.916373,0.303731,-0.260782,-0.916373,0.303731,-0.260782, + -0.368274,0.903658,-0.218578,-0.368274,0.903658,-0.218578,-0.368274,0.903658,-0.218578,-0.368274,0.903658,-0.218578, + -0.110856,-0.983157,0.145302,-0.110856,-0.983157,0.145302,-0.110856,-0.983157,0.145302,-0.145094,0.977687,-0.151905, + -0.145094,0.977687,-0.151905,-0.145094,0.977687,-0.151905,-0.145094,0.977687,-0.151905,-0.126461,0.550797,-0.825004, + -0.126461,0.550797,-0.825004,-0.126461,0.550797,-0.825004,-0.748523,0.073338,0.659040,-0.748523,0.073338,0.659040, + -0.748523,0.073338,0.659040,-0.748523,0.073338,0.659040,-0.273291,-0.789918,0.548946,-0.273291,-0.789918,0.548946, + -0.273291,-0.789918,0.548946,-0.273291,-0.789918,0.548946,0.362315,-0.214015,-0.907152,0.362315,-0.214015,-0.907152, + 0.362315,-0.214015,-0.907152,-0.879302,0.169490,0.445085,-0.879302,0.169490,0.445085,-0.879302,0.169490,0.445085, + -0.879302,0.169490,0.445085,-0.588624,0.656760,0.471369,-0.588624,0.656760,0.471369,-0.588624,0.656760,0.471369, + -0.588624,0.656760,0.471369,-0.785510,-0.264286,-0.559578,-0.785510,-0.264286,-0.559578,-0.785510,-0.264286,-0.559578, + -0.785510,-0.264286,-0.559578,-0.238373,0.861485,0.448354,-0.238373,0.861485,0.448354,-0.238373,0.861485,0.448354, + -0.238373,0.861485,0.448354,-0.960362,0.243851,0.135061,-0.960362,0.243851,0.135061,-0.960362,0.243851,0.135061, + -0.960362,0.243851,0.135061,-0.777760,0.045925,0.626881,-0.777760,0.045925,0.626881,-0.777760,0.045925,0.626881, + -0.777760,0.045925,0.626881,-0.156340,0.666081,0.729311,-0.156340,0.666081,0.729311,-0.156340,0.666081,0.729311, + -0.156340,0.666081,0.729311,0.023921,-0.363336,0.931351,0.023921,-0.363336,0.931351,0.023921,-0.363336,0.931351, + 0.023921,-0.363336,0.931351,0.022747,-0.667700,0.744083,0.022747,-0.667700,0.744083,0.022747,-0.667700,0.744083, + 0.180682,-0.043600,0.982575,0.180682,-0.043600,0.982575,0.180682,-0.043600,0.982575,0.180682,-0.043600,0.982575, + -0.764161,-0.597668,-0.242590,-0.764161,-0.597668,-0.242590,-0.764161,-0.597668,-0.242590,-0.764161,-0.597668,-0.242590, + -0.925288,0.123951,0.358438,-0.925288,0.123951,0.358438,-0.925288,0.123951,0.358438,-0.925288,0.123951,0.358438, + 0.599386,0.799256,0.043882,0.599386,0.799256,0.043882,0.599386,0.799256,0.043882,-0.356255,0.872599,-0.334145, + -0.356255,0.872599,-0.334145,-0.356255,0.872599,-0.334145,0.618657,0.779442,0.098658,0.618657,0.779442,0.098658, + 0.618657,0.779442,0.098658,0.461165,-0.371793,0.805666,0.461165,-0.371793,0.805666,0.461165,-0.371793,0.805666, + 0.461165,-0.371793,0.805666,0.702489,0.099009,0.704774,0.702489,0.099009,0.704774,0.702489,0.099009,0.704774, + 0.702489,0.099009,0.704774,-0.665093,-0.720236,0.197257,-0.665093,-0.720236,0.197257,-0.665093,-0.720236,0.197257, + -0.665093,-0.720236,0.197257,0.676226,0.036652,0.735782,0.676226,0.036652,0.735782,0.676226,0.036652,0.735782, + 0.676226,0.036652,0.735782,0.082561,-0.724198,0.684632,0.082561,-0.724198,0.684632,0.082561,-0.724198,0.684632, + 0.082561,-0.724198,0.684632,0.371652,0.600127,0.708324,0.371652,0.600127,0.708324,0.371652,0.600127,0.708324, + -0.199232,-0.865523,0.459539,-0.199232,-0.865523,0.459539,-0.199232,-0.865523,0.459539,-0.879620,-0.473969,0.040284, + -0.879620,-0.473969,0.040284,-0.879620,-0.473969,0.040284,-0.879620,-0.473969,0.040284,-0.263144,0.328315,0.907174, + -0.263144,0.328315,0.907174,-0.263144,0.328315,0.907174,-0.263144,0.328315,0.907174,-0.489356,0.066038,0.869580, + -0.489356,0.066038,0.869580,-0.489356,0.066038,0.869580,-0.884122,-0.448458,0.131203,-0.884122,-0.448458,0.131203, + -0.884122,-0.448458,0.131203,-0.884122,-0.448458,0.131203,0.928495,0.151647,-0.338970,0.928495,0.151647,-0.338970, + 0.928495,0.151647,-0.338970,0.928495,0.151647,-0.338970,0.961442,-0.244785,-0.125340,0.961442,-0.244785,-0.125340, + 0.961442,-0.244785,-0.125340,0.961442,-0.244785,-0.125340,-0.972419,0.225453,-0.059772,-0.972419,0.225453,-0.059772, + -0.972419,0.225453,-0.059772,-0.972419,0.225453,-0.059772,-0.353187,0.111414,-0.928895,-0.353187,0.111414,-0.928895, + -0.353187,0.111414,-0.928895,-0.242595,0.340966,-0.908234,-0.242595,0.340966,-0.908234,-0.242595,0.340966,-0.908234, + -0.318431,0.283447,-0.904577,-0.318431,0.283447,-0.904577,-0.318431,0.283447,-0.904577,-0.391188,0.377156,-0.839479, + -0.391188,0.377156,-0.839479,-0.391188,0.377156,-0.839479,-0.183569,-0.488270,0.853167,-0.183569,-0.488270,0.853167, + -0.183569,-0.488270,0.853167,-0.183569,-0.488270,0.853167,-0.140020,-0.578036,0.803909,-0.140020,-0.578036,0.803909, + -0.140020,-0.578036,0.803909,-0.140020,-0.578036,0.803909,-0.140020,-0.578036,0.803909,-0.588326,-0.537991,0.603688, + -0.588326,-0.537991,0.603688,-0.588326,-0.537991,0.603688,-0.588326,-0.537991,0.603688,0.005123,0.726117,-0.687552, + 0.005123,0.726117,-0.687552,0.005123,0.726117,-0.687552,0.005123,0.726117,-0.687552,0.377096,-0.596410,0.708586, + 0.377096,-0.596410,0.708586,0.377096,-0.596410,0.708586,0.390998,0.168126,0.904906,0.390998,0.168126,0.904906, + 0.390998,0.168126,0.904906,0.275318,0.813349,0.512507,0.275318,0.813349,0.512507,0.275318,0.813349,0.512507, + 0.147670,0.162099,-0.975663,0.147670,0.162099,-0.975663,0.147670,0.162099,-0.975663,0.147670,0.162099,-0.975663, + 0.045332,0.756394,-0.652543,0.045332,0.756394,-0.652543,0.045332,0.756394,-0.652543,0.045332,0.756394,-0.652543, + -0.791034,0.114532,0.600955,-0.791034,0.114532,0.600955,-0.791034,0.114532,0.600955,-0.791034,0.114532,0.600955, + -0.522529,-0.835008,0.172411,-0.522529,-0.835008,0.172411,-0.522529,-0.835008,0.172411,-0.522529,-0.835008,0.172411, + -0.793076,0.492279,-0.358736,-0.793076,0.492279,-0.358736,-0.793076,0.492279,-0.358736,-0.793076,0.492279,-0.358736, + 0.449141,0.717652,0.532210,0.449141,0.717652,0.532210,0.449141,0.717652,0.532210,0.449141,0.717652,0.532210, + 0.390946,-0.636279,0.665064,0.390946,-0.636279,0.665064,0.390946,-0.636279,0.665064,0.390946,-0.636279,0.665064, + 0.498246,0.858963,0.118039,0.498246,0.858963,0.118039,0.498246,0.858963,0.118039,0.498246,0.858963,0.118039, + 0.832426,-0.344774,0.433817,0.832426,-0.344774,0.433817,0.832426,-0.344774,0.433817,0.832426,-0.344774,0.433817, + -0.429460,-0.680933,0.593207,-0.429460,-0.680933,0.593207,-0.429460,-0.680933,0.593207,0.543295,0.574475,-0.612217, + 0.543295,0.574475,-0.612217,0.543295,0.574475,-0.612217,-0.080651,0.009512,0.996697,-0.080651,0.009512,0.996697, + -0.080651,0.009512,0.996697,-0.080651,0.009512,0.996697,0.538725,0.530256,0.654679,0.538725,0.530256,0.654679, + 0.538725,0.530256,0.654679,0.350278,0.934962,0.056134,0.350278,0.934962,0.056134,0.350278,0.934962,0.056134, + 0.350278,0.934962,0.056134,-0.180714,-0.162220,0.970066,-0.180714,-0.162220,0.970066,-0.180714,-0.162220,0.970066, + -0.180714,-0.162220,0.970066,-0.557627,0.647363,-0.519589,-0.557627,0.647363,-0.519589,-0.557627,0.647363,-0.519589, + 0.290014,0.501571,-0.815057,0.290014,0.501571,-0.815057,0.290014,0.501571,-0.815057,-0.857182,-0.439714,-0.268125, + -0.857182,-0.439714,-0.268125,-0.857182,-0.439714,-0.268125,-0.864178,-0.072541,0.497930,-0.864178,-0.072541,0.497930, + -0.864178,-0.072541,0.497930,-0.864178,-0.072541,0.497930,-0.222852,0.476801,0.850293,-0.222852,0.476801,0.850293, + -0.222852,0.476801,0.850293,-0.222852,0.476801,0.850293,0.109434,-0.862375,-0.494301,0.109434,-0.862375,-0.494301, + 0.109434,-0.862375,-0.494301,0.109434,-0.862375,-0.494301,-0.154396,0.912404,0.379053,-0.154396,0.912404,0.379053, + -0.154396,0.912404,0.379053,-0.154396,0.912404,0.379053,0.610342,-0.523551,-0.594456,0.610342,-0.523551,-0.594456, + 0.610342,-0.523551,-0.594456,0.610342,-0.523551,-0.594456,-0.769993,-0.237699,-0.592123,-0.769993,-0.237699,-0.592123, + -0.769993,-0.237699,-0.592123,-0.666799,0.497348,-0.554998,-0.666799,0.497348,-0.554998,-0.666799,0.497348,-0.554998, + -0.674191,0.129601,-0.727097,-0.674191,0.129601,-0.727097,-0.674191,0.129601,-0.727097,-0.674191,0.129601,-0.727097, + -0.087227,-0.160385,-0.983193,-0.087227,-0.160385,-0.983193,-0.087227,-0.160385,-0.983193,-0.138412,0.166773,-0.976232, + -0.138412,0.166773,-0.976232,-0.138412,0.166773,-0.976232,0.015538,0.440483,-0.897626,0.015538,0.440483,-0.897626, + 0.015538,0.440483,-0.897626,-0.530980,0.536789,-0.655681,-0.530980,0.536789,-0.655681,-0.530980,0.536789,-0.655681, + -0.669852,0.660839,-0.338512,-0.669852,0.660839,-0.338512,-0.669852,0.660839,-0.338512,-0.879198,0.471675,-0.067340, + -0.879198,0.471675,-0.067340,-0.879198,0.471675,-0.067340,-0.606374,-0.687641,-0.399324,-0.606374,-0.687641,-0.399324, + -0.606374,-0.687641,-0.399324,-0.606374,-0.687641,-0.399324,0.281858,0.198125,0.938777,0.281858,0.198125,0.938777, + 0.281858,0.198125,0.938777,0.281858,0.198125,0.938777,-0.507321,-0.677285,0.532832,-0.507321,-0.677285,0.532832, + -0.507321,-0.677285,0.532832,-0.507321,-0.677285,0.532832,-0.751416,0.024686,0.659367,-0.751416,0.024686,0.659367, + -0.751416,0.024686,0.659367,-0.751416,0.024686,0.659367,-0.634801,0.763034,-0.121684,-0.634801,0.763034,-0.121684, + -0.634801,0.763034,-0.121684,-0.634801,0.763034,-0.121684,-0.776704,-0.516409,-0.360628,-0.776704,-0.516409,-0.360628, + -0.776704,-0.516409,-0.360628,-0.776704,-0.516409,-0.360628,-0.386374,0.855113,0.345684,-0.386374,0.855113,0.345684, + -0.386374,0.855113,0.345684,-0.386374,0.855113,0.345684,-0.182710,0.295253,0.937786,-0.182710,0.295253,0.937786, + -0.182710,0.295253,0.937786,-0.182710,0.295253,0.937786,-0.271904,0.177927,-0.945733,-0.271904,0.177927,-0.945733, + -0.271904,0.177927,-0.945733,-0.271904,0.177927,-0.945733,-0.988344,-0.011766,0.151783,-0.988344,-0.011766,0.151783, + -0.988344,-0.011766,0.151783,-0.988344,-0.011766,0.151783,-0.297731,0.768102,-0.566901,-0.297731,0.768102,-0.566901, + -0.297731,0.768102,-0.566901,-0.297731,0.768102,-0.566901,-0.416568,-0.531984,0.737200,-0.416568,-0.531984,0.737200, + -0.416568,-0.531984,0.737200,-0.416568,-0.531984,0.737200,-0.149293,-0.899257,0.411154,-0.149293,-0.899257,0.411154, + -0.149293,-0.899257,0.411154,-0.088179,0.902042,-0.422546,-0.088179,0.902042,-0.422546,-0.088179,0.902042,-0.422546, + -0.972798,-0.157912,-0.169494,-0.972798,-0.157912,-0.169494,-0.972798,-0.157912,-0.169494,-0.160499,-0.216164,-0.963075, + -0.160499,-0.216164,-0.963075,-0.160499,-0.216164,-0.963075,-0.160499,-0.216164,-0.963075,0.852452,0.025187,-0.522199, + 0.852452,0.025187,-0.522199,0.852452,0.025187,-0.522199,0.685158,-0.726582,0.051356,0.685158,-0.726582,0.051356, + 0.685158,-0.726582,0.051356,0.685158,-0.726582,0.051356,-0.976124,-0.067538,0.206449,-0.976124,-0.067538,0.206449, + -0.976124,-0.067538,0.206449,-0.976124,-0.067538,0.206449,-0.959050,0.172076,0.224975,-0.959050,0.172076,0.224975, + -0.959050,0.172076,0.224975,-0.959050,0.172076,0.224975,-0.523174,0.851609,-0.032425,-0.523174,0.851609,-0.032425, + -0.523174,0.851609,-0.032425,-0.523174,0.851609,-0.032425,-0.900217,0.409566,0.147870,-0.900217,0.409566,0.147870, + -0.900217,0.409566,0.147870,-0.900217,0.409566,0.147870,-0.467813,-0.804155,0.366723,-0.467813,-0.804155,0.366723, + -0.467813,-0.804155,0.366723,-0.467813,-0.804155,0.366723,-0.256921,-0.914918,0.311315,-0.256921,-0.914918,0.311315, + -0.256921,-0.914918,0.311315,0.222448,-0.012288,0.974867,0.222448,-0.012288,0.974867,0.222448,-0.012288,0.974867, + -0.020776,-0.368730,0.929304,-0.020776,-0.368730,0.929304,-0.020776,-0.368730,0.929304,-0.022301,-0.817078,0.576096, + -0.022301,-0.817078,0.576096,-0.022301,-0.817078,0.576096,-0.022301,-0.817078,0.576096,0.149131,-0.511527,0.846227, + 0.149131,-0.511527,0.846227,0.149131,-0.511527,0.846227,0.729497,-0.238450,0.641074,0.729497,-0.238450,0.641074, + 0.729497,-0.238450,0.641074,-0.425179,-0.630266,-0.649606,-0.425179,-0.630266,-0.649606,-0.425179,-0.630266,-0.649606, + -0.425179,-0.630266,-0.649606,0.850110,0.301840,0.431516,0.850110,0.301840,0.431516,0.850110,0.301840,0.431516, + 0.400267,0.860324,-0.315641,0.400267,0.860324,-0.315641,0.400267,0.860324,-0.315641,0.086750,0.039043,-0.995465, + 0.086750,0.039043,-0.995465,0.086750,0.039043,-0.995465,0.823962,-0.192525,-0.532937,0.823962,-0.192525,-0.532937, + 0.823962,-0.192525,-0.532937,0.209170,0.831607,0.514469,0.209170,0.831607,0.514469,0.209170,0.831607,0.514469, + 0.209170,0.831607,0.514469,0.733623,0.501816,0.458233,0.733623,0.501816,0.458233,0.733623,0.501816,0.458233, + 0.733623,0.501816,0.458233,0.130439,0.628480,-0.766811,0.130439,0.628480,-0.766811,0.130439,0.628480,-0.766811, + 0.130439,0.628480,-0.766811,-0.078887,0.907420,-0.412753,-0.078887,0.907420,-0.412753,-0.078887,0.907420,-0.412753, + -0.078887,0.907420,-0.412753,0.151475,0.570414,-0.807269,0.151475,0.570414,-0.807269,0.151475,0.570414,-0.807269, + 0.151475,0.570414,-0.807269,0.998773,-0.048767,0.008566,0.998773,-0.048767,0.008566,0.998773,-0.048767,0.008566, + 0.998773,-0.048767,0.008566,-0.009228,-0.673420,0.739203,-0.009228,-0.673420,0.739203,-0.009228,-0.673420,0.739203, + -0.009228,-0.673420,0.739203,-0.056275,0.541199,0.839009,-0.056275,0.541199,0.839009,-0.056275,0.541199,0.839009, + -0.255355,0.714080,0.651831,-0.255355,0.714080,0.651831,-0.255355,0.714080,0.651831,-0.017418,0.846172,0.532624, + -0.017418,0.846172,0.532624,-0.017418,0.846172,0.532624,0.209591,0.674453,0.707944,0.209591,0.674453,0.707944, + 0.209591,0.674453,0.707944,0.669854,0.203767,-0.713985,0.669854,0.203767,-0.713985,0.669854,0.203767,-0.713985, + 0.669854,0.203767,-0.713985,-0.396690,-0.738409,0.545334,-0.396690,-0.738409,0.545334,-0.396690,-0.738409,0.545334, + -0.396690,-0.738409,0.545334,0.179957,-0.979161,-0.094125,0.179957,-0.979161,-0.094125,0.179957,-0.979161,-0.094125, + 0.179957,-0.979161,-0.094125,-0.651048,0.402598,0.643468,-0.651048,0.402598,0.643468,-0.651048,0.402598,0.643468, + -0.651048,0.402598,0.643468,-0.174010,-0.873229,0.455184,-0.174010,-0.873229,0.455184,-0.174010,-0.873229,0.455184, + -0.174010,-0.873229,0.455184,-0.962417,0.119157,-0.244038,-0.962417,0.119157,-0.244038,-0.962417,0.119157,-0.244038, + -0.962417,0.119157,-0.244038,0.105801,-0.366544,-0.924366,0.105801,-0.366544,-0.924366,0.105801,-0.366544,-0.924366, + 0.105801,-0.366544,-0.924366,0.991259,0.108782,0.074643,0.991259,0.108782,0.074643,0.991259,0.108782,0.074643, + 0.991259,0.108782,0.074643,-0.044922,-0.636716,0.769789,-0.044922,-0.636716,0.769789,-0.044922,-0.636716,0.769789, + -0.044922,-0.636716,0.769789,-0.967028,0.239998,0.085191,-0.967028,0.239998,0.085191,-0.967028,0.239998,0.085191, + -0.967028,0.239998,0.085191,-0.617057,-0.763751,-0.189538,-0.617057,-0.763751,-0.189538,-0.617057,-0.763751,-0.189538, + -0.995385,-0.076781,-0.057569,-0.995385,-0.076781,-0.057569,-0.995385,-0.076781,-0.057569,-0.805638,0.155231,-0.571709, + -0.805638,0.155231,-0.571709,-0.805638,0.155231,-0.571709,-0.486452,-0.501078,-0.715741,-0.486452,-0.501078,-0.715741, + -0.486452,-0.501078,-0.715741,0.796352,-0.262017,-0.545133,0.796352,-0.262017,-0.545133,0.796352,-0.262017,-0.545133, + 0.796352,-0.262017,-0.545133,0.066603,-0.835913,0.544806,0.066603,-0.835913,0.544806,0.066603,-0.835913,0.544806, + 0.066603,-0.835913,0.544806,-0.139606,0.310988,0.940105,-0.139606,0.310988,0.940105,-0.139606,0.310988,0.940105, + -0.139606,0.310988,0.940105,-0.227677,0.480867,0.846717,-0.227677,0.480867,0.846717,-0.227677,0.480867,0.846717, + 0.939217,0.337311,0.063973,0.939217,0.337311,0.063973,0.939217,0.337311,0.063973,-0.840102,0.313382,0.442742, + -0.840102,0.313382,0.442742,-0.840102,0.313382,0.442742,0.129322,-0.233736,-0.963661,0.129322,-0.233736,-0.963661, + 0.129322,-0.233736,-0.963661,-0.185364,-0.082608,0.979192,-0.185364,-0.082608,0.979192,-0.185364,-0.082608,0.979192, + -0.185364,-0.082608,0.979192,0.360889,-0.909815,0.204930,0.360889,-0.909815,0.204930,0.360889,-0.909815,0.204930, + 0.360889,-0.909815,0.204930,-0.764925,0.594987,-0.246739,-0.764925,0.594987,-0.246739,-0.764925,0.594987,-0.246739, + -0.764925,0.594987,-0.246739,-0.101862,-0.218609,-0.970481,-0.101862,-0.218609,-0.970481,-0.101862,-0.218609,-0.970481, + -0.101862,-0.218609,-0.970481,-0.493038,0.526329,0.692742,-0.493038,0.526329,0.692742,-0.493038,0.526329,0.692742, + -0.493038,0.526329,0.692742,-0.194344,-0.668714,-0.717672,-0.194344,-0.668714,-0.717672,-0.194344,-0.668714,-0.717672, + -0.194344,-0.668714,-0.717672,0.497929,0.027102,-0.866794,0.497929,0.027102,-0.866794,0.497929,0.027102,-0.866794, + 0.497929,0.027102,-0.866794,0.310147,0.814944,-0.489567,0.310147,0.814944,-0.489567,0.310147,0.814944,-0.489567, + 0.310147,0.814944,-0.489567,0.123749,-0.990415,0.061351,0.123749,-0.990415,0.061351,0.123749,-0.990415,0.061351, + 0.149446,0.957649,-0.246117,0.149446,0.957649,-0.246117,0.149446,0.957649,-0.246117,0.149446,0.957649,-0.246117, + -0.493936,0.564269,-0.661535,-0.493936,0.564269,-0.661535,-0.493936,0.564269,-0.661535,0.996405,0.001634,-0.084702, + 0.996405,0.001634,-0.084702,0.996405,0.001634,-0.084702,0.996405,0.001634,-0.084702,0.523671,-0.839983,0.142118, + 0.523671,-0.839983,0.142118,0.523671,-0.839983,0.142118,0.523671,-0.839983,0.142118,-0.920838,-0.276991,-0.274471, + -0.920838,-0.276991,-0.274471,-0.920838,-0.276991,-0.274471,0.924319,-0.184628,-0.333986,0.924319,-0.184628,-0.333986, + 0.924319,-0.184628,-0.333986,0.924319,-0.184628,-0.333986,0.915182,0.361506,-0.178199,0.915182,0.361506,-0.178199, + 0.915182,0.361506,-0.178199,0.915182,0.361506,-0.178199,0.017529,-0.421956,-0.906447,0.017529,-0.421956,-0.906447, + 0.017529,-0.421956,-0.906447,0.017529,-0.421956,-0.906447,0.025910,0.849483,-0.526979,0.025910,0.849483,-0.526979, + 0.025910,0.849483,-0.526979,0.709839,0.703341,0.037934,0.709839,0.703341,0.037934,0.709839,0.703341,0.037934, + 0.709839,0.703341,0.037934,0.780811,-0.098008,-0.617033,0.780811,-0.098008,-0.617033,0.780811,-0.098008,-0.617033, + 0.780811,-0.098008,-0.617033,0.948684,-0.293040,-0.118854,0.948684,-0.293040,-0.118854,0.948684,-0.293040,-0.118854, + 0.948684,-0.293040,-0.118854,0.826646,0.473083,0.304711,0.826646,0.473083,0.304711,0.826646,0.473083,0.304711, + 0.826646,0.473083,0.304711,0.525153,-0.461748,0.714845,0.525153,-0.461748,0.714845,0.525153,-0.461748,0.714845, + 0.525153,-0.461748,0.714845,0.296291,-0.721407,0.625926,0.296291,-0.721407,0.625926,0.296291,-0.721407,0.625926, + 0.564606,-0.118982,0.816739,0.564606,-0.118982,0.816739,0.564606,-0.118982,0.816739,0.564606,-0.118982,0.816739, + 0.120694,-0.771400,-0.624800,0.120694,-0.771400,-0.624800,0.120694,-0.771400,-0.624800,0.120694,-0.771400,-0.624800, + 0.877709,-0.230047,-0.420364,0.877709,-0.230047,-0.420364,0.877709,-0.230047,-0.420364,0.877709,-0.230047,-0.420364, + -0.091982,0.934998,0.342518,-0.091982,0.934998,0.342518,-0.091982,0.934998,0.342518,0.269389,0.749760,-0.604392, + 0.269389,0.749760,-0.604392,0.269389,0.749760,-0.604392,-0.071895,0.915024,0.396941,-0.071895,0.915024,0.396941, + -0.071895,0.915024,0.396941,0.157274,-0.312122,0.936934,0.157274,-0.312122,0.936934,0.157274,-0.312122,0.936934, + 0.157274,-0.312122,0.936934,0.084386,0.220368,0.971760,0.084386,0.220368,0.971760,0.084386,0.220368,0.971760, + 0.084386,0.220368,0.971760,0.328904,-0.915398,-0.232097,0.328904,-0.915398,-0.232097,0.328904,-0.915398,-0.232097, + 0.328904,-0.915398,-0.232097,0.102884,0.149221,0.983437,0.102884,0.149221,0.983437,0.102884,0.149221,0.983437, + 0.102884,0.149221,0.983437,-0.715608,-0.408797,0.566383,-0.715608,-0.408797,0.566383,-0.715608,-0.408797,0.566383, + -0.715608,-0.408797,0.566383,-0.439725,0.581913,0.684119,-0.439725,0.581913,0.684119,-0.439725,0.581913,0.684119, + -0.715684,-0.696319,0.054185,-0.715684,-0.696319,0.054185,-0.715684,-0.696319,0.054185,-0.048346,-0.998327,-0.031699, + -0.048346,-0.998327,-0.031699,-0.048346,-0.998327,-0.031699,-0.048346,-0.998327,-0.031699,-0.520383,-0.574281,0.631983, + -0.520383,-0.574281,0.631983,-0.520383,-0.574281,0.631983,-0.520383,-0.574281,0.631983,-0.238541,-0.291209,0.926442, + -0.238541,-0.291209,0.926442,-0.238541,-0.291209,0.926442,0.222819,-0.950226,0.217767,0.222819,-0.950226,0.217767, + 0.222819,-0.950226,0.217767,0.222819,-0.950226,0.217767,0.371140,0.772425,-0.515378,0.371140,0.772425,-0.515378, + 0.371140,0.772425,-0.515378,0.371140,0.772425,-0.515378,-0.794307,0.607394,-0.012227,-0.794307,0.607394,-0.012227, + -0.794307,0.607394,-0.012227,-0.794307,0.607394,-0.012227,0.803841,-0.584617,-0.109835,0.803841,-0.584617,-0.109835, + 0.803841,-0.584617,-0.109835,0.803841,-0.584617,-0.109835,0.881583,0.269058,-0.387838,0.881583,0.269058,-0.387838, + 0.881583,0.269058,-0.387838,0.841686,0.534455,0.076951,0.841686,0.534455,0.076951,0.841686,0.534455,0.076951, + 0.976434,0.213243,-0.033238,0.976434,0.213243,-0.033238,0.976434,0.213243,-0.033238,0.932462,0.288958,-0.216835, + 0.932462,0.288958,-0.216835,0.932462,0.288958,-0.216835,0.093560,-0.453493,0.886335,0.093560,-0.453493,0.886335, + 0.093560,-0.453493,0.886335,0.093560,-0.453493,0.886335,0.057010,0.099427,0.993410,0.057010,0.099427,0.993410, + 0.057010,0.099427,0.993410,0.057010,0.099427,0.993410,0.057010,0.099427,0.993410,0.004092,-0.847048,0.531501, + 0.004092,-0.847048,0.531501,0.004092,-0.847048,0.531501,0.004092,-0.847048,0.531501,0.286823,0.585110,-0.758537, + 0.286823,0.585110,-0.758537,0.286823,0.585110,-0.758537,0.286823,0.585110,-0.758537,0.502338,0.486502,0.714823, + 0.502338,0.486502,0.714823,0.502338,0.486502,0.714823,0.249711,0.201164,0.947195,0.249711,0.201164,0.947195, + 0.249711,0.201164,0.947195,0.557826,0.730493,0.393968,0.557826,0.730493,0.393968,0.557826,0.730493,0.393968, + -0.731014,0.286052,-0.619510,-0.731014,0.286052,-0.619510,-0.731014,0.286052,-0.619510,-0.731014,0.286052,-0.619510, + -0.231853,0.812840,-0.534355,-0.231853,0.812840,-0.534355,-0.231853,0.812840,-0.534355,-0.231853,0.812840,-0.534355, + 0.958827,-0.231331,-0.164735,0.958827,-0.231331,-0.164735,0.958827,-0.231331,-0.164735,0.958827,-0.231331,-0.164735, + 0.197092,-0.965522,-0.170066,0.197092,-0.965522,-0.170066,0.197092,-0.965522,-0.170066,0.197092,-0.965522,-0.170066, + 0.833746,-0.205073,-0.512653,0.833746,-0.205073,-0.512653,0.833746,-0.205073,-0.512653,0.833746,-0.205073,-0.512653, + 0.283776,0.777071,0.561812,0.283776,0.777071,0.561812,0.283776,0.777071,0.561812,0.283776,0.777071,0.561812, + -0.877380,0.134815,0.460467,-0.877380,0.134815,0.460467,-0.877380,0.134815,0.460467,-0.877380,0.134815,0.460467, + -0.674691,0.403100,0.618306,-0.674691,0.403100,0.618306,-0.674691,0.403100,0.618306,-0.674691,0.403100,0.618306, + -0.931485,0.363752,0.004407,-0.931485,0.363752,0.004407,-0.931485,0.363752,0.004407,-0.931485,0.363752,0.004407, + 0.163855,-0.844516,0.509848,0.163855,-0.844516,0.509848,0.163855,-0.844516,0.509848,0.427012,0.819413,-0.382391, + 0.427012,0.819413,-0.382391,0.427012,0.819413,-0.382391,-0.550017,0.415869,0.724247,-0.550017,0.415869,0.724247, + -0.550017,0.415869,0.724247,-0.550017,0.415869,0.724247,-0.264570,0.546271,0.794727,-0.264570,0.546271,0.794727, + -0.264570,0.546271,0.794727,0.341566,0.937051,-0.072588,0.341566,0.937051,-0.072588,0.341566,0.937051,-0.072588, + 0.341566,0.937051,-0.072588,0.150291,-0.447092,0.881771,0.150291,-0.447092,0.881771,0.150291,-0.447092,0.881771, + 0.150291,-0.447092,0.881771,0.533161,0.260716,-0.804839,0.533161,0.260716,-0.804839,0.533161,0.260716,-0.804839, + 0.024195,0.386046,-0.922162,0.024195,0.386046,-0.922162,0.024195,0.386046,-0.922162,0.271192,-0.901022,-0.338548, + 0.271192,-0.901022,-0.338548,0.271192,-0.901022,-0.338548,0.613076,-0.719544,0.326182,0.613076,-0.719544,0.326182, + 0.613076,-0.719544,0.326182,0.613076,-0.719544,0.326182,0.781410,0.266189,0.564395,0.781410,0.266189,0.564395, + 0.781410,0.266189,0.564395,0.781410,0.266189,0.564395,-0.694178,-0.704595,-0.147182,-0.694178,-0.704595,-0.147182, + -0.694178,-0.704595,-0.147182,-0.694178,-0.704595,-0.147182,0.657384,0.753020,0.028403,0.657384,0.753020,0.028403, + 0.657384,0.753020,0.028403,0.657384,0.753020,0.028403,-0.973018,-0.212674,0.089473,-0.973018,-0.212674,0.089473, + -0.973018,-0.212674,0.089473,-0.973018,-0.212674,0.089473,-0.006713,-0.387562,-0.921819,-0.006713,-0.387562,-0.921819, + -0.006713,-0.387562,-0.921819,0.502094,0.366752,-0.783195,0.502094,0.366752,-0.783195,0.502094,0.366752,-0.783195, + 0.511653,-0.228233,-0.828324,0.511653,-0.228233,-0.828324,0.511653,-0.228233,-0.828324,0.511653,-0.228233,-0.828324, + -0.265252,-0.060510,-0.962278,-0.265252,-0.060510,-0.962278,-0.265252,-0.060510,-0.962278,-0.010960,0.058652,-0.998218, + -0.010960,0.058652,-0.998218,-0.010960,0.058652,-0.998218,-0.000005,0.446418,-0.894825,-0.000005,0.446418,-0.894825, + -0.000005,0.446418,-0.894825,0.792341,0.323450,-0.517277,0.792341,0.323450,-0.517277,0.792341,0.323450,-0.517277, + 0.977599,0.152543,0.145022,0.977599,0.152543,0.145022,0.977599,0.152543,0.145022,0.957120,-0.191904,0.217013, + 0.957120,-0.191904,0.217013,0.957120,-0.191904,0.217013,-0.135153,-0.912981,-0.384967,-0.135153,-0.912981,-0.384967, + -0.135153,-0.912981,-0.384967,-0.135153,-0.912981,-0.384967,0.339058,0.338774,0.877651,0.339058,0.338774,0.877651, + 0.339058,0.338774,0.877651,0.339058,0.338774,0.877651,-0.034212,-0.954868,0.295055,-0.034212,-0.954868,0.295055, + -0.034212,-0.954868,0.295055,-0.034212,-0.954868,0.295055,0.683146,-0.662246,0.307801,0.683146,-0.662246,0.307801, + 0.683146,-0.662246,0.307801,0.683146,-0.662246,0.307801,0.905387,0.161679,-0.392600,0.905387,0.161679,-0.392600, + 0.905387,0.161679,-0.392600,0.905387,0.161679,-0.392600,0.109391,-0.826917,-0.551582,0.109391,-0.826917,-0.551582, + 0.109391,-0.826917,-0.551582,0.109391,-0.826917,-0.551582,0.959332,0.272317,-0.074337,0.959332,0.272317,-0.074337, + 0.959332,0.272317,-0.074337,0.959332,0.272317,-0.074337,0.517257,-0.117876,0.847673,0.517257,-0.117876,0.847673, + 0.517257,-0.117876,0.847673,0.517257,-0.117876,0.847673,0.052651,0.034542,-0.998015,0.052651,0.034542,-0.998015, + 0.052651,0.034542,-0.998015,0.052651,0.034542,-0.998015,0.719663,-0.669493,0.184025,0.719663,-0.669493,0.184025, + 0.719663,-0.669493,0.184025,0.719663,-0.669493,0.184025,0.300234,0.798606,-0.521621,0.300234,0.798606,-0.521621, + 0.300234,0.798606,-0.521621,0.300234,0.798606,-0.521621,0.161563,-0.719085,0.675880,0.161563,-0.719085,0.675880, + 0.161563,-0.719085,0.675880,0.161563,-0.719085,0.675880,-0.445999,-0.592673,0.670689,-0.445999,-0.592673,0.670689, + -0.445999,-0.592673,0.670689,0.595527,0.515593,-0.616045,0.595527,0.515593,-0.616045,0.595527,0.515593,-0.616045, + 0.450756,-0.875292,-0.175170,0.450756,-0.875292,-0.175170,0.450756,-0.875292,-0.175170,0.738011,0.155833,-0.656549, + 0.738011,0.155833,-0.656549,0.738011,0.155833,-0.656549,0.738011,0.155833,-0.656549,0.028071,0.973909,-0.225196, + 0.028071,0.973909,-0.225196,0.028071,0.973909,-0.225196,-0.960258,0.093009,-0.263162,-0.960258,0.093009,-0.263162, + -0.960258,0.093009,-0.263162,-0.960258,0.093009,-0.263162,0.440344,-0.596581,0.670961,0.440344,-0.596581,0.670961, + 0.440344,-0.596581,0.670961,0.440344,-0.596581,0.670961,0.820379,-0.177290,-0.543642,0.820379,-0.177290,-0.543642, + 0.820379,-0.177290,-0.543642,0.820379,-0.177290,-0.543642,0.580990,0.634817,-0.509370,0.580990,0.634817,-0.509370, + 0.580990,0.634817,-0.509370,0.580990,0.634817,-0.509370,0.804917,0.074781,-0.588657,0.804917,0.074781,-0.588657, + 0.804917,0.074781,-0.588657,0.804917,0.074781,-0.588657,0.296730,-0.954265,0.036479,0.296730,-0.954265,0.036479, + 0.296730,-0.954265,0.036479,0.296730,-0.954265,0.036479,0.088774,-0.982792,0.161981,0.088774,-0.982792,0.161981, + 0.088774,-0.982792,0.161981,0.542788,-0.075185,0.836498,0.542788,-0.075185,0.836498,0.542788,-0.075185,0.836498, + 0.550254,-0.480839,0.682652,0.550254,-0.480839,0.682652,0.550254,-0.480839,0.682652,0.158452,-0.852566,0.498021, + 0.158452,-0.852566,0.498021,0.158452,-0.852566,0.498021,0.158452,-0.852566,0.498021,0.338434,-0.548695,0.764458, + 0.338434,-0.548695,0.764458,0.338434,-0.548695,0.764458,-0.326054,0.533865,0.780177,-0.326054,0.533865,0.780177, + -0.326054,0.533865,0.780177,0.151973,0.438309,-0.885884,0.151973,0.438309,-0.885884,0.151973,0.438309,-0.885884, + 0.151973,0.438309,-0.885884,-0.042561,0.591176,-0.805419,-0.042561,0.591176,-0.805419,-0.042561,0.591176,-0.805419, + -0.042561,0.591176,-0.805419,0.151490,0.837548,-0.524941,0.151490,0.837548,-0.524941,0.151490,0.837548,-0.524941, + 0.151490,0.837548,-0.524941,0.263128,0.373752,-0.889423,0.263128,0.373752,-0.889423,0.263128,0.373752,-0.889423, + 0.263128,0.373752,-0.889423,-0.134852,0.050631,-0.989571,-0.134852,0.050631,-0.989571,-0.134852,0.050631,-0.989571, + -0.055233,0.538536,-0.840790,-0.055233,0.538536,-0.840790,-0.055233,0.538536,-0.840790,-0.131568,0.055609,-0.989746, + -0.131568,0.055609,-0.989746,-0.131568,0.055609,-0.989746,-0.026426,0.893786,-0.447715,-0.026426,0.893786,-0.447715, + -0.026426,0.893786,-0.447715,-0.026426,0.893786,-0.447715,-0.322164,0.424385,-0.846232,-0.322164,0.424385,-0.846232, + -0.322164,0.424385,-0.846232,-0.322164,0.424385,-0.846232,-0.022536,0.998875,0.041727,-0.022536,0.998875,0.041727, + -0.022536,0.998875,0.041727,-0.022536,0.998875,0.041727,-0.217999,-0.041305,0.975075,-0.217999,-0.041305,0.975075, + -0.217999,-0.041305,0.975075,-0.217999,-0.041305,0.975075,0.340354,0.035295,-0.939635,0.340354,0.035295,-0.939635, + 0.340354,0.035295,-0.939635,0.340354,0.035295,-0.939635,-0.970657,0.044580,-0.236298,-0.970657,0.044580,-0.236298, + -0.970657,0.044580,-0.236298,-0.970657,0.044580,-0.236298,0.967553,-0.047185,0.248222,0.967553,-0.047185,0.248222, + 0.967553,-0.047185,0.248222,0.967553,-0.047185,0.248222,0.035845,0.997601,0.059229,0.035845,0.997601,0.059229, + 0.035845,0.997601,0.059229,0.035845,0.997601,0.059229,0.027819,0.996409,0.079965,0.027819,0.996409,0.079965, + 0.027819,0.996409,0.079965,0.972913,-0.045641,0.226620,0.972913,-0.045641,0.226620,0.972913,-0.045641,0.226620, + 0.972913,-0.045641,0.226620,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725, + -0.254840,-0.066043,0.964725,0.296587,0.063924,-0.952864,0.296587,0.063924,-0.952864,0.296587,0.063924,-0.952864, + 0.296587,0.063924,-0.952864,0.251881,0.015065,-0.967641,0.251881,0.015065,-0.967641,0.251881,0.015065,-0.967641, + 0.251881,0.015065,-0.967641,-0.953395,0.050477,-0.297471,-0.953395,0.050477,-0.297471,-0.953395,0.050477,-0.297471, + -0.953395,0.050477,-0.297471,0.028037,0.996411,0.079867,0.028037,0.996411,0.079867,0.028037,0.996411,0.079867, + -0.212911,-0.033302,0.976504,-0.212911,-0.033302,0.976504,-0.212911,-0.033302,0.976504,-0.212911,-0.033302,0.976504, + 0.968332,-0.047155,0.245174,0.968332,-0.047155,0.245174,0.968332,-0.047155,0.245174,0.968332,-0.047155,0.245174, + -0.952121,0.048058,-0.301920,-0.952121,0.048058,-0.301920,-0.952121,0.048058,-0.301920,-0.952121,0.048058,-0.301920, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079, + 0.029082,0.996690,0.075911,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911, + 0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079, + -0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911, + 0.255200,0.079066,-0.963650,0.255200,0.079066,-0.963650,0.255200,0.079066,-0.963650,0.255200,0.079066,-0.963650, + 0.254846,0.066047,-0.964724,0.254846,0.066047,-0.964724,0.254846,0.066047,-0.964724,0.254846,0.066047,-0.964724, + -0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077, + 0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923, + 0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081, + -0.029085,-0.996690,-0.075912,-0.029085,-0.996690,-0.075912,-0.029085,-0.996690,-0.075912,-0.029085,-0.996690,-0.075912, + 0.255151,0.077207,-0.963814,0.255151,0.077207,-0.963814,0.255151,0.077207,-0.963814,0.255151,0.077207,-0.963814, + 0.966545,-0.047399,0.252078,0.966545,-0.047399,0.252078,0.966545,-0.047399,0.252078,0.966545,-0.047399,0.252078, + -0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077, + 0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924, + 0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077, + -0.029082,-0.996689,-0.075935,-0.029082,-0.996689,-0.075935,-0.029082,-0.996689,-0.075935,-0.029082,-0.996689,-0.075935, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.029084,0.996690,0.075914,0.029084,0.996690,0.075914,0.029084,0.996690,0.075914,0.029084,0.996690,0.075914, + -0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079, + 0.029082,0.996691,0.075899,0.029082,0.996691,0.075899,0.029082,0.996691,0.075899,0.029082,0.996691,0.075899, + 0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079, + -0.029082,-0.996689,-0.075923,-0.029082,-0.996689,-0.075923,-0.029082,-0.996689,-0.075923,-0.029082,-0.996689,-0.075923, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + -0.966546,0.047407,-0.252076,-0.966546,0.047407,-0.252076,-0.966546,0.047407,-0.252076,-0.966546,0.047407,-0.252076, + -0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077, + 0.029076,0.996690,0.075918,0.029076,0.996690,0.075918,0.029076,0.996690,0.075918,0.029076,0.996690,0.075918, + 0.966544,-0.047405,0.252082,0.966544,-0.047405,0.252082,0.966544,-0.047405,0.252082,0.966544,-0.047405,0.252082, + -0.029081,-0.996690,-0.075918,-0.029081,-0.996690,-0.075918,-0.029081,-0.996690,-0.075918,-0.029081,-0.996690,-0.075918, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + -0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.966544,-0.047410,0.252080,0.966544,-0.047410,0.252080,0.966544,-0.047410,0.252080,0.966544,-0.047410,0.252080, + 0.029084,0.996690,0.075914,0.029084,0.996690,0.075914,0.029084,0.996690,0.075914,0.029084,0.996690,0.075914, + -0.966545,0.047409,-0.252078,-0.966545,0.047409,-0.252078,-0.966545,0.047409,-0.252078,-0.966545,0.047409,-0.252078, + -0.029084,-0.996691,-0.075905,-0.029084,-0.996691,-0.075905,-0.029084,-0.996691,-0.075905,-0.029084,-0.996691,-0.075905, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.966545,-0.047409,0.252078,0.966545,-0.047409,0.252078,0.966545,-0.047409,0.252078,0.966545,-0.047409,0.252078, + 0.029084,0.996689,0.075924,0.029084,0.996689,0.075924,0.029084,0.996689,0.075924,0.029084,0.996689,0.075924, + -0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077, + -0.029084,-0.996690,-0.075914,-0.029084,-0.996690,-0.075914,-0.029084,-0.996690,-0.075914,-0.029084,-0.996690,-0.075914, + -0.962555,0.048404,-0.266730,-0.962555,0.048404,-0.266730,-0.962555,0.048404,-0.266730,-0.962555,0.048404,-0.266730, + 0.033608,0.996883,0.071372,0.033608,0.996883,0.071372,0.033608,0.996883,0.071372,0.033608,0.996883,0.071372, + 0.971823,-0.040539,0.232198,0.971823,-0.040539,0.232198,0.971823,-0.040539,0.232198,0.971823,-0.040539,0.232198, + -0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254845,-0.066048,0.964724,-0.254845,-0.066048,0.964724,-0.254845,-0.066048,0.964724,-0.254845,-0.066048,0.964724, + 0.005765,0.986269,0.165045,0.005765,0.986269,0.165045,0.005765,0.986269,0.165045,0.005765,0.986269,0.165045, + -0.255153,-0.077206,0.963813,-0.255153,-0.077206,0.963813,-0.255153,-0.077206,0.963813,-0.255153,-0.077206,0.963813, + -0.255200,-0.079067,0.963650,-0.255200,-0.079067,0.963650,-0.255200,-0.079067,0.963650,-0.255200,-0.079067,0.963650, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.966545,0.047404,-0.252080,-0.966545,0.047404,-0.252080,-0.966545,0.047404,-0.252080,-0.966545,0.047404,-0.252080, + 0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924, + 0.966546,-0.047404,0.252075,0.966546,-0.047404,0.252075,0.966546,-0.047404,0.252075,0.966546,-0.047404,0.252075, + -0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918, + 0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114, + 0.256335,0.213551,-0.942703,0.256335,0.213551,-0.942703,0.256335,0.213551,-0.942703,0.256335,0.213551,-0.942703, + -0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079, + 0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923, + 0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077, + -0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907, + 0.255058,0.073685,-0.964114,0.255058,0.073685,-0.964114,0.255058,0.073685,-0.964114,0.255058,0.073685,-0.964114, + -0.033401,-0.997667,-0.059547,-0.033401,-0.997667,-0.059547,-0.033401,-0.997667,-0.059547,-0.033401,-0.997667,-0.059547, + -0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076, + 0.029082,0.996690,0.075920,0.029082,0.996690,0.075920,0.029082,0.996690,0.075920,0.029082,0.996690,0.075920, + 0.966545,-0.047405,0.252080,0.966545,-0.047405,0.252080,0.966545,-0.047405,0.252080,0.966545,-0.047405,0.252080, + -0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916, + 0.255450,0.089191,-0.962699,0.255450,0.089191,-0.962699,0.255450,0.089191,-0.962699,0.255450,0.089191,-0.962699, + -0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079, + 0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923,0.029082,0.996689,0.075923, + 0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077, + -0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907, + 0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114,0.255059,0.073685,-0.964114, + 0.961556,-0.048377,0.270313,0.961556,-0.048377,0.270313,0.961556,-0.048377,0.270313,0.961556,-0.048377,0.270313, + -0.966652,0.043478,-0.252376,-0.966652,0.043478,-0.252376,-0.966652,0.043478,-0.252376,-0.966652,0.043478,-0.252376, + 0.029087,0.996690,0.075915,0.029087,0.996690,0.075915,0.029087,0.996690,0.075915,0.029087,0.996690,0.075915, + 0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078, + -0.063320,-0.996454,0.055400,-0.063320,-0.996454,0.055400,-0.063320,-0.996454,0.055400,-0.063320,-0.996454,0.055400, + 0.255755,0.103386,-0.961197,0.255755,0.103386,-0.961197,0.255755,0.103386,-0.961197,0.255755,0.103386,-0.961197, + 0.041386,-0.941075,-0.335657,0.041386,-0.941075,-0.335657,0.041386,-0.941075,-0.335657,0.041386,-0.941075,-0.335657, + 0.255877,0.109949,-0.960436,0.255877,0.109949,-0.960436,0.255877,0.109949,-0.960436,0.255877,0.109949,-0.960436, + 0.033401,0.997666,0.059548,0.033401,0.997666,0.059548,0.033401,0.997666,0.059548,0.033401,0.997666,0.059548, + -0.016206,0.969524,0.244462,-0.016206,0.969524,0.244462,-0.016206,0.969524,0.244462,-0.016206,0.969524,0.244462, + -0.961556,0.048372,-0.270315,-0.961556,0.048372,-0.270315,-0.961556,0.048372,-0.270315,-0.961556,0.048372,-0.270315, + -0.005765,-0.986267,-0.165056,-0.005765,-0.986267,-0.165056,-0.005765,-0.986267,-0.165056,-0.005765,-0.986267,-0.165056, + -0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077, + -0.029086,-0.996691,-0.075906,-0.029086,-0.996691,-0.075906,-0.029086,-0.996691,-0.075906,-0.029086,-0.996691,-0.075906, + 0.029087,0.996690,0.075911,0.029087,0.996690,0.075911,0.029087,0.996690,0.075911,0.029087,0.996690,0.075911, + 0.250751,0.163209,-0.954194,0.250751,0.163209,-0.954194,0.250751,0.163209,-0.954194,0.250751,0.163209,-0.954194, + 0.971026,-0.044446,0.234804,0.971026,-0.044446,0.234804,0.971026,-0.044446,0.234804,0.971026,-0.044446,0.234804, + -0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079, + -0.040958,-0.998688,-0.030752,-0.040958,-0.998688,-0.030752,-0.040958,-0.998688,-0.030752,-0.040958,-0.998688,-0.030752, + 0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724, + 0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077, + 0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924, + -0.255375,-0.085976,0.963012,-0.255375,-0.085976,0.963012,-0.255375,-0.085976,0.963012,-0.255375,-0.085976,0.963012, + 0.254161,0.044785,-0.966124,0.254161,0.044785,-0.966124,0.254161,0.044785,-0.966124,0.254161,0.044785,-0.966124, + 0.242914,0.066624,-0.967757,0.242914,0.066624,-0.967757,0.242914,0.066624,-0.967757,0.242914,0.066624,-0.967757, + 0.966546,-0.047398,0.252076,0.966546,-0.047398,0.252076,0.966546,-0.047398,0.252076,0.966546,-0.047398,0.252076, + 0.029083,0.996690,0.075918,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918, + -0.966545,0.047398,-0.252079,-0.966545,0.047398,-0.252079,-0.966545,0.047398,-0.252079,-0.966545,0.047398,-0.252079, + -0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906, + 0.040961,0.998687,0.030752,0.040961,0.998687,0.030752,0.040961,0.998687,0.030752,0.040961,0.998687,0.030752, + 0.966544,-0.047413,0.252082,0.966544,-0.047413,0.252082,0.966544,-0.047413,0.252082,0.966544,-0.047413,0.252082, + 0.253553,0.028172,-0.966911,0.253553,0.028172,-0.966911,0.253553,0.028172,-0.966911,0.253553,0.028172,-0.966911, + -0.029087,-0.996689,-0.075922,-0.029087,-0.996689,-0.075922,-0.029087,-0.996689,-0.075922,-0.029087,-0.996689,-0.075922, + -0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911,-0.029084,-0.996690,-0.075911, + -0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078, + 0.029084,0.996691,0.075902,0.029084,0.996691,0.075902,0.029084,0.996691,0.075902,0.029084,0.996691,0.075902, + 0.966544,-0.047406,0.252082,0.966544,-0.047406,0.252082,0.966544,-0.047406,0.252082,0.966544,-0.047406,0.252082, + 0.241991,0.066669,-0.967985,0.241991,0.066669,-0.967985,0.241991,0.066669,-0.967985,0.241991,0.066669,-0.967985, + 0.993596,-0.040216,0.105592,0.993596,-0.040216,0.105592,0.993596,-0.040216,0.105592,0.993596,-0.040216,0.105592, + 0.254590,0.057655,-0.965329,0.254590,0.057655,-0.965329,0.254590,0.057655,-0.965329,0.254590,0.057655,-0.965329, + 0.029077,0.996691,0.075907,0.029077,0.996691,0.075907,0.029077,0.996691,0.075907,0.029077,0.996691,0.075907, + -0.961257,0.048964,-0.271269,-0.961257,0.048964,-0.271269,-0.961257,0.048964,-0.271269,-0.961257,0.048964,-0.271269, + -0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + -0.023306,-0.917479,-0.397100,-0.023306,-0.917479,-0.397100,-0.023306,-0.917479,-0.397100,-0.023306,-0.917479,-0.397100, + -0.497749,-0.815156,0.296253,-0.497749,-0.815156,0.296253,-0.497749,-0.815156,0.296253,-0.497749,-0.815156,0.296253, + 0.871840,-0.033540,-0.488642,0.871840,-0.033540,-0.488642,0.871840,-0.033540,-0.488642,0.871840,-0.033540,-0.488642, + 0.026583,0.944475,0.327507,0.026583,0.944475,0.327507,0.026583,0.944475,0.327507,0.026583,0.944475,0.327507, + 0.072861,0.996731,0.034913,0.072861,0.996731,0.034913,0.072861,0.996731,0.034913,0.072861,0.996731,0.034913, + 0.871520,0.011912,-0.490215,0.871520,0.011912,-0.490215,0.871520,0.011912,-0.490215,0.871520,0.011912,-0.490215, + -0.003720,-0.773521,0.633760,-0.003720,-0.773521,0.633760,-0.003720,-0.773521,0.633760,-0.003720,-0.773521,0.633760, + -0.066068,0.013706,-0.997721,-0.066068,0.013706,-0.997721,-0.066068,0.013706,-0.997721,-0.066068,0.013706,-0.997721, + -0.004100,0.999778,-0.020648,-0.004100,0.999778,-0.020648,-0.004100,0.999778,-0.020648,-0.004100,0.999778,-0.020648, + 0.175087,-0.950194,-0.257828,0.175087,-0.950194,-0.257828,0.175087,-0.950194,-0.257828,0.175087,-0.950194,-0.257828, + -0.062740,0.077619,-0.995007,-0.062740,0.077619,-0.995007,-0.062740,0.077619,-0.995007,-0.062740,0.077619,-0.995007, + -0.131365,0.967344,0.216768,-0.131365,0.967344,0.216768,-0.131365,0.967344,0.216768,-0.131365,0.967344,0.216768, + 0.994275,-0.028033,-0.103109,0.994275,-0.028033,-0.103109,0.994275,-0.028033,-0.103109,0.994275,-0.028033,-0.103109, + 0.068614,-0.059400,0.995873,0.068614,-0.059400,0.995873,0.068614,-0.059400,0.995873,0.068614,-0.059400,0.995873, + -0.843395,-0.040556,0.535761,-0.843395,-0.040556,0.535761,-0.843395,-0.040556,0.535761,-0.843395,-0.040556,0.535761, + -0.337513,0.106958,-0.935224,-0.337513,0.106958,-0.935224,-0.337513,0.106958,-0.935224,-0.337513,0.106958,-0.935224, + 0.000724,-0.997679,-0.068089,0.000724,-0.997679,-0.068089,0.000724,-0.997679,-0.068089,0.000724,-0.997679,-0.068089, + 0.970274,-0.046375,0.237523,0.970274,-0.046375,0.237523,0.970274,-0.046375,0.237523,0.970274,-0.046375,0.237523, + -0.060713,0.059161,-0.996400,-0.060713,0.059161,-0.996400,-0.060713,0.059161,-0.996400,-0.060713,0.059161,-0.996400, + 0.852546,0.035036,-0.521477,0.852546,0.035036,-0.521477,0.852546,0.035036,-0.521477,0.852546,0.035036,-0.521477, + 0.076518,0.996603,-0.030457,0.076518,0.996603,-0.030457,0.076518,0.996603,-0.030457,0.076518,0.996603,-0.030457, + 0.019481,0.998069,-0.058980,0.019481,0.998069,-0.058980,0.019481,0.998069,-0.058980,0.019481,0.998069,-0.058980, + -0.069564,-0.989627,-0.125694,-0.069564,-0.989627,-0.125694,-0.069564,-0.989627,-0.125694,-0.069564,-0.989627,-0.125694, + -0.959044,0.049285,-0.278936,-0.959044,0.049285,-0.278936,-0.959044,0.049285,-0.278936,-0.959044,0.049285,-0.278936, + -0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916, + -0.971158,0.046157,-0.233928,-0.971158,0.046157,-0.233928,-0.971158,0.046157,-0.233928,-0.971158,0.046157,-0.233928, + 0.029084,0.996690,0.075917,0.029084,0.996690,0.075917,0.029084,0.996690,0.075917,0.029084,0.996690,0.075917, + 0.961734,-0.048602,0.269639,0.961734,-0.048602,0.269639,0.961734,-0.048602,0.269639,0.961734,-0.048602,0.269639, + -0.022082,-0.994507,-0.102311,-0.022082,-0.994507,-0.102311,-0.022082,-0.994507,-0.102311,0.045271,0.998873,0.014255, + 0.045271,0.998873,0.014255,0.045271,0.998873,0.014255,0.045271,0.998873,0.014255,0.045271,0.998873,0.014255, + 0.045271,0.998873,0.014255,0.045271,0.998873,0.014255,-0.022082,-0.994507,-0.102312,-0.022082,-0.994507,-0.102312, + -0.022082,-0.994507,-0.102312,-0.022082,-0.994507,-0.102312,-0.975328,0.044925,-0.216143,-0.975328,0.044925,-0.216143, + -0.975328,0.044925,-0.216143,-0.975328,0.044925,-0.216143,0.019653,0.993571,0.111492,0.019653,0.993571,0.111492, + 0.019653,0.993571,0.111492,0.019653,0.993571,0.111492,0.975328,-0.044922,0.216142,0.975328,-0.044922,0.216142, + 0.975328,-0.044922,0.216142,0.975328,-0.044922,0.216142,-0.019652,-0.993571,-0.111492,-0.019652,-0.993571,-0.111492, + -0.019652,-0.993571,-0.111492,-0.019652,-0.993571,-0.111492,-0.968933,0.046770,-0.242860,-0.968933,0.046770,-0.242860, + -0.968933,0.046770,-0.242860,-0.968933,0.046770,-0.242860,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.968933,-0.046772,0.242859,0.968933,-0.046772,0.242859, + 0.968933,-0.046772,0.242859,0.968933,-0.046772,0.242859,-0.025212,-0.995573,-0.090550,-0.025212,-0.995573,-0.090550, + -0.025212,-0.995573,-0.090550,-0.025212,-0.995573,-0.090550,-0.964068,0.048040,-0.261276,-0.964068,0.048040,-0.261276, + -0.964068,0.048040,-0.261276,-0.964068,0.048040,-0.261276,0.964067,-0.048033,0.261279,0.964067,-0.048033,0.261279, + 0.964067,-0.048033,0.261279,0.964067,-0.048033,0.261279,-0.025212,-0.995573,-0.090551,-0.025212,-0.995573,-0.090551, + -0.025212,-0.995573,-0.090551,-0.025212,-0.995573,-0.090551,0.019689,0.993586,0.111351,0.019689,0.993586,0.111351, + 0.019689,0.993586,0.111351,0.019689,0.993586,0.111351,-0.963529,0.048165,-0.263235,-0.963529,0.048165,-0.263235, + -0.963529,0.048165,-0.263235,-0.963529,0.048165,-0.263235,0.961610,-0.048629,0.270078,0.961610,-0.048629,0.270078, + 0.961610,-0.048629,0.270078,0.961610,-0.048629,0.270078,-0.019689,-0.993586,-0.111354,-0.019689,-0.993586,-0.111354, + -0.019689,-0.993586,-0.111354,-0.019689,-0.993586,-0.111354,-0.255673,-0.099371,0.961643,-0.255673,-0.099371,0.961643, + -0.255673,-0.099371,0.961643,-0.255673,-0.099371,0.961643,-0.961786,0.048328,-0.269504,-0.961786,0.048328,-0.269504, + -0.961786,0.048328,-0.269504,-0.961786,0.048328,-0.269504,0.024452,0.995327,0.093418,0.024452,0.995327,0.093418, + 0.024452,0.995327,0.093418,0.024452,0.995327,0.093418,0.961787,-0.048338,0.269499,0.961787,-0.048338,0.269499, + 0.961787,-0.048338,0.269499,0.961787,-0.048338,0.269499,-0.024457,-0.995327,-0.093416,-0.024457,-0.995327,-0.093416, + -0.024457,-0.995327,-0.093416,-0.024457,-0.995327,-0.093416,-0.964173,0.047882,-0.260915,-0.964173,0.047882,-0.260915, + -0.964173,0.047882,-0.260915,-0.964173,0.047882,-0.260915,0.964175,-0.047881,0.260911,0.964175,-0.047881,0.260911, + 0.964175,-0.047881,0.260911,0.964175,-0.047881,0.260911,-0.024452,-0.995327,-0.093414,-0.024452,-0.995327,-0.093414, + -0.024452,-0.995327,-0.093414,-0.024452,-0.995327,-0.093414,-0.968835,0.046931,-0.243222,-0.968835,0.046931,-0.243222, + -0.968835,0.046931,-0.243222,-0.968835,0.046931,-0.243222,0.968834,-0.046930,0.243223,0.968834,-0.046930,0.243223, + 0.968834,-0.046930,0.243223,0.968834,-0.046930,0.243223,-0.024453,-0.995327,-0.093418,-0.024453,-0.995327,-0.093418, + -0.024453,-0.995327,-0.093418,-0.024453,-0.995327,-0.093418,0.024453,0.995327,0.093416,0.024453,0.995327,0.093416, + 0.024453,0.995327,0.093416,0.024453,0.995327,0.093416,-0.971097,0.046442,-0.234124,-0.971097,0.046442,-0.234124, + -0.971097,0.046442,-0.234124,-0.971097,0.046442,-0.234124,0.969826,0.036304,0.241082,0.969826,0.036304,0.241082, + 0.969826,0.036304,0.241082,0.969826,0.036304,0.241082,-0.024454,-0.995327,-0.093419,-0.024454,-0.995327,-0.093419, + -0.024454,-0.995327,-0.093419,-0.024454,-0.995327,-0.093419,-0.036735,-0.998226,-0.046863,-0.036735,-0.998226,-0.046863, + -0.036735,-0.998226,-0.046863,-0.036735,-0.998226,-0.046863,0.036741,0.998225,0.046863,0.036741,0.998225,0.046863, + 0.036741,0.998225,0.046863,0.036741,0.998225,0.046863,0.975109,-0.044997,0.217110,0.975109,-0.044997,0.217110, + 0.975109,-0.044997,0.217110,0.975109,-0.044997,0.217110,-0.022459,-0.994640,-0.100932,-0.022459,-0.994640,-0.100932, + -0.022459,-0.994640,-0.100932,-0.022459,-0.994640,-0.100932,0.022458,0.994640,0.100928,0.022458,0.994640,0.100928, + 0.022458,0.994640,0.100928,0.022458,0.994640,0.100928,0.975000,-0.045021,0.217596,0.975000,-0.045021,0.217596, + 0.975000,-0.045021,0.217596,0.975000,-0.045021,0.217596,-0.025560,-0.995269,-0.093741,-0.025560,-0.995269,-0.093741, + -0.025560,-0.995269,-0.093741,-0.025560,-0.995269,-0.093741,0.025764,0.995332,0.093012,0.025764,0.995332,0.093012, + 0.025764,0.995332,0.093012,0.025764,0.995332,0.093012,0.963516,-0.049290,0.263074,0.963516,-0.049290,0.263074, + 0.963516,-0.049290,0.263074,0.963516,-0.049290,0.263074,-0.035959,-0.998037,-0.051274,-0.035959,-0.998037,-0.051274, + -0.035959,-0.998037,-0.051274,-0.035959,-0.998037,-0.051274,0.035965,0.998037,0.051268,0.035965,0.998037,0.051268, + 0.035965,0.998037,0.051268,0.035965,0.998037,0.051268,0.963547,-0.048160,0.263169,0.963547,-0.048160,0.263169, + 0.963547,-0.048160,0.263169,0.963547,-0.048160,0.263169,0.022365,0.994606,0.101283,0.022365,0.994606,0.101283, + 0.022365,0.994606,0.101283,0.022365,0.994606,0.101283,-0.022365,-0.994606,-0.101281,-0.022365,-0.994606,-0.101281, + -0.022365,-0.994606,-0.101281,-0.022365,-0.994606,-0.101281,-0.961931,0.048557,-0.268945,-0.961931,0.048557,-0.268945, + -0.961931,0.048557,-0.268945,-0.961931,0.048557,-0.268945,0.036622,0.998208,0.047324,0.036622,0.998208,0.047324, + 0.036622,0.998208,0.047324,0.036622,0.998208,0.047324,-0.036622,-0.998208,-0.047321,-0.036622,-0.998208,-0.047321, + -0.036622,-0.998208,-0.047321,-0.036622,-0.998208,-0.047321,-0.962004,0.048542,-0.268686,-0.962004,0.048542,-0.268686, + -0.962004,0.048542,-0.268686,-0.962004,0.048542,-0.268686,0.035248,0.998072,0.051085,0.035248,0.998072,0.051085, + 0.035248,0.998072,0.051085,0.035248,0.998072,0.051085,-0.035247,-0.998072,-0.051083,-0.035247,-0.998072,-0.051083, + -0.035247,-0.998072,-0.051083,-0.035247,-0.998072,-0.051083,-0.969526,0.046612,-0.240513,-0.969526,0.046612,-0.240513, + -0.969526,0.046612,-0.240513,-0.969526,0.046612,-0.240513,0.023391,0.995402,0.092883,0.023391,0.995402,0.092883, + 0.023391,0.995402,0.092883,0.023391,0.995402,0.092883,-0.023210,-0.995336,-0.093631,-0.023210,-0.995336,-0.093631, + -0.023210,-0.995336,-0.093631,-0.023210,-0.995336,-0.093631,-0.969639,0.045378,-0.240294,-0.969639,0.045378,-0.240294, + -0.969639,0.045378,-0.240294,-0.969639,0.045378,-0.240294,0.961330,-0.048698,0.271059,0.961330,-0.048698,0.271059, + 0.961330,-0.048698,0.271059,0.961330,-0.048698,0.271059,-0.038945,-0.998501,-0.038447,-0.038945,-0.998501,-0.038447, + -0.038945,-0.998501,-0.038447,-0.038945,-0.998501,-0.038447,-0.961332,0.048699,-0.271051,-0.961332,0.048699,-0.271051, + -0.961332,0.048699,-0.271051,-0.961332,0.048699,-0.271051,0.038944,0.998502,0.038443,0.038944,0.998502,0.038443, + 0.038944,0.998502,0.038443,0.038944,0.998502,0.038443,0.964072,-0.048036,0.261260,0.964072,-0.048036,0.261260, + 0.964072,-0.048036,0.261260,0.964072,-0.048036,0.261260,-0.964071,0.048035,-0.261264,-0.964071,0.048035,-0.261264, + -0.964071,0.048035,-0.261264,-0.964071,0.048035,-0.261264,0.038736,0.998479,0.039243,0.038736,0.998479,0.039243, + 0.038736,0.998479,0.039243,0.038736,0.998479,0.039243,0.968931,-0.046768,0.242870,0.968931,-0.046768,0.242870, + 0.968931,-0.046768,0.242870,0.968931,-0.046768,0.242870,-0.968930,0.046775,-0.242871,-0.968930,0.046775,-0.242871, + -0.968930,0.046775,-0.242871,-0.968930,0.046775,-0.242871,0.038737,0.998479,0.039240,0.038737,0.998479,0.039240, + 0.038737,0.998479,0.039240,0.038737,0.998479,0.039240,-0.038760,-0.998481,-0.039149,-0.038760,-0.998481,-0.039149, + -0.038760,-0.998481,-0.039149,-0.038760,-0.998481,-0.039149,0.975574,-0.044846,0.215043,0.975574,-0.044846,0.215043, + 0.975574,-0.044846,0.215043,0.975574,-0.044846,0.215043,-0.975573,0.044852,-0.215047,-0.975573,0.044852,-0.215047, + -0.975573,0.044852,-0.215047,-0.975573,0.044852,-0.215047,0.038760,0.998481,0.039152,0.038760,0.998481,0.039152, + 0.038760,0.998481,0.039152,0.038760,0.998481,0.039152,0.971112,-0.045902,0.234166,0.971112,-0.045902,0.234166, + 0.971112,-0.045902,0.234166,0.971112,-0.045902,0.234166,-0.033705,-0.997725,-0.058389,-0.033705,-0.997725,-0.058389, + -0.033705,-0.997725,-0.058389,-0.033705,-0.997725,-0.058389,-0.971113,0.045905,-0.234164,-0.971113,0.045905,-0.234164, + -0.971113,0.045905,-0.234164,-0.971113,0.045905,-0.234164,0.033705,0.997725,0.058390,0.033705,0.997725,0.058390, + 0.033705,0.997725,0.058390,0.033705,0.997725,0.058390,0.968841,-0.046670,0.243245,0.968841,-0.046670,0.243245, + 0.968841,-0.046670,0.243245,0.968841,-0.046670,0.243245,-0.968842,0.046666,-0.243243,-0.968842,0.046666,-0.243243, + -0.968842,0.046666,-0.243243,-0.968842,0.046666,-0.243243,0.033705,0.997725,0.058389,0.033705,0.997725,0.058389, + 0.033705,0.997725,0.058389,0.033705,0.997725,0.058389,0.964167,-0.048133,0.260894,0.964167,-0.048133,0.260894, + 0.964167,-0.048133,0.260894,0.964167,-0.048133,0.260894,-0.964169,0.048145,-0.260884,-0.964169,0.048145,-0.260884, + -0.964169,0.048145,-0.260884,-0.964169,0.048145,-0.260884,0.033705,0.997725,0.058389,0.033705,0.997725,0.058389, + 0.033705,0.997725,0.058389,0.033705,0.997725,0.058389,-0.033705,-0.997724,-0.058397,-0.033705,-0.997724,-0.058397, + -0.033705,-0.997724,-0.058397,-0.033705,-0.997724,-0.058397,0.961770,-0.048854,0.269465,0.961770,-0.048854,0.269465, + 0.961770,-0.048854,0.269465,0.961770,-0.048854,0.269465,-0.961298,-0.034099,-0.273393,-0.961298,-0.034099,-0.273393, + -0.961298,-0.034099,-0.273393,-0.961298,-0.034099,-0.273393,0.033707,0.997724,0.058395,0.033707,0.997724,0.058395, + 0.033707,0.997724,0.058395,0.033707,0.997724,0.058395,-0.255438,-0.088670,0.962751,-0.255438,-0.088670,0.962751, + -0.255438,-0.088670,0.962751,-0.255438,-0.088670,0.962751,-0.033401,-0.997667,-0.059546,-0.033401,-0.997667,-0.059546, + -0.033401,-0.997667,-0.059546,-0.033401,-0.997667,-0.059546,0.963299,-0.048044,0.264097,0.963299,-0.048044,0.264097, + 0.963299,-0.048044,0.264097,0.963299,-0.048044,0.264097,0.033401,0.997666,0.059548,0.033401,0.997666,0.059548, + 0.033401,0.997666,0.059548,0.033401,0.997666,0.059548,-0.963298,0.048046,-0.264101,-0.963298,0.048046,-0.264101, + -0.963298,0.048046,-0.264101,-0.963298,0.048046,-0.264101,-0.033401,-0.997667,-0.059548,-0.033401,-0.997667,-0.059548, + -0.033401,-0.997667,-0.059548,-0.033401,-0.997667,-0.059548,0.966545,-0.047411,0.252077,0.966545,-0.047411,0.252077, + 0.966545,-0.047411,0.252077,0.966545,-0.047411,0.252077,0.033400,0.997667,0.059547,0.033400,0.997667,0.059547, + 0.033400,0.997667,0.059547,0.033400,0.997667,0.059547,-0.966546,0.047407,-0.252075,-0.966546,0.047407,-0.252075, + -0.966546,0.047407,-0.252075,-0.966546,0.047407,-0.252075,-0.033401,-0.997667,-0.059546,-0.033401,-0.997667,-0.059546, + -0.033401,-0.997667,-0.059546,-0.033401,-0.997667,-0.059546,0.963299,-0.048042,0.264097,0.963299,-0.048042,0.264097, + 0.963299,-0.048042,0.264097,0.963299,-0.048042,0.264097,0.033397,0.997667,0.059544,0.033397,0.997667,0.059544, + 0.033397,0.997667,0.059544,0.033397,0.997667,0.059544,-0.966545,0.047407,-0.252079,-0.966545,0.047407,-0.252079, + -0.966545,0.047407,-0.252079,-0.966545,0.047407,-0.252079,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077, + 0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.029084,0.996690,0.075914,0.029084,0.996690,0.075914, + 0.029084,0.996690,0.075914,0.029084,0.996690,0.075914,-0.966546,0.047408,-0.252075,-0.966546,0.047408,-0.252075, + -0.966546,0.047408,-0.252075,-0.966546,0.047408,-0.252075,-0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914, + -0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914,0.255419,0.231702,-0.938656,0.255419,0.231702,-0.938656, + 0.255419,0.231702,-0.938656,0.255419,0.231702,-0.938656,0.966544,-0.047405,0.252083,0.966544,-0.047405,0.252083, + 0.966544,-0.047405,0.252083,0.966544,-0.047405,0.252083,-0.020209,0.964457,0.263465,-0.020209,0.964457,0.263465, + -0.020209,0.964457,0.263465,-0.020209,0.964457,0.263465,-0.966545,0.047407,-0.252078,-0.966545,0.047407,-0.252078, + -0.966545,0.047407,-0.252078,-0.966545,0.047407,-0.252078,0.021333,-0.964511,-0.263181,0.021333,-0.964511,-0.263181, + 0.021333,-0.964511,-0.263181,0.021333,-0.964511,-0.263181,-0.037454,-0.996771,-0.071023,-0.037454,-0.996771,-0.071023, + -0.037454,-0.996771,-0.071023,-0.037454,-0.996771,-0.071023,0.530404,-0.080597,0.843905,0.530404,-0.080597,0.843905, + 0.530404,-0.080597,0.843905,0.530404,-0.080597,0.843905,0.037454,0.996770,0.071038,0.037454,0.996770,0.071038, + 0.037454,0.996770,0.071038,0.037454,0.996770,0.071038,-0.530390,0.080607,-0.843913,-0.530390,0.080607,-0.843913, + -0.530390,0.080607,-0.843913,-0.530390,0.080607,-0.843913,-0.037635,-0.996740,-0.071369,-0.037635,-0.996740,-0.071369, + -0.037635,-0.996740,-0.071369,-0.037635,-0.996740,-0.071369,0.500766,-0.079162,0.861956,0.500766,-0.079162,0.861956, + 0.500766,-0.079162,0.861956,0.500766,-0.079162,0.861956,0.037638,0.996739,0.071373,0.037638,0.996739,0.071373, + 0.037638,0.996739,0.071373,0.037638,0.996739,0.071373,-0.493101,0.079056,-0.866373,-0.493101,0.079056,-0.866373, + -0.493101,0.079056,-0.866373,-0.493101,0.079056,-0.866373,-0.037405,-0.996771,-0.071055,-0.037405,-0.996771,-0.071055, + -0.037405,-0.996771,-0.071055,-0.037405,-0.996771,-0.071055,0.525500,-0.080548,0.846972,0.525500,-0.080548,0.846972, + 0.525500,-0.080548,0.846972,0.525500,-0.080548,0.846972,0.037407,0.996771,0.071057,0.037407,0.996771,0.071057, + 0.037407,0.996771,0.071057,0.037407,0.996771,0.071057,-0.525503,0.080537,-0.846972,-0.525503,0.080537,-0.846972, + -0.525503,0.080537,-0.846972,-0.525503,0.080537,-0.846972,0.033715,0.995909,0.083840,0.033715,0.995909,0.083840, + 0.033715,0.995909,0.083840,0.033715,0.995909,0.083840,-0.853491,-0.015299,0.520884,-0.853491,-0.015299,0.520884, + -0.853491,-0.015299,0.520884,-0.853491,-0.015299,0.520884,-0.033715,-0.995908,-0.083843,-0.033715,-0.995908,-0.083843, + -0.033715,-0.995908,-0.083843,-0.033715,-0.995908,-0.083843,0.853491,0.015302,-0.520882,0.853491,0.015302,-0.520882, + 0.853491,0.015302,-0.520882,0.853491,0.015302,-0.520882,0.033706,0.995911,0.083821,0.033706,0.995911,0.083821, + 0.033706,0.995911,0.083821,0.033706,0.995911,0.083821,-0.837711,-0.018453,0.545802,-0.837711,-0.018453,0.545802, + -0.837711,-0.018453,0.545802,-0.837711,-0.018453,0.545802,-0.033706,-0.995910,-0.083823,-0.033706,-0.995910,-0.083823, + -0.033706,-0.995910,-0.083823,-0.033706,-0.995910,-0.083823,0.837716,0.018455,-0.545794,0.837716,0.018455,-0.545794, + 0.837716,0.018455,-0.545794,0.837716,0.018455,-0.545794,0.034153,0.995895,0.083830,0.034153,0.995895,0.083830, + 0.034153,0.995895,0.083830,0.034153,0.995895,0.083830,-0.849605,-0.017083,0.527142,-0.849605,-0.017083,0.527142, + -0.849605,-0.017083,0.527142,-0.849605,-0.017083,0.527142,-0.034154,-0.995894,-0.083838,-0.034154,-0.995894,-0.083838, + -0.034154,-0.995894,-0.083838,-0.034154,-0.995894,-0.083838,0.845150,0.017960,-0.534228,0.845150,0.017960,-0.534228, + 0.845150,0.017960,-0.534228,0.845150,0.017960,-0.534228,-0.967710,0.054489,-0.246106,-0.967710,0.054489,-0.246106, + -0.967710,0.054489,-0.246106,-0.967710,0.054489,-0.246106,-0.200769,-0.751469,0.628480,-0.200769,-0.751469,0.628480, + -0.200769,-0.751469,0.628480,-0.200769,-0.751469,0.628480,0.967709,-0.054495,0.246109,0.967709,-0.054495,0.246109, + 0.967709,-0.054495,0.246109,0.967709,-0.054495,0.246109,0.200932,0.750627,-0.629432,0.200932,0.750627,-0.629432, + 0.200932,0.750627,-0.629432,0.200932,0.750627,-0.629432,-0.968083,-0.017347,-0.250028,-0.968083,-0.017347,-0.250028, + -0.968083,-0.017347,-0.250028,-0.968083,-0.017347,-0.250028,-0.152155,-0.752064,0.641286,-0.152155,-0.752064,0.641286, + -0.152155,-0.752064,0.641286,-0.152155,-0.752064,0.641286,0.968083,0.017345,0.250028,0.968083,0.017345,0.250028, + 0.968083,0.017345,0.250028,0.968083,0.017345,0.250028,0.152155,0.752067,-0.641283,0.152155,0.752067,-0.641283, + 0.152155,0.752067,-0.641283,0.152155,0.752067,-0.641283,0.966546,-0.047400,0.252077,0.966546,-0.047400,0.252077, + 0.966546,-0.047400,0.252077,0.966546,-0.047400,0.252077,-0.966546,0.047401,-0.252077,-0.966546,0.047401,-0.252077, + -0.966546,0.047401,-0.252077,-0.966546,0.047401,-0.252077,0.063066,0.996525,-0.054409,0.063066,0.996525,-0.054409, + 0.063066,0.996525,-0.054409,0.063066,0.996525,-0.054409,-0.937441,0.053559,-0.343999,-0.937441,0.053559,-0.343999, + -0.937441,0.053559,-0.343999,-0.937441,0.053559,-0.343999,0.937443,-0.053560,0.343994,0.937443,-0.053560,0.343994, + 0.937443,-0.053560,0.343994,0.937443,-0.053560,0.343994,-0.012441,-0.990278,-0.138545,-0.012441,-0.990278,-0.138545, + -0.012441,-0.990278,-0.138545,-0.012441,-0.990278,-0.138545,0.985223,-0.041410,0.166197,0.985223,-0.041410,0.166197, + 0.985223,-0.041410,0.166197,0.985223,-0.041410,0.166197,-0.985223,0.041412,-0.166196,-0.985223,0.041412,-0.166196, + -0.985223,0.041412,-0.166196,-0.985223,0.041412,-0.166196,0.052158,0.998564,-0.012199,0.052158,0.998564,-0.012199, + 0.052158,0.998564,-0.012199,0.052158,0.998564,-0.012199,-0.985223,0.041410,-0.166196,-0.985223,0.041410,-0.166196, + -0.985223,0.041410,-0.166196,-0.985223,0.041410,-0.166196,0.985223,-0.041408,0.166199,0.985223,-0.041408,0.166199, + 0.985223,-0.041408,0.166199,0.985223,-0.041408,0.166199,-0.030572,-0.997058,-0.070285,-0.030572,-0.997058,-0.070285, + -0.030572,-0.997058,-0.070285,-0.030572,-0.997058,-0.070285,0.036760,0.998229,0.046767,0.036760,0.998229,0.046767, + 0.036760,0.998229,0.046767,0.036760,0.998229,0.046767,-0.699053,0.074567,-0.711171,-0.699053,0.074567,-0.711171, + -0.699053,0.074567,-0.711171,-0.699053,0.074567,-0.711171,0.699046,-0.074572,0.711177,0.699046,-0.074572,0.711177, + 0.699046,-0.074572,0.711177,0.699046,-0.074572,0.711177,-0.976958,0.044418,-0.208757,-0.976958,0.044418,-0.208757, + -0.976958,0.044418,-0.208757,-0.976958,0.044418,-0.208757,0.027878,0.996364,0.080510,0.027878,0.996364,0.080510, + 0.027878,0.996364,0.080510,0.027878,0.996364,0.080510,0.957675,-0.049541,0.283555,0.957675,-0.049541,0.283555, + 0.957675,-0.049541,0.283555,0.957675,-0.049541,0.283555,0.027888,0.996371,0.080417,0.027888,0.996371,0.080417, + 0.027888,0.996371,0.080417,0.027888,0.996371,0.080417,0.231383,0.067169,-0.970541,0.231383,0.067169,-0.970541, + 0.231383,0.067169,-0.970541,0.231383,0.067169,-0.970541,0.029081,0.996690,0.075912,0.029081,0.996690,0.075912, + 0.029081,0.996690,0.075912,0.029081,0.996690,0.075912,0.029082,0.996690,0.075917,0.029082,0.996690,0.075917, + 0.029082,0.996690,0.075917,0.029082,0.996690,0.075917,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,0.027887,0.996371,0.080417,0.027887,0.996371,0.080417, + 0.027887,0.996371,0.080417,0.027887,0.996371,0.080417,-0.980864,0.043085,-0.189867,-0.980864,0.043085,-0.189867, + -0.980864,0.043085,-0.189867,-0.980864,0.043085,-0.189867,0.980110,-0.043350,0.193661,0.980110,-0.043350,0.193661, + 0.980110,-0.043350,0.193661,0.980110,-0.043350,0.193661,0.029094,0.996689,0.075922,0.029094,0.996689,0.075922, + 0.029094,0.996689,0.075922,0.029094,0.996689,0.075922,-0.966544,0.047400,-0.252085,-0.966544,0.047400,-0.252085, + -0.966544,0.047400,-0.252085,-0.966544,0.047400,-0.252085,0.029082,0.996690,0.075919,0.029082,0.996690,0.075919, + 0.029082,0.996690,0.075919,0.029082,0.996690,0.075919,-0.972894,0.045676,-0.226695,-0.972894,0.045676,-0.226695, + -0.972894,0.045676,-0.226695,-0.972894,0.045676,-0.226695,-0.029082,-0.996691,-0.075908,-0.029082,-0.996691,-0.075908, + -0.029082,-0.996691,-0.075908,-0.029082,-0.996691,-0.075908,0.251580,0.066208,-0.965569,0.251580,0.066208,-0.965569, + 0.251580,0.066208,-0.965569,0.251580,0.066208,-0.965569,-0.258286,-0.065880,0.963820,-0.258286,-0.065880,0.963820, + -0.258286,-0.065880,0.963820,-0.258286,-0.065880,0.963820,-0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916, + -0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916,-0.029079,-0.996691,-0.075911,-0.029079,-0.996691,-0.075911, + -0.029079,-0.996691,-0.075911,-0.029079,-0.996691,-0.075911,-0.029080,-0.996690,-0.075915,-0.029080,-0.996690,-0.075915, + -0.029080,-0.996690,-0.075915,-0.029080,-0.996690,-0.075915,0.959579,-0.049114,0.277122,0.959579,-0.049114,0.277122, + 0.959579,-0.049114,0.277122,0.959579,-0.049114,0.277122,-0.029081,-0.996690,-0.075917,-0.029081,-0.996690,-0.075917, + -0.029081,-0.996690,-0.075917,-0.029081,-0.996690,-0.075917,0.959531,-0.049116,0.277285,0.959531,-0.049116,0.277285, + 0.959531,-0.049116,0.277285,0.959531,-0.049116,0.277285,-0.029078,-0.996691,-0.075910,-0.029078,-0.996691,-0.075910, + -0.029078,-0.996691,-0.075910,-0.029078,-0.996691,-0.075910,-0.959578,0.049099,-0.277126,-0.959578,0.049099,-0.277126, + -0.959578,0.049099,-0.277126,-0.959578,0.049099,-0.277126,-0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724, + -0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724,-0.029081,-0.996690,-0.075918,-0.029081,-0.996690,-0.075918, + -0.029081,-0.996690,-0.075918,-0.029081,-0.996690,-0.075918,0.254835,0.066043,-0.964727,0.254835,0.066043,-0.964727, + 0.254835,0.066043,-0.964727,0.254835,0.066043,-0.964727,-0.964378,0.047957,-0.260146,-0.964378,0.047957,-0.260146, + -0.964378,0.047957,-0.260146,-0.964378,0.047957,-0.260146,0.963613,-0.048140,0.262929,0.963613,-0.048140,0.262929, + 0.963613,-0.048140,0.262929,0.963613,-0.048140,0.262929,-0.029259,-0.996925,-0.072696,-0.029259,-0.996925,-0.072696, + -0.029259,-0.996925,-0.072696,-0.029259,-0.996925,-0.072696,-0.972281,0.045839,-0.229277,-0.972281,0.045839,-0.229277, + -0.972281,0.045839,-0.229277,-0.972281,0.045839,-0.229277,0.970859,-0.046235,0.235150,0.970859,-0.046235,0.235150, + 0.970859,-0.046235,0.235150,0.970859,-0.046235,0.235150,-0.030493,-0.996865,-0.073012,-0.030493,-0.996865,-0.073012, + -0.030493,-0.996865,-0.073012,-0.030493,-0.996865,-0.073012,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724, + 0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,-0.029084,-0.996690,-0.075910,-0.029084,-0.996690,-0.075910, + -0.029084,-0.996690,-0.075910,-0.029084,-0.996690,-0.075910,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726, + 0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726,-0.029082,-0.996691,-0.075901,-0.029082,-0.996691,-0.075901, + -0.029082,-0.996691,-0.075901,-0.029082,-0.996691,-0.075901,-0.254842,-0.066042,0.964725,-0.254842,-0.066042,0.964725, + -0.254842,-0.066042,0.964725,-0.254842,-0.066042,0.964725,0.254836,0.066039,-0.964726,0.254836,0.066039,-0.964726, + 0.254836,0.066039,-0.964726,0.254836,0.066039,-0.964726,-0.029083,-0.996690,-0.075913,-0.029083,-0.996690,-0.075913, + -0.029083,-0.996690,-0.075913,-0.029083,-0.996690,-0.075913,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724, + -0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.969581,0.046583,-0.240299,-0.969581,0.046583,-0.240299, + -0.969581,0.046583,-0.240299,-0.969581,0.046583,-0.240299,-0.029084,-0.996690,-0.075913,-0.029084,-0.996690,-0.075913, + -0.029084,-0.996690,-0.075913,-0.029084,-0.996690,-0.075913,0.966546,-0.047401,0.252074,0.966546,-0.047401,0.252074, + 0.966546,-0.047401,0.252074,0.966546,-0.047401,0.252074,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916, + -0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.953186,0.050522,-0.298135,-0.953186,0.050522,-0.298135, + -0.953186,0.050522,-0.298135,-0.953186,0.050522,-0.298135,0.950526,-0.051070,0.306418,0.950526,-0.051070,0.306418, + 0.950526,-0.051070,0.306418,0.950526,-0.051070,0.306418,-0.030296,-0.996993,-0.071324,-0.030296,-0.996993,-0.071324, + -0.030296,-0.996993,-0.071324,-0.030296,-0.996993,-0.071324,-0.971898,0.045942,-0.230877,-0.971898,0.045942,-0.230877, + -0.971898,0.045942,-0.230877,-0.971898,0.045942,-0.230877,0.971091,-0.046183,0.234199,0.971091,-0.046183,0.234199, + 0.971091,-0.046183,0.234199,0.971091,-0.046183,0.234199,-0.030315,-0.996999,-0.071230,-0.030315,-0.996999,-0.071230, + -0.030315,-0.996999,-0.071230,-0.030315,-0.996999,-0.071230,0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726, + 0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726,-0.029082,-0.996691,-0.075896,-0.029082,-0.996691,-0.075896, + -0.029082,-0.996691,-0.075896,-0.029082,-0.996691,-0.075896,-0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724, + -0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724,0.273667,0.065109,-0.959618,0.273667,0.065109,-0.959618, + 0.273667,0.065109,-0.959618,0.273667,0.065109,-0.959618,-0.029080,-0.996691,-0.075906,-0.029080,-0.996691,-0.075906, + -0.029080,-0.996691,-0.075906,-0.029080,-0.996691,-0.075906,-0.281917,-0.064689,0.957255,-0.281917,-0.064689,0.957255, + -0.281917,-0.064689,0.957255,-0.281917,-0.064689,0.957255,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,-0.029083,-0.996691,-0.075909,-0.029083,-0.996691,-0.075909, + -0.029083,-0.996691,-0.075909,-0.029083,-0.996691,-0.075909,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725, + -0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076, + -0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.029077,-0.996690,-0.075917,-0.029077,-0.996690,-0.075917, + -0.029077,-0.996690,-0.075917,-0.029077,-0.996690,-0.075917,0.966548,-0.047392,0.252071,0.966548,-0.047392,0.252071, + 0.966548,-0.047392,0.252071,0.966548,-0.047392,0.252071,-0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916, + -0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916,-0.959110,0.049213,-0.278723,-0.959110,0.049213,-0.278723, + -0.959110,0.049213,-0.278723,-0.959110,0.049213,-0.278723,0.957648,-0.049550,0.283646,0.957648,-0.049550,0.283646, + 0.957648,-0.049550,0.283646,0.957648,-0.049550,0.283646,-0.030320,-0.996999,-0.071233,-0.030320,-0.996999,-0.071233, + -0.030320,-0.996999,-0.071233,-0.030320,-0.996999,-0.071233,-0.980864,0.043078,-0.189867,-0.980864,0.043078,-0.189867, + -0.980864,0.043078,-0.189867,-0.980864,0.043078,-0.189867,0.978890,-0.043763,0.199647,0.978890,-0.043763,0.199647, + 0.978890,-0.043763,0.199647,0.978890,-0.043763,0.199647,-0.030315,-0.996999,-0.071230,-0.030315,-0.996999,-0.071230, + -0.030315,-0.996999,-0.071230,-0.030315,-0.996999,-0.071230,0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724, + 0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,-0.029082,-0.996692,-0.075891,-0.029082,-0.996692,-0.075891, + -0.029082,-0.996692,-0.075891,-0.029082,-0.996692,-0.075891,-0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725, + -0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,-0.029080,-0.996689,-0.075930,-0.029080,-0.996689,-0.075930, + -0.029080,-0.996689,-0.075930,-0.029080,-0.996689,-0.075930,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,0.254837,0.066043,-0.964726,0.254837,0.066043,-0.964726, + 0.254837,0.066043,-0.964726,0.254837,0.066043,-0.964726,-0.029083,-0.996691,-0.075909,-0.029083,-0.996691,-0.075909, + -0.029083,-0.996691,-0.075909,-0.029083,-0.996691,-0.075909,-0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725, + -0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725,-0.966545,0.047428,-0.252076,-0.966545,0.047428,-0.252076, + -0.966545,0.047428,-0.252076,-0.966545,0.047428,-0.252076,-0.029085,-0.996690,-0.075916,-0.029085,-0.996690,-0.075916, + -0.029085,-0.996690,-0.075916,-0.029085,-0.996690,-0.075916,0.966547,-0.047390,0.252075,0.966547,-0.047390,0.252075, + 0.966547,-0.047390,0.252075,0.966547,-0.047390,0.252075,-0.029082,-0.996690,-0.075914,-0.029082,-0.996690,-0.075914, + -0.029082,-0.996690,-0.075914,-0.029082,-0.996690,-0.075914,0.036760,0.998229,0.046775,0.036760,0.998229,0.046775, + 0.036760,0.998229,0.046775,0.036760,0.998229,0.046775,-0.679317,0.075419,-0.729959,-0.679317,0.075419,-0.729959, + -0.679317,0.075419,-0.729959,-0.679317,0.075419,-0.729959,0.679321,-0.075426,0.729954,0.679321,-0.075426,0.729954, + 0.679321,-0.075426,0.729954,0.679321,-0.075426,0.729954,0.761590,-0.071289,0.644126,0.761590,-0.071289,0.644126, + 0.761590,-0.071289,0.644126,0.761590,-0.071289,0.644126,-0.761592,0.071290,-0.644124,-0.761592,0.071290,-0.644124, + -0.761592,0.071290,-0.644124,-0.761592,0.071290,-0.644124,0.036777,0.998231,0.046709,0.036777,0.998231,0.046709, + 0.036777,0.998231,0.046709,0.036777,0.998231,0.046709,0.978525,-0.041386,0.201929,0.978525,-0.041386,0.201929, + 0.978525,-0.041386,0.201929,0.978525,-0.041386,0.201929,-0.964697,0.048067,-0.258939,-0.964697,0.048067,-0.258939, + -0.964697,0.048067,-0.258939,-0.964697,0.048067,-0.258939,-0.295932,-0.094791,0.950494,-0.295932,-0.094791,0.950494, + -0.295932,-0.094791,0.950494,-0.295932,-0.094791,0.950494,-0.031098,-0.997182,-0.068273,-0.031098,-0.997182,-0.068273, + -0.031098,-0.997182,-0.068273,0.977521,-0.044400,0.206108,0.977521,-0.044400,0.206108,0.977521,-0.044400,0.206108, + 0.977521,-0.044400,0.206108,0.257081,0.113044,-0.959755,0.257081,0.113044,-0.959755,0.257081,0.113044,-0.959755, + 0.257081,0.113044,-0.959755,0.212502,0.064241,-0.975047,0.212502,0.064241,-0.975047,0.212502,0.064241,-0.975047, + 0.212502,0.064241,-0.975047,-0.254730,-0.062245,0.965007,-0.254730,-0.062245,0.965007,-0.254730,-0.062245,0.965007, + -0.254730,-0.062245,0.965007,-0.959511,0.049030,-0.277370,-0.959511,0.049030,-0.277370,-0.959511,0.049030,-0.277370, + -0.959511,0.049030,-0.277370,-0.030957,-0.997200,-0.068076,-0.030957,-0.997200,-0.068076,-0.030957,-0.997200,-0.068076, + -0.027708,-0.995552,-0.090052,-0.027708,-0.995552,-0.090052,-0.027708,-0.995552,-0.090052,-0.027708,-0.995552,-0.090052, + -0.965519,0.047686,-0.255927,-0.965519,0.047686,-0.255927,-0.965519,0.047686,-0.255927,-0.965519,0.047686,-0.255927, + 0.962273,-0.046683,0.268050,0.962273,-0.046683,0.268050,0.962273,-0.046683,0.268050,0.962273,-0.046683,0.268050, + 0.166986,0.092427,-0.981618,0.166986,0.092427,-0.981618,0.166986,0.092427,-0.981618,0.166986,0.092427,-0.981618, + -0.291057,-0.086855,0.952755,-0.291057,-0.086855,0.952755,-0.291057,-0.086855,0.952755,-0.291057,-0.086855,0.952755, + 0.031745,-0.996558,-0.076585,0.031745,-0.996558,-0.076585,0.031745,-0.996558,-0.076585,0.031745,-0.996558,-0.076585, + 0.957648,-0.049549,0.283647,0.957648,-0.049549,0.283647,0.957648,-0.049549,0.283647,0.957648,-0.049549,0.283647, + 0.027887,0.996371,0.080417,0.027887,0.996371,0.080417,0.027887,0.996371,0.080417,0.027887,0.996371,0.080417, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.029084,0.996690,0.075916,0.029084,0.996690,0.075916,0.029084,0.996690,0.075916,0.029084,0.996690,0.075916, + 0.029083,0.996690,0.075914,0.029083,0.996690,0.075914,0.029083,0.996690,0.075914,0.029083,0.996690,0.075914, + -0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725, + 0.966545,-0.047416,0.252078,0.966545,-0.047416,0.252078,0.966545,-0.047416,0.252078,0.966545,-0.047416,0.252078, + 0.029061,0.996691,0.075914,0.029061,0.996691,0.075914,0.029061,0.996691,0.075914,0.029061,0.996691,0.075914, + -0.966545,0.047426,-0.252076,-0.966545,0.047426,-0.252076,-0.966545,0.047426,-0.252076,-0.966545,0.047426,-0.252076, + 0.029082,0.996690,0.075917,0.029082,0.996690,0.075917,0.029082,0.996690,0.075917,0.029082,0.996690,0.075917, + 0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724, + 0.974857,-0.045078,0.218226,0.974857,-0.045078,0.218226,0.974857,-0.045078,0.218226,0.974857,-0.045078,0.218226, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.959641,0.049098,-0.276911,-0.959641,0.049098,-0.276911,-0.959641,0.049098,-0.276911,-0.959641,0.049098,-0.276911, + 0.254840,0.066038,-0.964726,0.254840,0.066038,-0.964726,0.254840,0.066038,-0.964726,0.254840,0.066038,-0.964726, + 0.978138,-0.044031,0.203243,0.978138,-0.044031,0.203243,0.978138,-0.044031,0.203243,0.978138,-0.044031,0.203243, + -0.236181,-0.066946,0.969400,-0.236181,-0.066946,0.969400,-0.236181,-0.066946,0.969400,-0.236181,-0.066946,0.969400, + -0.959661,0.049078,-0.276842,-0.959661,0.049078,-0.276842,-0.959661,0.049078,-0.276842,-0.959661,0.049078,-0.276842, + -0.961222,0.048717,-0.271440,-0.961222,0.048717,-0.271440,-0.961222,0.048717,-0.271440,-0.961222,0.048717,-0.271440, + 0.960835,-0.048816,0.272789,0.960835,-0.048816,0.272789,0.960835,-0.048816,0.272789,0.960835,-0.048816,0.272789, + -0.028742,-0.996838,-0.074079,-0.028742,-0.996838,-0.074079,-0.028742,-0.996838,-0.074079,-0.028742,-0.996838,-0.074079, + -0.970104,0.046443,-0.238205,-0.970104,0.046443,-0.238205,-0.970104,0.046443,-0.238205,-0.970104,0.046443,-0.238205, + 0.969876,-0.046514,0.239117,0.969876,-0.046514,0.239117,0.969876,-0.046514,0.239117,0.969876,-0.046514,0.239117, + -0.030282,-0.996762,-0.074487,-0.030282,-0.996762,-0.074487,-0.030282,-0.996762,-0.074487,-0.030282,-0.996762,-0.074487, + 0.254835,0.066041,-0.964727,0.254835,0.066041,-0.964727,0.254835,0.066041,-0.964727,0.254835,0.066041,-0.964727, + -0.029083,-0.996691,-0.075906,-0.029083,-0.996691,-0.075906,-0.029083,-0.996691,-0.075906,-0.029083,-0.996691,-0.075906, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + 0.949373,-0.051335,0.309929,0.949373,-0.051335,0.309929,0.949373,-0.051335,0.309929,0.949373,-0.051335,0.309929, + 0.029080,0.996691,0.075902,0.029080,0.996691,0.075902,0.029080,0.996691,0.075902,0.029080,0.996691,0.075902, + 0.258063,0.065887,-0.963879,0.258063,0.065887,-0.963879,0.258063,0.065887,-0.963879,0.258063,0.065887,-0.963879, + -0.251304,-0.066213,0.965641,-0.251304,-0.066213,0.965641,-0.251304,-0.066213,0.965641,-0.251304,-0.066213,0.965641, + 0.029082,0.996690,0.075915,0.029082,0.996690,0.075915,0.029082,0.996690,0.075915,0.029082,0.996690,0.075915, + 0.029082,0.996690,0.075916,0.029082,0.996690,0.075916,0.029082,0.996690,0.075916,0.029082,0.996690,0.075916, + 0.029082,0.996690,0.075913,0.029082,0.996690,0.075913,0.029082,0.996690,0.075913,0.029082,0.996690,0.075913, + -0.972047,0.045933,-0.230251,-0.972047,0.045933,-0.230251,-0.972047,0.045933,-0.230251,-0.972047,0.045933,-0.230251, + 0.029081,0.996690,0.075917,0.029081,0.996690,0.075917,0.029081,0.996690,0.075917,0.029081,0.996690,0.075917, + -0.966545,0.047391,-0.252081,-0.966545,0.047391,-0.252081,-0.966545,0.047391,-0.252081,-0.966545,0.047391,-0.252081, + 0.029082,0.996690,0.075912,0.029082,0.996690,0.075912,0.029082,0.996690,0.075912,0.029082,0.996690,0.075912, + 0.966548,-0.047407,0.252066,0.966548,-0.047407,0.252066,0.966548,-0.047407,0.252066,0.966548,-0.047407,0.252066, + -0.275865,-0.065005,0.958996,-0.275865,-0.065005,0.958996,-0.275865,-0.065005,0.958996,-0.275865,-0.065005,0.958996, + 0.029080,0.996690,0.075913,0.029080,0.996690,0.075913,0.029080,0.996690,0.075913,0.029080,0.996690,0.075913, + 0.233822,0.067048,-0.969965,0.233822,0.067048,-0.969965,0.233822,0.067048,-0.969965,0.233822,0.067048,-0.969965, + 0.971566,-0.046037,0.232249,0.971566,-0.046037,0.232249,0.971566,-0.046037,0.232249,0.971566,-0.046037,0.232249, + -0.971356,0.046095,-0.233114,-0.971356,0.046095,-0.233114,-0.971356,0.046095,-0.233114,-0.971356,0.046095,-0.233114, + 0.028071,0.996388,0.080150,0.028071,0.996388,0.080150,0.028071,0.996388,0.080150,0.028071,0.996388,0.080150, + 0.962509,-0.048413,0.266894,0.962509,-0.048413,0.266894,0.962509,-0.048413,0.266894,0.962509,-0.048413,0.266894, + -0.965525,0.047666,-0.255909,-0.965525,0.047666,-0.255909,-0.965525,0.047666,-0.255909,-0.965525,0.047666,-0.255909, + 0.028070,0.996387,0.080155,0.028070,0.996387,0.080155,0.028070,0.996387,0.080155,0.028070,0.996387,0.080155, + 0.232973,0.067103,-0.970165,0.232973,0.067103,-0.970165,0.232973,0.067103,-0.970165,0.232973,0.067103,-0.970165, + 0.029082,0.996691,0.075905,0.029082,0.996691,0.075905,0.029082,0.996691,0.075905,0.029082,0.996691,0.075905, + -0.232971,-0.067097,0.970166,-0.232971,-0.067097,0.970166,-0.232971,-0.067097,0.970166,-0.232971,-0.067097,0.970166, + 0.231881,0.067150,-0.970424,0.231881,0.067150,-0.970424,0.231881,0.067150,-0.970424,0.231881,0.067150,-0.970424, + 0.029081,0.996690,0.075922,0.029081,0.996690,0.075922,0.029081,0.996690,0.075922,0.029081,0.996690,0.075922, + -0.231420,-0.067173,0.970532,-0.231420,-0.067173,0.970532,-0.231420,-0.067173,0.970532,-0.231420,-0.067173,0.970532, + 0.232958,0.067096,-0.970169,0.232958,0.067096,-0.970169,0.232958,0.067096,-0.970169,0.232958,0.067096,-0.970169, + 0.029086,0.996692,0.075894,0.029086,0.996692,0.075894,0.029086,0.996692,0.075894,0.029086,0.996692,0.075894, + -0.232963,-0.067095,0.970168,-0.232963,-0.067095,0.970168,-0.232963,-0.067095,0.970168,-0.232963,-0.067095,0.970168, + 0.967266,-0.047203,0.249337,0.967266,-0.047203,0.249337,0.967266,-0.047203,0.249337,0.967266,-0.047203,0.249337, + 0.029079,0.996690,0.075921,0.029079,0.996690,0.075921,0.029079,0.996690,0.075921,0.029079,0.996690,0.075921, + -0.967235,0.047212,-0.249455,-0.967235,0.047212,-0.249455,-0.967235,0.047212,-0.249455,-0.967235,0.047212,-0.249455, + 0.029081,0.996690,0.075918,0.029081,0.996690,0.075918,0.029081,0.996690,0.075918,0.029081,0.996690,0.075918, + 0.969148,-0.046709,0.242015,0.969148,-0.046709,0.242015,0.969148,-0.046709,0.242015,0.969148,-0.046709,0.242015, + -0.969341,0.046664,-0.241248,-0.969341,0.046664,-0.241248,-0.969341,0.046664,-0.241248,-0.969341,0.046664,-0.241248, + 0.027785,0.996609,0.077455,0.027785,0.996609,0.077455,0.027785,0.996609,0.077455,0.027785,0.996609,0.077455, + 0.960589,-0.048869,0.273643,0.960589,-0.048869,0.273643,0.960589,-0.048869,0.273643,0.960589,-0.048869,0.273643, + -0.961027,0.048768,-0.272118,-0.961027,0.048768,-0.272118,-0.961027,0.048768,-0.272118,-0.961027,0.048768,-0.272118, + 0.029449,0.996526,0.077898,0.029449,0.996526,0.077898,0.029449,0.996526,0.077898,0.029449,0.996526,0.077898, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.029084,0.996690,0.075912,0.029084,0.996690,0.075912,0.029084,0.996690,0.075912,0.029084,0.996690,0.075912, + -0.966545,0.047408,-0.252078,-0.966545,0.047408,-0.252078,-0.966545,0.047408,-0.252078,-0.966545,0.047408,-0.252078, + 0.029084,0.996690,0.075918,0.029084,0.996690,0.075918,0.029084,0.996690,0.075918,0.029084,0.996690,0.075918, + 0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078, + -0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.994239,0.036688,-0.100714,-0.994239,0.036688,-0.100714,-0.994239,0.036688,-0.100714,-0.994239,0.036688,-0.100714, + 0.029084,0.996690,0.075920,0.029084,0.996690,0.075920,0.029084,0.996690,0.075920,0.029084,0.996690,0.075920, + 0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078, + -0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + -0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725, + -0.966544,0.047403,-0.252081,-0.966544,0.047403,-0.252081,-0.966544,0.047403,-0.252081,-0.966544,0.047403,-0.252081, + 0.029077,0.996690,0.075918,0.029077,0.996690,0.075918,0.029077,0.996690,0.075918,0.029077,0.996690,0.075918, + 0.975074,-0.045000,0.217267,0.975074,-0.045000,0.217267,0.975074,-0.045000,0.217267,0.975074,-0.045000,0.217267, + -0.029090,-0.996690,-0.075908,-0.029090,-0.996690,-0.075908,-0.029090,-0.996690,-0.075908,-0.029090,-0.996690,-0.075908, + 0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724, + -0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725, + -0.942041,0.069142,-0.328295,-0.942041,0.069142,-0.328295,-0.942041,0.069142,-0.328295,-0.942041,0.069142,-0.328295, + 0.029082,0.996689,0.075934,0.029082,0.996689,0.075934,0.029082,0.996689,0.075934,0.029082,0.996689,0.075934, + 0.942041,-0.069139,0.328295,0.942041,-0.069139,0.328295,0.942041,-0.069139,0.328295,0.942041,-0.069139,0.328295, + -0.029081,-0.996689,-0.075933,-0.029081,-0.996689,-0.075933,-0.029081,-0.996689,-0.075933,-0.029081,-0.996689,-0.075933, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078, + 0.029082,0.996690,0.075914,0.029082,0.996690,0.075914,0.029082,0.996690,0.075914,0.029082,0.996690,0.075914, + 0.995696,-0.035573,0.085588,0.995696,-0.035573,0.085588,0.995696,-0.035573,0.085588,0.995696,-0.035573,0.085588, + -0.029086,-0.996689,-0.075922,-0.029086,-0.996689,-0.075922,-0.029086,-0.996689,-0.075922,-0.029086,-0.996689,-0.075922, + 0.364026,0.060172,-0.929443,0.364026,0.060172,-0.929443,0.364026,0.060172,-0.929443,0.364026,0.060172,-0.929443, + -0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724, + -0.966545,0.047406,-0.252078,-0.966545,0.047406,-0.252078,-0.966545,0.047406,-0.252078,-0.966545,0.047406,-0.252078, + 0.029086,0.996690,0.075918,0.029086,0.996690,0.075918,0.029086,0.996690,0.075918,0.029086,0.996690,0.075918, + -0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079, + -0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918,-0.029082,-0.996690,-0.075918, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725, + 0.029088,0.996690,0.075914,0.029088,0.996690,0.075914,0.029088,0.996690,0.075914,0.029088,0.996690,0.075914, + -0.029083,-0.996689,-0.075922,-0.029083,-0.996689,-0.075922,-0.029083,-0.996689,-0.075922,-0.029083,-0.996689,-0.075922, + 0.407914,0.057502,-0.911208,0.407914,0.057502,-0.911208,0.407914,0.057502,-0.911208,0.407914,0.057502,-0.911208, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + 0.029085,0.996690,0.075911,0.029085,0.996690,0.075911,0.029085,0.996690,0.075911,0.029085,0.996690,0.075911, + 0.990891,-0.038737,0.128975,0.990891,-0.038737,0.128975,0.990891,-0.038737,0.128975,0.990891,-0.038737,0.128975, + -0.966545,0.047407,-0.252078,-0.966545,0.047407,-0.252078,-0.966545,0.047407,-0.252078,-0.966545,0.047407,-0.252078, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + 0.029083,0.996690,0.075918,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918, + 0.979767,-0.043466,0.195367,0.979767,-0.043466,0.195367,0.979767,-0.043466,0.195367,0.979767,-0.043466,0.195367, + -0.950032,0.051171,-0.307928,-0.950032,0.051171,-0.307928,-0.950032,0.051171,-0.307928,-0.950032,0.051171,-0.307928, + 0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725, + -0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724, + 0.021117,0.994144,0.105979,0.021117,0.994144,0.105979,0.021117,0.994144,0.105979,0.021117,0.994144,0.105979, + 0.956831,-0.049737,0.286358,0.956831,-0.049737,0.286358,0.956831,-0.049737,0.286358,0.956831,-0.049737,0.286358, + -0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081, + 0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724, + -0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724, + -0.029081,-0.996690,-0.075914,-0.029081,-0.996690,-0.075914,-0.029081,-0.996690,-0.075914,-0.029081,-0.996690,-0.075914, + -0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081,-0.966544,0.047402,-0.252081, + 0.987581,-0.040377,0.151836,0.987581,-0.040377,0.151836,0.987581,-0.040377,0.151836,0.987581,-0.040377,0.151836, + 0.254838,0.066042,-0.964726,0.254838,0.066042,-0.964726,0.254838,0.066042,-0.964726,0.254838,0.066042,-0.964726, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916,-0.029084,-0.996690,-0.075916, + -0.935526,0.053897,-0.349123,-0.935526,0.053897,-0.349123,-0.935526,0.053897,-0.349123,-0.935526,0.053897,-0.349123, + 0.966546,-0.047414,0.252072,0.966546,-0.047414,0.252072,0.966546,-0.047414,0.252072,0.966546,-0.047414,0.252072, + 0.172199,0.069818,-0.982585,0.172199,0.069818,-0.982585,0.172199,0.069818,-0.982585,0.172199,0.069818,-0.982585, + -0.254843,-0.066042,0.964725,-0.254843,-0.066042,0.964725,-0.254843,-0.066042,0.964725,-0.254843,-0.066042,0.964725, + -0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919, + -0.989390,0.039525,-0.139806,-0.989390,0.039525,-0.139806,-0.989390,0.039525,-0.139806,-0.989390,0.039525,-0.139806, + 0.990518,-0.038945,0.131749,0.990518,-0.038945,0.131749,0.990518,-0.038945,0.131749,0.990518,-0.038945,0.131749, + 0.254847,0.066047,-0.964723,0.254847,0.066047,-0.964723,0.254847,0.066047,-0.964723,0.254847,0.066047,-0.964723, + -0.297148,-0.063895,0.952691,-0.297148,-0.063895,0.952691,-0.297148,-0.063895,0.952691,-0.297148,-0.063895,0.952691, + -0.029083,-0.996689,-0.075928,-0.029083,-0.996689,-0.075928,-0.029083,-0.996689,-0.075928,-0.029083,-0.996689,-0.075928, + -0.966546,0.047410,-0.252073,-0.966546,0.047410,-0.252073,-0.966546,0.047410,-0.252073,-0.966546,0.047410,-0.252073, + 0.966543,-0.047408,0.252086,0.966543,-0.047408,0.252086,0.966543,-0.047408,0.252086,0.966543,-0.047408,0.252086, + 0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906,-0.029084,-0.996691,-0.075906, + -0.966544,0.047392,-0.252084,-0.966544,0.047392,-0.252084,-0.966544,0.047392,-0.252084,-0.966544,0.047392,-0.252084, + 0.908675,-0.058018,0.413454,0.908675,-0.058018,0.413454,0.908675,-0.058018,0.413454,0.908675,-0.058018,0.413454, + 0.254843,0.066043,-0.964724,0.254843,0.066043,-0.964724,0.254843,0.066043,-0.964724,0.254843,0.066043,-0.964724, + -0.254839,-0.066048,0.964725,-0.254839,-0.066048,0.964725,-0.254839,-0.066048,0.964725,-0.254839,-0.066048,0.964725, + -0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907,-0.029083,-0.996691,-0.075907, + -0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077, + 0.966545,-0.047407,0.252078,0.966545,-0.047407,0.252078,0.966545,-0.047407,0.252078,0.966545,-0.047407,0.252078, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725, + -0.254834,-0.066041,0.964727,-0.254834,-0.066041,0.964727,-0.254834,-0.066041,0.964727,-0.254834,-0.066041,0.964727, + -0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914, + -0.857566,0.063896,-0.510389,-0.857566,0.063896,-0.510389,-0.857566,0.063896,-0.510389,-0.857566,0.063896,-0.510389, + 0.979659,-0.043501,0.195898,0.979659,-0.043501,0.195898,0.979659,-0.043501,0.195898,0.979659,-0.043501,0.195898, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.029084,-0.996690,-0.075919,-0.029084,-0.996690,-0.075919,-0.029084,-0.996690,-0.075919,-0.029084,-0.996690,-0.075919, + -0.966545,0.047393,-0.252079,-0.966545,0.047393,-0.252079,-0.966545,0.047393,-0.252079,-0.966545,0.047393,-0.252079, + 0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079, + 0.254846,0.066040,-0.964724,0.254846,0.066040,-0.964724,0.254846,0.066040,-0.964724,0.254846,0.066040,-0.964724, + -0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726, + 0.029080,0.996690,0.075919,0.029080,0.996690,0.075919,0.029080,0.996690,0.075919,0.029080,0.996690,0.075919, + 0.966544,-0.047396,0.252082,0.966544,-0.047396,0.252082,0.966544,-0.047396,0.252082,0.966544,-0.047396,0.252082, + -0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + 0.029079,0.996691,0.075903,0.029079,0.996691,0.075903,0.029079,0.996691,0.075903,0.029079,0.996691,0.075903, + 0.979659,-0.043509,0.195898,0.979659,-0.043509,0.195898,0.979659,-0.043509,0.195898,0.979659,-0.043509,0.195898, + -0.966546,0.047398,-0.252078,-0.966546,0.047398,-0.252078,-0.966546,0.047398,-0.252078,-0.966546,0.047398,-0.252078, + 0.254844,0.066053,-0.964724,0.254844,0.066053,-0.964724,0.254844,0.066053,-0.964724,0.254844,0.066053,-0.964724, + -0.254843,-0.066050,0.964724,-0.254843,-0.066050,0.964724,-0.254843,-0.066050,0.964724,-0.254843,-0.066050,0.964724, + 0.029080,0.996690,0.075919,0.029080,0.996690,0.075919,0.029080,0.996690,0.075919,0.029080,0.996690,0.075919, + 0.966545,-0.047408,0.252078,0.966545,-0.047408,0.252078,0.966545,-0.047408,0.252078,0.966545,-0.047408,0.252078, + -0.966546,0.047410,-0.252075,-0.966546,0.047410,-0.252075,-0.966546,0.047410,-0.252075,-0.966546,0.047410,-0.252075, + 0.254838,0.066047,-0.964725,0.254838,0.066047,-0.964725,0.254838,0.066047,-0.964725,0.254838,0.066047,-0.964725, + -0.254850,-0.066043,0.964723,-0.254850,-0.066043,0.964723,-0.254850,-0.066043,0.964723,-0.254850,-0.066043,0.964723, + -0.223213,0.789222,0.572106,-0.223213,0.789222,0.572106,-0.223213,0.789222,0.572106,-0.223213,0.789222,0.572106, + -0.200122,-0.833331,0.515277,-0.200122,-0.833331,0.515277,-0.200122,-0.833331,0.515277,-0.200122,-0.833331,0.515277, + 0.994704,-0.087204,0.054410,0.994704,-0.087204,0.054410,0.994704,-0.087204,0.054410,0.994704,-0.087204,0.054410, + 0.233227,-0.826906,-0.511694,0.233227,-0.826906,-0.511694,0.233227,-0.826906,-0.511694,0.233227,-0.826906,-0.511694, + 0.266036,0.889889,-0.370570,0.266036,0.889889,-0.370570,0.266036,0.889889,-0.370570,0.266036,0.889889,-0.370570, + 0.994713,-0.051651,0.088755,0.994713,-0.051651,0.088755,0.994713,-0.051651,0.088755,0.994713,-0.051651,0.088755, + 0.986443,-0.052999,0.155312,0.986443,-0.052999,0.155312,0.986443,-0.052999,0.155312,0.966364,-0.050979,0.252075, + 0.966364,-0.050979,0.252075,0.966364,-0.050979,0.252075,0.966364,-0.050979,0.252075,0.179946,0.978902,0.096799, + 0.179946,0.978902,0.096799,0.179946,0.978902,0.096799,0.179946,0.978902,0.096799,-0.254073,-0.041828,0.966280, + -0.254073,-0.041828,0.966280,-0.254073,-0.041828,0.966280,-0.254073,-0.041828,0.966280,0.106928,-0.818866,-0.563937, + 0.106928,-0.818866,-0.563937,0.106928,-0.818866,-0.563937,0.106928,-0.818866,-0.563937,-0.014275,-0.075843,0.997018, + -0.014275,-0.075843,0.997018,-0.014275,-0.075843,0.997018,-0.014275,-0.075843,0.997018,0.965669,-0.049017,0.255108, + 0.965669,-0.049017,0.255108,0.965669,-0.049017,0.255108,0.965669,-0.049017,0.255108,0.146790,0.908162,-0.392040, + 0.146790,0.908162,-0.392040,0.146790,0.908162,-0.392040,0.146790,0.908162,-0.392040,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.025566,-0.998097,-0.056114, + 0.025566,-0.998097,-0.056114,0.025566,-0.998097,-0.056114,0.025566,-0.998097,-0.056114,0.077956,0.994211,0.073936, + 0.077956,0.994211,0.073936,0.077956,0.994211,0.073936,0.077956,0.994211,0.073936,-0.979739,0.032403,-0.197642, + -0.979739,0.032403,-0.197642,-0.979739,0.032403,-0.197642,-0.979739,0.032403,-0.197642,0.979752,-0.031439,0.197731, + 0.979752,-0.031439,0.197731,0.979752,-0.031439,0.197731,0.979752,-0.031439,0.197731,0.253369,0.023545,-0.967083, + 0.253369,0.023545,-0.967083,0.253369,0.023545,-0.967083,0.253369,0.023545,-0.967083,0.966546,-0.047402,0.252076, + 0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076,-0.253365,-0.023272,0.967091, + -0.253365,-0.023272,0.967091,-0.253365,-0.023272,0.967091,-0.253365,-0.023272,0.967091,-0.029077,-0.996690,-0.075917, + -0.029077,-0.996690,-0.075917,-0.029077,-0.996690,-0.075917,-0.029077,-0.996690,-0.075917,0.966546,-0.047403,0.252077, + 0.966546,-0.047403,0.252077,0.966546,-0.047403,0.252077,0.966546,-0.047403,0.252077,0.029077,0.996691,0.075909, + 0.029077,0.996691,0.075909,0.029077,0.996691,0.075909,0.029077,0.996691,0.075909,0.067521,-0.077976,0.994666, + 0.067521,-0.077976,0.994666,0.067521,-0.077976,0.994666,0.067521,-0.077976,0.994666,0.276502,-0.468941,-0.838833, + 0.276502,-0.468941,-0.838833,0.276502,-0.468941,-0.838833,0.276502,-0.468941,-0.838833,-0.991038,0.030288,-0.130100, + -0.991038,0.030288,-0.130100,-0.991038,0.030288,-0.130100,-0.991038,0.030288,-0.130100,0.988684,-0.029342,0.147115, + 0.988684,-0.029342,0.147115,0.988684,-0.029342,0.147115,0.988684,-0.029342,0.147115,-0.003358,0.998104,0.061454, + -0.003358,0.998104,0.061454,-0.003358,0.998104,0.061454,-0.003358,0.998104,0.061454,-0.006554,-0.076235,0.997068, + -0.006554,-0.076235,0.997068,-0.006554,-0.076235,0.997068,-0.006554,-0.076235,0.997068,-0.158271,-0.982898,-0.094137, + -0.158271,-0.982898,-0.094137,-0.158271,-0.982898,-0.094137,-0.158271,-0.982898,-0.094137,-0.978183,0.031960,-0.205272, + -0.978183,0.031960,-0.205272,-0.978183,0.031960,-0.205272,-0.978183,0.031960,-0.205272,0.979755,-0.031439,0.197717, + 0.979755,-0.031439,0.197717,0.979755,-0.031439,0.197717,0.979755,-0.031439,0.197717,-0.201622,0.979295,0.018190, + -0.201622,0.979295,0.018190,-0.201622,0.979295,0.018190,-0.201622,0.979295,0.018190,0.103756,-0.079101,0.991452, + 0.103756,-0.079101,0.991452,0.103756,-0.079101,0.991452,0.103756,-0.079101,0.991452,-0.342889,-0.929316,-0.137113, + -0.342889,-0.929316,-0.137113,-0.342889,-0.929316,-0.137113,-0.342889,-0.929316,-0.137113,-0.975734,0.028949,-0.217038, + -0.975734,0.028949,-0.217038,-0.975734,0.028949,-0.217038,-0.975734,0.028949,-0.217038,0.975673,-0.032759,0.216768, + 0.975673,-0.032759,0.216768,0.975673,-0.032759,0.216768,0.975673,-0.032759,0.216768,0.020166,-0.998864,-0.043173, + 0.020166,-0.998864,-0.043173,0.020166,-0.998864,-0.043173,0.020166,-0.998864,-0.043173,-0.824448,-0.018690,0.565629, + -0.824448,-0.018690,0.565629,-0.824448,-0.018690,0.565629,-0.824448,-0.018690,0.565629,0.136625,0.974068,0.180348, + 0.136625,0.974068,0.180348,0.136625,0.974068,0.180348,0.136625,0.974068,0.180348,0.749589,-0.058419,0.659321, + 0.749589,-0.058419,0.659321,0.749589,-0.058419,0.659321,0.749589,-0.058419,0.659321,-0.749556,0.059618,-0.659251, + -0.749556,0.059618,-0.659251,-0.749556,0.059618,-0.659251,-0.749556,0.059618,-0.659251,0.007595,-0.998617,-0.052015, + 0.007595,-0.998617,-0.052015,0.007595,-0.998617,-0.052015,0.007595,-0.998617,-0.052015,-0.857055,-0.013913,0.515038, + -0.857055,-0.013913,0.515038,-0.857055,-0.013913,0.515038,-0.857055,-0.013913,0.515038,0.118543,0.977276,0.175726, + 0.118543,0.977276,0.175726,0.118543,0.977276,0.175726,0.118543,0.977276,0.175726,0.710860,-0.061581,0.700632, + 0.710860,-0.061581,0.700632,0.710860,-0.061581,0.700632,0.710860,-0.061581,0.700632,-0.710832,0.062450,-0.700584, + -0.710832,0.062450,-0.700584,-0.710832,0.062450,-0.700584,-0.710832,0.062450,-0.700584,0.200868,-0.977332,0.066892, + 0.200868,-0.977332,0.066892,0.200868,-0.977332,0.066892,0.200868,-0.977332,0.066892,-0.833149,-0.018342,0.552744, + -0.833149,-0.018342,0.552744,-0.833149,-0.018342,0.552744,-0.833149,-0.018342,0.552744,0.233644,0.948257,0.214986, + 0.233644,0.948257,0.214986,0.233644,0.948257,0.214986,0.233644,0.948257,0.214986,0.867194,-0.052980,0.495144, + 0.867194,-0.052980,0.495144,0.867194,-0.052980,0.495144,0.867194,-0.052980,0.495144,-0.787685,0.060796,-0.613071, + -0.787685,0.060796,-0.613071,-0.787685,0.060796,-0.613071,-0.787685,0.060796,-0.613071,0.001244,-0.998158,-0.060646, + 0.001244,-0.998158,-0.060646,0.001244,-0.998158,-0.060646,0.001244,-0.998158,-0.060646,-0.814884,-0.020012,0.579278, + -0.814884,-0.020012,0.579278,-0.814884,-0.020012,0.579278,-0.814884,-0.020012,0.579278,0.119409,0.979376,0.162986, + 0.119409,0.979376,0.162986,0.119409,0.979376,0.162986,0.119409,0.979376,0.162986,0.759726,-0.058156,0.647637, + 0.759726,-0.058156,0.647637,0.759726,-0.058156,0.647637,0.759726,-0.058156,0.647637,-0.759714,0.059042,-0.647572, + -0.759714,0.059042,-0.647572,-0.759714,0.059042,-0.647572,-0.759714,0.059042,-0.647572,-0.000728,-0.998238,-0.059332, + -0.000728,-0.998238,-0.059332,-0.000728,-0.998238,-0.059332,-0.000728,-0.998238,-0.059332,-0.857054,-0.013887,0.515039, + -0.857054,-0.013887,0.515039,-0.857054,-0.013887,0.515039,-0.857054,-0.013887,0.515039,0.111542,0.979456,0.168000, + 0.111542,0.979456,0.168000,0.111542,0.979456,0.168000,0.111542,0.979456,0.168000,0.710881,-0.060705,0.700688, + 0.710881,-0.060705,0.700688,0.710881,-0.060705,0.700688,0.710881,-0.060705,0.700688,-0.710857,0.061581,-0.700636, + -0.710857,0.061581,-0.700636,-0.710857,0.061581,-0.700636,-0.710857,0.061581,-0.700636,0.221418,0.195038,-0.955476, + 0.221418,0.195038,-0.955476,0.221418,0.195038,-0.955476,0.221418,0.195038,-0.955476,0.969024,-0.115042,0.218538, + 0.969024,-0.115042,0.218538,0.969024,-0.115042,0.218538,0.969024,-0.115042,0.218538,-0.024652,0.963565,0.266336, + -0.024652,0.963565,0.266336,-0.024652,0.963565,0.266336,-0.024652,0.963565,0.266336,-0.968493,0.063247,-0.240877, + -0.968493,0.063247,-0.240877,-0.968493,0.063247,-0.240877,-0.968493,0.063247,-0.240877,-0.031676,-0.997615,-0.061327, + -0.031676,-0.997615,-0.061327,-0.031676,-0.997615,-0.061327,-0.031676,-0.997615,-0.061327,-0.221105,-0.201609,0.954184, + -0.221105,-0.201609,0.954184,-0.221105,-0.201609,0.954184,-0.221105,-0.201609,0.954184,-0.991919,0.120593,-0.039425, + -0.991919,0.120593,-0.039425,-0.991919,0.120593,-0.039425,-0.991919,0.120593,-0.039425,-0.077816,-0.475735,0.876140, + -0.077816,-0.475735,0.876140,-0.077816,-0.475735,0.876140,-0.077816,-0.475735,0.876140,0.968680,-0.199326,0.148082, + 0.968680,-0.199326,0.148082,0.968680,-0.199326,0.148082,0.968680,-0.199326,0.148082,0.127630,0.466573,-0.875226, + 0.127630,0.466573,-0.875226,0.127630,0.466573,-0.875226,0.127630,0.466573,-0.875226,-0.815633,-0.144285,-0.560290, + -0.815633,-0.144285,-0.560290,-0.815633,-0.144285,-0.560290,-0.815633,-0.144285,-0.560290,-0.346395,-0.396251,0.850292, + -0.346395,-0.396251,0.850292,-0.346395,-0.396251,0.850292,-0.346395,-0.396251,0.850292,0.815629,0.144285,0.560295, + 0.815629,0.144285,0.560295,0.815629,0.144285,0.560295,0.815629,0.144285,0.560295,0.346400,0.396250,-0.850290, + 0.346400,0.396250,-0.850290,0.346400,0.396250,-0.850290,0.346400,0.396250,-0.850290,0.994758,-0.010246,-0.101738, + 0.994758,-0.010246,-0.101738,0.994758,-0.010246,-0.101738,0.994758,-0.010246,-0.101738,0.069094,-0.108929,0.991645, + 0.069094,-0.108929,0.991645,0.069094,-0.108929,0.991645,0.069094,-0.108929,0.991645,-0.840668,-0.002360,0.541545, + -0.840668,-0.002360,0.541545,-0.840668,-0.002360,0.541545,-0.840668,-0.002360,0.541545,-0.338799,0.065249,-0.938594, + -0.338799,0.065249,-0.938594,-0.338799,0.065249,-0.938594,-0.338799,0.065249,-0.938594,-0.058650,0.103875,-0.992859, + -0.058650,0.103875,-0.992859,-0.058650,0.103875,-0.992859,-0.058650,0.103875,-0.992859,0.852303,0.000904,-0.523047, + 0.852303,0.000904,-0.523047,0.852303,0.000904,-0.523047,0.852303,0.000904,-0.523047,-0.966545,0.047405,-0.252079, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,0.966545,-0.047404,0.252079, + 0.966545,-0.047404,0.252079,0.966545,-0.047404,0.252079,0.966545,-0.047404,0.252079,0.254440,0.053013,-0.965635, + 0.254440,0.053013,-0.965635,0.254440,0.053013,-0.965635,0.254440,0.053013,-0.965635,-0.254441,-0.053014,0.965634, + -0.254441,-0.053014,0.965634,-0.254441,-0.053014,0.965634,-0.254441,-0.053014,0.965634,-0.966546,0.047404,-0.252076, + -0.966546,0.047404,-0.252076,-0.966546,0.047404,-0.252076,-0.966546,0.047404,-0.252076,0.966544,-0.047405,0.252082, + 0.966544,-0.047405,0.252082,0.966544,-0.047405,0.252082,0.966544,-0.047405,0.252082,0.254501,0.054876,-0.965514, + 0.254501,0.054876,-0.965514,0.254501,0.054876,-0.965514,0.254501,0.054876,-0.965514,-0.254500,-0.054876,0.965515, + -0.254500,-0.054876,0.965515,-0.254500,-0.054876,0.965515,-0.254500,-0.054876,0.965515,-0.162899,0.771949,0.614458, + -0.162899,0.771949,0.614458,-0.162899,0.771949,0.614458,-0.162899,0.771949,0.614458,-0.235476,-0.853676,0.464531, + -0.235476,-0.853676,0.464531,-0.235476,-0.853676,0.464531,-0.235476,-0.853676,0.464531,-0.966545,0.047405,-0.252078, + -0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,0.966545,-0.047404,0.252079, + 0.966545,-0.047404,0.252079,0.966545,-0.047404,0.252079,0.966545,-0.047404,0.252079,0.254228,0.046637,-0.966019, + 0.254228,0.046637,-0.966019,0.254228,0.046637,-0.966019,0.254228,0.046637,-0.966019,-0.254117,-0.043412,0.966199, + -0.254117,-0.043412,0.966199,-0.254117,-0.043412,0.966199,-0.254117,-0.043412,0.966199,-0.966720,0.043481,-0.252116, + -0.966720,0.043481,-0.252116,-0.966720,0.043481,-0.252116,-0.966720,0.043481,-0.252116,0.966545,-0.047405,0.252079, + 0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.254276,0.048029,-0.965938, + 0.254276,0.048029,-0.965938,0.254276,0.048029,-0.965938,0.254276,0.048029,-0.965938,-0.254271,-0.047873,0.965948, + -0.254271,-0.047873,0.965948,-0.254271,-0.047873,0.965948,-0.254271,-0.047873,0.965948,-0.029084,-0.996690,-0.075917, + -0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,0.029084,0.996689,0.075922, + 0.029084,0.996689,0.075922,0.029084,0.996689,0.075922,0.029084,0.996689,0.075922,0.263710,0.065610,-0.962368, + 0.263710,0.065610,-0.962368,0.263710,0.065610,-0.962368,0.263710,0.065610,-0.962368,0.255639,0.097902,-0.961802, + 0.255639,0.097902,-0.961802,0.255639,0.097902,-0.961802,0.255639,0.097902,-0.961802,0.993820,-0.032312,0.106194, + 0.993820,-0.032312,0.106194,0.993820,-0.032312,0.106194,0.993820,-0.032312,0.106194,0.255187,0.078621,-0.963690, + 0.255187,0.078621,-0.963690,0.255187,0.078621,-0.963690,0.255187,0.078621,-0.963690,-0.961269,0.048545,-0.271303, + -0.961269,0.048545,-0.271303,-0.961269,0.048545,-0.271303,-0.961269,0.048545,-0.271303,-0.119719,0.785776,0.606814, + -0.119719,0.785776,0.606814,-0.119719,0.785776,0.606814,-0.119719,0.785776,0.606814,0.119716,-0.785777,-0.606814, + 0.119716,-0.785777,-0.606814,0.119716,-0.785777,-0.606814,0.119716,-0.785777,-0.606814,-0.961930,0.048556,-0.268946, + -0.961930,0.048556,-0.268946,-0.961930,0.048556,-0.268946,-0.961930,0.048556,-0.268946,-0.119724,0.785778,0.606811, + -0.119724,0.785778,0.606811,-0.119724,0.785778,0.606811,-0.119724,0.785778,0.606811,0.119720,-0.785779,-0.606810, + 0.119720,-0.785779,-0.606810,0.119720,-0.785779,-0.606810,0.119720,-0.785779,-0.606810,-0.961930,0.048557,-0.268947, + -0.961930,0.048557,-0.268947,-0.961930,0.048557,-0.268947,-0.961930,0.048557,-0.268947,-0.084122,0.869822,0.486140, + -0.084122,0.869822,0.486140,-0.084122,0.869822,0.486140,-0.084122,0.869822,0.486140,0.084122,-0.869824,-0.486138, + 0.084122,-0.869824,-0.486138,0.084122,-0.869824,-0.486138,0.084122,-0.869824,-0.486138,-0.961931,0.048557,-0.268945, + -0.961931,0.048557,-0.268945,-0.961931,0.048557,-0.268945,-0.961931,0.048557,-0.268945,-0.124607,0.772216,0.623021, + -0.124607,0.772216,0.623021,-0.124607,0.772216,0.623021,-0.124607,0.772216,0.623021,0.124608,-0.772219,-0.623018, + 0.124608,-0.772219,-0.623018,0.124608,-0.772219,-0.623018,0.124608,-0.772219,-0.623018,-0.967417,0.047179,-0.248755, + -0.967417,0.047179,-0.248755,-0.967417,0.047179,-0.248755,-0.967417,0.047179,-0.248755,0.863641,0.244584,0.440798, + 0.863641,0.244584,0.440798,0.863641,0.244584,0.440798,0.863641,0.244584,0.440798,0.097865,-0.840259,-0.533280, + 0.097865,-0.840259,-0.533280,0.097865,-0.840259,-0.533280,0.097865,-0.840259,-0.533280,-0.970019,0.046474,-0.238545, + -0.970019,0.046474,-0.238545,-0.970019,0.046474,-0.238545,-0.970019,0.046474,-0.238545,-0.078565,0.880811,0.466904, + -0.078565,0.880811,0.466904,-0.078565,0.880811,0.466904,-0.078565,0.880811,0.466904,0.078578,-0.880810,-0.466904, + 0.078578,-0.880810,-0.466904,0.078578,-0.880810,-0.466904,0.078578,-0.880810,-0.466904,-0.969960,0.046489,-0.238781, + -0.969960,0.046489,-0.238781,-0.969960,0.046489,-0.238781,-0.969960,0.046489,-0.238781,-0.170965,-0.851702,0.495353, + -0.170965,-0.851702,0.495353,-0.170965,-0.851702,0.495353,-0.170965,-0.851702,0.495353,0.170960,0.851703,-0.495353, + 0.170960,0.851703,-0.495353,0.170960,0.851703,-0.495353,0.170960,0.851703,-0.495353,0.973934,-0.045347,0.222255, + 0.973934,-0.045347,0.222255,0.973934,-0.045347,0.222255,0.973934,-0.045347,0.222255,-0.179856,-0.825955,0.534276, + -0.179856,-0.825955,0.534276,-0.179856,-0.825955,0.534276,-0.179856,-0.825955,0.534276,0.179844,0.825954,-0.534281, + 0.179844,0.825954,-0.534281,0.179844,0.825954,-0.534281,0.179844,0.825954,-0.534281,0.974245,-0.045256,0.220903, + 0.974245,-0.045256,0.220903,0.974245,-0.045256,0.220903,0.974245,-0.045256,0.220903,-0.159027,-0.881839,0.443927, + -0.159027,-0.881839,0.443927,-0.159027,-0.881839,0.443927,-0.159027,-0.881839,0.443927,0.159022,0.881838,-0.443930, + 0.159022,0.881838,-0.443930,0.159022,0.881838,-0.443930,0.159022,0.881838,-0.443930,0.959915,-0.049027,0.275969, + 0.959915,-0.049027,0.275969,0.959915,-0.049027,0.275969,0.959915,-0.049027,0.275969,-0.029258,-0.858372,0.512193, + -0.029258,-0.858372,0.512193,-0.029258,-0.858372,0.512193,-0.029258,-0.858372,0.512193,0.165509,0.859253,-0.484036, + 0.165509,0.859253,-0.484036,0.165509,0.859253,-0.484036,0.165509,0.859253,-0.484036,0.962393,-0.048446,0.267306, + 0.962393,-0.048446,0.267306,0.962393,-0.048446,0.267306,0.962393,-0.048446,0.267306,0.970579,0.012173,0.240476, + 0.970579,0.012173,0.240476,0.970579,0.012173,0.240476,0.970579,0.012173,0.240476,-0.233728,-0.103991,0.966725, + -0.233728,-0.103991,0.966725,-0.233728,-0.103991,0.966725,-0.233728,-0.103991,0.966725,0.229389,-0.023307,-0.973056, + 0.229389,-0.023307,-0.973056,0.229389,-0.023307,-0.973056,0.229389,-0.023307,-0.973056,0.023162,0.995551,0.091328, + 0.023162,0.995551,0.091328,0.023162,0.995551,0.091328,0.023162,0.995551,0.091328,-0.028116,-0.996416,-0.079774, + -0.028116,-0.996416,-0.079774,-0.028116,-0.996416,-0.079774,-0.028116,-0.996416,-0.079774,0.969963,-0.048752,0.238315, + 0.969963,-0.048752,0.238315,0.969963,-0.048752,0.238315,0.969963,-0.048752,0.238315,0.964462,-0.047748,0.259873, + 0.964462,-0.047748,0.259873,0.964462,-0.047748,0.259873,-0.022273,-0.994613,-0.101234,-0.022273,-0.994613,-0.101234, + -0.022273,-0.994613,-0.101234,-0.022273,-0.994613,-0.101234,-0.258534,-0.065864,0.963754,-0.258534,-0.065864,0.963754, + -0.258534,-0.065864,0.963754,-0.258534,-0.065864,0.963754,0.257025,0.022507,-0.966142,0.257025,0.022507,-0.966142, + 0.257025,0.022507,-0.966142,0.257025,0.022507,-0.966142,0.208877,0.069393,-0.975477,0.208877,0.069393,-0.975477, + 0.208877,0.069393,-0.975477,0.208877,0.069393,-0.975477,0.041290,0.998691,0.030202,0.041290,0.998691,0.030202, + 0.041290,0.998691,0.030202,0.041290,0.998691,0.030202,0.964497,-0.047923,0.259710,0.964497,-0.047923,0.259710, + 0.964497,-0.047923,0.259710,-0.225810,-0.109229,0.968028,-0.225810,-0.109229,0.968028,-0.225810,-0.109229,0.968028, + -0.225810,-0.109229,0.968028,-0.027466,-0.996183,-0.082858,-0.027466,-0.996183,-0.082858,-0.027466,-0.996183,-0.082858, + -0.027466,-0.996183,-0.082858,0.039831,0.998889,0.025182,0.039831,0.998889,0.025182,0.039831,0.998889,0.025182, + 0.039831,0.998889,0.025182,0.031745,-0.996557,-0.076587,0.031745,-0.996557,-0.076587,0.031745,-0.996557,-0.076587, + 0.031745,-0.996557,-0.076587,-0.291076,-0.086864,0.952748,-0.291076,-0.086864,0.952748,-0.291076,-0.086864,0.952748, + -0.291076,-0.086864,0.952748,0.166984,0.092436,-0.981617,0.166984,0.092436,-0.981617,0.166984,0.092436,-0.981617, + 0.166984,0.092436,-0.981617,0.962271,-0.046664,0.268060,0.962271,-0.046664,0.268060,0.962271,-0.046664,0.268060, + 0.962271,-0.046664,0.268060,-0.965515,0.047735,-0.255933,-0.965515,0.047735,-0.255933,-0.965515,0.047735,-0.255933, + -0.965515,0.047735,-0.255933,-0.027710,-0.995551,-0.090051,-0.027710,-0.995551,-0.090051,-0.027710,-0.995551,-0.090051, + -0.027710,-0.995551,-0.090051,-0.030958,-0.997199,-0.068085,-0.030958,-0.997199,-0.068085,-0.030958,-0.997199,-0.068085, + -0.959514,0.049028,-0.277362,-0.959514,0.049028,-0.277362,-0.959514,0.049028,-0.277362,-0.959514,0.049028,-0.277362, + -0.254729,-0.062236,0.965008,-0.254729,-0.062236,0.965008,-0.254729,-0.062236,0.965008,-0.254729,-0.062236,0.965008, + 0.212508,0.064238,-0.975046,0.212508,0.064238,-0.975046,0.212508,0.064238,-0.975046,0.212508,0.064238,-0.975046, + 0.257080,0.113056,-0.959754,0.257080,0.113056,-0.959754,0.257080,0.113056,-0.959754,0.257080,0.113056,-0.959754, + 0.977522,-0.044399,0.206105,0.977522,-0.044399,0.206105,0.977522,-0.044399,0.206105,0.977522,-0.044399,0.206105, + -0.031098,-0.997182,-0.068273,-0.031098,-0.997182,-0.068273,-0.031098,-0.997182,-0.068273,-0.295931,-0.094801,0.950493, + -0.295931,-0.094801,0.950493,-0.295931,-0.094801,0.950493,-0.295931,-0.094801,0.950493,-0.964696,0.048086,-0.258938, + -0.964696,0.048086,-0.258938,-0.964696,0.048086,-0.258938,-0.964696,0.048086,-0.258938,0.978520,-0.041445,0.201942, + 0.978520,-0.041445,0.201942,0.978520,-0.041445,0.201942,0.978520,-0.041445,0.201942,0.019127,0.995180,0.096181, + 0.019127,0.995180,0.096181,0.019127,0.995180,0.096181,0.019127,0.995180,0.096181,-0.034085,-0.312570,-0.949283, + -0.034085,-0.312570,-0.949283,-0.034085,-0.312570,-0.949283,-0.034085,-0.312570,-0.949283,-0.028452,-0.995651,-0.088705, + -0.028452,-0.995651,-0.088705,-0.028452,-0.995651,-0.088705,-0.028452,-0.995651,-0.088705,0.025564,0.994854,0.098040, + 0.025564,0.994854,0.098040,0.025564,0.994854,0.098040,0.025564,0.994854,0.098040,0.019799,0.995124,0.096622, + 0.019799,0.995124,0.096622,0.019799,0.995124,0.096622,0.019799,0.995124,0.096622,0.022986,0.995275,0.094337, + 0.022986,0.995275,0.094337,0.022986,0.995275,0.094337,0.022986,0.995275,0.094337,0.048661,-0.429769,-0.901627, + 0.048661,-0.429769,-0.901627,0.048661,-0.429769,-0.901627,0.048661,-0.429769,-0.901627,-0.027852,-0.995697,-0.088383, + -0.027852,-0.995697,-0.088383,-0.027852,-0.995697,-0.088383,-0.027852,-0.995697,-0.088383,0.160996,0.883736,-0.439421, + 0.160996,0.883736,-0.439421,0.160996,0.883736,-0.439421,0.160996,0.883736,-0.439421,0.022000,0.995124,0.096152, + 0.022000,0.995124,0.096152,0.022000,0.995124,0.096152,0.022000,0.995124,0.096152,0.031925,-0.428077,-0.903178, + 0.031925,-0.428077,-0.903178,0.031925,-0.428077,-0.903178,0.031925,-0.428077,-0.903178,-0.027743,-0.995567,-0.089876, + -0.027743,-0.995567,-0.089876,-0.027743,-0.995567,-0.089876,-0.027743,-0.995567,-0.089876,-0.002781,-0.997103,-0.076007, + -0.002781,-0.997103,-0.076007,-0.002781,-0.997103,-0.076007,-0.002781,-0.997103,-0.076007,0.020391,0.994393,0.103762, + 0.020391,0.994393,0.103762,0.020391,0.994393,0.103762,0.020391,0.994393,0.103762,-0.026720,-0.995622,-0.089575, + -0.026720,-0.995622,-0.089575,-0.026720,-0.995622,-0.089575,-0.026720,-0.995622,-0.089575,0.015008,0.993864,0.109585, + 0.015008,0.993864,0.109585,0.015008,0.993864,0.109585,0.015008,0.993864,0.109585,-0.033179,-0.418895,-0.907429, + -0.033179,-0.418895,-0.907429,-0.033179,-0.418895,-0.907429,-0.033179,-0.418895,-0.907429,-0.026742,-0.993975,-0.106294, + -0.026742,-0.993975,-0.106294,-0.026742,-0.993975,-0.106294,-0.026742,-0.993975,-0.106294,0.401485,-0.393242,-0.827146, + 0.401485,-0.393242,-0.827146,0.401485,-0.393242,-0.827146,0.401485,-0.393242,-0.827146,-0.025541,-0.995854,-0.087302, + -0.025541,-0.995854,-0.087302,-0.025541,-0.995854,-0.087302,-0.025541,-0.995854,-0.087302,0.027708,0.994923,0.096752, + 0.027708,0.994923,0.096752,0.027708,0.994923,0.096752,0.027708,0.994923,0.096752,0.026769,0.995027,0.095944, + 0.026769,0.995027,0.095944,0.026769,0.995027,0.095944,0.026769,0.995027,0.095944,0.446185,-0.440389,-0.779087, + 0.446185,-0.440389,-0.779087,0.446185,-0.440389,-0.779087,0.446185,-0.440389,-0.779087,-0.022710,-0.995820,-0.088472, + -0.022710,-0.995820,-0.088472,-0.022710,-0.995820,-0.088472,-0.022710,-0.995820,-0.088472,0.419978,-0.392546,-0.818246, + 0.419978,-0.392546,-0.818246,0.419978,-0.392546,-0.818246,0.419978,-0.392546,-0.818246,-0.024888,-0.995762,-0.088532, + -0.024888,-0.995762,-0.088532,-0.024888,-0.995762,-0.088532,-0.024888,-0.995762,-0.088532,-0.039882,-0.366497,-0.929564, + -0.039882,-0.366497,-0.929564,-0.039882,-0.366497,-0.929564,-0.039882,-0.366497,-0.929564,0.026630,0.994816,0.098139, + 0.026630,0.994816,0.098139,0.026630,0.994816,0.098139,0.026630,0.994816,0.098139,0.436108,-0.053134,-0.898324, + 0.436108,-0.053134,-0.898324,0.436108,-0.053134,-0.898324,0.436108,-0.053134,-0.898324,-0.048288,-0.995008,-0.087338, + -0.048288,-0.995008,-0.087338,-0.048288,-0.995008,-0.087338,-0.048288,-0.995008,-0.087338,0.466610,-0.389951,-0.793859, + 0.466610,-0.389951,-0.793859,0.466610,-0.389951,-0.793859,0.466610,-0.389951,-0.793859,-0.018719,-0.994729,-0.100813, + -0.018719,-0.994729,-0.100813,-0.018719,-0.994729,-0.100813,-0.018719,-0.994729,-0.100813,0.162874,0.879496,-0.447167, + 0.162874,0.879496,-0.447167,0.162874,0.879496,-0.447167,0.162874,0.879496,-0.447167,0.025840,0.992856,0.116484, + 0.025840,0.992856,0.116484,0.025840,0.992856,0.116484,0.025840,0.992856,0.116484,0.230799,-0.492495,-0.839155, + 0.230799,-0.492495,-0.839155,0.230799,-0.492495,-0.839155,0.230799,-0.492495,-0.839155,-0.025305,-0.995084,-0.095743, + -0.025305,-0.995084,-0.095743,-0.025305,-0.995084,-0.095743,-0.025305,-0.995084,-0.095743,0.223876,0.016809,-0.974473, + 0.223876,0.016809,-0.974473,0.223876,0.016809,-0.974473,0.223876,0.016809,-0.974473,0.023566,0.994507,0.101980, + 0.023566,0.994507,0.101980,0.023566,0.994507,0.101980,0.023566,0.994507,0.101980,0.159202,0.887802,-0.431813, + 0.159202,0.887802,-0.431813,0.159202,0.887802,-0.431813,0.159202,0.887802,-0.431813,0.161707,0.877405,-0.451675, + 0.161707,0.877405,-0.451675,0.161707,0.877405,-0.451675,0.161707,0.877405,-0.451675,0.158079,0.885888,-0.436135, + 0.158079,0.885888,-0.436135,0.158079,0.885888,-0.436135,0.158079,0.885888,-0.436135,0.168807,0.892431,-0.418415, + 0.168807,0.892431,-0.418415,0.168807,0.892431,-0.418415,0.168807,0.892431,-0.418415,0.163895,0.892830,-0.419515, + 0.163895,0.892830,-0.419515,0.163895,0.892830,-0.419515,0.163895,0.892830,-0.419515,0.161708,0.877404,-0.451678, + 0.161708,0.877404,-0.451678,0.161708,0.877404,-0.451678,0.161708,0.877404,-0.451678,0.161705,0.877408,-0.451671, + 0.161705,0.877408,-0.451671,0.161705,0.877408,-0.451671,0.161705,0.877408,-0.451671,0.158079,0.885887,-0.436136, + 0.158079,0.885887,-0.436136,0.158079,0.885887,-0.436136,0.158079,0.885887,-0.436136,0.141340,0.893661,-0.425902, + 0.141340,0.893661,-0.425902,0.141340,0.893661,-0.425902,0.141340,0.893661,-0.425902,0.147779,0.891636,-0.427956, + 0.147779,0.891636,-0.427956,0.147779,0.891636,-0.427956,0.147779,0.891636,-0.427956,-0.164874,-0.869360,0.465865, + -0.164874,-0.869360,0.465865,-0.164874,-0.869360,0.465865,-0.164874,-0.869360,0.465865,-0.164874,-0.869362,0.465861, + -0.164874,-0.869362,0.465861,-0.164874,-0.869362,0.465861,-0.164874,-0.869362,0.465861,-0.160250,-0.880582,0.445976, + -0.160250,-0.880582,0.445976,-0.160250,-0.880582,0.445976,-0.160250,-0.880582,0.445976,-0.142213,-0.882438,0.448418, + -0.142213,-0.882438,0.448418,-0.142213,-0.882438,0.448418,-0.142213,-0.882438,0.448418,-0.163173,-0.877805,0.450371, + -0.163173,-0.877805,0.450371,-0.163173,-0.877805,0.450371,-0.163173,-0.877805,0.450371,-0.141784,-0.892014,0.429195, + -0.141784,-0.892014,0.429195,-0.141784,-0.892014,0.429195,-0.141784,-0.892014,0.429195,-0.164875,-0.869361,0.465862, + -0.164875,-0.869361,0.465862,-0.164875,-0.869361,0.465862,-0.164875,-0.869361,0.465862,-0.165557,-0.872195,0.460289, + -0.165557,-0.872195,0.460289,-0.165557,-0.872195,0.460289,-0.165557,-0.872195,0.460289,-0.160248,-0.880582,0.445977, + -0.160248,-0.880582,0.445977,-0.160248,-0.880582,0.445977,-0.160248,-0.880582,0.445977,-0.171522,-0.876329,0.450143, + -0.171522,-0.876329,0.450143,-0.171522,-0.876329,0.450143,-0.171522,-0.876329,0.450143,-0.164597,-0.891276,0.422534, + -0.164597,-0.891276,0.422534,-0.164597,-0.891276,0.422534,-0.164597,-0.891276,0.422534,-0.170695,-0.889972,0.422863, + -0.170695,-0.889972,0.422863,-0.170695,-0.889972,0.422863,-0.170695,-0.889972,0.422863,-0.966545,0.047409,-0.252077, + -0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077,0.130644,0.936711,-0.324816, + 0.130644,0.936711,-0.324816,0.130644,0.936711,-0.324816,0.130644,0.936711,-0.324816,0.197571,-0.489122,-0.849544, + 0.197571,-0.489122,-0.849544,0.197571,-0.489122,-0.849544,0.197571,-0.489122,-0.849544,0.966544,-0.047408,0.252081, + 0.966544,-0.047408,0.252081,0.966544,-0.047408,0.252081,0.966544,-0.047408,0.252081,-0.142938,-0.915576,0.375885, + -0.142938,-0.915576,0.375885,-0.142938,-0.915576,0.375885,-0.142938,-0.915576,0.375885,-0.966545,0.047405,-0.252078, + -0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,0.130648,0.936707,-0.324825, + 0.130648,0.936707,-0.324825,0.130648,0.936707,-0.324825,0.130648,0.936707,-0.324825,0.197580,-0.489118,-0.849544, + 0.197580,-0.489118,-0.849544,0.197580,-0.489118,-0.849544,0.197580,-0.489118,-0.849544,0.966545,-0.047401,0.252081, + 0.966545,-0.047401,0.252081,0.966545,-0.047401,0.252081,0.966545,-0.047401,0.252081,-0.142936,-0.915576,0.375886, + -0.142936,-0.915576,0.375886,-0.142936,-0.915576,0.375886,-0.142936,-0.915576,0.375886,-0.966546,0.047405,-0.252076, + -0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,0.130660,0.936711,-0.324809, + 0.130660,0.936711,-0.324809,0.130660,0.936711,-0.324809,0.130660,0.936711,-0.324809,0.197564,-0.489114,-0.849550, + 0.197564,-0.489114,-0.849550,0.197564,-0.489114,-0.849550,0.197564,-0.489114,-0.849550,0.966545,-0.047405,0.252078, + 0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,-0.142936,-0.915577,0.375884, + -0.142936,-0.915577,0.375884,-0.142936,-0.915577,0.375884,-0.142936,-0.915577,0.375884,0.292377,0.174155,-0.940311, + 0.292377,0.174155,-0.940311,0.292377,0.174155,-0.940311,0.292377,0.174155,-0.940311,-0.020078,0.963343,0.267519, + -0.020078,0.963343,0.267519,-0.020078,0.963343,0.267519,-0.020078,0.963343,0.267519,-0.060876,-0.998142,-0.002720, + -0.060876,-0.998142,-0.002720,-0.060876,-0.998142,-0.002720,-0.060876,-0.998142,-0.002720,-0.292103,-0.187200,0.937887, + -0.292103,-0.187200,0.937887,-0.292103,-0.187200,0.937887,-0.292103,-0.187200,0.937887,-0.966545,0.047405,-0.252081, + -0.966545,0.047405,-0.252081,-0.966545,0.047405,-0.252081,-0.966545,0.047405,-0.252081,0.130664,0.936708,-0.324816, + 0.130664,0.936708,-0.324816,0.130664,0.936708,-0.324816,0.130664,0.936708,-0.324816,0.197568,-0.489114,-0.849549, + 0.197568,-0.489114,-0.849549,0.197568,-0.489114,-0.849549,0.197568,-0.489114,-0.849549,0.966545,-0.047405,0.252077, + 0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,-0.142948,-0.915574,0.375885, + -0.142948,-0.915574,0.375885,-0.142948,-0.915574,0.375885,-0.142948,-0.915574,0.375885,0.024753,0.995427,0.092266, + 0.024753,0.995427,0.092266,0.024753,0.995427,0.092266,0.024753,0.995427,0.092266,-0.971204,0.045864,-0.233793, + -0.971204,0.045864,-0.233793,-0.971204,0.045864,-0.233793,-0.971204,0.045864,-0.233793,-0.024758,-0.995427,-0.092264, + -0.024758,-0.995427,-0.092264,-0.024758,-0.995427,-0.092264,-0.024758,-0.995427,-0.092264,0.971205,-0.045870,0.233787, + 0.971205,-0.045870,0.233787,0.971205,-0.045870,0.233787,0.971205,-0.045870,0.233787,0.964894,-0.055082,0.256797, + 0.964894,-0.055082,0.256797,0.964894,-0.055082,0.256797,0.964894,-0.055082,0.256797,-0.154517,0.674708,0.721729, + -0.154517,0.674708,0.721729,-0.154517,0.674708,0.721729,-0.154517,0.674708,0.721729,-0.964894,0.055082,-0.256798, + -0.964894,0.055082,-0.256798,-0.964894,0.055082,-0.256798,-0.964894,0.055082,-0.256798,0.154972,-0.673283,-0.722962, + 0.154972,-0.673283,-0.722962,0.154972,-0.673283,-0.722962,0.154972,-0.673283,-0.722962,0.024758,0.995426,0.092267, + 0.024758,0.995426,0.092267,0.024758,0.995426,0.092267,0.024758,0.995426,0.092267,-0.971205,0.045866,-0.233790, + -0.971205,0.045866,-0.233790,-0.971205,0.045866,-0.233790,-0.971205,0.045866,-0.233790,-0.024753,-0.995427,-0.092266, + -0.024753,-0.995427,-0.092266,-0.024753,-0.995427,-0.092266,-0.024753,-0.995427,-0.092266,0.971205,-0.045864,0.233789, + 0.971205,-0.045864,0.233789,0.971205,-0.045864,0.233789,0.971205,-0.045864,0.233789,0.964904,-0.055117,0.256755, + 0.964904,-0.055117,0.256755,0.964904,-0.055117,0.256755,0.964904,-0.055117,0.256755,-0.154536,0.674710,0.721724, + -0.154536,0.674710,0.721724,-0.154536,0.674710,0.721724,-0.154536,0.674710,0.721724,-0.964907,0.055129,-0.256740, + -0.964907,0.055129,-0.256740,-0.964907,0.055129,-0.256740,-0.964907,0.055129,-0.256740,0.154964,-0.673281,-0.722965, + 0.154964,-0.673281,-0.722965,0.154964,-0.673281,-0.722965,0.154964,-0.673281,-0.722965,0.035414,0.998024,0.051897, + 0.035414,0.998024,0.051897,0.035414,0.998024,0.051897,0.035414,0.998024,0.051897,-0.971206,0.045878,-0.233781, + -0.971206,0.045878,-0.233781,-0.971206,0.045878,-0.233781,-0.971206,0.045878,-0.233781,-0.035413,-0.998024,-0.051894, + -0.035413,-0.998024,-0.051894,-0.035413,-0.998024,-0.051894,-0.035413,-0.998024,-0.051894,0.971208,-0.045866,0.233778, + 0.971208,-0.045866,0.233778,0.971208,-0.045866,0.233778,0.971208,-0.045866,0.233778,0.964896,-0.055070,0.256793, + 0.964896,-0.055070,0.256793,0.964896,-0.055070,0.256793,0.964896,-0.055070,0.256793,-0.154518,0.674709,0.721728, + -0.154518,0.674709,0.721728,-0.154518,0.674709,0.721728,-0.154518,0.674709,0.721728,-0.964901,0.055084,-0.256772, + -0.964901,0.055084,-0.256772,-0.964901,0.055084,-0.256772,-0.964901,0.055084,-0.256772,0.154965,-0.673277,-0.722969, + 0.154965,-0.673277,-0.722969,0.154965,-0.673277,-0.722969,0.154965,-0.673277,-0.722969,0.035414,0.998024,0.051894, + 0.035414,0.998024,0.051894,0.035414,0.998024,0.051894,0.035414,0.998024,0.051894,-0.961573,0.048920,-0.270156, + -0.961573,0.048920,-0.270156,-0.961573,0.048920,-0.270156,-0.961573,0.048920,-0.270156,-0.035414,-0.998024,-0.051898, + -0.035414,-0.998024,-0.051898,-0.035414,-0.998024,-0.051898,-0.035414,-0.998024,-0.051898,0.961572,-0.048920,0.270158, + 0.961572,-0.048920,0.270158,0.961572,-0.048920,0.270158,0.961572,-0.048920,0.270158,0.966616,-0.046902,0.251899, + 0.966616,-0.046902,0.251899,0.966616,-0.046902,0.251899,0.966616,-0.046902,0.251899,-0.154520,0.674714,0.721723, + -0.154520,0.674714,0.721723,-0.154520,0.674714,0.721723,-0.154520,0.674714,0.721723,-0.966863,0.047749,-0.250790, + -0.966863,0.047749,-0.250790,-0.966863,0.047749,-0.250790,-0.966863,0.047749,-0.250790,0.154974,-0.673284,-0.722961, + 0.154974,-0.673284,-0.722961,0.154974,-0.673284,-0.722961,0.154974,-0.673284,-0.722961,0.035414,0.998024,0.051896, + 0.035414,0.998024,0.051896,0.035414,0.998024,0.051896,0.035414,0.998024,0.051896,-0.971208,0.045865,-0.233777, + -0.971208,0.045865,-0.233777,-0.971208,0.045865,-0.233777,-0.971208,0.045865,-0.233777,-0.035414,-0.998024,-0.051896, + -0.035414,-0.998024,-0.051896,-0.035414,-0.998024,-0.051896,-0.035414,-0.998024,-0.051896,0.971208,-0.045855,0.233778, + 0.971208,-0.045855,0.233778,0.971208,-0.045855,0.233778,0.971208,-0.045855,0.233778,0.971685,-0.011227,0.236014, + 0.971685,-0.011227,0.236014,0.971685,-0.011227,0.236014,0.971685,-0.011227,0.236014,0.237930,0.158700,-0.958229, + 0.237930,0.158700,-0.958229,0.237930,0.158700,-0.958229,0.237930,0.158700,-0.958229,-0.238556,-0.010156,0.971076, + -0.238556,-0.010156,0.971076,-0.238556,-0.010156,0.971076,-0.238556,-0.010156,0.971076,-0.049821,-0.998740,0.006076, + -0.049821,-0.998740,0.006076,-0.049821,-0.998740,0.006076,-0.049821,-0.998740,0.006076,0.029027,0.996711,0.075665, + 0.029027,0.996711,0.075665,0.029027,0.996711,0.075665,0.029027,0.996711,0.075665,-0.996148,0.011911,-0.086878, + -0.996148,0.011911,-0.086878,-0.996148,0.011911,-0.086878,-0.996148,0.011911,-0.086878,0.095222,-0.855510,-0.508955, + 0.095222,-0.855510,-0.508955,0.095222,-0.855510,-0.508955,0.095222,-0.855510,-0.508955,-0.015845,-0.991929,-0.125799, + -0.015845,-0.991929,-0.125799,-0.015845,-0.991929,-0.125799,-0.015845,-0.991929,-0.125799,0.967200,-0.031473,0.252059, + 0.967200,-0.031473,0.252059,0.967200,-0.031473,0.252059,0.967200,-0.031473,0.252059,-0.283491,-0.197804,0.938353, + -0.283491,-0.197804,0.938353,-0.283491,-0.197804,0.938353,-0.283491,-0.197804,0.938353,-0.983061,0.100534,-0.153243, + -0.983061,0.100534,-0.153243,-0.983061,0.100534,-0.153243,-0.983061,0.100534,-0.153243,0.265838,0.057814,-0.962282, + 0.265838,0.057814,-0.962282,0.265838,0.057814,-0.962282,0.265838,0.057814,-0.962282,0.996148,-0.011918,0.086874, + 0.996148,-0.011918,0.086874,0.996148,-0.011918,0.086874,0.996148,-0.011918,0.086874,-0.267564,-0.133776,0.954208, + -0.267564,-0.133776,0.954208,-0.267564,-0.133776,0.954208,-0.267564,-0.133776,0.954208,0.979334,-0.010470,0.201979, + 0.979334,-0.010470,0.201979,0.979334,-0.010470,0.201979,0.979334,-0.010470,0.201979,0.237655,-0.041836,-0.970448, + 0.237655,-0.041836,-0.970448,0.237655,-0.041836,-0.970448,0.237655,-0.041836,-0.970448,-0.247989,-0.128021,0.960267, + -0.247989,-0.128021,0.960267,-0.247989,-0.128021,0.960267,-0.247989,-0.128021,0.960267,-0.952987,0.163605,-0.255046, + -0.952987,0.163605,-0.255046,-0.952987,0.163605,-0.255046,-0.952987,0.163605,-0.255046,-0.965791,0.051228,-0.254213, + -0.965791,0.051228,-0.254213,-0.965791,0.051228,-0.254213,-0.965791,0.051228,-0.254213,-0.874999,-0.408931,-0.259137, + -0.874999,-0.408931,-0.259137,-0.874999,-0.408931,-0.259137,-0.874999,-0.408931,-0.259137,-0.896853,0.389160,-0.210259, + -0.896853,0.389160,-0.210259,-0.896853,0.389160,-0.210259,-0.896853,0.389160,-0.210259,0.398189,-0.916320,0.042465, + 0.398189,-0.916320,0.042465,0.398189,-0.916320,0.042465,0.398189,-0.916320,0.042465,0.546114,0.813501,0.199937, + 0.546114,0.813501,0.199937,0.546114,0.813501,0.199937,0.546114,0.813501,0.199937,-0.011961,0.997802,0.065176, + -0.011961,0.997802,0.065176,-0.011961,0.997802,0.065176,-0.011961,0.997802,0.065176,0.966936,-0.027781,0.253503, + 0.966936,-0.027781,0.253503,0.966936,-0.027781,0.253503,0.966936,-0.027781,0.253503,-0.965646,0.063324,-0.252028, + -0.965646,0.063324,-0.252028,-0.965646,0.063324,-0.252028,-0.965646,0.063324,-0.252028,0.986546,-0.032554,0.160208, + 0.986546,-0.032554,0.160208,0.986546,-0.032554,0.160208,0.986546,-0.032554,0.160208,0.959276,-0.056487,0.276765, + 0.959276,-0.056487,0.276765,0.959276,-0.056487,0.276765,0.959276,-0.056487,0.276765,-0.966545,0.047395,-0.252082, + -0.966545,0.047395,-0.252082,-0.966545,0.047395,-0.252082,-0.966545,0.047395,-0.252082,0.253378,0.023643,-0.967078, + 0.253378,0.023643,-0.967078,0.253378,0.023643,-0.967078,0.253378,0.023643,-0.967078,-0.250206,0.042083,0.967278, + -0.250206,0.042083,0.967278,-0.250206,0.042083,0.967278,-0.250206,0.042083,0.967278,-0.969581,0.046600,-0.240294, + -0.969581,0.046600,-0.240294,-0.969581,0.046600,-0.240294,-0.969581,0.046600,-0.240294,-0.029084,-0.996690,-0.075918, + -0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,-0.969580,0.046615,-0.240295, + -0.969580,0.046615,-0.240295,-0.969580,0.046615,-0.240295,-0.969580,0.046615,-0.240295,-0.029084,-0.996690,-0.075913, + -0.029084,-0.996690,-0.075913,-0.029084,-0.996690,-0.075913,-0.029084,-0.996690,-0.075913,0.966544,-0.047401,0.252082, + 0.966544,-0.047401,0.252082,0.966544,-0.047401,0.252082,0.966544,-0.047401,0.252082,-0.017522,-0.992641,-0.119819, + -0.017522,-0.992641,-0.119819,-0.017522,-0.992641,-0.119819,-0.017522,-0.992641,-0.119819,0.016716,0.992286,0.122840, + 0.016716,0.992286,0.122840,0.016716,0.992286,0.122840,0.016716,0.992286,0.122840,0.968648,-0.049859,0.243385, + 0.968648,-0.049859,0.243385,0.968648,-0.049859,0.243385,0.968648,-0.049859,0.243385,-0.043832,-0.998850,-0.019433, + -0.043832,-0.998850,-0.019433,-0.043832,-0.998850,-0.019433,-0.043832,-0.998850,-0.019433,0.042648,0.998801,0.024041, + 0.042648,0.998801,0.024041,0.042648,0.998801,0.024041,0.042648,0.998801,0.024041,0.968826,-0.043905,0.243820, + 0.968826,-0.043905,0.243820,0.968826,-0.043905,0.243820,0.968826,-0.043905,0.243820,0.253325,0.066120,-0.965119, + 0.253325,0.066120,-0.965119,0.253325,0.066120,-0.965119,0.253325,0.066120,-0.965119,0.966545,-0.047403,0.252078, + 0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,-0.253321,-0.066120,0.965120, + -0.253321,-0.066120,0.965120,-0.253321,-0.066120,0.965120,-0.253321,-0.066120,0.965120,0.253325,0.066120,-0.965119, + 0.253325,0.066120,-0.965119,0.253325,0.066120,-0.965119,0.253325,0.066120,-0.965119,0.966546,-0.047402,0.252074, + 0.966546,-0.047402,0.252074,0.966546,-0.047402,0.252074,0.966546,-0.047402,0.252074,-0.253318,-0.066120,0.965121, + -0.253318,-0.066120,0.965121,-0.253318,-0.066120,0.965121,-0.253318,-0.066120,0.965121,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.966545,-0.047403,0.252079, + 0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.031616,-0.997295,-0.066352, + -0.031616,-0.997295,-0.066352,-0.031616,-0.997295,-0.066352,-0.031616,-0.997295,-0.066352,0.969527,-0.046773,0.240477, + 0.969527,-0.046773,0.240477,0.969527,-0.046773,0.240477,0.969527,-0.046773,0.240477,0.029908,0.996901,0.072763, + 0.029908,0.996901,0.072763,0.029908,0.996901,0.072763,0.029908,0.996901,0.072763,0.969532,-0.046613,0.240487, + 0.969532,-0.046613,0.240487,0.969532,-0.046613,0.240487,0.969532,-0.046613,0.240487,-0.025745,-0.995742,-0.088514, + -0.025745,-0.995742,-0.088514,-0.025745,-0.995742,-0.088514,-0.025745,-0.995742,-0.088514,0.969529,-0.046772,0.240471, + 0.969529,-0.046772,0.240471,0.969529,-0.046772,0.240471,0.969529,-0.046772,0.240471,0.024025,0.995187,0.095000, + 0.024025,0.995187,0.095000,0.024025,0.995187,0.095000,0.024025,0.995187,0.095000,-0.036318,-0.998163,-0.048486, + -0.036318,-0.998163,-0.048486,-0.036318,-0.998163,-0.048486,-0.036318,-0.998163,-0.048486,0.969527,-0.046769,0.240478, + 0.969527,-0.046769,0.240478,0.969527,-0.046769,0.240478,0.969527,-0.046769,0.240478,0.034646,0.997894,0.054846, + 0.034646,0.997894,0.054846,0.034646,0.997894,0.054846,0.034646,0.997894,0.054846,0.254843,0.066047,-0.964724, + 0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.966545,-0.047404,0.252080, + 0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.254843,0.066052,-0.964724, + 0.254843,0.066052,-0.964724,0.254843,0.066052,-0.964724,0.254843,0.066052,-0.964724,-0.940144,0.250341,-0.231213, + -0.940144,0.250341,-0.231213,-0.940144,0.250341,-0.231213,-0.940144,0.250341,-0.231213,-0.226224,-0.965907,-0.125881, + -0.226224,-0.965907,-0.125881,-0.226224,-0.965907,-0.125881,-0.226224,-0.965907,-0.125881,0.940147,-0.250326,0.231215, + 0.940147,-0.250326,0.231215,0.940147,-0.250326,0.231215,0.940147,-0.250326,0.231215,0.226226,0.965907,0.125882, + 0.226226,0.965907,0.125882,0.226226,0.965907,0.125882,0.226226,0.965907,0.125882,0.943917,-0.249292,0.216504, + 0.943917,-0.249292,0.216504,0.943917,-0.249292,0.216504,0.943917,-0.249292,0.216504,-0.227832,-0.964714,-0.131982, + -0.227832,-0.964714,-0.131982,-0.227832,-0.964714,-0.131982,-0.227832,-0.964714,-0.131982,-0.935822,0.246353,-0.252087, + -0.935822,0.246353,-0.252087,-0.935822,0.246353,-0.252087,-0.935822,0.246353,-0.252087,0.226226,0.965906,0.125886, + 0.226226,0.965906,0.125886,0.226226,0.965906,0.125886,0.226226,0.965906,0.125886,-0.254843,-0.066051,0.964724, + -0.254843,-0.066051,0.964724,-0.254843,-0.066051,0.964724,-0.254843,-0.066051,0.964724,-0.958067,0.244271,-0.149795, + -0.958067,0.244271,-0.149795,-0.958067,0.244271,-0.149795,-0.958067,0.244271,-0.149795,0.940147,-0.250326,0.231214, + 0.940147,-0.250326,0.231214,0.940147,-0.250326,0.231214,0.940147,-0.250326,0.231214,-0.226222,-0.965907,-0.125889, + -0.226222,-0.965907,-0.125889,-0.226222,-0.965907,-0.125889,-0.226222,-0.965907,-0.125889,-0.940147,0.250326,-0.231217, + -0.940147,0.250326,-0.231217,-0.940147,0.250326,-0.231217,-0.940147,0.250326,-0.231217,0.226228,0.965905,0.125888, + 0.226228,0.965905,0.125888,0.226228,0.965905,0.125888,0.226228,0.965905,0.125888,0.253093,0.058637,-0.965663, + 0.253093,0.058637,-0.965663,0.253093,0.058637,-0.965663,0.253093,0.058637,-0.965663,0.218361,-0.078350,-0.972718, + 0.218361,-0.078350,-0.972718,0.218361,-0.078350,-0.972718,0.218361,-0.078350,-0.972718,0.940149,-0.250323,0.231209, + 0.940149,-0.250323,0.231209,0.940149,-0.250323,0.231209,0.940149,-0.250323,0.231209,-0.226227,-0.965905,-0.125889, + -0.226227,-0.965905,-0.125889,-0.226227,-0.965905,-0.125889,-0.226227,-0.965905,-0.125889,-0.940146,0.250330,-0.231214, + -0.940146,0.250330,-0.231214,-0.940146,0.250330,-0.231214,-0.940146,0.250330,-0.231214,0.226225,0.965906,0.125885, + 0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.253083,0.058637,-0.965666, + 0.253083,0.058637,-0.965666,0.253083,0.058637,-0.965666,0.253083,0.058637,-0.965666,0.225261,0.965650,0.129528, + 0.225261,0.965650,0.129528,0.225261,0.965650,0.129528,0.225261,0.965650,0.129528,0.940147,-0.250329,0.231211, + 0.940147,-0.250329,0.231211,0.940147,-0.250329,0.231211,0.940147,-0.250329,0.231211,-0.226230,-0.965905,-0.125890, + -0.226230,-0.965905,-0.125890,-0.226230,-0.965905,-0.125890,-0.226230,-0.965905,-0.125890,-0.940148,0.250326,-0.231212, + -0.940148,0.250326,-0.231212,-0.940148,0.250326,-0.231212,-0.940148,0.250326,-0.231212,0.226224,0.965907,0.125882, + 0.226224,0.965907,0.125882,0.226224,0.965907,0.125882,0.226224,0.965907,0.125882,0.249509,0.043582,-0.967391, + 0.249509,0.043582,-0.967391,0.249509,0.043582,-0.967391,0.249509,0.043582,-0.967391,-0.226226,-0.965906,-0.125885, + -0.226226,-0.965906,-0.125885,-0.226226,-0.965906,-0.125885,-0.226226,-0.965906,-0.125885,0.940146,-0.250327,0.231217, + 0.940146,-0.250327,0.231217,0.940146,-0.250327,0.231217,0.940146,-0.250327,0.231217,-0.226230,-0.965905,-0.125887, + -0.226230,-0.965905,-0.125887,-0.226230,-0.965905,-0.125887,-0.226230,-0.965905,-0.125887,-0.940147,0.250328,-0.231212, + -0.940147,0.250328,-0.231212,-0.940147,0.250328,-0.231212,-0.940147,0.250328,-0.231212,0.226225,0.965906,0.125885, + 0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.253105,0.058638,-0.965660, + 0.253105,0.058638,-0.965660,0.253105,0.058638,-0.965660,0.253105,0.058638,-0.965660,-0.939963,0.250384,-0.231901, + -0.939963,0.250384,-0.231901,-0.939963,0.250384,-0.231901,-0.939963,0.250384,-0.231901,0.941031,-0.246521,0.231706, + 0.941031,-0.246521,0.231706,0.941031,-0.246521,0.231706,0.941031,-0.246521,0.231706,-0.226225,-0.965906,-0.125886, + -0.226225,-0.965906,-0.125886,-0.226225,-0.965906,-0.125886,-0.226225,-0.965906,-0.125886,-0.940147,0.250328,-0.231214, + -0.940147,0.250328,-0.231214,-0.940147,0.250328,-0.231214,-0.940147,0.250328,-0.231214,0.189639,0.948070,0.255344, + 0.189639,0.948070,0.255344,0.189639,0.948070,0.255344,0.189639,0.948070,0.255344,0.246179,0.029768,-0.968767, + 0.246179,0.029768,-0.968767,0.246179,0.029768,-0.968767,0.246179,0.029768,-0.968767,0.287052,0.947410,-0.141478, + 0.287052,0.947410,-0.141478,0.287052,0.947410,-0.141478,0.287052,0.947410,-0.141478,0.234152,-0.018405,-0.972026, + 0.234152,-0.018405,-0.972026,0.234152,-0.018405,-0.972026,0.234152,-0.018405,-0.972026,-0.225262,-0.965649,-0.129530, + -0.225262,-0.965649,-0.129530,-0.225262,-0.965649,-0.129530,-0.225262,-0.965649,-0.129530,-0.267528,-0.962461,0.045797, + -0.267528,-0.962461,0.045797,-0.267528,-0.962461,0.045797,-0.267528,-0.962461,0.045797,0.939961,-0.250390,0.231901, + 0.939961,-0.250390,0.231901,0.939961,-0.250390,0.231901,0.939961,-0.250390,0.231901,0.958067,-0.244272,0.149796, + 0.958067,-0.244272,0.149796,0.958067,-0.244272,0.149796,0.958067,-0.244272,0.149796,-0.226223,-0.965907,-0.125887, + -0.226223,-0.965907,-0.125887,-0.226223,-0.965907,-0.125887,-0.226223,-0.965907,-0.125887,0.940149,-0.250325,0.231209, + 0.940149,-0.250325,0.231209,0.940149,-0.250325,0.231209,0.940149,-0.250325,0.231209,-0.940151,0.250308,-0.231218, + -0.940151,0.250308,-0.231218,-0.940151,0.250308,-0.231218,-0.940151,0.250308,-0.231218,0.150487,0.087544,-0.984728, + 0.150487,0.087544,-0.984728,0.150487,0.087544,-0.984728,0.150487,0.087544,-0.984728,0.229202,0.967565,0.106228, + 0.229202,0.967565,0.106228,0.229202,0.967565,0.106228,0.229202,0.967565,0.106228,-0.226226,-0.965905,-0.125890, + -0.226226,-0.965905,-0.125890,-0.226226,-0.965905,-0.125890,-0.226226,-0.965905,-0.125890,0.928581,-0.252887,0.271636, + 0.928581,-0.252887,0.271636,0.928581,-0.252887,0.271636,0.928581,-0.252887,0.271636,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.226226,0.965906,0.125884, + 0.226226,0.965906,0.125884,0.226226,0.965906,0.125884,0.226226,0.965906,0.125884,-0.940146,0.250325,-0.231219, + -0.940146,0.250325,-0.231219,-0.940146,0.250325,-0.231219,-0.940146,0.250325,-0.231219,-0.250261,-0.046704,0.967051, + -0.250261,-0.046704,0.967051,-0.250261,-0.046704,0.967051,-0.250261,-0.046704,0.967051,0.277010,0.060111,-0.958985, + 0.277010,0.060111,-0.958985,0.277010,0.060111,-0.958985,0.277010,0.060111,-0.958985,0.252296,0.055237,-0.966072, + 0.252296,0.055237,-0.966072,0.252296,0.055237,-0.966072,0.252296,0.055237,-0.966072,0.226225,0.965907,0.125883, + 0.226225,0.965907,0.125883,0.226225,0.965907,0.125883,0.226225,0.965907,0.125883,-0.940147,0.250328,-0.231213, + -0.940147,0.250328,-0.231213,-0.940147,0.250328,-0.231213,-0.940147,0.250328,-0.231213,-0.226225,-0.965907,-0.125882, + -0.226225,-0.965907,-0.125882,-0.226225,-0.965907,-0.125882,-0.226225,-0.965907,-0.125882,0.940149,-0.250326,0.231208, + 0.940149,-0.250326,0.231208,0.940149,-0.250326,0.231208,0.940149,-0.250326,0.231208,-0.928583,0.252886,-0.271630, + -0.928583,0.252886,-0.271630,-0.928583,0.252886,-0.271630,-0.928583,0.252886,-0.271630,0.226226,0.965907,0.125880, + 0.226226,0.965907,0.125880,0.226226,0.965907,0.125880,0.226226,0.965907,0.125880,0.294203,0.055447,-0.954133, + 0.294203,0.055447,-0.954133,0.294203,0.055447,-0.954133,0.294203,0.055447,-0.954133,0.940147,-0.250330,0.231212, + 0.940147,-0.250330,0.231212,0.940147,-0.250330,0.231212,0.940147,-0.250330,0.231212,0.940146,-0.250329,0.231215, + 0.940146,-0.250329,0.231215,0.940146,-0.250329,0.231215,0.940146,-0.250329,0.231215,-0.226225,-0.965906,-0.125888, + -0.226225,-0.965906,-0.125888,-0.226225,-0.965906,-0.125888,-0.226225,-0.965906,-0.125888,-0.940148,0.250328,-0.231210, + -0.940148,0.250328,-0.231210,-0.940148,0.250328,-0.231210,-0.940148,0.250328,-0.231210,0.226226,0.965906,0.125883, + 0.226226,0.965906,0.125883,0.226226,0.965906,0.125883,0.226226,0.965906,0.125883,0.252104,0.054403,-0.966170, + 0.252104,0.054403,-0.966170,0.252104,0.054403,-0.966170,0.252104,0.054403,-0.966170,0.268459,0.962741,-0.032543, + 0.268459,0.962741,-0.032543,0.268459,0.962741,-0.032543,0.268459,0.962741,-0.032543,0.263612,0.063705,-0.962523, + 0.263612,0.063705,-0.962523,0.263612,0.063705,-0.962523,0.263612,0.063705,-0.962523,-0.940147,0.250331,-0.231210, + -0.940147,0.250331,-0.231210,-0.940147,0.250331,-0.231210,-0.940147,0.250331,-0.231210,-0.220855,-0.964143,-0.147140, + -0.220855,-0.964143,-0.147140,-0.220855,-0.964143,-0.147140,-0.220855,-0.964143,-0.147140,0.940145,-0.250338,0.231211, + 0.940145,-0.250338,0.231211,0.940145,-0.250338,0.231211,0.940145,-0.250338,0.231211,-0.254845,-0.066041,0.964724, + -0.254845,-0.066041,0.964724,-0.254845,-0.066041,0.964724,-0.254845,-0.066041,0.964724,0.250444,0.047456,-0.966967, + 0.250444,0.047456,-0.966967,0.250444,0.047456,-0.966967,0.250444,0.047456,-0.966967,0.961634,-0.257043,0.095856, + 0.961634,-0.257043,0.095856,0.961634,-0.257043,0.095856,0.961634,-0.257043,0.095856,0.929076,-0.214111,0.301619, + 0.929076,-0.214111,0.301619,0.929076,-0.214111,0.301619,0.929076,-0.214111,0.301619,0.339645,0.633433,-0.695273, + 0.339645,0.633433,-0.695273,0.339645,0.633433,-0.695273,0.339645,0.633433,-0.695273,-0.947655,0.238062,-0.212781, + -0.947655,0.238062,-0.212781,-0.947655,0.238062,-0.212781,-0.947655,0.238062,-0.212781,-0.920211,0.279730,-0.273794, + -0.920211,0.279730,-0.273794,-0.920211,0.279730,-0.273794,-0.920211,0.279730,-0.273794,0.339643,0.633379,-0.695323, + 0.339643,0.633379,-0.695323,0.339643,0.633379,-0.695323,0.339643,0.633379,-0.695323,0.922457,-0.276651,0.269326, + 0.922457,-0.276651,0.269326,0.922457,-0.276651,0.269326,0.922457,-0.276651,0.269326,0.174455,-0.229270,-0.957602, + 0.174455,-0.229270,-0.957602,0.174455,-0.229270,-0.957602,0.174455,-0.229270,-0.957602,-0.928409,0.212375,-0.304881, + -0.928409,0.212375,-0.304881,-0.928409,0.212375,-0.304881,-0.928409,0.212375,-0.304881,0.970194,-0.211253,0.118730, + 0.970194,-0.211253,0.118730,0.970194,-0.211253,0.118730,0.970194,-0.211253,0.118730,0.174042,-0.230595,-0.957358, + 0.174042,-0.230595,-0.957358,0.174042,-0.230595,-0.957358,0.174042,-0.230595,-0.957358,-0.943176,0.267142,-0.197620, + -0.943176,0.267142,-0.197620,-0.943176,0.267142,-0.197620,-0.943176,0.267142,-0.197620,0.314127,0.915895,-0.249920, + 0.314127,0.915895,-0.249920,0.314127,0.915895,-0.249920,0.314127,0.915895,-0.249920,-0.192335,0.238748,0.951844, + -0.192335,0.238748,0.951844,-0.192335,0.238748,0.951844,-0.192335,0.238748,0.951844,-0.310152,-0.615761,0.724323, + -0.310152,-0.615761,0.724323,-0.310152,-0.615761,0.724323,-0.310152,-0.615761,0.724323,0.068397,-0.448527,-0.891149, + 0.068397,-0.448527,-0.891149,0.068397,-0.448527,-0.891149,0.068397,-0.448527,-0.891149,0.945894,-0.224214,0.234548, + 0.945894,-0.224214,0.234548,0.945894,-0.224214,0.234548,0.945894,-0.224214,0.234548,0.230399,0.966874,0.109873, + 0.230399,0.966874,0.109873,0.230399,0.966874,0.109873,0.230399,0.966874,0.109873,0.194612,-0.231598,-0.953147, + 0.194612,-0.231598,-0.953147,0.194612,-0.231598,-0.953147,0.194612,-0.231598,-0.953147,0.315269,0.623392,-0.715533, + 0.315269,0.623392,-0.715533,0.315269,0.623392,-0.715533,0.315269,0.623392,-0.715533,-0.904696,0.272378,-0.327621, + -0.904696,0.272378,-0.327621,-0.904696,0.272378,-0.327621,-0.904696,0.272378,-0.327621,-0.912072,0.224396,-0.343178, + -0.912072,0.224396,-0.343178,-0.912072,0.224396,-0.343178,-0.912072,0.224396,-0.343178,0.938200,-0.285307,0.195910, + 0.938200,-0.285307,0.195910,0.938200,-0.285307,0.195910,0.938200,-0.285307,0.195910,-0.218318,-0.963408,-0.155509, + -0.218318,-0.963408,-0.155509,-0.218318,-0.963408,-0.155509,-0.218318,-0.963408,-0.155509,0.944805,-0.249031,0.212901, + 0.944805,-0.249031,0.212901,0.944805,-0.249031,0.212901,-0.929899,0.252634,-0.267328,-0.929899,0.252634,-0.267328, + -0.929899,0.252634,-0.267328,-0.933437,0.251909,-0.255415,-0.933437,0.251909,-0.255415,-0.933437,0.251909,-0.255415, + -0.933437,0.251909,-0.255415,0.943306,-0.249469,0.218952,0.943306,-0.249469,0.218952,0.943306,-0.249469,0.218952, + 0.943306,-0.249469,0.218952,0.930051,-0.252617,0.266813,0.930051,-0.252617,0.266813,0.930051,-0.252617,0.266813, + 0.930051,-0.252617,0.266813,-0.235485,-0.967686,-0.090175,-0.235485,-0.967686,-0.090175,-0.235485,-0.967686,-0.090175, + -0.235485,-0.967686,-0.090175,-0.930054,0.252603,-0.266815,-0.930054,0.252603,-0.266815,-0.930054,0.252603,-0.266815, + -0.930054,0.252603,-0.266815,0.235483,0.967686,0.090175,0.235483,0.967686,0.090175,0.235483,0.967686,0.090175, + 0.235483,0.967686,0.090175,0.937671,-0.250948,0.240412,0.937671,-0.250948,0.240412,0.937671,-0.250948,0.240412, + 0.937671,-0.250948,0.240412,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.937672,0.250945,-0.240411,-0.937672,0.250945,-0.240411,-0.937672,0.250945,-0.240411, + -0.937672,0.250945,-0.240411,0.230068,0.966797,0.111229,0.230068,0.966797,0.111229,0.230068,0.966797,0.111229, + 0.230068,0.966797,0.111229,0.942541,-0.249672,0.221993,0.942541,-0.249672,0.221993,0.942541,-0.249672,0.221993, + 0.942541,-0.249672,0.221993,-0.942537,0.249686,-0.221992,-0.942537,0.249686,-0.221992,-0.942537,0.249686,-0.221992, + -0.942537,0.249686,-0.221992,0.230069,0.966797,0.111230,0.230069,0.966797,0.111230,0.230069,0.966797,0.111230, + 0.230069,0.966797,0.111230,-0.235447,-0.967682,-0.090314,-0.235447,-0.967682,-0.090314,-0.235447,-0.967682,-0.090314, + -0.235447,-0.967682,-0.090314,0.943034,-0.249551,0.220024,0.943034,-0.249551,0.220024,0.943034,-0.249551,0.220024, + 0.943034,-0.249551,0.220024,-0.944748,0.249053,-0.213129,-0.944748,0.249053,-0.213129,-0.944748,0.249053,-0.213129, + -0.944748,0.249053,-0.213129,0.235445,0.967682,0.090313,0.235445,0.967682,0.090313,0.235445,0.967682,0.090313, + 0.235445,0.967682,0.090313,-0.247125,-0.033676,0.968398,-0.247125,-0.033676,0.968398,-0.247125,-0.033676,0.968398, + -0.247125,-0.033676,0.968398,0.218453,0.963484,0.154845,0.218453,0.963484,0.154845,0.218453,0.963484,0.154845, + 0.218453,0.963484,0.154845,-0.218459,-0.963483,-0.154846,-0.218459,-0.963483,-0.154846,-0.218459,-0.963483,-0.154846, + -0.218459,-0.963483,-0.154846,-0.930339,0.252555,-0.265866,-0.930339,0.252555,-0.265866,-0.930339,0.252555,-0.265866, + -0.930339,0.252555,-0.265866,0.232765,0.967294,0.100806,0.232765,0.967294,0.100806,0.232765,0.967294,0.100806, + 0.232765,0.967294,0.100806,-0.232763,-0.967295,-0.100805,-0.232763,-0.967295,-0.100805,-0.232763,-0.967295,-0.100805, + -0.232763,-0.967295,-0.100805,-0.930483,0.252532,-0.265387,-0.930483,0.252532,-0.265387,-0.930483,0.252532,-0.265387, + -0.930483,0.252532,-0.265387,-0.232855,-0.967310,-0.100450,-0.232855,-0.967310,-0.100450,-0.232855,-0.967310,-0.100450, + -0.232855,-0.967310,-0.100450,0.232853,0.967310,0.100450,0.232853,0.967310,0.100450,0.232853,0.967310,0.100450, + 0.232853,0.967310,0.100450,0.944468,-0.249135,0.214269,0.944468,-0.249135,0.214269,0.944468,-0.249135,0.214269, + 0.944468,-0.249135,0.214269,-0.218583,-0.963526,-0.154397,-0.218583,-0.963526,-0.154397,-0.218583,-0.963526,-0.154397, + -0.218583,-0.963526,-0.154397,0.218581,0.963527,0.154396,0.218581,0.963527,0.154396,0.218581,0.963527,0.154396, + 0.218581,0.963527,0.154396,0.944403,-0.249154,0.214534,0.944403,-0.249154,0.214534,0.944403,-0.249154,0.214534, + 0.944403,-0.249154,0.214534,-0.944989,0.248982,-0.212142,-0.944989,0.248982,-0.212142,-0.944989,0.248982,-0.212142, + -0.944989,0.248982,-0.212142,0.216172,0.962618,0.163204,0.216172,0.962618,0.163204,0.216172,0.962618,0.163204, + 0.216172,0.962618,0.163204,0.944989,-0.248981,0.212143,0.944989,-0.248981,0.212143,0.944989,-0.248981,0.212143, + 0.944989,-0.248981,0.212143,-0.216172,-0.962618,-0.163204,-0.216172,-0.962618,-0.163204,-0.216172,-0.962618,-0.163204, + -0.216172,-0.962618,-0.163204,-0.942534,0.249688,-0.222005,-0.942534,0.249688,-0.222005,-0.942534,0.249688,-0.222005, + -0.942534,0.249688,-0.222005,0.942533,-0.249690,0.222005,0.942533,-0.249690,0.222005,0.942533,-0.249690,0.222005, + 0.942533,-0.249690,0.222005,-0.216393,-0.962701,-0.162421,-0.216393,-0.962701,-0.162421,-0.216393,-0.962701,-0.162421, + -0.216393,-0.962701,-0.162421,-0.937674,0.250951,-0.240398,-0.937674,0.250951,-0.240398,-0.937674,0.250951,-0.240398, + -0.937674,0.250951,-0.240398,0.937676,-0.250941,0.240399,0.937676,-0.250941,0.240399,0.937676,-0.250941,0.240399, + 0.937676,-0.250941,0.240399,-0.216385,-0.962704,-0.162417,-0.216385,-0.962704,-0.162417,-0.216385,-0.962704,-0.162417, + -0.216385,-0.962704,-0.162417,0.216368,0.962693,0.162505,0.216368,0.962693,0.162505,0.216368,0.962693,0.162505, + 0.216368,0.962693,0.162505,-0.929725,0.252674,-0.267893,-0.929725,0.252674,-0.267893,-0.929725,0.252674,-0.267893, + -0.929725,0.252674,-0.267893,0.929729,-0.252659,0.267894,0.929729,-0.252659,0.267894,0.929729,-0.252659,0.267894, + 0.929729,-0.252659,0.267894,-0.216365,-0.962693,-0.162504,-0.216365,-0.962693,-0.162504,-0.216365,-0.962693,-0.162504, + -0.216365,-0.962693,-0.162504,-0.249638,-0.044087,0.967335,-0.249638,-0.044087,0.967335,-0.249638,-0.044087,0.967335, + -0.249638,-0.044087,0.967335,0.221821,0.964631,0.142413,0.221821,0.964631,0.142413,0.221821,0.964631,0.142413, + 0.221821,0.964631,0.142413,-0.943326,0.249301,-0.219054,-0.943326,0.249301,-0.219054,-0.943326,0.249301,-0.219054, + -0.943326,0.249301,-0.219054,-0.221820,-0.964632,-0.142413,-0.221820,-0.964632,-0.142413,-0.221820,-0.964632,-0.142413, + -0.221820,-0.964632,-0.142413,0.943326,-0.249303,0.219053,0.943326,-0.249303,0.219053,0.943326,-0.249303,0.219053, + 0.943326,-0.249303,0.219053,0.221823,0.964631,0.142415,0.221823,0.964631,0.142415,0.221823,0.964631,0.142415, + 0.221823,0.964631,0.142415,-0.940147,0.250327,-0.231214,-0.940147,0.250327,-0.231214,-0.940147,0.250327,-0.231214, + -0.940147,0.250327,-0.231214,-0.221823,-0.964631,-0.142415,-0.221823,-0.964631,-0.142415,-0.221823,-0.964631,-0.142415, + -0.221823,-0.964631,-0.142415,0.940146,-0.250330,0.231214,0.940146,-0.250330,0.231214,0.940146,-0.250330,0.231214, + 0.940146,-0.250330,0.231214,0.221821,0.964631,0.142413,0.221821,0.964631,0.142413,0.221821,0.964631,0.142413, + 0.221821,0.964631,0.142413,-0.943326,0.249303,-0.219055,-0.943326,0.249303,-0.219055,-0.943326,0.249303,-0.219055, + -0.943326,0.249303,-0.219055,-0.221820,-0.964632,-0.142412,-0.221820,-0.964632,-0.142412,-0.221820,-0.964632,-0.142412, + -0.221820,-0.964632,-0.142412,0.940151,-0.250312,0.231213,0.940151,-0.250312,0.231213,0.940151,-0.250312,0.231213, + 0.940151,-0.250312,0.231213,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,-0.940155,0.250296,-0.231214,-0.940155,0.250296,-0.231214,-0.940155,0.250296,-0.231214, + -0.940155,0.250296,-0.231214,-0.226226,-0.965907,-0.125882,-0.226226,-0.965907,-0.125882,-0.226226,-0.965907,-0.125882, + -0.226226,-0.965907,-0.125882,0.940148,-0.250328,0.231211,0.940148,-0.250328,0.231211,0.940148,-0.250328,0.231211, + 0.940148,-0.250328,0.231211,0.226226,0.965906,0.125886,0.226226,0.965906,0.125886,0.226226,0.965906,0.125886, + 0.226226,0.965906,0.125886,0.214136,-0.096465,-0.972029,0.214136,-0.096465,-0.972029,0.214136,-0.096465,-0.972029, + 0.214136,-0.096465,-0.972029,-0.940145,0.250340,-0.231208,-0.940145,0.250340,-0.231208,-0.940145,0.250340,-0.231208, + -0.940145,0.250340,-0.231208,-0.272798,-0.959873,0.064997,-0.272798,-0.959873,0.064997,-0.272798,-0.959873,0.064997, + -0.272798,-0.959873,0.064997,0.940146,-0.250329,0.231215,0.940146,-0.250329,0.231215,0.940146,-0.250329,0.231215, + 0.940146,-0.250329,0.231215,0.271708,0.960164,-0.065269,0.271708,0.960164,-0.065269,0.271708,0.960164,-0.065269, + 0.271708,0.960164,-0.065269,0.216343,0.970248,0.108695,0.216343,0.970248,0.108695,0.216343,0.970248,0.108695, + 0.216343,0.970248,0.108695,-0.869196,0.143355,0.473230,-0.869196,0.143355,0.473230,-0.869196,0.143355,0.473230, + -0.869196,0.143355,0.473230,-0.216339,-0.970249,-0.108695,-0.216339,-0.970249,-0.108695,-0.216339,-0.970249,-0.108695, + -0.216339,-0.970249,-0.108695,0.869198,-0.143331,-0.473234,0.869198,-0.143331,-0.473234,0.869198,-0.143331,-0.473234, + 0.869198,-0.143331,-0.473234,0.231233,0.963645,0.133862,0.231233,0.963645,0.133862,0.231233,0.963645,0.133862, + 0.231233,0.963645,0.133862,-0.843824,0.128599,0.520984,-0.843824,0.128599,0.520984,-0.843824,0.128599,0.520984, + -0.843824,0.128599,0.520984,-0.231232,-0.963645,-0.133863,-0.231232,-0.963645,-0.133863,-0.231232,-0.963645,-0.133863, + -0.231232,-0.963645,-0.133863,0.839531,-0.126368,-0.528412,0.839531,-0.126368,-0.528412,0.839531,-0.126368,-0.528412, + 0.839531,-0.126368,-0.528412,0.230885,0.963705,0.134032,0.230885,0.963705,0.134032,0.230885,0.963705,0.134032, + 0.230885,0.963705,0.134032,-0.857136,0.136727,0.496612,-0.857136,0.136727,0.496612,-0.857136,0.136727,0.496612, + -0.857136,0.136727,0.496612,-0.230887,-0.963705,-0.134032,-0.230887,-0.963705,-0.134032,-0.230887,-0.963705,-0.134032, + -0.230887,-0.963705,-0.134032,0.857131,-0.136748,-0.496616,0.857131,-0.136748,-0.496616,0.857131,-0.136748,-0.496616, + 0.857131,-0.136748,-0.496616,-0.233992,-0.964667,-0.121101,-0.233992,-0.964667,-0.121101,-0.233992,-0.964667,-0.121101, + -0.233992,-0.964667,-0.121101,0.467812,-0.220551,0.855868,0.467812,-0.220551,0.855868,0.467812,-0.220551,0.855868, + 0.467812,-0.220551,0.855868,0.233998,0.964665,0.121107,0.233998,0.964665,0.121107,0.233998,0.964665,0.121107, + 0.233998,0.964665,0.121107,-0.467806,0.220572,-0.855865,-0.467806,0.220572,-0.855865,-0.467806,0.220572,-0.855865, + -0.467806,0.220572,-0.855865,-0.233981,-0.964667,-0.121118,-0.233981,-0.964667,-0.121118,-0.233981,-0.964667,-0.121118, + -0.233981,-0.964667,-0.121118,0.442440,-0.215726,0.870465,0.442440,-0.215726,0.870465,0.442440,-0.215726,0.870465, + 0.442440,-0.215726,0.870465,0.233982,0.964668,0.121116,0.233982,0.964668,0.121116,0.233982,0.964668,0.121116, + 0.233982,0.964668,0.121116,-0.442450,0.215701,-0.870466,-0.442450,0.215701,-0.870466,-0.442450,0.215701,-0.870466, + -0.442450,0.215701,-0.870466,-0.234365,-0.964550,-0.121310,-0.234365,-0.964550,-0.121310,-0.234365,-0.964550,-0.121310, + -0.234365,-0.964550,-0.121310,0.461667,-0.218399,0.859747,0.461667,-0.218399,0.859747,0.461667,-0.218399,0.859747, + 0.461667,-0.218399,0.859747,0.234365,0.964551,0.121306,0.234365,0.964551,0.121306,0.234365,0.964551,0.121306, + 0.234365,0.964551,0.121306,-0.454474,0.217031,-0.863916,-0.454474,0.217031,-0.863916,-0.454474,0.217031,-0.863916, + -0.454474,0.217031,-0.863916,0.926855,-0.280921,0.249045,0.926855,-0.280921,0.249045,0.926855,-0.280921,0.249045, + 0.926855,-0.280921,0.249045,-0.012667,0.651102,0.758884,-0.012667,0.651102,0.758884,-0.012667,0.651102,0.758884, + -0.012667,0.651102,0.758884,-0.926857,0.280911,-0.249048,-0.926857,0.280911,-0.249048,-0.926857,0.280911,-0.249048, + -0.926857,0.280911,-0.249048,0.013396,-0.649684,-0.760086,0.013396,-0.649684,-0.760086,0.013396,-0.649684,-0.760086, + 0.013396,-0.649684,-0.760086,0.919572,-0.254654,0.299229,0.919572,-0.254654,0.299229,0.919572,-0.254654,0.299229, + 0.919572,-0.254654,0.299229,-0.067271,0.648557,0.758187,-0.067271,0.648557,0.758187,-0.067271,0.648557,0.758187, + -0.067271,0.648557,0.758187,-0.919574,0.254646,-0.299231,-0.919574,0.254646,-0.299231,-0.919574,0.254646,-0.299231, + -0.919574,0.254646,-0.299231,0.067265,-0.648551,-0.758193,0.067265,-0.648551,-0.758193,0.067265,-0.648551,-0.758193, + 0.067265,-0.648551,-0.758193,0.210952,0.960399,0.182027,0.210952,0.960399,0.182027,0.210952,0.960399,0.182027, + 0.210952,0.960399,0.182027,-0.210951,-0.960398,-0.182030,-0.210951,-0.960398,-0.182030,-0.210951,-0.960398,-0.182030, + -0.210951,-0.960398,-0.182030,-0.901534,0.256573,-0.348434,-0.901534,0.256573,-0.348434,-0.901534,0.256573,-0.348434, + -0.901534,0.256573,-0.348434,-0.215395,-0.962309,-0.166028,-0.215395,-0.962309,-0.166028,-0.215395,-0.962309,-0.166028, + -0.215395,-0.962309,-0.166028,0.215395,0.962309,0.166028,0.215395,0.962309,0.166028,0.215395,0.962309,0.166028, + 0.215395,0.962309,0.166028,0.953679,-0.245943,0.173231,0.953679,-0.245943,0.173231,0.953679,-0.245943,0.173231, + 0.953679,-0.245943,0.173231,0.249848,0.967761,0.031851,0.249848,0.967761,0.031851,0.249848,0.967761,0.031851, + 0.249848,0.967761,0.031851,-0.249845,-0.967762,-0.031852,-0.249845,-0.967762,-0.031852,-0.249845,-0.967762,-0.031852, + -0.249845,-0.967762,-0.031852,-0.869082,0.258518,-0.421741,-0.869082,0.258518,-0.421741,-0.869082,0.258518,-0.421741, + -0.869082,0.258518,-0.421741,-0.249847,-0.967761,-0.031850,-0.249847,-0.967761,-0.031850,-0.249847,-0.967761,-0.031850, + -0.249847,-0.967761,-0.031850,0.249853,0.967760,0.031853,0.249853,0.967760,0.031853,0.249853,0.967760,0.031853, + 0.249853,0.967760,0.031853,0.938798,-0.250659,0.236282,0.938798,-0.250659,0.236282,0.938798,-0.250659,0.236282, + 0.938798,-0.250659,0.236282,0.236564,0.967379,0.090633,0.236564,0.967379,0.090633,0.236564,0.967379,0.090633, + 0.236564,0.967379,0.090633,-0.240904,-0.967611,-0.075457,-0.240904,-0.967611,-0.075457,-0.240904,-0.967611,-0.075457, + -0.240904,-0.967611,-0.075457,-0.932552,0.252111,-0.258431,-0.932552,0.252111,-0.258431,-0.932552,0.252111,-0.258431, + -0.932552,0.252111,-0.258431,0.214805,0.962873,0.163507,0.214805,0.962873,0.163507,0.214805,0.962873,0.163507, + 0.214805,0.962873,0.163507,-0.218267,-0.963944,-0.152221,-0.218267,-0.963944,-0.152221,-0.218267,-0.963944,-0.152221, + -0.218267,-0.963944,-0.152221,-0.932553,0.252107,-0.258431,-0.932553,0.252107,-0.258431,-0.932553,0.252107,-0.258431, + -0.932553,0.252107,-0.258431,0.285426,0.057832,-0.956654,0.285426,0.057832,-0.956654,0.285426,0.057832,-0.956654, + 0.285426,0.057832,-0.956654,-0.931318,0.252357,-0.262608,-0.931318,0.252357,-0.262608,-0.931318,0.252357,-0.262608, + -0.931318,0.252357,-0.262608,-0.285421,-0.057832,0.956656,-0.285421,-0.057832,0.956656,-0.285421,-0.057832,0.956656, + -0.285421,-0.057832,0.956656,0.285423,0.057832,-0.956655,0.285423,0.057832,-0.956655,0.285423,0.057832,-0.956655, + 0.285423,0.057832,-0.956655,-0.931319,0.252351,-0.262608,-0.931319,0.252351,-0.262608,-0.931319,0.252351,-0.262608, + -0.931319,0.252351,-0.262608,-0.285423,-0.057831,0.956655,-0.285423,-0.057831,0.956655,-0.285423,-0.057831,0.956655, + -0.285423,-0.057831,0.956655,0.285410,0.057825,-0.956660,0.285410,0.057825,-0.956660,0.285410,0.057825,-0.956660, + 0.285410,0.057825,-0.956660,-0.931313,0.252350,-0.262633,-0.931313,0.252350,-0.262633,-0.931313,0.252350,-0.262633, + -0.931313,0.252350,-0.262633,-0.285431,-0.057825,0.956653,-0.285431,-0.057825,0.956653,-0.285431,-0.057825,0.956653, + -0.285431,-0.057825,0.956653,0.226232,0.965904,0.125890,0.226232,0.965904,0.125890,0.226232,0.965904,0.125890, + 0.226232,0.965904,0.125890,-0.931320,0.252349,-0.262610,-0.931320,0.252349,-0.262610,-0.931320,0.252349,-0.262610, + -0.931320,0.252349,-0.262610,-0.226225,-0.965907,-0.125884,-0.226225,-0.965907,-0.125884,-0.226225,-0.965907,-0.125884, + -0.226225,-0.965907,-0.125884,-0.931318,0.252351,-0.262612,-0.931318,0.252351,-0.262612,-0.931318,0.252351,-0.262612, + -0.931318,0.252351,-0.262612,0.933130,-0.252009,0.256436,0.933130,-0.252009,0.256436,0.933130,-0.252009,0.256436, + 0.933130,-0.252009,0.256436,0.226225,0.965907,0.125885,0.226225,0.965907,0.125885,0.226225,0.965907,0.125885, + 0.226225,0.965907,0.125885,0.258003,0.065187,-0.963942,0.258003,0.065187,-0.963942,0.258003,0.065187,-0.963942, + 0.258003,0.065187,-0.963942,-0.251481,-0.066929,0.965545,-0.251481,-0.066929,0.965545,-0.251481,-0.066929,0.965545, + -0.251481,-0.066929,0.965545,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886, + 0.226224,0.965907,0.125886,0.226221,0.965908,0.125884,0.226221,0.965908,0.125884,0.226221,0.965908,0.125884, + 0.226221,0.965908,0.125884,0.226222,0.965907,0.125885,0.226222,0.965907,0.125885,0.226222,0.965907,0.125885, + 0.226222,0.965907,0.125885,-0.946452,0.248582,-0.206000,-0.946452,0.248582,-0.206000,-0.946452,0.248582,-0.206000, + -0.946452,0.248582,-0.206000,0.226223,0.965907,0.125885,0.226223,0.965907,0.125885,0.226223,0.965907,0.125885, + 0.226223,0.965907,0.125885,-0.946519,0.248464,-0.205832,-0.946519,0.248464,-0.205832,-0.946519,0.248464,-0.205832, + -0.946519,0.248464,-0.205832,0.226229,0.965905,0.125889,0.226229,0.965905,0.125889,0.226229,0.965905,0.125889, + 0.226229,0.965905,0.125889,0.946474,-0.248503,0.205995,0.946474,-0.248503,0.205995,0.946474,-0.248503,0.205995, + 0.946474,-0.248503,0.205995,-0.254843,-0.066041,0.964725,-0.254843,-0.066041,0.964725,-0.254843,-0.066041,0.964725, + -0.254843,-0.066041,0.964725,0.226231,0.965905,0.125885,0.226231,0.965905,0.125885,0.226231,0.965905,0.125885, + 0.226231,0.965905,0.125885,0.254841,0.066050,-0.964725,0.254841,0.066050,-0.964725,0.254841,0.066050,-0.964725, + 0.254841,0.066050,-0.964725,0.942073,-0.249814,0.223812,0.942073,-0.249814,0.223812,0.942073,-0.249814,0.223812, + 0.942073,-0.249814,0.223812,-0.942885,0.249586,-0.220624,-0.942885,0.249586,-0.220624,-0.942885,0.249586,-0.220624, + -0.942885,0.249586,-0.220624,0.225107,0.965610,0.130095,0.225107,0.965610,0.130095,0.225107,0.965610,0.130095, + 0.225107,0.965610,0.130095,0.934338,-0.251707,0.252302,0.934338,-0.251707,0.252302,0.934338,-0.251707,0.252302, + 0.934338,-0.251707,0.252302,-0.936130,0.251313,-0.245972,-0.936130,0.251313,-0.245972,-0.936130,0.251313,-0.245972, + -0.936130,0.251313,-0.245972,0.225109,0.965609,0.130095,0.225109,0.965609,0.130095,0.225109,0.965609,0.130095, + 0.225109,0.965609,0.130095,0.254849,0.066053,-0.964722,0.254849,0.066053,-0.964722,0.254849,0.066053,-0.964722, + 0.254849,0.066053,-0.964722,0.226222,0.965907,0.125886,0.226222,0.965907,0.125886,0.226222,0.965907,0.125886, + 0.226222,0.965907,0.125886,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724, + -0.254843,-0.066048,0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724, + 0.254843,0.066047,-0.964724,0.226220,0.965907,0.125887,0.226220,0.965907,0.125887,0.226220,0.965907,0.125887, + 0.226220,0.965907,0.125887,-0.254835,-0.066041,0.964727,-0.254835,-0.066041,0.964727,-0.254835,-0.066041,0.964727, + -0.254835,-0.066041,0.964727,0.254841,0.066067,-0.964724,0.254841,0.066067,-0.964724,0.254841,0.066067,-0.964724, + 0.254841,0.066067,-0.964724,0.226224,0.965907,0.125880,0.226224,0.965907,0.125880,0.226224,0.965907,0.125880, + 0.226224,0.965907,0.125880,-0.254835,-0.066028,0.964728,-0.254835,-0.066028,0.964728,-0.254835,-0.066028,0.964728, + -0.254835,-0.066028,0.964728,0.935655,-0.251433,0.247650,0.935655,-0.251433,0.247650,0.935655,-0.251433,0.247650, + 0.935655,-0.251433,0.247650,0.226219,0.965908,0.125885,0.226219,0.965908,0.125885,0.226219,0.965908,0.125885, + 0.226219,0.965908,0.125885,-0.940151,0.250310,-0.231216,-0.940151,0.250310,-0.231216,-0.940151,0.250310,-0.231216, + -0.940151,0.250310,-0.231216,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886, + 0.226224,0.965907,0.125886,0.950405,-0.247203,0.188736,0.950405,-0.247203,0.188736,0.950405,-0.247203,0.188736, + 0.950405,-0.247203,0.188736,-0.952685,0.246330,-0.178078,-0.952685,0.246330,-0.178078,-0.952685,0.246330,-0.178078, + -0.952685,0.246330,-0.178078,0.225018,0.965585,0.130433,0.225018,0.965585,0.130433,0.225018,0.965585,0.130433, + 0.225018,0.965585,0.130433,0.931265,-0.252361,0.262791,0.931265,-0.252361,0.262791,0.931265,-0.252361,0.262791, + 0.931265,-0.252361,0.262791,-0.933119,0.251983,-0.256503,-0.933119,0.251983,-0.256503,-0.933119,0.251983,-0.256503, + -0.933119,0.251983,-0.256503,0.225014,0.965586,0.130432,0.225014,0.965586,0.130432,0.225014,0.965586,0.130432, + 0.225014,0.965586,0.130432,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.226225,0.965907,0.125883,0.226225,0.965907,0.125883,0.226225,0.965907,0.125883, + 0.226225,0.965907,0.125883,-0.254840,-0.066039,0.964726,-0.254840,-0.066039,0.964726,-0.254840,-0.066039,0.964726, + -0.254840,-0.066039,0.964726,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725, + 0.254839,0.066046,-0.964725,0.226226,0.965907,0.125882,0.226226,0.965907,0.125882,0.226226,0.965907,0.125882, + 0.226226,0.965907,0.125882,-0.254841,-0.066049,0.964725,-0.254841,-0.066049,0.964725,-0.254841,-0.066049,0.964725, + -0.254841,-0.066049,0.964725,0.254838,0.066047,-0.964726,0.254838,0.066047,-0.964726,0.254838,0.066047,-0.964726, + 0.254838,0.066047,-0.964726,0.226221,0.965905,0.125902,0.226221,0.965905,0.125902,0.226221,0.965905,0.125902, + 0.226221,0.965905,0.125902,-0.254841,-0.066049,0.964724,-0.254841,-0.066049,0.964724,-0.254841,-0.066049,0.964724, + -0.254841,-0.066049,0.964724,0.940145,-0.250337,0.231212,0.940145,-0.250337,0.231212,0.940145,-0.250337,0.231212, + 0.940145,-0.250337,0.231212,0.226214,0.965909,0.125881,0.226214,0.965909,0.125881,0.226214,0.965909,0.125881, + 0.226214,0.965909,0.125881,-0.940152,0.250311,-0.231209,-0.940152,0.250311,-0.231209,-0.940152,0.250311,-0.231209, + -0.940152,0.250311,-0.231209,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886, + 0.226224,0.965907,0.125886,0.946520,-0.248518,0.205763,0.946520,-0.248518,0.205763,0.946520,-0.248518,0.205763, + 0.946520,-0.248518,0.205763,-0.948014,0.248021,-0.199384,-0.948014,0.248021,-0.199384,-0.948014,0.248021,-0.199384, + -0.948014,0.248021,-0.199384,0.225013,0.965586,0.130432,0.225013,0.965586,0.130432,0.225013,0.965586,0.130432, + 0.225013,0.965586,0.130432,0.923582,-0.253791,0.287379,0.923582,-0.253791,0.287379,0.923582,-0.253791,0.287379, + 0.923582,-0.253791,0.287379,-0.927025,0.253182,-0.276630,-0.927025,0.253182,-0.276630,-0.927025,0.253182,-0.276630, + -0.927025,0.253182,-0.276630,0.225058,0.965600,0.130255,0.225058,0.965600,0.130255,0.225058,0.965600,0.130255, + 0.225058,0.965600,0.130255,0.254844,0.066044,-0.964724,0.254844,0.066044,-0.964724,0.254844,0.066044,-0.964724, + 0.254844,0.066044,-0.964724,0.226225,0.965907,0.125885,0.226225,0.965907,0.125885,0.226225,0.965907,0.125885, + 0.226225,0.965907,0.125885,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,0.295441,0.055107,-0.953770,0.295441,0.055107,-0.953770,0.295441,0.055107,-0.953770, + 0.295441,0.055107,-0.953770,0.226223,0.965907,0.125882,0.226223,0.965907,0.125882,0.226223,0.965907,0.125882, + 0.226223,0.965907,0.125882,-0.307288,-0.051869,0.950202,-0.307288,-0.051869,0.950202,-0.307288,-0.051869,0.950202, + -0.307288,-0.051869,0.950202,0.254841,0.066035,-0.964726,0.254841,0.066035,-0.964726,0.254841,0.066035,-0.964726, + 0.254841,0.066035,-0.964726,0.226224,0.965905,0.125895,0.226224,0.965905,0.125895,0.226224,0.965905,0.125895, + 0.226224,0.965905,0.125895,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725, + -0.254841,-0.066048,0.964725,0.940144,-0.250340,0.231212,0.940144,-0.250340,0.231212,0.940144,-0.250340,0.231212, + 0.940144,-0.250340,0.231212,0.226223,0.965906,0.125890,0.226223,0.965906,0.125890,0.226223,0.965906,0.125890, + 0.226223,0.965906,0.125890,-0.940152,0.250310,-0.231214,-0.940152,0.250310,-0.231214,-0.940152,0.250310,-0.231214, + -0.940152,0.250310,-0.231214,0.226223,0.965907,0.125885,0.226223,0.965907,0.125885,0.226223,0.965907,0.125885, + 0.226223,0.965907,0.125885,-0.254838,-0.066042,0.964726,-0.254838,-0.066042,0.964726,-0.254838,-0.066042,0.964726, + -0.254838,-0.066042,0.964726,-0.226224,-0.965907,-0.125882,-0.226224,-0.965907,-0.125882,-0.226224,-0.965907,-0.125882, + -0.226224,-0.965907,-0.125882,-0.165591,-0.977407,-0.131361,-0.165591,-0.977407,-0.131361,-0.165591,-0.977407,-0.131361, + -0.165591,-0.977407,-0.131361,-0.227425,-0.966207,-0.121336,-0.227425,-0.966207,-0.121336,-0.227425,-0.966207,-0.121336, + -0.227425,-0.966207,-0.121336,0.254841,0.066052,-0.964724,0.254841,0.066052,-0.964724,0.254841,0.066052,-0.964724, + 0.254841,0.066052,-0.964724,0.254847,0.066060,-0.964722,0.254847,0.066060,-0.964722,0.254847,0.066060,-0.964722, + 0.254847,0.066060,-0.964722,-0.940135,0.250379,-0.231207,-0.940135,0.250379,-0.231207,-0.940135,0.250379,-0.231207, + -0.940135,0.250379,-0.231207,-0.295413,-0.082335,0.951815,-0.295413,-0.082335,0.951815,-0.295413,-0.082335,0.951815, + -0.295413,-0.082335,0.951815,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.950407,0.247193,-0.188737,-0.950407,0.247193,-0.188737,-0.950407,0.247193,-0.188737, + -0.950407,0.247193,-0.188737,-0.227417,-0.966209,-0.121333,-0.227417,-0.966209,-0.121333,-0.227417,-0.966209,-0.121333, + -0.227417,-0.966209,-0.121333,0.931266,-0.252359,0.262789,0.931266,-0.252359,0.262789,0.931266,-0.252359,0.262789, + 0.931266,-0.252359,0.262789,-0.933120,0.251979,-0.256503,-0.933120,0.251979,-0.256503,-0.933120,0.251979,-0.256503, + -0.933120,0.251979,-0.256503,0.174638,0.113759,-0.978039,0.174638,0.113759,-0.978039,0.174638,0.113759,-0.978039, + 0.174638,0.113759,-0.978039,0.936219,-0.249699,0.247275,0.936219,-0.249699,0.247275,0.936219,-0.249699,0.247275, + 0.936219,-0.249699,0.247275,-0.226221,-0.965907,-0.125886,-0.226221,-0.965907,-0.125886,-0.226221,-0.965907,-0.125886, + -0.226221,-0.965907,-0.125886,-0.939092,0.250710,-0.235055,-0.939092,0.250710,-0.235055,-0.939092,0.250710,-0.235055, + -0.939092,0.250710,-0.235055,-0.223782,-0.963996,-0.143646,-0.223782,-0.963996,-0.143646,-0.223782,-0.963996,-0.143646, + -0.223782,-0.963996,-0.143646,-0.227129,-0.966225,-0.121743,-0.227129,-0.966225,-0.121743,-0.227129,-0.966225,-0.121743, + -0.933122,0.251975,-0.256501,-0.933122,0.251975,-0.256501,-0.933122,0.251975,-0.256501,-0.933122,0.251975,-0.256501, + -0.226217,-0.965908,-0.125890,-0.226217,-0.965908,-0.125890,-0.226217,-0.965908,-0.125890,-0.226217,-0.965908,-0.125890, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + 0.213764,0.076855,-0.973858,0.213764,0.076855,-0.973858,0.213764,0.076855,-0.973858,0.213764,0.076855,-0.973858, + -0.227212,-0.966156,-0.122133,-0.227212,-0.966156,-0.122133,-0.227212,-0.966156,-0.122133,0.267184,0.115024,-0.956756, + 0.267184,0.115024,-0.956756,0.267184,0.115024,-0.956756,0.267184,0.115024,-0.956756,-0.254840,-0.066044,0.964725, + -0.254840,-0.066044,0.964725,-0.254840,-0.066044,0.964725,-0.254840,-0.066044,0.964725,0.951157,-0.246929,0.185276, + 0.951157,-0.246929,0.185276,0.951157,-0.246929,0.185276,0.951157,-0.246929,0.185276,-0.227266,-0.966169,-0.121934, + -0.227266,-0.966169,-0.121934,-0.227266,-0.966169,-0.121934,0.948503,-0.247857,0.197254,0.948503,-0.247857,0.197254, + 0.948503,-0.247857,0.197254,0.948503,-0.247857,0.197254,0.945086,-0.248938,0.211762,0.945086,-0.248938,0.211762, + 0.945086,-0.248938,0.211762,0.945086,-0.248938,0.211762,-0.945418,0.248842,-0.210388,-0.945418,0.248842,-0.210388, + -0.945418,0.248842,-0.210388,-0.945418,0.248842,-0.210388,0.225043,0.965992,0.127337,0.225043,0.965992,0.127337, + 0.225043,0.965992,0.127337,0.225043,0.965992,0.127337,0.936392,-0.251251,0.245036,0.936392,-0.251251,0.245036, + 0.936392,-0.251251,0.245036,0.936392,-0.251251,0.245036,-0.936643,0.251199,-0.244131,-0.936643,0.251199,-0.244131, + -0.936643,0.251199,-0.244131,-0.936643,0.251199,-0.244131,0.226541,0.965594,0.127699,0.226541,0.965594,0.127699, + 0.226541,0.965594,0.127699,0.226541,0.965594,0.127699,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.226225,0.965905,0.125894,0.226225,0.965905,0.125894, + 0.226225,0.965905,0.125894,0.226225,0.965905,0.125894,-0.254849,-0.066043,0.964723,-0.254849,-0.066043,0.964723, + -0.254849,-0.066043,0.964723,-0.254849,-0.066043,0.964723,-0.953839,0.245855,-0.172469,-0.953839,0.245855,-0.172469, + -0.953839,0.245855,-0.172469,-0.953839,0.245855,-0.172469,-0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885, + -0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885,0.251708,0.066890,-0.965489,0.251708,0.066890,-0.965489, + 0.251708,0.066890,-0.965489,0.251708,0.066890,-0.965489,-0.258272,-0.065140,0.963874,-0.258272,-0.065140,0.963874, + -0.258272,-0.065140,0.963874,-0.258272,-0.065140,0.963874,-0.226222,-0.965907,-0.125885,-0.226222,-0.965907,-0.125885, + -0.226222,-0.965907,-0.125885,-0.226222,-0.965907,-0.125885,-0.226224,-0.965907,-0.125885,-0.226224,-0.965907,-0.125885, + -0.226224,-0.965907,-0.125885,-0.226224,-0.965907,-0.125885,-0.226220,-0.965908,-0.125884,-0.226220,-0.965908,-0.125884, + -0.226220,-0.965908,-0.125884,-0.226220,-0.965908,-0.125884,0.934166,-0.251729,0.252914,0.934166,-0.251729,0.252914, + 0.934166,-0.251729,0.252914,0.934166,-0.251729,0.252914,-0.226222,-0.965907,-0.125885,-0.226222,-0.965907,-0.125885, + -0.226222,-0.965907,-0.125885,-0.226222,-0.965907,-0.125885,0.940132,-0.250389,0.231210,0.940132,-0.250389,0.231210, + 0.940132,-0.250389,0.231210,0.940132,-0.250389,0.231210,-0.226230,-0.965905,-0.125888,-0.226230,-0.965905,-0.125888, + -0.226230,-0.965905,-0.125888,-0.226230,-0.965905,-0.125888,-0.940148,0.250323,-0.231214,-0.940148,0.250323,-0.231214, + -0.940148,0.250323,-0.231214,-0.940148,0.250323,-0.231214,-0.234261,-0.071505,0.969541,-0.234261,-0.071505,0.969541, + -0.234261,-0.071505,0.969541,-0.234261,-0.071505,0.969541,-0.226224,-0.965906,-0.125887,-0.226224,-0.965906,-0.125887, + -0.226224,-0.965906,-0.125887,-0.226224,-0.965906,-0.125887,0.275164,0.060591,-0.959486,0.275164,0.060591,-0.959486, + 0.275164,0.060591,-0.959486,0.275164,0.060591,-0.959486,-0.934727,0.251623,-0.250942,-0.934727,0.251623,-0.250942, + -0.934727,0.251623,-0.250942,-0.934727,0.251623,-0.250942,0.934966,-0.251584,0.250089,0.934966,-0.251584,0.250089, + 0.934966,-0.251584,0.250089,0.934966,-0.251584,0.250089,-0.227423,-0.966162,-0.121697,-0.227423,-0.966162,-0.121697, + -0.227423,-0.966162,-0.121697,-0.227423,-0.966162,-0.121697,-0.943955,0.249294,-0.216338,-0.943955,0.249294,-0.216338, + -0.943955,0.249294,-0.216338,-0.943955,0.249294,-0.216338,0.941151,-0.250068,0.227376,0.941151,-0.250068,0.227376, + 0.941151,-0.250068,0.227376,0.941151,-0.250068,0.227376,-0.227427,-0.966161,-0.121695,-0.227427,-0.966161,-0.121695, + -0.227427,-0.966161,-0.121695,-0.227427,-0.966161,-0.121695,0.275994,0.060382,-0.959261,0.275994,0.060382,-0.959261, + 0.275994,0.060382,-0.959261,0.275994,0.060382,-0.959261,-0.226223,-0.965907,-0.125886,-0.226223,-0.965907,-0.125886, + -0.226223,-0.965907,-0.125886,-0.226223,-0.965907,-0.125886,-0.275990,-0.060376,0.959262,-0.275990,-0.060376,0.959262, + -0.275990,-0.060376,0.959262,-0.275990,-0.060376,0.959262,0.277041,0.060099,-0.958977,0.277041,0.060099,-0.958977, + 0.277041,0.060099,-0.958977,0.277041,0.060099,-0.958977,-0.226224,-0.965907,-0.125884,-0.226224,-0.965907,-0.125884, + -0.226224,-0.965907,-0.125884,-0.226224,-0.965907,-0.125884,-0.277485,-0.059976,0.958856,-0.277485,-0.059976,0.958856, + -0.277485,-0.059976,0.958856,-0.277485,-0.059976,0.958856,0.275983,0.060376,-0.959265,0.275983,0.060376,-0.959265, + 0.275983,0.060376,-0.959265,0.275983,0.060376,-0.959265,-0.226222,-0.965907,-0.125887,-0.226222,-0.965907,-0.125887, + -0.226222,-0.965907,-0.125887,-0.226222,-0.965907,-0.125887,-0.275985,-0.060386,0.959263,-0.275985,-0.060386,0.959263, + -0.275985,-0.060386,0.959263,-0.275985,-0.060386,0.959263,-0.939418,0.250518,-0.233953,-0.939418,0.250518,-0.233953, + -0.939418,0.250518,-0.233953,-0.939418,0.250518,-0.233953,-0.226218,-0.965908,-0.125883,-0.226218,-0.965908,-0.125883, + -0.226218,-0.965908,-0.125883,-0.226218,-0.965908,-0.125883,0.939456,-0.250488,0.233832,0.939456,-0.250488,0.233832, + 0.939456,-0.250488,0.233832,0.939456,-0.250488,0.233832,-0.226222,-0.965907,-0.125886,-0.226222,-0.965907,-0.125886, + -0.226222,-0.965907,-0.125886,-0.226222,-0.965907,-0.125886,-0.937441,0.251005,-0.241249,-0.937441,0.251005,-0.241249, + -0.937441,0.251005,-0.241249,-0.937441,0.251005,-0.241249,0.937236,-0.251031,0.242016,0.937236,-0.251031,0.242016, + 0.937236,-0.251031,0.242016,0.937236,-0.251031,0.242016,-0.225881,-0.966240,-0.123930,-0.225881,-0.966240,-0.123930, + -0.225881,-0.966240,-0.123930,-0.225881,-0.966240,-0.123930,-0.945624,0.248783,-0.209528,-0.945624,0.248783,-0.209528, + -0.945624,0.248783,-0.209528,-0.945624,0.248783,-0.209528,0.945249,-0.248908,0.211066,0.945249,-0.248908,0.211066, + 0.945249,-0.248908,0.211066,0.945249,-0.248908,0.211066,-0.227501,-0.965809,-0.124319,-0.227501,-0.965809,-0.124319, + -0.227501,-0.965809,-0.124319,-0.227501,-0.965809,-0.124319,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,-0.226221,-0.965907,-0.125891,-0.226221,-0.965907,-0.125891, + -0.226221,-0.965907,-0.125891,-0.226221,-0.965907,-0.125891,0.966742,-0.237588,0.094662,0.966742,-0.237588,0.094662, + 0.966742,-0.237588,0.094662,0.966742,-0.237588,0.094662,-0.207656,-0.960053,-0.187556,-0.207656,-0.960053,-0.187556, + -0.207656,-0.960053,-0.187556,-0.207656,-0.960053,-0.187556,-0.940311,0.257106,-0.222962,-0.940311,0.257106,-0.222962, + -0.940311,0.257106,-0.222962,-0.940311,0.257106,-0.222962,0.226224,0.965907,0.125884,0.226224,0.965907,0.125884, + 0.226224,0.965907,0.125884,0.226224,0.965907,0.125884,0.308620,0.051107,-0.949811,0.308620,0.051107,-0.949811, + 0.308620,0.051107,-0.949811,0.308620,0.051107,-0.949811,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726, + -0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726,0.859989,-0.258744,0.439854,0.859989,-0.258744,0.439854, + 0.859989,-0.258744,0.439854,0.859989,-0.258744,0.439854,-0.226229,-0.965905,-0.125887,-0.226229,-0.965905,-0.125887, + -0.226229,-0.965905,-0.125887,-0.226229,-0.965905,-0.125887,-0.940149,0.250321,-0.231212,-0.940149,0.250321,-0.231212, + -0.940149,0.250321,-0.231212,-0.940149,0.250321,-0.231212,0.226225,0.965906,0.125887,0.226225,0.965906,0.125887, + 0.226225,0.965906,0.125887,0.226225,0.965906,0.125887,0.254851,0.066049,-0.964722,0.254851,0.066049,-0.964722, + 0.254851,0.066049,-0.964722,0.254851,0.066049,-0.964722,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723, + -0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723,0.953853,-0.260133,0.149982,0.953853,-0.260133,0.149982, + 0.953853,-0.260133,0.149982,0.953853,-0.260133,0.149982,-0.226224,-0.965906,-0.125887,-0.226224,-0.965906,-0.125887, + -0.226224,-0.965906,-0.125887,-0.226224,-0.965906,-0.125887,-0.953858,0.260120,-0.149978,-0.953858,0.260120,-0.149978, + -0.953858,0.260120,-0.149978,-0.953858,0.260120,-0.149978,0.226226,0.965906,0.125886,0.226226,0.965906,0.125886, + 0.226226,0.965906,0.125886,0.226226,0.965906,0.125886,0.254848,0.066047,-0.964723,0.254848,0.066047,-0.964723, + 0.254848,0.066047,-0.964723,0.254848,0.066047,-0.964723,-0.254845,-0.066043,0.964724,-0.254845,-0.066043,0.964724, + -0.254845,-0.066043,0.964724,-0.254845,-0.066043,0.964724,0.940146,-0.250330,0.231217,0.940146,-0.250330,0.231217, + 0.940146,-0.250330,0.231217,0.940146,-0.250330,0.231217,-0.226226,-0.965906,-0.125885,-0.226226,-0.965906,-0.125885, + -0.226226,-0.965906,-0.125885,-0.226226,-0.965906,-0.125885,-0.883627,0.257886,-0.390766,-0.883627,0.257886,-0.390766, + -0.883627,0.257886,-0.390766,-0.883627,0.257886,-0.390766,0.226224,0.965907,0.125886,0.226224,0.965907,0.125886, + 0.226224,0.965907,0.125886,0.226224,0.965907,0.125886,0.145330,0.094322,-0.984877,0.145330,0.094322,-0.984877, + 0.145330,0.094322,-0.984877,0.145330,0.094322,-0.984877,-0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727, + -0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727,0.940147,-0.250325,0.231216,0.940147,-0.250325,0.231216, + 0.940147,-0.250325,0.231216,0.940147,-0.250325,0.231216,-0.226225,-0.965906,-0.125890,-0.226225,-0.965906,-0.125890, + -0.226225,-0.965906,-0.125890,-0.226225,-0.965906,-0.125890,0.940145,-0.250330,0.231217,0.940145,-0.250330,0.231217, + 0.940145,-0.250330,0.231217,0.940145,-0.250330,0.231217,0.226229,0.965905,0.125890,0.226229,0.965905,0.125890, + 0.226229,0.965905,0.125890,0.226229,0.965905,0.125890,0.254853,0.066048,-0.964722,0.254853,0.066048,-0.964722, + 0.254853,0.066048,-0.964722,0.254853,0.066048,-0.964722,-0.254837,-0.066043,0.964726,-0.254837,-0.066043,0.964726, + -0.254837,-0.066043,0.964726,-0.254837,-0.066043,0.964726,-0.226225,-0.965906,-0.125888,-0.226225,-0.965906,-0.125888, + -0.226225,-0.965906,-0.125888,-0.226225,-0.965906,-0.125888,0.226224,0.965907,0.125885,0.226224,0.965907,0.125885, + 0.226224,0.965907,0.125885,0.226224,0.965907,0.125885,0.099331,0.105690,-0.989426,0.099331,0.105690,-0.989426, + 0.099331,0.105690,-0.989426,0.099331,0.105690,-0.989426,-0.254847,-0.066043,0.964723,-0.254847,-0.066043,0.964723, + -0.254847,-0.066043,0.964723,-0.254847,-0.066043,0.964723,-0.226227,-0.965906,-0.125885,-0.226227,-0.965906,-0.125885, + -0.226227,-0.965906,-0.125885,-0.226227,-0.965906,-0.125885,-0.900714,0.256647,-0.350496,-0.900714,0.256647,-0.350496, + -0.900714,0.256647,-0.350496,-0.900714,0.256647,-0.350496,0.940148,-0.250327,0.231208,0.940148,-0.250327,0.231208, + 0.940148,-0.250327,0.231208,0.940148,-0.250327,0.231208,0.254843,0.066049,-0.964724,0.254843,0.066049,-0.964724, + 0.254843,0.066049,-0.964724,0.254843,0.066049,-0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724, + -0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.226228,-0.965906,-0.125885,-0.226228,-0.965906,-0.125885, + -0.226228,-0.965906,-0.125885,-0.226228,-0.965906,-0.125885,-0.923679,0.253753,-0.287100,-0.923679,0.253753,-0.287100, + -0.923679,0.253753,-0.287100,-0.923679,0.253753,-0.287100,0.953412,-0.246054,0.174535,0.953412,-0.246054,0.174535, + 0.953412,-0.246054,0.174535,0.953412,-0.246054,0.174535,0.254845,0.066051,-0.964724,0.254845,0.066051,-0.964724, + 0.254845,0.066051,-0.964724,0.254845,0.066051,-0.964724,-0.254841,-0.066035,0.964726,-0.254841,-0.066035,0.964726, + -0.254841,-0.066035,0.964726,-0.254841,-0.066035,0.964726,-0.234070,-0.967496,-0.095725,-0.234070,-0.967496,-0.095725, + -0.234070,-0.967496,-0.095725,-0.234070,-0.967496,-0.095725,-0.948649,0.247801,-0.196619,-0.948649,0.247801,-0.196619, + -0.948649,0.247801,-0.196619,-0.948649,0.247801,-0.196619,0.940146,-0.250331,0.231213,0.940146,-0.250331,0.231213, + 0.940146,-0.250331,0.231213,0.940146,-0.250331,0.231213,0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723, + 0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723,-0.254843,-0.066043,0.964725,-0.254843,-0.066043,0.964725, + -0.254843,-0.066043,0.964725,-0.254843,-0.066043,0.964725,0.226224,0.965907,0.125885,0.226224,0.965907,0.125885, + 0.226224,0.965907,0.125885,0.226224,0.965907,0.125885,0.940145,-0.250338,0.231211,0.940145,-0.250338,0.231211, + 0.940145,-0.250338,0.231211,0.940145,-0.250338,0.231211,-0.909067,0.255767,-0.328907,-0.909067,0.255767,-0.328907, + -0.909067,0.255767,-0.328907,-0.909067,0.255767,-0.328907,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254842,-0.066047,0.964724,-0.254842,-0.066047,0.964724, + -0.254842,-0.066047,0.964724,-0.254842,-0.066047,0.964724,0.226227,0.965906,0.125885,0.226227,0.965906,0.125885, + 0.226227,0.965906,0.125885,0.226227,0.965906,0.125885,0.961233,-0.242280,0.131646,0.961233,-0.242280,0.131646, + 0.961233,-0.242280,0.131646,0.961233,-0.242280,0.131646,-0.940144,0.250335,-0.231216,-0.940144,0.250335,-0.231216, + -0.940144,0.250335,-0.231216,-0.940144,0.250335,-0.231216,0.333426,0.044640,-0.941719,0.333426,0.044640,-0.941719, + 0.333426,0.044640,-0.941719,0.333426,0.044640,-0.941719,-0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725, + -0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725,0.226225,0.965906,0.125885,0.226225,0.965906,0.125885, + 0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.904730,-0.256234,0.340305,0.904730,-0.256234,0.340305, + 0.904730,-0.256234,0.340305,0.904730,-0.256234,0.340305,-0.901754,0.256545,-0.347885,-0.901754,0.256545,-0.347885, + -0.901754,0.256545,-0.347885,-0.901754,0.256545,-0.347885,0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724, + 0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724,-0.213206,-0.076993,0.973969,-0.213206,-0.076993,0.973969, + -0.213206,-0.076993,0.973969,-0.213206,-0.076993,0.973969,0.226225,0.965906,0.125885,0.226225,0.965906,0.125885, + 0.226225,0.965906,0.125885,0.226225,0.965906,0.125885,0.973931,-0.222101,-0.046157,0.973931,-0.222101,-0.046157, + 0.973931,-0.222101,-0.046157,0.973931,-0.222101,-0.046157,-0.923841,0.253749,-0.286581,-0.923841,0.253749,-0.286581, + -0.923841,0.253749,-0.286581,-0.923841,0.253749,-0.286581,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,0.226226,0.965906,0.125888,0.226226,0.965906,0.125888, + 0.226226,0.965906,0.125888,0.226226,0.965906,0.125888,0.940146,-0.250333,0.231211,0.940146,-0.250333,0.231211, + 0.940146,-0.250333,0.231211,0.940146,-0.250333,0.231211,-0.940155,0.250302,-0.231210,-0.940155,0.250302,-0.231210, + -0.940155,0.250302,-0.231210,-0.940155,0.250302,-0.231210,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,-0.254842,-0.066041,0.964725,-0.254842,-0.066041,0.964725, + -0.254842,-0.066041,0.964725,-0.254842,-0.066041,0.964725,-0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885, + -0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885,-0.940148,0.250332,-0.231204,-0.940148,0.250332,-0.231204, + -0.940148,0.250332,-0.231204,-0.940148,0.250332,-0.231204,0.940151,-0.250320,0.231205,0.940151,-0.250320,0.231205, + 0.940151,-0.250320,0.231205,0.940151,-0.250320,0.231205,0.254847,0.066055,-0.964723,0.254847,0.066055,-0.964723, + 0.254847,0.066055,-0.964723,0.254847,0.066055,-0.964723,-0.254844,-0.066040,0.964724,-0.254844,-0.066040,0.964724, + -0.254844,-0.066040,0.964724,-0.254844,-0.066040,0.964724,-0.226223,-0.965907,-0.125886,-0.226223,-0.965907,-0.125886, + -0.226223,-0.965907,-0.125886,-0.226223,-0.965907,-0.125886,-0.923846,0.253726,-0.286585,-0.923846,0.253726,-0.286585, + -0.923846,0.253726,-0.286585,-0.923846,0.253726,-0.286585,0.940153,-0.250306,0.231212,0.940153,-0.250306,0.231212, + 0.940153,-0.250306,0.231212,0.940153,-0.250306,0.231212,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726, + -0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726,-0.947480,0.078151,0.310121,-0.947480,0.078151,0.310121, + -0.947480,0.078151,0.310121,-0.947480,0.078151,0.310121,0.628572,-0.263670,0.731694,0.628572,-0.263670,0.731694, + 0.628572,-0.263670,0.731694,0.628572,-0.263670,0.731694,0.294915,0.954444,-0.045418,0.294915,0.954444,-0.045418, + 0.294915,0.954444,-0.045418,0.294915,0.954444,-0.045418,0.959677,-0.082330,-0.268779,0.959677,-0.082330,-0.268779, + 0.959677,-0.082330,-0.268779,0.959677,-0.082330,-0.268779,-0.671537,0.345982,-0.655237,-0.671537,0.345982,-0.655237, + -0.671537,0.345982,-0.655237,-0.671537,0.345982,-0.655237,0.237042,0.969117,-0.068000,0.237042,0.969117,-0.068000, + 0.237042,0.969117,-0.068000,0.237042,0.969117,-0.068000,0.251976,0.967463,0.022868,0.251976,0.967463,0.022868, + 0.251976,0.967463,0.022868,0.229509,0.964988,0.126980,0.229509,0.964988,0.126980,0.229509,0.964988,0.126980, + 0.229509,0.964988,0.126980,-0.900513,0.369866,-0.228639,-0.900513,0.369866,-0.228639,-0.900513,0.369866,-0.228639, + -0.900513,0.369866,-0.228639,-0.277599,-0.059958,0.958824,-0.277599,-0.059958,0.958824,-0.277599,-0.059958,0.958824, + -0.277599,-0.059958,0.958824,0.936438,-0.180100,-0.301076,0.936438,-0.180100,-0.301076,0.936438,-0.180100,-0.301076, + 0.936438,-0.180100,-0.301076,-0.198487,0.148017,0.968862,-0.198487,0.148017,0.968862,-0.198487,0.148017,0.968862, + -0.198487,0.148017,0.968862,0.226708,0.965336,0.129346,0.226708,0.965336,0.129346,0.226708,0.965336,0.129346, + 0.226708,0.965336,0.129346,-0.705814,0.251612,-0.662206,-0.705814,0.251612,-0.662206,-0.705814,0.251612,-0.662206, + -0.705814,0.251612,-0.662206,0.226223,0.965907,0.125882,0.226223,0.965907,0.125882,0.226223,0.965907,0.125882, + 0.226223,0.965907,0.125882,0.948591,-0.204595,0.241488,0.948591,-0.204595,0.241488,0.948591,-0.204595,0.241488, + 0.948591,-0.204595,0.241488,-0.928635,0.292037,-0.228802,-0.928635,0.292037,-0.228802,-0.928635,0.292037,-0.228802, + -0.928635,0.292037,-0.228802,-0.228837,-0.971485,-0.062050,-0.228837,-0.971485,-0.062050,-0.228837,-0.971485,-0.062050, + -0.228837,-0.971485,-0.062050,0.227728,0.971764,0.061766,0.227728,0.971764,0.061766,0.227728,0.971764,0.061766, + 0.227728,0.971764,0.061766,0.294636,0.055334,-0.954006,0.294636,0.055334,-0.954006,0.294636,0.055334,-0.954006, + 0.294636,0.055334,-0.954006,0.226228,0.965906,0.125886,0.226228,0.965906,0.125886,0.226228,0.965906,0.125886, + 0.226228,0.965906,0.125886,-0.294900,-0.055260,0.953929,-0.294900,-0.055260,0.953929,-0.294900,-0.055260,0.953929, + -0.294900,-0.055260,0.953929,0.940152,-0.250311,0.231211,0.940152,-0.250311,0.231211,0.940152,-0.250311,0.231211, + 0.940152,-0.250311,0.231211,0.226227,0.965905,0.125889,0.226227,0.965905,0.125889,0.226227,0.965905,0.125889, + 0.226227,0.965905,0.125889,-0.940154,0.250301,-0.231215,-0.940154,0.250301,-0.231215,-0.940154,0.250301,-0.231215, + -0.940154,0.250301,-0.231215,-0.177155,0.219676,0.959353,-0.177155,0.219676,0.959353,-0.177155,0.219676,0.959353, + -0.177155,0.219676,0.959353,0.964158,0.023452,0.264289,0.964158,0.023452,0.264289,0.964158,0.023452,0.264289, + 0.964158,0.023452,0.264289,-0.245194,-0.969437,-0.008541,-0.245194,-0.969437,-0.008541,-0.245194,-0.969437,-0.008541, + -0.245194,-0.969437,-0.008541,0.244505,0.969647,0.001202,0.244505,0.969647,0.001202,0.244505,0.969647,0.001202, + 0.244505,0.969647,0.001202,-0.945985,0.222166,-0.236125,-0.945985,0.222166,-0.236125,-0.945985,0.222166,-0.236125, + -0.945985,0.222166,-0.236125,-0.157988,0.279305,0.947116,-0.157988,0.279305,0.947116,-0.157988,0.279305,0.947116, + -0.157988,0.279305,0.947116,0.904269,-0.351192,0.242821,0.904269,-0.351192,0.242821,0.904269,-0.351192,0.242821, + 0.904269,-0.351192,0.242821,-0.255489,-0.965047,0.058395,-0.255489,-0.965047,0.058395,-0.255489,-0.965047,0.058395, + -0.255489,-0.965047,0.058395,0.257261,0.964040,-0.066659,0.257261,0.964040,-0.066659,0.257261,0.964040,-0.066659, + 0.257261,0.964040,-0.066659,-0.258090,-0.965132,0.043688,-0.258090,-0.965132,0.043688,-0.258090,-0.965132,0.043688, + -0.258090,-0.965132,0.043688,-0.939670,0.183061,0.288979,-0.939670,0.183061,0.288979,-0.939670,0.183061,0.288979, + -0.939670,0.183061,0.288979,0.352429,0.869760,0.345415,0.352429,0.869760,0.345415,0.352429,0.869760,0.345415, + 0.352429,0.869760,0.345415,0.203570,-0.083645,0.975481,0.203570,-0.083645,0.975481,0.203570,-0.083645,0.975481, + 0.203570,-0.083645,0.975481,-0.517265,0.213736,-0.828706,-0.517265,0.213736,-0.828706,-0.517265,0.213736,-0.828706, + -0.517265,0.213736,-0.828706,0.945743,-0.205974,0.251287,0.945743,-0.205974,0.251287,0.945743,-0.205974,0.251287, + 0.945743,-0.205974,0.251287,-0.339081,-0.612072,0.714417,-0.339081,-0.612072,0.714417,-0.339081,-0.612072,0.714417, + -0.339081,-0.612072,0.714417,-0.923303,0.351306,-0.155226,-0.923303,0.351306,-0.155226,-0.923303,0.351306,-0.155226, + -0.923303,0.351306,-0.155226,0.075200,0.841597,0.534845,0.075200,0.841597,0.534845,0.075200,0.841597,0.534845, + 0.075200,0.841597,0.534845,-0.076545,-0.841232,-0.535228,-0.076545,-0.841232,-0.535228,-0.076545,-0.841232,-0.535228, + -0.076545,-0.841232,-0.535228,0.945404,-0.216623,0.243489,0.945404,-0.216623,0.243489,0.945404,-0.216623,0.243489, + 0.945404,-0.216623,0.243489,-0.338523,-0.601977,0.723206,-0.338523,-0.601977,0.723206,-0.338523,-0.601977,0.723206, + -0.338523,-0.601977,0.723206,-0.925624,0.341437,-0.163224,-0.925624,0.341437,-0.163224,-0.925624,0.341437,-0.163224, + -0.925624,0.341437,-0.163224,0.080938,0.847661,0.524329,0.080938,0.847661,0.524329,0.080938,0.847661,0.524329, + 0.080938,0.847661,0.524329,-0.081920,-0.847424,-0.524559,-0.081920,-0.847424,-0.524559,-0.081920,-0.847424,-0.524559, + -0.081920,-0.847424,-0.524559,0.949601,-0.039146,0.311008,0.949601,-0.039146,0.311008,0.949601,-0.039146,0.311008, + 0.949601,-0.039146,0.311008,-0.338649,-0.623705,0.704492,-0.338649,-0.623705,0.704492,-0.338649,-0.623705,0.704492, + -0.338649,-0.623705,0.704492,-0.891976,0.431286,-0.135539,-0.891976,0.431286,-0.135539,-0.891976,0.431286,-0.135539, + -0.891976,0.431286,-0.135539,0.147691,0.925447,0.348906,0.147691,0.925447,0.348906,0.147691,0.925447,0.348906, + 0.147691,0.925447,0.348906,-0.101174,-0.869323,-0.483778,-0.101174,-0.869323,-0.483778,-0.101174,-0.869323,-0.483778, + -0.101174,-0.869323,-0.483778,0.944700,-0.224035,0.239479,0.944700,-0.224035,0.239479,0.944700,-0.224035,0.239479, + 0.944700,-0.224035,0.239479,-0.338421,-0.599700,0.725142,-0.338421,-0.599700,0.725142,-0.338421,-0.599700,0.725142, + -0.338421,-0.599700,0.725142,-0.926972,0.335218,-0.168383,-0.926972,0.335218,-0.168383,-0.926972,0.335218,-0.168383, + -0.926972,0.335218,-0.168383,0.080909,0.849324,0.521634,0.080909,0.849324,0.521634,0.080909,0.849324,0.521634, + 0.080909,0.849324,0.521634,-0.081914,-0.849089,-0.521861,-0.081914,-0.849089,-0.521861,-0.081914,-0.849089,-0.521861, + -0.081914,-0.849089,-0.521861,0.944041,-0.225290,0.240897,0.944041,-0.225290,0.240897,0.944041,-0.225290,0.240897, + 0.944041,-0.225290,0.240897,-0.340703,-0.655669,0.673810,-0.340703,-0.655669,0.673810,-0.340703,-0.655669,0.673810, + -0.340703,-0.655669,0.673810,-0.929824,0.330042,-0.162788,-0.929824,0.330042,-0.162788,-0.929824,0.330042,-0.162788, + -0.929824,0.330042,-0.162788,0.055846,0.811100,0.582235,0.055846,0.811100,0.582235,0.055846,0.811100,0.582235, + 0.055846,0.811100,0.582235,-0.056818,-0.810835,-0.582510,-0.056818,-0.810835,-0.582510,-0.056818,-0.810835,-0.582510, + -0.056818,-0.810835,-0.582510,0.210628,-0.098690,-0.972572,0.210628,-0.098690,-0.972572,0.210628,-0.098690,-0.972572, + 0.210628,-0.098690,-0.972572,-0.238044,-0.964338,-0.115700,-0.238044,-0.964338,-0.115700,-0.238044,-0.964338,-0.115700, + -0.238044,-0.964338,-0.115700,-0.936618,0.251184,-0.244240,-0.936618,0.251184,-0.244240,-0.936618,0.251184,-0.244240, + -0.936618,0.251184,-0.244240,0.232054,0.958842,0.163624,0.232054,0.958842,0.163624,0.232054,0.958842,0.163624, + 0.232054,0.958842,0.163624,-0.212428,0.091341,0.972898,-0.212428,0.091341,0.972898,-0.212428,0.091341,0.972898, + -0.212428,0.091341,0.972898,0.187685,0.946694,0.261811,0.187685,0.946694,0.261811,0.187685,0.946694,0.261811, + 0.187685,0.946694,0.261811,-0.940145,0.250336,-0.231212,-0.940145,0.250336,-0.231212,-0.940145,0.250336,-0.231212, + -0.940145,0.250336,-0.231212,-0.187681,-0.946696,-0.261807,-0.187681,-0.946696,-0.261807,-0.187681,-0.946696,-0.261807, + -0.187681,-0.946696,-0.261807,0.940149,-0.250320,0.231213,0.940149,-0.250320,0.231213,0.940149,-0.250320,0.231213, + 0.940149,-0.250320,0.231213,0.188091,0.946982,0.260475,0.188091,0.946982,0.260475,0.188091,0.946982,0.260475, + 0.188091,0.946982,0.260475,-0.940148,0.250324,-0.231213,-0.940148,0.250324,-0.231213,-0.940148,0.250324,-0.231213, + -0.940148,0.250324,-0.231213,-0.188085,-0.946984,-0.260470,-0.188085,-0.946984,-0.260470,-0.188085,-0.946984,-0.260470, + -0.188085,-0.946984,-0.260470,0.940153,-0.250304,0.231215,0.940153,-0.250304,0.231215,0.940153,-0.250304,0.231215, + 0.940153,-0.250304,0.231215,0.863901,-0.315727,0.392418,0.863901,-0.315727,0.392418,0.863901,-0.315727,0.392418, + 0.863901,-0.315727,0.392418,-0.183585,0.507484,0.841877,-0.183585,0.507484,0.841877,-0.183585,0.507484,0.841877, + -0.183585,0.507484,0.841877,-0.863905,0.315728,-0.392408,-0.863905,0.315728,-0.392408,-0.863905,0.315728,-0.392408, + -0.863905,0.315728,-0.392408,0.183619,-0.507484,-0.841869,0.183619,-0.507484,-0.841869,0.183619,-0.507484,-0.841869, + 0.183619,-0.507484,-0.841869,0.995332,-0.096502,-0.001503,0.995332,-0.096502,-0.001503,0.995332,-0.096502,-0.001503, + 0.995332,-0.096502,-0.001503,0.012550,0.482706,0.875693,0.012550,0.482706,0.875693,0.012550,0.482706,0.875693, + 0.012550,0.482706,0.875693,-0.995332,0.096496,0.001503,-0.995332,0.096496,0.001503,-0.995332,0.096496,0.001503, + -0.995332,0.096496,0.001503,-0.012555,-0.482705,-0.875693,-0.012555,-0.482705,-0.875693,-0.012555,-0.482705,-0.875693, + -0.012555,-0.482705,-0.875693,0.307077,0.269122,-0.912840,0.307077,0.269122,-0.912840,0.307077,0.269122,-0.912840, + 0.307077,0.269122,-0.912840,-0.931262,0.287060,-0.224384,-0.931262,0.287060,-0.224384,-0.931262,0.287060,-0.224384, + -0.931262,0.287060,-0.224384,-0.167660,-0.933120,-0.318083,-0.167660,-0.933120,-0.318083,-0.167660,-0.933120,-0.318083, + -0.167660,-0.933120,-0.318083,0.937696,-0.259658,0.230875,0.937696,-0.259658,0.230875,0.937696,-0.259658,0.230875, + 0.937696,-0.259658,0.230875,0.111458,0.861558,0.495273,0.111458,0.861558,0.495273,0.111458,0.861558,0.495273, + 0.111458,0.861558,0.495273,-0.305659,-0.257430,0.916680,-0.305659,-0.257430,0.916680,-0.305659,-0.257430,0.916680, + -0.305659,-0.257430,0.916680,0.291792,0.260897,-0.920212,0.291792,0.260897,-0.920212,0.291792,0.260897,-0.920212, + 0.291792,0.260897,-0.920212,-0.198801,-0.916330,-0.347588,-0.198801,-0.916330,-0.347588,-0.198801,-0.916330,-0.347588, + -0.198801,-0.916330,-0.347588,0.935232,-0.264319,0.235533,0.935232,-0.264319,0.235533,0.935232,-0.264319,0.235533, + 0.935232,-0.264319,0.235533,0.294804,0.275236,-0.915061,0.294804,0.275236,-0.915061,0.294804,0.275236,-0.915061, + 0.294804,0.275236,-0.915061,-0.975420,0.215465,-0.046169,-0.975420,0.215465,-0.046169,-0.975420,0.215465,-0.046169, + -0.975420,0.215465,-0.046169,-0.303689,-0.258237,0.917108,-0.303689,-0.258237,0.917108,-0.303689,-0.258237,0.917108, + -0.303689,-0.258237,0.917108,-0.198800,-0.916331,-0.347586,-0.198800,-0.916331,-0.347586,-0.198800,-0.916331,-0.347586, + -0.198800,-0.916331,-0.347586,0.946199,-0.191086,0.261138,0.946199,-0.191086,0.261138,0.946199,-0.191086,0.261138, + 0.946199,-0.191086,0.261138,-0.987246,0.140988,-0.073943,-0.987246,0.140988,-0.073943,-0.987246,0.140988,-0.073943, + -0.987246,0.140988,-0.073943,-0.306769,-0.273494,0.911643,-0.306769,-0.273494,0.911643,-0.306769,-0.273494,0.911643, + -0.306769,-0.273494,0.911643,0.298801,0.252444,-0.920321,0.298801,0.252444,-0.920321,0.298801,0.252444,-0.920321, + 0.298801,0.252444,-0.920321,0.208993,0.958728,0.192775,0.208993,0.958728,0.192775,0.208993,0.958728,0.192775, + 0.208993,0.958728,0.192775,-0.298236,-0.244090,0.922754,-0.298236,-0.244090,0.922754,-0.298236,-0.244090,0.922754, + -0.298236,-0.244090,0.922754,0.010173,-0.670190,-0.742120,0.010173,-0.670190,-0.742120,0.010173,-0.670190,-0.742120, + 0.010173,-0.670190,-0.742120,-0.208621,-0.958828,-0.192682,-0.208621,-0.958828,-0.192682,-0.208621,-0.958828,-0.192682, + -0.208621,-0.958828,-0.192682,0.940153,-0.250310,0.231208,0.940153,-0.250310,0.231208,0.940153,-0.250310,0.231208, + 0.940153,-0.250310,0.231208,-0.940154,0.250305,-0.231210,-0.940154,0.250305,-0.231210,-0.940154,0.250305,-0.231210, + -0.940154,0.250305,-0.231210,0.293860,0.921239,-0.254881,0.293860,0.921239,-0.254881,0.293860,0.921239,-0.254881, + 0.293860,0.921239,-0.254881,-0.139639,0.226586,0.963929,-0.139639,0.226586,0.963929,-0.139639,0.226586,0.963929, + -0.139639,0.226586,0.963929,-0.354984,-0.601629,0.715562,-0.354984,-0.601629,0.715562,-0.354984,-0.601629,0.715562, + -0.354984,-0.601629,0.715562,0.113390,-0.460618,-0.880326,0.113390,-0.460618,-0.880326,0.113390,-0.460618,-0.880326, + 0.113390,-0.460618,-0.880326,0.147739,-0.218332,-0.964626,0.147739,-0.218332,-0.964626,0.147739,-0.218332,-0.964626, + 0.147739,-0.218332,-0.964626,0.355396,0.613746,-0.704989,0.355396,0.613746,-0.704989,0.355396,0.613746,-0.704989, + 0.355396,0.613746,-0.704989,0.933942,-0.252113,0.253361,0.933942,-0.252113,0.253361,0.933942,-0.252113,0.253361, + 0.933942,-0.252113,0.253361,-0.232980,-0.967329,-0.099977,-0.232980,-0.967329,-0.099977,-0.232980,-0.967329,-0.099977, + -0.232980,-0.967329,-0.099977,-0.933946,0.252097,-0.253362,-0.933946,0.252097,-0.253362,-0.933946,0.252097,-0.253362, + -0.933946,0.252097,-0.253362,0.232975,0.967330,0.099974,0.232975,0.967330,0.099974,0.232975,0.967330,0.099974, + 0.232975,0.967330,0.099974,-0.934587,0.142106,0.326118,-0.934587,0.142106,0.326118,-0.934587,0.142106,0.326118, + -0.934587,0.142106,0.326118,0.624544,-0.342042,0.702105,0.624544,-0.342042,0.702105,0.624544,-0.342042,0.702105, + 0.624544,-0.342042,0.702105,0.940149,-0.250324,0.231211,0.940149,-0.250324,0.231211,0.940149,-0.250324,0.231211, + 0.940149,-0.250324,0.231211,-0.940149,0.250325,-0.231210,-0.940149,0.250325,-0.231210,-0.940149,0.250325,-0.231210, + -0.940149,0.250325,-0.231210,0.259193,0.084830,-0.962093,0.259193,0.084830,-0.962093,0.259193,0.084830,-0.962093, + 0.259193,0.084830,-0.962093,-0.259909,-0.087947,0.961620,-0.259909,-0.087947,0.961620,-0.259909,-0.087947,0.961620, + -0.259909,-0.087947,0.961620,0.940958,-0.246557,0.231963,0.940958,-0.246557,0.231963,0.940958,-0.246557,0.231963, + 0.940958,-0.246557,0.231963,-0.940148,0.250326,-0.231212,-0.940148,0.250326,-0.231212,-0.940148,0.250326,-0.231212, + -0.940148,0.250326,-0.231212,0.258884,0.083484,-0.962294,0.258884,0.083484,-0.962294,0.258884,0.083484,-0.962294, + 0.258884,0.083484,-0.962294,-0.258925,-0.083637,0.962270,-0.258925,-0.083637,0.962270,-0.258925,-0.083637,0.962270, + -0.258925,-0.083637,0.962270,0.940149,-0.250327,0.231208,0.940149,-0.250327,0.231208,0.940149,-0.250327,0.231208, + 0.940149,-0.250327,0.231208,-0.940147,0.250325,-0.231215,-0.940147,0.250325,-0.231215,-0.940147,0.250325,-0.231215, + -0.940147,0.250325,-0.231215,0.256718,0.074098,-0.963642,0.256718,0.074098,-0.963642,0.256718,0.074098,-0.963642, + 0.256718,0.074098,-0.963642,0.221296,0.074892,-0.972327,0.221296,0.074892,-0.972327,0.221296,0.074892,-0.972327, + 0.221296,0.074892,-0.972327,0.259362,0.965154,-0.034782,0.259362,0.965154,-0.034782,0.259362,0.965154,-0.034782, + 0.259362,0.965154,-0.034782,0.241647,0.069544,-0.967869,0.241647,0.069544,-0.967869,0.241647,0.069544,-0.967869, + 0.241647,0.069544,-0.967869,-0.220373,-0.964272,-0.147022,-0.220373,-0.964272,-0.147022,-0.220373,-0.964272,-0.147022, + -0.220373,-0.964272,-0.147022,0.674819,-0.149459,0.722690,0.674819,-0.149459,0.722690,0.674819,-0.149459,0.722690, + 0.674819,-0.149459,0.722690,-0.202144,-0.930403,-0.305757,-0.202144,-0.930403,-0.305757,-0.202144,-0.930403,-0.305757, + -0.202144,-0.930403,-0.305757,-0.705288,0.151427,-0.692560,-0.705288,0.151427,-0.692560,-0.705288,0.151427,-0.692560, + -0.705288,0.151427,-0.692560,0.922201,-0.275118,-0.271764,0.922201,-0.275118,-0.271764,0.922201,-0.275118,-0.271764, + 0.922201,-0.275118,-0.271764,-0.163364,-0.930964,-0.326526,-0.163364,-0.930964,-0.326526,-0.163364,-0.930964,-0.326526, + -0.163364,-0.930964,-0.326526,-0.246779,-0.930546,-0.270526,-0.246779,-0.930546,-0.270526,-0.246779,-0.930546,-0.270526, + -0.106354,-0.896974,-0.429099,-0.106354,-0.896974,-0.429099,-0.106354,-0.896974,-0.429099,-0.106354,-0.896974,-0.429099, + -0.270749,-0.155371,0.950029,-0.270749,-0.155371,0.950029,-0.270749,-0.155371,0.950029,-0.270749,-0.155371,0.950029, + -0.672636,0.313556,-0.670256,-0.672636,0.313556,-0.670256,-0.672636,0.313556,-0.670256,-0.672636,0.313556,-0.670256, + -0.032124,-0.989598,-0.140226,-0.032124,-0.989598,-0.140226,-0.032124,-0.989598,-0.140226,-0.032124,-0.989598,-0.140226, + 0.953046,-0.167016,-0.252605,0.953046,-0.167016,-0.252605,0.953046,-0.167016,-0.252605,0.953046,-0.167016,-0.252605, + -0.186439,-0.945560,-0.266752,-0.186439,-0.945560,-0.266752,-0.186439,-0.945560,-0.266752,-0.186439,-0.945560,-0.266752, + 0.228172,0.126879,-0.965318,0.228172,0.126879,-0.965318,0.228172,0.126879,-0.965318,0.228172,0.126879,-0.965318, + -0.314509,-0.928090,-0.199332,-0.314509,-0.928090,-0.199332,-0.314509,-0.928090,-0.199332,-0.314509,-0.928090,-0.199332, + -0.227910,-0.126944,0.965371,-0.227910,-0.126944,0.965371,-0.227910,-0.126944,0.965371,-0.227910,-0.126944,0.965371, + -0.929880,0.290085,-0.226216,-0.929880,0.290085,-0.226216,-0.929880,0.290085,-0.226216,-0.929880,0.290085,-0.226216, + -0.242485,-0.945769,-0.216153,-0.242485,-0.945769,-0.216153,-0.242485,-0.945769,-0.216153,-0.242485,-0.945769,-0.216153, + 0.929889,-0.290055,0.226218,0.929889,-0.290055,0.226218,0.929889,-0.290055,0.226218,0.929889,-0.290055,0.226218, + -0.904026,0.265513,0.335021,-0.904026,0.265513,0.335021,-0.904026,0.265513,0.335021,-0.904026,0.265513,0.335021, + 0.265578,0.959980,0.088922,0.265578,0.959980,0.088922,0.265578,0.959980,0.088922,0.265578,0.959980,0.088922, + 0.931565,-0.250644,0.263372,0.931565,-0.250644,0.263372,0.931565,-0.250644,0.263372,0.931565,-0.250644,0.263372, + -0.929416,0.250754,-0.270755,-0.929416,0.250754,-0.270755,-0.929416,0.250754,-0.270755,-0.929416,0.250754,-0.270755, + 0.405591,-0.028001,-0.913626,0.405591,-0.028001,-0.913626,0.405591,-0.028001,-0.913626,0.405591,-0.028001,-0.913626, + -0.172774,-0.035039,0.984338,-0.172774,-0.035039,0.984338,-0.172774,-0.035039,0.984338,-0.172774,-0.035039,0.984338, + 0.208826,0.975094,0.074726,0.208826,0.975094,0.074726,0.208826,0.975094,0.074726,0.208826,0.975094,0.074726, + -0.948974,0.249466,-0.192914,-0.948974,0.249466,-0.192914,-0.948974,0.249466,-0.192914,-0.948974,0.249466,-0.192914, + 0.946558,-0.249719,0.204127,0.946558,-0.249719,0.204127,0.946558,-0.249719,0.204127,0.946558,-0.249719,0.204127, + -0.377042,0.019983,0.925981,-0.377042,0.019983,0.925981,-0.377042,0.019983,0.925981,-0.377042,0.019983,0.925981, + 0.141874,0.043024,-0.988949,0.141874,0.043024,-0.988949,0.141874,0.043024,-0.988949,0.141874,0.043024,-0.988949, + 0.265896,0.959861,0.089257,0.265896,0.959861,0.089257,0.265896,0.959861,0.089257,0.265896,0.959861,0.089257, + 0.928547,-0.250703,0.273768,0.928547,-0.250703,0.273768,0.928547,-0.250703,0.273768,0.928547,-0.250703,0.273768, + -0.925939,0.250810,-0.282367,-0.925939,0.250810,-0.282367,-0.925939,0.250810,-0.282367,-0.925939,0.250810,-0.282367, + 0.439776,-0.037719,-0.897315,0.439776,-0.037719,-0.897315,0.439776,-0.037719,-0.897315,0.439776,-0.037719,-0.897315, + -0.207038,-0.026065,0.977986,-0.207038,-0.026065,0.977986,-0.207038,-0.026065,0.977986,-0.207038,-0.026065,0.977986, + 0.208535,0.975195,0.074218,0.208535,0.975195,0.074218,0.208535,0.975195,0.074218,0.208535,0.975195,0.074218, + -0.945890,0.249798,-0.207107,-0.945890,0.249798,-0.207107,-0.945890,0.249798,-0.207107,-0.945890,0.249798,-0.207107, + 0.943424,-0.250089,0.217733,0.943424,-0.250089,0.217733,0.943424,-0.250089,0.217733,0.943424,-0.250089,0.217733, + -0.387564,0.022926,0.921558,-0.387564,0.022926,0.921558,-0.387564,0.022926,0.921558,-0.387564,0.022926,0.921558, + 0.149977,0.040962,-0.987841,0.149977,0.040962,-0.987841,0.149977,0.040962,-0.987841,0.149977,0.040962,-0.987841, + -0.226212,-0.965910,-0.125880,-0.226212,-0.965910,-0.125880,-0.226212,-0.965910,-0.125880,-0.226212,-0.965910,-0.125880, + 0.940152,-0.250307,0.231215,0.940152,-0.250307,0.231215,0.940152,-0.250307,0.231215,0.940152,-0.250307,0.231215, + -0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885,-0.226223,-0.965907,-0.125885, + -0.301762,-0.089021,0.949218,-0.301762,-0.089021,0.949218,-0.301762,-0.089021,0.949218,-0.301762,-0.089021,0.949218, + 0.952889,-0.246271,0.177071,0.952889,-0.246271,0.177071,0.952889,-0.246271,0.177071,0.952889,-0.246271,0.177071, + -0.938256,0.251002,-0.238064,-0.938256,0.251002,-0.238064,-0.938256,0.251002,-0.238064,-0.938256,0.251002,-0.238064, + 0.213761,0.076858,-0.973858,0.213761,0.076858,-0.973858,0.213761,0.076858,-0.973858,0.213761,0.076858,-0.973858, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.922563,0.253915,-0.290526,-0.922563,0.253915,-0.290526,-0.922563,0.253915,-0.290526,-0.922563,0.253915,-0.290526, + -0.227082,-0.966210,-0.121953,-0.227082,-0.966210,-0.121953,-0.227082,-0.966210,-0.121953,0.952682,-0.244008,0.181263, + 0.952682,-0.244008,0.181263,0.952682,-0.244008,0.181263,0.952682,-0.244008,0.181263,-0.244589,-0.953382,-0.176744, + -0.244589,-0.953382,-0.176744,-0.244589,-0.953382,-0.176744,-0.244589,-0.953382,-0.176744,-0.949231,0.246598,-0.195318, + -0.949231,0.246598,-0.195318,-0.949231,0.246598,-0.195318,-0.949231,0.246598,-0.195318,0.951209,-0.245471,0.186936, + 0.951209,-0.245471,0.186936,0.951209,-0.245471,0.186936,0.951209,-0.245471,0.186936,0.062051,0.165634,-0.984233, + 0.062051,0.165634,-0.984233,0.062051,0.165634,-0.984233,0.062051,0.165634,-0.984233,-0.314518,-0.102120,0.943743, + -0.314518,-0.102120,0.943743,-0.314518,-0.102120,0.943743,-0.314518,-0.102120,0.943743,-0.184089,-0.969363,-0.162622, + -0.184089,-0.969363,-0.162622,-0.184089,-0.969363,-0.162622,-0.184089,-0.969363,-0.162622,0.933518,-0.252983,0.254055, + 0.933518,-0.252983,0.254055,0.933518,-0.252983,0.254055,0.933518,-0.252983,0.254055,-0.936512,0.251784,-0.244027, + -0.936512,0.251784,-0.244027,-0.936512,0.251784,-0.244027,-0.936512,0.251784,-0.244027,-0.109796,-0.154482,0.981876, + -0.109796,-0.154482,0.981876,-0.109796,-0.154482,0.981876,-0.109796,-0.154482,0.981876,0.359743,0.089412,-0.928758, + 0.359743,0.089412,-0.928758,0.359743,0.089412,-0.928758,0.359743,0.089412,-0.928758,-0.223970,-0.964105,-0.142616, + -0.223970,-0.964105,-0.142616,-0.223970,-0.964105,-0.142616,-0.223970,-0.964105,-0.142616,-0.927963,0.254065,-0.272644, + -0.927963,0.254065,-0.272644,-0.927963,0.254065,-0.272644,-0.927963,0.254065,-0.272644,0.932109,-0.250909,0.261186, + 0.932109,-0.250909,0.261186,0.932109,-0.250909,0.261186,0.932109,-0.250909,0.261186,0.174639,0.113770,-0.978038, + 0.174639,0.113770,-0.978038,0.174639,0.113770,-0.978038,0.174639,0.113770,-0.978038,-0.293581,-0.082843,0.952338, + -0.293581,-0.082843,0.952338,-0.293581,-0.082843,0.952338,-0.293581,-0.082843,0.952338,-0.167636,-0.977189,-0.130381, + -0.167636,-0.977189,-0.130381,-0.167636,-0.977189,-0.130381,-0.167636,-0.977189,-0.130381,0.953764,-0.243339,0.176411, + 0.953764,-0.243339,0.176411,0.953764,-0.243339,0.176411,0.953764,-0.243339,0.176411,-0.933998,0.252498,-0.252770, + -0.933998,0.252498,-0.252770,-0.933998,0.252498,-0.252770,-0.933998,0.252498,-0.252770,-0.299678,-0.089593,0.949824, + -0.299678,-0.089593,0.949824,-0.299678,-0.089593,0.949824,-0.299678,-0.089593,0.949824,0.267188,0.115058,-0.956751, + 0.267188,0.115058,-0.956751,0.267188,0.115058,-0.956751,0.267188,0.115058,-0.956751,0.956693,-0.191911,0.218879, + 0.956693,-0.191911,0.218879,0.956693,-0.191911,0.218879,0.956693,-0.191911,0.218879,-0.238042,-0.108399,0.965187, + -0.238042,-0.108399,0.965187,-0.238042,-0.108399,0.965187,-0.238042,-0.108399,0.965187,0.208561,-0.015025,-0.977894, + 0.208561,-0.015025,-0.977894,0.208561,-0.015025,-0.977894,0.208561,-0.015025,-0.977894,0.220370,0.965121,0.141348, + 0.220370,0.965121,0.141348,0.220370,0.965121,0.141348,0.220370,0.965121,0.141348,-0.225273,-0.965616,-0.129762, + -0.225273,-0.965616,-0.129762,-0.225273,-0.965616,-0.129762,-0.225273,-0.965616,-0.129762,0.944035,-0.251313,0.213636, + 0.944035,-0.251313,0.213636,0.944035,-0.251313,0.213636,0.944035,-0.251313,0.213636,0.939099,-0.250419,0.235335, + 0.939099,-0.250419,0.235335,0.939099,-0.250419,0.235335,-0.219441,-0.963837,-0.151208,-0.219441,-0.963837,-0.151208, + -0.219441,-0.963837,-0.151208,-0.219441,-0.963837,-0.151208,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725, + -0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,0.244777,0.024024,-0.969282,0.244777,0.024024,-0.969282, + 0.244777,0.024024,-0.969282,0.244777,0.024024,-0.969282,0.206689,0.079894,-0.975139,0.206689,0.079894,-0.975139, + 0.206689,0.079894,-0.975139,0.206689,0.079894,-0.975139,0.238035,0.967951,0.080068,0.238035,0.967951,0.080068, + 0.238035,0.967951,0.080068,0.238035,0.967951,0.080068,0.939096,-0.250593,0.235163,0.939096,-0.250593,0.235163, + 0.939096,-0.250593,0.235163,-0.231263,-0.115163,0.966051,-0.231263,-0.115163,0.966051,-0.231263,-0.115163,0.966051, + -0.231263,-0.115163,0.966051,-0.224611,-0.965354,-0.132818,-0.224611,-0.965354,-0.132818,-0.224611,-0.965354,-0.132818, + -0.224611,-0.965354,-0.132818,0.236569,0.968707,0.075111,0.236569,0.968707,0.075111,0.236569,0.968707,0.075111, + 0.236569,0.968707,0.075111,0.956695,-0.191903,0.218880,0.956695,-0.191903,0.218880,0.956695,-0.191903,0.218880, + 0.956695,-0.191903,0.218880,-0.238000,-0.108410,0.965196,-0.238000,-0.108410,0.965196,-0.238000,-0.108410,0.965196, + -0.238000,-0.108410,0.965196,0.208561,-0.015019,-0.977894,0.208561,-0.015019,-0.977894,0.208561,-0.015019,-0.977894, + 0.208561,-0.015019,-0.977894,0.220346,0.965128,0.141336,0.220346,0.965128,0.141336,0.220346,0.965128,0.141336, + 0.220346,0.965128,0.141336,-0.225249,-0.965624,-0.129746,-0.225249,-0.965624,-0.129746,-0.225249,-0.965624,-0.129746, + -0.225249,-0.965624,-0.129746,0.944034,-0.251316,0.213636,0.944034,-0.251316,0.213636,0.944034,-0.251316,0.213636, + 0.944034,-0.251316,0.213636,0.939098,-0.250427,0.235333,0.939098,-0.250427,0.235333,0.939098,-0.250427,0.235333, + -0.219443,-0.963836,-0.151211,-0.219443,-0.963836,-0.151211,-0.219443,-0.963836,-0.151211,-0.219443,-0.963836,-0.151211, + -0.254844,-0.066043,0.964724,-0.254844,-0.066043,0.964724,-0.254844,-0.066043,0.964724,-0.254844,-0.066043,0.964724, + 0.244777,0.024025,-0.969282,0.244777,0.024025,-0.969282,0.244777,0.024025,-0.969282,0.244777,0.024025,-0.969282, + 0.206734,0.079894,-0.975130,0.206734,0.079894,-0.975130,0.206734,0.079894,-0.975130,0.206734,0.079894,-0.975130, + 0.238036,0.967950,0.080068,0.238036,0.967950,0.080068,0.238036,0.967950,0.080068,0.238036,0.967950,0.080068, + 0.939098,-0.250586,0.235163,0.939098,-0.250586,0.235163,0.939098,-0.250586,0.235163,-0.231291,-0.115163,0.966044, + -0.231291,-0.115163,0.966044,-0.231291,-0.115163,0.966044,-0.231291,-0.115163,0.966044,-0.224616,-0.965353,-0.132821, + -0.224616,-0.965353,-0.132821,-0.224616,-0.965353,-0.132821,-0.224616,-0.965353,-0.132821,0.236599,0.968699,0.075118, + 0.236599,0.968699,0.075118,0.236599,0.968699,0.075118,0.236599,0.968699,0.075118,0.956695,-0.191901,0.218879, + 0.956695,-0.191901,0.218879,0.956695,-0.191901,0.218879,0.956695,-0.191901,0.218879,-0.238042,-0.108410,0.965186, + -0.238042,-0.108410,0.965186,-0.238042,-0.108410,0.965186,-0.238042,-0.108410,0.965186,0.208522,-0.015021,-0.977902, + 0.208522,-0.015021,-0.977902,0.208522,-0.015021,-0.977902,0.208522,-0.015021,-0.977902,0.220344,0.965128,0.141336, + 0.220344,0.965128,0.141336,0.220344,0.965128,0.141336,0.220344,0.965128,0.141336,-0.225272,-0.965617,-0.129757, + -0.225272,-0.965617,-0.129757,-0.225272,-0.965617,-0.129757,-0.225272,-0.965617,-0.129757,0.944034,-0.251316,0.213635, + 0.944034,-0.251316,0.213635,0.944034,-0.251316,0.213635,0.944034,-0.251316,0.213635,0.939098,-0.250424,0.235335, + 0.939098,-0.250424,0.235335,0.939098,-0.250424,0.235335,-0.219441,-0.963837,-0.151210,-0.219441,-0.963837,-0.151210, + -0.219441,-0.963837,-0.151210,-0.219441,-0.963837,-0.151210,-0.254854,-0.066046,0.964721,-0.254854,-0.066046,0.964721, + -0.254854,-0.066046,0.964721,-0.254854,-0.066046,0.964721,0.244777,0.024027,-0.969282,0.244777,0.024027,-0.969282, + 0.244777,0.024027,-0.969282,0.244777,0.024027,-0.969282,0.206735,0.079894,-0.975130,0.206735,0.079894,-0.975130, + 0.206735,0.079894,-0.975130,0.206735,0.079894,-0.975130,0.238034,0.967951,0.080067,0.238034,0.967951,0.080067, + 0.238034,0.967951,0.080067,0.238034,0.967951,0.080067,0.939097,-0.250589,0.235163,0.939097,-0.250589,0.235163, + 0.939097,-0.250589,0.235163,-0.231305,-0.115163,0.966041,-0.231305,-0.115163,0.966041,-0.231305,-0.115163,0.966041, + -0.231305,-0.115163,0.966041,-0.224612,-0.965354,-0.132818,-0.224612,-0.965354,-0.132818,-0.224612,-0.965354,-0.132818, + -0.224612,-0.965354,-0.132818,0.236577,0.968705,0.075110,0.236577,0.968705,0.075110,0.236577,0.968705,0.075110, + 0.236577,0.968705,0.075110,-0.946516,0.194538,-0.257416,-0.946516,0.194538,-0.257416,-0.946516,0.194538,-0.257416, + -0.946516,0.194538,-0.257416,-0.271085,-0.023568,0.962267,-0.271085,-0.023568,0.962267,-0.271085,-0.023568,0.962267, + -0.271085,-0.023568,0.962267,0.298851,0.146532,-0.942983,0.298851,0.146532,-0.942983,0.298851,0.146532,-0.942983, + 0.298851,0.146532,-0.942983,-0.228760,-0.967294,-0.109596,-0.228760,-0.967294,-0.109596,-0.228760,-0.967294,-0.109596, + -0.228760,-0.967294,-0.109596,0.227285,0.966150,0.122047,0.227285,0.966150,0.122047,0.227285,0.966150,0.122047, + 0.227285,0.966150,0.122047,-0.934919,0.253681,-0.248139,-0.934919,0.253681,-0.248139,-0.934919,0.253681,-0.248139, + -0.934919,0.253681,-0.248139,-0.941265,0.249859,-0.227137,-0.941265,0.249859,-0.227137,-0.941265,0.249859,-0.227137, + 0.232855,0.967307,0.100476,0.232855,0.967307,0.100476,0.232855,0.967307,0.100476,0.232855,0.967307,0.100476, + -0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725, + 0.264441,0.107942,-0.958342,0.264441,0.107942,-0.958342,0.264441,0.107942,-0.958342,0.264441,0.107942,-0.958342, + 0.302257,0.052041,-0.951805,0.302257,0.052041,-0.951805,0.302257,0.052041,-0.951805,0.302257,0.052041,-0.951805, + -0.213895,-0.961699,-0.171418,-0.213895,-0.961699,-0.171418,-0.213895,-0.961699,-0.171418,-0.213895,-0.961699,-0.171418, + -0.941185,0.250047,-0.227260,-0.941185,0.250047,-0.227260,-0.941185,0.250047,-0.227260,-0.277654,-0.016730,0.960535, + -0.277654,-0.016730,0.960535,-0.277654,-0.016730,0.960535,-0.277654,-0.016730,0.960535,0.228241,0.966300,0.119043, + 0.228241,0.966300,0.119043,0.228241,0.966300,0.119043,0.228241,0.966300,0.119043,-0.210184,-0.961858,-0.175075, + -0.210184,-0.961858,-0.175075,-0.210184,-0.961858,-0.175075,-0.210184,-0.961858,-0.175075,0.185089,0.944813,0.270315, + 0.185089,0.944813,0.270315,0.185089,0.944813,0.270315,0.185089,0.944813,0.270315,-0.936613,0.251204,-0.244239, + -0.936613,0.251204,-0.244239,-0.936613,0.251204,-0.244239,-0.936613,0.251204,-0.244239,0.213512,0.961528,0.172846, + 0.213512,0.961528,0.172846,0.213512,0.961528,0.172846,0.213512,0.961528,0.172846,0.936614,-0.251199,0.244239, + 0.936614,-0.251199,0.244239,0.936614,-0.251199,0.244239,0.936614,-0.251199,0.244239,-0.213510,-0.961529,-0.172844, + -0.213510,-0.961529,-0.172844,-0.213510,-0.961529,-0.172844,-0.213510,-0.961529,-0.172844,0.218681,0.963560,0.154047, + 0.218681,0.963560,0.154047,0.218681,0.963560,0.154047,0.218681,0.963560,0.154047,0.936621,-0.251172,0.244241, + 0.936621,-0.251172,0.244241,0.936621,-0.251172,0.244241,0.936621,-0.251172,0.244241,-0.218677,-0.963562,-0.154045, + -0.218677,-0.963562,-0.154045,-0.218677,-0.963562,-0.154045,-0.218677,-0.963562,-0.154045,-0.951373,0.163932,-0.260797, + -0.951373,0.163932,-0.260797,-0.951373,0.163932,-0.260797,-0.951373,0.163932,-0.260797,-0.272392,-0.024081,0.961885, + -0.272392,-0.024081,0.961885,-0.272392,-0.024081,0.961885,-0.272392,-0.024081,0.961885,0.296382,0.147979,-0.943536, + 0.296382,0.147979,-0.943536,0.296382,0.147979,-0.943536,0.296382,0.147979,-0.943536,-0.199321,-0.974579,-0.102312, + -0.199321,-0.974579,-0.102312,-0.199321,-0.974579,-0.102312,-0.199321,-0.974579,-0.102312,0.197871,0.973486,0.114769, + 0.197871,0.973486,0.114769,0.197871,0.973486,0.114769,0.197871,0.973486,0.114769,-0.941584,0.223457,-0.251967, + -0.941584,0.223457,-0.251967,-0.941584,0.223457,-0.251967,-0.941584,0.223457,-0.251967,-0.947856,0.219618,-0.230947, + -0.947856,0.219618,-0.230947,-0.947856,0.219618,-0.230947,0.203429,0.974643,0.093204,0.203429,0.974643,0.093204, + 0.203429,0.974643,0.093204,0.203429,0.974643,0.093204,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.263147,0.108259,-0.958662,0.263147,0.108259,-0.958662, + 0.263147,0.108259,-0.958662,0.263147,0.108259,-0.958662,0.302660,0.053563,-0.951592,0.302660,0.053563,-0.951592, + 0.302660,0.053563,-0.951592,0.302660,0.053563,-0.951592,-0.184511,-0.969024,-0.164158,-0.184511,-0.969024,-0.164158, + -0.184511,-0.969024,-0.164158,-0.184511,-0.969024,-0.164158,-0.947781,0.219809,-0.231073,-0.947781,0.219809,-0.231073, + -0.947781,0.219809,-0.231073,-0.279111,-0.017474,0.960100,-0.279111,-0.017474,0.960100,-0.279111,-0.017474,0.960100, + -0.279111,-0.017474,0.960100,0.198829,0.973638,0.111782,0.198829,0.973638,0.111782,0.198829,0.973638,0.111782, + 0.198829,0.973638,0.111782,-0.180769,-0.969106,-0.167797,-0.180769,-0.969106,-0.167797,-0.180769,-0.969106,-0.167797, + -0.180769,-0.969106,-0.167797,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.946745,0.220084,-0.235025,-0.946745,0.220084,-0.235025,-0.946745,0.220084,-0.235025, + -0.946745,0.220084,-0.235025,0.196799,0.973242,0.118616,0.196799,0.973242,0.118616,0.196799,0.973242,0.118616, + 0.196799,0.973242,0.118616,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.242447,0.068915,-0.967714,0.242447,0.068915,-0.967714,0.242447,0.068915,-0.967714, + 0.242447,0.068915,-0.967714,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,-0.196800,-0.973242,-0.118614,-0.196800,-0.973242,-0.118614,-0.196800,-0.973242,-0.118614, + -0.196800,-0.973242,-0.118614,-0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026, + -0.946745,0.220083,-0.235026,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616, + 0.196800,0.973242,0.118616,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025, + 0.946745,-0.220085,0.235025,0.244220,0.068506,-0.967297,0.244220,0.068506,-0.967297,0.244220,0.068506,-0.967297, + 0.244220,0.068506,-0.967297,0.196798,0.973242,0.118617,0.196798,0.973242,0.118617,0.196798,0.973242,0.118617, + 0.196798,0.973242,0.118617,-0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614, + -0.196799,-0.973242,-0.118614,-0.946743,0.220088,-0.235028,-0.946743,0.220088,-0.235028,-0.946743,0.220088,-0.235028, + -0.946743,0.220088,-0.235028,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616, + 0.196800,0.973242,0.118616,0.946743,-0.220091,0.235026,0.946743,-0.220091,0.235026,0.946743,-0.220091,0.235026, + 0.946743,-0.220091,0.235026,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,-0.946744,0.220085,-0.235027,-0.946744,0.220085,-0.235027,-0.946744,0.220085,-0.235027, + -0.946744,0.220085,-0.235027,-0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615, + -0.196799,-0.973242,-0.118615,-0.946745,0.220086,-0.235025,-0.946745,0.220086,-0.235025,-0.946745,0.220086,-0.235025, + -0.946745,0.220086,-0.235025,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615, + 0.196800,0.973242,0.118615,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.254842,0.066042,-0.964725,0.254842,0.066042,-0.964725,0.254842,0.066042,-0.964725, + 0.254842,0.066042,-0.964725,-0.196801,-0.973242,-0.118617,-0.196801,-0.973242,-0.118617,-0.196801,-0.973242,-0.118617, + -0.196801,-0.973242,-0.118617,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.946745,0.220083,-0.235025,-0.946745,0.220083,-0.235025,-0.946745,0.220083,-0.235025, + -0.946745,0.220083,-0.235025,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615, + 0.196800,0.973242,0.118615,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.254849,0.066045,-0.964723,0.254849,0.066045,-0.964723,0.254849,0.066045,-0.964723, + 0.254849,0.066045,-0.964723,0.196797,0.973243,0.118609,0.196797,0.973243,0.118609,0.196797,0.973243,0.118609, + 0.196797,0.973243,0.118609,-0.946744,0.220085,-0.235029,-0.946744,0.220085,-0.235029,-0.946744,0.220085,-0.235029, + -0.946744,0.220085,-0.235029,-0.196802,-0.973242,-0.118615,-0.196802,-0.973242,-0.118615,-0.196802,-0.973242,-0.118615, + -0.196802,-0.973242,-0.118615,0.946744,-0.220087,0.235026,0.946744,-0.220087,0.235026,0.946744,-0.220087,0.235026, + 0.946744,-0.220087,0.235026,0.254848,0.066045,-0.964723,0.254848,0.066045,-0.964723,0.254848,0.066045,-0.964723, + 0.254848,0.066045,-0.964723,0.196799,0.973243,0.118609,0.196799,0.973243,0.118609,0.196799,0.973243,0.118609, + 0.196799,0.973243,0.118609,-0.946745,0.220084,-0.235026,-0.946745,0.220084,-0.235026,-0.946745,0.220084,-0.235026, + -0.946745,0.220084,-0.235026,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,0.946744,-0.220086,0.235027,0.946744,-0.220086,0.235027,0.946744,-0.220086,0.235027, + 0.946744,-0.220086,0.235027,-0.192898,-0.972124,-0.133283,-0.192898,-0.972124,-0.133283,-0.192898,-0.972124,-0.133283, + -0.192898,-0.972124,-0.133283,-0.944678,0.223579,-0.239993,-0.944678,0.223579,-0.239993,-0.944678,0.223579,-0.239993, + -0.944678,0.223579,-0.239993,0.196904,0.975607,0.097061,0.196904,0.975607,0.097061,0.196904,0.975607,0.097061, + 0.196904,0.975607,0.097061,0.946745,-0.220086,0.235026,0.946745,-0.220086,0.235026,0.946745,-0.220086,0.235026, + 0.946745,-0.220086,0.235026,-0.254843,-0.066043,0.964724,-0.254843,-0.066043,0.964724,-0.254843,-0.066043,0.964724, + -0.254843,-0.066043,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,0.175156,0.964250,0.198853,0.175156,0.964250,0.198853,0.175156,0.964250,0.198853, + 0.175156,0.964250,0.198853,-0.244220,-0.068507,0.967297,-0.244220,-0.068507,0.967297,-0.244220,-0.068507,0.967297, + -0.244220,-0.068507,0.967297,-0.242447,-0.068919,0.967714,-0.242447,-0.068919,0.967714,-0.242447,-0.068919,0.967714, + -0.242447,-0.068919,0.967714,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724, + -0.254843,-0.066048,0.964724,-0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725, + -0.254843,-0.066044,0.964725,-0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726, + -0.254836,-0.066046,0.964726,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.946745,0.220082,-0.235025,-0.946745,0.220082,-0.235025,-0.946745,0.220082,-0.235025, + -0.946745,0.220082,-0.235025,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614, + 0.196800,0.973242,0.118614,0.946745,-0.220085,0.235026,0.946745,-0.220085,0.235026,0.946745,-0.220085,0.235026, + 0.946745,-0.220085,0.235026,0.247577,0.067731,-0.966498,0.247577,0.067731,-0.966498,0.247577,0.067731,-0.966498, + 0.247577,0.067731,-0.966498,0.111198,0.098044,-0.988950,0.111198,0.098044,-0.988950,0.111198,0.098044,-0.988950, + 0.111198,0.098044,-0.988950,-0.196800,-0.973242,-0.118614,-0.196800,-0.973242,-0.118614,-0.196800,-0.973242,-0.118614, + -0.196800,-0.973242,-0.118614,-0.946745,0.220086,-0.235026,-0.946745,0.220086,-0.235026,-0.946745,0.220086,-0.235026, + -0.946745,0.220086,-0.235026,0.196799,0.973242,0.118616,0.196799,0.973242,0.118616,0.196799,0.973242,0.118616, + 0.196799,0.973242,0.118616,0.946744,-0.220084,0.235028,0.946744,-0.220084,0.235028,0.946744,-0.220084,0.235028, + 0.946744,-0.220084,0.235028,0.247576,0.067730,-0.966498,0.247576,0.067730,-0.966498,0.247576,0.067730,-0.966498, + 0.247576,0.067730,-0.966498,0.942234,-0.221188,0.251536,0.942234,-0.221188,0.251536,0.942234,-0.221188,0.251536, + 0.942234,-0.221188,0.251536,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,0.196799,0.973242,0.118617,0.196799,0.973242,0.118617,0.196799,0.973242,0.118617, + 0.196799,0.973242,0.118617,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.232772,0.071141,-0.969926,0.232772,0.071141,-0.969926,0.232772,0.071141,-0.969926, + 0.232772,0.071141,-0.969926,-0.946744,0.220087,-0.235026,-0.946744,0.220087,-0.235026,-0.946744,0.220087,-0.235026, + -0.946744,0.220087,-0.235026,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.946746,0.220082,-0.235025,-0.946746,0.220082,-0.235025,-0.946746,0.220082,-0.235025, + -0.946746,0.220082,-0.235025,0.196800,0.973242,0.118613,0.196800,0.973242,0.118613,0.196800,0.973242,0.118613, + 0.196800,0.973242,0.118613,0.946745,-0.220088,0.235024,0.946745,-0.220088,0.235024,0.946745,-0.220088,0.235024, + 0.946745,-0.220088,0.235024,0.247577,0.067731,-0.966498,0.247577,0.067731,-0.966498,0.247577,0.067731,-0.966498, + 0.247577,0.067731,-0.966498,0.191620,0.971861,0.136999,0.191620,0.971861,0.136999,0.191620,0.971861,0.136999, + 0.191620,0.971861,0.136999,-0.193068,-0.974102,-0.117688,-0.193068,-0.974102,-0.117688,-0.193068,-0.974102,-0.117688, + -0.193068,-0.974102,-0.117688,-0.946745,0.220086,-0.235025,-0.946745,0.220086,-0.235025,-0.946745,0.220086,-0.235025, + -0.946745,0.220086,-0.235025,0.196799,0.973242,0.118614,0.196799,0.973242,0.118614,0.196799,0.973242,0.118614, + 0.196799,0.973242,0.118614,0.903522,-0.227003,0.363479,0.903522,-0.227003,0.363479,0.903522,-0.227003,0.363479, + 0.903522,-0.227003,0.363479,0.219149,0.074255,-0.972862,0.219149,0.074255,-0.972862,0.219149,0.074255,-0.972862, + 0.219149,0.074255,-0.972862,0.980364,-0.193795,-0.036462,0.980364,-0.193795,-0.036462,0.980364,-0.193795,-0.036462, + 0.980364,-0.193795,-0.036462,0.212831,0.075690,-0.974153,0.212831,0.075690,-0.974153,0.212831,0.075690,-0.974153, + 0.212831,0.075690,-0.974153,-0.942235,0.221184,-0.251538,-0.942235,0.221184,-0.251538,-0.942235,0.221184,-0.251538, + -0.942235,0.221184,-0.251538,-0.976812,0.205034,-0.061642,-0.976812,0.205034,-0.061642,-0.976812,0.205034,-0.061642, + -0.976812,0.205034,-0.061642,-0.191621,-0.971860,-0.136999,-0.191621,-0.971860,-0.136999,-0.191621,-0.971860,-0.136999, + -0.191621,-0.971860,-0.136999,-0.175157,-0.964250,-0.198851,-0.175157,-0.964250,-0.198851,-0.175157,-0.964250,-0.198851, + -0.175157,-0.964250,-0.198851,-0.946744,0.220086,-0.235027,-0.946744,0.220086,-0.235027,-0.946744,0.220086,-0.235027, + -0.946744,0.220086,-0.235027,-0.196800,-0.973243,-0.118612,-0.196800,-0.973243,-0.118612,-0.196800,-0.973243,-0.118612, + -0.196800,-0.973243,-0.118612,0.196797,0.973243,0.118615,0.196797,0.973243,0.118615,0.196797,0.973243,0.118615, + 0.196797,0.973243,0.118615,0.269549,0.172054,-0.947492,0.269549,0.172054,-0.947492,0.269549,0.172054,-0.947492, + 0.269549,0.172054,-0.947492,0.952033,-0.216636,0.216108,0.952033,-0.216636,0.216108,0.952033,-0.216636,0.216108, + 0.952033,-0.216636,0.216108,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.207357,-0.975160,-0.077883,-0.207357,-0.975160,-0.077883,-0.207357,-0.975160,-0.077883, + -0.207357,-0.975160,-0.077883,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.946745,-0.220083,0.235027,0.946745,-0.220083,0.235027,0.946745,-0.220083,0.235027, + 0.946745,-0.220083,0.235027,0.196800,0.973242,0.118612,0.196800,0.973242,0.118612,0.196800,0.973242,0.118612, + 0.196800,0.973242,0.118612,-0.235848,-0.070435,0.969234,-0.235848,-0.070435,0.969234,-0.235848,-0.070435,0.969234, + -0.235848,-0.070435,0.969234,0.250116,0.043003,-0.967260,0.250116,0.043003,-0.967260,0.250116,0.043003,-0.967260, + 0.250116,0.043003,-0.967260,0.244236,0.068502,-0.967293,0.244236,0.068502,-0.967293,0.244236,0.068502,-0.967293, + 0.244236,0.068502,-0.967293,0.946745,-0.220084,0.235024,0.946745,-0.220084,0.235024,0.946745,-0.220084,0.235024, + 0.946745,-0.220084,0.235024,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614, + 0.196800,0.973242,0.118614,-0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026, + -0.946745,0.220083,-0.235026,-0.196799,-0.973242,-0.118617,-0.196799,-0.973242,-0.118617,-0.196799,-0.973242,-0.118617, + -0.196799,-0.973242,-0.118617,0.207356,0.975160,0.077886,0.207356,0.975160,0.077886,0.207356,0.975160,0.077886, + 0.207356,0.975160,0.077886,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025, + 0.946745,-0.220086,0.235025,0.246329,0.025004,-0.968864,0.246329,0.025004,-0.968864,0.246329,0.025004,-0.968864, + 0.246329,0.025004,-0.968864,-0.196804,-0.973241,-0.118615,-0.196804,-0.973241,-0.118615,-0.196804,-0.973241,-0.118615, + -0.196804,-0.973241,-0.118615,-0.196799,-0.973242,-0.118616,-0.196799,-0.973242,-0.118616,-0.196799,-0.973242,-0.118616, + -0.196799,-0.973242,-0.118616,-0.946746,0.220079,-0.235028,-0.946746,0.220079,-0.235028,-0.946746,0.220079,-0.235028, + -0.946746,0.220079,-0.235028,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614, + 0.196800,0.973242,0.118614,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.243415,0.068692,-0.967487,0.243415,0.068692,-0.967487,0.243415,0.068692,-0.967487, + 0.243415,0.068692,-0.967487,0.974893,-0.210097,0.073776,0.974893,-0.210097,0.073776,0.974893,-0.210097,0.073776, + 0.974893,-0.210097,0.073776,0.252995,0.056952,-0.965790,0.252995,0.056952,-0.965790,0.252995,0.056952,-0.965790, + 0.252995,0.056952,-0.965790,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616, + 0.196800,0.973242,0.118616,-0.940851,0.221783,-0.256147,-0.940851,0.221783,-0.256147,-0.940851,0.221783,-0.256147, + -0.940851,0.221783,-0.256147,-0.196802,-0.973241,-0.118618,-0.196802,-0.973241,-0.118618,-0.196802,-0.973241,-0.118618, + -0.196802,-0.973241,-0.118618,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724, + -0.254842,-0.066046,0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724, + 0.254842,0.066045,-0.964724,-0.177526,-0.950971,-0.253255,-0.177526,-0.950971,-0.253255,-0.177526,-0.950971,-0.253255, + -0.177526,-0.950971,-0.253255,-0.172837,-0.984248,-0.037202,-0.172837,-0.984248,-0.037202,-0.172837,-0.984248,-0.037202, + -0.172837,-0.984248,-0.037202,0.833503,-0.102373,-0.542949,0.833503,-0.102373,-0.542949,0.833503,-0.102373,-0.542949, + 0.833503,-0.102373,-0.542949,0.181682,0.974063,0.134880,0.181682,0.974063,0.134880,0.181682,0.974063,0.134880, + 0.181682,0.974063,0.134880,0.232950,0.969151,0.080505,0.232950,0.969151,0.080505,0.232950,0.969151,0.080505, + 0.232950,0.969151,0.080505,0.833326,-0.102300,-0.543233,0.833326,-0.102300,-0.543233,0.833326,-0.102300,-0.543233, + 0.833326,-0.102300,-0.543233,-0.229148,-0.969712,-0.084553,-0.229148,-0.969712,-0.084553,-0.229148,-0.969712,-0.084553, + -0.229148,-0.969712,-0.084553,-0.028000,0.126510,-0.991570,-0.028000,0.126510,-0.991570,-0.028000,0.126510,-0.991570, + -0.028000,0.126510,-0.991570,0.171676,0.984588,0.033363,0.171676,0.984588,0.033363,0.171676,0.984588,0.033363, + 0.171676,0.984588,0.033363,-0.134632,-0.966289,-0.219455,-0.134632,-0.966289,-0.219455,-0.134632,-0.966289,-0.219455, + -0.134632,-0.966289,-0.219455,-0.029265,0.126756,-0.991502,-0.029265,0.126756,-0.991502,-0.029265,0.126756,-0.991502, + -0.029265,0.126756,-0.991502,0.207955,0.965512,0.156659,0.207955,0.965512,0.156659,0.207955,0.965512,0.156659, + 0.207955,0.965512,0.156659,0.970683,-0.186262,-0.151924,0.970683,-0.186262,-0.151924,0.970683,-0.186262,-0.151924, + 0.970683,-0.186262,-0.151924,0.038170,-0.107629,0.993458,0.038170,-0.107629,0.993458,0.038170,-0.107629,0.993458, + 0.038170,-0.107629,0.993458,-0.808725,0.063390,0.584760,-0.808725,0.063390,0.584760,-0.808725,0.063390,0.584760, + -0.808725,0.063390,0.584760,-0.279939,0.201284,-0.938680,-0.279939,0.201284,-0.938680,-0.279939,0.201284,-0.938680, + -0.279939,0.201284,-0.938680,-0.172863,-0.978487,-0.112609,-0.172863,-0.978487,-0.112609,-0.172863,-0.978487,-0.112609, + -0.172863,-0.978487,-0.112609,0.950843,-0.218940,0.219004,0.950843,-0.218940,0.219004,0.950843,-0.218940,0.219004, + 0.950843,-0.218940,0.219004,-0.031005,0.106183,-0.993863,-0.031005,0.106183,-0.993863,-0.031005,0.106183,-0.993863, + -0.031005,0.106183,-0.993863,0.817411,-0.071648,-0.571582,0.817411,-0.071648,-0.571582,0.817411,-0.071648,-0.571582, + 0.817411,-0.071648,-0.571582,0.236853,0.971301,0.021776,0.236853,0.971301,0.021776,0.236853,0.971301,0.021776, + 0.236853,0.971301,0.021776,0.191122,0.981565,-0.001889,0.191122,0.981565,-0.001889,0.191122,0.981565,-0.001889, + 0.191122,0.981565,-0.001889,-0.228039,-0.960142,-0.161635,-0.228039,-0.960142,-0.161635,-0.228039,-0.960142,-0.161635, + -0.228039,-0.960142,-0.161635,-0.938450,0.222051,-0.264583,-0.938450,0.222051,-0.264583,-0.938450,0.222051,-0.264583, + -0.938450,0.222051,-0.264583,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025, + 0.946745,-0.220086,0.235025,-0.201548,-0.974310,-0.100488,-0.201548,-0.974310,-0.100488,-0.201548,-0.974310,-0.100488, + -0.201548,-0.974310,-0.100488,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,0.192117,0.971875,0.136198,0.192117,0.971875,0.136198,0.192117,0.971875,0.136198, + 0.192117,0.971875,0.136198,-0.191938,-0.971817,-0.136864,-0.191938,-0.971817,-0.136864,-0.191938,-0.971817,-0.136864, + 0.206244,0.975037,0.082252,0.206244,0.975037,0.082252,0.206244,0.975037,0.082252,0.203116,0.974590,0.094435, + 0.203116,0.974590,0.094435,0.203116,0.974590,0.094435,0.203116,0.974590,0.094435,-0.193568,-0.972331,-0.130781, + -0.193568,-0.972331,-0.130781,-0.193568,-0.972331,-0.130781,-0.193568,-0.972331,-0.130781,-0.206111,-0.975021,-0.082772, + -0.206111,-0.975021,-0.082772,-0.206111,-0.975021,-0.082772,-0.206111,-0.975021,-0.082772,-0.955510,0.217495,-0.199239, + -0.955510,0.217495,-0.199239,-0.955510,0.217495,-0.199239,-0.955510,0.217495,-0.199239,0.206111,0.975022,0.082772, + 0.206111,0.975022,0.082772,0.206111,0.975022,0.082772,0.206111,0.975022,0.082772,0.955510,-0.217498,0.199238, + 0.955510,-0.217498,0.199238,0.955510,-0.217498,0.199238,0.955510,-0.217498,0.199238,-0.199224,-0.973828,-0.109400, + -0.199224,-0.973828,-0.109400,-0.199224,-0.973828,-0.109400,-0.199224,-0.973828,-0.109400,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.199224,0.973828,0.109400, + 0.199224,0.973828,0.109400,0.199224,0.973828,0.109400,0.199224,0.973828,0.109400,0.950504,-0.219056,0.220356, + 0.950504,-0.219056,0.220356,0.950504,-0.219056,0.220356,0.950504,-0.219056,0.220356,-0.194356,-0.972568,-0.127819, + -0.194356,-0.972568,-0.127819,-0.194356,-0.972568,-0.127819,-0.194356,-0.972568,-0.127819,0.194356,0.972568,0.127819, + 0.194356,0.972568,0.127819,0.194356,0.972568,0.127819,0.194356,0.972568,0.127819,0.950504,-0.219057,0.220356, + 0.950504,-0.219057,0.220356,0.950504,-0.219057,0.220356,0.950504,-0.219057,0.220356,-0.955478,0.217507,-0.199379, + -0.955478,0.217507,-0.199379,-0.955478,0.217507,-0.199379,-0.955478,0.217507,-0.199379,-0.193834,-0.972412,-0.129781, + -0.193834,-0.972412,-0.129781,-0.193834,-0.972412,-0.129781,-0.193834,-0.972412,-0.129781,0.191999,0.971837,0.136638, + 0.191999,0.971837,0.136638,0.191999,0.971837,0.136638,0.191999,0.971837,0.136638,0.955478,-0.217506,0.199379, + 0.955478,-0.217506,0.199379,0.955478,-0.217506,0.199379,0.955478,-0.217506,0.199379,-0.223008,-0.073376,0.972051, + -0.223008,-0.073376,0.972051,-0.223008,-0.073376,0.972051,-0.223008,-0.073376,0.972051,-0.191910,-0.971946,-0.135980, + -0.191910,-0.971946,-0.135980,-0.191910,-0.971946,-0.135980,-0.191910,-0.971946,-0.135980,-0.951215,0.218850,-0.217474, + -0.951215,0.218850,-0.217474,-0.951215,0.218850,-0.217474,-0.951215,0.218850,-0.217474,0.191913,0.971946,0.135980, + 0.191913,0.971946,0.135980,0.191913,0.971946,0.135980,0.191913,0.971946,0.135980,0.951215,-0.218851,0.217474, + 0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,-0.194331,-0.972626,-0.127413, + -0.194331,-0.972626,-0.127413,-0.194331,-0.972626,-0.127413,-0.194331,-0.972626,-0.127413,0.194332,0.972626,0.127413, + 0.194332,0.972626,0.127413,0.194332,0.972626,0.127413,0.194332,0.972626,0.127413,0.951215,-0.218850,0.217474, + 0.951215,-0.218850,0.217474,0.951215,-0.218850,0.217474,0.951215,-0.218850,0.217474,-0.199251,-0.973777,-0.109807, + -0.199251,-0.973777,-0.109807,-0.199251,-0.973777,-0.109807,-0.199251,-0.973777,-0.109807,0.199252,0.973777,0.109807, + 0.199252,0.973777,0.109807,0.199252,0.973777,0.109807,0.199252,0.973777,0.109807,0.951215,-0.218851,0.217474, + 0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,-0.951215,0.218851,-0.217474, + -0.951215,0.218851,-0.217474,-0.951215,0.218851,-0.217474,-0.951215,0.218851,-0.217474,-0.201746,-0.974240,-0.100770, + -0.201746,-0.974240,-0.100770,-0.201746,-0.974240,-0.100770,-0.201746,-0.974240,-0.100770,0.122136,0.989088,0.082383, + 0.122136,0.989088,0.082383,0.122136,0.989088,0.082383,0.122136,0.989088,0.082383,0.951215,-0.218851,0.217474, + 0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,0.951215,-0.218851,0.217474,0.938652,-0.221971,0.263936, + 0.938652,-0.221971,0.263936,0.938652,-0.221971,0.263936,0.938652,-0.221971,0.263936,-0.938651,0.221970,-0.263938, + -0.938651,0.221970,-0.263938,-0.938651,0.221970,-0.263938,-0.938651,0.221970,-0.263938,0.205865,0.974992,0.083733, + 0.205865,0.974992,0.083733,0.205865,0.974992,0.083733,0.205865,0.974992,0.083733,0.953040,-0.218297,0.209907, + 0.953040,-0.218297,0.209907,0.953040,-0.218297,0.209907,0.953040,-0.218297,0.209907,-0.953040,0.218295,-0.209908, + -0.953040,0.218295,-0.209908,-0.953040,0.218295,-0.209908,-0.953040,0.218295,-0.209908,0.205743,0.974976,0.084218, + 0.205743,0.974976,0.084218,0.205743,0.974976,0.084218,0.205743,0.974976,0.084218,0.950995,-0.219973,0.217304, + 0.950995,-0.219973,0.217304,0.950995,-0.219973,0.217304,0.950995,-0.219973,0.217304,-0.950813,0.220035,-0.218036, + -0.950813,0.220035,-0.218036,-0.950813,0.220035,-0.218036,-0.950813,0.220035,-0.218036,0.194929,0.972167,0.129973, + 0.194929,0.972167,0.129973,0.194929,0.972167,0.129973,0.194929,0.972167,0.129973,0.939832,-0.222066,0.259618, + 0.939832,-0.222066,0.259618,0.939832,-0.222066,0.259618,0.939832,-0.222066,0.259618,-0.939832,0.222066,-0.259620, + -0.939832,0.222066,-0.259620,-0.939832,0.222066,-0.259620,-0.939832,0.222066,-0.259620,0.193850,0.972418,0.129711, + 0.193850,0.972418,0.129711,0.193850,0.972418,0.129711,0.193850,0.972418,0.129711,-0.953124,0.218273,-0.209551, + -0.953124,0.218273,-0.209551,-0.953124,0.218273,-0.209551,-0.953124,0.218273,-0.209551,0.953124,-0.218273,0.209551, + 0.953124,-0.218273,0.209551,0.953124,-0.218273,0.209551,0.953124,-0.218273,0.209551,-0.192303,-0.971935,-0.135505, + -0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505,-0.938783,0.221947,-0.263487, + -0.938783,0.221947,-0.263487,-0.938783,0.221947,-0.263487,-0.938783,0.221947,-0.263487,0.938783,-0.221947,0.263487, + 0.938783,-0.221947,0.263487,0.938783,-0.221947,0.263487,0.938783,-0.221947,0.263487,-0.192374,-0.971958,-0.135242, + -0.192374,-0.971958,-0.135242,-0.192374,-0.971958,-0.135242,-0.192374,-0.971958,-0.135242,-0.939978,0.221345,-0.259708, + -0.939978,0.221345,-0.259708,-0.939978,0.221345,-0.259708,-0.939978,0.221345,-0.259708,0.939978,-0.221344,0.259708, + 0.939978,-0.221344,0.259708,0.939978,-0.221344,0.259708,0.939978,-0.221344,0.259708,-0.199836,-0.973963,-0.107059, + -0.199836,-0.973963,-0.107059,-0.199836,-0.973963,-0.107059,-0.199836,-0.973963,-0.107059,-0.951384,0.217736,-0.217851, + -0.951384,0.217736,-0.217851,-0.951384,0.217736,-0.217851,-0.951384,0.217736,-0.217851,0.951565,-0.217697,0.217101, + 0.951565,-0.217697,0.217101,0.951565,-0.217697,0.217101,0.951565,-0.217697,0.217101,-0.198767,-0.974247,-0.106467, + -0.198767,-0.974247,-0.106467,-0.198767,-0.974247,-0.106467,-0.198767,-0.974247,-0.106467,0.191738,0.971750,0.137617, + 0.191738,0.971750,0.137617,0.191738,0.971750,0.137617,0.191738,0.971750,0.137617,0.936150,-0.222479,0.272262, + 0.936150,-0.222479,0.272262,0.936150,-0.222479,0.272262,0.936150,-0.222479,0.272262,-0.191736,-0.971751,-0.137616, + -0.191736,-0.971751,-0.137616,-0.191736,-0.971751,-0.137616,-0.191736,-0.971751,-0.137616,-0.936149,0.222482,-0.272262, + -0.936149,0.222482,-0.272262,-0.936149,0.222482,-0.272262,-0.936149,0.222482,-0.272262,0.194364,0.972568,0.127807, + 0.194364,0.972568,0.127807,0.194364,0.972568,0.127807,0.194364,0.972568,0.127807,-0.194361,-0.972569,-0.127806, + -0.194361,-0.972569,-0.127806,-0.194361,-0.972569,-0.127806,-0.194361,-0.972569,-0.127806,-0.936389,0.222431,-0.271479, + -0.936389,0.222431,-0.271479,-0.936389,0.222431,-0.271479,-0.936389,0.222431,-0.271479,0.199220,0.973827,0.109414, + 0.199220,0.973827,0.109414,0.199220,0.973827,0.109414,0.199220,0.973827,0.109414,-0.199222,-0.973827,-0.109414, + -0.199222,-0.973827,-0.109414,-0.199222,-0.973827,-0.109414,-0.199222,-0.973827,-0.109414,-0.936387,0.222436,-0.271479, + -0.936387,0.222436,-0.271479,-0.936387,0.222436,-0.271479,-0.936387,0.222436,-0.271479,0.936362,-0.222437,0.271564, + 0.936362,-0.222437,0.271564,0.936362,-0.222437,0.271564,0.936362,-0.222437,0.271564,0.206393,0.975054,0.081680, + 0.206393,0.975054,0.081680,0.206393,0.975054,0.081680,0.206393,0.975054,0.081680,-0.206393,-0.975054,-0.081680, + -0.206393,-0.975054,-0.081680,-0.206393,-0.975054,-0.081680,-0.206393,-0.975054,-0.081680,-0.936363,0.222436,-0.271565, + -0.936363,0.222436,-0.271565,-0.936363,0.222436,-0.271565,-0.936363,0.222436,-0.271565,0.201239,0.974358,0.100644, + 0.201239,0.974358,0.100644,0.201239,0.974358,0.100644,0.201239,0.974358,0.100644,0.941963,-0.221245,0.252500, + 0.941963,-0.221245,0.252500,0.941963,-0.221245,0.252500,0.941963,-0.221245,0.252500,-0.201239,-0.974358,-0.100644, + -0.201239,-0.974358,-0.100644,-0.201239,-0.974358,-0.100644,-0.201239,-0.974358,-0.100644,-0.941962,0.221249,-0.252499, + -0.941962,0.221249,-0.252499,-0.941962,0.221249,-0.252499,-0.941962,0.221249,-0.252499,0.198999,0.973835,0.109745, + 0.198999,0.973835,0.109745,0.198999,0.973835,0.109745,0.198999,0.973835,0.109745,-0.198998,-0.973836,-0.109744, + -0.198998,-0.973836,-0.109744,-0.198998,-0.973836,-0.109744,-0.198998,-0.973836,-0.109744,-0.941962,0.221250,-0.252500, + -0.941962,0.221250,-0.252500,-0.941962,0.221250,-0.252500,-0.941962,0.221250,-0.252500,0.194583,0.972568,0.127475, + 0.194583,0.972568,0.127475,0.194583,0.972568,0.127475,0.194583,0.972568,0.127475,-0.194582,-0.972568,-0.127475, + -0.194582,-0.972568,-0.127475,-0.194582,-0.972568,-0.127475,-0.194582,-0.972568,-0.127475,-0.941962,0.221248,-0.252500, + -0.941962,0.221248,-0.252500,-0.941962,0.221248,-0.252500,-0.941962,0.221248,-0.252500,0.941963,-0.221246,0.252498, + 0.941963,-0.221246,0.252498,0.941963,-0.221246,0.252498,0.941963,-0.221246,0.252498,0.192407,0.971831,0.136103, + 0.192407,0.971831,0.136103,0.192407,0.971831,0.136103,0.192407,0.971831,0.136103,-0.113596,-0.986885,-0.114689, + -0.113596,-0.986885,-0.114689,-0.113596,-0.986885,-0.114689,-0.113596,-0.986885,-0.114689,-0.941963,0.221247,-0.252499, + -0.941963,0.221247,-0.252499,-0.941963,0.221247,-0.252499,-0.941963,0.221247,-0.252499,-0.233271,-0.071028,0.969814, + -0.233271,-0.071028,0.969814,-0.233271,-0.071028,0.969814,-0.233271,-0.071028,0.969814,0.942235,-0.221186,0.251536, + 0.942235,-0.221186,0.251536,0.942235,-0.221186,0.251536,0.942235,-0.221186,0.251536,0.193400,0.972372,0.130727, + 0.193400,0.972372,0.130727,0.193400,0.972372,0.130727,0.193400,0.972372,0.130727,-0.942235,0.221185,-0.251537, + -0.942235,0.221185,-0.251537,-0.942235,0.221185,-0.251537,-0.942235,0.221185,-0.251537,-0.193397,-0.972372,-0.130726, + -0.193397,-0.972372,-0.130726,-0.193397,-0.972372,-0.130726,-0.193397,-0.972372,-0.130726,0.942234,-0.221188,0.251536, + 0.942234,-0.221188,0.251536,0.942234,-0.221188,0.251536,0.942234,-0.221188,0.251536,0.196801,0.973242,0.118616, + 0.196801,0.973242,0.118616,0.196801,0.973242,0.118616,0.196801,0.973242,0.118616,-0.942234,0.221187,-0.251537, + -0.942234,0.221187,-0.251537,-0.942234,0.221187,-0.251537,-0.942234,0.221187,-0.251537,-0.196799,-0.973242,-0.118615, + -0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615,0.942234,-0.221187,0.251537, + 0.942234,-0.221187,0.251537,0.942234,-0.221187,0.251537,0.942234,-0.221187,0.251537,0.193397,0.972373,0.130725, + 0.193397,0.972373,0.130725,0.193397,0.972373,0.130725,0.193397,0.972373,0.130725,-0.942235,0.221186,-0.251537, + -0.942235,0.221186,-0.251537,-0.942235,0.221186,-0.251537,-0.942235,0.221186,-0.251537,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,0.254846,0.066045,-0.964724, + 0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.196796,0.973243,0.118612, + 0.196796,0.973243,0.118612,0.196796,0.973243,0.118612,0.196796,0.973243,0.118612,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.196803,-0.973241,-0.118617, + -0.196803,-0.973241,-0.118617,-0.196803,-0.973241,-0.118617,-0.196803,-0.973241,-0.118617,0.946745,-0.220085,0.235025, + 0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.092909,0.101190,-0.990519, + 0.092909,0.101190,-0.990519,0.092909,0.101190,-0.990519,0.092909,0.101190,-0.990519,0.196797,0.973243,0.118611, + 0.196797,0.973243,0.118611,0.196797,0.973243,0.118611,0.196797,0.973243,0.118611,-0.978077,0.204043,-0.041625, + -0.978077,0.204043,-0.041625,-0.978077,0.204043,-0.041625,-0.978077,0.204043,-0.041625,-0.196802,-0.973242,-0.118617, + -0.196802,-0.973242,-0.118617,-0.196802,-0.973242,-0.118617,-0.196802,-0.973242,-0.118617,0.978306,-0.202912,0.041763, + 0.978306,-0.202912,0.041763,0.978306,-0.202912,0.041763,0.978306,-0.202912,0.041763,0.943626,-0.227437,0.240504, + 0.943626,-0.227437,0.240504,0.943626,-0.227437,0.240504,0.943626,-0.227437,0.240504,-0.043005,0.639592,0.767510, + -0.043005,0.639592,0.767510,-0.043005,0.639592,0.767510,-0.043005,0.639592,0.767510,-0.943626,0.227436,-0.240507, + -0.943626,0.227436,-0.240507,-0.943626,0.227436,-0.240507,-0.943626,0.227436,-0.240507,0.046042,-0.633090,-0.772707, + 0.046042,-0.633090,-0.772707,0.046042,-0.633090,-0.772707,0.046042,-0.633090,-0.772707,0.943622,-0.227159,0.240783, + 0.943622,-0.227159,0.240783,0.943622,-0.227159,0.240783,0.943622,-0.227159,0.240783,-0.032077,0.660213,0.750393, + -0.032077,0.660213,0.750393,-0.032077,0.660213,0.750393,-0.032077,0.660213,0.750393,-0.943623,0.227159,-0.240781, + -0.943623,0.227159,-0.240781,-0.943623,0.227159,-0.240781,-0.943623,0.227159,-0.240781,0.032077,-0.660212,-0.750394, + 0.032077,-0.660212,-0.750394,0.032077,-0.660212,-0.750394,0.032077,-0.660212,-0.750394,-0.947083,0.225981,-0.227961, + -0.947083,0.225981,-0.227961,-0.947083,0.225981,-0.227961,-0.947083,0.225981,-0.227961,-0.319614,-0.722103,0.613526, + -0.319614,-0.722103,0.613526,-0.319614,-0.722103,0.613526,-0.319614,-0.722103,0.613526,0.947082,-0.225983,0.227962, + 0.947082,-0.225983,0.227962,0.947082,-0.225983,0.227962,0.947082,-0.225983,0.227962,0.319619,0.722102,-0.613524, + 0.319619,0.722102,-0.613524,0.319619,0.722102,-0.613524,0.319619,0.722102,-0.613524,-0.947082,0.225970,-0.227976, + -0.947082,0.225970,-0.227976,-0.947082,0.225970,-0.227976,-0.947082,0.225970,-0.227976,-0.319762,-0.702510,0.635792, + -0.319762,-0.702510,0.635792,-0.319762,-0.702510,0.635792,-0.319762,-0.702510,0.635792,0.947082,-0.225970,0.227976, + 0.947082,-0.225970,0.227976,0.947082,-0.225970,0.227976,0.947082,-0.225970,0.227976,0.319765,0.702510,-0.635791, + 0.319765,0.702510,-0.635791,0.319765,0.702510,-0.635791,0.319765,0.702510,-0.635791,-0.205299,-0.971922,-0.114977, + -0.205299,-0.971922,-0.114977,-0.205299,-0.971922,-0.114977,-0.205299,-0.971922,-0.114977,0.489248,-0.202326,0.848352, + 0.489248,-0.202326,0.848352,0.489248,-0.202326,0.848352,0.489248,-0.202326,0.848352,0.205300,0.971921,0.114981, + 0.205300,0.971921,0.114981,0.205300,0.971921,0.114981,0.205300,0.971921,0.114981,-0.488164,0.202148,-0.849018, + -0.488164,0.202148,-0.849018,-0.488164,0.202148,-0.849018,-0.488164,0.202148,-0.849018,-0.137085,-0.985817,-0.096815, + -0.137085,-0.985817,-0.096815,-0.137085,-0.985817,-0.096815,-0.137085,-0.985817,-0.096815,0.497444,-0.153036,0.853891, + 0.497444,-0.153036,0.853891,0.497444,-0.153036,0.853891,0.497444,-0.153036,0.853891,0.137084,0.985817,0.096814, + 0.137084,0.985817,0.096814,0.137084,0.985817,0.096814,0.137084,0.985817,0.096814,-0.497445,0.153031,-0.853891, + -0.497445,0.153031,-0.853891,-0.497445,0.153031,-0.853891,-0.497445,0.153031,-0.853891,0.946745,-0.220085,0.235025, + 0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,-0.946744,0.220087,-0.235026, + -0.946744,0.220087,-0.235026,-0.946744,0.220087,-0.235026,-0.946744,0.220087,-0.235026,0.226254,0.974068,0.000736, + 0.226254,0.974068,0.000736,0.226254,0.974068,0.000736,0.226254,0.974068,0.000736,-0.914330,0.225856,-0.336138, + -0.914330,0.225856,-0.336138,-0.914330,0.225856,-0.336138,-0.914330,0.225856,-0.336138,0.914330,-0.225855,0.336138, + 0.914330,-0.225855,0.336138,0.914330,-0.225855,0.336138,0.914330,-0.225855,0.336138,-0.181512,-0.967690,-0.175010, + -0.181512,-0.967690,-0.175010,-0.181512,-0.967690,-0.175010,-0.181512,-0.967690,-0.175010,0.966977,-0.212652,0.140477, + 0.966977,-0.212652,0.140477,0.966977,-0.212652,0.140477,0.966977,-0.212652,0.140477,-0.966977,0.212655,-0.140478, + -0.966977,0.212655,-0.140478,-0.966977,0.212655,-0.140478,-0.966977,0.212655,-0.140478,0.244321,0.966458,-0.079157, + 0.244321,0.966458,-0.079157,0.244321,0.966458,-0.079157,0.244321,0.966458,-0.079157,-0.966978,0.212651,-0.140477, + -0.966978,0.212651,-0.140477,-0.966978,0.212651,-0.140477,-0.966978,0.212651,-0.140477,0.966977,-0.212655,0.140477, + 0.966977,-0.212655,0.140477,0.966977,-0.212655,0.140477,0.966977,-0.212655,0.140477,-0.198140,-0.973575,-0.113542, + -0.198140,-0.973575,-0.113542,-0.198140,-0.973575,-0.113542,-0.198140,-0.973575,-0.113542,0.955232,-0.218678,0.199279, + 0.955232,-0.218678,0.199279,0.955232,-0.218678,0.199279,0.955232,-0.218678,0.199279,-0.958480,0.217985,-0.183846, + -0.958480,0.217985,-0.183846,-0.958480,0.217985,-0.183846,-0.958480,0.217985,-0.183846,0.203935,0.974722,0.091255, + 0.203935,0.974722,0.091255,0.203935,0.974722,0.091255,0.203935,0.974722,0.091255,0.936221,-0.221263,0.273008, + 0.936221,-0.221263,0.273008,0.936221,-0.221263,0.273008,0.936221,-0.221263,0.273008,-0.939538,0.220942,-0.261635, + -0.939538,0.220942,-0.261635,-0.939538,0.220942,-0.261635,-0.939538,0.220942,-0.261635,0.203935,0.974722,0.091254, + 0.203935,0.974722,0.091254,0.203935,0.974722,0.091254,0.203935,0.974722,0.091254,0.248275,0.034205,-0.968086, + 0.248275,0.034205,-0.968086,0.248275,0.034205,-0.968086,0.248275,0.034205,-0.968086,0.205022,0.974880,0.087030, + 0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,-0.248277,-0.034209,0.968085, + -0.248277,-0.034209,0.968085,-0.248277,-0.034209,0.968085,-0.248277,-0.034209,0.968085,0.248277,0.034212,-0.968085, + 0.248277,0.034212,-0.968085,0.248277,0.034212,-0.968085,0.248277,0.034212,-0.968085,0.205022,0.974880,0.087030, + 0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,-0.248277,-0.034208,0.968085, + -0.248277,-0.034208,0.968085,-0.248277,-0.034208,0.968085,-0.248277,-0.034208,0.968085,0.248278,0.034213,-0.968084, + 0.248278,0.034213,-0.968084,0.248278,0.034213,-0.968084,0.248278,0.034213,-0.968084,0.205020,0.974881,0.087032, + 0.205020,0.974881,0.087032,0.205020,0.974881,0.087032,0.205020,0.974881,0.087032,-0.248275,-0.034213,0.968085, + -0.248275,-0.034213,0.968085,-0.248275,-0.034213,0.968085,-0.248275,-0.034213,0.968085,0.946744,-0.220087,0.235026, + 0.946744,-0.220087,0.235026,0.946744,-0.220087,0.235026,0.946744,-0.220087,0.235026,0.205020,0.974881,0.087028, + 0.205020,0.974881,0.087028,0.205020,0.974881,0.087028,0.205020,0.974881,0.087028,-0.946744,0.220088,-0.235026, + -0.946744,0.220088,-0.235026,-0.946744,0.220088,-0.235026,-0.946744,0.220088,-0.235026,0.205022,0.974880,0.087030, + 0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,0.205022,0.974880,0.087030,-0.207981,-0.975220,-0.075425, + -0.207981,-0.975220,-0.075425,-0.207981,-0.975220,-0.075425,-0.207981,-0.975220,-0.075425,-0.947947,0.219765,-0.230433, + -0.947947,0.219765,-0.230433,-0.947947,0.219765,-0.230433,-0.947947,0.219765,-0.230433,0.188346,0.970555,0.150165, + 0.188346,0.970555,0.150165,0.188346,0.970555,0.150165,0.188346,0.970555,0.150165,-0.947924,0.219775,-0.230519, + -0.947924,0.219775,-0.230519,-0.947924,0.219775,-0.230519,-0.947924,0.219775,-0.230519,0.250006,0.042482,-0.967312, + 0.250006,0.042482,-0.967312,0.250006,0.042482,-0.967312,0.250006,0.042482,-0.967312,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.947924,0.219775,-0.230519, + -0.947924,0.219775,-0.230519,-0.947924,0.219775,-0.230519,-0.947924,0.219775,-0.230519,-0.212691,-0.975474,-0.056677, + -0.212691,-0.975474,-0.056677,-0.212691,-0.975474,-0.056677,-0.212691,-0.975474,-0.056677,0.211756,0.975452,0.060443, + 0.211756,0.975452,0.060443,0.211756,0.975452,0.060443,0.211756,0.975452,0.060443,-0.946743,0.220092,-0.235026, + -0.946743,0.220092,-0.235026,-0.946743,0.220092,-0.235026,-0.946743,0.220092,-0.235026,-0.196799,-0.973242,-0.118616, + -0.196799,-0.973242,-0.118616,-0.196799,-0.973242,-0.118616,-0.196799,-0.973242,-0.118616,-0.946744,0.220085,-0.235026, + -0.946744,0.220085,-0.235026,-0.946744,0.220085,-0.235026,-0.946744,0.220085,-0.235026,-0.203411,-0.974641,-0.093266, + -0.203411,-0.974641,-0.093266,-0.203411,-0.974641,-0.093266,-0.203411,-0.974641,-0.093266,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.254172,0.062768,-0.965120, + 0.254172,0.062768,-0.965120,0.254172,0.062768,-0.965120,0.254172,0.062768,-0.965120,-0.255548,-0.069511,0.964294, + -0.255548,-0.069511,0.964294,-0.255548,-0.069511,0.964294,-0.255548,-0.069511,0.964294,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235025, + 0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,0.946745,-0.220085,0.235026, + 0.946745,-0.220085,0.235026,0.946745,-0.220085,0.235026,0.946745,-0.220085,0.235026,0.190076,0.971196,0.143702, + 0.190076,0.971196,0.143702,0.190076,0.971196,0.143702,0.190076,0.971196,0.143702,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.190045,0.971177,0.143872, + 0.190045,0.971177,0.143872,0.190045,0.971177,0.143872,0.190045,0.971177,0.143872,0.946744,-0.220089,0.235026, + 0.946744,-0.220089,0.235026,0.946744,-0.220089,0.235026,0.946744,-0.220089,0.235026,-0.190093,-0.971190,-0.143714, + -0.190093,-0.971190,-0.143714,-0.190093,-0.971190,-0.143714,-0.190093,-0.971190,-0.143714,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,0.946746,-0.220082,0.235023, + 0.946746,-0.220082,0.235023,0.946746,-0.220082,0.235023,0.946746,-0.220082,0.235023,0.254867,0.066044,-0.964718, + 0.254867,0.066044,-0.964718,0.254867,0.066044,-0.964718,0.254867,0.066044,-0.964718,-0.194837,-0.972708,-0.126004, + -0.194837,-0.972708,-0.126004,-0.194837,-0.972708,-0.126004,-0.194837,-0.972708,-0.126004,0.193993,0.972460,0.129180, + 0.193993,0.972460,0.129180,0.193993,0.972460,0.129180,0.193993,0.972460,0.129180,0.945624,-0.220370,0.239235, + 0.945624,-0.220370,0.239235,0.945624,-0.220370,0.239235,0.945624,-0.220370,0.239235,-0.202338,-0.974456,-0.097444, + -0.202338,-0.974456,-0.097444,-0.202338,-0.974456,-0.097444,-0.202338,-0.974456,-0.097444,0.200682,0.974140,0.103815, + 0.200682,0.974140,0.103815,0.200682,0.974140,0.103815,0.200682,0.974140,0.103815,0.945624,-0.220368,0.239235, + 0.945624,-0.220368,0.239235,0.945624,-0.220368,0.239235,0.945624,-0.220368,0.239235,0.254845,0.066046,-0.964724, + 0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,0.946745,-0.220084,0.235027, + 0.946745,-0.220084,0.235027,0.946745,-0.220084,0.235027,0.946745,-0.220084,0.235027,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,0.254853,0.066044,-0.964722, + 0.254853,0.066044,-0.964722,0.254853,0.066044,-0.964722,0.254853,0.066044,-0.964722,0.946745,-0.220083,0.235025, + 0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,0.254829,0.066045,-0.964728, + 0.254829,0.066045,-0.964728,0.254829,0.066045,-0.964728,0.254829,0.066045,-0.964728,0.946746,-0.220081,0.235023, + 0.946746,-0.220081,0.235023,0.946746,-0.220081,0.235023,0.946746,-0.220081,0.235023,-0.254848,-0.066046,0.964723, + -0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723,-0.201123,-0.974227,-0.102130, + -0.201123,-0.974227,-0.102130,-0.201123,-0.974227,-0.102130,-0.201123,-0.974227,-0.102130,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.196806,0.973241,0.118617, + 0.196806,0.973241,0.118617,0.196806,0.973241,0.118617,0.196806,0.973241,0.118617,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,-0.184327,-0.968945,-0.164828, + -0.184327,-0.968945,-0.164828,-0.184327,-0.968945,-0.164828,-0.184327,-0.968945,-0.164828,0.182016,0.967926,0.173173, + 0.182016,0.967926,0.173173,0.182016,0.967926,0.173173,0.182016,0.967926,0.173173,0.945522,-0.220396,0.239614, + 0.945522,-0.220396,0.239614,0.945522,-0.220396,0.239614,0.945522,-0.220396,0.239614,-0.202334,-0.974457,-0.097443, + -0.202334,-0.974457,-0.097443,-0.202334,-0.974457,-0.097443,-0.202334,-0.974457,-0.097443,0.201476,0.974297,0.100763, + 0.201476,0.974297,0.100763,0.201476,0.974297,0.100763,0.201476,0.974297,0.100763,0.945498,-0.220397,0.239705, + 0.945498,-0.220397,0.239705,0.945498,-0.220397,0.239705,0.945498,-0.220397,0.239705,0.254845,0.066045,-0.964724, + 0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.946745,-0.220083,0.235028, + 0.946745,-0.220083,0.235028,0.946745,-0.220083,0.235028,0.946745,-0.220083,0.235028,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.258636,0.085036,-0.962225, + 0.258636,0.085036,-0.962225,0.258636,0.085036,-0.962225,0.258636,0.085036,-0.962225,0.946746,-0.220082,0.235023, + 0.946746,-0.220082,0.235023,0.946746,-0.220082,0.235023,0.946746,-0.220082,0.235023,-0.260273,-0.093377,0.961009, + -0.260273,-0.093377,0.961009,-0.260273,-0.093377,0.961009,-0.260273,-0.093377,0.961009,0.254846,0.066045,-0.964724, + 0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.946745,-0.220083,0.235025, + 0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,-0.254854,-0.066046,0.964722, + -0.254854,-0.066046,0.964722,-0.254854,-0.066046,0.964722,-0.254854,-0.066046,0.964722,-0.196804,-0.973241,-0.118615, + -0.196804,-0.973241,-0.118615,-0.196804,-0.973241,-0.118615,-0.196804,-0.973241,-0.118615,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.196805,0.973241,0.118616, + 0.196805,0.973241,0.118616,0.196805,0.973241,0.118616,0.196805,0.973241,0.118616,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,-0.189659,-0.971038,-0.145311, + -0.189659,-0.971038,-0.145311,-0.189659,-0.971038,-0.145311,-0.189659,-0.971038,-0.145311,0.188317,0.970546,0.150254, + 0.188317,0.970546,0.150254,0.188317,0.970546,0.150254,0.188317,0.970546,0.150254,0.945497,-0.220401,0.239706, + 0.945497,-0.220401,0.239706,0.945497,-0.220401,0.239706,0.945497,-0.220401,0.239706,-0.212693,-0.975474,-0.056677, + -0.212693,-0.975474,-0.056677,-0.212693,-0.975474,-0.056677,-0.212693,-0.975474,-0.056677,0.210264,0.975388,0.066380, + 0.210264,0.975388,0.066380,0.210264,0.975388,0.066380,0.210264,0.975388,0.066380,0.945498,-0.220398,0.239706, + 0.945498,-0.220398,0.239706,0.945498,-0.220398,0.239706,0.945498,-0.220398,0.239706,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.946745,-0.220084,0.235027, + 0.946745,-0.220084,0.235027,0.946745,-0.220084,0.235027,0.946745,-0.220084,0.235027,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.946746,-0.220083,0.235021, + 0.946746,-0.220083,0.235021,0.946746,-0.220083,0.235021,0.946746,-0.220083,0.235021,-0.254847,-0.066045,0.964723, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,0.254834,0.066046,-0.964727, + 0.254834,0.066046,-0.964727,0.254834,0.066046,-0.964727,0.254834,0.066046,-0.964727,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.196798,-0.973243,-0.118614, + -0.196798,-0.973243,-0.118614,-0.196798,-0.973243,-0.118614,-0.196798,-0.973243,-0.118614,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.196800,0.973242,0.118615, + 0.196800,0.973242,0.118615,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,-0.190027,-0.971170,-0.143943, + -0.190027,-0.971170,-0.143943,-0.190027,-0.971170,-0.143943,-0.190027,-0.971170,-0.143943,0.188318,0.970546,0.150254, + 0.188318,0.970546,0.150254,0.188318,0.970546,0.150254,0.188318,0.970546,0.150254,0.945533,-0.220391,0.239573, + 0.945533,-0.220391,0.239573,0.945533,-0.220391,0.239573,0.945533,-0.220391,0.239573,-0.207770,-0.975202,-0.076247, + -0.207770,-0.975202,-0.076247,-0.207770,-0.975202,-0.076247,-0.207770,-0.975202,-0.076247,0.205610,0.974960,0.084725, + 0.205610,0.974960,0.084725,0.205610,0.974960,0.084725,0.205610,0.974960,0.084725,0.945533,-0.220393,0.239572, + 0.945533,-0.220393,0.239572,0.945533,-0.220393,0.239572,0.945533,-0.220393,0.239572,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.946746,-0.220083,0.235023, + 0.946746,-0.220083,0.235023,0.946746,-0.220083,0.235023,0.946746,-0.220083,0.235023,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.946746,-0.220083,0.235024, + 0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,0.254840,0.066046,-0.964725, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.946746,-0.220083,0.235023, + 0.946746,-0.220083,0.235023,0.946746,-0.220083,0.235023,0.946746,-0.220083,0.235023,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,0.946746,-0.220076,0.235027, + 0.946746,-0.220076,0.235027,0.946746,-0.220076,0.235027,0.946746,-0.220076,0.235027,0.196801,0.973242,0.118615, + 0.196801,0.973242,0.118615,0.196801,0.973242,0.118615,0.196801,0.973242,0.118615,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,-0.185447,-0.969416,-0.160756, + -0.185447,-0.969416,-0.160756,-0.185447,-0.969416,-0.160756,-0.185447,-0.969416,-0.160756,0.182559,0.968171,0.171225, + 0.182559,0.968171,0.171225,0.182559,0.968171,0.171225,0.182559,0.968171,0.171225,0.945533,-0.220391,0.239572, + 0.945533,-0.220391,0.239572,0.945533,-0.220391,0.239572,0.945533,-0.220391,0.239572,-0.205067,-0.974887,-0.086848, + -0.205067,-0.974887,-0.086848,-0.205067,-0.974887,-0.086848,-0.205067,-0.974887,-0.086848,0.203433,0.974642,0.093205, + 0.203433,0.974642,0.093205,0.203433,0.974642,0.093205,0.203433,0.974642,0.093205,0.945534,-0.220388,0.239572, + 0.945534,-0.220388,0.239572,0.945534,-0.220388,0.239572,0.945534,-0.220388,0.239572,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.946745,-0.220083,0.235026, + 0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,0.946745,-0.220083,0.235026,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.946746,-0.220083,0.235024, + 0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.946746,-0.220084,0.235024, + 0.946746,-0.220084,0.235024,0.946746,-0.220084,0.235024,0.946746,-0.220084,0.235024,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.196799,-0.973242,-0.118614, + -0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,0.946746,-0.220080,0.235026, + 0.946746,-0.220080,0.235026,0.946746,-0.220080,0.235026,0.946746,-0.220080,0.235026,0.196803,0.973242,0.118615, + 0.196803,0.973242,0.118615,0.196803,0.973242,0.118615,0.196803,0.973242,0.118615,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,-0.190028,-0.971169,-0.143943, + -0.190028,-0.971169,-0.143943,-0.190028,-0.971169,-0.143943,-0.190028,-0.971169,-0.143943,0.188315,0.970547,0.150254, + 0.188315,0.970547,0.150254,0.188315,0.970547,0.150254,0.188315,0.970547,0.150254,0.945533,-0.220393,0.239572, + 0.945533,-0.220393,0.239572,0.945533,-0.220393,0.239572,0.945533,-0.220393,0.239572,-0.211401,-0.975441,-0.061843, + -0.211401,-0.975441,-0.061843,-0.211401,-0.975441,-0.061843,-0.211401,-0.975441,-0.061843,0.208642,0.975278,0.072805, + 0.208642,0.975278,0.072805,0.208642,0.975278,0.072805,0.208642,0.975278,0.072805,0.945580,-0.220379,0.239397, + 0.945580,-0.220379,0.239397,0.945580,-0.220379,0.239397,0.945580,-0.220379,0.239397,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.246055,0.023707,-0.968966, + 0.246055,0.023707,-0.968966,0.246055,0.023707,-0.968966,0.246055,0.023707,-0.968966,0.946746,-0.220083,0.235024, + 0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,0.946746,-0.220083,0.235024,-0.243377,-0.011234,0.969867, + -0.243377,-0.011234,0.969867,-0.243377,-0.011234,0.969867,-0.243377,-0.011234,0.969867,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.946746,-0.220083,0.235022, + 0.946746,-0.220083,0.235022,0.946746,-0.220083,0.235022,0.946746,-0.220083,0.235022,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.196794,-0.973243,-0.118614, + -0.196794,-0.973243,-0.118614,-0.196794,-0.973243,-0.118614,-0.196794,-0.973243,-0.118614,0.946746,-0.220080,0.235026, + 0.946746,-0.220080,0.235026,0.946746,-0.220080,0.235026,0.946746,-0.220080,0.235026,0.196796,0.973243,0.118612, + 0.196796,0.973243,0.118612,0.196796,0.973243,0.118612,0.196796,0.973243,0.118612,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.188317,0.970546,0.150255, + 0.188317,0.970546,0.150255,0.188317,0.970546,0.150255,0.188317,0.970546,0.150255,-0.947924,0.219774,-0.230520, + -0.947924,0.219774,-0.230520,-0.947924,0.219774,-0.230520,-0.947924,0.219774,-0.230520,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.196798,0.973242,0.118616, + 0.196798,0.973242,0.118616,0.196798,0.973242,0.118616,0.196798,0.973242,0.118616,-0.946744,0.220086,-0.235026, + -0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,-0.196802,-0.973242,-0.118616, + -0.196802,-0.973242,-0.118616,-0.196802,-0.973242,-0.118616,-0.196802,-0.973242,-0.118616,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.185650,-0.969499,-0.160021, + -0.185650,-0.969499,-0.160021,-0.185650,-0.969499,-0.160021,-0.185650,-0.969499,-0.160021,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.940557,0.221554,-0.257421, + -0.940557,0.221554,-0.257421,-0.940557,0.221554,-0.257421,-0.940557,0.221554,-0.257421,-0.205935,-0.974684,-0.087077, + -0.205935,-0.974684,-0.087077,-0.205935,-0.974684,-0.087077,-0.205935,-0.974684,-0.087077,0.181118,0.968508,0.170845, + 0.181118,0.968508,0.170845,0.181118,0.968508,0.170845,0.181118,0.968508,0.170845,-0.940557,0.221556,-0.257421, + -0.940557,0.221556,-0.257421,-0.940557,0.221556,-0.257421,-0.940557,0.221556,-0.257421,0.281194,0.059871,-0.957782, + 0.281194,0.059871,-0.957782,0.281194,0.059871,-0.957782,0.281194,0.059871,-0.957782,-0.939253,0.221845,-0.261895, + -0.939253,0.221845,-0.261895,-0.939253,0.221845,-0.261895,-0.939253,0.221845,-0.261895,-0.939252,0.221845,-0.261896, + -0.939252,0.221845,-0.261896,-0.939252,0.221845,-0.261896,-0.939252,0.221845,-0.261896,-0.281211,-0.059867,0.957777, + -0.281211,-0.059867,0.957777,-0.281211,-0.059867,0.957777,-0.281211,-0.059867,0.957777,0.196798,0.973242,0.118616, + 0.196798,0.973242,0.118616,0.196798,0.973242,0.118616,0.196798,0.973242,0.118616,-0.939252,0.221849,-0.261894, + -0.939252,0.221849,-0.261894,-0.939252,0.221849,-0.261894,-0.939252,0.221849,-0.261894,-0.196798,-0.973242,-0.118616, + -0.196798,-0.973242,-0.118616,-0.196798,-0.973242,-0.118616,-0.196798,-0.973242,-0.118616,-0.939253,0.221844,-0.261895, + -0.939253,0.221844,-0.261895,-0.939253,0.221844,-0.261895,-0.939253,0.221844,-0.261895,0.254834,0.066045,-0.964727, + 0.254834,0.066045,-0.964727,0.254834,0.066045,-0.964727,0.254834,0.066045,-0.964727,0.205578,0.974956,0.084846, + 0.205578,0.974956,0.084846,0.205578,0.974956,0.084846,0.205578,0.974956,0.084846,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.190151,-0.971211,-0.143494, + -0.190151,-0.971211,-0.143494,-0.190151,-0.971211,-0.143494,-0.190151,-0.971211,-0.143494,0.254842,0.066045,-0.964724, + 0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.209368,0.975332,0.069947, + 0.209368,0.975332,0.069947,0.209368,0.975332,0.069947,0.209368,0.975332,0.069947,-0.251004,-0.047294,0.966830, + -0.251004,-0.047294,0.966830,-0.251004,-0.047294,0.966830,-0.251004,-0.047294,0.966830,-0.190173,-0.971218,-0.143424, + -0.190173,-0.971218,-0.143424,-0.190173,-0.971218,-0.143424,-0.190173,-0.971218,-0.143424,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.203320,0.974623,0.093651, + 0.203320,0.974623,0.093651,0.203320,0.974623,0.093651,0.203320,0.974623,0.093651,-0.191633,-0.971717,-0.137996, + -0.191633,-0.971717,-0.137996,-0.191633,-0.971717,-0.137996,-0.191633,-0.971717,-0.137996,0.191261,0.971596,0.139358, + 0.191261,0.971596,0.139358,0.191261,0.971596,0.139358,0.191261,0.971596,0.139358,0.946469,-0.219417,0.236755, + 0.946469,-0.219417,0.236755,0.946469,-0.219417,0.236755,0.946469,-0.219417,0.236755,-0.200435,-0.974091,-0.104752, + -0.200435,-0.974091,-0.104752,-0.200435,-0.974091,-0.104752,-0.200435,-0.974091,-0.104752,0.200196,0.974041,0.105665, + 0.200196,0.974041,0.105665,0.200196,0.974041,0.105665,0.200196,0.974041,0.105665,0.946156,-0.220969,0.236561, + 0.946156,-0.220969,0.236561,0.946156,-0.220969,0.236561,0.946156,-0.220969,0.236561,0.254846,0.066046,-0.964724, + 0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.181028,0.967471,0.176716, + 0.181028,0.967471,0.176716,0.181028,0.967471,0.176716,0.181028,0.967471,0.176716,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,0.255488,0.069293,-0.964326, + 0.255488,0.069293,-0.964326,0.255488,0.069293,-0.964326,0.255488,0.069293,-0.964326,-0.254109,-0.062489,0.965155, + -0.254109,-0.062489,0.965155,-0.254109,-0.062489,0.965155,-0.254109,-0.062489,0.965155,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946746,0.220081,-0.235026, + -0.946746,0.220081,-0.235026,-0.946746,0.220081,-0.235026,-0.946746,0.220081,-0.235026,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.202496,-0.974484,-0.096830, + -0.202496,-0.974484,-0.096830,-0.202496,-0.974484,-0.096830,-0.202496,-0.974484,-0.096830,-0.946746,0.220081,-0.235026, + -0.946746,0.220081,-0.235026,-0.946746,0.220081,-0.235026,-0.946746,0.220081,-0.235026,-0.196801,-0.973242,-0.118615, + -0.196801,-0.973242,-0.118615,-0.196801,-0.973242,-0.118615,-0.196801,-0.973242,-0.118615,-0.946745,0.220084,-0.235026, + -0.946745,0.220084,-0.235026,-0.946745,0.220084,-0.235026,-0.946745,0.220084,-0.235026,0.196794,0.973243,0.118615, + 0.196794,0.973243,0.118615,0.196794,0.973243,0.118615,0.196794,0.973243,0.118615,-0.259089,-0.087263,0.961903, + -0.259089,-0.087263,0.961903,-0.259089,-0.087263,0.961903,-0.259089,-0.087263,0.961903,-0.946745,0.220083,-0.235026, + -0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026,-0.946745,0.220083,-0.235026,0.250515,0.044927,-0.967070, + 0.250515,0.044927,-0.967070,0.250515,0.044927,-0.967070,0.250515,0.044927,-0.967070,0.201982,0.974392,0.098814, + 0.201982,0.974392,0.098814,0.201982,0.974392,0.098814,0.201982,0.974392,0.098814,-0.201759,-0.974350,-0.099671, + -0.201759,-0.974350,-0.099671,-0.201759,-0.974350,-0.099671,-0.201759,-0.974350,-0.099671,-0.947829,0.219886,-0.230802, + -0.947829,0.219886,-0.230802,-0.947829,0.219886,-0.230802,-0.947829,0.219886,-0.230802,0.192854,0.972111,0.133447, + 0.192854,0.972111,0.133447,0.192854,0.972111,0.133447,0.192854,0.972111,0.133447,-0.195782,-0.972973,-0.122449, + -0.195782,-0.972973,-0.122449,-0.195782,-0.972973,-0.122449,-0.195782,-0.972973,-0.122449,-0.947830,0.219886,-0.230798, + -0.947830,0.219886,-0.230798,-0.947830,0.219886,-0.230798,-0.947830,0.219886,-0.230798,0.250338,0.044071,-0.967155, + 0.250338,0.044071,-0.967155,0.250338,0.044071,-0.967155,0.250338,0.044071,-0.967155,-0.946745,0.220083,-0.235027, + -0.946745,0.220083,-0.235027,-0.946745,0.220083,-0.235027,-0.946745,0.220083,-0.235027,-0.250336,-0.044070,0.967155, + -0.250336,-0.044070,0.967155,-0.250336,-0.044070,0.967155,-0.250336,-0.044070,0.967155,0.250109,0.042978,-0.967263, + 0.250109,0.042978,-0.967263,0.250109,0.042978,-0.967263,0.250109,0.042978,-0.967263,-0.946745,0.220083,-0.235027, + -0.946745,0.220083,-0.235027,-0.946745,0.220083,-0.235027,-0.946745,0.220083,-0.235027,-0.250021,-0.042510,0.967307, + -0.250021,-0.042510,0.967307,-0.250021,-0.042510,0.967307,-0.250021,-0.042510,0.967307,0.250347,0.044071,-0.967153, + 0.250347,0.044071,-0.967153,0.250347,0.044071,-0.967153,0.250347,0.044071,-0.967153,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.250315,-0.044072,0.967161, + -0.250315,-0.044072,0.967161,-0.250315,-0.044072,0.967161,-0.250315,-0.044072,0.967161,0.197523,0.973426,0.115875, + 0.197523,0.973426,0.115875,0.197523,0.973426,0.115875,0.197523,0.973426,0.115875,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.197484,-0.973419,-0.115994, + -0.197484,-0.973419,-0.115994,-0.197484,-0.973419,-0.115994,-0.197484,-0.973419,-0.115994,-0.946745,0.220082,-0.235026, + -0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,-0.946745,0.220082,-0.235026,0.199437,0.973879,0.108558, + 0.199437,0.973879,0.108558,0.199437,0.973879,0.108558,0.199437,0.973879,0.108558,-0.199644,-0.973922,-0.107792, + -0.199644,-0.973922,-0.107792,-0.199644,-0.973922,-0.107792,-0.199644,-0.973922,-0.107792,-0.947376,0.219127,-0.233370, + -0.947376,0.219127,-0.233370,-0.947376,0.219127,-0.233370,-0.947376,0.219127,-0.233370,0.191034,0.971518,0.140212, + 0.191034,0.971518,0.140212,0.191034,0.971518,0.140212,0.191034,0.971518,0.140212,-0.191448,-0.971655,-0.138684, + -0.191448,-0.971655,-0.138684,-0.191448,-0.971655,-0.138684,-0.191448,-0.971655,-0.138684,-0.947040,0.220802,-0.233157, + -0.947040,0.220802,-0.233157,-0.947040,0.220802,-0.233157,-0.947040,0.220802,-0.233157,0.254838,0.066046,-0.964726, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,-0.946745,0.220082,-0.235025, + -0.946745,0.220082,-0.235025,-0.946745,0.220082,-0.235025,-0.946745,0.220082,-0.235025,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,0.196799,0.973242,0.118615, + 0.196799,0.973242,0.118615,0.196799,0.973242,0.118615,0.196799,0.973242,0.118615,0.946745,-0.220086,0.235026, + 0.946745,-0.220086,0.235026,0.946745,-0.220086,0.235026,0.946745,-0.220086,0.235026,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.233652,-0.971821,0.031160, + -0.233652,-0.971821,0.031160,-0.233652,-0.971821,0.031160,-0.233652,-0.971821,0.031160,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,0.196799,0.973243,0.118613, + 0.196799,0.973243,0.118613,0.196799,0.973243,0.118613,0.196799,0.973243,0.118613,0.946744,-0.220086,0.235027, + 0.946744,-0.220086,0.235027,0.946744,-0.220086,0.235027,0.946744,-0.220086,0.235027,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.196799,-0.973242,-0.118614, + -0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,-0.946745,0.220086,-0.235026, + -0.946745,0.220086,-0.235026,-0.946745,0.220086,-0.235026,-0.946745,0.220086,-0.235026,0.205825,0.974986,0.083891, + 0.205825,0.974986,0.083891,0.205825,0.974986,0.083891,0.205825,0.974986,0.083891,0.946745,-0.220086,0.235025, + 0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.254842,-0.066046,0.964724, + -0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.191134,-0.960878,-0.200454, + -0.191134,-0.960878,-0.200454,-0.191134,-0.960878,-0.200454,-0.191134,-0.960878,-0.200454,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,0.191135,0.960878,0.200453, + 0.191135,0.960878,0.200453,0.191135,0.960878,0.200453,0.191135,0.960878,0.200453,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.946744,0.220086,-0.235026, + -0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,0.236998,0.970422,-0.045959, + 0.236998,0.970422,-0.045959,0.236998,0.970422,-0.045959,0.236998,0.970422,-0.045959,0.946745,-0.220085,0.235025, + 0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.275734,0.177242,-0.944752, + 0.275734,0.177242,-0.944752,0.275734,0.177242,-0.944752,0.275734,0.177242,-0.944752,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.946745,0.220085,-0.235025, + -0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.946745,0.220085,-0.235025,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,0.946745,-0.220086,0.235025, + 0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.946745,-0.220086,0.235025,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.254841,-0.066047,0.964725, + -0.254841,-0.066047,0.964725,-0.254841,-0.066047,0.964725,-0.254841,-0.066047,0.964725,-0.946744,0.220086,-0.235026, + -0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,-0.946744,0.220086,-0.235026,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.283333,0.222687,-0.932809, + 0.283333,0.222687,-0.932809,0.283333,0.222687,-0.932809,0.283333,0.222687,-0.932809,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.946744,0.220088,-0.235026, + -0.946744,0.220088,-0.235026,-0.946744,0.220088,-0.235026,-0.946744,0.220088,-0.235026,0.227235,0.973834,-0.003432, + 0.227235,0.973834,-0.003432,0.227235,0.973834,-0.003432,0.227235,0.973834,-0.003432,-0.196799,-0.973242,-0.118617, + -0.196799,-0.973242,-0.118617,-0.196799,-0.973242,-0.118617,-0.196799,-0.973242,-0.118617,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.946745,0.220085,-0.235026, + -0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,-0.946745,0.220085,-0.235026,0.211332,0.975438,0.062131, + 0.211332,0.975438,0.062131,0.211332,0.975438,0.062131,0.211332,0.975438,0.062131,-0.181598,-0.967731,-0.174694, + -0.181598,-0.967731,-0.174694,-0.181598,-0.967731,-0.174694,-0.181598,-0.967731,-0.174694,0.254836,0.066046,-0.964726, + 0.254836,0.066046,-0.964726,0.254836,0.066046,-0.964726,0.254836,0.066046,-0.964726,-0.254848,-0.066045,0.964723, + -0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723,-0.954234,0.217919,-0.204812, + -0.954234,0.217919,-0.204812,-0.954234,0.217919,-0.204812,-0.954234,0.217919,-0.204812,0.187575,0.970264,0.152983, + 0.187575,0.970264,0.152983,0.187575,0.970264,0.152983,0.187575,0.970264,0.152983,-0.196800,-0.973242,-0.118618, + -0.196800,-0.973242,-0.118618,-0.196800,-0.973242,-0.118618,-0.196800,-0.973242,-0.118618,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,-0.254846,-0.066046,0.964723, + -0.254846,-0.066046,0.964723,-0.254846,-0.066046,0.964723,-0.254846,-0.066046,0.964723,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,-0.196799,-0.973242,-0.118615, + -0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615,-0.196799,-0.973242,-0.118615,0.221892,0.974885,0.019077, + 0.221892,0.974885,0.019077,0.221892,0.974885,0.019077,0.221892,0.974885,0.019077,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254836,-0.066046,0.964726, + -0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,-0.169793,-0.961435,-0.216363, + -0.169793,-0.961435,-0.216363,-0.169793,-0.961435,-0.216363,-0.169793,-0.961435,-0.216363,0.196797,0.973243,0.118614, + 0.196797,0.973243,0.118614,0.196797,0.973243,0.118614,0.196797,0.973243,0.118614,0.237285,-0.016488,-0.971300, + 0.237285,-0.016488,-0.971300,0.237285,-0.016488,-0.971300,0.237285,-0.016488,-0.971300,-0.254853,-0.066045,0.964722, + -0.254853,-0.066045,0.964722,-0.254853,-0.066045,0.964722,-0.254853,-0.066045,0.964722,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,-0.224723,-0.974396,-0.007219, + -0.224723,-0.974396,-0.007219,-0.224723,-0.974396,-0.007219,-0.224723,-0.974396,-0.007219,0.226596,0.973988,-0.000705, + 0.226596,0.973988,-0.000705,0.226596,0.973988,-0.000705,0.226596,0.973988,-0.000705,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.263253,-0.108830,0.958569, + -0.263253,-0.108830,0.958569,-0.263253,-0.108830,0.958569,-0.263253,-0.108830,0.958569,0.946745,-0.220084,0.235025, + 0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,0.946745,-0.220084,0.235025,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,0.196803,0.973241,0.118617, + 0.196803,0.973241,0.118617,0.196803,0.973241,0.118617,0.196803,0.973241,0.118617,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.946745,-0.220085,0.235025, + 0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,0.946745,-0.220085,0.235025,-0.196795,-0.973243,-0.118615, + -0.196795,-0.973243,-0.118615,-0.196795,-0.973243,-0.118615,-0.196795,-0.973243,-0.118615,0.150283,0.947585,0.281953, + 0.150283,0.947585,0.281953,0.150283,0.947585,0.281953,0.150283,0.947585,0.281953,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.946744,-0.220086,0.235026, + 0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,0.946744,-0.220086,0.235026,-0.196799,-0.973242,-0.118620, + -0.196799,-0.973242,-0.118620,-0.196799,-0.973242,-0.118620,-0.196799,-0.973242,-0.118620,0.196796,0.973243,0.118613, + 0.196796,0.973243,0.118613,0.196796,0.973243,0.118613,0.196796,0.973243,0.118613,0.254845,0.066045,-0.964724, + 0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,-0.118177,-0.916498,-0.382185, + -0.118177,-0.916498,-0.382185,-0.118177,-0.916498,-0.382185,-0.118177,-0.916498,-0.382185,0.211200,0.975432,0.062659, + 0.211200,0.975432,0.062659,0.211200,0.975432,0.062659,0.211200,0.975432,0.062659,0.254838,0.066046,-0.964726, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.946745,-0.220084,0.235024, + 0.946745,-0.220084,0.235024,0.946745,-0.220084,0.235024,0.946745,-0.220084,0.235024,-0.196795,-0.973243,-0.118613, + -0.196795,-0.973243,-0.118613,-0.196795,-0.973243,-0.118613,-0.196795,-0.973243,-0.118613,0.196800,0.973242,0.118611, + 0.196800,0.973242,0.118611,0.196800,0.973242,0.118611,0.196800,0.973242,0.118611,0.254845,0.066044,-0.964724, + 0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,-0.254846,-0.066043,0.964724, + -0.254846,-0.066043,0.964724,-0.254846,-0.066043,0.964724,-0.254846,-0.066043,0.964724,-0.946745,0.220082,-0.235027, + -0.946745,0.220082,-0.235027,-0.946745,0.220082,-0.235027,-0.946745,0.220082,-0.235027,0.196795,0.973243,0.118613, + 0.196795,0.973243,0.118613,0.196795,0.973243,0.118613,0.196795,0.973243,0.118613,-0.196803,-0.973242,-0.118615, + -0.196803,-0.973242,-0.118615,-0.196803,-0.973242,-0.118615,-0.196803,-0.973242,-0.118615,0.254837,0.066045,-0.964726, + 0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.946746,0.220081,-0.235024, + -0.946746,0.220081,-0.235024,-0.946746,0.220081,-0.235024,-0.946746,0.220081,-0.235024,0.211196,0.975433,0.062660, + 0.211196,0.975433,0.062660,0.211196,0.975433,0.062660,0.211196,0.975433,0.062660,-0.196801,-0.973242,-0.118614, + -0.196801,-0.973242,-0.118614,-0.196801,-0.973242,-0.118614,-0.196801,-0.973242,-0.118614,0.254841,0.066044,-0.964725, + 0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.946746,0.220083,-0.235024, + -0.946746,0.220083,-0.235024,-0.946746,0.220083,-0.235024,-0.946746,0.220083,-0.235024,0.196795,0.973243,0.118615, + 0.196795,0.973243,0.118615,0.196795,0.973243,0.118615,0.196795,0.973243,0.118615,-0.196800,-0.973242,-0.118612, + -0.196800,-0.973242,-0.118612,-0.196800,-0.973242,-0.118612,-0.196800,-0.973242,-0.118612,0.254846,0.066046,-0.964724, + 0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.065923,0.802793,0.592603, + -0.065923,0.802793,0.592603,-0.065923,0.802793,0.592603,-0.065923,0.802793,0.592603,-0.325372,-0.836733,0.440467, + -0.325372,-0.836733,0.440467,-0.325372,-0.836733,0.440467,-0.325372,-0.836733,0.440467,0.971463,-0.231393,0.052121, + 0.971463,-0.231393,0.052121,0.971463,-0.231393,0.052121,0.971463,-0.231393,0.052121,0.055855,-0.827585,-0.558555, + 0.055855,-0.827585,-0.558555,0.055855,-0.827585,-0.558555,0.055855,-0.827585,-0.558555,0.388877,0.856181,-0.340188, + 0.388877,0.856181,-0.340188,0.388877,0.856181,-0.340188,0.388877,0.856181,-0.340188,0.984292,-0.168871,0.051487, + 0.984292,-0.168871,0.051487,0.984292,-0.168871,0.051487,0.984292,-0.168871,0.051487,0.968432,-0.211840,0.131391, + 0.968432,-0.211840,0.131391,0.968432,-0.211840,0.131391,0.945965,-0.223576,0.234870,0.945965,-0.223576,0.234870, + 0.945965,-0.223576,0.234870,0.945965,-0.223576,0.234870,0.317290,0.939089,0.132053,0.317290,0.939089,0.132053, + 0.317290,0.939089,0.132053,0.317290,0.939089,0.132053,-0.249992,-0.042397,0.967319,-0.249992,-0.042397,0.967319, + -0.249992,-0.042397,0.967319,-0.249992,-0.042397,0.967319,-0.036626,-0.798799,-0.600482,-0.036626,-0.798799,-0.600482, + -0.036626,-0.798799,-0.600482,-0.036626,-0.798799,-0.600482,-0.040354,-0.113198,0.992753,-0.040354,-0.113198,0.992753, + -0.040354,-0.113198,0.992753,-0.040354,-0.113198,0.992753,0.945635,-0.221658,0.237998,0.945635,-0.221658,0.237998, + 0.945635,-0.221658,0.237998,0.945635,-0.221658,0.237998,0.294318,0.887536,-0.354482,0.294318,0.887536,-0.354482, + 0.294318,0.887536,-0.354482,0.294318,0.887536,-0.354482,0.946744,-0.220087,0.235028,0.946744,-0.220087,0.235028, + 0.946744,-0.220087,0.235028,0.946744,-0.220087,0.235028,-0.152940,-0.982878,-0.102763,-0.152940,-0.982878,-0.102763, + -0.152940,-0.982878,-0.102763,-0.152940,-0.982878,-0.102763,0.236202,0.964850,0.115206,0.236202,0.964850,0.115206, + 0.236202,0.964850,0.115206,0.236202,0.964850,0.115206,-0.963447,0.202176,-0.175772,-0.963447,0.202176,-0.175772, + -0.963447,0.202176,-0.175772,-0.963447,0.202176,-0.175772,0.963663,-0.201020,0.175912,0.963663,-0.201020,0.175912, + 0.963663,-0.201020,0.175912,0.963663,-0.201020,0.175912,0.246236,0.024542,-0.968899,0.246236,0.024542,-0.968899, + 0.246236,0.024542,-0.968899,0.246236,0.024542,-0.968899,0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025, + 0.946745,-0.220083,0.235025,0.946745,-0.220083,0.235025,-0.246172,-0.024277,0.968922,-0.246172,-0.024277,0.968922, + -0.246172,-0.024277,0.968922,-0.246172,-0.024277,0.968922,-0.196801,-0.973242,-0.118615,-0.196801,-0.973242,-0.118615, + -0.196801,-0.973242,-0.118615,-0.196801,-0.973242,-0.118615,0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026, + 0.946745,-0.220084,0.235026,0.946745,-0.220084,0.235026,0.196797,0.973243,0.118613,0.196797,0.973243,0.118613, + 0.196797,0.973243,0.118613,0.196797,0.973243,0.118613,0.033561,-0.127873,0.991222,0.033561,-0.127873,0.991222, + 0.033561,-0.127873,0.991222,0.033561,-0.127873,0.991222,0.164083,-0.508860,-0.845067,0.164083,-0.508860,-0.845067, + 0.164083,-0.508860,-0.845067,0.164083,-0.508860,-0.845067,-0.974788,0.198791,-0.101345,-0.974788,0.198791,-0.101345, + -0.974788,0.198791,-0.101345,-0.974788,0.198791,-0.101345,0.972819,-0.197961,0.120146,0.972819,-0.197961,0.120146, + 0.972819,-0.197961,0.120146,0.972819,-0.197961,0.120146,0.170877,0.979488,0.106795,0.170877,0.979488,0.106795, + 0.170877,0.979488,0.106795,0.170877,0.979488,0.106795,-0.033439,-0.114791,0.992827,-0.033439,-0.114791,0.992827, + -0.033439,-0.114791,0.992827,-0.033439,-0.114791,0.992827,-0.300032,-0.944972,-0.130418,-0.300032,-0.944972,-0.130418, + -0.300032,-0.944972,-0.130418,-0.300032,-0.944972,-0.130418,-0.961973,0.201682,-0.184207,-0.961973,0.201682,-0.184207, + -0.961973,0.201682,-0.184207,-0.961973,0.201682,-0.184207,0.963663,-0.201020,0.175909,0.963663,-0.201020,0.175909, + 0.963663,-0.201020,0.175909,0.963663,-0.201020,0.175909,0.006969,0.997227,0.074089,0.006969,0.997227,0.074089, + 0.006969,0.997227,0.074089,0.006969,0.997227,0.074089,0.066499,-0.134578,0.988669,0.066499,-0.134578,0.988669, + 0.066499,-0.134578,0.988669,0.066499,-0.134578,0.988669,-0.447132,-0.879559,-0.162633,-0.447132,-0.879559,-0.162633, + -0.447132,-0.879559,-0.162633,-0.447132,-0.879559,-0.162633,-0.960096,0.198108,-0.197407,-0.960096,0.198108,-0.197407, + -0.960096,0.198108,-0.197407,-0.960096,0.198108,-0.197407,0.959254,-0.202665,0.196874,0.959254,-0.202665,0.196874, + 0.959254,-0.202665,0.196874,0.959254,-0.202665,0.196874,-0.157599,-0.983298,-0.091041,-0.157599,-0.983298,-0.091041, + -0.157599,-0.983298,-0.091041,-0.157599,-0.983298,-0.091041,-0.784456,0.084137,0.614451,-0.784456,0.084137,0.614451, + -0.784456,0.084137,0.614451,-0.784456,0.084137,0.614451,0.280035,0.937125,0.208271,0.280035,0.937125,0.208271, + 0.280035,0.937125,0.208271,0.280035,0.937125,0.208271,0.708075,-0.208640,0.674610,0.708075,-0.208640,0.674610, + 0.708075,-0.208640,0.674610,0.708075,-0.208640,0.674610,-0.707815,0.210045,-0.674448,-0.707815,0.210045,-0.674448, + -0.707815,0.210045,-0.674448,-0.707815,0.210045,-0.674448,-0.167656,-0.980912,-0.098505,-0.167656,-0.980912,-0.098505, + -0.167656,-0.980912,-0.098505,-0.167656,-0.980912,-0.098505,-0.818103,0.096706,0.566883,-0.818103,0.096706,0.566883, + -0.818103,0.096706,0.566883,-0.818103,0.096706,0.566883,0.265688,0.942079,0.204687,0.265688,0.942079,0.204687, + 0.265688,0.942079,0.204687,0.265688,0.942079,0.204687,0.665964,-0.206737,0.716765,0.665964,-0.206737,0.716765, + 0.665964,-0.206737,0.716765,0.665964,-0.206737,0.716765,-0.665764,0.207753,-0.716657,-0.665764,0.207753,-0.716657, + -0.665764,0.207753,-0.716657,-0.665764,0.207753,-0.716657,-0.008226,-0.999962,0.002969,-0.008226,-0.999962,0.002969, + -0.008226,-0.999962,0.002969,-0.008226,-0.999962,0.002969,-0.793543,0.086396,0.602350,-0.793543,0.086396,0.602350, + -0.793543,0.086396,0.602350,-0.793543,0.086396,0.602350,0.356540,0.903863,0.236455,0.356540,0.903863,0.236455, + 0.356540,0.903863,0.236455,0.356540,0.903863,0.236455,0.837416,-0.217941,0.501235,0.837416,-0.217941,0.501235, + 0.837416,-0.217941,0.501235,0.837416,-0.217941,0.501235,-0.748797,0.216809,-0.626336,-0.748797,0.216809,-0.626336, + -0.748797,0.216809,-0.626336,-0.748797,0.216809,-0.626336,-0.172596,-0.979270,-0.106019,-0.172596,-0.979270,-0.106019, + -0.172596,-0.979270,-0.106019,-0.172596,-0.979270,-0.106019,-0.774718,0.080616,0.627147,-0.774718,0.080616,0.627147, + -0.774718,0.080616,0.627147,-0.774718,0.080616,0.627147,0.266852,0.944159,0.193272,0.266852,0.944159,0.193272, + 0.266852,0.944159,0.193272,0.266852,0.944159,0.193272,0.719076,-0.209774,0.662514,0.719076,-0.209774,0.662514, + 0.719076,-0.209774,0.662514,0.719076,-0.209774,0.662514,-0.718872,0.210810,-0.662406,-0.718872,0.210810,-0.662406, + -0.718872,0.210810,-0.662406,-0.718872,0.210810,-0.662406,-0.174222,-0.979113,-0.104806,-0.174222,-0.979113,-0.104806, + -0.174222,-0.979113,-0.104806,-0.174222,-0.979113,-0.104806,-0.818097,0.096734,0.566887,-0.818097,0.096734,0.566887, + -0.818097,0.096734,0.566887,-0.818097,0.096734,0.566887,0.260334,0.944986,0.198061,0.260334,0.944986,0.198061, + 0.260334,0.944986,0.198061,0.260334,0.944986,0.198061,0.666170,-0.205715,0.716868,0.666170,-0.205715,0.716868, + 0.666170,-0.205715,0.716868,0.666170,-0.205715,0.716868,-0.665964,0.206741,-0.716764,-0.665964,0.206741,-0.716764, + -0.665964,0.206741,-0.716764,-0.665964,0.206741,-0.716764,0.139631,0.092516,-0.985872,0.139631,0.092516,-0.985872, + 0.139631,0.092516,-0.985872,0.139631,0.092516,-0.985872,0.269674,0.956967,0.107190,0.269674,0.956967,0.107190, + 0.269674,0.956967,0.107190,0.269674,0.956967,0.107190,-0.978559,0.202476,-0.037762,-0.978559,0.202476,-0.037762, + -0.978559,0.202476,-0.037762,-0.978559,0.202476,-0.037762,-0.215078,-0.970084,-0.112597,-0.215078,-0.970084,-0.112597, + -0.215078,-0.970084,-0.112597,-0.215078,-0.970084,-0.112597,0.932940,-0.227145,0.279335,0.932940,-0.227145,0.279335, + 0.932940,-0.227145,0.279335,0.932940,-0.227145,0.279335,-0.129787,-0.094357,0.987042,-0.129787,-0.094357,0.987042, + -0.129787,-0.094357,0.987042,-0.129787,-0.094357,0.987042,0.900877,-0.227243,0.369841,0.900877,-0.227243,0.369841, + 0.900877,-0.227243,0.369841,0.900877,-0.227243,0.369841,0.196801,0.973242,0.118617,0.196801,0.973242,0.118617, + 0.196801,0.973242,0.118617,0.196801,0.973242,0.118617,-0.900877,0.227239,-0.369842,-0.900877,0.227239,-0.369842, + -0.900877,0.227239,-0.369842,-0.900877,0.227239,-0.369842,-0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614, + -0.196799,-0.973242,-0.118614,-0.196799,-0.973242,-0.118614,0.901429,-0.227191,0.368525,0.901429,-0.227191,0.368525, + 0.901429,-0.227191,0.368525,0.901429,-0.227191,0.368525,0.196798,0.973243,0.118615,0.196798,0.973243,0.118615, + 0.196798,0.973243,0.118615,0.196798,0.973243,0.118615,-0.901428,0.227194,-0.368525,-0.901428,0.227194,-0.368525, + -0.901428,0.227194,-0.368525,-0.901428,0.227194,-0.368525,-0.196798,-0.973243,-0.118615,-0.196798,-0.973243,-0.118615, + -0.196798,-0.973243,-0.118615,-0.196798,-0.973243,-0.118615,-0.295857,-0.954293,0.042342,-0.295857,-0.954293,0.042342, + -0.295857,-0.954293,0.042342,-0.295857,-0.954293,0.042342,0.335389,-0.074376,0.939139,0.335389,-0.074376,0.939139, + 0.335389,-0.074376,0.939139,0.335389,-0.074376,0.939139,0.295859,0.954293,-0.042332,0.295859,0.954293,-0.042332, + 0.295859,0.954293,-0.042332,0.295859,0.954293,-0.042332,-0.335387,0.074374,-0.939140,-0.335387,0.074374,-0.939140, + -0.335387,0.074374,-0.939140,-0.335387,0.074374,-0.939140,0.041080,-0.938169,-0.343733,0.041080,-0.938169,-0.343733, + 0.041080,-0.938169,-0.343733,0.041080,-0.938169,-0.343733,0.252800,-0.263688,0.930893,0.252800,-0.263688,0.930893, + 0.252800,-0.263688,0.930893,0.252800,-0.263688,0.930893,-0.041081,0.938170,0.343728,-0.041081,0.938170,0.343728, + -0.041081,0.938170,0.343728,-0.041081,0.938170,0.343728,-0.252801,0.263690,-0.930892,-0.252801,0.263690,-0.930892, + -0.252801,0.263690,-0.930892,-0.252801,0.263690,-0.930892,0.449954,0.007302,-0.893022,0.449954,0.007302,-0.893022, + 0.449954,0.007302,-0.893022,0.449954,0.007302,-0.893022,0.232481,0.963959,0.129370,0.232481,0.963959,0.129370, + 0.232481,0.963959,0.129370,0.232481,0.963959,0.129370,-0.875993,0.226549,-0.425807,-0.875993,0.226549,-0.425807, + -0.875993,0.226549,-0.425807,-0.875993,0.226549,-0.425807,-0.206115,-0.971143,-0.119988,-0.206115,-0.971143,-0.119988, + -0.206115,-0.971143,-0.119988,-0.206115,-0.971143,-0.119988,0.770026,-0.231879,0.594384,0.770026,-0.231879,0.594384, + 0.770026,-0.231879,0.594384,0.770026,-0.231879,0.594384,-0.439023,-0.009447,0.898426,-0.439023,-0.009447,0.898426, + -0.439023,-0.009447,0.898426,-0.439023,-0.009447,0.898426,0.441725,0.023835,-0.896834,0.441725,0.023835,-0.896834, + 0.441725,0.023835,-0.896834,0.441725,0.023835,-0.896834,-0.857382,0.266001,-0.440612,-0.857382,0.266001,-0.440612, + -0.857382,0.266001,-0.440612,-0.857382,0.266001,-0.440612,-0.211724,-0.970446,-0.115789,-0.211724,-0.970446,-0.115789, + -0.211724,-0.970446,-0.115789,-0.211724,-0.970446,-0.115789,0.455172,0.019859,-0.890182,0.455172,0.019859,-0.890182, + 0.455172,0.019859,-0.890182,0.455172,0.019859,-0.890182,0.127436,0.946889,0.295232,0.127436,0.946889,0.295232, + 0.127436,0.946889,0.295232,0.127436,0.946889,0.295232,-0.439700,-0.011476,0.898072,-0.439700,-0.011476,0.898072, + -0.439700,-0.011476,0.898072,-0.439700,-0.011476,0.898072,-0.857381,0.266001,-0.440615,-0.857381,0.266001,-0.440615, + -0.857381,0.266001,-0.440615,-0.857381,0.266001,-0.440615,-0.143288,-0.986352,-0.081104,-0.143288,-0.986352,-0.081104, + -0.143288,-0.986352,-0.081104,-0.143288,-0.986352,-0.081104,0.058079,0.964249,0.258556,0.058079,0.964249,0.258556, + 0.058079,0.964249,0.258556,0.058079,0.964249,0.258556,-0.454007,-0.007381,0.890967,-0.454007,-0.007381,0.890967, + -0.454007,-0.007381,0.890967,-0.454007,-0.007381,0.890967,0.434109,0.016924,-0.900702,0.434109,0.016924,-0.900702, + 0.434109,0.016924,-0.900702,0.434109,0.016924,-0.900702,0.926569,-0.225170,0.301279,0.926569,-0.225170,0.301279, + 0.926569,-0.225170,0.301279,0.926569,-0.225170,0.301279,-0.426283,-0.017934,0.904412,-0.426283,-0.017934,0.904412, + -0.426283,-0.017934,0.904412,-0.426283,-0.017934,0.904412,-0.528424,0.201468,-0.824730,-0.528424,0.201468,-0.824730, + -0.528424,0.201468,-0.824730,-0.528424,0.201468,-0.824730,-0.926647,0.224785,-0.301326,-0.926647,0.224785,-0.301326, + -0.926647,0.224785,-0.301326,-0.926647,0.224785,-0.301326,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,0.196795,0.973243,0.118613,0.196795,0.973243,0.118613, + 0.196795,0.973243,0.118613,0.196795,0.973243,0.118613,0.974869,-0.165294,-0.149357,0.974869,-0.165294,-0.149357, + 0.974869,-0.165294,-0.149357,0.974869,-0.165294,-0.149357,0.028976,-0.162065,0.986355,0.028976,-0.162065,0.986355, + 0.028976,-0.162065,0.986355,0.028976,-0.162065,0.986355,-0.798319,0.106196,0.592797,-0.798319,0.106196,0.592797, + -0.798319,0.106196,0.592797,-0.798319,0.106196,0.592797,-0.289427,0.154778,-0.944603,-0.289427,0.154778,-0.944603, + -0.289427,0.154778,-0.944603,-0.289427,0.154778,-0.944603,-0.020431,0.154933,-0.987714,-0.020431,0.154933,-0.987714, + -0.020431,0.154933,-0.987714,-0.020431,0.154933,-0.987714,0.810421,-0.110460,-0.575340,0.810421,-0.110460,-0.575340, + 0.810421,-0.110460,-0.575340,0.810421,-0.110460,-0.575340,-0.196798,-0.973242,-0.118617,-0.196798,-0.973242,-0.118617, + -0.196798,-0.973242,-0.118617,-0.196798,-0.973242,-0.118617,0.196799,0.973242,0.118616,0.196799,0.973242,0.118616, + 0.196799,0.973242,0.118616,0.196799,0.973242,0.118616,0.267195,0.063163,-0.961570,0.267195,0.063163,-0.961570, + 0.267195,0.063163,-0.961570,0.267195,0.063163,-0.961570,-0.267195,-0.063165,0.961570,-0.267195,-0.063165,0.961570, + -0.267195,-0.063165,0.961570,-0.267195,-0.063165,0.961570,-0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616, + -0.196800,-0.973242,-0.118616,-0.196800,-0.973242,-0.118616,0.196799,0.973243,0.118613,0.196799,0.973243,0.118613, + 0.196799,0.973243,0.118613,0.196799,0.973243,0.118613,0.265432,0.063576,-0.962031,0.265432,0.063576,-0.962031, + 0.265432,0.063576,-0.962031,0.265432,0.063576,-0.962031,-0.265433,-0.063578,0.962031,-0.265433,-0.063578,0.962031, + -0.265433,-0.063578,0.962031,-0.265433,-0.063578,0.962031,-0.004750,0.787773,0.615947,-0.004750,0.787773,0.615947, + -0.004750,0.787773,0.615947,-0.004750,0.787773,0.615947,-0.397506,-0.826326,0.398966,-0.397506,-0.826326,0.398966, + -0.397506,-0.826326,0.398966,-0.397506,-0.826326,0.398966,-0.196800,-0.973242,-0.118613,-0.196800,-0.973242,-0.118613, + -0.196800,-0.973242,-0.118613,-0.196800,-0.973242,-0.118613,0.196800,0.973242,0.118616,0.196800,0.973242,0.118616, + 0.196800,0.973242,0.118616,0.196800,0.973242,0.118616,0.273218,0.061748,-0.959968,0.273218,0.061748,-0.959968, + 0.273218,0.061748,-0.959968,0.273218,0.061748,-0.959968,-0.276259,-0.061033,0.959143,-0.276259,-0.061033,0.959143, + -0.276259,-0.061033,0.959143,-0.276259,-0.061033,0.959143,-0.193157,-0.974115,-0.117435,-0.193157,-0.974115,-0.117435, + -0.193157,-0.974115,-0.117435,-0.193157,-0.974115,-0.117435,0.196800,0.973242,0.118615,0.196800,0.973242,0.118615, + 0.196800,0.973242,0.118615,0.196800,0.973242,0.118615,0.271904,0.062058,-0.960321,0.271904,0.062058,-0.960321, + 0.271904,0.062058,-0.960321,0.271904,0.062058,-0.960321,-0.272051,-0.062026,0.960282,-0.272051,-0.062026,0.960282, + -0.272051,-0.062026,0.960282,-0.272051,-0.062026,0.960282,-0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615, + -0.196800,-0.973242,-0.118615,-0.196800,-0.973242,-0.118615,0.196800,0.973242,0.118614,0.196800,0.973242,0.118614, + 0.196800,0.973242,0.118614,0.196800,0.973242,0.118614,0.262728,0.064206,-0.962731,0.262728,0.064206,-0.962731, + 0.262728,0.064206,-0.962731,0.262728,0.064206,-0.962731,0.261669,0.100560,-0.959905,0.261669,0.100560,-0.959905, + 0.261669,0.100560,-0.959905,0.261669,0.100560,-0.959905,0.976787,-0.200682,0.074923,0.976787,-0.200682,0.074923, + 0.976787,-0.200682,0.074923,0.976787,-0.200682,0.074923,0.257575,0.079673,-0.962968,0.257575,0.079673,-0.962968, + 0.257575,0.079673,-0.962968,0.257575,0.079673,-0.962968,-0.940952,0.221283,-0.256210,-0.940952,0.221283,-0.256210, + -0.940952,0.221283,-0.256210,-0.940952,0.221283,-0.256210,-0.925522,0.144485,0.350048,-0.925522,0.144485,0.350048, + -0.925522,0.144485,0.350048,-0.925522,0.144485,0.350048,0.925522,-0.144485,-0.350048,0.925522,-0.144485,-0.350048, + 0.925522,-0.144485,-0.350048,0.925522,-0.144485,-0.350048,-0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505, + -0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505,-0.925521,0.144487,0.350048,-0.925521,0.144487,0.350048, + -0.925521,0.144487,0.350048,-0.925521,0.144487,0.350048,0.925521,-0.144489,-0.350048,0.925521,-0.144489,-0.350048, + 0.925521,-0.144489,-0.350048,0.925521,-0.144489,-0.350048,-0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505, + -0.192303,-0.971935,-0.135505,-0.192303,-0.971935,-0.135505,-0.963740,0.169791,0.205854,-0.963740,0.169791,0.205854, + -0.963740,0.169791,0.205854,-0.963740,0.169791,0.205854,0.963740,-0.169790,-0.205854,0.963740,-0.169790,-0.205854, + 0.963740,-0.169790,-0.205854,0.963740,-0.169790,-0.205854,-0.192304,-0.971935,-0.135504,-0.192304,-0.971935,-0.135504, + -0.192304,-0.971935,-0.135504,-0.192304,-0.971935,-0.135504,-0.918287,0.140579,0.370118,-0.918287,0.140579,0.370118, + -0.918287,0.140579,0.370118,-0.918287,0.140579,0.370118,0.918286,-0.140581,-0.370118,0.918286,-0.140581,-0.370118, + 0.918286,-0.140581,-0.370118,0.918286,-0.140581,-0.370118,-0.197677,-0.973464,-0.115293,-0.197677,-0.973464,-0.115293, + -0.197677,-0.973464,-0.115293,-0.197677,-0.973464,-0.115293,-0.150559,0.963332,0.222089,-0.150559,0.963332,0.222089, + -0.150559,0.963332,0.222089,-0.150559,0.963332,0.222089,0.951832,-0.160641,-0.261169,0.951832,-0.160641,-0.261169, + 0.951832,-0.160641,-0.261169,0.951832,-0.160641,-0.261169,-0.200350,-0.974072,-0.105092,-0.200350,-0.974072,-0.105092, + -0.200350,-0.974072,-0.105092,-0.200350,-0.974072,-0.105092,-0.967604,0.173281,0.183618,-0.967604,0.173281,0.183618, + -0.967604,0.173281,0.183618,-0.967604,0.173281,0.183618,0.967605,-0.173280,-0.183618,0.967605,-0.173280,-0.183618, + 0.967605,-0.173280,-0.183618,0.967605,-0.173280,-0.183618,-0.200288,-0.974059,-0.105330,-0.200288,-0.974059,-0.105330, + -0.200288,-0.974059,-0.105330,-0.200288,-0.974059,-0.105330,0.625557,-0.217797,0.749162,0.625557,-0.217797,0.749162, + 0.625557,-0.217797,0.749162,0.625557,-0.217797,0.749162,-0.625557,0.217796,-0.749162,-0.625557,0.217796,-0.749162, + -0.625557,0.217796,-0.749162,-0.625557,0.217796,-0.749162,0.204552,0.974814,0.088856,0.204552,0.974814,0.088856, + 0.204552,0.974814,0.088856,0.204552,0.974814,0.088856,0.588998,-0.214079,0.779264,0.588998,-0.214079,0.779264, + 0.588998,-0.214079,0.779264,0.588998,-0.214079,0.779264,-0.588997,0.214073,-0.779266,-0.588997,0.214073,-0.779266, + -0.588997,0.214073,-0.779266,-0.588997,0.214073,-0.779266,0.204899,0.974863,0.087510,0.204899,0.974863,0.087510, + 0.204899,0.974863,0.087510,0.204899,0.974863,0.087510,0.670272,-0.221849,0.708180,0.670272,-0.221849,0.708180, + 0.670272,-0.221849,0.708180,0.670272,-0.221849,0.708180,-0.670272,0.221843,-0.708182,-0.670272,0.221843,-0.708182, + -0.670272,0.221843,-0.708182,-0.670272,0.221843,-0.708182,0.190406,0.971301,0.142547,0.190406,0.971301,0.142547, + 0.190406,0.971301,0.142547,0.190406,0.971301,0.142547,0.659540,-0.079054,0.747501,0.659540,-0.079054,0.747501, + 0.659540,-0.079054,0.747501,0.659540,-0.079054,0.747501,-0.636900,0.216130,-0.740031,-0.636900,0.216130,-0.740031, + -0.636900,0.216130,-0.740031,-0.636900,0.216130,-0.740031,0.192744,0.972076,0.133857,0.192744,0.972076,0.133857, + 0.192744,0.972076,0.133857,0.192744,0.972076,0.133857,-0.937103,0.166641,-0.306706,-0.937103,0.166641,-0.306706, + -0.937103,0.166641,-0.306706,-0.937103,0.166641,-0.306706,-0.317346,-0.013327,0.948216,-0.317346,-0.013327,0.948216, + -0.317346,-0.013327,0.948216,-0.317346,-0.013327,0.948216,0.341179,0.137260,-0.929923,0.341179,0.137260,-0.929923, + 0.341179,0.137260,-0.929923,0.341179,0.137260,-0.929923,-0.200097,-0.974406,-0.102441,-0.200097,-0.974406,-0.102441, + -0.200097,-0.974406,-0.102441,-0.200097,-0.974406,-0.102441,0.198061,0.973441,0.114826,0.198061,0.973441,0.114826, + 0.198061,0.973441,0.114826,0.198061,0.973441,0.114826,-0.927385,0.226194,-0.297983,-0.927385,0.226194,-0.297983, + -0.927385,0.226194,-0.297983,-0.927385,0.226194,-0.297983,-0.934659,0.222593,-0.277246,-0.934659,0.222593,-0.277246, + -0.934659,0.222593,-0.277246,0.204625,0.974361,0.093532,0.204625,0.974361,0.093532,0.204625,0.974361,0.093532, + 0.204625,0.974361,0.093532,-0.300204,-0.055355,0.952267,-0.300204,-0.055355,0.952267,-0.300204,-0.055355,0.952267, + -0.300204,-0.055355,0.952267,0.308464,0.097579,-0.946218,0.308464,0.097579,-0.946218,0.308464,0.097579,-0.946218, + 0.308464,0.097579,-0.946218,0.347276,0.042737,-0.936789,0.347276,0.042737,-0.936789,0.347276,0.042737,-0.936789, + 0.347276,0.042737,-0.936789,-0.182362,-0.969531,-0.163567,-0.182362,-0.969531,-0.163567,-0.182362,-0.969531,-0.163567, + -0.182362,-0.969531,-0.163567,-0.934577,0.222781,-0.277370,-0.934577,0.222781,-0.277370,-0.934577,0.222781,-0.277370, + -0.323936,-0.006701,0.946055,-0.323936,-0.006701,0.946055,-0.323936,-0.006701,0.946055,-0.323936,-0.006701,0.946055, + 0.199145,0.973562,0.111883,0.199145,0.973562,0.111883,0.199145,0.973562,0.111883,0.199145,0.973562,0.111883, + -0.178480,-0.969662,-0.167037,-0.178480,-0.969662,-0.167037,-0.178480,-0.969662,-0.167037,-0.178480,-0.969662,-0.167037, + 0.145057,0.985410,0.089032,0.145057,0.985410,0.089032,0.145057,0.985410,0.089032,0.145057,0.985410,0.089032, + -0.215057,-0.052034,0.975214,-0.215057,-0.052034,0.975214,-0.215057,-0.052034,0.975214,-0.215057,-0.052034,0.975214, + 0.334928,0.023998,-0.941938,0.334928,0.023998,-0.941938,0.334928,0.023998,-0.941938,0.334928,0.023998,-0.941938, + -0.951162,0.217220,-0.219334,-0.951162,0.217220,-0.219334,-0.951162,0.217220,-0.219334,-0.951162,0.217220,-0.219334, + 0.947748,-0.219861,0.231159,0.947748,-0.219861,0.231159,0.947748,-0.219861,0.231159,0.947748,-0.219861,0.231159, + 0.202529,0.973568,0.105578,0.202529,0.973568,0.105578,0.202529,0.973568,0.105578,0.202529,0.973568,0.105578, + 0.194558,0.972719,0.126355,0.194558,0.972719,0.126355,0.194558,0.972719,0.126355,0.953139,-0.218173,0.209589, + 0.953139,-0.218173,0.209589,0.953139,-0.218173,0.209589,0.953139,-0.218173,0.209589,-0.255593,-0.069763,0.964264, + -0.255593,-0.069763,0.964264,-0.255593,-0.069763,0.964264,-0.255593,-0.069763,0.964264,0.296476,0.060139,-0.953145, + 0.296476,0.060139,-0.953145,0.296476,0.060139,-0.953145,0.296476,0.060139,-0.953145,0.244130,0.020200,-0.969532, + 0.244130,0.020200,-0.969532,0.244130,0.020200,-0.969532,0.244130,0.020200,-0.969532,-0.933582,0.223139,-0.280418, + -0.933582,0.223139,-0.280418,-0.933582,0.223139,-0.280418,-0.933582,0.223139,-0.280418,0.194771,0.972689,0.126251, + 0.194771,0.972689,0.126251,0.194771,0.972689,0.126251,-0.208697,-0.045075,0.976941,-0.208697,-0.045075,0.976941, + -0.208697,-0.045075,0.976941,-0.208697,-0.045075,0.976941,0.948500,-0.219803,0.228110,0.948500,-0.219803,0.228110, + 0.948500,-0.219803,0.228110,0.948500,-0.219803,0.228110,-0.932756,0.220777,-0.284999,-0.932756,0.220777,-0.284999, + -0.932756,0.220777,-0.284999,-0.932756,0.220777,-0.284999,0.960647,-0.161560,0.225956,0.960647,-0.161560,0.225956, + 0.960647,-0.161560,0.225956,0.960647,-0.161560,0.225956,-0.240398,-0.107039,0.964755,-0.240398,-0.107039,0.964755, + -0.240398,-0.107039,0.964755,-0.240398,-0.107039,0.964755,0.214677,-0.017307,-0.976532,0.214677,-0.017307,-0.976532, + 0.214677,-0.017307,-0.976532,0.214677,-0.017307,-0.976532,0.190871,0.972420,0.134044,0.190871,0.972420,0.134044, + 0.190871,0.972420,0.134044,0.190871,0.972420,0.134044,-0.195822,-0.972960,-0.122484,-0.195822,-0.972960,-0.122484, + -0.195822,-0.972960,-0.122484,-0.195822,-0.972960,-0.122484,0.949781,-0.221362,0.221167,0.949781,-0.221362,0.221167, + 0.949781,-0.221362,0.221167,0.949781,-0.221362,0.221167,0.944694,-0.220427,0.242829,0.944694,-0.220427,0.242829, + 0.944694,-0.220427,0.242829,-0.189933,-0.971192,-0.143918,-0.189933,-0.971192,-0.143918,-0.189933,-0.971192,-0.143918, + -0.189933,-0.971192,-0.143918,-0.258463,-0.065204,0.963818,-0.258463,-0.065204,0.963818,-0.258463,-0.065204,0.963818, + -0.258463,-0.065204,0.963818,0.249667,0.022866,-0.968062,0.249667,0.022866,-0.968062,0.249667,0.022866,-0.968062, + 0.249667,0.022866,-0.968062,0.210017,0.077529,-0.974619,0.210017,0.077529,-0.974619,0.210017,0.077529,-0.974619, + 0.210017,0.077529,-0.974619,0.208811,0.975239,0.072847,0.208811,0.975239,0.072847,0.208811,0.975239,0.072847, + 0.208811,0.975239,0.072847,0.944697,-0.220599,0.242658,0.944697,-0.220599,0.242658,0.944697,-0.220599,0.242658, + -0.233453,-0.113589,0.965711,-0.233453,-0.113589,0.965711,-0.233453,-0.113589,0.965711,-0.233453,-0.113589,0.965711, + -0.195162,-0.972703,-0.125543,-0.195162,-0.972703,-0.125543,-0.195162,-0.972703,-0.125543,-0.195162,-0.972703,-0.125543, + 0.207360,0.975907,0.067878,0.207360,0.975907,0.067878,0.207360,0.975907,0.067878,0.207360,0.975907,0.067878, + 0.137844,0.984997,0.103826,0.137844,0.984997,0.103826,0.137844,0.984997,0.103826,0.137844,0.984997,0.103826, + 0.966546,-0.047400,0.252077,0.966546,-0.047400,0.252077,0.966546,-0.047400,0.252077,0.966546,-0.047400,0.252077, + 0.006318,-0.997757,-0.066642,0.006318,-0.997757,-0.066642,0.006318,-0.997757,-0.066642,0.006318,-0.997757,-0.066642, + -0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077, + 0.054901,0.074240,-0.995728,0.054901,0.074240,-0.995728,0.054901,0.074240,-0.995728,0.054901,0.074240,-0.995728, + 0.256157,0.127125,-0.958240,0.256157,0.127125,-0.958240,0.256157,0.127125,-0.958240,0.256157,0.127125,-0.958240, + 0.029082,0.996692,0.075896,0.029082,0.996692,0.075896,0.029082,0.996692,0.075896,0.029082,0.996692,0.075896, + 0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081,0.966544,-0.047405,0.252081, + -0.029086,-0.996691,-0.075896,-0.029086,-0.996691,-0.075896,-0.029086,-0.996691,-0.075896,-0.029086,-0.996691,-0.075896, + -0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077, + 0.188704,0.069108,-0.979599,0.188704,0.069108,-0.979599,0.188704,0.069108,-0.979599,0.188704,0.069108,-0.979599, + -0.029087,-0.996690,-0.075911,-0.029087,-0.996690,-0.075911,-0.029087,-0.996690,-0.075911,-0.029087,-0.996690,-0.075911, + 0.029081,0.996690,0.075920,0.029081,0.996690,0.075920,0.029081,0.996690,0.075920,0.029081,0.996690,0.075920, + 0.966546,-0.047401,0.252077,0.966546,-0.047401,0.252077,0.966546,-0.047401,0.252077,0.966546,-0.047401,0.252077, + -0.029083,-0.996691,-0.075901,-0.029083,-0.996691,-0.075901,-0.029083,-0.996691,-0.075901,-0.029083,-0.996691,-0.075901, + -0.966546,0.047403,-0.252076,-0.966546,0.047403,-0.252076,-0.966546,0.047403,-0.252076,-0.966546,0.047403,-0.252076, + 0.254846,0.066047,-0.964723,0.254846,0.066047,-0.964723,0.254846,0.066047,-0.964723,0.254846,0.066047,-0.964723, + 0.966135,-0.059508,0.251081,0.966135,-0.059508,0.251081,0.966135,-0.059508,0.251081,0.966135,-0.059508,0.251081, + 0.029080,0.996690,0.075916,0.029080,0.996690,0.075916,0.029080,0.996690,0.075916,0.029080,0.996690,0.075916, + 0.966546,-0.047404,0.252073,0.966546,-0.047404,0.252073,0.966546,-0.047404,0.252073,0.966546,-0.047404,0.252073, + -0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914,-0.029083,-0.996690,-0.075914, + -0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080, + 0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724, + 0.026870,0.996082,0.084249,0.026870,0.996082,0.084249,0.026870,0.996082,0.084249,0.026870,0.996082,0.084249, + 0.029083,0.996691,0.075901,0.029083,0.996691,0.075901,0.029083,0.996691,0.075901,0.029083,0.996691,0.075901, + 0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075, + -0.029083,-0.996690,-0.075920,-0.029083,-0.996690,-0.075920,-0.029083,-0.996690,-0.075920,-0.029083,-0.996690,-0.075920, + -0.966547,0.047402,-0.252071,-0.966547,0.047402,-0.252071,-0.966547,0.047402,-0.252071,-0.966547,0.047402,-0.252071, + 0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724, + -0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077, + 0.256103,0.123859,-0.958682,0.256103,0.123859,-0.958682,0.256103,0.123859,-0.958682,0.256103,0.123859,-0.958682, + -0.029082,-0.996688,-0.075935,-0.029082,-0.996688,-0.075935,-0.029082,-0.996688,-0.075935,-0.029082,-0.996688,-0.075935, + 0.966546,-0.047402,0.252075,0.966546,-0.047402,0.252075,0.966546,-0.047402,0.252075,0.966546,-0.047402,0.252075, + 0.029082,0.996690,0.075911,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911, + -0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079, + 0.256215,0.132287,-0.957525,0.256215,0.132287,-0.957525,0.256215,0.132287,-0.957525,0.256215,0.132287,-0.957525, + -0.029080,-0.996689,-0.075937,-0.029080,-0.996689,-0.075937,-0.029080,-0.996689,-0.075937,-0.029080,-0.996689,-0.075937, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + 0.029084,0.996690,0.075919,0.029084,0.996690,0.075919,0.029084,0.996690,0.075919,0.029084,0.996690,0.075919, + -0.966546,0.047401,-0.252077,-0.966546,0.047401,-0.252077,-0.966546,0.047401,-0.252077,-0.966546,0.047401,-0.252077, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.256156,-0.127124,0.958240,-0.256156,-0.127124,0.958240,-0.256156,-0.127124,0.958240,-0.256156,-0.127124,0.958240, + -0.052762,-0.996491,-0.064970,-0.052762,-0.996491,-0.064970,-0.052762,-0.996491,-0.064970,-0.052762,-0.996491,-0.064970, + -0.188703,-0.069109,0.979599,-0.188703,-0.069109,0.979599,-0.188703,-0.069109,0.979599,-0.188703,-0.069109,0.979599, + -0.054900,-0.074239,0.995728,-0.054900,-0.074239,0.995728,-0.054900,-0.074239,0.995728,-0.054900,-0.074239,0.995728, + -0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.256100,-0.123858,0.958682,-0.256100,-0.123858,0.958682,-0.256100,-0.123858,0.958682,-0.256100,-0.123858,0.958682, + -0.970773,0.046263,-0.235498,-0.970773,0.046263,-0.235498,-0.970773,0.046263,-0.235498,-0.970773,0.046263,-0.235498, + 0.976977,-0.064153,0.203471,0.976977,-0.064153,0.203471,0.976977,-0.064153,0.203471,0.976977,-0.064153,0.203471, + -0.033693,-0.997785,-0.057357,-0.033693,-0.997785,-0.057357,-0.033693,-0.997785,-0.057357,-0.033693,-0.997785,-0.057357, + 0.014127,0.993256,0.115078,0.014127,0.993256,0.115078,0.014127,0.993256,0.115078,0.014127,0.993256,0.115078, + 0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077, + -0.018400,-0.993055,-0.116206,-0.018400,-0.993055,-0.116206,-0.018400,-0.993055,-0.116206,-0.018400,-0.993055,-0.116206, + -0.992242,0.034395,-0.119471,-0.992242,0.034395,-0.119471,-0.992242,0.034395,-0.119471,-0.992242,0.034395,-0.119471, + 0.291750,0.097275,-0.951535,0.291750,0.097275,-0.951535,0.291750,0.097275,-0.951535,0.291750,0.097275,-0.951535, + 0.970775,-0.046262,0.235492,0.970775,-0.046262,0.235492,0.970775,-0.046262,0.235492,0.970775,-0.046262,0.235492, + 0.033681,0.997785,0.057364,0.033681,0.997785,0.057364,0.033681,0.997785,0.057364,0.033681,0.997785,0.057364, + 0.052759,0.996493,0.064948,0.052759,0.996493,0.064948,0.052759,0.996493,0.064948,0.052759,0.996493,0.064948, + -0.018766,-0.977475,-0.210216,-0.018766,-0.977475,-0.210216,-0.018766,-0.977475,-0.210216,-0.018766,-0.977475,-0.210216, + 0.239040,0.025833,-0.970666,0.239040,0.025833,-0.970666,0.239040,0.025833,-0.970666,0.239040,0.025833,-0.970666, + -0.972684,0.064700,-0.222937,-0.972684,0.064700,-0.222937,-0.972684,0.064700,-0.222937,-0.972684,0.064700,-0.222937, + 0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078, + -0.048679,0.921450,0.385435,-0.048679,0.921450,0.385435,-0.048679,0.921450,0.385435,-0.048679,0.921450,0.385435, + 0.234520,0.418823,-0.877262,0.234520,0.418823,-0.877262,0.234520,0.418823,-0.877262,0.234520,0.418823,-0.877262, + 0.238461,0.506854,-0.828393,0.238461,0.506854,-0.828393,0.238461,0.506854,-0.828393,0.238461,0.506854,-0.828393, + -0.935564,0.125553,-0.330087,-0.935564,0.125553,-0.330087,-0.935564,0.125553,-0.330087,-0.935564,0.125553,-0.330087, + 0.052364,-0.868678,-0.492601,0.052364,-0.868678,-0.492601,0.052364,-0.868678,-0.492601,0.052364,-0.868678,-0.492601, + 0.915054,-0.230927,0.330678,0.915054,-0.230927,0.330678,0.915054,-0.230927,0.330678,0.915054,-0.230927,0.330678, + -0.052271,0.868674,0.492618,-0.052271,0.868674,0.492618,-0.052271,0.868674,0.492618,-0.052271,0.868674,0.492618, + 0.048675,-0.921437,-0.385466,0.048675,-0.921437,-0.385466,0.048675,-0.921437,-0.385466,0.048675,-0.921437,-0.385466, + -0.966545,0.047402,-0.252080,-0.966545,0.047402,-0.252080,-0.966545,0.047402,-0.252080,-0.966545,0.047402,-0.252080, + 0.257460,0.384508,-0.886492,0.257460,0.384508,-0.886492,0.257460,0.384508,-0.886492,0.257460,0.384508,-0.886492, + -0.034262,0.956184,0.290756,-0.034262,0.956184,0.290756,-0.034262,0.956184,0.290756,-0.034262,0.956184,0.290756, + 0.073965,0.924363,0.374275,0.073965,0.924363,0.374275,0.073965,0.924363,0.374275,0.073965,0.924363,0.374275, + 0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076, + 0.122052,-0.937924,-0.324658,0.122052,-0.937924,-0.324658,0.122052,-0.937924,-0.324658,0.122052,-0.937924,-0.324658, + -0.966543,0.047405,-0.252087,-0.966543,0.047405,-0.252087,-0.966543,0.047405,-0.252087,-0.966543,0.047405,-0.252087, + 0.376474,0.336559,-0.863131,0.376474,0.336559,-0.863131,0.376474,0.336559,-0.863131,0.376474,0.336559,-0.863131, + -0.854086,0.178548,-0.488526,-0.854086,0.178548,-0.488526,-0.854086,0.178548,-0.488526,-0.854086,0.178548,-0.488526, + 0.244706,0.352394,-0.903293,0.244706,0.352394,-0.903293,0.244706,0.352394,-0.903293,0.244706,0.352394,-0.903293, + 0.881606,0.378233,0.282330,0.881606,0.378233,0.282330,0.881606,0.378233,0.282330,0.881606,0.378233,0.282330, + 0.981402,-0.060267,0.182260,0.981402,-0.060267,0.182260,0.981402,-0.060267,0.182260,0.981402,-0.060267,0.182260, + -0.536477,-0.329303,0.777015,-0.536477,-0.329303,0.777015,-0.536477,-0.329303,0.777015,-0.536477,-0.329303,0.777015, + 0.008129,0.974646,0.223607,0.008129,0.974646,0.223607,0.008129,0.974646,0.223607,0.008129,0.974646,0.223607, + 0.014198,0.963308,-0.268022,0.014198,0.963308,-0.268022,0.014198,0.963308,-0.268022,0.014198,0.963308,-0.268022, + 0.000336,-0.261708,-0.965147,0.000336,-0.261708,-0.965147,0.000336,-0.261708,-0.965147,0.000336,-0.261708,-0.965147, + 0.046834,-0.940587,-0.336307,0.046834,-0.940587,-0.336307,0.046834,-0.940587,-0.336307,0.046834,-0.940587,-0.336307, + -0.115378,-0.869185,0.480838,-0.115378,-0.869185,0.480838,-0.115378,-0.869185,0.480838,-0.115378,-0.869185,0.480838, + -0.488112,0.281967,-0.825979,-0.488112,0.281967,-0.825979,-0.488112,0.281967,-0.825979,-0.488112,0.281967,-0.825979, + 0.252887,0.844675,-0.471776,0.252887,0.844675,-0.471776,0.252887,0.844675,-0.471776,0.252887,0.844675,-0.471776, + 0.485092,-0.513496,-0.707819,0.485092,-0.513496,-0.707819,0.485092,-0.513496,-0.707819,0.485092,-0.513496,-0.707819, + -0.010851,-0.964906,0.262371,-0.010851,-0.964906,0.262371,-0.010851,-0.964906,0.262371,-0.010851,-0.964906,0.262371, + -0.045542,0.972005,0.230503,-0.045542,0.972005,0.230503,-0.045542,0.972005,0.230503,-0.045542,0.972005,0.230503, + 0.518157,0.368442,-0.771857,0.518157,0.368442,-0.771857,0.518157,0.368442,-0.771857,0.518157,0.368442,-0.771857, + 0.011833,-0.948295,-0.317171,0.011833,-0.948295,-0.317171,0.011833,-0.948295,-0.317171,0.011833,-0.948295,-0.317171, + -0.287882,-0.097479,0.952692,-0.287882,-0.097479,0.952692,-0.287882,-0.097479,0.952692,-0.287882,-0.097479,0.952692, + -0.970774,0.046263,-0.235496,-0.970774,0.046263,-0.235496,-0.970774,0.046263,-0.235496,-0.970774,0.046263,-0.235496, + -0.032121,-0.997452,-0.063703,-0.032121,-0.997452,-0.063703,-0.032121,-0.997452,-0.063703,-0.032121,-0.997452,-0.063703, + 0.970775,-0.046263,0.235492,0.970775,-0.046263,0.235492,0.970775,-0.046263,0.235492,0.970775,-0.046263,0.235492, + 0.032121,0.997452,0.063705,0.032121,0.997452,0.063705,0.032121,0.997452,0.063705,0.032121,0.997452,0.063705, + -0.971041,0.046188,-0.234407,-0.971041,0.046188,-0.234407,-0.971041,0.046188,-0.234407,-0.971041,0.046188,-0.234407, + -0.029087,-0.996689,-0.075931,-0.029087,-0.996689,-0.075931,-0.029087,-0.996689,-0.075931,-0.029087,-0.996689,-0.075931, + 0.971038,-0.046187,0.234418,0.971038,-0.046187,0.234418,0.971038,-0.046187,0.234418,0.971038,-0.046187,0.234418, + 0.029064,0.996691,0.075909,0.029064,0.996691,0.075909,0.029064,0.996691,0.075909,0.029064,0.996691,0.075909, + -0.970773,0.046263,-0.235499,-0.970773,0.046263,-0.235499,-0.970773,0.046263,-0.235499,-0.970773,0.046263,-0.235499, + -0.032121,-0.997452,-0.063702,-0.032121,-0.997452,-0.063702,-0.032121,-0.997452,-0.063702,-0.032121,-0.997452,-0.063702, + 0.970775,-0.046263,0.235491,0.970775,-0.046263,0.235491,0.970775,-0.046263,0.235491,0.970775,-0.046263,0.235491, + 0.029087,0.996689,0.075921,0.029087,0.996689,0.075921,0.029087,0.996689,0.075921,0.029087,0.996689,0.075921, + 0.255808,0.106299,-0.960865,0.255808,0.106299,-0.960865,0.255808,0.106299,-0.960865,0.255808,0.106299,-0.960865, + -0.027912,-0.996376,-0.080345,-0.027912,-0.996376,-0.080345,-0.027912,-0.996376,-0.080345,-0.027912,-0.996376,-0.080345, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + 0.027910,0.996375,0.080358,0.027910,0.996375,0.080358,0.027910,0.996375,0.080358,0.027910,0.996375,0.080358, + -0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079, + 0.432777,0.129571,-0.892141,0.432777,0.129571,-0.892141,0.432777,0.129571,-0.892141,0.432777,0.129571,-0.892141, + -0.029074,-0.996692,-0.075899,-0.029074,-0.996692,-0.075899,-0.029074,-0.996692,-0.075899,-0.029074,-0.996692,-0.075899, + 0.897994,-0.060241,0.435864,0.897994,-0.060241,0.435864,0.897994,-0.060241,0.435864,0.897994,-0.060241,0.435864, + 0.029079,0.996690,0.075923,0.029079,0.996690,0.075923,0.029079,0.996690,0.075923,0.029079,0.996690,0.075923, + -0.897993,0.060236,-0.435867,-0.897993,0.060236,-0.435867,-0.897993,0.060236,-0.435867,-0.897993,0.060236,-0.435867, + -0.968046,0.053780,-0.244936,-0.968046,0.053780,-0.244936,-0.968046,0.053780,-0.244936,-0.968046,0.053780,-0.244936, + -0.196411,-0.771934,0.604599,-0.196411,-0.771934,0.604599,-0.196411,-0.771934,0.604599,-0.196411,-0.771934,0.604599, + 0.968048,-0.053780,0.244931,0.968048,-0.053780,0.244931,0.968048,-0.053780,0.244931,0.968048,-0.053780,0.244931, + 0.196425,0.771939,-0.604588,0.196425,0.771939,-0.604588,0.196425,0.771939,-0.604588,0.196425,0.771939,-0.604588, + -0.967963,0.054070,-0.245202,-0.967963,0.054070,-0.245202,-0.967963,0.054070,-0.245202,-0.967963,0.054070,-0.245202, + -0.200085,-0.749610,0.630912,-0.200085,-0.749610,0.630912,-0.200085,-0.749610,0.630912,-0.200085,-0.749610,0.630912, + 0.967964,-0.054072,0.245198,0.967964,-0.054072,0.245198,0.967964,-0.054072,0.245198,0.967964,-0.054072,0.245198, + 0.201363,0.743744,-0.637415,0.201363,0.743744,-0.637415,0.201363,0.743744,-0.637415,0.201363,0.743744,-0.637415, + -0.968039,0.053744,-0.244975,-0.968039,0.053744,-0.244975,-0.968039,0.053744,-0.244975,-0.968039,0.053744,-0.244975, + -0.197236,-0.768281,0.608968,-0.197236,-0.768281,0.608968,-0.197236,-0.768281,0.608968,-0.197236,-0.768281,0.608968, + 0.968039,-0.053744,0.244975,0.968039,-0.053744,0.244975,0.968039,-0.053744,0.244975,0.968039,-0.053744,0.244975, + 0.197219,0.768283,-0.608971,0.197219,0.768283,-0.608971,0.197219,0.768283,-0.608971,0.197219,0.768283,-0.608971, + 0.964656,-0.054319,0.257855,0.964656,-0.054319,0.257855,0.964656,-0.054319,0.257855,0.964656,-0.054319,0.257855, + -0.164101,0.643018,0.748064,-0.164101,0.643018,0.748064,-0.164101,0.643018,0.748064,-0.164101,0.643018,0.748064, + -0.964656,0.054320,-0.257852,-0.964656,0.054320,-0.257852,-0.964656,0.054320,-0.257852,-0.964656,0.054320,-0.257852, + 0.164093,-0.643013,-0.748069,0.164093,-0.643013,-0.748069,0.164093,-0.643013,-0.748069,0.164093,-0.643013,-0.748069, + 0.964660,-0.054306,0.257840,0.964660,-0.054306,0.257840,0.964660,-0.054306,0.257840,0.964660,-0.054306,0.257840, + -0.170661,0.620111,0.765726,-0.170661,0.620111,0.765726,-0.170661,0.620111,0.765726,-0.170661,0.620111,0.765726, + -0.964660,0.054306,-0.257841,-0.964660,0.054306,-0.257841,-0.964660,0.054306,-0.257841,-0.964660,0.054306,-0.257841, + 0.170668,-0.620114,-0.765722,0.170668,-0.620114,-0.765722,0.170668,-0.620114,-0.765722,0.170668,-0.620114,-0.765722, + 0.964670,-0.054734,0.257714,0.964670,-0.054734,0.257714,0.964670,-0.054734,0.257714,0.964670,-0.054734,0.257714, + -0.166727,0.637330,0.752338,-0.166727,0.637330,0.752338,-0.166727,0.637330,0.752338,-0.166727,0.637330,0.752338, + -0.964669,0.054735,-0.257718,-0.964669,0.054735,-0.257718,-0.964669,0.054735,-0.257718,-0.964669,0.054735,-0.257718, + 0.168580,-0.630845,-0.757374,0.168580,-0.630845,-0.757374,0.168580,-0.630845,-0.757374,0.168580,-0.630845,-0.757374, + 0.034899,0.995923,0.083187,0.034899,0.995923,0.083187,0.034899,0.995923,0.083187,0.034899,0.995923,0.083187, + -0.863654,-0.013185,0.503913,-0.863654,-0.013185,0.503913,-0.863654,-0.013185,0.503913,-0.863654,-0.013185,0.503913, + -0.034899,-0.995922,-0.083194,-0.034899,-0.995922,-0.083194,-0.034899,-0.995922,-0.083194,-0.034899,-0.995922,-0.083194, + 0.863012,0.013320,-0.505007,0.863012,0.013320,-0.505007,0.863012,0.013320,-0.505007,0.863012,0.013320,-0.505007, + -0.034940,0.997213,0.065919,-0.034940,0.997213,0.065919,-0.034940,0.997213,0.065919,-0.034940,0.997213,0.065919, + -0.863385,-0.063344,0.500554,-0.863385,-0.063344,0.500554,-0.863385,-0.063344,0.500554,-0.863385,-0.063344,0.500554, + 0.034941,-0.997213,-0.065924,0.034941,-0.997213,-0.065924,0.034941,-0.997213,-0.065924,0.034941,-0.997213,-0.065924, + 0.863387,0.063341,-0.500551,0.863387,0.063341,-0.500551,0.863387,0.063341,-0.500551,0.863387,0.063341,-0.500551, + -0.275071,0.807592,0.521662,-0.275071,0.807592,0.521662,-0.275071,0.807592,0.521662,-0.275071,0.807592,0.521662, + -0.864552,-0.324581,-0.383663,-0.864552,-0.324581,-0.383663,-0.864552,-0.324581,-0.383663,-0.864552,-0.324581,-0.383663, + -0.915628,-0.339517,-0.215300,-0.915628,-0.339517,-0.215300,-0.915628,-0.339517,-0.215300,-0.915628,-0.339517,-0.215300, + 0.507283,-0.813218,-0.285202,0.507283,-0.813218,-0.285202,0.507283,-0.813218,-0.285202,0.507283,-0.813218,-0.285202, + -0.906497,-0.294728,-0.302321,-0.906497,-0.294728,-0.302321,-0.906497,-0.294728,-0.302321,-0.906497,-0.294728,-0.302321, + -0.060121,0.913513,0.402342,-0.060121,0.913513,0.402342,-0.060121,0.913513,0.402342,-0.060121,0.913513,0.402342, + 0.875407,0.338504,0.345077,0.875407,0.338504,0.345077,0.875407,0.338504,0.345077,0.875407,0.338504,0.345077, + -0.119032,0.964693,0.234943,-0.119032,0.964693,0.234943,-0.119032,0.964693,0.234943,-0.119032,0.964693,0.234943, + 0.302704,-0.929605,-0.210250,0.302704,-0.929605,-0.210250,0.302704,-0.929605,-0.210250,0.302704,-0.929605,-0.210250, + 0.000557,0.983164,0.182727,0.000557,0.983164,0.182727,0.000557,0.983164,0.182727,0.000557,0.983164,0.182727, + -0.973859,-0.031951,-0.224896,-0.973859,-0.031951,-0.224896,-0.973859,-0.031951,-0.224896,-0.973859,-0.031951,-0.224896, + 0.972761,-0.111748,0.203096,0.972761,-0.111748,0.203096,0.972761,-0.111748,0.203096,0.972761,-0.111748,0.203096, + 0.962648,-0.060759,0.263851,0.962648,-0.060759,0.263851,0.962648,-0.060759,0.263851,0.962648,-0.060759,0.263851, + -0.962646,0.060710,-0.263869,-0.962646,0.060710,-0.263869,-0.962646,0.060710,-0.263869,-0.962646,0.060710,-0.263869, + -0.964181,0.051998,-0.260098,-0.964181,0.051998,-0.260098,-0.964181,0.051998,-0.260098,-0.964181,0.051998,-0.260098, + 0.524212,0.223598,-0.821709,0.524212,0.223598,-0.821709,0.524212,0.223598,-0.821709,-0.871983,0.099169,-0.479386, + -0.871983,0.099169,-0.479386,-0.871983,0.099169,-0.479386,-0.871983,0.099169,-0.479386,0.964182,-0.051991,0.260096, + 0.964182,-0.051991,0.260096,0.964182,-0.051991,0.260096,0.964182,-0.051991,0.260096,0.031035,0.997167,0.068522, + 0.031035,0.997167,0.068522,0.031035,0.997167,0.068522,0.031035,0.997167,0.068522,-0.031874,-0.997354,-0.065339, + -0.031874,-0.997354,-0.065339,-0.031874,-0.997354,-0.065339,-0.031874,-0.997354,-0.065339,-0.967648,0.047111,-0.247865, + -0.967648,0.047111,-0.247865,-0.967648,0.047111,-0.247865,-0.967648,0.047111,-0.247865,0.023490,0.995003,0.097038, + 0.023490,0.995003,0.097038,0.023490,0.995003,0.097038,0.023490,0.995003,0.097038,-0.025173,-0.995560,-0.090697, + -0.025173,-0.995560,-0.090697,-0.025173,-0.995560,-0.090697,-0.025173,-0.995560,-0.090697,-0.967649,0.047112,-0.247862, + -0.967649,0.047112,-0.247862,-0.967649,0.047112,-0.247862,-0.967649,0.047112,-0.247862,0.254864,0.066044,-0.964719, + 0.254864,0.066044,-0.964719,0.254864,0.066044,-0.964719,0.254864,0.066044,-0.964719,-0.966545,0.047400,-0.252079, + -0.966545,0.047400,-0.252079,-0.966545,0.047400,-0.252079,-0.966545,0.047400,-0.252079,-0.254860,-0.066044,0.964720, + -0.254860,-0.066044,0.964720,-0.254860,-0.066044,0.964720,-0.254860,-0.066044,0.964720,0.254863,0.066045,-0.964719, + 0.254863,0.066045,-0.964719,0.254863,0.066045,-0.964719,0.254863,0.066045,-0.964719,-0.966545,0.047400,-0.252079, + -0.966545,0.047400,-0.252079,-0.966545,0.047400,-0.252079,-0.966545,0.047400,-0.252079,-0.254862,-0.066045,0.964719, + -0.254862,-0.066045,0.964719,-0.254862,-0.066045,0.964719,-0.254862,-0.066045,0.964719,0.034737,0.997791,0.056630, + 0.034737,0.997791,0.056630,0.034737,0.997791,0.056630,0.034737,0.997791,0.056630,-0.035132,-0.997853,-0.055277, + -0.035132,-0.997853,-0.055277,-0.035132,-0.997853,-0.055277,-0.035132,-0.997853,-0.055277,-0.967000,0.046493,-0.250500, + -0.967000,0.046493,-0.250500,-0.967000,0.046493,-0.250500,-0.967000,0.046493,-0.250500,0.025107,0.995655,0.089676, + 0.025107,0.995655,0.089676,0.025107,0.995655,0.089676,0.025107,0.995655,0.089676,-0.025361,-0.995730,-0.088762, + -0.025361,-0.995730,-0.088762,-0.025361,-0.995730,-0.088762,-0.025361,-0.995730,-0.088762,-0.966950,0.048084,-0.250392, + -0.966950,0.048084,-0.250392,-0.966950,0.048084,-0.250392,-0.966950,0.048084,-0.250392,0.279360,0.064818,-0.957996, + 0.279360,0.064818,-0.957996,0.279360,0.064818,-0.957996,0.279360,0.064818,-0.957996,-0.966545,0.047401,-0.252078, + -0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.279359,-0.064817,0.957996, + -0.279359,-0.064817,0.957996,-0.279359,-0.064817,0.957996,-0.279359,-0.064817,0.957996,0.966999,-0.046492,0.250504, + 0.966999,-0.046492,0.250504,0.966999,-0.046492,0.250504,0.966999,-0.046492,0.250504,0.966545,-0.047401,0.252078, + 0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966951,-0.048081,0.250386, + 0.966951,-0.048081,0.250386,0.966951,-0.048081,0.250386,0.966951,-0.048081,0.250386,0.967650,-0.047110,0.247860, + 0.967650,-0.047110,0.247860,0.967650,-0.047110,0.247860,0.967650,-0.047110,0.247860,0.966546,-0.047401,0.252076, + 0.966546,-0.047401,0.252076,0.966546,-0.047401,0.252076,0.966546,-0.047401,0.252076,0.967647,-0.047110,0.247869, + 0.967647,-0.047110,0.247869,0.967647,-0.047110,0.247869,0.967647,-0.047110,0.247869,0.966545,-0.047400,0.252078, + 0.966545,-0.047400,0.252078,0.966545,-0.047400,0.252078,0.966545,-0.047400,0.252078,-0.038000,-0.997396,-0.061303, + -0.038000,-0.997396,-0.061303,-0.038000,-0.997396,-0.061303,-0.038000,-0.997396,-0.061303,0.038333,0.997536,0.058751, + 0.038333,0.997536,0.058751,0.038333,0.997536,0.058751,0.038333,0.997536,0.058751,0.993059,-0.045699,0.108374, + 0.993059,-0.045699,0.108374,0.993059,-0.045699,0.108374,0.993059,-0.045699,0.108374,-0.042308,-0.998674,-0.029336, + -0.042308,-0.998674,-0.029336,-0.042308,-0.998674,-0.029336,-0.042308,-0.998674,-0.029336,0.041063,0.998411,0.038579, + 0.041063,0.998411,0.038579,0.041063,0.998411,0.038579,0.041063,0.998411,0.038579,0.993056,-0.045695,0.108408, + 0.993056,-0.045695,0.108408,0.993056,-0.045695,0.108408,0.993056,-0.045695,0.108408,0.134270,0.050266,-0.989669, + 0.134270,0.050266,-0.989669,0.134270,0.050266,-0.989669,0.134270,0.050266,-0.989669,0.994922,-0.077295,0.064467, + 0.994922,-0.077295,0.064467,0.994922,-0.077295,0.064467,0.994922,-0.077295,0.064467,-0.134314,-0.051309,0.989610, + -0.134314,-0.051309,0.989610,-0.134314,-0.051309,0.989610,-0.134314,-0.051309,0.989610,0.134341,0.051958,-0.989572, + 0.134341,0.051958,-0.989572,0.134341,0.051958,-0.989572,0.134341,0.051958,-0.989572,0.994852,-0.078252,0.064397, + 0.994852,-0.078252,0.064397,0.994852,-0.078252,0.064397,0.994852,-0.078252,0.064397,-0.134305,-0.051089,0.989622, + -0.134305,-0.051089,0.989622,-0.134305,-0.051089,0.989622,-0.134305,-0.051089,0.989622,-0.026870,-0.995926,-0.086076, + -0.026870,-0.995926,-0.086076,-0.026870,-0.995926,-0.086076,-0.026870,-0.995926,-0.086076,0.026711,0.995863,0.086856, + 0.026711,0.995863,0.086856,0.026711,0.995863,0.086856,0.026711,0.995863,0.086856,0.966105,-0.046663,0.253898, + 0.966105,-0.046663,0.253898,0.966105,-0.046663,0.253898,0.966105,-0.046663,0.253898,-0.033420,-0.997986,-0.053911, + -0.033420,-0.997986,-0.053911,-0.033420,-0.997986,-0.053911,-0.033420,-0.997986,-0.053911,0.033110,0.997911,0.055473, + 0.033110,0.997911,0.055473,0.033110,0.997911,0.055473,0.033110,0.997911,0.055473,0.966053,-0.048379,0.253773, + 0.966053,-0.048379,0.253773,0.966053,-0.048379,0.253773,0.966053,-0.048379,0.253773,0.199340,0.068640,-0.977523, + 0.199340,0.068640,-0.977523,0.199340,0.068640,-0.977523,0.199340,0.068640,-0.977523,0.966546,-0.047399,0.252077, + 0.966546,-0.047399,0.252077,0.966546,-0.047399,0.252077,0.966546,-0.047399,0.252077,-0.010457,0.974673,0.223390, + -0.010457,0.974673,0.223390,-0.010457,0.974673,0.223390,-0.010457,0.974673,0.223390,0.966546,-0.047403,0.252075, + 0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075,-0.029081,-0.996690,-0.075912, + -0.029081,-0.996690,-0.075912,-0.029081,-0.996690,-0.075912,-0.029081,-0.996690,-0.075912,-0.966545,0.047401,-0.252078, + -0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,0.254839,0.066045,-0.964725, + 0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,-0.254846,-0.066045,0.964724, + -0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,0.029084,0.996690,0.075918, + 0.029084,0.996690,0.075918,0.029084,0.996690,0.075918,0.029084,0.996690,0.075918,0.966545,-0.047401,0.252080, + 0.966545,-0.047401,0.252080,0.966545,-0.047401,0.252080,0.966545,-0.047401,0.252080,-0.019909,-0.993675,-0.110516, + -0.019909,-0.993675,-0.110516,-0.019909,-0.993675,-0.110516,-0.019909,-0.993675,-0.110516,-0.966546,0.047402,-0.252076, + -0.966546,0.047402,-0.252076,-0.966546,0.047402,-0.252076,-0.966546,0.047402,-0.252076,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.106066,0.982766,0.151395, + 0.106066,0.982766,0.151395,0.106066,0.982766,0.151395,0.106066,0.982766,0.151395,0.976084,-0.086668,-0.199369, + 0.976084,-0.086668,-0.199369,0.976084,-0.086668,-0.199369,0.976084,-0.086668,-0.199369,-0.106067,-0.982771,-0.151363, + -0.106067,-0.982771,-0.151363,-0.106067,-0.982771,-0.151363,-0.106067,-0.982771,-0.151363,-0.976084,0.086670,0.199368, + -0.976084,0.086670,0.199368,-0.976084,0.086670,0.199368,-0.976084,0.086670,0.199368,-0.766142,0.558653,0.317701, + -0.766142,0.558653,0.317701,-0.766142,0.558653,0.317701,-0.766142,0.558653,0.317701,0.247082,-0.254007,0.935110, + 0.247082,-0.254007,0.935110,0.247082,-0.254007,0.935110,0.247082,-0.254007,0.935110,0.029080,0.996690,0.075923, + 0.029080,0.996690,0.075923,0.029080,0.996690,0.075923,0.029080,0.996690,0.075923,0.966546,-0.047402,0.252077, + 0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077,0.014360,-0.971235,-0.237691, + 0.014360,-0.971235,-0.237691,0.014360,-0.971235,-0.237691,0.014360,-0.971235,-0.237691,-0.966546,0.047402,-0.252077, + -0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077,0.249821,-0.048711,-0.967066, + 0.249821,-0.048711,-0.967066,0.249821,-0.048711,-0.967066,0.249821,-0.048711,-0.967066,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,0.029083,0.996690,0.075911, + 0.029083,0.996690,0.075911,0.029083,0.996690,0.075911,0.029083,0.996690,0.075911,0.966546,-0.047405,0.252075, + 0.966546,-0.047405,0.252075,0.966546,-0.047405,0.252075,0.966546,-0.047405,0.252075,0.029083,0.996690,0.075911, + 0.029083,0.996690,0.075911,0.029083,0.996690,0.075911,0.029083,0.996690,0.075911,-0.966546,0.047403,-0.252077, + -0.966546,0.047403,-0.252077,-0.966546,0.047403,-0.252077,-0.966546,0.047403,-0.252077,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.966545,-0.047403,0.252079, + 0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,-0.966546,0.047402,-0.252076, + -0.966546,0.047402,-0.252076,-0.966546,0.047402,-0.252076,-0.966546,0.047402,-0.252076,0.246777,-0.096133,-0.964292, + 0.246777,-0.096133,-0.964292,0.246777,-0.096133,-0.964292,0.246777,-0.096133,-0.964292,-0.254839,-0.066044,0.964725, + -0.254839,-0.066044,0.964725,-0.254839,-0.066044,0.964725,-0.254839,-0.066044,0.964725,0.966545,-0.047403,0.252077, + 0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,0.003144,-0.980515,-0.196420, + 0.003144,-0.980515,-0.196420,0.003144,-0.980515,-0.196420,0.003144,-0.980515,-0.196420,0.029087,0.996690,0.075910, + 0.029087,0.996690,0.075910,0.029087,0.996690,0.075910,0.029087,0.996690,0.075910,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,0.966545,-0.047403,0.252077, + 0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,-0.014164,-0.991138,-0.132080, + -0.014164,-0.991138,-0.132080,-0.014164,-0.991138,-0.132080,-0.014164,-0.991138,-0.132080,0.043897,0.998846,0.019507, + 0.043897,0.998846,0.019507,0.043897,0.998846,0.019507,0.043897,0.998846,0.019507,0.254851,0.066046,-0.964722, + 0.254851,0.066046,-0.964722,0.254851,0.066046,-0.964722,0.254851,0.066046,-0.964722,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,0.958124,-0.049441,0.282054, + 0.958124,-0.049441,0.282054,0.958124,-0.049441,0.282054,0.958124,-0.049441,0.282054,-0.038163,-0.998413,-0.041414, + -0.038163,-0.998413,-0.041414,-0.038163,-0.998413,-0.041414,-0.038163,-0.998413,-0.041414,0.029076,0.996690,0.075919, + 0.029076,0.996690,0.075919,0.029076,0.996690,0.075919,0.029076,0.996690,0.075919,0.254840,0.066046,-0.964725, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,-0.254846,-0.066046,0.964724, + -0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.966545,0.047402,-0.252078, + -0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,0.029081,0.996690,0.075918, + 0.029081,0.996690,0.075918,0.029081,0.996690,0.075918,0.029081,0.996690,0.075918,-0.002798,-0.984667,-0.174424, + -0.002798,-0.984667,-0.174424,-0.002798,-0.984667,-0.174424,-0.002798,-0.984667,-0.174424,0.254839,0.066045,-0.964725, + 0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.966545,0.047401,-0.252078, + -0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.000331,0.982550,0.186001, + -0.000331,0.982550,0.186001,-0.000331,0.982550,0.186001,-0.000331,0.982550,0.186001,0.002423,-0.981044,-0.193767, + 0.002423,-0.981044,-0.193767,0.002423,-0.981044,-0.193767,0.002423,-0.981044,-0.193767,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,-0.253312,-0.022101,0.967132, + -0.253312,-0.022101,0.967132,-0.253312,-0.022101,0.967132,-0.253312,-0.022101,0.967132,-0.341735,-0.606861,0.717591, + -0.341735,-0.606861,0.717591,-0.341735,-0.606861,0.717591,-0.341735,-0.606861,0.717591,0.868633,-0.469032,0.159644, + 0.868633,-0.469032,0.159644,0.868633,-0.469032,0.159644,0.868633,-0.469032,0.159644,-0.210002,0.813106,0.542916, + -0.210002,0.813106,0.542916,-0.210002,0.813106,0.542916,-0.210002,0.813106,0.542916,-0.384568,-0.663092,0.642197, + -0.384568,-0.663092,0.642197,-0.384568,-0.663092,0.642197,-0.384568,-0.663092,0.642197,-0.627891,-0.355299,-0.692471, + -0.627891,-0.355299,-0.692471,-0.627891,-0.355299,-0.692471,-0.627891,-0.355299,-0.692471,-0.428284,-0.580640,0.692409, + -0.428284,-0.580640,0.692409,-0.428284,-0.580640,0.692409,-0.428284,-0.580640,0.692409,-0.867294,0.472830,-0.155671, + -0.867294,0.472830,-0.155671,-0.867294,0.472830,-0.155671,-0.867294,0.472830,-0.155671,-0.425164,-0.546616,0.721420, + -0.425164,-0.546616,0.721420,-0.425164,-0.546616,0.721420,-0.425164,-0.546616,0.721420,0.867357,-0.472626,0.155937, + 0.867357,-0.472626,0.155937,0.867357,-0.472626,0.155937,0.867357,-0.472626,0.155937,0.248139,0.662058,0.707182, + 0.248139,0.662058,0.707182,0.248139,0.662058,0.707182,0.248139,0.662058,0.707182,-0.448089,-0.568457,0.689981, + -0.448089,-0.568457,0.689981,-0.448089,-0.568457,0.689981,-0.448089,-0.568457,0.689981,-0.247950,-0.662145,-0.707166, + -0.247950,-0.662145,-0.707166,-0.247950,-0.662145,-0.707166,-0.247950,-0.662145,-0.707166,-0.993391,0.023018,-0.112451, + -0.993391,0.023018,-0.112451,-0.993391,0.023018,-0.112451,-0.993391,0.023018,-0.112451,-0.981997,0.020376,-0.187793, + -0.981997,0.020376,-0.187793,-0.981997,0.020376,-0.187793,-0.981997,0.020376,-0.187793,-0.993482,0.022892,-0.111668, + -0.993482,0.022892,-0.111668,-0.993482,0.022892,-0.111668,-0.993482,0.022892,-0.111668,-0.982029,0.019398,-0.187730, + -0.982029,0.019398,-0.187730,-0.982029,0.019398,-0.187730,-0.982029,0.019398,-0.187730,-0.159547,-0.022775,0.986928, + -0.159547,-0.022775,0.986928,-0.159547,-0.022775,0.986928,-0.159547,-0.022775,0.986928,0.993391,-0.023018,0.112444, + 0.993391,-0.023018,0.112444,0.993391,-0.023018,0.112444,0.993391,-0.023018,0.112444,0.159476,0.018061,-0.987037, + 0.159476,0.018061,-0.987037,0.159476,0.018061,-0.987037,0.159476,0.018061,-0.987037,-0.142388,-0.017440,0.989657, + -0.142388,-0.017440,0.989657,-0.142388,-0.017440,0.989657,-0.142388,-0.017440,0.989657,0.993482,-0.022892,0.111670, + 0.993482,-0.022892,0.111670,0.993482,-0.022892,0.111670,0.993482,-0.022892,0.111670,0.142452,0.021681,-0.989564, + 0.142452,0.021681,-0.989564,0.142452,0.021681,-0.989564,0.142452,0.021681,-0.989564,0.988128,-0.020256,0.152294, + 0.988128,-0.020256,0.152294,0.988128,-0.020256,0.152294,0.988128,-0.020256,0.152294,0.018970,0.999797,-0.006782, + 0.018970,0.999797,-0.006782,0.018970,0.999797,-0.006782,0.018970,0.999797,-0.006782,-0.019371,-0.999770,0.009231, + -0.019371,-0.999770,0.009231,-0.019371,-0.999770,0.009231,-0.019371,-0.999770,0.009231,0.988154,-0.019234,0.152259, + 0.988154,-0.019234,0.152259,0.988154,-0.019234,0.152259,0.988154,-0.019234,0.152259,0.014849,0.999678,0.020595, + 0.014849,0.999678,0.020595,0.014849,0.999678,0.020595,0.014849,0.999678,0.020595,-0.015521,-0.999747,-0.016256, + -0.015521,-0.999747,-0.016256,-0.015521,-0.999747,-0.016256,-0.015521,-0.999747,-0.016256,-0.993059,0.045694,-0.108377, + -0.993059,0.045694,-0.108377,-0.993059,0.045694,-0.108377,-0.993059,0.045694,-0.108377,-0.994922,0.077295,-0.064463, + -0.994922,0.077295,-0.064463,-0.994922,0.077295,-0.064463,-0.994922,0.077295,-0.064463,-0.993056,0.045702,-0.108403, + -0.993056,0.045702,-0.108403,-0.993056,0.045702,-0.108403,-0.993056,0.045702,-0.108403,-0.994852,0.078253,-0.064395, + -0.994852,0.078253,-0.064395,-0.994852,0.078253,-0.064395,-0.994852,0.078253,-0.064395,-0.006321,0.997757,0.066642, + -0.006321,0.997757,0.066642,-0.006321,0.997757,0.066642,-0.006321,0.997757,0.066642,-0.137843,-0.984995,-0.103845, + -0.137843,-0.984995,-0.103845,-0.137843,-0.984995,-0.103845,-0.137843,-0.984995,-0.103845,0.300202,0.063734,-0.951744, + 0.300202,0.063734,-0.951744,0.300202,0.063734,-0.951744,0.300202,0.063734,-0.951744,-0.300203,-0.063735,0.951744, + -0.300203,-0.063735,0.951744,-0.300203,-0.063735,0.951744,-0.300203,-0.063735,0.951744,0.029086,0.996691,0.075896, + 0.029086,0.996691,0.075896,0.029086,0.996691,0.075896,0.029086,0.996691,0.075896,-0.029082,-0.996691,-0.075896, + -0.029082,-0.996691,-0.075896,-0.029082,-0.996691,-0.075896,-0.029082,-0.996691,-0.075896,0.292226,0.064154,-0.954195, + 0.292226,0.064154,-0.954195,0.292226,0.064154,-0.954195,0.292226,0.064154,-0.954195,-0.292225,-0.064154,0.954195, + -0.292225,-0.064154,0.954195,-0.292225,-0.064154,0.954195,-0.292225,-0.064154,0.954195,0.024165,0.992806,0.117268, + 0.024165,0.992806,0.117268,0.024165,0.992806,0.117268,0.024165,0.992806,0.117268,-0.018397,-0.993055,-0.116200, + -0.018397,-0.993055,-0.116200,-0.018397,-0.993055,-0.116200,-0.018397,-0.993055,-0.116200,0.238252,0.096651,-0.966382, + 0.238252,0.096651,-0.966382,0.238252,0.096651,-0.966382,0.238252,0.096651,-0.966382,-0.238095,-0.096656,0.966420, + -0.238095,-0.096656,0.966420,-0.238095,-0.096656,0.966420,-0.238095,-0.096656,0.966420,-0.122054,0.937927,0.324647, + -0.122054,0.937927,0.324647,-0.122054,0.937927,0.324647,-0.122054,0.937927,0.324647,-0.073966,-0.924364,-0.374273, + -0.073966,-0.924364,-0.374273,-0.073966,-0.924364,-0.374273,-0.073966,-0.924364,-0.374273,0.168439,0.348481,-0.922057, + 0.168439,0.348481,-0.922057,0.168439,0.348481,-0.922057,0.168439,0.348481,-0.922057,0.202291,-0.024337,-0.979023, + 0.202291,-0.024337,-0.979023,0.202291,-0.024337,-0.979023,0.202291,-0.024337,-0.979023,-0.886354,0.044968,-0.460820, + -0.886354,0.044968,-0.460820,-0.886354,0.044968,-0.460820,-0.886354,0.044968,-0.460820,0.211049,0.151109,-0.965725, + 0.211049,0.151109,-0.965725,0.211049,0.151109,-0.965725,0.211049,0.151109,-0.965725,0.978855,-0.021462,0.203428, + 0.978855,-0.021462,0.203428,0.978855,-0.021462,0.203428,0.978855,-0.021462,0.203428,0.371242,-0.928124,-0.027654, + 0.371242,-0.928124,-0.027654,0.371242,-0.928124,-0.027654,0.371242,-0.928124,-0.027654,-0.373265,0.926768,0.042118, + -0.373265,0.926768,0.042118,-0.373265,0.926768,0.042118,-0.373265,0.926768,0.042118,0.923584,0.265560,0.276533, + 0.923584,0.265560,0.276533,0.923584,0.265560,0.276533,0.923584,0.265560,0.276533,-0.983489,-0.029423,-0.178560, + -0.983489,-0.029423,-0.178560,-0.983489,-0.029423,-0.178560,-0.983489,-0.029423,-0.178560,0.217337,-0.934587,-0.281625, + 0.217337,-0.934587,-0.281625,0.217337,-0.934587,-0.281625,0.217337,-0.934587,-0.281625,0.982648,0.028474,0.183282, + 0.982648,0.028474,0.183282,0.982648,0.028474,0.183282,0.982648,0.028474,0.183282,0.011852,0.998752,0.048523, + 0.011852,0.998752,0.048523,0.011852,0.998752,0.048523,0.011852,0.998752,0.048523,-0.230776,0.927016,0.295608, + -0.230776,0.927016,0.295608,-0.230776,0.927016,0.295608,-0.230776,0.927016,0.295608,0.580915,-0.090140,0.808958, + 0.580915,-0.090140,0.808958,0.580915,-0.090140,0.808958,0.580915,-0.090140,0.808958,-0.006316,-0.998080,-0.061619, + -0.006316,-0.998080,-0.061619,-0.006316,-0.998080,-0.061619,-0.006316,-0.998080,-0.061619,-0.575348,0.092615,-0.812649, + -0.575348,0.092615,-0.812649,-0.575348,0.092615,-0.812649,-0.575348,0.092615,-0.812649,-0.729349,-0.474997,0.492370, + -0.729349,-0.474997,0.492370,-0.729349,-0.474997,0.492370,-0.729349,-0.474997,0.492370,-0.933737,-0.309975,-0.179025, + -0.933737,-0.309975,-0.179025,-0.933737,-0.309975,-0.179025,-0.933737,-0.309975,-0.179025,-0.923883,-0.288669,-0.251219, + -0.923883,-0.288669,-0.251219,-0.923883,-0.288669,-0.251219,-0.923883,-0.288669,-0.251219,-0.287405,0.538776,0.791908, + -0.287405,0.538776,0.791908,-0.287405,0.538776,0.791908,-0.287405,0.538776,0.791908,0.933687,0.309488,0.180130, + 0.933687,0.309488,0.180130,0.933687,0.309488,0.180130,0.933687,0.309488,0.180130,0.288232,-0.540169,-0.790658, + 0.288232,-0.540169,-0.790658,0.288232,-0.540169,-0.790658,0.288232,-0.540169,-0.790658,0.422892,-0.425365,0.800142, + 0.422892,-0.425365,0.800142,0.422892,-0.425365,0.800142,0.422892,-0.425365,0.800142,0.218432,0.494257,-0.841426, + 0.218432,0.494257,-0.841426,0.218432,0.494257,-0.841426,0.218432,0.494257,-0.841426,-0.883708,0.169349,-0.436327, + -0.883708,0.169349,-0.436327,-0.883708,0.169349,-0.436327,-0.883708,0.169349,-0.436327,-0.168437,-0.348476,0.922059, + -0.168437,-0.348476,0.922059,-0.168437,-0.348476,0.922059,-0.168437,-0.348476,0.922059,-0.376469,-0.336551,0.863136, + -0.376469,-0.336551,0.863136,-0.376469,-0.336551,0.863136,-0.376469,-0.336551,0.863136,-0.128734,0.935067,0.330267, + -0.128734,0.935067,0.330267,-0.128734,0.935067,0.330267,-0.128734,0.935067,0.330267,0.966545,-0.047404,0.252080, + 0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080,0.051833,-0.951808,-0.302284, + 0.051833,-0.951808,-0.302284,0.051833,-0.951808,-0.302284,0.051833,-0.951808,-0.302284,-0.966545,0.047401,-0.252078, + -0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,-0.966545,0.047401,-0.252078,0.292623,0.064132,-0.954075, + 0.292623,0.064132,-0.954075,0.292623,0.064132,-0.954075,0.292623,0.064132,-0.954075,-0.289608,-0.064286,0.954984, + -0.289608,-0.064286,0.954984,-0.289608,-0.064286,0.954984,-0.289608,-0.064286,0.954984,-0.060849,0.978343,0.197842, + -0.060849,0.978343,0.197842,-0.060849,0.978343,0.197842,-0.060849,0.978343,0.197842,0.011884,-0.849790,-0.526988, + 0.011884,-0.849790,-0.526988,0.011884,-0.849790,-0.526988,0.011884,-0.849790,-0.526988,0.009281,0.075675,-0.997089, + 0.009281,0.075675,-0.997089,0.009281,0.075675,-0.997089,0.009281,0.075675,-0.997089,-0.006665,-0.075751,0.997105, + -0.006665,-0.075751,0.997105,-0.006665,-0.075751,0.997105,-0.006665,-0.075751,0.997105,-0.403885,-0.410269,-0.817653, + -0.403885,-0.410269,-0.817653,-0.403885,-0.410269,-0.817653,-0.403885,-0.410269,-0.817653,-0.492757,0.512300,0.703377, + -0.492757,0.512300,0.703377,-0.492757,0.512300,0.703377,-0.492757,0.512300,0.703377,-0.256203,-0.844992,0.469413, + -0.256203,-0.844992,0.469413,-0.256203,-0.844992,0.469413,-0.256203,-0.844992,0.469413,0.114602,0.864600,-0.489218, + 0.114602,0.864600,-0.489218,0.114602,0.864600,-0.489218,0.114602,0.864600,-0.489218,0.330807,-0.528355,-0.781926, + 0.330807,-0.528355,-0.781926,0.330807,-0.528355,-0.781926,0.330807,-0.528355,-0.781926,-0.346456,0.527570,0.775653, + -0.346456,0.527570,0.775653,-0.346456,0.527570,0.775653,-0.346456,0.527570,0.775653,0.863863,0.443637,0.238593, + 0.863863,0.443637,0.238593,0.863863,0.443637,0.238593,0.863863,0.443637,0.238593,0.270971,-0.785380,-0.556554, + 0.270971,-0.785380,-0.556554,0.270971,-0.785380,-0.556554,0.270971,-0.785380,-0.556554,-0.165704,-0.649758,0.741860, + -0.165704,-0.649758,0.741860,-0.165704,-0.649758,0.741860,-0.165704,-0.649758,0.741860,-0.160360,0.390845,0.906380, + -0.160360,0.390845,0.906380,-0.160360,0.390845,0.906380,-0.160360,0.390845,0.906380,-0.956394,-0.236048,-0.172021, + -0.956394,-0.236048,-0.172021,-0.956394,-0.236048,-0.172021,-0.956394,-0.236048,-0.172021,-0.949586,-0.234097,-0.208528, + -0.949586,-0.234097,-0.208528,-0.949586,-0.234097,-0.208528,-0.949586,-0.234097,-0.208528,0.957157,0.227673,0.178929, + 0.957157,0.227673,0.178929,0.957157,0.227673,0.178929,0.957157,0.227673,0.178929,-0.382782,0.917253,0.110111, + -0.382782,0.917253,0.110111,-0.382782,0.917253,0.110111,-0.382782,0.917253,0.110111,0.166854,-0.974735,-0.148494, + 0.166854,-0.974735,-0.148494,0.166854,-0.974735,-0.148494,0.166854,-0.974735,-0.148494,0.873393,0.417585,0.250617, + 0.873393,0.417585,0.250617,0.873393,0.417585,0.250617,0.873393,0.417585,0.250617,0.186308,-0.431374,-0.882727, + 0.186308,-0.431374,-0.882727,0.186308,-0.431374,-0.882727,0.186308,-0.431374,-0.882727,0.513033,-0.563197,0.647770, + 0.513033,-0.563197,0.647770,0.513033,-0.563197,0.647770,0.513033,-0.563197,0.647770,0.040820,0.929377,0.366867, + 0.040820,0.929377,0.366867,0.040820,0.929377,0.366867,0.040820,0.929377,0.366867,0.258884,0.065847,-0.963662, + 0.258884,0.065847,-0.963662,0.258884,0.065847,-0.963662,0.258884,0.065847,-0.963662,-0.255673,-0.066003,0.964508, + -0.255673,-0.066003,0.964508,-0.255673,-0.066003,0.964508,-0.255673,-0.066003,0.964508,0.176557,-0.851320,-0.494047, + 0.176557,-0.851320,-0.494047,0.176557,-0.851320,-0.494047,0.176557,-0.851320,-0.494047,-0.257453,-0.384497,0.886499, + -0.257453,-0.384497,0.886499,-0.257453,-0.384497,0.886499,-0.257453,-0.384497,0.886499,-0.227592,-0.508008,0.830740, + -0.227592,-0.508008,0.830740,-0.227592,-0.508008,0.830740,-0.227592,-0.508008,0.830740,0.036540,0.979734,0.196945, + 0.036540,0.979734,0.196945,0.036540,0.979734,0.196945,0.036540,0.979734,0.196945,-0.010557,-0.958499,-0.284900, + -0.010557,-0.958499,-0.284900,-0.010557,-0.958499,-0.284900,-0.010557,-0.958499,-0.284900,-0.212808,0.333573,-0.918391, + -0.212808,0.333573,-0.918391,-0.212808,0.333573,-0.918391,-0.212808,0.333573,-0.918391,-0.056106,0.970860,0.232987, + -0.056106,0.970860,0.232987,-0.056106,0.970860,0.232987,-0.056106,0.970860,0.232987,0.489722,0.390184,-0.779698, + 0.489722,0.390184,-0.779698,0.489722,0.390184,-0.779698,0.489722,0.390184,-0.779698,0.045037,-0.940838,-0.335850, + 0.045037,-0.940838,-0.335850,0.045037,-0.940838,-0.335850,0.045037,-0.940838,-0.335850,-0.919914,0.297285,-0.255695, + -0.919914,0.297285,-0.255695,-0.919914,0.297285,-0.255695,-0.919914,0.297285,-0.255695,-0.371382,-0.698407,0.611803, + -0.371382,-0.698407,0.611803,-0.371382,-0.698407,0.611803,-0.371382,-0.698407,0.611803,0.303292,0.593798,-0.745264, + 0.303292,0.593798,-0.745264,0.303292,0.593798,-0.745264,0.303292,0.593798,-0.745264,0.907867,-0.315574,0.276025, + 0.907867,-0.315574,0.276025,0.907867,-0.315574,0.276025,0.907867,-0.315574,0.276025,-0.389875,-0.563384,0.728420, + -0.389875,-0.563384,0.728420,-0.389875,-0.563384,0.728420,-0.389875,-0.563384,0.728420,0.371390,0.698406,-0.611799, + 0.371390,0.698406,-0.611799,0.371390,0.698406,-0.611799,0.371390,0.698406,-0.611799,0.917063,-0.137550,0.374267, + 0.917063,-0.137550,0.374267,0.917063,-0.137550,0.374267,0.917063,-0.137550,0.374267,-0.917062,0.137551,-0.374268, + -0.917062,0.137551,-0.374268,-0.917062,0.137551,-0.374268,-0.917062,0.137551,-0.374268,0.005521,-0.885883,-0.463876, + 0.005521,-0.885883,-0.463876,0.005521,-0.885883,-0.463876,0.005521,-0.885883,-0.463876,0.219763,0.482004,-0.848161, + 0.219763,0.482004,-0.848161,0.219763,0.482004,-0.848161,0.219763,0.482004,-0.848161,0.973439,-0.024240,0.227660, + 0.973439,-0.024240,0.227660,0.973439,-0.024240,0.227660,0.973439,-0.024240,0.227660,-0.319483,-0.196309,0.927035, + -0.319483,-0.196309,0.927035,-0.319483,-0.196309,0.927035,-0.319483,-0.196309,0.927035,-0.205224,-0.715695,0.667581, + -0.205224,-0.715695,0.667581,-0.205224,-0.715695,0.667581,-0.205224,-0.715695,0.667581,-0.215346,-0.044571,0.975520, + -0.215346,-0.044571,0.975520,-0.215346,-0.044571,0.975520,-0.215346,-0.044571,0.975520,-0.050568,-0.996334,0.069001, + -0.050568,-0.996334,0.069001,-0.050568,-0.996334,0.069001,-0.050568,-0.996334,0.069001,-0.197796,-0.230719,0.952704, + -0.197796,-0.230719,0.952704,-0.197796,-0.230719,0.952704,-0.197796,-0.230719,0.952704,-0.078554,-0.995456,0.053812, + -0.078554,-0.995456,0.053812,-0.078554,-0.995456,0.053812,-0.078554,-0.995456,0.053812,-0.194467,-0.266663,0.943967, + -0.194467,-0.266663,0.943967,-0.194467,-0.266663,0.943967,-0.194467,-0.266663,0.943967,-0.076017,-0.993880,0.080148, + -0.076017,-0.993880,0.080148,-0.076017,-0.993880,0.080148,-0.076017,-0.993880,0.080148,0.404179,0.029912,-0.914191, + 0.404179,0.029912,-0.914191,0.404179,0.029912,-0.914191,0.404179,0.029912,-0.914191,0.897958,-0.061393,0.435778, + 0.897958,-0.061393,0.435778,0.897958,-0.061393,0.435778,0.897958,-0.061393,0.435778,-0.898027,0.059083,-0.435955, + -0.898027,0.059083,-0.435955,-0.898027,0.059083,-0.435955,-0.898027,0.059083,-0.435955,0.253948,0.038897,-0.966435, + 0.253948,0.038897,-0.966435,0.253948,0.038897,-0.966435,0.253948,0.038897,-0.966435,0.965930,-0.064759,0.250570, + 0.965930,-0.064759,0.250570,0.965930,-0.064759,0.250570,0.965930,-0.064759,0.250570,-0.966545,0.047402,-0.252078, + -0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.254162,-0.044931,0.966117, + -0.254162,-0.044931,0.966117,-0.254162,-0.044931,0.966117,-0.254162,-0.044931,0.966117,0.254183,0.045296,-0.966095, + 0.254183,0.045296,-0.966095,0.254183,0.045296,-0.966095,0.254183,0.045296,-0.966095,0.966546,-0.047402,0.252077, + 0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077,-0.966545,0.047402,-0.252077, + -0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077,0.253419,0.024743,-0.967040, + 0.253419,0.024743,-0.967040,0.253419,0.024743,-0.967040,0.253419,0.024743,-0.967040,0.966545,-0.047401,0.252077, + 0.966545,-0.047401,0.252077,0.966545,-0.047401,0.252077,0.966545,-0.047401,0.252077,-0.966545,0.047402,-0.252077, + -0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077,0.253321,0.022253,-0.967126, + 0.253321,0.022253,-0.967126,0.253321,0.022253,-0.967126,0.253321,0.022253,-0.967126,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,-0.966545,0.047402,-0.252080, + -0.966545,0.047402,-0.252080,-0.966545,0.047402,-0.252080,-0.966545,0.047402,-0.252080,-0.253322,-0.022253,0.967126, + -0.253322,-0.022253,0.967126,-0.253322,-0.022253,0.967126,-0.253322,-0.022253,0.967126,-0.202453,-0.369183,0.907037, + -0.202453,-0.369183,0.907037,-0.202453,-0.369183,0.907037,-0.202453,-0.369183,0.907037,-0.027038,-0.996930,-0.073481, + -0.027038,-0.996930,-0.073481,-0.027038,-0.996930,-0.073481,-0.027038,-0.996930,-0.073481,-0.223406,-0.427947,0.875757, + -0.223406,-0.427947,0.875757,-0.223406,-0.427947,0.875757,-0.223406,-0.427947,0.875757,-0.088399,-0.975319,0.202331, + -0.088399,-0.975319,0.202331,-0.088399,-0.975319,0.202331,-0.088399,-0.975319,0.202331,-0.070479,0.996419,-0.046718, + -0.070479,0.996419,-0.046718,-0.070479,0.996419,-0.046718,-0.070479,0.996419,-0.046718,0.046873,0.568453,-0.821380, + 0.046873,0.568453,-0.821380,0.046873,0.568453,-0.821380,0.046873,0.568453,-0.821380,0.971685,-0.050039,0.230921, + 0.971685,-0.050039,0.230921,0.971685,-0.050039,0.230921,0.971685,-0.050039,0.230921,0.941717,-0.095539,0.322555, + 0.941717,-0.095539,0.322555,0.941717,-0.095539,0.322555,0.941717,-0.095539,0.322555,0.941717,-0.095539,0.322555, + -0.923117,0.140260,-0.358026,-0.923117,0.140260,-0.358026,-0.923117,0.140260,-0.358026,-0.953524,0.015054,-0.300942, + -0.953524,0.015054,-0.300942,-0.953524,0.015054,-0.300942,-0.953524,0.015054,-0.300942,-0.919623,0.075052,-0.385566, + -0.919623,0.075052,-0.385566,-0.919623,0.075052,-0.385566,-0.919623,0.075052,-0.385566,0.982117,0.140750,0.125046, + 0.982117,0.140750,0.125046,0.982117,0.140750,0.125046,0.984187,-0.042700,0.171909,0.984187,-0.042700,0.171909, + 0.984187,-0.042700,0.171909,0.984187,-0.042700,0.171909,0.996983,-0.025421,0.073337,0.996983,-0.025421,0.073337, + 0.996983,-0.025421,0.073337,0.996983,-0.025421,0.073337,0.988956,-0.041180,0.142371,0.988956,-0.041180,0.142371, + 0.988956,-0.041180,0.142371,0.082464,-0.996594,-0.000516,0.082464,-0.996594,-0.000516,0.082464,-0.996594,-0.000516, + 0.082464,-0.996594,-0.000516,0.947394,-0.059649,0.314463,0.947394,-0.059649,0.314463,0.947394,-0.059649,0.314463, + 0.947394,-0.059649,0.314463,0.908149,0.007023,0.418589,0.908149,0.007023,0.418589,0.908149,0.007023,0.418589, + 0.949592,-0.093349,0.299267,0.949592,-0.093349,0.299267,0.949592,-0.093349,0.299267,0.949592,-0.093349,0.299267, + 0.929311,-0.089691,0.358242,0.929311,-0.089691,0.358242,0.929311,-0.089691,0.358242,0.929311,-0.089691,0.358242, + 0.942397,-0.063270,0.328457,0.942397,-0.063270,0.328457,0.942397,-0.063270,0.328457,0.942397,-0.063270,0.328457, + -0.992037,-0.088411,-0.089696,-0.992037,-0.088411,-0.089696,-0.992037,-0.088411,-0.089696,-0.975145,0.036190,-0.218594, + -0.975145,0.036190,-0.218594,-0.975145,0.036190,-0.218594,-0.975145,0.036190,-0.218594,-0.998748,0.020510,-0.045624, + -0.998748,0.020510,-0.045624,-0.998748,0.020510,-0.045624,-0.998748,0.020510,-0.045624,-0.029081,-0.996689,-0.075928, + -0.029081,-0.996689,-0.075928,-0.029081,-0.996689,-0.075928,-0.029081,-0.996689,-0.075928,-0.138843,-0.018263,0.990146, + -0.138843,-0.018263,0.990146,-0.138843,-0.018263,0.990146,-0.138843,-0.018263,0.990146,-0.208310,-0.414474,0.885900, + -0.208310,-0.414474,0.885900,-0.208310,-0.414474,0.885900,-0.208310,-0.414474,0.885900,0.017407,0.992804,0.118480, + 0.017407,0.992804,0.118480,0.017407,0.992804,0.118480,0.017407,0.992804,0.118480,0.538904,0.173937,-0.824214, + 0.538904,0.173937,-0.824214,0.538904,0.173937,-0.824214,0.538904,0.173937,-0.824214,-0.183165,-0.070947,0.980519, + -0.183165,-0.070947,0.980519,-0.183165,-0.070947,0.980519,-0.183165,-0.070947,0.980519,0.021345,0.994224,0.105185, + 0.021345,0.994224,0.105185,0.021345,0.994224,0.105185,0.021345,0.994224,0.105185,-0.404889,0.174931,0.897477, + -0.404889,0.174931,0.897477,-0.404889,0.174931,0.897477,-0.404889,0.174931,0.897477,-0.959422,-0.012627,-0.281691, + -0.959422,-0.012627,-0.281691,-0.959422,-0.012627,-0.281691,-0.959422,-0.012627,-0.281691,-0.997709,-0.001924,-0.067628, + -0.997709,-0.001924,-0.067628,-0.997709,-0.001924,-0.067628,-0.997709,-0.001924,-0.067628,-0.329960,-0.196337,0.923352, + -0.329960,-0.196337,0.923352,-0.329960,-0.196337,0.923352,-0.329960,-0.196337,0.923352,-0.017469,-0.992821,-0.118328, + -0.017469,-0.992821,-0.118328,-0.017469,-0.992821,-0.118328,-0.017469,-0.992821,-0.118328,-0.659552,0.750168,0.047306, + -0.659552,0.750168,0.047306,-0.659552,0.750168,0.047306,-0.659552,0.750168,0.047306,-0.968362,0.040072,-0.246312, + -0.968362,0.040072,-0.246312,-0.968362,0.040072,-0.246312,-0.968362,0.040072,-0.246312,-0.913588,-0.282141,-0.292837, + -0.913588,-0.282141,-0.292837,-0.913588,-0.282141,-0.292837,-0.913588,-0.282141,-0.292837,-0.946080,0.054117,-0.319381, + -0.946080,0.054117,-0.319381,-0.946080,0.054117,-0.319381,-0.946080,0.054117,-0.319381,-0.263318,-0.479417,0.837151, + -0.263318,-0.479417,0.837151,-0.263318,-0.479417,0.837151,-0.263318,-0.479417,0.837151,-0.989694,-0.040155,-0.137456, + -0.989694,-0.040155,-0.137456,-0.989694,-0.040155,-0.137456,-0.989694,-0.040155,-0.137456,-0.951994,0.009744,-0.305962, + -0.951994,0.009744,-0.305962,-0.951994,0.009744,-0.305962,-0.951994,0.009744,-0.305962,0.145035,-0.982944,-0.113078, + 0.145035,-0.982944,-0.113078,0.145035,-0.982944,-0.113078,0.145035,-0.982944,-0.113078,0.951616,-0.009995,0.307126, + 0.951616,-0.009995,0.307126,0.951616,-0.009995,0.307126,0.951616,-0.009995,0.307126,0.040769,0.998378,-0.039741, + 0.040769,0.998378,-0.039741,0.040769,0.998378,-0.039741,0.040769,0.998378,-0.039741,-0.178536,0.973783,0.140965, + -0.178536,0.973783,0.140965,-0.178536,0.973783,0.140965,-0.178536,0.973783,0.140965,0.434378,0.019687,0.900515, + 0.434378,0.019687,0.900515,0.434378,0.019687,0.900515,0.434378,0.019687,0.900515,-0.040868,-0.998365,0.039967, + -0.040868,-0.998365,0.039967,-0.040868,-0.998365,0.039967,-0.040868,-0.998365,0.039967,-0.406129,-0.005290,-0.913800, + -0.406129,-0.005290,-0.913800,-0.406129,-0.005290,-0.913800,-0.406129,-0.005290,-0.913800,-0.685534,-0.722478,0.089827, + -0.685534,-0.722478,0.089827,-0.685534,-0.722478,0.089827,-0.685534,-0.722478,0.089827,0.364030,-0.927990,-0.079472, + 0.364030,-0.927990,-0.079472,0.364030,-0.927990,-0.079472,0.364030,-0.927990,-0.079472,-0.368436,0.926163,0.080477, + -0.368436,0.926163,0.080477,-0.368436,0.926163,0.080477,-0.368436,0.926163,0.080477,0.198711,0.024494,0.979752, + 0.198711,0.024494,0.979752,0.198711,0.024494,0.979752,0.198711,0.024494,0.979752,-0.190430,-0.016405,-0.981564, + -0.190430,-0.016405,-0.981564,-0.190430,-0.016405,-0.981564,-0.190430,-0.016405,-0.981564,-0.919008,0.058176,-0.389922, + -0.919008,0.058176,-0.389922,-0.919008,0.058176,-0.389922,-0.919008,0.058176,-0.389922,0.119572,-0.991016,0.059911, + 0.119572,-0.991016,0.059911,0.119572,-0.991016,0.059911,0.119572,-0.991016,0.059911,0.919349,-0.058177,0.389118, + 0.919349,-0.058177,0.389118,0.919349,-0.058177,0.389118,0.919349,-0.058177,0.389118,0.044349,0.998591,0.029132, + 0.044349,0.998591,0.029132,0.044349,0.998591,0.029132,0.044349,0.998591,0.029132,-0.123321,0.990897,-0.053993, + -0.123321,0.990897,-0.053993,-0.123321,0.990897,-0.053993,-0.123321,0.990897,-0.053993,0.837143,0.173485,0.518743, + 0.837143,0.173485,0.518743,0.837143,0.173485,0.518743,0.837143,0.173485,0.518743,-0.044419,-0.998595,-0.028903, + -0.044419,-0.998595,-0.028903,-0.044419,-0.998595,-0.028903,-0.044419,-0.998595,-0.028903,-0.840794,-0.172916,-0.512996, + -0.840794,-0.172916,-0.512996,-0.840794,-0.172916,-0.512996,-0.840794,-0.172916,-0.512996,-0.750375,-0.189317,0.633321, + -0.750375,-0.189317,0.633321,-0.750375,-0.189317,0.633321,-0.750375,-0.189317,0.633321,0.035423,-0.904567,0.424858, + 0.035423,-0.904567,0.424858,0.035423,-0.904567,0.424858,0.035423,-0.904567,0.424858,-0.039318,0.905668,-0.422161, + -0.039318,0.905668,-0.422161,-0.039318,0.905668,-0.422161,-0.039318,0.905668,-0.422161,0.588768,0.387479,0.709375, + 0.588768,0.387479,0.709375,0.588768,0.387479,0.709375,0.588768,0.387479,0.709375,-0.580181,-0.386020,-0.717202, + -0.580181,-0.386020,-0.717202,-0.580181,-0.386020,-0.717202,-0.580181,-0.386020,-0.717202,-0.940046,0.051305,-0.337168, + -0.940046,0.051305,-0.337168,-0.940046,0.051305,-0.337168,-0.940046,0.051305,-0.337168,-0.558370,-0.330505,0.760913, + -0.558370,-0.330505,0.760913,-0.558370,-0.330505,0.760913,-0.558370,-0.330505,0.760913,0.940149,-0.051262,0.336885, + 0.940149,-0.051262,0.336885,0.940149,-0.051262,0.336885,0.940149,-0.051262,0.336885,-0.016132,0.976279,0.215915, + -0.016132,0.976279,0.215915,-0.016132,0.976279,0.215915,-0.016132,0.976279,0.215915,-0.967726,0.021706,-0.251069, + -0.967726,0.021706,-0.251069,-0.967726,0.021706,-0.251069,-0.967726,0.021706,-0.251069,0.963973,-0.025836,0.264741, + 0.963973,-0.025836,0.264741,0.963973,-0.025836,0.264741,0.963973,-0.025836,0.264741,0.016373,-0.976100,-0.216705, + 0.016373,-0.976100,-0.216705,0.016373,-0.976100,-0.216705,0.016373,-0.976100,-0.216705,-0.017161,0.956321,0.291814, + -0.017161,0.956321,0.291814,-0.017161,0.956321,0.291814,-0.017161,0.956321,0.291814,0.015308,-0.957381,-0.288421, + 0.015308,-0.957381,-0.288421,0.015308,-0.957381,-0.288421,0.015308,-0.957381,-0.288421,-0.071012,-0.995774,0.058243, + -0.071012,-0.995774,0.058243,-0.071012,-0.995774,0.058243,-0.071012,-0.995774,0.058243,0.070333,0.995947,-0.056055, + 0.070333,0.995947,-0.056055,0.070333,0.995947,-0.056055,0.070333,0.995947,-0.056055,0.992246,-0.021066,0.122494, + 0.992246,-0.021066,0.122494,0.992246,-0.021066,0.122494,0.992246,-0.021066,0.122494,-0.992435,0.020852,-0.120986, + -0.992435,0.020852,-0.120986,-0.992435,0.020852,-0.120986,-0.992435,0.020852,-0.120986,-0.077089,-0.990604,-0.112963, + -0.077089,-0.990604,-0.112963,-0.077089,-0.990604,-0.112963,-0.077089,-0.990604,-0.112963,0.071435,0.989707,0.124003, + 0.071435,0.989707,0.124003,0.071435,0.989707,0.124003,0.071435,0.989707,0.124003,0.943696,-0.045025,0.327736, + 0.943696,-0.045025,0.327736,0.943696,-0.045025,0.327736,0.943696,-0.045025,0.327736,-0.948673,0.040710,-0.313627, + -0.948673,0.040710,-0.313627,-0.948673,0.040710,-0.313627,-0.948673,0.040710,-0.313627,-0.558373,-0.330511,0.760909, + -0.558373,-0.330511,0.760909,-0.558373,-0.330511,0.760909,-0.558373,-0.330511,0.760909,0.167046,-0.507563,0.845266, + 0.167046,-0.507563,0.845266,0.167046,-0.507563,0.845266,0.167046,-0.507563,0.845266,-0.106088,-0.980866,-0.163239, + -0.106088,-0.980866,-0.163239,-0.106088,-0.980866,-0.163239,-0.106088,-0.980866,-0.163239,0.108035,0.978149,0.177630, + 0.108035,0.978149,0.177630,0.108035,0.978149,0.177630,0.108035,0.978149,0.177630,-0.979841,0.115442,0.163049, + -0.979841,0.115442,0.163049,-0.979841,0.115442,0.163049,-0.979841,0.115442,0.163049,0.980254,-0.117027,-0.159396, + 0.980254,-0.117027,-0.159396,0.980254,-0.117027,-0.159396,0.980254,-0.117027,-0.159396,0.941447,-0.187437,0.280257, + 0.941447,-0.187437,0.280257,0.941447,-0.187437,0.280257,0.941447,-0.187437,0.280257,-0.942248,0.186931,-0.277894, + -0.942248,0.186931,-0.277894,-0.942248,0.186931,-0.277894,-0.942248,0.186931,-0.277894,0.118289,0.992530,0.029859, + 0.118289,0.992530,0.029859,0.118289,0.992530,0.029859,0.118289,0.992530,0.029859,-0.118295,-0.992558,-0.028911, + -0.118295,-0.992558,-0.028911,-0.118295,-0.992558,-0.028911,-0.118295,-0.992558,-0.028911,0.937970,-0.167678,0.303475, + 0.937970,-0.167678,0.303475,0.937970,-0.167678,0.303475,0.937970,-0.167678,0.303475,-0.937874,0.167648,-0.303788, + -0.937874,0.167648,-0.303788,-0.937874,0.167648,-0.303788,-0.937874,0.167648,-0.303788,-0.154942,-0.983003,-0.098483, + -0.154942,-0.983003,-0.098483,-0.154942,-0.983003,-0.098483,-0.154942,-0.983003,-0.098483,0.158026,0.983608,0.086848, + 0.158026,0.983608,0.086848,0.158026,0.983608,0.086848,0.158026,0.983608,0.086848,0.237390,0.971255,-0.017613, + 0.237390,0.971255,-0.017613,0.237390,0.971255,-0.017613,0.237390,0.971255,-0.017613,-0.238084,-0.971005,0.021549, + -0.238084,-0.971005,0.021549,-0.238084,-0.971005,0.021549,-0.238084,-0.971005,0.021549,-0.904076,0.175945,-0.389475, + -0.904076,0.175945,-0.389475,-0.904076,0.175945,-0.389475,-0.904076,0.175945,-0.389475,0.898424,-0.174370,0.403026, + 0.898424,-0.174370,0.403026,0.898424,-0.174370,0.403026,0.898424,-0.174370,0.403026,-0.041093,0.119062,0.992036, + -0.041093,0.119062,0.992036,-0.041093,0.119062,0.992036,-0.041093,0.119062,0.992036,0.015311,0.187148,0.982212, + 0.015311,0.187148,0.982212,0.015311,0.187148,0.982212,0.015311,0.187148,0.982212,0.916994,-0.161400,0.364790, + 0.916994,-0.161400,0.364790,0.916994,-0.161400,0.364790,0.916994,-0.161400,0.364790,-0.921869,0.163995,-0.351089, + -0.921869,0.163995,-0.351089,-0.921869,0.163995,-0.351089,-0.921869,0.163995,-0.351089,-0.249027,-0.963171,0.101430, + -0.249027,-0.963171,0.101430,-0.249027,-0.963171,0.101430,-0.249027,-0.963171,0.101430,0.248545,0.963702,-0.097487, + 0.248545,0.963702,-0.097487,0.248545,0.963702,-0.097487,0.248545,0.963702,-0.097487,0.180331,0.983468,-0.016459, + 0.180331,0.983468,-0.016459,0.180331,0.983468,-0.016459,0.180331,0.983468,-0.016459,-0.177930,-0.984027,0.005696, + -0.177930,-0.984027,0.005696,-0.177930,-0.984027,0.005696,-0.177930,-0.984027,0.005696,-0.975833,0.181460,-0.121751, + -0.975833,0.181460,-0.121751,-0.975833,0.181460,-0.121751,-0.975833,0.181460,-0.121751,0.975794,-0.181434,0.122096, + 0.975794,-0.181434,0.122096,0.975794,-0.181434,0.122096,0.975794,-0.181434,0.122096,-0.182162,-0.355568,0.916727, + -0.182162,-0.355568,0.916727,-0.182162,-0.355568,0.916727,-0.182162,-0.355568,0.916727,0.989695,0.040158,0.137446, + 0.989695,0.040158,0.137446,0.989695,0.040158,0.137446,0.989695,0.040158,0.137446,0.182533,0.351327,-0.918287, + 0.182533,0.351327,-0.918287,0.182533,0.351327,-0.918287,0.182533,0.351327,-0.918287,-0.129176,-0.198098,0.971633, + -0.129176,-0.198098,0.971633,-0.129176,-0.198098,0.971633,-0.129176,-0.198098,0.971633,0.997709,0.001924,0.067629, + 0.997709,0.001924,0.067629,0.997709,0.001924,0.067629,0.997709,0.001924,0.067629,0.129151,0.201762,-0.970882, + 0.129151,0.201762,-0.970882,0.129151,0.201762,-0.970882,0.129151,0.201762,-0.970882,0.968242,-0.040190,0.246763, + 0.968242,-0.040190,0.246763,0.968242,-0.040190,0.246763,0.968242,-0.040190,0.246763,-0.031357,0.978612,0.203309, + -0.031357,0.978612,0.203309,-0.031357,0.978612,0.203309,-0.031357,0.978612,0.203309,0.030542,-0.979657,-0.198343, + 0.030542,-0.979657,-0.198343,0.030542,-0.979657,-0.198343,0.030542,-0.979657,-0.198343,0.959199,0.012399,0.282461, + 0.959199,0.012399,0.282461,0.959199,0.012399,0.282461,0.959199,0.012399,0.282461,-0.043982,0.959302,0.278936, + -0.043982,0.959302,0.278936,-0.043982,0.959302,0.278936,-0.043982,0.959302,0.278936,0.044540,-0.958318,-0.282211, + 0.044540,-0.958318,-0.282211,0.044540,-0.958318,-0.282211,0.044540,-0.958318,-0.282211,-0.959585,0.010755,-0.281214, + -0.959585,0.010755,-0.281214,-0.959585,0.010755,-0.281214,-0.959585,0.010755,-0.281214,-0.982530,0.014116,-0.185566, + -0.982530,0.014116,-0.185566,-0.982530,0.014116,-0.185566,-0.982530,0.014116,-0.185566,-0.959901,0.043438,-0.276955, + -0.959901,0.043438,-0.276955,-0.959901,0.043438,-0.276955,-0.959901,0.043438,-0.276955,-0.984382,0.022747,-0.174568, + -0.984382,0.022747,-0.174568,-0.984382,0.022747,-0.174568,-0.984382,0.022747,-0.174568,-0.264697,-0.132000,0.955255, + -0.264697,-0.132000,0.955255,-0.264697,-0.132000,0.955255,-0.264697,-0.132000,0.955255,0.984591,-0.022438,0.173428, + 0.984591,-0.022438,0.173428,0.984591,-0.022438,0.173428,0.984591,-0.022438,0.173428,0.278714,0.135616,-0.950751, + 0.278714,0.135616,-0.950751,0.278714,0.135616,-0.950751,0.278714,0.135616,-0.950751,-0.269563,-0.154593,0.950493, + -0.269563,-0.154593,0.950493,-0.269563,-0.154593,0.950493,-0.269563,-0.154593,0.950493,0.982317,-0.014121,0.186694, + 0.982317,-0.014121,0.186694,0.982317,-0.014121,0.186694,0.982317,-0.014121,0.186694,0.251806,0.143151,-0.957132, + 0.251806,0.143151,-0.957132,0.251806,0.143151,-0.957132,0.251806,0.143151,-0.957132,0.966234,-0.034774,0.255309, + 0.966234,-0.034774,0.255309,0.966234,-0.034774,0.255309,0.966234,-0.034774,0.255309,-0.023845,0.977488,0.209641, + -0.023845,0.977488,0.209641,-0.023845,0.977488,0.209641,-0.023845,0.977488,0.209641,0.020823,-0.975959,-0.216957, + 0.020823,-0.975959,-0.216957,0.020823,-0.975959,-0.216957,0.020823,-0.975959,-0.216957,0.966470,-0.011610,0.256516, + 0.966470,-0.011610,0.256516,0.966470,-0.011610,0.256516,0.966470,-0.011610,0.256516,-0.059185,0.932522,0.356228, + -0.059185,0.932522,0.356228,-0.059185,0.932522,0.356228,-0.059185,0.932522,0.356228,0.059345,-0.932290,-0.356811, + 0.059345,-0.932290,-0.356811,0.059345,-0.932290,-0.356811,0.059345,-0.932290,-0.356811,0.987786,-0.053761,0.146251, + 0.987786,-0.053761,0.146251,0.987786,-0.053761,0.146251,0.987786,-0.053761,0.146251,0.989910,-0.064409,0.126209, + 0.989910,-0.064409,0.126209,0.989910,-0.064409,0.126209,-0.991620,0.073835,-0.106009,-0.991620,0.073835,-0.106009, + -0.991620,0.073835,-0.106009,-0.974660,-0.190302,-0.117572,-0.974660,-0.190302,-0.117572,-0.974660,-0.190302,-0.117572, + 0.987193,0.090202,0.131578,0.987193,0.090202,0.131578,0.987193,0.090202,0.131578,0.987193,0.090202,0.131578, + 0.994975,0.041267,0.091222,0.994975,0.041267,0.091222,0.994975,0.041267,0.091222,-0.980320,-0.145764,-0.133141, + -0.980320,-0.145764,-0.133141,-0.980320,-0.145764,-0.133141,-0.980320,-0.145764,-0.133141,-0.165174,0.974530,0.151689, + -0.165174,0.974530,0.151689,-0.165174,0.974530,0.151689,-0.942079,-0.021434,-0.334706,-0.942079,-0.021434,-0.334706, + -0.942079,-0.021434,-0.334706,-0.007481,0.977236,0.212025,-0.007481,0.977236,0.212025,-0.007481,0.977236,0.212025, + -0.946057,0.076728,-0.314783,-0.946057,0.076728,-0.314783,-0.946057,0.076728,-0.314783,0.006613,-0.977837,-0.209263, + 0.006613,-0.977837,-0.209263,0.006613,-0.977837,-0.209263,0.942064,-0.162140,0.293643,0.942064,-0.162140,0.293643, + 0.942064,-0.162140,0.293643,0.942401,-0.062752,0.328545,0.942401,-0.062752,0.328545,0.942401,-0.062752,0.328545, + 0.968596,-0.031963,0.246577,0.968596,-0.031963,0.246577,0.968596,-0.031963,0.246577,0.968596,-0.031963,0.246577, + 0.935329,-0.084234,0.343604,0.935329,-0.084234,0.343604,0.935329,-0.084234,0.343604,-0.857460,0.018714,-0.514210, + -0.857460,0.018714,-0.514210,-0.857460,0.018714,-0.514210,-0.971912,0.065650,-0.226004,-0.971912,0.065650,-0.226004, + -0.971912,0.065650,-0.226004,-0.971912,0.065650,-0.226004,-0.920480,0.076296,-0.383270,-0.920480,0.076296,-0.383270, + -0.920480,0.076296,-0.383270,0.985436,-0.053059,0.161557,0.985436,-0.053059,0.161557,0.985436,-0.053059,0.161557, + 0.985436,-0.053059,0.161557,-0.949860,0.081246,-0.301935,-0.949860,0.081246,-0.301935,-0.949860,0.081246,-0.301935, + -0.949860,0.081246,-0.301935,-0.913175,0.086730,-0.398233,-0.913175,0.086730,-0.398233,-0.913175,0.086730,-0.398233, + -0.913175,0.086730,-0.398233,-0.939004,0.067558,-0.337205,-0.939004,0.067558,-0.337205,-0.939004,0.067558,-0.337205, + -0.939004,0.067558,-0.337205,-0.985980,0.054532,-0.157698,-0.985980,0.054532,-0.157698,-0.985980,0.054532,-0.157698, + -0.985980,0.054532,-0.157698,0.944270,-0.057587,0.324097,0.944270,-0.057587,0.324097,0.944270,-0.057587,0.324097, + 0.942366,-0.061199,0.328940,0.942366,-0.061199,0.328940,0.942366,-0.061199,0.328940,0.942366,-0.061199,0.328940, + -0.984781,0.057450,-0.164030,-0.984781,0.057450,-0.164030,-0.984781,0.057450,-0.164030,-0.325428,-0.906151,-0.270161, + -0.325428,-0.906151,-0.270161,-0.325428,-0.906151,-0.270161,-0.325428,-0.906151,-0.270161,0.107498,0.183034,-0.977212, + 0.107498,0.183034,-0.977212,0.107498,0.183034,-0.977212,0.107498,0.183034,-0.977212,0.946079,-0.054116,0.319383, + 0.946079,-0.054116,0.319383,0.946079,-0.054116,0.319383,0.946079,-0.054116,0.319383,-0.830211,-0.247468,0.499509, + -0.830211,-0.247468,0.499509,-0.830211,-0.247468,0.499509,-0.830211,-0.247468,0.499509,0.835885,0.408179,0.366996, + 0.835885,0.408179,0.366996,0.835885,0.408179,0.366996,0.835885,0.408179,0.366996,-0.009991,-0.988588,-0.150310, + -0.009991,-0.988588,-0.150310,-0.009991,-0.988588,-0.150310,-0.009991,-0.988588,-0.150310,0.991370,-0.029496,0.127733, + 0.991370,-0.029496,0.127733,0.991370,-0.029496,0.127733,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.991081,0.029614,-0.129931,-0.991081,0.029614,-0.129931, + -0.991081,0.029614,-0.129931,0.029081,0.996690,0.075914,0.029081,0.996690,0.075914,0.029081,0.996690,0.075914, + 0.029081,0.996690,0.075914,-0.986281,0.066445,-0.151109,-0.986281,0.066445,-0.151109,-0.986281,0.066445,-0.151109, + -0.986281,0.066445,-0.151109,0.962481,-0.047131,0.267223,0.962481,-0.047131,0.267223,0.962481,-0.047131,0.267223, + 0.962261,-0.046553,0.268117,0.962261,-0.046553,0.268117,0.962261,-0.046553,0.268117,-0.962402,0.046492,-0.267621, + -0.962402,0.046492,-0.267621,-0.962402,0.046492,-0.267621,-0.937610,0.060101,-0.342455,-0.937610,0.060101,-0.342455, + -0.937610,0.060101,-0.342455,-0.962157,0.045865,-0.268610,-0.962157,0.045865,-0.268610,-0.962157,0.045865,-0.268610, + 0.871518,-0.099308,0.480203,0.871518,-0.099308,0.480203,0.871518,-0.099308,0.480203,0.871518,-0.099308,0.480203, + -0.041238,0.945889,0.321858,-0.041238,0.945889,0.321858,-0.041238,0.945889,0.321858,0.037734,-0.945734,-0.322743, + 0.037734,-0.945734,-0.322743,0.037734,-0.945734,-0.322743,-0.513225,-0.226220,0.827904,-0.513225,-0.226220,0.827904, + -0.513225,-0.226220,0.827904,0.508770,0.198296,-0.837754,0.508770,0.198296,-0.837754,0.508770,0.198296,-0.837754, + -0.874249,0.083034,-0.478325,-0.874249,0.083034,-0.478325,-0.874249,0.083034,-0.478325,-0.874249,0.083034,-0.478325, + 0.874244,-0.083035,0.478333,0.874244,-0.083035,0.478333,0.874244,-0.083035,0.478333,0.874244,-0.083035,0.478333, + -0.032825,0.961597,0.272496,-0.032825,0.961597,0.272496,-0.032825,0.961597,0.272496,0.033019,-0.961390,-0.273200, + 0.033019,-0.961390,-0.273200,0.033019,-0.961390,-0.273200,-0.508727,-0.199261,0.837551,-0.508727,-0.199261,0.837551, + -0.508727,-0.199261,0.837551,-0.976395,0.085705,-0.198259,-0.976395,0.085705,-0.198259,-0.976395,0.085705,-0.198259, + -0.976395,0.085705,-0.198259,0.976394,-0.085706,0.198264,0.976394,-0.085706,0.198264,0.976394,-0.085706,0.198264, + 0.976394,-0.085706,0.198264,0.505205,-0.007065,-0.862970,0.505205,-0.007065,-0.862970,0.505205,-0.007065,-0.862970, + -0.933902,0.051730,-0.353766,-0.933902,0.051730,-0.353766,-0.933902,0.051730,-0.353766,-0.933902,0.051730,-0.353766, + 0.933786,-0.051701,0.354078,0.933786,-0.051701,0.354078,0.933786,-0.051701,0.354078,0.933786,-0.051701,0.354078, + 0.016282,0.995686,0.091342,0.016282,0.995686,0.091342,0.016282,0.995686,0.091342,-0.016403,-0.995727,-0.090874, + -0.016403,-0.995727,-0.090874,-0.016403,-0.995727,-0.090874,-0.210313,-0.010368,0.977579,-0.210313,-0.010368,0.977579, + -0.210313,-0.010368,0.977579,-0.404175,-0.029912,0.914192,-0.404175,-0.029912,0.914192,-0.404175,-0.029912,0.914192, + -0.404175,-0.029912,0.914192,-0.432782,-0.129571,0.892139,-0.432782,-0.129571,0.892139,-0.432782,-0.129571,0.892139, + -0.432782,-0.129571,0.892139,-0.253419,-0.024743,0.967040,-0.253419,-0.024743,0.967040,-0.253419,-0.024743,0.967040, + -0.253419,-0.024743,0.967040,-0.256214,-0.132287,0.957525,-0.256214,-0.132287,0.957525,-0.256214,-0.132287,0.957525, + -0.256214,-0.132287,0.957525,-0.254183,-0.045296,0.966095,-0.254183,-0.045296,0.966095,-0.254183,-0.045296,0.966095, + -0.254183,-0.045296,0.966095,-0.255810,-0.106299,0.960865,-0.255810,-0.106299,0.960865,-0.255810,-0.106299,0.960865, + -0.255810,-0.106299,0.960865,-0.966051,0.048379,-0.253779,-0.966051,0.048379,-0.253779,-0.966051,0.048379,-0.253779, + -0.966051,0.048379,-0.253779,-0.966105,0.046661,-0.253897,-0.966105,0.046661,-0.253897,-0.966105,0.046661,-0.253897, + -0.966105,0.046661,-0.253897,-0.966545,0.047399,-0.252078,-0.966545,0.047399,-0.252078,-0.966545,0.047399,-0.252078, + -0.966545,0.047399,-0.252078,-0.199342,-0.068640,0.977523,-0.199342,-0.068640,0.977523,-0.199342,-0.068640,0.977523, + -0.199342,-0.068640,0.977523,0.062594,-0.948262,0.311256,0.062594,-0.948262,0.311256,0.062594,-0.948262,0.311256, + 0.062594,-0.948262,0.311256,0.468849,-0.876596,0.108446,0.468849,-0.876596,0.108446,0.468849,-0.876596,0.108446, + 0.468849,-0.876596,0.108446,0.378654,-0.849025,0.368480,0.378654,-0.849025,0.368480,0.378654,-0.849025,0.368480, + 0.378654,-0.849025,0.368480,0.976836,0.198636,0.079594,0.976836,0.198636,0.079594,0.976836,0.198636,0.079594, + 0.976836,0.198636,0.079594,-0.595351,-0.798661,-0.087734,-0.595351,-0.798661,-0.087734,-0.595351,-0.798661,-0.087734, + -0.595351,-0.798661,-0.087734,-0.042263,-0.998850,-0.022632,-0.042263,-0.998850,-0.022632,-0.042263,-0.998850,-0.022632, + -0.042263,-0.998850,-0.022632,0.010016,0.988611,0.150158,0.010016,0.988611,0.150158,0.010016,0.988611,0.150158, + 0.010016,0.988611,0.150158,0.042252,0.998851,0.022635,0.042252,0.998851,0.022635,0.042252,0.998851,0.022635, + 0.042252,0.998851,0.022635,-0.021345,-0.994223,-0.105192,-0.021345,-0.994223,-0.105192,-0.021345,-0.994223,-0.105192, + -0.021345,-0.994223,-0.105192,-0.945435,0.054234,-0.321264,-0.945435,0.054234,-0.321264,-0.945435,0.054234,-0.321264, + -0.945435,0.054234,-0.321264,-0.948118,0.055926,-0.312962,-0.948118,0.055926,-0.312962,-0.948118,0.055926,-0.312962, + -0.948118,0.055926,-0.312962,-0.951519,0.050871,-0.303354,-0.951519,0.050871,-0.303354,-0.951519,0.050871,-0.303354, + -0.951519,0.050871,-0.303354,0.951520,-0.050870,0.303351,0.951520,-0.050870,0.303351,0.951520,-0.050870,0.303351, + 0.951520,-0.050870,0.303351,0.945434,-0.054234,0.321269,0.945434,-0.054234,0.321269,0.945434,-0.054234,0.321269, + 0.945434,-0.054234,0.321269,0.948118,-0.055924,0.312962,0.948118,-0.055924,0.312962,0.948118,-0.055924,0.312962, + 0.948118,-0.055924,0.312962,-0.245369,-0.006219,0.969410,-0.245369,-0.006219,0.969410,-0.245369,-0.006219,0.969410, + -0.091319,-0.502163,0.859938,-0.091319,-0.502163,0.859938,-0.091319,-0.502163,0.859938,-0.354441,-0.386135,0.851628, + -0.354441,-0.386135,0.851628,-0.354441,-0.386135,0.851628,-0.425256,-0.494193,0.758242,-0.425256,-0.494193,0.758242, + -0.425256,-0.494193,0.758242,-0.458290,-0.365028,0.810386,-0.458290,-0.365028,0.810386,-0.458290,-0.365028,0.810386, + -0.522951,-0.005592,0.852344,-0.522951,-0.005592,0.852344,-0.522951,-0.005592,0.852344,0.919645,-0.127009,0.371647, + 0.919645,-0.127009,0.371647,0.919645,-0.127009,0.371647,0.919645,-0.127009,0.371647,0.234478,0.404494,-0.883971, + 0.234478,0.404494,-0.883971,0.234478,0.404494,-0.883971,-0.233826,-0.026183,0.971926,-0.233826,-0.026183,0.971926, + -0.233826,-0.026183,0.971926,-0.233826,-0.026183,0.971926,-0.477085,-0.384357,0.790354,-0.477085,-0.384357,0.790354, + -0.477085,-0.384357,0.790354,-0.477085,-0.384357,0.790354,0.248348,-0.329513,0.910903,0.248348,-0.329513,0.910903, + 0.248348,-0.329513,0.910903,0.248348,-0.329513,0.910903,0.038040,0.268902,0.962416,0.038040,0.268902,0.962416, + 0.038040,0.268902,0.962416,0.038040,0.268902,0.962416,-0.528284,-0.359424,0.769240,-0.528284,-0.359424,0.769240, + -0.528284,-0.359424,0.769240,-0.528284,-0.359424,0.769240,0.483257,-0.283108,0.828440,0.483257,-0.283108,0.828440, + 0.483257,-0.283108,0.828440,0.483257,-0.283108,0.828440,-0.966457,0.050274,-0.251860,-0.966457,0.050274,-0.251860, + -0.966457,0.050274,-0.251860,-0.966457,0.050274,-0.251860,-0.255650,0.966081,0.036482,-0.255650,0.966081,0.036482, + -0.255650,0.966081,0.036482,-0.255650,0.966081,0.036482,-0.500297,-0.123409,0.857014,-0.500297,-0.123409,0.857014, + -0.500297,-0.123409,0.857014,-0.500297,-0.123409,0.857014,-0.609289,-0.422434,0.671056,-0.609289,-0.422434,0.671056, + -0.609289,-0.422434,0.671056,-0.609289,-0.422434,0.671056,-0.859385,-0.421465,-0.289524,-0.859385,-0.421465,-0.289524, + -0.859385,-0.421465,-0.289524,-0.859385,-0.421465,-0.289524,-0.966551,0.047837,-0.251975,-0.966551,0.047837,-0.251975, + -0.966551,0.047837,-0.251975,-0.966551,0.047837,-0.251975,-0.972707,0.058059,-0.224654,-0.972707,0.058059,-0.224654, + -0.972707,0.058059,-0.224654,-0.972707,0.058059,-0.224654,-0.254714,0.965815,0.048184,-0.254714,0.965815,0.048184, + -0.254714,0.965815,0.048184,-0.254714,0.965815,0.048184,-0.873767,-0.426282,-0.234126,-0.873767,-0.426282,-0.234126, + -0.873767,-0.426282,-0.234126,-0.873767,-0.426282,-0.234126,0.160794,-0.984397,-0.071470,0.160794,-0.984397,-0.071470, + 0.160794,-0.984397,-0.071470,0.160794,-0.984397,-0.071470,0.669343,0.693065,0.267657,0.669343,0.693065,0.267657, + 0.669343,0.693065,0.267657,0.669343,0.693065,0.267657,0.259676,-0.963308,-0.067872,0.259676,-0.963308,-0.067872, + 0.259676,-0.963308,-0.067872,0.259676,-0.963308,-0.067872,-0.955168,-0.107728,-0.275769,-0.955168,-0.107728,-0.275769, + -0.955168,-0.107728,-0.275769,-0.955168,-0.107728,-0.275769,0.189272,0.967489,0.167754,0.189272,0.967489,0.167754, + 0.189272,0.967489,0.167754,0.189272,0.967489,0.167754,-0.002992,-0.990518,-0.137348,-0.002992,-0.990518,-0.137348, + -0.002992,-0.990518,-0.137348,-0.002992,-0.990518,-0.137348,0.875001,0.426659,0.228768,0.875001,0.426659,0.228768, + 0.875001,0.426659,0.228768,0.875001,0.426659,0.228768,-0.648851,0.716006,-0.257543,-0.648851,0.716006,-0.257543, + -0.648851,0.716006,-0.257543,-0.648851,0.716006,-0.257543,-0.712608,0.689094,-0.131680,-0.712608,0.689094,-0.131680, + -0.712608,0.689094,-0.131680,-0.712608,0.689094,-0.131680,-0.713618,0.688052,-0.131656,-0.713618,0.688052,-0.131656, + -0.713618,0.688052,-0.131656,-0.713618,0.688052,-0.131656,0.967708,-0.047007,0.247652,0.967708,-0.047007,0.247652, + 0.967708,-0.047007,0.247652,0.967175,-0.047956,0.249545,0.967175,-0.047956,0.249545,0.967175,-0.047956,0.249545, + 0.967175,-0.047956,0.249545,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079, + -0.966545,0.047402,-0.252079,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077,-0.966545,0.047402,-0.252077, + 0.032733,0.997535,0.062076,0.032733,0.997535,0.062076,0.032733,0.997535,0.062076,0.032733,0.997535,0.062076, + 0.968476,-0.050358,0.243966,0.968476,-0.050358,0.243966,0.968476,-0.050358,0.243966,0.968476,-0.050358,0.243966, + -0.018572,-0.995380,-0.094200,-0.018572,-0.995380,-0.094200,-0.018572,-0.995380,-0.094200,-0.018572,-0.995380,-0.094200, + -0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078, + 0.966654,-0.050759,0.251006,0.966654,-0.050759,0.251006,0.966654,-0.050759,0.251006,0.966654,-0.050759,0.251006, + -0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077, + -0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078,-0.966545,0.047402,-0.252078, + -0.967649,0.047023,-0.247879,-0.967649,0.047023,-0.247879,-0.967649,0.047023,-0.247879,-0.967162,0.047943,-0.249599, + -0.967162,0.047943,-0.249599,-0.967162,0.047943,-0.249599,-0.967162,0.047943,-0.249599,0.966545,-0.047403,0.252079, + 0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252078, + 0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078, + 0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,-0.032536,-0.997494,-0.062822,-0.032536,-0.997494,-0.062822, + -0.032536,-0.997494,-0.062822,-0.032536,-0.997494,-0.062822,-0.968375,0.050365,-0.244364,-0.968375,0.050365,-0.244364, + -0.968375,0.050365,-0.244364,-0.968375,0.050365,-0.244364,0.018844,0.995472,0.093172,0.018844,0.995472,0.093172, + 0.018844,0.995472,0.093172,0.018844,0.995472,0.093172,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,-0.966633,0.051037,-0.251027,-0.966633,0.051037,-0.251027, + -0.966633,0.051037,-0.251027,-0.966633,0.051037,-0.251027,0.966545,-0.047403,0.252080,0.966545,-0.047403,0.252080, + 0.966545,-0.047403,0.252080,0.966545,-0.047403,0.252080,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.874679,-0.187103,0.447134,0.874679,-0.187103,0.447134, + 0.874679,-0.187103,0.447134,-0.256192,-0.130699,0.957749,-0.256192,-0.130699,0.957749,-0.256192,-0.130699,0.957749, + -0.256192,-0.130699,0.957749,-0.251947,0.008828,0.967701,-0.251947,0.008828,0.967701,-0.251947,0.008828,0.967701, + -0.251947,0.008828,0.967701,0.871531,-0.189457,0.452260,0.871531,-0.189457,0.452260,0.871531,-0.189457,0.452260, + 0.865384,-0.237843,0.441067,0.865384,-0.237843,0.441067,0.865384,-0.237843,0.441067,-0.956063,0.156441,-0.247933, + -0.956063,0.156441,-0.247933,-0.956063,0.156441,-0.247933,-0.956063,0.156441,-0.247933,0.833271,-0.295652,0.467172, + 0.833271,-0.295652,0.467172,0.833271,-0.295652,0.467172,-0.279621,-0.957438,0.071593,-0.279621,-0.957438,0.071593, + -0.279621,-0.957438,0.071593,0.956064,-0.156441,0.247925,0.956064,-0.156441,0.247925,0.956064,-0.156441,0.247925, + 0.956064,-0.156441,0.247925,0.824497,-0.066605,0.561933,0.824497,-0.066605,0.561933,0.824497,-0.066605,0.561933, + 0.869702,-0.204284,0.449318,0.869702,-0.204284,0.449318,0.869702,-0.204284,0.449318,0.393400,-0.070279,0.916677, + 0.393400,-0.070279,0.916677,0.393400,-0.070279,0.916677,-0.155997,-0.986309,-0.053482,-0.155997,-0.986309,-0.053482, + -0.155997,-0.986309,-0.053482,-0.155997,-0.986309,-0.053482,0.155985,0.986310,0.053492,0.155985,0.986310,0.053492, + 0.155985,0.986310,0.053492,0.155985,0.986310,0.053492,0.870779,-0.189076,0.453866,0.870779,-0.189076,0.453866, + 0.870779,-0.189076,0.453866,0.537709,0.472507,0.698288,0.537709,0.472507,0.698288,0.537709,0.472507,0.698288, + 0.871856,-0.189949,0.451428,0.871856,-0.189949,0.451428,0.871856,-0.189949,0.451428,0.871174,-0.201847,0.447564, + 0.871174,-0.201847,0.447564,0.871174,-0.201847,0.447564,-0.858833,0.492117,-0.142223,-0.858833,0.492117,-0.142223, + -0.858833,0.492117,-0.142223,-0.858833,0.492117,-0.142223,0.185757,-0.831548,-0.523472,0.185757,-0.831548,-0.523472, + 0.185757,-0.831548,-0.523472,0.185757,-0.831548,-0.523472,-0.152889,-0.270038,0.950634,-0.152889,-0.270038,0.950634, + -0.152889,-0.270038,0.950634,0.705741,0.288967,0.646860,0.705741,0.288967,0.646860,0.705741,0.288967,0.646860, + 0.705741,0.288967,0.646860,0.863595,-0.149839,0.481406,0.863595,-0.149839,0.481406,0.863595,-0.149839,0.481406, + 0.818191,-0.028351,0.574247,0.818191,-0.028351,0.574247,0.818191,-0.028351,0.574247,0.625254,0.772247,0.112659, + 0.625254,0.772247,0.112659,0.625254,0.772247,0.112659,0.625254,0.772247,0.112659,0.766136,-0.558651,-0.317717, + 0.766136,-0.558651,-0.317717,0.766136,-0.558651,-0.317717,0.766136,-0.558651,-0.317717,-0.625249,-0.772251,-0.112660, + -0.625249,-0.772251,-0.112660,-0.625249,-0.772251,-0.112660,-0.625249,-0.772251,-0.112660,0.290730,-0.269917,0.917944, + 0.290730,-0.269917,0.917944,0.290730,-0.269917,0.917944,0.290730,-0.269917,0.917944,0.208391,-0.200512,0.957271, + 0.208391,-0.200512,0.957271,0.208391,-0.200512,0.957271,0.208391,-0.200512,0.957271,0.018860,-0.988832,0.147839, + 0.018860,-0.988832,0.147839,0.018860,-0.988832,0.147839,0.018860,-0.988832,0.147839,-0.015955,0.990959,-0.133211, + -0.015955,0.990959,-0.133211,-0.015955,0.990959,-0.133211,-0.015955,0.990959,-0.133211,-0.996107,0.048922,0.073328, + -0.996107,0.048922,0.073328,-0.996107,0.048922,0.073328,-0.996107,0.048922,0.073328,0.990201,-0.044215,-0.132465, + 0.990201,-0.044215,-0.132465,0.990201,-0.044215,-0.132465,0.990201,-0.044215,-0.132465,0.986095,-0.070466,0.150501, + 0.986095,-0.070466,0.150501,0.986095,-0.070466,0.150501,0.986095,-0.070466,0.150501,-0.986304,0.070312,-0.149197, + -0.986304,0.070312,-0.149197,-0.986304,0.070312,-0.149197,-0.986304,0.070312,-0.149197,0.065184,0.991904,0.108981, + 0.065184,0.991904,0.108981,0.065184,0.991904,0.108981,0.065184,0.991904,0.108981,-0.065198,-0.991881,-0.109182, + -0.065198,-0.991881,-0.109182,-0.065198,-0.991881,-0.109182,-0.065198,-0.991881,-0.109182,0.982380,-0.149921,0.111597, + 0.982380,-0.149921,0.111597,0.982380,-0.149921,0.111597,0.982380,-0.149921,0.111597,-0.980566,0.151737,-0.124364, + -0.980566,0.151737,-0.124364,-0.980566,0.151737,-0.124364,-0.980566,0.151737,-0.124364,-0.125396,-0.984661,-0.121316, + -0.125396,-0.984661,-0.121316,-0.125396,-0.984661,-0.121316,-0.125396,-0.984661,-0.121316,0.125382,0.984652,0.121405, + 0.125382,0.984652,0.121405,0.125382,0.984652,0.121405,0.125382,0.984652,0.121405,0.000450,0.985783,0.168022, + 0.000450,0.985783,0.168022,0.000450,0.985783,0.168022,0.000450,0.985783,0.168022,0.966545,-0.047403,0.252078, + 0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.063373,-0.981652,-0.179841, + 0.063373,-0.981652,-0.179841,0.063373,-0.981652,-0.179841,0.063373,-0.981652,-0.179841,-0.992289,0.029360,-0.120421, + -0.992289,0.029360,-0.120421,-0.992289,0.029360,-0.120421,-0.992289,0.029360,-0.120421,0.292542,0.160395,-0.942705, + 0.292542,0.160395,-0.942705,0.292542,0.160395,-0.942705,0.292542,0.160395,-0.942705,-0.288666,-0.160606,0.943863, + -0.288666,-0.160606,0.943863,-0.288666,-0.160606,0.943863,-0.288666,-0.160606,0.943863,-0.048234,0.981950,0.182888, + -0.048234,0.981950,0.182888,-0.048234,0.981950,0.182888,-0.048234,0.981950,0.182888,-0.004257,-0.985603,-0.169024, + -0.004257,-0.985603,-0.169024,-0.004257,-0.985603,-0.169024,-0.004257,-0.985603,-0.169024,0.234901,0.144931,-0.961154, + 0.234901,0.144931,-0.961154,0.234901,0.144931,-0.961154,0.234901,0.144931,-0.961154,-0.234501,-0.144951,0.961249, + -0.234501,-0.144951,0.961249,-0.234501,-0.144951,0.961249,-0.234501,-0.144951,0.961249,0.040799,0.965577,0.256898, + 0.040799,0.965577,0.256898,0.040799,0.965577,0.256898,0.040799,0.965577,0.256898,0.966545,-0.047402,0.252081, + 0.966545,-0.047402,0.252081,0.966545,-0.047402,0.252081,0.966545,-0.047402,0.252081,0.027445,-0.970297,-0.240353, + 0.027445,-0.970297,-0.240353,0.027445,-0.970297,-0.240353,0.027445,-0.970297,-0.240353,-0.972243,-0.165169,-0.165717, + -0.972243,-0.165169,-0.165717,-0.972243,-0.165169,-0.165717,-0.972243,-0.165169,-0.165717,-0.047149,0.241638,-0.969220, + -0.047149,0.241638,-0.969220,-0.047149,0.241638,-0.969220,-0.047149,0.241638,-0.969220,0.050792,-0.241537,0.969061, + 0.050792,-0.241537,0.969061,0.050792,-0.241537,0.969061,0.050792,-0.241537,0.969061,-0.007166,0.969695,0.244213, + -0.007166,0.969695,0.244213,-0.007166,0.969695,0.244213,-0.007166,0.969695,0.244213,-0.044562,-0.965166,-0.257816, + -0.044562,-0.965166,-0.257816,-0.044562,-0.965166,-0.257816,-0.044562,-0.965166,-0.257816,0.235479,0.294773,-0.926099, + 0.235479,0.294773,-0.926099,0.235479,0.294773,-0.926099,0.235479,0.294773,-0.926099,-0.235308,-0.294755,0.926148, + -0.235308,-0.294755,0.926148,-0.235308,-0.294755,0.926148,-0.235308,-0.294755,0.926148,-0.016664,0.986071,0.165490, + -0.016664,0.986071,0.165490,-0.016664,0.986071,0.165490,-0.016664,0.986071,0.165490,0.966545,-0.047400,0.252079, + 0.966545,-0.047400,0.252079,0.966545,-0.047400,0.252079,0.966545,-0.047400,0.252079,-0.023825,-0.984347,-0.174624, + -0.023825,-0.984347,-0.174624,-0.023825,-0.984347,-0.174624,-0.023825,-0.984347,-0.174624,-0.985396,-0.095816,-0.140759, + -0.985396,-0.095816,-0.140759,-0.985396,-0.095816,-0.140759,-0.985396,-0.095816,-0.140759,0.293290,0.153959,-0.943545, + 0.293290,0.153959,-0.943545,0.293290,0.153959,-0.943545,0.293290,0.153959,-0.943545,-0.289431,-0.154181,0.944700, + -0.289431,-0.154181,0.944700,-0.289431,-0.154181,0.944700,-0.289431,-0.154181,0.944700,0.012107,0.984951,0.172412, + 0.012107,0.984951,0.172412,0.012107,0.984951,0.172412,0.012107,0.984951,0.172412,0.018365,-0.986118,-0.165025, + 0.018365,-0.986118,-0.165025,0.018365,-0.986118,-0.165025,0.018365,-0.986118,-0.165025,0.239396,0.171341,-0.955684, + 0.239396,0.171341,-0.955684,0.239396,0.171341,-0.955684,0.239396,0.171341,-0.955684,-0.239240,-0.171331,0.955725, + -0.239240,-0.171331,0.955725,-0.239240,-0.171331,0.955725,-0.239240,-0.171331,0.955725,-0.031740,-0.998167,-0.051532, + -0.031740,-0.998167,-0.051532,-0.031740,-0.998167,-0.051532,-0.031740,-0.998167,-0.051532,0.224179,0.157207,-0.961785, + 0.224179,0.157207,-0.961785,0.224179,0.157207,-0.961785,0.224179,0.157207,-0.961785,-0.224160,-0.153382,0.962407, + -0.224160,-0.153382,0.962407,-0.224160,-0.153382,0.962407,-0.224160,-0.153382,0.962407,-0.972245,0.117489,-0.202328, + -0.972245,0.117489,-0.202328,-0.972245,0.117489,-0.202328,-0.972245,0.117489,-0.202328,0.974149,0.027804,0.224190, + 0.974149,0.027804,0.224190,0.974149,0.027804,0.224190,0.974149,0.027804,0.224190,0.226907,0.249621,-0.941383, + 0.226907,0.249621,-0.941383,0.226907,0.249621,-0.941383,0.226907,0.249621,-0.941383,-0.226900,-0.250175,0.941238, + -0.226900,-0.250175,0.941238,-0.226900,-0.250175,0.941238,-0.226900,-0.250175,0.941238,0.000566,0.983161,0.182739, + 0.000566,0.983161,0.182739,0.000566,0.983161,0.182739,0.000566,0.983161,0.182739,-0.976401,0.032196,-0.213551, + -0.976401,0.032196,-0.213551,-0.976401,0.032196,-0.213551,-0.976401,0.032196,-0.213551,0.976491,-0.035031,0.212692, + 0.976491,-0.035031,0.212692,0.976491,-0.035031,0.212692,0.976491,-0.035031,0.212692,-0.031754,-0.998167,-0.051520, + -0.031754,-0.998167,-0.051520,-0.031754,-0.998167,-0.051520,-0.031754,-0.998167,-0.051520,0.224236,0.171514,-0.959323, + 0.224236,0.171514,-0.959323,0.224236,0.171514,-0.959323,0.224236,0.171514,-0.959323,-0.224227,-0.167700,0.960000, + -0.224227,-0.167700,0.960000,-0.224227,-0.167700,0.960000,-0.224227,-0.167700,0.960000,-0.976414,0.040821,-0.212013, + -0.976414,0.040821,-0.212013,-0.976414,0.040821,-0.212013,-0.976414,0.040821,-0.212013,0.976423,-0.036359,0.212784, + 0.976423,-0.036359,0.212784,0.976423,-0.036359,0.212784,0.976423,-0.036359,0.212784,0.227225,0.227001,-0.947016, + 0.227225,0.227001,-0.947016,0.227225,0.227001,-0.947016,0.227225,0.227001,-0.947016,-0.227224,-0.227380,0.946925, + -0.227224,-0.227380,0.946925,-0.227224,-0.227380,0.946925,-0.227224,-0.227380,0.946925,-0.024792,0.998662,0.045380, + -0.024792,0.998662,0.045380,-0.024792,0.998662,0.045380,-0.024792,0.998662,0.045380,-0.149887,-0.044227,0.987713, + -0.149887,-0.044227,0.987713,-0.149887,-0.044227,0.987713,-0.149887,-0.044227,0.987713,0.274423,0.038849,-0.960824, + 0.274423,0.038849,-0.960824,0.274423,0.038849,-0.960824,0.274423,0.038849,-0.960824,-0.984885,0.039808,-0.168574, + -0.984885,0.039808,-0.168574,-0.984885,0.039808,-0.168574,-0.984885,0.039808,-0.168574,0.982626,-0.042479,0.180671, + 0.982626,-0.042479,0.180671,0.982626,-0.042479,0.180671,0.982626,-0.042479,0.180671,0.034671,0.997667,0.058803, + 0.034671,0.997667,0.058803,0.034671,0.997667,0.058803,0.034671,0.997667,0.058803,0.028104,0.996395,0.080043, + 0.028104,0.996395,0.080043,0.028104,0.996395,0.080043,0.986471,-0.040856,0.158765,0.986471,-0.040856,0.158765, + 0.986471,-0.040856,0.158765,0.986471,-0.040856,0.158765,-0.187230,-0.069174,0.979877,-0.187230,-0.069174,0.979877, + -0.187230,-0.069174,0.979877,-0.187230,-0.069174,0.979877,0.229700,0.067247,-0.970936,0.229700,0.067247,-0.970936, + 0.229700,0.067247,-0.970936,0.229700,0.067247,-0.970936,0.184341,0.018178,-0.982694,0.184341,0.018178,-0.982694, + 0.184341,0.018178,-0.982694,0.184341,0.018178,-0.982694,-0.971919,0.045958,-0.230784,-0.971919,0.045958,-0.230784, + -0.971919,0.045958,-0.230784,-0.971919,0.045958,-0.230784,0.028314,0.996398,0.079932,0.028314,0.996398,0.079932, + 0.028314,0.996398,0.079932,-0.144765,-0.036216,0.988803,-0.144765,-0.036216,0.988803,-0.144765,-0.036216,0.988803, + -0.144765,-0.036216,0.988803,0.983190,-0.042449,0.177584,0.983190,-0.042449,0.177584,0.983190,-0.042449,0.177584, + 0.983190,-0.042449,0.177584,-0.970938,0.043571,-0.235333,-0.970938,0.043571,-0.235333,-0.970938,0.043571,-0.235333, + -0.970938,0.043571,-0.235333,-0.966545,0.047405,-0.252080,-0.966545,0.047405,-0.252080,-0.966545,0.047405,-0.252080, + -0.966545,0.047405,-0.252080,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924,0.029082,0.996689,0.075924, + 0.029082,0.996689,0.075924,0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076, + 0.966546,-0.047404,0.252076,-0.029083,-0.996689,-0.075924,-0.029083,-0.996689,-0.075924,-0.029083,-0.996689,-0.075924, + -0.029083,-0.996689,-0.075924,0.251212,-0.023496,-0.967647,0.251212,-0.023496,-0.967647,0.251212,-0.023496,-0.967647, + 0.251212,-0.023496,-0.967647,0.195009,0.068832,-0.978383,0.195009,0.068832,-0.978383,0.195009,0.068832,-0.978383, + 0.195009,0.068832,-0.978383,-0.966546,0.047404,-0.252076,-0.966546,0.047404,-0.252076,-0.966546,0.047404,-0.252076, + -0.966546,0.047404,-0.252076,0.029082,0.996690,0.075912,0.029082,0.996690,0.075912,0.029082,0.996690,0.075912, + 0.029082,0.996690,0.075912,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078, + 0.966545,-0.047406,0.252078,-0.029081,-0.996690,-0.075922,-0.029081,-0.996690,-0.075922,-0.029081,-0.996690,-0.075922, + -0.029081,-0.996690,-0.075922,0.252284,-0.001703,-0.967652,0.252284,-0.001703,-0.967652,0.252284,-0.001703,-0.967652, + 0.252284,-0.001703,-0.967652,0.966545,-0.047396,0.252082,0.966545,-0.047396,0.252082,0.966545,-0.047396,0.252082, + 0.966545,-0.047396,0.252082,-0.966544,0.047406,-0.252082,-0.966544,0.047406,-0.252082,-0.966544,0.047406,-0.252082, + -0.966544,0.047406,-0.252082,0.029083,0.996691,0.075899,0.029083,0.996691,0.075899,0.029083,0.996691,0.075899, + 0.029083,0.996691,0.075899,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076, + 0.966546,-0.047405,0.252076,-0.029087,-0.996689,-0.075924,-0.029087,-0.996689,-0.075924,-0.029087,-0.996689,-0.075924, + -0.029087,-0.996689,-0.075924,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.029081,0.996689,0.075928,0.029081,0.996689,0.075928,0.029081,0.996689,0.075928, + 0.029081,0.996689,0.075928,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077, + -0.966545,0.047405,-0.252077,0.029093,0.996691,0.075899,0.029093,0.996691,0.075899,0.029093,0.996691,0.075899, + 0.029093,0.996691,0.075899,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079,0.966545,-0.047405,0.252079, + 0.966545,-0.047405,0.252079,-0.029087,-0.996690,-0.075911,-0.029087,-0.996690,-0.075911,-0.029087,-0.996690,-0.075911, + -0.029087,-0.996690,-0.075911,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,-0.966546,0.047399,-0.252076,-0.966546,0.047399,-0.252076,-0.966546,0.047399,-0.252076, + -0.966546,0.047399,-0.252076,-0.966544,0.047405,-0.252083,-0.966544,0.047405,-0.252083,-0.966544,0.047405,-0.252083, + -0.966544,0.047405,-0.252083,0.029085,0.996689,0.075927,0.029085,0.996689,0.075927,0.029085,0.996689,0.075927, + 0.029085,0.996689,0.075927,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077, + 0.966545,-0.047404,0.252077,-0.029086,-0.996691,-0.075908,-0.029086,-0.996691,-0.075908,-0.029086,-0.996691,-0.075908, + -0.029086,-0.996691,-0.075908,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726, + 0.254838,0.066046,-0.964726,-0.029084,-0.996689,-0.075932,-0.029084,-0.996689,-0.075932,-0.029084,-0.996689,-0.075932, + -0.029084,-0.996689,-0.075932,0.198233,0.068685,-0.977745,0.198233,0.068685,-0.977745,0.198233,0.068685,-0.977745, + 0.198233,0.068685,-0.977745,0.966545,-0.047410,0.252078,0.966545,-0.047410,0.252078,0.966545,-0.047410,0.252078, + 0.966545,-0.047410,0.252078,0.029082,0.996691,0.075906,0.029082,0.996691,0.075906,0.029082,0.996691,0.075906, + 0.029082,0.996691,0.075906,-0.966544,0.047408,-0.252081,-0.966544,0.047408,-0.252081,-0.966544,0.047408,-0.252081, + -0.966544,0.047408,-0.252081,-0.029086,-0.996691,-0.075903,-0.029086,-0.996691,-0.075903,-0.029086,-0.996691,-0.075903, + -0.029086,-0.996691,-0.075903,0.189898,0.069056,-0.979372,0.189898,0.069056,-0.979372,0.189898,0.069056,-0.979372, + 0.189898,0.069056,-0.979372,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078,0.966545,-0.047403,0.252078, + 0.966545,-0.047403,0.252078,0.029084,0.996690,0.075915,0.029084,0.996690,0.075915,0.029084,0.996690,0.075915, + 0.029084,0.996690,0.075915,-0.966545,0.047410,-0.252076,-0.966545,0.047410,-0.252076,-0.966545,0.047410,-0.252076, + -0.966545,0.047410,-0.252076,-0.029082,-0.996690,-0.075913,-0.029082,-0.996690,-0.075913,-0.029082,-0.996690,-0.075913, + -0.029082,-0.996690,-0.075913,-0.962555,0.048404,-0.266730,-0.962555,0.048404,-0.266730,-0.962555,0.048404,-0.266730, + -0.962555,0.048404,-0.266730,0.033608,0.996883,0.071371,0.033608,0.996883,0.071371,0.033608,0.996883,0.071371, + 0.033608,0.996883,0.071371,0.971823,-0.040538,0.232198,0.971823,-0.040538,0.232198,0.971823,-0.040538,0.232198, + 0.971823,-0.040538,0.232198,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917, + -0.029084,-0.996690,-0.075917,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.195007,-0.068835,0.978383,-0.195007,-0.068835,0.978383,-0.195007,-0.068835,0.978383, + -0.195007,-0.068835,0.978383,0.961392,-0.068547,0.266507,0.961392,-0.068547,0.266507,0.961392,-0.068547,0.266507, + 0.961392,-0.068547,0.266507,-0.252275,0.001702,0.967654,-0.252275,0.001702,0.967654,-0.252275,0.001702,0.967654, + -0.252275,0.001702,0.967654,-0.251218,0.023496,0.967645,-0.251218,0.023496,0.967645,-0.251218,0.023496,0.967645, + -0.251218,0.023496,0.967645,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726, + -0.254838,-0.066046,0.964726,-0.198241,-0.068689,0.977744,-0.198241,-0.068689,0.977744,-0.198241,-0.068689,0.977744, + -0.198241,-0.068689,0.977744,-0.979239,0.043389,-0.198009,-0.979239,0.043389,-0.198009,-0.979239,0.043389,-0.198009, + -0.979239,0.043389,-0.198009,0.029076,0.996688,0.075946,0.029076,0.996688,0.075946,0.029076,0.996688,0.075946, + 0.029076,0.996688,0.075946,0.979240,-0.043389,0.198005,0.979240,-0.043389,0.198005,0.979240,-0.043389,0.198005, + 0.979240,-0.043389,0.198005,-0.029077,-0.996690,-0.075920,-0.029077,-0.996690,-0.075920,-0.029077,-0.996690,-0.075920, + -0.029077,-0.996690,-0.075920,0.187777,0.089242,-0.978149,0.187777,0.089242,-0.978149,0.187777,0.089242,-0.978149, + 0.187777,0.089242,-0.978149,0.132752,0.188044,-0.973148,0.132752,0.188044,-0.973148,0.132752,0.188044,-0.973148, + 0.132752,0.188044,-0.973148,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077, + -0.966545,0.047404,-0.252077,0.029086,0.996689,0.075922,0.029086,0.996689,0.075922,0.029086,0.996689,0.075922, + 0.029086,0.996689,0.075922,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078, + 0.966545,-0.047405,0.252078,-0.029085,-0.996691,-0.075905,-0.029085,-0.996691,-0.075905,-0.029085,-0.996691,-0.075905, + -0.029085,-0.996691,-0.075905,0.255058,0.073686,-0.964114,0.255058,0.073686,-0.964114,0.255058,0.073686,-0.964114, + 0.255058,0.073686,-0.964114,-0.033450,-0.997676,-0.059361,-0.033450,-0.997676,-0.059361,-0.033450,-0.997676,-0.059361, + -0.033450,-0.997676,-0.059361,-0.966061,0.060939,-0.251022,-0.966061,0.060939,-0.251022,-0.966061,0.060939,-0.251022, + -0.966061,0.060939,-0.251022,0.029082,0.996689,0.075928,0.029082,0.996689,0.075928,0.029082,0.996689,0.075928, + 0.029082,0.996689,0.075928,0.966546,-0.047404,0.252075,0.966546,-0.047404,0.252075,0.966546,-0.047404,0.252075, + 0.966546,-0.047404,0.252075,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916, + -0.029083,-0.996690,-0.075916,0.255451,0.089191,-0.962699,0.255451,0.089191,-0.962699,0.255451,0.089191,-0.962699, + 0.255451,0.089191,-0.962699,0.060803,0.997566,0.034139,0.060803,0.997566,0.034139,0.060803,0.997566,0.034139, + 0.060803,0.997566,0.034139,-0.973861,0.044118,-0.222820,-0.973861,0.044118,-0.222820,-0.973861,0.044118,-0.222820, + -0.973861,0.044118,-0.222820,0.029091,0.996690,0.075911,0.029091,0.996690,0.075911,0.029091,0.996690,0.075911, + 0.029091,0.996690,0.075911,0.972502,-0.048479,0.227794,0.972502,-0.048479,0.227794,0.972502,-0.048479,0.227794, + 0.972502,-0.048479,0.227794,-0.029082,-0.996690,-0.075917,-0.029082,-0.996690,-0.075917,-0.029082,-0.996690,-0.075917, + -0.029082,-0.996690,-0.075917,0.219963,0.125786,-0.967364,0.219963,0.125786,-0.967364,0.219963,0.125786,-0.967364, + 0.219963,0.125786,-0.967364,0.961496,-0.048391,0.270526,0.961496,-0.048391,0.270526,0.961496,-0.048391,0.270526, + 0.961496,-0.048391,0.270526,-0.975481,0.040982,-0.216233,-0.975481,0.040982,-0.216233,-0.975481,0.040982,-0.216233, + -0.975481,0.040982,-0.216233,0.029078,0.996689,0.075929,0.029078,0.996689,0.075929,0.029078,0.996689,0.075929, + 0.029078,0.996689,0.075929,0.975374,-0.044909,0.215938,0.975374,-0.044909,0.215938,0.975374,-0.044909,0.215938, + 0.975374,-0.044909,0.215938,-0.058425,-0.996687,0.056580,-0.058425,-0.996687,0.056580,-0.058425,-0.996687,0.056580, + -0.058425,-0.996687,0.056580,0.219568,0.105105,-0.969919,0.219568,0.105105,-0.969919,0.219568,0.105105,-0.969919, + 0.219568,0.105105,-0.969919,-0.003252,-0.921542,-0.388266,-0.003252,-0.921542,-0.388266,-0.003252,-0.921542,-0.388266, + -0.003252,-0.921542,-0.388266,0.175927,0.113539,-0.977834,0.175927,0.113539,-0.977834,0.175927,0.113539,-0.977834, + 0.175927,0.113539,-0.977834,0.033450,0.997676,0.059359,0.033450,0.997676,0.059359,0.033450,0.997676,0.059359, + 0.033450,0.997676,0.059359,-0.005043,0.973567,0.228346,-0.005043,0.973567,0.228346,-0.005043,0.973567,0.228346, + -0.005043,0.973567,0.228346,-0.961497,0.048392,-0.270522,-0.961497,0.048392,-0.270522,-0.961497,0.048392,-0.270522, + -0.961497,0.048392,-0.270522,-0.961396,0.068547,-0.266493,-0.961396,0.068547,-0.266493,-0.961396,0.068547,-0.266493, + -0.961396,0.068547,-0.266493,0.990889,-0.062848,0.119118,0.990889,-0.062848,0.119118,0.990889,-0.062848,0.119118, + 0.990889,-0.062848,0.119118,0.293782,0.049217,-0.954604,0.293782,0.049217,-0.954604,0.293782,0.049217,-0.954604, + 0.293782,0.049217,-0.954604,-0.054971,-0.997070,-0.053194,-0.054971,-0.997070,-0.053194,-0.054971,-0.997070,-0.053194, + -0.054971,-0.997070,-0.053194,0.029085,0.996690,0.075921,0.029085,0.996690,0.075921,0.029085,0.996690,0.075921, + 0.029085,0.996690,0.075921,-0.996812,0.029916,0.073962,-0.996812,0.029916,0.073962,-0.996812,0.029916,0.073962, + -0.996812,0.029916,0.073962,-0.255374,-0.085976,0.963012,-0.255374,-0.085976,0.963012,-0.255374,-0.085976,0.963012, + -0.255374,-0.085976,0.963012,-0.091798,0.070612,-0.993271,-0.091798,0.070612,-0.993271,-0.091798,0.070612,-0.993271, + -0.091798,0.070612,-0.993271,-0.206598,0.077952,-0.975316,-0.206598,0.077952,-0.975316,-0.206598,0.077952,-0.975316, + -0.206598,0.077952,-0.975316,-0.076809,-0.980851,-0.178972,-0.076809,-0.980851,-0.178972,-0.076809,-0.980851,-0.178972, + -0.076809,-0.980851,-0.178972,0.980455,-0.046542,-0.191159,0.980455,-0.046542,-0.191159,0.980455,-0.046542,-0.191159, + 0.980455,-0.046542,-0.191159,0.175182,0.960371,0.216791,0.175182,0.960371,0.216791,0.175182,0.960371,0.216791, + 0.175182,0.960371,0.216791,-0.980447,0.046642,0.191174,-0.980447,0.046642,0.191174,-0.980447,0.046642,0.191174, + -0.980447,0.046642,0.191174,0.996812,-0.029915,-0.073967,0.996812,-0.029915,-0.073967,0.996812,-0.029915,-0.073967, + 0.996812,-0.029915,-0.073967,-0.029084,-0.996690,-0.075920,-0.029084,-0.996690,-0.075920,-0.029084,-0.996690,-0.075920, + -0.029084,-0.996690,-0.075920,-0.071246,0.084951,-0.993835,-0.071246,0.084951,-0.993835,-0.071246,0.084951,-0.993835, + -0.071246,0.084951,-0.993835,-0.999219,0.017226,0.035559,-0.999219,0.017226,0.035559,-0.999219,0.017226,0.035559, + -0.999219,0.017226,0.035559,-0.988130,0.148169,0.040564,-0.988130,0.148169,0.040564,-0.988130,0.148169,0.040564, + -0.988130,0.148169,0.040564,0.029077,0.996690,0.075922,0.029077,0.996690,0.075922,0.029077,0.996690,0.075922, + 0.029077,0.996690,0.075922,0.998238,0.053659,-0.025315,0.998238,0.053659,-0.025315,0.998238,0.053659,-0.025315, + 0.998238,0.053659,-0.025315,-0.029078,-0.996690,-0.075923,-0.029078,-0.996690,-0.075923,-0.029078,-0.996690,-0.075923, + -0.029078,-0.996690,-0.075923,-0.025358,0.206024,-0.978218,-0.025358,0.206024,-0.978218,-0.025358,0.206024,-0.978218, + -0.025358,0.206024,-0.978218,-0.049721,-0.970797,-0.234695,-0.049721,-0.970797,-0.234695,-0.049721,-0.970797,-0.234695, + -0.049721,-0.970797,-0.234695,-0.074072,0.070684,-0.994745,-0.074072,0.070684,-0.994745,-0.074072,0.070684,-0.994745, + -0.074072,0.070684,-0.994745,0.980484,-0.066101,0.185154,0.980484,-0.066101,0.185154,0.980484,-0.066101,0.185154, + 0.980484,-0.066101,0.185154,0.065190,0.997793,0.012589,0.065190,0.997793,0.012589,0.065190,0.997793,0.012589, + 0.065190,0.997793,0.012589,-0.999145,0.026745,0.031536,-0.999145,0.026745,0.031536,-0.999145,0.026745,0.031536, + -0.999145,0.026745,0.031536,-0.992939,0.054085,-0.105576,-0.992939,0.054085,-0.105576,-0.992939,0.054085,-0.105576, + -0.992939,0.054085,-0.105576,-0.869355,-0.061478,-0.490350,-0.869355,-0.061478,-0.490350,-0.869355,-0.061478,-0.490350, + -0.869355,-0.061478,-0.490350,0.553971,-0.149731,-0.818961,0.553971,-0.149731,-0.818961,0.553971,-0.149731,-0.818961, + 0.553971,-0.149731,-0.818961,0.999834,-0.016228,-0.008248,0.999834,-0.016228,-0.008248,0.999834,-0.016228,-0.008248, + 0.999834,-0.016228,-0.008248,0.666433,-0.025139,0.745141,0.666433,-0.025139,0.745141,0.666433,-0.025139,0.745141, + 0.666433,-0.025139,0.745141,-0.041343,-0.625510,-0.779120,-0.041343,-0.625510,-0.779120,-0.041343,-0.625510,-0.779120, + -0.041343,-0.625510,-0.779120,-0.637096,0.161736,-0.753624,-0.637096,0.161736,-0.753624,-0.637096,0.161736,-0.753624, + -0.637096,0.161736,-0.753624,0.739005,0.338616,-0.582418,0.739005,0.338616,-0.582418,0.739005,0.338616,-0.582418, + 0.739005,0.338616,-0.582418,0.869773,0.061770,0.489570,0.869773,0.061770,0.489570,0.869773,0.061770,0.489570, + 0.869773,0.061770,0.489570,-0.996427,0.001769,-0.084437,-0.996427,0.001769,-0.084437,-0.996427,0.001769,-0.084437, + -0.996427,0.001769,-0.084437,-0.019652,0.363832,-0.931257,-0.019652,0.363832,-0.931257,-0.019652,0.363832,-0.931257, + -0.019652,0.363832,-0.931257,0.998723,-0.050500,0.001132,0.998723,-0.050500,0.001132,0.998723,-0.050500,0.001132, + 0.998723,-0.050500,0.001132,-0.046364,-0.891705,-0.450237,-0.046364,-0.891705,-0.450237,-0.046364,-0.891705,-0.450237, + -0.046364,-0.891705,-0.450237,0.149825,-0.350425,0.924530,0.149825,-0.350425,0.924530,0.149825,-0.350425,0.924530, + 0.149825,-0.350425,0.924530,-0.199885,0.210568,0.956926,-0.199885,0.210568,0.956926,-0.199885,0.210568,0.956926, + -0.199885,0.210568,0.956926,0.219565,0.545540,-0.808812,0.219565,0.545540,-0.808812,0.219565,0.545540,-0.808812, + 0.219565,0.545540,-0.808812,-0.999191,-0.029529,0.027298,-0.999191,-0.029529,0.027298,-0.999191,-0.029529,0.027298, + -0.999191,-0.029529,0.027298,-0.143520,0.345657,-0.927321,-0.143520,0.345657,-0.927321,-0.143520,0.345657,-0.927321, + -0.143520,0.345657,-0.927321,0.195149,-0.204677,-0.959179,0.195149,-0.204677,-0.959179,0.195149,-0.204677,-0.959179, + 0.195149,-0.204677,-0.959179,0.988379,-0.129179,0.080126,0.988379,-0.129179,0.080126,0.988379,-0.129179,0.080126, + 0.988379,-0.129179,0.080126,0.998767,0.042342,0.025898,0.998767,0.042342,0.025898,0.998767,0.042342,0.025898, + 0.998767,0.042342,0.025898,-0.991550,0.124566,-0.036223,-0.991550,0.124566,-0.036223,-0.991550,0.124566,-0.036223, + -0.991550,0.124566,-0.036223,0.029083,0.996690,0.075916,0.029083,0.996690,0.075916,0.029083,0.996690,0.075916, + 0.029083,0.996690,0.075916,-0.135526,-0.076645,0.987805,-0.135526,-0.076645,0.987805,-0.135526,-0.076645,0.987805, + -0.135526,-0.076645,0.987805,-0.219485,-0.101092,0.970364,-0.219485,-0.101092,0.970364,-0.219485,-0.101092,0.970364, + -0.219485,-0.101092,0.970364,-0.961786,0.048330,-0.269503,-0.961786,0.048330,-0.269503,-0.961786,0.048330,-0.269503, + -0.961786,0.048330,-0.269503,0.024462,0.995326,0.093421,0.024462,0.995326,0.093421,0.024462,0.995326,0.093421, + 0.024462,0.995326,0.093421,0.961787,-0.048323,0.269502,0.961787,-0.048323,0.269502,0.961787,-0.048323,0.269502, + 0.961787,-0.048323,0.269502,-0.024453,-0.995327,-0.093414,-0.024453,-0.995327,-0.093414,-0.024453,-0.995327,-0.093414, + -0.024453,-0.995327,-0.093414,-0.964175,0.047879,-0.260908,-0.964175,0.047879,-0.260908,-0.964175,0.047879,-0.260908, + -0.964175,0.047879,-0.260908,0.964175,-0.047866,0.260912,0.964175,-0.047866,0.260912,0.964175,-0.047866,0.260912, + 0.964175,-0.047866,0.260912,-0.024453,-0.995326,-0.093422,-0.024453,-0.995326,-0.093422,-0.024453,-0.995326,-0.093422, + -0.024453,-0.995326,-0.093422,-0.957542,0.048817,-0.284131,-0.957542,0.048817,-0.284131,-0.957542,0.048817,-0.284131, + -0.957542,0.048817,-0.284131,0.965628,-0.047099,0.255624,0.965628,-0.047099,0.255624,0.965628,-0.047099,0.255624, + 0.965628,-0.047099,0.255624,-0.026204,-0.995373,-0.092449,-0.026204,-0.995373,-0.092449,-0.026204,-0.995373,-0.092449, + -0.026204,-0.995373,-0.092449,0.025179,0.995451,0.091891,0.025179,0.995451,0.091891,0.025179,0.995451,0.091891, + 0.025179,0.995451,0.091891,-0.946189,0.050666,-0.319625,-0.946189,0.050666,-0.319625,-0.946189,0.050666,-0.319625, + -0.946189,0.050666,-0.319625,0.944770,0.031755,0.326191,0.944770,0.031755,0.326191,0.944770,0.031755,0.326191, + 0.944770,0.031755,0.326191,-0.025188,-0.995450,-0.091893,-0.025188,-0.995450,-0.091893,-0.025188,-0.995450,-0.091893, + -0.025188,-0.995450,-0.091893,-0.025566,-0.995268,-0.093742,-0.025566,-0.995268,-0.093742,-0.025566,-0.995268,-0.093742, + -0.025566,-0.995268,-0.093742,0.025769,0.995332,0.093011,0.025769,0.995332,0.093011,0.025769,0.995332,0.093011, + 0.025769,0.995332,0.093011,0.963515,-0.049305,0.263074,0.963515,-0.049305,0.263074,0.963515,-0.049305,0.263074, + 0.963515,-0.049305,0.263074,-0.035960,-0.998038,-0.051263,-0.035960,-0.998038,-0.051263,-0.035960,-0.998038,-0.051263, + -0.035960,-0.998038,-0.051263,0.035959,0.998037,0.051267,0.035959,0.998037,0.051267,0.035959,0.998037,0.051267, + 0.035959,0.998037,0.051267,0.963548,-0.048152,0.263166,0.963548,-0.048152,0.263166,0.963548,-0.048152,0.263166, + 0.963548,-0.048152,0.263166,0.034252,0.997996,0.053205,0.034252,0.997996,0.053205,0.034252,0.997996,0.053205, + 0.034252,0.997996,0.053205,-0.034274,-0.997994,-0.053222,-0.034274,-0.997994,-0.053222,-0.034274,-0.997994,-0.053222, + -0.034274,-0.997994,-0.053222,-0.944225,0.052319,-0.325117,-0.944225,0.052319,-0.325117,-0.944225,0.052319,-0.325117, + -0.944225,0.052319,-0.325117,0.024106,0.995539,0.091219,0.024106,0.995539,0.091219,0.024106,0.995539,0.091219, + 0.024106,0.995539,0.091219,-0.023958,-0.995479,-0.091914,-0.023958,-0.995479,-0.091914,-0.023958,-0.995479,-0.091914, + -0.023958,-0.995479,-0.091914,-0.943070,0.060267,-0.327090,-0.943070,0.060267,-0.327090,-0.943070,0.060267,-0.327090, + -0.943070,0.060267,-0.327090,0.946071,-0.053232,0.319556,0.946071,-0.053232,0.319556,0.946071,-0.053232,0.319556, + 0.946071,-0.053232,0.319556,-0.032987,-0.997657,-0.059928,-0.032987,-0.997657,-0.059928,-0.032987,-0.997657,-0.059928, + -0.032987,-0.997657,-0.059928,-0.946119,0.053231,-0.319413,-0.946119,0.053231,-0.319413,-0.946119,0.053231,-0.319413, + -0.946119,0.053231,-0.319413,0.032987,0.997658,0.059923,0.032987,0.997658,0.059923,0.032987,0.997658,0.059923, + 0.032987,0.997658,0.059923,0.959673,-0.049956,0.276644,0.959673,-0.049956,0.276644,0.959673,-0.049956,0.276644, + 0.959673,-0.049956,0.276644,-0.952640,0.051633,-0.299686,-0.952640,0.051633,-0.299686,-0.952640,0.051633,-0.299686, + -0.952640,0.051633,-0.299686,0.032008,0.997695,0.059829,0.032008,0.997695,0.059829,0.032008,0.997695,0.059829, + 0.032008,0.997695,0.059829,0.964223,-0.048138,0.260686,0.964223,-0.048138,0.260686,0.964223,-0.048138,0.260686, + 0.964223,-0.048138,0.260686,-0.964222,0.048126,-0.260689,-0.964222,0.048126,-0.260689,-0.964222,0.048126,-0.260689, + -0.964222,0.048126,-0.260689,0.033598,0.997704,0.058800,0.033598,0.997704,0.058800,0.033598,0.997704,0.058800, + 0.033598,0.997704,0.058800,-0.033705,-0.997725,-0.058390,-0.033705,-0.997725,-0.058390,-0.033705,-0.997725,-0.058390, + -0.033705,-0.997725,-0.058390,0.961771,-0.048843,0.269463,0.961771,-0.048843,0.269463,0.961771,-0.048843,0.269463, + 0.961771,-0.048843,0.269463,-0.961297,-0.034092,-0.273396,-0.961297,-0.034092,-0.273396,-0.961297,-0.034092,-0.273396, + -0.961297,-0.034092,-0.273396,0.033716,0.997724,0.058396,0.033716,0.997724,0.058396,0.033716,0.997724,0.058396, + 0.033716,0.997724,0.058396,-0.234388,-0.089677,0.967998,-0.234388,-0.089677,0.967998,-0.234388,-0.089677,0.967998, + -0.234388,-0.089677,0.967998,-0.033450,-0.997676,-0.059357,-0.033450,-0.997676,-0.059357,-0.033450,-0.997676,-0.059357, + -0.033450,-0.997676,-0.059357,0.963260,-0.048059,0.264235,0.963260,-0.048059,0.264235,0.963260,-0.048059,0.264235, + 0.963260,-0.048059,0.264235,0.033451,0.997676,0.059358,0.033451,0.997676,0.059358,0.033451,0.997676,0.059358, + 0.033451,0.997676,0.059358,-0.963261,0.048065,-0.264230,-0.963261,0.048065,-0.264230,-0.963261,0.048065,-0.264230, + -0.963261,0.048065,-0.264230,-0.033736,-0.997730,-0.058275,-0.033736,-0.997730,-0.058275,-0.033736,-0.997730,-0.058275, + -0.033736,-0.997730,-0.058275,0.966545,-0.047411,0.252077,0.966545,-0.047411,0.252077,0.966545,-0.047411,0.252077, + 0.966545,-0.047411,0.252077,0.033735,0.997730,0.058280,0.033735,0.997730,0.058280,0.033735,0.997730,0.058280, + 0.033735,0.997730,0.058280,-0.966545,0.047412,-0.252079,-0.966545,0.047412,-0.252079,-0.966545,0.047412,-0.252079, + -0.966545,0.047412,-0.252079,-0.033450,-0.997676,-0.059359,-0.033450,-0.997676,-0.059359,-0.033450,-0.997676,-0.059359, + -0.033450,-0.997676,-0.059359,0.963261,-0.048036,0.264237,0.963261,-0.048036,0.264237,0.963261,-0.048036,0.264237, + 0.963261,-0.048036,0.264237,0.033451,0.997676,0.059357,0.033451,0.997676,0.059357,0.033451,0.997676,0.059357, + 0.033451,0.997676,0.059357,-0.966545,0.047416,-0.252076,-0.966545,0.047416,-0.252076,-0.966545,0.047416,-0.252076, + -0.966545,0.047416,-0.252076,0.215544,0.067910,-0.974130,0.215544,0.067910,-0.974130,0.215544,0.067910,-0.974130, + 0.215544,0.067910,-0.974130,0.966544,-0.047410,0.252080,0.966544,-0.047410,0.252080,0.966544,-0.047410,0.252080, + 0.966544,-0.047410,0.252080,0.029081,0.996690,0.075915,0.029081,0.996690,0.075915,0.029081,0.996690,0.075915, + 0.029081,0.996690,0.075915,-0.966545,0.047418,-0.252077,-0.966545,0.047418,-0.252077,-0.966545,0.047418,-0.252077, + -0.966545,0.047418,-0.252077,-0.029082,-0.996688,-0.075943,-0.029082,-0.996688,-0.075943,-0.029082,-0.996688,-0.075943, + -0.029082,-0.996688,-0.075943,0.183546,0.254851,-0.949401,0.183546,0.254851,-0.949401,0.183546,0.254851,-0.949401, + 0.183546,0.254851,-0.949401,0.966547,-0.047400,0.252072,0.966547,-0.047400,0.252072,0.966547,-0.047400,0.252072, + 0.966547,-0.047400,0.252072,-0.020525,0.964471,0.263392,-0.020525,0.964471,0.263392,-0.020525,0.964471,0.263392, + -0.020525,0.964471,0.263392,-0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077,-0.966545,0.047409,-0.252077, + -0.966545,0.047409,-0.252077,0.020528,-0.964476,-0.263372,0.020528,-0.964476,-0.263372,0.020528,-0.964476,-0.263372, + 0.020528,-0.964476,-0.263372,-0.037455,-0.996771,-0.071020,-0.037455,-0.996771,-0.071020,-0.037455,-0.996771,-0.071020, + -0.037455,-0.996771,-0.071020,0.530386,-0.080590,0.843917,0.530386,-0.080590,0.843917,0.530386,-0.080590,0.843917, + 0.530386,-0.080590,0.843917,0.037455,0.996771,0.071022,0.037455,0.996771,0.071022,0.037455,0.996771,0.071022, + 0.037455,0.996771,0.071022,-0.530396,0.080589,-0.843911,-0.530396,0.080589,-0.843911,-0.530396,0.080589,-0.843911, + -0.530396,0.080589,-0.843911,-0.037637,-0.996739,-0.071374,-0.037637,-0.996739,-0.071374,-0.037637,-0.996739,-0.071374, + -0.037637,-0.996739,-0.071374,0.500779,-0.079162,0.861948,0.500779,-0.079162,0.861948,0.500779,-0.079162,0.861948, + 0.500779,-0.079162,0.861948,0.037633,0.996740,0.071372,0.037633,0.996740,0.071372,0.037633,0.996740,0.071372, + 0.037633,0.996740,0.071372,-0.493097,0.079064,-0.866374,-0.493097,0.079064,-0.866374,-0.493097,0.079064,-0.866374, + -0.493097,0.079064,-0.866374,-0.037407,-0.996770,-0.071061,-0.037407,-0.996770,-0.071061,-0.037407,-0.996770,-0.071061, + -0.037407,-0.996770,-0.071061,0.525506,-0.080515,0.846972,0.525506,-0.080515,0.846972,0.525506,-0.080515,0.846972, + 0.525506,-0.080515,0.846972,0.037407,0.996770,0.071063,0.037407,0.996770,0.071063,0.037407,0.996770,0.071063, + 0.037407,0.996770,0.071063,-0.525502,0.080550,-0.846970,-0.525502,0.080550,-0.846970,-0.525502,0.080550,-0.846970, + -0.525502,0.080550,-0.846970,0.033719,0.995910,0.083828,0.033719,0.995910,0.083828,0.033719,0.995910,0.083828, + 0.033719,0.995910,0.083828,-0.853488,-0.015273,0.520888,-0.853488,-0.015273,0.520888,-0.853488,-0.015273,0.520888, + -0.853488,-0.015273,0.520888,-0.033711,-0.995909,-0.083835,-0.033711,-0.995909,-0.083835,-0.033711,-0.995909,-0.083835, + -0.033711,-0.995909,-0.083835,0.853491,0.015306,-0.520883,0.853491,0.015306,-0.520883,0.853491,0.015306,-0.520883, + 0.853491,0.015306,-0.520883,0.033710,0.995911,0.083820,0.033710,0.995911,0.083820,0.033710,0.995911,0.083820, + 0.033710,0.995911,0.083820,-0.837707,-0.018451,0.545808,-0.837707,-0.018451,0.545808,-0.837707,-0.018451,0.545808, + -0.837707,-0.018451,0.545808,-0.033709,-0.995911,-0.083815,-0.033709,-0.995911,-0.083815,-0.033709,-0.995911,-0.083815, + -0.033709,-0.995911,-0.083815,0.837712,0.018437,-0.545801,0.837712,0.018437,-0.545801,0.837712,0.018437,-0.545801, + 0.837712,0.018437,-0.545801,0.034154,0.995894,0.083833,0.034154,0.995894,0.083833,0.034154,0.995894,0.083833, + 0.034154,0.995894,0.083833,-0.849598,-0.017050,0.527155,-0.849598,-0.017050,0.527155,-0.849598,-0.017050,0.527155, + -0.849598,-0.017050,0.527155,-0.034154,-0.995894,-0.083839,-0.034154,-0.995894,-0.083839,-0.034154,-0.995894,-0.083839, + -0.034154,-0.995894,-0.083839,0.845141,0.017989,-0.534240,0.845141,0.017989,-0.534240,0.845141,0.017989,-0.534240, + 0.845141,0.017989,-0.534240,-0.967708,0.054501,-0.246111,-0.967708,0.054501,-0.246111,-0.967708,0.054501,-0.246111, + -0.967708,0.054501,-0.246111,-0.200740,-0.751476,0.628480,-0.200740,-0.751476,0.628480,-0.200740,-0.751476,0.628480, + -0.200740,-0.751476,0.628480,0.967708,-0.054499,0.246114,0.967708,-0.054499,0.246114,0.967708,-0.054499,0.246114, + 0.967708,-0.054499,0.246114,0.200935,0.750624,-0.629435,0.200935,0.750624,-0.629435,0.200935,0.750624,-0.629435, + 0.200935,0.750624,-0.629435,-0.968083,-0.017358,-0.250030,-0.968083,-0.017358,-0.250030,-0.968083,-0.017358,-0.250030, + -0.968083,-0.017358,-0.250030,-0.152166,-0.752061,0.641287,-0.152166,-0.752061,0.641287,-0.152166,-0.752061,0.641287, + -0.152166,-0.752061,0.641287,0.968083,0.017341,0.250029,0.968083,0.017341,0.250029,0.968083,0.017341,0.250029, + 0.968083,0.017341,0.250029,0.152148,0.752069,-0.641282,0.152148,0.752069,-0.641282,0.152148,0.752069,-0.641282, + 0.152148,0.752069,-0.641282,-0.946082,-0.166761,0.277703,-0.946082,-0.166761,0.277703,-0.946082,-0.166761,0.277703, + -0.946082,-0.166761,0.277703,0.371190,-0.923346,-0.098235,0.371190,-0.923346,-0.098235,0.371190,-0.923346,-0.098235, + 0.371190,-0.923346,-0.098235,0.355641,-0.933868,0.037557,0.355641,-0.933868,0.037557,0.355641,-0.933868,0.037557, + 0.355641,-0.933868,0.037557,0.026149,0.999472,-0.019295,0.026149,0.999472,-0.019295,0.026149,0.999472,-0.019295, + 0.026149,0.999472,-0.019295,-0.026162,-0.999471,0.019299,-0.026162,-0.999471,0.019299,-0.026162,-0.999471,0.019299, + -0.026162,-0.999471,0.019299,-0.995308,0.021862,0.094260,-0.995308,0.021862,0.094260,-0.995308,0.021862,0.094260, + -0.995308,0.021862,0.094260,-0.371646,0.926688,0.055929,-0.371646,0.926688,0.055929,-0.371646,0.926688,0.055929, + -0.371646,0.926688,0.055929,-0.989934,-0.028968,0.138535,-0.989934,-0.028968,0.138535,-0.989934,-0.028968,0.138535, + -0.989934,-0.028968,0.138535,0.965631,0.203594,-0.161576,0.965631,0.203594,-0.161576,0.965631,0.203594,-0.161576, + 0.965631,0.203594,-0.161576,0.031395,0.987105,0.156965,0.031395,0.987105,0.156965,0.031395,0.987105,0.156965, + 0.031395,0.987105,0.156965,-0.031395,-0.987104,-0.156970,-0.031395,-0.987104,-0.156970,-0.031395,-0.987104,-0.156970, + -0.031395,-0.987104,-0.156970,-0.969728,0.009718,0.243996,-0.969728,0.009718,0.243996,-0.969728,0.009718,0.243996, + -0.969728,0.009718,0.243996,-0.976958,0.044420,-0.208759,-0.976958,0.044420,-0.208759,-0.976958,0.044420,-0.208759, + -0.976958,0.044420,-0.208759,0.027850,0.996365,0.080506,0.027850,0.996365,0.080506,0.027850,0.996365,0.080506, + 0.027850,0.996365,0.080506,0.957675,-0.049551,0.283555,0.957675,-0.049551,0.283555,0.957675,-0.049551,0.283555, + 0.957675,-0.049551,0.283555,0.027887,0.996371,0.080418,0.027887,0.996371,0.080418,0.027887,0.996371,0.080418, + 0.027887,0.996371,0.080418,0.231385,0.067174,-0.970540,0.231385,0.067174,-0.970540,0.231385,0.067174,-0.970540, + 0.231385,0.067174,-0.970540,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912, + 0.029085,0.996690,0.075912,0.029080,0.996691,0.075906,0.029080,0.996691,0.075906,0.029080,0.996691,0.075906, + 0.029080,0.996691,0.075906,-0.254831,-0.066045,0.964728,-0.254831,-0.066045,0.964728,-0.254831,-0.066045,0.964728, + -0.254831,-0.066045,0.964728,0.028059,0.996363,0.080458,0.028059,0.996363,0.080458,0.028059,0.996363,0.080458, + 0.028059,0.996363,0.080458,-0.987359,0.040474,-0.153246,-0.987359,0.040474,-0.153246,-0.987359,0.040474,-0.153246, + -0.987359,0.040474,-0.153246,0.980111,-0.043352,0.193655,0.980111,-0.043352,0.193655,0.980111,-0.043352,0.193655, + 0.980111,-0.043352,0.193655,0.029081,0.996690,0.075912,0.029081,0.996690,0.075912,0.029081,0.996690,0.075912, + 0.029081,0.996690,0.075912,-0.966548,0.047403,-0.252066,-0.966548,0.047403,-0.252066,-0.966548,0.047403,-0.252066, + -0.966548,0.047403,-0.252066,0.029084,0.996690,0.075916,0.029084,0.996690,0.075916,0.029084,0.996690,0.075916, + 0.029084,0.996690,0.075916,0.039182,0.995024,0.091610,0.039182,0.995024,0.091610,0.039182,0.995024,0.091610, + 0.039182,0.995024,0.091610,-0.039181,-0.995023,-0.091616,-0.039181,-0.995023,-0.091616,-0.039181,-0.995023,-0.091616, + -0.039181,-0.995023,-0.091616,-0.030934,-0.995834,-0.085775,-0.030934,-0.995834,-0.085775,-0.030934,-0.995834,-0.085775, + -0.030934,-0.995834,-0.085775,0.075290,0.333841,-0.939618,0.075290,0.333841,-0.939618,0.075290,0.333841,-0.939618, + -0.000268,-0.942899,-0.333079,-0.000268,-0.942899,-0.333079,-0.000268,-0.942899,-0.333079,-0.000268,-0.942899,-0.333079, + 0.030932,0.995835,0.085768,0.030932,0.995835,0.085768,0.030932,0.995835,0.085768,0.030932,0.995835,0.085768, + -0.964565,0.047894,-0.259460,-0.964565,0.047894,-0.259460,-0.964565,0.047894,-0.259460,-0.964565,0.047894,-0.259460, + 0.963694,-0.048107,0.262640,0.963694,-0.048107,0.262640,0.963694,-0.048107,0.262640,0.963694,-0.048107,0.262640, + -0.030196,-0.996968,-0.071711,-0.030196,-0.996968,-0.071711,-0.030196,-0.996968,-0.071711,-0.030196,-0.996968,-0.071711, + -0.971900,0.045921,-0.230871,-0.971900,0.045921,-0.230871,-0.971900,0.045921,-0.230871,-0.971900,0.045921,-0.230871, + 0.970337,-0.046395,0.237263,0.970337,-0.046395,0.237263,0.970337,-0.046395,0.237263,0.970337,-0.046395,0.237263, + -0.030197,-0.996969,-0.071702,-0.030197,-0.996969,-0.071702,-0.030197,-0.996969,-0.071702,-0.030197,-0.996969,-0.071702, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + -0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918, + -0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724, + 0.254843,0.066051,-0.964724,0.254843,0.066051,-0.964724,0.254843,0.066051,-0.964724,0.254843,0.066051,-0.964724, + -0.029082,-0.996691,-0.075905,-0.029082,-0.996691,-0.075905,-0.029082,-0.996691,-0.075905,-0.029082,-0.996691,-0.075905, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + 0.254820,0.066041,-0.964731,0.254820,0.066041,-0.964731,0.254820,0.066041,-0.964731,0.254820,0.066041,-0.964731, + -0.029084,-0.996692,-0.075894,-0.029084,-0.996692,-0.075894,-0.029084,-0.996692,-0.075894,-0.029084,-0.996692,-0.075894, + -0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725, + -0.970754,0.046278,-0.235575,-0.970754,0.046278,-0.235575,-0.970754,0.046278,-0.235575,-0.970754,0.046278,-0.235575, + -0.029079,-0.996690,-0.075921,-0.029079,-0.996690,-0.075921,-0.029079,-0.996690,-0.075921,-0.029079,-0.996690,-0.075921, + 0.966547,-0.047380,0.252077,0.966547,-0.047380,0.252077,0.966547,-0.047380,0.252077,0.966547,-0.047380,0.252077, + -0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916,-0.029083,-0.996690,-0.075916, + -0.971757,0.045973,-0.231463,-0.971757,0.045973,-0.231463,-0.971757,0.045973,-0.231463,-0.971757,0.045973,-0.231463, + 0.969677,-0.046574,0.239913,0.969677,-0.046574,0.239913,0.969677,-0.046574,0.239913,0.969677,-0.046574,0.239913, + -0.029967,-0.997008,-0.071252,-0.029967,-0.997008,-0.071252,-0.029967,-0.997008,-0.071252,-0.029967,-0.997008,-0.071252, + -0.985754,0.041182,-0.163076,-0.985754,0.041182,-0.163076,-0.985754,0.041182,-0.163076,-0.985754,0.041182,-0.163076, + 0.985178,-0.041452,0.166453,0.985178,-0.041452,0.166453,0.985178,-0.041452,0.166453,0.985178,-0.041452,0.166453, + -0.029985,-0.997014,-0.071160,-0.029985,-0.997014,-0.071160,-0.029985,-0.997014,-0.071160,-0.029985,-0.997014,-0.071160, + 0.187226,0.069170,-0.979878,0.187226,0.069170,-0.979878,0.187226,0.069170,-0.979878,0.187226,0.069170,-0.979878, + -0.029083,-0.996690,-0.075911,-0.029083,-0.996690,-0.075911,-0.029083,-0.996690,-0.075911,-0.029083,-0.996690,-0.075911, + -0.187230,-0.069173,0.979878,-0.187230,-0.069173,0.979878,-0.187230,-0.069173,0.979878,-0.187230,-0.069173,0.979878, + 0.206365,0.068324,-0.976087,0.206365,0.068324,-0.976087,0.206365,0.068324,-0.976087,0.206365,0.068324,-0.976087, + -0.029083,-0.996689,-0.075923,-0.029083,-0.996689,-0.075923,-0.029083,-0.996689,-0.075923,-0.029083,-0.996689,-0.075923, + -0.214754,-0.067944,0.974302,-0.214754,-0.067944,0.974302,-0.214754,-0.067944,0.974302,-0.214754,-0.067944,0.974302, + 0.187222,0.069179,-0.979878,0.187222,0.069179,-0.979878,0.187222,0.069179,-0.979878,0.187222,0.069179,-0.979878, + -0.029079,-0.996690,-0.075924,-0.029079,-0.996690,-0.075924,-0.029079,-0.996690,-0.075924,-0.029079,-0.996690,-0.075924, + -0.187224,-0.069158,0.979880,-0.187224,-0.069158,0.979880,-0.187224,-0.069158,0.979880,-0.187224,-0.069158,0.979880, + -0.981888,0.042688,-0.184591,-0.981888,0.042688,-0.184591,-0.981888,0.042688,-0.184591,-0.981888,0.042688,-0.184591, + -0.029086,-0.996690,-0.075916,-0.029086,-0.996690,-0.075916,-0.029086,-0.996690,-0.075916,-0.029086,-0.996690,-0.075916, + 0.981886,-0.042734,0.184592,0.981886,-0.042734,0.184592,0.981886,-0.042734,0.184592,0.981886,-0.042734,0.184592, + -0.029081,-0.996690,-0.075915,-0.029081,-0.996690,-0.075915,-0.029081,-0.996690,-0.075915,-0.029081,-0.996690,-0.075915, + -0.968937,0.046776,-0.242843,-0.968937,0.046776,-0.242843,-0.968937,0.046776,-0.242843,-0.968937,0.046776,-0.242843, + 0.967662,-0.047099,0.247813,0.967662,-0.047099,0.247813,0.967662,-0.047099,0.247813,0.967662,-0.047099,0.247813, + -0.030142,-0.997007,-0.071190,-0.030142,-0.997007,-0.071190,-0.030142,-0.997007,-0.071190,-0.030142,-0.997007,-0.071190, + -0.987359,0.040479,-0.153245,-0.987359,0.040479,-0.153245,-0.987359,0.040479,-0.153245,-0.987359,0.040479,-0.153245, + 0.985750,-0.041177,0.163097,0.985750,-0.041177,0.163097,0.985750,-0.041177,0.163097,0.985750,-0.041177,0.163097, + -0.030133,-0.997007,-0.071193,-0.030133,-0.997007,-0.071193,-0.030133,-0.997007,-0.071193,-0.030133,-0.997007,-0.071193, + 0.218633,0.067772,-0.973451,0.218633,0.067772,-0.973451,0.218633,0.067772,-0.973451,0.218633,0.067772,-0.973451, + -0.029082,-0.996690,-0.075920,-0.029082,-0.996690,-0.075920,-0.029082,-0.996690,-0.075920,-0.029082,-0.996690,-0.075920, + -0.218633,-0.067765,0.973451,-0.218633,-0.067765,0.973451,-0.218633,-0.067765,0.973451,-0.218633,-0.067765,0.973451, + 0.218638,0.067766,-0.973450,0.218638,0.067766,-0.973450,0.218638,0.067766,-0.973450,0.218638,0.067766,-0.973450, + -0.029078,-0.996688,-0.075946,-0.029078,-0.996688,-0.075946,-0.029078,-0.996688,-0.075946,-0.029078,-0.996688,-0.075946, + -0.218634,-0.067770,0.973451,-0.218634,-0.067770,0.973451,-0.218634,-0.067770,0.973451,-0.218634,-0.067770,0.973451, + 0.218640,0.067778,-0.973449,0.218640,0.067778,-0.973449,0.218640,0.067778,-0.973449,0.218640,0.067778,-0.973449, + -0.029082,-0.996689,-0.075924,-0.029082,-0.996689,-0.075924,-0.029082,-0.996689,-0.075924,-0.029082,-0.996689,-0.075924, + -0.218623,-0.067757,0.973454,-0.218623,-0.067757,0.973454,-0.218623,-0.067757,0.973454,-0.218623,-0.067757,0.973454, + -0.975373,0.044884,-0.215945,-0.975373,0.044884,-0.215945,-0.975373,0.044884,-0.215945,-0.975373,0.044884,-0.215945, + -0.029078,-0.996690,-0.075915,-0.029078,-0.996690,-0.075915,-0.029078,-0.996690,-0.075915,-0.029078,-0.996690,-0.075915, + 0.975371,-0.044944,0.215943,0.975371,-0.044944,0.215943,0.975371,-0.044944,0.215943,0.975371,-0.044944,0.215943, + -0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916, + 0.967662,-0.047095,0.247816,0.967662,-0.047095,0.247816,0.967662,-0.047095,0.247816,0.967662,-0.047095,0.247816, + 0.028059,0.996363,0.080459,0.028059,0.996363,0.080459,0.028059,0.996363,0.080459,0.028059,0.996363,0.080459, + 0.218631,0.067763,-0.973452,0.218631,0.067763,-0.973452,0.218631,0.067763,-0.973452,0.218631,0.067763,-0.973452, + 0.029082,0.996690,0.075916,0.029082,0.996690,0.075916,0.029082,0.996690,0.075916,0.029082,0.996690,0.075916, + 0.029084,0.996693,0.075879,0.029084,0.996693,0.075879,0.029084,0.996693,0.075879,0.029084,0.996693,0.075879, + -0.218632,-0.067766,0.973452,-0.218632,-0.067766,0.973452,-0.218632,-0.067766,0.973452,-0.218632,-0.067766,0.973452, + 0.975375,-0.044838,0.215946,0.975375,-0.044838,0.215946,0.975375,-0.044838,0.215946,0.975375,-0.044838,0.215946, + 0.029078,0.996691,0.075908,0.029078,0.996691,0.075908,0.029078,0.996691,0.075908,0.029078,0.996691,0.075908, + -0.975371,0.044944,-0.215943,-0.975371,0.044944,-0.215943,-0.975371,0.044944,-0.215943,-0.975371,0.044944,-0.215943, + 0.029084,0.996690,0.075915,0.029084,0.996690,0.075915,0.029084,0.996690,0.075915,0.029084,0.996690,0.075915, + 0.218646,0.067769,-0.973448,0.218646,0.067769,-0.973448,0.218646,0.067769,-0.973448,0.218646,0.067769,-0.973448, + 0.974858,-0.045057,0.218223,0.974858,-0.045057,0.218223,0.974858,-0.045057,0.218223,0.974858,-0.045057,0.218223, + -0.218633,-0.067768,0.973451,-0.218633,-0.067768,0.973451,-0.218633,-0.067768,0.973451,-0.218633,-0.067768,0.973451, + -0.969399,0.046642,-0.241019,-0.969399,0.046642,-0.241019,-0.969399,0.046642,-0.241019,-0.969399,0.046642,-0.241019, + 0.254848,0.066037,-0.964724,0.254848,0.066037,-0.964724,0.254848,0.066037,-0.964724,0.254848,0.066037,-0.964724, + 0.985134,-0.041454,0.166710,0.985134,-0.041454,0.166710,0.985134,-0.041454,0.166710,0.985134,-0.041454,0.166710, + -0.236191,-0.066943,0.969398,-0.236191,-0.066943,0.969398,-0.236191,-0.066943,0.969398,-0.236191,-0.066943,0.969398, + -0.959659,0.049078,-0.276851,-0.959659,0.049078,-0.276851,-0.959659,0.049078,-0.276851,-0.959659,0.049078,-0.276851, + -0.961224,0.048715,-0.271432,-0.961224,0.048715,-0.271432,-0.961224,0.048715,-0.271432,-0.961224,0.048715,-0.271432, + 0.960834,-0.048822,0.272789,0.960834,-0.048822,0.272789,0.960834,-0.048822,0.272789,0.960834,-0.048822,0.272789, + -0.028742,-0.996838,-0.074084,-0.028742,-0.996838,-0.074084,-0.028742,-0.996838,-0.074084,-0.028742,-0.996838,-0.074084, + -0.970106,0.046436,-0.238199,-0.970106,0.046436,-0.238199,-0.970106,0.046436,-0.238199,-0.970106,0.046436,-0.238199, + 0.969876,-0.046523,0.239117,0.969876,-0.046523,0.239117,0.969876,-0.046523,0.239117,0.969876,-0.046523,0.239117, + -0.030278,-0.996762,-0.074488,-0.030278,-0.996762,-0.074488,-0.030278,-0.996762,-0.074488,-0.030278,-0.996762,-0.074488, + 0.254848,0.066051,-0.964723,0.254848,0.066051,-0.964723,0.254848,0.066051,-0.964723,0.254848,0.066051,-0.964723, + -0.029082,-0.996689,-0.075925,-0.029082,-0.996689,-0.075925,-0.029082,-0.996689,-0.075925,-0.029082,-0.996689,-0.075925, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725, + 0.949373,-0.051226,0.309946,0.949373,-0.051226,0.309946,0.949373,-0.051226,0.309946,0.949373,-0.051226,0.309946, + 0.029083,0.996689,0.075926,0.029083,0.996689,0.075926,0.029083,0.996689,0.075926,0.029083,0.996689,0.075926, + 0.258050,0.065884,-0.963883,0.258050,0.065884,-0.963883,0.258050,0.065884,-0.963883,0.258050,0.065884,-0.963883, + -0.251294,-0.066226,0.965643,-0.251294,-0.066226,0.965643,-0.251294,-0.066226,0.965643,-0.251294,-0.066226,0.965643, + 0.029079,0.996690,0.075912,0.029079,0.996690,0.075912,0.029079,0.996690,0.075912,0.029079,0.996690,0.075912, + 0.029087,0.996690,0.075917,0.029087,0.996690,0.075917,0.029087,0.996690,0.075917,0.029087,0.996690,0.075917, + 0.029086,0.996689,0.075923,0.029086,0.996689,0.075923,0.029086,0.996689,0.075923,0.029086,0.996689,0.075923, + -0.972049,0.045925,-0.230241,-0.972049,0.045925,-0.230241,-0.972049,0.045925,-0.230241,-0.972049,0.045925,-0.230241, + 0.029081,0.996691,0.075909,0.029081,0.996691,0.075909,0.029081,0.996691,0.075909,0.029081,0.996691,0.075909, + -0.966538,0.047355,-0.252114,-0.966538,0.047355,-0.252114,-0.966538,0.047355,-0.252114,-0.966538,0.047355,-0.252114, + 0.029083,0.996690,0.075914,0.029083,0.996690,0.075914,0.029083,0.996690,0.075914,0.029083,0.996690,0.075914, + 0.966545,-0.047372,0.252083,0.966545,-0.047372,0.252083,0.966545,-0.047372,0.252083,0.966545,-0.047372,0.252083, + -0.275876,-0.065005,0.958993,-0.275876,-0.065005,0.958993,-0.275876,-0.065005,0.958993,-0.275876,-0.065005,0.958993, + 0.029082,0.996693,0.075880,0.029082,0.996693,0.075880,0.029082,0.996693,0.075880,0.029082,0.996693,0.075880, + 0.233832,0.067053,-0.969962,0.233832,0.067053,-0.969962,0.233832,0.067053,-0.969962,0.233832,0.067053,-0.969962, + 0.971214,-0.047515,0.233421,0.971214,-0.047515,0.233421,0.971214,-0.047515,0.233421,0.971214,-0.047515,0.233421, + -0.970608,0.047499,-0.235930,-0.970608,0.047499,-0.235930,-0.970608,0.047499,-0.235930,-0.970608,0.047499,-0.235930, + 0.054212,0.998383,-0.017125,0.054212,0.998383,-0.017125,0.054212,0.998383,-0.017125,0.054212,0.998383,-0.017125, + 0.963170,-0.047319,0.264696,0.963170,-0.047319,0.264696,0.963170,-0.047319,0.264696,0.963170,-0.047319,0.264696, + -0.965598,0.047376,-0.255687,-0.965598,0.047376,-0.255687,-0.965598,0.047376,-0.255687,-0.965598,0.047376,-0.255687, + 0.054217,0.998383,-0.017099,0.054217,0.998383,-0.017099,0.054217,0.998383,-0.017099,0.054217,0.998383,-0.017099, + 0.238707,-0.005801,-0.971074,0.238707,-0.005801,-0.971074,0.238707,-0.005801,-0.971074,0.238707,-0.005801,-0.971074, + 0.097041,0.994024,-0.049990,0.097041,0.994024,-0.049990,0.097041,0.994024,-0.049990,0.097041,0.994024,-0.049990, + -0.237683,0.005748,0.971326,-0.237683,0.005748,0.971326,-0.237683,0.005748,0.971326,-0.237683,0.005748,0.971326, + 0.237058,-0.005715,-0.971479,0.237058,-0.005715,-0.971479,0.237058,-0.005715,-0.971479,0.237058,-0.005715,-0.971479, + 0.097971,0.993946,-0.049725,0.097971,0.993946,-0.049725,0.097971,0.993946,-0.049725,0.097971,0.993946,-0.049725, + -0.237897,0.005763,0.971273,-0.237897,0.005763,0.971273,-0.237897,0.005763,0.971273,-0.237897,0.005763,0.971273, + 0.969147,-0.046721,0.242016,0.969147,-0.046721,0.242016,0.969147,-0.046721,0.242016,0.969147,-0.046721,0.242016, + -0.969342,0.046643,-0.241250,-0.969342,0.046643,-0.241250,-0.969342,0.046643,-0.241250,-0.969342,0.046643,-0.241250, + 0.027785,0.996608,0.077455,0.027785,0.996608,0.077455,0.027785,0.996608,0.077455,0.027785,0.996608,0.077455, + 0.960590,-0.048853,0.273641,0.960590,-0.048853,0.273641,0.960590,-0.048853,0.273641,0.960590,-0.048853,0.273641, + -0.961026,0.048777,-0.272120,-0.961026,0.048777,-0.272120,-0.961026,0.048777,-0.272120,-0.961026,0.048777,-0.272120, + 0.029449,0.996526,0.077905,0.029449,0.996526,0.077905,0.029449,0.996526,0.077905,0.029449,0.996526,0.077905, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726, + 0.029081,0.996690,0.075922,0.029081,0.996690,0.075922,0.029081,0.996690,0.075922,0.029081,0.996690,0.075922, + -0.994239,0.036684,-0.100715,-0.994239,0.036684,-0.100715,-0.994239,0.036684,-0.100715,-0.994239,0.036684,-0.100715, + 0.029079,0.996690,0.075920,0.029079,0.996690,0.075920,0.029079,0.996690,0.075920,0.029079,0.996690,0.075920, + 0.966545,-0.047400,0.252080,0.966545,-0.047400,0.252080,0.966545,-0.047400,0.252080,0.966545,-0.047400,0.252080, + -0.029085,-0.996690,-0.075920,-0.029085,-0.996690,-0.075920,-0.029085,-0.996690,-0.075920,-0.029085,-0.996690,-0.075920, + 0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726, + -0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724, + -0.966544,0.047408,-0.252081,-0.966544,0.047408,-0.252081,-0.966544,0.047408,-0.252081,-0.966544,0.047408,-0.252081, + 0.029090,0.996690,0.075918,0.029090,0.996690,0.075918,0.029090,0.996690,0.075918,0.029090,0.996690,0.075918, + 0.975076,-0.045002,0.217260,0.975076,-0.045002,0.217260,0.975076,-0.045002,0.217260,0.975076,-0.045002,0.217260, + -0.029082,-0.996691,-0.075908,-0.029082,-0.996691,-0.075908,-0.029082,-0.996691,-0.075908,-0.029082,-0.996691,-0.075908, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725, + -0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724, + -0.942040,0.069139,-0.328298,-0.942040,0.069139,-0.328298,-0.942040,0.069139,-0.328298,-0.942040,0.069139,-0.328298, + 0.029083,0.996691,0.075909,0.029083,0.996691,0.075909,0.029083,0.996691,0.075909,0.029083,0.996691,0.075909, + 0.942043,-0.069142,0.328291,0.942043,-0.069142,0.328291,0.942043,-0.069142,0.328291,0.942043,-0.069142,0.328291, + -0.029086,-0.996691,-0.075908,-0.029086,-0.996691,-0.075908,-0.029086,-0.996691,-0.075908,-0.029086,-0.996691,-0.075908, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079, + 0.029081,0.996688,0.075936,0.029081,0.996688,0.075936,0.029081,0.996688,0.075936,0.029081,0.996688,0.075936, + 0.995696,-0.035569,0.085588,0.995696,-0.035569,0.085588,0.995696,-0.035569,0.085588,0.995696,-0.035569,0.085588, + -0.029085,-0.996690,-0.075918,-0.029085,-0.996690,-0.075918,-0.029085,-0.996690,-0.075918,-0.029085,-0.996690,-0.075918, + 0.364012,0.060172,-0.929448,0.364012,0.060172,-0.929448,0.364012,0.060172,-0.929448,0.364012,0.060172,-0.929448, + -0.254848,-0.066044,0.964723,-0.254848,-0.066044,0.964723,-0.254848,-0.066044,0.964723,-0.254848,-0.066044,0.964723, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079, + 0.029085,0.996690,0.075912,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912, + -0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075, + -0.029075,-0.996691,-0.075899,-0.029075,-0.996691,-0.075899,-0.029075,-0.996691,-0.075899,-0.029075,-0.996691,-0.075899, + 0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + 0.029083,0.996691,0.075907,0.029083,0.996691,0.075907,0.029083,0.996691,0.075907,0.029083,0.996691,0.075907, + -0.029077,-0.996691,-0.075906,-0.029077,-0.996691,-0.075906,-0.029077,-0.996691,-0.075906,-0.029077,-0.996691,-0.075906, + 0.407914,0.057499,-0.911208,0.407914,0.057499,-0.911208,0.407914,0.057499,-0.911208,0.407914,0.057499,-0.911208, + -0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724, + 0.029087,0.996690,0.075910,0.029087,0.996690,0.075910,0.029087,0.996690,0.075910,0.029087,0.996690,0.075910, + 0.990891,-0.038750,0.128972,0.990891,-0.038750,0.128972,0.990891,-0.038750,0.128972,0.990891,-0.038750,0.128972, + -0.966543,0.047415,-0.252083,-0.966543,0.047415,-0.252083,-0.966543,0.047415,-0.252083,-0.966543,0.047415,-0.252083, + 0.254838,0.066044,-0.964726,0.254838,0.066044,-0.964726,0.254838,0.066044,-0.964726,0.254838,0.066044,-0.964726, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + 0.029083,0.996691,0.075908,0.029083,0.996691,0.075908,0.029083,0.996691,0.075908,0.029083,0.996691,0.075908, + 0.979767,-0.043493,0.195361,0.979767,-0.043493,0.195361,0.979767,-0.043493,0.195361,0.979767,-0.043493,0.195361, + -0.950032,0.051174,-0.307928,-0.950032,0.051174,-0.307928,-0.950032,0.051174,-0.307928,-0.950032,0.051174,-0.307928, + 0.254851,0.066045,-0.964722,0.254851,0.066045,-0.964722,0.254851,0.066045,-0.964722,0.254851,0.066045,-0.964722, + -0.254842,-0.066042,0.964725,-0.254842,-0.066042,0.964725,-0.254842,-0.066042,0.964725,-0.254842,-0.066042,0.964725, + 0.021122,0.994144,0.105979,0.021122,0.994144,0.105979,0.021122,0.994144,0.105979,0.021122,0.994144,0.105979, + 0.956831,-0.049729,0.286361,0.956831,-0.049729,0.286361,0.956831,-0.049729,0.286361,0.956831,-0.049729,0.286361, + -0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079,-0.966545,0.047404,-0.252079, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + -0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726, + -0.029084,-0.996691,-0.075904,-0.029084,-0.996691,-0.075904,-0.029084,-0.996691,-0.075904,-0.029084,-0.996691,-0.075904, + -0.966546,0.047393,-0.252078,-0.966546,0.047393,-0.252078,-0.966546,0.047393,-0.252078,-0.966546,0.047393,-0.252078, + 0.987579,-0.040400,0.151840,0.987579,-0.040400,0.151840,0.987579,-0.040400,0.151840,0.987579,-0.040400,0.151840, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + -0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723, + -0.029082,-0.996691,-0.075909,-0.029082,-0.996691,-0.075909,-0.029082,-0.996691,-0.075909,-0.029082,-0.996691,-0.075909, + -0.989390,0.039524,-0.139803,-0.989390,0.039524,-0.139803,-0.989390,0.039524,-0.139803,-0.989390,0.039524,-0.139803, + 0.990518,-0.038934,0.131750,0.990518,-0.038934,0.131750,0.990518,-0.038934,0.131750,0.990518,-0.038934,0.131750, + 0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726, + -0.297149,-0.063889,0.952691,-0.297149,-0.063889,0.952691,-0.297149,-0.063889,0.952691,-0.297149,-0.063889,0.952691, + -0.029086,-0.996690,-0.075911,-0.029086,-0.996690,-0.075911,-0.029086,-0.996690,-0.075911,-0.029086,-0.996690,-0.075911, + -0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076, + 0.966545,-0.047419,0.252076,0.966545,-0.047419,0.252076,0.966545,-0.047419,0.252076,0.966545,-0.047419,0.252076, + 0.254842,0.066054,-0.964724,0.254842,0.066054,-0.964724,0.254842,0.066054,-0.964724,0.254842,0.066054,-0.964724, + -0.254851,-0.066043,0.964722,-0.254851,-0.066043,0.964722,-0.254851,-0.066043,0.964722,-0.254851,-0.066043,0.964722, + -0.029080,-0.996689,-0.075927,-0.029080,-0.996689,-0.075927,-0.029080,-0.996689,-0.075927,-0.029080,-0.996689,-0.075927, + -0.981886,0.042706,-0.184597,-0.981886,0.042706,-0.184597,-0.981886,0.042706,-0.184597,-0.981886,0.042706,-0.184597, + 0.935363,-0.053932,0.349553,0.935363,-0.053932,0.349553,0.935363,-0.053932,0.349553,0.935363,-0.053932,0.349553, + 0.187233,0.069174,-0.979877,0.187233,0.069174,-0.979877,0.187233,0.069174,-0.979877,0.187233,0.069174,-0.979877, + -0.187227,-0.069172,0.979878,-0.187227,-0.069172,0.979878,-0.187227,-0.069172,0.979878,-0.187227,-0.069172,0.979878, + -0.029078,-0.996690,-0.075919,-0.029078,-0.996690,-0.075919,-0.029078,-0.996690,-0.075919,-0.029078,-0.996690,-0.075919, + -0.966544,0.047417,-0.252080,-0.966544,0.047417,-0.252080,-0.966544,0.047417,-0.252080,-0.966544,0.047417,-0.252080, + 0.966546,-0.047377,0.252081,0.966546,-0.047377,0.252081,0.966546,-0.047377,0.252081,0.966546,-0.047377,0.252081, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + -0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725, + 0.029083,0.996691,0.075909,0.029083,0.996691,0.075909,0.029083,0.996691,0.075909,0.029083,0.996691,0.075909, + 0.966546,-0.047389,0.252080,0.966546,-0.047389,0.252080,0.966546,-0.047389,0.252080,0.966546,-0.047389,0.252080, + -0.966546,0.047409,-0.252073,-0.966546,0.047409,-0.252073,-0.966546,0.047409,-0.252073,-0.966546,0.047409,-0.252073, + 0.254837,0.066039,-0.964726,0.254837,0.066039,-0.964726,0.254837,0.066039,-0.964726,0.254837,0.066039,-0.964726, + -0.254834,-0.066054,0.964726,-0.254834,-0.066054,0.964726,-0.254834,-0.066054,0.964726,-0.254834,-0.066054,0.964726, + 0.916823,0.220227,0.333070,0.916823,0.220227,0.333070,0.916823,0.220227,0.333070,0.916823,0.220227,0.333070, + -0.426229,0.074391,0.901551,-0.426229,0.074391,0.901551,-0.426229,0.074391,0.901551,-0.426229,0.074391,0.901551, + -0.185994,-0.981919,0.035225,-0.185994,-0.981919,0.035225,-0.185994,-0.981919,0.035225,-0.185994,-0.981919,0.035225, + 0.295289,-0.878435,-0.375708,0.295289,-0.878435,-0.375708,0.295289,-0.878435,-0.375708,0.295289,-0.878435,-0.375708, + -0.942868,-0.267067,-0.199186,-0.942868,-0.267067,-0.199186,-0.942868,-0.267067,-0.199186,-0.100092,-0.951635,0.290470, + -0.100092,-0.951635,0.290470,-0.100092,-0.951635,0.290470,-0.100092,-0.951635,0.290470,0.932575,-0.214888,0.290046, + 0.932575,-0.214888,0.290046,0.932575,-0.214888,0.290046,0.932575,-0.214888,0.290046,0.230286,0.161168,0.959684, + 0.230286,0.161168,0.959684,0.230286,0.161168,0.959684,0.230286,0.161168,0.959684,-0.960029,0.050614,-0.275285, + -0.960029,0.050614,-0.275285,-0.960029,0.050614,-0.275285,-0.960029,0.050614,-0.275285,-0.324029,-0.144234,0.934987, + -0.324029,-0.144234,0.934987,-0.324029,-0.144234,0.934987,-0.324029,-0.144234,0.934987,-0.007765,-0.968884,0.247395, + -0.007765,-0.968884,0.247395,-0.007765,-0.968884,0.247395,-0.007765,-0.968884,0.247395,0.730962,-0.205416,-0.650768, + 0.730962,-0.205416,-0.650768,0.730962,-0.205416,-0.650768,0.730962,-0.205416,-0.650768,-0.102111,-0.974568,0.199474, + -0.102111,-0.974568,0.199474,-0.102111,-0.974568,0.199474,-0.102111,-0.974568,0.199474,-0.946038,0.047462,-0.320561, + -0.946038,0.047462,-0.320561,-0.946038,0.047462,-0.320561,-0.946038,0.047462,-0.320561,0.967243,-0.082631,0.240026, + 0.967243,-0.082631,0.240026,0.967243,-0.082631,0.240026,0.967243,-0.082631,0.240026,0.025286,0.986641,0.160937, + 0.025286,0.986641,0.160937,0.025286,0.986641,0.160937,0.025286,0.986641,0.160937,-0.024147,-0.986719,-0.160632, + -0.024147,-0.986719,-0.160632,-0.024147,-0.986719,-0.160632,-0.024147,-0.986719,-0.160632,-0.235749,-0.160310,-0.958501, + -0.235749,-0.160310,-0.958501,-0.235749,-0.160310,-0.958501,-0.235749,-0.160310,-0.958501,-0.146556,-0.968741,0.200155, + -0.146556,-0.968741,0.200155,-0.146556,-0.968741,0.200155,-0.146556,-0.968741,0.200155,0.235438,0.160367,0.958568, + 0.235438,0.160367,0.958568,0.235438,0.160367,0.958568,0.235438,0.160367,0.958568,-0.963082,0.147942,0.224912, + -0.963082,0.147942,0.224912,-0.963082,0.147942,0.224912,-0.963082,0.147942,0.224912,-0.109274,-0.978037,0.177488, + -0.109274,-0.978037,0.177488,-0.109274,-0.978037,0.177488,-0.109274,-0.978037,0.177488,0.963133,-0.147922,-0.224709, + 0.963133,-0.147922,-0.224709,0.963133,-0.147922,-0.224709,0.963133,-0.147922,-0.224709,-0.251896,-0.195586,0.947784, + -0.251896,-0.195586,0.947784,-0.251896,-0.195586,0.947784,-0.251896,-0.195586,0.947784,-0.953993,-0.114419,-0.277137, + -0.953993,-0.114419,-0.277137,-0.953993,-0.114419,-0.277137,-0.953993,-0.114419,-0.277137,0.026019,0.977653,0.208611, + 0.026019,0.977653,0.208611,0.026019,0.977653,0.208611,0.026019,0.977653,0.208611,-0.037522,-0.976657,-0.211502, + -0.037522,-0.976657,-0.211502,-0.037522,-0.976657,-0.211502,-0.037522,-0.976657,-0.211502,0.977121,0.080083,-0.197029, + 0.977121,0.080083,-0.197029,0.977121,0.080083,-0.197029,0.977121,0.080083,-0.197029,0.212678,-0.372520,0.903325, + 0.212678,-0.372520,0.903325,0.212678,-0.372520,0.903325,0.212678,-0.372520,0.903325,-0.964952,0.065371,0.254154, + -0.964952,0.065371,0.254154,-0.964952,0.065371,0.254154,-0.964952,0.065371,0.254154,0.045170,0.927238,0.371739, + 0.045170,0.927238,0.371739,0.045170,0.927238,0.371739,0.045170,0.927238,0.371739,-0.072042,-0.927948,-0.365682, + -0.072042,-0.927948,-0.365682,-0.072042,-0.927948,-0.365682,-0.072042,-0.927948,-0.365682,0.937070,0.086907,0.338153, + 0.937070,0.086907,0.338153,0.937070,0.086907,0.338153,0.937070,0.086907,0.338153,-0.324030,-0.144232,0.934987, + -0.324030,-0.144232,0.934987,-0.324030,-0.144232,0.934987,-0.324030,-0.144232,0.934987,-0.900094,0.351292,-0.257729, + -0.900094,0.351292,-0.257729,-0.900094,0.351292,-0.257729,-0.900094,0.351292,-0.257729,0.027126,0.986492,0.161547, + 0.027126,0.986492,0.161547,0.027126,0.986492,0.161547,0.027126,0.986492,0.161547,-0.031741,-0.986095,-0.163122, + -0.031741,-0.986095,-0.163122,-0.031741,-0.986095,-0.163122,-0.031741,-0.986095,-0.163122,-0.997966,0.012975,0.062410, + -0.997966,0.012975,0.062410,-0.997966,0.012975,0.062410,-0.997966,0.012975,0.062410,0.057402,0.608523,0.791457, + 0.057402,0.608523,0.791457,0.057402,0.608523,0.791457,0.057402,0.608523,0.791457,0.987734,-0.149931,0.043625, + 0.987734,-0.149931,0.043625,0.987734,-0.149931,0.043625,0.987734,-0.149931,0.043625,0.015629,-0.793237,0.608713, + 0.015629,-0.793237,0.608713,0.015629,-0.793237,0.608713,0.015629,-0.793237,0.608713,-0.014170,0.793153,-0.608858, + -0.014170,0.793153,-0.608858,-0.014170,0.793153,-0.608858,-0.014170,0.793153,-0.608858,-0.967693,0.129482,0.216343, + -0.967693,0.129482,0.216343,-0.967693,0.129482,0.216343,-0.967693,0.129482,0.216343,0.253279,0.509469,0.822370, + 0.253279,0.509469,0.822370,0.253279,0.509469,0.822370,0.253279,0.509469,0.822370,0.966302,-0.178272,-0.185689, + 0.966302,-0.178272,-0.185689,0.966302,-0.178272,-0.185689,0.966302,-0.178272,-0.185689,0.027988,-0.853692,0.520026, + 0.027988,-0.853692,0.520026,0.027988,-0.853692,0.520026,0.027988,-0.853692,0.520026,-0.020285,0.852820,-0.521810, + -0.020285,0.852820,-0.521810,-0.020285,0.852820,-0.521810,-0.020285,0.852820,-0.521810,-0.976737,-0.121870,-0.176447, + -0.976737,-0.121870,-0.176447,-0.976737,-0.121870,-0.176447,-0.976737,-0.121870,-0.176447,-0.199087,0.209691,0.957285, + -0.199087,0.209691,0.957285,-0.199087,0.209691,0.957285,-0.199087,0.209691,0.957285,0.950670,-0.195844,0.240565, + 0.950670,-0.195844,0.240565,0.950670,-0.195844,0.240565,0.950670,-0.195844,0.240565,-0.108297,-0.975557,0.191209, + -0.108297,-0.975557,0.191209,-0.108297,-0.975557,0.191209,-0.108297,-0.975557,0.191209,0.104369,0.975808,-0.192110, + 0.104369,0.975808,-0.192110,0.104369,0.975808,-0.192110,0.104369,0.975808,-0.192110,-0.978477,0.011572,-0.206033, + -0.978477,0.011572,-0.206033,-0.978477,0.011572,-0.206033,-0.978477,0.011572,-0.206033,-0.199089,0.209691,0.957284, + -0.199089,0.209691,0.957284,-0.199089,0.209691,0.957284,-0.199089,0.209691,0.957284,0.962238,-0.143194,0.231504, + 0.962238,-0.143194,0.231504,0.962238,-0.143194,0.231504,0.962238,-0.143194,0.231504,-0.082328,-0.976943,0.196986, + -0.082328,-0.976943,0.196986,-0.082328,-0.976943,0.196986,-0.082328,-0.976943,0.196986,0.083357,0.976930,-0.196620, + 0.083357,0.976930,-0.196620,0.083357,0.976930,-0.196620,0.083357,0.976930,-0.196620,-0.978802,0.005383,-0.204740, + -0.978802,0.005383,-0.204740,-0.978802,0.005383,-0.204740,-0.978802,0.005383,-0.204740,-0.199092,0.209688,0.957285, + -0.199092,0.209688,0.957285,-0.199092,0.209688,0.957285,-0.199092,0.209688,0.957285,0.963384,-0.137144,0.230397, + 0.963384,-0.137144,0.230397,0.963384,-0.137144,0.230397,0.963384,-0.137144,0.230397,-0.081886,-0.976987,0.196955, + -0.081886,-0.976987,0.196955,-0.081886,-0.976987,0.196955,-0.081886,-0.976987,0.196955,0.082878,0.976944,-0.196753, + 0.082878,0.976944,-0.196753,0.082878,0.976944,-0.196753,0.082878,0.976944,-0.196753,-0.052163,-0.995886,0.074091, + -0.052163,-0.995886,0.074091,-0.052163,-0.995886,0.074091,-0.052163,-0.995886,0.074091,-0.023917,-0.999714,-0.000851, + -0.023917,-0.999714,-0.000851,-0.023917,-0.999714,-0.000851,-0.023917,-0.999714,-0.000851,-0.052299,-0.995817,0.074921, + -0.052299,-0.995817,0.074921,-0.052299,-0.995817,0.074921,-0.052299,-0.995817,0.074921,-0.022948,-0.999737,-0.000449, + -0.022948,-0.999737,-0.000449,-0.022948,-0.999737,-0.000449,-0.022948,-0.999737,-0.000449,-0.297556,0.027194,0.954317, + -0.297556,0.027194,0.954317,-0.297556,0.027194,0.954317,-0.297556,0.027194,0.954317,0.052165,0.995882,-0.074152, + 0.052165,0.995882,-0.074152,0.052165,0.995882,-0.074152,0.052165,0.995882,-0.074152,0.302140,-0.027311,-0.952872, + 0.302140,-0.027311,-0.952872,0.302140,-0.027311,-0.952872,0.302140,-0.027311,-0.952872,-0.302534,0.043744,0.952134, + -0.302534,0.043744,0.952134,-0.302534,0.043744,0.952134,-0.302534,0.043744,0.952134,0.052299,0.995818,-0.074910, + 0.052299,0.995818,-0.074910,0.052299,0.995818,-0.074910,0.052299,0.995818,-0.074910,0.298427,-0.043631,-0.953435, + 0.298427,-0.043631,-0.953435,0.298427,-0.043631,-0.953435,0.298427,-0.043631,-0.953435,0.035897,0.998739,-0.035089, + 0.035897,0.998739,-0.035089,0.035897,0.998739,-0.035089,0.035897,0.998739,-0.035089,-0.944737,0.023603,-0.326978, + -0.944737,0.023603,-0.326978,-0.944737,0.023603,-0.326978,-0.944737,0.023603,-0.326978,0.943937,-0.023532,0.329285, + 0.943937,-0.023532,0.329285,0.943937,-0.023532,0.329285,0.943937,-0.023532,0.329285,0.034883,0.998762,-0.035475, + 0.034883,0.998762,-0.035475,0.034883,0.998762,-0.035475,0.034883,0.998762,-0.035475,-0.953269,0.024639,-0.301116, + -0.953269,0.024639,-0.301116,-0.953269,0.024639,-0.301116,-0.953269,0.024639,-0.301116,0.951964,-0.024492,0.305229, + 0.951964,-0.024492,0.305229,0.951964,-0.024492,0.305229,0.951964,-0.024492,0.305229,-0.054212,-0.998383,0.017128, + -0.054212,-0.998383,0.017128,-0.054212,-0.998383,0.017128,-0.054212,-0.998383,0.017128,-0.097046,-0.994025,0.049968, + -0.097046,-0.994025,0.049968,-0.097046,-0.994025,0.049968,-0.097046,-0.994025,0.049968,-0.054218,-0.998383,0.017109, + -0.054218,-0.998383,0.017109,-0.054218,-0.998383,0.017109,-0.054218,-0.998383,0.017109,-0.097975,-0.993945,0.049732, + -0.097975,-0.993945,0.049732,-0.097975,-0.993945,0.049732,-0.097975,-0.993945,0.049732,0.066524,-0.915794,-0.396101, + 0.066524,-0.915794,-0.396101,0.066524,-0.915794,-0.396101,0.066524,-0.915794,-0.396101,-0.285472,-0.172057,0.942816, + -0.285472,-0.172057,0.942816,-0.285472,-0.172057,0.942816,-0.285472,-0.172057,0.942816,0.305453,0.288556,0.907432, + 0.305453,0.288556,0.907432,0.305453,0.288556,0.907432,0.305453,0.288556,0.907432,-0.155387,0.564529,-0.810655, + -0.155387,0.564529,-0.810655,-0.155387,0.564529,-0.810655,-0.155387,0.564529,-0.810655,0.279542,0.159755,-0.946750, + 0.279542,0.159755,-0.946750,0.279542,0.159755,-0.946750,0.279542,0.159755,-0.946750,-0.293191,-0.286426,-0.912140, + -0.293191,-0.286426,-0.912140,-0.293191,-0.286426,-0.912140,-0.293191,-0.286426,-0.912140,-0.966545,0.047405,-0.252077, + -0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,0.966545,-0.047404,0.252077, + 0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.256135,0.126624,-0.958312, + 0.256135,0.126624,-0.958312,0.256135,0.126624,-0.958312,0.256135,0.126624,-0.958312,-0.256142,-0.126623,0.958310, + -0.256142,-0.126623,0.958310,-0.256142,-0.126623,0.958310,-0.256142,-0.126623,0.958310,-0.966545,0.047405,-0.252077, + -0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,0.966545,-0.047405,0.252078, + 0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,0.255780,0.104744,-0.961044, + 0.255780,0.104744,-0.961044,0.255780,0.104744,-0.961044,0.255780,0.104744,-0.961044,-0.255775,-0.104742,0.961045, + -0.255775,-0.104742,0.961045,-0.255775,-0.104742,0.961045,-0.255775,-0.104742,0.961045,0.862274,0.141785,0.486189, + 0.862274,0.141785,0.486189,0.862274,0.141785,0.486189,0.862274,0.141785,0.486189,-0.616812,-0.255095,0.744627, + -0.616812,-0.255095,0.744627,-0.616812,-0.255095,0.744627,-0.616812,-0.255095,0.744627,-0.966961,0.024139,-0.253780, + -0.966961,0.024139,-0.253780,-0.966961,0.024139,-0.253780,-0.966961,0.024139,-0.253780,0.966546,-0.047404,0.252076, + 0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076,0.254229,0.046637,-0.966019, + 0.254229,0.046637,-0.966019,0.254229,0.046637,-0.966019,0.254229,0.046637,-0.966019,-0.254117,-0.043412,0.966199, + -0.254117,-0.043412,0.966199,-0.254117,-0.043412,0.966199,-0.254117,-0.043412,0.966199,-0.975539,0.040984,-0.215973, + -0.975539,0.040984,-0.215973,-0.975539,0.040984,-0.215973,-0.975539,0.040984,-0.215973,0.975374,-0.044910,0.215938, + 0.975374,-0.044910,0.215938,0.975374,-0.044910,0.215938,0.975374,-0.044910,0.215938,0.218075,0.049751,-0.974663, + 0.218075,0.049751,-0.974663,0.218075,0.049751,-0.974663,0.218075,0.049751,-0.974663,-0.218066,-0.049594,0.974673, + -0.218066,-0.049594,0.974673,-0.218066,-0.049594,0.974673,-0.218066,-0.049594,0.974673,-0.998239,-0.053658,0.025311, + -0.998239,-0.053658,0.025311,-0.998239,-0.053658,0.025311,-0.998239,-0.053658,0.025311,0.988130,-0.148167,-0.040564, + 0.988130,-0.148167,-0.040564,0.988130,-0.148167,-0.040564,0.988130,-0.148167,-0.040564,-0.031798,-0.009374,-0.999450, + -0.031798,-0.009374,-0.999450,-0.031798,-0.009374,-0.999450,-0.031798,-0.009374,-0.999450,0.341556,0.011347,-0.939793, + 0.341556,0.011347,-0.939793,0.341556,0.011347,-0.939793,0.341556,0.011347,-0.939793,0.043538,-0.957887,-0.283826, + 0.043538,-0.957887,-0.283826,0.043538,-0.957887,-0.283826,0.043538,-0.957887,-0.283826,0.200281,0.021313,-0.979507, + 0.200281,0.021313,-0.979507,0.200281,0.021313,-0.979507,0.200281,0.021313,-0.979507,0.020466,0.999587,0.020157, + 0.020466,0.999587,0.020157,0.020466,0.999587,0.020157,0.020466,0.999587,0.020157,-0.104069,0.800829,0.589781, + -0.104069,0.800829,0.589781,-0.104069,0.800829,0.589781,-0.104069,0.800829,0.589781,0.104069,-0.800827,-0.589784, + 0.104069,-0.800827,-0.589784,0.104069,-0.800827,-0.589784,0.104069,-0.800827,-0.589784,-0.939806,0.053134,-0.337552, + -0.939806,0.053134,-0.337552,-0.939806,0.053134,-0.337552,-0.939806,0.053134,-0.337552,0.800752,0.294964,0.521337, + 0.800752,0.294964,0.521337,0.800752,0.294964,0.521337,0.800752,0.294964,0.521337,0.079828,-0.861653,-0.501180, + 0.079828,-0.861653,-0.501180,0.079828,-0.861653,-0.501180,0.079828,-0.861653,-0.501180,-0.943091,0.052536,-0.328357, + -0.943091,0.052536,-0.328357,-0.943091,0.052536,-0.328357,-0.943091,0.052536,-0.328357,-0.062681,0.897234,0.437083, + -0.062681,0.897234,0.437083,-0.062681,0.897234,0.437083,-0.062681,0.897234,0.437083,0.062684,-0.897234,-0.437084, + 0.062684,-0.897234,-0.437084,0.062684,-0.897234,-0.437084,0.062684,-0.897234,-0.437084,-0.942993,0.052546,-0.328639, + -0.942993,0.052546,-0.328639,-0.942993,0.052546,-0.328639,-0.942993,0.052546,-0.328639,-0.159036,-0.881837,0.443927, + -0.159036,-0.881837,0.443927,-0.159036,-0.881837,0.443927,-0.159036,-0.881837,0.443927,0.159033,0.881838,-0.443926, + 0.159033,0.881838,-0.443926,0.159033,0.881838,-0.443926,0.159033,0.881838,-0.443926,0.959915,-0.049033,0.275968, + 0.959915,-0.049033,0.275968,0.959915,-0.049033,0.275968,0.959915,-0.049033,0.275968,-0.029245,-0.858365,0.512205, + -0.029245,-0.858365,0.512205,-0.029245,-0.858365,0.512205,-0.029245,-0.858365,0.512205,0.165515,0.859254,-0.484031, + 0.165515,0.859254,-0.484031,0.165515,0.859254,-0.484031,0.165515,0.859254,-0.484031,0.962394,-0.048446,0.267301, + 0.962394,-0.048446,0.267301,0.962394,-0.048446,0.267301,0.962394,-0.048446,0.267301,0.970579,0.012176,0.240476, + 0.970579,0.012176,0.240476,0.970579,0.012176,0.240476,0.970579,0.012176,0.240476,-0.233707,-0.103987,0.966730, + -0.233707,-0.103987,0.966730,-0.233707,-0.103987,0.966730,-0.233707,-0.103987,0.966730,0.229394,-0.023307,-0.973054, + 0.229394,-0.023307,-0.973054,0.229394,-0.023307,-0.973054,0.229394,-0.023307,-0.973054,0.023159,0.995553,0.091309, + 0.023159,0.995553,0.091309,0.023159,0.995553,0.091309,0.023159,0.995553,0.091309,-0.028117,-0.996411,-0.079835, + -0.028117,-0.996411,-0.079835,-0.028117,-0.996411,-0.079835,-0.028117,-0.996411,-0.079835,0.969962,-0.048755,0.238319, + 0.969962,-0.048755,0.238319,0.969962,-0.048755,0.238319,0.969962,-0.048755,0.238319,0.964462,-0.047748,0.259870, + 0.964462,-0.047748,0.259870,0.964462,-0.047748,0.259870,-0.022267,-0.994614,-0.101231,-0.022267,-0.994614,-0.101231, + -0.022267,-0.994614,-0.101231,-0.022267,-0.994614,-0.101231,-0.258527,-0.065864,0.963756,-0.258527,-0.065864,0.963756, + -0.258527,-0.065864,0.963756,-0.258527,-0.065864,0.963756,0.257020,0.022507,-0.966144,0.257020,0.022507,-0.966144, + 0.257020,0.022507,-0.966144,0.257020,0.022507,-0.966144,0.208867,0.069392,-0.975479,0.208867,0.069392,-0.975479, + 0.208867,0.069392,-0.975479,0.208867,0.069392,-0.975479,0.041284,0.998691,0.030198,0.041284,0.998691,0.030198, + 0.041284,0.998691,0.030198,0.041284,0.998691,0.030198,0.964497,-0.047923,0.259711,0.964497,-0.047923,0.259711, + 0.964497,-0.047923,0.259711,-0.225820,-0.109225,0.968026,-0.225820,-0.109225,0.968026,-0.225820,-0.109225,0.968026, + -0.225820,-0.109225,0.968026,-0.027453,-0.996184,-0.082851,-0.027453,-0.996184,-0.082851,-0.027453,-0.996184,-0.082851, + -0.027453,-0.996184,-0.082851,0.039807,0.998891,0.025156,0.039807,0.998891,0.025156,0.039807,0.998891,0.025156, + 0.039807,0.998891,0.025156,0.031745,-0.996557,-0.076586,0.031745,-0.996557,-0.076586,0.031745,-0.996557,-0.076586, + 0.031745,-0.996557,-0.076586,-0.291069,-0.086865,0.952750,-0.291069,-0.086865,0.952750,-0.291069,-0.086865,0.952750, + -0.291069,-0.086865,0.952750,0.166987,0.092416,-0.981618,0.166987,0.092416,-0.981618,0.166987,0.092416,-0.981618, + 0.166987,0.092416,-0.981618,0.962272,-0.046708,0.268052,0.962272,-0.046708,0.268052,0.962272,-0.046708,0.268052, + 0.962272,-0.046708,0.268052,-0.965516,0.047730,-0.255933,-0.965516,0.047730,-0.255933,-0.965516,0.047730,-0.255933, + -0.965516,0.047730,-0.255933,-0.027714,-0.995551,-0.090052,-0.027714,-0.995551,-0.090052,-0.027714,-0.995551,-0.090052, + -0.027714,-0.995551,-0.090052,-0.030957,-0.997200,-0.068076,-0.030957,-0.997200,-0.068076,-0.030957,-0.997200,-0.068076, + -0.959513,0.049029,-0.277366,-0.959513,0.049029,-0.277366,-0.959513,0.049029,-0.277366,-0.959513,0.049029,-0.277366, + -0.254724,-0.062237,0.965009,-0.254724,-0.062237,0.965009,-0.254724,-0.062237,0.965009,-0.254724,-0.062237,0.965009, + 0.212505,0.064239,-0.975046,0.212505,0.064239,-0.975046,0.212505,0.064239,-0.975046,0.212505,0.064239,-0.975046, + 0.257077,0.113056,-0.959755,0.257077,0.113056,-0.959755,0.257077,0.113056,-0.959755,0.257077,0.113056,-0.959755, + 0.977522,-0.044393,0.206106,0.977522,-0.044393,0.206106,0.977522,-0.044393,0.206106,0.977522,-0.044393,0.206106, + -0.031099,-0.997182,-0.068273,-0.031099,-0.997182,-0.068273,-0.031099,-0.997182,-0.068273,-0.295944,-0.094806,0.950489, + -0.295944,-0.094806,0.950489,-0.295944,-0.094806,0.950489,-0.295944,-0.094806,0.950489,-0.964694,0.048098,-0.258944, + -0.964694,0.048098,-0.258944,-0.964694,0.048098,-0.258944,-0.964694,0.048098,-0.258944,0.978522,-0.041410,0.201943, + 0.978522,-0.041410,0.201943,0.978522,-0.041410,0.201943,0.978522,-0.041410,0.201943,-0.097597,-0.894374,-0.436544, + -0.097597,-0.894374,-0.436544,-0.097597,-0.894374,-0.436544,-0.097597,-0.894374,-0.436544,0.246114,-0.325158,0.913072, + 0.246114,-0.325158,0.913072,0.246114,-0.325158,0.913072,-0.565956,0.268853,-0.779366,-0.565956,0.268853,-0.779366, + -0.565956,0.268853,-0.779366,0.233614,0.487625,0.841217,0.233614,0.487625,0.841217,0.233614,0.487625,0.841217, + 0.233614,0.487625,0.841217,-0.027860,0.593906,-0.804052,-0.027860,0.593906,-0.804052,-0.027860,0.593906,-0.804052, + -0.027860,0.593906,-0.804052,-0.238139,-0.498493,-0.833544,-0.238139,-0.498493,-0.833544,-0.238139,-0.498493,-0.833544, + -0.238139,-0.498493,-0.833544,0.938872,0.340617,0.049987,0.938872,0.340617,0.049987,0.938872,0.340617,0.049987, + 0.938872,0.340617,0.049987,-0.939669,-0.339584,-0.041297,-0.939669,-0.339584,-0.041297,-0.939669,-0.339584,-0.041297, + -0.939669,-0.339584,-0.041297,-0.277993,0.960560,0.006711,-0.277993,0.960560,0.006711,-0.277993,0.960560,0.006711, + -0.277993,0.960560,0.006711,0.015553,-0.999388,0.031318,0.015553,-0.999388,0.031318,0.015553,-0.999388,0.031318, + 0.015553,-0.999388,0.031318,0.987842,0.155422,-0.003473,0.987842,0.155422,-0.003473,0.987842,0.155422,-0.003473, + 0.987842,0.155422,-0.003473,-0.016566,0.999553,-0.024895,-0.016566,0.999553,-0.024895,-0.016566,0.999553,-0.024895, + -0.016566,0.999553,-0.024895,-0.992557,-0.007662,-0.121540,-0.992557,-0.007662,-0.121540,-0.992557,-0.007662,-0.121540, + -0.992557,-0.007662,-0.121540,-0.985901,-0.165965,0.021305,-0.985901,-0.165965,0.021305,-0.985901,-0.165965,0.021305, + -0.985901,-0.165965,0.021305,-0.129139,0.724423,0.677152,-0.129139,0.724423,0.677152,-0.129139,0.724423,0.677152, + -0.129139,0.724423,0.677152,0.994925,0.012262,0.099868,0.994925,0.012262,0.099868,0.994925,0.012262,0.099868, + 0.994925,0.012262,0.099868,0.128303,-0.719657,-0.682373,0.128303,-0.719657,-0.682373,0.128303,-0.719657,-0.682373, + 0.128303,-0.719657,-0.682373,0.249311,-0.623870,0.740695,0.249311,-0.623870,0.740695,0.249311,-0.623870,0.740695, + 0.249311,-0.623870,0.740695,0.284543,-0.956021,0.071121,0.284543,-0.956021,0.071121,0.284543,-0.956021,0.071121, + 0.284543,-0.956021,0.071121,0.291978,-0.956117,0.024278,0.291978,-0.956117,0.024278,0.291978,-0.956117,0.024278, + 0.291978,-0.956117,0.024278,-0.776360,-0.128391,0.617075,-0.776360,-0.128391,0.617075,-0.776360,-0.128391,0.617075, + -0.776360,-0.128391,0.617075,-0.284369,0.956254,-0.068647,-0.284369,0.956254,-0.068647,-0.284369,0.956254,-0.068647, + -0.284369,0.956254,-0.068647,0.777345,0.129435,-0.615615,0.777345,0.129435,-0.615615,0.777345,0.129435,-0.615615, + 0.777345,0.129435,-0.615615,0.181112,0.566170,0.804145,0.181112,0.566170,0.804145,0.181112,0.566170,0.804145, + 0.181112,0.566170,0.804145,-0.191884,0.055750,-0.979833,-0.191884,0.055750,-0.979833,-0.191884,0.055750,-0.979833, + -0.191884,0.055750,-0.979833,-0.077083,-0.961927,-0.262213,-0.077083,-0.961927,-0.262213,-0.077083,-0.961927,-0.262213, + -0.077083,-0.961927,-0.262213,0.640742,-0.246935,-0.726961,0.640742,-0.246935,-0.726961,0.640742,-0.246935,-0.726961, + 0.031798,0.009374,0.999450,0.031798,0.009374,0.999450,0.031798,0.009374,0.999450,0.031798,0.009374,0.999450, + 0.025359,-0.206030,0.978217,0.025359,-0.206030,0.978217,0.025359,-0.206030,0.978217,0.025359,-0.206030,0.978217, + -0.997715,-0.059157,0.032649,-0.997715,-0.059157,0.032649,-0.997715,-0.059157,0.032649,-0.997715,-0.059157,0.032649, + 0.029080,0.996691,0.075903,0.029080,0.996691,0.075903,0.029080,0.996691,0.075903,0.029080,0.996691,0.075903, + 0.999860,-0.011051,0.012569,0.999860,-0.011051,0.012569,0.999860,-0.011051,0.012569,0.999860,-0.011051,0.012569, + -0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917,-0.029084,-0.996690,-0.075917, + 0.255791,0.105162,-0.960995,0.255791,0.105162,-0.960995,0.255791,0.105162,-0.960995,0.255791,0.105162,-0.960995, + -0.255726,-0.102028,0.961350,-0.255726,-0.102028,0.961350,-0.255726,-0.102028,0.961350,-0.255726,-0.102028,0.961350, + -0.993025,-0.017641,-0.116572,-0.993025,-0.017641,-0.116572,-0.993025,-0.017641,-0.116572,-0.993025,-0.017641,-0.116572, + 0.970647,-0.092764,-0.221901,0.970647,-0.092764,-0.221901,0.970647,-0.092764,-0.221901,0.970647,-0.092764,-0.221901, + 0.239863,-0.181128,-0.953760,0.239863,-0.181128,-0.953760,0.239863,-0.181128,-0.953760,0.239863,-0.181128,-0.953760, + -0.239622,0.183702,0.953328,-0.239622,0.183702,0.953328,-0.239622,0.183702,0.953328,-0.239622,0.183702,0.953328, + 0.617683,-0.554498,-0.557673,0.617683,-0.554498,-0.557673,0.617683,-0.554498,-0.557673,0.617683,-0.554498,-0.557673, + -0.736990,-0.346996,0.580034,-0.736990,-0.346996,0.580034,-0.736990,-0.346996,0.580034,-0.736990,-0.346996,0.580034, + 0.637910,-0.165445,0.752129,0.637910,-0.165445,0.752129,0.637910,-0.165445,0.752129,0.637910,-0.165445,0.752129, + -0.659544,0.022765,-0.751321,-0.659544,0.022765,-0.751321,-0.659544,0.022765,-0.751321,-0.659544,0.022765,-0.751321, + 0.766184,0.172947,-0.618912,0.766184,0.172947,-0.618912,0.766184,0.172947,-0.618912,0.766184,0.172947,-0.618912, + -0.764507,-0.189525,0.616124,-0.764507,-0.189525,0.616124,-0.764507,-0.189525,0.616124,-0.764507,-0.189525,0.616124, + -0.472108,0.881496,-0.008861,-0.472108,0.881496,-0.008861,-0.472108,0.881496,-0.008861,-0.472108,0.881496,-0.008861, + 0.935646,0.156170,-0.316509,0.935646,0.156170,-0.316509,0.935646,0.156170,-0.316509,0.935646,0.156170,-0.316509, + 0.373744,-0.023688,0.927229,0.373744,-0.023688,0.927229,0.373744,-0.023688,0.927229,0.373744,-0.023688,0.927229, + -0.663587,0.017535,0.747893,-0.663587,0.017535,0.747893,-0.663587,0.017535,0.747893,-0.663587,0.017535,0.747893, + 0.215290,-0.972662,0.087053,0.215290,-0.972662,0.087053,0.215290,-0.972662,0.087053,0.215290,-0.972662,0.087053, + 0.217780,-0.975666,0.025465,0.217780,-0.975666,0.025465,0.217780,-0.975666,0.025465,0.217780,-0.975666,0.025465, + -0.209451,0.974695,-0.078106,-0.209451,0.974695,-0.078106,-0.209451,0.974695,-0.078106,-0.209451,0.974695,-0.078106, + -0.945121,-0.323504,0.045734,-0.945121,-0.323504,0.045734,-0.945121,-0.323504,0.045734,-0.945121,-0.323504,0.045734, + 0.992134,0.115436,-0.048420,0.992134,0.115436,-0.048420,0.992134,0.115436,-0.048420,0.992134,0.115436,-0.048420, + -0.409107,0.912413,0.011602,-0.409107,0.912413,0.011602,-0.409107,0.912413,0.011602,-0.409107,0.912413,0.011602, + 0.696318,0.012281,-0.717628,0.696318,0.012281,-0.717628,0.696318,0.012281,-0.717628,0.696318,0.012281,-0.717628, + 0.365132,0.624907,0.690051,0.365132,0.624907,0.690051,0.365132,0.624907,0.690051,0.365132,0.624907,0.690051, + -0.992724,0.114243,0.038050,-0.992724,0.114243,0.038050,-0.992724,0.114243,0.038050,-0.992724,0.114243,0.038050, + 0.254963,0.070212,-0.964398,0.254963,0.070212,-0.964398,0.254963,0.070212,-0.964398,0.254963,0.070212,-0.964398, + -0.254868,-0.066903,0.964659,-0.254868,-0.066903,0.964659,-0.254868,-0.066903,0.964659,-0.254868,-0.066903,0.964659, + 0.972520,0.075160,-0.220356,0.972520,0.075160,-0.220356,0.972520,0.075160,-0.220356,0.972520,0.075160,-0.220356, + 0.008048,0.203329,-0.979077,0.008048,0.203329,-0.979077,0.008048,0.203329,-0.979077,-0.186020,0.102238,-0.977212, + -0.186020,0.102238,-0.977212,-0.186020,0.102238,-0.977212,-0.339163,0.414840,-0.844320,-0.339163,0.414840,-0.844320, + -0.339163,0.414840,-0.844320,0.440632,-0.209845,0.872816,0.440632,-0.209845,0.872816,0.440632,-0.209845,0.872816, + 0.424823,-0.201999,0.882452,0.424823,-0.201999,0.882452,0.424823,-0.201999,0.882452,0.177285,-0.290053,0.940446, + 0.177285,-0.290053,0.940446,0.177285,-0.290053,0.940446,0.071244,-0.084951,0.993835,0.071244,-0.084951,0.993835, + 0.071244,-0.084951,0.993835,0.071244,-0.084951,0.993835,0.207660,-0.066837,0.975915,0.207660,-0.066837,0.975915, + 0.207660,-0.066837,0.975915,0.207660,-0.066837,0.975915,-0.988092,0.071618,-0.136181,-0.988092,0.071618,-0.136181, + -0.988092,0.071618,-0.136181,-0.988092,0.071618,-0.136181,0.996990,-0.052518,0.057038,0.996990,-0.052518,0.057038, + 0.996990,-0.052518,0.057038,0.996990,-0.052518,0.057038,-0.043566,-0.382957,-0.922738,-0.043566,-0.382957,-0.922738, + -0.043566,-0.382957,-0.922738,-0.043566,-0.382957,-0.922738,-0.996583,-0.006309,-0.082351,-0.996583,-0.006309,-0.082351, + -0.996583,-0.006309,-0.082351,-0.996583,-0.006309,-0.082351,-0.017291,0.334395,-0.942275,-0.017291,0.334395,-0.942275, + -0.017291,0.334395,-0.942275,-0.017291,0.334395,-0.942275,0.999490,-0.024087,-0.020943,0.999490,-0.024087,-0.020943, + 0.999490,-0.024087,-0.020943,0.999490,-0.024087,-0.020943,-0.272002,-0.942501,-0.194181,-0.272002,-0.942501,-0.194181, + -0.272002,-0.942501,-0.194181,-0.272002,-0.942501,-0.194181,0.447077,-0.250660,0.858657,0.447077,-0.250660,0.858657, + 0.447077,-0.250660,0.858657,0.447077,-0.250660,0.858657,-0.281517,0.245929,-0.927506,-0.281517,0.245929,-0.927506, + -0.281517,0.245929,-0.927506,-0.281517,0.245929,-0.927506,0.272000,0.942505,0.194167,0.272000,0.942505,0.194167, + 0.272000,0.942505,0.194167,0.272000,0.942505,0.194167,0.281519,-0.245927,0.927506,0.281519,-0.245927,0.927506, + 0.281519,-0.245927,0.927506,0.281519,-0.245927,0.927506,-0.447078,0.250661,-0.858656,-0.447078,0.250661,-0.858656, + -0.447078,0.250661,-0.858656,-0.447078,0.250661,-0.858656,0.073209,0.971081,0.227248,0.073209,0.971081,0.227248, + 0.073209,0.971081,0.227248,0.073209,0.971081,0.227248,-0.073208,-0.971082,-0.227244,-0.073208,-0.971082,-0.227244, + -0.073208,-0.971082,-0.227244,-0.073208,-0.971082,-0.227244,0.984760,-0.087119,-0.150523,0.984760,-0.087119,-0.150523, + 0.984760,-0.087119,-0.150523,0.984760,-0.087119,-0.150523,-0.178080,0.055707,-0.982438,-0.178080,0.055707,-0.982438, + -0.178080,0.055707,-0.982438,-0.178080,0.055707,-0.982438,0.020066,0.998779,0.045153,0.020066,0.998779,0.045153, + 0.020066,0.998779,0.045153,0.020066,0.998779,0.045153,-0.994544,0.059497,0.085693,-0.994544,0.059497,0.085693, + -0.994544,0.059497,0.085693,-0.994544,0.059497,0.085693,-0.907914,0.093353,-0.408628,-0.907914,0.093353,-0.408628, + -0.907914,0.093353,-0.408628,-0.222308,-0.074426,0.972132,-0.222308,-0.074426,0.972132,-0.222308,-0.074426,0.972132, + -0.222308,-0.074426,0.972132,-0.025412,-0.972386,-0.231989,-0.025412,-0.972386,-0.231989,-0.025412,-0.972386,-0.231989, + -0.025412,-0.972386,-0.231989,-0.256300,-0.216831,0.941963,-0.256300,-0.216831,0.941963,-0.256300,-0.216831,0.941963, + -0.256300,-0.216831,0.941963,-0.016928,-0.992419,-0.121726,-0.016928,-0.992419,-0.121726,-0.016928,-0.992419,-0.121726, + -0.016928,-0.992419,-0.121726,-0.256491,-0.171849,0.951147,-0.256491,-0.171849,0.951147,-0.256491,-0.171849,0.951147, + -0.256491,-0.171849,0.951147,-0.048543,-0.998820,-0.001702,-0.048543,-0.998820,-0.001702,-0.048543,-0.998820,-0.001702, + -0.048543,-0.998820,-0.001702,-0.253643,-0.030429,0.966819,-0.253643,-0.030429,0.966819,-0.253643,-0.030429,0.966819, + -0.253643,-0.030429,0.966819,-0.018449,-0.993077,-0.116011,-0.018449,-0.993077,-0.116011,-0.018449,-0.993077,-0.116011, + -0.018449,-0.993077,-0.116011,-0.248480,0.070757,0.966049,-0.248480,0.070757,0.966049,-0.248480,0.070757,0.966049, + -0.248480,0.070757,0.966049,-0.018828,-0.999823,0.000405,-0.018828,-0.999823,0.000405,-0.018828,-0.999823,0.000405, + -0.018828,-0.999823,0.000405,-0.244673,0.124549,0.961573,-0.244673,0.124549,0.961573,-0.244673,0.124549,0.961573, + -0.244673,0.124549,0.961573,-0.110410,-0.971621,0.209194,-0.110410,-0.971621,0.209194,-0.110410,-0.971621,0.209194, + -0.110410,-0.971621,0.209194,-0.255000,-0.071582,0.964288,-0.255000,-0.071582,0.964288,-0.255000,-0.071582,0.964288, + -0.255000,-0.071582,0.964288,0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080,0.966545,-0.047404,0.252080, + 0.966545,-0.047404,0.252080,-0.966609,0.047206,-0.251869,-0.966609,0.047206,-0.251869,-0.966609,0.047206,-0.251869, + -0.966609,0.047206,-0.251869,-0.966544,0.047415,-0.252079,-0.966544,0.047415,-0.252079,-0.966544,0.047415,-0.252079, + -0.966546,0.047395,-0.252076,-0.966546,0.047395,-0.252076,-0.966546,0.047395,-0.252076,-0.966546,0.047395,-0.252076, + -0.966544,0.047406,-0.252081,-0.966544,0.047406,-0.252081,-0.966544,0.047406,-0.252081,-0.966544,0.047406,-0.252081, + -0.966546,0.047406,-0.252076,-0.966546,0.047406,-0.252076,-0.966546,0.047406,-0.252076,-0.966546,0.047406,-0.252076, + -0.966545,0.047407,-0.252079,-0.966545,0.047407,-0.252079,-0.966545,0.047407,-0.252079,-0.966545,0.047407,-0.252079, + -0.955162,0.046137,-0.292468,-0.955162,0.046137,-0.292468,-0.955162,0.046137,-0.292468,-0.955162,0.046137,-0.292468, + 0.966885,-0.046013,0.251031,0.966885,-0.046013,0.251031,0.966885,-0.046013,0.251031,0.966885,-0.046013,0.251031, + 0.966885,-0.046013,0.251031,-0.178974,-0.076030,0.980912,-0.178974,-0.076030,0.980912,-0.178974,-0.076030,0.980912, + -0.178974,-0.076030,0.980912,0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075,0.966546,-0.047403,0.252075, + 0.966546,-0.047403,0.252075,0.966545,-0.047408,0.252080,0.966545,-0.047408,0.252080,0.966545,-0.047408,0.252080, + 0.966545,-0.047408,0.252080,0.966546,-0.047403,0.252076,0.966546,-0.047403,0.252076,0.966546,-0.047403,0.252076, + 0.966546,-0.047403,0.252076,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078, + 0.966545,-0.047404,0.252078,0.009580,0.992998,0.117745,0.009580,0.992998,0.117745,0.009580,0.992998,0.117745, + 0.009580,0.992998,0.117745,0.249656,0.198840,-0.947700,0.249656,0.198840,-0.947700,0.249656,0.198840,-0.947700, + 0.249656,0.198840,-0.947700,0.028196,-0.954207,-0.297815,0.028196,-0.954207,-0.297815,0.028196,-0.954207,-0.297815, + 0.028196,-0.954207,-0.297815,-0.246849,-0.061439,0.967105,-0.246849,-0.061439,0.967105,-0.246849,-0.061439,0.967105, + -0.246849,-0.061439,0.967105,0.234912,0.110948,-0.965664,0.234912,0.110948,-0.965664,0.234912,0.110948,-0.965664, + 0.234912,0.110948,-0.965664,-0.003852,0.971390,0.237458,-0.003852,0.971390,0.237458,-0.003852,0.971390,0.237458, + -0.003852,0.971390,0.237458,-0.180466,-0.092086,0.979261,-0.180466,-0.092086,0.979261,-0.180466,-0.092086,0.979261, + -0.180466,-0.092086,0.979261,0.283027,0.222122,-0.933037,0.283027,0.222122,-0.933037,0.283027,0.222122,-0.933037, + 0.283027,0.222122,-0.933037,-0.019403,0.964419,0.263667,-0.019403,0.964419,0.263667,-0.019403,0.964419,0.263667, + -0.019403,0.964419,0.263667,0.021647,-0.964527,-0.263096,0.021647,-0.964527,-0.263096,0.021647,-0.964527,-0.263096, + 0.021647,-0.964527,-0.263096,0.281053,0.064733,-0.957506,0.281053,0.064733,-0.957506,0.281053,0.064733,-0.957506, + 0.281053,0.064733,-0.957506,0.029081,0.996689,0.075932,0.029081,0.996689,0.075932,0.029081,0.996689,0.075932, + 0.029081,0.996689,0.075932,-0.029087,-0.996691,-0.075900,-0.029087,-0.996691,-0.075900,-0.029087,-0.996691,-0.075900, + -0.029087,-0.996691,-0.075900,-0.281052,-0.064735,0.957507,-0.281052,-0.064735,0.957507,-0.281052,-0.064735,0.957507, + -0.281052,-0.064735,0.957507,0.029085,0.996690,0.075917,0.029085,0.996690,0.075917,0.029085,0.996690,0.075917, + 0.029085,0.996690,0.075917,0.274896,0.065046,-0.959271,0.274896,0.065046,-0.959271,0.274896,0.065046,-0.959271, + 0.274896,0.065046,-0.959271,0.029081,0.996688,0.075943,0.029081,0.996688,0.075943,0.029081,0.996688,0.075943, + 0.029081,0.996688,0.075943,-0.029084,-0.996690,-0.075915,-0.029084,-0.996690,-0.075915,-0.029084,-0.996690,-0.075915, + -0.029084,-0.996690,-0.075915,0.294619,0.064028,-0.953467,0.294619,0.064028,-0.953467,0.294619,0.064028,-0.953467, + 0.294619,0.064028,-0.953467,0.029085,0.996690,0.075913,0.029085,0.996690,0.075913,0.029085,0.996690,0.075913, + 0.029085,0.996690,0.075913,-0.029081,-0.996690,-0.075915,-0.029081,-0.996690,-0.075915,-0.029081,-0.996690,-0.075915, + -0.029081,-0.996690,-0.075915,0.297007,0.063901,-0.952735,0.297007,0.063901,-0.952735,0.297007,0.063901,-0.952735, + 0.297007,0.063901,-0.952735,0.029083,0.996689,0.075926,0.029083,0.996689,0.075926,0.029083,0.996689,0.075926, + 0.029083,0.996689,0.075926,-0.029084,-0.996689,-0.075923,-0.029084,-0.996689,-0.075923,-0.029084,-0.996689,-0.075923, + -0.029084,-0.996689,-0.075923,-0.297002,-0.063899,0.952737,-0.297002,-0.063899,0.952737,-0.297002,-0.063899,0.952737, + -0.297002,-0.063899,0.952737,-0.070441,0.968503,0.238828,-0.070441,0.968503,0.238828,-0.070441,0.968503,0.238828, + 0.215051,-0.023722,-0.976315,0.215051,-0.023722,-0.976315,0.215051,-0.023722,-0.976315,0.215051,-0.023722,-0.976315, + 0.973861,-0.044115,0.222818,0.973861,-0.044115,0.222818,0.973861,-0.044115,0.222818,0.973861,-0.044115,0.222818, + -0.972501,0.048480,-0.227797,-0.972501,0.048480,-0.227797,-0.972501,0.048480,-0.227797,-0.972501,0.048480,-0.227797, + -0.191400,-0.078914,0.978335,-0.191400,-0.078914,0.978335,-0.191400,-0.078914,0.978335,-0.191400,-0.078914,0.978335, + -0.200390,-0.047076,0.978585,-0.200390,-0.047076,0.978585,-0.200390,-0.047076,0.978585,-0.200390,-0.047076,0.978585, + -0.229020,-0.095457,0.968730,-0.229020,-0.095457,0.968730,-0.229020,-0.095457,0.968730,-0.229020,-0.095457,0.968730, + -0.219486,-0.053869,0.974127,-0.219486,-0.053869,0.974127,-0.219486,-0.053869,0.974127,0.997123,-0.063105,0.041996, + 0.997123,-0.063105,0.041996,0.997123,-0.063105,0.041996,0.997123,-0.063105,0.041996,-0.996916,0.063346,-0.046310, + -0.996916,0.063346,-0.046310,-0.996916,0.063346,-0.046310,-0.996916,0.063346,-0.046310,0.915957,-0.023653,0.400578, + 0.915957,-0.023653,0.400578,0.915957,-0.023653,0.400578,-0.006411,-0.985782,-0.167908,-0.006411,-0.985782,-0.167908, + -0.006411,-0.985782,-0.167908,0.993973,-0.059010,-0.092389,0.993973,-0.059010,-0.092389,0.993973,-0.059010,-0.092389, + 0.993973,-0.059010,-0.092389,0.998737,0.048704,-0.012310,0.998737,0.048704,-0.012310,0.998737,0.048704,-0.012310, + 0.998737,0.048704,-0.012310,-0.970358,-0.057834,-0.234649,-0.970358,-0.057834,-0.234649,-0.970358,-0.057834,-0.234649, + -0.970358,-0.057834,-0.234649,-0.950289,0.027846,-0.310123,-0.950289,0.027846,-0.310123,-0.950289,0.027846,-0.310123, + -0.950289,0.027846,-0.310123,-0.039906,-0.247262,-0.968127,-0.039906,-0.247262,-0.968127,-0.039906,-0.247262,-0.968127, + -0.039906,-0.247262,-0.968127,0.042907,0.998055,0.045220,0.042907,0.998055,0.045220,0.042907,0.998055,0.045220, + 0.042907,0.998055,0.045220,0.039522,0.995535,0.085723,0.039522,0.995535,0.085723,0.039522,0.995535,0.085723, + 0.039522,0.995535,0.085723,0.039522,0.995535,0.085723,0.000147,-0.986533,-0.163563,0.000147,-0.986533,-0.163563, + 0.000147,-0.986533,-0.163563,0.020043,-0.993014,-0.116284,0.020043,-0.993014,-0.116284,0.020043,-0.993014,-0.116284, + 0.020043,-0.993014,-0.116284,-0.009935,-0.974367,-0.224743,-0.009935,-0.974367,-0.224743,-0.009935,-0.974367,-0.224743, + -0.009935,-0.974367,-0.224743,-0.108187,0.981117,-0.160328,-0.108187,0.981117,-0.160328,-0.108187,0.981117,-0.160328, + 0.051924,0.998623,-0.007536,0.051924,0.998623,-0.007536,0.051924,0.998623,-0.007536,0.051924,0.998623,-0.007536, + 0.098384,0.971280,-0.216646,0.098384,0.971280,-0.216646,0.098384,0.971280,-0.216646,0.098384,0.971280,-0.216646, + 0.064613,0.997133,-0.039393,0.064613,0.997133,-0.039393,0.064613,0.997133,-0.039393,0.089956,0.995940,-0.003493, + 0.089956,0.995940,-0.003493,0.089956,0.995940,-0.003493,0.089956,0.995940,-0.003493,0.089958,0.995939,-0.003494, + 0.089958,0.995939,-0.003494,0.089958,0.995939,-0.003494,0.089958,0.995939,-0.003494,0.089956,0.995940,-0.003490, + 0.089956,0.995940,-0.003490,0.089956,0.995940,-0.003490,0.089956,0.995940,-0.003490,-0.998817,-0.048135,0.006852, + -0.998817,-0.048135,0.006852,-0.998817,-0.048135,0.006852,-0.998817,-0.048135,0.006852,0.975615,0.058726,0.211486, + 0.975615,0.058726,0.211486,0.975615,0.058726,0.211486,0.975615,0.058726,0.211486,0.950673,-0.027848,0.308941, + 0.950673,-0.027848,0.308941,0.950673,-0.027848,0.308941,0.950673,-0.027848,0.308941,-0.016382,0.983674,0.179210, + -0.016382,0.983674,0.179210,-0.016382,0.983674,0.179210,-0.016382,0.983674,0.179210,-0.070443,0.968505,0.238823, + -0.070443,0.968505,0.238823,-0.070443,0.968505,0.238823,0.050098,0.989835,0.133105,0.050098,0.989835,0.133105, + 0.050098,0.989835,0.133105,0.050098,0.989835,0.133105,0.033801,0.980821,0.191960,0.033801,0.980821,0.191960, + 0.033801,0.980821,0.191960,0.033801,0.980821,0.191960,0.018354,0.986840,0.160653,0.018354,0.986840,0.160653, + 0.018354,0.986840,0.160653,0.018354,0.986840,0.160653,0.053174,-0.989601,0.133651,0.053174,-0.989601,0.133651, + 0.053174,-0.989601,0.133651,-0.029334,-0.998859,-0.037684,-0.029334,-0.998859,-0.037684,-0.029334,-0.998859,-0.037684, + -0.029334,-0.998859,-0.037684,-0.103434,-0.962349,0.251367,-0.103434,-0.962349,0.251367,-0.103434,-0.962349,0.251367, + -0.103434,-0.962349,0.251367,-0.089688,-0.995968,0.001893,-0.089688,-0.995968,0.001893,-0.089688,-0.995968,0.001893, + -0.089688,-0.995968,0.001893,-0.089689,-0.995968,0.001891,-0.089689,-0.995968,0.001891,-0.089689,-0.995968,0.001891, + -0.089689,-0.995968,0.001891,-0.089686,-0.995968,0.001889,-0.089686,-0.995968,0.001889,-0.089686,-0.995968,0.001889, + -0.089686,-0.995968,0.001889,-0.070948,-0.993241,0.091865,-0.070948,-0.993241,0.091865,-0.070948,-0.993241,0.091865, + 0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725, + -0.313282,0.045864,0.948552,-0.313282,0.045864,0.948552,-0.313282,0.045864,0.948552,-0.313282,0.045864,0.948552, + 0.205532,-0.030916,0.978162,0.205532,-0.030916,0.978162,0.205532,-0.030916,0.978162,0.205532,-0.030916,0.978162, + 0.255451,0.075022,-0.963907,0.255451,0.075022,-0.963907,0.255451,0.075022,-0.963907,0.255451,0.075022,-0.963907, + 0.243194,0.078579,-0.966790,0.243194,0.078579,-0.966790,0.243194,0.078579,-0.966790,0.243194,0.078579,-0.966790, + 0.254828,0.066044,-0.964728,0.254828,0.066044,-0.964728,0.254828,0.066044,-0.964728,0.254828,0.066044,-0.964728, + 0.125384,0.358504,-0.925070,0.125384,0.358504,-0.925070,0.125384,0.358504,-0.925070,0.125384,0.358504,-0.925070, + -0.096212,-0.054175,0.993885,-0.096212,-0.054175,0.993885,-0.096212,-0.054175,0.993885,-0.096212,-0.054175,0.993885, + 0.255029,0.065712,-0.964698,0.255029,0.065712,-0.964698,0.255029,0.065712,-0.964698,0.255029,0.065712,-0.964698, + -0.475546,-0.216412,0.852656,-0.475546,-0.216412,0.852656,-0.475546,-0.216412,0.852656,-0.475546,-0.216412,0.852656, + -0.207186,0.004726,0.978290,-0.207186,0.004726,0.978290,-0.207186,0.004726,0.978290,-0.207186,0.004726,0.978290, + -0.144979,-0.312929,0.938646,-0.144979,-0.312929,0.938646,-0.144979,-0.312929,0.938646,-0.144979,-0.312929,0.938646, + 0.041994,-0.995420,-0.085880,0.041994,-0.995420,-0.085880,0.041994,-0.995420,-0.085880,0.041994,-0.995420,-0.085880, + -0.041930,-0.991004,0.127097,-0.041930,-0.991004,0.127097,-0.041930,-0.991004,0.127097,-0.041930,-0.991004,0.127097, + -0.121172,-0.144499,0.982058,-0.121172,-0.144499,0.982058,-0.121172,-0.144499,0.982058,-0.121172,-0.144499,0.982058, + 0.224397,0.073020,-0.971758,0.224397,0.073020,-0.971758,0.224397,0.073020,-0.971758,0.224397,0.073020,-0.971758, + 0.252768,0.070833,-0.964930,0.252768,0.070833,-0.964930,0.252768,0.070833,-0.964930,0.252768,0.070833,-0.964930, + -0.776196,-0.626036,-0.074823,-0.776196,-0.626036,-0.074823,-0.776196,-0.626036,-0.074823,-0.776196,-0.626036,-0.074823, + -0.023691,-0.997442,-0.067438,-0.023691,-0.997442,-0.067438,-0.023691,-0.997442,-0.067438,-0.023691,-0.997442,-0.067438, + 0.285524,-0.957286,-0.045595,0.285524,-0.957286,-0.045595,0.285524,-0.957286,-0.045595,0.285524,-0.957286,-0.045595, + -0.246965,0.008536,0.968987,-0.246965,0.008536,0.968987,-0.246965,0.008536,0.968987,-0.246965,0.008536,0.968987, + 0.234245,0.049222,-0.970931,0.234245,0.049222,-0.970931,0.234245,0.049222,-0.970931,0.234245,0.049222,-0.970931, + 0.178711,0.013816,-0.983805,0.178711,0.013816,-0.983805,0.178711,0.013816,-0.983805,0.178711,0.013816,-0.983805, + -0.239044,0.123582,0.963112,-0.239044,0.123582,0.963112,-0.239044,0.123582,0.963112,-0.239044,0.123582,0.963112, + -0.033793,0.104592,0.993941,-0.033793,0.104592,0.993941,-0.033793,0.104592,0.993941,-0.033793,0.104592,0.993941, + 0.182095,-0.099551,0.978228,0.182095,-0.099551,0.978228,0.182095,-0.099551,0.978228,0.182095,-0.099551,0.978228, + -0.272888,-0.102687,0.956550,-0.272888,-0.102687,0.956550,-0.272888,-0.102687,0.956550,-0.272888,-0.102687,0.956550, + 0.020288,-0.997317,0.070336,0.020288,-0.997317,0.070336,0.020288,-0.997317,0.070336,0.020288,-0.997317,0.070336, + 0.257788,0.071256,-0.963570,0.257788,0.071256,-0.963570,0.257788,0.071256,-0.963570,0.257788,0.071256,-0.963570, + -0.217229,-0.100957,0.970886,-0.217229,-0.100957,0.970886,-0.217229,-0.100957,0.970886,-0.217229,-0.100957,0.970886, + 0.029019,-0.992035,-0.122572,0.029019,-0.992035,-0.122572,0.029019,-0.992035,-0.122572,0.029019,-0.992035,-0.122572, + 0.976420,0.116451,0.181779,0.976420,0.116451,0.181779,0.976420,0.116451,0.181779,0.976420,0.116451,0.181779, + -0.029241,0.991891,0.123679,-0.029241,0.991891,0.123679,-0.029241,0.991891,0.123679,-0.029241,0.991891,0.123679, + -0.958060,0.022852,-0.285655,-0.958060,0.022852,-0.285655,-0.958060,0.022852,-0.285655,-0.958060,0.022852,-0.285655, + -0.978606,-0.144052,-0.146898,-0.978606,-0.144052,-0.146898,-0.978606,-0.144052,-0.146898,-0.978606,-0.144052,-0.146898, + -0.271323,0.598565,0.753727,-0.271323,0.598565,0.753727,-0.271323,0.598565,0.753727,-0.271323,0.598565,0.753727, + 0.957614,-0.023143,0.287124,0.957614,-0.023143,0.287124,0.957614,-0.023143,0.287124,0.957614,-0.023143,0.287124, + 0.263645,-0.573314,-0.775759,0.263645,-0.573314,-0.775759,0.263645,-0.573314,-0.775759,0.263645,-0.573314,-0.775759, + 0.612290,-0.658872,0.437021,0.612290,-0.658872,0.437021,0.612290,-0.658872,0.437021,0.612290,-0.658872,0.437021, + 0.928069,0.338075,0.156185,0.928069,0.338075,0.156185,0.928069,0.338075,0.156185,0.928069,0.338075,0.156185, + -0.926930,-0.342220,-0.153903,-0.926930,-0.342220,-0.153903,-0.926930,-0.342220,-0.153903,-0.926930,-0.342220,-0.153903, + -0.315899,0.382407,0.868316,-0.315899,0.382407,0.868316,-0.315899,0.382407,0.868316,-0.315899,0.382407,0.868316, + 0.309329,-0.374588,-0.874071,0.309329,-0.374588,-0.874071,0.309329,-0.374588,-0.874071,0.309329,-0.374588,-0.874071, + 0.014735,-0.974248,-0.224997,0.014735,-0.974248,-0.224997,0.014735,-0.974248,-0.224997,0.014735,-0.974248,-0.224997, + 0.928458,0.124475,0.349960,0.928458,0.124475,0.349960,0.928458,0.124475,0.349960,0.928458,0.124475,0.349960, + -0.014376,0.974474,0.224041,-0.014376,0.974474,0.224041,-0.014376,0.974474,0.224041,-0.014376,0.974474,0.224041, + -0.968540,0.047593,-0.244264,-0.968540,0.047593,-0.244264,-0.968540,0.047593,-0.244264,-0.968540,0.047593,-0.244264, + -0.930437,-0.127023,-0.343733,-0.930437,-0.127023,-0.343733,-0.930437,-0.127023,-0.343733,-0.930437,-0.127023,-0.343733, + -0.271862,0.921608,0.277000,-0.271862,0.921608,0.277000,-0.271862,0.921608,0.277000,-0.271862,0.921608,0.277000, + 0.968122,-0.047777,0.245878,0.968122,-0.047777,0.245878,0.968122,-0.047777,0.245878,0.968122,-0.047777,0.245878, + 0.269297,-0.924090,-0.271176,0.269297,-0.924090,-0.271176,0.269297,-0.924090,-0.271176,0.269297,-0.924090,-0.271176, + -0.066818,-0.616312,0.784662,-0.066818,-0.616312,0.784662,-0.066818,-0.616312,0.784662,-0.066818,-0.616312,0.784662, + 0.727208,0.112035,0.677213,0.727208,0.112035,0.677213,0.727208,0.112035,0.677213,0.727208,0.112035,0.677213, + -0.729352,-0.115319,-0.674350,-0.729352,-0.115319,-0.674350,-0.729352,-0.115319,-0.674350,-0.729352,-0.115319,-0.674350, + -0.550303,0.715183,0.430905,-0.550303,0.715183,0.430905,-0.550303,0.715183,0.430905,-0.550303,0.715183,0.430905, + 0.551914,-0.708246,-0.440202,0.551914,-0.708246,-0.440202,0.551914,-0.708246,-0.440202,0.551914,-0.708246,-0.440202, + -0.004529,-0.986924,-0.161120,-0.004529,-0.986924,-0.161120,-0.004529,-0.986924,-0.161120,-0.004529,-0.986924,-0.161120, + 0.039695,-0.404080,0.913862,0.039695,-0.404080,0.913862,0.039695,-0.404080,0.913862,0.039695,-0.404080,0.913862, + 0.004580,0.986974,0.160814,0.004580,0.986974,0.160814,0.004580,0.986974,0.160814,0.004580,0.986974,0.160814, + -0.993800,0.029716,-0.107141,-0.993800,0.029716,-0.107141,-0.993800,0.029716,-0.107141,-0.993800,0.029716,-0.107141, + -0.005133,-0.997768,-0.066583,-0.005133,-0.997768,-0.066583,-0.005133,-0.997768,-0.066583,-0.005133,-0.997768,-0.066583, + 0.004530,0.996679,0.081300,0.004530,0.996679,0.081300,0.004530,0.996679,0.081300,0.004530,0.996679,0.081300, + 0.993891,-0.029600,0.106322,0.993891,-0.029600,0.106322,0.993891,-0.029600,0.106322,0.993891,-0.029600,0.106322, + -0.998621,0.043104,-0.029971,-0.998621,0.043104,-0.029971,-0.998621,0.043104,-0.029971,-0.998621,0.043104,-0.029971, + 0.998448,-0.044268,0.033795,0.998448,-0.044268,0.033795,0.998448,-0.044268,0.033795,0.998448,-0.044268,0.033795, + 0.921108,-0.062925,0.384189,0.921108,-0.062925,0.384189,0.921108,-0.062925,0.384189,0.921108,-0.062925,0.384189, + -0.922003,0.062656,-0.382078,-0.922003,0.062656,-0.382078,-0.922003,0.062656,-0.382078,-0.922003,0.062656,-0.382078, + 0.046204,0.997264,-0.057704,0.046204,0.997264,-0.057704,0.046204,0.997264,-0.057704,0.046204,0.997264,-0.057704, + -0.046495,-0.997163,0.059199,-0.046495,-0.997163,0.059199,-0.046495,-0.997163,0.059199,-0.046495,-0.997163,0.059199, + 0.969215,-0.101565,0.224291,0.969215,-0.101565,0.224291,0.969215,-0.101565,0.224291,0.969215,-0.101565,0.224291, + -0.972175,0.098135,-0.212709,-0.972175,0.098135,-0.212709,-0.972175,0.098135,-0.212709,-0.972175,0.098135,-0.212709, + 0.001745,0.988733,0.149677,0.001745,0.988733,0.149677,0.001745,0.988733,0.149677,0.001745,0.988733,0.149677, + -0.002393,-0.990940,-0.134287,-0.002393,-0.990940,-0.134287,-0.002393,-0.990940,-0.134287,-0.002393,-0.990940,-0.134287, + 0.039690,-0.404088,0.913859,0.039690,-0.404088,0.913859,0.039690,-0.404088,0.913859,0.039690,-0.404088,0.913859, + 0.228311,0.323298,0.918342,0.228311,0.323298,0.918342,0.228311,0.323298,0.918342,0.228311,0.323298,0.918342, + 0.973783,-0.139598,0.179606,0.973783,-0.139598,0.179606,0.973783,-0.139598,0.179606,0.973783,-0.139598,0.179606, + -0.975565,0.144272,-0.165704,-0.975565,0.144272,-0.165704,-0.975565,0.144272,-0.165704,-0.975565,0.144272,-0.165704, + -0.223926,-0.930102,0.291149,-0.223926,-0.930102,0.291149,-0.223926,-0.930102,0.291149,-0.223926,-0.930102,0.291149, + 0.224311,0.931199,-0.287319,0.224311,0.931199,-0.287319,0.224311,0.931199,-0.287319,0.224311,0.931199,-0.287319, + 0.169179,0.985439,0.017009,0.169179,0.985439,0.017009,0.169179,0.985439,0.017009,0.169179,0.985439,0.017009, + -0.169411,-0.985428,-0.015227,-0.169411,-0.985428,-0.015227,-0.169411,-0.985428,-0.015227,-0.169411,-0.985428,-0.015227, + -0.951773,0.139220,-0.273398,-0.951773,0.139220,-0.273398,-0.951773,0.139220,-0.273398,-0.951773,0.139220,-0.273398, + 0.951466,-0.138967,0.274592,0.951466,-0.138967,0.274592,0.951466,-0.138967,0.274592,0.951466,-0.138967,0.274592, + 0.125237,0.977935,0.167207,0.125237,0.977935,0.167207,0.125237,0.977935,0.167207,0.125237,0.977935,0.167207, + -0.125108,-0.977901,-0.167507,-0.125108,-0.977901,-0.167507,-0.125108,-0.977901,-0.167507,-0.125108,-0.977901,-0.167507, + 0.949398,-0.175958,0.260159,0.949398,-0.175958,0.260159,0.949398,-0.175958,0.260159,0.949398,-0.175958,0.260159, + -0.949177,0.176023,-0.260920,-0.949177,0.176023,-0.260920,-0.949177,0.176023,-0.260920,-0.949177,0.176023,-0.260920, + -0.899730,0.233898,-0.368479,-0.899730,0.233898,-0.368479,-0.899730,0.233898,-0.368479,-0.899730,0.233898,-0.368479, + 0.898218,-0.233840,0.372186,0.898218,-0.233840,0.372186,0.898218,-0.233840,0.372186,0.898218,-0.233840,0.372186, + -0.104018,-0.961070,-0.255976,-0.104018,-0.961070,-0.255976,-0.104018,-0.961070,-0.255976,-0.104018,-0.961070,-0.255976, + 0.097926,0.958120,0.269102,0.097926,0.958120,0.269102,0.097926,0.958120,0.269102,0.097926,0.958120,0.269102, + -0.424943,0.149780,0.892743,-0.424943,0.149780,0.892743,-0.424943,0.149780,0.892743,-0.424943,0.149780,0.892743, + -0.482757,0.203573,0.851765,-0.482757,0.203573,0.851765,-0.482757,0.203573,0.851765,-0.482757,0.203573,0.851765, + 0.098767,0.969095,0.226052,0.098767,0.969095,0.226052,0.098767,0.969095,0.226052,0.098767,0.969095,0.226052, + -0.105815,-0.971255,-0.213231,-0.105815,-0.971255,-0.213231,-0.105815,-0.971255,-0.213231,-0.105815,-0.971255,-0.213231, + 0.865182,-0.229252,0.445987,0.865182,-0.229252,0.445987,0.865182,-0.229252,0.445987,0.865182,-0.229252,0.445987, + -0.866935,0.229550,-0.442415,-0.866935,0.229550,-0.442415,-0.866935,0.229550,-0.442415,-0.866935,0.229550,-0.442415, + -0.915380,0.178139,-0.361035,-0.915380,0.178139,-0.361035,-0.915380,0.178139,-0.361035,-0.915380,0.178139,-0.361035, + 0.915419,-0.178154,0.360928,0.915419,-0.178154,0.360928,0.915419,-0.178154,0.360928,0.915419,-0.178154,0.360928, + -0.196286,-0.980535,0.004701,-0.196286,-0.980535,0.004701,-0.196286,-0.980535,0.004701,-0.196286,-0.980535,0.004701, + 0.196160,0.980562,-0.004376,0.196160,0.980562,-0.004376,0.196160,0.980562,-0.004376,0.196160,0.980562,-0.004376, + 0.043491,-0.008945,0.999014,0.043491,-0.008945,0.999014,0.043491,-0.008945,0.999014,0.043491,-0.008945,0.999014, + -0.020286,0.997316,-0.070357,-0.020286,0.997316,-0.070357,-0.020286,0.997316,-0.070357,-0.020286,0.997316,-0.070357, + -0.038904,0.008979,-0.999203,-0.038904,0.008979,-0.999203,-0.038904,0.008979,-0.999203,-0.038904,0.008979,-0.999203, + -0.122008,0.051495,0.991192,-0.122008,0.051495,0.991192,-0.122008,0.051495,0.991192,-0.122008,0.051495,0.991192, + 0.041930,0.991009,-0.127059,0.041930,0.991009,-0.127059,0.041930,0.991009,-0.127059,0.041930,0.991009,-0.127059, + 0.118239,-0.051364,-0.991656,0.118239,-0.051364,-0.991656,0.118239,-0.051364,-0.991656,0.118239,-0.051364,-0.991656, + 0.023634,0.997409,0.067942,0.023634,0.997409,0.067942,0.023634,0.997409,0.067942,0.023634,0.997409,0.067942, + -0.992810,0.014150,-0.118862,-0.992810,0.014150,-0.118862,-0.992810,0.014150,-0.118862,-0.992810,0.014150,-0.118862, + 0.992199,-0.014007,0.123878,0.992199,-0.014007,0.123878,0.992199,-0.014007,0.123878,0.992199,-0.014007,0.123878, + -0.042038,0.995343,0.086750,-0.042038,0.995343,0.086750,-0.042038,0.995343,0.086750,-0.042038,0.995343,0.086750, + -0.999026,0.015688,-0.041233,-0.999026,0.015688,-0.041233,-0.999026,0.015688,-0.041233,-0.999026,0.015688,-0.041233, + 0.999160,-0.015766,0.037826,0.999160,-0.015766,0.037826,0.999160,-0.015766,0.037826,0.999160,-0.015766,0.037826, + 0.011888,-0.995507,-0.093943,0.011888,-0.995507,-0.093943,0.011888,-0.995507,-0.093943,0.011888,-0.995507,-0.093943, + -0.007158,-0.999908,0.011500,-0.007158,-0.999908,0.011500,-0.007158,-0.999908,0.011500,-0.007158,-0.999908,0.011500, + -0.016424,-0.994832,-0.100196,-0.016424,-0.994832,-0.100196,-0.016424,-0.994832,-0.100196,-0.016424,-0.994832,-0.100196, + -0.018266,-0.999830,0.002587,-0.018266,-0.999830,0.002587,-0.018266,-0.999830,0.002587,-0.018266,-0.999830,0.002587, + -0.043364,-0.082239,0.995669,-0.043364,-0.082239,0.995669,-0.043364,-0.082239,0.995669,-0.043364,-0.082239,0.995669, + 0.018266,0.999830,-0.002580,0.018266,0.999830,-0.002580,0.018266,0.999830,-0.002580,0.018266,0.999830,-0.002580, + 0.047604,0.082123,-0.995485,0.047604,0.082123,-0.995485,0.047604,0.082123,-0.995485,0.047604,0.082123,-0.995485, + -0.021865,-0.068423,0.997417,-0.021865,-0.068423,0.997417,-0.021865,-0.068423,0.997417,-0.021865,-0.068423,0.997417, + 0.007159,0.999908,-0.011494,0.007159,0.999908,-0.011494,0.007159,0.999908,-0.011494,0.007159,0.999908,-0.011494, + 0.018067,0.068481,-0.997489,0.018067,0.068481,-0.997489,0.018067,0.068481,-0.997489,0.018067,0.068481,-0.997489, + 0.015113,0.997081,0.074837,0.015113,0.997081,0.074837,0.015113,0.997081,0.074837,0.015113,0.997081,0.074837, + -0.993169,0.026662,-0.113601,-0.993169,0.026662,-0.113601,-0.993169,0.026662,-0.113601,-0.993169,0.026662,-0.113601, + 0.993867,-0.026211,0.107428,0.993867,-0.026211,0.107428,0.993867,-0.026211,0.107428,0.993867,-0.026211,0.107428, + -0.008221,0.997640,0.068172,-0.008221,0.997640,0.068172,-0.008221,0.997640,0.068172,-0.008221,0.997640,0.068172, + -0.998595,0.014346,0.051013,-0.998595,0.014346,0.051013,-0.998595,0.014346,0.051013,-0.998595,0.014346,0.051013, + 0.998641,-0.014429,-0.050084,0.998641,-0.014429,-0.050084,0.998641,-0.014429,-0.050084,0.998641,-0.014429,-0.050084, + 0.056634,0.998386,0.004157,0.056634,0.998386,0.004157,0.056634,0.998386,0.004157,0.056634,0.998386,0.004157, + 0.101260,0.981793,-0.160712,0.101260,0.981793,-0.160712,0.101260,0.981793,-0.160712,-0.120297,-0.976457,0.179054, + -0.120297,-0.976457,0.179054,-0.120297,-0.976457,0.179054,0.154757,-0.972179,0.175837,0.154757,-0.972179,0.175837, + 0.154757,-0.972179,0.175837,0.909269,-0.093785,0.405506,0.909269,-0.093785,0.405506,0.909269,-0.093785,0.405506, + -0.933781,0.056433,-0.353366,-0.933781,0.056433,-0.353366,-0.933781,0.056433,-0.353366,-0.933781,0.056433,-0.353366, + -0.069127,0.993311,-0.092491,-0.069127,0.993311,-0.092491,-0.069127,0.993311,-0.092491,-0.069127,0.993311,-0.092491, + -0.914688,0.023023,-0.403503,-0.914688,0.023023,-0.403503,-0.914688,0.023023,-0.403503,-0.005821,0.993131,-0.116866, + -0.005821,0.993131,-0.116866,-0.005821,0.993131,-0.116866,0.126147,-0.986080,0.108318,0.126147,-0.986080,0.108318, + 0.126147,-0.986080,0.108318,0.126147,-0.986080,0.108318,0.935217,-0.059854,0.348979,0.935217,-0.059854,0.348979, + 0.935217,-0.059854,0.348979,0.935217,-0.059854,0.348979,-0.983574,-0.117829,-0.136744,-0.983574,-0.117829,-0.136744, + -0.983574,-0.117829,-0.136744,0.069292,-0.987963,-0.138305,0.069292,-0.987963,-0.138305,0.069292,-0.987963,-0.138305, + -0.992679,0.037711,-0.114749,-0.992679,0.037711,-0.114749,-0.992679,0.037711,-0.114749,-0.027388,-0.988295,-0.150076, + -0.027388,-0.988295,-0.150076,-0.027388,-0.988295,-0.150076,0.992331,-0.037920,0.117646,0.992331,-0.037920,0.117646, + 0.992331,-0.037920,0.117646,0.099415,0.982597,0.156908,0.099415,0.982597,0.156908,0.099415,0.982597,0.156908, + 0.017801,0.986865,0.160563,0.017801,0.986865,0.160563,0.017801,0.986865,0.160563,-0.034684,-0.996583,-0.074962, + -0.034684,-0.996583,-0.074962,-0.034684,-0.996583,-0.074962,-0.014977,0.998914,0.044125,-0.014977,0.998914,0.044125, + -0.014977,0.998914,0.044125,-0.014977,0.998914,0.044125,-0.050078,0.994566,0.091272,-0.050078,0.994566,0.091272, + -0.050078,0.994566,0.091272,-0.050078,0.994566,0.091272,0.007033,0.986177,0.165545,0.007033,0.986177,0.165545, + 0.007033,0.986177,0.165545,-0.053880,0.990864,0.123638,-0.053880,0.990864,0.123638,-0.053880,0.990864,0.123638, + 0.072025,-0.932734,-0.353299,0.072025,-0.932734,-0.353299,0.072025,-0.932734,-0.353299,0.072025,-0.932735,-0.353295, + 0.072025,-0.932735,-0.353295,0.072025,-0.932735,-0.353295,0.008054,-0.996646,-0.081435,0.008054,-0.996646,-0.081435, + 0.008054,-0.996646,-0.081435,0.008054,-0.996646,-0.081435,0.004171,-0.999536,-0.030173,0.004171,-0.999536,-0.030173, + 0.004171,-0.999536,-0.030173,0.004171,-0.999536,-0.030173,-0.034683,-0.996583,-0.074967,-0.034683,-0.996583,-0.074967, + -0.034683,-0.996583,-0.074967,-0.012010,-0.974799,-0.222764,-0.012010,-0.974799,-0.222764,-0.012010,-0.974799,-0.222764, + 0.048052,0.995305,-0.084023,0.048052,0.995305,-0.084023,0.048052,0.995305,-0.084023,0.048052,0.995305,-0.084023, + -0.009010,-0.984787,-0.173532,-0.009010,-0.984787,-0.173532,-0.009010,-0.984787,-0.173532,-0.009010,-0.984787,-0.173532, + -0.039255,-0.967218,-0.250895,-0.039255,-0.967218,-0.250895,-0.039255,-0.967218,-0.250895,-0.039255,-0.967218,-0.250895, + -0.019862,-0.986289,-0.163830,-0.019862,-0.986289,-0.163830,-0.019862,-0.986289,-0.163830,-0.019862,-0.986289,-0.163830, + -0.050363,-0.994780,0.088752,-0.050363,-0.994780,0.088752,-0.050363,-0.994780,0.088752,-0.050363,-0.994780,0.088752, + 0.015883,0.989640,0.142691,0.015883,0.989640,0.142691,0.015883,0.989640,0.142691,0.027743,0.985855,0.165289, + 0.027743,0.985855,0.165289,0.027743,0.985855,0.165289,0.027743,0.985855,0.165289,-0.079458,-0.996741,0.013932, + -0.079458,-0.996741,0.013932,-0.079458,-0.996741,0.013932,0.929075,-0.356153,0.099868,0.929075,-0.356153,0.099868, + 0.929075,-0.356153,0.099868,0.929075,-0.356153,0.099868,-0.024295,-0.038610,-0.998959,-0.024295,-0.038610,-0.998959, + -0.024295,-0.038610,-0.998959,-0.024295,-0.038610,-0.998959,0.234707,0.056806,-0.970405,0.234707,0.056806,-0.970405, + 0.234707,0.056806,-0.970405,0.033793,-0.699053,0.714271,0.033793,-0.699053,0.714271,0.033793,-0.699053,0.714271, + 0.033793,-0.699053,0.714271,-0.472000,0.879680,0.058134,-0.472000,0.879680,0.058134,-0.472000,0.879680,0.058134, + -0.472000,0.879680,0.058134,0.186171,0.148463,-0.971236,0.186171,0.148463,-0.971236,0.186171,0.148463,-0.971236, + 0.053564,0.996959,-0.056602,0.053564,0.996959,-0.056602,0.053564,0.996959,-0.056602,0.071697,0.992910,-0.094814, + 0.071697,0.992910,-0.094814,0.071697,0.992910,-0.094814,0.066887,0.997691,0.011753,0.066887,0.997691,0.011753, + 0.066887,0.997691,0.011753,0.060802,0.998094,-0.010535,0.060802,0.998094,-0.010535,0.060802,0.998094,-0.010535, + -0.052942,-0.997117,0.054350,-0.052942,-0.997117,0.054350,-0.052942,-0.997117,0.054350,-0.060406,-0.998134,0.008971, + -0.060406,-0.998134,0.008971,-0.060406,-0.998134,0.008971,-0.071177,-0.997036,-0.029226,-0.071177,-0.997036,-0.029226, + -0.071177,-0.997036,-0.029226,-0.070676,-0.997380,-0.015420,-0.070676,-0.997380,-0.015420,-0.070676,-0.997380,-0.015420, + -0.070676,-0.997380,-0.015420,0.023542,0.995533,0.091430,0.023542,0.995533,0.091430,0.023542,0.995533,0.091430, + 0.022647,0.995488,0.092151,0.022647,0.995488,0.092151,0.022647,0.995488,0.092151,-0.022757,-0.995535,-0.091615, + -0.022757,-0.995535,-0.091615,-0.022757,-0.995535,-0.091615,-0.011947,-0.986581,-0.162835,-0.011947,-0.986581,-0.162835, + -0.011947,-0.986581,-0.162835,-0.021778,-0.995482,-0.092417,-0.021778,-0.995482,-0.092417,-0.021778,-0.995482,-0.092417, + 0.000272,0.942912,0.333043,0.000272,0.942912,0.333043,0.000272,0.942912,0.333043,0.000272,0.942912,0.333043, + -0.999388,0.030509,-0.017143,-0.999388,0.030509,-0.017143,-0.999388,0.030509,-0.017143,0.999401,-0.030472,0.016414, + 0.999401,-0.030472,0.016414,0.999401,-0.030472,0.016414,-0.074291,-0.333870,0.939687,-0.074291,-0.333870,0.939687, + -0.074291,-0.333870,0.939687,0.104074,0.327686,-0.939037,0.104074,0.327686,-0.939037,0.104074,0.327686,-0.939037, + 0.015535,-0.945176,-0.326193,0.015535,-0.945176,-0.326193,0.015535,-0.945176,-0.326193,0.015535,-0.945176,-0.326193, + -0.015535,0.945172,0.326203,-0.015535,0.945172,0.326203,-0.015535,0.945172,0.326203,-0.015535,0.945172,0.326203, + -0.998452,0.024686,-0.049845,-0.998452,0.024686,-0.049845,-0.998452,0.024686,-0.049845,0.998483,-0.024874,0.049113, + 0.998483,-0.024874,0.049113,0.998483,-0.024874,0.049113,-0.103085,-0.327768,0.939118,-0.103085,-0.327768,0.939118, + -0.103085,-0.327768,0.939118,-0.086336,-0.995674,-0.034353,-0.086336,-0.995674,-0.034353,-0.086336,-0.995674,-0.034353, + -0.086336,-0.995674,-0.034353,0.086313,0.995676,0.034344,0.086313,0.995676,0.034344,0.086313,0.995676,0.034344, + 0.086313,0.995676,0.034344,0.310191,0.318354,-0.895786,0.310191,0.318354,-0.895786,0.310191,0.318354,-0.895786, + 0.002252,-0.983095,-0.183080,0.002252,-0.983095,-0.183080,0.002252,-0.983095,-0.183080,0.002252,-0.983095,-0.183080, + -0.002399,0.983027,0.183447,-0.002399,0.983027,0.183447,-0.002399,0.983027,0.183447,-0.002399,0.983027,0.183447, + -0.971163,0.038293,-0.235323,-0.971163,0.038293,-0.235323,-0.971163,0.038293,-0.235323,0.971044,-0.038361,0.235801, + 0.971044,-0.038361,0.235801,0.971044,-0.038361,0.235801,-0.309651,-0.021764,0.950601,-0.309651,-0.021764,0.950601, + -0.309651,-0.021764,0.950601,0.289533,0.064293,-0.955006,0.289533,0.064293,-0.955006,0.289533,0.064293,-0.955006, + 0.289533,0.064293,-0.955006,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918, + -0.029084,-0.996690,-0.075918,-0.945891,0.051998,-0.320292,-0.945891,0.051998,-0.320292,-0.945891,0.051998,-0.320292, + -0.945891,0.051998,-0.320292,0.961734,-0.048602,0.269639,0.961734,-0.048602,0.269639,0.961734,-0.048602,0.269639, + 0.961734,-0.048602,0.269639,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918,-0.029084,-0.996690,-0.075918, + -0.029084,-0.996690,-0.075918,0.192926,0.068924,-0.978790,0.192926,0.068924,-0.978790,0.192926,0.068924,-0.978790, + 0.192926,0.068924,-0.978790,-0.953404,0.148962,-0.262358,-0.953404,0.148962,-0.262358,-0.953404,0.148962,-0.262358, + -0.953404,0.148962,-0.262358,-0.272972,-0.024360,0.961713,-0.272972,-0.024360,0.961713,-0.272972,-0.024360,0.961713, + -0.272972,-0.024360,0.961713,0.295146,0.148668,-0.943815,0.295146,0.148668,-0.943815,0.295146,0.148668,-0.943815, + 0.295146,0.148668,-0.943815,-0.184921,-0.977781,-0.098730,-0.184921,-0.977781,-0.098730,-0.184921,-0.977781,-0.098730, + -0.184921,-0.977781,-0.098730,0.183465,0.976718,0.111184,0.183465,0.976718,0.111184,0.183465,0.976718,0.111184, + 0.183465,0.976718,0.111184,-0.944497,0.208656,-0.253749,-0.944497,0.208656,-0.253749,-0.944497,0.208656,-0.253749, + -0.944497,0.208656,-0.253749,-0.950734,0.204810,-0.232720,-0.950734,0.204810,-0.232720,-0.950734,0.204810,-0.232720, + 0.189032,0.977873,0.089622,0.189032,0.977873,0.089622,0.189032,0.977873,0.089622,0.189032,0.977873,0.089622, + -0.254843,-0.066043,0.964724,-0.254843,-0.066043,0.964724,-0.254843,-0.066043,0.964724,-0.254843,-0.066043,0.964724, + 0.262522,0.108401,-0.958818,0.262522,0.108401,-0.958818,0.262522,0.108401,-0.958818,0.262522,0.108401,-0.958818, + 0.302857,0.054320,-0.951487,0.302857,0.054320,-0.951487,0.302857,0.054320,-0.951487,0.302857,0.054320,-0.951487, + -0.170124,-0.972251,-0.160578,-0.170124,-0.972251,-0.160578,-0.170124,-0.972251,-0.160578,-0.170124,-0.972251,-0.160578, + -0.950661,0.205002,-0.232847,-0.950661,0.205002,-0.232847,-0.950661,0.205002,-0.232847,-0.279808,-0.017852,0.959890, + -0.279808,-0.017852,0.959890,-0.279808,-0.017852,0.959890,-0.279808,-0.017852,0.959890,0.184427,0.976872,0.108198, + 0.184427,0.976872,0.108198,0.184427,0.976872,0.108198,0.184427,0.976872,0.108198,-0.166381,-0.972292,-0.164214, + -0.166381,-0.972292,-0.164214,-0.166381,-0.972292,-0.164214,-0.166381,-0.972292,-0.164214,-0.182396,-0.976473,-0.115028, + -0.182396,-0.976473,-0.115028,-0.182396,-0.976473,-0.115028,-0.182396,-0.976473,-0.115028,-0.949624,0.205279,-0.236804, + -0.949624,0.205279,-0.236804,-0.949624,0.205279,-0.236804,-0.949624,0.205279,-0.236804,-0.254843,-0.066044,0.964725, + -0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725,0.254842,0.066047,-0.964724, + 0.254842,0.066047,-0.964724,0.254842,0.066047,-0.964724,0.254842,0.066047,-0.964724,0.254839,0.066044,-0.964726, + 0.254839,0.066044,-0.964726,0.254839,0.066044,-0.964726,0.254839,0.066044,-0.964726,0.949623,-0.205285,0.236799, + 0.949623,-0.205285,0.236799,0.949623,-0.205285,0.236799,0.949623,-0.205285,0.236799,0.182397,0.976473,0.115026, + 0.182397,0.976473,0.115026,0.182397,0.976473,0.115026,0.182397,0.976473,0.115026,-0.182397,-0.976473,-0.115029, + -0.182397,-0.976473,-0.115029,-0.182397,-0.976473,-0.115029,-0.182397,-0.976473,-0.115029,-0.949625,0.205274,-0.236801, + -0.949625,0.205274,-0.236801,-0.949625,0.205274,-0.236801,-0.949625,0.205274,-0.236801,0.182395,0.976472,0.115038, + 0.182395,0.976472,0.115038,0.182395,0.976472,0.115038,0.182395,0.976472,0.115038,0.949626,-0.205275,0.236796, + 0.949626,-0.205275,0.236796,0.949626,-0.205275,0.236796,0.949626,-0.205275,0.236796,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,-0.949624,0.205277,-0.236803, + -0.949624,0.205277,-0.236803,-0.949624,0.205277,-0.236803,-0.949624,0.205277,-0.236803,-0.182397,-0.976473,-0.115033, + -0.182397,-0.976473,-0.115033,-0.182397,-0.976473,-0.115033,-0.182397,-0.976473,-0.115033,-0.949626,0.205268,-0.236802, + -0.949626,0.205268,-0.236802,-0.949626,0.205268,-0.236802,-0.949626,0.205268,-0.236802,0.182396,0.976473,0.115033, + 0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.949626,-0.205268,0.236804, + 0.949626,-0.205268,0.236804,0.949626,-0.205268,0.236804,0.949626,-0.205268,0.236804,0.254843,0.066044,-0.964724, + 0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,-0.182398,-0.976472,-0.115035, + -0.182398,-0.976472,-0.115035,-0.182398,-0.976472,-0.115035,-0.182398,-0.976472,-0.115035,-0.182396,-0.976473,-0.115031, + -0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031,-0.949625,0.205277,-0.236799, + -0.949625,0.205277,-0.236799,-0.949625,0.205277,-0.236799,-0.949625,0.205277,-0.236799,0.182395,0.976473,0.115034, + 0.182395,0.976473,0.115034,0.182395,0.976473,0.115034,0.182395,0.976473,0.115034,0.949625,-0.205276,0.236799, + 0.949625,-0.205276,0.236799,0.949625,-0.205276,0.236799,0.949625,-0.205276,0.236799,0.254766,0.066061,-0.964744, + 0.254766,0.066061,-0.964744,0.254766,0.066061,-0.964744,0.254766,0.066061,-0.964744,0.949624,-0.205276,0.236804, + 0.949624,-0.205276,0.236804,0.949624,-0.205276,0.236804,0.949624,-0.205276,0.236804,0.254834,0.066043,-0.964727, + 0.254834,0.066043,-0.964727,0.254834,0.066043,-0.964727,0.254834,0.066043,-0.964727,0.182394,0.976473,0.115033, + 0.182394,0.976473,0.115033,0.182394,0.976473,0.115033,0.182394,0.976473,0.115033,-0.949623,0.205279,-0.236804, + -0.949623,0.205279,-0.236804,-0.949623,0.205279,-0.236804,-0.949623,0.205279,-0.236804,-0.182399,-0.976472,-0.115033, + -0.182399,-0.976472,-0.115033,-0.182399,-0.976472,-0.115033,-0.182399,-0.976472,-0.115033,0.949626,-0.205274,0.236798, + 0.949626,-0.205274,0.236798,0.949626,-0.205274,0.236798,0.949626,-0.205274,0.236798,0.254839,0.066047,-0.964725, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.182397,0.976472,0.115033, + 0.182397,0.976472,0.115033,0.182397,0.976472,0.115033,0.182397,0.976472,0.115033,-0.949624,0.205276,-0.236802, + -0.949624,0.205276,-0.236802,-0.949624,0.205276,-0.236802,-0.949624,0.205276,-0.236802,-0.182398,-0.976472,-0.115032, + -0.182398,-0.976472,-0.115032,-0.182398,-0.976472,-0.115032,-0.182398,-0.976472,-0.115032,0.949625,-0.205274,0.236801, + 0.949625,-0.205274,0.236801,0.949625,-0.205274,0.236801,0.949625,-0.205274,0.236801,-0.178497,-0.975355,-0.129700, + -0.178497,-0.975355,-0.129700,-0.178497,-0.975355,-0.129700,-0.178497,-0.975355,-0.129700,-0.947604,0.208781,-0.241780, + -0.947604,0.208781,-0.241780,-0.947604,0.208781,-0.241780,-0.947604,0.208781,-0.241780,0.182488,0.978755,0.093468, + 0.182488,0.978755,0.093468,0.182488,0.978755,0.093468,0.182488,0.978755,0.093468,0.949625,-0.205277,0.236800, + 0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800,-0.254844,-0.066047,0.964724, + -0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254846,-0.066045,0.964724, + -0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254843,-0.066047,0.964724, + -0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254765,-0.066061,0.964744, + -0.254765,-0.066061,0.964744,-0.254765,-0.066061,0.964744,-0.254765,-0.066061,0.964744,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.182396,-0.976473,-0.115032, + -0.182396,-0.976473,-0.115032,-0.182396,-0.976473,-0.115032,-0.182396,-0.976473,-0.115032,-0.949624,0.205278,-0.236801, + -0.949624,0.205278,-0.236801,-0.949624,0.205278,-0.236801,-0.949624,0.205278,-0.236801,0.182396,0.976473,0.115032, + 0.182396,0.976473,0.115032,0.182396,0.976473,0.115032,0.182396,0.976473,0.115032,0.949623,-0.205283,0.236801, + 0.949623,-0.205283,0.236801,0.949623,-0.205283,0.236801,0.949623,-0.205283,0.236801,0.233215,0.070692,-0.969852, + 0.233215,0.070692,-0.969852,0.233215,0.070692,-0.969852,0.233215,0.070692,-0.969852,0.027875,0.111811,-0.993339, + 0.027875,0.111811,-0.993339,0.027875,0.111811,-0.993339,0.027875,0.111811,-0.993339,-0.182397,-0.976473,-0.115030, + -0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030,-0.949622,0.205294,-0.236797, + -0.949622,0.205294,-0.236797,-0.949622,0.205294,-0.236797,-0.949622,0.205294,-0.236797,0.182396,0.976473,0.115030, + 0.182396,0.976473,0.115030,0.182396,0.976473,0.115030,0.182396,0.976473,0.115030,0.949627,-0.205269,0.236798, + 0.949627,-0.205269,0.236798,0.949627,-0.205269,0.236798,0.949627,-0.205269,0.236798,0.233699,0.070583,-0.969744, + 0.233699,0.070583,-0.969744,0.233699,0.070583,-0.969744,0.233699,0.070583,-0.969744,0.945166,-0.206372,0.253125, + 0.945166,-0.206372,0.253125,0.945166,-0.206372,0.253125,0.945166,-0.206372,0.253125,-0.182396,-0.976473,-0.115032, + -0.182396,-0.976473,-0.115032,-0.182396,-0.976473,-0.115032,-0.182396,-0.976473,-0.115032,-0.949624,0.205280,-0.236799, + -0.949624,0.205280,-0.236799,-0.949624,0.205280,-0.236799,-0.949624,0.205280,-0.236799,0.182396,0.976473,0.115033, + 0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.949625,-0.205278,0.236798, + 0.949625,-0.205278,0.236798,0.949625,-0.205278,0.236798,0.949625,-0.205278,0.236798,0.232702,0.070793,-0.969968, + 0.232702,0.070793,-0.969968,0.232702,0.070793,-0.969968,0.232702,0.070793,-0.969968,-0.182396,-0.976473,-0.115034, + -0.182396,-0.976473,-0.115034,-0.182396,-0.976473,-0.115034,-0.182396,-0.976473,-0.115034,-0.949626,0.205275,-0.236798, + -0.949626,0.205275,-0.236798,-0.949626,0.205275,-0.236798,-0.949626,0.205275,-0.236798,0.182397,0.976473,0.115031, + 0.182397,0.976473,0.115031,0.182397,0.976473,0.115031,0.182397,0.976473,0.115031,0.949625,-0.205278,0.236799, + 0.949625,-0.205278,0.236799,0.949625,-0.205278,0.236799,0.949625,-0.205278,0.236799,0.229525,0.071476,-0.970675, + 0.229525,0.071476,-0.970675,0.229525,0.071476,-0.970675,0.229525,0.071476,-0.970675,0.177278,0.975104,0.133208, + 0.177278,0.975104,0.133208,0.177278,0.975104,0.133208,0.177278,0.975104,0.133208,-0.190372,-0.974713,-0.117018, + -0.190372,-0.974713,-0.117018,-0.190372,-0.974713,-0.117018,-0.190372,-0.974713,-0.117018,-0.949626,0.205275,-0.236797, + -0.949626,0.205275,-0.236797,-0.949626,0.205275,-0.236797,-0.949626,0.205275,-0.236797,0.182395,0.976473,0.115031, + 0.182395,0.976473,0.115031,0.182395,0.976473,0.115031,0.182395,0.976473,0.115031,0.906508,-0.211618,0.365324, + 0.906508,-0.211618,0.365324,0.906508,-0.211618,0.365324,0.906508,-0.211618,0.365324,0.219038,0.073660,-0.972932, + 0.219038,0.073660,-0.972932,0.219038,0.073660,-0.972932,0.219038,0.073660,-0.972932,0.983073,-0.183171,-0.003871, + 0.983073,-0.183171,-0.003871,0.983073,-0.183171,-0.003871,0.983073,-0.183171,-0.003871,0.212703,0.075036,-0.974231, + 0.212703,0.075036,-0.974231,0.212703,0.075036,-0.974231,0.212703,0.075036,-0.974231,-0.945167,0.206364,-0.253126, + -0.945167,0.206364,-0.253126,-0.945167,0.206364,-0.253126,-0.945167,0.206364,-0.253126,-0.979647,0.190455,-0.063399, + -0.979647,0.190455,-0.063399,-0.979647,0.190455,-0.063399,-0.979647,0.190455,-0.063399,-0.177278,-0.975104,-0.133207, + -0.177278,-0.975104,-0.133207,-0.177278,-0.975104,-0.133207,-0.177278,-0.975104,-0.133207,0.710729,-0.515832,0.478311, + 0.710729,-0.515832,0.478311,0.710729,-0.515832,0.478311,0.710729,-0.515832,0.478311,0.346710,0.911973,0.219312, + 0.346710,0.911973,0.219312,0.346710,0.911973,0.219312,0.346710,0.911973,0.219312,-0.182382,-0.976476,-0.115031, + -0.182382,-0.976476,-0.115031,-0.182382,-0.976476,-0.115031,-0.182382,-0.976476,-0.115031,0.343745,0.117606,-0.931670, + 0.343745,0.117606,-0.931670,0.343745,0.117606,-0.931670,0.343745,0.117606,-0.931670,-0.949625,0.205274,-0.236803, + -0.949625,0.205274,-0.236803,-0.949625,0.205274,-0.236803,-0.949625,0.205274,-0.236803,-0.064342,-0.994296,-0.085067, + -0.064342,-0.994296,-0.085067,-0.064342,-0.994296,-0.085067,-0.064342,-0.994296,-0.085067,-0.235790,-0.070144,0.969269, + -0.235790,-0.070144,0.969269,-0.235790,-0.070144,0.969269,-0.235790,-0.070144,0.969269,0.268937,0.145845,-0.952052, + 0.268937,0.145845,-0.952052,0.268937,0.145845,-0.952052,0.268937,0.145845,-0.952052,0.182398,0.976472,0.115035, + 0.182398,0.976472,0.115035,0.182398,0.976472,0.115035,0.182398,0.976472,0.115035,0.182395,0.976473,0.115034, + 0.182395,0.976473,0.115034,0.182395,0.976473,0.115034,0.182395,0.976473,0.115034,0.950739,-0.199206,0.237513, + 0.950739,-0.199206,0.237513,0.950739,-0.199206,0.237513,0.950739,-0.199206,0.237513,-0.182394,-0.976473,-0.115031, + -0.182394,-0.976473,-0.115031,-0.182394,-0.976473,-0.115031,-0.182394,-0.976473,-0.115031,-0.950740,0.199202,-0.237512, + -0.950740,0.199202,-0.237512,-0.950740,0.199202,-0.237512,-0.950740,0.199202,-0.237512,0.258617,0.017659,-0.965819, + 0.258617,0.017659,-0.965819,0.258617,0.017659,-0.965819,0.258617,0.017659,-0.965819,-0.898880,0.224733,-0.376177, + -0.898880,0.224733,-0.376177,-0.898880,0.224733,-0.376177,-0.898880,0.224733,-0.376177,-0.341893,-0.118338,0.932258, + -0.341893,-0.118338,0.932258,-0.341893,-0.118338,0.932258,-0.341893,-0.118338,0.932258,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.326436,0.927417,-0.182587, + 0.326436,0.927417,-0.182587,0.326436,0.927417,-0.182587,0.326436,0.927417,-0.182587,-0.298198,-0.947470,0.115662, + -0.298198,-0.947470,0.115662,-0.298198,-0.947470,0.115662,-0.298198,-0.947470,0.115662,-0.512781,0.157783,-0.843896, + -0.512781,0.157783,-0.843896,-0.512781,0.157783,-0.843896,-0.512781,0.157783,-0.843896,0.092384,0.984783,-0.147201, + 0.092384,0.984783,-0.147201,0.092384,0.984783,-0.147201,0.092384,0.984783,-0.147201,0.520136,-0.040366,-0.853129, + 0.520136,-0.040366,-0.853129,0.520136,-0.040366,-0.853129,0.520136,-0.040366,-0.853129,-0.169198,-0.985200,-0.027446, + -0.169198,-0.985200,-0.027446,-0.169198,-0.985200,-0.027446,-0.169198,-0.985200,-0.027446,0.191452,0.978219,0.080208, + 0.191452,0.978219,0.080208,0.191452,0.978219,0.080208,0.191452,0.978219,0.080208,0.953737,-0.189692,0.233242, + 0.953737,-0.189692,0.233242,0.953737,-0.189692,0.233242,0.953737,-0.189692,0.233242,-0.187081,-0.977559,-0.096847, + -0.187081,-0.977559,-0.096847,-0.187081,-0.977559,-0.096847,-0.187081,-0.977559,-0.096847,-0.949625,0.205277,-0.236800, + -0.949625,0.205277,-0.236800,-0.949625,0.205277,-0.236800,-0.949625,0.205277,-0.236800,0.177877,0.975077,0.132609, + 0.177877,0.975077,0.132609,0.177877,0.975077,0.132609,0.177877,0.975077,0.132609,-0.254882,-0.887711,0.383412, + -0.254882,-0.887711,0.383412,-0.254882,-0.887711,0.383412,-0.232669,-0.070809,0.969975,-0.232669,-0.070809,0.969975, + -0.232669,-0.070809,0.969975,-0.232669,-0.070809,0.969975,0.939524,-0.207588,0.272399,0.939524,-0.207588,0.272399, + 0.939524,-0.207588,0.272399,0.939524,-0.207588,0.272399,-0.191686,-0.978245,-0.079327,-0.191686,-0.978245,-0.079327, + -0.191686,-0.978245,-0.079327,-0.191686,-0.978245,-0.079327,-0.939524,0.207591,-0.272399,-0.939524,0.207591,-0.272399, + -0.939524,0.207591,-0.272399,-0.939524,0.207591,-0.272399,0.191682,0.978246,0.079327,0.191682,0.978246,0.079327, + 0.191682,0.978246,0.079327,0.191682,0.978246,0.079327,0.947193,-0.205897,0.245827,0.947193,-0.205897,0.245827, + 0.947193,-0.205897,0.245827,0.947193,-0.205897,0.245827,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.947197,0.205880,-0.245828,-0.947197,0.205880,-0.245828, + -0.947197,0.205880,-0.245828,-0.947197,0.205880,-0.245828,0.183539,0.976762,0.110677,0.183539,0.976762,0.110677, + 0.183539,0.976762,0.110677,0.183539,0.976762,0.110677,0.951902,-0.205063,0.227665,0.951902,-0.205063,0.227665, + 0.951902,-0.205063,0.227665,0.951902,-0.205063,0.227665,-0.951907,0.205041,-0.227666,-0.951907,0.205041,-0.227666, + -0.951907,0.205041,-0.227666,-0.951907,0.205041,-0.227666,0.188863,0.977845,0.090282,0.188863,0.977845,0.090282, + 0.188863,0.977845,0.090282,0.188863,0.977845,0.090282,-0.191647,-0.978241,-0.079467,-0.191647,-0.978241,-0.079467, + -0.191647,-0.978241,-0.079467,-0.191647,-0.978241,-0.079467,0.952512,-0.204503,0.225609,0.952512,-0.204503,0.225609, + 0.952512,-0.204503,0.225609,0.952512,-0.204503,0.225609,-0.954226,0.204003,-0.218714,-0.954226,0.204003,-0.218714, + -0.954226,0.204003,-0.218714,-0.954226,0.204003,-0.218714,0.191641,0.978243,0.079465,0.191641,0.978243,0.079465, + 0.191641,0.978243,0.079465,0.191641,0.978243,0.079465,-0.222907,-0.072841,0.972115,-0.222907,-0.072841,0.972115, + -0.222907,-0.072841,0.972115,-0.222907,-0.072841,0.972115,-0.177510,-0.975173,-0.132395,-0.177510,-0.975173,-0.132395, + -0.177510,-0.975173,-0.132395,-0.177510,-0.975173,-0.132395,-0.954096,0.204039,-0.219248,-0.954096,0.204039,-0.219248, + -0.954096,0.204039,-0.219248,-0.954096,0.204039,-0.219248,0.177510,0.975173,0.132394,0.177510,0.975173,0.132394, + 0.177510,0.975173,0.132394,0.177510,0.975173,0.132394,0.954093,-0.204049,0.219249,0.954093,-0.204049,0.219249, + 0.954093,-0.204049,0.219249,0.954093,-0.204049,0.219249,-0.179927,-0.975855,-0.123829,-0.179927,-0.975855,-0.123829, + -0.179927,-0.975855,-0.123829,-0.179927,-0.975855,-0.123829,0.179927,0.975855,0.123829,0.179927,0.975855,0.123829, + 0.179927,0.975855,0.123829,0.179927,0.975855,0.123829,0.954095,-0.204042,0.219249,0.954095,-0.204042,0.219249, + 0.954095,-0.204042,0.219249,0.954095,-0.204042,0.219249,-0.184851,-0.977009,-0.106225,-0.184851,-0.977009,-0.106225, + -0.184851,-0.977009,-0.106225,-0.184851,-0.977009,-0.106225,0.184848,0.977010,0.106224,0.184848,0.977010,0.106224, + 0.184848,0.977010,0.106224,0.184848,0.977010,0.106224,0.954093,-0.204051,0.219248,0.954093,-0.204051,0.219248, + 0.954093,-0.204051,0.219248,0.954093,-0.204051,0.219248,-0.954096,0.204036,-0.219248,-0.954096,0.204036,-0.219248, + -0.954096,0.204036,-0.219248,-0.954096,0.204036,-0.219248,-0.187216,-0.977502,-0.097157,-0.187216,-0.977502,-0.097157, + -0.187216,-0.977502,-0.097157,-0.187216,-0.977502,-0.097157,0.132155,0.987628,0.084416,0.132155,0.987628,0.084416, + 0.132155,0.987628,0.084416,0.132155,0.987628,0.084416,0.954096,-0.204034,0.219249,0.954096,-0.204034,0.219249, + 0.954096,-0.204034,0.219249,0.954096,-0.204034,0.219249,0.177988,0.975199,0.131559,0.177988,0.975199,0.131559, + 0.177988,0.975199,0.131559,0.177988,0.975199,0.131559,-0.177993,-0.975197,-0.131562,-0.177993,-0.975197,-0.131562, + -0.177993,-0.975197,-0.131562,-0.177993,-0.975197,-0.131562,-0.945983,0.206174,-0.250219,-0.945983,0.206174,-0.250219, + -0.945983,0.206174,-0.250219,-0.945983,0.206174,-0.250219,0.189178,0.977894,0.089075,0.189178,0.977894,0.089075, + 0.189178,0.977894,0.089075,0.189178,0.977894,0.089075,-0.189175,-0.977895,-0.089075,-0.189175,-0.977895,-0.089075, + -0.189175,-0.977895,-0.089075,-0.189175,-0.977895,-0.089075,-0.949229,0.205380,-0.238295,-0.949229,0.205380,-0.238295, + -0.949229,0.205380,-0.238295,-0.949229,0.205380,-0.238295,0.953892,-0.205165,0.219082,0.953892,-0.205165,0.219082, + 0.953892,-0.205165,0.219082,0.953892,-0.205165,0.219082,-0.953714,0.205210,-0.219814,-0.953714,0.205210,-0.219814, + -0.953714,0.205210,-0.219814,-0.953714,0.205210,-0.219814,0.180531,0.975414,0.126393,0.180531,0.975414,0.126393, + 0.180531,0.975414,0.126393,0.180531,0.975414,0.126393,0.942720,-0.207243,0.261397,0.942720,-0.207243,0.261397, + 0.942720,-0.207243,0.261397,0.942720,-0.207243,0.261397,-0.942717,0.207261,-0.261396,-0.942717,0.207261,-0.261396, + -0.942717,0.207261,-0.261396,-0.942717,0.207261,-0.261396,0.179450,0.975648,0.126130,0.179450,0.975648,0.126130, + 0.179450,0.975648,0.126130,0.179450,0.975648,0.126130,-0.189041,-0.977873,-0.089599,-0.189041,-0.977873,-0.089599, + -0.189041,-0.977873,-0.089599,-0.189041,-0.977873,-0.089599,0.189039,0.977874,0.089598,0.189039,0.977874,0.089598, + 0.189039,0.977874,0.089598,0.189039,0.977874,0.089598,0.953944,-0.204091,0.219856,0.953944,-0.204091,0.219856, + 0.953944,-0.204091,0.219856,0.953944,-0.204091,0.219856,-0.418898,-0.845250,-0.331778,-0.418898,-0.845250,-0.331778, + -0.418898,-0.845250,-0.331778,-0.418898,-0.845250,-0.331778,0.413793,0.849606,0.327026,0.413793,0.849606,0.327026, + 0.413793,0.849606,0.327026,0.413793,0.849606,0.327026,-0.737024,0.058347,0.673343,-0.737024,0.058347,0.673343, + -0.737024,0.058347,0.673343,-0.737024,0.058347,0.673343,-0.942854,0.206529,-0.261481,-0.942854,0.206529,-0.261481, + -0.942854,0.206529,-0.261481,-0.942854,0.206529,-0.261481,0.942852,-0.206536,0.261481,0.942852,-0.206536,0.261481, + 0.942852,-0.206536,0.261481,0.942852,-0.206536,0.261481,-0.185432,-0.977194,-0.103475,-0.185432,-0.977194,-0.103475, + -0.185432,-0.977194,-0.103475,-0.185432,-0.977194,-0.103475,-0.954246,0.202929,-0.219622,-0.954246,0.202929,-0.219622, + -0.954246,0.202929,-0.219622,-0.954246,0.202929,-0.219622,0.954426,-0.202897,0.218871,0.954426,-0.202897,0.218871, + 0.954426,-0.202897,0.218871,0.954426,-0.202897,0.218871,-0.184360,-0.977459,-0.102880,-0.184360,-0.977459,-0.102880, + -0.184360,-0.977459,-0.102880,-0.184360,-0.977459,-0.102880,-0.926276,0.209887,-0.312986,-0.926276,0.209887,-0.312986, + -0.926276,0.209887,-0.312986,-0.926276,0.209887,-0.312986,0.236065,0.965527,-0.109687,0.236065,0.965527,-0.109687, + 0.236065,0.965527,-0.109687,0.236065,0.965527,-0.109687,0.926276,-0.209889,0.312985,0.926276,-0.209889,0.312985, + 0.926276,-0.209889,0.312985,0.926276,-0.209889,0.312985,-0.236066,-0.965527,0.109686,-0.236066,-0.965527,0.109686, + -0.236066,-0.965527,0.109686,-0.236066,-0.965527,0.109686,-0.948446,0.205600,-0.241201,-0.948446,0.205600,-0.241201, + -0.948446,0.205600,-0.241201,-0.948446,0.205600,-0.241201,0.948451,-0.205578,0.241203,0.948451,-0.205578,0.241203, + 0.948451,-0.205578,0.241203,0.948451,-0.205578,0.241203,-0.193761,-0.978464,-0.071166,-0.193761,-0.978464,-0.071166, + -0.193761,-0.978464,-0.071166,-0.193761,-0.978464,-0.071166,-0.954177,0.204020,-0.218911,-0.954177,0.204020,-0.218911, + -0.954177,0.204020,-0.218911,-0.954177,0.204020,-0.218911,0.954175,-0.204032,0.218911,0.954175,-0.204032,0.218911, + 0.954175,-0.204032,0.218911,0.954175,-0.204032,0.218911,-0.194568,-0.978528,-0.068010,-0.194568,-0.978528,-0.068010, + -0.194568,-0.978528,-0.068010,-0.194568,-0.978528,-0.068010,0.172568,0.973252,0.151658,0.172568,0.973252,0.151658, + 0.172568,0.973252,0.151658,0.172568,0.973252,0.151658,-0.939194,0.207666,-0.273476,-0.939194,0.207666,-0.273476, + -0.939194,0.207666,-0.273476,-0.939194,0.207666,-0.273476,0.939197,-0.207652,0.273477,0.939197,-0.207652,0.273477, + 0.939197,-0.207652,0.273477,0.939197,-0.207652,0.273477,-0.172568,-0.973252,-0.151658,-0.172568,-0.973252,-0.151658, + -0.172568,-0.973252,-0.151658,-0.172568,-0.973252,-0.151658,0.186831,0.977586,0.097058,0.186831,0.977586,0.097058, + 0.186831,0.977586,0.097058,0.186831,0.977586,0.097058,0.944842,-0.206440,0.254274,0.944842,-0.206440,0.254274, + 0.944842,-0.206440,0.254274,0.944842,-0.206440,0.254274,-0.186836,-0.977585,-0.097060,-0.186836,-0.977585,-0.097060, + -0.186836,-0.977585,-0.097060,-0.186836,-0.977585,-0.097060,-0.944843,0.206436,-0.254274,-0.944843,0.206436,-0.254274, + -0.944843,0.206436,-0.254274,-0.944843,0.206436,-0.254274,0.184595,0.977064,0.106160,0.184595,0.977064,0.106160, + 0.184595,0.977064,0.106160,0.184595,0.977064,0.106160,-0.184595,-0.977064,-0.106161,-0.184595,-0.977064,-0.106161, + -0.184595,-0.977064,-0.106161,-0.184595,-0.977064,-0.106161,-0.944842,0.206443,-0.254274,-0.944842,0.206443,-0.254274, + -0.944842,0.206443,-0.254274,-0.944842,0.206443,-0.254274,0.180178,0.975801,0.123891,0.180178,0.975801,0.123891, + 0.180178,0.975801,0.123891,0.180178,0.975801,0.123891,-0.180184,-0.975800,-0.123891,-0.180184,-0.975800,-0.123891, + -0.180184,-0.975800,-0.123891,-0.180184,-0.975800,-0.123891,-0.944840,0.206453,-0.254273,-0.944840,0.206453,-0.254273, + -0.944840,0.206453,-0.254273,-0.944840,0.206453,-0.254273,0.944842,-0.206441,0.254273,0.944842,-0.206441,0.254273, + 0.944842,-0.206441,0.254273,0.944842,-0.206441,0.254273,0.178006,0.975065,0.132520,0.178006,0.975065,0.132520, + 0.178006,0.975065,0.132520,0.178006,0.975065,0.132520,-0.099005,-0.988880,-0.110970,-0.099005,-0.988880,-0.110970, + -0.099005,-0.988880,-0.110970,-0.099005,-0.988880,-0.110970,-0.944842,0.206443,-0.254273,-0.944842,0.206443,-0.254273, + -0.944842,0.206443,-0.254273,-0.944842,0.206443,-0.254273,-0.233205,-0.070690,0.969855,-0.233205,-0.070690,0.969855, + -0.233205,-0.070690,0.969855,-0.233205,-0.070690,0.969855,0.945167,-0.206368,0.253125,0.945167,-0.206368,0.253125, + 0.945167,-0.206368,0.253125,0.945167,-0.206368,0.253125,0.179034,0.975611,0.127006,0.179034,0.975611,0.127006, + 0.179034,0.975611,0.127006,0.179034,0.975611,0.127006,-0.945167,0.206364,-0.253125,-0.945167,0.206364,-0.253125, + -0.945167,0.206364,-0.253125,-0.945167,0.206364,-0.253125,-0.179034,-0.975611,-0.127006,-0.179034,-0.975611,-0.127006, + -0.179034,-0.975611,-0.127006,-0.179034,-0.975611,-0.127006,0.945166,-0.206371,0.253125,0.945166,-0.206371,0.253125, + 0.945166,-0.206371,0.253125,0.945166,-0.206371,0.253125,0.182395,0.976473,0.115031,0.182395,0.976473,0.115031, + 0.182395,0.976473,0.115031,0.182395,0.976473,0.115031,-0.945168,0.206362,-0.253126,-0.945168,0.206362,-0.253126, + -0.945168,0.206362,-0.253126,-0.945168,0.206362,-0.253126,-0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031, + -0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031,0.945166,-0.206373,0.253125,0.945166,-0.206373,0.253125, + 0.945166,-0.206373,0.253125,0.945166,-0.206373,0.253125,0.179033,0.975611,0.127005,0.179033,0.975611,0.127005, + 0.179033,0.975611,0.127005,0.179033,0.975611,0.127005,-0.945168,0.206362,-0.253126,-0.945168,0.206362,-0.253126, + -0.945168,0.206362,-0.253126,-0.945168,0.206362,-0.253126,-0.182398,-0.976472,-0.115033,-0.182398,-0.976472,-0.115033, + -0.182398,-0.976472,-0.115033,-0.182398,-0.976472,-0.115033,0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723, + 0.254848,0.066044,-0.964723,0.254848,0.066044,-0.964723,0.182395,0.976473,0.115032,0.182395,0.976473,0.115032, + 0.182395,0.976473,0.115032,0.182395,0.976473,0.115032,-0.949625,0.205276,-0.236799,-0.949625,0.205276,-0.236799, + -0.949625,0.205276,-0.236799,-0.949625,0.205276,-0.236799,-0.182401,-0.976472,-0.115034,-0.182401,-0.976472,-0.115034, + -0.182401,-0.976472,-0.115034,-0.182401,-0.976472,-0.115034,0.949625,-0.205277,0.236801,0.949625,-0.205277,0.236801, + 0.949625,-0.205277,0.236801,0.949625,-0.205277,0.236801,0.092443,0.098712,-0.990813,0.092443,0.098712,-0.990813, + 0.092443,0.098712,-0.990813,0.092443,0.098712,-0.990813,0.182393,0.976473,0.115033,0.182393,0.976473,0.115033, + 0.182393,0.976473,0.115033,0.182393,0.976473,0.115033,-0.980918,0.189524,-0.043368,-0.980918,0.189524,-0.043368, + -0.980918,0.189524,-0.043368,-0.980918,0.189524,-0.043368,-0.182399,-0.976472,-0.115031,-0.182399,-0.976472,-0.115031, + -0.182399,-0.976472,-0.115031,-0.182399,-0.976472,-0.115031,0.981131,-0.188389,0.043497,0.981131,-0.188389,0.043497, + 0.981131,-0.188389,0.043497,0.981131,-0.188389,0.043497,0.946583,-0.212410,0.242614,0.946583,-0.212410,0.242614, + 0.946583,-0.212410,0.242614,0.946583,-0.212410,0.242614,-0.040591,0.666676,0.744241,-0.040591,0.666676,0.744241, + -0.040591,0.666676,0.744241,-0.040591,0.666676,0.744241,-0.946584,0.212412,-0.242609,-0.946584,0.212412,-0.242609, + -0.946584,0.212412,-0.242609,-0.946584,0.212412,-0.242609,0.040582,-0.666674,-0.744244,0.040582,-0.666674,-0.744244, + 0.040582,-0.666674,-0.744244,0.040582,-0.666674,-0.744244,0.946610,-0.212649,0.242303,0.946610,-0.212649,0.242303, + 0.946610,-0.212649,0.242303,0.946610,-0.212649,0.242303,-0.053183,0.641851,0.764983,-0.053183,0.641851,0.764983, + -0.053183,0.641851,0.764983,-0.053183,0.641851,0.764983,-0.946609,0.212647,-0.242308,-0.946609,0.212647,-0.242308, + -0.946609,0.212647,-0.242308,-0.946609,0.212647,-0.242308,0.056116,-0.635331,-0.770198,0.056116,-0.635331,-0.770198, + 0.056116,-0.635331,-0.770198,0.056116,-0.635331,-0.770198,0.946602,-0.212360,0.242585,0.946602,-0.212360,0.242585, + 0.946602,-0.212360,0.242585,0.946602,-0.212360,0.242585,-0.042533,0.662557,0.747803,-0.042533,0.662557,0.747803, + -0.042533,0.662557,0.747803,-0.042533,0.662557,0.747803,-0.946601,0.212371,-0.242582,-0.946601,0.212371,-0.242582, + -0.946601,0.212371,-0.242582,-0.946601,0.212371,-0.242582,0.042515,-0.662569,-0.747793,0.042515,-0.662569,-0.747793, + 0.042515,-0.662569,-0.747793,0.042515,-0.662569,-0.747793,-0.950057,0.211192,-0.229761,-0.950057,0.211192,-0.229761, + -0.950057,0.211192,-0.229761,-0.950057,0.211192,-0.229761,-0.309631,-0.724327,0.616019,-0.309631,-0.724327,0.616019, + -0.309631,-0.724327,0.616019,-0.309631,-0.724327,0.616019,0.950055,-0.211202,0.229758,0.950055,-0.211202,0.229758, + 0.950055,-0.211202,0.229758,0.950055,-0.211202,0.229758,0.309635,0.724335,-0.616007,0.309635,0.724335,-0.616007, + 0.309635,0.724335,-0.616007,0.309635,0.724335,-0.616007,-0.950056,0.211183,-0.229774,-0.950056,0.211183,-0.229774, + -0.950056,0.211183,-0.229774,-0.950056,0.211183,-0.229774,-0.310083,-0.704660,0.638203,-0.310083,-0.704660,0.638203, + -0.310083,-0.704660,0.638203,-0.310083,-0.704660,0.638203,0.950057,-0.211180,0.229772,0.950057,-0.211180,0.229772, + 0.950057,-0.211180,0.229772,0.950057,-0.211180,0.229772,0.310105,0.704658,-0.638195,0.310105,0.704658,-0.638195, + 0.310105,0.704658,-0.638195,0.310105,0.704658,-0.638195,-0.949949,0.211614,-0.229817,-0.949949,0.211614,-0.229817, + -0.949949,0.211614,-0.229817,-0.949949,0.211614,-0.229817,-0.308827,-0.719625,0.621905,-0.308827,-0.719625,0.621905, + -0.308827,-0.719625,0.621905,-0.308827,-0.719625,0.621905,0.949948,-0.211618,0.229817,0.949948,-0.211618,0.229817, + 0.949948,-0.211618,0.229817,0.949948,-0.211618,0.229817,0.308981,0.714052,-0.628220,0.308981,0.714052,-0.628220, + 0.308981,0.714052,-0.628220,0.308981,0.714052,-0.628220,-0.190922,-0.975262,-0.111415,-0.190922,-0.975262,-0.111415, + -0.190922,-0.975262,-0.111415,-0.190922,-0.975262,-0.111415,0.491285,-0.191848,0.849608,0.491285,-0.191848,0.849608, + 0.491285,-0.191848,0.849608,0.491285,-0.191848,0.849608,0.190919,0.975263,0.111412,0.190919,0.975263,0.111412, + 0.190919,0.975263,0.111412,0.190919,0.975263,0.111412,-0.490199,0.191688,-0.850271,-0.490199,0.191688,-0.850271, + -0.490199,0.191688,-0.850271,-0.490199,0.191688,-0.850271,-0.122525,-0.988087,-0.093123,-0.122525,-0.988087,-0.093123, + -0.122525,-0.988087,-0.093123,-0.122525,-0.988087,-0.093123,0.498751,-0.142439,0.854961,0.498751,-0.142439,0.854961, + 0.498751,-0.142439,0.854961,0.498751,-0.142439,0.854961,0.122525,0.988087,0.093124,0.122525,0.988087,0.093124, + 0.122525,0.988087,0.093124,0.122525,0.988087,0.093124,-0.498752,0.142433,-0.854961,-0.498752,0.142433,-0.854961, + -0.498752,0.142433,-0.854961,-0.498752,0.142433,-0.854961,-0.965306,0.169157,-0.198921,-0.965306,0.169157,-0.198921, + -0.965306,0.169157,-0.198921,-0.965306,0.169157,-0.198921,0.965048,-0.169385,0.199977,0.965048,-0.169385,0.199977, + 0.965048,-0.169385,0.199977,0.965048,-0.169385,0.199977,-0.127327,-0.959334,-0.251925,-0.127327,-0.959334,-0.251925, + -0.127327,-0.959334,-0.251925,-0.127327,-0.959334,-0.251925,0.966992,-0.195890,0.162955,0.966992,-0.195890,0.162955, + 0.966992,-0.195890,0.162955,0.966992,-0.195890,0.162955,-0.976492,0.131612,-0.170709,-0.976492,0.131612,-0.170709, + -0.976492,0.131612,-0.170709,-0.976492,0.131612,-0.170709,0.198604,0.978700,0.051997,0.198604,0.978700,0.051997, + 0.198604,0.978700,0.051997,0.198604,0.978700,0.051997,-0.930121,-0.124636,-0.345457,-0.930121,-0.124636,-0.345457, + -0.930121,-0.124636,-0.345457,-0.930121,-0.124636,-0.345457,0.930122,0.124631,0.345458,0.930122,0.124631,0.345458, + 0.930122,0.124631,0.345458,0.930122,0.124631,0.345458,0.166192,-0.979072,-0.117466,0.166192,-0.979072,-0.117466, + 0.166192,-0.979072,-0.117466,0.166192,-0.979072,-0.117466,0.933744,-0.043908,0.355238,0.933744,-0.043908,0.355238, + 0.933744,-0.043908,0.355238,0.933744,-0.043908,0.355238,-0.931004,-0.013043,-0.364776,-0.931004,-0.013043,-0.364776, + -0.931004,-0.013043,-0.364776,-0.931004,-0.013043,-0.364776,0.192382,0.978326,0.076602,0.192382,0.978326,0.076602, + 0.192382,0.978326,0.076602,0.192382,0.978326,0.076602,-0.194433,-0.978519,-0.068523,-0.194433,-0.978519,-0.068523, + -0.194433,-0.978519,-0.068523,-0.194433,-0.978519,-0.068523,0.926944,-0.131738,-0.351312,0.926944,-0.131738,-0.351312, + 0.926944,-0.131738,-0.351312,0.926944,-0.131738,-0.351312,-0.926942,0.131755,0.351311,-0.926942,0.131755,0.351311, + -0.926942,0.131755,0.351311,-0.926942,0.131755,0.351311,-0.193592,-0.978448,-0.071845,-0.193592,-0.978448,-0.071845, + -0.193592,-0.978448,-0.071845,-0.193592,-0.978448,-0.071845,-0.950829,0.204949,-0.232209,-0.950829,0.204949,-0.232209, + -0.950829,0.204949,-0.232209,-0.950829,0.204949,-0.232209,0.173948,0.973785,0.146580,0.173948,0.973785,0.146580, + 0.173948,0.973785,0.146580,0.173948,0.973785,0.146580,-0.950805,0.204966,-0.232292,-0.950805,0.204966,-0.232292, + -0.950805,0.204966,-0.232292,-0.950805,0.204966,-0.232292,0.250350,0.042405,-0.967226,0.250350,0.042405,-0.967226, + 0.250350,0.042405,-0.967226,0.250350,0.042405,-0.967226,-0.949624,0.205275,-0.236804,-0.949624,0.205275,-0.236804, + -0.949624,0.205275,-0.236804,-0.949624,0.205275,-0.236804,-0.949628,0.205272,-0.236790,-0.949628,0.205272,-0.236790, + -0.949628,0.205272,-0.236790,-0.949628,0.205272,-0.236790,-0.254842,-0.066043,0.964725,-0.254842,-0.066043,0.964725, + -0.254842,-0.066043,0.964725,-0.254842,-0.066043,0.964725,-0.950803,0.204970,-0.232294,-0.950803,0.204970,-0.232294, + -0.950803,0.204970,-0.232294,-0.950803,0.204970,-0.232294,-0.198320,-0.978698,-0.053101,-0.198320,-0.978698,-0.053101, + -0.198320,-0.978698,-0.053101,-0.198320,-0.978698,-0.053101,0.197370,0.978679,0.056862,0.197370,0.978679,0.056862, + 0.197370,0.978679,0.056862,0.197370,0.978679,0.056862,-0.949624,0.205279,-0.236799,-0.949624,0.205279,-0.236799, + -0.949624,0.205279,-0.236799,-0.949624,0.205279,-0.236799,-0.182394,-0.976473,-0.115033,-0.182394,-0.976473,-0.115033, + -0.182394,-0.976473,-0.115033,-0.182394,-0.976473,-0.115033,-0.949625,0.205277,-0.236800,-0.949625,0.205277,-0.236800, + -0.949625,0.205277,-0.236800,-0.949625,0.205277,-0.236800,-0.189015,-0.977870,-0.089682,-0.189015,-0.977870,-0.089682, + -0.189015,-0.977870,-0.089682,-0.189015,-0.977870,-0.089682,0.949626,-0.205275,0.236797,0.949626,-0.205275,0.236797, + 0.949626,-0.205275,0.236797,0.949626,-0.205275,0.236797,0.254213,0.062754,-0.965110,0.254213,0.062754,-0.965110, + 0.254213,0.062754,-0.965110,0.254213,0.062754,-0.965110,-0.255475,-0.069524,0.964313,-0.255475,-0.069524,0.964313, + -0.255475,-0.069524,0.964313,-0.255475,-0.069524,0.964313,0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800, + 0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800,0.949625,-0.205275,0.236801,0.949625,-0.205275,0.236801, + 0.949625,-0.205275,0.236801,0.949625,-0.205275,0.236801,0.949625,-0.205276,0.236801,0.949625,-0.205276,0.236801, + 0.949625,-0.205276,0.236801,0.949625,-0.205276,0.236801,0.175691,0.974422,0.140122,0.175691,0.974422,0.140122, + 0.175691,0.974422,0.140122,0.175691,0.974422,0.140122,0.949625,-0.205274,0.236801,0.949625,-0.205274,0.236801, + 0.949625,-0.205274,0.236801,0.949625,-0.205274,0.236801,0.175650,0.974406,0.140289,0.175650,0.974406,0.140289, + 0.175650,0.974406,0.140289,0.175650,0.974406,0.140289,0.949629,-0.205256,0.236802,0.949629,-0.205256,0.236802, + 0.949629,-0.205256,0.236802,0.949629,-0.205256,0.236802,-0.175709,-0.974417,-0.140136,-0.175709,-0.974417,-0.140136, + -0.175709,-0.974417,-0.140136,-0.175709,-0.974417,-0.140136,-0.254850,-0.066051,0.964722,-0.254850,-0.066051,0.964722, + -0.254850,-0.066051,0.964722,-0.254850,-0.066051,0.964722,0.949630,-0.205270,0.236787,0.949630,-0.205270,0.236787, + 0.949630,-0.205270,0.236787,0.949630,-0.205270,0.236787,0.254856,0.066046,-0.964721,0.254856,0.066046,-0.964721, + 0.254856,0.066046,-0.964721,0.254856,0.066046,-0.964721,-0.180255,-0.975886,-0.123103,-0.180255,-0.975886,-0.123103, + -0.180255,-0.975886,-0.123103,-0.180255,-0.975886,-0.123103,0.179513,0.975667,0.125894,0.179513,0.975667,0.125894, + 0.179513,0.975667,0.125894,0.179513,0.975667,0.125894,0.948932,-0.204847,0.239930,0.948932,-0.204847,0.239930, + 0.948932,-0.204847,0.239930,0.948932,-0.204847,0.239930,-0.188347,-0.977759,-0.092268,-0.188347,-0.977759,-0.092268, + -0.188347,-0.977759,-0.092268,-0.188347,-0.977759,-0.092268,0.186831,0.977479,0.098126,0.186831,0.977479,0.098126, + 0.186831,0.977479,0.098126,0.186831,0.977479,0.098126,0.948698,-0.206092,0.239789,0.948698,-0.206092,0.239789, + 0.948698,-0.206092,0.239789,0.948698,-0.206092,0.239789,0.254850,0.066044,-0.964723,0.254850,0.066044,-0.964723, + 0.254850,0.066044,-0.964723,0.254850,0.066044,-0.964723,0.949625,-0.205276,0.236798,0.949625,-0.205276,0.236798, + 0.949625,-0.205276,0.236798,0.949625,-0.205276,0.236798,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725, + -0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,0.254844,0.066043,-0.964724,0.254844,0.066043,-0.964724, + 0.254844,0.066043,-0.964724,0.254844,0.066043,-0.964724,0.949626,-0.205274,0.236796,0.949626,-0.205274,0.236796, + 0.949626,-0.205274,0.236796,0.949626,-0.205274,0.236796,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,0.254829,0.066043,-0.964728,0.254829,0.066043,-0.964728, + 0.254829,0.066043,-0.964728,0.254829,0.066043,-0.964728,0.949627,-0.205273,0.236794,0.949627,-0.205273,0.236794, + 0.949627,-0.205273,0.236794,0.949627,-0.205273,0.236794,-0.254847,-0.066048,0.964723,-0.254847,-0.066048,0.964723, + -0.254847,-0.066048,0.964723,-0.254847,-0.066048,0.964723,-0.185499,-0.977203,-0.103265,-0.185499,-0.977203,-0.103265, + -0.185499,-0.977203,-0.103265,-0.185499,-0.977203,-0.103265,0.949621,-0.205294,0.236799,0.949621,-0.205294,0.236799, + 0.949621,-0.205294,0.236799,0.949621,-0.205294,0.236799,0.182400,0.976472,0.115030,0.182400,0.976472,0.115030, + 0.182400,0.976472,0.115030,0.182400,0.976472,0.115030,0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800, + 0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800,-0.169940,-0.972172,-0.161248,-0.169940,-0.972172,-0.161248, + -0.169940,-0.972172,-0.161248,-0.169940,-0.972172,-0.161248,0.167638,0.971151,0.169595,0.167638,0.971151,0.169595, + 0.167638,0.971151,0.169595,0.167638,0.971151,0.169595,0.948403,-0.205578,0.241389,0.948403,-0.205578,0.241389, + 0.948403,-0.205578,0.241389,0.948403,-0.205578,0.241389,-0.187937,-0.977686,-0.093862,-0.187937,-0.977686,-0.093862, + -0.187937,-0.977686,-0.093862,-0.187937,-0.977686,-0.093862,0.187074,0.977527,0.097180,0.187074,0.977527,0.097180, + 0.187074,0.977527,0.097180,0.187074,0.977527,0.097180,0.948377,-0.205592,0.241480,0.948377,-0.205592,0.241480, + 0.948377,-0.205592,0.241480,0.948377,-0.205592,0.241480,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.949628,-0.205270,0.236792,0.949628,-0.205270,0.236792, + 0.949628,-0.205270,0.236792,0.949628,-0.205270,0.236792,-0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725, + -0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,0.258356,0.085099,-0.962294,0.258356,0.085099,-0.962294, + 0.258356,0.085099,-0.962294,0.258356,0.085099,-0.962294,0.949627,-0.205273,0.236794,0.949627,-0.205273,0.236794, + 0.949627,-0.205273,0.236794,0.949627,-0.205273,0.236794,-0.259867,-0.093467,0.961110,-0.259867,-0.093467,0.961110, + -0.259867,-0.093467,0.961110,-0.259867,-0.093467,0.961110,-0.110416,-0.992786,-0.046726,-0.110416,-0.992786,-0.046726, + -0.110416,-0.992786,-0.046726,-0.110416,-0.992786,-0.046726,-0.110416,-0.992786,-0.046726,-0.237162,-0.968609,-0.074500, + -0.237162,-0.968609,-0.074500,-0.237162,-0.968609,-0.074500,-0.237162,-0.968609,-0.074500,0.306933,-0.947303,0.091700, + 0.306933,-0.947303,0.091700,0.306933,-0.947303,0.091700,0.306933,-0.947303,0.091700,-0.175260,-0.974267,-0.141729, + -0.175260,-0.974267,-0.141729,-0.175260,-0.974267,-0.141729,-0.175260,-0.974267,-0.141729,0.173920,0.973776,0.146672, + 0.173920,0.973776,0.146672,0.173920,0.973776,0.146672,0.173920,0.973776,0.146672,0.948375,-0.205603,0.241480, + 0.948375,-0.205603,0.241480,0.948375,-0.205603,0.241480,0.948375,-0.205603,0.241480,-0.198317,-0.978698,-0.053101, + -0.198317,-0.978698,-0.053101,-0.198317,-0.978698,-0.053101,-0.198317,-0.978698,-0.053101,0.195881,0.978615,0.062801, + 0.195881,0.978615,0.062801,0.195881,0.978615,0.062801,0.195881,0.978615,0.062801,0.948378,-0.205588,0.241480, + 0.948378,-0.205588,0.241480,0.948378,-0.205588,0.241480,0.948378,-0.205588,0.241480,0.254839,0.066045,-0.964725, + 0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.949625,-0.205276,0.236801, + 0.949625,-0.205276,0.236801,0.949625,-0.205276,0.236801,0.949625,-0.205276,0.236801,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.254847,0.066046,-0.964723, + 0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723,0.949626,-0.205275,0.236795, + 0.949626,-0.205275,0.236795,0.949626,-0.205275,0.236795,0.949626,-0.205275,0.236795,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,0.182396,0.976473,0.115033, + 0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.949626,-0.205272,0.236798,0.949626,-0.205272,0.236798, + 0.949626,-0.205272,0.236798,0.949626,-0.205272,0.236798,0.254845,0.066042,-0.964724,0.254845,0.066042,-0.964724, + 0.254845,0.066042,-0.964724,-0.254829,-0.066046,0.964728,-0.254829,-0.066046,0.964728,-0.254829,-0.066046,0.964728, + 0.949630,-0.205248,0.236802,0.949630,-0.205248,0.236802,0.949630,-0.205248,0.236802,0.949630,-0.205248,0.236802, + -0.152616,-0.975853,-0.156268,-0.152616,-0.975853,-0.156268,-0.152616,-0.975853,-0.156268,-0.152616,-0.975853,-0.156268, + 0.956576,-0.149166,-0.250423,0.956576,-0.149166,-0.250423,0.956576,-0.149166,-0.250423,0.956576,-0.149166,-0.250423, + -0.954675,0.147884,0.258313,-0.954675,0.147884,0.258313,-0.954675,0.147884,0.258313,-0.954675,0.147884,0.258313, + -0.957424,0.203334,0.204927,-0.957424,0.203334,0.204927,-0.957424,0.203334,0.204927,-0.957424,0.203334,0.204927, + 0.957447,-0.203355,-0.204797,0.957447,-0.203355,-0.204797,0.957447,-0.203355,-0.204797,0.957447,-0.203355,-0.204797, + -0.263791,-0.962557,-0.062438,-0.263791,-0.962557,-0.062438,-0.263791,-0.962557,-0.062438,-0.263791,-0.962557,-0.062438, + -0.935596,0.205988,-0.286758,-0.935596,0.205988,-0.286758,-0.935596,0.205988,-0.286758,-0.935596,0.205988,-0.286758, + 0.951384,-0.204994,0.229883,0.951384,-0.204994,0.229883,0.951384,-0.204994,0.229883,0.951384,-0.204994,0.229883, + -0.209021,-0.044363,0.976904,-0.209021,-0.044363,0.976904,-0.209021,-0.044363,0.976904,-0.209021,-0.044363,0.976904, + 0.180369,0.975920,0.122667,0.180369,0.975920,0.122667,0.180369,0.975920,0.122667,-0.935890,0.211413,-0.281807, + -0.935890,0.211413,-0.281807,-0.935890,0.211413,-0.281807,-0.935890,0.211413,-0.281807,0.244807,0.020041,-0.969365, + 0.244807,0.020041,-0.969365,0.244807,0.020041,-0.969365,0.244807,0.020041,-0.969365,0.296898,0.062657,-0.952851, + 0.296898,0.062657,-0.952851,0.296898,0.062657,-0.952851,0.296898,0.062657,-0.952851,-0.255908,-0.071774,0.964033, + -0.255908,-0.071774,0.964033,-0.255908,-0.071774,0.964033,-0.255908,-0.071774,0.964033,0.955473,-0.206280,0.210996, + 0.955473,-0.206280,0.210996,0.955473,-0.206280,0.210996,0.955473,-0.206280,0.210996,0.180153,0.975947,0.122769, + 0.180153,0.975947,0.122769,0.180153,0.975947,0.122769,0.188134,0.976833,0.101999,0.188134,0.976833,0.101999, + 0.188134,0.976833,0.101999,0.188134,0.976833,0.101999,0.950641,-0.204990,0.232940,0.950641,-0.204990,0.232940, + 0.950641,-0.204990,0.232940,0.950641,-0.204990,0.232940,-0.954012,0.202420,-0.221103,-0.954012,0.202420,-0.221103, + -0.954012,0.202420,-0.221103,-0.954012,0.202420,-0.221103,0.335523,0.025301,-0.941692,0.335523,0.025301,-0.941692, + 0.335523,0.025301,-0.941692,0.335523,0.025301,-0.941692,-0.215280,-0.051412,0.975198,-0.215280,-0.051412,0.975198, + -0.215280,-0.051412,0.975198,-0.215280,-0.051412,0.975198,0.130509,0.987766,0.085351,0.130509,0.987766,0.085351, + 0.130509,0.987766,0.085351,0.130509,0.987766,0.085351,0.173925,0.973774,0.146675,0.173925,0.973774,0.146675, + 0.173925,0.973774,0.146675,0.173925,0.973774,0.146675,-0.950803,0.204971,-0.232294,-0.950803,0.204971,-0.232294, + -0.950803,0.204971,-0.232294,-0.950803,0.204971,-0.232294,0.254848,0.066045,-0.964723,0.254848,0.066045,-0.964723, + 0.254848,0.066045,-0.964723,0.254848,0.066045,-0.964723,-0.949625,0.205275,-0.236801,-0.949625,0.205275,-0.236801, + -0.949625,0.205275,-0.236801,-0.949625,0.205275,-0.236801,-0.949624,0.205275,-0.236805,-0.949624,0.205275,-0.236805, + -0.949624,0.205275,-0.236805,-0.949624,0.205275,-0.236805,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,0.182392,0.976474,0.115031,0.182392,0.976474,0.115031, + 0.182392,0.976474,0.115031,0.182392,0.976474,0.115031,-0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800, + -0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800,-0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031, + -0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031,-0.949625,0.205275,-0.236800,-0.949625,0.205275,-0.236800, + -0.949625,0.205275,-0.236800,-0.949625,0.205275,-0.236800,0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723, + 0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723,0.191180,0.978185,0.081261,0.191180,0.978185,0.081261, + 0.191180,0.978185,0.081261,0.191180,0.978185,0.081261,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.175751,-0.974442,-0.139911,-0.175751,-0.974442,-0.139911, + -0.175751,-0.974442,-0.139911,-0.175751,-0.974442,-0.139911,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.194981,0.978559,0.066367,0.194981,0.978559,0.066367, + 0.194981,0.978559,0.066367,0.194981,0.978559,0.066367,-0.251282,-0.047231,0.966761,-0.251282,-0.047231,0.966761, + -0.251282,-0.047231,0.966761,-0.251282,-0.047231,0.966761,-0.175772,-0.974448,-0.139840,-0.175772,-0.974448,-0.139840, + -0.175772,-0.974448,-0.139840,-0.175772,-0.974448,-0.139840,-0.177235,-0.974946,-0.134415,-0.177235,-0.974946,-0.134415, + -0.177235,-0.974946,-0.134415,-0.177235,-0.974946,-0.134415,0.176860,0.974826,0.135774,0.176860,0.974826,0.135774, + 0.176860,0.974826,0.135774,0.176860,0.974826,0.135774,0.949336,-0.204613,0.238526,0.949336,-0.204613,0.238526, + 0.949336,-0.204613,0.238526,0.949336,-0.204613,0.238526,-0.186031,-0.977322,-0.101168,-0.186031,-0.977322,-0.101168, + -0.186031,-0.977322,-0.101168,-0.186031,-0.977322,-0.101168,0.185795,0.977271,0.102082,0.185795,0.977271,0.102082, + 0.185795,0.977271,0.102082,0.185795,0.977271,0.102082,0.949048,-0.206165,0.238337,0.949048,-0.206165,0.238337, + 0.949048,-0.206165,0.238337,0.949048,-0.206165,0.238337,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.949626,-0.205274,0.236798,0.949626,-0.205274,0.236798, + 0.949626,-0.205274,0.236798,0.949626,-0.205274,0.236798,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,0.166650,0.970697,0.173136,0.166650,0.970697,0.173136, + 0.166650,0.970697,0.173136,0.166650,0.970697,0.173136,-0.949625,0.205274,-0.236801,-0.949625,0.205274,-0.236801, + -0.949625,0.205274,-0.236801,-0.949625,0.205274,-0.236801,0.255452,0.069308,-0.964334,0.255452,0.069308,-0.964334, + 0.255452,0.069308,-0.964334,0.255452,0.069308,-0.964334,-0.254176,-0.062472,0.965138,-0.254176,-0.062472,0.965138, + -0.254176,-0.062472,0.965138,-0.254176,-0.062472,0.965138,-0.949625,0.205275,-0.236800,-0.949625,0.205275,-0.236800, + -0.949625,0.205275,-0.236800,-0.949625,0.205275,-0.236800,-0.949626,0.205272,-0.236800,-0.949626,0.205272,-0.236800, + -0.949626,0.205272,-0.236800,-0.949626,0.205272,-0.236800,-0.949627,0.205266,-0.236800,-0.949627,0.205266,-0.236800, + -0.949627,0.205266,-0.236800,-0.949627,0.205266,-0.236800,-0.188106,-0.977712,-0.093252,-0.188106,-0.977712,-0.093252, + -0.188106,-0.977712,-0.093252,-0.188106,-0.977712,-0.093252,-0.949626,0.205271,-0.236801,-0.949626,0.205271,-0.236801, + -0.949626,0.205271,-0.236801,-0.949626,0.205271,-0.236801,-0.182394,-0.976473,-0.115033,-0.182394,-0.976473,-0.115033, + -0.182394,-0.976473,-0.115033,-0.182394,-0.976473,-0.115033,-0.949624,0.205281,-0.236799,-0.949624,0.205281,-0.236799, + -0.949624,0.205281,-0.236799,-0.949624,0.205281,-0.236799,0.182392,0.976474,0.115031,0.182392,0.976474,0.115031, + 0.182392,0.976474,0.115031,0.182392,0.976474,0.115031,-0.258759,-0.087334,0.961986,-0.258759,-0.087334,0.961986, + -0.258759,-0.087334,0.961986,-0.258759,-0.087334,0.961986,-0.949628,0.205274,-0.236791,-0.949628,0.205274,-0.236791, + -0.949628,0.205274,-0.236791,-0.949628,0.205274,-0.236791,0.250843,0.044858,-0.966988,0.250843,0.044858,-0.966988, + 0.250843,0.044858,-0.966988,0.250843,0.044858,-0.966988,0.187582,0.977621,0.095231,0.187582,0.977621,0.095231, + 0.187582,0.977621,0.095231,0.187582,0.977621,0.095231,-0.187356,-0.977581,-0.096087,-0.187356,-0.977581,-0.096087, + -0.187356,-0.977581,-0.096087,-0.187356,-0.977581,-0.096087,-0.950712,0.205071,-0.232578,-0.950712,0.205071,-0.232578, + -0.950712,0.205071,-0.232578,-0.950712,0.205071,-0.232578,0.178451,0.975341,0.129863,0.178451,0.975341,0.129863, + 0.178451,0.975341,0.129863,0.178451,0.975341,0.129863,-0.181380,-0.976203,-0.118865,-0.181380,-0.976203,-0.118865, + -0.181380,-0.976203,-0.118865,-0.181380,-0.976203,-0.118865,-0.950710,0.205082,-0.232574,-0.950710,0.205082,-0.232574, + -0.950710,0.205082,-0.232574,-0.950710,0.205082,-0.232574,0.250665,0.043996,-0.967074,0.250665,0.043996,-0.967074, + 0.250665,0.043996,-0.967074,0.250665,0.043996,-0.967074,-0.949626,0.205274,-0.236798,-0.949626,0.205274,-0.236798, + -0.949626,0.205274,-0.236798,-0.949626,0.205274,-0.236798,-0.250654,-0.043997,0.967076,-0.250654,-0.043997,0.967076, + -0.250654,-0.043997,0.967076,-0.250654,-0.043997,0.967076,0.250454,0.042903,-0.967177,0.250454,0.042903,-0.967177, + 0.250454,0.042903,-0.967177,0.250454,0.042903,-0.967177,-0.949626,0.205273,-0.236799,-0.949626,0.205273,-0.236799, + -0.949626,0.205273,-0.236799,-0.949626,0.205273,-0.236799,-0.250363,-0.042435,0.967222,-0.250363,-0.042435,0.967222, + -0.250363,-0.042435,0.967222,-0.250363,-0.042435,0.967222,0.250671,0.043994,-0.967072,0.250671,0.043994,-0.967072, + 0.250671,0.043994,-0.967072,0.250671,0.043994,-0.967072,-0.949625,0.205270,-0.236804,-0.949625,0.205270,-0.236804, + -0.949625,0.205270,-0.236804,-0.949625,0.205270,-0.236804,-0.250639,-0.044003,0.967080,-0.250639,-0.044003,0.967080, + -0.250639,-0.044003,0.967080,-0.250639,-0.044003,0.967080,0.183114,0.976658,0.112283,0.183114,0.976658,0.112283, + 0.183114,0.976658,0.112283,0.183114,0.976658,0.112283,-0.949628,0.205262,-0.236801,-0.949628,0.205262,-0.236801, + -0.949628,0.205262,-0.236801,-0.949628,0.205262,-0.236801,-0.183092,-0.976648,-0.112412,-0.183092,-0.976648,-0.112412, + -0.183092,-0.976648,-0.112412,-0.183092,-0.976648,-0.112412,-0.949626,0.205272,-0.236801,-0.949626,0.205272,-0.236801, + -0.949626,0.205272,-0.236801,-0.949626,0.205272,-0.236801,0.185036,0.977109,0.104974,0.185036,0.977109,0.104974, + 0.185036,0.977109,0.104974,0.185036,0.977109,0.104974,-0.185239,-0.977153,-0.104209,-0.185239,-0.977153,-0.104209, + -0.185239,-0.977153,-0.104209,-0.185239,-0.977153,-0.104209,-0.950243,0.204322,-0.235142,-0.950243,0.204322,-0.235142, + -0.950243,0.204322,-0.235142,-0.950243,0.204322,-0.235142,0.176633,0.974748,0.136626,0.176633,0.974748,0.136626, + 0.176633,0.974748,0.136626,0.176633,0.974748,0.136626,-0.177050,-0.974885,-0.135102,-0.177050,-0.974885,-0.135102, + -0.177050,-0.974885,-0.135102,-0.177050,-0.974885,-0.135102,-0.949934,0.205989,-0.234935,-0.949934,0.205989,-0.234935, + -0.949934,0.205989,-0.234935,-0.949934,0.205989,-0.234935,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725, + 0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,-0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800, + -0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800,-0.182396,-0.976473,-0.115029,-0.182396,-0.976473,-0.115029, + -0.182396,-0.976473,-0.115029,-0.182396,-0.976473,-0.115029,-0.949624,0.205279,-0.236800,-0.949624,0.205279,-0.236800, + -0.949624,0.205279,-0.236800,-0.949624,0.205279,-0.236800,0.182394,0.976474,0.115030,0.182394,0.976474,0.115030, + 0.182394,0.976474,0.115030,0.182394,0.976474,0.115030,0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800, + 0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,-0.254846,-0.066046,0.964723,-0.254846,-0.066046,0.964723, + -0.254846,-0.066046,0.964723,-0.254846,-0.066046,0.964723,-0.219419,-0.975014,0.034701,-0.219419,-0.975014,0.034701, + -0.219419,-0.975014,0.034701,-0.219419,-0.975014,0.034701,-0.949625,0.205275,-0.236802,-0.949625,0.205275,-0.236802, + -0.949625,0.205275,-0.236802,-0.949625,0.205275,-0.236802,0.182392,0.976474,0.115031,0.182392,0.976474,0.115031, + 0.182392,0.976474,0.115031,0.182392,0.976474,0.115031,0.949624,-0.205278,0.236800,0.949624,-0.205278,0.236800, + 0.949624,-0.205278,0.236800,0.949624,-0.205278,0.236800,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725, + -0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.182395,-0.976473,-0.115034,-0.182395,-0.976473,-0.115034, + -0.182395,-0.976473,-0.115034,-0.182395,-0.976473,-0.115034,-0.949624,0.205279,-0.236800,-0.949624,0.205279,-0.236800, + -0.949624,0.205279,-0.236800,-0.949624,0.205279,-0.236800,0.191434,0.978214,0.080309,0.191434,0.978214,0.080309, + 0.191434,0.978214,0.080309,0.191434,0.978214,0.080309,0.949624,-0.205278,0.236803,0.949624,-0.205278,0.236803, + 0.949624,-0.205278,0.236803,0.949624,-0.205278,0.236803,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723, + 0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723,-0.254842,-0.066043,0.964725,-0.254842,-0.066043,0.964725, + -0.254842,-0.066043,0.964725,-0.254842,-0.066043,0.964725,-0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030, + -0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030,-0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800, + -0.949625,0.205274,-0.236800,-0.949625,0.205274,-0.236800,0.222800,0.973607,-0.049491,0.222800,0.973607,-0.049491, + 0.222800,0.973607,-0.049491,0.222800,0.973607,-0.049491,0.949625,-0.205280,0.236796,0.949625,-0.205280,0.236796, + 0.949625,-0.205280,0.236796,0.949625,-0.205280,0.236796,0.274083,0.177612,-0.945163,0.274083,0.177612,-0.945163, + 0.274083,0.177612,-0.945163,0.274083,0.177612,-0.945163,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031, + -0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031,-0.949626,0.205275,-0.236797,-0.949626,0.205275,-0.236797, + -0.949626,0.205275,-0.236797,-0.949626,0.205275,-0.236797,-0.182397,-0.976473,-0.115032,-0.182397,-0.976473,-0.115032, + -0.182397,-0.976473,-0.115032,-0.182397,-0.976473,-0.115032,0.949624,-0.205276,0.236803,0.949624,-0.205276,0.236803, + 0.949624,-0.205276,0.236803,0.949624,-0.205276,0.236803,0.254840,0.066043,-0.964725,0.254840,0.066043,-0.964725, + 0.254840,0.066043,-0.964725,0.254840,0.066043,-0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.949625,0.205276,-0.236801,-0.949625,0.205276,-0.236801, + -0.949625,0.205276,-0.236801,-0.949625,0.205276,-0.236801,0.949626,-0.205270,0.236800,0.949626,-0.205270,0.236800, + 0.949626,-0.205270,0.236800,0.949626,-0.205270,0.236800,0.281003,0.223217,-0.933387,0.281003,0.223217,-0.933387, + 0.281003,0.223217,-0.933387,0.281003,0.223217,-0.933387,-0.254845,-0.066050,0.964723,-0.254845,-0.066050,0.964723, + -0.254845,-0.066050,0.964723,-0.254845,-0.066050,0.964723,-0.949623,0.205280,-0.236803,-0.949623,0.205280,-0.236803, + -0.949623,0.205280,-0.236803,-0.949623,0.205280,-0.236803,0.212947,0.977039,-0.006986,0.212947,0.977039,-0.006986, + 0.212947,0.977039,-0.006986,0.212947,0.977039,-0.006986,-0.182400,-0.976472,-0.115032,-0.182400,-0.976472,-0.115032, + -0.182400,-0.976472,-0.115032,-0.182400,-0.976472,-0.115032,0.254844,0.066044,-0.964724,0.254844,0.066044,-0.964724, + 0.254844,0.066044,-0.964724,0.254844,0.066044,-0.964724,-0.254851,-0.066046,0.964722,-0.254851,-0.066046,0.964722, + -0.254851,-0.066046,0.964722,-0.254851,-0.066046,0.964722,-0.949624,0.205282,-0.236799,-0.949624,0.205282,-0.236799, + -0.949624,0.205282,-0.236799,-0.949624,0.205282,-0.236799,0.196953,0.978663,0.058556,0.196953,0.978663,0.058556, + 0.196953,0.978663,0.058556,0.196953,0.978663,0.058556,-0.167217,-0.970958,-0.171113,-0.167217,-0.970958,-0.171113, + -0.167217,-0.970958,-0.171113,-0.167217,-0.970958,-0.171113,0.254836,0.066040,-0.964727,0.254836,0.066040,-0.964727, + 0.254836,0.066040,-0.964727,0.254836,0.066040,-0.964727,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726, + -0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,-0.957113,0.203120,-0.206586,-0.957113,0.203120,-0.206586, + -0.957113,0.203120,-0.206586,-0.957113,0.203120,-0.206586,0.173180,0.973493,0.149403,0.173180,0.973493,0.149403, + 0.173180,0.973493,0.149403,0.173180,0.973493,0.149403,-0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031, + -0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031,0.254838,0.066047,-0.964726,0.254838,0.066047,-0.964726, + 0.254838,0.066047,-0.964726,0.254838,0.066047,-0.964726,-0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724, + -0.254846,-0.066044,0.964724,-0.254846,-0.066044,0.964724,0.949625,-0.205274,0.236802,0.949625,-0.205274,0.236802, + 0.949625,-0.205274,0.236802,0.949625,-0.205274,0.236802,-0.182394,-0.976474,-0.115029,-0.182394,-0.976474,-0.115029, + -0.182394,-0.976474,-0.115029,-0.182394,-0.976474,-0.115029,0.207562,0.978099,0.015514,0.207562,0.978099,0.015514, + 0.207562,0.978099,0.015514,0.207562,0.978099,0.015514,0.254850,0.066041,-0.964723,0.254850,0.066041,-0.964723, + 0.254850,0.066041,-0.964723,0.254850,0.066041,-0.964723,-0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723, + -0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723,0.949624,-0.205278,0.236801,0.949624,-0.205278,0.236801, + 0.949624,-0.205278,0.236801,0.949624,-0.205278,0.236801,-0.155467,-0.964650,-0.212790,-0.155467,-0.964650,-0.212790, + -0.155467,-0.964650,-0.212790,-0.155467,-0.964650,-0.212790,0.182396,0.976473,0.115033,0.182396,0.976473,0.115033, + 0.182396,0.976473,0.115033,0.182396,0.976473,0.115033,0.238510,-0.016758,-0.970995,0.238510,-0.016758,-0.970995, + 0.238510,-0.016758,-0.970995,0.238510,-0.016758,-0.970995,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726, + -0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726,0.949625,-0.205276,0.236799,0.949625,-0.205276,0.236799, + 0.949625,-0.205276,0.236799,0.949625,-0.205276,0.236799,-0.210414,-0.977606,-0.003660,-0.210414,-0.977606,-0.003660, + -0.210414,-0.977606,-0.003660,-0.210414,-0.977606,-0.003660,0.212298,0.977196,-0.004264,0.212298,0.977196,-0.004264, + 0.212298,0.977196,-0.004264,0.212298,0.977196,-0.004264,0.254826,0.066045,-0.964729,0.254826,0.066045,-0.964729, + 0.254826,0.066045,-0.964729,0.254826,0.066045,-0.964729,-0.262618,-0.108973,0.958727,-0.262618,-0.108973,0.958727, + -0.262618,-0.108973,0.958727,-0.262618,-0.108973,0.958727,0.949625,-0.205279,0.236799,0.949625,-0.205279,0.236799, + 0.949625,-0.205279,0.236799,0.949625,-0.205279,0.236799,-0.182398,-0.976473,-0.115030,-0.182398,-0.976473,-0.115030, + -0.182398,-0.976473,-0.115030,-0.182398,-0.976473,-0.115030,0.182395,0.976473,0.115032,0.182395,0.976473,0.115032, + 0.182395,0.976473,0.115032,0.182395,0.976473,0.115032,0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726, + 0.254839,0.066043,-0.964726,0.254839,0.066043,-0.964726,-0.254846,-0.066043,0.964724,-0.254846,-0.066043,0.964724, + -0.254846,-0.066043,0.964724,-0.254846,-0.066043,0.964724,0.949625,-0.205275,0.236801,0.949625,-0.205275,0.236801, + 0.949625,-0.205275,0.236801,0.949625,-0.205275,0.236801,-0.182397,-0.976473,-0.115026,-0.182397,-0.976473,-0.115026, + -0.182397,-0.976473,-0.115026,-0.182397,-0.976473,-0.115026,0.136094,0.950769,0.278419,0.136094,0.950769,0.278419, + 0.136094,0.950769,0.278419,0.136094,0.950769,0.278419,0.254851,0.066044,-0.964723,0.254851,0.066044,-0.964723, + 0.254851,0.066044,-0.964723,0.254851,0.066044,-0.964723,-0.254849,-0.066048,0.964723,-0.254849,-0.066048,0.964723, + -0.254849,-0.066048,0.964723,-0.254849,-0.066048,0.964723,0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800, + 0.949625,-0.205276,0.236800,0.949625,-0.205276,0.236800,-0.182396,-0.976473,-0.115033,-0.182396,-0.976473,-0.115033, + -0.182396,-0.976473,-0.115033,-0.182396,-0.976473,-0.115033,0.182395,0.976473,0.115029,0.182395,0.976473,0.115029, + 0.182395,0.976473,0.115029,0.182395,0.976473,0.115029,0.254835,0.066045,-0.964727,0.254835,0.066045,-0.964727, + 0.254835,0.066045,-0.964727,0.254835,0.066045,-0.964727,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,0.182394,0.976473,0.115033,0.182394,0.976473,0.115033, + 0.182394,0.976473,0.115033,0.182394,0.976473,0.115033,0.982990,-0.179068,-0.040807,0.982990,-0.179068,-0.040807, + 0.982990,-0.179068,-0.040807,0.982990,-0.179068,-0.040807,-0.933261,0.208998,-0.292136,-0.933261,0.208998,-0.292136, + -0.933261,0.208998,-0.292136,-0.933261,0.208998,-0.292136,0.254840,0.066023,-0.964727,0.254840,0.066023,-0.964727, + 0.254840,0.066023,-0.964727,0.254840,0.066023,-0.964727,-0.254846,-0.066040,0.964724,-0.254846,-0.066040,0.964724, + -0.254846,-0.066040,0.964724,-0.254846,-0.066040,0.964724,0.182394,0.976473,0.115033,0.182394,0.976473,0.115033, + 0.182394,0.976473,0.115033,0.182394,0.976473,0.115033,0.949621,-0.205294,0.236801,0.949621,-0.205294,0.236801, + 0.949621,-0.205294,0.236801,0.949621,-0.205294,0.236801,-0.949622,0.205291,-0.236800,-0.949622,0.205291,-0.236800, + -0.949622,0.205291,-0.236800,-0.949622,0.205291,-0.236800,0.254840,0.066041,-0.964725,0.254840,0.066041,-0.964725, + 0.254840,0.066041,-0.964725,0.254840,0.066041,-0.964725,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724, + -0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.305051,-0.135123,0.942701,-0.305051,-0.135123,0.942701, + -0.305051,-0.135123,0.942701,-0.305051,-0.135123,0.942701,-0.838337,0.507728,-0.198504,-0.838337,0.507728,-0.198504, + -0.838337,0.507728,-0.198504,-0.838337,0.507728,-0.198504,0.838337,-0.507727,0.198503,0.838337,-0.507727,0.198503, + 0.838337,-0.507727,0.198503,0.838337,-0.507727,0.198503,-0.451814,-0.850855,-0.268158,-0.451814,-0.850855,-0.268158, + -0.451814,-0.850855,-0.268158,-0.451814,-0.850855,-0.268158,0.451816,0.850852,0.268167,0.451816,0.850852,0.268167, + 0.451816,0.850852,0.268167,0.451816,0.850852,0.268167,-0.182393,-0.976474,-0.115030,-0.182393,-0.976474,-0.115030, + -0.182393,-0.976474,-0.115030,-0.182393,-0.976474,-0.115030,-0.933309,0.208745,-0.292165,-0.933309,0.208745,-0.292165, + -0.933309,0.208745,-0.292165,-0.933309,0.208745,-0.292165,0.949623,-0.205281,0.236803,0.949623,-0.205281,0.236803, + 0.949623,-0.205281,0.236803,0.949623,-0.205281,0.236803,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.949626,0.205270,-0.236802,-0.949626,0.205270,-0.236802, + -0.949626,0.205270,-0.236802,-0.949626,0.205270,-0.236802,0.182384,0.976475,0.115030,0.182384,0.976475,0.115030, + 0.182384,0.976475,0.115030,0.182384,0.976475,0.115030,-0.182389,-0.976475,-0.115028,-0.182389,-0.976475,-0.115028, + -0.182389,-0.976475,-0.115028,-0.182389,-0.976475,-0.115028,0.254842,0.066048,-0.964724,0.254842,0.066048,-0.964724, + 0.254842,0.066048,-0.964724,0.254842,0.066048,-0.964724,-0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727, + -0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727,0.314550,-0.948125,0.046008,0.314550,-0.948125,0.046008, + 0.314550,-0.948125,0.046008,0.314550,-0.948125,0.046008,-0.159848,-0.015605,0.987018,-0.159848,-0.015605,0.987018, + -0.159848,-0.015605,0.987018,-0.159848,-0.015605,0.987018,-0.503478,0.862315,-0.054057,-0.503478,0.862315,-0.054057, + -0.503478,0.862315,-0.054057,-0.503478,0.862315,-0.054057,0.883792,0.466523,0.035612,0.883792,0.466523,0.035612, + 0.883792,0.466523,0.035612,0.883792,0.466523,0.035612,-0.883335,-0.467393,-0.035554,-0.883335,-0.467393,-0.035554, + -0.883335,-0.467393,-0.035554,-0.883335,-0.467393,-0.035554,0.675776,-0.737104,-0.002091,0.675776,-0.737104,-0.002091, + 0.675776,-0.737104,-0.002091,0.675776,-0.737104,-0.002091,-0.254886,-0.144235,0.956153,-0.254886,-0.144235,0.956153, + -0.254886,-0.144235,0.956153,-0.254886,-0.144235,0.956153,-0.181959,0.983217,0.013248,-0.181959,0.983217,0.013248, + -0.181959,0.983217,0.013248,-0.181959,0.983217,0.013248,0.866103,0.499437,0.020688,0.866103,0.499437,0.020688, + 0.866103,0.499437,0.020688,0.866103,0.499437,0.020688,-0.868032,-0.496079,-0.020649,-0.868032,-0.496079,-0.020649, + -0.868032,-0.496079,-0.020649,-0.868032,-0.496079,-0.020649,0.509318,-0.158685,0.845822,0.509318,-0.158685,0.845822, + 0.509318,-0.158685,0.845822,0.509318,-0.158685,0.845822,-0.531844,0.041343,0.845833,-0.531844,0.041343,0.845833, + -0.531844,0.041343,0.845833,-0.531844,0.041343,0.845833,-0.472491,-0.079319,0.877759,-0.472491,-0.079319,0.877759, + -0.472491,-0.079319,0.877759,-0.472491,-0.079319,0.877759,-0.464164,-0.117450,0.877928,-0.464164,-0.117450,0.877928, + -0.464164,-0.117450,0.877928,-0.464164,-0.117450,0.877928,0.940933,-0.207293,0.267722,0.940933,-0.207293,0.267722, + 0.940933,-0.207293,0.267722,0.940933,-0.207293,0.267722,0.268559,0.868142,-0.417378,0.268559,0.868142,-0.417378, + 0.268559,0.868142,-0.417378,-0.517921,-0.024328,0.855083,-0.517921,-0.024328,0.855083,-0.517921,-0.024328,0.855083, + -0.517921,-0.024328,0.855083,0.347095,-0.047929,0.936605,0.347095,-0.047929,0.936605,0.347095,-0.047929,0.936605, + 0.347095,-0.047929,0.936605,0.241721,0.934487,0.261351,0.241721,0.934487,0.261351,0.241721,0.934487,0.261351, + 0.241721,0.934487,0.261351,0.204970,0.899118,-0.386748,0.204970,0.899118,-0.386748,0.204970,0.899118,-0.386748, + -0.186770,-0.978540,-0.087049,-0.186770,-0.978540,-0.087049,-0.186770,-0.978540,-0.087049,-0.186770,-0.978540,-0.087049, + 0.273307,0.860951,-0.429030,0.273307,0.860951,-0.429030,0.273307,0.860951,-0.429030,-0.190147,-0.977810,-0.087934, + -0.190147,-0.977810,-0.087934,-0.190147,-0.977810,-0.087934,-0.190147,-0.977810,-0.087934,-0.966750,0.181412,-0.180233, + -0.966750,0.181412,-0.180233,-0.966750,0.181412,-0.180233,-0.966750,0.181412,-0.180233,0.943674,-0.202287,0.261838, + 0.943674,-0.202287,0.261838,0.943674,-0.202287,0.261838,0.943674,-0.202287,0.261838,-0.236839,-0.069909,0.969030, + -0.236839,-0.069909,0.969030,-0.236839,-0.069909,0.969030,-0.236839,-0.069909,0.969030,-0.236356,-0.070022,0.969140, + -0.236356,-0.070022,0.969140,-0.236356,-0.070022,0.969140,-0.236356,-0.070022,0.969140,0.189467,-0.980993,-0.041882, + 0.189467,-0.980993,-0.041882,0.189467,-0.980993,-0.041882,-0.968715,0.196276,-0.151880,-0.968715,0.196276,-0.151880, + -0.968715,0.196276,-0.151880,-0.968715,0.196276,-0.151880,-0.314322,-0.946986,0.066481,-0.314322,-0.946986,0.066481, + -0.314322,-0.946986,0.066481,-0.314322,-0.946986,0.066481,0.191474,0.020887,0.981275,0.191474,0.020887,0.981275, + 0.191474,0.020887,0.981275,0.191474,0.020887,0.981275,0.353683,0.933231,0.063156,0.353683,0.933231,0.063156, + 0.353683,0.933231,0.063156,0.353683,0.933231,0.063156,-0.172497,0.025944,-0.984668,-0.172497,0.025944,-0.984668, + -0.172497,0.025944,-0.984668,-0.172497,0.025944,-0.984668,0.113527,-0.922812,-0.368143,0.113527,-0.922812,-0.368143, + 0.113527,-0.922812,-0.368143,0.113527,-0.922812,-0.368143,0.066556,-0.230916,0.970695,0.066556,-0.230916,0.970695, + 0.066556,-0.230916,0.970695,0.066556,-0.230916,0.970695,-0.113528,0.922812,0.368142,-0.113528,0.922812,0.368142, + -0.113528,0.922812,0.368142,-0.113528,0.922812,0.368142,-0.066556,0.230935,-0.970690,-0.066556,0.230935,-0.970690, + -0.066556,0.230935,-0.970690,-0.066556,0.230935,-0.970690,-0.182396,-0.976473,-0.115033,-0.182396,-0.976473,-0.115033, + -0.182396,-0.976473,-0.115033,-0.182396,-0.976473,-0.115033,0.182395,0.976473,0.115031,0.182395,0.976473,0.115031, + 0.182395,0.976473,0.115031,0.182395,0.976473,0.115031,0.182397,0.976473,0.115031,0.182397,0.976473,0.115031, + 0.182397,0.976473,0.115031,0.182397,0.976473,0.115031,-0.949623,0.205285,-0.236799,-0.949623,0.205285,-0.236799, + -0.949623,0.205285,-0.236799,-0.949623,0.205285,-0.236799,0.254843,0.066042,-0.964725,0.254843,0.066042,-0.964725, + 0.254843,0.066042,-0.964725,0.254843,0.066042,-0.964725,-0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031, + -0.182396,-0.976473,-0.115031,-0.182396,-0.976473,-0.115031,0.182396,0.976473,0.115031,0.182396,0.976473,0.115031, + 0.182396,0.976473,0.115031,0.182396,0.976473,0.115031,0.273276,0.062038,-0.959933,0.273276,0.062038,-0.959933, + 0.273276,0.062038,-0.959933,0.273276,0.062038,-0.959933,-0.276327,-0.061372,0.959102,-0.276327,-0.061372,0.959102, + -0.276327,-0.061372,0.959102,-0.276327,-0.061372,0.959102,-0.178742,-0.977287,-0.113845,-0.178742,-0.977287,-0.113845, + -0.178742,-0.977287,-0.113845,-0.178742,-0.977287,-0.113845,0.182396,0.976473,0.115031,0.182396,0.976473,0.115031, + 0.182396,0.976473,0.115031,0.182396,0.976473,0.115031,0.271950,0.062288,-0.960293,0.271950,0.062288,-0.960293, + 0.271950,0.062288,-0.960293,0.271950,0.062288,-0.960293,-0.272097,-0.062257,0.960254,-0.272097,-0.062257,0.960254, + -0.272097,-0.062257,0.960254,-0.272097,-0.062257,0.960254,0.182394,0.976473,0.115031,0.182394,0.976473,0.115031, + 0.182394,0.976473,0.115031,0.182394,0.976473,0.115031,-0.182394,-0.976474,-0.115028,-0.182394,-0.976474,-0.115028, + -0.182394,-0.976474,-0.115028,-0.182394,-0.976474,-0.115028,0.237830,0.022015,-0.971057,0.237830,0.022015,-0.971057, + 0.237830,0.022015,-0.971057,0.237830,0.022015,-0.971057,0.234224,-0.037111,-0.971474,0.234224,-0.037111,-0.971474, + 0.234224,-0.037111,-0.971474,0.234224,-0.037111,-0.971474,-0.903934,0.197419,-0.379380,-0.903934,0.197419,-0.379380, + -0.903934,0.197419,-0.379380,-0.903934,0.197419,-0.379380,-0.300807,-0.808998,0.505011,-0.300807,-0.808998,0.505011, + -0.300807,-0.808998,0.505011,-0.300807,-0.808998,0.505011,0.300812,0.808992,-0.505019,0.300812,0.808992,-0.505019, + 0.300812,0.808992,-0.505019,0.300812,0.808992,-0.505019,0.982374,-0.185851,0.020022,0.982374,-0.185851,0.020022, + 0.982374,-0.185851,0.020022,0.982374,-0.185851,0.020022,-0.280550,-0.893572,0.350457,-0.280550,-0.893572,0.350457, + -0.280550,-0.893572,0.350457,-0.280550,-0.893572,0.350457,0.280559,0.893554,-0.350496,0.280559,0.893554,-0.350496, + 0.280559,0.893554,-0.350496,0.280559,0.893554,-0.350496,0.950810,-0.210811,0.226977,0.950810,-0.210811,0.226977, + 0.950810,-0.210811,0.226977,0.950810,-0.210811,0.226977,-0.274752,-0.908791,0.314022,-0.274752,-0.908791,0.314022, + -0.274752,-0.908791,0.314022,-0.274752,-0.908791,0.314022,0.274752,0.908794,-0.314014,0.274752,0.908794,-0.314014, + 0.274752,0.908794,-0.314014,0.274752,0.908794,-0.314014,0.953945,-0.204089,0.219855,0.953945,-0.204089,0.219855, + 0.953945,-0.204089,0.219855,0.953945,-0.204089,0.219855,-0.920630,0.128532,0.368674,-0.920630,0.128532,0.368674, + -0.920630,0.128532,0.368674,-0.920630,0.128532,0.368674,0.920630,-0.128529,-0.368674,0.920630,-0.128529,-0.368674, + 0.920630,-0.128529,-0.368674,0.920630,-0.128529,-0.368674,-0.183272,-0.976695,-0.111709,-0.183272,-0.976695,-0.111709, + -0.183272,-0.976695,-0.111709,-0.183272,-0.976695,-0.111709,-0.164888,0.961873,0.218203,-0.164888,0.961873,0.218203, + -0.164888,0.961873,0.218203,-0.164888,0.961873,0.218203,0.954354,-0.147675,-0.259616,0.954354,-0.147675,-0.259616, + 0.954354,-0.147675,-0.259616,0.954354,-0.147675,-0.259616,-0.185948,-0.977302,-0.101509,-0.185948,-0.977302,-0.101509, + -0.185948,-0.977302,-0.101509,-0.185948,-0.977302,-0.101509,-0.970227,0.159799,0.182000,-0.970227,0.159799,0.182000, + -0.970227,0.159799,0.182000,-0.970227,0.159799,0.182000,0.970227,-0.159795,-0.182002,0.970227,-0.159795,-0.182002, + 0.970227,-0.159795,-0.182002,0.970227,-0.159795,-0.182002,-0.185886,-0.977289,-0.101746,-0.185886,-0.977289,-0.101746, + -0.185886,-0.977289,-0.101746,-0.185886,-0.977289,-0.101746,0.059001,0.836130,0.545349,0.059001,0.836130,0.545349, + 0.059001,0.836130,0.545349,0.059001,0.836130,0.545349,-0.058998,-0.836126,-0.545356,-0.058998,-0.836126,-0.545356, + -0.058998,-0.836126,-0.545356,-0.058998,-0.836126,-0.545356,-0.946150,0.206130,-0.249620,-0.946150,0.206130,-0.249620, + -0.946150,0.206130,-0.249620,-0.946150,0.206130,-0.249620,-0.013232,0.728686,0.684720,-0.013232,0.728686,0.684720, + -0.013232,0.728686,0.684720,-0.013232,0.728686,0.684720,0.013223,-0.728680,-0.684727,0.013223,-0.728680,-0.684727, + 0.013223,-0.728680,-0.684727,0.013223,-0.728680,-0.684727,-0.940934,0.207288,-0.267723,-0.940934,0.207288,-0.267723, + -0.940934,0.207288,-0.267723,-0.940934,0.207288,-0.267723,0.672722,-0.209253,0.709688,0.672722,-0.209253,0.709688, + 0.672722,-0.209253,0.709688,0.672722,-0.209253,0.709688,-0.672720,0.209269,-0.709686,-0.672720,0.209269,-0.709686, + -0.672720,0.209269,-0.709686,-0.672720,0.209269,-0.709686,0.176008,0.974530,0.138968,0.176008,0.974530,0.138968, + 0.176008,0.974530,0.138968,0.176008,0.974530,0.138968,0.659853,-0.066503,0.748446,0.659853,-0.066503,0.748446, + 0.659853,-0.066503,0.748446,0.659853,-0.066503,0.748446,-0.639236,0.203909,-0.741484,-0.639236,0.203909,-0.741484, + -0.639236,0.203909,-0.741484,-0.639236,0.203909,-0.741484,0.178342,0.975306,0.130274,0.178342,0.975306,0.130274, + 0.178342,0.975306,0.130274,0.178342,0.975306,0.130274,0.130510,0.987767,0.085349,0.130510,0.987767,0.085349, + 0.130510,0.987767,0.085349,0.130510,0.987767,0.085349,-0.215268,-0.051390,0.975202,-0.215268,-0.051390,0.975202, + -0.215268,-0.051390,0.975202,-0.215268,-0.051390,0.975202,0.335508,0.025279,-0.941698,0.335508,0.025279,-0.941698, + 0.335508,0.025279,-0.941698,0.335508,0.025279,-0.941698,-0.954015,0.202406,-0.221103,-0.954015,0.202406,-0.221103, + -0.954015,0.202406,-0.221103,-0.954015,0.202406,-0.221103,0.950636,-0.205022,0.232931,0.950636,-0.205022,0.232931, + 0.950636,-0.205022,0.232931,0.950636,-0.205022,0.232931,0.188134,0.976833,0.101998,0.188134,0.976833,0.101998, + 0.188134,0.976833,0.101998,0.188134,0.976833,0.101998,0.180153,0.975947,0.122771,0.180153,0.975947,0.122771, + 0.180153,0.975947,0.122771,0.956016,-0.203369,0.211363,0.956016,-0.203369,0.211363,0.956016,-0.203369,0.211363, + 0.956016,-0.203369,0.211363,-0.255538,-0.069778,0.964278,-0.255538,-0.069778,0.964278,-0.255538,-0.069778,0.964278, + -0.255538,-0.069778,0.964278,0.296545,0.060794,-0.953082,0.296545,0.060794,-0.953082,0.296545,0.060794,-0.953082, + 0.296545,0.060794,-0.953082,0.244801,0.020030,-0.969366,0.244801,0.020030,-0.969366,0.244801,0.020030,-0.969366, + 0.244801,0.020030,-0.969366,-0.936460,0.208351,-0.282191,-0.936460,0.208351,-0.282191,-0.936460,0.208351,-0.282191, + -0.936460,0.208351,-0.282191,0.180368,0.975920,0.122668,0.180368,0.975920,0.122668,0.180368,0.975920,0.122668, + -0.209018,-0.044355,0.976905,-0.209018,-0.044355,0.976905,-0.209018,-0.044355,0.976905,-0.209018,-0.044355,0.976905, + 0.951382,-0.204998,0.229890,0.951382,-0.204998,0.229890,0.951382,-0.204998,0.229890,0.951382,-0.204998,0.229890, + -0.935602,0.205962,-0.286755,-0.935602,0.205962,-0.286755,-0.935602,0.205962,-0.286755,-0.935602,0.205962,-0.286755, + 0.962677,-0.146587,0.227518,0.962677,-0.146587,0.227518,0.962677,-0.146587,0.227518,0.962677,-0.146587,0.227518, + -0.239823,-0.106826,0.964921,-0.239823,-0.106826,0.964921,-0.239823,-0.106826,0.964921,-0.239823,-0.106826,0.964921, + 0.215941,-0.017931,-0.976242,0.215941,-0.017931,-0.976242,0.215941,-0.017931,-0.976242,0.215941,-0.017931,-0.976242, + 0.176476,0.975621,0.130463,0.176476,0.975621,0.130463,0.176476,0.975621,0.130463,0.176476,0.975621,0.130463, + -0.181410,-0.976194,-0.118891,-0.181410,-0.976194,-0.118891,-0.181410,-0.976194,-0.118891,-0.181410,-0.976194,-0.118891, + 0.952693,-0.206563,0.222950,0.952693,-0.206563,0.222950,0.952693,-0.206563,0.222950,0.952693,-0.206563,0.222950, + 0.947571,-0.205619,0.244602,0.947571,-0.205619,0.244602,0.947571,-0.205619,0.244602,-0.175534,-0.974420,-0.140337, + -0.175534,-0.974420,-0.140337,-0.175534,-0.974420,-0.140337,-0.175534,-0.974420,-0.140337,-0.258478,-0.065263,0.963810, + -0.258478,-0.065263,0.963810,-0.258478,-0.065263,0.963810,-0.258478,-0.065263,0.963810,0.250304,0.022783,-0.967899, + 0.250304,0.022783,-0.967899,0.250304,0.022783,-0.967899,0.250304,0.022783,-0.967899,0.209863,0.076838,-0.974707, + 0.209863,0.076838,-0.974707,0.209863,0.076838,-0.974707,0.209863,0.076838,-0.974707,0.194421,0.978469,0.069268, + 0.194421,0.978469,0.069268,0.194421,0.978469,0.069268,0.194421,0.978469,0.069268,0.947577,-0.205793,0.244432, + 0.947577,-0.205793,0.244432,0.947577,-0.205793,0.244432,-0.232750,-0.113262,0.965919,-0.232750,-0.113262,0.965919, + -0.232750,-0.113262,0.965919,-0.232750,-0.113262,0.965919,-0.180756,-0.975938,-0.121955,-0.180756,-0.975938,-0.121955, + -0.180756,-0.975938,-0.121955,-0.180756,-0.975938,-0.121955,0.192994,0.979091,0.064298,0.192994,0.979091,0.064298, + 0.192994,0.979091,0.064298,0.192994,0.979091,0.064298,-0.954670,0.205957,-0.214914,-0.954670,0.205957,-0.214914, + -0.954670,0.205957,-0.214914,-0.954670,0.205957,-0.214914,-0.955772,0.200148,-0.215503,-0.955772,0.200148,-0.215503, + -0.955772,0.200148,-0.215503,-0.955772,0.200148,-0.215503,-0.675306,0.212361,-0.706303,-0.675306,0.212361,-0.706303, + -0.675306,0.212361,-0.706303,-0.675306,0.212361,-0.706303,-0.955171,0.202185,-0.216263,-0.955171,0.202185,-0.216263, + -0.955171,0.202185,-0.216263,-0.955171,0.202185,-0.216263,0.654121,-0.217619,-0.724408,0.654121,-0.217619,-0.724408, + 0.654121,-0.217619,-0.724408,0.654121,-0.217619,-0.724408,0.952655,-0.206561,0.223119,0.952655,-0.206561,0.223119, + 0.952655,-0.206561,0.223119,0.952655,-0.206561,0.223119,0.955657,-0.179937,0.233115,0.955657,-0.179937,0.233115, + 0.955657,-0.179937,0.233115,0.955657,-0.179937,0.233115,-0.956899,0.202012,-0.208649,-0.956899,0.202012,-0.208649, + -0.956899,0.202012,-0.208649,-0.956899,0.202012,-0.208649,0.952842,-0.205523,0.223275,0.952842,-0.205523,0.223275, + 0.952842,-0.205523,0.223275,0.952842,-0.205523,0.223275,-0.959137,0.197881,-0.202236,-0.959137,0.197881,-0.202236, + -0.959137,0.197881,-0.202236,-0.959137,0.197881,-0.202236,0.632722,-0.279894,-0.722027,0.632722,-0.279894,-0.722027, + 0.632722,-0.279894,-0.722027,0.632722,-0.279894,-0.722027,0.955837,-0.208584,0.207045,0.955837,-0.208584,0.207045, + 0.955837,-0.208584,0.207045,0.955837,-0.208584,0.207045,0.680584,0.180060,-0.710200,0.680584,0.180060,-0.710200, + 0.680584,0.180060,-0.710200,0.680584,0.180060,-0.710200,0.953081,-0.203567,0.224046,0.953081,-0.203567,0.224046, + 0.953081,-0.203567,0.224046,0.953081,-0.203567,0.224046,0.588185,-0.282235,-0.757880,0.588185,-0.282235,-0.757880, + 0.588185,-0.282235,-0.757880,0.588185,-0.282235,-0.757880,-0.954434,0.207001,-0.214957,-0.954434,0.207001,-0.214957, + -0.954434,0.207001,-0.214957,-0.954434,0.207001,-0.214957,0.387311,0.235031,-0.891488,0.387311,0.235031,-0.891488, + 0.387311,0.235031,-0.891488,0.387311,0.235031,-0.891488,0.947050,-0.225831,0.228247,0.947050,-0.225831,0.228247, + 0.947050,-0.225831,0.228247,0.947050,-0.225831,0.228247,0.681478,0.230405,-0.694624,0.681478,0.230405,-0.694624, + 0.681478,0.230405,-0.694624,0.681478,0.230405,-0.694624,0.956769,-0.199869,0.211296,0.956769,-0.199869,0.211296, + 0.956769,-0.199869,0.211296,0.956769,-0.199869,0.211296,-0.957754,0.209551,-0.196968,-0.957754,0.209551,-0.196968, + -0.957754,0.209551,-0.196968,-0.957754,0.209551,-0.196968,0.739657,-0.023182,-0.672585,0.739657,-0.023182,-0.672585, + 0.739657,-0.023182,-0.672585,0.739657,-0.023182,-0.672585,0.954316,-0.205290,0.217111,0.954316,-0.205290,0.217111, + 0.954316,-0.205290,0.217111,0.954316,-0.205290,0.217111,0.297072,0.026176,-0.954496,0.297072,0.026176,-0.954496, + 0.297072,0.026176,-0.954496,0.297072,0.026176,-0.954496,-0.955843,0.204749,-0.210815,-0.955843,0.204749,-0.210815, + -0.955843,0.204749,-0.210815,-0.955843,0.204749,-0.210815,-0.681572,0.212798,-0.700127,-0.681572,0.212798,-0.700127, + -0.681572,0.212798,-0.700127,-0.681572,0.212798,-0.700127,-0.678839,0.210552,-0.703452,-0.678839,0.210552,-0.703452, + -0.678839,0.210552,-0.703452,-0.678839,0.210552,-0.703452,-0.687511,0.225491,-0.690277,-0.687511,0.225491,-0.690277, + -0.687511,0.225491,-0.690277,-0.687511,0.225491,-0.690277,-0.688631,0.220588,-0.690744,-0.688631,0.220588,-0.690744, + -0.688631,0.220588,-0.690744,-0.688631,0.220588,-0.690744,-0.678839,0.210544,-0.703455,-0.678839,0.210544,-0.703455, + -0.678839,0.210544,-0.703455,-0.678839,0.210544,-0.703455,-0.692493,0.197656,-0.693820,-0.692493,0.197656,-0.693820, + -0.692493,0.197656,-0.693820,-0.692493,0.197656,-0.693820,-0.688665,0.203144,-0.696041,-0.688665,0.203144,-0.696041, + -0.688665,0.203144,-0.696041,-0.688665,0.203144,-0.696041,0.670725,-0.209833,0.711406,0.670725,-0.209833,0.711406, + 0.670725,-0.209833,0.711406,0.670725,-0.209833,0.711406,0.675650,-0.192215,0.711724,0.675650,-0.192215,0.711724, + 0.675650,-0.192215,0.711724,0.675650,-0.192215,0.711724,0.666302,-0.211335,0.715108,0.666302,-0.211335,0.715108, + 0.666302,-0.211335,0.715108,0.666302,-0.211335,0.715108,0.689962,-0.197167,0.696475,0.689962,-0.197167,0.696475, + 0.689962,-0.197167,0.696475,0.689962,-0.197167,0.696475,0.670725,-0.209832,0.711406,0.670725,-0.209832,0.711406, + 0.670725,-0.209832,0.711406,0.670725,-0.209832,0.711406,0.663190,-0.219211,0.715630,0.663190,-0.219211,0.715630, + 0.663190,-0.219211,0.715630,0.663190,-0.219211,0.715630,0.686208,-0.220415,0.693207,0.686208,-0.220415,0.693207, + 0.686208,-0.220415,0.693207,0.686208,-0.220415,0.693207,0.683592,-0.226035,0.693981,0.683592,-0.226035,0.693981, + 0.683592,-0.226035,0.693981,0.683592,-0.226035,0.693981,-0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030, + -0.182397,-0.976473,-0.115030,-0.182397,-0.976473,-0.115030,-0.762661,0.214345,-0.610250,-0.762661,0.214345,-0.610250, + -0.762661,0.214345,-0.610250,-0.762661,0.214345,-0.610250,0.732195,-0.056806,-0.678722,0.732195,-0.056806,-0.678722, + 0.732195,-0.056806,-0.678722,0.732195,-0.056806,-0.678722,0.182395,0.976473,0.115033,0.182395,0.976473,0.115033, + 0.182395,0.976473,0.115033,0.182395,0.976473,0.115033,0.726318,-0.212678,0.653628,0.726318,-0.212678,0.653628, + 0.726318,-0.212678,0.653628,0.726318,-0.212678,0.653628,-0.182394,-0.976473,-0.115031,-0.182394,-0.976473,-0.115031, + -0.182394,-0.976473,-0.115031,-0.182394,-0.976473,-0.115031,-0.762663,0.214338,-0.610250,-0.762663,0.214338,-0.610250, + -0.762663,0.214338,-0.610250,-0.762663,0.214338,-0.610250,0.732196,-0.056813,-0.678720,0.732196,-0.056813,-0.678720, + 0.732196,-0.056813,-0.678720,0.732196,-0.056813,-0.678720,0.182395,0.976473,0.115030,0.182395,0.976473,0.115030, + 0.182395,0.976473,0.115030,0.182395,0.976473,0.115030,0.726317,-0.212665,0.653633,0.726317,-0.212665,0.653633, + 0.726317,-0.212665,0.653633,0.726317,-0.212665,0.653633,0.968712,-0.196278,0.151893,0.968712,-0.196278,0.151893, + 0.968712,-0.196278,0.151893,0.968712,-0.196278,0.151893,0.129430,0.979863,0.152040,0.129430,0.979863,0.152040, + 0.129430,0.979863,0.152040,0.129430,0.979863,0.152040,-0.129431,-0.979863,-0.152041,-0.129431,-0.979863,-0.152041, + -0.129431,-0.979863,-0.152041,-0.129431,-0.979863,-0.152041,-0.171234,-0.086126,0.981459,-0.171234,-0.086126,0.981459, + -0.171234,-0.086126,0.981459,-0.171234,-0.086126,0.981459,-0.182397,-0.976473,-0.115032,-0.182397,-0.976473,-0.115032, + -0.182397,-0.976473,-0.115032,-0.182397,-0.976473,-0.115032,-0.762662,0.214337,-0.610251,-0.762662,0.214337,-0.610251, + -0.762662,0.214337,-0.610251,-0.762662,0.214337,-0.610251,0.732195,-0.056803,-0.678722,0.732195,-0.056803,-0.678722, + 0.732195,-0.056803,-0.678722,0.732195,-0.056803,-0.678722,0.182394,0.976473,0.115031,0.182394,0.976473,0.115031, + 0.182394,0.976473,0.115031,0.182394,0.976473,0.115031,0.726318,-0.212666,0.653632,0.726318,-0.212666,0.653632, + 0.726318,-0.212666,0.653632,0.726318,-0.212666,0.653632,-0.953811,0.204121,-0.220406,-0.953811,0.204121,-0.220406, + -0.953811,0.204121,-0.220406,-0.953811,0.204121,-0.220406,-0.186926,-0.977605,-0.096684,-0.186926,-0.977605,-0.096684, + -0.186926,-0.977605,-0.096684,-0.186926,-0.977605,-0.096684,0.953808,-0.204135,0.220407,0.953808,-0.204135,0.220407, + 0.953808,-0.204135,0.220407,0.953808,-0.204135,0.220407,0.186924,0.977605,0.096681,0.186924,0.977605,0.096681, + 0.186924,0.977605,0.096681,0.186924,0.977605,0.096681,0.187961,0.974563,0.122052,0.187961,0.974563,0.122052, + 0.187961,0.974563,0.122052,0.187961,0.974563,0.122052,-0.862373,0.103310,0.495621,-0.862373,0.103310,0.495621, + -0.862373,0.103310,0.495621,-0.862373,0.103310,0.495621,-0.187961,-0.974563,-0.122053,-0.187961,-0.974563,-0.122053, + -0.187961,-0.974563,-0.122053,-0.187961,-0.974563,-0.122053,0.861467,-0.102874,-0.497285,0.861467,-0.102874,-0.497285, + 0.861467,-0.102874,-0.497285,0.861467,-0.102874,-0.497285,-0.953809,0.204128,-0.220408,-0.953809,0.204128,-0.220408, + -0.953809,0.204128,-0.220408,-0.953809,0.204128,-0.220408,-0.186928,-0.977604,-0.096683,-0.186928,-0.977604,-0.096683, + -0.186928,-0.977604,-0.096683,-0.186928,-0.977604,-0.096683,0.953809,-0.204132,0.220407,0.953809,-0.204132,0.220407, + 0.953809,-0.204132,0.220407,0.953809,-0.204132,0.220407,0.186925,0.977605,0.096683,0.186925,0.977605,0.096683, + 0.186925,0.977605,0.096683,0.186925,0.977605,0.096683,0.188005,0.974559,0.122022,0.188005,0.974559,0.122022, + 0.188005,0.974559,0.122022,0.188005,0.974559,0.122022,-0.862372,0.103300,0.495624,-0.862372,0.103300,0.495624, + -0.862372,0.103300,0.495624,-0.862372,0.103300,0.495624,-0.188023,-0.974557,-0.122009,-0.188023,-0.974557,-0.122009, + -0.188023,-0.974557,-0.122009,-0.188023,-0.974557,-0.122009,0.861462,-0.102895,-0.497288,0.861462,-0.102895,-0.497288, + 0.861462,-0.102895,-0.497288,0.861462,-0.102895,-0.497288,-0.942994,0.206843,-0.260726,-0.942994,0.206843,-0.260726, + -0.942994,0.206843,-0.260726,-0.942994,0.206843,-0.260726,-0.186927,-0.977606,-0.096672,-0.186927,-0.977606,-0.096672, + -0.186927,-0.977606,-0.096672,-0.186927,-0.977606,-0.096672,0.942992,-0.206857,0.260724,0.942992,-0.206857,0.260724, + 0.942992,-0.206857,0.260724,0.942992,-0.206857,0.260724,0.186928,0.977605,0.096672,0.186928,0.977605,0.096672, + 0.186928,0.977605,0.096672,0.186928,0.977605,0.096672,0.187953,0.974566,0.122045,0.187953,0.974566,0.122045, + 0.187953,0.974566,0.122045,0.187953,0.974566,0.122045,-0.862372,0.103318,0.495621,-0.862372,0.103318,0.495621, + -0.862372,0.103318,0.495621,-0.862372,0.103318,0.495621,-0.187974,-0.974564,-0.122032,-0.187974,-0.974564,-0.122032, + -0.187974,-0.974564,-0.122032,-0.187974,-0.974564,-0.122032,0.861464,-0.102895,-0.497286,0.861464,-0.102895,-0.497286, + 0.861464,-0.102895,-0.497286,0.861464,-0.102895,-0.497286,-0.942992,0.206858,-0.260723,-0.942992,0.206858,-0.260723, + -0.942992,0.206858,-0.260723,-0.942992,0.206858,-0.260723,-0.177829,-0.975002,-0.133223,-0.177829,-0.975002,-0.133223, + -0.177829,-0.975002,-0.133223,-0.177829,-0.975002,-0.133223,0.942994,-0.206846,0.260724,0.942994,-0.206846,0.260724, + 0.942994,-0.206846,0.260724,0.942994,-0.206846,0.260724,0.177831,0.975002,0.133222,0.177831,0.975002,0.133222, + 0.177831,0.975002,0.133222,0.177831,0.975002,0.133222,0.181994,0.976588,0.114696,0.181994,0.976588,0.114696, + 0.181994,0.976588,0.114696,0.181994,0.976588,0.114696,-0.862372,0.103316,0.495621,-0.862372,0.103316,0.495621, + -0.862372,0.103316,0.495621,-0.862372,0.103316,0.495621,-0.183136,-0.976469,-0.113882,-0.183136,-0.976469,-0.113882, + -0.183136,-0.976469,-0.113882,-0.183136,-0.976469,-0.113882,0.861465,-0.102883,-0.497285,0.861465,-0.102883,-0.497285, + 0.861465,-0.102883,-0.497285,0.861465,-0.102883,-0.497285,-0.942989,0.206869,-0.260725,-0.942989,0.206869,-0.260725, + -0.942989,0.206869,-0.260725,-0.942989,0.206869,-0.260725,-0.186926,-0.977606,-0.096669,-0.186926,-0.977606,-0.096669, + -0.186926,-0.977606,-0.096669,-0.186926,-0.977606,-0.096669,0.942992,-0.206857,0.260724,0.942992,-0.206857,0.260724, + 0.942992,-0.206857,0.260724,0.942992,-0.206857,0.260724,0.186931,0.977605,0.096672,0.186931,0.977605,0.096672, + 0.186931,0.977605,0.096672,0.186931,0.977605,0.096672,0.218386,0.971329,0.093955,0.218386,0.971329,0.093955, + 0.218386,0.971329,0.093955,0.218386,0.971329,0.093955,0.977374,-0.196969,-0.077096,0.977374,-0.196969,-0.077096, + 0.977374,-0.196969,-0.077096,0.977374,-0.196969,-0.077096,-0.977581,0.208127,-0.031900,-0.977581,0.208127,-0.031900, + -0.977581,0.208127,-0.031900,-0.977581,0.208127,-0.031900,0.150017,-0.158266,0.975934,0.150017,-0.158266,0.975934, + 0.150017,-0.158266,0.975934,0.150017,-0.158266,0.975934,0.007396,0.129872,-0.991503,0.007396,0.129872,-0.991503, + 0.007396,0.129872,-0.991503,0.007396,0.129872,-0.991503,-0.162029,-0.985335,0.053491,-0.162029,-0.985335,0.053491, + -0.162029,-0.985335,0.053491,-0.162029,-0.985335,0.053491,0.971372,-0.158887,-0.176609,0.971372,-0.158887,-0.176609, + 0.971372,-0.158887,-0.176609,0.971372,-0.158887,-0.176609,0.923076,-0.223824,0.312782,0.923076,-0.223824,0.312782, + 0.923076,-0.223824,0.312782,0.923076,-0.223824,0.312782,0.178517,0.976320,0.122194,0.178517,0.976320,0.122194, + 0.178517,0.976320,0.122194,0.178517,0.976320,0.122194,-0.140512,-0.124660,0.982200,-0.140512,-0.124660,0.982200, + -0.140512,-0.124660,0.982200,-0.140512,-0.124660,0.982200,-0.257014,-0.965019,-0.051795,-0.257014,-0.965019,-0.051795, + -0.257014,-0.965019,-0.051795,-0.257014,-0.965019,-0.051795,0.149624,0.112686,-0.982301,0.149624,0.112686,-0.982301, + 0.149624,0.112686,-0.982301,0.149624,0.112686,-0.982301,0.163075,0.985169,-0.053366,0.163075,0.985169,-0.053366, + 0.163075,0.985169,-0.053366,0.163075,0.985169,-0.053366,-0.026484,-0.137780,0.990109,-0.026484,-0.137780,0.990109, + -0.026484,-0.137780,0.990109,-0.026484,-0.137780,0.990109,0.250433,0.962624,0.103140,0.250433,0.962624,0.103140, + 0.250433,0.962624,0.103140,0.250433,0.962624,0.103140,0.978130,-0.207109,0.019152,0.978130,-0.207109,0.019152, + 0.978130,-0.207109,0.019152,0.978130,-0.207109,0.019152,-0.959533,0.219868,-0.175941,-0.959533,0.219868,-0.175941, + -0.959533,0.219868,-0.175941,-0.959533,0.219868,-0.175941,-0.189225,-0.953280,-0.235479,-0.189225,-0.953280,-0.235479, + -0.189225,-0.953280,-0.235479,-0.189225,-0.953280,-0.235479,-0.189265,-0.972926,-0.132641,-0.189265,-0.972926,-0.132641, + -0.189265,-0.972926,-0.132641,-0.189265,-0.972926,-0.132641,-0.493176,-0.834457,-0.245886,-0.493176,-0.834457,-0.245886, + -0.493176,-0.834457,-0.245886,-0.493176,-0.834457,-0.245886,0.897134,0.223498,0.381049,0.897134,0.223498,0.381049, + 0.897134,0.223498,0.381049,0.897134,0.223498,0.381049,-0.657805,0.715790,-0.234387,-0.657805,0.715790,-0.234387, + -0.657805,0.715790,-0.234387,-0.657805,0.715790,-0.234387,-0.205845,-0.969128,-0.135713,-0.205845,-0.969128,-0.135713, + -0.205845,-0.969128,-0.135713,-0.205845,-0.969128,-0.135713,0.194900,0.980405,0.028630,0.194900,0.980405,0.028630, + 0.194900,0.980405,0.028630,0.194900,0.980405,0.028630,0.140828,0.981340,0.130916,0.140828,0.981340,0.130916, + 0.140828,0.981340,0.130916,0.140828,0.981340,0.130916,-0.139851,-0.984734,-0.103638,-0.139851,-0.984734,-0.103638, + -0.139851,-0.984734,-0.103638,-0.139851,-0.984734,-0.103638,0.614159,-0.016748,-0.789005,0.614159,-0.016748,-0.789005, + 0.614159,-0.016748,-0.789005,0.614159,-0.016748,-0.789005,-0.643946,0.025854,0.764633,-0.643946,0.025854,0.764633, + -0.643946,0.025854,0.764633,-0.643946,0.025854,0.764633,-0.185490,-0.977205,-0.103263,-0.185490,-0.977205,-0.103263, + -0.185490,-0.977205,-0.103263,-0.185490,-0.977205,-0.103263,0.949623,-0.205285,0.236799,0.949623,-0.205285,0.236799, + 0.949623,-0.205285,0.236799,0.949623,-0.205285,0.236799,0.182388,0.976475,0.115028,0.182388,0.976475,0.115028, + 0.182388,0.976475,0.115028,0.182388,0.976475,0.115028,-0.185485,-0.977207,-0.103261,-0.185485,-0.977207,-0.103261, + -0.185485,-0.977207,-0.103261,-0.185485,-0.977207,-0.103261,0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800, + 0.949625,-0.205277,0.236800,0.949625,-0.205277,0.236800,0.182397,0.976473,0.115032,0.182397,0.976473,0.115032, + 0.182397,0.976473,0.115032,0.182397,0.976473,0.115032,-0.037745,-0.476294,0.878476,-0.037745,-0.476294,0.878476, + -0.037745,-0.476294,0.878476,-0.037745,-0.476294,0.878476,0.069840,-0.664651,0.743883,0.069840,-0.664651,0.743883, + 0.069840,-0.664651,0.743883,0.069840,-0.664651,0.743883,-0.509348,0.088125,0.856036,-0.509348,0.088125,0.856036, + -0.509348,0.088125,0.856036,-0.509348,0.088125,0.856036,-0.571708,-0.060513,0.818222,-0.571708,-0.060513,0.818222, + -0.571708,-0.060513,0.818222,-0.571708,-0.060513,0.818222,0.959723,-0.209695,0.186974,0.959723,-0.209695,0.186974, + 0.959723,-0.209695,0.186974,0.959723,-0.209695,0.186974,0.961922,-0.195871,0.190632,0.961922,-0.195871,0.190632, + 0.961922,-0.195871,0.190632,0.961922,-0.195871,0.190632,-0.430230,-0.900711,-0.060178,-0.430230,-0.900711,-0.060178, + -0.430230,-0.900711,-0.060178,-0.430230,-0.900711,-0.060178,-0.594127,-0.792766,-0.136143,-0.594127,-0.792766,-0.136143, + -0.594127,-0.792766,-0.136143,-0.594127,-0.792766,-0.136143,0.293363,-0.952074,0.086566,0.293363,-0.952074,0.086566, + 0.293363,-0.952074,0.086566,0.293363,-0.952074,0.086566,0.489306,0.724775,0.485058,0.489306,0.724775,0.485058, + 0.489306,0.724775,0.485058,0.489306,0.724775,0.485058,-0.869802,-0.254303,0.422817,-0.869802,-0.254303,0.422817, + -0.869802,-0.254303,0.422817,-0.869802,-0.254303,0.422817,0.949471,-0.096057,0.298794,0.949471,-0.096057,0.298794, + 0.949471,-0.096057,0.298794,-0.237151,-0.947090,0.216288,-0.237151,-0.947090,0.216288,-0.237151,-0.947090,0.216288, + -0.237151,-0.947090,0.216288,0.743742,-0.130468,0.655611,0.743742,-0.130468,0.655611,0.743742,-0.130468,0.655611, + 0.743742,-0.130468,0.655611,-0.237830,-0.022016,0.971057,-0.237830,-0.022016,0.971057,-0.237830,-0.022016,0.971057, + -0.237830,-0.022016,0.971057,-0.258617,-0.017656,0.965819,-0.258617,-0.017656,0.965819,-0.258617,-0.017656,0.965819, + -0.258617,-0.017656,0.965819,-0.210434,-0.977563,0.009336,-0.210434,-0.977563,0.009336,-0.210434,-0.977563,0.009336, + -0.210434,-0.977563,0.009336,-0.211005,-0.977483,-0.001896,-0.211005,-0.977483,-0.001896,-0.211005,-0.977483,-0.001896, + -0.211005,-0.977483,-0.001896,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724, + -0.254844,-0.066044,0.964724,-0.092443,-0.098712,0.990813,-0.092443,-0.098712,0.990813,-0.092443,-0.098712,0.990813, + -0.092443,-0.098712,0.990813,-0.950306,0.206542,-0.232934,-0.950306,0.206542,-0.232934,-0.950306,0.206542,-0.232934, + -0.950306,0.206542,-0.232934,0.859276,-0.214270,0.464471,0.859276,-0.214270,0.464471,0.859276,-0.214270,0.464471, + 0.081093,-0.469138,0.879394,0.081093,-0.469138,0.879394,0.081093,-0.469138,0.879394,0.081093,-0.469138,0.879394, + -0.657675,-0.733661,0.170898,-0.657675,-0.733661,0.170898,-0.657675,-0.733661,0.170898,-0.657675,-0.733661,0.170898, + -0.166720,-0.375122,0.911860,-0.166720,-0.375122,0.911860,-0.166720,-0.375122,0.911860,-0.166720,-0.375122,0.911860, + -0.831868,0.198582,-0.518229,-0.831868,0.198582,-0.518229,-0.831868,0.198582,-0.518229,0.915956,-0.257102,0.308096, + 0.915956,-0.257102,0.308096,0.915956,-0.257102,0.308096,0.915956,-0.257102,0.308096,0.169371,0.077279,-0.982518, + 0.169371,0.077279,-0.982518,0.169371,0.077279,-0.982518,0.169371,0.077279,-0.982518,-0.154150,-0.135105,0.978767, + -0.154150,-0.135105,0.978767,-0.154150,-0.135105,0.978767,-0.154150,-0.135105,0.978767,0.944008,-0.155395,0.291034, + 0.944008,-0.155395,0.291034,0.944008,-0.155395,0.291034,0.307234,-0.605169,0.734423,0.307234,-0.605169,0.734423, + 0.307234,-0.605169,0.734423,0.307234,-0.605169,0.734423,-0.724888,0.331792,0.603698,-0.724888,0.331792,0.603698, + -0.724888,0.331792,0.603698,-0.724888,0.331792,0.603698,-0.911926,-0.410249,-0.009345,-0.911926,-0.410249,-0.009345, + -0.911926,-0.410249,-0.009345,-0.911926,-0.410249,-0.009345,0.289338,0.866724,0.406291,0.289338,0.866724,0.406291, + 0.289338,0.866724,0.406291,0.323058,-0.670599,0.667780,0.323058,-0.670599,0.667780,0.323058,-0.670599,0.667780, + -0.219586,-0.952449,0.211243,-0.219586,-0.952449,0.211243,-0.219586,-0.952449,0.211243,-0.219586,-0.952449,0.211243, + 0.277616,0.901510,-0.331977,0.277616,0.901510,-0.331977,0.277616,0.901510,-0.331977,0.277616,0.901510,-0.331977, + -0.179825,-0.979174,-0.094246,-0.179825,-0.979174,-0.094246,-0.179825,-0.979174,-0.094246,-0.179825,-0.979174,-0.094246, + -0.193556,-0.977385,-0.085175,-0.193556,-0.977385,-0.085175,-0.193556,-0.977385,-0.085175,-0.032152,-0.342246,0.939060, + -0.032152,-0.342246,0.939060,-0.032152,-0.342246,0.939060,-0.032152,-0.342246,0.939060,0.145937,0.720467,0.677960, + 0.145937,0.720467,0.677960,0.145937,0.720467,0.677960,0.145937,0.720467,0.677960,-0.220566,-0.975215,-0.017513, + -0.220566,-0.975215,-0.017513,-0.220566,-0.975215,-0.017513,-0.250817,-0.199240,0.947309,-0.250817,-0.199240,0.947309, + -0.250817,-0.199240,0.947309,-0.250817,-0.199240,0.947309,-0.273694,-0.836499,0.474722,-0.273694,-0.836499,0.474722, + -0.273694,-0.836499,0.474722,-0.273694,-0.836499,0.474722,0.996291,-0.077301,0.037801,0.996291,-0.077301,0.037801, + 0.996291,-0.077301,0.037801,0.996291,-0.077301,0.037801,-0.279701,-0.836462,0.471273,-0.279701,-0.836462,0.471273, + -0.279701,-0.836462,0.471273,-0.879875,0.452443,-0.145309,-0.879875,0.452443,-0.145309,-0.879875,0.452443,-0.145309, + -0.879875,0.452443,-0.145309,0.893971,-0.407036,0.187450,0.893971,-0.407036,0.187450,0.893971,-0.407036,0.187450, + 0.893971,-0.407036,0.187450,0.951921,-0.205069,0.227581,0.951921,-0.205069,0.227581,0.951921,-0.205069,0.227581, + 0.951921,-0.205069,0.227581,-0.951925,0.205051,-0.227580,-0.951925,0.205051,-0.227580,-0.951925,0.205051,-0.227580, + -0.951925,0.205051,-0.227580,0.198228,0.978697,0.053458,0.198228,0.978697,0.053458,0.198228,0.978697,0.053458, + 0.198228,0.978697,0.053458,0.947145,-0.205904,0.246007,0.947145,-0.205904,0.246007,0.947145,-0.205904,0.246007, + 0.947145,-0.205904,0.246007,-0.947145,0.205903,-0.246010,-0.947145,0.205903,-0.246010,-0.947145,0.205903,-0.246010, + -0.947145,0.205903,-0.246010,0.194911,0.978555,0.066631,0.194911,0.978555,0.066631,0.194911,0.978555,0.066631, + 0.194911,0.978555,0.066631,0.942421,-0.206981,0.262680,0.942421,-0.206981,0.262680,0.942421,-0.206981,0.262680, + 0.942421,-0.206981,0.262680,-0.958588,0.159453,-0.235974,-0.958588,0.159453,-0.235974,-0.958588,0.159453,-0.235974, + -0.949201,0.099183,-0.298631,-0.949201,0.099183,-0.298631,-0.949201,0.099183,-0.298631,0.960843,-0.142670,0.237542, + 0.960843,-0.142670,0.237542,0.960843,-0.142670,0.237542,-0.364963,-0.794157,0.485919,-0.364963,-0.794157,0.485919, + -0.364963,-0.794157,0.485919,-0.364963,-0.794157,0.485919,0.191342,0.978204,0.080657,0.191342,0.978204,0.080657, + 0.191342,0.978204,0.080657,0.191342,0.978204,0.080657,-0.166196,0.979072,0.117464,-0.166196,0.979072,0.117464, + -0.166196,0.979072,0.117464,-0.166196,0.979072,0.117464,-0.043015,0.829415,0.556974,-0.043015,0.829415,0.556974, + -0.043015,0.829415,0.556974,-0.043015,0.829415,0.556974,-0.404661,-0.501655,0.764586,-0.404661,-0.501655,0.764586, + -0.404661,-0.501655,0.764586,-0.404661,-0.501655,0.764586,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725, + -0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,0.260667,0.962501,0.075133,0.260667,0.962501,0.075133, + 0.260667,0.962501,0.075133,0.260667,0.962501,0.075133,0.190502,0.978093,0.083917,0.190502,0.978093,0.083917, + 0.190502,0.978093,0.083917,0.190502,0.978093,0.083917,-0.953947,0.204080,-0.219856,-0.953947,0.204080,-0.219856, + -0.953947,0.204080,-0.219856,-0.953947,0.204080,-0.219856,0.064342,0.994296,0.085067,0.064342,0.994296,0.085067, + 0.064342,0.994296,0.085067,0.064342,0.994296,0.085067,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,-0.347418,-0.911628,-0.219628,-0.347418,-0.911628,-0.219628, + -0.347418,-0.911628,-0.219628,-0.347418,-0.911628,-0.219628,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.923306,0.170621,-0.344084,-0.923306,0.170621,-0.344084, + -0.923306,0.170621,-0.344084,-0.923306,0.170621,-0.344084,0.923547,-0.170360,0.343567,0.923547,-0.170360,0.343567, + 0.923547,-0.170360,0.343567,0.923547,-0.170360,0.343567,0.047651,-0.822954,-0.566105,0.047651,-0.822954,-0.566105, + 0.047651,-0.822954,-0.566105,0.047651,-0.822954,-0.566105,0.126257,0.958638,0.255092,0.126257,0.958638,0.255092, + 0.126257,0.958638,0.255092,0.126257,0.958638,0.255092,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725, + -0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,-0.953946,0.204082,-0.219856,-0.953946,0.204082,-0.219856, + -0.953946,0.204082,-0.219856,-0.953946,0.204082,-0.219856,-0.118247,-0.961927,0.246403,-0.118247,-0.961927,0.246403, + -0.118247,-0.961927,0.246403,-0.118247,-0.961927,0.246403,0.122366,0.958483,-0.257560,0.122366,0.958483,-0.257560, + 0.122366,0.958483,-0.257560,0.122366,0.958483,-0.257560,0.694173,0.034329,0.718989,0.694173,0.034329,0.718989, + 0.694173,0.034329,0.718989,0.694173,0.034329,0.718989,-0.473497,0.428676,0.769440,-0.473497,0.428676,0.769440, + -0.473497,0.428676,0.769440,-0.473497,0.428676,0.769440,-0.684821,-0.037181,-0.727762,-0.684821,-0.037181,-0.727762, + -0.684821,-0.037181,-0.727762,-0.684821,-0.037181,-0.727762,0.732584,-0.056936,-0.678291,0.732584,-0.056936,-0.678291, + 0.732584,-0.056936,-0.678291,0.732584,-0.056936,-0.678291,0.724934,-0.212592,0.655191,0.724934,-0.212592,0.655191, + 0.724934,-0.212592,0.655191,0.724934,-0.212592,0.655191,0.892645,-0.213490,0.396997,0.892645,-0.213490,0.396997, + 0.892645,-0.213490,0.396997,0.892645,-0.213490,0.396997,0.122659,0.969103,0.213996,0.122659,0.969103,0.213996, + 0.122659,0.969103,0.213996,0.122659,0.969103,0.213996,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.973623,0.163058,0.159592,-0.973623,0.163058,0.159592, + -0.973623,0.163058,0.159592,-0.973623,0.163058,0.159592,0.154203,0.963877,0.217168,0.154203,0.963877,0.217168, + 0.154203,0.963877,0.217168,0.154203,0.963877,0.217168,0.973621,-0.163069,-0.159592,0.973621,-0.163069,-0.159592, + 0.973621,-0.163069,-0.159592,0.973621,-0.163069,-0.159592,-0.154204,-0.963877,-0.217167,-0.154204,-0.963877,-0.217167, + -0.154204,-0.963877,-0.217167,-0.154204,-0.963877,-0.217167,-0.524438,0.851206,-0.020315,-0.524438,0.851206,-0.020315, + -0.524438,0.851206,-0.020315,-0.524438,0.851206,-0.020315,-0.861856,0.162630,0.480371,-0.861856,0.162630,0.480371, + -0.861856,0.162630,0.480371,-0.861856,0.162630,0.480371,-0.849136,0.231882,-0.474551,-0.849136,0.231882,-0.474551, + -0.849136,0.231882,-0.474551,-0.849136,0.231882,-0.474551,-0.953912,0.014098,-0.299755,-0.953912,0.014098,-0.299755, + -0.953912,0.014098,-0.299755,-0.953912,0.014098,-0.299755,-0.794430,-0.078154,0.602306,-0.794430,-0.078154,0.602306, + -0.794430,-0.078154,0.602306,-0.794430,-0.078154,0.602306,-0.944570,-0.270772,0.185659,-0.944570,-0.270772,0.185659, + -0.944570,-0.270772,0.185659,-0.944570,-0.270772,0.185659,0.953738,-0.189688,0.233242,0.953738,-0.189688,0.233242, + 0.953738,-0.189688,0.233242,0.953738,-0.189688,0.233242,-0.271767,-0.926660,0.259698,-0.271767,-0.926660,0.259698, + -0.271767,-0.926660,0.259698,0.953738,-0.189692,0.233241,0.953738,-0.189692,0.233241,0.953738,-0.189692,0.233241, + 0.953738,-0.189692,0.233241,0.953738,-0.189691,0.233241,0.953738,-0.189691,0.233241,0.953738,-0.189691,0.233241, + 0.953738,-0.189691,0.233241,0.953738,-0.189692,0.233242,0.953738,-0.189692,0.233242,0.953738,-0.189692,0.233242, + 0.953738,-0.189692,0.233242,-0.230623,-0.080468,0.969710,-0.230623,-0.080468,0.969710,-0.230623,-0.080468,0.969710, + -0.230623,-0.080468,0.969710,0.230624,0.080468,-0.969710,0.230624,0.080468,-0.969710,0.230624,0.080468,-0.969710, + 0.230624,0.080468,-0.969710,0.962212,-0.116313,0.246212,0.962212,-0.116313,0.246212,0.962212,-0.116313,0.246212, + 0.962212,-0.116313,0.246212,0.316297,0.389327,-0.865090,0.316297,0.389327,-0.865090,0.316297,0.389327,-0.865090, + -0.134453,-0.182789,0.973915,-0.134453,-0.182789,0.973915,-0.134453,-0.182789,0.973915,-0.134453,-0.182789,0.973915, + 0.864437,-0.462675,0.196671,0.864437,-0.462675,0.196671,0.864437,-0.462675,0.196671,0.864437,-0.462675,0.196671, + -0.315779,-0.385693,0.866905,-0.315779,-0.385693,0.866905,-0.315779,-0.385693,0.866905,0.234720,0.082662,-0.968542, + 0.234720,0.082662,-0.968542,0.234720,0.082662,-0.968542,0.234720,0.082662,-0.968542,0.234720,0.082662,-0.968542, + 0.775494,0.582008,0.244696,0.775494,0.582008,0.244696,0.775494,0.582008,0.244696,0.775494,0.582008,0.244696, + -0.234747,-0.082975,0.968509,-0.234747,-0.082975,0.968509,-0.234747,-0.082975,0.968509,-0.234747,-0.082975,0.968509, + -0.234747,-0.082975,0.968509,-0.433300,-0.820978,-0.371814,-0.433300,-0.820978,-0.371814,-0.433300,-0.820978,-0.371814, + -0.433300,-0.820978,-0.371814,-0.119315,-0.943151,-0.310211,-0.119315,-0.943151,-0.310211,-0.119315,-0.943151,-0.310211, + -0.119315,-0.943151,-0.310211,0.114667,0.177699,-0.977381,0.114667,0.177699,-0.977381,0.114667,0.177699,-0.977381, + 0.114667,0.177699,-0.977381,0.279705,0.065409,-0.957855,0.279705,0.065409,-0.957855,0.279705,0.065409,-0.957855, + 0.279705,0.065409,-0.957855,-0.263616,-0.069034,0.962154,-0.263616,-0.069034,0.962154,-0.263616,-0.069034,0.962154, + -0.263616,-0.069034,0.962154,-0.949624,0.205276,-0.236804,-0.949624,0.205276,-0.236804,-0.949624,0.205276,-0.236804, + -0.949624,0.205276,-0.236804,-0.948377,0.205593,-0.241480,-0.948377,0.205593,-0.241480,-0.948377,0.205593,-0.241480, + -0.948377,0.205593,-0.241480,-0.949627,0.205273,-0.236793,-0.949627,0.205273,-0.236793,-0.949627,0.205273,-0.236793, + -0.949627,0.205273,-0.236793,0.920823,-0.290746,0.259907,0.920823,-0.290746,0.259907,0.920823,-0.290746,0.259907, + 0.920823,-0.290746,0.259907,-0.948378,0.205588,-0.241481,-0.948378,0.205588,-0.241481,-0.948378,0.205588,-0.241481, + -0.948378,0.205588,-0.241481,0.950382,-0.152131,0.271349,0.950382,-0.152131,0.271349,0.950382,-0.152131,0.271349, + 0.950382,-0.152131,0.271349,-0.939822,0.221905,-0.259794,-0.939822,0.221905,-0.259794,-0.939822,0.221905,-0.259794, + -0.939822,0.221905,-0.259794,-0.939953,0.224101,-0.257424,-0.939953,0.224101,-0.257424,-0.939953,0.224101,-0.257424, + -0.939953,0.224101,-0.257424,-0.950382,0.152131,-0.271348,-0.950382,0.152131,-0.271348,-0.950382,0.152131,-0.271348, + -0.950382,0.152131,-0.271348,0.939953,-0.224101,0.257425,0.939953,-0.224101,0.257425,0.939953,-0.224101,0.257425, + 0.939953,-0.224101,0.257425,0.939821,-0.221909,0.259794,0.939821,-0.221909,0.259794,0.939821,-0.221909,0.259794, + 0.939821,-0.221909,0.259794,-0.920823,0.290746,-0.259907,-0.920823,0.290746,-0.259907,-0.920823,0.290746,-0.259907, + -0.920823,0.290746,-0.259907,-0.949625,0.205273,-0.236803,-0.949625,0.205273,-0.236803,-0.949625,0.205273,-0.236803, + -0.949625,0.205273,-0.236803,-0.948378,0.205590,-0.241480,-0.948378,0.205590,-0.241480,-0.948378,0.205590,-0.241480, + -0.948378,0.205590,-0.241480,-0.949625,0.205274,-0.236802,-0.949625,0.205274,-0.236802,-0.949625,0.205274,-0.236802, + -0.949625,0.205274,-0.236802,-0.948402,0.205587,-0.241387,-0.948402,0.205587,-0.241387,-0.948402,0.205587,-0.241387, + -0.948402,0.205587,-0.241387,-0.949626,0.205272,-0.236800,-0.949626,0.205272,-0.236800,-0.949626,0.205272,-0.236800, + -0.949626,0.205272,-0.236800,-0.949628,0.205261,-0.236802,-0.949628,0.205261,-0.236802,-0.949628,0.205261,-0.236802, + -0.949628,0.205261,-0.236802,-0.158980,-0.986111,-0.048063,-0.158980,-0.986111,-0.048063,-0.158980,-0.986111,-0.048063, + -0.158980,-0.986111,-0.048063,-0.282828,-0.953479,-0.104338,-0.282828,-0.953479,-0.104338,-0.282828,-0.953479,-0.104338, + -0.282828,-0.953479,-0.104338,-0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031,-0.182397,-0.976473,-0.115031, + 0.411982,-0.892345,-0.184364,0.411982,-0.892345,-0.184364,0.411982,-0.892345,-0.184364,-0.968713,0.196278,-0.151890, + -0.968713,0.196278,-0.151890,-0.968713,0.196278,-0.151890,-0.968713,0.196278,-0.151890,0.968712,-0.196276,0.151900, + 0.968712,-0.196276,0.151900,0.968712,-0.196276,0.151900,0.968712,-0.196276,0.151900,0.129426,0.979864,0.152035, + 0.129426,0.979864,0.152035,0.129426,0.979864,0.152035,0.129426,0.979864,0.152035,-0.129430,-0.979864,-0.152037, + -0.129430,-0.979864,-0.152037,-0.129430,-0.979864,-0.152037,-0.129430,-0.979864,-0.152037,-0.171234,-0.086129,0.981458, + -0.171234,-0.086129,0.981458,-0.171234,-0.086129,0.981458,-0.171234,-0.086129,0.981458,-0.948606,0.202659,-0.243057, + -0.948606,0.202659,-0.243057,-0.948606,0.202659,-0.243057,-0.948606,0.202659,-0.243057,0.948602,-0.202661,0.243067, + 0.948602,-0.202661,0.243067,0.948602,-0.202661,0.243067,0.948602,-0.202661,0.243067,0.136964,0.980492,0.140982, + 0.136964,0.980492,0.140982,0.136964,0.980492,0.140982,0.136964,0.980492,0.140982,-0.136973,-0.980491,-0.140981, + -0.136973,-0.980491,-0.140981,-0.136973,-0.980491,-0.140981,-0.136973,-0.980491,-0.140981,-0.261103,-0.067741,0.962931, + -0.261103,-0.067741,0.962931,-0.261103,-0.067741,0.962931,-0.261103,-0.067741,0.962931,-0.903083,0.219500,-0.369136, + -0.903083,0.219500,-0.369136,-0.903083,0.219500,-0.369136,-0.903083,0.219500,-0.369136,0.903078,-0.219503,0.369146, + 0.903078,-0.219503,0.369146,0.903078,-0.219503,0.369146,0.903078,-0.219503,0.369146,0.136967,0.980492,0.140979, + 0.136967,0.980492,0.140979,0.136967,0.980492,0.140979,0.136967,0.980492,0.140979,-0.106476,-0.963149,-0.246995, + -0.106476,-0.963149,-0.246995,-0.106476,-0.963149,-0.246995,-0.106476,-0.963149,-0.246995,-0.259194,-0.055022,0.964257, + -0.259194,-0.055022,0.964257,-0.259194,-0.055022,0.964257,-0.259194,-0.055022,0.964257,-0.947727,0.206477,-0.243273, + -0.947727,0.206477,-0.243273,-0.947727,0.206477,-0.243273,-0.947727,0.206477,-0.243273,0.947721,-0.206482,0.243288, + 0.947721,-0.206482,0.243288,0.947721,-0.206482,0.243288,0.947721,-0.206482,0.243288,-0.133905,-0.979268,-0.151996, + -0.133905,-0.979268,-0.151996,-0.133905,-0.979268,-0.151996,-0.133905,-0.979268,-0.151996,-0.263368,-0.083228,0.961099, + -0.263368,-0.083228,0.961099,-0.263368,-0.083228,0.961099,-0.263368,-0.083228,0.961099,0.318860,-0.552957,0.769783, + 0.318860,-0.552957,0.769783,0.318860,-0.552957,0.769783,0.265724,-0.709053,0.653173,0.265724,-0.709053,0.653173, + 0.265724,-0.709053,0.653173,-0.071445,-0.611812,-0.787770,-0.071445,-0.611812,-0.787770,-0.071445,-0.611812,-0.787770, + -0.071445,-0.611812,-0.787770,0.071445,0.611812,0.787770,0.071445,0.611812,0.787770,0.071445,0.611812,0.787770, + 0.071445,0.611812,0.787770,0.423288,-0.771613,0.474806,0.423288,-0.771613,0.474806,0.423288,-0.771613,0.474806, + 0.423288,-0.771613,0.474806,-0.675733,-0.540520,-0.501221,-0.675733,-0.540520,-0.501221,-0.675733,-0.540520,-0.501221, + -0.675733,-0.540520,-0.501221,0.673079,0.541903,0.503295,0.673079,0.541903,0.503295,0.673079,0.541903,0.503295, + 0.673079,0.541903,0.503295,0.174599,-0.807427,0.563539,0.174599,-0.807427,0.563539,0.174599,-0.807427,0.563539, + 0.174599,-0.807427,0.563539,-0.380739,-0.734296,-0.562003,-0.380739,-0.734296,-0.562003,-0.380739,-0.734296,-0.562003, + -0.380739,-0.734296,-0.562003,0.390909,0.733507,0.556020,0.390909,0.733507,0.556020,0.390909,0.733507,0.556020, + 0.390909,0.733507,0.556020,0.046593,-0.452032,0.890784,0.046593,-0.452032,0.890784,0.046593,-0.452032,0.890784, + 0.046593,-0.452032,0.890784,0.189298,0.977918,0.088560,0.189298,0.977918,0.088560,0.189298,0.977918,0.088560, + 0.206737,0.976574,0.059684,0.206737,0.976574,0.059684,0.206737,0.976574,0.059684,0.206737,0.976574,0.059684, + 0.151693,0.985302,0.078538,0.151693,0.985302,0.078538,0.151693,0.985302,0.078538,-0.945506,0.206585,-0.251678, + -0.945506,0.206585,-0.251678,-0.945506,0.206585,-0.251678,-0.945506,0.206585,-0.251678,0.949625,-0.205276,0.236798, + 0.949625,-0.205276,0.236798,0.949625,-0.205276,0.236798,0.949625,-0.205276,0.236798,-0.514602,0.336027,-0.788841, + -0.514602,0.336027,-0.788841,-0.514602,0.336027,-0.788841,-0.514602,0.336027,-0.788841,0.677010,0.690551,-0.254552, + 0.677010,0.690551,-0.254552,0.677010,0.690551,-0.254552,0.677010,0.690551,-0.254552,-0.973334,0.122064,0.194220, + -0.973334,0.122064,0.194220,-0.973334,0.122064,0.194220,-0.684966,-0.676014,0.271712,-0.684966,-0.676014,0.271712, + -0.684966,-0.676014,0.271712,-0.684966,-0.676014,0.271712,0.522285,-0.336097,0.783746,0.522285,-0.336097,0.783746, + 0.522285,-0.336097,0.783746,0.522285,-0.336097,0.783746,-0.973338,0.122030,0.194220,-0.973338,0.122030,0.194220, + -0.973338,0.122030,0.194220,0.953738,-0.189692,0.233241,0.953738,-0.189692,0.233241,0.953738,-0.189692,0.233241, + -0.878300,0.198026,-0.435172,-0.878300,0.198026,-0.435172,-0.878300,0.198026,-0.435172,-0.878300,0.198026,-0.435172, + -0.831778,0.522238,-0.188183,-0.831778,0.522238,-0.188183,-0.831778,0.522238,-0.188183,-0.831778,0.522238,-0.188183, + 0.953739,-0.189687,0.233241,0.953739,-0.189687,0.233241,0.953739,-0.189687,0.233241,0.953738,-0.189691,0.233241, + 0.953738,-0.189691,0.233241,0.953738,-0.189691,0.233241,0.953738,-0.189691,0.233241,0.953738,-0.189692,0.233241, + 0.953738,-0.189692,0.233241,0.953738,-0.189692,0.233241,0.953738,-0.189687,0.233242,0.953738,-0.189687,0.233242, + 0.953738,-0.189687,0.233242,0.255428,0.088359,-0.962782,0.255428,0.088359,-0.962782,0.255428,0.088359,-0.962782, + 0.255428,0.088359,-0.962782,-0.029084,-0.996691,-0.075899,-0.029084,-0.996691,-0.075899,-0.029084,-0.996691,-0.075899, + -0.029084,-0.996691,-0.075899,0.951780,-0.193339,0.238189,0.951780,-0.193339,0.238189,0.951780,-0.193339,0.238189, + 0.951780,-0.193339,0.238189,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911,0.029082,0.996690,0.075911, + 0.029082,0.996690,0.075911,-0.962404,0.114293,-0.246404,-0.962404,0.114293,-0.246404,-0.962404,0.114293,-0.246404, + -0.962404,0.114293,-0.246404,0.032708,0.997480,0.062963,0.032708,0.997480,0.062963,0.032708,0.997480,0.062963, + 0.032708,0.997480,0.062963,0.967682,-0.049974,0.247171,0.967682,-0.049974,0.247171,0.967682,-0.049974,0.247171, + 0.967682,-0.049974,0.247171,-0.017374,-0.995469,-0.093490,-0.017374,-0.995469,-0.093490,-0.017374,-0.995469,-0.093490, + -0.017374,-0.995469,-0.093490,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078, + -0.966545,0.047405,-0.252078,-0.255431,-0.088359,0.962781,-0.255431,-0.088359,0.962781,-0.255431,-0.088359,0.962781, + -0.255431,-0.088359,0.962781,-0.443559,-0.864749,-0.235509,-0.443559,-0.864749,-0.235509,-0.443559,-0.864749,-0.235509, + -0.443559,-0.864749,-0.235509,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912,0.029085,0.996690,0.075912, + 0.029085,0.996690,0.075912,0.966545,-0.047409,0.252078,0.966545,-0.047409,0.252078,0.966545,-0.047409,0.252078, + 0.966545,-0.047409,0.252078,-0.029085,-0.996689,-0.075922,-0.029085,-0.996689,-0.075922,-0.029085,-0.996689,-0.075922, + -0.029085,-0.996689,-0.075922,-0.966545,0.047408,-0.252078,-0.966545,0.047408,-0.252078,-0.966545,0.047408,-0.252078, + -0.966545,0.047408,-0.252078,0.262247,0.065680,-0.962763,0.262247,0.065680,-0.962763,0.262247,0.065680,-0.962763, + 0.262247,0.065680,-0.962763,0.395861,0.061623,-0.916241,0.395861,0.061623,-0.916241,0.395861,0.061623,-0.916241, + 0.395861,0.061623,-0.916241,0.029082,0.996688,0.075937,0.029082,0.996688,0.075937,0.029082,0.996688,0.075937, + 0.029082,0.996688,0.075937,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077, + 0.966545,-0.047405,0.252077,0.233151,-0.971329,0.046477,0.233151,-0.971329,0.046477,0.233151,-0.971329,0.046477, + 0.233151,-0.971329,0.046477,-0.976084,-0.217387,0.001855,-0.976084,-0.217387,0.001855,-0.976084,-0.217387,0.001855, + -0.976084,-0.217387,0.001855,0.358236,0.060507,-0.931668,0.358236,0.060507,-0.931668,0.358236,0.060507,-0.931668, + 0.358236,0.060507,-0.931668,-0.993506,0.037183,-0.107534,-0.993506,0.037183,-0.107534,-0.993506,0.037183,-0.107534, + -0.993506,0.037183,-0.107534,0.049311,0.995479,0.081184,0.049311,0.995479,0.081184,0.049311,0.995479,0.081184, + 0.049311,0.995479,0.081184,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078,0.966545,-0.047405,0.252078, + 0.966545,-0.047405,0.252078,-0.072227,-0.993578,-0.087098,-0.072227,-0.993578,-0.087098,-0.072227,-0.993578,-0.087098, + -0.072227,-0.993578,-0.087098,-0.966545,0.047406,-0.252079,-0.966545,0.047406,-0.252079,-0.966545,0.047406,-0.252079, + -0.966545,0.047406,-0.252079,0.355805,0.068814,-0.932023,0.355805,0.068814,-0.932023,0.355805,0.068814,-0.932023, + 0.355805,0.068814,-0.932023,0.966546,-0.047408,0.252076,0.966546,-0.047408,0.252076,0.966546,-0.047408,0.252076, + 0.966546,-0.047408,0.252076,0.029085,0.996689,0.075926,0.029085,0.996689,0.075926,0.029085,0.996689,0.075926, + 0.029085,0.996689,0.075926,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076, + 0.966546,-0.047405,0.252076,-0.029084,-0.996689,-0.075926,-0.029084,-0.996689,-0.075926,-0.029084,-0.996689,-0.075926, + -0.029084,-0.996689,-0.075926,-0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077,-0.966546,0.047402,-0.252077, + -0.966546,0.047402,-0.252077,0.262244,0.065680,-0.962764,0.262244,0.065680,-0.962764,0.262244,0.065680,-0.962764, + 0.262244,0.065680,-0.962764,-0.003395,-0.984003,-0.178118,-0.003395,-0.984003,-0.178118,-0.003395,-0.984003,-0.178118, + -0.003395,-0.984003,-0.178118,0.025277,0.996868,0.074929,0.025277,0.996868,0.074929,0.025277,0.996868,0.074929, + 0.025277,0.996868,0.074929,0.966545,-0.047407,0.252077,0.966545,-0.047407,0.252077,0.966545,-0.047407,0.252077, + 0.966545,-0.047407,0.252077,-0.029086,-0.996691,-0.075905,-0.029086,-0.996691,-0.075905,-0.029086,-0.996691,-0.075905, + -0.029086,-0.996691,-0.075905,-0.992149,0.038027,-0.119139,-0.992149,0.038027,-0.119139,-0.992149,0.038027,-0.119139, + -0.992149,0.038027,-0.119139,0.290919,0.064221,-0.954590,0.290919,0.064221,-0.954590,0.290919,0.064221,-0.954590, + 0.290919,0.064221,-0.954590,-0.859874,0.084488,-0.503466,-0.859874,0.084488,-0.503466,-0.859874,0.084488,-0.503466, + -0.859874,0.084488,-0.503466,0.338128,0.061662,-0.939078,0.338128,0.061662,-0.939078,0.338128,0.061662,-0.939078, + 0.338128,0.061662,-0.939078,0.993506,-0.037182,0.107536,0.993506,-0.037182,0.107536,0.993506,-0.037182,0.107536, + 0.993506,-0.037182,0.107536,0.906637,-0.058284,0.417866,0.906637,-0.058284,0.417866,0.906637,-0.058284,0.417866, + 0.906637,-0.058284,0.417866,0.003401,0.984003,0.178118,0.003401,0.984003,0.178118,0.003401,0.984003,0.178118, + 0.003401,0.984003,0.178118,0.057073,0.998271,-0.014062,0.057073,0.998271,-0.014062,0.057073,0.998271,-0.014062, + 0.057073,0.998271,-0.014062,0.966543,-0.047408,0.252086,0.966543,-0.047408,0.252086,0.966543,-0.047408,0.252086, + 0.966543,-0.047408,0.252086,0.112308,0.988892,0.097358,0.112308,0.988892,0.097358,0.112308,0.988892,0.097358, + 0.112308,0.988892,0.097358,0.266675,-0.042904,-0.962831,0.266675,-0.042904,-0.962831,0.266675,-0.042904,-0.962831, + 0.266675,-0.042904,-0.962831,-0.479341,-0.088757,-0.873129,-0.479341,-0.088757,-0.873129,-0.479341,-0.088757,-0.873129, + -0.479341,-0.088757,-0.873129,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076,0.966546,-0.047405,0.252076, + 0.966546,-0.047405,0.252076,0.017622,0.993056,0.116316,0.017622,0.993056,0.116316,0.017622,0.993056,0.116316, + 0.017622,0.993056,0.116316,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,-0.855566,0.035022,-0.516507,-0.855566,0.035022,-0.516507,-0.855566,0.035022,-0.516507, + -0.855566,0.035022,-0.516507,0.126152,-0.991998,0.005004,0.126152,-0.991998,0.005004,0.126152,-0.991998,0.005004, + 0.126152,-0.991998,0.005004,-0.349115,-0.235118,0.907104,-0.349115,-0.235118,0.907104,-0.349115,-0.235118,0.907104, + -0.349115,-0.235118,0.907104,0.349906,0.060991,-0.934797,0.349906,0.060991,-0.934797,0.349906,0.060991,-0.934797, + 0.349906,0.060991,-0.934797,-0.966545,0.047409,-0.252078,-0.966545,0.047409,-0.252078,-0.966545,0.047409,-0.252078, + -0.966545,0.047409,-0.252078,-0.029084,-0.996689,-0.075927,-0.029084,-0.996689,-0.075927,-0.029084,-0.996689,-0.075927, + -0.029084,-0.996689,-0.075927,0.966545,-0.047407,0.252079,0.966545,-0.047407,0.252079,0.966545,-0.047407,0.252079, + 0.966545,-0.047407,0.252079,0.029083,0.996690,0.075910,0.029083,0.996690,0.075910,0.029083,0.996690,0.075910, + 0.029083,0.996690,0.075910,-0.017625,-0.993058,-0.116297,-0.017625,-0.993058,-0.116297,-0.017625,-0.993058,-0.116297, + -0.017625,-0.993058,-0.116297,-0.966546,0.047404,-0.252074,-0.966546,0.047404,-0.252074,-0.966546,0.047404,-0.252074, + -0.966546,0.047404,-0.252074,0.272445,0.107126,-0.956189,0.272445,0.107126,-0.956189,0.272445,0.107126,-0.956189, + 0.272445,0.107126,-0.956189,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918,0.029083,0.996690,0.075918, + 0.029083,0.996690,0.075918,0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077,0.966546,-0.047402,0.252077, + 0.966546,-0.047402,0.252077,-0.029083,-0.996687,-0.075950,-0.029083,-0.996687,-0.075950,-0.029083,-0.996687,-0.075950, + -0.029083,-0.996687,-0.075950,-0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075, + -0.966546,0.047404,-0.252075,0.266470,0.065469,-0.961617,0.266470,0.065469,-0.961617,0.266470,0.065469,-0.961617, + 0.266470,0.065469,-0.961617,0.255104,0.075351,-0.963973,0.255104,0.075351,-0.963973,0.255104,0.075351,-0.963973, + 0.255104,0.075351,-0.963973,-0.029081,-0.996691,-0.075906,-0.029081,-0.996691,-0.075906,-0.029081,-0.996691,-0.075906, + -0.029081,-0.996691,-0.075906,0.971908,-0.046222,0.230779,0.971908,-0.046222,0.230779,0.971908,-0.046222,0.230779, + 0.971908,-0.046222,0.230779,0.029087,0.996689,0.075927,0.029087,0.996689,0.075927,0.029087,0.996689,0.075927, + 0.029087,0.996689,0.075927,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.269017,-0.063084,0.961067,-0.269017,-0.063084,0.961067,-0.269017,-0.063084,0.961067, + 0.081414,0.995377,-0.050952,0.081414,0.995377,-0.050952,0.081414,0.995377,-0.050952,0.081414,0.995377,-0.050952, + -0.027995,0.991010,0.130824,-0.027995,0.991010,0.130824,-0.027995,0.991010,0.130824,-0.027995,0.991010,0.130824, + -0.383227,0.081265,-0.920072,-0.383227,0.081265,-0.920072,-0.383227,0.081265,-0.920072,-0.383227,0.081265,-0.920072, + -0.022560,-0.998251,-0.054650,-0.022560,-0.998251,-0.054650,-0.022560,-0.998251,-0.054650,-0.022560,-0.998251,-0.054650, + -0.102387,-0.985281,-0.136890,-0.102387,-0.985281,-0.136890,-0.102387,-0.985281,-0.136890,-0.102387,-0.985281,-0.136890, + -0.377322,0.081282,-0.922508,-0.377322,0.081282,-0.922508,-0.377322,0.081282,-0.922508,-0.377322,0.081282,-0.922508, + 0.105987,0.993601,0.039030,0.105987,0.993601,0.039030,0.105987,0.993601,0.039030,0.105987,0.993601,0.039030, + 0.550421,-0.000168,-0.834887,0.550421,-0.000168,-0.834887,0.550421,-0.000168,-0.834887,0.550421,-0.000168,-0.834887, + 0.030679,-0.990588,-0.133394,0.030679,-0.990588,-0.133394,0.030679,-0.990588,-0.133394,0.030679,-0.990588,-0.133394, + 0.029762,0.998457,-0.046885,0.029762,0.998457,-0.046885,0.029762,0.998457,-0.046885,0.029762,0.998457,-0.046885, + 0.536512,0.048520,-0.842496,0.536512,0.048520,-0.842496,0.536512,0.048520,-0.842496,0.536512,0.048520,-0.842496, + -0.055868,-0.997264,-0.048403,-0.055868,-0.997264,-0.048403,-0.055868,-0.997264,-0.048403,-0.055868,-0.997264,-0.048403, + -0.771970,0.042597,-0.634230,-0.771970,0.042597,-0.634230,-0.771970,0.042597,-0.634230,-0.771970,0.042597,-0.634230, + -0.529709,-0.252029,0.809870,-0.529709,-0.252029,0.809870,-0.529709,-0.252029,0.809870,0.366688,-0.030644,0.929839, + 0.366688,-0.030644,0.929839,0.366688,-0.030644,0.929839,0.366688,-0.030644,0.929839,0.727393,0.002500,-0.686216, + 0.727393,0.002500,-0.686216,0.727393,0.002500,-0.686216,0.727393,0.002500,-0.686216,-0.970744,0.031817,-0.237999, + -0.970744,0.031817,-0.237999,-0.970744,0.031817,-0.237999,-0.970744,0.031817,-0.237999,-0.365334,0.049107,-0.929580, + -0.365334,0.049107,-0.929580,-0.365334,0.049107,-0.929580,-0.365334,0.049107,-0.929580,-0.224958,-0.969796,0.094289, + -0.224958,-0.969796,0.094289,-0.224958,-0.969796,0.094289,-0.224958,-0.969796,0.094289,-0.003355,-0.990059,-0.140615, + -0.003355,-0.990059,-0.140615,-0.003355,-0.990059,-0.140615,-0.003355,-0.990059,-0.140615,0.074386,0.995689,0.055411, + 0.074386,0.995689,0.055411,0.074386,0.995689,0.055411,0.074386,0.995689,0.055411,0.973925,-0.045407,0.222281, + 0.973925,-0.045407,0.222281,0.973925,-0.045407,0.222281,0.973925,-0.045407,0.222281,0.033906,0.997762,0.057634, + 0.033906,0.997762,0.057634,0.033906,0.997762,0.057634,0.033906,0.997762,0.057634,-0.125933,0.992027,-0.004938, + -0.125933,0.992027,-0.004938,-0.125933,0.992027,-0.004938,-0.125933,0.992027,-0.004938,0.032019,0.997446,0.063840, + 0.032019,0.997446,0.063840,0.032019,0.997446,0.063840,0.032019,0.997446,0.063840,0.031648,0.997304,0.066205, + 0.031648,0.997304,0.066205,0.031648,0.997304,0.066205,0.031648,0.997304,0.066205,0.999086,-0.031364,0.029029, + 0.999086,-0.031364,0.029029,0.999086,-0.031364,0.029029,0.999086,-0.031364,0.029029,-0.031648,-0.997304,-0.066206, + -0.031648,-0.997304,-0.066206,-0.031648,-0.997304,-0.066206,-0.031648,-0.997304,-0.066206,-0.999086,0.031366,-0.029028, + -0.999086,0.031366,-0.029028,-0.999086,0.031366,-0.029028,-0.999086,0.031366,-0.029028,-0.507120,0.860944,-0.040062, + -0.507120,0.860944,-0.040062,-0.507120,0.860944,-0.040062,-0.507120,0.860944,-0.040062,-0.255024,-0.072442,0.964217, + -0.255024,-0.072442,0.964217,-0.255024,-0.072442,0.964217,-0.255024,-0.072442,0.964217,0.507136,-0.860922,0.040332, + 0.507136,-0.860922,0.040332,0.507136,-0.860922,0.040332,0.507136,-0.860922,0.040332,-0.793097,-0.452326,0.407920, + -0.793097,-0.452326,0.407920,-0.793097,-0.452326,0.407920,-0.793097,-0.452326,0.407920,0.032984,0.997601,0.060858, + 0.032984,0.997601,0.060858,0.032984,0.997601,0.060858,0.032984,0.997601,0.060858,-0.032984,-0.997602,-0.060850, + -0.032984,-0.997602,-0.060850,-0.032984,-0.997602,-0.060850,-0.032984,-0.997602,-0.060850,-0.964574,0.047904,-0.259425, + -0.964574,0.047904,-0.259425,-0.964574,0.047904,-0.259425,-0.964574,0.047904,-0.259425,0.956516,-0.049801,0.287397, + 0.956516,-0.049801,0.287397,0.956516,-0.049801,0.287397,0.956516,-0.049801,0.287397,0.032035,0.997388,0.064737, + 0.032035,0.997388,0.064737,0.032035,0.997388,0.064737,0.032035,0.997388,0.064737,-0.033858,-0.997750,-0.057865, + -0.033858,-0.997750,-0.057865,-0.033858,-0.997750,-0.057865,-0.033858,-0.997750,-0.057865,-0.956518,0.049804,-0.287388, + -0.956518,0.049804,-0.287388,-0.956518,0.049804,-0.287388,-0.956518,0.049804,-0.287388,-0.287052,-0.064422,0.955746, + -0.287052,-0.064422,0.955746,-0.287052,-0.064422,0.955746,-0.287052,-0.064422,0.955746,-0.998173,0.024932,0.055033, + -0.998173,0.024932,0.055033,-0.998173,0.024932,0.055033,-0.998173,0.024932,0.055033,0.998173,-0.024934,-0.055033, + 0.998173,-0.024934,-0.055033,0.998173,-0.024934,-0.055033,0.998173,-0.024934,-0.055033,-0.031861,-0.997351,-0.065389, + -0.031861,-0.997351,-0.065389,-0.031861,-0.997351,-0.065389,-0.031861,-0.997351,-0.065389,-0.959331,0.046967,-0.278348, + -0.959331,0.046967,-0.278348,-0.959331,0.046967,-0.278348,-0.959331,0.046967,-0.278348,0.959331,-0.046967,0.278349, + 0.959331,-0.046967,0.278349,0.959331,-0.046967,0.278349,0.959331,-0.046967,0.278349,-0.049594,-0.998767,0.002331, + -0.049594,-0.998767,0.002331,-0.049594,-0.998767,0.002331,-0.049594,-0.998767,0.002331,0.959504,-0.049129,0.277379, + 0.959504,-0.049129,0.277379,0.959504,-0.049129,0.277379,0.959504,-0.049129,0.277379,-0.959502,0.049128,-0.277387, + -0.959502,0.049128,-0.277387,-0.959502,0.049128,-0.277387,-0.959502,0.049128,-0.277387,0.033555,0.997694,0.058999, + 0.033555,0.997694,0.058999,0.033555,0.997694,0.058999,0.033555,0.997694,0.058999,0.973668,-0.045428,0.223397, + 0.973668,-0.045428,0.223397,0.973668,-0.045428,0.223397,0.973668,-0.045428,0.223397,-0.973666,0.045431,-0.223408, + -0.973666,0.045431,-0.223408,-0.973666,0.045431,-0.223408,-0.973666,0.045431,-0.223408,0.033476,0.997681,0.059266, + 0.033476,0.997681,0.059266,0.033476,0.997681,0.059266,0.033476,0.997681,0.059266,-0.034093,-0.997799,-0.056869, + -0.034093,-0.997799,-0.056869,-0.034093,-0.997799,-0.056869,-0.034093,-0.997799,-0.056869,-0.566616,-0.807145,-0.165720, + -0.566616,-0.807145,-0.165720,-0.566616,-0.807145,-0.165720,-0.566616,-0.807145,-0.165720,0.034105,0.997799,0.056876, + 0.034105,0.997799,0.056876,0.034105,0.997799,0.056876,0.034105,0.997799,0.056876,0.975701,-0.044806,0.214474, + 0.975701,-0.044806,0.214474,0.975701,-0.044806,0.214474,0.975701,-0.044806,0.214474,-0.031513,-0.997274,-0.066721, + -0.031513,-0.997274,-0.066721,-0.031513,-0.997274,-0.066721,-0.031513,-0.997274,-0.066721,0.031519,0.997274,0.066717, + 0.031519,0.997274,0.066717,0.031519,0.997274,0.066717,0.031519,0.997274,0.066717,0.975522,-0.044866,0.215277, + 0.975522,-0.044866,0.215277,0.975522,-0.044866,0.215277,0.975522,-0.044866,0.215277,-0.026660,-0.996015,-0.085113, + -0.026660,-0.996015,-0.085113,-0.026660,-0.996015,-0.085113,-0.026660,-0.996015,-0.085113,0.026654,0.996015,0.085114, + 0.026654,0.996015,0.085114,0.026654,0.996015,0.085114,0.026654,0.996015,0.085114,0.975523,-0.044860,0.215272, + 0.975523,-0.044860,0.215272,0.975523,-0.044860,0.215272,0.975523,-0.044860,0.215272,-0.975542,0.044856,-0.215188, + -0.975542,0.044856,-0.215188,-0.975542,0.044856,-0.215188,-0.975542,0.044856,-0.215188,-0.019324,-0.993441,-0.112706, + -0.019324,-0.993441,-0.112706,-0.019324,-0.993441,-0.112706,-0.019324,-0.993441,-0.112706,0.019329,0.993440,0.112709, + 0.019329,0.993440,0.112709,0.019329,0.993440,0.112709,0.019329,0.993440,0.112709,0.975542,-0.044857,0.215186, + 0.975542,-0.044857,0.215186,0.975542,-0.044857,0.215186,0.975542,-0.044857,0.215186,-0.276732,-0.064952,0.958749, + -0.276732,-0.064952,0.958749,-0.276732,-0.064952,0.958749,-0.276732,-0.064952,0.958749,-0.994320,0.036627,-0.099928, + -0.994320,0.036627,-0.099928,-0.994320,0.036627,-0.099928,-0.994320,0.036627,-0.099928,-0.023605,-0.994916,-0.097905, + -0.023605,-0.994916,-0.097905,-0.023605,-0.994916,-0.097905,-0.023605,-0.994916,-0.097905,0.994320,-0.036627,0.099928, + 0.994320,-0.036627,0.099928,0.994320,-0.036627,0.099928,0.994320,-0.036627,0.099928,0.023607,0.994916,0.097905, + 0.023607,0.994916,0.097905,0.023607,0.994916,0.097905,0.023607,0.994916,0.097905,-0.970029,0.046473,-0.238504, + -0.970029,0.046473,-0.238504,-0.970029,0.046473,-0.238504,-0.970029,0.046473,-0.238504,-0.029087,-0.996690,-0.075917, + -0.029087,-0.996690,-0.075917,-0.029087,-0.996690,-0.075917,-0.029087,-0.996690,-0.075917,0.970029,-0.046473,0.238505, + 0.970029,-0.046473,0.238505,0.970029,-0.046473,0.238505,0.970029,-0.046473,0.238505,0.029087,0.996690,0.075917, + 0.029087,0.996690,0.075917,0.029087,0.996690,0.075917,0.029087,0.996690,0.075917,-0.970029,0.046472,-0.238502, + -0.970029,0.046472,-0.238502,-0.970029,0.046472,-0.238502,-0.970029,0.046472,-0.238502,-0.032027,-0.997430,-0.064091, + -0.032027,-0.997430,-0.064091,-0.032027,-0.997430,-0.064091,-0.032027,-0.997430,-0.064091,0.970027,-0.046473,0.238510, + 0.970027,-0.046473,0.238510,0.970027,-0.046473,0.238510,0.970027,-0.046473,0.238510,0.029087,0.996690,0.075916, + 0.029087,0.996690,0.075916,0.029087,0.996690,0.075916,0.029087,0.996690,0.075916,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,-0.029082,-0.996690,-0.075911, + -0.029082,-0.996690,-0.075911,-0.029082,-0.996690,-0.075911,-0.029082,-0.996690,-0.075911,0.966545,-0.047404,0.252078, + 0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.966545,-0.047404,0.252078,0.029094,0.996691,0.075899, + 0.029094,0.996691,0.075899,0.029094,0.996691,0.075899,0.029094,0.996691,0.075899,-0.966545,0.047404,-0.252077, + -0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,-0.966545,0.047404,-0.252077,0.412793,0.057916,-0.908982, + 0.412793,0.057916,-0.908982,0.412793,0.057916,-0.908982,0.412793,0.057916,-0.908982,-0.029083,-0.996691,-0.075899, + -0.029083,-0.996691,-0.075899,-0.029083,-0.996691,-0.075899,-0.029083,-0.996691,-0.075899,0.897984,-0.060566,0.435840, + 0.897984,-0.060566,0.435840,0.897984,-0.060566,0.435840,0.897984,-0.060566,0.435840,0.029092,0.996689,0.075923, + 0.029092,0.996689,0.075923,0.029092,0.996689,0.075923,0.029092,0.996689,0.075923,-0.898018,0.059408,-0.435930, + -0.898018,0.059408,-0.435930,-0.898018,0.059408,-0.435930,-0.898018,0.059408,-0.435930,-0.860047,0.020825,-0.509790, + -0.860047,0.020825,-0.509790,-0.860047,0.020825,-0.509790,-0.860047,0.020825,-0.509790,-0.372619,-0.706679,0.601464, + -0.372619,-0.706679,0.601464,-0.372619,-0.706679,0.601464,-0.372619,-0.706679,0.601464,0.858690,-0.017852,0.512185, + 0.858690,-0.017852,0.512185,0.858690,-0.017852,0.512185,0.858690,-0.017852,0.512185,0.372701,0.706307,-0.601851, + 0.372701,0.706307,-0.601851,0.372701,0.706307,-0.601851,0.372701,0.706307,-0.601851,-0.967754,0.053045,-0.246247, + -0.967754,0.053045,-0.246247,-0.967754,0.053045,-0.246247,-0.967754,0.053045,-0.246247,-0.176460,-0.844153,0.506229, + -0.176460,-0.844153,0.506229,-0.176460,-0.844153,0.506229,-0.176460,-0.844153,0.506229,0.967754,-0.053044,0.246248, + 0.967754,-0.053044,0.246248,0.967754,-0.053044,0.246248,0.967754,-0.053044,0.246248,0.177846,0.839617,-0.513238, + 0.177846,0.839617,-0.513238,0.177846,0.839617,-0.513238,0.177846,0.839617,-0.513238,-0.968039,0.053746,-0.244973, + -0.968039,0.053746,-0.244973,-0.968039,0.053746,-0.244973,-0.968039,0.053746,-0.244973,-0.197215,-0.768278,0.608979, + -0.197215,-0.768278,0.608979,-0.197215,-0.768278,0.608979,-0.197215,-0.768278,0.608979,0.968039,-0.053745,0.244974, + 0.968039,-0.053745,0.244974,0.968039,-0.053745,0.244974,0.968039,-0.053745,0.244974,0.197208,0.768277,-0.608982, + 0.197208,0.768277,-0.608982,0.197208,0.768277,-0.608982,0.197208,0.768277,-0.608982,0.964655,-0.054323,0.257855, + 0.964655,-0.054323,0.257855,0.964655,-0.054323,0.257855,0.964655,-0.054323,0.257855,-0.164114,0.643021,0.748058, + -0.164114,0.643021,0.748058,-0.164114,0.643021,0.748058,-0.164114,0.643021,0.748058,-0.964655,0.054322,-0.257854, + -0.964655,0.054322,-0.257854,-0.964655,0.054322,-0.257854,-0.964655,0.054322,-0.257854,0.164119,-0.643020,-0.748058, + 0.164119,-0.643020,-0.748058,0.164119,-0.643020,-0.748058,0.164119,-0.643020,-0.748058,0.964659,-0.054308,0.257844, + 0.964659,-0.054308,0.257844,0.964659,-0.054308,0.257844,0.964659,-0.054308,0.257844,-0.170644,0.620111,0.765730, + -0.170644,0.620111,0.765730,-0.170644,0.620111,0.765730,-0.170644,0.620111,0.765730,-0.964659,0.054308,-0.257843, + -0.964659,0.054308,-0.257843,-0.964659,0.054308,-0.257843,-0.964659,0.054308,-0.257843,0.170640,-0.620108,-0.765734, + 0.170640,-0.620108,-0.765734,0.170640,-0.620108,-0.765734,0.170640,-0.620108,-0.765734,0.113175,-0.923550,-0.366397, + 0.113175,-0.923550,-0.366397,0.113175,-0.923550,-0.366397,0.113175,-0.923550,-0.366397,0.917257,0.049260,0.395237, + 0.917257,0.049260,0.395237,0.917257,0.049260,0.395237,0.917257,0.049260,0.395237,-0.109408,0.925446,0.362739, + -0.109408,0.925446,0.362739,-0.109408,0.925446,0.362739,-0.109408,0.925446,0.362739,0.502309,-0.106568,0.858096, + 0.502309,-0.106568,0.858096,0.502309,-0.106568,0.858096,0.502309,-0.106568,0.858096,0.253730,0.941923,0.220006, + 0.253730,0.941923,0.220006,0.253730,0.941923,0.220006,0.253730,0.941923,0.220006,-0.841620,0.068173,0.535751, + -0.841620,0.068173,0.535751,-0.841620,0.068173,0.535751,-0.841620,0.068173,0.535751,-0.254424,-0.941512,-0.220961, + -0.254424,-0.941512,-0.220961,-0.254424,-0.941512,-0.220961,-0.254424,-0.941512,-0.220961,0.842272,-0.068236,-0.534717, + 0.842272,-0.068236,-0.534717,0.842272,-0.068236,-0.534717,0.842272,-0.068236,-0.534717,0.011131,0.989451,0.144436, + 0.011131,0.989451,0.144436,0.011131,0.989451,0.144436,0.011131,0.989451,0.144436,-0.864345,-0.063233,0.498908, + -0.864345,-0.063233,0.498908,-0.864345,-0.063233,0.498908,-0.864345,-0.063233,0.498908,-0.011132,-0.989452,-0.144434, + -0.011132,-0.989452,-0.144434,-0.011132,-0.989452,-0.144434,-0.011132,-0.989452,-0.144434,0.864349,0.063230,-0.498902, + 0.864349,0.063230,-0.498902,0.864349,0.063230,-0.498902,0.864349,0.063230,-0.498902,-0.979717,0.043488,-0.195613, + -0.979717,0.043488,-0.195613,-0.979717,0.043488,-0.195613,-0.979717,0.043488,-0.195613,0.979715,-0.043490,0.195618, + 0.979715,-0.043490,0.195618,0.979715,-0.043490,0.195618,0.979715,-0.043490,0.195618,0.013670,-0.971856,-0.235180, + 0.013670,-0.971856,-0.235180,0.013670,-0.971856,-0.235180,0.013670,-0.971856,-0.235180,0.976336,-0.044609,0.211607, + 0.976336,-0.044609,0.211607,0.976336,-0.044609,0.211607,0.976336,-0.044609,0.211607,-0.976337,0.044608,-0.211605, + -0.976337,0.044608,-0.211605,-0.976337,0.044608,-0.211605,-0.976337,0.044608,-0.211605,0.044239,0.998855,0.018212, + 0.044239,0.998855,0.018212,0.044239,0.998855,0.018212,0.044239,0.998855,0.018212,-0.979125,-0.120207,-0.163903, + -0.979125,-0.120207,-0.163903,-0.979125,-0.120207,-0.163903,-0.979125,-0.120207,-0.163903,0.998445,-0.032578,0.045227, + 0.998445,-0.032578,0.045227,0.998445,-0.032578,0.045227,0.998445,-0.032578,0.045227,-0.001819,-0.916989,-0.398908, + -0.001819,-0.916989,-0.398908,-0.001819,-0.916989,-0.398908,-0.001819,-0.916989,-0.398908,0.937317,-0.053581,0.344335, + 0.937317,-0.053581,0.344335,0.937317,-0.053581,0.344335,0.937317,-0.053581,0.344335,-0.937316,0.053579,-0.344337, + -0.937316,0.053579,-0.344337,-0.937316,0.053579,-0.344337,-0.937316,0.053579,-0.344337,0.027744,0.996329,0.080985, + 0.027744,0.996329,0.080985,0.027744,0.996329,0.080985,0.027744,0.996329,0.080985,-0.865194,0.038268,-0.499975, + -0.865194,0.038268,-0.499975,-0.865194,0.038268,-0.499975,-0.865194,0.038268,-0.499975,0.858009,0.023035,0.513118, + 0.858009,0.023035,0.513118,0.858009,0.023035,0.513118,0.858009,0.023035,0.513118,-0.065331,-0.989611,0.128069, + -0.065331,-0.989611,0.128069,-0.065331,-0.989611,0.128069,-0.065331,-0.989611,0.128069,-0.975873,0.043482,-0.213967, + -0.975873,0.043482,-0.213967,-0.975873,0.043482,-0.213967,-0.975873,0.043482,-0.213967,0.973228,-0.044668,0.225460, + 0.973228,-0.044668,0.225460,0.973228,-0.044668,0.225460,0.973228,-0.044668,0.225460,-0.021857,-0.994421,-0.103198, + -0.021857,-0.994421,-0.103198,-0.021857,-0.994421,-0.103198,-0.021857,-0.994421,-0.103198,-0.780083,-0.182459,0.598481, + -0.780083,-0.182459,0.598481,-0.780083,-0.182459,0.598481,-0.780083,-0.182459,0.598481,0.004642,-0.999764,-0.021232, + 0.004642,-0.999764,-0.021232,0.004642,-0.999764,-0.021232,0.004642,-0.999764,-0.021232,0.257350,-0.038485,-0.965552, + 0.257350,-0.038485,-0.965552,0.257350,-0.038485,-0.965552,0.257350,-0.038485,-0.965552,0.030528,-0.998173,0.052146, + 0.030528,-0.998173,0.052146,0.030528,-0.998173,0.052146,0.030528,-0.998173,0.052146,-0.208229,0.037407,0.977364, + -0.208229,0.037407,0.977364,-0.208229,0.037407,0.977364,-0.208229,0.037407,0.977364,0.060256,0.173934,-0.982912, + 0.060256,0.173934,-0.982912,0.060256,0.173934,-0.982912,0.060256,0.173934,-0.982912,-0.262001,-0.945174,-0.194939, + -0.262001,-0.945174,-0.194939,-0.262001,-0.945174,-0.194939,-0.262001,-0.945174,-0.194939,-0.059930,-0.173961,0.982927, + -0.059930,-0.173961,0.982927,-0.059930,-0.173961,0.982927,-0.059930,-0.173961,0.982927,-0.967906,0.046870,-0.246904, + -0.967906,0.046870,-0.246904,-0.967906,0.046870,-0.246904,-0.967906,0.046870,-0.246904,-0.109747,-0.964702,0.239386, + -0.109747,-0.964702,0.239386,-0.109747,-0.964702,0.239386,-0.109747,-0.964702,0.239386,0.967916,-0.046869,0.246866, + 0.967916,-0.046869,0.246866,0.967916,-0.046869,0.246866,0.967916,-0.046869,0.246866,0.022375,0.994616,0.101189, + 0.022375,0.994616,0.101189,0.022375,0.994616,0.101189,0.022375,0.994616,0.101189,-0.966545,0.047403,-0.252079, + -0.966545,0.047403,-0.252079,-0.966545,0.047403,-0.252079,-0.966545,0.047403,-0.252079,0.254941,0.069400,-0.964463, + 0.254941,0.069400,-0.964463,0.254941,0.069400,-0.964463,0.254941,0.069400,-0.964463,-0.254738,-0.062494,0.964989, + -0.254738,-0.062494,0.964989,-0.254738,-0.062494,0.964989,-0.254738,-0.062494,0.964989,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252077, + -0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047402,-0.252079, + -0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.966545,0.047402,-0.252079,-0.035725,-0.998072,-0.050750, + -0.035725,-0.998072,-0.050750,-0.035725,-0.998072,-0.050750,-0.035725,-0.998072,-0.050750,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.035745,-0.998079,-0.050597, + -0.035745,-0.998079,-0.050597,-0.035745,-0.998079,-0.050597,-0.035745,-0.998079,-0.050597,-0.966546,0.047401,-0.252075, + -0.966546,0.047401,-0.252075,-0.966546,0.047401,-0.252075,-0.966546,0.047401,-0.252075,0.035684,0.998074,0.050739, + 0.035684,0.998074,0.050739,0.035684,0.998074,0.050739,0.035684,0.998074,0.050739,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.966546,0.047403,-0.252074, + -0.966546,0.047403,-0.252074,-0.966546,0.047403,-0.252074,-0.966546,0.047403,-0.252074,0.254835,0.066046,-0.964727, + 0.254835,0.066046,-0.964727,0.254835,0.066046,-0.964727,0.254835,0.066046,-0.964727,0.031041,0.997166,0.068524, + 0.031041,0.997166,0.068524,0.031041,0.997166,0.068524,0.031041,0.997166,0.068524,-0.031881,-0.997353,-0.065345, + -0.031881,-0.997353,-0.065345,-0.031881,-0.997353,-0.065345,-0.031881,-0.997353,-0.065345,-0.967649,0.047114,-0.247863, + -0.967649,0.047114,-0.247863,-0.967649,0.047114,-0.247863,-0.967649,0.047114,-0.247863,0.023484,0.995003,0.097039, + 0.023484,0.995003,0.097039,0.023484,0.995003,0.097039,0.023484,0.995003,0.097039,-0.025167,-0.995561,-0.090687, + -0.025167,-0.995561,-0.090687,-0.025167,-0.995561,-0.090687,-0.025167,-0.995561,-0.090687,-0.967648,0.047113,-0.247866, + -0.967648,0.047113,-0.247866,-0.967648,0.047113,-0.247866,-0.967648,0.047113,-0.247866,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.254838,0.066046,-0.964726, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,-0.966545,0.047403,-0.252080, + -0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.254840,0.066046,-0.964725, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,-0.966547,0.047402,-0.252073, + -0.966547,0.047402,-0.252073,-0.966547,0.047402,-0.252073,-0.966547,0.047402,-0.252073,-0.254825,-0.066046,0.964729, + -0.254825,-0.066046,0.964729,-0.254825,-0.066046,0.964729,-0.254825,-0.066046,0.964729,0.024708,0.995419,0.092365, + 0.024708,0.995419,0.092365,0.024708,0.995419,0.092365,0.024708,0.995419,0.092365,-0.966543,0.047404,-0.252087, + -0.966543,0.047404,-0.252087,-0.966543,0.047404,-0.252087,-0.966543,0.047404,-0.252087,-0.029089,-0.996690,-0.075919, + -0.029089,-0.996690,-0.075919,-0.029089,-0.996690,-0.075919,-0.029089,-0.996690,-0.075919,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,0.134596,0.930334,-0.341119, + 0.134596,0.930334,-0.341119,0.134596,0.930334,-0.341119,0.134596,0.930334,-0.341119,-0.148548,-0.904633,0.399465, + -0.148548,-0.904633,0.399465,-0.148548,-0.904633,0.399465,-0.148548,-0.904633,0.399465,-0.968085,0.048186,-0.245945, + -0.968085,0.048186,-0.245945,-0.968085,0.048186,-0.245945,-0.968085,0.048186,-0.245945,0.981074,-0.189832,-0.038177, + 0.981074,-0.189832,-0.038177,0.981074,-0.189832,-0.038177,0.981074,-0.189832,-0.038177,-0.153770,-0.413587,-0.897386, + -0.153770,-0.413587,-0.897386,-0.153770,-0.413587,-0.897386,-0.153770,-0.413587,-0.897386,-0.324723,-0.907387,0.266840, + -0.324723,-0.907387,0.266840,-0.324723,-0.907387,0.266840,-0.324723,-0.907387,0.266840,0.854109,0.362056,0.373380, + 0.854109,0.362056,0.373380,0.854109,0.362056,0.373380,0.854109,0.362056,0.373380,0.968086,-0.048186,0.245943, + 0.968086,-0.048186,0.245943,0.968086,-0.048186,0.245943,0.968086,-0.048186,0.245943,0.933931,-0.193575,0.300501, + 0.933931,-0.193575,0.300501,0.933931,-0.193575,0.300501,0.933931,-0.193575,0.300501,0.290732,0.314778,-0.903543, + 0.290732,0.314778,-0.903543,0.290732,0.314778,-0.903543,0.290732,0.314778,-0.903543,-0.863846,-0.337615,-0.373881, + -0.863846,-0.337615,-0.373881,-0.863846,-0.337615,-0.373881,-0.863846,-0.337615,-0.373881,-0.292099,-0.307640,0.905558, + -0.292099,-0.307640,0.905558,-0.292099,-0.307640,0.905558,-0.292099,-0.307640,0.905558,0.333984,-0.653124,-0.679620, + 0.333984,-0.653124,-0.679620,0.333984,-0.653124,-0.679620,0.333984,-0.653124,-0.679620,-0.907505,-0.166164,-0.385777, + -0.907505,-0.166164,-0.385777,-0.907505,-0.166164,-0.385777,-0.907505,-0.166164,-0.385777,-0.334574,0.651835,0.680567, + -0.334574,0.651835,0.680567,-0.334574,0.651835,0.680567,-0.334574,0.651835,0.680567,0.234924,0.944527,-0.229520, + 0.234924,0.944527,-0.229520,0.234924,0.944527,-0.229520,0.234924,0.944527,-0.229520,-0.984539,0.175056,0.006274, + -0.984539,0.175056,0.006274,-0.984539,0.175056,0.006274,-0.984539,0.175056,0.006274,-0.234791,-0.944917,0.228044, + -0.234791,-0.944917,0.228044,-0.234791,-0.944917,0.228044,-0.234791,-0.944917,0.228044,0.045277,-0.935822,-0.349552, + 0.045277,-0.935822,-0.349552,0.045277,-0.935822,-0.349552,0.045277,-0.935822,-0.349552,0.040210,0.998627,0.033587, + 0.040210,0.998627,0.033587,0.040210,0.998627,0.033587,0.040210,0.998627,0.033587,-0.042977,-0.998811,-0.023008, + -0.042977,-0.998811,-0.023008,-0.042977,-0.998811,-0.023008,-0.042977,-0.998811,-0.023008,-0.967736,0.047087,-0.247528, + -0.967736,0.047087,-0.247528,-0.967736,0.047087,-0.247528,-0.967736,0.047087,-0.247528,0.020698,0.993981,0.107577, + 0.020698,0.993981,0.107577,0.020698,0.993981,0.107577,0.020698,0.993981,0.107577,-0.022377,-0.994608,-0.101260, + -0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260,-0.967737,0.047082,-0.247525, + -0.967737,0.047082,-0.247525,-0.967737,0.047082,-0.247525,-0.967737,0.047082,-0.247525,0.254842,0.066045,-0.964724, + 0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,-0.966545,0.047403,-0.252080, + -0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.254846,0.066045,-0.964723, + 0.254846,0.066045,-0.964723,0.254846,0.066045,-0.964723,0.254846,0.066045,-0.964723,-0.966544,0.047403,-0.252083, + -0.966544,0.047403,-0.252083,-0.966544,0.047403,-0.252083,-0.966544,0.047403,-0.252083,-0.254837,-0.066045,0.964726, + -0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,-0.966545,0.047403,-0.252079, + -0.966545,0.047403,-0.252079,-0.966545,0.047403,-0.252079,-0.966545,0.047403,-0.252079,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.029090,0.996690,0.075920, + 0.029090,0.996690,0.075920,0.029090,0.996690,0.075920,0.029090,0.996690,0.075920,-0.966544,0.047395,-0.252085, + -0.966544,0.047395,-0.252085,-0.966544,0.047395,-0.252085,-0.966544,0.047395,-0.252085,-0.029090,-0.996690,-0.075919, + -0.029090,-0.996690,-0.075919,-0.029090,-0.996690,-0.075919,-0.029090,-0.996690,-0.075919,-0.966545,0.047403,-0.252078, + -0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.966545,0.047403,-0.252078,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,0.966545,-0.047402,0.252080, + 0.966545,-0.047402,0.252080,0.966545,-0.047402,0.252080,0.966545,-0.047402,0.252080,0.971485,0.012430,0.236776, + 0.971485,0.012430,0.236776,0.971485,0.012430,0.236776,0.971485,0.012430,0.236776,0.965332,-0.047711,0.256626, + 0.965332,-0.047711,0.256626,0.965332,-0.047711,0.256626,0.965332,-0.047711,0.256626,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254845,0.066045,-0.964724, + 0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,-0.029091,-0.996689,-0.075931, + -0.029091,-0.996689,-0.075931,-0.029091,-0.996689,-0.075931,-0.029091,-0.996689,-0.075931,-0.230029,-0.104160,0.967594, + -0.230029,-0.104160,0.967594,-0.230029,-0.104160,0.967594,-0.230029,-0.104160,0.967594,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.040217,-0.998626,-0.033589, + -0.040217,-0.998626,-0.033589,-0.040217,-0.998626,-0.033589,-0.040217,-0.998626,-0.033589,0.965334,-0.047709,0.256621, + 0.965334,-0.047709,0.256621,0.965334,-0.047709,0.256621,0.965334,-0.047709,0.256621,0.020686,0.993981,0.107577, + 0.020686,0.993981,0.107577,0.020686,0.993981,0.107577,0.020686,0.993981,0.107577,-0.022377,-0.994608,-0.101260, + -0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260,0.225704,-0.023132,-0.973921, + 0.225704,-0.023132,-0.973921,0.225704,-0.023132,-0.973921,0.225704,-0.023132,-0.973921,0.023211,0.995549,0.091344, + 0.023211,0.995549,0.091344,0.023211,0.995549,0.091344,0.023211,0.995549,0.091344,0.966545,-0.047401,0.252078, + 0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,-0.028136,-0.996414,-0.079803, + -0.028136,-0.996414,-0.079803,-0.028136,-0.996414,-0.079803,-0.028136,-0.996414,-0.079803,0.970878,-0.048497,0.234614, + 0.970878,-0.048497,0.234614,0.970878,-0.048497,0.234614,0.970878,-0.048497,0.234614,0.965459,-0.047497,0.256188, + 0.965459,-0.047497,0.256188,0.965459,-0.047497,0.256188,-0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260, + -0.022377,-0.994608,-0.101260,-0.022377,-0.994608,-0.101260,0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076, + 0.966546,-0.047402,0.252076,0.966546,-0.047402,0.252076,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,0.253338,0.022688,-0.967112,0.253338,0.022688,-0.967112, + 0.253338,0.022688,-0.967112,0.253338,0.022688,-0.967112,0.965547,-0.047659,0.255828,0.965547,-0.047659,0.255828, + 0.965547,-0.047659,0.255828,0.205139,0.069559,-0.976258,0.205139,0.069559,-0.976258,0.205139,0.069559,-0.976258, + 0.205139,0.069559,-0.976258,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,0.041110,0.998699,0.030153,0.041110,0.998699,0.030153,0.041110,0.998699,0.030153, + 0.041110,0.998699,0.030153,0.965493,-0.047672,0.256027,0.965493,-0.047672,0.256027,0.965493,-0.047672,0.256027, + 0.037991,0.998393,0.042050,0.037991,0.998393,0.042050,0.037991,0.998393,0.042050,0.037991,0.998393,0.042050, + 0.034203,0.997817,0.056498,0.034203,0.997817,0.056498,0.034203,0.997817,0.056498,0.034203,0.997817,0.056498, + -0.034570,-0.997881,-0.055127,-0.034570,-0.997881,-0.055127,-0.034570,-0.997881,-0.055127,-0.034570,-0.997881,-0.055127, + -0.966999,0.046495,-0.250503,-0.966999,0.046495,-0.250503,-0.966999,0.046495,-0.250503,-0.966999,0.046495,-0.250503, + 0.025421,0.995639,0.089763,0.025421,0.995639,0.089763,0.025421,0.995639,0.089763,0.025421,0.995639,0.089763, + -0.025662,-0.995714,-0.088850,-0.025662,-0.995714,-0.088850,-0.025662,-0.995714,-0.088850,-0.025662,-0.995714,-0.088850, + -0.966951,0.048085,-0.250388,-0.966951,0.048085,-0.250388,-0.966951,0.048085,-0.250388,-0.966951,0.048085,-0.250388, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + -0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077,-0.966545,0.047403,-0.252077, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723, + -0.044373,-0.998863,-0.017438,-0.044373,-0.998863,-0.017438,-0.044373,-0.998863,-0.017438,-0.044373,-0.998863,-0.017438, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + 0.254763,0.062718,-0.964967,0.254763,0.062718,-0.964967,0.254763,0.062718,-0.964967,0.254763,0.062718,-0.964967, + -0.254967,-0.069686,0.964435,-0.254967,-0.069686,0.964435,-0.254967,-0.069686,0.964435,-0.254967,-0.069686,0.964435, + 0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078, + 0.966545,-0.047400,0.252078,0.966545,-0.047400,0.252078,0.966545,-0.047400,0.252078,0.966545,-0.047400,0.252078, + 0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079,0.966545,-0.047403,0.252079, + 0.023315,0.994948,0.097642,0.023315,0.994948,0.097642,0.023315,0.994948,0.097642,0.023315,0.994948,0.097642, + 0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079, + 0.029090,0.996690,0.075915,0.029090,0.996690,0.075915,0.029090,0.996690,0.075915,0.029090,0.996690,0.075915, + 0.966546,-0.047408,0.252074,0.966546,-0.047408,0.252074,0.966546,-0.047408,0.252074,0.966546,-0.047408,0.252074, + -0.029090,-0.996690,-0.075910,-0.029090,-0.996690,-0.075910,-0.029090,-0.996690,-0.075910,-0.029090,-0.996690,-0.075910, + -0.254155,-0.044284,0.966149,-0.254155,-0.044284,0.966149,-0.254155,-0.044284,0.966149,-0.254155,-0.044284,0.966149, + 0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079, + 0.255406,0.087642,-0.962853,0.255406,0.087642,-0.962853,0.255406,0.087642,-0.962853,0.255406,0.087642,-0.962853, + -0.023846,-0.995127,-0.095679,-0.023846,-0.995127,-0.095679,-0.023846,-0.995127,-0.095679,-0.023846,-0.995127,-0.095679, + 0.024079,0.995203,0.094825,0.024079,0.995203,0.094825,0.024079,0.995203,0.094825,0.024079,0.995203,0.094825, + 0.965421,-0.047785,0.256279,0.965421,-0.047785,0.256279,0.965421,-0.047785,0.256279,0.965421,-0.047785,0.256279, + -0.033001,-0.997588,-0.061063,-0.033001,-0.997588,-0.061063,-0.033001,-0.997588,-0.061063,-0.033001,-0.997588,-0.061063, + 0.030089,0.996945,0.072076,0.030089,0.996945,0.072076,0.030089,0.996945,0.072076,0.030089,0.996945,0.072076, + 0.965420,-0.047789,0.256282,0.965420,-0.047789,0.256282,0.965420,-0.047789,0.256282,0.965420,-0.047789,0.256282, + 0.255433,0.088516,-0.962767,0.255433,0.088516,-0.962767,0.255433,0.088516,-0.962767,0.255433,0.088516,-0.962767, + 0.966545,-0.047401,0.252077,0.966545,-0.047401,0.252077,0.966545,-0.047401,0.252077,0.966545,-0.047401,0.252077, + -0.255428,-0.088516,0.962768,-0.255428,-0.088516,0.962768,-0.255428,-0.088516,0.962768,-0.255428,-0.088516,0.962768, + 0.255453,0.089631,-0.962658,0.255453,0.089631,-0.962658,0.255453,0.089631,-0.962658,0.255453,0.089631,-0.962658, + 0.966544,-0.047402,0.252082,0.966544,-0.047402,0.252082,0.966544,-0.047402,0.252082,0.966544,-0.047402,0.252082, + -0.255472,-0.090108,0.962608,-0.255472,-0.090108,0.962608,-0.255472,-0.090108,0.962608,-0.255472,-0.090108,0.962608, + 0.255422,0.088516,-0.962769,0.255422,0.088516,-0.962769,0.255422,0.088516,-0.962769,0.255422,0.088516,-0.962769, + 0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078,0.966545,-0.047402,0.252078, + -0.255435,-0.088515,0.962766,-0.255435,-0.088515,0.962766,-0.255435,-0.088515,0.962766,-0.255435,-0.088515,0.962766, + -0.028366,-0.996498,-0.078665,-0.028366,-0.996498,-0.078665,-0.028366,-0.996498,-0.078665,-0.028366,-0.996498,-0.078665, + 0.966545,-0.047396,0.252081,0.966545,-0.047396,0.252081,0.966545,-0.047396,0.252081,0.966545,-0.047396,0.252081, + 0.028399,0.996506,0.078545,0.028399,0.996506,0.078545,0.028399,0.996506,0.078545,0.028399,0.996506,0.078545, + 0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078, + -0.026433,-0.995948,-0.085963,-0.026433,-0.995948,-0.085963,-0.026433,-0.995948,-0.085963,-0.026433,-0.995948,-0.085963, + 0.026224,0.995887,0.086723,0.026224,0.995887,0.086723,0.026224,0.995887,0.086723,0.026224,0.995887,0.086723, + 0.966104,-0.046666,0.253899,0.966104,-0.046666,0.253899,0.966104,-0.046666,0.253899,0.966104,-0.046666,0.253899, + -0.034782,-0.997920,-0.054271,-0.034782,-0.997920,-0.054271,-0.034782,-0.997920,-0.054271,-0.034782,-0.997920,-0.054271, + 0.034391,0.997849,0.055805,0.034391,0.997849,0.055805,0.034391,0.997849,0.055805,0.034391,0.997849,0.055805, + 0.966052,-0.048380,0.253779,0.966052,-0.048380,0.253779,0.966052,-0.048380,0.253779,0.966052,-0.048380,0.253779, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079, + 0.063218,0.996221,-0.059552,0.063218,0.996221,-0.059552,0.063218,0.996221,-0.059552,0.063218,0.996221,-0.059552, + 0.981041,-0.041309,0.189346,0.981041,-0.041309,0.189346,0.981041,-0.041309,0.189346,0.981041,-0.041309,0.189346, + -0.038305,-0.996773,-0.070536,-0.038305,-0.996773,-0.070536,-0.038305,-0.996773,-0.070536,-0.038305,-0.996773,-0.070536, + -0.966545,0.047406,-0.252079,-0.966545,0.047406,-0.252079,-0.966545,0.047406,-0.252079,-0.966545,0.047406,-0.252079, + 0.256468,0.123473,-0.958634,0.256468,0.123473,-0.958634,0.256468,0.123473,-0.958634,0.256468,0.123473,-0.958634, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725, + 0.419837,0.816087,0.397164,0.419837,0.816087,0.397164,0.419837,0.816087,0.397164,0.419837,0.816087,0.397164, + 0.834401,-0.519228,0.184871,0.834401,-0.519228,0.184871,0.834401,-0.519228,0.184871,0.834401,-0.519228,0.184871, + -0.488699,-0.852082,-0.187430,-0.488699,-0.852082,-0.187430,-0.488699,-0.852082,-0.187430,-0.488699,-0.852082,-0.187430, + -0.834403,0.519227,-0.184866,-0.834403,0.519227,-0.184866,-0.834403,0.519227,-0.184866,-0.834403,0.519227,-0.184866, + 0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + -0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724, + 0.065719,0.997837,0.001486,0.065719,0.997837,0.001486,0.065719,0.997837,0.001486,0.065719,0.997837,0.001486, + 0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077,0.966545,-0.047404,0.252077, + -0.065719,-0.997837,-0.001497,-0.065719,-0.997837,-0.001497,-0.065719,-0.997837,-0.001497,-0.065719,-0.997837,-0.001497, + -0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077,-0.966545,0.047407,-0.252077, + 0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + 0.029086,0.996690,0.075909,0.029086,0.996690,0.075909,0.029086,0.996690,0.075909,0.029086,0.996690,0.075909, + 0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077,0.966545,-0.047405,0.252077, + 0.014357,-0.971233,-0.237698,0.014357,-0.971233,-0.237698,0.014357,-0.971233,-0.237698,0.014357,-0.971233,-0.237698, + -0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078, + 0.249825,-0.048711,-0.967065,0.249825,-0.048711,-0.967065,0.249825,-0.048711,-0.967065,0.249825,-0.048711,-0.967065, + -0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724, + 0.029084,0.996690,0.075911,0.029084,0.996690,0.075911,0.029084,0.996690,0.075911,0.029084,0.996690,0.075911, + 0.966546,-0.047405,0.252075,0.966546,-0.047405,0.252075,0.966546,-0.047405,0.252075,0.966546,-0.047405,0.252075, + 0.029085,0.996689,0.075923,0.029085,0.996689,0.075923,0.029085,0.996689,0.075923,0.029085,0.996689,0.075923, + -0.966544,0.047404,-0.252082,-0.966544,0.047404,-0.252082,-0.966544,0.047404,-0.252082,-0.966544,0.047404,-0.252082, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + -0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724, + 0.966545,-0.047406,0.252077,0.966545,-0.047406,0.252077,0.966545,-0.047406,0.252077,0.966545,-0.047406,0.252077, + -0.966546,0.047402,-0.252075,-0.966546,0.047402,-0.252075,-0.966546,0.047402,-0.252075,-0.966546,0.047402,-0.252075, + 0.246774,-0.096132,-0.964293,0.246774,-0.096132,-0.964293,0.246774,-0.096132,-0.964293,0.246774,-0.096132,-0.964293, + -0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724, + 0.966545,-0.047406,0.252076,0.966545,-0.047406,0.252076,0.966545,-0.047406,0.252076,0.966545,-0.047406,0.252076, + 0.003137,-0.980513,-0.196431,0.003137,-0.980513,-0.196431,0.003137,-0.980513,-0.196431,0.003137,-0.980513,-0.196431, + 0.029085,0.996690,0.075914,0.029085,0.996690,0.075914,0.029085,0.996690,0.075914,0.029085,0.996690,0.075914, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + 0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078,0.966545,-0.047406,0.252078, + -0.014168,-0.991140,-0.132067,-0.014168,-0.991140,-0.132067,-0.014168,-0.991140,-0.132067,-0.014168,-0.991140,-0.132067, + 0.043882,0.998846,0.019505,0.043882,0.998846,0.019505,0.043882,0.998846,0.019505,0.043882,0.998846,0.019505, + 0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + 0.958124,-0.049444,0.282053,0.958124,-0.049444,0.282053,0.958124,-0.049444,0.282053,0.958124,-0.049444,0.282053, + -0.038165,-0.998412,-0.041424,-0.038165,-0.998412,-0.041424,-0.038165,-0.998412,-0.041424,-0.038165,-0.998412,-0.041424, + 0.029083,0.996690,0.075919,0.029083,0.996690,0.075919,0.029083,0.996690,0.075919,0.029083,0.996690,0.075919, + 0.254846,0.066046,-0.964723,0.254846,0.066046,-0.964723,0.254846,0.066046,-0.964723,0.254846,0.066046,-0.964723, + -0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724, + -0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078, + 0.029093,0.996690,0.075917,0.029093,0.996690,0.075917,0.029093,0.996690,0.075917,0.029093,0.996690,0.075917, + -0.002798,-0.984667,-0.174424,-0.002798,-0.984667,-0.174424,-0.002798,-0.984667,-0.174424,-0.002798,-0.984667,-0.174424, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077,-0.966545,0.047405,-0.252077, + 0.054918,0.998230,-0.022839,0.054918,0.998230,-0.022839,0.054918,0.998230,-0.022839,0.054918,0.998230,-0.022839, + -0.029080,-0.996690,-0.075913,-0.029080,-0.996690,-0.075913,-0.029080,-0.996690,-0.075913,-0.029080,-0.996690,-0.075913, + 0.256387,0.150087,-0.954851,0.256387,0.150087,-0.954851,0.256387,0.150087,-0.954851,0.256387,0.150087,-0.954851, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076,-0.966546,0.047405,-0.252076, + -0.000332,0.982546,0.186021,-0.000332,0.982546,0.186021,-0.000332,0.982546,0.186021,-0.000332,0.982546,0.186021, + 0.002410,-0.981045,-0.193767,0.002410,-0.981045,-0.193767,0.002410,-0.981045,-0.193767,0.002410,-0.981045,-0.193767, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + -0.253317,-0.022102,0.967131,-0.253317,-0.022102,0.967131,-0.253317,-0.022102,0.967131,-0.253317,-0.022102,0.967131, + -0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078,-0.966545,0.047404,-0.252078, + 0.098815,0.975750,-0.195314,0.098815,0.975750,-0.195314,0.098815,0.975750,-0.195314,0.098815,0.975750,-0.195314, + -0.014323,-0.991203,-0.131574,-0.014323,-0.991203,-0.131574,-0.014323,-0.991203,-0.131574,-0.014323,-0.991203,-0.131574, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079,-0.966545,0.047405,-0.252079, + -0.029101,0.956169,0.291365,-0.029101,0.956169,0.291365,-0.029101,0.956169,0.291365,-0.029101,0.956169,0.291365, + 0.029091,-0.956172,-0.291356,0.029091,-0.956172,-0.291356,0.029091,-0.956172,-0.291356,0.029091,-0.956172,-0.291356, + 0.254841,0.288955,-0.922801,0.254841,0.288955,-0.922801,0.254841,0.288955,-0.922801,0.254841,0.288955,-0.922801, + -0.254836,-0.288956,0.922802,-0.254836,-0.288956,0.922802,-0.254836,-0.288956,0.922802,-0.254836,-0.288956,0.922802, + 0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079,0.966545,-0.047402,0.252079, + -0.029086,-0.996689,-0.075928,-0.029086,-0.996689,-0.075928,-0.029086,-0.996689,-0.075928,-0.029086,-0.996689,-0.075928, + 0.029086,0.996690,0.075917,0.029086,0.996690,0.075917,0.029086,0.996690,0.075917,0.029086,0.996690,0.075917, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + 0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077,0.966545,-0.047403,0.252077, + -0.014309,-0.991208,-0.131535,-0.014309,-0.991208,-0.131535,-0.014309,-0.991208,-0.131535,-0.014309,-0.991208,-0.131535, + 0.029086,0.996691,0.075907,0.029086,0.996691,0.075907,0.029086,0.996691,0.075907,0.029086,0.996691,0.075907, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.011294,-0.866638,0.498810,-0.011294,-0.866638,0.498810,-0.011294,-0.866638,0.498810,-0.011294,-0.866638,0.498810, + 0.736546,-0.656484,0.162873,0.736546,-0.656484,0.162873,0.736546,-0.656484,0.162873,0.736546,-0.656484,0.162873, + -0.905332,0.098082,-0.413223,-0.905332,0.098082,-0.413223,-0.905332,0.098082,-0.413223,-0.905332,0.098082,-0.413223, + -0.906289,0.007509,-0.422592,-0.906289,0.007509,-0.422592,-0.906289,0.007509,-0.422592,-0.906289,0.007509,-0.422592, + -0.070639,0.010519,-0.997446,-0.070639,0.010519,-0.997446,-0.070639,0.010519,-0.997446,-0.070639,0.010519,-0.997446, + -0.951232,0.091285,-0.294661,-0.951232,0.091285,-0.294661,-0.951232,0.091285,-0.294661,-0.951232,0.091285,-0.294661, + -0.021642,-0.021897,0.999526,-0.021642,-0.021897,0.999526,-0.021642,-0.021897,0.999526,-0.021642,-0.021897,0.999526, + 0.104183,0.889966,-0.443966,0.104183,0.889966,-0.443966,0.104183,0.889966,-0.443966,0.104183,0.889966,-0.443966, + -0.980206,-0.048078,-0.192053,-0.980206,-0.048078,-0.192053,-0.980206,-0.048078,-0.192053,-0.980206,-0.048078,-0.192053, + -0.002521,-0.859116,-0.511775,-0.002521,-0.859116,-0.511775,-0.002521,-0.859116,-0.511775,-0.002521,-0.859116,-0.511775, + -0.960169,0.209372,-0.185036,-0.960169,0.209372,-0.185036,-0.960169,0.209372,-0.185036,-0.960169,0.209372,-0.185036, + -0.432438,-0.872745,0.226525,-0.432438,-0.872745,0.226525,-0.432438,-0.872745,0.226525,-0.432438,-0.872745,0.226525, + -0.967361,0.089190,-0.237188,-0.967361,0.089190,-0.237188,-0.967361,0.089190,-0.237188,-0.967361,0.089190,-0.237188, + 0.553705,0.182826,-0.812395,0.553705,0.182826,-0.812395,0.553705,0.182826,-0.812395,0.553705,0.182826,-0.812395, + -0.002366,0.997744,0.067094,-0.002366,0.997744,0.067094,-0.002366,0.997744,0.067094,-0.002366,0.997744,0.067094, + -0.962754,0.047445,-0.266182,-0.962754,0.047445,-0.266182,-0.962754,0.047445,-0.266182,-0.962754,0.047445,-0.266182, + 0.002363,-0.997741,-0.067141,0.002363,-0.997741,-0.067141,0.002363,-0.997741,-0.067141,0.002363,-0.997741,-0.067141, + -0.743900,0.065887,0.665035,-0.743900,0.065887,0.665035,-0.743900,0.065887,0.665035,-0.743900,0.065887,0.665035, + -0.454513,0.854027,0.253092,-0.454513,0.854027,0.253092,-0.454513,0.854027,0.253092,-0.454513,0.854027,0.253092, + 0.810456,-0.126471,0.571984,0.810456,-0.126471,0.571984,0.810456,-0.126471,0.571984,0.810456,-0.126471,0.571984, + -0.974124,0.165347,-0.154089,-0.974124,0.165347,-0.154089,-0.974124,0.165347,-0.154089,-0.974124,0.165347,-0.154089, + -0.170446,-0.964796,0.200294,-0.170446,-0.964796,0.200294,-0.170446,-0.964796,0.200294,-0.170446,-0.964796,0.200294, + -0.498217,-0.194931,0.844856,-0.498217,-0.194931,0.844856,-0.498217,-0.194931,0.844856,-0.498217,-0.194931,0.844856, + -0.085097,0.896540,0.434713,-0.085097,0.896540,0.434713,-0.085097,0.896540,0.434713,-0.085097,0.896540,0.434713, + 0.496709,-0.162364,0.852595,0.496709,-0.162364,0.852595,0.496709,-0.162364,0.852595,0.496709,-0.162364,0.852595, + -0.954682,0.043047,-0.294498,-0.954682,0.043047,-0.294498,-0.954682,0.043047,-0.294498,-0.954682,0.043047,-0.294498, + 0.875616,-0.444175,0.189750,0.875616,-0.444175,0.189750,0.875616,-0.444175,0.189750,0.875616,-0.444175,0.189750, + -0.107404,-0.917014,0.384122,-0.107404,-0.917014,0.384122,-0.107404,-0.917014,0.384122,-0.107404,-0.917014,0.384122, + -0.859862,-0.369366,0.352429,-0.859862,-0.369366,0.352429,-0.859862,-0.369366,0.352429,-0.859862,-0.369366,0.352429, + 0.030302,0.372596,0.927499,0.030302,0.372596,0.927499,0.030302,0.372596,0.927499,0.030302,0.372596,0.927499, + -0.114545,-0.988528,-0.098446,-0.114545,-0.988528,-0.098446,-0.114545,-0.988528,-0.098446,-0.114545,-0.988528,-0.098446, + -0.019809,0.996707,0.078628,-0.019809,0.996707,0.078628,-0.019809,0.996707,0.078628,-0.019809,0.996707,0.078628, + 0.350664,-0.081683,0.932932,0.350664,-0.081683,0.932932,0.350664,-0.081683,0.932932,0.350664,-0.081683,0.932932, + -0.151996,-0.987440,-0.043129,-0.151996,-0.987440,-0.043129,-0.151996,-0.987440,-0.043129,-0.151996,-0.987440,-0.043129, + -0.980144,-0.002865,0.198266,-0.980144,-0.002865,0.198266,-0.980144,-0.002865,0.198266,-0.980144,-0.002865,0.198266, + 0.980122,0.001434,-0.198391,0.980122,0.001434,-0.198391,0.980122,0.001434,-0.198391,0.980122,0.001434,-0.198391, + -0.007127,0.997158,0.075002,-0.007127,0.997158,0.075002,-0.007127,0.997158,0.075002,-0.007127,0.997158,0.075002, + 0.338092,-0.081637,0.937566,0.338092,-0.081637,0.937566,0.338092,-0.081637,0.937566,0.338092,-0.081637,0.937566, + -0.139598,-0.989105,-0.046722,-0.139598,-0.989105,-0.046722,-0.139598,-0.989105,-0.046722,-0.139598,-0.989105,-0.046722, + -0.982687,-0.000360,0.185272,-0.982687,-0.000360,0.185272,-0.982687,-0.000360,0.185272,-0.982687,-0.000360,0.185272, + 0.982667,-0.000672,-0.185380,0.982667,-0.000672,-0.185380,0.982667,-0.000672,-0.185380,0.982667,-0.000672,-0.185380, + -0.196045,0.977490,0.077974,-0.196045,0.977490,0.077974,-0.196045,0.977490,0.077974,-0.196045,0.977490,0.077974, + 0.364942,-0.080658,0.927530,0.364942,-0.080658,0.927530,0.364942,-0.080658,0.927530,0.364942,-0.080658,0.927530, + -0.236895,-0.969780,-0.058372,-0.236895,-0.969780,-0.058372,-0.236895,-0.969780,-0.058372,-0.236895,-0.969780,-0.058372, + -0.999701,0.018228,-0.016305,-0.999701,0.018228,-0.016305,-0.999701,0.018228,-0.016305,-0.999701,0.018228,-0.016305, + 0.990626,-0.007835,-0.136379,0.990626,-0.007835,-0.136379,0.990626,-0.007835,-0.136379,0.990626,-0.007835,-0.136379, + 0.001223,0.997268,0.073859,0.001223,0.997268,0.073859,0.001223,0.997268,0.073859,0.001223,0.997268,0.073859, + 0.335281,-0.081658,0.938573,0.335281,-0.081658,0.938573,0.335281,-0.081658,0.938573,0.335281,-0.081658,0.938573, + -0.131850,-0.990056,-0.049033,-0.131850,-0.990056,-0.049033,-0.131850,-0.990056,-0.049033,-0.131850,-0.990056,-0.049033, + -0.983248,-0.001182,0.182269,-0.983248,-0.001182,0.182269,-0.983248,-0.001182,0.182269,-0.983248,-0.001182,0.182269, + 0.983232,0.000122,-0.182358,0.983232,0.000122,-0.182358,0.983232,0.000122,-0.182358,0.983232,0.000122,-0.182358, + 0.001991,0.997129,0.075692,0.001991,0.997129,0.075692,0.001991,0.997129,0.075692,0.001991,0.997129,0.075692, + 0.405807,-0.081568,0.910312,0.405807,-0.081568,0.910312,0.405807,-0.081568,0.910312,0.405807,-0.081568,0.910312, + -0.128720,-0.990808,-0.041597,-0.128720,-0.990808,-0.041597,-0.128720,-0.990808,-0.041597,-0.128720,-0.990808,-0.041597, + -0.966615,-0.007276,0.256130,-0.966615,-0.007276,0.256130,-0.966615,-0.007276,0.256130,-0.966615,-0.007276,0.256130, + 0.966595,0.006236,-0.256232,0.966595,0.006236,-0.256232,0.966595,0.006236,-0.256232,0.966595,0.006236,-0.256232, + 0.415488,0.054883,-0.907941,0.415488,0.054883,-0.907941,0.415488,0.054883,-0.907941,0.415488,0.054883,-0.907941, + 0.962916,-0.057363,0.263634,0.962916,-0.057363,0.263634,0.962916,-0.057363,0.263634,0.962916,-0.057363,0.263634, + -0.025635,-0.995706,-0.088955,-0.025635,-0.995706,-0.088955,-0.025635,-0.995706,-0.088955,-0.025635,-0.995706,-0.088955, + -0.974370,0.060953,-0.216537,-0.974370,0.060953,-0.216537,-0.974370,0.060953,-0.216537,-0.974370,0.060953,-0.216537, + -0.408582,-0.055093,0.911057,-0.408582,-0.055093,0.911057,-0.408582,-0.055093,0.911057,-0.408582,-0.055093,0.911057, + 0.040988,0.964018,0.262659,0.040988,0.964018,0.262659,0.040988,0.964018,0.262659,0.040988,0.964018,0.262659, + -0.749469,-0.132893,0.648564,-0.749469,-0.132893,0.648564,-0.749469,-0.132893,0.648564,-0.749469,-0.132893,0.648564, + -0.040992,-0.964019,-0.262653,-0.040992,-0.964019,-0.262653,-0.040992,-0.964019,-0.262653,-0.040992,-0.964019,-0.262653, + 0.749473,0.132883,-0.648562,0.749473,0.132883,-0.648562,0.749473,0.132883,-0.648562,0.749473,0.132883,-0.648562, + -0.036062,0.979066,-0.200323,-0.036062,0.979066,-0.200323,-0.036062,0.979066,-0.200323,-0.036062,0.979066,-0.200323, + -0.763564,0.067112,0.642235,-0.763564,0.067112,0.642235,-0.763564,0.067112,0.642235,-0.763564,0.067112,0.642235, + 0.036064,-0.979066,0.200323,0.036064,-0.979066,0.200323,0.036064,-0.979066,0.200323,0.036064,-0.979066,0.200323, + 0.763571,-0.067120,-0.642226,0.763571,-0.067120,-0.642226,0.763571,-0.067120,-0.642226,0.763571,-0.067120,-0.642226, + -0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078,-0.966545,0.047405,-0.252078, + -0.621103,0.304106,0.722323,-0.621103,0.304106,0.722323,-0.621103,0.304106,0.722323,-0.295649,-0.334080,0.894976, + -0.295649,-0.334080,0.894976,-0.295649,-0.334080,0.894976,-0.956796,0.266223,-0.116905,-0.956796,0.266223,-0.116905, + -0.956796,0.266223,-0.116905,-0.956796,0.266223,-0.116905,-0.890543,0.021092,-0.454410,-0.890543,0.021092,-0.454410, + -0.890543,0.021092,-0.454410,-0.890543,0.021092,-0.454410,-0.656083,0.320625,0.683194,-0.656083,0.320625,0.683194, + -0.656083,0.320625,0.683194,-0.656083,0.320625,0.683194,-0.957728,0.087510,-0.274043,-0.957728,0.087510,-0.274043, + -0.957728,0.087510,-0.274043,-0.957728,0.087510,-0.274043,-0.773777,0.075597,0.628931,-0.773777,0.075597,0.628931, + -0.773777,0.075597,0.628931,0.342613,-0.098904,0.934256,0.342613,-0.098904,0.934256,0.342613,-0.098904,0.934256, + 0.342613,-0.098904,0.934256,0.728927,0.049167,-0.682824,0.728927,0.049167,-0.682824,0.728927,0.049167,-0.682824, + 0.728927,0.049167,-0.682824,0.767709,-0.040070,-0.639545,0.767709,-0.040070,-0.639545,0.767709,-0.040070,-0.639545, + -0.357676,0.098712,-0.928614,-0.357676,0.098712,-0.928614,-0.357676,0.098712,-0.928614,-0.357676,0.098712,-0.928614, + 0.043883,0.998908,0.016021,0.043883,0.998908,0.016021,0.043883,0.998908,0.016021,0.043883,0.998908,0.016021, + 0.701494,-0.074453,0.708776,0.701494,-0.074453,0.708776,0.701494,-0.074453,0.708776,0.701494,-0.074453,0.708776, + -0.043888,-0.998908,-0.016041,-0.043888,-0.998908,-0.016041,-0.043888,-0.998908,-0.016041,-0.043888,-0.998908,-0.016041, + -0.701502,0.074459,-0.708767,-0.701502,0.074459,-0.708767,-0.701502,0.074459,-0.708767,-0.701502,0.074459,-0.708767, + -0.061154,0.824492,0.562560,-0.061154,0.824492,0.562560,-0.061154,0.824492,0.562560,-0.061154,0.824492,0.562560, + 0.064364,0.994294,0.085074,0.064364,0.994294,0.085074,0.064364,0.994294,0.085074,0.064364,0.994294,0.085074, + -0.044703,-0.995794,-0.079978,-0.044703,-0.995794,-0.079978,-0.044703,-0.995794,-0.079978,-0.044703,-0.995794,-0.079978, + 0.349742,0.060587,-0.934885,0.349742,0.060587,-0.934885,0.349742,0.060587,-0.934885,0.349742,0.060587,-0.934885, + -0.346754,-0.060769,0.935985,-0.346754,-0.060769,0.935985,-0.346754,-0.060769,0.935985,-0.346754,-0.060769,0.935985, + 0.025228,0.996851,0.075180,0.025228,0.996851,0.075180,0.025228,0.996851,0.075180,0.025228,0.996851,0.075180, + -0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924,-0.029084,-0.996689,-0.075924, + 0.237339,0.066890,-0.969121,0.237339,0.066890,-0.969121,0.237339,0.066890,-0.969121,0.237339,0.066890,-0.969121, + -0.237190,-0.066900,0.969157,-0.237190,-0.066900,0.969157,-0.237190,-0.066900,0.969157,-0.237190,-0.066900,0.969157, + 0.029085,0.996688,0.075936,0.029085,0.996688,0.075936,0.029085,0.996688,0.075936,0.029085,0.996688,0.075936, + -0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918,-0.029083,-0.996690,-0.075918, + 0.246773,0.066437,-0.966793,0.246773,0.066437,-0.966793,0.246773,0.066437,-0.966793,0.246773,0.066437,-0.966793, + 0.254492,0.054531,-0.965536,0.254492,0.054531,-0.965536,0.254492,0.054531,-0.965536,0.254492,0.054531,-0.965536, + 0.971922,-0.045735,0.230816,0.971922,-0.045735,0.230816,0.971922,-0.045735,0.230816,0.971922,-0.045735,0.230816, + -0.004640,0.999764,0.021232,-0.004640,0.999764,0.021232,-0.004640,0.999764,0.021232,-0.004640,0.999764,0.021232, + -0.097937,-0.994168,-0.045141,-0.097937,-0.994168,-0.045141,-0.097937,-0.994168,-0.045141,-0.097937,-0.994168,-0.045141, + -0.493917,0.011226,0.869437,-0.493917,0.011226,0.869437,-0.493917,0.011226,0.869437,-0.493917,0.011226,0.869437, + -0.344026,-0.933426,0.101795,-0.344026,-0.933426,0.101795,-0.344026,-0.933426,0.101795,-0.991957,0.080786,-0.097443, + -0.991957,0.080786,-0.097443,-0.991957,0.080786,-0.097443,-0.991957,0.080786,-0.097443,0.345128,0.938518,-0.008436, + 0.345128,0.938518,-0.008436,0.345128,0.938518,-0.008436,-0.664824,-0.687047,-0.293215,-0.664824,-0.687047,-0.293215, + -0.664824,-0.687047,-0.293215,-0.664824,-0.687047,-0.293215,-0.306261,-0.949626,-0.066444,-0.306261,-0.949626,-0.066444, + -0.306261,-0.949626,-0.066444,0.078239,0.993051,0.087907,0.078239,0.993051,0.087907,0.078239,0.993051,0.087907, + 0.090746,0.992425,0.082809,0.090746,0.992425,0.082809,0.090746,0.992425,0.082809,0.090746,0.992425,0.082809, + 0.075178,0.996403,0.039115,0.075178,0.996403,0.039115,0.075178,0.996403,0.039115,0.075178,0.996403,0.039115, + -0.952705,0.080161,-0.293134,-0.952705,0.080161,-0.293134,-0.952705,0.080161,-0.293134,-0.952705,0.080161,-0.293134, + 0.018908,0.994024,0.107508,0.018908,0.994024,0.107508,0.018908,0.994024,0.107508,0.018908,0.994024,0.107508, + -0.016515,-0.993255,-0.114770,-0.016515,-0.993255,-0.114770,-0.016515,-0.993255,-0.114770,-0.016515,-0.993255,-0.114770, + 0.304264,0.239038,-0.922109,0.304264,0.239038,-0.922109,0.304264,0.239038,-0.922109,0.304264,0.239038,-0.922109, + -0.300941,0.010321,0.953587,-0.300941,0.010321,0.953587,-0.300941,0.010321,0.953587,-0.300941,0.010321,0.953587, + -0.954377,0.019952,-0.297936,-0.954377,0.019952,-0.297936,-0.954377,0.019952,-0.297936,-0.954377,0.019952,-0.297936, + -0.040963,-0.998419,-0.038487,-0.040963,-0.998419,-0.038487,-0.040963,-0.998419,-0.038487,-0.040963,-0.998419,-0.038487, + 0.037476,0.998075,0.049410,0.037476,0.998075,0.049410,0.037476,0.998075,0.049410,0.037476,0.998075,0.049410, + -0.304911,-0.207761,0.929443,-0.304911,-0.207761,0.929443,-0.304911,-0.207761,0.929443,-0.304911,-0.207761,0.929443, + 0.299125,-0.042515,-0.953266,0.299125,-0.042515,-0.953266,0.299125,-0.042515,-0.953266,0.299125,-0.042515,-0.953266, + 0.966545,-0.047399,0.252081,0.966545,-0.047399,0.252081,0.966545,-0.047399,0.252081,0.966545,-0.047399,0.252081, + 0.029091,0.996690,0.075919,0.029091,0.996690,0.075919,0.029091,0.996690,0.075919,0.029091,0.996690,0.075919, + 0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078,0.966545,-0.047401,0.252078, + -0.222093,-0.109403,0.968868,-0.222093,-0.109403,0.968868,-0.222093,-0.109403,0.968868,-0.222093,-0.109403,0.968868, + 0.043244,0.998822,0.022017,0.043244,0.998822,0.022017,0.043244,0.998822,0.022017,0.043244,0.998822,0.022017, + -0.027442,-0.996184,-0.082847,-0.027442,-0.996184,-0.082847,-0.027442,-0.996184,-0.082847,-0.027442,-0.996184,-0.082847, + 0.253337,0.022688,-0.967112,0.253337,0.022688,-0.967112,0.253337,0.022688,-0.967112,0.253337,0.022688,-0.967112, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.013235,-0.990686,-0.135524,-0.013235,-0.990686,-0.135524,-0.013235,-0.990686,-0.135524,-0.013235,-0.990686,-0.135524, + 0.965515,-0.047492,0.255980,0.965515,-0.047492,0.255980,0.965515,-0.047492,0.255980,0.039572,0.998900,0.025141, + 0.039572,0.998900,0.025141,0.039572,0.998900,0.025141,0.039572,0.998900,0.025141,0.975643,-0.076398,0.205630, + 0.975643,-0.076398,0.205630,0.975643,-0.076398,0.205630,0.975643,-0.076398,0.205630,-0.037399,-0.998512,-0.039688, + -0.037399,-0.998512,-0.039688,-0.037399,-0.998512,-0.039688,-0.037399,-0.998512,-0.039688,0.039173,0.998746,0.031189, + 0.039173,0.998746,0.031189,0.039173,0.998746,0.031189,0.039173,0.998746,0.031189,0.194226,-0.143144,-0.970456, + 0.194226,-0.143144,-0.970456,0.194226,-0.143144,-0.970456,0.194226,-0.143144,-0.970456,-0.206367,-0.120034,0.971084, + -0.206367,-0.120034,0.971084,-0.206367,-0.120034,0.971084,-0.206367,-0.120034,0.971084,0.977669,-0.012413,0.209783, + 0.977669,-0.012413,0.209783,0.977669,-0.012413,0.209783,0.977669,-0.012413,0.209783,0.024129,0.994770,0.099248, + 0.024129,0.994770,0.099248,0.024129,0.994770,0.099248,0.024129,0.994770,0.099248,-0.026280,-0.995685,-0.088994, + -0.026280,-0.995685,-0.088994,-0.026280,-0.995685,-0.088994,-0.026280,-0.995685,-0.088994,-0.197659,0.094457,0.975709, + -0.197659,0.094457,0.975709,-0.197659,0.094457,0.975709,-0.197659,0.094457,0.975709,0.207003,0.168782,-0.963671, + 0.207003,0.168782,-0.963671,0.207003,0.168782,-0.963671,0.207003,0.168782,-0.963671,0.970632,-0.048478,0.235635, + 0.970632,-0.048478,0.235635,0.970632,-0.048478,0.235635,0.970632,-0.048478,0.235635,-0.019141,-0.992838,-0.117922, + -0.019141,-0.992838,-0.117922,-0.019141,-0.992838,-0.117922,-0.019141,-0.992838,-0.117922,0.019799,0.994232,0.105411, + 0.019799,0.994232,0.105411,0.019799,0.994232,0.105411,0.019799,0.994232,0.105411,0.225706,-0.023132,-0.973921, + 0.225706,-0.023132,-0.973921,0.225706,-0.023132,-0.973921,0.225706,-0.023132,-0.973921,-0.229978,-0.102195,0.967815, + -0.229978,-0.102195,0.967815,-0.229978,-0.102195,0.967815,-0.229978,-0.102195,0.967815,0.971189,0.010584,0.238076, + 0.971189,0.010584,0.238076,0.971189,0.010584,0.238076,0.971189,0.010584,0.238076,0.040664,0.998968,0.020257, + 0.040664,0.998968,0.020257,0.040664,0.998968,0.020257,0.040664,0.998968,0.020257,-0.024109,-0.994912,-0.097816, + -0.024109,-0.994912,-0.097816,-0.024109,-0.994912,-0.097816,-0.024109,-0.994912,-0.097816,-0.222039,-0.107176,0.969129, + -0.222039,-0.107176,0.969129,-0.222039,-0.107176,0.969129,-0.222039,-0.107176,0.969129,0.205133,0.069560,-0.976259, + 0.205133,0.069560,-0.976259,0.205133,0.069560,-0.976259,0.205133,0.069560,-0.976259,-0.022543,0.998875,0.041727, + -0.022543,0.998875,0.041727,-0.022543,0.998875,0.041727,-0.022543,0.998875,0.041727,-0.218025,-0.041311,0.975069, + -0.218025,-0.041311,0.975069,-0.218025,-0.041311,0.975069,-0.218025,-0.041311,0.975069,0.340381,0.035304,-0.939625, + 0.340381,0.035304,-0.939625,0.340381,0.035304,-0.939625,0.340381,0.035304,-0.939625,-0.970663,0.044581,-0.236275, + -0.970663,0.044581,-0.236275,-0.970663,0.044581,-0.236275,-0.970663,0.044581,-0.236275,0.967557,-0.047205,0.248203, + 0.967557,-0.047205,0.248203,0.967557,-0.047205,0.248203,0.967557,-0.047205,0.248203,0.035849,0.997600,0.059232, + 0.035849,0.997600,0.059232,0.035849,0.997600,0.059232,0.035849,0.997600,0.059232,0.027819,0.996409,0.079970, + 0.027819,0.996409,0.079970,0.027819,0.996409,0.079970,0.972913,-0.045646,0.226622,0.972913,-0.045646,0.226622, + 0.972913,-0.045646,0.226622,0.972913,-0.045646,0.226622,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,0.296581,0.063925,-0.952866,0.296581,0.063925,-0.952866, + 0.296581,0.063925,-0.952866,0.296581,0.063925,-0.952866,0.251881,0.015066,-0.967641,0.251881,0.015066,-0.967641, + 0.251881,0.015066,-0.967641,0.251881,0.015066,-0.967641,-0.953395,0.050472,-0.297474,-0.953395,0.050472,-0.297474, + -0.953395,0.050472,-0.297474,-0.953395,0.050472,-0.297474,0.028037,0.996411,0.079867,0.028037,0.996411,0.079867, + 0.028037,0.996411,0.079867,-0.212922,-0.033295,0.976502,-0.212922,-0.033295,0.976502,-0.212922,-0.033295,0.976502, + -0.212922,-0.033295,0.976502,0.968333,-0.047155,0.245168,0.968333,-0.047155,0.245168,0.968333,-0.047155,0.245168, + 0.968333,-0.047155,0.245168,-0.952113,0.048069,-0.301943,-0.952113,0.048069,-0.301943,-0.952113,0.048069,-0.301943, + -0.952113,0.048069,-0.301943,-0.022540,0.998875,0.041721,-0.022540,0.998875,0.041721,-0.022540,0.998875,0.041721, + -0.022540,0.998875,0.041721,-0.217997,-0.041308,0.975075,-0.217997,-0.041308,0.975075,-0.217997,-0.041308,0.975075, + -0.217997,-0.041308,0.975075,0.340341,0.035302,-0.939639,0.340341,0.035302,-0.939639,0.340341,0.035302,-0.939639, + 0.340341,0.035302,-0.939639,-0.970650,0.044577,-0.236327,-0.970650,0.044577,-0.236327,-0.970650,0.044577,-0.236327, + -0.970650,0.044577,-0.236327,0.967557,-0.047215,0.248201,0.967557,-0.047215,0.248201,0.967557,-0.047215,0.248201, + 0.967557,-0.047215,0.248201,0.035844,0.997601,0.059231,0.035844,0.997601,0.059231,0.035844,0.997601,0.059231, + 0.035844,0.997601,0.059231,0.027819,0.996410,0.079963,0.027819,0.996410,0.079963,0.027819,0.996410,0.079963, + 0.972912,-0.045644,0.226624,0.972912,-0.045644,0.226624,0.972912,-0.045644,0.226624,0.972912,-0.045644,0.226624, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + 0.296588,0.063925,-0.952864,0.296588,0.063925,-0.952864,0.296588,0.063925,-0.952864,0.296588,0.063925,-0.952864, + 0.251881,0.015072,-0.967641,0.251881,0.015072,-0.967641,0.251881,0.015072,-0.967641,0.251881,0.015072,-0.967641, + -0.953394,0.050473,-0.297476,-0.953394,0.050473,-0.297476,-0.953394,0.050473,-0.297476,-0.953394,0.050473,-0.297476, + 0.028037,0.996411,0.079865,0.028037,0.996411,0.079865,0.028037,0.996411,0.079865,-0.212894,-0.033291,0.976508, + -0.212894,-0.033291,0.976508,-0.212894,-0.033291,0.976508,-0.212894,-0.033291,0.976508,0.968332,-0.047154,0.245174, + 0.968332,-0.047154,0.245174,0.968332,-0.047154,0.245174,0.968332,-0.047154,0.245174,-0.952118,0.048059,-0.301929, + -0.952118,0.048059,-0.301929,-0.952118,0.048059,-0.301929,-0.952118,0.048059,-0.301929,-0.022543,0.998875,0.041721, + -0.022543,0.998875,0.041721,-0.022543,0.998875,0.041721,-0.022543,0.998875,0.041721,-0.217971,-0.041310,0.975081, + -0.217971,-0.041310,0.975081,-0.217971,-0.041310,0.975081,-0.217971,-0.041310,0.975081,0.340341,0.035298,-0.939639, + 0.340341,0.035298,-0.939639,0.340341,0.035298,-0.939639,0.340341,0.035298,-0.939639,-0.970652,0.044569,-0.236321, + -0.970652,0.044569,-0.236321,-0.970652,0.044569,-0.236321,-0.970652,0.044569,-0.236321,0.967556,-0.047200,0.248211, + 0.967556,-0.047200,0.248211,0.967556,-0.047200,0.248211,0.967556,-0.047200,0.248211,0.035844,0.997601,0.059229, + 0.035844,0.997601,0.059229,0.035844,0.997601,0.059229,0.035844,0.997601,0.059229,0.027819,0.996409,0.079965, + 0.027819,0.996409,0.079965,0.027819,0.996409,0.079965,0.972912,-0.045646,0.226623,0.972912,-0.045646,0.226623, + 0.972912,-0.045646,0.226623,0.972912,-0.045646,0.226623,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,0.296587,0.063923,-0.952864,0.296587,0.063923,-0.952864, + 0.296587,0.063923,-0.952864,0.296587,0.063923,-0.952864,0.251882,0.015075,-0.967640,0.251882,0.015075,-0.967640, + 0.251882,0.015075,-0.967640,0.251882,0.015075,-0.967640,-0.953396,0.050474,-0.297470,-0.953396,0.050474,-0.297470, + -0.953396,0.050474,-0.297470,-0.953396,0.050474,-0.297470,0.028037,0.996411,0.079867,0.028037,0.996411,0.079867, + 0.028037,0.996411,0.079867,-0.212905,-0.033298,0.976505,-0.212905,-0.033298,0.976505,-0.212905,-0.033298,0.976505, + -0.212905,-0.033298,0.976505,0.968332,-0.047150,0.245173,0.968332,-0.047150,0.245173,0.968332,-0.047150,0.245173, + 0.968332,-0.047150,0.245173,-0.952125,0.048058,-0.301907,-0.952125,0.048058,-0.301907,-0.952125,0.048058,-0.301907, + -0.952125,0.048058,-0.301907,0.032724,-0.996236,-0.080262,0.032724,-0.996236,-0.080262,0.032724,-0.996236,-0.080262, + 0.032724,-0.996236,-0.080262,-0.291158,-0.090645,0.952371,-0.291158,-0.090645,0.952371,-0.291158,-0.090645,0.952371, + -0.291158,-0.090645,0.952371,0.167075,0.096209,-0.981239,0.167075,0.096209,-0.981239,0.167075,0.096209,-0.981239, + 0.167075,0.096209,-0.981239,0.962269,-0.046741,0.268054,0.962269,-0.046741,0.268054,0.962269,-0.046741,0.268054, + 0.962269,-0.046741,0.268054,-0.965519,0.047734,-0.255921,-0.965519,0.047734,-0.255921,-0.965519,0.047734,-0.255921, + -0.965519,0.047734,-0.255921,-0.026733,-0.995238,-0.093733,-0.026733,-0.995238,-0.093733,-0.026733,-0.995238,-0.093733, + -0.026733,-0.995238,-0.093733,-0.029983,-0.996970,-0.071773,-0.029983,-0.996970,-0.071773,-0.029983,-0.996970,-0.071773, + -0.959509,0.049119,-0.277362,-0.959509,0.049119,-0.277362,-0.959509,0.049119,-0.277362,-0.959509,0.049119,-0.277362, + -0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724, + 0.212618,0.068045,-0.974763,0.212618,0.068045,-0.974763,0.212618,0.068045,-0.974763,0.212618,0.068045,-0.974763, + 0.257133,0.116840,-0.959287,0.257133,0.116840,-0.959287,0.257133,0.116840,-0.959287,0.257133,0.116840,-0.959287, + 0.977527,-0.044215,0.206120,0.977527,-0.044215,0.206120,0.977527,-0.044215,0.206120,0.977527,-0.044215,0.206120, + -0.030122,-0.996952,-0.071961,-0.030122,-0.996952,-0.071961,-0.030122,-0.996952,-0.071961,-0.296015,-0.098595,0.950081, + -0.296015,-0.098595,0.950081,-0.296015,-0.098595,0.950081,-0.296015,-0.098595,0.950081,-0.964695,0.048092,-0.258943, + -0.964695,0.048092,-0.258943,-0.964695,0.048092,-0.258943,-0.964695,0.048092,-0.258943,0.978526,-0.041217,0.201962, + 0.978526,-0.041217,0.201962,0.978526,-0.041217,0.201962,0.978526,-0.041217,0.201962,-0.993966,0.036873,-0.103305, + -0.993966,0.036873,-0.103305,-0.993966,0.036873,-0.103305,-0.993966,0.036873,-0.103305,-0.025639,-0.995705,-0.088958, + -0.025639,-0.995705,-0.088958,-0.025639,-0.995705,-0.088958,-0.025639,-0.995705,-0.088958,-0.977836,0.044123,-0.204669, + -0.977836,0.044123,-0.204669,-0.977836,0.044123,-0.204669,-0.977836,0.044123,-0.204669,0.025639,0.995705,0.088958, + 0.025639,0.995705,0.088958,0.025639,0.995705,0.088958,0.025639,0.995705,0.088958,0.977837,-0.044125,0.204667, + 0.977837,-0.044125,0.204667,0.977837,-0.044125,0.204667,0.977837,-0.044125,0.204667,-0.973584,0.045452,-0.223758, + -0.973584,0.045452,-0.223758,-0.973584,0.045452,-0.223758,-0.973584,0.045452,-0.223758,0.025635,0.995705,0.088958, + 0.025635,0.995705,0.088958,0.025635,0.995705,0.088958,0.025635,0.995705,0.088958,0.973585,-0.045455,0.223753, + 0.973585,-0.045455,0.223753,0.973585,-0.045455,0.223753,0.973585,-0.045455,0.223753,-0.174053,-0.972545,0.154472, + -0.174053,-0.972545,0.154472,-0.174053,-0.972545,0.154472,-0.174053,-0.972545,0.154472,0.072899,0.877738,-0.473562, + 0.072899,0.877738,-0.473562,0.072899,0.877738,-0.473562,0.072899,0.877738,-0.473562,-0.721507,-0.172898,0.670473, + -0.721507,-0.172898,0.670473,-0.721507,-0.172898,0.670473,0.718861,0.173588,-0.673131,0.718861,0.173588,-0.673131, + 0.718861,0.173588,-0.673131,-0.541655,0.317033,0.778524,-0.541655,0.317033,0.778524,-0.541655,0.317033,0.778524, + 0.522306,-0.290758,-0.801659,0.522306,-0.290758,-0.801659,0.522306,-0.290758,-0.801659,0.973554,-0.045802,0.223820, + 0.973554,-0.045802,0.223820,0.973554,-0.045802,0.223820,0.973554,-0.045802,0.223820,0.109749,0.964703,-0.239382, + 0.109749,0.964703,-0.239382,0.109749,0.964703,-0.239382,0.109749,0.964703,-0.239382,-0.090767,-0.993200,-0.072898, + -0.090767,-0.993200,-0.072898,-0.090767,-0.993200,-0.072898,-0.090767,-0.993200,-0.072898,-0.221126,-0.100200,0.970084, + -0.221126,-0.100200,0.970084,-0.221126,-0.100200,0.970084,-0.221126,-0.100200,0.970084,0.261998,0.945167,0.194980, + 0.261998,0.945167,0.194980,0.261998,0.945167,0.194980,0.261998,0.945167,0.194980,-0.995870,0.055411,-0.071913, + -0.995870,0.055411,-0.071913,-0.995870,0.055411,-0.071913,-0.995870,0.055411,-0.071913,0.079796,0.995246,-0.055842, + 0.079796,0.995246,-0.055842,0.079796,0.995246,-0.055842,0.079796,0.995246,-0.055842,0.021857,0.994421,0.103196, + 0.021857,0.994421,0.103196,0.021857,0.994421,0.103196,0.021857,0.994421,0.103196,0.058271,0.998152,-0.017253, + 0.058271,0.998152,-0.017253,0.058271,0.998152,-0.017253,0.058271,0.998152,-0.017253,-0.915054,-0.024404,0.402592, + -0.915054,-0.024404,0.402592,-0.915054,-0.024404,0.402592,-0.915054,-0.024404,0.402592,0.417840,0.030734,0.908001, + 0.417840,0.030734,0.908001,0.417840,0.030734,0.908001,0.417840,0.030734,0.908001,-0.853145,0.064327,-0.517692, + -0.853145,0.064327,-0.517692,-0.853145,0.064327,-0.517692,-0.853145,0.064327,-0.517692,0.853147,-0.064328,0.517689, + 0.853147,-0.064328,0.517689,0.853147,-0.064328,0.517689,0.853147,-0.064328,0.517689,0.108937,-0.813867,-0.570748, + 0.108937,-0.813867,-0.570748,0.108937,-0.813867,-0.570748,0.108937,-0.813867,-0.570748,-0.254840,-0.066047,0.964725, + -0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,-0.108933,0.813863,0.570755, + -0.108933,0.813863,0.570755,-0.108933,0.813863,0.570755,-0.108933,0.813863,0.570755,0.019329,0.993436,0.112747, + 0.019329,0.993436,0.112747,0.019329,0.993436,0.112747,0.019329,0.993436,0.112747,0.513364,0.036686,-0.857387, + 0.513364,0.036686,-0.857387,0.513364,0.036686,-0.857387,0.513364,0.036686,-0.857387,-0.106870,-0.989630,-0.095980, + -0.106870,-0.989630,-0.095980,-0.106870,-0.989630,-0.095980,-0.106870,-0.989630,-0.095980,-0.511286,-0.036802,0.858622, + -0.511286,-0.036802,0.858622,-0.511286,-0.036802,0.858622,-0.511286,-0.036802,0.858622,-0.267362,-0.062568,0.961563, + -0.267362,-0.062568,0.961563,-0.267362,-0.062568,0.961563,-0.272174,-0.066479,0.959949,-0.272174,-0.066479,0.959949, + -0.272174,-0.066479,0.959949,-0.273385,-0.065121,0.959698,-0.273385,-0.065121,0.959698,-0.273385,-0.065121,0.959698, + -0.273385,-0.065121,0.959698,-0.273384,-0.065121,0.959698,-0.273384,-0.065121,0.959698,-0.273384,-0.065121,0.959698, + 0.273384,0.065121,-0.959698,0.273384,0.065121,-0.959698,0.273384,0.065121,-0.959698,0.273385,0.065121,-0.959698, + 0.273385,0.065121,-0.959698,0.273385,0.065121,-0.959698,0.273385,0.065121,-0.959698,0.272180,0.066501,-0.959946, + 0.272180,0.066501,-0.959946,0.272180,0.066501,-0.959946,0.267375,0.062543,-0.961561,0.267375,0.062543,-0.961561, + 0.267375,0.062543,-0.961561,0.227526,0.049978,-0.972489,0.227526,0.049978,-0.972489,0.227526,0.049978,-0.972489, + -0.468668,-0.878630,-0.091435,-0.468668,-0.878630,-0.091435,-0.468668,-0.878630,-0.091435,-0.468668,-0.878630,-0.091435, + -0.830384,0.466675,-0.304428,-0.830384,0.466675,-0.304428,-0.830384,0.466675,-0.304428,-0.830384,0.466675,-0.304428, + -0.052174,-0.998621,0.005776,-0.052174,-0.998621,0.005776,-0.052174,-0.998621,0.005776,-0.052174,-0.998621,0.005776, + 0.438617,-0.891167,0.115918,0.438617,-0.891167,0.115918,0.438617,-0.891167,0.115918,0.438617,-0.891167,0.115918, + -0.953932,-0.267806,-0.135251,-0.953932,-0.267806,-0.135251,-0.953932,-0.267806,-0.135251,-0.953932,-0.267806,-0.135251, + -0.049175,-0.994420,-0.093332,-0.049175,-0.994420,-0.093332,-0.049175,-0.994420,-0.093332,-0.049175,-0.994420,-0.093332, + -0.105898,-0.991551,-0.074917,-0.105898,-0.991551,-0.074917,-0.105898,-0.991551,-0.074917,-0.105898,-0.991551,-0.074917, + -0.003642,-0.971999,-0.234958,-0.003642,-0.971999,-0.234958,-0.003642,-0.971999,-0.234958,-0.145758,-0.988459,0.041265, + -0.145758,-0.988459,0.041265,-0.145758,-0.988459,0.041265,-0.145758,-0.988459,0.041265,-0.355208,-0.060688,0.932815, + -0.355208,-0.060688,0.932815,-0.355208,-0.060688,0.932815,-0.355208,-0.060688,0.932815,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.254535,0.298621,-0.919803, + 0.254535,0.298621,-0.919803,0.254535,0.298621,-0.919803,0.254535,0.298621,-0.919803,0.966546,-0.047404,0.252076, + 0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076,0.966546,-0.047404,0.252076,-0.966546,0.047404,-0.252075, + -0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075,-0.966546,0.047404,-0.252075,-0.254533,-0.298621,0.919803, + -0.254533,-0.298621,0.919803,-0.254533,-0.298621,0.919803,-0.254533,-0.298621,0.919803,-0.231008,0.971855,-0.046179, + -0.231008,0.971855,-0.046179,-0.231008,0.971855,-0.046179,-0.231008,0.971855,-0.046179,-0.029085,-0.996691,-0.075904, + -0.029085,-0.996691,-0.075904,-0.029085,-0.996691,-0.075904,-0.029085,-0.996691,-0.075904,0.073854,-0.001683,-0.997268, + 0.073854,-0.001683,-0.997268,0.073854,-0.001683,-0.997268,0.073854,-0.001683,-0.997268,-0.069341,0.002114,0.997591, + -0.069341,0.002114,0.997591,-0.069341,0.002114,0.997591,-0.069341,0.002114,0.997591,0.352501,-0.032414,-0.935250, + 0.352501,-0.032414,-0.935250,0.352501,-0.032414,-0.935250,0.352501,-0.032414,-0.935250,-0.857881,0.116866,-0.500382, + -0.857881,0.116866,-0.500382,-0.857881,0.116866,-0.500382,-0.857881,0.116866,-0.500382,-0.250903,0.029429,0.967565, + -0.250903,0.029429,0.967565,-0.250903,0.029429,0.967565,-0.250903,0.029429,0.967565,0.255102,0.280020,-0.925479, + 0.255102,0.280020,-0.925479,0.255102,0.280020,-0.925479,0.255102,0.280020,-0.925479,0.962404,-0.114293,0.246404, + 0.962404,-0.114293,0.246404,0.962404,-0.114293,0.246404,0.962404,-0.114293,0.246404,-0.959306,0.142732,-0.243638, + -0.959306,0.142732,-0.243638,-0.959306,0.142732,-0.243638,-0.959306,0.142732,-0.243638,-0.255100,-0.280021,0.925479, + -0.255100,-0.280021,0.925479,-0.255100,-0.280021,0.925479,-0.255100,-0.280021,0.925479,0.959305,-0.142733,0.243642, + 0.959305,-0.142733,0.243642,0.959305,-0.142733,0.243642,0.959305,-0.142733,0.243642,0.256473,0.191932,-0.947303, + 0.256473,0.191932,-0.947303,0.256473,0.191932,-0.947303,0.256473,0.191932,-0.947303,-0.951780,0.193339,-0.238189, + -0.951780,0.193339,-0.238189,-0.951780,0.193339,-0.238189,-0.951780,0.193339,-0.238189,-0.256476,-0.191933,0.947302, + -0.256476,-0.191933,0.947302,-0.256476,-0.191933,0.947302,-0.256476,-0.191933,0.947302,-0.934178,-0.062017,-0.351377, + -0.934178,-0.062017,-0.351377,-0.934178,-0.062017,-0.351377,-0.934178,-0.062017,-0.351377,-0.892927,-0.403620,0.199428, + -0.892927,-0.403620,0.199428,-0.892927,-0.403620,0.199428,-0.892927,-0.403620,0.199428,0.079846,0.073392,-0.994102, + 0.079846,0.073392,-0.994102,0.079846,0.073392,-0.994102,0.079846,0.073392,-0.994102,-0.029083,-0.996690,-0.075911, + -0.029083,-0.996690,-0.075911,-0.029083,-0.996690,-0.075911,-0.029083,-0.996690,-0.075911,0.029085,0.996690,0.075913, + 0.029085,0.996690,0.075913,0.029085,0.996690,0.075913,0.029085,0.996690,0.075913,-0.069088,-0.073764,0.994880, + -0.069088,-0.073764,0.994880,-0.069088,-0.073764,0.994880,-0.069088,-0.073764,0.994880,-0.057073,-0.998271,0.014093, + -0.057073,-0.998271,0.014093,-0.057073,-0.998271,0.014093,-0.057073,-0.998271,0.014093,0.442985,0.865228,0.234830, + 0.442985,0.865228,0.234830,0.442985,0.865228,0.234830,0.442985,0.865228,0.234830,0.909497,-0.200593,-0.364111, + 0.909497,-0.200593,-0.364111,0.909497,-0.200593,-0.364111,0.909497,-0.200593,-0.364111,-0.907932,0.200855,0.367856, + -0.907932,0.200855,0.367856,-0.907932,0.200855,0.367856,-0.907932,0.200855,0.367856,0.976795,-0.092967,0.192948, + 0.976795,-0.092967,0.192948,0.976795,-0.092967,0.192948,0.976795,-0.092967,0.192948,0.735219,-0.515878,0.439684, + 0.735219,-0.515878,0.439684,0.735219,-0.515878,0.439684,0.735219,-0.515878,0.439684,0.956364,-0.048923,0.288053, + 0.956364,-0.048923,0.288053,0.956364,-0.048923,0.288053,0.956364,-0.048923,0.288053,-0.730650,-0.578780,-0.362167, + -0.730650,-0.578780,-0.362167,-0.730650,-0.578780,-0.362167,-0.730650,-0.578780,-0.362167,0.833887,0.287825,0.470944, + 0.833887,0.287825,0.470944,0.833887,0.287825,0.470944,0.833887,0.287825,0.470944,0.344245,0.099604,-0.933581, + 0.344245,0.099604,-0.933581,0.344245,0.099604,-0.933581,-0.344236,-0.100049,0.933537,-0.344236,-0.100049,0.933537, + -0.344236,-0.100049,0.933537,0.967552,-0.086442,0.237427,0.967552,-0.086442,0.237427,0.967552,-0.086442,0.237427, + 0.967552,-0.086442,0.237427,0.056828,-0.840219,-0.539262,0.056828,-0.840219,-0.539262,0.056828,-0.840219,-0.539262, + 0.056828,-0.840219,-0.539262,0.006106,0.997913,0.064282,0.006106,0.997913,0.064282,0.006106,0.997913,0.064282, + 0.006106,0.997913,0.064282,0.523070,0.255141,-0.813204,0.523070,0.255141,-0.813204,0.523070,0.255141,-0.813204, + -0.558600,-0.182485,0.809114,-0.558600,-0.182485,0.809114,-0.558600,-0.182485,0.809114,-0.558600,-0.182485,0.809114, + 0.564095,0.205132,-0.799823,0.564095,0.205132,-0.799823,0.564095,0.205132,-0.799823,-0.567945,-0.204574,0.797238, + -0.567945,-0.204574,0.797238,-0.567945,-0.204574,0.797238,0.002736,0.997571,0.069599,0.002736,0.997571,0.069599, + 0.002736,0.997571,0.069599,0.002736,0.997571,0.069599,0.496028,-0.767040,0.406947,0.496028,-0.767040,0.406947, + 0.496028,-0.767040,0.406947,0.496028,-0.767040,0.406947,-0.966446,0.047392,-0.252460,-0.966446,0.047392,-0.252460, + -0.966446,0.047392,-0.252460,-0.966446,0.047392,-0.252460,0.966447,-0.047393,0.252455,0.966447,-0.047393,0.252455, + 0.966447,-0.047393,0.252455,0.966447,-0.047393,0.252455,-0.030309,-0.996997,-0.071269,-0.030309,-0.996997,-0.071269, + -0.030309,-0.996997,-0.071269,-0.030309,-0.996997,-0.071269,0.077812,0.990652,-0.112041,0.077812,0.990652,-0.112041, + 0.077812,0.990652,-0.112041,0.077812,0.990652,-0.112041,-0.957056,0.225956,-0.181623,-0.957056,0.225956,-0.181623, + -0.957056,0.225956,-0.181623,-0.957056,0.225956,-0.181623,-0.968386,0.045331,-0.245305,-0.968386,0.045331,-0.245305, + -0.968386,0.045331,-0.245305,-0.968386,0.045331,-0.245305,-0.887329,0.184794,-0.422490,-0.887329,0.184794,-0.422490, + -0.887329,0.184794,-0.422490,-0.887329,0.184794,-0.422490,-0.040331,0.924960,0.377919,-0.040331,0.924960,0.377919, + -0.040331,0.924960,0.377919,-0.040331,0.924960,0.377919,-0.952073,0.233541,-0.197524,-0.952073,0.233541,-0.197524, + -0.952073,0.233541,-0.197524,-0.952073,0.233541,-0.197524,-0.965564,-0.036643,-0.257573,-0.965564,-0.036643,-0.257573, + -0.965564,-0.036643,-0.257573,-0.965564,-0.036643,-0.257573,0.285737,-0.100582,-0.953015,0.285737,-0.100582,-0.953015, + 0.285737,-0.100582,-0.953015,0.285737,-0.100582,-0.953015,-0.285448,0.101260,0.953030,-0.285448,0.101260,0.953030, + -0.285448,0.101260,0.953030,-0.285448,0.101260,0.953030,-0.965564,-0.036643,-0.257572,-0.965564,-0.036643,-0.257572, + -0.965564,-0.036643,-0.257572,-0.965564,-0.036643,-0.257572,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.124855,0.930848,0.343414,-0.124855,0.930848,0.343414, + -0.124855,0.930848,0.343414,-0.124855,0.930848,0.343414,0.156885,-0.788047,-0.595289,0.156885,-0.788047,-0.595289, + 0.156885,-0.788047,-0.595289,0.156885,-0.788047,-0.595289,-0.171668,0.740614,0.649631,-0.171668,0.740614,0.649631, + -0.171668,0.740614,0.649631,-0.171668,0.740614,0.649631,0.161319,0.803911,-0.572453,0.161319,0.803911,-0.572453, + 0.161319,0.803911,-0.572453,0.161319,0.803911,-0.572453,-0.714694,0.506172,-0.482703,-0.714694,0.506172,-0.482703, + -0.714694,0.506172,-0.482703,-0.714694,0.506172,-0.482703,0.135948,-0.928297,-0.346096,0.135948,-0.928297,-0.346096, + 0.135948,-0.928297,-0.346096,0.135948,-0.928297,-0.346096,-0.506352,0.861526,-0.037162,-0.506352,0.861526,-0.037162, + -0.506352,0.861526,-0.037162,-0.506352,0.861526,-0.037162,0.506342,-0.861536,0.037066,0.506342,-0.861536,0.037066, + 0.506342,-0.861536,0.037066,0.506342,-0.861536,0.037066,-0.836830,-0.481528,0.260473,-0.836830,-0.481528,0.260473, + -0.836830,-0.481528,0.260473,-0.836830,-0.481528,0.260473,-0.974298,-0.144990,0.172396,-0.974298,-0.144990,0.172396, + -0.974298,-0.144990,0.172396,-0.974298,-0.144990,0.172396,-0.969941,0.066800,-0.233990,-0.969941,0.066800,-0.233990, + -0.969941,0.066800,-0.233990,-0.974387,0.043641,-0.220604,-0.974387,0.043641,-0.220604,-0.974387,0.043641,-0.220604, + -0.974387,0.043641,-0.220604,0.772480,-0.259695,0.579511,0.772480,-0.259695,0.579511,0.772480,-0.259695,0.579511, + -0.597041,-0.736252,0.318551,-0.597041,-0.736252,0.318551,-0.597041,-0.736252,0.318551,-0.597041,-0.736252,0.318551, + -0.961994,0.048797,-0.268674,-0.961994,0.048797,-0.268674,-0.961994,0.048797,-0.268674,-0.234817,-0.524097,0.818647, + -0.234817,-0.524097,0.818647,-0.234817,-0.524097,0.818647,-0.234817,-0.524097,0.818647,-0.101758,-0.992313,0.070433, + -0.101758,-0.992313,0.070433,-0.101758,-0.992313,0.070433,-0.101758,-0.992313,0.070433,-0.032027,-0.998084,0.052940, + -0.032027,-0.998084,0.052940,-0.032027,-0.998084,0.052940,-0.226776,0.968776,0.100225,-0.226776,0.968776,0.100225, + -0.226776,0.968776,0.100225,-0.226776,0.968776,0.100225,-0.025115,0.997524,0.065691,-0.025115,0.997524,0.065691, + -0.025115,0.997524,0.065691,-0.025115,0.997524,0.065691,0.953674,-0.050167,0.296629,0.953674,-0.050167,0.296629, + 0.953674,-0.050167,0.296629,0.953674,-0.050167,0.296629,0.907369,0.162060,0.387838,0.907369,0.162060,0.387838, + 0.907369,0.162060,0.387838,0.907369,0.162060,0.387838,0.166346,-0.973355,0.157829,0.166346,-0.973355,0.157829, + 0.166346,-0.973355,0.157829,0.166346,-0.973355,0.157829,0.175972,-0.592451,-0.786152,0.175972,-0.592451,-0.786152, + 0.175972,-0.592451,-0.786152,0.175972,-0.592451,-0.786152,-0.933929,0.193574,-0.300509,-0.933929,0.193574,-0.300509, + -0.933929,0.193574,-0.300509,-0.933929,0.193574,-0.300509,-0.187061,0.542147,0.819198,-0.187061,0.542147,0.819198, + -0.187061,0.542147,0.819198,-0.187061,0.542147,0.819198,0.835616,0.100514,0.540039,0.835616,0.100514,0.540039, + 0.835616,0.100514,0.540039,0.835616,0.100514,0.540039,0.180176,0.824914,-0.535773,0.180176,0.824914,-0.535773, + 0.180176,0.824914,-0.535773,0.180176,0.824914,-0.535773,-0.835615,-0.100515,-0.540042,-0.835615,-0.100515,-0.540042, + -0.835615,-0.100515,-0.540042,-0.835615,-0.100515,-0.540042,-0.180387,-0.824313,0.536628,-0.180387,-0.824313,0.536628, + -0.180387,-0.824313,0.536628,-0.180387,-0.824313,0.536628,0.966546,-0.047403,0.252076,0.966546,-0.047403,0.252076, + 0.966546,-0.047403,0.252076,0.966546,-0.047403,0.252076,0.254450,0.301121,-0.919011,0.254450,0.301121,-0.919011, + 0.254450,0.301121,-0.919011,0.254450,0.301121,-0.919011,-0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080, + -0.966545,0.047403,-0.252080,-0.966545,0.047403,-0.252080,-0.254648,-0.295131,0.920897,-0.254648,-0.295131,0.920897, + -0.254648,-0.295131,0.920897,-0.254648,-0.295131,0.920897,0.141805,0.449663,-0.881870,0.141805,0.449663,-0.881870, + 0.141805,0.449663,-0.881870,0.141805,0.449663,-0.881870,-0.859432,0.093118,-0.502698,-0.859432,0.093118,-0.502698, + -0.859432,0.093118,-0.502698,-0.859432,0.093118,-0.502698,-0.246879,-0.438541,0.864137,-0.246879,-0.438541,0.864137, + -0.246879,-0.438541,0.864137,-0.246879,-0.438541,0.864137,0.917810,-0.077226,0.389436,0.917810,-0.077226,0.389436, + 0.917810,-0.077226,0.389436,0.917810,-0.077226,0.389436,0.947823,-0.141392,0.285726,0.947823,-0.141392,0.285726, + 0.947823,-0.141392,0.285726,0.947823,-0.141392,0.285726,0.983124,0.077000,0.165944,0.983124,0.077000,0.165944, + 0.983124,0.077000,0.165944,0.983124,0.077000,0.165944,-0.894204,0.059886,-0.443636,-0.894204,0.059886,-0.443636, + -0.894204,0.059886,-0.443636,-0.894204,0.059886,-0.443636,-0.039053,-0.998600,-0.035674,-0.039053,-0.998600,-0.035674, + -0.039053,-0.998600,-0.035674,-0.039053,-0.998600,-0.035674,0.894206,-0.059885,0.443632,0.894206,-0.059885,0.443632, + 0.894206,-0.059885,0.443632,0.894206,-0.059885,0.443632,0.039053,0.998600,0.035681,0.039053,0.998600,0.035681, + 0.039053,0.998600,0.035681,0.039053,0.998600,0.035681,-0.963527,0.093635,-0.250695,-0.963527,0.093635,-0.250695, + -0.963527,0.093635,-0.250695,-0.963527,0.093635,-0.250695,-0.486167,-0.492237,0.722042,-0.486167,-0.492237,0.722042, + -0.486167,-0.492237,0.722042,-0.486167,-0.492237,0.722042,0.265341,0.748885,0.607261,0.265341,0.748885,0.607261, + 0.265341,0.748885,0.607261,0.265341,0.748885,0.607261,0.982525,-0.165843,0.084501,0.982525,-0.165843,0.084501, + 0.982525,-0.165843,0.084501,0.982525,-0.165843,0.084501,-0.300287,-0.858592,-0.415509,-0.300287,-0.858592,-0.415509, + -0.300287,-0.858592,-0.415509,-0.300287,-0.858592,-0.415509,-0.982525,0.165843,-0.084499,-0.982525,0.165843,-0.084499, + -0.982525,0.165843,-0.084499,-0.982525,0.165843,-0.084499,0.123441,0.396950,-0.909501,0.123441,0.396950,-0.909501, + 0.123441,0.396950,-0.909501,0.123441,0.396950,-0.909501,-0.123443,-0.396950,0.909501,-0.123443,-0.396950,0.909501, + -0.123443,-0.396950,0.909501,-0.123443,-0.396950,0.909501,0.906775,0.294072,0.302128,0.906775,0.294072,0.302128, + 0.906775,0.294072,0.302128,0.906775,0.294072,0.302128,0.514193,-0.068477,-0.854937,0.514193,-0.068477,-0.854937, + 0.514193,-0.068477,-0.854937,0.514193,-0.068477,-0.854937,-0.833545,-0.496660,-0.241932,-0.833545,-0.496660,-0.241932, + -0.833545,-0.496660,-0.241932,-0.833545,-0.496660,-0.241932,-0.514196,0.068480,0.854935,-0.514196,0.068480,0.854935, + -0.514196,0.068480,0.854935,-0.514196,0.068480,0.854935,-0.423264,0.855567,-0.298080,-0.423264,0.855567,-0.298080, + -0.423264,0.855567,-0.298080,-0.423264,0.855567,-0.298080,0.423270,-0.855565,0.298079,0.423270,-0.855565,0.298079, + 0.423270,-0.855565,0.298079,0.423270,-0.855565,0.298079,-0.165771,0.790110,0.590124,-0.165771,0.790110,0.590124, + -0.165771,0.790110,0.590124,-0.847924,-0.015618,0.529888,-0.847924,-0.015618,0.529888,-0.847924,-0.015618,0.529888, + -0.443463,0.826642,0.346415,-0.443463,0.826642,0.346415,-0.443463,0.826642,0.346415,-0.443463,0.826642,0.346415, + 0.459369,-0.757872,0.463260,0.459369,-0.757872,0.463260,0.459369,-0.757872,0.463260,0.459369,-0.757872,0.463260, + -0.858506,-0.219683,0.463364,-0.858506,-0.219683,0.463364,-0.858506,-0.219683,0.463364,-0.858506,-0.219683,0.463364, + -0.473491,-0.320084,0.820581,-0.473491,-0.320084,0.820581,-0.473491,-0.320084,0.820581,-0.473491,-0.320084,0.820581, + 0.017972,-0.801539,0.597673,0.017972,-0.801539,0.597673,0.017972,-0.801539,0.597673,-0.945136,0.002698,0.326665, + -0.945136,0.002698,0.326665,-0.945136,0.002698,0.326665,0.459053,0.616635,0.639556,0.459053,0.616635,0.639556, + 0.459053,0.616635,0.639556,0.459053,0.616635,0.639556,0.832434,-0.321697,0.451181,0.832434,-0.321697,0.451181, + 0.832434,-0.321697,0.451181,0.832434,-0.321697,0.451181,0.849145,0.036160,0.526921,0.849145,0.036160,0.526921, + 0.849145,0.036160,0.526921,0.849145,0.036160,0.526921,-0.272447,-0.107132,0.956188,-0.272447,-0.107132,0.956188, + -0.272447,-0.107132,0.956188,-0.272447,-0.107132,0.956188,-0.339494,-0.061584,0.938590,-0.339494,-0.061584,0.938590, + -0.339494,-0.061584,0.938590,-0.339494,-0.061584,0.938590,-0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919, + -0.029082,-0.996690,-0.075919,-0.029082,-0.996690,-0.075919,0.216446,0.081216,-0.972911,0.216446,0.081216,-0.972911, + 0.216446,0.081216,-0.972911,0.216446,0.081216,-0.972911,0.029093,0.996691,0.075901,0.029093,0.996691,0.075901, + 0.029093,0.996691,0.075901,0.029093,0.996691,0.075901,-0.216444,-0.081215,0.972911,-0.216444,-0.081215,0.972911, + -0.216444,-0.081215,0.972911,-0.216444,-0.081215,0.972911,0.982636,-0.043955,0.180262,0.982636,-0.043955,0.180262, + 0.982636,-0.043955,0.180262,0.982636,-0.043955,0.180262,-0.982644,0.043725,-0.180271,-0.982644,0.043725,-0.180271, + -0.982644,0.043725,-0.180271,-0.982644,0.043725,-0.180271,0.112369,-0.805195,-0.582267,0.112369,-0.805195,-0.582267, + 0.112369,-0.805195,-0.582267,0.112369,-0.805195,-0.582267,0.227535,0.142636,-0.963267,0.227535,0.142636,-0.963267, + 0.227535,0.142636,-0.963267,0.227535,0.142636,-0.963267,-0.112364,0.805167,0.582307,-0.112364,0.805167,0.582307, + -0.112364,0.805167,0.582307,-0.112364,0.805167,0.582307,-0.162606,-0.728268,0.665721,-0.162606,-0.728268,0.665721, + -0.162606,-0.728268,0.665721,-0.162606,-0.728268,0.665721,0.977648,0.017148,0.209550,0.977648,0.017148,0.209550, + 0.977648,0.017148,0.209550,0.977648,0.017148,0.209550,-0.981515,0.008320,-0.191202,-0.981515,0.008320,-0.191202, + -0.981515,0.008320,-0.191202,-0.981515,0.008320,-0.191202,0.162614,0.728266,-0.665722,0.162614,0.728266,-0.665722, + 0.162614,0.728266,-0.665722,0.162614,0.728266,-0.665722,-0.227532,-0.142635,0.963268,-0.227532,-0.142635,0.963268, + -0.227532,-0.142635,0.963268,-0.227532,-0.142635,0.963268,0.981537,-0.008491,0.191081,0.981537,-0.008491,0.191081, + 0.981537,-0.008491,0.191081,0.981537,-0.008491,0.191081,-0.977592,-0.017471,-0.209782,-0.977592,-0.017471,-0.209782, + -0.977592,-0.017471,-0.209782,-0.977592,-0.017471,-0.209782,-0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916, + -0.029082,-0.996690,-0.075916,-0.029082,-0.996690,-0.075916,0.216449,0.081216,-0.972910,0.216449,0.081216,-0.972910, + 0.216449,0.081216,-0.972910,0.216449,0.081216,-0.972910,0.029083,0.996692,0.075895,0.029083,0.996692,0.075895, + 0.029083,0.996692,0.075895,0.029083,0.996692,0.075895,-0.216452,-0.081215,0.972909,-0.216452,-0.081215,0.972909, + -0.216452,-0.081215,0.972909,-0.216452,-0.081215,0.972909,0.982635,-0.043955,0.180265,0.982635,-0.043955,0.180265, + 0.982635,-0.043955,0.180265,0.982635,-0.043955,0.180265,-0.982644,0.043725,-0.180272,-0.982644,0.043725,-0.180272, + -0.982644,0.043725,-0.180272,-0.982644,0.043725,-0.180272,-0.029083,-0.996693,-0.075880,-0.029083,-0.996693,-0.075880, + -0.029083,-0.996693,-0.075880,-0.029083,-0.996693,-0.075880,0.216455,0.081215,-0.972909,0.216455,0.081215,-0.972909, + 0.216455,0.081215,-0.972909,0.216455,0.081215,-0.972909,0.029082,0.996690,0.075917,0.029082,0.996690,0.075917, + 0.029082,0.996690,0.075917,0.029082,0.996690,0.075917,-0.216449,-0.081216,0.972910,-0.216449,-0.081216,0.972910, + -0.216449,-0.081216,0.972910,-0.216449,-0.081216,0.972910,0.982636,-0.043955,0.180262,0.982636,-0.043955,0.180262, + 0.982636,-0.043955,0.180262,0.982636,-0.043955,0.180262,-0.982644,0.043725,-0.180276,-0.982644,0.043725,-0.180276, + -0.982644,0.043725,-0.180276,-0.982644,0.043725,-0.180276,-0.038622,-0.998466,-0.039671,-0.038622,-0.998466,-0.039671, + -0.038622,-0.998466,-0.039671,-0.038622,-0.998466,-0.039671,-0.038622,-0.998465,-0.039696,-0.038622,-0.998465,-0.039696, + -0.038622,-0.998465,-0.039696,-0.038622,-0.998465,-0.039696,0.038623,0.998466,0.039681,0.038623,0.998466,0.039681, + 0.038623,0.998466,0.039681,0.038623,0.998466,0.039681,-0.215308,-0.043841,0.975562,-0.215308,-0.043841,0.975562, + -0.215308,-0.043841,0.975562,-0.215308,-0.043841,0.975562,0.982527,-0.046714,0.180164,0.982527,-0.046714,0.180164, + 0.982527,-0.046714,0.180164,0.982527,-0.046714,0.180164,-0.982537,0.046484,-0.180167,-0.982537,0.046484,-0.180167, + -0.982537,0.046484,-0.180167,-0.982537,0.046484,-0.180167,0.038624,0.998466,0.039667,0.038624,0.998466,0.039667, + 0.038624,0.998466,0.039667,0.038624,0.998466,0.039667,-0.215310,-0.043841,0.975561,-0.215310,-0.043841,0.975561, + -0.215310,-0.043841,0.975561,-0.215310,-0.043841,0.975561,0.982528,-0.046713,0.180160,0.982528,-0.046713,0.180160, + 0.982528,-0.046713,0.180160,0.982528,-0.046713,0.180160,-0.982538,0.046484,-0.180161,-0.982538,0.046484,-0.180161, + -0.982538,0.046484,-0.180161,-0.982538,0.046484,-0.180161,-0.032211,-0.997458,-0.063556,-0.032211,-0.997458,-0.063556, + -0.032211,-0.997458,-0.063556,-0.032211,-0.997458,-0.063556,-0.032220,-0.997462,-0.063498,-0.032220,-0.997462,-0.063498, + -0.032220,-0.997462,-0.063498,-0.032220,-0.997462,-0.063498,0.032214,0.997461,0.063508,0.032214,0.997461,0.063508, + 0.032214,0.997461,0.063508,0.032214,0.997461,0.063508,-0.272519,-0.065767,0.959900,-0.272519,-0.065767,0.959900, + -0.272519,-0.065767,0.959900,-0.272519,-0.065767,0.959900,0.970315,-0.047988,0.237037,0.970315,-0.047988,0.237037, + 0.970315,-0.047988,0.237037,0.970315,-0.047988,0.237037,-0.970323,0.047758,-0.237048,-0.970323,0.047758,-0.237048, + -0.970323,0.047758,-0.237048,-0.970323,0.047758,-0.237048,0.032214,0.997461,0.063519,0.032214,0.997461,0.063519, + 0.032214,0.997461,0.063519,0.032214,0.997461,0.063519,-0.272522,-0.065767,0.959899,-0.272522,-0.065767,0.959899, + -0.272522,-0.065767,0.959899,-0.272522,-0.065767,0.959899,0.970314,-0.047987,0.237039,0.970314,-0.047987,0.237039, + 0.970314,-0.047987,0.237039,0.970314,-0.047987,0.237039,-0.970321,0.047759,-0.237056,-0.970321,0.047759,-0.237056, + -0.970321,0.047759,-0.237056,-0.970321,0.047759,-0.237056,-0.130160,-0.990636,0.041210,-0.130160,-0.990636,0.041210, + -0.130160,-0.990636,0.041210,-0.130160,-0.990636,0.041210,-0.960598,0.048870,-0.273610,-0.960598,0.048870,-0.273610, + -0.960598,0.048870,-0.273610,-0.960598,0.048870,-0.273610,0.931106,-0.240573,0.274165,0.931106,-0.240573,0.274165, + 0.931106,-0.240573,0.274165,0.931106,-0.240573,0.274165,-0.000706,-0.997077,0.076400,-0.000706,-0.997077,0.076400, + -0.000706,-0.997077,0.076400,-0.000706,-0.997077,0.076400,-0.971644,0.046014,-0.231928,-0.971644,0.046014,-0.231928, + -0.971644,0.046014,-0.231928,-0.971644,0.046014,-0.231928,0.971315,-0.046112,0.233281,0.971315,-0.046112,0.233281, + 0.971315,-0.046112,0.233281,0.971315,-0.046112,0.233281,-0.122408,-0.991812,0.036416,-0.122408,-0.991812,0.036416, + -0.122408,-0.991812,0.036416,-0.122408,-0.991812,0.036416,0.274941,-0.031159,-0.960956,0.274941,-0.031159,-0.960956, + 0.274941,-0.031159,-0.960956,0.274941,-0.031159,-0.960956,-0.114309,-0.988611,-0.097885,-0.114309,-0.988611,-0.097885, + -0.114309,-0.988611,-0.097885,-0.114309,-0.988611,-0.097885,-0.272423,-0.065169,0.959968,-0.272423,-0.065169,0.959968, + -0.272423,-0.065169,0.959968,-0.272423,-0.065169,0.959968,0.563665,0.139357,-0.814163,0.563665,0.139357,-0.814163, + 0.563665,0.139357,-0.814163,0.563665,0.139357,-0.814163,-0.841827,-0.362961,-0.399484,-0.841827,-0.362961,-0.399484, + -0.841827,-0.362961,-0.399484,-0.841827,-0.362961,-0.399484,-0.612519,-0.250140,0.749834,-0.612519,-0.250140,0.749834, + -0.612519,-0.250140,0.749834,0.000516,0.997328,0.073052,0.000516,0.997328,0.073052,0.000516,0.997328,0.073052, + 0.000516,0.997328,0.073052,-0.569536,-0.138649,0.810188,-0.569536,-0.138649,0.810188,-0.569536,-0.138649,0.810188, + -0.569536,-0.138649,0.810188,-0.668073,-0.056164,0.741973,-0.668073,-0.056164,0.741973,-0.668073,-0.056164,0.741973, + 0.607978,0.249907,-0.753597,0.607978,0.249907,-0.753597,0.607978,0.249907,-0.753597,0.664844,0.056519,-0.744841, + 0.664844,0.056519,-0.744841,0.664844,0.056519,-0.744841,0.364169,0.926055,-0.099007,0.364169,0.926055,-0.099007, + 0.364169,0.926055,-0.099007,-0.062102,-0.994700,-0.081945,-0.062102,-0.994700,-0.081945,-0.062102,-0.994700,-0.081945, + -0.954679,0.044443,-0.294300,-0.954679,0.044443,-0.294300,-0.954679,0.044443,-0.294300,-0.954679,0.044443,-0.294300, + 0.954680,-0.044443,0.294298,0.954680,-0.044443,0.294298,0.954680,-0.044443,0.294298,0.954680,-0.044443,0.294298, + -0.087442,-0.984798,0.150086,-0.087442,-0.984798,0.150086,-0.087442,-0.984798,0.150086,-0.087442,-0.984798,0.150086, + 0.041569,0.998731,0.028429,0.041569,0.998731,0.028429,0.041569,0.998731,0.028429,0.041569,0.998731,0.028429, + -0.998147,0.024899,0.055516,-0.998147,0.024899,0.055516,-0.998147,0.024899,0.055516,-0.998147,0.024899,0.055516, + 0.998147,-0.024895,-0.055516,0.998147,-0.024895,-0.055516,0.998147,-0.024895,-0.055516,0.998147,-0.024895,-0.055516, + 0.001962,-0.981378,-0.192076,0.001962,-0.981378,-0.192076,0.001962,-0.981378,-0.192076,0.001962,-0.981378,-0.192076, + -0.712719,0.073929,-0.697543,-0.712719,0.073929,-0.697543,-0.712719,0.073929,-0.697543,-0.712719,0.073929,-0.697543, + -0.029083,-0.996690,-0.075913,-0.029083,-0.996690,-0.075913,-0.029083,-0.996690,-0.075913,-0.029083,-0.996690,-0.075913, + 0.563718,0.046364,-0.824665,0.563718,0.046364,-0.824665,0.563718,0.046364,-0.824665,0.563718,0.046364,-0.824665, + 0.029086,0.996690,0.075913,0.029086,0.996690,0.075913,0.029086,0.996690,0.075913,0.029086,0.996690,0.075913, + -0.554777,-0.047083,0.830666,-0.554777,-0.047083,0.830666,-0.554777,-0.047083,0.830666,-0.554777,-0.047083,0.830666, + -0.561817,0.001398,-0.827260,-0.561817,0.001398,-0.827260,-0.561817,0.001398,-0.827260,-0.561817,0.001398,-0.827260, + 0.068067,-0.996529,-0.047914,0.068067,-0.996529,-0.047914,0.068067,-0.996529,-0.047914,0.068067,-0.996529,-0.047914, + 0.712063,0.082161,-0.697292,0.712063,0.082161,-0.697292,0.712063,0.082161,-0.697292,0.712063,0.082161,-0.697292, + -0.068068,0.996530,0.047914,-0.068068,0.996530,0.047914,-0.068068,0.996530,0.047914,-0.068068,0.996530,0.047914, + -0.704479,-0.082014,0.704970,-0.704479,-0.082014,0.704970,-0.704479,-0.082014,0.704970,-0.704479,-0.082014,0.704970, + -0.406174,-0.208542,-0.889681,-0.406174,-0.208542,-0.889681,-0.406174,-0.208542,-0.889681,-0.406174,-0.208542,-0.889681, + -0.045895,-0.913276,0.404746,-0.045895,-0.913276,0.404746,-0.045895,-0.913276,0.404746,-0.045895,-0.913276,0.404746, + 0.567572,-0.063154,-0.820898,0.567572,-0.063154,-0.820898,0.567572,-0.063154,-0.820898,0.567572,-0.063154,-0.820898, + 0.030750,0.998537,-0.044477,0.030750,0.998537,-0.044477,0.030750,0.998537,-0.044477,0.030750,0.998537,-0.044477, + -0.566093,0.063208,0.821915,-0.566093,0.063208,0.821915,-0.566093,0.063208,0.821915,-0.566093,0.063208,0.821915, + -0.031530,-0.998573,0.043093,-0.031530,-0.998573,0.043093,-0.031530,-0.998573,0.043093,-0.031530,-0.998573,0.043093, + 0.321918,-0.269526,-0.907593,0.321918,-0.269526,-0.907593,0.321918,-0.269526,-0.907593,0.321918,-0.269526,-0.907593, + 0.048919,0.915659,-0.398967,0.048919,0.915659,-0.398967,0.048919,0.915659,-0.398967,0.048919,0.915659,-0.398967, + -0.319745,0.269450,0.908383,-0.319745,0.269450,0.908383,-0.319745,0.269450,0.908383,-0.319745,0.269450,0.908383, + 0.872268,0.274048,0.405026,0.872268,0.274048,0.405026,0.872268,0.274048,0.405026,0.872268,0.274048,0.405026, + -0.007038,0.754906,0.655795,-0.007038,0.754906,0.655795,-0.007038,0.754906,0.655795,-0.007038,0.754906,0.655795, + -0.092266,0.507582,-0.856649,-0.092266,0.507582,-0.856649,-0.092266,0.507582,-0.856649,-0.092266,0.507582,-0.856649, + 0.013413,-0.873277,-0.487039,0.013413,-0.873277,-0.487039,0.013413,-0.873277,-0.487039,0.013413,-0.873277,-0.487039, + 0.056569,-0.654377,0.754050,0.056569,-0.654377,0.754050,0.056569,-0.654377,0.754050,0.056569,-0.654377,0.754050, + 0.840025,-0.376363,0.390780,0.840025,-0.376363,0.390780,0.840025,-0.376363,0.390780,0.959303,-0.049175,0.278062, + 0.959303,-0.049175,0.278062,0.959303,-0.049175,0.278062,0.959303,-0.049175,0.278062,-0.967752,0.047158,-0.247452, + -0.967752,0.047158,-0.247452,-0.967752,0.047158,-0.247452,-0.967752,0.047158,-0.247452,-0.254864,-0.065986,0.964723, + -0.254864,-0.065986,0.964723,-0.254864,-0.065986,0.964723,0.237326,-0.971430,0.000085,0.237326,-0.971430,0.000085, + 0.237326,-0.971430,0.000085,0.237326,-0.971430,0.000085,0.458456,0.869721,0.182766,0.458456,0.869721,0.182766, + 0.458456,0.869721,0.182766,0.458456,0.869721,0.182766,-0.181123,-0.978108,-0.102467,-0.181123,-0.978108,-0.102467, + -0.181123,-0.978108,-0.102467,0.181123,0.978108,0.102467,0.181123,0.978108,0.102467,0.181123,0.978108,0.102467, + -0.948108,-0.157290,-0.276316,-0.948108,-0.157290,-0.276316,-0.948108,-0.157290,-0.276316,-0.948108,-0.157290,-0.276316, + -0.183489,0.982952,0.011719,-0.183489,0.982952,0.011719,-0.183489,0.982952,0.011719,-0.183489,0.982952,0.011719, + 0.956095,0.158703,0.246363,0.956095,0.158703,0.246363,0.956095,0.158703,0.246363,0.956095,0.158703,0.246363, + 0.185220,-0.982025,-0.036330,0.185220,-0.982025,-0.036330,0.185220,-0.982025,-0.036330,0.185220,-0.982025,-0.036330, + 0.187299,0.039430,0.981511,0.187299,0.039430,0.981511,0.187299,0.039430,0.981511,0.187299,0.039430,0.981511, + -0.268223,0.017193,0.963203,-0.268223,0.017193,0.963203,-0.268223,0.017193,0.963203,-0.268223,0.017193,0.963203, + 0.141076,0.025370,0.989674,0.141076,0.025370,0.989674,0.141076,0.025370,0.989674,0.141076,0.025370,0.989674, + -0.254835,-0.066044,0.964726,-0.254835,-0.066044,0.964726,-0.254835,-0.066044,0.964726,-0.953502,-0.157769,-0.256794, + -0.953502,-0.157769,-0.256794,-0.953502,-0.157769,-0.256794,-0.953502,-0.157769,-0.256794,-0.177842,-0.983929,0.016017, + -0.177842,-0.983929,0.016017,-0.177842,-0.983929,0.016017,-0.950107,-0.157153,-0.269443,-0.950107,-0.157153,-0.269443, + -0.950107,-0.157153,-0.269443,-0.950107,-0.157153,-0.269443,0.067818,-0.961682,0.265647,0.067818,-0.961682,0.265647, + 0.067818,-0.961682,0.265647,0.067818,-0.961682,0.265647,0.027694,-0.999421,-0.019768,0.027694,-0.999421,-0.019768, + 0.027694,-0.999421,-0.019768,0.027694,-0.999421,-0.019768,-0.170487,-0.974522,-0.145742,-0.170487,-0.974522,-0.145742, + -0.170487,-0.974522,-0.145742,-0.170487,-0.974522,-0.145742,0.288838,0.934332,0.208797,0.288838,0.934332,0.208797, + 0.288838,0.934332,0.208797,-0.979071,-0.165605,-0.118302,-0.979071,-0.165605,-0.118302,-0.979071,-0.165605,-0.118302, + 0.284225,0.948356,0.140847,0.284225,0.948356,0.140847,0.284225,0.948356,0.140847,0.284225,0.948356,0.140847, + 0.387761,-0.920524,0.047709,0.387761,-0.920524,0.047709,0.387761,-0.920524,0.047709,0.387761,-0.920524,0.047709, + 0.306893,0.940892,0.143312,0.306893,0.940892,0.143312,0.306893,0.940892,0.143312,0.306893,0.940892,0.143312, + 0.414769,-0.908956,0.042018,0.414769,-0.908956,0.042018,0.414769,-0.908956,0.042018,0.414769,-0.908956,0.042018, + 0.363985,-0.922142,0.131032,0.363985,-0.922142,0.131032,0.363985,-0.922142,0.131032,0.177842,0.983929,-0.016017, + 0.177842,0.983929,-0.016017,0.177842,0.983929,-0.016017,-0.067818,0.961682,-0.265648,-0.067818,0.961682,-0.265648, + -0.067818,0.961682,-0.265648,-0.067818,0.961682,-0.265648,-0.027694,0.999421,0.019770,-0.027694,0.999421,0.019770, + -0.027694,0.999421,0.019770,-0.027694,0.999421,0.019770,0.170487,0.974522,0.145745,0.170487,0.974522,0.145745, + 0.170487,0.974522,0.145745,0.170487,0.974522,0.145745,-0.259632,-0.044036,0.964703,-0.259632,-0.044036,0.964703, + -0.259632,-0.044036,0.964703,-0.264278,-0.096433,0.959614,-0.264278,-0.096433,0.959614,-0.264278,-0.096433,0.959614, + -0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.254842,-0.066046,0.964724,-0.208611,-0.139670,0.967974, + -0.208611,-0.139670,0.967974,-0.208611,-0.139670,0.967974,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.269895,0.050684,0.961555, + -0.269895,0.050684,0.961555,-0.269895,0.050684,0.961555,-0.330220,-0.139801,0.933494,-0.330220,-0.139801,0.933494, + -0.330220,-0.139801,0.933494,-0.177254,-0.470865,0.864215,-0.177254,-0.470865,0.864215,-0.177254,-0.470865,0.864215, + -0.232522,-0.190704,0.953711,-0.232522,-0.190704,0.953711,-0.232522,-0.190704,0.953711,-0.170825,-0.131779,0.976449, + -0.170825,-0.131779,0.976449,-0.170825,-0.131779,0.976449,-0.230860,-0.088352,0.968967,-0.230860,-0.088352,0.968967, + -0.230860,-0.088352,0.968967,-0.582594,0.806752,-0.098671,-0.582594,0.806752,-0.098671,-0.582594,0.806752,-0.098671, + -0.250450,-0.072116,0.965440,-0.250450,-0.072116,0.965440,-0.250450,-0.072116,0.965440,-0.616337,-0.756185,-0.219800, + -0.616337,-0.756185,-0.219800,-0.616337,-0.756185,-0.219800,-0.673511,0.729712,-0.117916,-0.673511,0.729712,-0.117916, + -0.673511,0.729712,-0.117916,-0.949914,0.207422,-0.233753,-0.949914,0.207422,-0.233753,-0.949914,0.207422,-0.233753, + -0.777128,-0.578057,-0.248842,-0.777128,-0.578057,-0.248842,-0.777128,-0.578057,-0.248842,-0.965960,-0.042770,-0.255130, + -0.965960,-0.042770,-0.255130,-0.965960,-0.042770,-0.255130,-0.729527,0.669965,-0.137614,-0.729527,0.669965,-0.137614, + -0.729527,0.669965,-0.137614,-0.729311,0.670217,-0.137531,-0.729311,0.670217,-0.137531,-0.729311,0.670217,-0.137531, + -0.746517,-0.618724,-0.244732,-0.746517,-0.618724,-0.244732,-0.746517,-0.618724,-0.244732,-0.956017,-0.172255,-0.237401, + -0.956017,-0.172255,-0.237401,-0.956017,-0.172255,-0.237401,0.184792,-0.982260,-0.031909,0.184792,-0.982260,-0.031909, + 0.184792,-0.982260,-0.031909,-0.133667,0.989076,0.062139,-0.133667,0.989076,0.062139,-0.133667,0.989076,0.062139, + 0.235738,0.961493,0.141275,0.235738,0.961493,0.141275,0.235738,0.961493,0.141275,0.887045,-0.416074,0.200085, + 0.887045,-0.416074,0.200085,0.887045,-0.416074,0.200085,-0.578111,0.811413,-0.086006,-0.578111,0.811413,-0.086006, + -0.578111,0.811413,-0.086006,0.632345,-0.767685,0.103917,0.632345,-0.767685,0.103917,0.632345,-0.767685,0.103917, + 0.949809,-0.207875,0.233773,0.949809,-0.207875,0.233773,0.949809,-0.207875,0.233773,-0.648437,0.237503,0.723272, + -0.648437,0.237503,0.723272,-0.648437,0.237503,0.723272,0.524163,0.826239,0.206355,0.524163,0.826239,0.206355, + 0.524163,0.826239,0.206355,0.109402,0.987882,0.110092,0.109402,0.987882,0.110092,0.109402,0.987882,0.110092, + 0.956376,0.127759,0.262722,0.956376,0.127759,0.262722,0.956376,0.127759,0.262722,0.795114,-0.584432,0.161967, + 0.795114,-0.584432,0.161967,0.795114,-0.584432,0.161967,0.646610,-0.754263,0.113937,0.646610,-0.754263,0.113937, + 0.646610,-0.754263,0.113937,0.953913,0.192306,0.230365,0.953913,0.192306,0.230365,0.953913,0.192306,0.230365, + -0.038846,-0.994998,-0.092035,-0.038846,-0.994998,-0.092035,-0.038846,-0.994998,-0.092035,-0.915937,0.339501,-0.214007, + -0.915937,0.339501,-0.214007,-0.915937,0.339501,-0.214007,0.799921,-0.577823,0.162010,0.799921,-0.577823,0.162010, + 0.799921,-0.577823,0.162010,0.959847,-0.148634,0.237912,0.959847,-0.148634,0.237912,0.959847,-0.148634,0.237912, + 0.051712,-0.997226,-0.053546,0.051712,-0.997226,-0.053546,0.051712,-0.997226,-0.053546,0.806628,-0.568380,0.162156, + 0.806628,-0.568380,0.162156,0.806628,-0.568380,0.162156,0.735533,0.631196,0.246134,0.735533,0.631196,0.246134, + 0.735533,0.631196,0.246134,-0.332067,-0.929969,-0.157764,-0.332067,-0.929969,-0.157764,-0.332067,-0.929969,-0.157764, + -0.250928,-0.135474,0.958479,-0.250928,-0.135474,0.958479,-0.250928,-0.135474,0.958479,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.009341,-0.991316,0.131169,-0.009341,-0.991316,0.131169, + -0.009341,-0.991316,0.131169,-0.236730,-0.159094,0.958461,-0.236730,-0.159094,0.958461,-0.236730,-0.159094,0.958461, + 0.183675,0.203814,0.961625,0.183675,0.203814,0.961625,0.183675,0.203814,0.961625,-0.306158,-0.054884,0.950397, + -0.306158,-0.054884,0.950397,-0.306158,-0.054884,0.950397,-0.141261,0.690860,0.709054,-0.141261,0.690860,0.709054, + -0.141261,0.690860,0.709054,-0.254587,-0.224824,0.940553,-0.254587,-0.224824,0.940553,-0.254587,-0.224824,0.940553, + -0.018955,-0.997133,-0.073263,-0.018955,-0.997133,-0.073263,-0.018955,-0.997133,-0.073263,-0.253389,0.051364,0.966000, + -0.253389,0.051364,0.966000,-0.253389,0.051364,0.966000,0.002600,-0.997707,-0.067624,0.002600,-0.997707,-0.067624, + 0.002600,-0.997707,-0.067624,-0.256139,0.051251,0.965280,-0.256139,0.051251,0.965280,-0.256139,0.051251,0.965280, + 0.026035,-0.997773,-0.061418,0.026035,-0.997773,-0.061418,0.026035,-0.997773,-0.061418,-0.259125,0.051129,0.964490, + -0.259125,0.051129,0.964490,-0.259125,0.051129,0.964490,0.051560,-0.997176,-0.054612,0.051560,-0.997176,-0.054612, + 0.051560,-0.997176,-0.054612,-0.262388,0.050995,0.963614,-0.262388,0.050995,0.963614,-0.262388,0.050995,0.963614, + 0.079410,-0.995724,-0.047192,0.079410,-0.995724,-0.047192,0.079410,-0.995724,-0.047192,-0.265962,0.050848,0.962642, + -0.265962,0.050848,0.962642,-0.265962,0.050848,0.962642,0.109835,-0.993185,-0.038979,0.109835,-0.993185,-0.038979, + 0.109835,-0.993185,-0.038979,-0.269894,0.050683,0.961555,-0.269894,0.050683,0.961555,-0.269894,0.050683,0.961555, + 0.143106,-0.989254,-0.029941,0.143106,-0.989254,-0.029941,0.143106,-0.989254,-0.029941,0.936945,0.229868,0.263240, + 0.936945,0.229868,0.263240,0.936945,0.229868,0.263240,0.935828,0.231066,0.266148,0.935828,0.231066,0.266148, + 0.935828,0.231066,0.266148,0.936943,0.229866,0.263248,0.936943,0.229866,0.263248,0.936943,0.229866,0.263248, + 0.936223,0.231019,0.264795,0.936223,0.231019,0.264795,0.936223,0.231019,0.264795,0.966840,0.004389,0.255345, + 0.966840,0.004389,0.255345,0.966840,0.004389,0.255345,0.935827,0.231066,0.266151,0.935827,0.231066,0.266151, + 0.935827,0.231066,0.266151,0.936223,0.231020,0.264795,0.936223,0.231020,0.264795,0.936223,0.231020,0.264795, + -0.965288,-0.039459,-0.258190,-0.965288,-0.039459,-0.258190,-0.965288,-0.039459,-0.258190,0.966885,0.003612,0.255187, + 0.966885,0.003612,0.255187,0.966885,0.003612,0.255187,0.935825,0.231065,0.266157,0.935825,0.231065,0.266157, + 0.935825,0.231065,0.266157,-0.965415,-0.039407,-0.257722,-0.965415,-0.039407,-0.257722,-0.965415,-0.039407,-0.257722, + 0.951695,-0.197391,0.235189,0.951695,-0.197391,0.235189,0.951695,-0.197391,0.235189,-0.965278,-0.039642,-0.258200, + -0.965278,-0.039642,-0.258200,-0.965278,-0.039642,-0.258200,-0.965278,-0.039644,-0.258199,-0.965278,-0.039644,-0.258199, + -0.965278,-0.039644,-0.258199,-0.966534,-0.003616,-0.256511,-0.966534,-0.003616,-0.256511,-0.966534,-0.003616,-0.256511, + -0.965289,-0.039458,-0.258185,-0.965289,-0.039458,-0.258185,-0.965289,-0.039458,-0.258185,-0.965415,-0.039406,-0.257722, + -0.965415,-0.039406,-0.257722,-0.965415,-0.039406,-0.257722,-0.965278,-0.039640,-0.258199,-0.965278,-0.039640,-0.258199, + -0.965278,-0.039640,-0.258199,-0.965289,-0.039455,-0.258188,-0.965289,-0.039455,-0.258188,-0.965289,-0.039455,-0.258188, + -0.965415,-0.039406,-0.257723,-0.965415,-0.039406,-0.257723,-0.965415,-0.039406,-0.257723,-0.965277,-0.039641,-0.258202, + -0.965277,-0.039641,-0.258202,-0.965277,-0.039641,-0.258202,0.935827,0.231066,0.266149,0.935827,0.231066,0.266149, + 0.935827,0.231066,0.266149,0.936223,0.231021,0.264795,0.936223,0.231021,0.264795,0.936223,0.231021,0.264795, + -0.897902,-0.058548,-0.436284,-0.897902,-0.058548,-0.436284,-0.897902,-0.058548,-0.436284,-0.966543,-0.003100,-0.256488, + -0.966543,-0.003100,-0.256488,-0.966543,-0.003100,-0.256488,-0.965415,-0.039407,-0.257721,-0.965415,-0.039407,-0.257721, + -0.965415,-0.039407,-0.257721,-0.966773,-0.003615,-0.255611,-0.966773,-0.003615,-0.255611,-0.966773,-0.003615,-0.255611, + 0.936944,0.229866,0.263244,0.936944,0.229866,0.263244,0.936944,0.229866,0.263244,0.936946,0.229866,0.263238, + 0.936946,0.229866,0.263238,0.936946,0.229866,0.263238,0.966599,0.003358,0.256270,0.966599,0.003358,0.256270, + 0.966599,0.003358,0.256270,0.966709,0.006313,0.255800,0.966709,0.006313,0.255800,0.966709,0.006313,0.255800, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.198188,-0.009368,0.980119, + -0.198188,-0.009368,0.980119,-0.198188,-0.009368,0.980119,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.228160,-0.046286,0.972523,-0.228160,-0.046286,0.972523,-0.228160,-0.046286,0.972523, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.232178,-0.007052,0.972648,-0.232178,-0.007052,0.972648, + -0.232178,-0.007052,0.972648,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.235263,-0.042184,0.971016,-0.235263,-0.042184,0.971016,-0.235263,-0.042184,0.971016,-0.247079,0.017794,0.968832, + -0.247079,0.017794,0.968832,-0.247079,0.017794,0.968832,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.209343,0.021870,0.977598,-0.209343,0.021870,0.977598,-0.209343,0.021870,0.977598, + -0.215845,-0.007522,0.976399,-0.215845,-0.007522,0.976399,-0.215845,-0.007522,0.976399,0.879210,0.399492,0.259608, + 0.879210,0.399492,0.259608,0.879210,0.399492,0.259608,-0.966738,0.039890,-0.252637,-0.966738,0.039890,-0.252637, + -0.966738,0.039890,-0.252637,0.865626,-0.453928,0.211286,0.865626,-0.453928,0.211286,0.865626,-0.453928,0.211286, + 0.356489,-0.933810,0.030238,0.356489,-0.933810,0.030238,0.356489,-0.933810,0.030238,-0.808366,0.562048,-0.175060, + -0.808366,0.562048,-0.175060,-0.808366,0.562048,-0.175060,0.031249,0.996582,0.076473,0.031249,0.996582,0.076473, + 0.031249,0.996582,0.076473,-0.410337,0.910771,-0.046043,-0.410337,0.910771,-0.046043,-0.410337,0.910771,-0.046043, + -0.042814,-0.995916,-0.079492,-0.042814,-0.995916,-0.079492,-0.042814,-0.995916,-0.079492,0.501871,0.843738,0.190345, + 0.501871,0.843738,0.190345,0.501871,0.843738,0.190345,-0.564072,-0.800184,-0.203786,-0.564072,-0.800184,-0.203786, + -0.564072,-0.800184,-0.203786,-0.877016,-0.404442,-0.259365,-0.877016,-0.404442,-0.259365,-0.877016,-0.404442,-0.259365, + -0.080271,0.995667,0.046953,-0.080271,0.995667,0.046953,-0.080271,0.995667,0.046953,-0.266547,0.091598,0.959460, + -0.266547,0.091598,0.959460,-0.266547,0.091598,0.959460,-0.094453,0.994594,0.043137,-0.094453,0.994594,0.043137, + -0.094453,0.994594,0.043137,-0.304521,0.190039,0.933355,-0.304521,0.190039,0.933355,-0.304521,0.190039,0.933355, + -0.224505,0.974445,0.007397,-0.224505,0.974445,0.007397,-0.224505,0.974445,0.007397,-0.338061,0.179068,0.923932, + -0.338061,0.179068,0.923932,-0.338061,0.179068,0.923932,-0.354007,0.934777,-0.029519,-0.354007,0.934777,-0.029519, + -0.354007,0.934777,-0.029519,-0.338060,0.179070,0.923931,-0.338060,0.179070,0.923931,-0.338060,0.179070,0.923931, + -0.475385,0.877336,-0.065501,-0.475385,0.877336,-0.065501,-0.475385,0.877336,-0.065501,-0.371259,0.167820,0.913238, + -0.371259,0.167820,0.913238,-0.371259,0.167820,0.913238,-0.912977,-0.308943,-0.266509,-0.912977,-0.308943,-0.266509, + -0.912977,-0.308943,-0.266509,0.915927,0.303406,0.262722,0.915927,0.303406,0.262722,0.915927,0.303406,0.262722, + 0.915931,0.303397,0.262718,0.915931,0.303397,0.262718,0.915931,0.303397,0.262718,0.966818,0.003202,0.255446, + 0.966818,0.003202,0.255446,0.966818,0.003202,0.255446,0.912722,0.313072,0.262536,0.912722,0.313072,0.262536, + 0.912722,0.313072,0.262536,0.889781,0.371212,0.265502,0.889781,0.371212,0.265502,0.889781,0.371212,0.265502, + -0.912973,-0.308944,-0.266522,-0.912973,-0.308944,-0.266522,-0.912973,-0.308944,-0.266522,-0.913222,-0.308206,-0.266522, + -0.913222,-0.308206,-0.266522,-0.913222,-0.308206,-0.266522,-0.912974,-0.308944,-0.266520,-0.912974,-0.308944,-0.266520, + -0.912974,-0.308944,-0.266520,-0.913224,-0.308205,-0.266516,-0.913224,-0.308205,-0.266516,-0.913224,-0.308205,-0.266516, + -0.913221,-0.308204,-0.266529,-0.913221,-0.308204,-0.266529,-0.913221,-0.308204,-0.266529,-0.912972,-0.308946,-0.266523, + -0.912972,-0.308946,-0.266523,-0.912972,-0.308946,-0.266523,-0.913222,-0.308206,-0.266524,-0.913222,-0.308206,-0.266524, + -0.913222,-0.308206,-0.266524,-0.912974,-0.308944,-0.266519,-0.912974,-0.308944,-0.266519,-0.912974,-0.308944,-0.266519, + -0.913221,-0.308204,-0.266529,-0.913221,-0.308204,-0.266529,-0.913221,-0.308204,-0.266529,-0.966816,-0.003202,-0.255455, + -0.966816,-0.003202,-0.255455,-0.966816,-0.003202,-0.255455,0.915258,0.302072,0.266562,0.915258,0.302072,0.266562, + 0.915258,0.302072,0.266562,0.915259,0.302067,0.266563,0.915259,0.302067,0.266563,0.915259,0.302067,0.266563, + 0.915929,0.303401,0.262719,0.915929,0.303401,0.262719,0.915929,0.303401,0.262719,0.915260,0.302069,0.266558, + 0.915260,0.302069,0.266558,0.915260,0.302069,0.266558,0.915928,0.303399,0.262726,0.915928,0.303399,0.262726, + 0.915928,0.303399,0.262726,0.915263,0.302065,0.266553,0.915263,0.302065,0.266553,0.915263,0.302065,0.266553, + 0.911886,0.312164,0.266491,0.911886,0.312164,0.266491,0.911886,0.312164,0.266491,-0.006385,-0.996612,0.081995, + -0.006385,-0.996612,0.081995,-0.006385,-0.996612,0.081995,-0.965627,0.026142,-0.258613,-0.965627,0.026142,-0.258613, + -0.965627,0.026142,-0.258613,-0.966701,-0.014950,-0.255473,-0.966701,-0.014950,-0.255473,-0.966701,-0.014950,-0.255473, + -0.006395,-0.996612,0.081998,-0.006395,-0.996612,0.081998,-0.006395,-0.996612,0.081998,-0.006381,-0.996614,0.081973, + -0.006381,-0.996614,0.081973,-0.006381,-0.996614,0.081973,0.966702,0.014958,0.255469,0.966702,0.014958,0.255469, + 0.966702,0.014958,0.255469,0.966702,0.014955,0.255468,0.966702,0.014955,0.255468,0.966702,0.014955,0.255468, + -0.966701,-0.014948,-0.255470,-0.966701,-0.014948,-0.255470,-0.966701,-0.014948,-0.255470,0.031299,-0.997706,-0.060027, + 0.031299,-0.997706,-0.060027,0.031299,-0.997706,-0.060027,0.031299,-0.997706,-0.060023,0.031299,-0.997706,-0.060023, + 0.031299,-0.997706,-0.060023,0.966477,0.014900,0.256322,0.966477,0.014900,0.256322,0.966477,0.014900,0.256322, + -0.966474,-0.014893,-0.256333,-0.966474,-0.014893,-0.256333,-0.966474,-0.014893,-0.256333,0.966702,0.014943,0.255468, + 0.966702,0.014943,0.255468,0.966702,0.014943,0.255468,-0.045669,-0.989078,0.140139,-0.045669,-0.989078,0.140139, + -0.045669,-0.989078,0.140139,-0.012316,-0.994477,0.104234,-0.012316,-0.994477,0.104234,-0.012316,-0.994477,0.104234, + -0.988044,-0.021811,-0.152620,-0.988044,-0.021811,-0.152620,-0.988044,-0.021811,-0.152620,0.901670,-0.006882,0.432371, + 0.901670,-0.006882,0.432371,0.901670,-0.006882,0.432371,-0.914780,0.006987,-0.403891,-0.914780,0.006987,-0.403891, + -0.914780,0.006987,-0.403891,0.061972,-0.982332,-0.176589,0.061972,-0.982332,-0.176589,0.061972,-0.982332,-0.176589, + 0.996670,0.026629,0.077075,0.996670,0.026629,0.077075,0.996670,0.026629,0.077075,-0.904215,-0.002669,-0.427070, + -0.904215,-0.002669,-0.427070,-0.904215,-0.002669,-0.427070,-0.009342,-0.991316,0.131165,-0.009342,-0.991316,0.131165, + -0.009342,-0.991316,0.131165,-0.930968,-0.246026,-0.269759,-0.930968,-0.246026,-0.269759,-0.930968,-0.246026,-0.269759, + 0.038137,-0.999253,0.006277,0.038137,-0.999253,0.006277,0.038137,-0.999253,0.006277,0.576775,-0.382056,-0.722055, + 0.576775,-0.382056,-0.722055,0.576775,-0.382056,-0.722055,0.891842,-0.350127,0.286406,0.891842,-0.350127,0.286406, + 0.891842,-0.350127,0.286406,0.009364,-0.999696,0.022793,0.009364,-0.999696,0.022793,0.009364,-0.999696,0.022793, + -0.011617,-0.512256,-0.858754,-0.011617,-0.512256,-0.858754,-0.011617,-0.512256,-0.858754,-0.924422,0.002183,-0.381366, + -0.924422,0.002183,-0.381366,-0.924422,0.002183,-0.381366,-0.009342,-0.991316,0.131167,-0.009342,-0.991316,0.131167, + -0.009342,-0.991316,0.131167,-0.025434,-0.987853,0.153293,-0.025434,-0.987853,0.153293,-0.025434,-0.987853,0.153293, + -0.036434,-0.984051,0.174115,-0.036434,-0.984051,0.174115,-0.036434,-0.984051,0.174115,0.986957,0.022823,0.159356, + 0.986957,0.022823,0.159356,0.986957,0.022823,0.159356,-0.994423,-0.026422,-0.102107,-0.994423,-0.026422,-0.102107, + -0.994423,-0.026422,-0.102107,0.985464,0.020768,0.168613,0.985464,0.020768,0.168613,0.985464,0.020768,0.168613, + 0.897482,0.000773,0.441049,0.897482,0.000773,0.441049,0.897482,0.000773,0.441049,0.104226,-0.994266,0.023910, + 0.104226,-0.994266,0.023910,0.104226,-0.994266,0.023910,-0.065998,-0.997617,-0.020128,-0.065998,-0.997617,-0.020128, + -0.065998,-0.997617,-0.020128,-0.012120,-0.997951,0.062826,-0.012120,-0.997951,0.062826,-0.012120,-0.997951,0.062826, + -0.140075,-0.988921,-0.049127,-0.140075,-0.988921,-0.049127,-0.140075,-0.988921,-0.049127,0.003344,-0.993613,0.112788, + 0.003344,-0.993613,0.112788,0.003344,-0.993613,0.112788,0.026548,-0.996913,0.073893,0.026548,-0.996913,0.073893, + 0.026548,-0.996913,0.073893,0.035403,-0.976473,0.212714,0.035403,-0.976473,0.212714,0.035403,-0.976473,0.212714, + 0.177667,-0.965038,0.192707,0.177667,-0.965038,0.192707,0.177667,-0.965038,0.192707,0.202291,-0.964220,0.171341, + 0.202291,-0.964220,0.171341,0.202291,-0.964220,0.171341,-0.224906,-0.972897,0.053741,-0.224906,-0.972897,0.053741, + -0.224906,-0.972897,0.053741,-0.214166,-0.972263,0.094013,-0.214166,-0.972263,0.094013,-0.214166,-0.972263,0.094013, + -0.166992,-0.939497,-0.299096,-0.166992,-0.939497,-0.299096,-0.166992,-0.939497,-0.299096,-0.166943,-0.939519,-0.299056, + -0.166943,-0.939519,-0.299056,-0.166943,-0.939519,-0.299056,-0.166897,-0.939513,-0.299099,-0.166897,-0.939513,-0.299099, + -0.166897,-0.939513,-0.299099,-0.166949,-0.939517,-0.299057,-0.166949,-0.939517,-0.299057,-0.166949,-0.939517,-0.299057, + -0.166986,-0.939514,-0.299048,-0.166986,-0.939514,-0.299048,-0.166986,-0.939514,-0.299048,-0.166969,-0.939518,-0.299044, + -0.166969,-0.939518,-0.299044,-0.166969,-0.939518,-0.299044,-0.250510,-0.169659,0.953132,-0.250510,-0.169659,0.953132, + -0.250510,-0.169659,0.953132,-0.234319,-0.220142,0.946907,-0.234319,-0.220142,0.946907,-0.234319,-0.220142,0.946907, + -0.254346,-0.381103,0.888858,-0.254346,-0.381103,0.888858,-0.254346,-0.381103,0.888858,-0.234145,-0.139864,0.962088, + -0.234145,-0.139864,0.962088,-0.234145,-0.139864,0.962088,-0.944340,-0.165205,-0.284480,-0.944340,-0.165205,-0.284480, + -0.944340,-0.165205,-0.284480,0.943340,0.199048,0.265500,0.943340,0.199048,0.265500,0.943340,0.199048,0.265500, + 0.948516,-0.021696,0.315985,0.948516,-0.021696,0.315985,0.948516,-0.021696,0.315985,-0.002351,-0.999652,0.026277, + -0.002351,-0.999652,0.026277,-0.002351,-0.999652,0.026277,-0.977469,-0.018009,-0.210309,-0.977469,-0.018009,-0.210309, + -0.977469,-0.018009,-0.210309,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.256400,-0.121247,0.958936,-0.256400,-0.121247,0.958936,-0.256400,-0.121247,0.958936,-0.458129,-0.116343,0.881239, + -0.458129,-0.116343,0.881239,-0.458129,-0.116343,0.881239,-0.259777,-0.267067,0.928004,-0.259777,-0.267067,0.928004, + -0.259777,-0.267067,0.928004,-0.244576,0.001851,0.969628,-0.244576,0.001851,0.969628,-0.244576,0.001851,0.969628, + -0.227454,-0.074728,0.970917,-0.227454,-0.074728,0.970917,-0.227454,-0.074728,0.970917,-0.168090,-0.302691,0.938149, + -0.168090,-0.302691,0.938149,-0.168090,-0.302691,0.938149,-0.316998,-0.380463,0.868769,-0.316998,-0.380463,0.868769, + -0.316998,-0.380463,0.868769,-0.249109,-0.272223,0.929430,-0.249109,-0.272223,0.929430,-0.249109,-0.272223,0.929430, + -0.337800,-0.294792,0.893862,-0.337800,-0.294792,0.893862,-0.337800,-0.294792,0.893862,-0.241105,-0.125979,0.962288, + -0.241105,-0.125979,0.962288,-0.241105,-0.125979,0.962288,-0.963668,0.103999,-0.246025,-0.963668,0.103999,-0.246025, + -0.963668,0.103999,-0.246025,0.956810,0.124087,0.262903,0.956810,0.124087,0.262903,0.956810,0.124087,0.262903, + -0.143310,-0.982546,-0.118600,-0.143310,-0.982546,-0.118600,-0.143310,-0.982546,-0.118600,-0.227224,-0.075582,0.970905, + -0.227224,-0.075582,0.970905,-0.227224,-0.075582,0.970905,0.198441,0.972872,0.118913,0.198441,0.972872,0.118913, + 0.198441,0.972872,0.118913,-0.070348,-0.991024,-0.113677,-0.070348,-0.991024,-0.113677,-0.070348,-0.991024,-0.113677, + -0.334625,-0.928487,-0.161054,-0.334625,-0.928487,-0.161054,-0.334625,-0.928487,-0.161054,-0.229534,-0.055243,0.971732, + -0.229534,-0.055243,0.971732,-0.229534,-0.055243,0.971732,-0.030793,0.996799,0.073784,-0.030793,0.996799,0.073784, + -0.030793,0.996799,0.073784,-0.265204,-0.084689,0.960466,-0.265204,-0.084689,0.960466,-0.265204,-0.084689,0.960466, + -0.947746,-0.179332,-0.263852,-0.947746,-0.179332,-0.263852,-0.947746,-0.179332,-0.263852,0.955098,-0.176854,0.237719, + 0.955098,-0.176854,0.237719,0.955098,-0.176854,0.237719,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,0.919110,-0.329749,0.215645,0.919110,-0.329749,0.215645,0.919110,-0.329749,0.215645, + -0.869757,0.454444,-0.192365,-0.869757,0.454444,-0.192365,-0.869757,0.454444,-0.192365,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.784784,0.599286,-0.158020,-0.784784,0.599286,-0.158020, + -0.784784,0.599286,-0.158020,0.705609,-0.696743,0.129094,0.705609,-0.696743,0.129094,0.705609,-0.696743,0.129094, + -0.227634,-0.419743,0.878635,-0.227634,-0.419743,0.878635,-0.227634,-0.419743,0.878635,-0.406396,0.026524,0.913312, + -0.406396,0.026524,0.913312,-0.406396,0.026524,0.913312,-0.279414,-0.017092,0.960019,-0.279414,-0.017092,0.960019, + -0.279414,-0.017092,0.960019,-0.240167,0.050562,0.969414,-0.240167,0.050562,0.969414,-0.240167,0.050562,0.969414, + -0.303300,-0.057253,0.951174,-0.303300,-0.057253,0.951174,-0.303300,-0.057253,0.951174,-0.261908,-0.098237,0.960080, + -0.261908,-0.098237,0.960080,-0.261908,-0.098237,0.960080,-0.267084,-0.041173,0.962793,-0.267084,-0.041173,0.962793, + -0.267084,-0.041173,0.962793,-0.264130,-0.094825,0.959814,-0.264130,-0.094825,0.959814,-0.264130,-0.094825,0.959814, + -0.549303,-0.364336,0.752014,-0.549303,-0.364336,0.752014,-0.549303,-0.364336,0.752014,-0.511857,-0.399127,0.760723, + -0.511857,-0.399127,0.760723,-0.511857,-0.399127,0.760723,-0.255508,-0.071898,0.964130,-0.255508,-0.071898,0.964130, + -0.255508,-0.071898,0.964130,-0.253513,-0.108196,0.961262,-0.253513,-0.108196,0.961262,-0.253513,-0.108196,0.961262, + -0.219724,-0.026569,0.975200,-0.219724,-0.026569,0.975200,-0.219724,-0.026569,0.975200,-0.450803,-0.010751,0.892559, + -0.450803,-0.010751,0.892559,-0.450803,-0.010751,0.892559,-0.223643,-0.429250,0.875059,-0.223643,-0.429250,0.875059, + -0.223643,-0.429250,0.875059,-0.120216,-0.195447,0.973318,-0.120216,-0.195447,0.973318,-0.120216,-0.195447,0.973318, + -0.255162,-0.043719,0.965909,-0.255162,-0.043719,0.965909,-0.255162,-0.043719,0.965909,-0.268735,-0.056350,0.961564, + -0.268735,-0.056350,0.961564,-0.268735,-0.056350,0.961564,-0.246290,-0.051719,0.967815,-0.246290,-0.051719,0.967815, + -0.246290,-0.051719,0.967815,-0.254254,-0.048501,0.965921,-0.254254,-0.048501,0.965921,-0.254254,-0.048501,0.965921, + -0.224007,-0.022735,0.974322,-0.224007,-0.022735,0.974322,-0.224007,-0.022735,0.974322,-0.202409,-0.030227,0.978834, + -0.202409,-0.030227,0.978834,-0.202409,-0.030227,0.978834,-0.261996,-0.050070,0.963769,-0.261996,-0.050070,0.963769, + -0.261996,-0.050070,0.963769,-0.248590,0.005833,0.968591,-0.248590,0.005833,0.968591,-0.248590,0.005833,0.968591, + -0.239762,-0.059201,0.969025,-0.239762,-0.059201,0.969025,-0.239762,-0.059201,0.969025,-0.238343,-0.065929,0.968941, + -0.238343,-0.065929,0.968941,-0.238343,-0.065929,0.968941,-0.248456,0.005240,0.968629,-0.248456,0.005240,0.968629, + -0.248456,0.005240,0.968629,-0.009771,-0.713877,0.700203,-0.009771,-0.713877,0.700203,-0.009771,-0.713877,0.700203, + -0.257121,-0.099125,0.961282,-0.257121,-0.099125,0.961282,-0.257121,-0.099125,0.961282,-0.256689,-0.117634,0.959309, + -0.256689,-0.117634,0.959309,-0.256689,-0.117634,0.959309,0.182019,0.974903,0.128191,0.182019,0.974903,0.128191, + 0.182019,0.974903,0.128191,-0.066249,0.995727,0.064334,-0.066249,0.995727,0.064334,-0.066249,0.995727,0.064334, + -0.286642,-0.096718,0.953143,-0.286642,-0.096718,0.953143,-0.286642,-0.096718,0.953143,-0.966702,-0.014949,-0.255469, + -0.966702,-0.014949,-0.255469,-0.966702,-0.014949,-0.255469,0.031294,-0.997704,-0.060066,0.031294,-0.997704,-0.060066, + 0.031294,-0.997704,-0.060066,0.966478,0.014893,0.256317,0.966478,0.014893,0.256317,0.966478,0.014893,0.256317, + -0.966476,-0.014900,-0.256325,-0.966476,-0.014900,-0.256325,-0.966476,-0.014900,-0.256325,0.966476,0.014900,0.256323, + 0.966476,0.014900,0.256323,0.966476,0.014900,0.256323,-0.966476,-0.014900,-0.256324,-0.966476,-0.014900,-0.256324, + -0.966476,-0.014900,-0.256324,0.031305,-0.997705,-0.060041,0.031305,-0.997705,-0.060041,0.031305,-0.997705,-0.060041, + 0.966478,0.014897,0.256318,0.966478,0.014897,0.256318,0.966478,0.014897,0.256318,0.966474,0.014900,0.256331, + 0.966474,0.014900,0.256331,0.966474,0.014900,0.256331,-0.966476,-0.014896,-0.256324,-0.966476,-0.014896,-0.256324, + -0.966476,-0.014896,-0.256324,0.966477,0.014901,0.256321,0.966477,0.014901,0.256321,0.966477,0.014901,0.256321, + 0.031294,-0.997704,-0.060066,0.031294,-0.997704,-0.060066,0.031294,-0.997704,-0.060066,0.031302,-0.997706,-0.060030, + 0.031302,-0.997706,-0.060030,0.031302,-0.997706,-0.060030,-0.966477,-0.014889,-0.256323,-0.966477,-0.014889,-0.256323, + -0.966477,-0.014889,-0.256323,0.966476,0.014900,0.256325,0.966476,0.014900,0.256325,0.966476,0.014900,0.256325, + -0.966477,-0.014901,-0.256319,-0.966477,-0.014901,-0.256319,-0.966477,-0.014901,-0.256319,0.966477,0.014897,0.256320, + 0.966477,0.014897,0.256320,0.966477,0.014897,0.256320,0.966477,0.014916,0.256319,0.966477,0.014916,0.256319, + 0.966477,0.014916,0.256319,-0.966476,-0.014893,-0.256324,-0.966476,-0.014893,-0.256324,-0.966476,-0.014893,-0.256324, + 0.031295,-0.997703,-0.060073,0.031295,-0.997703,-0.060073,0.031295,-0.997703,-0.060073,-0.966475,-0.014886,-0.256329, + -0.966475,-0.014886,-0.256329,-0.966475,-0.014886,-0.256329,0.031301,-0.997707,-0.060013,0.031301,-0.997707,-0.060013, + 0.031301,-0.997707,-0.060013,-0.966476,-0.014900,-0.256324,-0.966476,-0.014900,-0.256324,-0.966476,-0.014900,-0.256324, + 0.031292,-0.997706,-0.060031,0.031292,-0.997706,-0.060031,0.031292,-0.997706,-0.060031,-0.006379,-0.996613,0.081981, + -0.006379,-0.996613,0.081981,-0.006379,-0.996613,0.081981,0.966700,0.014952,0.255474,0.966700,0.014952,0.255474, + 0.966700,0.014952,0.255474,0.966701,0.014950,0.255470,0.966701,0.014950,0.255470,0.966701,0.014950,0.255470, + -0.006383,-0.996611,0.082006,-0.006383,-0.996611,0.082006,-0.006383,-0.996611,0.082006,-0.965153,0.035504,-0.259267, + -0.965153,0.035504,-0.259267,-0.965153,0.035504,-0.259267,-0.966702,-0.014954,-0.255468,-0.966702,-0.014954,-0.255468, + -0.966702,-0.014954,-0.255468,-0.006381,-0.996614,0.081975,-0.006381,-0.996614,0.081975,-0.006381,-0.996614,0.081975, + 0.966702,0.014952,0.255469,0.966702,0.014952,0.255469,0.966702,0.014952,0.255469,-0.966700,-0.014952,-0.255475, + -0.966700,-0.014952,-0.255475,-0.966700,-0.014952,-0.255475,-0.006379,-0.996613,0.081982,-0.006379,-0.996613,0.081982, + -0.006379,-0.996613,0.081982,-0.006397,-0.996612,0.081992,-0.006397,-0.996612,0.081992,-0.006397,-0.996612,0.081992, + 0.965395,-0.030777,0.258968,0.965395,-0.030777,0.258968,0.965395,-0.030777,0.258968,0.964874,-0.040188,0.259622, + 0.964874,-0.040188,0.259622,0.964874,-0.040188,0.259622,-0.966700,-0.014957,-0.255475,-0.966700,-0.014957,-0.255475, + -0.966700,-0.014957,-0.255475,-0.497314,-0.425758,0.755916,-0.497314,-0.425758,0.755916,-0.497314,-0.425758,0.755916, + -0.465030,-0.269404,0.843308,-0.465030,-0.269404,0.843308,-0.465030,-0.269404,0.843308,-0.506649,-0.238331,0.828556, + -0.506649,-0.238331,0.828556,-0.506649,-0.238331,0.828556,-0.238185,-0.202102,0.949959,-0.238185,-0.202102,0.949959, + -0.238185,-0.202102,0.949959,-0.240733,-0.196036,0.950588,-0.240733,-0.196036,0.950588,-0.240733,-0.196036,0.950588, + -0.198611,-0.428351,0.881515,-0.198611,-0.428351,0.881515,-0.198611,-0.428351,0.881515,-0.159976,-0.166156,0.973036, + -0.159976,-0.166156,0.973036,-0.159976,-0.166156,0.973036,-0.220139,0.017592,0.975310,-0.220139,0.017592,0.975310, + -0.220139,0.017592,0.975310,-0.247325,-0.090356,0.964710,-0.247325,-0.090356,0.964710,-0.247325,-0.090356,0.964710, + -0.089132,-0.379566,0.920861,-0.089132,-0.379566,0.920861,-0.089132,-0.379566,0.920861,-0.194978,-0.141579,0.970535, + -0.194978,-0.141579,0.970535,-0.194978,-0.141579,0.970535,-0.098292,-0.339732,0.935372,-0.098292,-0.339732,0.935372, + -0.098292,-0.339732,0.935372,-0.232892,-0.129059,0.963901,-0.232892,-0.129059,0.963901,-0.232892,-0.129059,0.963901, + -0.324563,-0.658921,0.678589,-0.324563,-0.658921,0.678589,-0.324563,-0.658921,0.678589,-0.193840,-0.941200,0.276710, + -0.193840,-0.941200,0.276710,-0.193840,-0.941200,0.276710,-0.167668,-0.938440,0.302023,-0.167668,-0.938440,0.302023, + -0.167668,-0.938440,0.302023,-0.591411,-0.773997,0.226188,-0.591411,-0.773997,0.226188,-0.591411,-0.773997,0.226188, + -0.200263,-0.920430,0.335713,-0.200263,-0.920430,0.335713,-0.200263,-0.920430,0.335713,-0.256784,-0.096057,0.961684, + -0.256784,-0.096057,0.961684,-0.256784,-0.096057,0.961684,-0.196566,-0.337561,0.920551,-0.196566,-0.337561,0.920551, + -0.196566,-0.337561,0.920551,-0.221870,-0.298017,0.928418,-0.221870,-0.298017,0.928418,-0.221870,-0.298017,0.928418, + 0.715587,-0.486992,0.500774,0.715587,-0.486992,0.500774,0.715587,-0.486992,0.500774,-0.185853,-0.123193,0.974824, + -0.185853,-0.123193,0.974824,-0.185853,-0.123193,0.974824,0.378701,-0.620645,0.686575,0.378701,-0.620645,0.686575, + 0.378701,-0.620645,0.686575,0.537888,-0.647443,0.539902,0.537888,-0.647443,0.539902,0.537888,-0.647443,0.539902, + 0.570028,-0.603359,0.557697,0.570028,-0.603359,0.557697,0.570028,-0.603359,0.557697,-0.009341,-0.991317,0.131164, + -0.009341,-0.991317,0.131164,-0.009341,-0.991317,0.131164,-0.009344,-0.991316,0.131168,-0.009344,-0.991316,0.131168, + -0.009344,-0.991316,0.131168,-0.009342,-0.991316,0.131168,-0.009342,-0.991316,0.131168,-0.009342,-0.991316,0.131168, + -0.740457,-0.295337,0.603738,-0.740457,-0.295337,0.603738,-0.740457,-0.295337,0.603738,-0.857784,-0.128500,0.497689, + -0.857784,-0.128500,0.497689,-0.857784,-0.128500,0.497689,-0.967901,-0.212154,-0.134755,-0.967901,-0.212154,-0.134755, + -0.967901,-0.212154,-0.134755,-0.793350,-0.573676,-0.203697,-0.793350,-0.573676,-0.203697,-0.793350,-0.573676,-0.203697, + -0.760776,-0.628045,-0.163645,-0.760776,-0.628045,-0.163645,-0.760776,-0.628045,-0.163645,-0.959849,-0.211845,-0.183881, + -0.959849,-0.211845,-0.183881,-0.959849,-0.211845,-0.183881,-0.791866,-0.596592,-0.130485,-0.791866,-0.596592,-0.130485, + -0.791866,-0.596592,-0.130485,-0.092354,-0.970010,0.224835,-0.092354,-0.970010,0.224835,-0.092354,-0.970010,0.224835, + -0.780364,-0.300050,0.548637,-0.780364,-0.300050,0.548637,-0.780364,-0.300050,0.548637,0.024480,-0.982936,0.182313, + 0.024480,-0.982936,0.182313,0.024480,-0.982936,0.182313,0.470303,-0.839330,0.272655,0.470303,-0.839330,0.272655, + 0.470303,-0.839330,0.272655,-0.119855,-0.916174,0.382439,-0.119855,-0.916174,0.382439,-0.119855,-0.916174,0.382439, + -0.800260,-0.528888,0.282598,-0.800260,-0.528888,0.282598,-0.800260,-0.528888,0.282598,-0.497711,-0.841816,0.208877, + -0.497711,-0.841816,0.208877,-0.497711,-0.841816,0.208877,0.108269,-0.993957,-0.018076,0.108269,-0.993957,-0.018076, + 0.108269,-0.993957,-0.018076,-0.791349,-0.607769,-0.066206,-0.791349,-0.607769,-0.066206,-0.791349,-0.607769,-0.066206, + -0.987036,-0.142076,-0.074656,-0.987036,-0.142076,-0.074656,-0.987036,-0.142076,-0.074656,-0.797928,-0.599579,-0.061775, + -0.797928,-0.599579,-0.061775,-0.797928,-0.599579,-0.061775,-0.319382,-0.939596,-0.123105,-0.319382,-0.939596,-0.123105, + -0.319382,-0.939596,-0.123105,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.221549,-0.446910,0.866711,-0.221549,-0.446910,0.866711,-0.221549,-0.446910,0.866711, + -0.238184,-0.202102,0.949960,-0.238184,-0.202102,0.949960,-0.238184,-0.202102,0.949960,0.549059,0.238619,0.800996, + 0.549059,0.238619,0.800996,0.549059,0.238619,0.800996,0.186741,0.220001,0.957459,0.186741,0.220001,0.957459, + 0.186741,0.220001,0.957459,0.139869,0.330605,0.933347,0.139869,0.330605,0.933347,0.139869,0.330605,0.933347, + -0.037376,0.279428,0.959439,-0.037376,0.279428,0.959439,-0.037376,0.279428,0.959439,0.145277,0.274096,0.950666, + 0.145277,0.274096,0.950666,0.145277,0.274096,0.950666,0.071813,0.086801,0.993634,0.071813,0.086801,0.993634, + 0.071813,0.086801,0.993634,-0.010268,-0.032509,0.999419,-0.010268,-0.032509,0.999419,-0.010268,-0.032509,0.999419, + 0.053947,0.011705,0.998475,0.053947,0.011705,0.998475,0.053947,0.011705,0.998475,0.054175,-0.118761,0.991444, + 0.054175,-0.118761,0.991444,0.054175,-0.118761,0.991444,0.042506,-0.102078,0.993868,0.042506,-0.102078,0.993868, + 0.042506,-0.102078,0.993868,0.388313,-0.321999,0.863440,0.388313,-0.321999,0.863440,0.388313,-0.321999,0.863440, + 0.362338,-0.308587,0.879480,0.362338,-0.308587,0.879480,0.362338,-0.308587,0.879480,-0.187941,-0.511129,0.838704, + -0.187941,-0.511129,0.838704,-0.187941,-0.511129,0.838704,0.113042,-0.313978,0.942677,0.113042,-0.313978,0.942677, + 0.113042,-0.313978,0.942677,0.104871,-0.332765,0.937160,0.104871,-0.332765,0.937160,0.104871,-0.332765,0.937160, + -0.036391,-0.001006,0.999337,-0.036391,-0.001006,0.999337,-0.036391,-0.001006,0.999337,0.197754,-0.065805,0.978040, + 0.197754,-0.065805,0.978040,0.197754,-0.065805,0.978040,-0.024982,0.105751,0.994079,-0.024982,0.105751,0.994079, + -0.024982,0.105751,0.994079,-0.201230,-0.110843,0.973252,-0.201230,-0.110843,0.973252,-0.201230,-0.110843,0.973252, + -0.135057,-0.147593,0.979784,-0.135057,-0.147593,0.979784,-0.135057,-0.147593,0.979784,-0.244243,-0.161138,0.956232, + -0.244243,-0.161138,0.956232,-0.244243,-0.161138,0.956232,0.104107,-0.365191,0.925093,0.104107,-0.365191,0.925093, + 0.104107,-0.365191,0.925093,0.323269,-0.098580,0.941158,0.323269,-0.098580,0.941158,0.323269,-0.098580,0.941158, + -0.191945,-0.459038,0.867434,-0.191945,-0.459038,0.867434,-0.191945,-0.459038,0.867434,-0.524213,-0.843959,0.113723, + -0.524213,-0.843959,0.113723,-0.524213,-0.843959,0.113723,-0.630349,-0.476398,0.612948,-0.630349,-0.476398,0.612948, + -0.630349,-0.476398,0.612948,-0.260813,-0.163001,0.951529,-0.260813,-0.163001,0.951529,-0.260813,-0.163001,0.951529, + -0.318413,-0.131640,0.938767,-0.318413,-0.131640,0.938767,-0.318413,-0.131640,0.938767,-0.786031,-0.171728,0.593856, + -0.786031,-0.171728,0.593856,-0.786031,-0.171728,0.593856,-0.951024,-0.300819,0.071141,-0.951024,-0.300819,0.071141, + -0.951024,-0.300819,0.071141,-0.458102,-0.116177,0.881275,-0.458102,-0.116177,0.881275,-0.458102,-0.116177,0.881275, + -0.564838,-0.158235,0.809889,-0.564838,-0.158235,0.809889,-0.564838,-0.158235,0.809889,-0.365816,-0.102206,0.925058, + -0.365816,-0.102206,0.925058,-0.365816,-0.102206,0.925058,-0.275550,-0.060026,0.959411,-0.275550,-0.060026,0.959411, + -0.275550,-0.060026,0.959411,-0.431406,-0.039536,0.901291,-0.431406,-0.039536,0.901291,-0.431406,-0.039536,0.901291, + -0.093882,-0.380365,0.920059,-0.093882,-0.380365,0.920059,-0.093882,-0.380365,0.920059,-0.195329,-0.468349,0.861682, + -0.195329,-0.468349,0.861682,-0.195329,-0.468349,0.861682,-0.433903,-0.774150,0.460890,-0.433903,-0.774150,0.460890, + -0.433903,-0.774150,0.460890,0.076073,0.281644,0.956499,0.076073,0.281644,0.956499,0.076073,0.281644,0.956499, + -0.681333,0.480116,0.552515,-0.681333,0.480116,0.552515,-0.681333,0.480116,0.552515,-0.253356,-0.108103,0.961314, + -0.253356,-0.108103,0.961314,-0.253356,-0.108103,0.961314,-0.570983,0.446438,0.688964,-0.570983,0.446438,0.688964, + -0.570983,0.446438,0.688964,-0.458101,-0.116177,0.881275,-0.458101,-0.116177,0.881275,-0.458101,-0.116177,0.881275, + -0.204466,-0.101506,0.973596,-0.204466,-0.101506,0.973596,-0.204466,-0.101506,0.973596,-0.407796,-0.133927,0.903198, + -0.407796,-0.133927,0.903198,-0.407796,-0.133927,0.903198,-0.230425,-0.007260,0.973063,-0.230425,-0.007260,0.973063, + -0.230425,-0.007260,0.973063,-0.162200,-0.052372,0.985367,-0.162200,-0.052372,0.985367,-0.162200,-0.052372,0.985367, + -0.453532,-0.111768,0.884204,-0.453532,-0.111768,0.884204,-0.453532,-0.111768,0.884204,-0.872197,-0.095923,0.479657, + -0.872197,-0.095923,0.479657,-0.872197,-0.095923,0.479657,-0.930840,-0.351137,0.101187,-0.930840,-0.351137,0.101187, + -0.930840,-0.351137,0.101187,-0.499835,-0.732115,0.462788,-0.499835,-0.732115,0.462788,-0.499835,-0.732115,0.462788, + -0.252790,-0.150755,0.955704,-0.252790,-0.150755,0.955704,-0.252790,-0.150755,0.955704,-0.235058,0.324354,0.916266, + -0.235058,0.324354,0.916266,-0.235058,0.324354,0.916266,-0.159721,-0.054709,0.985645,-0.159721,-0.054709,0.985645, + -0.159721,-0.054709,0.985645,-0.100847,-0.064145,0.992832,-0.100847,-0.064145,0.992832,-0.100847,-0.064145,0.992832, + -0.252618,0.037320,0.966846,-0.252618,0.037320,0.966846,-0.252618,0.037320,0.966846,-0.179094,0.015464,0.983710, + -0.179094,0.015464,0.983710,-0.179094,0.015464,0.983710,-0.254032,-0.041008,0.966326,-0.254032,-0.041008,0.966326, + -0.254032,-0.041008,0.966326,-0.267376,-0.097699,0.958627,-0.267376,-0.097699,0.958627,-0.267376,-0.097699,0.958627, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.189769,-0.135129,0.972485, + -0.189769,-0.135129,0.972485,-0.189769,-0.135129,0.972485,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.271681,0.033710,0.961797, + -0.271681,0.033710,0.961797,-0.271681,0.033710,0.961797,-0.231112,-0.155844,0.960365,-0.231112,-0.155844,0.960365, + -0.231112,-0.155844,0.960365,-0.209797,-0.485915,0.848452,-0.209797,-0.485915,0.848452,-0.209797,-0.485915,0.848452, + -0.220582,-0.185398,0.957586,-0.220582,-0.185398,0.957586,-0.220582,-0.185398,0.957586,-0.223269,-0.131167,0.965891, + -0.223269,-0.131167,0.965891,-0.223269,-0.131167,0.965891,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.582595,0.806751,-0.098669,-0.582595,0.806751,-0.098669,-0.582595,0.806751,-0.098669, + -0.250335,-0.071536,0.965513,-0.250335,-0.071536,0.965513,-0.250335,-0.071536,0.965513,-0.616337,-0.756186,-0.219800, + -0.616337,-0.756186,-0.219800,-0.616337,-0.756186,-0.219800,-0.673514,0.729710,-0.117907,-0.673514,0.729710,-0.117907, + -0.673514,0.729710,-0.117907,-0.949895,0.207422,-0.233830,-0.949895,0.207422,-0.233830,-0.949895,0.207422,-0.233830, + -0.777128,-0.578057,-0.248843,-0.777128,-0.578057,-0.248843,-0.777128,-0.578057,-0.248843,-0.965086,-0.042799,-0.258412, + -0.965086,-0.042799,-0.258412,-0.965086,-0.042799,-0.258412,-0.729520,0.669971,-0.137622,-0.729520,0.669971,-0.137622, + -0.729520,0.669971,-0.137622,-0.730213,0.669897,-0.134264,-0.730213,0.669897,-0.134264,-0.730213,0.669897,-0.134264, + -0.745897,-0.618244,-0.247814,-0.745897,-0.618244,-0.247814,-0.745897,-0.618244,-0.247814,-0.948773,-0.172437,-0.264754, + -0.948773,-0.172437,-0.264754,-0.948773,-0.172437,-0.264754,0.184793,-0.982259,-0.031919,0.184793,-0.982259,-0.031919, + 0.184793,-0.982259,-0.031919,-0.134859,0.989999,0.041413,-0.134859,0.989999,0.041413,-0.134859,0.989999,0.041413, + 0.235737,0.961492,0.141284,0.235737,0.961492,0.141284,0.235737,0.961492,0.141284,0.887045,-0.416074,0.200084, + 0.887045,-0.416074,0.200084,0.887045,-0.416074,0.200084,-0.578113,0.811412,-0.085999,-0.578113,0.811412,-0.085999, + -0.578113,0.811412,-0.085999,0.632347,-0.767684,0.103915,0.632347,-0.767684,0.103915,0.632347,-0.767684,0.103915, + 0.949812,-0.207871,0.233765,0.949812,-0.207871,0.233765,0.949812,-0.207871,0.233765,-0.542025,0.232081,0.807680, + -0.542025,0.232081,0.807680,-0.542025,0.232081,0.807680,0.524166,0.826244,0.206328,0.524166,0.826244,0.206328, + 0.524166,0.826244,0.206328,0.105174,0.986670,0.124179,0.105174,0.986670,0.124179,0.105174,0.986670,0.124179, + 0.956486,0.127840,0.262280,0.956486,0.127840,0.262280,0.956486,0.127840,0.262280,0.795117,-0.584428,0.161968, + 0.795117,-0.584428,0.161968,0.795117,-0.584428,0.161968,0.647105,-0.754022,0.112722,0.647105,-0.754022,0.112722, + 0.647105,-0.754022,0.112722,0.963300,0.202338,0.176387,0.963300,0.202338,0.176387,0.963300,0.202338,0.176387, + -0.038847,-0.994999,-0.092025,-0.038847,-0.994999,-0.092025,-0.038847,-0.994999,-0.092025,-0.915936,0.339502,-0.214008, + -0.915936,0.339502,-0.214008,-0.915936,0.339502,-0.214008,0.799379,-0.578119,0.163618,0.799379,-0.578119,0.163618, + 0.799379,-0.578119,0.163618,0.959001,-0.148953,0.241101,0.959001,-0.148953,0.241101,0.959001,-0.148953,0.241101, + 0.053702,-0.996695,-0.060951,0.053702,-0.996695,-0.060951,0.053702,-0.996695,-0.060951,0.805572,-0.568761,0.166024, + 0.805572,-0.568761,0.166024,0.805572,-0.568761,0.166024,0.735528,0.631198,0.246145,0.735528,0.631198,0.246145, + 0.735528,0.631198,0.246145,-0.334429,-0.925822,-0.176098,-0.334429,-0.925822,-0.176098,-0.334429,-0.925822,-0.176098, + -0.255358,-0.071910,0.964169,-0.255358,-0.071910,0.964169,-0.255358,-0.071910,0.964169,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.009342,-0.991316,0.131166,-0.009342,-0.991316,0.131166,-0.009342,-0.991316,0.131166, + -0.204604,0.621828,0.755954,-0.204604,0.621828,0.755954,-0.204604,0.621828,0.755954,-0.256324,-0.214615,0.942464, + -0.256324,-0.214615,0.942464,-0.256324,-0.214615,0.942464,-0.018952,-0.997130,-0.073295,-0.018952,-0.997130,-0.073295, + -0.018952,-0.997130,-0.073295,-0.251460,0.038656,0.967095,-0.251460,0.038656,0.967095,-0.251460,0.038656,0.967095, + 0.002598,-0.997708,-0.067621,0.002598,-0.997708,-0.067621,0.002598,-0.997708,-0.067621,-0.253730,0.038104,0.966524, + -0.253730,0.038104,0.966524,-0.253730,0.038104,0.966524,0.026033,-0.997772,-0.061432,0.026033,-0.997772,-0.061432, + 0.026033,-0.997772,-0.061432,-0.256170,0.037511,0.965904,-0.256170,0.037511,0.965904,-0.256170,0.037511,0.965904, + 0.051558,-0.997173,-0.054663,0.051558,-0.997173,-0.054663,0.051558,-0.997173,-0.054663,-0.258793,0.036868,0.965229, + -0.258793,0.036868,0.965229,-0.258793,0.036868,0.965229,0.079410,-0.995725,-0.047185,0.079410,-0.995725,-0.047185, + 0.079410,-0.995725,-0.047185,-0.261630,0.036175,0.964490,-0.261630,0.036175,0.964490,-0.261630,0.036175,0.964490, + 0.109834,-0.993185,-0.038990,0.109834,-0.993185,-0.038990,0.109834,-0.993185,-0.038990,-0.264702,0.035423,0.963680, + -0.264702,0.035423,0.963680,-0.264702,0.035423,0.963680,0.143104,-0.989255,-0.029929,0.143104,-0.989255,-0.029929, + 0.143104,-0.989255,-0.029929,0.936071,0.230098,0.266130,0.936071,0.230098,0.266130,0.936071,0.230098,0.266130, + 0.936068,0.230099,0.266140,0.936068,0.230099,0.266140,0.936068,0.230099,0.266140,-0.965336,-0.039627,-0.257984, + -0.965336,-0.039627,-0.257984,-0.965336,-0.039627,-0.257984,0.960350,0.165204,-0.224578,0.960350,0.165204,-0.224578, + 0.960350,0.165204,-0.224578,-0.965337,-0.039628,-0.257983,-0.965337,-0.039628,-0.257983,-0.965337,-0.039628,-0.257983, + -0.965337,-0.039632,-0.257981,-0.965337,-0.039632,-0.257981,-0.965337,-0.039632,-0.257981,0.936070,0.230100,0.266135, + 0.936070,0.230100,0.266135,0.936070,0.230100,0.266135,-0.943215,-0.199547,-0.265569,-0.943215,-0.199547,-0.265569, + -0.943215,-0.199547,-0.265569,0.966709,0.006313,0.255800,0.966709,0.006313,0.255800,0.966709,0.006313,0.255800, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.267096,0.008037,0.963637, + -0.267096,0.008037,0.963637,-0.267096,0.008037,0.963637,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.209835,0.023405,0.977457,-0.209835,0.023405,0.977457,-0.209835,0.023405,0.977457, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.223651,-0.034687,0.974052,-0.223651,-0.034687,0.974052, + -0.223651,-0.034687,0.974052,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.235647,-0.038985,0.971056,-0.235647,-0.038985,0.971056,-0.235647,-0.038985,0.971056,-0.203829,-0.059884,0.977173, + -0.203829,-0.059884,0.977173,-0.203829,-0.059884,0.977173,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.230607,0.004504,0.973037,-0.230607,0.004504,0.973037,-0.230607,0.004504,0.973037, + 0.879214,0.399487,0.259603,0.879214,0.399487,0.259603,0.879214,0.399487,0.259603,-0.966738,0.039891,-0.252640, + -0.966738,0.039891,-0.252640,-0.966738,0.039891,-0.252640,0.869349,-0.452505,0.198673,0.869349,-0.452505,0.198673, + 0.869349,-0.452505,0.198673,0.361945,-0.932075,0.015256,0.361945,-0.932075,0.015256,0.361945,-0.932075,0.015256, + -0.808361,0.562056,-0.175059,-0.808361,0.562056,-0.175059,-0.808361,0.562056,-0.175059,0.031251,0.996581,0.076477, + 0.031251,0.996581,0.076477,0.031251,0.996581,0.076477,-0.410341,0.910769,-0.046042,-0.410341,0.910769,-0.046042, + -0.410341,0.910769,-0.046042,-0.042815,-0.995915,-0.079501,-0.042815,-0.995915,-0.079501,-0.042815,-0.995915,-0.079501, + 0.501872,0.843741,0.190331,0.501872,0.843741,0.190331,0.501872,0.843741,0.190331,-0.564078,-0.800178,-0.203791, + -0.564078,-0.800178,-0.203791,-0.564078,-0.800178,-0.203791,-0.877015,-0.404447,-0.259361,-0.877015,-0.404447,-0.259361, + -0.877015,-0.404447,-0.259361,-0.080271,0.995666,0.046958,-0.080271,0.995666,0.046958,-0.080271,0.995666,0.046958, + -0.264020,0.084555,0.960804,-0.264020,0.084555,0.960804,-0.264020,0.084555,0.960804,-0.094453,0.994594,0.043142, + -0.094453,0.994594,0.043142,-0.094453,0.994594,0.043142,-0.266125,0.083860,0.960284,-0.266125,0.083860,0.960284, + -0.266125,0.083860,0.960284,-0.224504,0.974445,0.007405,-0.224504,0.974445,0.007405,-0.224504,0.974445,0.007405, + -0.285013,0.077587,0.955378,-0.285013,0.077587,0.955378,-0.285013,0.077587,0.955378,-0.354009,0.934776,-0.029517, + -0.354009,0.934776,-0.029517,-0.354009,0.934776,-0.029517,-0.322573,0.064894,0.944317,-0.322573,0.064894,0.944317, + -0.322573,0.064894,0.944317,-0.475382,0.877336,-0.065519,-0.475382,0.877336,-0.065519,-0.475382,0.877336,-0.065519, + -0.341195,0.058491,0.938171,-0.341195,0.058491,0.938171,-0.341195,0.058491,0.938171,-0.914059,-0.309071,-0.262623, + -0.914059,-0.309071,-0.262623,-0.914059,-0.309071,-0.262623,0.914821,0.303399,0.266554,0.914821,0.303399,0.266554, + 0.914821,0.303399,0.266554,0.914825,0.303394,0.266548,0.914825,0.303394,0.266548,0.914825,0.303394,0.266548, + 0.911618,0.312950,0.266487,0.911618,0.312950,0.266487,0.911618,0.312950,0.266487,0.890191,0.371524,0.263685, + 0.890191,0.371524,0.263685,0.890191,0.371524,0.263685,-0.914059,-0.309076,-0.262617,-0.914059,-0.309076,-0.262617, + -0.914059,-0.309076,-0.262617,-0.914061,-0.309072,-0.262614,-0.914061,-0.309072,-0.262614,-0.914061,-0.309072,-0.262614, + -0.914061,-0.309074,-0.262612,-0.914061,-0.309074,-0.262612,-0.914061,-0.309074,-0.262612,-0.914062,-0.309071,-0.262612, + -0.914062,-0.309071,-0.262612,-0.914062,-0.309071,-0.262612,0.914824,0.303394,0.266551,0.914824,0.303394,0.266551, + 0.914824,0.303394,0.266551,0.914825,0.303393,0.266547,0.914825,0.303393,0.266547,0.914825,0.303393,0.266547, + -0.006385,-0.996612,0.081995,-0.006385,-0.996612,0.081995,-0.006385,-0.996612,0.081995,-0.965621,0.026111,-0.258640, + -0.965621,0.026111,-0.258640,-0.965621,0.026111,-0.258640,-0.966702,-0.014952,-0.255467,-0.966702,-0.014952,-0.255467, + -0.966702,-0.014952,-0.255467,-0.006387,-0.996613,0.081981,-0.006387,-0.996613,0.081981,-0.006387,-0.996613,0.081981, + -0.006389,-0.996613,0.081988,-0.006389,-0.996613,0.081988,-0.006389,-0.996613,0.081988,0.966702,0.014950,0.255469, + 0.966702,0.014950,0.255469,0.966702,0.014950,0.255469,0.966702,0.014954,0.255467,0.966702,0.014954,0.255467, + 0.966702,0.014954,0.255467,-0.966702,-0.014952,-0.255468,-0.966702,-0.014952,-0.255468,-0.966702,-0.014952,-0.255468, + 0.031299,-0.997706,-0.060031,0.031299,-0.997706,-0.060031,0.031299,-0.997706,-0.060031,0.031299,-0.997707,-0.060016, + 0.031299,-0.997707,-0.060016,0.031299,-0.997707,-0.060016,0.966477,0.014892,0.256320,0.966477,0.014892,0.256320, + 0.966477,0.014892,0.256320,-0.966477,-0.014892,-0.256321,-0.966477,-0.014892,-0.256321,-0.966477,-0.014892,-0.256321, + 0.966702,0.014951,0.255468,0.966702,0.014951,0.255468,0.966702,0.014951,0.255468,-0.021952,-0.989866,0.140298, + -0.021952,-0.989866,0.140298,-0.021952,-0.989866,0.140298,-0.027851,-0.995505,0.090524,-0.027851,-0.995505,0.090524, + -0.027851,-0.995505,0.090524,-0.987573,-0.026409,-0.154928,-0.987573,-0.026409,-0.154928,-0.987573,-0.026409,-0.154928, + 0.902216,-0.013056,0.431086,0.902216,-0.013056,0.431086,0.902216,-0.013056,0.431086,-0.914271,0.001965,-0.405098, + -0.914271,0.001965,-0.405098,-0.914271,0.001965,-0.405098,0.061973,-0.982335,-0.176570,0.061973,-0.982335,-0.176570, + 0.061973,-0.982335,-0.176570,0.996670,0.026627,0.077075,0.996670,0.026627,0.077075,0.996670,0.026627,0.077075, + -0.904214,-0.002666,-0.427071,-0.904214,-0.002666,-0.427071,-0.904214,-0.002666,-0.427071,-0.009342,-0.991316,0.131168, + -0.009342,-0.991316,0.131168,-0.009342,-0.991316,0.131168,-0.917681,-0.318069,-0.238102,-0.917681,-0.318069,-0.238102, + -0.917681,-0.318069,-0.238102,0.017721,-0.999805,-0.008736,0.017721,-0.999805,-0.008736,0.017721,-0.999805,-0.008736, + 0.474890,-0.522016,-0.708505,0.474890,-0.522016,-0.708505,0.474890,-0.522016,-0.708505,0.944921,-0.212476,0.248954, + 0.944921,-0.212476,0.248954,0.944921,-0.212476,0.248954,0.078625,-0.996752,0.017431,0.078625,-0.996752,0.017431, + 0.078625,-0.996752,0.017431,0.053894,-0.402258,-0.913939,0.053894,-0.402258,-0.913939,0.053894,-0.402258,-0.913939, + -0.923717,-0.005277,-0.383038,-0.923717,-0.005277,-0.383038,-0.923717,-0.005277,-0.383038,-0.046950,-0.987081,0.153191, + -0.046950,-0.987081,0.153191,-0.046950,-0.987081,0.153191,-0.031608,-0.983819,0.176354,-0.031608,-0.983819,0.176354, + -0.031608,-0.983819,0.176354,0.987089,0.021413,0.158737,0.987089,0.021413,0.158737,0.987089,0.021413,0.158737, + -0.994475,-0.025063,-0.101937,-0.994475,-0.025063,-0.101937,-0.994475,-0.025063,-0.101937,0.985369,0.022817,0.168902, + 0.985369,0.022817,0.168902,0.985369,0.022817,0.168902,0.898388,-0.006809,0.439151,0.898388,-0.006809,0.439151, + 0.898388,-0.006809,0.439151,0.102545,-0.994425,0.024574,0.102545,-0.994425,0.024574,0.102545,-0.994425,0.024574, + -0.067115,-0.997516,-0.021387,-0.067115,-0.997516,-0.021387,-0.067115,-0.997516,-0.021387,-0.011690,-0.997964,0.062693, + -0.011690,-0.997964,0.062693,-0.011690,-0.997964,0.062693,-0.139867,-0.988945,-0.049249,-0.139867,-0.988945,-0.049249, + -0.139867,-0.988945,-0.049249,0.001191,-0.993564,0.113264,0.001191,-0.993564,0.113264,0.001191,-0.993564,0.113264, + 0.026118,-0.996962,0.073377,0.026118,-0.996962,0.073377,0.026118,-0.996962,0.073377,0.036932,-0.975897,0.215084, + 0.036932,-0.975897,0.215084,0.036932,-0.975897,0.215084,0.179352,-0.964098,0.195826,0.179352,-0.964098,0.195826, + 0.179352,-0.964098,0.195826,0.204193,-0.963135,0.175147,0.204193,-0.963135,0.175147,0.204193,-0.963135,0.175147, + -0.221079,-0.973914,0.051132,-0.221079,-0.973914,0.051132,-0.221079,-0.973914,0.051132,-0.211085,-0.973123,0.092061, + -0.211085,-0.973123,0.092061,-0.211085,-0.973123,0.092061,-0.268200,-0.172835,0.947732,-0.268200,-0.172835,0.947732, + -0.268200,-0.172835,0.947732,-0.284095,-0.211850,0.935099,-0.284095,-0.211850,0.935099,-0.284095,-0.211850,0.935099, + -0.288173,-0.382324,0.877944,-0.288173,-0.382324,0.877944,-0.288173,-0.382324,0.877944,-0.241704,-0.134475,0.960987, + -0.241704,-0.134475,0.960987,-0.241704,-0.134475,0.960987,-0.955732,-0.173745,-0.237463,-0.955732,-0.173745,-0.237463, + -0.955732,-0.173745,-0.237463,0.952266,0.200031,0.230604,0.952266,0.200031,0.230604,0.952266,0.200031,0.230604, + 0.944904,0.009954,0.327197,0.944904,0.009954,0.327197,0.944904,0.009954,0.327197,0.009375,-0.999698,0.022741, + 0.009375,-0.999698,0.022741,0.009375,-0.999698,0.022741,-0.978945,-0.059054,-0.195397,-0.978945,-0.059054,-0.195397, + -0.978945,-0.059054,-0.195397,-0.458129,-0.116343,0.881239,-0.458129,-0.116343,0.881239,-0.458129,-0.116343,0.881239, + -0.247592,-0.286987,0.925384,-0.247592,-0.286987,0.925384,-0.247592,-0.286987,0.925384,-0.093882,-0.380366,0.920059, + -0.093882,-0.380366,0.920059,-0.093882,-0.380366,0.920059,-0.250720,-0.399927,0.881588,-0.250720,-0.399927,0.881588, + -0.250720,-0.399927,0.881588,-0.244028,-0.282207,0.927798,-0.244028,-0.282207,0.927798,-0.244028,-0.282207,0.927798, + -0.256559,-0.108263,0.960446,-0.256559,-0.108263,0.960446,-0.256559,-0.108263,0.960446,-0.964519,0.103689,-0.242800, + -0.964519,0.103689,-0.242800,-0.964519,0.103689,-0.242800,0.957699,0.124139,0.259621,0.957699,0.124139,0.259621, + 0.957699,0.124139,0.259621,-0.143308,-0.982545,-0.118606,-0.143308,-0.982545,-0.118606,-0.143308,-0.982545,-0.118606, + -0.204584,-0.077577,0.975770,-0.204584,-0.077577,0.975770,-0.204584,-0.077577,0.975770,0.194493,0.972082,0.131263, + 0.194493,0.972082,0.131263,0.194493,0.972082,0.131263,-0.077060,-0.992164,-0.098344,-0.077060,-0.992164,-0.098344, + -0.077060,-0.992164,-0.098344,-0.338105,-0.929127,-0.149694,-0.338105,-0.929127,-0.149694,-0.338105,-0.929127,-0.149694, + -0.193092,0.021464,0.980946,-0.193092,0.021464,0.980946,-0.193092,0.021464,0.980946,-0.027922,0.997688,0.061963, + -0.027922,0.997688,0.061963,-0.027922,0.997688,0.061963,-0.256671,-0.089162,0.962377,-0.256671,-0.089162,0.962377, + -0.256671,-0.089162,0.962377,-0.947502,-0.179340,-0.264719,-0.947502,-0.179340,-0.264719,-0.947502,-0.179340,-0.264719, + 0.955070,-0.176856,0.237830,0.955070,-0.176856,0.237830,0.955070,-0.176856,0.237830,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.919109,-0.329750,0.215648,0.919109,-0.329750,0.215648, + 0.919109,-0.329750,0.215648,-0.869757,0.454444,-0.192365,-0.869757,0.454444,-0.192365,-0.869757,0.454444,-0.192365, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.784789,0.599279,-0.158020, + -0.784789,0.599279,-0.158020,-0.784789,0.599279,-0.158020,0.705611,-0.696740,0.129096,0.705611,-0.696740,0.129096, + 0.705611,-0.696740,0.129096,-0.201915,-0.361729,0.910155,-0.201915,-0.361729,0.910155,-0.201915,-0.361729,0.910155, + -0.239176,-0.068826,0.968534,-0.239176,-0.068826,0.968534,-0.239176,-0.068826,0.968534,-0.208043,-0.198192,0.957830, + -0.208043,-0.198192,0.957830,-0.208043,-0.198192,0.957830,-0.255508,-0.071898,0.964130,-0.255508,-0.071898,0.964130, + -0.255508,-0.071898,0.964130,-0.218857,-0.428150,0.876806,-0.218857,-0.428150,0.876806,-0.218857,-0.428150,0.876806, + -0.005841,-0.397876,0.917421,-0.005841,-0.397876,0.917421,-0.005841,-0.397876,0.917421,0.182018,0.974905,0.128182, + 0.182018,0.974905,0.128182,0.182018,0.974905,0.128182,-0.066248,0.995727,0.064338,-0.066248,0.995727,0.064338, + -0.066248,0.995727,0.064338,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.966701,-0.014958,-0.255472,-0.966701,-0.014958,-0.255472,-0.966701,-0.014958,-0.255472,0.031302,-0.997706,-0.060030, + 0.031302,-0.997706,-0.060030,0.031302,-0.997706,-0.060030,0.966476,0.014896,0.256323,0.966476,0.014896,0.256323, + 0.966476,0.014896,0.256323,-0.966477,-0.014892,-0.256323,-0.966477,-0.014892,-0.256323,-0.966477,-0.014892,-0.256323, + 0.966477,0.014895,0.256321,0.966477,0.014895,0.256321,0.966477,0.014895,0.256321,-0.966476,-0.014892,-0.256325, + -0.966476,-0.014892,-0.256325,-0.966476,-0.014892,-0.256325,0.031304,-0.997705,-0.060044,0.031304,-0.997705,-0.060044, + 0.031304,-0.997705,-0.060044,0.966476,0.014895,0.256326,0.966476,0.014895,0.256326,0.966476,0.014895,0.256326, + 0.966477,0.014888,0.256323,0.966477,0.014888,0.256323,0.966477,0.014888,0.256323,-0.966476,-0.014893,-0.256326, + -0.966476,-0.014893,-0.256326,-0.966476,-0.014893,-0.256326,0.966477,0.014890,0.256323,0.966477,0.014890,0.256323, + 0.966477,0.014890,0.256323,0.031302,-0.997706,-0.060031,0.031302,-0.997706,-0.060031,0.031302,-0.997706,-0.060031, + 0.031302,-0.997705,-0.060044,0.031302,-0.997705,-0.060044,0.031302,-0.997705,-0.060044,-0.966475,-0.014901,-0.256328, + -0.966475,-0.014901,-0.256328,-0.966475,-0.014901,-0.256328,0.966476,0.014903,0.256324,0.966476,0.014903,0.256324, + 0.966476,0.014903,0.256324,-0.966474,-0.014895,-0.256333,-0.966474,-0.014895,-0.256333,-0.966474,-0.014895,-0.256333, + 0.966477,0.014897,0.256320,0.966477,0.014897,0.256320,0.966477,0.014897,0.256320,0.966477,0.014900,0.256322, + 0.966477,0.014900,0.256322,0.966477,0.014900,0.256322,-0.966477,-0.014891,-0.256321,-0.966477,-0.014891,-0.256321, + -0.966477,-0.014891,-0.256321,0.031302,-0.997706,-0.060016,0.031302,-0.997706,-0.060016,0.031302,-0.997706,-0.060016, + -0.966478,-0.014902,-0.256317,-0.966478,-0.014902,-0.256317,-0.966478,-0.014902,-0.256317,0.031302,-0.997705,-0.060044, + 0.031302,-0.997705,-0.060044,0.031302,-0.997705,-0.060044,-0.966476,-0.014892,-0.256324,-0.966476,-0.014892,-0.256324, + -0.966476,-0.014892,-0.256324,0.031292,-0.997707,-0.060016,0.031292,-0.997707,-0.060016,0.031292,-0.997707,-0.060016, + -0.006379,-0.996612,0.081999,-0.006379,-0.996612,0.081999,-0.006379,-0.996612,0.081999,0.966702,0.014953,0.255469, + 0.966702,0.014953,0.255469,0.966702,0.014953,0.255469,0.966700,0.014960,0.255473,0.966700,0.014960,0.255473, + 0.966700,0.014960,0.255473,-0.006392,-0.996614,0.081971,-0.006392,-0.996614,0.081971,-0.006392,-0.996614,0.081971, + -0.965148,0.035471,-0.259290,-0.965148,0.035471,-0.259290,-0.965148,0.035471,-0.259290,-0.966701,-0.014950,-0.255470, + -0.966701,-0.014950,-0.255470,-0.966701,-0.014950,-0.255470,-0.006389,-0.996613,0.081987,-0.006389,-0.996613,0.081987, + -0.006389,-0.996613,0.081987,0.966700,0.014957,0.255476,0.966700,0.014957,0.255476,0.966700,0.014957,0.255476, + -0.966701,-0.014957,-0.255471,-0.966701,-0.014957,-0.255471,-0.966701,-0.014957,-0.255471,-0.006379,-0.996612,0.081999, + -0.006379,-0.996612,0.081999,-0.006379,-0.996612,0.081999,-0.006397,-0.996613,0.081980,-0.006397,-0.996613,0.081980, + -0.006397,-0.996613,0.081980,0.965401,-0.030808,0.258943,0.965401,-0.030808,0.258943,0.965401,-0.030808,0.258943, + 0.964881,-0.040226,0.259590,0.964881,-0.040226,0.259590,0.964881,-0.040226,0.259590,-0.966700,-0.014956,-0.255473, + -0.966700,-0.014956,-0.255473,-0.966700,-0.014956,-0.255473,-0.506490,-0.239461,0.828328,-0.506490,-0.239461,0.828328, + -0.506490,-0.239461,0.828328,-0.224827,-0.472177,0.852351,-0.224827,-0.472177,0.852351,-0.224827,-0.472177,0.852351, + -0.238185,-0.202102,0.949959,-0.238185,-0.202102,0.949959,-0.238185,-0.202102,0.949959,-0.240733,-0.196037,0.950588, + -0.240733,-0.196037,0.950588,-0.240733,-0.196037,0.950588,-0.237324,-0.426971,0.872567,-0.237324,-0.426971,0.872567, + -0.237324,-0.426971,0.872567,-0.370145,-0.083388,0.925224,-0.370145,-0.083388,0.925224,-0.370145,-0.083388,0.925224, + -0.247326,-0.090357,0.964710,-0.247326,-0.090357,0.964710,-0.247326,-0.090357,0.964710,-0.183095,-0.133331,0.974012, + -0.183095,-0.133331,0.974012,-0.183095,-0.133331,0.974012,-0.535222,-0.788304,0.303503,-0.535222,-0.788304,0.303503, + -0.535222,-0.788304,0.303503,-0.262476,-0.096318,0.960119,-0.262476,-0.096318,0.960119,-0.262476,-0.096318,0.960119, + -0.215327,-0.331294,0.918629,-0.215327,-0.331294,0.918629,-0.215327,-0.331294,0.918629,-0.237144,-0.295589,0.925413, + -0.237144,-0.295589,0.925413,-0.237144,-0.295589,0.925413,0.438999,-0.537623,0.719889,0.438999,-0.537623,0.719889, + 0.438999,-0.537623,0.719889,-0.185854,-0.123193,0.974824,-0.185854,-0.123193,0.974824,-0.185854,-0.123193,0.974824, + 0.399501,-0.619478,0.675756,0.399501,-0.619478,0.675756,0.399501,-0.619478,0.675756,0.573867,-0.063039,0.816518, + 0.573867,-0.063039,0.816518,0.573867,-0.063039,0.816518,0.466315,-0.645856,0.604500,0.466315,-0.645856,0.604500, + 0.466315,-0.645856,0.604500,-0.769798,-0.601039,0.214856,-0.769798,-0.601039,0.214856,-0.769798,-0.601039,0.214856, + -0.988474,-0.143638,-0.047832,-0.988474,-0.143638,-0.047832,-0.988474,-0.143638,-0.047832,-0.892222,-0.441523,-0.094857, + -0.892222,-0.441523,-0.094857,-0.892222,-0.441523,-0.094857,-0.971618,-0.176803,-0.157159,-0.971618,-0.176803,-0.157159, + -0.971618,-0.176803,-0.157159,-0.818741,-0.556103,-0.142874,-0.818741,-0.556103,-0.142874,-0.818741,-0.556103,-0.142874, + 0.003372,-0.984844,0.173411,0.003372,-0.984844,0.173411,0.003372,-0.984844,0.173411,-0.580000,-0.399535,0.709909, + -0.580000,-0.399535,0.709909,-0.580000,-0.399535,0.709909,-0.158337,-0.922800,0.351241,-0.158337,-0.922800,0.351241, + -0.158337,-0.922800,0.351241,0.046434,-0.997613,0.051105,0.046434,-0.997613,0.051105,0.046434,-0.997613,0.051105, + -0.976597,-0.214337,-0.017818,-0.976597,-0.214337,-0.017818,-0.976597,-0.214337,-0.017818,-0.754385,-0.655633,0.032371, + -0.754385,-0.655633,0.032371,-0.754385,-0.655633,0.032371,-0.065958,-0.997822,0.000180,-0.065958,-0.997822,0.000180, + -0.065958,-0.997822,0.000180,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.238185,-0.202102,0.949959,-0.238185,-0.202102,0.949959,-0.238185,-0.202102,0.949959, + 0.446361,0.127712,0.885693,0.446361,0.127712,0.885693,0.446361,0.127712,0.885693,-0.108381,0.233544,0.966287, + -0.108381,0.233544,0.966287,-0.108381,0.233544,0.966287,0.576605,0.178576,0.797269,0.576605,0.178576,0.797269, + 0.576605,0.178576,0.797269,0.191707,0.223052,0.955770,0.191707,0.223052,0.955770,0.191707,0.223052,0.955770, + 0.130089,-0.151150,0.979914,0.130089,-0.151150,0.979914,0.130089,-0.151150,0.979914,0.004061,0.159033,0.987265, + 0.004061,0.159033,0.987265,0.004061,0.159033,0.987265,-0.015401,-0.061211,0.998006,-0.015401,-0.061211,0.998006, + -0.015401,-0.061211,0.998006,0.079211,-0.019759,0.996662,0.079211,-0.019759,0.996662,0.079211,-0.019759,0.996662, + 0.270431,0.201384,0.941441,0.270431,0.201384,0.941441,0.270431,0.201384,0.941441,0.034062,-0.115663,0.992704, + 0.034062,-0.115663,0.992704,0.034062,-0.115663,0.992704,0.443289,-0.372143,0.815478,0.443289,-0.372143,0.815478, + 0.443289,-0.372143,0.815478,0.075519,-0.329425,0.941157,0.075519,-0.329425,0.941157,0.075519,-0.329425,0.941157, + 0.062268,-0.241468,0.968409,0.062268,-0.241468,0.968409,0.062268,-0.241468,0.968409,0.116114,-0.017210,0.993087, + 0.116114,-0.017210,0.993087,0.116114,-0.017210,0.993087,-0.200687,-0.120809,0.972178,-0.200687,-0.120809,0.972178, + -0.200687,-0.120809,0.972178,-0.724917,-0.184079,0.663785,-0.724917,-0.184079,0.663785,-0.724917,-0.184079,0.663785, + -0.467908,-0.183496,0.864518,-0.467908,-0.183496,0.864518,-0.467908,-0.183496,0.864518,-0.272015,-0.079410,0.959011, + -0.272015,-0.079410,0.959011,-0.272015,-0.079410,0.959011,-0.270130,-0.063035,0.960758,-0.270130,-0.063035,0.960758, + -0.270130,-0.063035,0.960758,-0.419902,-0.020921,0.907328,-0.419902,-0.020921,0.907328,-0.419902,-0.020921,0.907328, + -0.426476,-0.354134,0.832290,-0.426476,-0.354134,0.832290,-0.426476,-0.354134,0.832290,-0.416415,0.311687,0.854079, + -0.416415,0.311687,0.854079,-0.416415,0.311687,0.854079,-0.098052,-0.251678,0.962831,-0.098052,-0.251678,0.962831, + -0.098052,-0.251678,0.962831,-0.292452,-0.152905,0.943977,-0.292452,-0.152905,0.943977,-0.292452,-0.152905,0.943977, + -0.262486,-0.061599,0.962968,-0.262486,-0.061599,0.962968,-0.262486,-0.061599,0.962968,-0.163591,-0.054524,0.985020, + -0.163591,-0.054524,0.985020,-0.163591,-0.054524,0.985020,-0.149160,-0.050668,0.987514,-0.149160,-0.050668,0.987514, + -0.149160,-0.050668,0.987514,-0.161652,-0.052139,0.985469,-0.161652,-0.052139,0.985469,-0.161652,-0.052139,0.985469, + -0.253480,-0.097942,0.962370,-0.253480,-0.097942,0.962370,-0.253480,-0.097942,0.962370,-0.564838,-0.158235,0.809889, + -0.564838,-0.158235,0.809889,-0.564838,-0.158235,0.809889,-0.732779,-0.415302,0.539036,-0.732779,-0.415302,0.539036, + -0.732779,-0.415302,0.539036,-0.106561,-0.222172,0.969167,-0.106561,-0.222172,0.969167,-0.106561,-0.222172,0.969167, + -0.159721,-0.054709,0.985645,-0.159721,-0.054709,0.985645,-0.159721,-0.054709,0.985645,0.254839,0.066046,-0.964725, + 0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,0.376469,0.912174,0.161894, + 0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,-0.890686,0.404450,-0.207599, + -0.890686,0.404450,-0.207599,-0.890686,0.404450,-0.207599,-0.890686,0.404450,-0.207599,-0.376470,-0.912174,-0.161894, + -0.376470,-0.912174,-0.161894,-0.376470,-0.912174,-0.161894,-0.376470,-0.912174,-0.161894,0.890688,-0.404448,0.207596, + 0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,-0.372548,-0.911062,-0.176559, + -0.372548,-0.911062,-0.176559,-0.372548,-0.911062,-0.176559,-0.372548,-0.911062,-0.176559,-0.888044,0.407741,-0.212426, + -0.888044,0.407741,-0.212426,-0.888044,0.407741,-0.212426,-0.888044,0.407741,-0.212426,0.376840,0.915564,0.140482, + 0.376840,0.915564,0.140482,0.376840,0.915564,0.140482,0.376840,0.915564,0.140482,0.890688,-0.404447,0.207596, + 0.890688,-0.404447,0.207596,0.890688,-0.404447,0.207596,0.890688,-0.404447,0.207596,-0.254850,-0.066044,0.964722, + -0.254850,-0.066044,0.964722,-0.254850,-0.066044,0.964722,-0.254850,-0.066044,0.964722,0.354180,0.903330,0.241974, + 0.354180,0.903330,0.241974,0.354180,0.903330,0.241974,0.354180,0.903330,0.241974,-0.376469,-0.912173,-0.161898, + -0.376469,-0.912173,-0.161898,-0.376469,-0.912173,-0.161898,-0.376469,-0.912173,-0.161898,-0.890687,0.404449,-0.207599, + -0.890687,0.404449,-0.207599,-0.890687,0.404449,-0.207599,-0.890687,0.404449,-0.207599,0.376469,0.912174,0.161894, + 0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,0.890687,-0.404449,0.207597, + 0.890687,-0.404449,0.207597,0.890687,-0.404449,0.207597,0.890687,-0.404449,0.207597,0.248005,0.069145,-0.966288, + 0.248005,0.069145,-0.966288,0.248005,0.069145,-0.966288,0.248005,0.069145,-0.966288,0.119535,0.125465,-0.984871, + 0.119535,0.125465,-0.984871,0.119535,0.125465,-0.984871,0.119535,0.125465,-0.984871,-0.376467,-0.912174,-0.161901, + -0.376467,-0.912174,-0.161901,-0.376467,-0.912174,-0.161901,-0.376467,-0.912174,-0.161901,-0.890689,0.404447,-0.207595, + -0.890689,0.404447,-0.207595,-0.890689,0.404447,-0.207595,-0.890689,0.404447,-0.207595,0.376470,0.912174,0.161894, + 0.376470,0.912174,0.161894,0.376470,0.912174,0.161894,0.376470,0.912174,0.161894,0.890687,-0.404450,0.207598, + 0.890687,-0.404450,0.207598,0.890687,-0.404450,0.207598,0.890687,-0.404450,0.207598,0.248006,0.069145,-0.966288, + 0.248006,0.069145,-0.966288,0.248006,0.069145,-0.966288,0.248006,0.069145,-0.966288,0.889720,-0.404693,0.211240, + 0.889720,-0.404693,0.211240,0.889720,-0.404693,0.211240,0.889720,-0.404693,0.211240,-0.376471,-0.912173,-0.161896, + -0.376471,-0.912173,-0.161896,-0.376471,-0.912173,-0.161896,-0.376471,-0.912173,-0.161896,-0.890689,0.404446,-0.207595, + -0.890689,0.404446,-0.207595,-0.890689,0.404446,-0.207595,-0.890689,0.404446,-0.207595,0.376470,0.912173,0.161896, + 0.376470,0.912173,0.161896,0.376470,0.912173,0.161896,0.376470,0.912173,0.161896,0.890688,-0.404448,0.207598, + 0.890688,-0.404448,0.207598,0.890688,-0.404448,0.207598,0.890688,-0.404448,0.207598,0.234072,0.075425,-0.969289, + 0.234072,0.075425,-0.969289,0.234072,0.075425,-0.969289,0.234072,0.075425,-0.969289,-0.890686,0.404452,-0.207599, + -0.890686,0.404452,-0.207599,-0.890686,0.404452,-0.207599,-0.890686,0.404452,-0.207599,-0.376471,-0.912173,-0.161896, + -0.376471,-0.912173,-0.161896,-0.376471,-0.912173,-0.161896,-0.376471,-0.912173,-0.161896,-0.890689,0.404448,-0.207594, + -0.890689,0.404448,-0.207594,-0.890689,0.404448,-0.207594,-0.890689,0.404448,-0.207594,0.376468,0.912174,0.161897, + 0.376468,0.912174,0.161897,0.376468,0.912174,0.161897,0.376468,0.912174,0.161897,0.890688,-0.404450,0.207595, + 0.890688,-0.404450,0.207595,0.890688,-0.404450,0.207595,0.890688,-0.404450,0.207595,0.248006,0.069144,-0.966288, + 0.248006,0.069144,-0.966288,0.248006,0.069144,-0.966288,0.248006,0.069144,-0.966288,0.376660,0.912217,0.161208, + 0.376660,0.912217,0.161208,0.376660,0.912217,0.161208,0.376660,0.912217,0.161208,-0.372959,-0.913760,-0.161075, + -0.372959,-0.913760,-0.161075,-0.372959,-0.913760,-0.161075,-0.372959,-0.913760,-0.161075,-0.890688,0.404450,-0.207595, + -0.890688,0.404450,-0.207595,-0.890688,0.404450,-0.207595,-0.890688,0.404450,-0.207595,0.376469,0.912173,0.161901, + 0.376469,0.912173,0.161901,0.376469,0.912173,0.161901,0.376469,0.912173,0.161901,0.847982,-0.409666,0.336305, + 0.847982,-0.409666,0.336305,0.847982,-0.409666,0.336305,0.847982,-0.409666,0.336305,0.221252,0.081171,-0.971833, + 0.221252,0.081171,-0.971833,0.221252,0.081171,-0.971833,0.221252,0.081171,-0.971833,0.926425,-0.371196,-0.062857, + 0.926425,-0.371196,-0.062857,0.926425,-0.371196,-0.062857,0.926425,-0.371196,-0.062857,0.176231,0.101051,-0.979148, + 0.176231,0.101051,-0.979148,0.176231,0.101051,-0.979148,0.176231,0.101051,-0.979148,-0.889719,0.404695,-0.211238, + -0.889719,0.404695,-0.211238,-0.889719,0.404695,-0.211238,-0.889719,0.404695,-0.211238,-0.921631,0.386519,-0.034638, + -0.921631,0.386519,-0.034638,-0.921631,0.386519,-0.034638,-0.921631,0.386519,-0.034638,-0.376661,-0.912216,-0.161209, + -0.376661,-0.912216,-0.161209,-0.376661,-0.912216,-0.161209,-0.376661,-0.912216,-0.161209,-0.354181,-0.903331,-0.241970, + -0.354181,-0.903331,-0.241970,-0.354181,-0.903331,-0.241970,-0.354181,-0.903331,-0.241970,-0.890689,0.404448,-0.207595, + -0.890689,0.404448,-0.207595,-0.890689,0.404448,-0.207595,-0.890689,0.404448,-0.207595,-0.376469,-0.912173,-0.161898, + -0.376469,-0.912173,-0.161898,-0.376469,-0.912173,-0.161898,-0.376469,-0.912173,-0.161898,0.376466,0.912175,0.161894, + 0.376466,0.912175,0.161894,0.376466,0.912175,0.161894,0.376466,0.912175,0.161894,0.289273,0.166441,-0.942666, + 0.289273,0.166441,-0.942666,0.289273,0.166441,-0.942666,0.289273,0.166441,-0.942666,0.896376,-0.401091,0.188775, + 0.896376,-0.401091,0.188775,0.896376,-0.401091,0.188775,0.896376,-0.401091,0.188775,-0.890691,0.404442,-0.207595, + -0.890691,0.404442,-0.207595,-0.890691,0.404442,-0.207595,-0.890691,0.404442,-0.207595,-0.386868,-0.914145,-0.121128, + -0.386868,-0.914145,-0.121128,-0.386868,-0.914145,-0.121128,-0.386868,-0.914145,-0.121128,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.890688,-0.404448,0.207596, + 0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.376469,0.912174,0.161895, + 0.376469,0.912174,0.161895,0.376469,0.912174,0.161895,0.376469,0.912174,0.161895,-0.236967,-0.074125,0.968686, + -0.236967,-0.074125,0.968686,-0.236967,-0.074125,0.968686,-0.236967,-0.074125,0.968686,0.245865,0.044449,-0.968284, + 0.245865,0.044449,-0.968284,0.245865,0.044449,-0.968284,0.245865,0.044449,-0.968284,0.244864,0.070566,-0.966986, + 0.244864,0.070566,-0.966986,0.244864,0.070566,-0.966986,0.244864,0.070566,-0.966986,0.890688,-0.404448,0.207596, + 0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.376469,0.912174,0.161894, + 0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,0.376469,0.912174,0.161894,-0.890686,0.404452,-0.207596, + -0.890686,0.404452,-0.207596,-0.890686,0.404452,-0.207596,-0.890686,0.404452,-0.207596,-0.376470,-0.912173,-0.161897, + -0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897,0.386869,0.914145,0.121123, + 0.386869,0.914145,0.121123,0.386869,0.914145,0.121123,0.386869,0.914145,0.121123,0.890689,-0.404448,0.207595, + 0.890689,-0.404448,0.207595,0.890689,-0.404448,0.207595,0.890689,-0.404448,0.207595,0.238762,0.027573,-0.970686, + 0.238762,0.027573,-0.970686,0.238762,0.027573,-0.970686,0.238762,0.027573,-0.970686,-0.376474,-0.912171,-0.161899, + -0.376474,-0.912171,-0.161899,-0.376474,-0.912171,-0.161899,-0.376474,-0.912171,-0.161899,-0.376470,-0.912173,-0.161898, + -0.376470,-0.912173,-0.161898,-0.376470,-0.912173,-0.161898,-0.376470,-0.912173,-0.161898,-0.890688,0.404449,-0.207594, + -0.890688,0.404449,-0.207594,-0.890688,0.404449,-0.207594,-0.890688,0.404449,-0.207594,0.376470,0.912173,0.161898, + 0.376470,0.912173,0.161898,0.376470,0.912173,0.161898,0.376470,0.912173,0.161898,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,0.244091,0.070914,-0.967156, + 0.244091,0.070914,-0.967156,0.244091,0.070914,-0.967156,0.244091,0.070914,-0.967156,0.918896,-0.391744,0.046549, + 0.918896,-0.391744,0.046549,0.918896,-0.391744,0.046549,0.918896,-0.391744,0.046549,0.251317,0.057522,-0.966194, + 0.251317,0.057522,-0.966194,0.251317,0.057522,-0.966194,0.251317,0.057522,-0.966194,0.376468,0.912174,0.161896, + 0.376468,0.912174,0.161896,0.376468,0.912174,0.161896,0.376468,0.912174,0.161896,-0.884754,0.406081,-0.228709, + -0.884754,0.406081,-0.228709,-0.884754,0.406081,-0.228709,-0.884754,0.406081,-0.228709,-0.376473,-0.912172,-0.161897, + -0.376473,-0.912172,-0.161897,-0.376473,-0.912172,-0.161897,-0.376473,-0.912172,-0.161897,-0.254845,-0.066048,0.964724, + -0.254845,-0.066048,0.964724,-0.254845,-0.066048,0.964724,-0.254845,-0.066048,0.964724,0.237665,0.073812,-0.968539, + 0.237665,0.073812,-0.968539,0.237665,0.073812,-0.968539,0.237665,0.073812,-0.968539,-0.354989,-0.887078,-0.295086, + -0.354989,-0.887078,-0.295086,-0.354989,-0.887078,-0.295086,-0.354989,-0.887078,-0.295086,-0.355869,-0.930491,-0.086857, + -0.355869,-0.930491,-0.086857,-0.355869,-0.930491,-0.086857,-0.355869,-0.930491,-0.086857,0.739094,-0.190357,-0.646145, + 0.739094,-0.190357,-0.646145,0.739094,-0.190357,-0.646145,0.739094,-0.190357,-0.646145,0.361143,0.915111,0.179300, + 0.361143,0.915111,0.179300,0.361143,0.915111,0.179300,0.361143,0.915111,0.179300,0.412686,0.902807,0.120955, + 0.412686,0.902807,0.120955,0.412686,0.902807,0.120955,0.412686,0.902807,0.120955,0.739047,-0.190329,-0.646207, + 0.739047,-0.190329,-0.646207,0.739047,-0.190329,-0.646207,0.739047,-0.190329,-0.646207,-0.408907,-0.903932,-0.125309, + -0.408907,-0.903932,-0.125309,-0.408907,-0.903932,-0.125309,-0.408907,-0.903932,-0.125309,-0.026564,0.185311,-0.982321, + -0.026564,0.185311,-0.982321,-0.026564,0.185311,-0.982321,-0.026564,0.185311,-0.982321,0.354842,0.931207,0.083310, + 0.354842,0.931207,0.083310,0.354842,0.931207,0.083310,0.354842,0.931207,0.083310,-0.316301,-0.909740,-0.268936, + -0.316301,-0.909740,-0.268936,-0.316301,-0.909740,-0.268936,-0.316301,-0.909740,-0.268936,-0.027872,0.185827,-0.982187, + -0.027872,0.185827,-0.982187,-0.027872,0.185827,-0.982187,-0.027872,0.185827,-0.982187,0.385652,0.901406,0.196823, + 0.385652,0.901406,0.196823,0.385652,0.901406,0.196823,0.385652,0.901406,0.196823,0.917384,-0.356157,-0.177649, + 0.917384,-0.356157,-0.177649,0.917384,-0.356157,-0.177649,0.917384,-0.356157,-0.177649,0.038606,-0.168269,0.984985, + 0.038606,-0.168269,0.984985,0.038606,-0.168269,0.984985,0.038606,-0.168269,0.984985,-0.730919,0.150606,0.665638, + -0.730919,0.150606,0.665638,-0.730919,0.150606,0.665638,-0.730919,0.150606,0.665638,-0.244938,0.297186,-0.922868, + -0.244938,0.297186,-0.922868,-0.244938,0.297186,-0.922868,-0.244938,0.297186,-0.922868,-0.352344,-0.922743,-0.156201, + -0.352344,-0.922743,-0.156201,-0.352344,-0.922743,-0.156201,-0.352344,-0.922743,-0.156201,0.894798,-0.403278,0.191580, + 0.894798,-0.403278,0.191580,0.894798,-0.403278,0.191580,0.894798,-0.403278,0.191580,-0.031573,0.165440,-0.985714, + -0.031573,0.165440,-0.985714,-0.031573,0.165440,-0.985714,-0.031573,0.165440,-0.985714,0.735943,-0.159443,-0.658001, + 0.735943,-0.159443,-0.658001,0.735943,-0.159443,-0.658001,0.735943,-0.159443,-0.658001,0.416074,0.907024,0.064725, + 0.416074,0.907024,0.064725,0.416074,0.907024,0.064725,0.416074,0.907024,0.064725,0.373550,0.926542,0.044500, + 0.373550,0.926542,0.044500,0.373550,0.926542,0.044500,0.373550,0.926542,0.044500,-0.402483,-0.893341,-0.199872, + -0.402483,-0.893341,-0.199872,-0.402483,-0.893341,-0.199872,-0.402483,-0.893341,-0.199872,-0.882414,0.406324,-0.237165, + -0.882414,0.406324,-0.237165,-0.882414,0.406324,-0.237165,-0.882414,0.406324,-0.237165,-0.371576,-0.910759,-0.180137, + -0.371576,-0.910759,-0.180137,-0.371576,-0.910759,-0.180137,0.385787,0.914012,0.125502,0.385787,0.914012,0.125502, + 0.385787,0.914012,0.125502,0.382763,0.913546,0.137569,0.382763,0.913546,0.137569,0.382763,0.913546,0.137569, + 0.382763,0.913546,0.137569,-0.373206,-0.911262,-0.174125,-0.373206,-0.911262,-0.174125,-0.373206,-0.911262,-0.174125, + -0.373206,-0.911262,-0.174125,-0.385658,-0.913995,-0.126022,-0.385658,-0.913995,-0.126022,-0.385658,-0.913995,-0.126022, + -0.385658,-0.913995,-0.126022,-0.899492,0.401733,-0.171827,-0.899492,0.401733,-0.171827,-0.899492,0.401733,-0.171827, + -0.899492,0.401733,-0.171827,0.385658,0.913995,0.126022,0.385658,0.913995,0.126022,0.385658,0.913995,0.126022, + 0.385658,0.913995,0.126022,0.899492,-0.401733,0.171827,0.899492,-0.401733,0.171827,0.899492,-0.401733,0.171827, + 0.899492,-0.401733,0.171827,-0.378885,-0.912763,-0.152679,-0.378885,-0.912763,-0.152679,-0.378885,-0.912763,-0.152679, + -0.378885,-0.912763,-0.152679,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,0.378885,0.912762,0.152678,0.378885,0.912762,0.152678,0.378885,0.912762,0.152678, + 0.378885,0.912762,0.152678,0.894455,-0.403397,0.192930,0.894455,-0.403397,0.192930,0.894455,-0.403397,0.192930, + 0.894455,-0.403397,0.192930,-0.374020,-0.911501,-0.171100,-0.374020,-0.911501,-0.171100,-0.374020,-0.911501,-0.171100, + -0.374020,-0.911501,-0.171100,0.374019,0.911502,0.171098,0.374019,0.911502,0.171098,0.374019,0.911502,0.171098, + 0.374019,0.911502,0.171098,0.894453,-0.403399,0.192931,0.894453,-0.403399,0.192931,0.894453,-0.403399,0.192931, + 0.894453,-0.403399,0.192931,-0.899460,0.401745,-0.171968,-0.899460,0.401745,-0.171968,-0.899460,0.401745,-0.171968, + -0.899460,0.401745,-0.171968,-0.373492,-0.911348,-0.173058,-0.373492,-0.911348,-0.173058,-0.373492,-0.911348,-0.173058, + -0.373492,-0.911348,-0.173058,0.371635,0.910779,0.179912,0.371635,0.910779,0.179912,0.371635,0.910779,0.179912, + 0.371635,0.910779,0.179912,0.899461,-0.401743,0.171967,0.899461,-0.401743,0.171967,0.899461,-0.401743,0.171967, + 0.899461,-0.401743,0.171967,-0.224885,-0.079546,0.971133,-0.224885,-0.079546,0.971133,-0.224885,-0.079546,0.971133, + -0.224885,-0.079546,0.971133,0.882620,-0.406253,0.236519,0.882620,-0.406253,0.236519,0.882620,-0.406253,0.236519, + 0.882620,-0.406253,0.236519,-0.882620,0.406252,-0.236519,-0.882620,0.406252,-0.236519,-0.882620,0.406252,-0.236519, + -0.882620,0.406252,-0.236519,0.385418,0.913963,0.126985,0.385418,0.913963,0.126985,0.385418,0.913963,0.126985, + 0.385418,0.913963,0.126985,0.897004,-0.402595,0.182487,0.897004,-0.402595,0.182487,0.897004,-0.402595,0.182487, + 0.897004,-0.402595,0.182487,-0.897002,0.402598,-0.182487,-0.897002,0.402598,-0.182487,-0.897002,0.402598,-0.182487, + -0.897002,0.402598,-0.182487,0.385297,0.913946,0.127471,0.385297,0.913946,0.127471,0.385297,0.913946,0.127471, + 0.385297,0.913946,0.127471,-0.897087,0.402571,-0.182130,-0.897087,0.402571,-0.182130,-0.897087,0.402571,-0.182130, + -0.897087,0.402571,-0.182130,0.897088,-0.402568,0.182132,0.897088,-0.402568,0.182132,0.897088,-0.402568,0.182132, + 0.897088,-0.402568,0.182132,-0.371948,-0.910875,-0.178780,-0.371948,-0.910875,-0.178780,-0.371948,-0.910875,-0.178780, + -0.371948,-0.910875,-0.178780,-0.882753,0.406224,-0.236071,-0.882753,0.406224,-0.236071,-0.882753,0.406224,-0.236071, + -0.882753,0.406224,-0.236071,0.882750,-0.406230,0.236070,0.882750,-0.406230,0.236070,0.882750,-0.406230,0.236070, + 0.882750,-0.406230,0.236070,-0.372017,-0.910898,-0.178516,-0.372017,-0.910898,-0.178516,-0.372017,-0.910898,-0.178516, + -0.372017,-0.910898,-0.178516,0.371374,0.910692,0.180890,0.371374,0.910692,0.180890,0.371374,0.910692,0.180890, + 0.371374,0.910692,0.180890,0.880136,-0.406704,0.244853,0.880136,-0.406704,0.244853,0.880136,-0.406704,0.244853, + 0.880136,-0.406704,0.244853,-0.371373,-0.910693,-0.180888,-0.371373,-0.910693,-0.180888,-0.371373,-0.910693,-0.180888, + -0.371373,-0.910693,-0.180888,-0.880135,0.406704,-0.244855,-0.880135,0.406704,-0.244855,-0.880135,0.406704,-0.244855, + -0.880135,0.406704,-0.244855,0.374025,0.911502,0.171084,0.374025,0.911502,0.171084,0.374025,0.911502,0.171084, + 0.374025,0.911502,0.171084,-0.374026,-0.911501,-0.171086,-0.374026,-0.911501,-0.171086,-0.374026,-0.911501,-0.171086, + -0.374026,-0.911501,-0.171086,-0.880372,0.406663,-0.244069,-0.880372,0.406663,-0.244069,-0.880372,0.406663,-0.244069, + -0.880372,0.406663,-0.244069,0.378886,0.912759,0.152694,0.378886,0.912759,0.152694,0.378886,0.912759,0.152694, + 0.378886,0.912759,0.152694,-0.378885,-0.912760,-0.152692,-0.378885,-0.912760,-0.152692,-0.378885,-0.912760,-0.152692, + -0.378885,-0.912760,-0.152692,-0.880371,0.406665,-0.244069,-0.880371,0.406665,-0.244069,-0.880371,0.406665,-0.244069, + -0.880371,0.406665,-0.244069,0.880346,-0.406668,0.244156,0.880346,-0.406668,0.244156,0.880346,-0.406668,0.244156, + 0.880346,-0.406668,0.244156,0.385932,0.914029,0.124929,0.385932,0.914029,0.124929,0.385932,0.914029,0.124929, + 0.385932,0.914029,0.124929,-0.385932,-0.914029,-0.124930,-0.385932,-0.914029,-0.124930,-0.385932,-0.914029,-0.124930, + -0.385932,-0.914029,-0.124930,-0.880346,0.406668,-0.244156,-0.880346,0.406668,-0.244156,-0.880346,0.406668,-0.244156, + -0.880346,0.406668,-0.244156,-0.234541,-0.075216,0.969192,-0.234541,-0.075216,0.969192,-0.234541,-0.075216,0.969192, + -0.234541,-0.075216,0.969192,0.886186,-0.405521,0.224112,0.886186,-0.405521,0.224112,0.886186,-0.405521,0.224112, + 0.886186,-0.405521,0.224112,0.373064,0.911342,0.174008,0.373064,0.911342,0.174008,0.373064,0.911342,0.174008, + 0.373064,0.911342,0.174008,-0.886187,0.405520,-0.224112,-0.886187,0.405520,-0.224112,-0.886187,0.405520,-0.224112, + -0.886187,0.405520,-0.224112,-0.373065,-0.911342,-0.174009,-0.373065,-0.911342,-0.174009,-0.373065,-0.911342,-0.174009, + -0.373065,-0.911342,-0.174009,0.886187,-0.405520,0.224114,0.886187,-0.405520,0.224114,0.886187,-0.405520,0.224114, + 0.886187,-0.405520,0.224114,0.376468,0.912174,0.161896,0.376468,0.912174,0.161896,0.376468,0.912174,0.161896, + 0.376468,0.912174,0.161896,-0.886186,0.405522,-0.224113,-0.886186,0.405522,-0.224113,-0.886186,0.405522,-0.224113, + -0.886186,0.405522,-0.224113,-0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896, + -0.376470,-0.912173,-0.161896,0.886187,-0.405521,0.224111,0.886187,-0.405521,0.224111,0.886187,-0.405521,0.224111, + 0.886187,-0.405521,0.224111,0.373063,0.911343,0.174007,0.373063,0.911343,0.174007,0.373063,0.911343,0.174007, + 0.373063,0.911343,0.174007,-0.886187,0.405520,-0.224110,-0.886187,0.405520,-0.224110,-0.886187,0.405520,-0.224110, + -0.886187,0.405520,-0.224110,-0.376469,-0.912174,-0.161896,-0.376469,-0.912174,-0.161896,-0.376469,-0.912174,-0.161896, + -0.376469,-0.912174,-0.161896,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725, + 0.254839,0.066046,-0.964725,0.376467,0.912174,0.161895,0.376467,0.912174,0.161895,0.376467,0.912174,0.161895, + 0.376467,0.912174,0.161895,-0.890690,0.404446,-0.207595,-0.890690,0.404446,-0.207595,-0.890690,0.404446,-0.207595, + -0.890690,0.404446,-0.207595,-0.376472,-0.912173,-0.161894,-0.376472,-0.912173,-0.161894,-0.376472,-0.912173,-0.161894, + -0.376472,-0.912173,-0.161894,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597, + 0.890689,-0.404446,0.207597,0.102148,0.132043,-0.985967,0.102148,0.132043,-0.985967,0.102148,0.132043,-0.985967, + 0.102148,0.132043,-0.985967,0.376468,0.912174,0.161897,0.376468,0.912174,0.161897,0.376468,0.912174,0.161897, + 0.376468,0.912174,0.161897,-0.922895,0.384771,-0.014674,-0.922895,0.384771,-0.014674,-0.922895,0.384771,-0.014674, + -0.922895,0.384771,-0.014674,-0.376471,-0.912173,-0.161894,-0.376471,-0.912173,-0.161894,-0.376471,-0.912173,-0.161894, + -0.376471,-0.912173,-0.161894,0.923333,-0.383712,0.014861,0.923333,-0.383712,0.014861,0.923333,-0.383712,0.014861, + 0.923333,-0.383712,0.014861,0.899566,-0.390324,0.196030,0.899566,-0.390324,0.196030,0.899566,-0.390324,0.196030, + 0.899566,-0.390324,0.196030,0.110826,0.633607,0.765676,0.110826,0.633607,0.765676,0.110826,0.633607,0.765676, + 0.110826,0.633607,0.765676,-0.899566,0.390324,-0.196031,-0.899566,0.390324,-0.196031,-0.899566,0.390324,-0.196031, + -0.899566,0.390324,-0.196031,-0.110842,-0.633602,-0.765678,-0.110842,-0.633602,-0.765678,-0.110842,-0.633602,-0.765678, + -0.110842,-0.633602,-0.765678,0.886295,-0.411353,0.212768,0.886295,-0.411353,0.212768,0.886295,-0.411353,0.212768, + 0.886295,-0.411353,0.212768,0.083730,0.596736,0.798057,0.083730,0.596736,0.798057,0.083730,0.596736,0.798057, + 0.083730,0.596736,0.798057,-0.886294,0.411353,-0.212772,-0.886294,0.411353,-0.212772,-0.886294,0.411353,-0.212772, + -0.886294,0.411353,-0.212772,-0.079578,-0.590664,-0.802984,-0.079578,-0.590664,-0.802984,-0.079578,-0.590664,-0.802984, + -0.079578,-0.590664,-0.802984,0.886344,-0.411096,0.213061,0.886344,-0.411096,0.213061,0.886344,-0.411096,0.213061, + 0.886344,-0.411096,0.213061,0.098177,0.615800,0.781762,0.098177,0.615800,0.781762,0.098177,0.615800,0.781762, + 0.098177,0.615800,0.781762,-0.886344,0.411096,-0.213058,-0.886344,0.411096,-0.213058,-0.886344,0.411096,-0.213058, + -0.886344,0.411096,-0.213058,-0.098178,-0.615796,-0.781765,-0.098178,-0.615796,-0.781765,-0.098178,-0.615796,-0.781765, + -0.098178,-0.615796,-0.781765,-0.889859,0.409940,-0.200252,-0.889859,0.409940,-0.200252,-0.889859,0.409940,-0.200252, + -0.889859,0.409940,-0.200252,-0.444132,-0.679888,0.583523,-0.444132,-0.679888,0.583523,-0.444132,-0.679888,0.583523, + -0.444132,-0.679888,0.583523,0.889858,-0.409941,0.200253,0.889858,-0.409941,0.200253,0.889858,-0.409941,0.200253, + 0.889858,-0.409941,0.200253,0.444137,0.679885,-0.583523,0.444137,0.679885,-0.583523,0.444137,0.679885,-0.583523, + 0.444137,0.679885,-0.583523,-0.889862,0.409926,-0.200265,-0.889862,0.409926,-0.200265,-0.889862,0.409926,-0.200265, + -0.889862,0.409926,-0.200265,-0.440426,-0.661763,0.606708,-0.440426,-0.661763,0.606708,-0.440426,-0.661763,0.606708, + -0.440426,-0.661763,0.606708,0.889862,-0.409926,0.200264,0.889862,-0.409926,0.200264,0.889862,-0.409926,0.200264, + 0.889862,-0.409926,0.200264,0.440435,0.661759,-0.606705,0.440435,0.661759,-0.606705,0.440435,0.661759,-0.606705, + 0.440435,0.661759,-0.606705,-0.889670,0.410332,-0.200289,-0.889670,0.410332,-0.200289,-0.889670,0.410332,-0.200289, + -0.889670,0.410332,-0.200289,-0.442349,-0.675766,0.589633,-0.442349,-0.675766,0.589633,-0.442349,-0.675766,0.589633, + -0.442349,-0.675766,0.589633,0.889670,-0.410332,0.200289,0.889670,-0.410332,0.200289,0.889670,-0.410332,0.200289, + 0.889670,-0.410332,0.200289,0.441325,0.670628,-0.596230,0.441325,0.670628,-0.596230,0.441325,0.670628,-0.596230, + 0.441325,0.670628,-0.596230,-0.408960,-0.900755,-0.146259,-0.408960,-0.900755,-0.146259,-0.408960,-0.900755,-0.146259, + -0.408960,-0.900755,-0.146259,0.466051,-0.338063,0.817624,0.466051,-0.338063,0.817624,0.466051,-0.338063,0.817624, + 0.466051,-0.338063,0.817624,0.408960,0.900755,0.146259,0.408960,0.900755,0.146259,0.408960,0.900755,0.146259, + 0.408960,0.900755,0.146259,-0.464494,0.337556,-0.818719,-0.464494,0.337556,-0.818719,-0.464494,0.337556,-0.818719, + -0.464494,0.337556,-0.818719,-0.393883,-0.914453,-0.092907,-0.393883,-0.914453,-0.092907,-0.393883,-0.914453,-0.092907, + -0.393883,-0.914453,-0.092907,0.468506,-0.286555,0.835696,0.468506,-0.286555,0.835696,0.468506,-0.286555,0.835696, + 0.468506,-0.286555,0.835696,0.393885,0.914452,0.092907,0.393885,0.914452,0.092907,0.393885,0.914452,0.092907, + 0.393885,0.914452,0.092907,-0.468510,0.286553,-0.835695,-0.468510,0.286553,-0.835695,-0.468510,0.286553,-0.835695, + -0.468510,0.286553,-0.835695,0.874281,-0.407613,0.263599,0.874281,-0.407613,0.263599,0.874281,-0.407613,0.263599, + 0.874281,-0.407613,0.263599,-0.874281,0.407614,-0.263599,-0.874281,0.407614,-0.263599,-0.874281,0.407614,-0.263599, + -0.874281,0.407614,-0.263599,0.405026,0.913355,0.041673,0.405026,0.913355,0.041673,0.405026,0.913355,0.041673, + 0.405026,0.913355,0.041673,-0.879278,0.406855,-0.247666,-0.879278,0.406855,-0.247666,-0.879278,0.406855,-0.247666, + -0.879278,0.406855,-0.247666,0.879279,-0.406854,0.247666,0.879279,-0.406854,0.247666,0.879279,-0.406854,0.247666, + 0.879279,-0.406854,0.247666,-0.360593,-0.906606,-0.219176,-0.360593,-0.906606,-0.219176,-0.360593,-0.906606,-0.219176, + -0.360593,-0.906606,-0.219176,0.911185,-0.396148,0.113177,0.911185,-0.396148,0.113177,0.911185,-0.396148,0.113177, + 0.911185,-0.396148,0.113177,-0.911186,0.396145,-0.113177,-0.911186,0.396145,-0.113177,-0.911186,0.396145,-0.113177, + -0.911186,0.396145,-0.113177,0.420269,0.906654,-0.036774,0.420269,0.906654,-0.036774,0.420269,0.906654,-0.036774, + 0.420269,0.906654,-0.036774,-0.911183,0.396151,-0.113178,-0.911183,0.396151,-0.113178,-0.911183,0.396151,-0.113178, + -0.911183,0.396151,-0.113178,0.911184,-0.396149,0.113177,0.911184,-0.396149,0.113177,0.911184,-0.396149,0.113177, + 0.911184,-0.396149,0.113177,-0.377804,-0.912508,-0.156822,-0.377804,-0.912508,-0.156822,-0.377804,-0.912508,-0.156822, + -0.377804,-0.912508,-0.156822,0.898998,-0.402843,0.171816,0.898998,-0.402843,0.171816,0.898998,-0.402843,0.171816, + 0.898998,-0.402843,0.171816,-0.902193,0.401987,-0.156380,-0.902193,0.401987,-0.156380,-0.902193,0.401987,-0.156380, + -0.902193,0.401987,-0.156380,0.383535,0.913677,0.134518,0.383535,0.913677,0.134518,0.383535,0.913677,0.134518, + 0.383535,0.913677,0.134518,0.880440,-0.405560,0.245655,0.880440,-0.405560,0.245655,0.880440,-0.405560,0.245655, + 0.880440,-0.405560,0.245655,-0.883664,0.405293,-0.234254,-0.883664,0.405293,-0.234254,-0.883664,0.405293,-0.234254, + -0.883664,0.405293,-0.234254,0.383533,0.913678,0.134518,0.383533,0.913678,0.134518,0.383533,0.913678,0.134518, + 0.383533,0.913678,0.134518,0.242404,0.036203,-0.969500,0.242404,0.036203,-0.969500,0.242404,0.036203,-0.969500, + 0.242404,0.036203,-0.969500,0.384595,0.913844,0.130289,0.384595,0.913844,0.130289,0.384595,0.913844,0.130289, + 0.384595,0.913844,0.130289,-0.242408,-0.036208,0.969499,-0.242408,-0.036208,0.969499,-0.242408,-0.036208,0.969499, + -0.242408,-0.036208,0.969499,0.242407,0.036207,-0.969499,0.242407,0.036207,-0.969499,0.242407,0.036207,-0.969499, + 0.242407,0.036207,-0.969499,0.384595,0.913845,0.130286,0.384595,0.913845,0.130286,0.384595,0.913845,0.130286, + 0.384595,0.913845,0.130286,-0.242403,-0.036204,0.969500,-0.242403,-0.036204,0.969500,-0.242403,-0.036204,0.969500, + -0.242403,-0.036204,0.969500,0.242405,0.036210,-0.969499,0.242405,0.036210,-0.969499,0.242405,0.036210,-0.969499, + 0.242405,0.036210,-0.969499,0.384594,0.913845,0.130287,0.384594,0.913845,0.130287,0.384594,0.913845,0.130287, + 0.384594,0.913845,0.130287,-0.242409,-0.036210,0.969498,-0.242409,-0.036210,0.969498,-0.242409,-0.036210,0.969498, + -0.242409,-0.036210,0.969498,0.890690,-0.404444,0.207598,0.890690,-0.404444,0.207598,0.890690,-0.404444,0.207598, + 0.890690,-0.404444,0.207598,0.384594,0.913845,0.130286,0.384594,0.913845,0.130286,0.384594,0.913845,0.130286, + 0.384594,0.913845,0.130286,-0.890687,0.404449,-0.207598,-0.890687,0.404449,-0.207598,-0.890687,0.404449,-0.207598, + -0.890687,0.404449,-0.207598,0.384596,0.913844,0.130287,0.384596,0.913844,0.130287,0.384596,0.913844,0.130287, + 0.384596,0.913844,0.130287,-0.383025,-0.913593,-0.136529,-0.383025,-0.913593,-0.136529,-0.383025,-0.913593,-0.136529, + -0.383025,-0.913593,-0.136529,0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598, + 0.890688,-0.404447,0.207598,0.253562,0.062977,-0.965267,0.253562,0.062977,-0.965267,0.253562,0.062977,-0.965267, + 0.253562,0.062977,-0.965267,-0.256184,-0.069300,0.964141,-0.256184,-0.069300,0.964141,-0.256184,-0.069300,0.964141, + -0.256184,-0.069300,0.964141,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597, + 0.890689,-0.404446,0.207597,0.890690,-0.404445,0.207596,0.890690,-0.404445,0.207596,0.890690,-0.404445,0.207596, + 0.890690,-0.404445,0.207596,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597, + 0.890689,-0.404445,0.207597,0.369702,0.910143,0.186974,0.369702,0.910143,0.186974,0.369702,0.910143,0.186974, + 0.369702,0.910143,0.186974,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597, + 0.890689,-0.404446,0.207597,0.369655,0.910128,0.187142,0.369655,0.910128,0.187142,0.369655,0.910128,0.187142, + 0.369655,0.910128,0.187142,0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597, + 0.890688,-0.404448,0.207597,-0.369700,-0.910143,-0.186982,-0.369700,-0.910143,-0.186982,-0.369700,-0.910143,-0.186982, + -0.369700,-0.910143,-0.186982,-0.254855,-0.066044,0.964721,-0.254855,-0.066044,0.964721,-0.254855,-0.066044,0.964721, + -0.254855,-0.066044,0.964721,0.890691,-0.404443,0.207593,0.890691,-0.404443,0.207593,0.890691,-0.404443,0.207593, + 0.890691,-0.404443,0.207593,0.254836,0.066048,-0.964726,0.254836,0.066048,-0.964726,0.254836,0.066048,-0.964726, + 0.254836,0.066048,-0.964726,-0.374505,-0.911640,-0.169286,-0.374505,-0.911640,-0.169286,-0.374505,-0.911640,-0.169286, + -0.374505,-0.911640,-0.169286,0.373653,0.911395,0.172461,0.373653,0.911395,0.172461,0.373653,0.911395,0.172461, + 0.373653,0.911395,0.172461,0.889569,-0.404729,0.211805,0.889569,-0.404729,0.211805,0.889569,-0.404729,0.211805, + 0.889569,-0.404729,0.211805,-0.381962,-0.913403,-0.140715,-0.381962,-0.913403,-0.140715,-0.381962,-0.913403,-0.140715, + -0.381962,-0.913403,-0.140715,0.380329,0.913079,0.147090,0.380329,0.913079,0.147090,0.380329,0.913079,0.147090, + 0.380329,0.913079,0.147090,0.889569,-0.404729,0.211807,0.889569,-0.404729,0.211807,0.889569,-0.404729,0.211807, + 0.889569,-0.404729,0.211807,0.254852,0.066043,-0.964722,0.254852,0.066043,-0.964722,0.254852,0.066043,-0.964722, + 0.254852,0.066043,-0.964722,0.890690,-0.404445,0.207595,0.890690,-0.404445,0.207595,0.890690,-0.404445,0.207595, + 0.890690,-0.404445,0.207595,-0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726,-0.254836,-0.066046,0.964726, + -0.254836,-0.066046,0.964726,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.890688,-0.404449,0.207597,0.890688,-0.404449,0.207597,0.890688,-0.404449,0.207597, + 0.890688,-0.404449,0.207597,-0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726, + -0.254836,-0.066045,0.964726,-0.380761,-0.913170,-0.145402,-0.380761,-0.913170,-0.145402,-0.380761,-0.913170,-0.145402, + -0.380761,-0.913170,-0.145402,0.890689,-0.404445,0.207598,0.890689,-0.404445,0.207598,0.890689,-0.404445,0.207598, + 0.890689,-0.404445,0.207598,0.376467,0.912175,0.161893,0.376467,0.912175,0.161893,0.376467,0.912175,0.161893, + 0.376467,0.912175,0.161893,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597, + 0.890689,-0.404445,0.207597,-0.364947,-0.908405,-0.203996,-0.364947,-0.908405,-0.203996,-0.364947,-0.908405,-0.203996, + -0.364947,-0.908405,-0.203996,0.361961,0.907193,0.214442,0.361961,0.907193,0.214442,0.361961,0.907193,0.214442, + 0.361961,0.907193,0.214442,0.889479,-0.404750,0.212142,0.889479,-0.404750,0.212142,0.889479,-0.404750,0.212142, + 0.889479,-0.404750,0.212142,-0.384639,-0.913852,-0.130106,-0.384639,-0.913852,-0.130106,-0.384639,-0.913852,-0.130106, + -0.384639,-0.913852,-0.130106,0.383041,0.913595,0.136471,0.383041,0.913595,0.136471,0.383041,0.913595,0.136471, + 0.383041,0.913595,0.136471,0.889479,-0.404750,0.212144,0.889479,-0.404750,0.212144,0.889479,-0.404750,0.212144, + 0.889479,-0.404750,0.212144,0.254836,0.066046,-0.964726,0.254836,0.066046,-0.964726,0.254836,0.066046,-0.964726, + 0.254836,0.066046,-0.964726,0.890689,-0.404446,0.207596,0.890689,-0.404446,0.207596,0.890689,-0.404446,0.207596, + 0.890689,-0.404446,0.207596,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724, + 0.254846,0.066045,-0.964724,0.890690,-0.404445,0.207596,0.890690,-0.404445,0.207596,0.890690,-0.404445,0.207596, + 0.890690,-0.404445,0.207596,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724,0.254846,0.066045,-0.964724, + 0.254846,0.066045,-0.964724,0.890689,-0.404446,0.207598,0.890689,-0.404446,0.207598,0.890689,-0.404446,0.207598, + 0.890689,-0.404446,0.207598,-0.254836,-0.066047,0.964726,-0.254836,-0.066047,0.964726,-0.254836,-0.066047,0.964726, + -0.254836,-0.066047,0.964726,-0.376464,-0.912175,-0.161900,-0.376464,-0.912175,-0.161900,-0.376464,-0.912175,-0.161900, + -0.376464,-0.912175,-0.161900,0.890689,-0.404444,0.207599,0.890689,-0.404444,0.207599,0.890689,-0.404444,0.207599, + 0.890689,-0.404444,0.207599,0.376467,0.912176,0.161891,0.376467,0.912176,0.161891,0.376467,0.912176,0.161891, + 0.376467,0.912176,0.161891,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597,0.890689,-0.404446,0.207597, + 0.890689,-0.404446,0.207597,-0.369636,-0.910122,-0.187209,-0.369636,-0.910122,-0.187209,-0.369636,-0.910122,-0.187209, + -0.369636,-0.910122,-0.187209,0.367889,0.909512,0.193510,0.367889,0.909512,0.193510,0.367889,0.909512,0.193510, + 0.367889,0.909512,0.193510,0.889479,-0.404750,0.212144,0.889479,-0.404750,0.212144,0.889479,-0.404750,0.212144, + 0.889479,-0.404750,0.212144,-0.390762,-0.914478,-0.105049,-0.390762,-0.914478,-0.105049,-0.390762,-0.914478,-0.105049, + -0.390762,-0.914478,-0.105049,0.388113,0.914278,0.116038,0.388113,0.914278,0.116038,0.388113,0.914278,0.116038, + 0.388113,0.914278,0.116038,0.889526,-0.404739,0.211969,0.889526,-0.404739,0.211969,0.889526,-0.404739,0.211969, + 0.889526,-0.404739,0.211969,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725, + 0.254839,0.066045,-0.964725,0.890690,-0.404445,0.207595,0.890690,-0.404445,0.207595,0.890690,-0.404445,0.207595, + 0.890690,-0.404445,0.207595,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,0.238249,0.026360,-0.970846,0.238249,0.026360,-0.970846,0.238249,0.026360,-0.970846, + 0.238249,0.026360,-0.970846,0.890690,-0.404445,0.207594,0.890690,-0.404445,0.207594,0.890690,-0.404445,0.207594, + 0.890690,-0.404445,0.207594,-0.233279,-0.014667,0.972299,-0.233279,-0.014667,0.972299,-0.233279,-0.014667,0.972299, + -0.233279,-0.014667,0.972299,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.890689,-0.404445,0.207599,0.890689,-0.404445,0.207599,0.890689,-0.404445,0.207599, + 0.890689,-0.404445,0.207599,-0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723, + -0.254848,-0.066045,0.964723,-0.376471,-0.912173,-0.161898,-0.376471,-0.912173,-0.161898,-0.376471,-0.912173,-0.161898, + -0.376471,-0.912173,-0.161898,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597, + 0.890689,-0.404445,0.207597,0.376468,0.912174,0.161894,0.376468,0.912174,0.161894,0.376468,0.912174,0.161894, + 0.376468,0.912174,0.161894,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597,0.890689,-0.404445,0.207597, + 0.890689,-0.404445,0.207597,-0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727, + -0.254834,-0.066048,0.964727,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.890690,0.404444,-0.207597,-0.905957,0.351520,-0.235957,-0.905957,0.351520,-0.235957,-0.905957,0.351520,-0.235957, + -0.905957,0.351520,-0.235957,-0.891881,0.404129,-0.203047,-0.891881,0.404129,-0.203047,-0.891881,0.404129,-0.203047, + -0.891881,0.404129,-0.203047,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,0.376473,0.912172,0.161898,0.376473,0.912172,0.161898,0.376473,0.912172,0.161898, + 0.376473,0.912172,0.161898,-0.264254,-0.021452,0.964214,-0.264254,-0.021452,0.964214,-0.264254,-0.021452,0.964214, + -0.264254,-0.021452,0.964214,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726, + 0.254837,0.066047,-0.964726,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,0.364943,0.908407,0.203993,0.364943,0.908407,0.203993,0.364943,0.908407,0.203993, + 0.364943,0.908407,0.203993,-0.891883,0.404126,-0.203046,-0.891883,0.404126,-0.203046,-0.891883,0.404126,-0.203046, + -0.891883,0.404126,-0.203046,-0.384638,-0.913852,-0.130105,-0.384638,-0.913852,-0.130105,-0.384638,-0.913852,-0.130105, + -0.384638,-0.913852,-0.130105,0.383044,0.913594,0.136472,0.383044,0.913594,0.136472,0.383044,0.913594,0.136472, + 0.383044,0.913594,0.136472,0.311147,0.137621,-0.940345,0.311147,0.137621,-0.940345,0.311147,0.137621,-0.940345, + 0.311147,0.137621,-0.940345,-0.379064,-0.913838,-0.145636,-0.379064,-0.913838,-0.145636,-0.379064,-0.913838,-0.145636, + -0.379064,-0.913838,-0.145636,-0.890690,0.404443,-0.207599,-0.890690,0.404443,-0.207599,-0.890690,0.404443,-0.207599, + -0.890690,0.404443,-0.207599,0.377542,0.912405,0.158048,0.377542,0.912405,0.158048,0.377542,0.912405,0.158048, + 0.377542,0.912405,0.158048,-0.885125,0.407650,-0.224444,-0.885125,0.407650,-0.224444,-0.885125,0.407650,-0.224444, + -0.885125,0.407650,-0.224444,-0.891834,0.403991,-0.203526,-0.891834,0.403991,-0.203526,-0.891834,0.403991,-0.203526, + 0.383034,0.913598,0.136470,0.383034,0.913598,0.136470,0.383034,0.913598,0.136470,0.383034,0.913598,0.136470, + -0.890689,0.404444,-0.207600,-0.890689,0.404444,-0.207600,-0.890689,0.404444,-0.207600,-0.890689,0.404444,-0.207600, + -0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726, + 0.270952,0.105607,-0.956782,0.270952,0.105607,-0.956782,0.270952,0.105607,-0.956782,0.270952,0.105607,-0.956782, + -0.891674,0.404185,-0.203844,-0.891674,0.404185,-0.203844,-0.891674,0.404185,-0.203844,0.299580,0.044210,-0.953046, + 0.299580,0.044210,-0.953046,0.299580,0.044210,-0.953046,0.299580,0.044210,-0.953046,-0.254847,-0.066045,0.964723, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.363985,-0.908022,-0.207392, + -0.363985,-0.908022,-0.207392,-0.363985,-0.908022,-0.207392,-0.363985,-0.908022,-0.207392,-0.891727,0.404169,-0.203644, + -0.891727,0.404169,-0.203644,-0.891727,0.404169,-0.203644,-0.367301,-0.909299,-0.195612,-0.367301,-0.909299,-0.195612, + -0.367301,-0.909299,-0.195612,-0.367301,-0.909299,-0.195612,-0.371265,-0.910661,-0.181268,-0.371265,-0.910661,-0.181268, + -0.371265,-0.910661,-0.181268,-0.371265,-0.910661,-0.181268,0.370895,0.910540,0.182631,0.370895,0.910540,0.182631, + 0.370895,0.910540,0.182631,0.370895,0.910540,0.182631,0.890556,-0.403829,0.209360,0.890556,-0.403829,0.209360, + 0.890556,-0.403829,0.209360,0.890556,-0.403829,0.209360,-0.380087,-0.913029,-0.148029,-0.380087,-0.913029,-0.148029, + -0.380087,-0.913029,-0.148029,-0.380087,-0.913029,-0.148029,0.379854,0.912977,0.148943,0.379854,0.912977,0.148943, + 0.379854,0.912977,0.148943,0.379854,0.912977,0.148943,0.889957,-0.405283,0.209097,0.889957,-0.405283,0.209097, + 0.889957,-0.405283,0.209097,0.889957,-0.405283,0.209097,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,0.890689,-0.404445,0.207596,0.890689,-0.404445,0.207596, + 0.890689,-0.404445,0.207596,0.890689,-0.404445,0.207596,-0.254834,-0.066046,0.964727,-0.254834,-0.066046,0.964727, + -0.254834,-0.066046,0.964727,-0.254834,-0.066046,0.964727,0.360373,0.906513,0.219921,0.360373,0.906513,0.219921, + 0.360373,0.906513,0.219921,0.360373,0.906513,0.219921,-0.890690,0.404444,-0.207595,-0.890690,0.404444,-0.207595, + -0.890690,0.404444,-0.207595,-0.890690,0.404444,-0.207595,0.256093,0.069090,-0.964180,0.256093,0.069090,-0.964180, + 0.256093,0.069090,-0.964180,0.256093,0.069090,-0.964180,-0.253481,-0.062710,0.965305,-0.253481,-0.062710,0.965305, + -0.253481,-0.062710,0.965305,-0.253481,-0.062710,0.965305,-0.890690,0.404445,-0.207597,-0.890690,0.404445,-0.207597, + -0.890690,0.404445,-0.207597,-0.890690,0.404445,-0.207597,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,-0.890689,0.404446,-0.207598,-0.890689,0.404446,-0.207598, + -0.890689,0.404446,-0.207598,-0.890689,0.404446,-0.207598,-0.382120,-0.913431,-0.140100,-0.382120,-0.913431,-0.140100, + -0.382120,-0.913431,-0.140100,-0.382120,-0.913431,-0.140100,-0.890690,0.404445,-0.207597,-0.890690,0.404445,-0.207597, + -0.890690,0.404445,-0.207597,-0.890690,0.404445,-0.207597,-0.376473,-0.912172,-0.161897,-0.376473,-0.912172,-0.161897, + -0.376473,-0.912172,-0.161897,-0.376473,-0.912172,-0.161897,-0.890689,0.404445,-0.207597,-0.890689,0.404445,-0.207597, + -0.890689,0.404445,-0.207597,-0.890689,0.404445,-0.207597,0.376475,0.912171,0.161898,0.376475,0.912171,0.161898, + 0.376475,0.912171,0.161898,0.376475,0.912171,0.161898,-0.262996,-0.085924,0.960963,-0.262996,-0.085924,0.960963, + -0.262996,-0.085924,0.960963,-0.262996,-0.085924,0.960963,-0.890690,0.404443,-0.207596,-0.890690,0.404443,-0.207596, + -0.890690,0.404443,-0.207596,-0.890690,0.404443,-0.207596,0.246633,0.046246,-0.968005,0.246633,0.046246,-0.968005, + 0.246633,0.046246,-0.968005,0.246633,0.046246,-0.968005,0.381611,0.913337,0.142085,0.381611,0.913337,0.142085, + 0.381611,0.913337,0.142085,0.381611,0.913337,0.142085,-0.381394,-0.913294,-0.142945,-0.381394,-0.913294,-0.142945, + -0.381394,-0.913294,-0.142945,-0.381394,-0.913294,-0.142945,-0.891757,0.404240,-0.203370,-0.891757,0.404240,-0.203370, + -0.891757,0.404240,-0.203370,-0.891757,0.404240,-0.203370,0.372502,0.911049,0.176723,0.372502,0.911049,0.176723, + 0.372502,0.911049,0.176723,0.372502,0.911049,0.176723,-0.375452,-0.911904,-0.165730,-0.375452,-0.911904,-0.165730, + -0.375452,-0.911904,-0.165730,-0.375452,-0.911904,-0.165730,-0.891757,0.404243,-0.203366,-0.891757,0.404243,-0.203366, + -0.891757,0.404243,-0.203366,-0.891757,0.404243,-0.203366,0.246289,0.045449,-0.968130,0.246289,0.045449,-0.968130, + 0.246289,0.045449,-0.968130,0.246289,0.045449,-0.968130,-0.890691,0.404443,-0.207597,-0.890691,0.404443,-0.207597, + -0.890691,0.404443,-0.207597,-0.890691,0.404443,-0.207597,-0.246280,-0.045449,0.968132,-0.246280,-0.045449,0.968132, + -0.246280,-0.045449,0.968132,-0.246280,-0.045449,0.968132,0.245848,0.044424,-0.968290,0.245848,0.044424,-0.968290, + 0.245848,0.044424,-0.968290,0.245848,0.044424,-0.968290,-0.890689,0.404446,-0.207597,-0.890689,0.404446,-0.207597, + -0.890689,0.404446,-0.207597,-0.890689,0.404446,-0.207597,-0.245666,-0.043987,0.968356,-0.245666,-0.043987,0.968356, + -0.245666,-0.043987,0.968356,-0.245666,-0.043987,0.968356,0.246282,0.045448,-0.968132,0.246282,0.045448,-0.968132, + 0.246282,0.045448,-0.968132,0.246282,0.045448,-0.968132,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,-0.246287,-0.045448,0.968131,-0.246287,-0.045448,0.968131, + -0.246287,-0.045448,0.968131,-0.246287,-0.045448,0.968131,0.377190,0.912358,0.159152,0.377190,0.912358,0.159152, + 0.377190,0.912358,0.159152,0.377190,0.912358,0.159152,-0.890692,0.404439,-0.207598,-0.890692,0.404439,-0.207598, + -0.890692,0.404439,-0.207598,-0.890692,0.404439,-0.207598,-0.377160,-0.912350,-0.159277,-0.377160,-0.912350,-0.159277, + -0.377160,-0.912350,-0.159277,-0.377160,-0.912350,-0.159277,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,0.379099,0.912814,0.151836,0.379099,0.912814,0.151836, + 0.379099,0.912814,0.151836,0.379099,0.912814,0.151836,-0.379298,-0.912859,-0.151069,-0.379298,-0.912859,-0.151069, + -0.379298,-0.912859,-0.151069,-0.379298,-0.912859,-0.151069,-0.891474,0.403542,-0.205978,-0.891474,0.403542,-0.205978, + -0.891474,0.403542,-0.205978,-0.891474,0.403542,-0.205978,0.370659,0.910465,0.183480,0.370659,0.910465,0.183480, + 0.370659,0.910465,0.183480,0.370659,0.910465,0.183480,-0.371076,-0.910601,-0.181956,-0.371076,-0.910601,-0.181956, + -0.371076,-0.910601,-0.181956,-0.371076,-0.910601,-0.181956,-0.890829,0.405110,-0.205691,-0.890829,0.405110,-0.205691, + -0.890829,0.405110,-0.205691,-0.890829,0.405110,-0.205691,0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726, + 0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726,-0.890690,0.404443,-0.207596,-0.890690,0.404443,-0.207596, + -0.890690,0.404443,-0.207596,-0.890690,0.404443,-0.207596,-0.336273,-0.894527,-0.294519,-0.336273,-0.894527,-0.294519, + -0.336273,-0.894527,-0.294519,-0.336273,-0.894527,-0.294519,-0.873011,0.406288,-0.269780,-0.873011,0.406288,-0.269780, + -0.873011,0.406288,-0.269780,-0.873011,0.406288,-0.269780,0.381249,0.908569,0.170740,0.381249,0.908569,0.170740, + 0.381249,0.908569,0.170740,0.381249,0.908569,0.170740,0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596, + 0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.232337,0.013416,-0.972543,0.232337,0.013416,-0.972543, + 0.232337,0.013416,-0.972543,0.232337,0.013416,-0.972543,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.423695,-0.904036,0.056576,-0.423695,-0.904036,0.056576, + -0.423695,-0.904036,0.056576,-0.423695,-0.904036,0.056576,-0.890689,0.404447,-0.207596,-0.890689,0.404447,-0.207596, + -0.890689,0.404447,-0.207596,-0.890689,0.404447,-0.207596,0.376471,0.912173,0.161896,0.376471,0.912173,0.161896, + 0.376471,0.912173,0.161896,0.376471,0.912173,0.161896,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724, + -0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724,-0.369255,-0.896961,-0.243130,-0.369255,-0.896961,-0.243130, + -0.369255,-0.896961,-0.243130,-0.369255,-0.896961,-0.243130,-0.890688,0.404450,-0.207596,-0.890688,0.404450,-0.207596, + -0.890688,0.404450,-0.207596,-0.890688,0.404450,-0.207596,0.369255,0.896960,0.243132,0.369255,0.896960,0.243132, + 0.369255,0.896960,0.243132,0.369255,0.896960,0.243132,0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596, + 0.890688,-0.404448,0.207596,0.890688,-0.404448,0.207596,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726, + 0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.376470,-0.912173,-0.161895,-0.376470,-0.912173,-0.161895, + -0.376470,-0.912173,-0.161895,-0.376470,-0.912173,-0.161895,-0.890688,0.404449,-0.207597,-0.890688,0.404449,-0.207597, + -0.890688,0.404449,-0.207597,-0.890688,0.404449,-0.207597,0.414091,0.910229,-0.003298,0.414091,0.910229,-0.003298, + 0.414091,0.910229,-0.003298,0.414091,0.910229,-0.003298,0.890688,-0.404448,0.207595,0.890688,-0.404448,0.207595, + 0.890688,-0.404448,0.207595,0.890688,-0.404448,0.207595,0.296338,0.170236,-0.939789,0.296338,0.170236,-0.939789, + 0.296338,0.170236,-0.939789,0.296338,0.170236,-0.939789,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896, + -0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896,-0.890689,0.404447,-0.207596,-0.890689,0.404447,-0.207596, + -0.890689,0.404447,-0.207596,-0.890689,0.404447,-0.207596,-0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896, + -0.376470,-0.912173,-0.161896,-0.376470,-0.912173,-0.161896,0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597, + 0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,-0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725, + -0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,-0.890690,0.404446,-0.207595,-0.890690,0.404446,-0.207595, + -0.890690,0.404446,-0.207595,-0.890690,0.404446,-0.207595,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,0.312413,0.212802,-0.925804,0.312413,0.212802,-0.925804, + 0.312413,0.212802,-0.925804,0.312413,0.212802,-0.925804,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.890689,0.404448,-0.207594,-0.890689,0.404448,-0.207594, + -0.890689,0.404448,-0.207594,-0.890689,0.404448,-0.207594,0.405481,0.913249,0.039506,0.405481,0.913249,0.039506, + 0.405481,0.913249,0.039506,0.405481,0.913249,0.039506,-0.376471,-0.912174,-0.161892,-0.376471,-0.912174,-0.161892, + -0.376471,-0.912174,-0.161892,-0.376471,-0.912174,-0.161892,0.254842,0.066047,-0.964724,0.254842,0.066047,-0.964724, + 0.254842,0.066047,-0.964724,0.254842,0.066047,-0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.890688,0.404448,-0.207597,-0.890688,0.404448,-0.207597, + -0.890688,0.404448,-0.207597,-0.890688,0.404448,-0.207597,0.390693,0.914474,0.105336,0.390693,0.914474,0.105336, + 0.390693,0.914474,0.105336,0.390693,0.914474,0.105336,-0.360959,-0.906768,-0.217899,-0.360959,-0.906768,-0.217899, + -0.360959,-0.906768,-0.217899,-0.360959,-0.906768,-0.217899,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725, + 0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,-0.254834,-0.066047,0.964727,-0.254834,-0.066047,0.964727, + -0.254834,-0.066047,0.964727,-0.254834,-0.066047,0.964727,-0.898206,0.402190,-0.177396,-0.898206,0.402190,-0.177396, + -0.898206,0.402190,-0.177396,-0.898206,0.402190,-0.177396,0.367131,0.909234,0.196235,0.367131,0.909234,0.196235, + 0.367131,0.909234,0.196235,0.367131,0.909234,0.196235,-0.376468,-0.912174,-0.161896,-0.376468,-0.912174,-0.161896, + -0.376468,-0.912174,-0.161896,-0.376468,-0.912174,-0.161896,0.254846,0.066044,-0.964724,0.254846,0.066044,-0.964724, + 0.254846,0.066044,-0.964724,0.254846,0.066044,-0.964724,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597, + 0.890688,-0.404448,0.207597,0.890688,-0.404448,0.207597,-0.376472,-0.912172,-0.161898,-0.376472,-0.912172,-0.161898, + -0.376472,-0.912172,-0.161898,-0.376472,-0.912172,-0.161898,0.400611,0.914139,0.062131,0.400611,0.914139,0.062131, + 0.400611,0.914139,0.062131,0.400611,0.914139,0.062131,0.254843,0.066045,-0.964725,0.254843,0.066045,-0.964725, + 0.254843,0.066045,-0.964725,0.254843,0.066045,-0.964725,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726, + -0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598, + 0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598,-0.348522,-0.900688,-0.259411,-0.348522,-0.900688,-0.259411, + -0.348522,-0.900688,-0.259411,-0.348522,-0.900688,-0.259411,0.376469,0.912174,0.161896,0.376469,0.912174,0.161896, + 0.376469,0.912174,0.161896,0.376469,0.912174,0.161896,0.222097,-0.011324,-0.974959,0.222097,-0.011324,-0.974959, + 0.222097,-0.011324,-0.974959,0.222097,-0.011324,-0.974959,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,-0.403209,-0.913729,-0.050216,-0.403209,-0.913729,-0.050216, + -0.403209,-0.913729,-0.050216,-0.403209,-0.913729,-0.050216,0.404904,0.913383,0.042250,0.404904,0.913383,0.042250, + 0.404904,0.913383,0.042250,0.404904,0.913383,0.042250,0.254837,0.066044,-0.964726,0.254837,0.066044,-0.964726, + 0.254837,0.066044,-0.964726,0.254837,0.066044,-0.964726,-0.271167,-0.106140,0.956662,-0.271167,-0.106140,0.956662, + -0.271167,-0.106140,0.956662,-0.271167,-0.106140,0.956662,0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598, + 0.890688,-0.404447,0.207598,0.890688,-0.404447,0.207598,-0.290763,-0.857841,-0.423751,-0.290763,-0.857841,-0.423751, + -0.290763,-0.857841,-0.423751,-0.290763,-0.857841,-0.423751,0.390568,0.914466,0.105873,0.390568,0.914466,0.105873, + 0.390568,0.914466,0.105873,0.390568,0.914466,0.105873,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596, + 0.890689,-0.404447,0.207596,0.890689,-0.404447,0.207596,-0.376473,-0.912171,-0.161901,-0.376473,-0.912171,-0.161901, + -0.376473,-0.912171,-0.161901,-0.376473,-0.912171,-0.161901,0.376470,0.912174,0.161894,0.376470,0.912174,0.161894, + 0.376470,0.912174,0.161894,0.376470,0.912174,0.161894,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,0.376469,0.912174,0.161896,0.376469,0.912174,0.161896, + 0.376469,0.912174,0.161896,0.376469,0.912174,0.161896,-0.376464,-0.912176,-0.161896,-0.376464,-0.912176,-0.161896, + -0.376464,-0.912176,-0.161896,-0.376464,-0.912176,-0.161896,0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726, + 0.254838,0.066046,-0.964726,0.254838,0.066046,-0.964726,-0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726, + -0.254837,-0.066045,0.964726,-0.254837,-0.066045,0.964726,-0.890689,0.404445,-0.207598,-0.890689,0.404445,-0.207598, + -0.890689,0.404445,-0.207598,-0.890689,0.404445,-0.207598,0.390570,0.914465,0.105868,0.390570,0.914465,0.105868, + 0.390570,0.914465,0.105868,0.390570,0.914465,0.105868,-0.376467,-0.912175,-0.161893,-0.376467,-0.912175,-0.161893, + -0.376467,-0.912175,-0.161893,-0.376467,-0.912175,-0.161893,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.254834,-0.066046,0.964727,-0.254834,-0.066046,0.964727, + -0.254834,-0.066046,0.964727,-0.254834,-0.066046,0.964727,0.090349,0.769981,0.631637,0.090349,0.769981,0.631637, + 0.090349,0.769981,0.631637,0.090349,0.769981,0.631637,-0.472661,-0.782527,0.405269,-0.472661,-0.782527,0.405269, + -0.472661,-0.782527,0.405269,-0.472661,-0.782527,0.405269,0.911364,-0.410903,0.023955,0.911364,-0.410903,0.023955, + 0.911364,-0.410903,0.023955,0.911364,-0.410903,0.023955,-0.104603,-0.794150,-0.598652,-0.104603,-0.794150,-0.598652, + -0.104603,-0.794150,-0.598652,-0.104603,-0.794150,-0.598652,0.539498,0.784689,-0.305295,0.539498,0.784689,-0.305295, + 0.539498,0.784689,-0.305295,0.539498,0.784689,-0.305295,0.935664,-0.351924,0.026111,0.935664,-0.351924,0.026111, + 0.935664,-0.351924,0.026111,0.935664,-0.351924,0.026111,0.912692,-0.395163,0.104116,0.912692,-0.395163,0.104116, + 0.912692,-0.395163,0.104116,0.889269,-0.407718,0.207285,0.889269,-0.407718,0.207285,0.889269,-0.407718,0.207285, + 0.889269,-0.407718,0.207285,0.488541,0.855507,0.171569,0.488541,0.855507,0.171569,0.488541,0.855507,0.171569, + 0.488541,0.855507,0.171569,-0.245641,-0.043876,0.968367,-0.245641,-0.043876,0.968367,-0.245641,-0.043876,0.968367, + -0.245641,-0.043876,0.968367,-0.190392,-0.746534,-0.637524,-0.190392,-0.746534,-0.637524,-0.190392,-0.746534,-0.637524, + -0.190392,-0.746534,-0.637524,-0.052752,-0.153742,0.986702,-0.052752,-0.153742,0.986702,-0.052752,-0.153742,0.986702, + -0.052752,-0.153742,0.986702,0.889328,-0.405931,0.210511,0.889328,-0.405931,0.210511,0.889328,-0.405931,0.210511, + 0.889328,-0.405931,0.210511,0.452373,0.833814,-0.316406,0.452373,0.833814,-0.316406,0.452373,0.833814,-0.316406, + 0.452373,0.833814,-0.316406,0.890687,-0.404449,0.207599,0.890687,-0.404449,0.207599,0.890687,-0.404449,0.207599, + 0.890687,-0.404449,0.207599,-0.335063,-0.930611,-0.147295,-0.335063,-0.930611,-0.147295,-0.335063,-0.930611,-0.147295, + -0.335063,-0.930611,-0.147295,0.415447,0.894069,0.167461,0.415447,0.894069,0.167461,0.415447,0.894069,0.167461, + 0.415447,0.894069,0.167461,-0.909966,0.386994,-0.148991,-0.909966,0.386994,-0.148991,-0.909966,0.386994,-0.148991, + -0.909966,0.386994,-0.148991,0.910396,-0.385906,0.149182,0.910396,-0.385906,0.149182,0.910396,-0.385906,0.149182, + 0.910396,-0.385906,0.149182,0.238576,0.027143,-0.970744,0.238576,0.027143,-0.970744,0.238576,0.027143,-0.970744, + 0.238576,0.027143,-0.970744,0.890689,-0.404446,0.207598,0.890689,-0.404446,0.207598,0.890689,-0.404446,0.207598, + 0.890689,-0.404446,0.207598,-0.238476,-0.026893,0.970776,-0.238476,-0.026893,0.970776,-0.238476,-0.026893,0.970776, + -0.238476,-0.026893,0.970776,-0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897, + -0.376470,-0.912173,-0.161897,0.890690,-0.404443,0.207598,0.890690,-0.404443,0.207598,0.890690,-0.404443,0.207598, + 0.890690,-0.404443,0.207598,0.376471,0.912173,0.161896,0.376471,0.912173,0.161896,0.376471,0.912173,0.161896, + 0.376471,0.912173,0.161896,0.017095,-0.181852,0.983177,0.017095,-0.181852,0.983177,0.017095,-0.181852,0.983177, + 0.017095,-0.181852,0.983177,-0.119914,-0.988572,-0.091357,-0.119914,-0.988572,-0.091357,-0.119914,-0.988572,-0.091357, + -0.119914,-0.988572,-0.091357,-0.918363,0.384492,-0.093676,-0.918363,0.384492,-0.093676,-0.918363,0.384492,-0.093676, + -0.918363,0.384492,-0.093676,0.920252,-0.381488,0.087196,0.920252,-0.381488,0.087196,0.920252,-0.381488,0.087196, + 0.920252,-0.381488,0.087196,0.350716,0.923656,0.154458,0.350716,0.923656,0.154458,0.350716,0.923656,0.154458, + 0.350716,0.923656,0.154458,0.076044,-0.205156,0.975771,0.076044,-0.205156,0.975771,0.076044,-0.205156,0.975771, + 0.076044,-0.205156,0.975771,-0.473873,-0.866570,-0.156525,-0.473873,-0.866570,-0.156525,-0.473873,-0.866570,-0.156525, + -0.473873,-0.866570,-0.156525,-0.927979,0.371600,-0.027732,-0.927979,0.371600,-0.027732,-0.927979,0.371600,-0.027732, + -0.927979,0.371600,-0.027732,0.928669,-0.370404,0.019351,0.928669,-0.370404,0.019351,0.928669,-0.370404,0.019351, + 0.928669,-0.370404,0.019351,-0.924583,0.378837,-0.040355,-0.924583,0.378837,-0.040355,-0.924583,0.378837,-0.040355, + -0.924583,0.378837,-0.040355,0.196243,0.753013,0.628061,0.196243,0.753013,0.628061,0.196243,0.753013,0.628061, + 0.196243,0.753013,0.628061,0.737767,-0.578395,0.348079,0.737767,-0.578395,0.348079,0.737767,-0.578395,0.348079, + 0.737767,-0.578395,0.348079,-0.314427,-0.494124,0.810541,-0.314427,-0.494124,0.810541,-0.314427,-0.494124,0.810541, + -0.314427,-0.494124,0.810541,0.435831,0.718212,-0.542423,0.435831,0.718212,-0.542423,0.435831,0.718212,-0.542423, + 0.435831,0.718212,-0.542423,-0.338357,-0.930915,-0.137521,-0.338357,-0.930915,-0.137521,-0.338357,-0.930915,-0.137521, + -0.338357,-0.930915,-0.137521,-0.722616,0.180218,0.667344,-0.722616,0.180218,0.667344,-0.722616,0.180218,0.667344, + -0.722616,0.180218,0.667344,0.456357,0.855750,0.243782,0.456357,0.855750,0.243782,0.456357,0.855750,0.243782, + 0.456357,0.855750,0.243782,0.692853,-0.377151,0.614583,0.692853,-0.377151,0.614583,0.692853,-0.377151,0.614583, + 0.692853,-0.377151,0.614583,-0.692324,0.378465,-0.614371,-0.692324,0.378465,-0.614371,-0.692324,0.378465,-0.614371, + -0.692324,0.378465,-0.614371,-0.346925,-0.926383,-0.146485,-0.346925,-0.926383,-0.146485,-0.346925,-0.926383,-0.146485, + -0.346925,-0.926383,-0.146485,-0.714797,0.175239,0.677020,-0.714797,0.175239,0.677020,-0.714797,0.175239,0.677020, + -0.714797,0.175239,0.677020,0.448649,0.862133,0.235457,0.448649,0.862133,0.235457,0.448649,0.862133,0.235457, + 0.448649,0.862133,0.235457,0.700586,-0.380032,0.603949,0.700586,-0.380032,0.603949,0.700586,-0.380032,0.603949, + 0.700586,-0.380032,0.603949,-0.700207,0.380983,-0.603790,-0.700207,0.380983,-0.603790,-0.700207,0.380983,-0.603790, + -0.700207,0.380983,-0.603790,-0.189767,-0.980321,-0.054405,-0.189767,-0.980321,-0.054405,-0.189767,-0.980321,-0.054405, + -0.189767,-0.980321,-0.054405,-0.731763,0.184882,0.656005,-0.731763,0.184882,0.656005,-0.731763,0.184882,0.656005, + -0.731763,0.184882,0.656005,0.526924,0.807541,0.265009,0.526924,0.807541,0.265009,0.526924,0.807541,0.265009, + 0.526924,0.807541,0.265009,0.809023,-0.397438,0.433040,0.809023,-0.397438,0.433040,0.809023,-0.397438,0.433040, + 0.809023,-0.397438,0.433040,-0.728814,0.389113,-0.563402,-0.728814,0.389113,-0.563402,-0.728814,0.389113,-0.563402, + -0.728814,0.389113,-0.563402,-0.353133,-0.923265,-0.151261,-0.353133,-0.923265,-0.151261,-0.353133,-0.923265,-0.151261, + -0.353133,-0.923265,-0.151261,-0.713026,0.174155,0.679165,-0.713026,0.174155,0.679165,-0.713026,0.174155,0.679165, + -0.713026,0.174155,0.679165,0.443898,0.866035,0.230084,0.443898,0.866035,0.230084,0.443898,0.866035,0.230084, + 0.443898,0.866035,0.230084,0.702794,-0.379391,0.601783,0.702794,-0.379391,0.601783,0.702794,-0.379391,0.601783, + 0.702794,-0.379391,0.601783,-0.702415,0.380372,-0.601606,-0.702415,0.380372,-0.601606,-0.702415,0.380372,-0.601606, + -0.702415,0.380372,-0.601606,-0.354655,-0.922898,-0.149931,-0.354655,-0.922898,-0.149931,-0.354655,-0.922898,-0.149931, + -0.354655,-0.922898,-0.149931,-0.755863,0.201834,0.622844,-0.755863,0.201834,0.622844,-0.755863,0.201834,0.622844, + -0.755863,0.201834,0.622844,0.437885,0.867680,0.235347,0.437885,0.867680,0.235347,0.437885,0.867680,0.235347, + 0.437885,0.867680,0.235347,0.654459,-0.369710,0.659544,0.654459,-0.369710,0.659544,0.654459,-0.369710,0.659544, + 0.654459,-0.369710,0.659544,-0.654074,0.370671,-0.659387,-0.654074,0.370671,-0.659387,-0.654074,0.370671,-0.659387, + -0.654074,0.370671,-0.659387,0.100414,0.135839,-0.985629,0.100414,0.135839,-0.985629,0.100414,0.135839,-0.985629, + 0.100414,0.135839,-0.985629,-0.890378,0.411907,-0.193802,-0.890378,0.411907,-0.193802,-0.890378,0.411907,-0.193802, + -0.890378,0.411907,-0.193802,0.379884,0.912982,0.148834,0.379884,0.912982,0.148834,0.379884,0.912982,0.148834, + 0.379884,0.912982,0.148834,0.874987,-0.421048,0.238990,0.874987,-0.421048,0.238990,0.874987,-0.421048,0.238990, + 0.874987,-0.421048,0.238990,-0.107481,-0.133108,0.985256,-0.107481,-0.133108,0.985256,-0.107481,-0.133108,0.985256, + -0.107481,-0.133108,0.985256,0.845389,-0.409734,0.342689,0.845389,-0.409734,0.342689,0.845389,-0.409734,0.342689, + 0.845389,-0.409734,0.342689,0.376467,0.912175,0.161895,0.376467,0.912175,0.161895,0.376467,0.912175,0.161895, + 0.376467,0.912175,0.161895,-0.845391,0.409729,-0.342690,-0.845391,0.409729,-0.342690,-0.845391,0.409729,-0.342690, + -0.845391,0.409729,-0.342690,-0.376469,-0.912174,-0.161896,-0.376469,-0.912174,-0.161896,-0.376469,-0.912174,-0.161896, + -0.376469,-0.912174,-0.161896,0.845930,-0.409719,0.341369,0.845930,-0.409719,0.341369,0.845930,-0.409719,0.341369, + 0.845930,-0.409719,0.341369,0.376470,0.912173,0.161896,0.376470,0.912173,0.161896,0.376470,0.912173,0.161896, + 0.376470,0.912173,0.161896,-0.845931,0.409716,-0.341369,-0.845931,0.409716,-0.341369,-0.845931,0.409716,-0.341369, + -0.845931,0.409716,-0.341369,-0.376471,-0.912173,-0.161897,-0.376471,-0.912173,-0.161897,-0.376471,-0.912173,-0.161897, + -0.376471,-0.912173,-0.161897,-0.468916,-0.883242,0.001484,-0.468916,-0.883242,0.001484,-0.468916,-0.883242,0.001484, + -0.468916,-0.883242,0.001484,0.323168,-0.183038,0.928471,0.323168,-0.183038,0.928471,0.323168,-0.183038,0.928471, + 0.323168,-0.183038,0.928471,0.468914,0.883243,-0.001487,0.468914,0.883243,-0.001487,0.468914,0.883243,-0.001487, + 0.468914,0.883243,-0.001487,-0.323167,0.183034,-0.928473,-0.323167,0.183034,-0.928473,-0.323167,0.183034,-0.928473, + -0.323167,0.183034,-0.928473,-0.180496,-0.912159,-0.367951,-0.180496,-0.912159,-0.367951,-0.180496,-0.912159,-0.367951, + -0.180496,-0.912159,-0.367951,0.274467,-0.373020,0.886298,0.274467,-0.373020,0.886298,0.274467,-0.373020,0.886298, + 0.274467,-0.373020,0.886298,0.180496,0.912158,0.367952,0.180496,0.912158,0.367952,0.180496,0.912158,0.367952, + 0.180496,0.912158,0.367952,-0.274463,0.373017,-0.886301,-0.274463,0.373017,-0.886301,-0.274463,0.373017,-0.886301, + -0.274463,0.373017,-0.886301,0.436083,-0.031616,-0.899351,0.436083,-0.031616,-0.899351,0.436083,-0.031616,-0.899351, + 0.436083,-0.031616,-0.899351,0.409870,0.895862,0.171575,0.409870,0.895862,0.171575,0.409870,0.895862,0.171575, + 0.409870,0.895862,0.171575,-0.821531,0.407240,-0.399052,-0.821531,0.407240,-0.399052,-0.821531,0.407240,-0.399052, + -0.821531,0.407240,-0.399052,-0.385239,-0.908307,-0.163003,-0.385239,-0.908307,-0.163003,-0.385239,-0.908307,-0.163003, + -0.385239,-0.908307,-0.163003,0.717816,-0.401225,0.568998,0.717816,-0.401225,0.568998,0.717816,-0.401225,0.568998, + 0.717816,-0.401225,0.568998,-0.425704,0.027199,0.904454,-0.425704,0.027199,0.904454,-0.425704,0.027199,0.904454, + -0.425704,0.027199,0.904454,0.431065,-0.013669,-0.902217,0.431065,-0.013669,-0.902217,0.431065,-0.013669,-0.902217, + 0.431065,-0.013669,-0.902217,-0.795986,0.443220,-0.412265,-0.795986,0.443220,-0.412265,-0.795986,0.443220,-0.412265, + -0.795986,0.443220,-0.412265,-0.390583,-0.906789,-0.158679,-0.390583,-0.906789,-0.158679,-0.390583,-0.906789,-0.158679, + -0.390583,-0.906789,-0.158679,0.443589,-0.020412,-0.895998,0.443589,-0.020412,-0.895998,0.443589,-0.020412,-0.895998, + 0.443589,-0.020412,-0.895998,0.304840,0.890325,0.338222,0.304840,0.890325,0.338222,0.304840,0.890325,0.338222, + 0.304840,0.890325,0.338222,-0.426755,0.025348,0.904012,-0.426755,0.025348,0.904012,-0.426755,0.025348,0.904012, + -0.426755,0.025348,0.904012,-0.795986,0.443222,-0.412263,-0.795986,0.443222,-0.412263,-0.795986,0.443222,-0.412263, + -0.795986,0.443222,-0.412263,-0.326055,-0.936916,-0.125999,-0.326055,-0.936916,-0.125999,-0.326055,-0.936916,-0.125999, + -0.326055,-0.936916,-0.125999,0.239658,0.922153,0.303640,0.239658,0.922153,0.303640,0.239658,0.922153,0.303640, + 0.239658,0.922153,0.303640,-0.440099,0.032397,0.897365,-0.440099,0.032397,0.897365,-0.440099,0.032397,0.897365, + -0.440099,0.032397,0.897365,0.422259,-0.018832,-0.906280,0.422259,-0.018832,-0.906280,0.422259,-0.018832,-0.906280, + 0.422259,-0.018832,-0.906280,0.870457,-0.409023,0.273869,0.870457,-0.409023,0.273869,0.870457,-0.409023,0.273869, + 0.870457,-0.409023,0.273869,-0.414731,0.016194,0.909800,-0.414731,0.016194,0.909800,-0.414731,0.016194,0.909800, + -0.414731,0.016194,0.909800,-0.488069,0.337961,-0.804718,-0.488069,0.337961,-0.804718,-0.488069,0.337961,-0.804718, + -0.488069,0.337961,-0.804718,-0.870606,0.408662,-0.273933,-0.870606,0.408662,-0.273933,-0.870606,0.408662,-0.273933, + -0.870606,0.408662,-0.273933,-0.376465,-0.912176,-0.161893,-0.376465,-0.912176,-0.161893,-0.376465,-0.912176,-0.161893, + -0.376465,-0.912176,-0.161893,0.376471,0.912173,0.161896,0.376471,0.912173,0.161896,0.376471,0.912173,0.161896, + 0.376471,0.912173,0.161896,0.925444,-0.336496,-0.174139,0.925444,-0.336496,-0.174139,0.925444,-0.336496,-0.174139, + 0.925444,-0.336496,-0.174139,0.019514,-0.219406,0.975438,0.019514,-0.219406,0.975438,0.019514,-0.219406,0.975438, + 0.019514,-0.219406,0.975438,-0.711335,0.193020,0.675830,-0.711335,0.193020,0.675830,-0.711335,0.193020,0.675830, + -0.711335,0.193020,0.675830,-0.263017,0.253628,-0.930857,-0.263017,0.253628,-0.930857,-0.263017,0.253628,-0.930857, + -0.263017,0.253628,-0.930857,-0.012050,0.210778,-0.977460,-0.012050,0.210778,-0.977460,-0.012050,0.210778,-0.977460, + -0.012050,0.210778,-0.977460,0.720734,-0.198761,-0.664106,0.720734,-0.198761,-0.664106,0.720734,-0.198761,-0.664106, + 0.720734,-0.198761,-0.664106,-0.382544,-0.913319,-0.139670,-0.382544,-0.913319,-0.139670,-0.382544,-0.913319,-0.139670, + -0.382544,-0.913319,-0.139670,-0.897202,0.402530,-0.181655,-0.897202,0.402530,-0.181655,-0.897202,0.402530,-0.181655, + -0.897202,0.402530,-0.181655,0.382543,0.913320,0.139670,0.382543,0.913320,0.139670,0.382543,0.913320,0.139670, + 0.382543,0.913320,0.139670,0.897202,-0.402530,0.181655,0.897202,-0.402530,0.181655,0.897202,-0.402530,0.181655, + 0.897202,-0.402530,0.181655,0.147817,0.742652,0.653161,0.147817,0.742652,0.653161,0.147817,0.742652,0.653161, + 0.147817,0.742652,0.653161,-0.541907,-0.756760,0.365583,-0.541907,-0.756760,0.365583,-0.541907,-0.756760,0.365583, + -0.541907,-0.756760,0.365583,-0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897,-0.376470,-0.912173,-0.161897, + -0.376470,-0.912173,-0.161897,0.376470,0.912173,0.161895,0.376470,0.912173,0.161895,0.376470,0.912173,0.161895, + 0.376470,0.912173,0.161895,0.272125,0.058160,-0.960503,0.272125,0.058160,-0.960503,0.272125,0.058160,-0.960503, + 0.272125,0.058160,-0.960503,-0.274988,-0.056851,0.959765,-0.274988,-0.056851,0.959765,-0.274988,-0.056851,0.959765, + -0.274988,-0.056851,0.959765,-0.373045,-0.913768,-0.160826,-0.373045,-0.913768,-0.160826,-0.373045,-0.913768,-0.160826, + -0.373045,-0.913768,-0.160826,0.376471,0.912173,0.161895,0.376471,0.912173,0.161895,0.376471,0.912173,0.161895, + 0.376471,0.912173,0.161895,0.270892,0.058729,-0.960817,0.270892,0.058729,-0.960817,0.270892,0.058729,-0.960817, + 0.270892,0.058729,-0.960817,-0.271031,-0.058663,0.960781,-0.271031,-0.058663,0.960781,-0.271031,-0.058663,0.960781, + -0.271031,-0.058663,0.960781,-0.376470,-0.912173,-0.161898,-0.376470,-0.912173,-0.161898,-0.376470,-0.912173,-0.161898, + -0.376470,-0.912173,-0.161898,0.376470,0.912174,0.161893,0.376470,0.912174,0.161893,0.376470,0.912174,0.161893, + 0.376470,0.912174,0.161893,0.262263,0.062672,-0.962959,0.262263,0.062672,-0.962959,0.262263,0.062672,-0.962959, + 0.262263,0.062672,-0.962959,0.268048,0.098393,-0.958368,0.268048,0.098393,-0.958368,0.268048,0.098393,-0.958368, + 0.268048,0.098393,-0.958368,0.922528,-0.382918,0.048114,0.922528,-0.382918,0.048114,0.922528,-0.382918,0.048114, + 0.922528,-0.382918,0.048114,0.260094,0.078817,-0.962361,0.260094,0.078817,-0.962361,0.260094,0.078817,-0.962361, + 0.260094,0.078817,-0.962361,-0.884947,0.405614,-0.228793,-0.884947,0.405614,-0.228793,-0.884947,0.405614,-0.228793, + -0.884947,0.405614,-0.228793,-0.363777,-0.840749,0.401008,-0.363777,-0.840749,0.401008,-0.363777,-0.840749,0.401008, + -0.363777,-0.840749,0.401008,-0.818601,0.434940,-0.375127,-0.818601,0.434940,-0.375127,-0.818601,0.434940,-0.375127, + -0.818601,0.434940,-0.375127,0.361702,0.859034,-0.362260,0.361702,0.859034,-0.362260,0.361702,0.859034,-0.362260, + 0.361702,0.859034,-0.362260,-0.287939,-0.727790,-0.622425,-0.287939,-0.727790,-0.622425,-0.287939,-0.727790,-0.622425, + -0.287939,-0.727790,-0.622425,-0.817947,0.405644,-0.407940,-0.817947,0.405644,-0.407940,-0.817947,0.405644,-0.407940, + -0.817947,0.405644,-0.407940,-0.822609,0.465108,-0.327091,-0.822609,0.465108,-0.327091,-0.822609,0.465108,-0.327091, + -0.767276,0.380517,-0.516231,-0.767276,0.380517,-0.516231,-0.767276,0.380517,-0.516231,-0.767276,0.380517,-0.516231, + -0.336981,-0.032323,0.940957,-0.336981,-0.032323,0.940957,-0.336981,-0.032323,0.940957,-0.336981,-0.032323,0.940957, + 0.511402,0.795730,-0.324472,0.511402,0.795730,-0.324472,0.511402,0.795730,-0.324472,0.511402,0.795730,-0.324472, + -0.927520,0.231908,-0.293130,-0.927520,0.231908,-0.293130,-0.927520,0.231908,-0.293130,-0.927520,0.231908,-0.293130, + -0.189857,-0.779857,-0.596471,-0.189857,-0.779857,-0.596471,-0.189857,-0.779857,-0.596471,-0.189857,-0.779857,-0.596471, + -0.843306,0.410000,-0.347471,-0.843306,0.410000,-0.347471,-0.843306,0.410000,-0.347471,-0.843306,0.410000,-0.347471, + 0.316394,0.081490,-0.945121,0.316394,0.081490,-0.945121,0.316394,0.081490,-0.945121,0.316394,0.081490,-0.945121, + -0.830015,0.504684,-0.237422,-0.830015,0.504684,-0.237422,-0.830015,0.504684,-0.237422,-0.830015,0.504684,-0.237422, + -0.316498,-0.081742,0.945065,-0.316498,-0.081742,0.945065,-0.316498,-0.081742,0.945065,-0.316498,-0.081742,0.945065, + 0.413110,0.894685,0.169941,0.413110,0.894685,0.169941,0.413110,0.894685,0.169941,0.413110,0.894685,0.169941, + -0.849777,0.445808,-0.281309,-0.849777,0.445808,-0.281309,-0.849777,0.445808,-0.281309,-0.849777,0.445808,-0.281309, + -0.413112,-0.894684,-0.169939,-0.413112,-0.894684,-0.169939,-0.413112,-0.894684,-0.169939,-0.413112,-0.894684,-0.169939, + 0.263053,0.691771,0.672499,0.263053,0.691771,0.672499,0.263053,0.691771,0.672499,0.263053,0.691771,0.672499, + 0.889649,-0.428164,0.158745,0.889649,-0.428164,0.158745,0.889649,-0.428164,0.158745,0.889649,-0.428164,0.158745, + -0.383162,-0.914575,-0.129378,-0.383162,-0.914575,-0.129378,-0.383162,-0.914575,-0.129378,-0.383162,-0.914575,-0.129378, + 0.384667,0.914979,0.121842,0.384667,0.914979,0.121842,0.384667,0.914979,0.121842,0.384667,0.914979,0.121842, + 0.139012,-0.076280,-0.987348,0.139012,-0.076280,-0.987348,0.139012,-0.076280,-0.987348,0.139012,-0.076280,-0.987348, + -0.236213,-0.153835,0.959447,-0.236213,-0.153835,0.959447,-0.236213,-0.153835,0.959447,-0.236213,-0.153835,0.959447, + 0.912431,-0.373021,0.168298,0.912431,-0.373021,0.168298,0.912431,-0.373021,0.168298,0.912431,-0.373021,0.168298, + 0.367911,0.908086,0.200054,0.367911,0.908086,0.200054,0.367911,0.908086,0.200054,0.367911,0.908086,0.200054, + -0.370458,-0.909429,-0.188945,-0.370458,-0.909429,-0.188945,-0.370458,-0.909429,-0.188945,-0.370458,-0.909429,-0.188945, + -0.152022,0.046901,0.987264,-0.152022,0.046901,0.987264,-0.152022,0.046901,0.987264,-0.152022,0.046901,0.987264, + 0.247714,0.182879,-0.951416,0.247714,0.182879,-0.951416,0.247714,0.182879,-0.951416,0.247714,0.182879,-0.951416, + 0.889431,-0.428551,0.158920,0.889431,-0.428551,0.158920,0.889431,-0.428551,0.158920,0.889431,-0.428551,0.158920, + -0.385279,-0.915123,-0.118782,-0.385279,-0.915123,-0.118782,-0.385279,-0.915123,-0.118782,-0.385279,-0.915123,-0.118782, + 0.386983,0.915507,0.109962,0.386983,0.915507,0.109962,0.386983,0.915507,0.109962,0.386983,0.915507,0.109962, + 0.122990,-0.111914,-0.986077,0.122990,-0.111914,-0.986077,0.122990,-0.111914,-0.986077,0.122990,-0.111914,-0.986077, + -0.223120,-0.121239,0.967222,-0.223120,-0.121239,0.967222,-0.223120,-0.121239,0.967222,-0.223120,-0.121239,0.967222, + 0.912666,-0.372605,0.167950,0.912666,-0.372605,0.167950,0.912666,-0.372605,0.167950,0.912666,-0.372605,0.167950, + 0.371132,0.909765,0.185978,0.371132,0.909765,0.185978,0.371132,0.909765,0.185978,0.371132,0.909765,0.185978, + -0.373494,-0.910902,-0.175387,-0.373494,-0.910902,-0.175387,-0.373494,-0.910902,-0.175387,-0.373494,-0.910902,-0.175387, + -0.147288,0.057692,0.987410,-0.147288,0.057692,0.987410,-0.147288,0.057692,0.987410,-0.147288,0.057692,0.987410, + 0.244742,0.175297,-0.953610,0.244742,0.175297,-0.953610,0.244742,0.175297,-0.953610,0.244742,0.175297,-0.953610, + -0.890689,0.404448,-0.207596,-0.890689,0.404448,-0.207596,-0.890689,0.404448,-0.207596,-0.890689,0.404448,-0.207596, + -0.376462,-0.912177,-0.161894,-0.376462,-0.912177,-0.161894,-0.376462,-0.912177,-0.161894,-0.376462,-0.912177,-0.161894, + -0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597,-0.890690,0.404444,-0.207597, + -0.269636,-0.013629,0.962866,-0.269636,-0.013629,0.962866,-0.269636,-0.013629,0.962866,-0.269636,-0.013629,0.962866, + -0.361675,-0.907074,-0.215425,-0.361675,-0.907074,-0.215425,-0.361675,-0.907074,-0.215425,-0.361675,-0.907074,-0.215425, + 0.378482,0.912529,0.155057,0.378482,0.912529,0.155057,0.378482,0.912529,0.155057,0.378482,0.912529,0.155057, + 0.270953,0.105607,-0.956782,0.270953,0.105607,-0.956782,0.270953,0.105607,-0.956782,0.270953,0.105607,-0.956782, + -0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726, + 0.391529,0.914514,0.101828,0.391529,0.914514,0.101828,0.391529,0.914514,0.101828,0.391529,0.914514,0.101828, + -0.891777,0.404014,-0.203733,-0.891777,0.404014,-0.203733,-0.891777,0.404014,-0.203733,-0.360366,-0.908611,-0.211100, + -0.360366,-0.908611,-0.211100,-0.360366,-0.908611,-0.211100,-0.360366,-0.908611,-0.211100,-0.865687,0.436146,-0.245687, + -0.865687,0.436146,-0.245687,-0.865687,0.436146,-0.245687,-0.865687,0.436146,-0.245687,0.365703,0.909552,0.197427, + 0.365703,0.909552,0.197427,0.365703,0.909552,0.197427,0.365703,0.909552,0.197427,-0.362962,-0.908833,-0.205625, + -0.362962,-0.908833,-0.205625,-0.362962,-0.908833,-0.205625,-0.362962,-0.908833,-0.205625,0.372748,0.236402,-0.897314, + 0.372748,0.236402,-0.897314,0.372748,0.236402,-0.897314,0.372748,0.236402,-0.897314,-0.280074,0.002120,0.959976, + -0.280074,0.002120,0.959976,-0.280074,0.002120,0.959976,-0.280074,0.002120,0.959976,-0.889624,0.377669,-0.256778, + -0.889624,0.377669,-0.256778,-0.889624,0.377669,-0.256778,-0.889624,0.377669,-0.256778,-0.383503,-0.913014,-0.139035, + -0.383503,-0.913014,-0.139035,-0.383503,-0.913014,-0.139035,-0.383503,-0.913014,-0.139035,0.380419,0.912716,0.149101, + 0.380419,0.912716,0.149101,0.380419,0.912716,0.149101,0.380419,0.912716,0.149101,-0.357215,-0.192880,0.913890, + -0.357215,-0.192880,0.913890,-0.357215,-0.192880,0.913890,-0.357215,-0.192880,0.913890,0.260455,-0.047160,-0.964334, + 0.260455,-0.047160,-0.964334,0.260455,-0.047160,-0.964334,0.260455,-0.047160,-0.964334,-0.885443,0.407506,-0.223450, + -0.885443,0.407506,-0.223450,-0.885443,0.407506,-0.223450,-0.885443,0.407506,-0.223450,0.388190,0.913708,0.120191, + 0.388190,0.913708,0.120191,0.388190,0.913708,0.120191,0.388190,0.913708,0.120191,-0.382915,-0.914360,-0.131610, + -0.382915,-0.914360,-0.131610,-0.382915,-0.914360,-0.131610,-0.382915,-0.914360,-0.131610,0.311148,0.137617,-0.940345, + 0.311148,0.137617,-0.940345,0.311148,0.137617,-0.940345,0.311148,0.137617,-0.940345,-0.265016,-0.023262,0.963964, + -0.265016,-0.023262,0.963964,-0.265016,-0.023262,0.963964,-0.265016,-0.023262,0.963964,-0.905783,0.353072,-0.234300, + -0.905783,0.353072,-0.234300,-0.905783,0.353072,-0.234300,-0.905783,0.353072,-0.234300,-0.358742,-0.908145,-0.215815, + -0.358742,-0.908145,-0.215815,-0.358742,-0.908145,-0.215815,-0.358742,-0.908145,-0.215815,0.382805,0.913114,0.140301, + 0.382805,0.913114,0.140301,0.382805,0.913114,0.140301,0.382805,0.913114,0.140301,-0.270517,-0.015676,0.962588, + -0.270517,-0.015676,0.962588,-0.270517,-0.015676,0.962588,-0.270517,-0.015676,0.962588,0.299560,0.044211,-0.953053, + 0.299560,0.044211,-0.953053,0.299560,0.044211,-0.953053,0.299560,0.044211,-0.953053,-0.318446,-0.932811,-0.168687, + -0.318446,-0.932811,-0.168687,-0.318446,-0.932811,-0.168687,-0.318446,-0.932811,-0.168687,-0.297564,-0.075180,0.951737, + -0.297564,-0.075180,0.951737,-0.297564,-0.075180,0.951737,-0.297564,-0.075180,0.951737,0.183062,0.126270,-0.974959, + 0.183062,0.126270,-0.974959,0.183062,0.126270,-0.974959,0.183062,0.126270,-0.974959,0.887024,-0.403898,0.223729, + 0.887024,-0.403898,0.223729,0.887024,-0.403898,0.223729,0.887024,-0.403898,0.223729,-0.889637,0.404766,-0.211449, + -0.889637,0.404766,-0.211449,-0.889637,0.404766,-0.211449,-0.889637,0.404766,-0.211449,-0.373888,-0.909919,-0.179596, + -0.373888,-0.909919,-0.179596,-0.373888,-0.909919,-0.179596,-0.373888,-0.909919,-0.179596,-0.377381,-0.912522,-0.157756, + -0.377381,-0.912522,-0.157756,-0.377381,-0.912522,-0.157756,-0.883683,0.406035,-0.232894,-0.883683,0.406035,-0.232894, + -0.883683,0.406035,-0.232894,-0.883683,0.406035,-0.232894,-0.254838,-0.066047,0.964726,-0.254838,-0.066047,0.964726, + -0.254838,-0.066047,0.964726,-0.254838,-0.066047,0.964726,0.215912,0.083552,-0.972831,0.215912,0.083552,-0.972831, + 0.215912,0.083552,-0.972831,0.215912,0.083552,-0.972831,0.274808,0.112110,-0.954941,0.274808,0.112110,-0.954941, + 0.274808,0.112110,-0.954941,0.274808,0.112110,-0.954941,0.901760,-0.400857,0.161689,0.901760,-0.400857,0.161689, + 0.901760,-0.400857,0.161689,0.901760,-0.400857,0.161689,-0.377507,-0.912438,-0.157942,-0.377507,-0.912438,-0.157942, + -0.377507,-0.912438,-0.157942,-0.304906,-0.080677,0.948959,-0.304906,-0.080677,0.948959,-0.304906,-0.080677,0.948959, + -0.304906,-0.080677,0.948959,-0.888766,0.405107,-0.214436,-0.888766,0.405107,-0.214436,-0.888766,0.405107,-0.214436, + -0.888766,0.405107,-0.214436,0.903710,-0.398013,0.157779,0.903710,-0.398013,0.157779,0.903710,-0.398013,0.157779, + 0.903710,-0.398013,0.157779,-0.318444,-0.932812,-0.168684,-0.318444,-0.932812,-0.168684,-0.318444,-0.932812,-0.168684, + -0.318444,-0.932812,-0.168684,-0.297563,-0.075186,0.951737,-0.297563,-0.075186,0.951737,-0.297563,-0.075186,0.951737, + -0.297563,-0.075186,0.951737,0.183053,0.126266,-0.974961,0.183053,0.126266,-0.974961,0.183053,0.126266,-0.974961, + 0.183053,0.126266,-0.974961,0.887029,-0.403893,0.223718,0.887029,-0.403893,0.223718,0.887029,-0.403893,0.223718, + 0.887029,-0.403893,0.223718,-0.889636,0.404774,-0.211439,-0.889636,0.404774,-0.211439,-0.889636,0.404774,-0.211439, + -0.889636,0.404774,-0.211439,-0.373889,-0.909919,-0.179596,-0.373889,-0.909919,-0.179596,-0.373889,-0.909919,-0.179596, + -0.373889,-0.909919,-0.179596,-0.377380,-0.912523,-0.157756,-0.377380,-0.912523,-0.157756,-0.377380,-0.912523,-0.157756, + -0.883680,0.406041,-0.232894,-0.883680,0.406041,-0.232894,-0.883680,0.406041,-0.232894,-0.883680,0.406041,-0.232894, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + 0.215910,0.083553,-0.972832,0.215910,0.083553,-0.972832,0.215910,0.083553,-0.972832,0.215910,0.083553,-0.972832, + 0.274808,0.112110,-0.954941,0.274808,0.112110,-0.954941,0.274808,0.112110,-0.954941,0.274808,0.112110,-0.954941, + 0.901756,-0.400865,0.161687,0.901756,-0.400865,0.161687,0.901756,-0.400865,0.161687,0.901756,-0.400865,0.161687, + -0.377507,-0.912438,-0.157944,-0.377507,-0.912438,-0.157944,-0.377507,-0.912438,-0.157944,-0.304907,-0.080685,0.948958, + -0.304907,-0.080685,0.948958,-0.304907,-0.080685,0.948958,-0.304907,-0.080685,0.948958,-0.888763,0.405110,-0.214441, + -0.888763,0.405110,-0.214441,-0.888763,0.405110,-0.214441,-0.888763,0.405110,-0.214441,0.903711,-0.398013,0.157775, + 0.903711,-0.398013,0.157775,0.903711,-0.398013,0.157775,0.903711,-0.398013,0.157775,-0.318444,-0.932813,-0.168684, + -0.318444,-0.932813,-0.168684,-0.318444,-0.932813,-0.168684,-0.318444,-0.932813,-0.168684,-0.297568,-0.075186,0.951735, + -0.297568,-0.075186,0.951735,-0.297568,-0.075186,0.951735,-0.297568,-0.075186,0.951735,0.183059,0.126274,-0.974959, + 0.183059,0.126274,-0.974959,0.183059,0.126274,-0.974959,0.183059,0.126274,-0.974959,0.887030,-0.403888,0.223722, + 0.887030,-0.403888,0.223722,0.887030,-0.403888,0.223722,0.887030,-0.403888,0.223722,-0.889641,0.404760,-0.211441, + -0.889641,0.404760,-0.211441,-0.889641,0.404760,-0.211441,-0.889641,0.404760,-0.211441,-0.373889,-0.909919,-0.179596, + -0.373889,-0.909919,-0.179596,-0.373889,-0.909919,-0.179596,-0.373889,-0.909919,-0.179596,-0.377379,-0.912523,-0.157756, + -0.377379,-0.912523,-0.157756,-0.377379,-0.912523,-0.157756,-0.883681,0.406040,-0.232894,-0.883681,0.406040,-0.232894, + -0.883681,0.406040,-0.232894,-0.883681,0.406040,-0.232894,-0.254842,-0.066049,0.964724,-0.254842,-0.066049,0.964724, + -0.254842,-0.066049,0.964724,-0.254842,-0.066049,0.964724,0.215909,0.083551,-0.972832,0.215909,0.083551,-0.972832, + 0.215909,0.083551,-0.972832,0.215909,0.083551,-0.972832,0.274800,0.112118,-0.954942,0.274800,0.112118,-0.954942, + 0.274800,0.112118,-0.954942,0.274800,0.112118,-0.954942,0.901759,-0.400859,0.161689,0.901759,-0.400859,0.161689, + 0.901759,-0.400859,0.161689,0.901759,-0.400859,0.161689,-0.377506,-0.912438,-0.157943,-0.377506,-0.912438,-0.157943, + -0.377506,-0.912438,-0.157943,-0.304917,-0.080689,0.948955,-0.304917,-0.080689,0.948955,-0.304917,-0.080689,0.948955, + -0.304917,-0.080689,0.948955,-0.888762,0.405113,-0.214442,-0.888762,0.405113,-0.214442,-0.888762,0.405113,-0.214442, + -0.888762,0.405113,-0.214442,0.903712,-0.398007,0.157781,0.903712,-0.398007,0.157781,0.903712,-0.398007,0.157781, + 0.903712,-0.398007,0.157781,0.328624,0.935451,0.130148,0.328624,0.935451,0.130148,0.328624,0.935451,0.130148, + 0.328624,0.935451,0.130148,-0.211596,-0.056764,0.975707,-0.211596,-0.056764,0.975707,-0.211596,-0.056764,0.975707, + -0.211596,-0.056764,0.975707,0.324374,0.005230,-0.945915,0.324374,0.005230,-0.945915,0.324374,0.005230,-0.945915, + 0.324374,0.005230,-0.945915,-0.895418,0.401712,-0.191974,-0.895418,0.401712,-0.191974,-0.895418,0.401712,-0.191974, + -0.895418,0.401712,-0.191974,0.891680,-0.404231,0.203728,0.891680,-0.404231,0.203728,0.891680,-0.404231,0.203728, + 0.891680,-0.404231,0.203728,0.383002,0.912281,0.145093,0.383002,0.912281,0.145093,0.383002,0.912281,0.145093, + 0.383002,0.912281,0.145093,0.375213,0.911962,0.165954,0.375213,0.911962,0.165954,0.375213,0.911962,0.165954, + 0.897085,-0.402564,0.182157,0.897085,-0.402564,0.182157,0.897085,-0.402564,0.182157,0.897085,-0.402564,0.182157, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + 0.293294,0.048415,-0.954796,0.293294,0.048415,-0.954796,0.293294,0.048415,-0.954796,0.293294,0.048415,-0.954796, + 0.234205,0.019809,-0.971985,0.234205,0.019809,-0.971985,0.234205,0.019809,-0.971985,0.234205,0.019809,-0.971985, + -0.877626,0.407115,-0.253041,-0.877626,0.407115,-0.253041,-0.877626,0.407115,-0.253041,-0.877626,0.407115,-0.253041, + 0.375418,0.911898,0.165845,0.375418,0.911898,0.165845,0.375418,0.911898,0.165845,-0.204017,-0.051209,0.977627, + -0.204017,-0.051209,0.977627,-0.204017,-0.051209,0.977627,-0.204017,-0.051209,0.977627,0.892403,-0.404164,0.200671, + 0.892403,-0.404164,0.200671,0.892403,-0.404164,0.200671,0.892403,-0.404164,0.200671,-0.877306,0.404853,-0.257736, + -0.877306,0.404853,-0.257736,-0.877306,0.404853,-0.257736,-0.877306,0.404853,-0.257736,0.841910,-0.409785,0.351089, + 0.841910,-0.409785,0.351089,0.841910,-0.409785,0.351089,0.841910,-0.409785,0.351089,0.379885,0.912982,0.148834, + 0.379885,0.912982,0.148834,0.379885,0.912982,0.148834,0.379885,0.912982,0.148834,0.877181,-0.407192,0.254457, + 0.877181,-0.407192,0.254457,0.877181,-0.407192,0.254457,0.877181,-0.407192,0.254457,-0.379881,-0.912983,-0.148833, + -0.379881,-0.912983,-0.148833,-0.379881,-0.912983,-0.148833,-0.379881,-0.912983,-0.148833,-0.877182,0.407188,-0.254458, + -0.877182,0.407188,-0.254458,-0.877182,0.407188,-0.254458,-0.877182,0.407188,-0.254458,0.882855,-0.406206,0.235721, + 0.882855,-0.406206,0.235721,0.882855,-0.406206,0.235721,0.882855,-0.406206,0.235721,-0.379882,-0.912983,-0.148833, + -0.379882,-0.912983,-0.148833,-0.379882,-0.912983,-0.148833,-0.379882,-0.912983,-0.148833,-0.882854,0.406207,-0.235720, + -0.882854,0.406207,-0.235720,-0.882854,0.406207,-0.235720,-0.882854,0.406207,-0.235720,0.847160,-0.503884,0.168587, + 0.847160,-0.503884,0.168587,0.847160,-0.503884,0.168587,0.847160,-0.503884,0.168587,-0.252419,-0.111412,0.961183, + -0.252419,-0.111412,0.961183,-0.252419,-0.111412,0.961183,-0.252419,-0.111412,0.961183,0.184995,0.005337,-0.982725, + 0.184995,0.005337,-0.982725,0.184995,0.005337,-0.982725,0.184995,0.005337,-0.982725,0.517943,0.829076,0.210637, + 0.517943,0.829076,0.210637,0.517943,0.829076,0.210637,0.517943,0.829076,0.210637,-0.522644,-0.829008,-0.198968, + -0.522644,-0.829008,-0.198968,-0.522644,-0.829008,-0.198968,-0.522644,-0.829008,-0.198968,0.816162,-0.555507,0.159032, + 0.816162,-0.555507,0.159032,0.816162,-0.555507,0.159032,0.816162,-0.555507,0.159032,0.811944,-0.555000,0.180893, + 0.811944,-0.555000,0.180893,0.811944,-0.555000,0.180893,-0.516746,-0.827283,-0.220400,-0.516746,-0.827283,-0.220400, + -0.516746,-0.827283,-0.220400,-0.516746,-0.827283,-0.220400,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,0.231859,0.029957,-0.972288,0.231859,0.029957,-0.972288, + 0.231859,0.029957,-0.972288,0.231859,0.029957,-0.972288,0.213577,0.095298,-0.972267,0.213577,0.095298,-0.972267, + 0.213577,0.095298,-0.972267,0.213577,0.095298,-0.972267,0.535111,0.831502,0.149202,0.535111,0.831502,0.149202, + 0.535111,0.831502,0.149202,0.535111,0.831502,0.149202,0.811886,-0.555144,0.180709,0.811886,-0.555144,0.180709, + 0.811886,-0.555144,0.180709,-0.248180,-0.120017,0.961251,-0.248180,-0.120017,0.961251,-0.248180,-0.120017,0.961251, + -0.248180,-0.120017,0.961251,-0.521992,-0.828680,-0.202027,-0.521992,-0.828680,-0.202027,-0.521992,-0.828680,-0.202027, + -0.521992,-0.828680,-0.202027,0.533934,0.833108,0.144379,0.533934,0.833108,0.144379,0.533934,0.833108,0.144379, + 0.533934,0.833108,0.144379,0.523634,0.829304,0.195096,0.523634,0.829304,0.195096,0.523634,0.829304,0.195096, + 0.523634,0.829304,0.195096,0.812935,-0.554880,0.176763,0.812935,-0.554880,0.176763,0.812935,-0.554880,0.176763, + 0.812935,-0.554880,0.176763,-0.523633,-0.829304,-0.195096,-0.523633,-0.829304,-0.195096,-0.523633,-0.829304,-0.195096, + -0.523633,-0.829304,-0.195096,-0.812938,0.554877,-0.176757,-0.812938,0.554877,-0.176757,-0.812938,0.554877,-0.176757, + -0.812938,0.554877,-0.176757,0.265449,0.058786,-0.962331,0.265449,0.058786,-0.962331,0.265449,0.058786,-0.962331, + 0.265449,0.058786,-0.962331,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.523637,0.829303,0.195091,0.523637,0.829303,0.195091,0.523637,0.829303,0.195091, + 0.523637,0.829303,0.195091,0.812932,-0.554884,0.176763,0.812932,-0.554884,0.176763,0.812932,-0.554884,0.176763, + 0.812932,-0.554884,0.176763,-0.523632,-0.829303,-0.195105,-0.523632,-0.829303,-0.195105,-0.523632,-0.829303,-0.195105, + -0.523632,-0.829303,-0.195105,-0.812935,0.554883,-0.176755,-0.812935,0.554883,-0.176755,-0.812935,0.554883,-0.176755, + -0.812935,0.554883,-0.176755,0.263936,0.059825,-0.962683,0.263936,0.059825,-0.962683,0.263936,0.059825,-0.962683, + 0.263936,0.059825,-0.962683,-0.523628,-0.829308,-0.195094,-0.523628,-0.829308,-0.195094,-0.523628,-0.829308,-0.195094, + -0.523628,-0.829308,-0.195094,0.523631,0.829306,0.195096,0.523631,0.829306,0.195096,0.523631,0.829306,0.195096, + 0.523631,0.829306,0.195096,0.812932,-0.554885,0.176761,0.812932,-0.554885,0.176761,0.812932,-0.554885,0.176761, + 0.812932,-0.554885,0.176761,-0.523634,-0.829305,-0.195092,-0.523634,-0.829305,-0.195092,-0.523634,-0.829305,-0.195092, + -0.523634,-0.829305,-0.195092,-0.812939,0.554876,-0.176757,-0.812939,0.554876,-0.176757,-0.812939,0.554876,-0.176757, + -0.812939,0.554876,-0.176757,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724, + 0.254845,0.066045,-0.964724,0.812934,-0.554882,0.176759,0.812934,-0.554882,0.176759,0.812934,-0.554882,0.176759, + 0.812934,-0.554882,0.176759,0.523633,0.829305,0.195096,0.523633,0.829305,0.195096,0.523633,0.829305,0.195096, + 0.523633,0.829305,0.195096,0.812938,-0.554878,0.176756,0.812938,-0.554878,0.176756,0.812938,-0.554878,0.176756, + 0.812938,-0.554878,0.176756,-0.523633,-0.829306,-0.195091,-0.523633,-0.829306,-0.195091,-0.523633,-0.829306,-0.195091, + -0.523633,-0.829306,-0.195091,-0.812934,0.554884,-0.176753,-0.812934,0.554884,-0.176753,-0.812934,0.554884,-0.176753, + -0.812934,0.554884,-0.176753,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725,0.254839,0.066046,-0.964725, + 0.254839,0.066046,-0.964725,0.523633,0.829304,0.195099,0.523633,0.829304,0.195099,0.523633,0.829304,0.195099, + 0.523633,0.829304,0.195099,0.523633,0.829304,0.195096,0.523633,0.829304,0.195096,0.523633,0.829304,0.195096, + 0.523633,0.829304,0.195096,0.812934,-0.554884,0.176755,0.812934,-0.554884,0.176755,0.812934,-0.554884,0.176755, + 0.812934,-0.554884,0.176755,-0.523634,-0.829302,-0.195105,-0.523634,-0.829302,-0.195105,-0.523634,-0.829302,-0.195105, + -0.523634,-0.829302,-0.195105,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759, + -0.812935,0.554881,-0.176759,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758, + -0.812936,0.554880,-0.176758,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,-0.523634,-0.829304,-0.195094,-0.523634,-0.829304,-0.195094,-0.523634,-0.829304,-0.195094, + -0.523634,-0.829304,-0.195094,0.812935,-0.554881,0.176756,0.812935,-0.554881,0.176756,0.812935,-0.554881,0.176756, + 0.812935,-0.554881,0.176756,0.523633,0.829302,0.195104,0.523633,0.829302,0.195104,0.523633,0.829302,0.195104, + 0.523633,0.829302,0.195104,-0.812936,0.554881,-0.176756,-0.812936,0.554881,-0.176756,-0.812936,0.554881,-0.176756, + -0.812936,0.554881,-0.176756,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,-0.523632,-0.829305,-0.195096,-0.523632,-0.829305,-0.195096,-0.523632,-0.829305,-0.195096, + -0.523632,-0.829305,-0.195096,0.812938,-0.554878,0.176758,0.812938,-0.554878,0.176758,0.812938,-0.554878,0.176758, + 0.812938,-0.554878,0.176758,0.523637,0.829302,0.195098,0.523637,0.829302,0.195098,0.523637,0.829302,0.195098, + 0.523637,0.829302,0.195098,-0.812937,0.554881,-0.176751,-0.812937,0.554881,-0.176751,-0.812937,0.554881,-0.176751, + -0.812937,0.554881,-0.176751,0.527452,0.830213,0.180394,0.527452,0.830213,0.180394,0.527452,0.830213,0.180394, + 0.527452,0.830213,0.180394,0.812648,-0.557172,0.170772,0.812648,-0.557172,0.170772,0.812648,-0.557172,0.170772, + 0.812648,-0.557172,0.170772,-0.513704,-0.830768,-0.214319,-0.513704,-0.830768,-0.214319,-0.513704,-0.830768,-0.214319, + -0.513704,-0.830768,-0.214319,-0.812935,0.554882,-0.176758,-0.812935,0.554882,-0.176758,-0.812935,0.554882,-0.176758, + -0.812935,0.554882,-0.176758,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,0.785619,-0.558964,0.265259,0.785619,-0.558964,0.265259,0.785619,-0.558964,0.265259, + 0.785619,-0.558964,0.265259,-0.263934,-0.059822,0.962684,-0.263934,-0.059822,0.962684,-0.263934,-0.059822,0.962684, + -0.263934,-0.059822,0.962684,-0.265447,-0.058787,0.962332,-0.265447,-0.058787,0.962332,-0.265447,-0.058787,0.962332, + -0.265447,-0.058787,0.962332,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,0.523632,0.829304,0.195101,0.523632,0.829304,0.195101,0.523632,0.829304,0.195101, + 0.523632,0.829304,0.195101,0.812935,-0.554883,0.176753,0.812935,-0.554883,0.176753,0.812935,-0.554883,0.176753, + 0.812935,-0.554883,0.176753,-0.523636,-0.829303,-0.195096,-0.523636,-0.829303,-0.195096,-0.523636,-0.829303,-0.195096, + -0.523636,-0.829303,-0.195096,-0.812934,0.554882,-0.176761,-0.812934,0.554882,-0.176761,-0.812934,0.554882,-0.176761, + -0.812934,0.554882,-0.176761,0.261068,0.061790,-0.963341,0.261068,0.061790,-0.963341,0.261068,0.061790,-0.963341, + 0.261068,0.061790,-0.963341,0.372916,-0.017217,-0.927705,0.372916,-0.017217,-0.927705,0.372916,-0.017217,-0.927705, + 0.372916,-0.017217,-0.927705,0.523633,0.829304,0.195101,0.523633,0.829304,0.195101,0.523633,0.829304,0.195101, + 0.523633,0.829304,0.195101,0.812936,-0.554882,0.176753,0.812936,-0.554882,0.176753,0.812936,-0.554882,0.176753, + 0.812936,-0.554882,0.176753,-0.523632,-0.829304,-0.195101,-0.523632,-0.829304,-0.195101,-0.523632,-0.829304,-0.195101, + -0.523632,-0.829304,-0.195101,-0.812934,0.554883,-0.176757,-0.812934,0.554883,-0.176757,-0.812934,0.554883,-0.176757, + -0.812934,0.554883,-0.176757,0.261067,0.061789,-0.963341,0.261067,0.061789,-0.963341,0.261067,0.061789,-0.963341, + 0.261067,0.061789,-0.963341,-0.817142,0.553677,-0.160374,-0.817142,0.553677,-0.160374,-0.817142,0.553677,-0.160374, + -0.817142,0.553677,-0.160374,0.523634,0.829304,0.195097,0.523634,0.829304,0.195097,0.523634,0.829304,0.195097, + 0.523634,0.829304,0.195097,0.812936,-0.554878,0.176762,0.812936,-0.554878,0.176762,0.812936,-0.554878,0.176762, + 0.812936,-0.554878,0.176762,-0.523634,-0.829304,-0.195099,-0.523634,-0.829304,-0.195099,-0.523634,-0.829304,-0.195099, + -0.523634,-0.829304,-0.195099,-0.812934,0.554884,-0.176756,-0.812934,0.554884,-0.176756,-0.812934,0.554884,-0.176756, + -0.812934,0.554884,-0.176756,0.273662,0.053130,-0.960357,0.273662,0.053130,-0.960357,0.273662,0.053130,-0.960357, + 0.273662,0.053130,-0.960357,0.523634,0.829303,0.195099,0.523634,0.829303,0.195099,0.523634,0.829303,0.195099, + 0.523634,0.829303,0.195099,0.523633,0.829303,0.195101,0.523633,0.829303,0.195101,0.523633,0.829303,0.195101, + 0.523633,0.829303,0.195101,0.812935,-0.554881,0.176756,0.812935,-0.554881,0.176756,0.812935,-0.554881,0.176756, + 0.812935,-0.554881,0.176756,-0.523636,-0.829302,-0.195100,-0.523636,-0.829302,-0.195100,-0.523636,-0.829302,-0.195100, + -0.523636,-0.829302,-0.195100,-0.812937,0.554879,-0.176758,-0.812937,0.554879,-0.176758,-0.812937,0.554879,-0.176758, + -0.812937,0.554879,-0.176758,0.261068,0.061789,-0.963341,0.261068,0.061789,-0.963341,0.261068,0.061789,-0.963341, + 0.261068,0.061789,-0.963341,-0.528141,-0.830557,-0.176754,-0.528141,-0.830557,-0.176754,-0.528141,-0.830557,-0.176754, + -0.528141,-0.830557,-0.176754,0.520428,0.831483,0.194401,0.520428,0.831483,0.194401,0.520428,0.831483,0.194401, + 0.520428,0.831483,0.194401,0.812936,-0.554879,0.176760,0.812936,-0.554879,0.176760,0.812936,-0.554879,0.176760, + 0.812936,-0.554879,0.176760,-0.523634,-0.829304,-0.195095,-0.523634,-0.829304,-0.195095,-0.523634,-0.829304,-0.195095, + -0.523634,-0.829304,-0.195095,-0.839955,0.540828,-0.044514,-0.839955,0.540828,-0.044514,-0.839955,0.540828,-0.044514, + -0.839955,0.540828,-0.044514,0.285157,0.045185,-0.957415,0.285157,0.045185,-0.957415,0.285157,0.045185,-0.957415, + 0.285157,0.045185,-0.957415,-0.712864,0.551906,-0.432695,-0.712864,0.551906,-0.432695,-0.712864,0.551906,-0.432695, + -0.712864,0.551906,-0.432695,0.290458,0.041504,-0.955987,0.290458,0.041504,-0.955987,0.290458,0.041504,-0.955987, + 0.290458,0.041504,-0.955987,0.817137,-0.553685,0.160373,0.817137,-0.553685,0.160373,0.817137,-0.553685,0.160373, + 0.817137,-0.553685,0.160373,0.755425,-0.557846,0.343716,0.755425,-0.557846,0.343716,0.755425,-0.557846,0.343716, + 0.755425,-0.557846,0.343716,0.528136,0.830560,0.176752,0.528136,0.830560,0.176752,0.528136,0.830560,0.176752, + 0.528136,0.830560,0.176752,-0.785618,0.558963,-0.265263,-0.785618,0.558963,-0.265263,-0.785618,0.558963,-0.265263, + -0.785618,0.558963,-0.265263,0.523634,0.829304,0.195096,0.523634,0.829304,0.195096,0.523634,0.829304,0.195096, + 0.523634,0.829304,0.195096,-0.812935,0.554880,-0.176762,-0.812935,0.554880,-0.176762,-0.812935,0.554880,-0.176762, + -0.812935,0.554880,-0.176762,0.812944,-0.554870,0.176754,0.812944,-0.554870,0.176754,0.812944,-0.554870,0.176754, + 0.812944,-0.554870,0.176754,0.335995,0.016518,-0.941719,0.335995,0.016518,-0.941719,0.335995,0.016518,-0.941719, + 0.335995,0.016518,-0.941719,-0.517524,-0.828959,-0.212123,-0.517524,-0.828959,-0.212123,-0.517524,-0.828959,-0.212123, + -0.517524,-0.828959,-0.212123,0.523633,0.829305,0.195094,0.523633,0.829305,0.195094,0.523633,0.829305,0.195094, + 0.523633,0.829305,0.195094,-0.823955,0.551189,-0.131488,-0.823955,0.551189,-0.131488,-0.823955,0.551189,-0.131488, + -0.823955,0.551189,-0.131488,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + 0.254844,0.066046,-0.964724,-0.523633,-0.829303,-0.195103,-0.523633,-0.829303,-0.195103,-0.523633,-0.829303,-0.195103, + -0.523633,-0.829303,-0.195103,0.812933,-0.554881,0.176766,0.812933,-0.554881,0.176766,0.812933,-0.554881,0.176766, + 0.812933,-0.554881,0.176766,-0.271054,-0.054928,0.960996,-0.271054,-0.054928,0.960996,-0.271054,-0.054928,0.960996, + -0.271054,-0.054928,0.960996,0.237450,0.077853,-0.968275,0.237450,0.077853,-0.968275,0.237450,0.077853,-0.968275, + 0.237450,0.077853,-0.968275,0.261276,0.076259,-0.962247,0.261276,0.076259,-0.962247,0.261276,0.076259,-0.962247, + 0.261276,0.076259,-0.962247,-0.523638,-0.829300,-0.195102,-0.523638,-0.829300,-0.195102,-0.523638,-0.829300,-0.195102, + -0.523638,-0.829300,-0.195102,0.812935,-0.554881,0.176759,0.812935,-0.554881,0.176759,0.812935,-0.554881,0.176759, + 0.812935,-0.554881,0.176759,0.523633,0.829305,0.195096,0.523633,0.829305,0.195096,0.523633,0.829305,0.195096, + 0.523633,0.829305,0.195096,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759, + -0.812935,0.554881,-0.176759,0.823956,-0.551188,0.131487,0.823956,-0.551188,0.131487,0.823956,-0.551188,0.131487, + 0.823956,-0.551188,0.131487,-0.523638,-0.829300,-0.195100,-0.523638,-0.829300,-0.195100,-0.523638,-0.829300,-0.195100, + -0.523638,-0.829300,-0.195100,0.223805,0.087057,-0.970738,0.223805,0.087057,-0.970738,0.223805,0.087057,-0.970738, + 0.223805,0.087057,-0.970738,-0.812939,0.554876,-0.176759,-0.812939,0.554876,-0.176759,-0.812939,0.554876,-0.176759, + -0.812939,0.554876,-0.176759,-0.812935,0.554881,-0.176757,-0.812935,0.554881,-0.176757,-0.812935,0.554881,-0.176757, + -0.812935,0.554881,-0.176757,0.523631,0.829306,0.195095,0.523631,0.829306,0.195095,0.523631,0.829306,0.195095, + 0.523631,0.829306,0.195095,0.812935,-0.554881,0.176759,0.812935,-0.554881,0.176759,0.812935,-0.554881,0.176759, + 0.812935,-0.554881,0.176759,-0.523632,-0.829305,-0.195097,-0.523632,-0.829305,-0.195097,-0.523632,-0.829305,-0.195097, + -0.523632,-0.829305,-0.195097,0.261768,0.077048,-0.962050,0.261768,0.077048,-0.962050,0.261768,0.077048,-0.962050, + 0.261768,0.077048,-0.962050,-0.482496,-0.808504,-0.336925,-0.482496,-0.808504,-0.336925,-0.482496,-0.808504,-0.336925, + -0.482496,-0.808504,-0.336925,0.247993,0.070713,-0.966178,0.247993,0.070713,-0.966178,0.247993,0.070713,-0.966178, + 0.247993,0.070713,-0.966178,0.812938,-0.554877,0.176759,0.812938,-0.554877,0.176759,0.812938,-0.554877,0.176759, + 0.812938,-0.554877,0.176759,0.528820,0.830317,0.175847,0.528820,0.830317,0.175847,0.528820,0.830317,0.175847, + 0.528820,0.830317,0.175847,-0.812937,0.554879,-0.176756,-0.812937,0.554879,-0.176756,-0.812937,0.554879,-0.176756, + -0.812937,0.554879,-0.176756,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724,-0.254844,-0.066044,0.964724, + -0.254844,-0.066044,0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724,0.254842,0.066045,-0.964724, + 0.254842,0.066045,-0.964724,-0.646330,0.611044,-0.457037,-0.646330,0.611044,-0.457037,-0.646330,0.611044,-0.457037, + -0.646330,0.611044,-0.457037,-0.580262,0.720558,0.379594,-0.580262,0.720558,0.379594,-0.580262,0.720558,0.379594, + -0.580262,0.720558,0.379594,-0.238112,-0.527269,-0.815653,-0.238112,-0.527269,-0.815653,-0.238112,-0.527269,-0.815653, + -0.238112,-0.527269,-0.815653,0.689961,-0.605507,0.396629,0.689961,-0.605507,0.396629,0.689961,-0.605507,0.396629, + 0.689961,-0.605507,0.396629,0.807650,-0.577054,0.121281,0.807650,-0.577054,0.121281,0.807650,-0.577054,0.121281, + 0.807650,-0.577054,0.121281,-0.198766,-0.549676,-0.811386,-0.198766,-0.549676,-0.811386,-0.198766,-0.549676,-0.811386, + -0.198766,-0.549676,-0.811386,-0.857760,0.197422,0.474629,-0.857760,0.197422,0.474629,-0.857760,0.197422,0.474629, + -0.857760,0.197422,0.474629,0.354675,0.360102,-0.862863,0.354675,0.360102,-0.862863,0.354675,0.360102,-0.862863, + 0.354675,0.360102,-0.862863,0.859946,-0.499475,0.104964,0.859946,-0.499475,0.104964,0.859946,-0.499475,0.104964, + 0.859946,-0.499475,0.104964,-0.801065,0.424964,-0.421544,-0.801065,0.424964,-0.421544,-0.801065,0.424964,-0.421544, + -0.801065,0.424964,-0.421544,0.406875,0.324028,-0.854083,0.406875,0.324028,-0.854083,0.406875,0.324028,-0.854083, + 0.406875,0.324028,-0.854083,0.810399,-0.455789,0.368118,0.810399,-0.455789,0.368118,0.810399,-0.455789,0.368118, + 0.810399,-0.455789,0.368118,-0.406420,-0.749527,-0.522524,-0.406420,-0.749527,-0.522524,-0.406420,-0.749527,-0.522524, + -0.406420,-0.749527,-0.522524,-0.394080,-0.338284,0.854555,-0.394080,-0.338284,0.854555,-0.394080,-0.338284,0.854555, + -0.394080,-0.338284,0.854555,0.148219,0.527399,0.836589,0.148219,0.527399,0.836589,0.148219,0.527399,0.836589, + 0.148219,0.527399,0.836589,0.527697,0.510315,-0.679055,0.527697,0.510315,-0.679055,0.527697,0.510315,-0.679055, + 0.527697,0.510315,-0.679055,-0.828707,0.529042,-0.182644,-0.828707,0.529042,-0.182644,-0.828707,0.529042,-0.182644, + -0.828707,0.529042,-0.182644,-0.519712,-0.828231,-0.209599,-0.519712,-0.828231,-0.209599,-0.519712,-0.828231,-0.209599, + -0.519712,-0.828231,-0.209599,0.390744,0.332244,-0.858448,0.390744,0.332244,-0.858448,0.390744,0.332244,-0.858448, + 0.390744,0.332244,-0.858448,-0.161257,-0.536414,-0.828406,-0.161257,-0.536414,-0.828406,-0.161257,-0.536414,-0.828406, + -0.161257,-0.536414,-0.828406,0.826689,-0.559324,0.061175,0.826689,-0.559324,0.061175,0.826689,-0.559324,0.061175, + 0.826689,-0.559324,0.061175,0.860764,-0.505418,0.060314,0.860764,-0.505418,0.060314,0.860764,-0.505418,0.060314, + 0.860764,-0.505418,0.060314,-0.774283,0.599376,-0.203061,-0.774283,0.599376,-0.203061,-0.774283,0.599376,-0.203061, + -0.774283,0.599376,-0.203061,0.530595,0.830796,0.168071,0.530595,0.830796,0.168071,0.530595,0.830796,0.168071, + 0.530595,0.830796,0.168071,-0.812935,0.554882,-0.176758,-0.812935,0.554882,-0.176758,-0.812935,0.554882,-0.176758, + -0.812935,0.554882,-0.176758,0.518759,0.827918,0.213169,0.518759,0.827918,0.213169,0.518759,0.827918,0.213169, + 0.518759,0.827918,0.213169,0.812935,-0.554882,0.176758,0.812935,-0.554882,0.176758,0.812935,-0.554882,0.176758, + 0.812935,-0.554882,0.176758,-0.528197,-0.830370,-0.177462,-0.528197,-0.830370,-0.177462,-0.528197,-0.830370,-0.177462, + -0.528197,-0.830370,-0.177462,-0.805655,0.556473,-0.203119,-0.805655,0.556473,-0.203119,-0.805655,0.556473,-0.203119, + 0.827529,-0.549541,0.114892,0.827529,-0.549541,0.114892,0.827529,-0.549541,0.114892,0.827529,-0.549541,0.114892, + 0.827529,-0.549541,0.114892,0.827529,-0.549541,0.114892,0.827529,-0.549541,0.114892,-0.805655,0.556474,-0.203120, + -0.805655,0.556474,-0.203120,-0.805655,0.556474,-0.203120,-0.805655,0.556474,-0.203120,0.513833,0.826282,0.230726, + 0.513833,0.826282,0.230726,0.513833,0.826282,0.230726,0.513833,0.826282,0.230726,0.802969,-0.556942,0.212262, + 0.802969,-0.556942,0.212262,0.802969,-0.556942,0.212262,0.802969,-0.556942,0.212262,-0.513824,-0.826287,-0.230725, + -0.513824,-0.826287,-0.230725,-0.513824,-0.826287,-0.230725,-0.513824,-0.826287,-0.230725,-0.802966,0.556947,-0.212263, + -0.802966,0.556947,-0.212263,-0.802966,0.556947,-0.212263,-0.802966,0.556947,-0.212263,0.521177,0.828636,0.204297, + 0.521177,0.828636,0.204297,0.521177,0.828636,0.204297,0.521177,0.828636,0.204297,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.521176,-0.828636,-0.204298, + -0.521176,-0.828636,-0.204298,-0.521176,-0.828636,-0.204298,-0.521176,-0.828636,-0.204298,-0.808974,0.555819,-0.191380, + -0.808974,0.555819,-0.191380,-0.808974,0.555819,-0.191380,-0.808974,0.555819,-0.191380,0.526043,0.829896,0.185880, + 0.526043,0.829896,0.185880,0.526043,0.829896,0.185880,0.526043,0.829896,0.185880,-0.526047,-0.829893,-0.185880, + -0.526047,-0.829893,-0.185880,-0.526047,-0.829893,-0.185880,-0.526047,-0.829893,-0.185880,-0.808973,0.555821,-0.191381, + -0.808973,0.555821,-0.191381,-0.808973,0.555821,-0.191381,-0.808973,0.555821,-0.191381,0.803012,-0.556933,0.212126, + 0.803012,-0.556933,0.212126,0.803012,-0.556933,0.212126,0.803012,-0.556933,0.212126,0.526552,0.830011,0.183912, + 0.526552,0.830011,0.183912,0.526552,0.830011,0.183912,0.526552,0.830011,0.183912,-0.528306,-0.830396,-0.177019, + -0.528306,-0.830396,-0.177019,-0.528306,-0.830396,-0.177019,-0.528306,-0.830396,-0.177019,-0.803008,0.556938,-0.212127, + -0.803008,0.556938,-0.212127,-0.803008,0.556938,-0.212127,-0.803008,0.556938,-0.212127,-0.281913,-0.047436,0.958266, + -0.281913,-0.047436,0.958266,-0.281913,-0.047436,0.958266,-0.281913,-0.047436,0.958266,0.527946,0.830505,0.177576, + 0.527946,0.830505,0.177576,0.527946,0.830505,0.177576,0.527946,0.830505,0.177576,0.808177,-0.555986,0.194241, + 0.808177,-0.555986,0.194241,0.808177,-0.555986,0.194241,0.808177,-0.555986,0.194241,-0.527941,-0.830510,-0.177573, + -0.527941,-0.830510,-0.177573,-0.527941,-0.830510,-0.177573,-0.527941,-0.830510,-0.177573,-0.808176,0.555986,-0.194244, + -0.808176,0.555986,-0.194244,-0.808176,0.555986,-0.194244,-0.808176,0.555986,-0.194244,0.525835,0.829949,0.186232, + 0.525835,0.829949,0.186232,0.525835,0.829949,0.186232,0.525835,0.829949,0.186232,-0.525838,-0.829947,-0.186232, + -0.525838,-0.829947,-0.186232,-0.525838,-0.829947,-0.186232,-0.525838,-0.829947,-0.186232,-0.808173,0.555991,-0.194240, + -0.808173,0.555991,-0.194240,-0.808173,0.555991,-0.194240,-0.808173,0.555991,-0.194240,0.521386,0.828590,0.203950, + 0.521386,0.828590,0.203950,0.521386,0.828590,0.203950,0.521386,0.828590,0.203950,-0.521390,-0.828587,-0.203951, + -0.521390,-0.828587,-0.203951,-0.521390,-0.828587,-0.203951,-0.521390,-0.828587,-0.203951,-0.808177,0.555986,-0.194241, + -0.808177,0.555986,-0.194241,-0.808177,0.555986,-0.194241,-0.808177,0.555986,-0.194241,0.808175,-0.555989,0.194241, + 0.808175,-0.555989,0.194241,0.808175,-0.555989,0.194241,0.808175,-0.555989,0.194241,0.519040,0.827785,0.213001, + 0.519040,0.827785,0.213001,0.519040,0.827785,0.213001,0.519040,0.827785,0.213001,-0.450219,-0.871105,-0.196160, + -0.450219,-0.871105,-0.196160,-0.450219,-0.871105,-0.196160,-0.450219,-0.871105,-0.196160,-0.808175,0.555989,-0.194243, + -0.808175,0.555989,-0.194243,-0.808175,0.555989,-0.194243,-0.808175,0.555989,-0.194243,-0.820233,0.552642,-0.147662, + -0.820233,0.552642,-0.147662,-0.820233,0.552642,-0.147662,-0.820233,0.552642,-0.147662,0.820230,-0.552649,0.147655, + 0.820230,-0.552649,0.147655,0.820230,-0.552649,0.147655,0.820230,-0.552649,0.147655,-0.514096,-0.826383,-0.229774, + -0.514096,-0.826383,-0.229774,-0.514096,-0.826383,-0.229774,-0.514096,-0.826383,-0.229774,-0.806042,0.556415,-0.201739, + -0.806042,0.556415,-0.201739,-0.806042,0.556415,-0.201739,-0.806042,0.556415,-0.201739,0.806041,-0.556417,0.201738, + 0.806041,-0.556417,0.201738,0.806041,-0.556417,0.201738,0.806041,-0.556417,0.201738,-0.514236,-0.826429,-0.229297, + -0.514236,-0.826429,-0.229297,-0.514236,-0.826429,-0.229297,-0.514236,-0.826429,-0.229297,-0.807563,0.556945,-0.194046, + -0.807563,0.556945,-0.194046,-0.807563,0.556945,-0.194046,-0.807563,0.556945,-0.194046,0.807756,-0.556919,0.193318, + 0.807756,-0.556919,0.193318,0.807756,-0.556919,0.193318,0.807756,-0.556919,0.193318,-0.527453,-0.829378,-0.184188, + -0.527453,-0.829378,-0.184188,-0.527453,-0.829378,-0.184188,-0.527453,-0.829378,-0.184188,-0.819000,0.553319,-0.151913, + -0.819000,0.553319,-0.151913,-0.819000,0.553319,-0.151913,-0.819000,0.553319,-0.151913,0.819004,-0.553312,0.151914, + 0.819004,-0.553312,0.151914,0.819004,-0.553312,0.151914,0.819004,-0.553312,0.151914,-0.526529,-0.830012,-0.183978, + -0.526529,-0.830012,-0.183978,-0.526529,-0.830012,-0.183978,-0.526529,-0.830012,-0.183978,0.805945,-0.556428,0.202089, + 0.805945,-0.556428,0.202089,0.805945,-0.556428,0.202089,0.805945,-0.556428,0.202089,-0.805945,0.556429,-0.202088, + -0.805945,0.556429,-0.202088,-0.805945,0.556429,-0.202088,-0.805945,0.556429,-0.202088,0.528021,0.830333,0.178160, + 0.528021,0.830333,0.178160,0.528021,0.830333,0.178160,0.528021,0.830333,0.178160,0.820124,-0.552683,0.148116, + 0.820124,-0.552683,0.148116,0.820124,-0.552683,0.148116,0.820124,-0.552683,0.148116,-0.820121,0.552688,-0.148115, + -0.820121,0.552688,-0.148115,-0.820121,0.552688,-0.148115,-0.820121,0.552688,-0.148115,0.527953,0.830319,0.178426, + 0.527953,0.830319,0.178426,0.527953,0.830319,0.178426,0.527953,0.830319,0.178426,0.819392,-0.552699,0.152056, + 0.819392,-0.552699,0.152056,0.819392,-0.552699,0.152056,0.819392,-0.552699,0.152056,-0.819391,0.552700,-0.152057, + -0.819391,0.552700,-0.152057,-0.819391,0.552700,-0.152057,-0.819391,0.552700,-0.152057,0.520545,0.828454,0.206632, + 0.520545,0.828454,0.206632,0.520545,0.828454,0.206632,0.520545,0.828454,0.206632,0.808847,-0.555014,0.194230, + 0.808847,-0.555014,0.194230,0.808847,-0.555014,0.194230,0.808847,-0.555014,0.194230,-0.808633,0.555067,-0.194969, + -0.808633,0.555067,-0.194969,-0.808633,0.555067,-0.194969,-0.808633,0.555067,-0.194969,0.519476,0.829102,0.206722, + 0.519476,0.829102,0.206722,0.519476,0.829102,0.206722,0.519476,0.829102,0.206722,-0.528561,-0.830443,-0.176036, + -0.528561,-0.830443,-0.176036,-0.528561,-0.830443,-0.176036,-0.528561,-0.830443,-0.176036,-0.822207,0.551902,-0.139211, + -0.822207,0.551902,-0.139211,-0.822207,0.551902,-0.139211,-0.822207,0.551902,-0.139211,0.528556,0.830445,0.176037, + 0.528556,0.830445,0.176037,0.528556,0.830445,0.176037,0.528556,0.830445,0.176037,0.822207,-0.551903,0.139210, + 0.822207,-0.551903,0.139210,0.822207,-0.551903,0.139210,0.822207,-0.551903,0.139210,-0.526042,-0.829894,-0.185893, + -0.526042,-0.829894,-0.185893,-0.526042,-0.829894,-0.185893,-0.526042,-0.829894,-0.185893,0.526038,0.829896,0.185894, + 0.526038,0.829896,0.185894,0.526038,0.829896,0.185894,0.526038,0.829896,0.185894,0.822021,-0.551977,0.140009, + 0.822021,-0.551977,0.140009,0.822021,-0.551977,0.140009,0.822021,-0.551977,0.140009,-0.521187,-0.828632,-0.204287, + -0.521187,-0.828632,-0.204287,-0.521187,-0.828632,-0.204287,-0.521187,-0.828632,-0.204287,0.521181,0.828636,0.204284, + 0.521181,0.828636,0.204284,0.521181,0.828636,0.204284,0.521181,0.828636,0.204284,0.822026,-0.551970,0.140010, + 0.822026,-0.551970,0.140010,0.822026,-0.551970,0.140010,0.822026,-0.551970,0.140010,-0.822041,0.551970,-0.139920, + -0.822041,0.551970,-0.139920,-0.822041,0.551970,-0.139920,-0.822041,0.551970,-0.139920,-0.513516,-0.826178,-0.231802, + -0.513516,-0.826178,-0.231802,-0.513516,-0.826178,-0.231802,-0.513516,-0.826178,-0.231802,0.513521,0.826173,0.231807, + 0.513521,0.826173,0.231807,0.513521,0.826173,0.231807,0.513521,0.826173,0.231807,0.822043,-0.551968,0.139916, + 0.822043,-0.551968,0.139916,0.822043,-0.551968,0.139916,0.822043,-0.551968,0.139916,-0.518602,-0.828084,-0.212905, + -0.518602,-0.828084,-0.212905,-0.518602,-0.828084,-0.212905,-0.518602,-0.828084,-0.212905,-0.817427,0.553591,-0.159217, + -0.817427,0.553591,-0.159217,-0.817427,0.553591,-0.159217,-0.817427,0.553591,-0.159217,0.518604,0.828082,0.212906, + 0.518604,0.828082,0.212906,0.518604,0.828082,0.212906,0.518604,0.828082,0.212906,0.817426,-0.553592,0.159215, + 0.817426,-0.553592,0.159215,0.817426,-0.553592,0.159215,0.817426,-0.553592,0.159215,-0.521172,-0.828736,-0.203902, + -0.521172,-0.828736,-0.203902,-0.521172,-0.828736,-0.203902,-0.521172,-0.828736,-0.203902,0.521171,0.828737,0.203901, + 0.521171,0.828737,0.203901,0.521171,0.828737,0.203901,0.521171,0.828737,0.203901,0.817427,-0.553591,0.159217, + 0.817427,-0.553591,0.159217,0.817427,-0.553591,0.159217,0.817427,-0.553591,0.159217,-0.526054,-0.829799,-0.186280, + -0.526054,-0.829799,-0.186280,-0.526054,-0.829799,-0.186280,-0.526054,-0.829799,-0.186280,0.526053,0.829800,0.186278, + 0.526053,0.829800,0.186278,0.526053,0.829800,0.186278,0.526053,0.829800,0.186278,0.817426,-0.553592,0.159218, + 0.817426,-0.553592,0.159218,0.817426,-0.553592,0.159218,0.817426,-0.553592,0.159218,-0.817429,0.553589,-0.159215, + -0.817429,0.553589,-0.159215,-0.817429,0.553589,-0.159215,-0.817429,0.553589,-0.159215,-0.528371,-0.830215,-0.177669, + -0.528371,-0.830215,-0.177669,-0.528371,-0.830215,-0.177669,-0.528371,-0.830215,-0.177669,0.458753,0.873326,0.163852, + 0.458753,0.873326,0.163852,0.458753,0.873326,0.163852,0.458753,0.873326,0.163852,0.817428,-0.553590,0.159216, + 0.817428,-0.553590,0.159216,0.817428,-0.553590,0.159216,0.817428,-0.553590,0.159216,-0.273243,-0.053423,0.960460, + -0.273243,-0.053423,0.960460,-0.273243,-0.053423,0.960460,-0.273243,-0.053423,0.960460,-0.817142,0.553677,-0.160375, + -0.817142,0.553677,-0.160375,-0.817142,0.553677,-0.160375,-0.817142,0.553677,-0.160375,-0.526622,-0.830164,-0.183026, + -0.526622,-0.830164,-0.183026,-0.526622,-0.830164,-0.183026,-0.526622,-0.830164,-0.183026,0.817140,-0.553682,0.160373, + 0.817140,-0.553682,0.160373,0.817140,-0.553682,0.160373,0.817140,-0.553682,0.160373,0.526622,0.830163,0.183026, + 0.526622,0.830163,0.183026,0.526622,0.830163,0.183026,0.526622,0.830163,0.183026,-0.817137,0.553686,-0.160372, + -0.817137,0.553686,-0.160372,-0.817137,0.553686,-0.160372,-0.817137,0.553686,-0.160372,-0.523632,-0.829304,-0.195099, + -0.523632,-0.829304,-0.195099,-0.523632,-0.829304,-0.195099,-0.523632,-0.829304,-0.195099,0.817139,-0.553681,0.160376, + 0.817139,-0.553681,0.160376,0.817139,-0.553681,0.160376,0.817139,-0.553681,0.160376,0.523632,0.829305,0.195097, + 0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,-0.817139,0.553682,-0.160372, + -0.817139,0.553682,-0.160372,-0.817139,0.553682,-0.160372,-0.817139,0.553682,-0.160372,-0.526619,-0.830165,-0.183025, + -0.526619,-0.830165,-0.183025,-0.526619,-0.830165,-0.183025,-0.526619,-0.830165,-0.183025,0.817139,-0.553681,0.160374, + 0.817139,-0.553681,0.160374,0.817139,-0.553681,0.160374,0.817139,-0.553681,0.160374,0.523632,0.829305,0.195097, + 0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,0.254839,0.066047,-0.964725, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,-0.523631,-0.829304,-0.195101, + -0.523631,-0.829304,-0.195101,-0.523631,-0.829304,-0.195101,-0.523631,-0.829304,-0.195101,0.812936,-0.554881,0.176756, + 0.812936,-0.554881,0.176756,0.812936,-0.554881,0.176756,0.812936,-0.554881,0.176756,0.523638,0.829301,0.195098, + 0.523638,0.829301,0.195098,0.523638,0.829301,0.195098,0.523638,0.829301,0.195098,-0.812936,0.554879,-0.176758, + -0.812936,0.554879,-0.176758,-0.812936,0.554879,-0.176758,-0.812936,0.554879,-0.176758,0.387487,-0.027006,-0.921479, + 0.387487,-0.027006,-0.921479,0.387487,-0.027006,-0.921479,0.387487,-0.027006,-0.921479,-0.523633,-0.829302,-0.195105, + -0.523633,-0.829302,-0.195105,-0.523633,-0.829302,-0.195105,-0.523633,-0.829302,-0.195105,0.746766,-0.558044,0.361839, + 0.746766,-0.558044,0.361839,0.746766,-0.558044,0.361839,0.746766,-0.558044,0.361839,0.523635,0.829302,0.195101, + 0.523635,0.829302,0.195101,0.523635,0.829302,0.195101,0.523635,0.829302,0.195101,-0.747378,0.557077,-0.362065, + -0.747378,0.557077,-0.362065,-0.747378,0.557077,-0.362065,-0.747378,0.557077,-0.362065,-0.811054,0.560088,-0.168798, + -0.811054,0.560088,-0.168798,-0.811054,0.560088,-0.168798,-0.811054,0.560088,-0.168798,-0.556900,-0.649460,0.517749, + -0.556900,-0.649460,0.517749,-0.556900,-0.649460,0.517749,-0.556900,-0.649460,0.517749,0.811055,-0.560086,0.168801, + 0.811055,-0.560086,0.168801,0.811055,-0.560086,0.168801,0.811055,-0.560086,0.168801,0.556913,0.649443,-0.517757, + 0.556913,0.649443,-0.517757,0.556913,0.649443,-0.517757,0.556913,0.649443,-0.517757,-0.810847,0.560320,-0.169025, + -0.810847,0.560320,-0.169025,-0.810847,0.560320,-0.169025,-0.810847,0.560320,-0.169025,-0.549013,-0.632152,0.546781, + -0.549013,-0.632152,0.546781,-0.549013,-0.632152,0.546781,-0.549013,-0.632152,0.546781,0.810843,-0.560324,0.169026, + 0.810843,-0.560324,0.169026,0.810843,-0.560324,0.169026,0.810843,-0.560324,0.169026,0.547126,0.627446,-0.554044, + 0.547126,0.627446,-0.554044,0.547126,0.627446,-0.554044,0.547126,0.627446,-0.554044,-0.811063,0.560060,-0.168846, + -0.811063,0.560060,-0.168846,-0.811063,0.560060,-0.168846,-0.811063,0.560060,-0.168846,-0.555783,-0.646529,0.522594, + -0.555783,-0.646529,0.522594,-0.555783,-0.646529,0.522594,-0.555783,-0.646529,0.522594,0.811065,-0.560058,0.168843, + 0.811065,-0.560058,0.168843,0.811065,-0.560058,0.168843,0.811065,-0.560058,0.168843,0.555768,0.646542,-0.522596, + 0.555768,0.646542,-0.522596,0.555768,0.646542,-0.522596,0.555768,0.646542,-0.522596,0.807833,-0.560687,0.181758, + 0.807833,-0.560687,0.181758,0.807833,-0.560687,0.181758,0.807833,-0.560687,0.181758,0.178654,0.527297,0.830687, + 0.178654,0.527297,0.830687,0.178654,0.527297,0.830687,0.178654,0.527297,0.830687,-0.807829,0.560691,-0.181762, + -0.807829,0.560691,-0.181762,-0.807829,0.560691,-0.181762,-0.807829,0.560691,-0.181762,-0.178665,-0.527304,-0.830680, + -0.178665,-0.527304,-0.830680,-0.178665,-0.527304,-0.830680,-0.178665,-0.527304,-0.830680,0.807843,-0.560674,0.181751, + 0.807843,-0.560674,0.181751,0.807843,-0.560674,0.181751,0.807843,-0.560674,0.181751,0.161511,0.508416,0.845829, + 0.161511,0.508416,0.845829,0.161511,0.508416,0.845829,0.161511,0.508416,0.845829,-0.807843,0.560675,-0.181749, + -0.807843,0.560675,-0.181749,-0.807843,0.560675,-0.181749,-0.807843,0.560675,-0.181749,-0.161509,-0.508423,-0.845826, + -0.161509,-0.508423,-0.845826,-0.161509,-0.508423,-0.845826,-0.161509,-0.508423,-0.845826,0.807634,-0.561034,0.181572, + 0.807634,-0.561034,0.181572,0.807634,-0.561034,0.181572,0.807634,-0.561034,0.181572,0.173526,0.523129,0.834401, + 0.173526,0.523129,0.834401,0.173526,0.523129,0.834401,0.173526,0.523129,0.834401,-0.807634,0.561034,-0.181572, + -0.807634,0.561034,-0.181572,-0.807634,0.561034,-0.181572,-0.807634,0.561034,-0.181572,-0.168673,-0.517767,-0.838729, + -0.168673,-0.517767,-0.838729,-0.168673,-0.517767,-0.838729,-0.168673,-0.517767,-0.838729,0.528277,0.824743,0.201799, + 0.528277,0.824743,0.201799,0.528277,0.824743,0.201799,0.528277,0.824743,0.201799,-0.755038,0.345651,0.557174, + -0.755038,0.345651,0.557174,-0.755038,0.345651,0.557174,-0.755038,0.345651,0.557174,-0.528273,-0.824745,-0.201802, + -0.528273,-0.824745,-0.201802,-0.528273,-0.824745,-0.201802,-0.528273,-0.824745,-0.201802,0.754545,-0.345066,-0.558204, + 0.754545,-0.345066,-0.558204,0.754545,-0.345066,-0.558204,0.754545,-0.345066,-0.558204,0.468470,0.862871,0.189708, + 0.468470,0.862871,0.189708,0.468470,0.862871,0.189708,0.468470,0.862871,0.189708,-0.779890,0.302998,0.547690, + -0.779890,0.302998,0.547690,-0.779890,0.302998,0.547690,-0.779890,0.302998,0.547690,-0.468468,-0.862872,-0.189710, + -0.468468,-0.862872,-0.189710,-0.468468,-0.862872,-0.189710,-0.468468,-0.862872,-0.189710,0.779882,-0.303015,-0.547691, + 0.779882,-0.303015,-0.547691,0.779882,-0.303015,-0.547691,0.779882,-0.303015,-0.547691,-0.523632,-0.829305,-0.195098, + -0.523632,-0.829305,-0.195098,-0.523632,-0.829305,-0.195098,-0.523632,-0.829305,-0.195098,0.523628,0.829307,0.195097, + 0.523628,0.829307,0.195097,0.523628,0.829307,0.195097,0.523628,0.829307,0.195097,0.839807,-0.540973,0.045520, + 0.839807,-0.540973,0.045520,0.839807,-0.540973,0.045520,0.839807,-0.540973,0.045520,0.545784,0.831805,0.101093, + 0.545784,0.831805,0.101093,0.545784,0.831805,0.101093,0.545784,0.831805,0.101093,-0.545789,-0.831802,-0.101096, + -0.545789,-0.831802,-0.101096,-0.545789,-0.831802,-0.101096,-0.545789,-0.831802,-0.101096,-0.794621,0.558009,-0.239174, + -0.794621,0.558009,-0.239174,-0.794621,0.558009,-0.239174,-0.794621,0.558009,-0.239174,-0.499169,-0.820276,-0.279243, + -0.499169,-0.820276,-0.279243,-0.499169,-0.820276,-0.279243,-0.499169,-0.820276,-0.279243,0.499168,0.820278,0.279242, + 0.499168,0.820278,0.279242,0.499168,0.820278,0.279242,0.499168,0.820278,0.279242,0.832755,-0.546567,0.088223, + 0.832755,-0.546567,0.088223,0.832755,-0.546567,0.088223,0.832755,-0.546567,0.088223,0.499172,0.820275,0.279242, + 0.499172,0.820275,0.279242,0.499172,0.820275,0.279242,0.499172,0.820275,0.279242,-0.499171,-0.820275,-0.279246, + -0.499171,-0.820275,-0.279246,-0.499171,-0.820275,-0.279246,-0.499171,-0.820275,-0.279246,-0.814408,0.554486,-0.171125, + -0.814408,0.554486,-0.171125,-0.814408,0.554486,-0.171125,-0.814408,0.554486,-0.171125,0.820255,-0.552635,0.147566, + 0.820255,-0.552635,0.147566,0.820255,-0.552635,0.147566,0.820255,-0.552635,0.147566,0.580223,0.745803,-0.327290, + 0.580223,0.745803,-0.327290,0.580223,0.745803,-0.327290,0.580223,0.745803,-0.327290,-0.580222,-0.745804,0.327290, + -0.580222,-0.745804,0.327290,-0.580222,-0.745804,0.327290,-0.580222,-0.745804,0.327290,0.511730,0.825530,0.237977, + 0.511730,0.825530,0.237977,0.511730,0.825530,0.237977,0.511730,0.825530,0.237977,0.811714,-0.555189,0.181346, + 0.811714,-0.555189,0.181346,0.811714,-0.555189,0.181346,0.811714,-0.555189,0.181346,-0.531700,-0.831025,-0.163380, + -0.531700,-0.831025,-0.163380,-0.531700,-0.831025,-0.163380,-0.531700,-0.831025,-0.163380,0.811737,-0.555183,0.181261, + 0.811737,-0.555183,0.181261,0.811737,-0.555183,0.181261,0.811737,-0.555183,0.181261,0.267439,0.086087,-0.959722, + 0.267439,0.086087,-0.959722,0.267439,0.086087,-0.959722,0.267439,0.086087,-0.959722,0.812931,-0.554886,0.176762, + 0.812931,-0.554886,0.176762,0.812931,-0.554886,0.176762,0.812931,-0.554886,0.176762,0.812932,-0.554883,0.176766, + 0.812932,-0.554883,0.176766,0.812932,-0.554883,0.176766,0.812932,-0.554883,0.176766,-0.254847,-0.066044,0.964723, + -0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,0.811739,-0.555180,0.181258, + 0.811739,-0.555180,0.181258,0.811739,-0.555180,0.181258,0.811739,-0.555180,0.181258,0.506264,0.823382,0.256396, + 0.506264,0.823382,0.256396,0.506264,0.823382,0.256396,0.506264,0.823382,0.256396,-0.507389,-0.823831,-0.252703, + -0.507389,-0.823831,-0.252703,-0.507389,-0.823831,-0.252703,-0.507389,-0.823831,-0.252703,0.812937,-0.554879,0.176757, + 0.812937,-0.554879,0.176757,0.812937,-0.554879,0.176757,0.812937,-0.554879,0.176757,0.523631,0.829304,0.195104, + 0.523631,0.829304,0.195104,0.523631,0.829304,0.195104,0.523631,0.829304,0.195104,0.812935,-0.554881,0.176758, + 0.812935,-0.554881,0.176758,0.812935,-0.554881,0.176758,0.812935,-0.554881,0.176758,0.516780,0.827276,0.220346, + 0.516780,0.827276,0.220346,0.516780,0.827276,0.220346,0.516780,0.827276,0.220346,-0.812936,0.554879,-0.176760, + -0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760,0.256616,0.068846,-0.964058, + 0.256616,0.068846,-0.964058,0.256616,0.068846,-0.964058,0.256616,0.068846,-0.964058,-0.252979,-0.063089,0.965413, + -0.252979,-0.063089,0.965413,-0.252979,-0.063089,0.965413,-0.252979,-0.063089,0.965413,-0.812936,0.554880,-0.176758, + -0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758,-0.812933,0.554884,-0.176758, + -0.812933,0.554884,-0.176758,-0.812933,0.554884,-0.176758,-0.812933,0.554884,-0.176758,-0.812937,0.554877,-0.176759, + -0.812937,0.554877,-0.176759,-0.812937,0.554877,-0.176759,-0.812937,0.554877,-0.176759,-0.530107,-0.830734,-0.169904, + -0.530107,-0.830734,-0.169904,-0.530107,-0.830734,-0.169904,-0.530107,-0.830734,-0.169904,-0.812936,0.554879,-0.176758, + -0.812936,0.554879,-0.176758,-0.812936,0.554879,-0.176758,-0.812936,0.554879,-0.176758,-0.530132,-0.830753,-0.169733, + -0.530132,-0.830753,-0.169733,-0.530132,-0.830753,-0.169733,-0.530132,-0.830753,-0.169733,-0.812936,0.554881,-0.176757, + -0.812936,0.554881,-0.176757,-0.812936,0.554881,-0.176757,-0.812936,0.554881,-0.176757,0.530093,0.830746,0.169890, + 0.530093,0.830746,0.169890,0.530093,0.830746,0.169890,0.530093,0.830746,0.169890,-0.254830,-0.066049,0.964728, + -0.254830,-0.066049,0.964728,-0.254830,-0.066049,0.964728,-0.254830,-0.066049,0.964728,-0.812938,0.554877,-0.176757, + -0.812938,0.554877,-0.176757,-0.812938,0.554877,-0.176757,-0.812938,0.554877,-0.176757,0.254836,0.066041,-0.964726, + 0.254836,0.066041,-0.964726,0.254836,0.066041,-0.964726,0.254836,0.066041,-0.964726,0.525746,0.829828,0.187017, + 0.525746,0.829828,0.187017,0.525746,0.829828,0.187017,0.525746,0.829828,0.187017,-0.526471,-0.829996,-0.184214, + -0.526471,-0.829996,-0.184214,-0.526471,-0.829996,-0.184214,-0.526471,-0.829996,-0.184214,-0.814080,0.554126,-0.173831, + -0.814080,0.554126,-0.173831,-0.814080,0.554126,-0.173831,-0.814080,0.554126,-0.173831,0.517481,0.827520,0.217772, + 0.517481,0.827520,0.217772,0.517481,0.827520,0.217772,0.517481,0.827520,0.217772,-0.519091,-0.828021,-0.211956, + -0.519091,-0.828021,-0.211956,-0.519091,-0.828021,-0.211956,-0.519091,-0.828021,-0.211956,-0.813412,0.555187,-0.173574, + -0.813412,0.555187,-0.173574,-0.813412,0.555187,-0.173574,-0.813412,0.555187,-0.173574,0.254840,0.066044,-0.964725, + 0.254840,0.066044,-0.964725,0.254840,0.066044,-0.964725,0.254840,0.066044,-0.964725,-0.812936,0.554880,-0.176757, + -0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.254849,0.066046,-0.964723, + 0.254849,0.066046,-0.964723,0.254849,0.066046,-0.964723,0.254849,0.066046,-0.964723,-0.812935,0.554881,-0.176758, + -0.812935,0.554881,-0.176758,-0.812935,0.554881,-0.176758,-0.812935,0.554881,-0.176758,-0.254848,-0.066047,0.964723, + -0.254848,-0.066047,0.964723,-0.254848,-0.066047,0.964723,-0.254848,-0.066047,0.964723,0.254848,0.066043,-0.964723, + 0.254848,0.066043,-0.964723,0.254848,0.066043,-0.964723,0.254848,0.066043,-0.964723,-0.812933,0.554883,-0.176762, + -0.812933,0.554883,-0.176762,-0.812933,0.554883,-0.176762,-0.812933,0.554883,-0.176762,-0.254850,-0.066044,0.964722, + -0.254850,-0.066044,0.964722,-0.254850,-0.066044,0.964722,-0.254850,-0.066044,0.964722,0.520483,0.828439,0.206847, + 0.520483,0.828439,0.206847,0.520483,0.828439,0.206847,0.520483,0.828439,0.206847,-0.812933,0.554882,-0.176763, + -0.812933,0.554882,-0.176763,-0.812933,0.554882,-0.176763,-0.812933,0.554882,-0.176763,-0.523630,-0.829307,-0.195095, + -0.523630,-0.829307,-0.195095,-0.523630,-0.829307,-0.195095,-0.523630,-0.829307,-0.195095,-0.812935,0.554881,-0.176758, + -0.812935,0.554881,-0.176758,-0.812935,0.554881,-0.176758,-0.812935,0.554881,-0.176758,0.535274,0.831519,0.148521, + 0.535274,0.831519,0.148521,0.535274,0.831519,0.148521,0.535274,0.831519,0.148521,-0.537250,-0.831717,-0.140033, + -0.537250,-0.831717,-0.140033,-0.537250,-0.831717,-0.140033,-0.537250,-0.831717,-0.140033,-0.814139,0.554561,-0.172165, + -0.814139,0.554561,-0.172165,-0.814139,0.554561,-0.172165,-0.814139,0.554561,-0.172165,0.517920,0.827658,0.216194, + 0.517920,0.827658,0.216194,0.517920,0.827658,0.216194,0.517920,0.827658,0.216194,-0.518833,-0.827942,-0.212896, + -0.518833,-0.827942,-0.212896,-0.518833,-0.827942,-0.212896,-0.518833,-0.827942,-0.212896,-0.814164,0.554552,-0.172073, + -0.814164,0.554552,-0.172073,-0.814164,0.554552,-0.172073,-0.814164,0.554552,-0.172073,0.254841,0.066044,-0.964725, + 0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,-0.812933,0.554881,-0.176766, + -0.812933,0.554881,-0.176766,-0.812933,0.554881,-0.176766,-0.812933,0.554881,-0.176766,-0.254836,-0.066048,0.964726, + -0.254836,-0.066048,0.964726,-0.254836,-0.066048,0.964726,-0.254836,-0.066048,0.964726,0.244568,0.049842,-0.968350, + 0.244568,0.049842,-0.968350,0.244568,0.049842,-0.968350,0.244568,0.049842,-0.968350,-0.812934,0.554881,-0.176763, + -0.812934,0.554881,-0.176763,-0.812934,0.554881,-0.176763,-0.812934,0.554881,-0.176763,-0.240027,-0.042708,0.969826, + -0.240027,-0.042708,0.969826,-0.240027,-0.042708,0.969826,-0.240027,-0.042708,0.969826,0.254853,0.066044,-0.964722, + 0.254853,0.066044,-0.964722,0.254853,0.066044,-0.964722,0.254853,0.066044,-0.964722,-0.812933,0.554882,-0.176765, + -0.812933,0.554882,-0.176765,-0.812933,0.554882,-0.176765,-0.812933,0.554882,-0.176765,-0.254835,-0.066048,0.964726, + -0.254835,-0.066048,0.964726,-0.254835,-0.066048,0.964726,-0.254835,-0.066048,0.964726,0.523638,0.829301,0.195098, + 0.523638,0.829301,0.195098,0.523638,0.829301,0.195098,0.523638,0.829301,0.195098,-0.812931,0.554887,-0.176757, + -0.812931,0.554887,-0.176757,-0.812931,0.554887,-0.176757,-0.812931,0.554887,-0.176757,-0.523628,-0.829307,-0.195098, + -0.523628,-0.829307,-0.195098,-0.523628,-0.829307,-0.195098,-0.523628,-0.829307,-0.195098,-0.812936,0.554880,-0.176759, + -0.812936,0.554880,-0.176759,-0.812936,0.554880,-0.176759,-0.812936,0.554880,-0.176759,0.530495,0.830817,0.168281, + 0.530495,0.830817,0.168281,0.530495,0.830817,0.168281,0.530495,0.830817,0.168281,-0.531725,-0.831026,-0.163290, + -0.531725,-0.831026,-0.163290,-0.531725,-0.831026,-0.163290,-0.531725,-0.831026,-0.163290,-0.814164,0.554551,-0.172073, + -0.814164,0.554551,-0.172073,-0.814164,0.554551,-0.172073,-0.814164,0.554551,-0.172073,0.506265,0.823382,0.256395, + 0.506265,0.823382,0.256395,0.506265,0.823382,0.256395,0.506265,0.823382,0.256395,-0.509118,-0.824531,-0.246876, + -0.509118,-0.824531,-0.246876,-0.509118,-0.824531,-0.246876,-0.509118,-0.824531,-0.246876,-0.814164,0.554552,-0.172075, + -0.814164,0.554552,-0.172075,-0.814164,0.554552,-0.172075,-0.814164,0.554552,-0.172075,0.254840,0.066047,-0.964725, + 0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,-0.812937,0.554877,-0.176763, + -0.812937,0.554877,-0.176763,-0.812937,0.554877,-0.176763,-0.812937,0.554877,-0.176763,-0.254839,-0.066048,0.964725, + -0.254839,-0.066048,0.964725,-0.254839,-0.066048,0.964725,-0.254839,-0.066048,0.964725,0.254844,0.066045,-0.964724, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.812936,0.554881,-0.176757, + -0.812936,0.554881,-0.176757,-0.812936,0.554881,-0.176757,-0.812936,0.554881,-0.176757,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.254852,0.066040,-0.964722, + 0.254852,0.066040,-0.964722,0.254852,0.066040,-0.964722,0.254852,0.066040,-0.964722,-0.812935,0.554879,-0.176764, + -0.812935,0.554879,-0.176764,-0.812935,0.554879,-0.176764,-0.812935,0.554879,-0.176764,-0.254836,-0.066045,0.964726, + -0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726,-0.254836,-0.066045,0.964726,0.523634,0.829304,0.195096, + 0.523634,0.829304,0.195096,0.523634,0.829304,0.195096,0.523634,0.829304,0.195096,-0.812935,0.554882,-0.176756, + -0.812935,0.554882,-0.176756,-0.812935,0.554882,-0.176756,-0.812935,0.554882,-0.176756,-0.523634,-0.829303,-0.195099, + -0.523634,-0.829303,-0.195099,-0.523634,-0.829303,-0.195099,-0.523634,-0.829303,-0.195099,-0.812936,0.554880,-0.176758, + -0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758,-0.812936,0.554880,-0.176758,0.820255,-0.552635,0.147566, + 0.820255,-0.552635,0.147566,0.820255,-0.552635,0.147566,0.820255,-0.552635,0.147566,0.578646,0.735486,-0.352463, + 0.578646,0.735486,-0.352463,0.578646,0.735486,-0.352463,0.578646,0.735486,-0.352463,-0.578654,-0.735479,0.352462, + -0.578654,-0.735479,0.352462,-0.578654,-0.735479,0.352462,-0.578654,-0.735479,0.352462,-0.582343,-0.776450,0.240836, + -0.582343,-0.776450,0.240836,-0.582343,-0.776450,0.240836,-0.582343,-0.776450,0.240836,0.582342,0.776450,-0.240837, + 0.582342,0.776450,-0.240837,0.582342,0.776450,-0.240837,0.582342,0.776450,-0.240837,0.820272,-0.552627,0.147501, + 0.820272,-0.552627,0.147501,0.820272,-0.552627,0.147501,0.820272,-0.552627,0.147501,-0.507688,-0.826152,-0.244386, + -0.507688,-0.826152,-0.244386,-0.507688,-0.826152,-0.244386,-0.507688,-0.826152,-0.244386,0.525602,0.829642,0.188243, + 0.525602,0.829642,0.188243,0.525602,0.829642,0.188243,0.525602,0.829642,0.188243,-0.257675,-0.014003,0.966130, + -0.257675,-0.014003,0.966130,-0.257675,-0.014003,0.966130,-0.257675,-0.014003,0.966130,-0.814929,0.554339,-0.169113, + -0.814929,0.554339,-0.169113,-0.814929,0.554339,-0.169113,-0.511123,-0.825149,-0.240588,-0.511123,-0.825149,-0.240588, + -0.511123,-0.825149,-0.240588,-0.511123,-0.825149,-0.240588,0.292378,0.038749,-0.955517,0.292378,0.038749,-0.955517, + 0.292378,0.038749,-0.955517,0.292378,0.038749,-0.955517,0.274248,0.104123,-0.956005,0.274248,0.104123,-0.956005, + 0.274248,0.104123,-0.956005,0.274248,0.104123,-0.956005,-0.251743,-0.068158,0.965391,-0.251743,-0.068158,0.965391, + -0.251743,-0.068158,0.965391,-0.251743,-0.068158,0.965391,0.530063,0.830816,0.169643,0.530063,0.830816,0.169643, + 0.530063,0.830816,0.169643,0.530063,0.830816,0.169643,-0.815064,0.554174,-0.169002,-0.815064,0.554174,-0.169002, + -0.815064,0.554174,-0.169002,-0.808069,0.557655,-0.189856,-0.808069,0.557655,-0.189856,-0.808069,0.557655,-0.189856, + -0.808069,0.557655,-0.189856,0.524691,0.829532,0.191246,0.524691,0.829532,0.191246,0.524691,0.829532,0.191246, + 0.524691,0.829532,0.191246,-0.526275,-0.831287,-0.178878,-0.526275,-0.831287,-0.178878,-0.526275,-0.831287,-0.178878, + -0.526275,-0.831287,-0.178878,0.319342,0.128294,-0.938915,0.319342,0.128294,-0.938915,0.319342,0.128294,-0.938915, + 0.319342,0.128294,-0.938915,-0.253651,-0.022666,0.967030,-0.253651,-0.022666,0.967030,-0.253651,-0.022666,0.967030, + -0.253651,-0.022666,0.967030,-0.838008,0.506309,-0.203455,-0.838008,0.506309,-0.203455,-0.838008,0.506309,-0.203455, + -0.838008,0.506309,-0.203455,-0.531728,-0.831025,-0.163288,-0.531728,-0.831025,-0.163288,-0.531728,-0.831025,-0.163288, + -0.531728,-0.831025,-0.163288,0.811736,-0.555183,0.181262,0.811736,-0.555183,0.181262,0.811736,-0.555183,0.181262, + 0.811736,-0.555183,0.181262,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.812934,-0.554882,0.176758,0.812934,-0.554882,0.176758,0.812934,-0.554882,0.176758, + 0.812934,-0.554882,0.176758,0.812936,-0.554881,0.176754,0.812936,-0.554881,0.176754,0.812936,-0.554881,0.176754, + 0.812936,-0.554881,0.176754,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.523638,-0.829302,-0.195091,-0.523638,-0.829302,-0.195091,-0.523638,-0.829302,-0.195091, + -0.523638,-0.829302,-0.195091,0.812935,-0.554882,0.176756,0.812935,-0.554882,0.176756,0.812935,-0.554882,0.176756, + 0.812935,-0.554882,0.176756,0.523634,0.829303,0.195102,0.523634,0.829303,0.195102,0.523634,0.829303,0.195102, + 0.523634,0.829303,0.195102,0.812935,-0.554881,0.176758,0.812935,-0.554881,0.176758,0.812935,-0.554881,0.176758, + 0.812935,-0.554881,0.176758,0.254836,0.066045,-0.964726,0.254836,0.066045,-0.964726,0.254836,0.066045,-0.964726, + 0.254836,0.066045,-0.964726,-0.514413,-0.826491,-0.228675,-0.514413,-0.826491,-0.228675,-0.514413,-0.826491,-0.228675, + -0.514413,-0.826491,-0.228675,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,0.530044,0.830732,0.170114,0.530044,0.830732,0.170114,0.530044,0.830732,0.170114, + 0.530044,0.830732,0.170114,0.254847,0.066043,-0.964723,0.254847,0.066043,-0.964723,0.254847,0.066043,-0.964723, + 0.254847,0.066043,-0.964723,-0.510155,-0.824932,-0.243370,-0.510155,-0.824932,-0.243370,-0.510155,-0.824932,-0.243370, + -0.510155,-0.824932,-0.243370,-0.264873,-0.082003,0.960790,-0.264873,-0.082003,0.960790,-0.264873,-0.082003,0.960790, + -0.264873,-0.082003,0.960790,0.530025,0.830729,0.170188,0.530025,0.830729,0.170188,0.530025,0.830729,0.170188, + 0.530025,0.830729,0.170188,0.528652,0.830466,0.175650,0.528652,0.830466,0.175650,0.528652,0.830466,0.175650, + 0.528652,0.830466,0.175650,-0.528997,-0.830535,-0.174281,-0.528997,-0.830535,-0.174281,-0.528997,-0.830535,-0.174281, + -0.528997,-0.830535,-0.174281,-0.813785,0.554104,-0.175280,-0.813785,0.554104,-0.175280,-0.813785,0.554104,-0.175280, + -0.813785,0.554104,-0.175280,0.519921,0.828270,0.208926,0.519921,0.828270,0.208926,0.519921,0.828270,0.208926, + 0.519921,0.828270,0.208926,-0.520171,-0.828342,-0.208019,-0.520171,-0.828342,-0.208019,-0.520171,-0.828342,-0.208019, + -0.520171,-0.828342,-0.208019,-0.812947,0.555429,-0.174972,-0.812947,0.555429,-0.174972,-0.812947,0.555429,-0.174972, + -0.812947,0.555429,-0.174972,0.254841,0.066048,-0.964725,0.254841,0.066048,-0.964725,0.254841,0.066048,-0.964725, + 0.254841,0.066048,-0.964725,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757, + -0.812936,0.554880,-0.176757,-0.254827,-0.066048,0.964728,-0.254827,-0.066048,0.964728,-0.254827,-0.066048,0.964728, + -0.254827,-0.066048,0.964728,-0.538081,-0.831780,-0.136420,-0.538081,-0.831780,-0.136420,-0.538081,-0.831780,-0.136420, + -0.538081,-0.831780,-0.136420,0.812936,-0.554879,0.176759,0.812936,-0.554879,0.176759,0.812936,-0.554879,0.176759, + 0.812936,-0.554879,0.176759,0.253091,0.063280,-0.965371,0.253091,0.063280,-0.965371,0.253091,0.063280,-0.965371, + 0.253091,0.063280,-0.965371,-0.256780,-0.069074,0.963998,-0.256780,-0.069074,0.963998,-0.256780,-0.069074,0.963998, + -0.256780,-0.069074,0.963998,0.812937,-0.554879,0.176759,0.812937,-0.554879,0.176759,0.812937,-0.554879,0.176759, + 0.812937,-0.554879,0.176759,0.812938,-0.554878,0.176758,0.812938,-0.554878,0.176758,0.812938,-0.554878,0.176758, + 0.812938,-0.554878,0.176758,0.812937,-0.554878,0.176759,0.812937,-0.554878,0.176759,0.812937,-0.554878,0.176759, + 0.812937,-0.554878,0.176759,0.517744,0.827610,0.216802,0.517744,0.827610,0.216802,0.517744,0.827610,0.216802, + 0.517744,0.827610,0.216802,0.812936,-0.554879,0.176758,0.812936,-0.554879,0.176758,0.812936,-0.554879,0.176758, + 0.812936,-0.554879,0.176758,0.523631,0.829306,0.195094,0.523631,0.829306,0.195094,0.523631,0.829306,0.195094, + 0.523631,0.829306,0.195094,0.812936,-0.554881,0.176755,0.812936,-0.554881,0.176755,0.812936,-0.554881,0.176755, + 0.812936,-0.554881,0.176755,-0.523637,-0.829301,-0.195099,-0.523637,-0.829301,-0.195099,-0.523637,-0.829301,-0.195099, + -0.523637,-0.829301,-0.195099,-0.243376,-0.047935,0.968747,-0.243376,-0.047935,0.968747,-0.243376,-0.047935,0.968747, + -0.243376,-0.047935,0.968747,0.812935,-0.554881,0.176761,0.812935,-0.554881,0.176761,0.812935,-0.554881,0.176761, + 0.812935,-0.554881,0.176761,0.266169,0.084012,-0.960258,0.266169,0.084012,-0.960258,0.266169,0.084012,-0.960258, + 0.266169,0.084012,-0.960258,-0.518298,-0.827776,-0.214833,-0.518298,-0.827776,-0.214833,-0.518298,-0.827776,-0.214833, + -0.518298,-0.827776,-0.214833,0.518533,0.827851,0.213976,0.518533,0.827851,0.213976,0.518533,0.827851,0.213976, + 0.518533,0.827851,0.213976,0.811766,-0.555242,0.180947,0.811766,-0.555242,0.180947,0.811766,-0.555242,0.180947, + 0.811766,-0.555242,0.180947,-0.527489,-0.830225,-0.180228,-0.527489,-0.830225,-0.180228,-0.527489,-0.830225,-0.180228, + -0.527489,-0.830225,-0.180228,0.524640,0.829561,0.191261,0.524640,0.829561,0.191261,0.524640,0.829561,0.191261, + 0.524640,0.829561,0.191261,0.811764,-0.555243,0.180952,0.811764,-0.555243,0.180952,0.811764,-0.555243,0.180952, + 0.811764,-0.555243,0.180952,0.266592,0.084739,-0.960077,0.266592,0.084739,-0.960077,0.266592,0.084739,-0.960077, + 0.266592,0.084739,-0.960077,0.812936,-0.554881,0.176757,0.812936,-0.554881,0.176757,0.812936,-0.554881,0.176757, + 0.812936,-0.554881,0.176757,-0.266588,-0.084740,0.960078,-0.266588,-0.084740,0.960078,-0.266588,-0.084740,0.960078, + -0.266588,-0.084740,0.960078,0.267170,0.085665,-0.959834,0.267170,0.085665,-0.959834,0.267170,0.085665,-0.959834, + 0.267170,0.085665,-0.959834,0.812936,-0.554879,0.176759,0.812936,-0.554879,0.176759,0.812936,-0.554879,0.176759, + 0.812936,-0.554879,0.176759,-0.267425,-0.086064,0.959727,-0.267425,-0.086064,0.959727,-0.267425,-0.086064,0.959727, + -0.267425,-0.086064,0.959727,0.266606,0.084738,-0.960073,0.266606,0.084738,-0.960073,0.266606,0.084738,-0.960073, + 0.266606,0.084738,-0.960073,0.812931,-0.554884,0.176770,0.812931,-0.554884,0.176770,0.812931,-0.554884,0.176770, + 0.812931,-0.554884,0.176770,-0.266578,-0.084740,0.960081,-0.266578,-0.084740,0.960081,-0.266578,-0.084740,0.960081, + -0.266578,-0.084740,0.960081,-0.522912,-0.829110,-0.197839,-0.522912,-0.829110,-0.197839,-0.522912,-0.829110,-0.197839, + -0.522912,-0.829110,-0.197839,0.812936,-0.554881,0.176756,0.812936,-0.554881,0.176756,0.812936,-0.554881,0.176756, + 0.812936,-0.554881,0.176756,0.522932,0.829125,0.197721,0.522932,0.829125,0.197721,0.522932,0.829125,0.197721, + 0.522932,0.829125,0.197721,0.812937,-0.554878,0.176758,0.812937,-0.554878,0.176758,0.812937,-0.554878,0.176758, + 0.812937,-0.554878,0.176758,-0.520951,-0.828570,-0.205139,-0.520951,-0.828570,-0.205139,-0.520951,-0.828570,-0.205139, + -0.520951,-0.828570,-0.205139,0.520741,0.828513,0.205901,0.520741,0.828513,0.205901,0.520741,0.828513,0.205901, + 0.520741,0.828513,0.205901,0.812919,-0.554288,0.178681,0.812919,-0.554288,0.178681,0.812919,-0.554288,0.178681, + 0.812919,-0.554288,0.178681,-0.529210,-0.830579,-0.173421,-0.529210,-0.830579,-0.173421,-0.529210,-0.830579,-0.173421, + -0.529210,-0.830579,-0.173421,0.528826,0.830502,0.174959,0.528826,0.830502,0.174959,0.528826,0.830502,0.174959, + 0.528826,0.830502,0.174959,0.812016,-0.555714,0.178356,0.812016,-0.555714,0.178356,0.812016,-0.555714,0.178356, + 0.812016,-0.555714,0.178356,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.812937,-0.554878,0.176759,0.812937,-0.554878,0.176759,0.812937,-0.554878,0.176759, + 0.812937,-0.554878,0.176759,0.523632,0.829304,0.195101,0.523632,0.829304,0.195101,0.523632,0.829304,0.195101, + 0.523632,0.829304,0.195101,0.812934,-0.554881,0.176762,0.812934,-0.554881,0.176762,0.812934,-0.554881,0.176762, + 0.812934,-0.554881,0.176762,-0.523632,-0.829305,-0.195098,-0.523632,-0.829305,-0.195098,-0.523632,-0.829305,-0.195098, + -0.523632,-0.829305,-0.195098,-0.812934,0.554881,-0.176762,-0.812934,0.554881,-0.176762,-0.812934,0.554881,-0.176762, + -0.812934,0.554881,-0.176762,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,0.478211,0.809282,0.341141,0.478211,0.809282,0.341141,0.478211,0.809282,0.341141, + 0.478211,0.809282,0.341141,0.812933,-0.554883,0.176760,0.812933,-0.554883,0.176760,0.812933,-0.554883,0.176760, + 0.812933,-0.554883,0.176760,-0.523634,-0.829303,-0.195101,-0.523634,-0.829303,-0.195101,-0.523634,-0.829303,-0.195101, + -0.523634,-0.829303,-0.195101,-0.812935,0.554880,-0.176759,-0.812935,0.554880,-0.176759,-0.812935,0.554880,-0.176759, + -0.812935,0.554880,-0.176759,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,0.523636,0.829303,0.195097,0.523636,0.829303,0.195097,0.523636,0.829303,0.195097, + 0.523636,0.829303,0.195097,0.812933,-0.554884,0.176758,0.812933,-0.554884,0.176758,0.812933,-0.554884,0.176758, + 0.812933,-0.554884,0.176758,-0.514141,-0.826396,-0.229627,-0.514141,-0.826396,-0.229627,-0.514141,-0.826396,-0.229627, + -0.514141,-0.826396,-0.229627,-0.812935,0.554881,-0.176757,-0.812935,0.554881,-0.176757,-0.812935,0.554881,-0.176757, + -0.812935,0.554881,-0.176757,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,0.556012,0.822609,0.119017,0.556012,0.822609,0.119017,0.556012,0.822609,0.119017, + 0.556012,0.822609,0.119017,0.812932,-0.554887,0.176755,0.812932,-0.554887,0.176755,0.812932,-0.554887,0.176755, + 0.812932,-0.554887,0.176755,-0.556016,-0.822608,-0.119004,-0.556016,-0.822608,-0.119004,-0.556016,-0.822608,-0.119004, + -0.556016,-0.822608,-0.119004,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760, + -0.812936,0.554879,-0.176760,0.254846,0.066047,-0.964723,0.254846,0.066047,-0.964723,0.254846,0.066047,-0.964723, + 0.254846,0.066047,-0.964723,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,0.523636,0.829302,0.195098,0.523636,0.829302,0.195098,0.523636,0.829302,0.195098, + 0.523636,0.829302,0.195098,0.812935,-0.554882,0.176757,0.812935,-0.554882,0.176757,0.812935,-0.554882,0.176757, + 0.812935,-0.554882,0.176757,-0.473092,-0.806250,-0.355168,-0.473092,-0.806250,-0.355168,-0.473092,-0.806250,-0.355168, + -0.473092,-0.806250,-0.355168,-0.812935,0.554882,-0.176757,-0.812935,0.554882,-0.176757,-0.812935,0.554882,-0.176757, + -0.812935,0.554882,-0.176757,0.193097,-0.029513,-0.980736,0.193097,-0.029513,-0.980736,0.193097,-0.029513,-0.980736, + 0.193097,-0.029513,-0.980736,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,0.523633,0.829303,0.195101,0.523633,0.829303,0.195101,0.523633,0.829303,0.195101, + 0.523633,0.829303,0.195101,0.812934,-0.554883,0.176757,0.812934,-0.554883,0.176757,0.812934,-0.554883,0.176757, + 0.812934,-0.554883,0.176757,0.523637,0.829302,0.195096,0.523637,0.829302,0.195096,0.523637,0.829302,0.195096, + 0.523637,0.829302,0.195096,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760, + -0.812936,0.554879,-0.176760,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724,0.254846,0.066046,-0.964724, + 0.254846,0.066046,-0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,0.812934,-0.554882,0.176760,0.812934,-0.554882,0.176760,0.812934,-0.554882,0.176760, + 0.812934,-0.554882,0.176760,-0.812936,0.554880,-0.176759,-0.812936,0.554880,-0.176759,-0.812936,0.554880,-0.176759, + -0.812936,0.554880,-0.176759,0.166738,-0.069042,-0.983581,0.166738,-0.069042,-0.983581,0.166738,-0.069042,-0.983581, + 0.166738,-0.069042,-0.983581,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,0.812934,-0.554883,0.176758,0.812934,-0.554883,0.176758,0.812934,-0.554883,0.176758, + 0.812934,-0.554883,0.176758,-0.487497,-0.814455,-0.314659,-0.487497,-0.814455,-0.314659,-0.487497,-0.814455,-0.314659, + -0.487497,-0.814455,-0.314659,0.523634,0.829303,0.195102,0.523634,0.829303,0.195102,0.523634,0.829303,0.195102, + 0.523634,0.829303,0.195102,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724,-0.254846,-0.066046,0.964724, + -0.254846,-0.066046,0.964724,0.812935,-0.554882,0.176757,0.812935,-0.554882,0.176757,0.812935,-0.554882,0.176757, + 0.812935,-0.554882,0.176757,-0.507876,-0.824038,-0.251044,-0.507876,-0.824038,-0.251044,-0.507876,-0.824038,-0.251044, + -0.507876,-0.824038,-0.251044,0.537609,0.831744,0.138485,0.537609,0.831744,0.138485,0.537609,0.831744,0.138485, + 0.537609,0.831744,0.138485,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723, + 0.254847,0.066044,-0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723, + -0.254847,-0.066045,0.964723,0.804589,-0.556672,0.206767,0.804589,-0.556672,0.206767,0.804589,-0.556672,0.206767, + 0.804589,-0.556672,0.206767,-0.532398,-0.831133,-0.160530,-0.532398,-0.831133,-0.160530,-0.532398,-0.831133,-0.160530, + -0.532398,-0.831133,-0.160530,0.523635,0.829303,0.195097,0.523635,0.829303,0.195097,0.523635,0.829303,0.195097, + 0.523635,0.829303,0.195097,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.254842,0.066044,-0.964725,-0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725,-0.254843,-0.066044,0.964725, + -0.254843,-0.066044,0.964725,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757, + -0.812936,0.554880,-0.176757,0.523635,0.829303,0.195096,0.523635,0.829303,0.195096,0.523635,0.829303,0.195096, + 0.523635,0.829303,0.195096,-0.494744,-0.818162,-0.292983,-0.494744,-0.818162,-0.292983,-0.494744,-0.818162,-0.292983, + -0.494744,-0.818162,-0.292983,0.254850,0.066046,-0.964722,0.254850,0.066046,-0.964722,0.254850,0.066046,-0.964722, + 0.254850,0.066046,-0.964722,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726, + -0.254837,-0.066046,0.964726,-0.812933,0.554883,-0.176762,-0.812933,0.554883,-0.176762,-0.812933,0.554883,-0.176762, + -0.812933,0.554883,-0.176762,0.546885,0.831718,0.095718,0.546885,0.831718,0.095718,0.546885,0.831718,0.095718, + 0.546885,0.831718,0.095718,-0.523630,-0.829305,-0.195102,-0.523630,-0.829305,-0.195102,-0.523630,-0.829305,-0.195102, + -0.523630,-0.829305,-0.195102,0.298202,0.135929,-0.944774,0.298202,0.135929,-0.944774,0.298202,0.135929,-0.944774, + 0.298202,0.135929,-0.944774,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723, + -0.254846,-0.066047,0.964723,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759, + -0.812935,0.554881,-0.176759,0.490961,0.816260,0.304431,0.490961,0.816260,0.304431,0.490961,0.816260,0.304431, + 0.490961,0.816260,0.304431,-0.488389,-0.814923,-0.312051,-0.488389,-0.814923,-0.312051,-0.488389,-0.814923,-0.312051, + -0.488389,-0.814923,-0.312051,0.254837,0.066044,-0.964726,0.254837,0.066044,-0.964726,0.254837,0.066044,-0.964726, + 0.254837,0.066044,-0.964726,-0.231537,-0.029473,0.972379,-0.231537,-0.029473,0.972379,-0.231537,-0.029473,0.972379, + -0.231537,-0.029473,0.972379,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760,-0.812936,0.554879,-0.176760, + -0.812936,0.554879,-0.176760,0.523636,0.829302,0.195102,0.523636,0.829302,0.195102,0.523636,0.829302,0.195102, + 0.523636,0.829302,0.195102,-0.523637,-0.829301,-0.195099,-0.523637,-0.829301,-0.195099,-0.523637,-0.829301,-0.195099, + -0.523637,-0.829301,-0.195099,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.254848,-0.066043,0.964723,-0.254848,-0.066043,0.964723,-0.254848,-0.066043,0.964723, + -0.254848,-0.066043,0.964723,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759,-0.812935,0.554881,-0.176759, + -0.812935,0.554881,-0.176759,0.523630,0.829306,0.195097,0.523630,0.829306,0.195097,0.523630,0.829306,0.195097, + 0.523630,0.829306,0.195097,-0.559525,-0.828369,-0.027133,-0.559525,-0.828369,-0.027133,-0.559525,-0.828369,-0.027133, + -0.559525,-0.828369,-0.027133,0.254842,0.066049,-0.964724,0.254842,0.066049,-0.964724,0.254842,0.066049,-0.964724, + 0.254842,0.066049,-0.964724,-0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723, + -0.254849,-0.066045,0.964723,-0.812934,0.554882,-0.176759,-0.812934,0.554882,-0.176759,-0.812934,0.554882,-0.176759, + -0.812934,0.554882,-0.176759,0.523631,0.829305,0.195101,0.523631,0.829305,0.195101,0.523631,0.829305,0.195101, + 0.523631,0.829305,0.195101,-0.523632,-0.829306,-0.195090,-0.523632,-0.829306,-0.195090,-0.523632,-0.829306,-0.195090, + -0.523632,-0.829306,-0.195090,0.254839,0.066048,-0.964725,0.254839,0.066048,-0.964725,0.254839,0.066048,-0.964725, + 0.254839,0.066048,-0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725,-0.254839,-0.066046,0.964725, + -0.254839,-0.066046,0.964725,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757,-0.812936,0.554880,-0.176757, + -0.812936,0.554880,-0.176757,0.573851,0.814960,-0.080842,0.573851,0.814960,-0.080842,0.573851,0.814960,-0.080842, + 0.573851,0.814960,-0.080842,-0.508031,-0.824097,-0.250535,-0.508031,-0.824097,-0.250535,-0.508031,-0.824097,-0.250535, + -0.508031,-0.824097,-0.250535,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.254841,-0.066051,0.964725,-0.254841,-0.066051,0.964725,-0.254841,-0.066051,0.964725, + -0.254841,-0.066051,0.964725,-0.812938,0.554877,-0.176758,-0.812938,0.554877,-0.176758,-0.812938,0.554877,-0.176758, + -0.812938,0.554877,-0.176758,0.523630,0.829306,0.195096,0.523630,0.829306,0.195096,0.523630,0.829306,0.195096, + 0.523630,0.829306,0.195096,-0.523642,-0.829300,-0.195089,-0.523642,-0.829300,-0.195089,-0.523642,-0.829300,-0.195089, + -0.523642,-0.829300,-0.195089,0.254847,0.066045,-0.964723,0.254847,0.066045,-0.964723,0.254847,0.066045,-0.964723, + 0.254847,0.066045,-0.964723,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725,-0.254841,-0.066045,0.964725, + -0.254841,-0.066045,0.964725,0.812938,-0.554880,0.176748,0.812938,-0.554880,0.176748,0.812938,-0.554880,0.176748, + 0.812938,-0.554880,0.176748,-0.523630,-0.829305,-0.195102,-0.523630,-0.829305,-0.195102,-0.523630,-0.829305,-0.195102, + -0.523630,-0.829305,-0.195102,0.523634,0.829307,0.195083,0.523634,0.829307,0.195083,0.523634,0.829307,0.195083, + 0.523634,0.829307,0.195083,0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724,0.254844,0.066048,-0.964724, + 0.254844,0.066048,-0.964724,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726,-0.254837,-0.066047,0.964726, + -0.254837,-0.066047,0.964726,0.812937,-0.554879,0.176758,0.812937,-0.554879,0.176758,0.812937,-0.554879,0.176758, + 0.812937,-0.554879,0.176758,-0.508027,-0.824101,-0.250530,-0.508027,-0.824101,-0.250530,-0.508027,-0.824101,-0.250530, + -0.508027,-0.824101,-0.250530,0.523632,0.829306,0.195093,0.523632,0.829306,0.195093,0.523632,0.829306,0.195093, + 0.523632,0.829306,0.195093,0.254837,0.066048,-0.964726,0.254837,0.066048,-0.964726,0.254837,0.066048,-0.964726, + 0.254837,0.066048,-0.964726,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725, + -0.254841,-0.066048,0.964725,0.812936,-0.554880,0.176757,0.812936,-0.554880,0.176757,0.812936,-0.554880,0.176757, + 0.812936,-0.554880,0.176757,-0.523636,-0.829303,-0.195094,-0.523636,-0.829303,-0.195094,-0.523636,-0.829303,-0.195094, + -0.523636,-0.829303,-0.195094,0.523627,0.829306,0.195104,0.523627,0.829306,0.195104,0.523627,0.829306,0.195104, + 0.523627,0.829306,0.195104,0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724, + 0.254843,0.066048,-0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724,-0.254843,-0.066048,0.964724, + -0.254843,-0.066048,0.964724,0.584671,-0.403392,0.703871,0.584671,-0.403392,0.703871,0.584671,-0.403392,0.703871, + 0.584671,-0.403392,0.703871,-0.789253,0.422488,0.445627,-0.789253,0.422488,0.445627,-0.789253,0.422488,0.445627, + -0.789253,0.422488,0.445627,-0.506805,-0.769342,-0.388923,-0.506805,-0.769342,-0.388923,-0.506805,-0.769342,-0.388923, + -0.506805,-0.769342,-0.388923,-0.640055,0.395544,-0.658692,-0.640055,0.395544,-0.658692,-0.640055,0.395544,-0.658692, + -0.640055,0.395544,-0.658692,0.764167,-0.549654,-0.337535,0.764167,-0.549654,-0.337535,0.764167,-0.549654,-0.337535, + 0.764167,-0.549654,-0.337535,-0.487378,-0.798274,-0.353867,-0.487378,-0.798274,-0.353867,-0.487378,-0.798274,-0.353867, + -0.487378,-0.798274,-0.353867,-0.506117,-0.811918,-0.290920,-0.506117,-0.811918,-0.290920,-0.506117,-0.811918,-0.290920, + -0.526603,-0.827336,-0.195460,-0.526603,-0.827336,-0.195460,-0.526603,-0.827336,-0.195460,-0.526603,-0.827336,-0.195460, + 0.728201,-0.673211,0.128490,0.728201,-0.673211,0.128490,0.728201,-0.673211,0.128490,0.728201,-0.673211,0.128490, + -0.235027,-0.079494,0.968733,-0.235027,-0.079494,0.968733,-0.235027,-0.079494,0.968733,-0.235027,-0.079494,0.968733, + -0.563954,0.509064,-0.650238,-0.563954,0.509064,-0.650238,-0.563954,0.509064,-0.650238,-0.563954,0.509064,-0.650238, + -0.373838,-0.263883,0.889163,-0.373838,-0.263883,0.889163,-0.373838,-0.263883,0.889163,-0.373838,-0.263883,0.889163, + -0.525592,-0.828740,-0.192205,-0.525592,-0.828740,-0.192205,-0.525592,-0.828740,-0.192205,-0.525592,-0.828740,-0.192205, + 0.836312,-0.456694,-0.303337,0.836312,-0.456694,-0.303337,0.836312,-0.456694,-0.303337,0.836312,-0.456694,-0.303337, + -0.523641,-0.829301,-0.195092,-0.523641,-0.829301,-0.195092,-0.523641,-0.829301,-0.195092,-0.523641,-0.829301,-0.195092, + -0.843214,0.505593,-0.182664,-0.843214,0.505593,-0.182664,-0.843214,0.505593,-0.182664,-0.843214,0.505593,-0.182664, + 0.791032,-0.592145,0.153730,0.791032,-0.592145,0.153730,0.791032,-0.592145,0.153730,0.791032,-0.592145,0.153730, + 0.499151,0.830371,0.247653,0.499151,0.830371,0.247653,0.499151,0.830371,0.247653,0.499151,0.830371,0.247653, + -0.498366,-0.830906,-0.247440,-0.498366,-0.830906,-0.247440,-0.498366,-0.830906,-0.247440,-0.498366,-0.830906,-0.247440, + 0.219993,0.089615,-0.971376,0.219993,0.089615,-0.971376,0.219993,0.089615,-0.971376,0.219993,0.089615,-0.971376, + -0.523631,-0.829306,-0.195097,-0.523631,-0.829306,-0.195097,-0.523631,-0.829306,-0.195097,-0.523631,-0.829306,-0.195097, + -0.219775,-0.089772,0.971411,-0.219775,-0.089772,0.971411,-0.219775,-0.089772,0.971411,-0.219775,-0.089772,0.971411, + -0.812937,0.554878,-0.176758,-0.812937,0.554878,-0.176758,-0.812937,0.554878,-0.176758,-0.812937,0.554878,-0.176758, + -0.523630,-0.829306,-0.195100,-0.523630,-0.829306,-0.195100,-0.523630,-0.829306,-0.195100,-0.523630,-0.829306,-0.195100, + 0.812943,-0.554869,0.176758,0.812943,-0.554869,0.176758,0.812943,-0.554869,0.176758,0.812943,-0.554869,0.176758, + -0.409068,-0.327568,0.851682,-0.409068,-0.327568,0.851682,-0.409068,-0.327568,0.851682,-0.409068,-0.327568,0.851682, + -0.249745,0.281559,-0.926473,-0.249745,0.281559,-0.926473,-0.249745,0.281559,-0.926473,-0.249745,0.281559,-0.926473, + 0.480720,0.819230,0.312682,0.480720,0.819230,0.312682,0.480720,0.819230,0.312682,0.480720,0.819230,0.312682, + -0.484303,-0.823183,-0.296345,-0.484303,-0.823183,-0.296345,-0.484303,-0.823183,-0.296345,-0.484303,-0.823183,-0.296345, + 0.832262,-0.525061,0.177907,0.832262,-0.525061,0.177907,0.832262,-0.525061,0.177907,0.832262,-0.525061,0.177907, + -0.377416,-0.269886,0.885844,-0.377416,-0.269886,0.885844,-0.377416,-0.269886,0.885844,-0.377416,-0.269886,0.885844, + -0.741493,0.657051,-0.135911,-0.741493,0.657051,-0.135911,-0.741493,0.657051,-0.135911,-0.741493,0.657051,-0.135911, + 0.500539,0.831749,0.240111,0.500539,0.831749,0.240111,0.500539,0.831749,0.240111,0.500539,0.831749,0.240111, + -0.498362,-0.830895,-0.247485,-0.498362,-0.830895,-0.247485,-0.498362,-0.830895,-0.247485,-0.498362,-0.830895,-0.247485, + 0.912703,-0.343063,0.221993,0.912703,-0.343063,0.221993,0.912703,-0.343063,0.221993,0.912703,-0.343063,0.221993, + -0.424133,-0.355001,0.833118,-0.424133,-0.355001,0.833118,-0.424133,-0.355001,0.833118,-0.424133,-0.355001,0.833118, + -0.605185,0.791143,-0.088568,-0.605185,0.791143,-0.088568,-0.605185,0.791143,-0.088568,-0.605185,0.791143,-0.088568, + 0.500677,0.835033,0.228129,0.500677,0.835033,0.228129,0.500677,0.835033,0.228129,0.500677,0.835033,0.228129, + -0.503805,-0.832952,-0.228848,-0.503805,-0.832952,-0.228848,-0.503805,-0.832952,-0.228848,-0.503805,-0.832952,-0.228848, + -0.845702,0.506231,-0.168871,-0.845702,0.506231,-0.168871,-0.845702,0.506231,-0.168871,-0.845702,0.506231,-0.168871, + 0.149497,0.491680,0.857847,0.149497,0.491680,0.857847,0.149497,0.491680,0.857847,0.149497,0.491680,0.857847, + 0.715735,-0.662378,0.221313,0.715735,-0.662378,0.221313,0.715735,-0.662378,0.221313,0.715735,-0.662378,0.221313, + -0.571177,-0.778176,0.261148,-0.571177,-0.778176,0.261148,-0.571177,-0.778176,0.261148,-0.571177,-0.778176,0.261148, + 0.572164,0.777518,-0.260948,0.572164,0.777518,-0.260948,0.572164,0.777518,-0.260948,0.572164,0.777518,-0.260948, + -0.837445,0.518972,-0.171332,-0.837445,0.518972,-0.171332,-0.837445,0.518972,-0.171332,-0.837445,0.518972,-0.171332, + 0.183172,0.531291,0.827151,0.183172,0.531291,0.827151,0.183172,0.531291,0.827151,0.183172,0.531291,0.827151, + 0.727493,-0.648062,0.225321,0.727493,-0.648062,0.225321,0.727493,-0.648062,0.225321,0.727493,-0.648062,0.225321, + -0.570766,-0.758560,0.314347,-0.570766,-0.758560,0.314347,-0.570766,-0.758560,0.314347,-0.570766,-0.758560,0.314347, + 0.571471,0.758076,-0.314232,0.571471,0.758076,-0.314232,0.571471,0.758076,-0.314232,0.571471,0.758076,-0.314232, + -0.937610,0.315872,-0.145303,-0.937610,0.315872,-0.145303,-0.937610,0.315872,-0.145303,-0.937610,0.315872,-0.145303, + 0.157495,0.502528,0.850095,0.157495,0.502528,0.850095,0.157495,0.502528,0.850095,0.157495,0.502528,0.850095, + 0.642301,-0.737831,0.207495,0.642301,-0.737831,0.207495,0.642301,-0.737831,0.207495,0.642301,-0.737831,0.207495, + -0.563744,-0.823435,0.064402,-0.563744,-0.823435,0.064402,-0.563744,-0.823435,0.064402,-0.563744,-0.823435,0.064402, + 0.574480,0.792902,-0.203174,0.574480,0.792902,-0.203174,0.574480,0.792902,-0.203174,0.574480,0.792902,-0.203174, + -0.831681,0.526521,-0.176305,-0.831681,0.526521,-0.176305,-0.831681,0.526521,-0.176305,-0.831681,0.526521,-0.176305, + 0.140058,0.480395,0.865797,0.140058,0.480395,0.865797,0.140058,0.480395,0.865797,0.140058,0.480395,0.865797, + 0.732943,-0.645832,0.213767,0.732943,-0.645832,0.213767,0.732943,-0.645832,0.213767,0.732943,-0.645832,0.213767, + -0.571493,-0.782758,0.246344,-0.571493,-0.782758,0.246344,-0.571493,-0.782758,0.246344,-0.571493,-0.782758,0.246344, + 0.572218,0.782270,-0.246212,0.572218,0.782270,-0.246212,0.572218,0.782270,-0.246212,0.572218,0.782270,-0.246212, + -0.831328,0.527744,-0.174300,-0.831328,0.527744,-0.174300,-0.831328,0.527744,-0.174300,-0.831328,0.527744,-0.174300, + 0.183190,0.531281,0.827153,0.183190,0.531281,0.827153,0.183190,0.531281,0.827153,0.183190,0.531281,0.827153, + 0.734703,-0.641126,0.221739,0.734703,-0.641126,0.221739,0.734703,-0.641126,0.221739,0.734703,-0.641126,0.221739, + -0.570029,-0.759023,0.314565,-0.570029,-0.759023,0.314565,-0.570029,-0.759023,0.314565,-0.570029,-0.759023,0.314565, + 0.570760,0.758562,-0.314352,0.570760,0.758562,-0.314352,0.570760,0.758562,-0.314352,0.570760,0.758562,-0.314352, + 0.375762,0.024196,-0.926400,0.375762,0.024196,-0.926400,0.375762,0.024196,-0.926400,0.375762,0.024196,-0.926400, + -0.571685,-0.786276,-0.234408,-0.571685,-0.786276,-0.234408,-0.571685,-0.786276,-0.234408,-0.571685,-0.786276,-0.234408, + 0.746960,-0.554932,0.366199,0.746960,-0.554932,0.366199,0.746960,-0.554932,0.366199,0.746960,-0.554932,0.366199, + 0.534405,0.819266,0.207884,0.534405,0.819266,0.207884,0.534405,0.819266,0.207884,0.534405,0.819266,0.207884, + -0.817252,0.552834,-0.162707,-0.817252,0.552834,-0.162707,-0.817252,0.552834,-0.162707,-0.817252,0.552834,-0.162707, + -0.381077,-0.020693,0.924312,-0.381077,-0.020693,0.924312,-0.381077,-0.020693,0.924312,-0.381077,-0.020693,0.924312, + 0.529352,0.745379,0.405212,0.529352,0.745379,0.405212,0.529352,0.745379,0.405212,0.529352,0.745379,0.405212, + -0.649768,0.028761,0.759588,-0.649768,0.028761,0.759588,-0.649768,0.028761,0.759588,-0.649768,0.028761,0.759588, + -0.621061,-0.720885,-0.307583,-0.621061,-0.720885,-0.307583,-0.621061,-0.720885,-0.307583,-0.621061,-0.720885,-0.307583, + 0.620876,-0.064262,-0.781270,0.620876,-0.064262,-0.781270,0.620876,-0.064262,-0.781270,0.620876,-0.064262,-0.781270, + 0.394761,0.903137,-0.168843,0.394761,0.903137,-0.168843,0.394761,0.903137,-0.168843,0.394761,0.903137,-0.168843, + -0.461738,0.211514,0.861429,-0.461738,0.211514,0.861429,-0.461738,0.211514,0.861429,-0.461738,0.211514,0.861429, + -0.394761,-0.903136,0.168847,-0.394761,-0.903136,0.168847,-0.394761,-0.903136,0.168847,-0.394761,-0.903136,0.168847, + 0.461737,-0.211524,-0.861427,0.461737,-0.211524,-0.861427,0.461737,-0.211524,-0.861427,0.461737,-0.211524,-0.861427, + -0.391905,-0.759410,-0.519333,-0.391905,-0.759410,-0.519333,-0.391905,-0.759410,-0.519333,-0.391905,-0.759410,-0.519333, + -0.435138,-0.312109,0.844537,-0.435138,-0.312109,0.844537,-0.435138,-0.312109,0.844537,-0.435138,-0.312109,0.844537, + 0.177791,0.503938,0.845244,0.177791,0.503938,0.845244,0.177791,0.503938,0.845244,0.177791,0.503938,0.845244, + 0.493766,0.533650,-0.686595,0.493766,0.533650,-0.686595,0.493766,0.533650,-0.686595,0.493766,0.533650,-0.686595, + 0.426856,0.306701,-0.850722,0.426856,0.306701,-0.850722,0.426856,0.306701,-0.850722,0.426856,0.306701,-0.850722, + -0.189737,-0.518339,-0.833861,-0.189737,-0.518339,-0.833861,-0.189737,-0.518339,-0.833861,-0.189737,-0.518339,-0.833861, + 0.523633,0.829303,0.195100,0.523633,0.829303,0.195100,0.523633,0.829303,0.195100,0.523633,0.829303,0.195100, + -0.523636,-0.829303,-0.195095,-0.523636,-0.829303,-0.195095,-0.523636,-0.829303,-0.195095,-0.523636,-0.829303,-0.195095, + 0.244194,0.073292,-0.966953,0.244194,0.073292,-0.966953,0.244194,0.073292,-0.966953,0.244194,0.073292,-0.966953, + -0.244197,-0.073293,0.966952,-0.244197,-0.073293,0.966952,-0.244197,-0.073293,0.966952,-0.244197,-0.073293,0.966952, + 0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,0.523632,0.829305,0.195097,0.523632,0.829305,0.195097, + -0.523633,-0.829304,-0.195100,-0.523633,-0.829304,-0.195100,-0.523633,-0.829304,-0.195100,-0.523633,-0.829304,-0.195100, + 0.245721,0.072258,-0.966644,0.245721,0.072258,-0.966644,0.245721,0.072258,-0.966644,0.245721,0.072258,-0.966644, + -0.245720,-0.072255,0.966644,-0.245720,-0.072255,0.966644,-0.245720,-0.072255,0.966644,-0.245720,-0.072255,0.966644, + 0.531386,-0.456234,0.713778,0.531386,-0.456234,0.713778,0.531386,-0.456234,0.713778,0.531386,-0.456234,0.713778, + -0.775780,0.477147,0.412913,-0.775780,0.477147,0.412913,-0.775780,0.477147,0.412913,-0.775780,0.477147,0.412913, + 0.523634,0.829303,0.195098,0.523634,0.829303,0.195098,0.523634,0.829303,0.195098,0.523634,0.829303,0.195098, + -0.523633,-0.829302,-0.195105,-0.523633,-0.829302,-0.195105,-0.523633,-0.829302,-0.195105,-0.523633,-0.829302,-0.195105, + 0.238972,0.076830,-0.967982,0.238972,0.076830,-0.967982,0.238972,0.076830,-0.967982,0.238972,0.076830,-0.967982, + -0.236333,-0.078621,0.968486,-0.236333,-0.078621,0.968486,-0.236333,-0.078621,0.968486,-0.236333,-0.078621,0.968486, + 0.520376,0.831455,0.194660,0.520376,0.831455,0.194660,0.520376,0.831455,0.194660,0.520376,0.831455,0.194660, + -0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098, + 0.240115,0.076060,-0.967760,0.240115,0.076060,-0.967760,0.240115,0.076060,-0.967760,0.240115,0.076060,-0.967760, + -0.239985,-0.076147,0.967785,-0.239985,-0.076147,0.967785,-0.239985,-0.076147,0.967785,-0.239985,-0.076147,0.967785, + -0.812935,0.554880,-0.176763,-0.812935,0.554880,-0.176763,-0.812935,0.554880,-0.176763,-0.812935,0.554880,-0.176763, + 0.812935,-0.554881,0.176760,0.812935,-0.554881,0.176760,0.812935,-0.554881,0.176760,0.812935,-0.554881,0.176760, + 0.250023,0.058426,-0.966476,0.250023,0.058426,-0.966476,0.250023,0.058426,-0.966476,0.250023,0.058426,-0.966476, + 0.280722,0.048256,-0.958575,0.280722,0.048256,-0.958575,0.280722,0.048256,-0.958575,0.280722,0.048256,-0.958575, + -0.476045,-0.812898,-0.335528,-0.476045,-0.812898,-0.335528,-0.476045,-0.812898,-0.335528,-0.476045,-0.812898,-0.335528, + 0.265082,0.059035,-0.962417,0.265082,0.059035,-0.962417,0.265082,0.059035,-0.962417,0.265082,0.059035,-0.962417, + 0.528481,0.830551,0.175764,0.528481,0.830551,0.175764,0.528481,0.830551,0.175764,0.528481,0.830551,0.175764, + 0.527557,-0.495454,0.690079,0.527557,-0.495454,0.690079,0.527557,-0.495454,0.690079,0.527557,-0.495454,0.690079, + -0.527554,0.495452,-0.690083,-0.527554,0.495452,-0.690083,-0.527554,0.495452,-0.690083,-0.527554,0.495452,-0.690083, + 0.528021,0.830332,0.178163,0.528021,0.830332,0.178163,0.528021,0.830332,0.178163,0.528021,0.830332,0.178163, + 0.527556,-0.495452,0.690082,0.527556,-0.495452,0.690082,0.527556,-0.495452,0.690082,0.527556,-0.495452,0.690082, + -0.527551,0.495457,-0.690082,-0.527551,0.495457,-0.690082,-0.527551,0.495457,-0.690082,-0.527551,0.495457,-0.690082, + 0.528022,0.830331,0.178164,0.528022,0.830331,0.178164,0.528022,0.830331,0.178164,0.528022,0.830331,0.178164, + 0.622443,-0.528765,0.577037,0.622443,-0.528765,0.577037,0.622443,-0.528765,0.577037,0.622443,-0.528765,0.577037, + -0.622437,0.528773,-0.577036,-0.622437,0.528773,-0.577036,-0.622437,0.528773,-0.577036,-0.622437,0.528773,-0.577036, + 0.528022,0.830332,0.178161,0.528022,0.830332,0.178161,0.528022,0.830332,0.178161,0.528022,0.830332,0.178161, + 0.512920,-0.489735,0.705034,0.512920,-0.489735,0.705034,0.512920,-0.489735,0.705034,0.512920,-0.489735,0.705034, + -0.512923,0.489727,-0.705037,-0.512923,0.489727,-0.705037,-0.512923,0.489727,-0.705037,-0.512923,0.489727,-0.705037, + 0.522755,0.829069,0.198425,0.522755,0.829069,0.198425,0.522755,0.829069,0.198425,0.522755,0.829069,0.198425, + -0.291582,-0.955048,0.053500,-0.291582,-0.955048,0.053500,-0.291582,-0.955048,0.053500,-0.291582,-0.955048,0.053500, + -0.588092,0.517544,-0.621527,-0.588092,0.517544,-0.621527,-0.588092,0.517544,-0.621527,-0.588092,0.517544,-0.621527, + 0.520015,0.828296,0.208593,0.520015,0.828296,0.208593,0.520015,0.828296,0.208593,0.520015,0.828296,0.208593, + 0.635560,-0.532759,0.558777,0.635560,-0.532759,0.558777,0.635560,-0.532759,0.558777,0.635560,-0.532759,0.558777, + -0.635562,0.532759,-0.558775,-0.635562,0.532759,-0.558775,-0.635562,0.532759,-0.558775,-0.635562,0.532759,-0.558775, + 0.520080,0.828315,0.208353,0.520080,0.828315,0.208353,0.520080,0.828315,0.208353,0.520080,0.828315,0.208353, + -0.810781,0.414765,0.413042,-0.810781,0.414765,0.413042,-0.810781,0.414765,0.413042,-0.810781,0.414765,0.413042, + 0.810782,-0.414765,-0.413042,0.810782,-0.414765,-0.413042,0.810782,-0.414765,-0.413042,0.810782,-0.414765,-0.413042, + -0.515538,-0.826877,-0.224709,-0.515538,-0.826877,-0.224709,-0.515538,-0.826877,-0.224709,-0.515538,-0.826877,-0.224709, + -0.797440,0.396515,0.454825,-0.797440,0.396515,0.454825,-0.797440,0.396515,0.454825,-0.797440,0.396515,0.454825, + 0.797439,-0.396514,-0.454826,0.797439,-0.396514,-0.454826,0.797439,-0.396514,-0.454826,0.797439,-0.396514,-0.454826, + -0.515163,-0.826748,-0.226040,-0.515163,-0.826748,-0.226040,-0.515163,-0.826748,-0.226040,-0.515163,-0.826748,-0.226040, + -0.825173,0.436765,0.358227,-0.825173,0.436765,0.358227,-0.825173,0.436765,0.358227,-0.825173,0.436765,0.358227, + 0.825180,-0.436751,-0.358227,0.825180,-0.436751,-0.358227,0.825180,-0.436751,-0.358227,0.825180,-0.436751,-0.358227, + -0.529800,-0.830691,-0.171069,-0.529800,-0.830691,-0.171069,-0.529800,-0.830691,-0.171069,-0.529800,-0.830691,-0.171069, + -0.880948,0.299374,0.366477,-0.880948,0.299374,0.366477,-0.880948,0.299374,0.366477,-0.880948,0.299374,0.366477, + 0.815914,-0.417805,-0.399654,0.815914,-0.417805,-0.399654,0.815914,-0.417805,-0.399654,0.815914,-0.417805,-0.399654, + -0.527599,-0.830244,-0.179818,-0.527599,-0.830244,-0.179818,-0.527599,-0.830244,-0.179818,-0.527599,-0.830244,-0.179818, + -0.470894,-0.859228,-0.199964,-0.470894,-0.859228,-0.199964,-0.470894,-0.859228,-0.199964,-0.470894,-0.859228,-0.199964, + -0.296597,-0.064260,0.952838,-0.296597,-0.064260,0.952838,-0.296597,-0.064260,0.952838,-0.296597,-0.064260,0.952838, + 0.191973,0.134547,-0.972133,0.191973,0.134547,-0.972133,0.191973,0.134547,-0.972133,0.191973,0.134547,-0.972133, + 0.809579,-0.554391,0.192958,0.809579,-0.554391,0.192958,0.809579,-0.554391,0.192958,0.809579,-0.554391,0.192958, + -0.811898,0.555157,-0.180617,-0.811898,0.555157,-0.180617,-0.811898,0.555157,-0.180617,-0.811898,0.555157,-0.180617, + -0.521860,-0.827020,-0.209047,-0.521860,-0.827020,-0.209047,-0.521860,-0.827020,-0.209047,-0.521860,-0.827020,-0.209047, + -0.525520,-0.829915,-0.187270,-0.525520,-0.829915,-0.187270,-0.525520,-0.829915,-0.187270,-0.806006,0.556341,-0.202087, + -0.806006,0.556341,-0.202087,-0.806006,0.556341,-0.202087,-0.806006,0.556341,-0.202087,-0.252841,-0.062878,0.965463, + -0.252841,-0.062878,0.965463,-0.252841,-0.062878,0.965463,-0.252841,-0.062878,0.965463,0.217284,0.086914,-0.972231, + 0.217284,0.086914,-0.972231,0.217284,0.086914,-0.972231,0.217284,0.086914,-0.972231,0.280284,0.104537,-0.954208, + 0.280284,0.104537,-0.954208,0.280284,0.104537,-0.954208,0.280284,0.104537,-0.954208,0.823994,-0.551283,0.130850, + 0.823994,-0.551283,0.130850,0.823994,-0.551283,0.130850,0.823994,-0.551283,0.130850,-0.525634,-0.829803,-0.187449, + -0.525634,-0.829803,-0.187449,-0.525634,-0.829803,-0.187449,-0.304795,-0.068347,0.949962,-0.304795,-0.068347,0.949962, + -0.304795,-0.068347,0.949962,-0.304795,-0.068347,0.949962,-0.810989,0.555511,-0.183589,-0.810989,0.555511,-0.183589, + -0.810989,0.555511,-0.183589,-0.810989,0.555511,-0.183589,0.826359,-0.548634,0.127010,0.826359,-0.548634,0.127010, + 0.826359,-0.548634,0.127010,0.826359,-0.548634,0.127010,-0.838008,0.506310,-0.203454,-0.838008,0.506310,-0.203454, + -0.838008,0.506310,-0.203454,-0.838008,0.506310,-0.203454,-0.253646,-0.022655,0.967032,-0.253646,-0.022655,0.967032, + -0.253646,-0.022655,0.967032,-0.253646,-0.022655,0.967032,0.319332,0.128299,-0.938918,0.319332,0.128299,-0.938918, + 0.319332,0.128299,-0.938918,0.319332,0.128299,-0.938918,-0.526285,-0.831277,-0.178889,-0.526285,-0.831277,-0.178889, + -0.526285,-0.831277,-0.178889,-0.526285,-0.831277,-0.178889,0.524686,0.829536,0.191246,0.524686,0.829536,0.191246, + 0.524686,0.829536,0.191246,0.524686,0.829536,0.191246,-0.808072,0.557650,-0.189857,-0.808072,0.557650,-0.189857, + -0.808072,0.557650,-0.189857,-0.808072,0.557650,-0.189857,-0.815064,0.554175,-0.169001,-0.815064,0.554175,-0.169001, + -0.815064,0.554175,-0.169001,0.530070,0.830811,0.169643,0.530070,0.830811,0.169643,0.530070,0.830811,0.169643, + 0.530070,0.830811,0.169643,-0.251733,-0.068162,0.965393,-0.251733,-0.068162,0.965393,-0.251733,-0.068162,0.965393, + -0.251733,-0.068162,0.965393,0.274238,0.104127,-0.956008,0.274238,0.104127,-0.956008,0.274238,0.104127,-0.956008, + 0.274238,0.104127,-0.956008,0.292375,0.038742,-0.955519,0.292375,0.038742,-0.955519,0.292375,0.038742,-0.955519, + 0.292375,0.038742,-0.955519,-0.511133,-0.825142,-0.240590,-0.511133,-0.825142,-0.240590,-0.511133,-0.825142,-0.240590, + -0.511133,-0.825142,-0.240590,-0.814929,0.554338,-0.169113,-0.814929,0.554338,-0.169113,-0.814929,0.554338,-0.169113, + -0.257695,-0.014003,0.966125,-0.257695,-0.014003,0.966125,-0.257695,-0.014003,0.966125,-0.257695,-0.014003,0.966125, + 0.525599,0.829645,0.188242,0.525599,0.829645,0.188242,0.525599,0.829645,0.188242,0.525599,0.829645,0.188242, + -0.507690,-0.826153,-0.244382,-0.507690,-0.826153,-0.244382,-0.507690,-0.826153,-0.244382,-0.507690,-0.826153,-0.244382, + 0.809401,-0.552518,0.198984,0.809401,-0.552518,0.198984,0.809401,-0.552518,0.198984,0.809401,-0.552518,0.198984, + 0.048047,0.485420,-0.872960,0.048047,0.485420,-0.872960,0.048047,0.485420,-0.872960,0.048047,0.485420,-0.872960, + -0.808273,0.557874,-0.188340,-0.808273,0.557874,-0.188340,-0.808273,0.557874,-0.188340,-0.808273,0.557874,-0.188340, + 0.805848,-0.558093,0.197840,0.805848,-0.558093,0.197840,0.805848,-0.558093,0.197840,0.805848,-0.558093,0.197840, + 0.808929,-0.553169,0.199092,0.808929,-0.553169,0.199092,0.808929,-0.553169,0.199092,0.808929,-0.553169,0.199092, + 0.808454,-0.555077,0.195683,0.808454,-0.555077,0.195683,0.808454,-0.555077,0.195683,0.808454,-0.555077,0.195683, + -0.101379,0.463843,-0.880098,-0.101379,0.463843,-0.880098,-0.101379,0.463843,-0.880098,-0.101379,0.463843,-0.880098, + -0.808664,0.557314,-0.188320,-0.808664,0.557314,-0.188320,-0.808664,0.557314,-0.188320,-0.808664,0.557314,-0.188320, + 0.824549,-0.440715,-0.354810,0.824549,-0.440715,-0.354810,0.824549,-0.440715,-0.354810,0.824549,-0.440715,-0.354810, + 0.808160,-0.554785,0.197717,0.808160,-0.554785,0.197717,0.808160,-0.554785,0.197717,0.808160,-0.554785,0.197717, + -0.092487,0.476886,-0.874086,-0.092487,0.476886,-0.874086,-0.092487,0.476886,-0.874086,-0.092487,0.476886,-0.874086, + -0.808125,0.557629,-0.189692,-0.808125,0.557629,-0.189692,-0.808125,0.557629,-0.189692,-0.808125,0.557629,-0.189692, + -0.824240,0.534055,-0.188186,-0.824240,0.534055,-0.188186,-0.824240,0.534055,-0.188186,-0.824240,0.534055,-0.188186, + 0.805806,-0.555518,0.205127,0.805806,-0.555518,0.205127,0.805806,-0.555518,0.205127,0.805806,-0.555518,0.205127, + -0.808694,0.556746,-0.189865,-0.808694,0.556746,-0.189865,-0.808694,0.556746,-0.189865,-0.808694,0.556746,-0.189865, + 0.805759,-0.552773,0.212590,0.805759,-0.552773,0.212590,0.805759,-0.552773,0.212590,0.805759,-0.552773,0.212590, + -0.056132,0.525682,-0.848827,-0.056132,0.525682,-0.848827,-0.056132,0.525682,-0.848827,-0.056132,0.525682,-0.848827, + -0.801999,0.561187,-0.204614,-0.801999,0.561187,-0.204614,-0.801999,0.561187,-0.204614,-0.801999,0.561187,-0.204614, + -0.241161,0.139222,-0.960447,-0.241161,0.139222,-0.960447,-0.241161,0.139222,-0.960447,-0.241161,0.139222,-0.960447, + -0.810104,0.555203,-0.188363,-0.810104,0.555203,-0.188363,-0.810104,0.555203,-0.188363,-0.810104,0.555203,-0.188363, + 0.805421,-0.559437,0.195773,0.805421,-0.559437,0.195773,0.805421,-0.559437,0.195773,0.805421,-0.559437,0.195773, + 0.806152,-0.558489,0.195472,0.806152,-0.558489,0.195472,0.806152,-0.558489,0.195472,0.806152,-0.558489,0.195472, + -0.315173,0.112322,-0.942364,-0.315173,0.112322,-0.942364,-0.315173,0.112322,-0.942364,-0.315173,0.112322,-0.942364, + -0.810885,0.553288,-0.190626,-0.810885,0.553288,-0.190626,-0.810885,0.553288,-0.190626,-0.810885,0.553288,-0.190626, + -0.251092,0.121249,-0.960339,-0.251092,0.121249,-0.960339,-0.251092,0.121249,-0.960339,-0.251092,0.121249,-0.960339, + -0.809909,0.555022,-0.189730,-0.809909,0.555022,-0.189730,-0.809909,0.555022,-0.189730,-0.809909,0.555022,-0.189730, + -0.001718,0.511333,-0.859381,-0.001718,0.511333,-0.859381,-0.001718,0.511333,-0.859381,-0.001718,0.511333,-0.859381, + 0.805339,-0.558958,0.197472,0.805339,-0.558958,0.197472,0.805339,-0.558958,0.197472,0.805339,-0.558958,0.197472, + 0.056650,-0.039328,-0.997619,0.056650,-0.039328,-0.997619,0.056650,-0.039328,-0.997619,0.056650,-0.039328,-0.997619, + -0.799872,0.573001,-0.178536,-0.799872,0.573001,-0.178536,-0.799872,0.573001,-0.178536,-0.799872,0.573001,-0.178536, + -0.276061,0.074910,-0.958216,-0.276061,0.074910,-0.958216,-0.276061,0.074910,-0.958216,-0.276061,0.074910,-0.958216, + -0.807723,0.553422,-0.203243,-0.807723,0.553422,-0.203243,-0.807723,0.553422,-0.203243,-0.807723,0.553422,-0.203243, + 0.822601,-0.437618,-0.363067,0.822601,-0.437618,-0.363067,0.822601,-0.437618,-0.363067,0.822601,-0.437618,-0.363067, + 0.798200,-0.563104,0.213985,0.798200,-0.563104,0.213985,0.798200,-0.563104,0.213985,0.798200,-0.563104,0.213985, + -0.250638,0.330266,-0.910003,-0.250638,0.330266,-0.910003,-0.250638,0.330266,-0.910003,-0.250638,0.330266,-0.910003, + -0.806878,0.557282,-0.195921,-0.806878,0.557282,-0.195921,-0.806878,0.557282,-0.195921,-0.806878,0.557282,-0.195921, + 0.228926,0.118994,-0.966144,0.228926,0.118994,-0.966144,0.228926,0.118994,-0.966144,0.228926,0.118994,-0.966144, + 0.805142,-0.557557,0.202181,0.805142,-0.557557,0.202181,0.805142,-0.557557,0.202181,0.805142,-0.557557,0.202181, + 0.826354,-0.443744,-0.346741,0.826354,-0.443744,-0.346741,0.826354,-0.443744,-0.346741,0.826354,-0.443744,-0.346741, + 0.822734,-0.434201,-0.366850,0.822734,-0.434201,-0.366850,0.822734,-0.434201,-0.366850,0.822734,-0.434201,-0.366850, + 0.826558,-0.440511,-0.350360,0.826558,-0.440511,-0.350360,0.826558,-0.440511,-0.350360,0.826558,-0.440511,-0.350360, + 0.822053,-0.458018,-0.338301,0.822053,-0.458018,-0.338301,0.822053,-0.458018,-0.338301,0.822053,-0.458018,-0.338301, + 0.824792,-0.453937,-0.337134,0.824792,-0.453937,-0.337134,0.824792,-0.453937,-0.337134,0.824792,-0.453937,-0.337134, + 0.822733,-0.434202,-0.366851,0.822733,-0.434202,-0.366851,0.822733,-0.434202,-0.366851,0.822733,-0.434202,-0.366851, + 0.822734,-0.434203,-0.366847,0.822734,-0.434203,-0.366847,0.822734,-0.434203,-0.366847,0.822734,-0.434203,-0.366847, + 0.826559,-0.440509,-0.350359,0.826559,-0.440509,-0.350359,0.826559,-0.440509,-0.350359,0.826559,-0.440509,-0.350359, + 0.836938,-0.434285,-0.333063,0.836938,-0.434285,-0.333063,0.836938,-0.434285,-0.333063,0.836938,-0.434285,-0.333063, + 0.833173,-0.437767,-0.337909,0.833173,-0.437767,-0.337909,0.833173,-0.437767,-0.337909,0.833173,-0.437767,-0.337909, + -0.819042,0.428175,0.381884,-0.819042,0.428175,0.381884,-0.819042,0.428175,0.381884,-0.819042,0.428175,0.381884, + -0.819042,0.428175,0.381885,-0.819042,0.428175,0.381885,-0.819042,0.428175,0.381885,-0.819042,0.428175,0.381885, + -0.824247,0.436448,0.360735,-0.824247,0.436448,0.360735,-0.824247,0.436448,0.360735,-0.824247,0.436448,0.360735, + -0.834128,0.422176,0.354962,-0.834128,0.422176,0.354962,-0.834128,0.422176,0.354962,-0.834128,0.422176,0.354962, + -0.822048,0.435994,0.366259,-0.822048,0.435994,0.366259,-0.822048,0.435994,0.366259,-0.822048,0.435994,0.366259, + -0.836387,0.432768,0.336404,-0.836387,0.432768,0.336404,-0.836387,0.432768,0.336404,-0.836387,0.432768,0.336404, + -0.819043,0.428173,0.381887,-0.819043,0.428173,0.381887,-0.819043,0.428173,0.381887,-0.819043,0.428173,0.381887, + -0.819411,0.431917,0.376846,-0.819411,0.431917,0.376846,-0.819411,0.431917,0.376846,-0.819411,0.431917,0.376846, + -0.824246,0.436448,0.360738,-0.824246,0.436448,0.360738,-0.824246,0.436448,0.360738,-0.824246,0.436448,0.360738, + -0.817231,0.441996,0.369828,-0.817231,0.441996,0.369828,-0.817231,0.441996,0.369828,-0.817231,0.441996,0.369828, + -0.824129,0.452758,0.340325,-0.824129,0.452758,0.340325,-0.824129,0.452758,0.340325,-0.824129,0.452758,0.340325, + -0.820579,0.456874,0.343390,-0.820579,0.456874,0.343390,-0.820579,0.456874,0.343390,-0.820579,0.456874,0.343390, + 0.523630,0.829306,0.195097,0.523630,0.829306,0.195097,0.523630,0.829306,0.195097,0.523630,0.829306,0.195097, + 0.846114,-0.479488,-0.232772,0.846114,-0.479488,-0.232772,0.846114,-0.479488,-0.232772,0.846114,-0.479488,-0.232772, + -0.230606,0.358425,-0.904628,-0.230606,0.358425,-0.904628,-0.230606,0.358425,-0.904628,-0.230606,0.358425,-0.904628, + -0.523634,-0.829304,-0.195096,-0.523634,-0.829304,-0.195096,-0.523634,-0.829304,-0.195096,-0.523634,-0.829304,-0.195096, + -0.839128,0.462476,0.286323,-0.839128,0.462476,0.286323,-0.839128,0.462476,0.286323,-0.839128,0.462476,0.286323, + 0.523637,0.829301,0.195098,0.523637,0.829301,0.195098,0.523637,0.829301,0.195098,0.523637,0.829301,0.195098, + 0.846115,-0.479485,-0.232773,0.846115,-0.479485,-0.232773,0.846115,-0.479485,-0.232773,0.846115,-0.479485,-0.232773, + -0.230611,0.358426,-0.904626,-0.230611,0.358426,-0.904626,-0.230611,0.358426,-0.904626,-0.230611,0.358426,-0.904626, + -0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098,-0.523634,-0.829304,-0.195098, + -0.839125,0.462480,0.286324,-0.839125,0.462480,0.286324,-0.839125,0.462480,0.286324,-0.839125,0.462480,0.286324, + 0.523634,0.829303,0.195097,0.523634,0.829303,0.195097,0.523634,0.829303,0.195097,0.523634,0.829303,0.195097, + 0.846114,-0.479487,-0.232773,0.846114,-0.479487,-0.232773,0.846114,-0.479487,-0.232773,0.846114,-0.479487,-0.232773, + -0.230621,0.358431,-0.904622,-0.230621,0.358431,-0.904622,-0.230621,0.358431,-0.904622,-0.230621,0.358431,-0.904622, + -0.523627,-0.829308,-0.195098,-0.523627,-0.829308,-0.195098,-0.523627,-0.829308,-0.195098,-0.523627,-0.829308,-0.195098, + -0.839124,0.462482,0.286324,-0.839124,0.462482,0.286324,-0.839124,0.462482,0.286324,-0.839124,0.462482,0.286324, + 0.323550,-0.026772,-0.945832,0.323550,-0.026772,-0.945832,0.323550,-0.026772,-0.945832,0.323550,-0.026772,-0.945832, + 0.744483,-0.558856,0.365274,0.744483,-0.558856,0.365274,0.744483,-0.558856,0.365274,0.744483,-0.558856,0.365274, + -0.824037,0.558034,-0.097780,-0.824037,0.558034,-0.097780,-0.824037,0.558034,-0.097780,-0.824037,0.558034,-0.097780, + -0.334010,0.033959,0.941958,-0.334010,0.033959,0.941958,-0.334010,0.033959,0.941958,-0.334010,0.033959,0.941958, + 0.523635,0.829302,0.195099,0.523635,0.829302,0.195099,0.523635,0.829302,0.195099,0.523635,0.829302,0.195099, + 0.846112,-0.479491,-0.232772,0.846112,-0.479491,-0.232772,0.846112,-0.479491,-0.232772,0.846112,-0.479491,-0.232772, + -0.230597,0.358423,-0.904631,-0.230597,0.358423,-0.904631,-0.230597,0.358423,-0.904631,-0.230597,0.358423,-0.904631, + -0.523637,-0.829302,-0.195098,-0.523637,-0.829302,-0.195098,-0.523637,-0.829302,-0.195098,-0.523637,-0.829302,-0.195098, + -0.839127,0.462479,0.286320,-0.839127,0.462479,0.286320,-0.839127,0.462479,0.286320,-0.839127,0.462479,0.286320, + 0.808497,-0.555922,0.193092,0.808497,-0.555922,0.193092,0.808497,-0.555922,0.193092,0.808497,-0.555922,0.193092, + 0.518493,0.828057,0.213278,0.518493,0.828057,0.213278,0.518493,0.828057,0.213278,0.518493,0.828057,0.213278, + -0.808495,0.555925,-0.193089,-0.808495,0.555925,-0.193089,-0.808495,0.555925,-0.193089,-0.808495,0.555925,-0.193089, + -0.518492,-0.828057,-0.213277,-0.518492,-0.828057,-0.213277,-0.518492,-0.828057,-0.213277,-0.518492,-0.828057,-0.213277, + -0.530977,-0.825556,-0.191104,-0.530977,-0.825556,-0.191104,-0.530977,-0.825556,-0.191104,-0.530977,-0.825556,-0.191104, + 0.411139,-0.447192,0.794345,0.411139,-0.447192,0.794345,0.411139,-0.447192,0.794345,0.411139,-0.447192,0.794345, + 0.530977,0.825556,0.191107,0.530977,0.825556,0.191107,0.530977,0.825556,0.191107,0.530977,0.825556,0.191107, + -0.409715,0.446496,-0.795472,-0.409715,0.446496,-0.795472,-0.409715,0.446496,-0.795472,-0.409715,0.446496,-0.795472, + 0.808497,-0.555920,0.193093,0.808497,-0.555920,0.193093,0.808497,-0.555920,0.193093,0.808497,-0.555920,0.193093, + 0.518492,0.828057,0.213278,0.518492,0.828057,0.213278,0.518492,0.828057,0.213278,0.518492,0.828057,0.213278, + -0.808497,0.555921,-0.193094,-0.808497,0.555921,-0.193094,-0.808497,0.555921,-0.193094,-0.808497,0.555921,-0.193094, + -0.518492,-0.828058,-0.213277,-0.518492,-0.828058,-0.213277,-0.518492,-0.828058,-0.213277,-0.518492,-0.828058,-0.213277, + -0.530994,-0.825536,-0.191145,-0.530994,-0.825536,-0.191145,-0.530994,-0.825536,-0.191145,-0.530994,-0.825536,-0.191145, + 0.411135,-0.447185,0.794351,0.411135,-0.447185,0.794351,0.411135,-0.447185,0.794351,0.411135,-0.447185,0.794351, + 0.531002,0.825526,0.191162,0.531002,0.825526,0.191162,0.531002,0.825526,0.191162,0.531002,0.825526,0.191162, + -0.409716,0.446494,-0.795472,-0.409716,0.446494,-0.795472,-0.409716,0.446494,-0.795472,-0.409716,0.446494,-0.795472, + 0.819022,-0.553067,0.152708,0.819022,-0.553067,0.152708,0.819022,-0.553067,0.152708,0.819022,-0.553067,0.152708, + 0.518488,0.828057,0.213287,0.518488,0.828057,0.213287,0.518488,0.828057,0.213287,0.518488,0.828057,0.213287, + -0.819022,0.553067,-0.152706,-0.819022,0.553067,-0.152706,-0.819022,0.553067,-0.152706,-0.819022,0.553067,-0.152706, + -0.518489,-0.828056,-0.213290,-0.518489,-0.828056,-0.213290,-0.518489,-0.828056,-0.213290,-0.518489,-0.828056,-0.213290, + -0.530966,-0.825563,-0.191105,-0.530966,-0.825563,-0.191105,-0.530966,-0.825563,-0.191105,-0.530966,-0.825563,-0.191105, + 0.411138,-0.447184,0.794350,0.411138,-0.447184,0.794350,0.411138,-0.447184,0.794350,0.411138,-0.447184,0.794350, + 0.530974,0.825553,0.191125,0.530974,0.825553,0.191125,0.530974,0.825553,0.191125,0.530974,0.825553,0.191125, + -0.409712,0.446494,-0.795474,-0.409712,0.446494,-0.795474,-0.409712,0.446494,-0.795474,-0.409712,0.446494,-0.795474, + 0.819023,-0.553066,0.152706,0.819023,-0.553066,0.152706,0.819023,-0.553066,0.152706,0.819023,-0.553066,0.152706, + 0.528553,0.830251,0.176963,0.528553,0.830251,0.176963,0.528553,0.830251,0.176963,0.528553,0.830251,0.176963, + -0.819023,0.553066,-0.152704,-0.819023,0.553066,-0.152704,-0.819023,0.553066,-0.152704,-0.819023,0.553066,-0.152704, + -0.528558,-0.830246,-0.176966,-0.528558,-0.830246,-0.176966,-0.528558,-0.830246,-0.176966,-0.528558,-0.830246,-0.176966, + -0.523181,-0.829558,-0.195231,-0.523181,-0.829558,-0.195231,-0.523181,-0.829558,-0.195231,-0.523181,-0.829558,-0.195231, + 0.411142,-0.447195,0.794342,0.411142,-0.447195,0.794342,0.411142,-0.447195,0.794342,0.411142,-0.447195,0.794342, + 0.523655,0.828974,0.196436,0.523655,0.828974,0.196436,0.523655,0.828974,0.196436,0.523655,0.828974,0.196436, + -0.409718,0.446490,-0.795473,-0.409718,0.446490,-0.795473,-0.409718,0.446490,-0.795473,-0.409718,0.446490,-0.795473, + 0.819023,-0.553067,0.152704,0.819023,-0.553067,0.152704,0.819023,-0.553067,0.152704,0.819023,-0.553067,0.152704, + 0.518485,0.828058,0.213290,0.518485,0.828058,0.213290,0.518485,0.828058,0.213290,0.518485,0.828058,0.213290, + -0.819022,0.553068,-0.152707,-0.819022,0.553068,-0.152707,-0.819022,0.553068,-0.152707,-0.819022,0.553068,-0.152707, + -0.518490,-0.828055,-0.213290,-0.518490,-0.828055,-0.213290,-0.518490,-0.828055,-0.213290,-0.518490,-0.828055,-0.213290, + -0.489885,-0.846787,-0.207278,-0.489885,-0.846787,-0.207278,-0.489885,-0.846787,-0.207278,-0.489885,-0.846787,-0.207278, + 0.338783,0.030343,-0.940375,0.338783,0.030343,-0.940375,0.338783,0.030343,-0.940375,0.338783,0.030343,-0.940375, + -0.216043,-0.109568,0.970217,-0.216043,-0.109568,0.970217,-0.216043,-0.109568,0.970217,-0.216043,-0.109568,0.970217, + -0.831945,0.546712,-0.094729,-0.831945,0.546712,-0.094729,-0.831945,0.546712,-0.094729,-0.831945,0.546712,-0.094729, + 0.813046,-0.554783,0.176558,0.813046,-0.554783,0.176558,0.813046,-0.554783,0.176558,0.813046,-0.554783,0.176558, + 0.453533,0.819069,0.351331,0.453533,0.819069,0.351331,0.453533,0.819069,0.351331,0.453533,0.819069,0.351331, + -0.607674,0.519765,-0.600480,-0.607674,0.519765,-0.600480,-0.607674,0.519765,-0.600480,-0.607674,0.519765,-0.600480, + -0.798653,0.557551,-0.226475,-0.798653,0.557551,-0.226475,-0.798653,0.557551,-0.226475,-0.798653,0.557551,-0.226475, + -0.510330,-0.837938,-0.193449,-0.510330,-0.837938,-0.193449,-0.510330,-0.837938,-0.193449,-0.510330,-0.837938,-0.193449, + -0.346783,0.032316,0.937389,-0.346783,0.032316,0.937389,-0.346783,0.032316,0.937389,-0.346783,0.032316,0.937389, + 0.544546,0.784345,0.297108,0.544546,0.784345,0.297108,0.544546,0.784345,0.297108,0.544546,0.784345,0.297108, + 0.242465,0.060664,-0.968262,0.242465,0.060664,-0.968262,0.242465,0.060664,-0.968262,0.242465,0.060664,-0.968262, + -0.453535,-0.819064,-0.351339,-0.453535,-0.819064,-0.351339,-0.453535,-0.819064,-0.351339,-0.453535,-0.819064,-0.351339, + -0.303910,-0.018054,0.952529,-0.303910,-0.018054,0.952529,-0.303910,-0.018054,0.952529,-0.303910,-0.018054,0.952529, + -0.481667,-0.842586,-0.240928,-0.481667,-0.842586,-0.240928,-0.481667,-0.842586,-0.240928,-0.481667,-0.842586,-0.240928, + 0.171927,0.136571,-0.975597,0.171927,0.136571,-0.975597,0.171927,0.136571,-0.975597,0.171927,0.136571,-0.975597, + -0.309095,-0.038568,0.950249,-0.309095,-0.038568,0.950249,-0.309095,-0.038568,0.950249,-0.309095,-0.038568,0.950249, + 0.617901,0.760193,0.200761,0.617901,0.760193,0.200761,0.617901,0.760193,0.200761,0.617901,0.760193,0.200761, + 0.527253,0.827422,0.193330,0.527253,0.827422,0.193330,0.527253,0.827422,0.193330,0.527253,0.827422,0.193330, + 0.098872,0.990657,0.093934,0.098872,0.990657,0.093934,0.098872,0.990657,0.093934,0.098872,0.990657,0.093934, + 0.772458,0.586237,0.244202,0.772458,0.586237,0.244202,0.772458,0.586237,0.244202,0.772458,0.586237,0.244202, + -0.960292,0.134450,-0.244463,-0.960292,0.134450,-0.244463,-0.960292,0.134450,-0.244463,-0.960292,0.134450,-0.244463, + 0.401782,-0.914701,0.043516,0.401782,-0.914701,0.043516,0.401782,-0.914701,0.043516,0.401782,-0.914701,0.043516, + 0.834476,-0.519097,0.184902,0.834476,-0.519097,0.184902,0.834476,-0.519097,0.184902,0.834476,-0.519097,0.184902, + -0.507514,-0.840076,-0.191576,-0.507514,-0.840076,-0.191576,-0.507514,-0.840076,-0.191576,-0.507514,-0.840076,-0.191576, + 0.536803,0.820462,0.196686,0.536803,0.820462,0.196686,0.536803,0.820462,0.196686,0.536803,0.820462,0.196686, + -0.490292,-0.823956,-0.284095,-0.490292,-0.823956,-0.284095,-0.490292,-0.823956,-0.284095,-0.490292,-0.823956,-0.284095, + -0.536133,-0.826634,-0.170989,-0.536133,-0.826634,-0.170989,-0.536133,-0.826634,-0.170989,-0.536133,-0.826634,-0.170989, + 0.523636,0.829303,0.195096,0.523636,0.829303,0.195096,0.523636,0.829303,0.195096,0.523636,0.829303,0.195096, + 0.220083,0.089559,-0.971361,0.220083,0.089559,-0.971361,0.220083,0.089559,-0.971361,0.220083,0.089559,-0.971361, + -0.165470,-0.125642,0.978179,-0.165470,-0.125642,0.978179,-0.165470,-0.125642,0.978179,-0.165470,-0.125642,0.978179, + 0.520480,0.828443,0.206838,0.520480,0.828443,0.206838,0.520480,0.828443,0.206838,0.520480,0.828443,0.206838, + -0.812935,0.554883,-0.176755,-0.812935,0.554883,-0.176755,-0.812935,0.554883,-0.176755,-0.812935,0.554883,-0.176755, + -0.523629,-0.829307,-0.195097,-0.523629,-0.829307,-0.195097,-0.523629,-0.829307,-0.195097,-0.523629,-0.829307,-0.195097, + 0.520489,0.828438,0.206839,0.520489,0.828438,0.206839,0.520489,0.828438,0.206839,0.520489,0.828438,0.206839, + -0.812937,0.554878,-0.176759,-0.812937,0.554878,-0.176759,-0.812937,0.554878,-0.176759,-0.812937,0.554878,-0.176759, + -0.523636,-0.829301,-0.195101,-0.523636,-0.829301,-0.195101,-0.523636,-0.829301,-0.195101,-0.523636,-0.829301,-0.195101, + -0.800434,0.557384,-0.220520,-0.800434,0.557384,-0.220520,-0.800434,0.557384,-0.220520,-0.800434,0.557384,-0.220520, + 0.799508,-0.557516,0.223525,0.799508,-0.557516,0.223525,0.799508,-0.557516,0.223525,0.799508,-0.557516,0.223525, + -0.523848,-0.827004,-0.204077,-0.523848,-0.827004,-0.204077,-0.523848,-0.827004,-0.204077,-0.523848,-0.827004,-0.204077, + -0.826475,0.550006,-0.120138,-0.826475,0.550006,-0.120138,-0.826475,0.550006,-0.120138,-0.826475,0.550006,-0.120138, + 0.825471,-0.550482,0.124767,0.825471,-0.550482,0.124767,0.825471,-0.550482,0.124767,0.825471,-0.550482,0.124767, + -0.519003,-0.830307,-0.203044,-0.519003,-0.830307,-0.203044,-0.519003,-0.830307,-0.203044,-0.519003,-0.830307,-0.203044, + 0.255665,0.067349,-0.964417,0.255665,0.067349,-0.964417,0.255665,0.067349,-0.964417,0.255665,0.067349,-0.964417, + -0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098, + -0.255668,-0.067353,0.964416,-0.255668,-0.067353,0.964416,-0.255668,-0.067353,0.964416,-0.255668,-0.067353,0.964416, + 0.255668,0.067350,-0.964416,0.255668,0.067350,-0.964416,0.255668,0.067350,-0.964416,0.255668,0.067350,-0.964416, + -0.523632,-0.829304,-0.195102,-0.523632,-0.829304,-0.195102,-0.523632,-0.829304,-0.195102,-0.523632,-0.829304,-0.195102, + -0.255660,-0.067350,0.964418,-0.255660,-0.067350,0.964418,-0.255660,-0.067350,0.964418,-0.255660,-0.067350,0.964418, + 0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726, + -0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098,-0.523633,-0.829304,-0.195098, + -0.254825,-0.066037,0.964730,-0.254825,-0.066037,0.964730,-0.254825,-0.066037,0.964730,-0.254825,-0.066037,0.964730, + -0.815421,0.554200,-0.167184,-0.815421,0.554200,-0.167184,-0.815421,0.554200,-0.167184,-0.815421,0.554200,-0.167184, + -0.520668,-0.828364,-0.206682,-0.520668,-0.828364,-0.206682,-0.520668,-0.828364,-0.206682,-0.520668,-0.828364,-0.206682, + 0.813764,-0.554661,0.173605,0.813764,-0.554661,0.173605,0.813764,-0.554661,0.173605,0.813764,-0.554661,0.173605, + -0.520543,-0.828449,-0.206656,-0.520543,-0.828449,-0.206656,-0.520543,-0.828449,-0.206656,-0.520543,-0.828449,-0.206656, + -0.809535,0.555697,-0.189349,-0.809535,0.555697,-0.189349,-0.809535,0.555697,-0.189349,-0.809535,0.555697,-0.189349, + -0.520666,-0.828363,-0.206691,-0.520666,-0.828363,-0.206691,-0.520666,-0.828363,-0.206691,-0.520666,-0.828363,-0.206691, + 0.807730,-0.556077,0.195832,0.807730,-0.556077,0.195832,0.807730,-0.556077,0.195832,0.807730,-0.556077,0.195832, + -0.819847,0.552779,-0.149288,-0.819847,0.552779,-0.149288,-0.819847,0.552779,-0.149288,-0.819847,0.552779,-0.149288, + -0.520667,-0.828366,-0.206679,-0.520667,-0.828366,-0.206679,-0.520667,-0.828366,-0.206679,-0.520667,-0.828366,-0.206679, + 0.818308,-0.553303,0.155657,0.818308,-0.553303,0.155657,0.818308,-0.553303,0.155657,0.818308,-0.553303,0.155657, + 0.254833,0.066042,-0.964727,0.254833,0.066042,-0.964727,0.254833,0.066042,-0.964727,0.254833,0.066042,-0.964727, + -0.523629,-0.829306,-0.195099,-0.523629,-0.829306,-0.195099,-0.523629,-0.829306,-0.195099,-0.523629,-0.829306,-0.195099, + -0.254835,-0.066045,0.964727,-0.254835,-0.066045,0.964727,-0.254835,-0.066045,0.964727,-0.254835,-0.066045,0.964727, + 0.442119,0.896293,0.034496,0.442119,0.896293,0.034496,0.442119,0.896293,0.034496,0.442119,0.896293,0.034496, + 0.873364,-0.465743,0.142544,0.873364,-0.465743,0.142544,0.873364,-0.465743,0.142544,0.873364,-0.465743,0.142544, + -0.857890,0.471479,-0.204285,-0.857890,0.471479,-0.204285,-0.857890,0.471479,-0.204285,-0.857890,0.471479,-0.204285, + -0.821128,0.476939,-0.313494,-0.821128,0.476939,-0.313494,-0.821128,0.476939,-0.313494,-0.821128,0.476939,-0.313494, + -0.353968,-0.874403,-0.331853,-0.353968,-0.874403,-0.331853,-0.353968,-0.874403,-0.331853,-0.353968,-0.874403,-0.331853, + 0.509517,0.859477,0.041126,0.509517,0.859477,0.041126,0.509517,0.859477,0.041126,0.509517,0.859477,0.041126, + 0.379074,0.891516,0.247998,0.379074,0.891516,0.247998,0.379074,0.891516,0.247998,0.379074,0.891516,0.247998, + -0.424376,-0.840906,-0.335831,-0.424376,-0.840906,-0.335831,-0.424376,-0.840906,-0.335831,-0.424376,-0.840906,-0.335831, + 0.874911,-0.464966,0.135417,0.874911,-0.464966,0.135417,0.874911,-0.464966,0.135417,0.874911,-0.464966,0.135417, + 0.454531,0.851268,0.262192,0.454531,0.851268,0.262192,0.454531,0.851268,0.262192,0.454531,0.851268,0.262192, + -0.824787,0.476716,-0.304085,-0.824787,0.476716,-0.304085,-0.824787,0.476716,-0.304085,-0.824787,0.476716,-0.304085, + 0.842196,-0.474789,0.255502,0.842196,-0.474789,0.255502,0.842196,-0.474789,0.255502,0.842196,-0.474789,0.255502, + -0.422606,-0.900925,-0.098685,-0.422606,-0.900925,-0.098685,-0.422606,-0.900925,-0.098685,-0.422606,-0.900925,-0.098685, + -0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787, + -0.277541,-0.086777,0.956787,-0.277541,-0.086777,0.956787,-0.277541,-0.086777,0.956787,-0.277541,-0.086777,0.956787, + -0.277540,-0.086778,0.956787,-0.277540,-0.086778,0.956787,-0.277540,-0.086778,0.956787,-0.277540,-0.086778,0.956787, + -0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787, + -0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787, + -0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787,-0.277541,-0.086776,0.956787, + -0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787,-0.277541,-0.086775,0.956787, + -0.277540,-0.086776,0.956787,-0.277540,-0.086776,0.956787,-0.277540,-0.086776,0.956787,-0.277540,-0.086776,0.956787, + -0.497177,-0.860167,-0.113700,-0.497177,-0.860167,-0.113700,-0.497177,-0.860167,-0.113700,-0.497177,-0.860167,-0.113700, + -0.825997,0.475337,-0.302957,-0.825997,0.475337,-0.302957,-0.825997,0.475337,-0.302957,-0.825997,0.475337,-0.302957, + -0.459314,-0.880605,-0.116474,-0.459314,-0.880605,-0.116474,-0.459314,-0.880605,-0.116474,-0.459314,-0.880605,-0.116474, + -0.860850,0.471419,-0.191577,-0.860850,0.471419,-0.191577,-0.860850,0.471419,-0.191577,-0.860850,0.471419,-0.191577, + -0.259032,0.004472,0.965858,-0.259032,0.004472,0.965858,-0.259032,0.004472,0.965858,-0.259032,0.004472,0.965858, + 0.837734,-0.474565,0.270166,0.837734,-0.474565,0.270166,0.837734,-0.474565,0.270166,0.837734,-0.474565,0.270166, + 0.425799,0.874127,0.233661,0.425799,0.874127,0.233661,0.425799,0.874127,0.233661,0.425799,0.874127,0.233661, + 0.839556,-0.476006,0.261848,0.839556,-0.476006,0.261848,0.839556,-0.476006,0.261848,0.839556,-0.476006,0.261848, + -0.312341,-0.101772,0.944503,-0.312341,-0.101772,0.944503,-0.312341,-0.101772,0.944503,-0.312341,-0.101772,0.944503, + -0.861299,0.469684,-0.193809,-0.861299,0.469684,-0.193809,-0.861299,0.469684,-0.193809,-0.861299,0.469684,-0.193809, + -0.874556,0.465863,-0.134622,-0.874556,0.465863,-0.134622,-0.874556,0.465863,-0.134622,-0.874556,0.465863,-0.134622, + 0.454638,0.880448,0.134595,0.454638,0.880448,0.134595,0.454638,0.880448,0.134595,0.454638,0.880448,0.134595, + -0.846416,0.473620,-0.243441,-0.846416,0.473620,-0.243441,-0.846416,0.473620,-0.243441,-0.846416,0.473620,-0.243441, + 0.427237,0.874966,0.227821,0.427237,0.874966,0.227821,0.427237,0.874966,0.227821,0.427237,0.874966,0.227821, + 0.286475,-0.955427,0.071352,0.286475,-0.955427,0.071352,0.286475,-0.955427,0.071352,0.286475,-0.955427,0.071352, + 0.321705,-0.945305,-0.053902,0.321705,-0.945305,-0.053902,0.321705,-0.945305,-0.053902,0.321705,-0.945305,-0.053902, + 0.437777,0.878705,0.190337,0.437777,0.878705,0.190337,0.437777,0.878705,0.190337,0.437777,0.878705,0.190337, + 0.863440,-0.470705,0.181406,0.863440,-0.470705,0.181406,0.863440,-0.470705,0.181406,0.863440,-0.470705,0.181406, + 0.441907,0.879845,0.174904,0.441907,0.879845,0.174904,0.441907,0.879845,0.174904,0.441907,0.879845,0.174904, + 0.854152,-0.472308,0.217598,0.854152,-0.472308,0.217598,0.854152,-0.472308,0.217598,0.854152,-0.472308,0.217598, + -0.919430,-0.295476,-0.259506,-0.919430,-0.295476,-0.259506,-0.919430,-0.295476,-0.259506,-0.919430,-0.295476,-0.259506, + -0.914234,-0.294140,-0.278672,-0.914234,-0.294140,-0.278672,-0.914234,-0.294140,-0.278672,-0.914234,-0.294140,-0.278672, + 0.844327,-0.473903,0.250055,0.844327,-0.473903,0.250055,0.844327,-0.473903,0.250055,0.844327,-0.473903,0.250055, + -0.431320,-0.874109,-0.223376,-0.431320,-0.874109,-0.223376,-0.431320,-0.874109,-0.223376,-0.431320,-0.874109,-0.223376, + 0.869609,-0.467972,0.157423,0.869609,-0.467972,0.157423,0.869609,-0.467972,0.157423,0.869609,-0.467972,0.157423, + -0.457691,-0.882171,-0.110878,-0.457691,-0.882171,-0.110878,-0.457691,-0.882171,-0.110878,-0.457691,-0.882171,-0.110878, + -0.315404,0.948241,0.036859,-0.315404,0.948241,0.036859,-0.315404,0.948241,0.036859,-0.315404,0.948241,0.036859, + -0.283320,0.954718,-0.090794,-0.283320,0.954718,-0.090794,-0.283320,0.954718,-0.090794,-0.283320,0.954718,-0.090794, + -0.462513,-0.882092,-0.089421,-0.462513,-0.882092,-0.089421,-0.462513,-0.882092,-0.089421,-0.462513,-0.882092,-0.089421, + -0.845619,0.473737,-0.245972,-0.845619,0.473737,-0.245972,-0.845619,0.473737,-0.245972,-0.845619,0.473737,-0.245972, + -0.424943,-0.874012,-0.235639,-0.424943,-0.874012,-0.235639,-0.424943,-0.874012,-0.235639,-0.424943,-0.874012,-0.235639, + -0.873490,0.466363,-0.139718,-0.873490,0.466363,-0.139718,-0.873490,0.466363,-0.139718,-0.873490,0.466363,-0.139718, + 0.897501,0.289804,0.332423,0.897501,0.289804,0.332423,0.897501,0.289804,0.332423,0.897501,0.289804,0.332423, + 0.938416,0.300155,0.171121,0.938416,0.300155,0.171121,0.938416,0.300155,0.171121,0.938416,0.300155,0.171121, + 0.281338,0.106262,-0.953707,0.281338,0.106262,-0.953707,0.281338,0.106262,-0.953707,0.281338,0.106262,-0.953707, + 0.472781,0.861780,0.183887,0.472781,0.861780,0.183887,0.472781,0.861780,0.183887,0.472781,0.861780,0.183887, + -0.420671,-0.360788,0.832387,-0.420671,-0.360788,0.832387,-0.420671,-0.360788,0.832387,-0.420671,-0.360788,0.832387, + 0.284736,0.085482,-0.954787,0.284736,0.085482,-0.954787,0.284736,0.085482,-0.954787,0.284736,0.085482,-0.954787, + 0.419420,0.891384,0.171817,0.419420,0.891384,0.171817,0.419420,0.891384,0.171817,0.419420,0.891384,0.171817, + -0.397891,-0.386666,0.831969,-0.397891,-0.386666,0.831969,-0.397891,-0.386666,0.831969,-0.397891,-0.386666,0.831969, + 0.338320,0.065418,-0.938754,0.338320,0.065418,-0.938754,0.338320,0.065418,-0.938754,0.338320,0.065418,-0.938754, + -0.472489,-0.861718,-0.184923,-0.472489,-0.861718,-0.184923,-0.472489,-0.861718,-0.184923,-0.472489,-0.861718,-0.184923, + -0.072400,0.277810,0.957904,-0.072400,0.277810,0.957904,-0.072400,0.277810,0.957904,-0.072400,0.277810,0.957904, + 0.272794,0.053079,-0.960607,0.272794,0.053079,-0.960607,0.272794,0.053079,-0.960607,0.272794,0.053079,-0.960607, + -0.419617,-0.891428,-0.171107,-0.419617,-0.891428,-0.171107,-0.419617,-0.891428,-0.171107,-0.419617,-0.891428,-0.171107, + -0.156553,0.279443,0.947313,-0.156553,0.279443,0.947313,-0.156553,0.279443,0.947313,-0.156553,0.279443,0.947313, + 0.056113,-0.236557,0.969996,0.056113,-0.236557,0.969996,0.056113,-0.236557,0.969996,0.056113,-0.236557,0.969996, + 0.326830,0.031327,-0.944564,0.326830,0.031327,-0.944564,0.326830,0.031327,-0.944564,0.326830,0.031327,-0.944564, + -0.842663,0.498440,-0.203658,-0.842663,0.498440,-0.203658,-0.842663,0.498440,-0.203658,-0.842663,0.498440,-0.203658, + 0.302040,-0.069157,-0.950783,0.302040,-0.069157,-0.950783,0.302040,-0.069157,-0.950783,0.302040,-0.069157,-0.950783, + -0.653446,0.249066,0.714825,-0.653446,0.249066,0.714825,-0.653446,0.249066,0.714825,-0.653446,0.249066,0.714825, + 0.864799,-0.447304,0.228127,0.864799,-0.447304,0.228127,0.864799,-0.447304,0.228127,0.864799,-0.447304,0.228127, + 0.392685,0.026025,-0.919305,0.392685,0.026025,-0.919305,0.392685,0.026025,-0.919305,0.392685,0.026025,-0.919305, + -0.673221,0.171502,0.719278,-0.673221,0.171502,0.719278,-0.673221,0.171502,0.719278,-0.673221,0.171502,0.719278, + 0.839920,-0.503505,0.202526,0.839920,-0.503505,0.202526,0.839920,-0.503505,0.202526,0.839920,-0.503505,0.202526, + 0.177175,-0.263839,0.948155,0.177175,-0.263839,0.948155,0.177175,-0.263839,0.948155,0.177175,-0.263839,0.948155, + 0.263301,0.070207,-0.962156,0.263301,0.070207,-0.962156,0.263301,0.070207,-0.962156,0.263301,0.070207,-0.962156, + -0.869010,0.453220,-0.198529,-0.869010,0.453220,-0.198529,-0.869010,0.453220,-0.198529,-0.869010,0.453220,-0.198529, + 0.278721,0.083406,-0.956743,0.278721,0.083406,-0.956743,0.278721,0.083406,-0.956743,0.278721,0.083406,-0.956743, + 0.166601,-0.233567,0.957962,0.166601,-0.233567,0.957962,0.166601,-0.233567,0.957962,0.166601,-0.233567,0.957962, + 0.223925,0.039785,-0.973794,0.223925,0.039785,-0.973794,0.223925,0.039785,-0.973794,0.223925,0.039785,-0.973794, + -0.862215,0.461207,-0.209461,-0.862215,0.461207,-0.209461,-0.862215,0.461207,-0.209461,-0.862215,0.461207,-0.209461, + 0.290010,0.008046,-0.956990,0.290010,0.008046,-0.956990,0.290010,0.008046,-0.956990,0.290010,0.008046,-0.956990, + -0.654823,0.208607,0.726423,-0.654823,0.208607,0.726423,-0.654823,0.208607,0.726423,-0.654823,0.208607,0.726423, + 0.854817,-0.476113,0.206409,0.854817,-0.476113,0.206409,0.854817,-0.476113,0.206409,0.854817,-0.476113,0.206409, + 0.446300,0.877016,0.177931,0.446300,0.877016,0.177931,0.446300,0.877016,0.177931,0.446300,0.877016,0.177931, + -0.416208,-0.386013,0.823265,-0.416208,-0.386013,0.823265,-0.416208,-0.386013,0.823265,-0.416208,-0.386013,0.823265, + 0.261040,0.006788,-0.965304,0.261040,0.006788,-0.965304,0.261040,0.006788,-0.965304,0.261040,0.006788,-0.965304, + -0.446259,-0.877007,-0.178077,-0.446259,-0.877007,-0.178077,-0.446259,-0.877007,-0.178077,-0.446259,-0.877007,-0.178077, + -0.055162,0.343820,0.937414,-0.055162,0.343820,0.937414,-0.055162,0.343820,0.937414,-0.055162,0.343820,0.937414, + 0.183119,-0.279629,0.942483,0.183119,-0.279629,0.942483,0.183119,-0.279629,0.942483,0.183119,-0.279629,0.942483, + 0.263804,0.070785,-0.961975,0.263804,0.070785,-0.961975,0.263804,0.070785,-0.961975,0.263804,0.070785,-0.961975, + -0.851008,0.489061,-0.191324,-0.851008,0.489061,-0.191324,-0.851008,0.489061,-0.191324,-0.851008,0.489061,-0.191324, + 0.431692,0.876682,0.212299,0.431692,0.876682,0.212299,0.431692,0.876682,0.212299,0.431692,0.876682,0.212299, + 0.432479,0.876376,0.211959,0.432479,0.876376,0.211959,0.432479,0.876376,0.211959,0.432479,0.876376,0.211959, + -0.859020,0.471328,-0.199835,-0.859020,0.471328,-0.199835,-0.859020,0.471328,-0.199835,-0.859020,0.471328,-0.199835, + -0.862385,0.470418,-0.187077,-0.862385,0.470418,-0.187077,-0.862385,0.470418,-0.187077,-0.862385,0.470418,-0.187077, + 0.857878,-0.471619,0.204012,0.857878,-0.471619,0.204012,0.857878,-0.471619,0.204012,0.857878,-0.471619,0.204012, + 0.861311,-0.470721,0.191221,0.861311,-0.470721,0.191221,0.861311,-0.470721,0.191221,0.861311,-0.470721,0.191221, + 0.454919,0.882031,0.122760,0.454919,0.882031,0.122760,0.454919,0.882031,0.122760,0.454919,0.882031,0.122760, + -0.598086,0.437001,-0.671806,-0.598086,0.437001,-0.671806,-0.598086,0.437001,-0.671806,-0.598086,0.437001,-0.671806, + 0.601462,-0.437934,0.668175,0.601462,-0.437934,0.668175,0.601462,-0.437934,0.668175,0.601462,-0.437934,0.668175, + 0.449351,0.881380,0.145786,0.449351,0.881380,0.145786,0.449351,0.881380,0.145786,0.449351,0.881380,0.145786, + -0.880726,0.385037,0.275805,-0.880726,0.385037,0.275805,-0.880726,0.385037,0.275805,-0.880726,0.385037,0.275805, + 0.879826,-0.383580,-0.280665,0.879826,-0.383580,-0.280665,0.879826,-0.383580,-0.280665,0.879826,-0.383580,-0.280665, + -0.842956,0.474069,-0.254331,-0.842956,0.474069,-0.254331,-0.842956,0.474069,-0.254331,-0.842956,0.474069,-0.254331, + -0.238316,-0.707458,-0.665363,-0.238316,-0.707458,-0.665363,-0.238316,-0.707458,-0.665363,-0.238316,-0.707458,-0.665363, + 0.240423,0.709920,0.661974,0.240423,0.709920,0.661974,0.240423,0.709920,0.661974,0.240423,0.709920,0.661974, + -0.847179,0.473514,-0.240983,-0.847179,0.473514,-0.240983,-0.847179,0.473514,-0.240983,-0.847179,0.473514,-0.240983, + -0.508270,-0.785065,0.354026,-0.508270,-0.785065,0.354026,-0.508270,-0.785065,0.354026,-0.508270,-0.785065,0.354026, + 0.508191,0.783240,-0.358158,0.508191,0.783240,-0.358158,0.508191,0.783240,-0.358158,0.508191,0.783240,-0.358158, + 0.920220,-0.386394,0.062407,0.920220,-0.386394,0.062407,0.920220,-0.386394,0.062407,0.920220,-0.386394,0.062407, + 0.483654,0.625023,-0.612719,0.483654,0.625023,-0.612719,0.483654,0.625023,-0.612719,0.483654,0.625023,-0.612719, + -0.484242,-0.627229,0.609995,-0.484242,-0.627229,0.609995,-0.484242,-0.627229,0.609995,-0.484242,-0.627229,0.609995, + 0.825919,-0.474814,0.303989,0.825919,-0.474814,0.303989,0.825919,-0.474814,0.303989,0.825919,-0.474814,0.303989, + -0.825921,0.474808,-0.303993,-0.825921,0.474808,-0.303993,-0.825921,0.474808,-0.303993,-0.825921,0.474808,-0.303993, + -0.358671,-0.025433,0.933117,-0.358671,-0.025433,0.933117,-0.358671,-0.025433,0.933117,-0.358671,-0.025433,0.933117, + 0.342053,-0.007711,-0.939649,0.342053,-0.007711,-0.939649,0.342053,-0.007711,-0.939649,0.342053,-0.007711,-0.939649, + 0.432974,0.879753,0.196388,0.432974,0.879753,0.196388,0.432974,0.879753,0.196388,0.432974,0.879753,0.196388, + -0.466780,-0.878390,-0.102703,-0.466780,-0.878390,-0.102703,-0.466780,-0.878390,-0.102703,-0.466780,-0.878390,-0.102703, + 0.819157,-0.469148,0.329972,0.819157,-0.469148,0.329972,0.819157,-0.469148,0.329972,0.819157,-0.469148,0.329972, + -0.819155,0.469152,-0.329971,-0.819155,0.469152,-0.329971,-0.819155,0.469152,-0.329971,-0.819155,0.469152,-0.329971, + 0.407951,0.073319,-0.910055,0.407951,0.073319,-0.910055,0.407951,0.073319,-0.910055,0.407951,0.073319,-0.910055, + -0.392488,-0.040137,0.918881,-0.392488,-0.040137,0.918881,-0.392488,-0.040137,0.918881,-0.392488,-0.040137,0.918881, + -0.400772,-0.879496,-0.256647,-0.400772,-0.879496,-0.256647,-0.400772,-0.879496,-0.256647,-0.400772,-0.879496,-0.256647, + 0.439633,0.882893,0.164994,0.439633,0.882893,0.164994,0.439633,0.882893,0.164994,0.439633,0.882893,0.164994, + 0.814149,-0.477946,0.329740,0.814149,-0.477946,0.329740,0.814149,-0.477946,0.329740,0.814149,-0.477946,0.329740, + -0.814146,0.477953,-0.329740,-0.814146,0.477953,-0.329740,-0.814146,0.477953,-0.329740,-0.814146,0.477953,-0.329740, + 0.371309,-0.007023,-0.928483,0.371309,-0.007023,-0.928483,0.371309,-0.007023,-0.928483,0.371309,-0.007023,-0.928483, + -0.354213,0.040070,0.934306,-0.354213,0.040070,0.934306,-0.354213,0.040070,0.934306,-0.354213,0.040070,0.934306, + -0.444284,-0.878218,-0.177042,-0.444284,-0.878218,-0.177042,-0.444284,-0.878218,-0.177042,-0.444284,-0.878218,-0.177042, + 0.479295,0.873634,0.083901,0.479295,0.873634,0.083901,0.479295,0.873634,0.083901,0.479295,0.873634,0.083901, + 0.462454,0.882421,0.086429,0.462454,0.882421,0.086429,0.462454,0.882421,0.086429,0.462454,0.882421,0.086429, + -0.462453,-0.882421,-0.086427,-0.462453,-0.882421,-0.086427,-0.462453,-0.882421,-0.086427,-0.462453,-0.882421,-0.086427, + -0.216270,-0.024258,0.976032,-0.216270,-0.024258,0.976032,-0.216270,-0.024258,0.976032,-0.216270,-0.024258,0.976032, + 0.248692,0.006531,-0.968561,0.248692,0.006531,-0.968561,0.248692,0.006531,-0.968561,0.248692,0.006531,-0.968561, + -0.865403,0.469757,-0.174373,-0.865403,0.469757,-0.174373,-0.865403,0.469757,-0.174373,-0.865403,0.469757,-0.174373, + 0.840106,-0.470095,0.270615,0.840106,-0.470095,0.270615,0.840106,-0.470095,0.270615,0.840106,-0.470095,0.270615, + 0.447598,0.886400,0.118116,0.447598,0.886400,0.118116,0.447598,0.886400,0.118116,0.447598,0.886400,0.118116, + -0.447600,-0.886398,-0.118120,-0.447600,-0.886398,-0.118120,-0.447600,-0.886398,-0.118120,-0.447600,-0.886398,-0.118120, + 0.165801,0.073327,-0.983429,0.165801,0.073327,-0.983429,0.165801,0.073327,-0.983429,0.165801,0.073327,-0.983429, + -0.198815,-0.055883,0.978442,-0.198815,-0.055883,0.978442,-0.198815,-0.055883,0.978442,-0.198815,-0.055883,0.978442, + 0.880638,-0.461235,0.108348,0.880638,-0.461235,0.108348,0.880638,-0.461235,0.108348,0.880638,-0.461235,0.108348, + -0.860293,0.466469,-0.205676,-0.860293,0.466469,-0.205676,-0.860293,0.466469,-0.205676,-0.860293,0.466469,-0.205676, + 0.458181,0.880351,0.122688,0.458181,0.880351,0.122688,0.458181,0.880351,0.122688,0.458181,0.880351,0.122688, + -0.458181,-0.880351,-0.122690,-0.458181,-0.880351,-0.122690,-0.458181,-0.880351,-0.122690,-0.458181,-0.880351,-0.122690, + 0.244976,0.032524,-0.968983,0.244976,0.032524,-0.968983,0.244976,0.032524,-0.968983,0.244976,0.032524,-0.968983, + -0.277095,-0.014647,0.960731,-0.277095,-0.014647,0.960731,-0.277095,-0.014647,0.960731,-0.277095,-0.014647,0.960731, + 0.859040,-0.473067,0.195597,0.859040,-0.473067,0.195597,0.859040,-0.473067,0.195597,0.859040,-0.473067,0.195597, + -0.830865,0.474266,-0.291092,-0.830865,0.474266,-0.291092,-0.830865,0.474266,-0.291092,-0.830865,0.474266,-0.291092, + 0.460220,0.880183,0.116086,0.460220,0.880183,0.116086,0.460220,0.880183,0.116086,0.460220,0.880183,0.116086, + -0.826037,0.475339,-0.302846,-0.826037,0.475339,-0.302846,-0.826037,0.475339,-0.302846,-0.826037,0.475339,-0.302846, + 0.268636,-0.955276,0.123624,0.268636,-0.955276,0.123624,0.268636,-0.955276,0.123624,0.268636,-0.955276,0.123624, + 0.859760,-0.470916,0.197612,0.859760,-0.470916,0.197612,0.859760,-0.470916,0.197612,0.859760,-0.470916,0.197612, + 0.448570,0.881258,0.148895,0.448570,0.881258,0.148895,0.448570,0.881258,0.148895,0.448570,0.881258,0.148895, + -0.920484,-0.295592,-0.255607,-0.920484,-0.295592,-0.255607,-0.920484,-0.295592,-0.255607,-0.920484,-0.295592,-0.255607, + -0.425294,-0.870014,-0.249401,-0.425294,-0.870014,-0.249401,-0.425294,-0.870014,-0.249401,-0.425294,-0.870014,-0.249401, + 0.865070,-0.469547,0.176577,0.865070,-0.469547,0.176577,0.865070,-0.469547,0.176577,0.865070,-0.469547,0.176577, + -0.315677,0.948082,0.038590,-0.315677,0.948082,0.038590,-0.315677,0.948082,0.038590,-0.315677,0.948082,0.038590, + -0.826801,0.475311,-0.300797,-0.826801,0.475311,-0.300797,-0.826801,0.475311,-0.300797,-0.826801,0.475311,-0.300797, + -0.420030,-0.871815,-0.252019,-0.420030,-0.871815,-0.252019,-0.420030,-0.871815,-0.252019,-0.420030,-0.871815,-0.252019, + 0.880121,0.285047,0.379651,0.880121,0.285047,0.379651,0.880121,0.285047,0.379651,0.880121,0.285047,0.379651, + 0.472781,0.861780,0.183883,0.472781,0.861780,0.183883,0.472781,0.861780,0.183883,0.472781,0.861780,0.183883, + 0.484300,-0.361120,0.796898,0.484300,-0.361120,0.796898,0.484300,-0.361120,0.796898,0.484300,-0.361120,0.796898, + 0.419422,0.891384,0.171812,0.419422,0.891384,0.171812,0.419422,0.891384,0.171812,0.419422,0.891384,0.171812, + -0.856664,0.365781,0.363775,-0.856664,0.365781,0.363775,-0.856664,0.365781,0.363775,-0.472216,-0.861647,-0.185947, + -0.472216,-0.861647,-0.185947,-0.472216,-0.861647,-0.185947,-0.472216,-0.861647,-0.185947,-0.507785,-0.687929,0.518564, + -0.507785,-0.687929,0.518564,-0.507785,-0.687929,0.518564,-0.507785,-0.687929,0.518564,-0.840218,0.397210,0.369130, + -0.840218,0.397210,0.369130,-0.840218,0.397210,0.369130,-0.419802,-0.891475,-0.170404,-0.419802,-0.891475,-0.170404, + -0.419802,-0.891475,-0.170404,-0.419802,-0.891475,-0.170404,-0.529442,-0.739730,0.415321,-0.529442,-0.739730,0.415321, + -0.529442,-0.739730,0.415321,0.258847,0.684219,0.681793,0.258847,0.684219,0.681793,0.258847,0.684219,0.681793, + 0.221904,0.705645,0.672922,0.221904,0.705645,0.672922,0.221904,0.705645,0.672922,-0.838725,0.499234,-0.217500, + -0.838725,0.499234,-0.217500,-0.838725,0.499234,-0.217500,-0.838725,0.499234,-0.217500,0.453687,-0.419164,0.786428, + 0.453687,-0.419164,0.786428,0.453687,-0.419164,0.786428,0.453687,-0.419164,0.786428,-0.264830,0.277556,-0.923487, + -0.264830,0.277556,-0.923487,-0.264830,0.277556,-0.923487,0.856389,-0.448643,0.255574,0.856389,-0.448643,0.255574, + 0.856389,-0.448643,0.255574,0.856389,-0.448643,0.255574,0.836001,-0.504295,0.216308,0.836001,-0.504295,0.216308, + 0.836001,-0.504295,0.216308,0.836001,-0.504295,0.216308,-0.869009,0.453220,-0.198532,-0.869009,0.453220,-0.198532, + -0.869009,0.453220,-0.198532,-0.869009,0.453220,-0.198532,0.176899,0.604480,0.776731,0.176899,0.604480,0.776731, + 0.176899,0.604480,0.776731,0.176899,0.604480,0.776731,0.142738,0.623974,0.768299,0.142738,0.623974,0.768299, + 0.142738,0.623974,0.768299,0.142738,0.623974,0.768299,-0.506982,-0.752185,0.420935,-0.506982,-0.752185,0.420935, + -0.506982,-0.752185,0.420935,-0.527422,-0.676847,0.513521,-0.527422,-0.676847,0.513521,-0.527422,-0.676847,0.513521, + -0.527422,-0.676847,0.513521,-0.828480,0.301337,0.472035,-0.828480,0.301337,0.472035,-0.828480,0.301337,0.472035, + -0.828480,0.301337,0.472035,-0.814565,0.329893,0.477132,-0.814565,0.329893,0.477132,-0.814565,0.329893,0.477132, + -0.814565,0.329893,0.477132,0.596763,-0.366819,0.713665,0.596763,-0.366819,0.713665,0.596763,-0.366819,0.713665, + 0.564708,-0.431351,0.703591,0.564708,-0.431351,0.703591,0.564708,-0.431351,0.703591,-0.239947,0.326750,-0.914144, + -0.239947,0.326750,-0.914144,-0.239947,0.326750,-0.914144,0.473145,0.516320,-0.713826,0.473145,0.516320,-0.713826, + 0.473145,0.516320,-0.713826,-0.023256,-0.402898,-0.914949,-0.023256,-0.402898,-0.914949,-0.023256,-0.402898,-0.914949, + 0.694560,-0.193669,-0.692877,0.694560,-0.193669,-0.692877,0.694560,-0.193669,-0.692877,0.477312,0.513949,-0.712762, + 0.477312,0.513949,-0.712762,0.477312,0.513949,-0.712762,0.687076,-0.208690,-0.695970,0.687076,-0.208690,-0.695970, + 0.687076,-0.208690,-0.695970,-0.002141,-0.414720,-0.909947,-0.002141,-0.414720,-0.909947,-0.002141,-0.414720,-0.909947, + 0.442888,0.887438,0.127688,0.442888,0.887438,0.127688,0.442888,0.887438,0.127688,0.442888,0.887438,0.127688, + 0.119530,-0.255047,0.959512,0.119530,-0.255047,0.959512,0.119530,-0.255047,0.959512,0.119530,-0.255047,0.959512, + 0.450224,0.879438,0.154555,0.450224,0.879438,0.154555,0.450224,0.879438,0.154555,0.450224,0.879438,0.154555, + 0.667668,0.013344,-0.744339,0.667668,0.013344,-0.744339,0.667668,0.013344,-0.744339,0.667668,0.013344,-0.744339, + 0.438824,0.868158,-0.231810,0.438824,0.868158,-0.231810,0.438824,0.868158,-0.231810,0.438824,0.868158,-0.231810, + -0.418062,-0.882613,-0.214984,-0.418062,-0.882613,-0.214984,-0.418062,-0.882613,-0.214984,-0.418062,-0.882613,-0.214984, + -0.616871,0.105006,0.780028,-0.616871,0.105006,0.780028,-0.616871,0.105006,0.780028,-0.616871,0.105006,0.780028, + 0.445878,0.424069,-0.788263,0.445878,0.424069,-0.788263,0.445878,0.424069,-0.788263,0.445878,0.424069,-0.788263, + -0.854567,0.473638,-0.213031,-0.854567,0.473638,-0.213031,-0.854567,0.473638,-0.213031,-0.854567,0.473638,-0.213031, + -0.238615,-0.816272,-0.526082,-0.238615,-0.816272,-0.526082,-0.238615,-0.816272,-0.526082,-0.238615,-0.816272,-0.526082, + 0.920173,-0.343629,-0.187617,0.920173,-0.343629,-0.187617,0.920173,-0.343629,-0.187617,0.920173,-0.343629,-0.187617, + -0.440757,-0.875801,-0.196738,-0.440757,-0.875801,-0.196738,-0.440757,-0.875801,-0.196738,-0.440757,-0.875801,-0.196738, + -0.104063,0.282549,-0.953592,-0.104063,0.282549,-0.953592,-0.104063,0.282549,-0.953592,-0.104063,0.282549,-0.953592, + -0.719968,0.395512,-0.570278,-0.719968,0.395512,-0.570278,-0.719968,0.395512,-0.570278,-0.719968,0.395512,-0.570278, + -0.079689,0.337733,0.937862,-0.079689,0.337733,0.937862,-0.079689,0.337733,0.937862,-0.079689,0.337733,0.937862, + -0.857514,0.455325,-0.239475,-0.857514,0.455325,-0.239475,-0.857514,0.455325,-0.239475,-0.857514,0.455325,-0.239475, + 0.193078,-0.395984,-0.897729,0.193078,-0.395984,-0.897729,0.193078,-0.395984,-0.897729,0.193078,-0.395984,-0.897729, + 0.867450,-0.466620,0.172617,0.867450,-0.466620,0.172617,0.867450,-0.466620,0.172617,0.867450,-0.466620,0.172617, + -0.418439,-0.439604,0.794768,-0.418439,-0.439604,0.794768,-0.418439,-0.439604,0.794768,-0.418439,-0.439604,0.794768, + 0.879064,-0.452177,0.150939,0.879064,-0.452177,0.150939,0.879064,-0.452177,0.150939,0.879064,-0.452177,0.150939, + -0.312995,0.947591,-0.064070,-0.312995,0.947591,-0.064070,-0.312995,0.947591,-0.064070,-0.312995,0.947591,-0.064070, + 0.117906,0.046249,0.991947,0.117906,0.046249,0.991947,0.117906,0.046249,0.991947,0.117906,0.046249,0.991947, + -0.295229,0.954616,-0.039352,-0.295229,0.954616,-0.039352,-0.295229,0.954616,-0.039352,-0.295229,0.954616,-0.039352, + 0.568452,0.349038,-0.745007,0.568452,0.349038,-0.745007,0.568452,0.349038,-0.745007,0.568452,0.349038,-0.745007, + -0.241784,0.879056,-0.410855,-0.241784,0.879056,-0.410855,-0.241784,0.879056,-0.410855,-0.241784,0.879056,-0.410855, + 0.330853,-0.943488,-0.019172,0.330853,-0.943488,-0.019172,0.330853,-0.943488,-0.019172,0.330853,-0.943488,-0.019172, + -0.616857,-0.225396,0.754112,-0.616857,-0.225396,0.754112,-0.616857,-0.225396,0.754112,-0.616857,-0.225396,0.754112, + 0.151705,0.436949,-0.886601,0.151705,0.436949,-0.886601,0.151705,0.436949,-0.886601,0.151705,0.436949,-0.886601, + -0.908966,-0.304321,-0.284902,-0.908966,-0.304321,-0.284902,-0.908966,-0.304321,-0.284902,-0.908966,-0.304321,-0.284902, + 0.441994,-0.827168,-0.347037,0.441994,-0.827168,-0.347037,0.441994,-0.827168,-0.347037,0.441994,-0.827168,-0.347037, + 0.923153,0.358515,-0.138762,0.923153,0.358515,-0.138762,0.923153,0.358515,-0.138762,0.923153,0.358515,-0.138762, + 0.314126,-0.949360,-0.006329,0.314126,-0.949360,-0.006329,0.314126,-0.949360,-0.006329,0.314126,-0.949360,-0.006329, + -0.125798,-0.015363,-0.991937,-0.125798,-0.015363,-0.991937,-0.125798,-0.015363,-0.991937,-0.125798,-0.015363,-0.991937, + -0.722945,-0.306630,-0.619136,-0.722945,-0.306630,-0.619136,-0.722945,-0.306630,-0.619136,-0.722945,-0.306630,-0.619136, + -0.391093,0.305850,0.868045,-0.391093,0.305850,0.868045,-0.391093,0.305850,0.868045,-0.391093,0.305850,0.868045, + -0.916842,-0.247638,-0.313172,-0.916842,-0.247638,-0.313172,-0.916842,-0.247638,-0.313172,-0.916842,-0.247638,-0.313172, + 0.511513,-0.268083,-0.816386,0.511513,-0.268083,-0.816386,0.511513,-0.268083,-0.816386,0.511513,-0.268083,-0.816386, + 0.938010,0.237651,0.252308,0.938010,0.237651,0.252308,0.938010,0.237651,0.252308,0.938010,0.237651,0.252308, + -0.121927,-0.429145,0.894969,-0.121927,-0.429145,0.894969,-0.121927,-0.429145,0.894969,-0.121927,-0.429145,0.894969, + 0.919887,0.325556,0.218680,0.919887,0.325556,0.218680,0.919887,0.325556,0.218680,0.919887,0.325556,0.218680, + -0.878977,0.463535,-0.111956,-0.878977,0.463535,-0.111956,-0.878977,0.463535,-0.111956,-0.878977,0.463535,-0.111956, + -0.878001,0.465176,-0.112803,-0.878001,0.465176,-0.112803,-0.878001,0.465176,-0.112803,-0.878001,0.465176,-0.112803, + -0.440229,-0.879313,-0.181678,-0.440229,-0.879313,-0.181678,-0.440229,-0.879313,-0.181678,-0.440229,-0.879313,-0.181678, + -0.443561,-0.880189,-0.168882,-0.443561,-0.880189,-0.168882,-0.443561,-0.880189,-0.168882,-0.443561,-0.880189,-0.168882, + 0.439117,0.878993,0.185870,0.439117,0.878993,0.185870,0.439117,0.878993,0.185870,0.439117,0.878993,0.185870, + 0.442481,0.879926,0.173036,0.442481,0.879926,0.173036,0.442481,0.879926,0.173036,0.442481,0.879926,0.173036, + 0.841023,-0.474287,0.260254,0.841023,-0.474287,0.260254,0.841023,-0.474287,0.260254,0.841023,-0.474287,0.260254, + 0.442805,0.879974,0.171959,0.442805,0.879974,0.171959,0.442805,0.879974,0.171959,0.442805,0.879974,0.171959, + -0.443895,-0.880235,-0.167759,-0.443895,-0.880235,-0.167759,-0.443895,-0.880235,-0.167759,-0.443895,-0.880235,-0.167759, + -0.466921,-0.881618,-0.068809,-0.466921,-0.881618,-0.068809,-0.466921,-0.881618,-0.068809,-0.466921,-0.881618,-0.068809, + 0.862173,-0.470500,0.187851,0.862173,-0.470500,0.187851,0.862173,-0.470500,0.187851,0.862173,-0.470500,0.187851, + -0.863216,0.470220,-0.183715,-0.863216,0.470220,-0.183715,-0.863216,0.470220,-0.183715,-0.863216,0.470220,-0.183715, + -0.372204,-0.884263,-0.282033,-0.372204,-0.884263,-0.282033,-0.372204,-0.884263,-0.282033,-0.372204,-0.884263,-0.282033, + 0.748230,-0.292137,-0.595658,0.748230,-0.292137,-0.595658,0.748230,-0.292137,-0.595658,0.748230,-0.292137,-0.595658, + -0.750042,0.293813,0.592545,-0.750042,0.293813,0.592545,-0.750042,0.293813,0.592545,-0.750042,0.293813,0.592545, + 0.902822,-0.413224,0.118986,0.902822,-0.413224,0.118986,0.902822,-0.413224,0.118986,0.902822,-0.413224,0.118986, + -0.881307,0.457804,-0.117105,-0.881307,0.457804,-0.117105,-0.881307,0.457804,-0.117105,-0.881307,0.457804,-0.117105, + -0.187646,-0.121609,0.974680,-0.187646,-0.121609,0.974680,-0.187646,-0.121609,0.974680,-0.187646,-0.121609,0.974680, + 0.178370,0.092787,-0.979579,0.178370,0.092787,-0.979579,0.178370,0.092787,-0.979579,0.178370,0.092787,-0.979579, + 0.469221,0.882982,-0.013206,0.469221,0.882982,-0.013206,0.469221,0.882982,-0.013206,0.469221,0.882982,-0.013206, + -0.214828,-0.974573,-0.063697,-0.214828,-0.974573,-0.063697,-0.214828,-0.974573,-0.063697,-0.214828,-0.974573,-0.063697, + 0.869503,-0.469980,0.151932,0.869503,-0.469980,0.151932,0.869503,-0.469980,0.151932,0.869503,-0.469980,0.151932, + -0.869504,0.469977,-0.151932,-0.869504,0.469977,-0.151932,-0.869504,0.469977,-0.151932,-0.869504,0.469977,-0.151932, + 0.213443,0.081246,-0.973571,0.213443,0.081246,-0.973571,0.213443,0.081246,-0.973571,0.213443,0.081246,-0.973571, + -0.196511,-0.048113,0.979321,-0.196511,-0.048113,0.979321,-0.196511,-0.048113,0.979321,-0.196511,-0.048113,0.979321, + -0.444353,-0.878302,-0.176453,-0.444353,-0.878302,-0.176453,-0.444353,-0.878302,-0.176453,-0.444353,-0.878302,-0.176453, + 0.463641,0.882511,0.078817,0.463641,0.882511,0.078817,0.463641,0.882511,0.078817,0.463641,0.882511,0.078817, + 0.454611,0.881480,0.127760,0.454611,0.881480,0.127760,0.454611,0.881480,0.127760,0.454611,0.881480,0.127760, + -0.426374,-0.875447,-0.227591,-0.426374,-0.875447,-0.227591,-0.426374,-0.875447,-0.227591,-0.426374,-0.875447,-0.227591, + 0.844457,-0.473885,0.249651,0.844457,-0.473885,0.249651,0.844457,-0.473885,0.249651,0.844457,-0.473885,0.249651, + -0.879086,0.463468,-0.111377,-0.879086,0.463468,-0.111377,-0.879086,0.463468,-0.111377,-0.879086,0.463468,-0.111377, + -0.857934,0.471465,-0.204134,-0.857934,0.471465,-0.204134,-0.857934,0.471465,-0.204134,-0.857934,0.471465,-0.204134, + -0.286209,-0.048741,0.956927,-0.286209,-0.048741,0.956927,-0.286209,-0.048741,0.956927,-0.286209,-0.048739,0.956927, + -0.286209,-0.048739,0.956927,-0.286209,-0.048739,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927, + -0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927, + -0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927, + -0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927, + -0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927,-0.286209,-0.048740,0.956927, + 0.843441,-0.474590,0.251737,0.843441,-0.474590,0.251737,0.843441,-0.474590,0.251737,0.843441,-0.474590,0.251737, + 0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,0.869883,-0.467863,0.156228, + 0.869883,-0.467863,0.156228,0.869883,-0.467863,0.156228,-0.825997,0.475339,-0.302957,-0.825997,0.475339,-0.302957, + -0.825997,0.475339,-0.302957,-0.418155,-0.873390,-0.249672,-0.418155,-0.873390,-0.249672,-0.418155,-0.873390,-0.249672, + 0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,0.462040,0.880864,0.102942, + 0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,0.462040,0.880864,0.102942,-0.418155,-0.873390,-0.249672, + -0.418155,-0.873390,-0.249672,-0.418155,-0.873390,-0.249672,-0.418154,-0.873391,-0.249671,-0.418154,-0.873391,-0.249671, + -0.418154,-0.873391,-0.249671,-0.418154,-0.873391,-0.249671,0.869882,-0.467865,0.156228,0.869882,-0.467865,0.156228, + 0.869882,-0.467865,0.156228,0.869883,-0.467865,0.156227,0.869883,-0.467865,0.156227,0.869883,-0.467865,0.156227, + 0.869883,-0.467865,0.156227,-0.825997,0.475338,-0.302956,-0.825997,0.475338,-0.302956,-0.825997,0.475338,-0.302956, + 0.420579,0.875000,0.239767,0.420579,0.875000,0.239767,0.420579,0.875000,0.239767,0.420579,0.875000,0.239767, + -0.337041,-0.020090,0.941276,-0.337041,-0.020090,0.941276,-0.337041,-0.020090,0.941276,-0.337041,-0.020090,0.941276, + -0.234333,-0.077213,0.969085,-0.234333,-0.077213,0.969085,-0.234333,-0.077213,0.969085,-0.234333,-0.077213,0.969085, + -0.454818,-0.882176,-0.122093,-0.454818,-0.882176,-0.122093,-0.454818,-0.882176,-0.122093,-0.454818,-0.882176,-0.122093, + 0.431663,0.876670,0.212408,0.431663,0.876670,0.212408,0.431663,0.876670,0.212408,0.431663,0.876670,0.212408, + -0.464826,-0.881895,-0.078728,-0.464826,-0.881895,-0.078728,-0.464826,-0.881895,-0.078728,-0.464826,-0.881895,-0.078728, + 0.872513,-0.466790,0.144320,0.872513,-0.466790,0.144320,0.872513,-0.466790,0.144320,0.872513,-0.466790,0.144320, + -0.844438,0.473888,-0.249708,-0.844438,0.473888,-0.249708,-0.844438,0.473888,-0.249708,-0.844438,0.473888,-0.249708, + 0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.513680,0.836010,0.192924,0.513680,0.836010,0.192924,0.513680,0.836010,0.192924,0.513680,0.836010,0.192924, + -0.819263,0.544722,-0.179127,-0.819263,0.544722,-0.179127,-0.819263,0.544722,-0.179127,-0.819263,0.544722,-0.179127, + -0.513684,-0.836008,-0.192924,-0.513684,-0.836008,-0.192924,-0.513684,-0.836008,-0.192924,-0.513684,-0.836008,-0.192924, + 0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123, + -0.509738,-0.834910,-0.207587,-0.509738,-0.834910,-0.207587,-0.509738,-0.834910,-0.207587,-0.509738,-0.834910,-0.207587, + -0.816179,0.547767,-0.183855,-0.816179,0.547767,-0.183855,-0.816179,0.547767,-0.183855,-0.816179,0.547767,-0.183855, + 0.514406,0.840190,0.171661,0.514406,0.840190,0.171661,0.514406,0.840190,0.171661,0.514406,0.840190,0.171661, + 0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125, + -0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723,-0.254848,-0.066045,0.964723, + 0.490878,0.827388,0.272887,0.490878,0.827388,0.272887,0.490878,0.827388,0.272887,0.490878,0.827388,0.272887, + -0.513674,-0.836011,-0.192935,-0.513674,-0.836011,-0.192935,-0.513674,-0.836011,-0.192935,-0.513674,-0.836011,-0.192935, + -0.819260,0.544726,-0.179128,-0.819260,0.544726,-0.179128,-0.819260,0.544726,-0.179128,-0.819260,0.544726,-0.179128, + 0.513679,0.836010,0.192929,0.513679,0.836010,0.192929,0.513679,0.836010,0.192929,0.513679,0.836010,0.192929, + 0.819260,-0.544728,0.179124,0.819260,-0.544728,0.179124,0.819260,-0.544728,0.179124,0.819260,-0.544728,0.179124, + 0.248555,0.070221,-0.966069,0.248555,0.070221,-0.966069,0.248555,0.070221,-0.966069,0.248555,0.070221,-0.966069, + 0.130155,0.146328,-0.980637,0.130155,0.146328,-0.980637,0.130155,0.146328,-0.980637,0.130155,0.146328,-0.980637, + -0.513679,-0.836011,-0.192925,-0.513679,-0.836011,-0.192925,-0.513679,-0.836011,-0.192925,-0.513679,-0.836011,-0.192925, + -0.819268,0.544714,-0.179124,-0.819268,0.544714,-0.179124,-0.819268,0.544714,-0.179124,-0.819268,0.544714,-0.179124, + 0.513678,0.836011,0.192927,0.513678,0.836011,0.192927,0.513678,0.836011,0.192927,0.513678,0.836011,0.192927, + 0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125,0.819263,-0.544722,0.179125, + 0.248551,0.070221,-0.966070,0.248551,0.070221,-0.966070,0.248551,0.070221,-0.966070,0.248551,0.070221,-0.966070, + 0.818295,-0.544967,0.182769,0.818295,-0.544967,0.182769,0.818295,-0.544967,0.182769,0.818295,-0.544967,0.182769, + -0.513676,-0.836012,-0.192926,-0.513676,-0.836012,-0.192926,-0.513676,-0.836012,-0.192926,-0.513676,-0.836012,-0.192926, + -0.819272,0.544709,-0.179126,-0.819272,0.544709,-0.179126,-0.819272,0.544709,-0.179126,-0.819272,0.544709,-0.179126, + 0.513676,0.836012,0.192929,0.513676,0.836012,0.192929,0.513676,0.836012,0.192929,0.513676,0.836012,0.192929, + 0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126, + 0.235733,0.078688,-0.968627,0.235733,0.078688,-0.968627,0.235733,0.078688,-0.968627,0.235733,0.078688,-0.968627, + -0.819249,0.544747,-0.179114,-0.819249,0.544747,-0.179114,-0.819249,0.544747,-0.179114,-0.819249,0.544747,-0.179114, + -0.513677,-0.836011,-0.192930,-0.513677,-0.836011,-0.192930,-0.513677,-0.836011,-0.192930,-0.513677,-0.836011,-0.192930, + -0.819265,0.544719,-0.179126,-0.819265,0.544719,-0.179126,-0.819265,0.544719,-0.179126,-0.819265,0.544719,-0.179126, + 0.513677,0.836011,0.192930,0.513677,0.836011,0.192930,0.513677,0.836011,0.192930,0.513677,0.836011,0.192930, + 0.819262,-0.544723,0.179129,0.819262,-0.544723,0.179129,0.819262,-0.544723,0.179129,0.819262,-0.544723,0.179129, + 0.248552,0.070219,-0.966070,0.248552,0.070219,-0.966070,0.248552,0.070219,-0.966070,0.248552,0.070219,-0.966070, + 0.513869,0.836052,0.192239,0.513869,0.836052,0.192239,0.513869,0.836052,0.192239,0.513869,0.836052,0.192239, + -0.510444,-0.838151,-0.192222,-0.510444,-0.838151,-0.192222,-0.510444,-0.838151,-0.192222,-0.510444,-0.838151,-0.192222, + -0.819263,0.544720,-0.179129,-0.819263,0.544720,-0.179129,-0.819263,0.544720,-0.179129,-0.819263,0.544720,-0.179129, + 0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.513678,0.836012,0.192925, + 0.777212,-0.548655,0.308089,0.777212,-0.548655,0.308089,0.777212,-0.548655,0.308089,0.777212,-0.548655,0.308089, + 0.223931,0.086424,-0.970766,0.223931,0.086424,-0.970766,0.223931,0.086424,-0.970766,0.223931,0.086424,-0.970766, + 0.857698,-0.506171,-0.090253,0.857698,-0.506171,-0.090253,0.857698,-0.506171,-0.090253,0.857698,-0.506171,-0.090253, + 0.182451,0.113279,-0.976668,0.182451,0.113279,-0.976668,0.182451,0.113279,-0.976668,0.182451,0.113279,-0.976668, + -0.818289,0.544977,-0.182767,-0.818289,0.544977,-0.182767,-0.818289,0.544977,-0.182767,-0.818289,0.544977,-0.182767, + -0.851317,0.524610,-0.006619,-0.851317,0.524610,-0.006619,-0.851317,0.524610,-0.006619,-0.851317,0.524610,-0.006619, + -0.513866,-0.836054,-0.192238,-0.513866,-0.836054,-0.192238,-0.513866,-0.836054,-0.192238,-0.513866,-0.836054,-0.192238, + -0.490881,-0.827389,-0.272880,-0.490881,-0.827389,-0.272880,-0.490881,-0.827389,-0.272880,-0.490881,-0.827389,-0.272880, + -0.819267,0.544717,-0.179122,-0.819267,0.544717,-0.179122,-0.819267,0.544717,-0.179122,-0.819267,0.544717,-0.179122, + -0.513677,-0.836012,-0.192926,-0.513677,-0.836012,-0.192926,-0.513677,-0.836012,-0.192926,-0.513677,-0.836012,-0.192926, + 0.513680,0.836010,0.192927,0.513680,0.836010,0.192927,0.513680,0.836010,0.192927,0.513680,0.836010,0.192927, + 0.304489,0.158960,-0.939158,0.304489,0.158960,-0.939158,0.304489,0.158960,-0.939158,0.304489,0.158960,-0.939158, + 0.825261,-0.541500,0.160380,0.825261,-0.541500,0.160380,0.825261,-0.541500,0.160380,0.825261,-0.541500,0.160380, + -0.819276,0.544704,-0.179121,-0.819276,0.544704,-0.179121,-0.819276,0.544704,-0.179121,-0.819276,0.544704,-0.179121, + -0.523954,-0.838051,-0.152127,-0.523954,-0.838051,-0.152127,-0.523954,-0.838051,-0.152127,-0.523954,-0.838051,-0.152127, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.819260,-0.544727,0.179124,0.819260,-0.544727,0.179124,0.819260,-0.544727,0.179124,0.819260,-0.544727,0.179124, + 0.513676,0.836012,0.192930,0.513676,0.836012,0.192930,0.513676,0.836012,0.192930,0.513676,0.836012,0.192930, + -0.238396,-0.076931,0.968116,-0.238396,-0.076931,0.968116,-0.238396,-0.076931,0.968116,-0.238396,-0.076931,0.968116, + 0.242620,0.046251,-0.969018,0.242620,0.046251,-0.969018,0.242620,0.046251,-0.969018,0.242620,0.046251,-0.969018, + 0.245668,0.072137,-0.966666,0.245668,0.072137,-0.966666,0.245668,0.072137,-0.966666,0.245668,0.072137,-0.966666, + 0.819262,-0.544723,0.179125,0.819262,-0.544723,0.179125,0.819262,-0.544723,0.179125,0.819262,-0.544723,0.179125, + 0.513674,0.836012,0.192933,0.513674,0.836012,0.192933,0.513674,0.836012,0.192933,0.513674,0.836012,0.192933, + -0.819261,0.544727,-0.179117,-0.819261,0.544727,-0.179117,-0.819261,0.544727,-0.179117,-0.819261,0.544727,-0.179117, + -0.513678,-0.836010,-0.192927,-0.513678,-0.836010,-0.192927,-0.513678,-0.836010,-0.192927,-0.513678,-0.836010,-0.192927, + 0.523951,0.838053,0.152127,0.523951,0.838053,0.152127,0.523951,0.838053,0.152127,0.523951,0.838053,0.152127, + 0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126,0.819260,-0.544726,0.179126, + 0.232984,0.030780,-0.971993,0.232984,0.030780,-0.971993,0.232984,0.030780,-0.971993,0.232984,0.030780,-0.971993, + -0.513679,-0.836013,-0.192914,-0.513679,-0.836013,-0.192914,-0.513679,-0.836013,-0.192914,-0.513679,-0.836013,-0.192914, + -0.513676,-0.836013,-0.192925,-0.513676,-0.836013,-0.192925,-0.513676,-0.836013,-0.192925,-0.513676,-0.836013,-0.192925, + -0.819266,0.544719,-0.179120,-0.819266,0.544719,-0.179120,-0.819266,0.544719,-0.179120,-0.819266,0.544719,-0.179120, + 0.513675,0.836012,0.192930,0.513675,0.836012,0.192930,0.513675,0.836012,0.192930,0.513675,0.836012,0.192930, + 0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123,0.819265,-0.544720,0.179123, + 0.244950,0.072606,-0.966813,0.244950,0.072606,-0.966813,0.244950,0.072606,-0.966813,0.244950,0.072606,-0.966813, + 0.847900,-0.529838,0.018341,0.847900,-0.529838,0.018341,0.847900,-0.529838,0.018341,0.847900,-0.529838,0.018341, + 0.250033,0.058238,-0.966484,0.250033,0.058238,-0.966484,0.250033,0.058238,-0.966484,0.250033,0.058238,-0.966484, + 0.513675,0.836013,0.192926,0.513675,0.836013,0.192926,0.513675,0.836013,0.192926,0.513675,0.836013,0.192926, + -0.813305,0.546296,-0.200237,-0.813305,0.546296,-0.200237,-0.813305,0.546296,-0.200237,-0.813305,0.546296,-0.200237, + -0.513674,-0.836015,-0.192920,-0.513674,-0.836015,-0.192920,-0.513674,-0.836015,-0.192920,-0.513674,-0.836015,-0.192920, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + 0.239038,0.076510,-0.967991,0.239038,0.076510,-0.967991,0.239038,0.076510,-0.967991,0.239038,0.076510,-0.967991, + -0.489569,-0.809018,-0.325288,-0.489569,-0.809018,-0.325288,-0.489569,-0.809018,-0.325288,-0.489569,-0.809018,-0.325288, + -0.495589,-0.860371,-0.118965,-0.495589,-0.860371,-0.118965,-0.495589,-0.860371,-0.118965,-0.495589,-0.860371,-0.118965, + 0.696155,-0.274698,-0.663256,0.696155,-0.274698,-0.663256,0.696155,-0.274698,-0.663256,0.696155,-0.274698,-0.663256, + 0.499111,0.840544,0.210650,0.499111,0.840544,0.210650,0.499111,0.840544,0.210650,0.499111,0.840544,0.210650, + 0.547714,0.822899,0.151152,0.547714,0.822899,0.151152,0.547714,0.822899,0.151152,0.547714,0.822899,0.151152, + 0.696111,-0.274643,-0.663325,0.696111,-0.274643,-0.663325,0.696111,-0.274643,-0.663325,0.696111,-0.274643,-0.663325, + -0.544184,-0.824410,-0.155600,-0.544184,-0.824410,-0.155600,-0.544184,-0.824410,-0.155600,-0.544184,-0.824410,-0.155600, + -0.004961,0.227746,-0.973708,-0.004961,0.227746,-0.973708,-0.004961,0.227746,-0.973708,-0.004961,0.227746,-0.973708, + 0.494654,0.861386,0.115464,0.494654,0.861386,0.115464,0.494654,0.861386,0.115464,0.494654,0.861386,0.115464, + -0.454646,-0.838415,-0.300595,-0.454646,-0.838415,-0.300595,-0.454646,-0.838415,-0.300595,-0.454646,-0.838415,-0.300595, + -0.006167,0.228452,-0.973536,-0.006167,0.228452,-0.973536,-0.006167,0.228452,-0.973536,-0.006167,0.228452,-0.973536, + 0.521349,0.822522,0.227271,0.521349,0.822522,0.227271,0.521349,0.822522,0.227271,0.521349,0.822522,0.227271, + 0.850236,-0.485179,-0.204206,0.850236,-0.485179,-0.204206,0.850236,-0.485179,-0.204206,0.850236,-0.485179,-0.204206, + 0.019498,-0.212884,0.976883,0.019498,-0.212884,0.976883,0.019498,-0.212884,0.976883,0.019498,-0.212884,0.976883, + -0.694059,0.233375,0.681042,-0.694059,0.233375,0.681042,-0.694059,0.233375,0.681042,-0.694059,0.233375,0.681042, + -0.203040,0.369280,-0.906867,-0.203040,0.369280,-0.906867,-0.203040,0.369280,-0.906867,-0.203040,0.369280,-0.906867, + -0.491423,-0.850393,-0.187977,-0.491423,-0.850393,-0.187977,-0.491423,-0.850393,-0.187977,-0.491423,-0.850393,-0.187977, + 0.823386,-0.543534,0.163113,0.823386,-0.543534,0.163113,0.823386,-0.543534,0.163113,0.823386,-0.543534,0.163113, + -0.012990,0.209042,-0.977821,-0.012990,0.209042,-0.977821,-0.012990,0.209042,-0.977821,-0.012990,0.209042,-0.977821, + 0.697718,-0.243188,-0.673831,0.697718,-0.243188,-0.673831,0.697718,-0.243188,-0.673831,0.697718,-0.243188,-0.673831, + 0.551298,0.828871,0.095095,0.551298,0.828871,0.095095,0.551298,0.828871,0.095095,0.551298,0.828871,0.095095, + 0.512138,0.855512,0.076248,0.512138,0.855512,0.076248,0.512138,0.855512,0.076248,0.512138,0.855512,0.076248, + -0.536757,-0.811852,-0.229758,-0.536757,-0.811852,-0.229758,-0.536757,-0.811852,-0.229758,-0.536757,-0.811852,-0.229758, + -0.811017,0.546529,-0.208706,-0.811017,0.546529,-0.208706,-0.811017,0.546529,-0.208706,-0.811017,0.546529,-0.208706, + -0.508758,-0.834611,-0.211162,-0.508758,-0.834611,-0.211162,-0.508758,-0.834611,-0.211162,0.522896,0.837904,0.156511, + 0.522896,0.837904,0.156511,0.522896,0.837904,0.156511,0.519926,0.837409,0.168589,0.519926,0.837409,0.168589, + 0.519926,0.837409,0.168589,0.519926,0.837409,0.168589,-0.510401,-0.835106,-0.205153,-0.510401,-0.835106,-0.205153, + -0.510401,-0.835106,-0.205153,-0.510401,-0.835106,-0.205153,-0.522766,-0.837888,-0.157033,-0.522766,-0.837888,-0.157033, + -0.522766,-0.837888,-0.157033,-0.522766,-0.837888,-0.157033,-0.828118,0.541907,-0.143376,-0.828118,0.541907,-0.143376, + -0.828118,0.541907,-0.143376,-0.828118,0.541907,-0.143376,0.522766,0.837888,0.157030,0.522766,0.837888,0.157030, + 0.522766,0.837888,0.157030,0.522766,0.837888,0.157030,0.828116,-0.541910,0.143377,0.828116,-0.541910,0.143377, + 0.828116,-0.541910,0.143377,0.828116,-0.541910,0.143377,-0.516079,-0.836609,-0.183704,-0.516079,-0.836609,-0.183704, + -0.516079,-0.836609,-0.183704,-0.516079,-0.836609,-0.183704,-0.254842,-0.066048,0.964725,-0.254842,-0.066048,0.964725, + -0.254842,-0.066048,0.964725,-0.254842,-0.066048,0.964725,0.516084,0.836606,0.183707,0.516084,0.836606,0.183707, + 0.516084,0.836606,0.183707,0.516084,0.836606,0.183707,0.823038,-0.543654,0.164462,0.823038,-0.543654,0.164462, + 0.823038,-0.543654,0.164462,0.823038,-0.543654,0.164462,-0.511220,-0.835344,-0.202128,-0.511220,-0.835344,-0.202128, + -0.511220,-0.835344,-0.202128,-0.511220,-0.835344,-0.202128,0.511214,0.835348,0.202126,0.511214,0.835348,0.202126, + 0.511214,0.835348,0.202126,0.511214,0.835348,0.202126,0.823036,-0.543658,0.164463,0.823036,-0.543658,0.164463, + 0.823036,-0.543658,0.164463,0.823036,-0.543658,0.164463,-0.828082,0.541926,-0.143517,-0.828082,0.541926,-0.143517, + -0.828082,0.541926,-0.143517,-0.828082,0.541926,-0.143517,-0.510694,-0.835188,-0.204090,-0.510694,-0.835188,-0.204090, + -0.510694,-0.835188,-0.204090,-0.510694,-0.835188,-0.204090,0.508820,0.834631,0.210937,0.508820,0.834631,0.210937, + 0.508820,0.834631,0.210937,0.508820,0.834631,0.210937,0.828081,-0.541927,0.143517,0.828081,-0.541927,0.143517, + 0.828081,-0.541927,0.143517,0.828081,-0.541927,0.143517,-0.227274,-0.084241,0.970180,-0.227274,-0.084241,0.970180, + -0.227274,-0.084241,0.970180,-0.227274,-0.084241,0.970180,0.811229,-0.546459,0.208062,0.811229,-0.546459,0.208062, + 0.811229,-0.546459,0.208062,0.811229,-0.546459,0.208062,-0.811219,0.546475,-0.208059,-0.811219,0.546475,-0.208059, + -0.811219,0.546475,-0.208059,-0.811219,0.546475,-0.208059,0.522542,0.837847,0.157997,0.522542,0.837847,0.157997, + 0.522542,0.837847,0.157997,0.522542,0.837847,0.157997,0.825597,-0.542832,0.154025,0.825597,-0.542832,0.154025, + 0.825597,-0.542832,0.154025,0.825597,-0.542832,0.154025,-0.825600,0.542827,-0.154026,-0.825600,0.542827,-0.154026, + -0.825600,0.542827,-0.154026,-0.825600,0.542827,-0.154026,0.522421,0.837830,0.158483,0.522421,0.837830,0.158483, + 0.522421,0.837830,0.158483,0.522421,0.837830,0.158483,-0.825691,0.542788,-0.153672,-0.825691,0.542788,-0.153672, + -0.825691,0.542788,-0.153672,-0.825691,0.542788,-0.153672,0.825687,-0.542795,0.153669,0.825687,-0.542795,0.153669, + 0.825687,-0.542795,0.153669,0.825687,-0.542795,0.153669,-0.509135,-0.834723,-0.209806,-0.509135,-0.834723,-0.209806, + -0.509135,-0.834723,-0.209806,-0.509135,-0.834723,-0.209806,-0.811354,0.546445,-0.207610,-0.811354,0.546445,-0.207610, + -0.811354,0.546445,-0.207610,-0.811354,0.546445,-0.207610,0.811360,-0.546434,0.207616,0.811360,-0.546434,0.207616, + 0.811360,-0.546434,0.207616,0.811360,-0.546434,0.207616,-0.509199,-0.834751,-0.209542,-0.509199,-0.834751,-0.209542, + -0.509199,-0.834751,-0.209542,-0.509199,-0.834751,-0.209542,0.508546,0.834550,0.211912,0.508546,0.834550,0.211912, + 0.508546,0.834550,0.211912,0.508546,0.834550,0.211912,0.808759,-0.546882,0.216401,0.808759,-0.546882,0.216401, + 0.808759,-0.546882,0.216401,0.808759,-0.546882,0.216401,-0.508555,-0.834544,-0.211915,-0.508555,-0.834544,-0.211915, + -0.508555,-0.834544,-0.211915,-0.508555,-0.834544,-0.211915,-0.808766,0.546870,-0.216403,-0.808766,0.546870,-0.216403, + -0.808766,0.546870,-0.216403,-0.808766,0.546870,-0.216403,0.511227,0.835342,0.202114,0.511227,0.835342,0.202114, + 0.511227,0.835342,0.202114,0.511227,0.835342,0.202114,-0.511222,-0.835346,-0.202114,-0.511222,-0.835346,-0.202114, + -0.511222,-0.835346,-0.202114,-0.511222,-0.835346,-0.202114,-0.808991,0.546849,-0.215616,-0.808991,0.546849,-0.215616, + -0.808991,0.546849,-0.215616,-0.808991,0.546849,-0.215616,0.516084,0.836602,0.183724,0.516084,0.836602,0.183724, + 0.516084,0.836602,0.183724,0.516084,0.836602,0.183724,-0.516081,-0.836604,-0.183721,-0.516081,-0.836604,-0.183721, + -0.516081,-0.836604,-0.183721,-0.516081,-0.836604,-0.183721,-0.808998,0.546838,-0.215619,-0.808998,0.546838,-0.215619, + -0.808998,0.546838,-0.215619,-0.808998,0.546838,-0.215619,0.808975,-0.546837,0.215706,0.808975,-0.546837,0.215706, + 0.808975,-0.546837,0.215706,0.808975,-0.546837,0.215706,0.523035,0.837925,0.155936,0.523035,0.837925,0.155936, + 0.523035,0.837925,0.155936,0.523035,0.837925,0.155936,-0.523029,-0.837929,-0.155934,-0.523029,-0.837929,-0.155934, + -0.523029,-0.837929,-0.155934,-0.523029,-0.837929,-0.155934,-0.808968,0.546847,-0.215704,-0.808968,0.546847,-0.215704, + -0.808968,0.546847,-0.215704,-0.808968,0.546847,-0.215704,-0.236172,-0.078400,0.968543,-0.236172,-0.078400,0.968543, + -0.236172,-0.078400,0.968543,-0.236172,-0.078400,0.968543,0.814770,-0.545778,0.195644,0.814770,-0.545778,0.195644, + 0.814770,-0.545778,0.195644,0.814770,-0.545778,0.195644,0.510274,0.835211,0.205042,0.510274,0.835211,0.205042, + 0.510274,0.835211,0.205042,0.510274,0.835211,0.205042,-0.814772,0.545775,-0.195644,-0.814772,0.545775,-0.195644, + -0.814772,0.545775,-0.195644,-0.814772,0.545775,-0.195644,-0.510277,-0.835209,-0.205043,-0.510277,-0.835209,-0.205043, + -0.510277,-0.835209,-0.205043,-0.510277,-0.835209,-0.205043,0.814776,-0.545768,0.195645,0.814776,-0.545768,0.195645, + 0.814776,-0.545768,0.195645,0.814776,-0.545768,0.195645,0.513681,0.836009,0.192928,0.513681,0.836009,0.192928, + 0.513681,0.836009,0.192928,0.513681,0.836009,0.192928,-0.814769,0.545779,-0.195644,-0.814769,0.545779,-0.195644, + -0.814769,0.545779,-0.195644,-0.814769,0.545779,-0.195644,-0.513673,-0.836014,-0.192924,-0.513673,-0.836014,-0.192924, + -0.513673,-0.836014,-0.192924,-0.513673,-0.836014,-0.192924,0.814766,-0.545783,0.195644,0.814766,-0.545783,0.195644, + 0.814766,-0.545783,0.195644,0.814766,-0.545783,0.195644,0.510267,0.835217,0.205038,0.510267,0.835217,0.205038, + 0.510267,0.835217,0.205038,0.510267,0.835217,0.205038,-0.814780,0.545762,-0.195645,-0.814780,0.545762,-0.195645, + -0.814780,0.545762,-0.195645,-0.814780,0.545762,-0.195645,-0.513684,-0.836007,-0.192930,-0.513684,-0.836007,-0.192930, + -0.513684,-0.836007,-0.192930,-0.513684,-0.836007,-0.192930,0.254838,0.066044,-0.964726,0.254838,0.066044,-0.964726, + 0.254838,0.066044,-0.964726,0.254838,0.066044,-0.964726,0.513675,0.836013,0.192926,0.513675,0.836013,0.192926, + 0.513675,0.836013,0.192926,0.513675,0.836013,0.192926,-0.819262,0.544725,-0.179122,-0.819262,0.544725,-0.179122, + -0.819262,0.544725,-0.179122,-0.819262,0.544725,-0.179122,-0.513679,-0.836011,-0.192923,-0.513679,-0.836011,-0.192923, + -0.513679,-0.836011,-0.192923,-0.513679,-0.836011,-0.192923,0.819265,-0.544720,0.179125,0.819265,-0.544720,0.179125, + 0.819265,-0.544720,0.179125,0.819265,-0.544720,0.179125,0.113997,0.155538,-0.981230,0.113997,0.155538,-0.981230, + 0.113997,0.155538,-0.981230,0.113997,0.155538,-0.981230,0.513670,0.836016,0.192925,0.513670,0.836016,0.192925, + 0.513670,0.836016,0.192925,0.513670,0.836016,0.192925,-0.852692,0.522244,0.013286,-0.852692,0.522244,0.013286, + -0.852692,0.522244,0.013286,-0.852692,0.522244,0.013286,-0.513680,-0.836009,-0.192929,-0.513680,-0.836009,-0.192929, + -0.513680,-0.836009,-0.192929,-0.513680,-0.836009,-0.192929,0.853287,-0.521278,-0.013064,0.853287,-0.521278,-0.013064, + 0.853287,-0.521278,-0.013064,0.853287,-0.521278,-0.013064,0.830128,-0.531657,0.168016,0.830128,-0.531657,0.168016, + 0.830128,-0.531657,0.168016,0.830128,-0.531657,0.168016,0.212753,0.576777,0.788710,0.212753,0.576777,0.788710, + 0.212753,0.576777,0.788710,0.212753,0.576777,0.788710,-0.830127,0.531661,-0.168008,-0.830127,0.531661,-0.168008, + -0.830127,0.531661,-0.168008,-0.830127,0.531661,-0.168008,-0.212766,-0.576759,-0.788720,-0.212766,-0.576759,-0.788720, + -0.212766,-0.576759,-0.788720,-0.212766,-0.576759,-0.788720,0.813896,-0.551078,0.184082,0.813896,-0.551078,0.184082, + 0.813896,-0.551078,0.184082,0.813896,-0.551078,0.184082,0.180562,0.543190,0.819965,0.180562,0.543190,0.819965, + 0.180562,0.543190,0.819965,0.180562,0.543190,0.819965,-0.813898,0.551076,-0.184080,-0.813898,0.551076,-0.184080, + -0.813898,0.551076,-0.184080,-0.813898,0.551076,-0.184080,-0.175541,-0.537625,-0.824709,-0.175541,-0.537625,-0.824709, + -0.175541,-0.537625,-0.824709,-0.175541,-0.537625,-0.824709,0.813987,-0.550844,0.184377,0.813987,-0.550844,0.184377, + 0.813987,-0.550844,0.184377,0.813987,-0.550844,0.184377,0.197653,0.560467,0.804245,0.197653,0.560467,0.804245, + 0.197653,0.560467,0.804245,0.197653,0.560467,0.804245,-0.813988,0.550844,-0.184379,-0.813988,0.550844,-0.184379, + -0.813988,0.550844,-0.184379,-0.813988,0.550844,-0.184379,-0.197654,-0.560458,-0.804251,-0.197654,-0.560458,-0.804251, + -0.197654,-0.560458,-0.804251,-0.197654,-0.560458,-0.804251,-0.817547,0.549707,-0.171577,-0.817547,0.549707,-0.171577, + -0.817547,0.549707,-0.171577,-0.817547,0.549707,-0.171577,-0.539260,-0.627175,0.562006,-0.539260,-0.627175,0.562006, + -0.539260,-0.627175,0.562006,-0.539260,-0.627175,0.562006,0.817549,-0.549705,0.171578,0.817549,-0.549705,0.171578, + 0.817549,-0.549705,0.171578,0.817549,-0.549705,0.171578,0.539255,0.627178,-0.562007,0.539255,0.627178,-0.562007, + 0.539255,0.627178,-0.562007,0.539255,0.627178,-0.562007,-0.817537,0.549716,-0.171595,-0.817537,0.549716,-0.171595, + -0.817537,0.549716,-0.171595,-0.817537,0.549716,-0.171595,-0.532603,-0.610838,0.585843,-0.532603,-0.610838,0.585843, + -0.532603,-0.610838,0.585843,-0.532603,-0.610838,0.585843,0.817546,-0.549702,0.171597,0.817546,-0.549702,0.171597, + 0.817546,-0.549702,0.171597,0.817546,-0.549702,0.171597,0.532631,0.610805,-0.585852,0.532631,0.610805,-0.585852, + 0.532631,0.610805,-0.585852,0.532631,0.610805,-0.585852,-0.817296,0.550073,-0.171604,-0.817296,0.550073,-0.171604, + -0.817296,0.550073,-0.171604,-0.817296,0.550073,-0.171604,-0.536815,-0.623639,0.568246,-0.536815,-0.623639,0.568246, + -0.536815,-0.623639,0.568246,-0.536815,-0.623639,0.568246,0.817299,-0.550067,0.171606,0.817299,-0.550067,0.171606, + 0.817299,-0.550067,0.171606,0.817299,-0.550067,0.171606,0.534934,0.619011,-0.575040,0.534934,0.619011,-0.575040, + 0.534934,0.619011,-0.575040,0.534934,0.619011,-0.575040,-0.543896,-0.820402,-0.176399,-0.543896,-0.820402,-0.176399, + -0.543896,-0.820402,-0.176399,-0.543896,-0.820402,-0.176399,0.414442,-0.439229,0.797067,0.414442,-0.439229,0.797067, + 0.414442,-0.439229,0.797067,0.414442,-0.439229,0.797067,0.543902,0.820398,0.176402,0.543902,0.820398,0.176402, + 0.543902,0.820398,0.176402,0.543902,0.820398,0.176402,-0.412989,0.438550,-0.798194,-0.412989,0.438550,-0.798194, + -0.412989,0.438550,-0.798194,-0.412989,0.438550,-0.798194,-0.530724,-0.838447,-0.123848,-0.530724,-0.838447,-0.123848, + -0.530724,-0.838447,-0.123848,-0.530724,-0.838447,-0.123848,0.424925,-0.389524,0.817135,0.424925,-0.389524,0.817135, + 0.424925,-0.389524,0.817135,0.424925,-0.389524,0.817135,0.530726,0.838446,0.123847,0.530726,0.838446,0.123847, + 0.530726,0.838446,0.123847,0.530726,0.838446,0.123847,-0.424941,0.389520,-0.817129,-0.424941,0.389520,-0.817129, + -0.424941,0.389520,-0.817129,-0.424941,0.389520,-0.817129,0.802978,-0.547648,0.235177,0.802978,-0.547648,0.235177, + 0.802978,-0.547648,0.235177,0.802978,-0.547648,0.235177,-0.802979,0.547645,-0.235178,-0.802979,0.547645,-0.235178, + -0.802979,0.547645,-0.235178,-0.802979,0.547645,-0.235178,0.541182,0.837777,0.072466,0.541182,0.837777,0.072466, + 0.541182,0.837777,0.072466,0.541182,0.837777,0.072466,-0.807918,0.547001,-0.219225,-0.807918,0.547001,-0.219225, + -0.807918,0.547001,-0.219225,-0.807918,0.547001,-0.219225,0.807917,-0.547004,0.219220,0.807917,-0.547004,0.219220, + 0.807917,-0.547004,0.219220,0.807917,-0.547004,0.219220,-0.497555,-0.830581,-0.250148,-0.497555,-0.830581,-0.250148, + -0.497555,-0.830581,-0.250148,-0.497555,-0.830581,-0.250148,0.840098,-0.535759,0.084839,0.840098,-0.535759,0.084839, + 0.840098,-0.535759,0.084839,0.840098,-0.535759,0.084839,-0.840102,0.535753,-0.084841,-0.840102,0.535753,-0.084841, + -0.840102,0.535753,-0.084841,-0.840102,0.535753,-0.084841,0.554630,0.832073,-0.006385,0.554630,0.832073,-0.006385, + 0.554630,0.832073,-0.006385,0.554630,0.832073,-0.006385,-0.840093,0.535766,-0.084839,-0.840093,0.535766,-0.084839, + -0.840093,0.535766,-0.084839,-0.840093,0.535766,-0.084839,0.840093,-0.535767,0.084841,0.840093,-0.535767,0.084841, + 0.840093,-0.535767,0.084841,0.840093,-0.535767,0.084841,-0.515009,-0.836347,-0.187853,-0.515009,-0.836347,-0.187853, + -0.515009,-0.836347,-0.187853,-0.515009,-0.836347,-0.187853,0.827462,-0.542920,0.143330,0.827462,-0.542920,0.143330, + 0.827462,-0.542920,0.143330,0.827462,-0.542920,0.143330,-0.830635,0.541931,-0.127895,-0.830635,0.541931,-0.127895, + -0.830635,0.541931,-0.127895,-0.830635,0.541931,-0.127895,0.520686,0.837546,0.165537,0.520686,0.837546,0.165537, + 0.520686,0.837546,0.165537,0.520686,0.837546,0.165537,0.809249,-0.545820,0.217248,0.809249,-0.545820,0.217248, + 0.809249,-0.545820,0.217248,0.809249,-0.545820,0.217248,-0.812386,0.545589,-0.205821,-0.812386,0.545589,-0.205821, + -0.812386,0.545589,-0.205821,-0.812386,0.545589,-0.205821,0.520688,0.837545,0.165538,0.520688,0.837545,0.165538, + 0.520688,0.837545,0.165538,0.520688,0.837545,0.165538,0.237918,0.038692,-0.970514,0.237918,0.038692,-0.970514, + 0.237918,0.038692,-0.970514,0.237918,0.038692,-0.970514,0.521731,0.837722,0.161302,0.521731,0.837722,0.161302, + 0.521731,0.837722,0.161302,0.521731,0.837722,0.161302,-0.237917,-0.038692,0.970514,-0.237917,-0.038692,0.970514, + -0.237917,-0.038692,0.970514,-0.237917,-0.038692,0.970514,0.237924,0.038694,-0.970513,0.237924,0.038694,-0.970513, + 0.237924,0.038694,-0.970513,0.237924,0.038694,-0.970513,0.521732,0.837722,0.161301,0.521732,0.837722,0.161301, + 0.521732,0.837722,0.161301,0.521732,0.837722,0.161301,-0.237920,-0.038692,0.970514,-0.237920,-0.038692,0.970514, + -0.237920,-0.038692,0.970514,-0.237920,-0.038692,0.970514,0.237920,0.038682,-0.970514,0.237920,0.038682,-0.970514, + 0.237920,0.038682,-0.970514,0.237920,0.038682,-0.970514,0.521732,0.837722,0.161298,0.521732,0.837722,0.161298, + 0.521732,0.837722,0.161298,0.521732,0.837722,0.161298,-0.237933,-0.038696,0.970510,-0.237933,-0.038696,0.970510, + -0.237933,-0.038696,0.970510,-0.237933,-0.038696,0.970510,0.819253,-0.544739,0.179121,0.819253,-0.544739,0.179121, + 0.819253,-0.544739,0.179121,0.819253,-0.544739,0.179121,0.521726,0.837726,0.161301,0.521726,0.837726,0.161301, + 0.521726,0.837726,0.161301,0.521726,0.837726,0.161301,-0.819250,0.544742,-0.179125,-0.819250,0.544742,-0.179125, + -0.819250,0.544742,-0.179125,-0.819250,0.544742,-0.179125,0.521729,0.837724,0.161301,0.521729,0.837724,0.161301, + 0.521729,0.837724,0.161301,0.521729,0.837724,0.161301,-0.520150,-0.837480,-0.167544,-0.520150,-0.837480,-0.167544, + -0.520150,-0.837480,-0.167544,-0.520150,-0.837480,-0.167544,0.819267,-0.544718,0.179121,0.819267,-0.544718,0.179121, + 0.819267,-0.544718,0.179121,0.819267,-0.544718,0.179121,0.253114,0.063216,-0.965369,0.253114,0.063216,-0.965369, + 0.253114,0.063216,-0.965369,0.253114,0.063216,-0.965369,-0.256690,-0.069017,0.964027,-0.256690,-0.069017,0.964027, + -0.256690,-0.069017,0.964027,-0.256690,-0.069017,0.964027,0.819264,-0.544720,0.179125,0.819264,-0.544720,0.179125, + 0.819264,-0.544720,0.179125,0.819264,-0.544720,0.179125,0.819257,-0.544732,0.179123,0.819257,-0.544732,0.179123, + 0.819257,-0.544732,0.179123,0.819257,-0.544732,0.179123,0.819267,-0.544716,0.179126,0.819267,-0.544716,0.179126, + 0.819267,-0.544716,0.179126,0.819267,-0.544716,0.179126,0.506833,0.834029,0.217982,0.506833,0.834029,0.217982, + 0.506833,0.834029,0.217982,0.506833,0.834029,0.217982,0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126, + 0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126,0.506802,0.834001,0.218160,0.506802,0.834001,0.218160, + 0.506802,0.834001,0.218160,0.506802,0.834001,0.218160,0.819265,-0.544718,0.179127,0.819265,-0.544718,0.179127, + 0.819265,-0.544718,0.179127,0.819265,-0.544718,0.179127,-0.506838,-0.834024,-0.217991,-0.506838,-0.834024,-0.217991, + -0.506838,-0.834024,-0.217991,-0.506838,-0.834024,-0.217991,-0.254854,-0.066029,0.964722,-0.254854,-0.066029,0.964722, + -0.254854,-0.066029,0.964722,-0.254854,-0.066029,0.964722,0.819258,-0.544727,0.179133,0.819258,-0.544727,0.179133, + 0.819258,-0.544727,0.179133,0.819258,-0.544727,0.179133,0.254809,0.066060,-0.964732,0.254809,0.066060,-0.964732, + 0.254809,0.066060,-0.964732,0.254809,0.066060,-0.964732,-0.511703,-0.835484,-0.200317,-0.511703,-0.835484,-0.200317, + -0.511703,-0.835484,-0.200317,-0.511703,-0.835484,-0.200317,0.510858,0.835234,0.203491,0.510858,0.835234,0.203491, + 0.510858,0.835234,0.203491,0.510858,0.835234,0.203491,0.818140,-0.545009,0.183337,0.818140,-0.545009,0.183337, + 0.818140,-0.545009,0.183337,0.818140,-0.545009,0.183337,-0.519140,-0.837257,-0.171739,-0.519140,-0.837257,-0.171739, + -0.519140,-0.837257,-0.171739,-0.519140,-0.837257,-0.171739,0.517520,0.836927,0.178118,0.517520,0.836927,0.178118, + 0.517520,0.836927,0.178118,0.517520,0.836927,0.178118,0.818144,-0.545004,0.183334,0.818144,-0.545004,0.183334, + 0.818144,-0.545004,0.183334,0.818144,-0.545004,0.183334,0.254821,0.066050,-0.964730,0.254821,0.066050,-0.964730, + 0.254821,0.066050,-0.964730,0.254821,0.066050,-0.964730,0.819267,-0.544718,0.179121,0.819267,-0.544718,0.179121, + 0.819267,-0.544718,0.179121,0.819267,-0.544718,0.179121,-0.254832,-0.066045,0.964727,-0.254832,-0.066045,0.964727, + -0.254832,-0.066045,0.964727,-0.254832,-0.066045,0.964727,0.254832,0.066049,-0.964727,0.254832,0.066049,-0.964727, + 0.254832,0.066049,-0.964727,0.254832,0.066049,-0.964727,0.819266,-0.544716,0.179129,0.819266,-0.544716,0.179129, + 0.819266,-0.544716,0.179129,0.819266,-0.544716,0.179129,-0.254847,-0.066048,0.964723,-0.254847,-0.066048,0.964723, + -0.254847,-0.066048,0.964723,-0.254847,-0.066048,0.964723,0.254843,0.066041,-0.964725,0.254843,0.066041,-0.964725, + 0.254843,0.066041,-0.964725,0.254843,0.066041,-0.964725,0.819270,-0.544713,0.179120,0.819270,-0.544713,0.179120, + 0.819270,-0.544713,0.179120,0.819270,-0.544713,0.179120,-0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726, + -0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726,-0.517984,-0.836995,-0.176444,-0.517984,-0.836995,-0.176444, + -0.517984,-0.836995,-0.176444,-0.517984,-0.836995,-0.176444,0.819258,-0.544729,0.179127,0.819258,-0.544729,0.179127, + 0.819258,-0.544729,0.179127,0.819258,-0.544729,0.179127,0.513688,0.836003,0.192932,0.513688,0.836003,0.192932, + 0.513688,0.836003,0.192932,0.513688,0.836003,0.192932,0.819264,-0.544721,0.179126,0.819264,-0.544721,0.179126, + 0.819264,-0.544721,0.179126,0.819264,-0.544721,0.179126,-0.502016,-0.832320,-0.234994,-0.502016,-0.832320,-0.234994, + -0.502016,-0.832320,-0.234994,-0.502016,-0.832320,-0.234994,0.498960,0.831148,0.245423,0.498960,0.831148,0.245423, + 0.498960,0.831148,0.245423,0.498960,0.831148,0.245423,0.818050,-0.545031,0.183673,0.818050,-0.545031,0.183673, + 0.818050,-0.545031,0.183673,0.818050,-0.545031,0.183673,-0.521772,-0.837732,-0.161120,-0.521772,-0.837732,-0.161120, + -0.521772,-0.837732,-0.161120,-0.521772,-0.837732,-0.161120,0.520198,0.837461,0.167488,0.520198,0.837461,0.167488, + 0.520198,0.837461,0.167488,0.520198,0.837461,0.167488,0.818068,-0.545002,0.183679,0.818068,-0.545002,0.183679, + 0.818068,-0.545002,0.183679,0.818068,-0.545002,0.183679,0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724, + 0.254842,0.066046,-0.964724,0.254842,0.066046,-0.964724,0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126, + 0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126,-0.254844,-0.066042,0.964724,-0.254844,-0.066042,0.964724, + -0.254844,-0.066042,0.964724,-0.254844,-0.066042,0.964724,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726, + 0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726,0.819270,-0.544714,0.179118,0.819270,-0.544714,0.179118, + 0.819270,-0.544714,0.179118,0.819270,-0.544714,0.179118,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.254841,0.066041,-0.964725,0.254841,0.066041,-0.964725, + 0.254841,0.066041,-0.964725,0.254841,0.066041,-0.964725,0.819264,-0.544722,0.179122,0.819264,-0.544722,0.179122, + 0.819264,-0.544722,0.179122,0.819264,-0.544722,0.179122,-0.254835,-0.066041,0.964727,-0.254835,-0.066041,0.964727, + -0.254835,-0.066041,0.964727,-0.254835,-0.066041,0.964727,-0.513685,-0.836005,-0.192933,-0.513685,-0.836005,-0.192933, + -0.513685,-0.836005,-0.192933,-0.513685,-0.836005,-0.192933,0.819261,-0.544725,0.179125,0.819261,-0.544725,0.179125, + 0.819261,-0.544725,0.179125,0.819261,-0.544725,0.179125,0.513687,0.836004,0.192932,0.513687,0.836004,0.192932, + 0.513687,0.836004,0.192932,0.513687,0.836004,0.192932,0.819265,-0.544720,0.179125,0.819265,-0.544720,0.179125, + 0.819265,-0.544720,0.179125,0.819265,-0.544720,0.179125,-0.506797,-0.833987,-0.218228,-0.506797,-0.833987,-0.218228, + -0.506797,-0.833987,-0.218228,-0.506797,-0.833987,-0.218228,0.505019,0.833393,0.224524,0.505019,0.833393,0.224524, + 0.505019,0.833393,0.224524,0.505019,0.833393,0.224524,0.818056,-0.545022,0.183674,0.818056,-0.545022,0.183674, + 0.818056,-0.545022,0.183674,0.818056,-0.545022,0.183674,-0.527741,-0.838442,-0.136029,-0.527741,-0.838442,-0.136029, + -0.527741,-0.838442,-0.136029,-0.527741,-0.838442,-0.136029,0.525166,0.838201,0.147035,0.525166,0.838201,0.147035, + 0.525166,0.838201,0.147035,0.525166,0.838201,0.147035,0.818109,-0.545000,0.183500,0.818109,-0.545000,0.183500, + 0.818109,-0.545000,0.183500,0.818109,-0.545000,0.183500,0.254841,0.066041,-0.964725,0.254841,0.066041,-0.964725, + 0.254841,0.066041,-0.964725,0.254841,0.066041,-0.964725,0.819264,-0.544720,0.179127,0.819264,-0.544720,0.179127, + 0.819264,-0.544720,0.179127,0.819264,-0.544720,0.179127,-0.254838,-0.066048,0.964726,-0.254838,-0.066048,0.964726, + -0.254838,-0.066048,0.964726,-0.254838,-0.066048,0.964726,0.232283,0.029668,-0.972196,0.232283,0.029668,-0.972196, + 0.232283,0.029668,-0.972196,0.232283,0.029668,-0.972196,0.819264,-0.544721,0.179126,0.819264,-0.544721,0.179126, + 0.819264,-0.544721,0.179126,0.819264,-0.544721,0.179126,-0.225562,-0.018948,0.974044,-0.225562,-0.018948,0.974044, + -0.225562,-0.018948,0.974044,-0.225562,-0.018948,0.974044,0.254840,0.066041,-0.964726,0.254840,0.066041,-0.964726, + 0.254840,0.066041,-0.964726,0.254840,0.066041,-0.964726,0.819263,-0.544723,0.179120,0.819263,-0.544723,0.179120, + 0.819263,-0.544723,0.179120,0.819263,-0.544723,0.179120,-0.254821,-0.066041,0.964730,-0.254821,-0.066041,0.964730, + -0.254821,-0.066041,0.964730,-0.254821,-0.066041,0.964730,-0.513667,-0.836019,-0.192921,-0.513667,-0.836019,-0.192921, + -0.513667,-0.836019,-0.192921,-0.513667,-0.836019,-0.192921,0.819272,-0.544707,0.179130,0.819272,-0.544707,0.179130, + 0.819272,-0.544707,0.179130,0.819272,-0.544707,0.179130,0.513678,0.836011,0.192926,0.513678,0.836011,0.192926, + 0.513678,0.836011,0.192926,0.513678,0.836011,0.192926,0.819263,-0.544721,0.179126,0.819263,-0.544721,0.179126, + 0.819263,-0.544721,0.179126,0.819263,-0.544721,0.179126,-0.254845,-0.066047,0.964724,-0.254845,-0.066047,0.964724, + -0.254845,-0.066047,0.964724,-0.254845,-0.066047,0.964724,-0.819263,0.544721,-0.179128,-0.819263,0.544721,-0.179128, + -0.819263,0.544721,-0.179128,-0.819263,0.544721,-0.179128,-0.842711,0.495991,-0.209359,-0.842711,0.495991,-0.209359, + -0.842711,0.495991,-0.209359,-0.842711,0.495991,-0.209359,-0.820458,0.544400,-0.174576,-0.820458,0.544400,-0.174576, + -0.820458,0.544400,-0.174576,-0.820458,0.544400,-0.174576,0.254838,0.066046,-0.964725,0.254838,0.066046,-0.964725, + 0.254838,0.066046,-0.964725,0.254838,0.066046,-0.964725,0.254844,0.066035,-0.964725,0.254844,0.066035,-0.964725, + 0.254844,0.066035,-0.964725,0.254844,0.066035,-0.964725,0.513667,0.836018,0.192926,0.513667,0.836018,0.192926, + 0.513667,0.836018,0.192926,0.513667,0.836018,0.192926,-0.257281,-0.020560,0.966118,-0.257281,-0.020560,0.966118, + -0.257281,-0.020560,0.966118,-0.257281,-0.020560,0.966118,0.254846,0.066042,-0.964724,0.254846,0.066042,-0.964724, + 0.254846,0.066042,-0.964724,0.254846,0.066042,-0.964724,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,0.502022,0.832316,0.234998,0.502022,0.832316,0.234998, + 0.502022,0.832316,0.234998,0.502022,0.832316,0.234998,-0.820456,0.544404,-0.174574,-0.820456,0.544404,-0.174574, + -0.820456,0.544404,-0.174574,-0.820456,0.544404,-0.174574,-0.521776,-0.837729,-0.161120,-0.521776,-0.837729,-0.161120, + -0.521776,-0.837729,-0.161120,-0.521776,-0.837729,-0.161120,0.520206,0.837455,0.167494,0.520206,0.837455,0.167494, + 0.520206,0.837455,0.167494,0.520206,0.837455,0.167494,0.321647,0.127059,-0.938296,0.321647,0.127059,-0.938296, + 0.321647,0.127059,-0.938296,0.321647,0.127059,-0.938296,-0.516396,-0.837917,-0.176719,-0.516396,-0.837917,-0.176719, + -0.516396,-0.837917,-0.176719,-0.516396,-0.837917,-0.176719,-0.819267,0.544717,-0.179125,-0.819267,0.544717,-0.179125, + -0.819267,0.544717,-0.179125,-0.819267,0.544717,-0.179125,0.514735,0.836238,0.189084,0.514735,0.836238,0.189084, + 0.514735,0.836238,0.189084,0.514735,0.836238,0.189084,-0.813400,0.547723,-0.195907,-0.813400,0.547723,-0.195907, + -0.813400,0.547723,-0.195907,-0.813400,0.547723,-0.195907,-0.820437,0.544276,-0.175061,-0.820437,0.544276,-0.175061, + -0.820437,0.544276,-0.175061,0.520204,0.837457,0.167494,0.520204,0.837457,0.167494,0.520204,0.837457,0.167494, + 0.520204,0.837457,0.167494,-0.819263,0.544721,-0.179128,-0.819263,0.544721,-0.179128,-0.819263,0.544721,-0.179128, + -0.819263,0.544721,-0.179128,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,0.276921,0.102297,-0.955432,0.276921,0.102297,-0.955432,0.276921,0.102297,-0.955432, + 0.276921,0.102297,-0.955432,-0.820249,0.544460,-0.175373,-0.820249,0.544460,-0.175373,-0.820249,0.544460,-0.175373, + 0.295739,0.037152,-0.954546,0.295739,0.037152,-0.954546,0.295739,0.037152,-0.954546,0.295739,0.037152,-0.954546, + -0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723, + -0.501026,-0.831954,-0.238382,-0.501026,-0.831954,-0.238382,-0.501026,-0.831954,-0.238382,-0.501026,-0.831954,-0.238382, + -0.820297,0.544451,-0.175173,-0.820297,0.544451,-0.175173,-0.820297,0.544451,-0.175173,-0.504432,-0.833180,-0.226627, + -0.504432,-0.833180,-0.226627,-0.504432,-0.833180,-0.226627,-0.504432,-0.833180,-0.226627,-0.508449,-0.834513,-0.212294, + -0.508449,-0.834513,-0.212294,-0.508449,-0.834513,-0.212294,-0.508449,-0.834513,-0.212294,0.508057,0.834405,0.213651, + 0.508057,0.834405,0.213651,0.508057,0.834405,0.213651,0.508057,0.834405,0.213651,0.819239,-0.544167,0.180914, + 0.819239,-0.544167,0.180914,0.819239,-0.544167,0.180914,0.819239,-0.544167,0.180914,-0.517284,-0.836873,-0.179058, + -0.517284,-0.836873,-0.179058,-0.517284,-0.836873,-0.179058,-0.517284,-0.836873,-0.179058,0.517050,0.836821,0.179970, + 0.517050,0.836821,0.179970,0.517050,0.836821,0.179970,0.517050,0.836821,0.179970,0.818423,-0.545498,0.180601, + 0.818423,-0.545498,0.180601,0.818423,-0.545498,0.180601,0.818423,-0.545498,0.180601,0.254839,0.066047,-0.964725, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.819263,-0.544721,0.179126, + 0.819263,-0.544721,0.179126,0.819263,-0.544721,0.179126,0.819263,-0.544721,0.179126,-0.254848,-0.066042,0.964723, + -0.254848,-0.066042,0.964723,-0.254848,-0.066042,0.964723,-0.254848,-0.066042,0.964723,0.497328,0.830492,0.250892, + 0.497328,0.830492,0.250892,0.497328,0.830492,0.250892,0.497328,0.830492,0.250892,-0.819264,0.544720,-0.179128, + -0.819264,0.544720,-0.179128,-0.819264,0.544720,-0.179128,-0.819264,0.544720,-0.179128,0.256573,0.068838,-0.964070, + 0.256573,0.068838,-0.964070,0.256573,0.068838,-0.964070,0.256573,0.068838,-0.964070,-0.252983,-0.062992,0.965418, + -0.252983,-0.062992,0.965418,-0.252983,-0.062992,0.965418,-0.252983,-0.062992,0.965418,-0.819265,0.544719,-0.179126, + -0.819265,0.544719,-0.179126,-0.819265,0.544719,-0.179126,-0.819265,0.544719,-0.179126,-0.819261,0.544725,-0.179125, + -0.819261,0.544725,-0.179125,-0.819261,0.544725,-0.179125,-0.819261,0.544725,-0.179125,-0.819262,0.544722,-0.179126, + -0.819262,0.544722,-0.179126,-0.819262,0.544722,-0.179126,-0.819262,0.544722,-0.179126,-0.519272,-0.837303,-0.171116, + -0.519272,-0.837303,-0.171116,-0.519272,-0.837303,-0.171116,-0.519272,-0.837303,-0.171116,-0.819266,0.544717,-0.179127, + -0.819266,0.544717,-0.179127,-0.819266,0.544717,-0.179127,-0.819266,0.544717,-0.179127,-0.513646,-0.836034,-0.192912, + -0.513646,-0.836034,-0.192912,-0.513646,-0.836034,-0.192912,-0.513646,-0.836034,-0.192912,-0.819258,0.544731,-0.179123, + -0.819258,0.544731,-0.179123,-0.819258,0.544731,-0.179123,-0.819258,0.544731,-0.179123,0.513687,0.836004,0.192931, + 0.513687,0.836004,0.192931,0.513687,0.836004,0.192931,0.513687,0.836004,0.192931,-0.266002,-0.084255,0.960283, + -0.266002,-0.084255,0.960283,-0.266002,-0.084255,0.960283,-0.266002,-0.084255,0.960283,-0.819265,0.544718,-0.179130, + -0.819265,0.544718,-0.179130,-0.819265,0.544718,-0.179130,-0.819265,0.544718,-0.179130,0.243624,0.047907,-0.968686, + 0.243624,0.047907,-0.968686,0.243624,0.047907,-0.968686,0.243624,0.047907,-0.968686,0.518786,0.837195,0.173109, + 0.518786,0.837195,0.173109,0.518786,0.837195,0.173109,0.518786,0.837195,0.173109,-0.518569,-0.837151,-0.173967, + -0.518569,-0.837151,-0.173967,-0.518569,-0.837151,-0.173967,-0.518569,-0.837151,-0.173967,-0.820324,0.544499,-0.174898, + -0.820324,0.544499,-0.174898,-0.820324,0.544499,-0.174898,-0.820324,0.544499,-0.174898,0.509689,0.834900,0.207746, + 0.509689,0.834900,0.207746,0.509689,0.834900,0.207746,0.509689,0.834900,0.207746,-0.512658,-0.835744,-0.196760, + -0.512658,-0.835744,-0.196760,-0.512658,-0.835744,-0.196760,-0.512658,-0.835744,-0.196760,-0.820320,0.544507,-0.174893, + -0.820320,0.544507,-0.174893,-0.820320,0.544507,-0.174893,-0.820320,0.544507,-0.174893,0.243195,0.047164,-0.968830, + 0.243195,0.047164,-0.968830,0.243195,0.047164,-0.968830,0.243195,0.047164,-0.968830,-0.819264,0.544721,-0.179124, + -0.819264,0.544721,-0.179124,-0.819264,0.544721,-0.179124,-0.819264,0.544721,-0.179124,-0.243182,-0.047167,0.968833, + -0.243182,-0.047167,0.968833,-0.243182,-0.047167,0.968833,-0.243182,-0.047167,0.968833,0.242614,0.046225,-0.969021, + 0.242614,0.046225,-0.969021,0.242614,0.046225,-0.969021,0.242614,0.046225,-0.969021,-0.819264,0.544720,-0.179127, + -0.819264,0.544720,-0.179127,-0.819264,0.544720,-0.179127,-0.819264,0.544720,-0.179127,-0.242363,-0.045826,0.969103, + -0.242363,-0.045826,0.969103,-0.242363,-0.045826,0.969103,-0.242363,-0.045826,0.969103,0.243210,0.047162,-0.968826, + 0.243210,0.047162,-0.968826,0.243210,0.047162,-0.968826,0.243210,0.047162,-0.968826,-0.819268,0.544715,-0.179127, + -0.819268,0.544715,-0.179127,-0.819268,0.544715,-0.179127,-0.819268,0.544715,-0.179127,-0.243185,-0.047166,0.968832, + -0.243185,-0.047166,0.968832,-0.243185,-0.047166,0.968832,-0.243185,-0.047166,0.968832,0.514399,0.836196,0.190183, + 0.514399,0.836196,0.190183,0.514399,0.836196,0.190183,0.514399,0.836196,0.190183,-0.819272,0.544707,-0.179129, + -0.819272,0.544707,-0.179129,-0.819272,0.544707,-0.179129,-0.819272,0.544707,-0.179129,-0.514373,-0.836184,-0.190306, + -0.514373,-0.836184,-0.190306,-0.514373,-0.836184,-0.190306,-0.514373,-0.836184,-0.190306,-0.819266,0.544718,-0.179127, + -0.819266,0.544718,-0.179127,-0.819266,0.544718,-0.179127,-0.819266,0.544718,-0.179127,0.516298,0.836658,0.182866, + 0.516298,0.836658,0.182866,0.516298,0.836658,0.182866,0.516298,0.836658,0.182866,-0.516492,-0.836706,-0.182096, + -0.516492,-0.836706,-0.182096,-0.516492,-0.836706,-0.182096,-0.516492,-0.836706,-0.182096,-0.820173,0.543872,-0.177536, + -0.820173,0.543872,-0.177536,-0.820173,0.543872,-0.177536,-0.820173,0.543872,-0.177536,0.507833,0.834322,0.214505, + 0.507833,0.834322,0.214505,0.507833,0.834322,0.214505,0.507833,0.834322,0.214505,-0.508253,-0.834457,-0.212978, + -0.508253,-0.834457,-0.212978,-0.508253,-0.834457,-0.212978,-0.508253,-0.834457,-0.212978,-0.819285,0.545321,-0.177194, + -0.819285,0.545321,-0.177194,-0.819285,0.545321,-0.177194,-0.819285,0.545321,-0.177194,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,-0.819266,0.544717,-0.179127, + -0.819266,0.544717,-0.179127,-0.819266,0.544717,-0.179127,-0.819266,0.544717,-0.179127,-0.472219,-0.819271,-0.325277, + -0.472219,-0.819271,-0.325277,-0.472219,-0.819271,-0.325277,-0.472219,-0.819271,-0.325277,-0.801975,0.546399,-0.241421, + -0.801975,0.546399,-0.241421,-0.801975,0.546399,-0.241421,-0.801975,0.546399,-0.241421,0.517908,0.831352,0.201555, + 0.517908,0.831352,0.201555,0.517908,0.831352,0.201555,0.517908,0.831352,0.201555,0.819265,-0.544719,0.179125, + 0.819265,-0.544719,0.179125,0.819265,-0.544719,0.179125,0.819265,-0.544719,0.179125,0.224440,0.017868,-0.974324, + 0.224440,0.017868,-0.974324,0.224440,0.017868,-0.974324,0.224440,0.017868,-0.974324,-0.254846,-0.066045,0.964724, + -0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.254846,-0.066045,0.964724,-0.557471,-0.829779,0.026321, + -0.557471,-0.829779,0.026321,-0.557471,-0.829779,0.026321,-0.557471,-0.829779,0.026321,-0.819263,0.544722,-0.179128, + -0.819263,0.544722,-0.179128,-0.819263,0.544722,-0.179128,-0.819263,0.544722,-0.179128,0.513678,0.836012,0.192925, + 0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.819265,-0.544719,0.179128, + 0.819265,-0.544719,0.179128,0.819265,-0.544719,0.179128,0.819265,-0.544719,0.179128,0.254842,0.066043,-0.964725, + 0.254842,0.066043,-0.964725,0.254842,0.066043,-0.964725,0.254842,0.066043,-0.964725,-0.254845,-0.066050,0.964723, + -0.254845,-0.066050,0.964723,-0.254845,-0.066050,0.964723,-0.254845,-0.066050,0.964723,-0.504806,-0.818734,-0.273580, + -0.504806,-0.818734,-0.273580,-0.504806,-0.818734,-0.273580,-0.504806,-0.818734,-0.273580,-0.819264,0.544721,-0.179123, + -0.819264,0.544721,-0.179123,-0.819264,0.544721,-0.179123,-0.819264,0.544721,-0.179123,0.504806,0.818733,0.273580, + 0.504806,0.818733,0.273580,0.504806,0.818733,0.273580,0.504806,0.818733,0.273580,0.819260,-0.544726,0.179125, + 0.819260,-0.544726,0.179125,0.819260,-0.544726,0.179125,0.819260,-0.544726,0.179125,0.254840,0.066047,-0.964725, + 0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,-0.254845,-0.066044,0.964724, + -0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.513678,-0.836012,-0.192925, + -0.513678,-0.836012,-0.192925,-0.513678,-0.836012,-0.192925,-0.513678,-0.836012,-0.192925,-0.819262,0.544725,-0.179123, + -0.819262,0.544725,-0.179123,-0.819262,0.544725,-0.179123,-0.819262,0.544725,-0.179123,0.549327,0.835162,0.027284, + 0.549327,0.835162,0.027284,0.549327,0.835162,0.027284,0.549327,0.835162,0.027284,0.819261,-0.544724,0.179130, + 0.819261,-0.544724,0.179130,0.819261,-0.544724,0.179130,0.819261,-0.544724,0.179130,0.312079,0.161501,-0.936229, + 0.312079,0.161501,-0.936229,0.312079,0.161501,-0.936229,0.312079,0.161501,-0.936229,-0.254845,-0.066047,0.964724, + -0.254845,-0.066047,0.964724,-0.254845,-0.066047,0.964724,-0.254845,-0.066047,0.964724,-0.513674,-0.836014,-0.192923, + -0.513674,-0.836014,-0.192923,-0.513674,-0.836014,-0.192923,-0.513674,-0.836014,-0.192923,-0.819261,0.544725,-0.179125, + -0.819261,0.544725,-0.179125,-0.819261,0.544725,-0.179125,-0.819261,0.544725,-0.179125,-0.513676,-0.836011,-0.192929, + -0.513676,-0.836011,-0.192929,-0.513676,-0.836011,-0.192929,-0.513676,-0.836011,-0.192929,0.819262,-0.544722,0.179127, + 0.819262,-0.544722,0.179127,0.819262,-0.544722,0.179127,0.819262,-0.544722,0.179127,0.254841,0.066042,-0.964725, + 0.254841,0.066042,-0.964725,0.254841,0.066042,-0.964725,0.254841,0.066042,-0.964725,-0.254847,-0.066044,0.964723, + -0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,-0.819263,0.544722,-0.179124, + -0.819263,0.544722,-0.179124,-0.819263,0.544722,-0.179124,-0.819263,0.544722,-0.179124,0.819269,-0.544713,0.179122, + 0.819269,-0.544713,0.179122,0.819269,-0.544713,0.179122,0.819269,-0.544713,0.179122,0.334613,0.200479,-0.920784, + 0.334613,0.200479,-0.920784,0.334613,0.200479,-0.920784,0.334613,0.200479,-0.920784,-0.254846,-0.066048,0.964723, + -0.254846,-0.066048,0.964723,-0.254846,-0.066048,0.964723,-0.254846,-0.066048,0.964723,-0.819262,0.544723,-0.179127, + -0.819262,0.544723,-0.179127,-0.819262,0.544723,-0.179127,-0.819262,0.544723,-0.179127,0.541605,0.837689,0.070286, + 0.541605,0.837689,0.070286,0.541605,0.837689,0.070286,0.541605,0.837689,0.070286,-0.513682,-0.836008,-0.192930, + -0.513682,-0.836008,-0.192930,-0.513682,-0.836008,-0.192930,-0.513682,-0.836008,-0.192930,0.254856,0.066044,-0.964721, + 0.254856,0.066044,-0.964721,0.254856,0.066044,-0.964721,0.254856,0.066044,-0.964721,-0.254839,-0.066047,0.964725, + -0.254839,-0.066047,0.964725,-0.254839,-0.066047,0.964725,-0.254839,-0.066047,0.964725,-0.819265,0.544719,-0.179128, + -0.819265,0.544719,-0.179128,-0.819265,0.544719,-0.179128,-0.819265,0.544719,-0.179128,0.527664,0.838444,0.136316, + 0.527664,0.838444,0.136316,0.527664,0.838444,0.136316,0.527664,0.838444,0.136316,-0.497937,-0.830734,-0.248879, + -0.497937,-0.830734,-0.248879,-0.497937,-0.830734,-0.248879,-0.497937,-0.830734,-0.248879,0.254840,0.066051,-0.964725, + 0.254840,0.066051,-0.964725,0.254840,0.066051,-0.964725,0.254840,0.066051,-0.964725,-0.254865,-0.066045,0.964719, + -0.254865,-0.066045,0.964719,-0.254865,-0.066045,0.964719,-0.254865,-0.066045,0.964719,-0.826813,0.542400,-0.148941, + -0.826813,0.542400,-0.148941,-0.826813,0.542400,-0.148941,-0.826813,0.542400,-0.148941,0.504252,0.833119,0.227249, + 0.504252,0.833119,0.227249,0.504252,0.833119,0.227249,0.504252,0.833119,0.227249,-0.513673,-0.836014,-0.192925, + -0.513673,-0.836014,-0.192925,-0.513673,-0.836014,-0.192925,-0.513673,-0.836014,-0.192925,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,-0.254840,-0.066047,0.964725, + -0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,0.819265,-0.544719,0.179127, + 0.819265,-0.544719,0.179127,0.819265,-0.544719,0.179127,0.819265,-0.544719,0.179127,-0.513666,-0.836018,-0.192927, + -0.513666,-0.836018,-0.192927,-0.513666,-0.836018,-0.192927,-0.513666,-0.836018,-0.192927,0.537089,0.838384,0.092997, + 0.537089,0.838384,0.092997,0.537089,0.838384,0.092997,0.537089,0.838384,0.092997,0.254861,0.066044,-0.964720, + 0.254861,0.066044,-0.964720,0.254861,0.066044,-0.964720,0.254861,0.066044,-0.964720,-0.254850,-0.066048,0.964722, + -0.254850,-0.066048,0.964722,-0.254850,-0.066048,0.964722,-0.254850,-0.066048,0.964722,0.819263,-0.544723,0.179126, + 0.819263,-0.544723,0.179126,0.819263,-0.544723,0.179126,0.819263,-0.544723,0.179126,-0.485016,-0.824920,-0.290287, + -0.485016,-0.824920,-0.290287,-0.485016,-0.824920,-0.290287,-0.485016,-0.824920,-0.290287,0.513674,0.836014,0.192925, + 0.513674,0.836014,0.192925,0.513674,0.836014,0.192925,0.513674,0.836014,0.192925,0.210483,-0.004885,-0.977585, + 0.210483,-0.004885,-0.977585,0.210483,-0.004885,-0.977585,0.210483,-0.004885,-0.977585,-0.254847,-0.066044,0.964723, + -0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,-0.254847,-0.066044,0.964723,0.819262,-0.544724,0.179124, + 0.819262,-0.544724,0.179124,0.819262,-0.544724,0.179124,0.819262,-0.544724,0.179124,-0.539506,-0.838072,-0.081042, + -0.539506,-0.838072,-0.081042,-0.539506,-0.838072,-0.081042,-0.539506,-0.838072,-0.081042,0.541063,0.837804,0.073044, + 0.541063,0.837804,0.073044,0.541063,0.837804,0.073044,0.541063,0.837804,0.073044,0.254837,0.066050,-0.964726, + 0.254837,0.066050,-0.964726,0.254837,0.066050,-0.964726,0.254837,0.066050,-0.964726,-0.277214,-0.102783,0.955295, + -0.277214,-0.102783,0.955295,-0.277214,-0.102783,0.955295,-0.277214,-0.102783,0.955295,0.819262,-0.544723,0.179127, + 0.819262,-0.544723,0.179127,0.819262,-0.544723,0.179127,0.819262,-0.544723,0.179127,-0.422564,-0.784677,-0.453565, + -0.422564,-0.784677,-0.453565,-0.422564,-0.784677,-0.453565,-0.422564,-0.784677,-0.453565,0.527541,0.838435,0.136848, + 0.527541,0.838435,0.136848,0.527541,0.838435,0.136848,0.527541,0.838435,0.136848,0.254852,0.066040,-0.964722, + 0.254852,0.066040,-0.964722,0.254852,0.066040,-0.964722,0.254852,0.066040,-0.964722,-0.254849,-0.066046,0.964723, + -0.254849,-0.066046,0.964723,-0.254849,-0.066046,0.964723,-0.254849,-0.066046,0.964723,0.819265,-0.544719,0.179126, + 0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126,0.819265,-0.544719,0.179126,-0.513678,-0.836011,-0.192929, + -0.513678,-0.836011,-0.192929,-0.513678,-0.836011,-0.192929,-0.513678,-0.836011,-0.192929,0.513678,0.836012,0.192925, + 0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.513678,0.836012,0.192925,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.254833,-0.066045,0.964727, + -0.254833,-0.066045,0.964727,-0.254833,-0.066045,0.964727,-0.254833,-0.066045,0.964727,-0.819268,0.544716,-0.179124, + -0.819268,0.544716,-0.179124,-0.819268,0.544716,-0.179124,-0.819268,0.544716,-0.179124,0.513671,0.836016,0.192924, + 0.513671,0.836016,0.192924,0.513671,0.836016,0.192924,0.513671,0.836016,0.192924,-0.513669,-0.836017,-0.192926, + -0.513669,-0.836017,-0.192926,-0.513669,-0.836017,-0.192926,-0.513669,-0.836017,-0.192926,0.254851,0.066040,-0.964723, + 0.254851,0.066040,-0.964723,0.254851,0.066040,-0.964723,0.254851,0.066040,-0.964723,-0.254852,-0.066040,0.964722, + -0.254852,-0.066040,0.964722,-0.254852,-0.066040,0.964722,-0.254852,-0.066040,0.964722,-0.819265,0.544719,-0.179125, + -0.819265,0.544719,-0.179125,-0.819265,0.544719,-0.179125,-0.819265,0.544719,-0.179125,0.527555,0.838428,0.136839, + 0.527555,0.838428,0.136839,0.527555,0.838428,0.136839,0.527555,0.838428,0.136839,-0.513672,-0.836014,-0.192930, + -0.513672,-0.836014,-0.192930,-0.513672,-0.836014,-0.192930,-0.513672,-0.836014,-0.192930,0.254845,0.066046,-0.964724, + 0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,-0.254856,-0.066040,0.964721, + -0.254856,-0.066040,0.964721,-0.254856,-0.066040,0.964721,-0.254856,-0.066040,0.964721,0.212544,0.720111,0.660504, + 0.212544,0.720111,0.660504,0.212544,0.720111,0.660504,0.212544,0.720111,0.660504,-0.584558,-0.716749,0.380214, + -0.584558,-0.716749,0.380214,-0.584558,-0.716749,0.380214,-0.584558,-0.716749,0.380214,0.837347,-0.546649,-0.004889, + 0.837347,-0.546649,-0.004889,0.837347,-0.546649,-0.004889,0.837347,-0.546649,-0.004889,-0.230107,-0.743150,-0.628314, + -0.230107,-0.743150,-0.628314,-0.230107,-0.743150,-0.628314,-0.230107,-0.743150,-0.628314,0.651665,0.704474,-0.281156, + 0.651665,0.704474,-0.281156,0.651665,0.704474,-0.281156,0.651665,0.704474,-0.281156,0.870448,-0.492259,-0.000724, + 0.870448,-0.492259,-0.000724,0.870448,-0.492259,-0.000724,0.870448,-0.492259,-0.000724,0.841670,-0.534645,0.075805, + 0.841670,-0.534645,0.075805,0.841670,-0.534645,0.075805,0.817352,-0.547721,0.178709,0.817352,-0.547721,0.178709, + 0.817352,-0.547721,0.178709,0.817352,-0.547721,0.178709,0.615742,0.762463,0.198777,0.615742,0.762463,0.198777, + 0.615742,0.762463,0.198777,0.615742,0.762463,0.198777,-0.242292,-0.045722,0.969125,-0.242292,-0.045722,0.969125, + -0.242292,-0.045722,0.969125,-0.242292,-0.045722,0.969125,-0.307828,-0.681360,-0.664071,-0.307828,-0.681360,-0.664071, + -0.307828,-0.681360,-0.664071,-0.307828,-0.681360,-0.664071,-0.068514,-0.184580,0.980426,-0.068514,-0.184580,0.980426, + -0.068514,-0.184580,0.980426,-0.068514,-0.184580,0.980426,0.817710,-0.546104,0.181991,0.817710,-0.546104,0.181991, + 0.817710,-0.546104,0.181991,0.817710,-0.546104,0.181991,0.573069,0.766816,-0.289110,0.573069,0.766816,-0.289110, + 0.573069,0.766816,-0.289110,0.573069,0.766816,-0.289110,0.819263,-0.544723,0.179124,0.819263,-0.544723,0.179124, + 0.819263,-0.544723,0.179124,0.819263,-0.544723,0.179124,-0.475500,-0.861182,-0.179627,-0.475500,-0.861182,-0.179627, + -0.475500,-0.861182,-0.179627,-0.475500,-0.861182,-0.179627,0.549441,0.811917,0.197244,0.549441,0.811917,0.197244, + 0.549441,0.811917,0.197244,0.549441,0.811917,0.197244,-0.840568,0.528018,-0.121005,-0.840568,0.528018,-0.121005, + -0.840568,0.528018,-0.121005,-0.840568,0.528018,-0.121005,0.841158,-0.527027,0.121225,0.841158,-0.527027,0.121225, + 0.841158,-0.527027,0.121225,0.841158,-0.527027,0.121225,0.232761,0.030391,-0.972059,0.232761,0.030391,-0.972059, + 0.232761,0.030391,-0.972059,0.232761,0.030391,-0.972059,0.819263,-0.544725,0.179119,0.819263,-0.544725,0.179119, + 0.819263,-0.544725,0.179119,0.819263,-0.544725,0.179119,-0.232597,-0.030156,0.972106,-0.232597,-0.030156,0.972106, + -0.232597,-0.030156,0.972106,-0.232597,-0.030156,0.972106,-0.513687,-0.836004,-0.192930,-0.513687,-0.836004,-0.192930, + -0.513687,-0.836004,-0.192930,-0.513687,-0.836004,-0.192930,0.819255,-0.544734,0.179124,0.819255,-0.544734,0.179124, + 0.819255,-0.544734,0.179124,0.819255,-0.544734,0.179124,0.513686,0.836006,0.192928,0.513686,0.836006,0.192928, + 0.513686,0.836006,0.192928,0.513686,0.836006,0.192928,-0.003861,-0.222915,0.974830,-0.003861,-0.222915,0.974830, + -0.003861,-0.222915,0.974830,-0.003861,-0.222915,0.974830,-0.271436,-0.953771,-0.129010,-0.271436,-0.953771,-0.129010, + -0.271436,-0.953771,-0.129010,-0.271436,-0.953771,-0.129010,-0.848837,0.524554,-0.065718,-0.848837,0.524554,-0.065718, + -0.848837,0.524554,-0.065718,-0.848837,0.524554,-0.065718,0.851124,-0.521599,0.059349,0.851124,-0.521599,0.059349, + 0.851124,-0.521599,0.059349,0.851124,-0.521599,0.059349,0.489938,0.851621,0.186287,0.489938,0.851621,0.186287, + 0.489938,0.851621,0.186287,0.489938,0.851621,0.186287,0.050737,-0.254670,0.965696,0.050737,-0.254670,0.965696, + 0.050737,-0.254670,0.965696,0.050737,-0.254670,0.965696,-0.602842,-0.776260,-0.184396,-0.602842,-0.776260,-0.184396, + -0.602842,-0.776260,-0.184396,-0.602842,-0.776260,-0.184396,-0.859832,0.510576,-0.000215,-0.859832,0.510576,-0.000215, + -0.859832,0.510576,-0.000215,-0.859832,0.510576,-0.000215,0.860644,-0.509142,-0.008143,0.860644,-0.509142,-0.008143, + 0.860644,-0.509142,-0.008143,0.860644,-0.509142,-0.008143,-0.855452,0.517729,-0.012601,-0.855452,0.517729,-0.012601, + -0.855452,0.517729,-0.012601,-0.855452,0.517729,-0.012601,0.314530,0.687238,0.654809,0.314530,0.687238,0.654809, + 0.314530,0.687238,0.654809,0.314530,0.687238,0.654809,0.642407,-0.698797,0.314636,0.642407,-0.698797,0.314636, + 0.642407,-0.698797,0.314636,0.642407,-0.698797,0.314636,-0.380801,-0.473131,0.794442,-0.380801,-0.473131,0.794442, + -0.380801,-0.473131,0.794442,-0.380801,-0.473131,0.794442,0.537254,0.664608,-0.519283,0.537254,0.664608,-0.519283, + 0.537254,0.664608,-0.519283,0.537254,0.664608,-0.519283,-0.478731,-0.861376,-0.169846,-0.478731,-0.861376,-0.169846, + -0.478731,-0.861376,-0.169846,-0.478731,-0.861376,-0.169846,-0.681281,0.261261,0.683812,-0.681281,0.261261,0.683812, + -0.681281,0.261261,0.683812,-0.681281,0.261261,0.683812,0.584531,0.764630,0.271412,0.584531,0.764630,0.271412, + 0.584531,0.764630,0.271412,0.584531,0.764630,0.271412,0.631004,-0.504253,0.589545,0.631004,-0.504253,0.589545, + 0.631004,-0.504253,0.589545,0.631004,-0.504253,0.589545,-0.630294,0.505454,-0.589276,-0.630294,0.505454,-0.589276, + -0.630294,0.505454,-0.589276,-0.630294,0.505454,-0.589276,-0.486531,-0.855233,-0.178506,-0.486531,-0.855233,-0.178506, + -0.486531,-0.855233,-0.178506,-0.486531,-0.855233,-0.178506,-0.674251,0.254745,0.693175,-0.674251,0.254745,0.693175, + -0.674251,0.254745,0.693175,-0.674251,0.254745,0.693175,0.577812,0.772485,0.263438,0.577812,0.772485,0.263438, + 0.577812,0.772485,0.263438,0.577812,0.772485,0.263438,0.638117,-0.507845,0.578706,0.638117,-0.507845,0.578706, + 0.638117,-0.507845,0.578706,0.638117,-0.507845,0.578706,-0.637582,0.508729,-0.578518,-0.637582,0.508729,-0.578518, + -0.637582,0.508729,-0.578518,-0.637582,0.508729,-0.578518,-0.338890,-0.936434,-0.090800,-0.338890,-0.936434,-0.090800, + -0.338890,-0.936434,-0.090800,-0.338890,-0.936434,-0.090800,-0.689685,0.267745,0.672791,-0.689685,0.267745,0.672791, + -0.689685,0.267745,0.672791,-0.689685,0.267745,0.672791,0.646955,0.705328,0.289761,0.646955,0.705328,0.289761, + 0.646955,0.705328,0.289761,0.646955,0.705328,0.289761,0.741331,-0.534596,0.405754,0.741331,-0.534596,0.405754, + 0.741331,-0.534596,0.405754,0.741331,-0.534596,0.405754,-0.664311,0.519460,-0.537449,-0.664311,0.519460,-0.537449, + -0.664311,0.519460,-0.537449,-0.664311,0.519460,-0.537449,-0.492225,-0.851004,-0.183048,-0.492225,-0.851004,-0.183048, + -0.492225,-0.851004,-0.183048,-0.492225,-0.851004,-0.183048,-0.672650,0.253317,0.695250,-0.672650,0.253317,0.695250, + -0.672650,0.253317,0.695250,-0.672650,0.253317,0.695250,0.573695,0.777271,0.258308,0.573695,0.777271,0.258308, + 0.573695,0.777271,0.258308,0.573695,0.777271,0.258308,0.640387,-0.507466,0.576526,0.640387,-0.507466,0.576526, + 0.640387,-0.507466,0.576526,0.640387,-0.507466,0.576526,-0.639857,0.508354,-0.576333,-0.639857,0.508354,-0.576333, + -0.639857,0.508354,-0.576333,-0.639857,0.508354,-0.576333,-0.493660,-0.850461,-0.181703,-0.493660,-0.850461,-0.181703, + -0.493660,-0.850461,-0.181703,-0.493660,-0.850461,-0.181703,-0.711123,0.289553,0.640674,-0.711123,0.289553,0.640674, + -0.711123,0.289553,0.640674,-0.711123,0.289553,0.640674,0.568042,0.779610,0.263697,0.568042,0.779610,0.263697, + 0.568042,0.779610,0.263697,0.568042,0.779610,0.263697,0.594571,-0.492863,0.635273,0.594571,-0.492863,0.635273, + 0.594571,-0.492863,0.635273,0.594571,-0.492863,0.635273,-0.594012,0.493746,-0.635110,-0.594012,0.493746,-0.635110, + -0.594012,0.493746,-0.635110,-0.594012,0.493746,-0.635110,0.112859,0.159539,-0.980719,0.112859,0.159539,-0.980719, + 0.112859,0.159539,-0.980719,0.112859,0.159539,-0.980719,-0.817708,0.551465,-0.165043,-0.817708,0.551465,-0.165043, + -0.817708,0.551465,-0.165043,-0.817708,0.551465,-0.165043,0.517080,0.836826,0.179862,0.517080,0.836826,0.179862, + 0.517080,0.836826,0.179862,0.517080,0.836826,0.179862,0.801423,-0.560003,0.210044,0.801423,-0.560003,0.210044, + 0.801423,-0.560003,0.210044,0.801423,-0.560003,0.210044,-0.119418,-0.155740,0.980553,-0.119418,-0.155740,0.980553, + -0.119418,-0.155740,0.980553,-0.119418,-0.155740,0.980553,0.774691,-0.548579,0.314509,0.774691,-0.548579,0.314509, + 0.774691,-0.548579,0.314509,0.774691,-0.548579,0.314509,0.513679,0.836010,0.192928,0.513679,0.836010,0.192928, + 0.513679,0.836010,0.192928,0.513679,0.836010,0.192928,-0.774693,0.548576,-0.314507,-0.774693,0.548576,-0.314507, + -0.774693,0.548576,-0.314507,-0.774693,0.548576,-0.314507,-0.513681,-0.836009,-0.192930,-0.513681,-0.836009,-0.192930, + -0.513681,-0.836009,-0.192930,-0.513681,-0.836009,-0.192930,0.775218,-0.548592,0.313184,0.775218,-0.548592,0.313184, + 0.775218,-0.548592,0.313184,0.775218,-0.548592,0.313184,0.513677,0.836012,0.192928,0.513677,0.836012,0.192928, + 0.513677,0.836012,0.192928,0.513677,0.836012,0.192928,-0.775206,0.548612,-0.313179,-0.775206,0.548612,-0.313179, + -0.775206,0.548612,-0.313179,-0.775206,0.548612,-0.313179,-0.513667,-0.836019,-0.192923,-0.513667,-0.836019,-0.192923, + -0.513667,-0.836019,-0.192923,-0.513667,-0.836019,-0.192923,-0.599354,-0.800019,-0.027278,-0.599354,-0.800019,-0.027278, + -0.599354,-0.800019,-0.027278,-0.599354,-0.800019,-0.027278,0.297954,-0.268829,0.915945,0.297954,-0.268829,0.915945, + 0.297954,-0.268829,0.915945,0.297954,-0.268829,0.915945,0.599357,0.800017,0.027273,0.599357,0.800017,0.027273, + 0.599357,0.800017,0.027273,0.599357,0.800017,0.027273,-0.297958,0.268834,-0.915941,-0.297958,0.268834,-0.915941, + -0.297958,0.268834,-0.915941,-0.297958,0.268834,-0.915941,-0.321567,-0.857564,-0.401470,-0.321567,-0.857564,-0.401470, + -0.321567,-0.857564,-0.401470,-0.321567,-0.857564,-0.401470,0.220276,-0.447157,0.866908,0.220276,-0.447157,0.866908, + 0.220276,-0.447157,0.866908,0.220276,-0.447157,0.866908,0.321567,0.857559,0.401481,0.321567,0.857559,0.401481, + 0.321567,0.857559,0.401481,0.321567,0.857559,0.401481,-0.220263,0.447163,-0.866908,-0.220263,0.447163,-0.866908, + -0.220263,0.447163,-0.866908,-0.220263,0.447163,-0.866908,0.419349,-0.060926,-0.905778,0.419349,-0.060926,-0.905778, + 0.419349,-0.060926,-0.905778,0.419349,-0.060926,-0.905778,0.544234,0.814379,0.201484,0.544234,0.814379,0.201484, + 0.544234,0.814379,0.201484,0.544234,0.814379,0.201484,-0.751917,0.544792,-0.371245,-0.751917,0.544792,-0.371245, + -0.751917,0.544792,-0.371245,-0.751917,0.544792,-0.371245,-0.521749,-0.830805,-0.193756,-0.521749,-0.830805,-0.193756, + -0.521749,-0.830805,-0.193756,-0.521749,-0.830805,-0.193756,0.651634,-0.529962,0.542691,0.651634,-0.529962,0.542691, + 0.651634,-0.529962,0.542691,0.651634,-0.529962,0.542691,-0.409745,0.054758,0.910555,-0.409745,0.054758,0.910555, + -0.409745,0.054758,0.910555,-0.409745,0.054758,0.910555,0.417134,-0.042312,-0.907860,0.417134,-0.042312,-0.907860, + 0.417134,-0.042312,-0.907860,0.417134,-0.042312,-0.907860,-0.721229,0.576936,-0.383371,-0.721229,0.576936,-0.383371, + -0.721229,0.576936,-0.383371,-0.721229,0.576936,-0.383371,-0.526760,-0.828666,-0.189305,-0.526760,-0.828666,-0.189305, + -0.526760,-0.828666,-0.189305,-0.526760,-0.828666,-0.189305,0.428523,-0.051150,-0.902082,0.428523,-0.051150,-0.902082, + 0.428523,-0.051150,-0.902082,0.428523,-0.051150,-0.902082,0.440840,0.818138,0.369204,0.440840,0.818138,0.369204, + 0.440840,0.818138,0.369204,0.440840,0.818138,0.369204,-0.411062,0.053122,0.910058,-0.411062,0.053122,0.910058, + -0.411062,0.053122,0.910058,-0.411062,0.053122,0.910058,-0.721225,0.576954,-0.383352,-0.721225,0.576954,-0.383352, + -0.721225,0.576954,-0.383352,-0.721225,0.576954,-0.383352,-0.467412,-0.869673,-0.158732,-0.467412,-0.869673,-0.158732, + -0.467412,-0.869673,-0.158732,-0.467412,-0.869673,-0.158732,0.381089,0.861005,0.336809,0.381089,0.861005,0.336809, + 0.381089,0.861005,0.336809,0.381089,0.861005,0.336809,-0.423220,0.062390,0.903876,-0.423220,0.062390,0.903876, + -0.423220,0.062390,0.903876,-0.423220,0.062390,0.903876,0.407613,-0.045891,-0.912001,0.407613,-0.045891,-0.912001, + 0.407613,-0.045891,-0.912001,0.407613,-0.045891,-0.912001,0.799060,-0.548877,0.245433,0.799060,-0.548877,0.245433, + 0.799060,-0.548877,0.245433,0.799060,-0.548877,0.245433,-0.400555,0.041984,0.915310,-0.400555,0.041984,0.915310, + -0.400555,0.041984,0.915310,-0.400555,0.041984,0.915310,-0.436115,0.441984,-0.783871,-0.436115,0.441984,-0.783871, + -0.436115,0.441984,-0.783871,-0.436115,0.441984,-0.783871,-0.799263,0.548546,-0.245512,-0.799263,0.548546,-0.245512, + -0.799263,0.548546,-0.245512,-0.799263,0.548546,-0.245512,-0.513664,-0.836020,-0.192923,-0.513664,-0.836020,-0.192923, + -0.513664,-0.836020,-0.192923,-0.513664,-0.836020,-0.192923,0.513693,0.836000,0.192935,0.513693,0.836000,0.192935, + 0.513693,0.836000,0.192935,0.513693,0.836000,0.192935,0.861251,-0.467150,-0.200043,0.861251,-0.467150,-0.200043, + 0.861251,-0.467150,-0.200043,0.861251,-0.467150,-0.200043,-0.007313,-0.260041,0.965570,-0.007313,-0.260041,0.965570, + -0.007313,-0.260041,0.965570,-0.007313,-0.260041,0.965570,-0.668100,0.271818,0.692646,-0.668100,0.271818,0.692646, + -0.668100,0.271818,0.692646,-0.668100,0.271818,0.692646,-0.227678,0.329391,-0.916332,-0.227678,0.329391,-0.916332, + -0.227678,0.329391,-0.916332,-0.227678,0.329391,-0.916332,0.013344,0.250461,-0.968035,0.013344,0.250461,-0.968035, + 0.013344,0.250461,-0.968035,0.013344,0.250461,-0.968035,0.676589,-0.279416,-0.681289,0.676589,-0.279416,-0.681289, + 0.676589,-0.279416,-0.681289,0.676589,-0.279416,-0.681289,-0.519693,-0.837129,-0.170685,-0.519693,-0.837129,-0.170685, + -0.519693,-0.837129,-0.170685,-0.519693,-0.837129,-0.170685,-0.825802,0.542756,-0.153192,-0.825802,0.542756,-0.153192, + -0.825802,0.542756,-0.153192,-0.825802,0.542756,-0.153192,0.519693,0.837130,0.170684,0.519693,0.837130,0.170684, + 0.519693,0.837130,0.170684,0.519693,0.837130,0.170684,0.825805,-0.542750,0.153195,0.825805,-0.542750,0.153195, + 0.825805,-0.542750,0.153195,0.825805,-0.542750,0.153195,0.265274,0.683411,0.680132,0.265274,0.683411,0.680132, + 0.265274,0.683411,0.680132,0.265274,0.683411,0.680132,-0.649298,-0.679030,0.342536,-0.649298,-0.679030,0.342536, + -0.649298,-0.679030,0.342536,-0.649298,-0.679030,0.342536,-0.513675,-0.836012,-0.192929,-0.513675,-0.836012,-0.192929, + -0.513675,-0.836012,-0.192929,-0.513675,-0.836012,-0.192929,0.513673,0.836014,0.192927,0.513673,0.836014,0.192927, + 0.513673,0.836014,0.192927,0.513673,0.836014,0.192927,0.270736,0.055434,-0.961056,0.270736,0.055434,-0.961056, + 0.270736,0.055434,-0.961056,0.270736,0.055434,-0.961056,-0.273368,-0.053666,0.960411,-0.273368,-0.053666,0.960411, + -0.273368,-0.053666,0.960411,-0.273368,-0.053666,0.960411,-0.510529,-0.838158,-0.191965,-0.510529,-0.838158,-0.191965, + -0.510529,-0.838158,-0.191965,-0.510529,-0.838158,-0.191965,0.513672,0.836014,0.192929,0.513672,0.836014,0.192929, + 0.513672,0.836014,0.192929,0.513672,0.836014,0.192929,0.269599,0.056192,-0.961332,0.269599,0.056192,-0.961332, + 0.269599,0.056192,-0.961332,0.269599,0.056192,-0.961332,-0.269729,-0.056106,0.961300,-0.269729,-0.056106,0.961300, + -0.269729,-0.056106,0.961300,-0.269729,-0.056106,0.961300,-0.513679,-0.836010,-0.192930,-0.513679,-0.836010,-0.192930, + -0.513679,-0.836010,-0.192930,-0.513679,-0.836010,-0.192930,0.513672,0.836014,0.192929,0.513672,0.836014,0.192929, + 0.513672,0.836014,0.192929,0.513672,0.836014,0.192929,0.261666,0.061499,-0.963197,0.261666,0.061499,-0.963197, + 0.261666,0.061499,-0.963197,0.261666,0.061499,-0.963197,0.272916,0.095682,-0.957268,0.272916,0.095682,-0.957268, + 0.272916,0.095682,-0.957268,0.272916,0.095682,-0.957268,0.852862,-0.521746,0.020203,0.852862,-0.521746,0.020203, + 0.852862,-0.521746,0.020203,0.852862,-0.521746,0.020203,0.262018,0.077751,-0.961926,0.262018,0.077751,-0.961926, + 0.262018,0.077751,-0.961926,0.262018,0.077751,-0.961926,-0.813571,0.545867,-0.200330,-0.813571,0.545867,-0.200330, + -0.813571,0.545867,-0.200330,-0.813571,0.545867,-0.200330,-0.485975,-0.790780,0.372149,-0.485975,-0.790780,0.372149, + -0.485975,-0.790780,0.372149,-0.485975,-0.790780,0.372149,-0.744583,0.570692,-0.346276,-0.744583,0.570692,-0.346276, + -0.744583,0.570692,-0.346276,-0.744583,0.570692,-0.346276,0.487028,0.807545,-0.332679,0.487028,0.807545,-0.332679, + 0.487028,0.807545,-0.332679,0.487028,0.807545,-0.332679,-0.401203,-0.648488,-0.646915,-0.401203,-0.648488,-0.646915, + -0.401203,-0.648488,-0.646915,-0.401203,-0.648488,-0.646915,-0.748687,0.543035,-0.380237,-0.748687,0.543035,-0.380237, + -0.748687,0.543035,-0.380237,-0.748687,0.543035,-0.380237,-0.743537,0.599105,-0.297029,-0.743537,0.599105,-0.297029, + -0.743537,0.599105,-0.297029,-0.703292,0.514930,-0.490130,-0.703292,0.514930,-0.490130,-0.703292,0.514930,-0.490130, + -0.703292,0.514930,-0.490130,-0.330973,-0.019147,0.943446,-0.330973,-0.019147,0.943446,-0.330973,-0.019147,0.943446, + -0.330973,-0.019147,0.943446,0.625463,0.720486,-0.299493,0.625463,0.720486,-0.299493,0.625463,0.720486,-0.299493, + 0.625463,0.720486,-0.299493,-0.882869,0.383576,-0.270948,-0.882869,0.383576,-0.270948,-0.882869,0.383576,-0.270948, + -0.882869,0.383576,-0.270948,-0.312118,-0.716037,-0.624399,-0.312118,-0.716037,-0.624399,-0.312118,-0.716037,-0.624399, + -0.312118,-0.716037,-0.624399,-0.772631,0.548711,-0.319307,-0.772631,0.548711,-0.319307,-0.772631,0.548711,-0.319307, + -0.772631,0.548711,-0.319307,0.318177,0.071037,-0.945366,0.318177,0.071037,-0.945366,0.318177,0.071037,-0.945366, + 0.318177,0.071037,-0.945366,-0.744096,0.635598,-0.205758,-0.744096,0.635598,-0.205758,-0.744096,0.635598,-0.205758, + -0.744096,0.635598,-0.205758,-0.318342,-0.071248,0.945295,-0.318342,-0.071248,0.945295,-0.318342,-0.071248,0.945295, + -0.318342,-0.071248,0.945295,0.547213,0.812807,0.199757,0.547213,0.812807,0.199757,0.547213,0.812807,0.199757, + 0.547213,0.812807,0.199757,-0.773015,0.582325,-0.251685,-0.773015,0.582325,-0.251685,-0.773015,0.582325,-0.251685, + -0.773015,0.582325,-0.251685,-0.547266,-0.812769,-0.199765,-0.547266,-0.812769,-0.199765,-0.547266,-0.812769,-0.199765, + -0.547266,-0.812769,-0.199765,0.371436,0.614675,0.695851,0.371436,0.614675,0.695851,0.371436,0.614675,0.695851, + 0.371436,0.614675,0.695851,0.814219,-0.565957,0.129386,0.814219,-0.565957,0.129386,0.814219,-0.565957,0.129386, + 0.814219,-0.565957,0.129386,-0.520407,-0.838710,-0.160443,-0.520407,-0.838710,-0.160443,-0.520407,-0.838710,-0.160443, + -0.520407,-0.838710,-0.160443,0.521882,0.839203,0.152900,0.521882,0.839203,0.152900,0.521882,0.839203,0.152900, + 0.521882,0.839203,0.152900,0.118321,-0.055736,-0.991410,0.118321,-0.055736,-0.991410,0.118321,-0.055736,-0.991410, + 0.118321,-0.055736,-0.991410,-0.249977,-0.155353,0.955707,-0.249977,-0.155353,0.955707,-0.249977,-0.155353,0.955707, + -0.249977,-0.155353,0.955707,0.845299,-0.515402,0.140816,0.845299,-0.515402,0.140816,0.845299,-0.515402,0.140816, + 0.845299,-0.515402,0.140816,0.504864,0.831719,0.230988,0.504864,0.831719,0.230988,0.504864,0.831719,0.230988, + 0.504864,0.831719,0.230988,-0.507520,-0.833101,-0.219923,-0.507520,-0.833101,-0.219923,-0.507520,-0.833101,-0.219923, + -0.507520,-0.833101,-0.219923,-0.135700,0.028737,0.990333,-0.135700,0.028737,0.990333,-0.135700,0.028737,0.990333, + -0.135700,0.028737,0.990333,0.265889,0.181943,-0.946678,0.265889,0.181943,-0.946678,0.265889,0.181943,-0.946678, + 0.265889,0.181943,-0.946678,0.813950,-0.566306,0.129549,0.813950,-0.566306,0.129549,0.813950,-0.566306,0.129549, + 0.813950,-0.566306,0.129549,-0.522484,-0.839380,-0.149839,-0.522484,-0.839380,-0.149839,-0.522484,-0.839380,-0.149839, + -0.522484,-0.839380,-0.149839,0.524200,0.839836,0.141030,0.524200,0.839836,0.141030,0.524200,0.839836,0.141030, + 0.524200,0.839836,0.141030,0.096977,-0.088511,-0.991343,0.096977,-0.088511,-0.991343,0.096977,-0.088511,-0.991343, + 0.096977,-0.088511,-0.991343,-0.231995,-0.125503,0.964587,-0.231995,-0.125503,0.964587,-0.231995,-0.125503,0.964587, + -0.231995,-0.125503,0.964587,0.845588,-0.515021,0.140481,0.845588,-0.515021,0.140481,0.845588,-0.515021,0.140481, + 0.845588,-0.515021,0.140481,0.508227,0.833444,0.216969,0.508227,0.833444,0.216969,0.508227,0.833444,0.216969, + 0.508227,0.833444,0.216969,-0.510663,-0.834637,-0.206407,-0.510663,-0.834637,-0.206407,-0.510663,-0.834637,-0.206407, + -0.510663,-0.834637,-0.206407,-0.129321,0.038648,0.990849,-0.129321,0.038648,0.990849,-0.129321,0.038648,0.990849, + -0.129321,0.038648,0.990849,0.261792,0.175004,-0.949125,0.261792,0.175004,-0.949125,0.261792,0.175004,-0.949125, + 0.261792,0.175004,-0.949125,-0.819260,0.544726,-0.179125,-0.819260,0.544726,-0.179125,-0.819260,0.544726,-0.179125, + -0.819260,0.544726,-0.179125,-0.513688,-0.836004,-0.192929,-0.513688,-0.836004,-0.192929,-0.513688,-0.836004,-0.192929, + -0.513688,-0.836004,-0.192929,-0.819264,0.544720,-0.179126,-0.819264,0.544720,-0.179126,-0.819264,0.544720,-0.179126, + -0.819264,0.544720,-0.179126,-0.261378,-0.011948,0.965163,-0.261378,-0.011948,0.965163,-0.261378,-0.011948,0.965163, + -0.261378,-0.011948,0.965163,-0.498674,-0.831027,-0.246412,-0.498674,-0.831027,-0.246412,-0.498674,-0.831027,-0.246412, + -0.498674,-0.831027,-0.246412,0.515681,0.836328,0.186087,0.515681,0.836328,0.186087,0.515681,0.836328,0.186087, + 0.515681,0.836328,0.186087,0.276912,0.102298,-0.955434,0.276912,0.102298,-0.955434,0.276912,0.102298,-0.955434, + 0.276912,0.102298,-0.955434,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726,-0.254837,-0.066046,0.964726, + -0.254837,-0.066046,0.964726,0.528492,0.838486,0.132804,0.528492,0.838486,0.132804,0.528492,0.838486,0.132804, + 0.528492,0.838486,0.132804,-0.820375,0.544303,-0.175268,-0.820375,0.544303,-0.175268,-0.820375,0.544303,-0.175268, + -0.497596,-0.832918,-0.242167,-0.497596,-0.832918,-0.242167,-0.497596,-0.832918,-0.242167,-0.497596,-0.832918,-0.242167, + -0.789955,0.573761,-0.216260,-0.789955,0.573761,-0.216260,-0.789955,0.573761,-0.216260,-0.789955,0.573761,-0.216260, + 0.502868,0.833627,0.228450,0.502868,0.833627,0.228450,0.502868,0.833627,0.228450,0.502868,0.833627,0.228450, + -0.500145,-0.832972,-0.236672,-0.500145,-0.832972,-0.236672,-0.500145,-0.832972,-0.236672,-0.500145,-0.832972,-0.236672, + 0.398086,0.213334,-0.892197,0.398086,0.213334,-0.892197,0.398086,0.213334,-0.892197,0.398086,0.213334,-0.892197, + -0.269298,0.005320,0.963042,-0.269298,0.005320,0.963042,-0.269298,0.005320,0.963042,-0.269298,0.005320,0.963042, + -0.822696,0.520167,-0.229343,-0.822696,0.520167,-0.229343,-0.822696,0.520167,-0.229343,-0.822696,0.520167,-0.229343, + -0.520586,-0.836710,-0.170020,-0.520586,-0.836710,-0.170020,-0.520586,-0.836710,-0.170020,-0.520586,-0.836710,-0.170020, + 0.517567,0.836472,0.180107,0.517567,0.836472,0.180107,0.517567,0.836472,0.180107,0.517567,0.836472,0.180107, + -0.375908,-0.173404,0.910288,-0.375908,-0.173404,0.910288,-0.375908,-0.173404,0.910288,-0.375908,-0.173404,0.910288, + 0.242942,-0.046599,-0.968921,0.242942,-0.046599,-0.968921,0.242942,-0.046599,-0.968921,0.242942,-0.046599,-0.968921, + -0.813728,0.547590,-0.194916,-0.813728,0.547590,-0.194916,-0.813728,0.547590,-0.194916,-0.813728,0.547590,-0.194916, + 0.525167,0.837468,0.151153,0.525167,0.837468,0.151153,0.525167,0.837468,0.151153,0.525167,0.837468,0.151153, + -0.520173,-0.838425,-0.162678,-0.520173,-0.838425,-0.162678,-0.520173,-0.838425,-0.162678,-0.520173,-0.838425,-0.162678, + 0.321706,0.127037,-0.938279,0.321706,0.127037,-0.938279,0.321706,0.127037,-0.938279,0.321706,0.127037,-0.938279, + -0.258289,-0.022222,0.965812,-0.258289,-0.022222,0.965812,-0.258289,-0.022222,0.965812,-0.258289,-0.022222,0.965812, + -0.842290,0.497423,-0.207647,-0.842290,0.497423,-0.207647,-0.842290,0.497423,-0.207647,-0.842290,0.497423,-0.207647, + -0.495943,-0.832522,-0.246875,-0.495943,-0.832522,-0.246875,-0.495943,-0.832522,-0.246875,-0.495943,-0.832522,-0.246875, + 0.519933,0.836854,0.171304,0.519933,0.836854,0.171304,0.519933,0.836854,0.171304,0.519933,0.836854,0.171304, + -0.262567,-0.013822,0.964815,-0.262567,-0.013822,0.964815,-0.262567,-0.013822,0.964815,-0.262567,-0.013822,0.964815, + 0.295770,0.037130,-0.954537,0.295770,0.037130,-0.954537,0.295770,0.037130,-0.954537,0.295770,0.037130,-0.954537, + -0.459576,-0.865019,-0.201325,-0.459576,-0.865019,-0.201325,-0.459576,-0.865019,-0.201325,-0.459576,-0.865019,-0.201325, + -0.298565,-0.067962,0.951966,-0.298565,-0.067962,0.951966,-0.298565,-0.067962,0.951966,-0.298565,-0.067962,0.951966, + 0.193100,0.136939,-0.971576,0.193100,0.136939,-0.971576,0.193100,0.136939,-0.971576,0.193100,0.136939,-0.971576, + 0.815860,-0.544264,0.195317,0.815860,-0.544264,0.195317,0.815860,-0.544264,0.195317,0.815860,-0.544264,0.195317, + -0.818174,0.545085,-0.182959,-0.818174,0.545085,-0.182959,-0.818174,0.545085,-0.182959,-0.818174,0.545085,-0.182959, + -0.510908,-0.833450,-0.210556,-0.510908,-0.833450,-0.210556,-0.510908,-0.833450,-0.210556,-0.510908,-0.833450,-0.210556, + -0.514596,-0.836391,-0.188788,-0.514596,-0.836391,-0.188788,-0.514596,-0.836391,-0.188788,-0.812271,0.546283,-0.204430, + -0.812271,0.546283,-0.204430,-0.812271,0.546283,-0.204430,-0.812271,0.546283,-0.204430,-0.254843,-0.066038,0.964725, + -0.254843,-0.066038,0.964725,-0.254843,-0.066038,0.964725,-0.254843,-0.066038,0.964725,0.219016,0.089644,-0.971594, + 0.219016,0.089644,-0.971594,0.219016,0.089644,-0.971594,0.219016,0.089644,-0.971594,0.281742,0.108048,-0.953387, + 0.281742,0.108048,-0.953387,0.281742,0.108048,-0.953387,0.281742,0.108048,-0.953387,0.830411,-0.540982,0.133248, + 0.830411,-0.540982,0.133248,0.830411,-0.540982,0.133248,0.830411,-0.540982,0.133248,-0.514712,-0.836277,-0.188975, + -0.514712,-0.836277,-0.188975,-0.514712,-0.836277,-0.188975,-0.306677,-0.072146,0.949075,-0.306677,-0.072146,0.949075, + -0.306677,-0.072146,0.949075,-0.306677,-0.072146,0.949075,-0.817326,0.545339,-0.185968,-0.817326,0.545339,-0.185968, + -0.817326,0.545339,-0.185968,-0.817326,0.545339,-0.185968,0.832717,-0.538361,0.129422,0.832717,-0.538361,0.129422, + 0.832717,-0.538361,0.129422,0.832717,-0.538361,0.129422,-0.459574,-0.865020,-0.201327,-0.459574,-0.865020,-0.201327, + -0.459574,-0.865020,-0.201327,-0.459574,-0.865020,-0.201327,-0.298557,-0.067966,0.951968,-0.298557,-0.067966,0.951968, + -0.298557,-0.067966,0.951968,-0.298557,-0.067966,0.951968,0.193096,0.136952,-0.971575,0.193096,0.136952,-0.971575, + 0.193096,0.136952,-0.971575,0.193096,0.136952,-0.971575,0.815861,-0.544263,0.195318,0.815861,-0.544263,0.195318, + 0.815861,-0.544263,0.195318,0.815861,-0.544263,0.195318,-0.818168,0.545092,-0.182964,-0.818168,0.545092,-0.182964, + -0.818168,0.545092,-0.182964,-0.818168,0.545092,-0.182964,-0.510910,-0.833450,-0.210555,-0.510910,-0.833450,-0.210555, + -0.510910,-0.833450,-0.210555,-0.510910,-0.833450,-0.210555,-0.514598,-0.836389,-0.188791,-0.514598,-0.836389,-0.188791, + -0.514598,-0.836389,-0.188791,-0.812289,0.546253,-0.204436,-0.812289,0.546253,-0.204436,-0.812289,0.546253,-0.204436, + -0.812289,0.546253,-0.204436,-0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724, + -0.254844,-0.066048,0.964724,0.219011,0.089647,-0.971595,0.219011,0.089647,-0.971595,0.219011,0.089647,-0.971595, + 0.219011,0.089647,-0.971595,0.281738,0.108050,-0.953388,0.281738,0.108050,-0.953388,0.281738,0.108050,-0.953388, + 0.281738,0.108050,-0.953388,0.830421,-0.540967,0.133248,0.830421,-0.540967,0.133248,0.830421,-0.540967,0.133248, + 0.830421,-0.540967,0.133248,-0.514712,-0.836278,-0.188973,-0.514712,-0.836278,-0.188973,-0.514712,-0.836278,-0.188973, + -0.306681,-0.072147,0.949074,-0.306681,-0.072147,0.949074,-0.306681,-0.072147,0.949074,-0.306681,-0.072147,0.949074, + -0.817293,0.545392,-0.185956,-0.817293,0.545392,-0.185956,-0.817293,0.545392,-0.185956,-0.817293,0.545392,-0.185956, + 0.832703,-0.538384,0.129417,0.832703,-0.538384,0.129417,0.832703,-0.538384,0.129417,0.832703,-0.538384,0.129417, + -0.459572,-0.865021,-0.201324,-0.459572,-0.865021,-0.201324,-0.459572,-0.865021,-0.201324,-0.459572,-0.865021,-0.201324, + -0.298551,-0.067964,0.951970,-0.298551,-0.067964,0.951970,-0.298551,-0.067964,0.951970,-0.298551,-0.067964,0.951970, + 0.193096,0.136952,-0.971575,0.193096,0.136952,-0.971575,0.193096,0.136952,-0.971575,0.193096,0.136952,-0.971575, + 0.815857,-0.544270,0.195313,0.815857,-0.544270,0.195313,0.815857,-0.544270,0.195313,0.815857,-0.544270,0.195313, + -0.818232,0.544991,-0.182977,-0.818232,0.544991,-0.182977,-0.818232,0.544991,-0.182977,-0.818232,0.544991,-0.182977, + -0.510911,-0.833448,-0.210557,-0.510911,-0.833448,-0.210557,-0.510911,-0.833448,-0.210557,-0.510911,-0.833448,-0.210557, + -0.514597,-0.836390,-0.188790,-0.514597,-0.836390,-0.188790,-0.514597,-0.836390,-0.188790,-0.812282,0.546265,-0.204433, + -0.812282,0.546265,-0.204433,-0.812282,0.546265,-0.204433,-0.812282,0.546265,-0.204433,-0.254835,-0.066040,0.964727, + -0.254835,-0.066040,0.964727,-0.254835,-0.066040,0.964727,-0.254835,-0.066040,0.964727,0.219015,0.089643,-0.971595, + 0.219015,0.089643,-0.971595,0.219015,0.089643,-0.971595,0.219015,0.089643,-0.971595,0.281721,0.108048,-0.953393, + 0.281721,0.108048,-0.953393,0.281721,0.108048,-0.953393,0.281721,0.108048,-0.953393,0.830421,-0.540966,0.133251, + 0.830421,-0.540966,0.133251,0.830421,-0.540966,0.133251,0.830421,-0.540966,0.133251,-0.514710,-0.836279,-0.188973, + -0.514710,-0.836279,-0.188973,-0.514710,-0.836279,-0.188973,-0.306681,-0.072160,0.949073,-0.306681,-0.072160,0.949073, + -0.306681,-0.072160,0.949073,-0.306681,-0.072160,0.949073,-0.817303,0.545375,-0.185963,-0.817303,0.545375,-0.185963, + -0.817303,0.545375,-0.185963,-0.817303,0.545375,-0.185963,0.832778,-0.538264,0.129436,0.832778,-0.538264,0.129436, + 0.832778,-0.538264,0.129436,0.832778,-0.538264,0.129436,0.469755,0.867658,0.162788,0.469755,0.867658,0.162788, + 0.469755,0.867658,0.162788,0.469755,0.867658,0.162788,-0.210600,-0.064004,0.975475,-0.210600,-0.064004,0.975475, + -0.210600,-0.064004,0.975475,-0.210600,-0.064004,0.975475,0.314303,-0.005467,-0.949307,0.314303,-0.005467,-0.949307, + 0.314303,-0.005467,-0.949307,0.314303,-0.005467,-0.949307,-0.824232,0.542116,-0.163561,-0.824232,0.542116,-0.163561, + -0.824232,0.542116,-0.163561,-0.824232,0.542116,-0.163561,0.820244,-0.544505,0.175253,0.820244,-0.544505,0.175253, + 0.820244,-0.544505,0.175253,0.820244,-0.544505,0.175253,0.520025,0.835810,0.176055,0.520025,0.835810,0.176055, + 0.520025,0.835810,0.176055,0.520025,0.835810,0.176055,0.512433,0.835827,0.196989,0.512433,0.835827,0.196989, + 0.512433,0.835827,0.196989,0.825678,-0.542802,0.153694,0.825678,-0.542802,0.153694,0.825678,-0.542802,0.153694, + 0.825678,-0.542802,0.153694,-0.254837,-0.066048,0.964726,-0.254837,-0.066048,0.964726,-0.254837,-0.066048,0.964726, + -0.254837,-0.066048,0.964726,0.290194,0.042319,-0.956032,0.290194,0.042319,-0.956032,0.290194,0.042319,-0.956032, + 0.290194,0.042319,-0.956032,0.227322,0.023871,-0.973527,0.227322,0.023871,-0.973527,0.227322,0.023871,-0.973527, + 0.227322,0.023871,-0.973527,-0.806283,0.547231,-0.224602,-0.806283,0.547231,-0.224602,-0.806283,0.547231,-0.224602, + -0.806283,0.547231,-0.224602,0.512620,0.835740,0.196874,0.512620,0.835740,0.196874,0.512620,0.835740,0.196874, + -0.202262,-0.059746,0.977507,-0.202262,-0.059746,0.977507,-0.202262,-0.059746,0.977507,-0.202262,-0.059746,0.977507, + 0.820954,-0.544410,0.172197,0.820954,-0.544410,0.172197,0.820954,-0.544410,0.172197,0.820954,-0.544410,0.172197, + -0.806333,0.545172,-0.229378,-0.806333,0.545172,-0.229378,-0.806333,0.545172,-0.229378,-0.806333,0.545172,-0.229378, + 0.771310,-0.548440,0.322947,0.771310,-0.548440,0.322947,0.771310,-0.548440,0.322947,0.771310,-0.548440,0.322947, + 0.517077,0.836828,0.179862,0.517077,0.836828,0.179862,0.517077,0.836828,0.179862,0.517077,0.836828,0.179862, + 0.805845,-0.547291,0.226021,0.805845,-0.547291,0.226021,0.805845,-0.547291,0.226021,0.805845,-0.547291,0.226021, + -0.517075,-0.836829,-0.179861,-0.517075,-0.836829,-0.179861,-0.517075,-0.836829,-0.179861,-0.517075,-0.836829,-0.179861, + -0.805845,0.547292,-0.226021,-0.805845,0.547292,-0.226021,-0.805845,0.547292,-0.226021,-0.805845,0.547292,-0.226021, + 0.811460,-0.546420,0.207261,0.811460,-0.546420,0.207261,0.811460,-0.546420,0.207261,0.811460,-0.546420,0.207261, + -0.517079,-0.836827,-0.179862,-0.517079,-0.836827,-0.179862,-0.517079,-0.836827,-0.179862,-0.517079,-0.836827,-0.179862, + -0.811460,0.546420,-0.207263,-0.811460,0.546420,-0.207263,-0.811460,0.546420,-0.207263,-0.811460,0.546420,-0.207263, + -0.363767,-0.055130,0.929857,-0.363767,-0.055130,0.929857,-0.363767,-0.055130,0.929857,0.947633,0.001072,0.319359, + 0.947633,0.001072,0.319359,0.947633,0.001072,0.319359,0.947633,0.001072,0.319359,0.985405,0.007928,0.170043, + 0.985405,0.007928,0.170043,0.985405,0.007928,0.170043,0.985405,0.007928,0.170043,0.027839,-0.998152,-0.054023, + 0.027839,-0.998152,-0.054023,0.027839,-0.998152,-0.054023,0.027839,-0.998152,-0.054023,0.023550,0.997344,0.068917, + 0.023550,0.997344,0.068917,0.023550,0.997344,0.068917,0.023550,0.997344,0.068917,0.023551,0.997344,0.068918, + 0.023551,0.997344,0.068918,0.023551,0.997344,0.068918,0.023551,0.997344,0.068918,0.952076,0.020357,0.305183, + 0.952076,0.020357,0.305183,0.952076,0.020357,0.305183,0.952076,0.020357,0.305183,0.027841,-0.998151,-0.054024, + 0.027841,-0.998151,-0.054024,0.027841,-0.998151,-0.054024,0.027841,-0.998151,-0.054024,0.952077,0.020358,0.305182, + 0.952077,0.020358,0.305182,0.952077,0.020358,0.305182,0.952077,0.020358,0.305182,-0.406749,-0.873426,-0.267735, + -0.406749,-0.873426,-0.267735,-0.406749,-0.873426,-0.267735,-0.406749,-0.873426,-0.267735,-0.281391,-0.004199,0.959584, + -0.281391,-0.004199,0.959584,-0.281391,-0.004199,0.959584,-0.281391,-0.004199,0.959584,0.973208,0.018437,0.229184, + 0.973208,0.018437,0.229184,0.973208,0.018437,0.229184,0.973208,0.018437,0.229184,0.972344,-0.032492,0.231281, + 0.972344,-0.032492,0.231281,0.972344,-0.032492,0.231281,0.972344,-0.032492,0.231281,-0.180486,0.511202,0.840296, + -0.180486,0.511202,0.840296,-0.180486,0.511202,0.840296,-0.180486,0.511202,0.840296,0.181512,-0.506724,-0.842784, + 0.181512,-0.506724,-0.842784,0.181512,-0.506724,-0.842784,0.181512,-0.506724,-0.842784,0.979726,-0.041279,0.196045, + 0.979726,-0.041279,0.196045,0.979726,-0.041279,0.196045,0.979726,-0.041279,0.196045,-0.979726,0.041282,-0.196045, + -0.979726,0.041282,-0.196045,-0.979726,0.041282,-0.196045,-0.979726,0.041282,-0.196045,-0.167683,-0.085478,0.982128, + -0.167683,-0.085478,0.982128,-0.167683,-0.085478,0.982128,-0.167683,-0.085478,0.982128,0.166700,0.047981,-0.984839, + 0.166700,0.047981,-0.984839,0.166700,0.047981,-0.984839,0.166700,0.047981,-0.984839,0.022632,0.995106,0.096189, + 0.022632,0.995106,0.096189,0.022632,0.995106,0.096189,0.022632,0.995106,0.096189,-0.039214,-0.999229,0.002112, + -0.039214,-0.999229,0.002112,-0.039214,-0.999229,0.002112,-0.039214,-0.999229,0.002112,0.983003,-0.034871,0.180250, + 0.983003,-0.034871,0.180250,0.983003,-0.034871,0.180250,0.983003,-0.034871,0.180250,-0.983003,0.034872,-0.180250, + -0.983003,0.034872,-0.180250,-0.983003,0.034872,-0.180250,-0.983003,0.034872,-0.180250,0.162455,0.153220,-0.974747, + 0.162455,0.153220,-0.974747,0.162455,0.153220,-0.974747,0.162455,0.153220,-0.974747,-0.162181,-0.115933,0.979927, + -0.162181,-0.115933,0.979927,-0.162181,-0.115933,0.979927,-0.162181,-0.115933,0.979927,-0.004468,-0.986861,-0.161512, + -0.004468,-0.986861,-0.161512,-0.004468,-0.986861,-0.161512,-0.004468,-0.986861,-0.161512,0.020648,0.997751,0.063773, + 0.020648,0.997751,0.063773,0.020648,0.997751,0.063773,0.020648,0.997751,0.063773,0.974899,-0.045543,0.217941, + 0.974899,-0.045543,0.217941,0.974899,-0.045543,0.217941,0.974899,-0.045543,0.217941,-0.974898,0.045547,-0.217941, + -0.974898,0.045547,-0.217941,-0.974898,0.045547,-0.217941,-0.974898,0.045547,-0.217941,0.200496,0.062041,-0.977728, + 0.200496,0.062041,-0.977728,0.200496,0.062041,-0.977728,0.200496,0.062041,-0.977728,-0.199202,-0.024478,0.979653, + -0.199202,-0.024478,0.979653,-0.199202,-0.024478,0.979653,-0.199202,-0.024478,0.979653,-0.031430,-0.996653,-0.075460, + -0.031430,-0.996653,-0.075460,-0.031430,-0.996653,-0.075460,-0.031430,-0.996653,-0.075460,0.051281,0.998437,-0.022200, + 0.051281,0.998437,-0.022200,0.051281,0.998437,-0.022200,0.051281,0.998437,-0.022200,0.978650,-0.040522,0.201499, + 0.978650,-0.040522,0.201499,0.978650,-0.040522,0.201499,0.978650,-0.040522,0.201499,0.958649,-0.047593,0.280584, + 0.958649,-0.047593,0.280584,0.958649,-0.047593,0.280584,0.958649,-0.047593,0.280584,0.958749,-0.048145,0.280148, + 0.958749,-0.048145,0.280148,0.958749,-0.048145,0.280148,0.958749,-0.048145,0.280148,0.028820,0.997082,0.070695, + 0.028820,0.997082,0.070695,0.028820,0.997082,0.070695,0.028820,0.997082,0.070695,0.025410,0.996189,0.083437, + 0.025410,0.996189,0.083437,0.025410,0.996189,0.083437,0.025410,0.996189,0.083437,-0.029942,-0.997337,-0.066504, + -0.029942,-0.997337,-0.066504,-0.029942,-0.997337,-0.066504,-0.029942,-0.997337,-0.066504,-0.026522,-0.996498,-0.079294, + -0.026522,-0.996498,-0.079294,-0.026522,-0.996498,-0.079294,-0.026522,-0.996498,-0.079294,0.958746,-0.048194,0.280148, + 0.958746,-0.048194,0.280148,0.958746,-0.048194,0.280148,0.958746,-0.048194,0.280148,0.025402,0.996190,0.083434, + 0.025402,0.996190,0.083434,0.025402,0.996190,0.083434,0.025402,0.996190,0.083434,-0.026522,-0.996497,-0.079315, + -0.026522,-0.996497,-0.079315,-0.026522,-0.996497,-0.079315,-0.026522,-0.996497,-0.079315,0.165750,-0.573001,-0.802619, + 0.165750,-0.573001,-0.802619,0.165750,-0.573001,-0.802619,0.165750,-0.573001,-0.802619,-0.164375,0.578237,0.799139, + -0.164375,0.578237,0.799139,-0.164375,0.578237,0.799139,-0.164375,0.578237,0.799139,0.973082,-0.032289,0.228188, + 0.973082,-0.032289,0.228188,0.973082,-0.032289,0.228188,0.973082,-0.032289,0.228188,0.947860,0.014026,0.318378, + 0.947860,0.014026,0.318378,0.947860,0.014026,0.318378,0.947860,0.014026,0.318378,0.014933,0.994614,0.102569, + 0.014933,0.994614,0.102569,0.014933,0.994614,0.102569,0.014933,0.994614,0.102569,0.029856,0.997364,0.066135, + 0.029856,0.997364,0.066135,0.029856,0.997364,0.066135,0.029856,0.997364,0.066135,0.984448,0.019620,0.174577, + 0.984448,0.019620,0.174577,0.984448,0.019620,0.174577,0.984448,0.019620,0.174577,0.966534,-0.047803,0.252047, + 0.966534,-0.047803,0.252047,0.966534,-0.047803,0.252047,0.966534,-0.047803,0.252047,0.249522,0.073578,-0.965570, + 0.249522,0.073578,-0.965570,0.249522,0.073578,-0.965570,0.249522,0.073578,-0.965570,-0.609386,-0.049923,0.791301, + -0.609386,-0.049923,0.791301,-0.609386,-0.049923,0.791301,-0.609386,-0.049923,0.791301,0.966597,-0.045660,0.252203, + 0.966597,-0.045660,0.252203,0.966597,-0.045660,0.252203,0.966597,-0.045660,0.252203,0.981011,-0.041308,0.189502, + 0.981011,-0.041308,0.189502,0.981011,-0.041308,0.189502,0.981011,-0.041308,0.189502,0.975937,-0.043008,0.213768, + 0.975937,-0.043008,0.213768,0.975937,-0.043008,0.213768,0.975937,-0.043008,0.213768,0.958624,-0.047596,0.280670, + 0.958624,-0.047596,0.280670,0.958624,-0.047596,0.280670,0.958624,-0.047596,0.280670,0.978865,-0.046098,0.199244, + 0.978865,-0.046098,0.199244,0.978865,-0.046098,0.199244,0.978865,-0.046098,0.199244,0.980120,-0.040631,0.194200, + 0.980120,-0.040631,0.194200,0.980120,-0.040631,0.194200,0.980120,-0.040631,0.194200,0.957716,-0.041501,0.284705, + 0.957716,-0.041501,0.284705,0.957716,-0.041501,0.284705,0.957716,-0.041501,0.284705,-0.191586,-0.037959,0.980741, + -0.191586,-0.037959,0.980741,-0.191586,-0.037959,0.980741,0.975175,-0.037998,0.218152,0.975175,-0.037998,0.218152, + 0.975175,-0.037998,0.218152,0.975175,-0.037998,0.218152,0.960806,-0.044720,0.273592,0.960806,-0.044720,0.273592, + 0.960806,-0.044720,0.273592,0.960806,-0.044720,0.273592,-0.372931,-0.056574,0.926133,-0.372931,-0.056574,0.926133, + -0.372931,-0.056574,0.926133,-0.372931,-0.056574,0.926133,-0.281545,-0.016980,0.959398,-0.281545,-0.016980,0.959398, + -0.281545,-0.016980,0.959398,-0.281545,-0.016980,0.959398,-0.281389,-0.004198,0.959585,-0.281389,-0.004198,0.959585, + -0.281389,-0.004198,0.959585,-0.281389,-0.004198,0.959585,0.952512,0.006271,0.304436,0.952512,0.006271,0.304436, + 0.952512,0.006271,0.304436,0.952512,0.006271,0.304436,-0.254962,-0.931903,-0.257977,-0.254962,-0.931903,-0.257977, + -0.254962,-0.931903,-0.257977,-0.254962,-0.931903,-0.257977,0.961234,0.017132,0.275200,0.961234,0.017132,0.275200, + 0.961234,0.017132,0.275200,0.961234,0.017132,0.275200,0.023552,0.997344,0.068917,0.023552,0.997344,0.068917, + 0.023552,0.997344,0.068917,0.023552,0.997344,0.068917,-0.966401,0.131802,-0.220676,-0.966401,0.131802,-0.220676, + -0.966401,0.131802,-0.220676,-0.966401,0.131802,-0.220676,-0.963314,0.045790,-0.264443,-0.963314,0.045790,-0.264443, + -0.963314,0.045790,-0.264443,-0.963314,0.045790,-0.264443,0.072323,-0.996173,-0.049085,0.072323,-0.996173,-0.049085, + 0.072323,-0.996173,-0.049085,0.292008,0.052667,-0.954965,0.292008,0.052667,-0.954965,0.292008,0.052667,-0.954965, + 0.292008,0.052667,-0.954965,-0.963314,0.045789,-0.264442,-0.963314,0.045789,-0.264442,-0.963314,0.045789,-0.264442, + -0.963314,0.045789,-0.264442,0.023970,-0.997790,-0.061977,0.023970,-0.997790,-0.061977,0.023970,-0.997790,-0.061977, + -0.705090,-0.665876,-0.243837,-0.705090,-0.665876,-0.243837,-0.705090,-0.665876,-0.243837,-0.705090,-0.665876,-0.243837, + 0.027100,0.996695,0.076575,0.027100,0.996695,0.076575,0.027100,0.996695,0.076575,0.027100,0.996695,0.076575, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.018361,0.995824,0.089424,0.018361,0.995824,0.089424,0.018361,0.995824,0.089424,0.018361,0.995824,0.089424, + 0.966629,-0.044471,0.252291,0.966629,-0.044471,0.252291,0.966629,-0.044471,0.252291,0.966629,-0.044471,0.252291, + 0.966227,-0.056820,0.251350,0.966227,-0.056820,0.251350,0.966227,-0.056820,0.251350,0.966227,-0.056820,0.251350, + -0.666602,-0.031427,0.744751,-0.666602,-0.031427,0.744751,-0.666602,-0.031427,0.744751,-0.666602,-0.031427,0.744751, + 0.288242,0.058343,-0.955779,0.288242,0.058343,-0.955779,0.288242,0.058343,-0.955779,0.288242,0.058343,-0.955779, + -0.613042,-0.042887,0.788886,-0.613042,-0.042887,0.788886,-0.613042,-0.042887,0.788886,-0.613042,-0.042887,0.788886, + 0.966594,-0.045660,0.252211,0.966594,-0.045660,0.252211,0.966594,-0.045660,0.252211,0.966594,-0.045660,0.252211, + -0.410914,-0.875227,-0.255199,-0.410914,-0.875227,-0.255199,-0.410914,-0.875227,-0.255199,-0.410914,-0.875227,-0.255199, + -0.698237,-0.663778,-0.268075,-0.698237,-0.663778,-0.268075,-0.698237,-0.663778,-0.268075,-0.698237,-0.663778,-0.268075, + -0.654135,-0.027350,0.755883,-0.654135,-0.027350,0.755883,-0.654135,-0.027350,0.755883,-0.654135,-0.027350,0.755883, + -0.706341,-0.038977,0.706798,-0.706341,-0.038977,0.706798,-0.706341,-0.038977,0.706798,-0.706341,-0.038977,0.706798, + 0.327264,0.064095,-0.942757,0.327264,0.064095,-0.942757,0.327264,0.064095,-0.942757,0.327264,0.064095,-0.942757, + -0.745956,-0.649265,-0.148339,-0.745956,-0.649265,-0.148339,-0.745956,-0.649265,-0.148339,-0.796887,-0.521601,-0.304800, + -0.796887,-0.521601,-0.304800,-0.796887,-0.521601,-0.304800,-0.796887,-0.521601,-0.304800,-0.028244,0.999408,0.019625, + -0.028244,0.999408,0.019625,-0.028244,0.999408,0.019625,-0.028244,0.999408,0.019625,0.060984,0.990858,0.120338, + 0.060984,0.990858,0.120338,0.060984,0.990858,0.120338,0.060984,0.990858,0.120338,-0.363913,-0.069718,0.928820, + -0.363913,-0.069718,0.928820,-0.363913,-0.069718,0.928820,0.936974,0.127725,0.325216,0.936974,0.127725,0.325216, + 0.936974,0.127725,0.325216,0.936974,0.127725,0.325216,0.975173,0.134395,0.175999,0.975173,0.134395,0.175999, + 0.975173,0.134395,0.175999,0.975173,0.134395,0.175999,0.150590,-0.988375,-0.020928,0.150590,-0.988375,-0.020928, + 0.150590,-0.988375,-0.020928,0.150590,-0.988375,-0.020928,-0.099645,0.994365,0.036170,-0.099645,0.994365,0.036170, + -0.099645,0.994365,0.036170,-0.099645,0.994365,0.036170,-0.099648,0.994365,0.036171,-0.099648,0.994365,0.036171, + -0.099648,0.994365,0.036171,-0.099648,0.994365,0.036171,0.939167,0.146948,0.310438,0.939167,0.146948,0.310438, + 0.939167,0.146948,0.310438,0.939167,0.146948,0.310438,0.150593,-0.988374,-0.020928,0.150593,-0.988374,-0.020928, + 0.150593,-0.988374,-0.020928,0.150593,-0.988374,-0.020928,0.939170,0.146927,0.310440,0.939170,0.146927,0.310440, + 0.939170,0.146927,0.310440,0.939170,0.146927,0.310440,-0.293766,-0.924890,-0.241412,-0.293766,-0.924890,-0.241412, + -0.293766,-0.924890,-0.241412,-0.293766,-0.924890,-0.241412,-0.288715,-0.008128,0.957380,-0.288715,-0.008128,0.957380, + -0.288715,-0.008128,0.957380,-0.288715,-0.008128,0.957380,0.961167,0.145201,0.234678,0.961167,0.145201,0.234678, + 0.961167,0.145201,0.234678,0.961167,0.145201,0.234678,0.966530,0.094650,0.238454,0.966530,0.094650,0.238454, + 0.966530,0.094650,0.238454,0.966530,0.094650,0.238454,-0.250518,0.511701,0.821829,-0.250518,0.511701,0.821829, + -0.250518,0.511701,0.821829,-0.250518,0.511701,0.821829,0.251005,-0.507190,-0.824473,0.251005,-0.507190,-0.824473, + 0.251005,-0.507190,-0.824473,0.251005,-0.507190,-0.824473,0.975299,0.085736,0.203571,0.975299,0.085736,0.203571, + 0.975299,0.085736,0.203571,0.975299,0.085736,0.203571,-0.975299,-0.085725,-0.203575,-0.975299,-0.085725,-0.203575, + -0.975299,-0.085725,-0.203575,-0.975299,-0.085725,-0.203575,-0.166156,-0.074060,0.983314,-0.166156,-0.074060,0.983314, + -0.166156,-0.074060,0.983314,-0.166156,-0.074060,0.983314,0.169881,0.036662,-0.984782,0.169881,0.036662,-0.984782, + 0.169881,0.036662,-0.984782,0.169881,0.036662,-0.984782,-0.100592,0.992901,0.063472,-0.100592,0.992901,0.063472, + -0.100592,0.992901,0.063472,-0.100592,0.992901,0.063472,0.083593,-0.995893,0.034771,0.083593,-0.995893,0.034771, + 0.083593,-0.995893,0.034771,0.083593,-0.995893,0.034771,0.977933,0.091962,0.187590,0.977933,0.091962,0.187590, + 0.977933,0.091962,0.187590,0.977933,0.091962,0.187590,-0.977932,-0.091963,-0.187595,-0.977932,-0.091963,-0.187595, + -0.977932,-0.091963,-0.187595,-0.977932,-0.091963,-0.187595,0.152614,0.140848,-0.978198,0.152614,0.140848,-0.978198, + 0.152614,0.140848,-0.978198,0.152614,0.140848,-0.978198,-0.156905,-0.103667,0.982158,-0.156905,-0.103667,0.982158, + -0.156905,-0.103667,0.982158,-0.156905,-0.103667,0.982158,0.118265,-0.984578,-0.128920,0.118265,-0.984578,-0.128920, + 0.118265,-0.984578,-0.128920,0.118265,-0.984578,-0.128920,-0.102526,0.994247,0.030990,-0.102526,0.994247,0.030990, + -0.102526,0.994247,0.030990,-0.102526,0.994247,0.030990,0.970806,0.081620,0.225553,0.970806,0.081620,0.225553, + 0.970806,0.081620,0.225553,0.970806,0.081620,0.225553,-0.970804,-0.081610,-0.225563,-0.970804,-0.081610,-0.225563, + -0.970804,-0.081610,-0.225563,-0.970804,-0.081610,-0.225563,0.201543,0.054982,-0.977935,0.201543,0.054982,-0.977935, + 0.201543,0.054982,-0.977935,0.201543,0.054982,-0.977935,-0.204889,-0.017491,0.978629,-0.204889,-0.017491,0.978629, + -0.204889,-0.017491,0.978629,-0.204889,-0.017491,0.978629,0.091791,-0.994859,-0.042782,0.091791,-0.994859,-0.042782, + 0.091791,-0.994859,-0.042782,0.091791,-0.994859,-0.042782,-0.071330,0.995950,-0.054739,-0.071330,0.995950,-0.054739, + -0.071330,0.995950,-0.054739,-0.071330,0.995950,-0.054739,0.974084,0.086512,0.208989,0.974084,0.086512,0.208989, + 0.974084,0.086512,0.208989,0.974084,0.086512,0.208989,0.954279,0.079561,0.288134,0.954279,0.079561,0.288134, + 0.954279,0.079561,0.288134,0.954279,0.079561,0.288134,0.954451,0.079002,0.287718,0.954451,0.079002,0.287718, + 0.954451,0.079002,0.287718,0.954451,0.079002,0.287718,-0.094401,0.994809,0.037986,-0.094401,0.994809,0.037986, + -0.094401,0.994809,0.037986,-0.094401,0.994809,0.037986,-0.097811,0.993911,0.050732,-0.097811,0.993911,0.050732, + -0.097811,0.993911,0.050732,-0.097811,0.993911,0.050732,0.093274,-0.995067,-0.033800,0.093274,-0.995067,-0.033800, + 0.093274,-0.995067,-0.033800,0.093274,-0.995067,-0.033800,0.096710,-0.994221,-0.046597,0.096710,-0.994221,-0.046597, + 0.096710,-0.994221,-0.046597,0.096710,-0.994221,-0.046597,0.954450,0.079011,0.287718,0.954450,0.079011,0.287718, + 0.954450,0.079011,0.287718,0.954450,0.079011,0.287718,-0.097817,0.993910,0.050732,-0.097817,0.993910,0.050732, + -0.097817,0.993910,0.050732,-0.097817,0.993910,0.050732,0.096712,-0.994221,-0.046594,0.096712,-0.994221,-0.046594, + 0.096712,-0.994221,-0.046594,0.096712,-0.994221,-0.046594,0.243077,-0.573618,-0.782225,0.243077,-0.573618,-0.782225, + 0.243077,-0.573618,-0.782225,0.243077,-0.573618,-0.782225,-0.242365,0.578855,0.778580,-0.242365,0.578855,0.778580, + -0.242365,0.578855,0.778580,-0.242365,0.578855,0.778580,0.967269,0.094855,0.235356,0.967269,0.094855,0.235356, + 0.967269,0.094855,0.235356,0.967269,0.094855,0.235356,0.935624,0.140561,0.323807,0.935624,0.140561,0.323807, + 0.935624,0.140561,0.323807,0.935624,0.140561,0.323807,-0.108214,0.991672,0.069838,-0.108214,0.991672,0.069838, + -0.108214,0.991672,0.069838,-0.108214,0.991672,0.069838,-0.093363,0.995071,0.033429,-0.093363,0.995071,0.033429, + -0.093363,0.995071,0.033429,-0.093363,0.995071,0.033429,0.972742,0.146025,0.180138,0.972742,0.146025,0.180138, + 0.972742,0.146025,0.180138,0.972742,0.146025,0.180138,0.962427,0.079416,0.259670,0.962427,0.079416,0.259670, + 0.962427,0.079416,0.259670,0.962427,0.079416,0.259670,0.248649,0.072837,-0.965851,0.248649,0.072837,-0.965851, + 0.248649,0.072837,-0.965851,0.248649,0.072837,-0.965851,-0.606863,-0.099162,0.788596,-0.606863,-0.099162,0.788596, + -0.606863,-0.099162,0.788596,-0.606863,-0.099162,0.788596,0.962223,0.081554,0.259760,0.962223,0.081554,0.259760, + 0.962223,0.081554,0.259760,0.962223,0.081554,0.259760,0.976648,0.085641,0.197037,0.976648,0.085641,0.197037, + 0.976648,0.085641,0.197037,0.976648,0.085641,0.197037,0.971569,0.084106,0.221316,0.971569,0.084106,0.221316, + 0.971569,0.084106,0.221316,0.971569,0.084106,0.221316,0.954253,0.079562,0.288221,0.954253,0.079562,0.288221, + 0.954253,0.079562,0.288221,0.954253,0.079562,0.288221,0.975004,0.080938,0.206920,0.975004,0.080938,0.206920, + 0.975004,0.080938,0.206920,0.975004,0.080938,0.206920,0.975632,0.086352,0.201705,0.975632,0.086352,0.201705, + 0.975632,0.086352,0.201705,0.975632,0.086352,0.201705,0.952563,0.085624,0.292048,0.952563,0.085624,0.292048, + 0.952563,0.085624,0.292048,0.952563,0.085624,0.292048,-0.195680,-0.029902,0.980212,-0.195680,-0.029902,0.980212, + -0.195680,-0.029902,0.980212,0.970152,0.089121,0.225529,0.970152,0.089121,0.225529,0.970152,0.089121,0.225529, + 0.970152,0.089121,0.225529,0.956139,0.082458,0.281066,0.956139,0.082458,0.281066,0.956139,0.082458,0.281066, + 0.956139,0.082458,0.281066,-0.372792,-0.072395,0.925087,-0.372792,-0.072395,0.925087,-0.372792,-0.072395,0.925087, + -0.372792,-0.072395,0.925087,-0.287299,-0.020830,0.957614,-0.287299,-0.020830,0.957614,-0.287299,-0.020830,0.957614, + -0.287299,-0.020830,0.957614,-0.288709,-0.008126,0.957382,-0.288709,-0.008126,0.957382,-0.288709,-0.008126,0.957382, + -0.288709,-0.008126,0.957382,0.941336,0.132996,0.310158,0.941336,0.132996,0.310158,0.941336,0.132996,0.310158, + 0.941336,0.132996,0.310158,-0.136063,-0.963928,-0.228759,-0.136063,-0.963928,-0.228759,-0.136063,-0.963928,-0.228759, + -0.136063,-0.963928,-0.228759,0.948963,0.143912,0.280638,0.948963,0.143912,0.280638,0.948963,0.143912,0.280638, + 0.948963,0.143912,0.280638,-0.099646,0.994365,0.036170,-0.099646,0.994365,0.036170,-0.099646,0.994365,0.036170, + -0.099646,0.994365,0.036170,-0.972921,0.004918,-0.231084,-0.972921,0.004918,-0.231084,-0.972921,0.004918,-0.231084, + -0.972921,0.004918,-0.231084,-0.958854,-0.081423,-0.271974,-0.958854,-0.081423,-0.271974,-0.958854,-0.081423,-0.271974, + -0.958854,-0.081423,-0.271974,0.194444,-0.980787,-0.015777,0.194444,-0.980787,-0.015777,0.194444,-0.980787,-0.015777, + 0.293270,0.057654,-0.954290,0.293270,0.057654,-0.954290,0.293270,0.057654,-0.954290,0.293270,0.057654,-0.954290, + -0.958855,-0.081404,-0.271974,-0.958855,-0.081404,-0.271974,-0.958855,-0.081404,-0.271974,-0.958855,-0.081404,-0.271974, + 0.146783,-0.988746,-0.028908,0.146783,-0.988746,-0.028908,0.146783,-0.988746,-0.028908,-0.615538,-0.754925,-0.226277, + -0.615538,-0.754925,-0.226277,-0.615538,-0.754925,-0.226277,-0.615538,-0.754925,-0.226277,-0.096123,0.994402,0.043866, + -0.096123,0.994402,0.043866,-0.096123,0.994402,0.043866,-0.096123,0.994402,0.043866,0.254838,0.066045,-0.964726, + 0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,-0.104822,0.992874,0.056682, + -0.104822,0.992874,0.056682,-0.104822,0.992874,0.056682,-0.104822,0.992874,0.056682,0.962106,0.082741,0.259820, + 0.962106,0.082741,0.259820,0.962106,0.082741,0.259820,0.962106,0.082741,0.259820,0.963234,0.070411,0.259274, + 0.963234,0.070411,0.259274,0.963234,0.070411,0.259274,0.963234,0.070411,0.259274,-0.665429,-0.089333,0.741096, + -0.665429,-0.089333,0.741096,-0.665429,-0.089333,0.741096,-0.665429,-0.089333,0.741096,0.288837,0.062796,-0.955317, + 0.288837,0.062796,-0.955317,0.288837,0.062796,-0.955317,0.288837,0.062796,-0.955317,-0.611329,-0.092709,0.785927, + -0.611329,-0.092709,0.785927,-0.611329,-0.092709,0.785927,-0.611329,-0.092709,0.785927,0.962222,0.081553,0.259764, + 0.962222,0.081553,0.259764,0.962222,0.081553,0.259764,0.962222,0.081553,0.259764,-0.297805,-0.926790,-0.228849, + -0.297805,-0.926790,-0.228849,-0.297805,-0.926790,-0.228849,-0.297805,-0.926790,-0.228849,-0.608744,-0.752773,-0.250527, + -0.608744,-0.752773,-0.250527,-0.608744,-0.752773,-0.250527,-0.608744,-0.752773,-0.250527,-0.653672,-0.083402,0.752169, + -0.653672,-0.083402,0.752169,-0.653672,-0.083402,0.752169,-0.653672,-0.083402,0.752169,-0.703546,-0.102916,0.703158, + -0.703546,-0.102916,0.703158,-0.703546,-0.102916,0.703158,-0.703546,-0.102916,0.703158,0.326729,0.073714,-0.942239, + 0.326729,0.073714,-0.942239,0.326729,0.073714,-0.942239,0.326729,0.073714,-0.942239,-0.659128,-0.740419,-0.131643, + -0.659128,-0.740419,-0.131643,-0.659128,-0.740419,-0.131643,-0.723696,-0.625043,-0.292549,-0.723696,-0.625043,-0.292549, + -0.723696,-0.625043,-0.292549,-0.723696,-0.625043,-0.292549,-0.150788,0.988474,-0.013494,-0.150788,0.988474,-0.013494, + -0.150788,0.988474,-0.013494,-0.150788,0.988474,-0.013494,-0.062242,0.994173,0.088014,-0.062242,0.994173,0.088014, + -0.062242,0.994173,0.088014,-0.062242,0.994173,0.088014,0.854181,0.422995,0.302407,0.854181,0.422995,0.302407, + 0.854181,0.422995,0.302407,0.854181,0.422995,0.302407,0.882294,0.426822,0.198444,0.882294,0.426822,0.198444, + 0.882294,0.426822,0.198444,0.882294,0.426822,0.198444,0.422189,-0.904743,0.056543,0.422189,-0.904743,0.056543, + 0.422189,-0.904743,0.056543,0.422189,-0.904743,0.056543,-0.375452,0.925918,-0.041371,-0.375452,0.925918,-0.041371, + -0.375452,0.925918,-0.041371,-0.375452,0.925918,-0.041371,-0.375451,0.925919,-0.041371,-0.375451,0.925919,-0.041371, + -0.375451,0.925919,-0.041371,-0.375451,0.925919,-0.041371,0.850594,0.427439,0.306243,0.850594,0.427439,0.306243, + 0.850594,0.427439,0.306243,0.850594,0.427439,0.306243,0.422190,-0.904742,0.056543,0.422190,-0.904742,0.056543, + 0.422190,-0.904742,0.056543,0.422190,-0.904742,0.056543,0.850592,0.427445,0.306242,0.850592,0.427445,0.306242, + 0.850592,0.427445,0.306242,0.850592,0.427445,0.306242,-0.019142,-0.987079,-0.159085,-0.019142,-0.987079,-0.159085, + -0.019142,-0.987079,-0.159085,-0.019142,-0.987079,-0.159085,-0.303357,-0.020698,0.952652,-0.303357,-0.020698,0.952652, + -0.303357,-0.020698,0.952652,-0.303357,-0.020698,0.952652,0.878026,0.426739,0.216710,0.878026,0.426739,0.216710, + 0.878026,0.426739,0.216710,0.878026,0.426739,0.216710,-0.318585,-0.092410,0.943379,-0.318585,-0.092410,0.943379, + -0.318585,-0.092410,0.943379,-0.318585,-0.092410,0.943379,0.884975,0.365139,0.288951,0.884975,0.365139,0.288951, + 0.884975,0.365139,0.288951,0.884975,0.365139,0.288951,-0.373983,0.927048,-0.026797,-0.373983,0.927048,-0.026797, + -0.373983,0.927048,-0.026797,-0.373983,0.927048,-0.026797,0.372898,-0.927356,0.030944,0.372898,-0.927356,0.030944, + 0.372898,-0.927356,0.030944,0.372898,-0.927356,0.030944,0.904871,0.370758,0.209156,0.904871,0.370758,0.209156, + 0.904871,0.370758,0.209156,0.904871,0.370758,0.209156,-0.181297,0.825196,-0.534961,-0.181297,0.825196,-0.534961, + -0.181297,0.825196,-0.534961,-0.181297,0.825196,-0.534961,0.183386,-0.827353,0.530902,0.183386,-0.827353,0.530902, + 0.183386,-0.827353,0.530902,0.183386,-0.827353,0.530902,0.903044,0.370329,0.217640,0.903044,0.370329,0.217640, + 0.903044,0.370329,0.217640,0.903044,0.370329,0.217640,-0.449225,0.790043,0.417169,-0.449225,0.790043,0.417169, + -0.449225,0.790043,0.417169,-0.449225,0.790043,0.417169,0.449525,-0.787492,-0.421645,0.449525,-0.787492,-0.421645, + 0.449525,-0.787492,-0.421645,0.449525,-0.787492,-0.421645,0.905617,0.371419,0.204711,0.905617,0.371419,0.204711, + 0.905617,0.371419,0.204711,0.905617,0.371419,0.204711,-0.905618,-0.371413,-0.204717,-0.905618,-0.371413,-0.204717, + -0.905618,-0.371413,-0.204717,-0.905618,-0.371413,-0.204717,-0.168049,-0.047394,0.984639,-0.168049,-0.047394,0.984639, + -0.168049,-0.047394,0.984639,-0.168049,-0.047394,0.984639,0.182092,0.012540,-0.983202,0.182092,0.012540,-0.983202, + 0.182092,0.012540,-0.983202,0.182092,0.012540,-0.983202,-0.376804,0.926187,-0.014044,-0.376804,0.926187,-0.014044, + -0.376804,0.926187,-0.014044,-0.376804,0.926187,-0.014044,0.358330,-0.926843,0.112076,0.358330,-0.926843,0.112076, + 0.358330,-0.926843,0.112076,0.358330,-0.926843,0.112076,0.906868,0.376990,0.188332,0.906868,0.376990,0.188332, + 0.906868,0.376990,0.188332,0.906868,0.376990,0.188332,-0.906873,-0.376976,-0.188338,-0.906873,-0.376976,-0.188338, + -0.906873,-0.376976,-0.188338,-0.906873,-0.376976,-0.188338,0.136162,0.107834,-0.984800,0.136162,0.107834,-0.984800, + 0.136162,0.107834,-0.984800,0.136162,0.107834,-0.984800,-0.150798,-0.073178,0.985852,-0.150798,-0.073178,0.985852, + -0.150798,-0.073178,0.985852,-0.150798,-0.073178,0.985852,0.393341,-0.917938,-0.051707,0.393341,-0.917938,-0.051707, + 0.393341,-0.917938,-0.051707,0.393341,-0.917938,-0.051707,-0.378068,0.924607,-0.046552,-0.378068,0.924607,-0.046552, + -0.378068,0.924607,-0.046552,-0.378068,0.924607,-0.046552,0.901797,0.367790,0.226918,0.901797,0.367790,0.226918, + 0.901797,0.367790,0.226918,0.901797,0.367790,0.226918,-0.901798,-0.367785,-0.226923,-0.901798,-0.367785,-0.226923, + -0.901798,-0.367785,-0.226923,-0.901798,-0.367785,-0.226923,0.207286,0.039502,-0.977483,0.207286,0.039502,-0.977483, + 0.207286,0.039502,-0.977483,0.207286,0.039502,-0.977483,-0.220879,-0.004481,0.975291,-0.220879,-0.004481,0.975291, + -0.220879,-0.004481,0.975291,-0.220879,-0.004481,0.975291,0.368272,-0.929069,0.034744,0.368272,-0.929069,0.034744, + 0.368272,-0.929069,0.034744,0.368272,-0.929069,0.034744,-0.345996,0.928919,-0.131891,-0.345996,0.928919,-0.131891, + -0.345996,0.928919,-0.131891,-0.345996,0.928919,-0.131891,0.903044,0.370332,0.217638,0.903044,0.370332,0.217638, + 0.903044,0.370332,0.217638,0.903044,0.370332,0.217638,-0.181227,0.825102,-0.535130,-0.181227,0.825102,-0.535130, + -0.181227,0.825102,-0.535130,-0.181227,0.825102,-0.535130,0.183315,-0.827255,0.531078,0.183315,-0.827255,0.531078, + 0.183315,-0.827255,0.531078,0.183315,-0.827255,0.531078,0.901812,0.370053,0.223151,0.901812,0.370053,0.223151, + 0.901812,0.370053,0.223151,0.901812,0.370053,0.223151,-0.449150,0.790927,0.415570,-0.449150,0.790927,0.415570, + -0.449150,0.790927,0.415570,-0.449150,0.790927,0.415570,0.449431,-0.788399,-0.420046,0.449431,-0.788399,-0.420046, + 0.449431,-0.788399,-0.420046,0.449431,-0.788399,-0.420046,0.853844,0.422882,0.303514,0.853844,0.422882,0.303514, + 0.853844,0.422882,0.303514,0.853844,0.422882,0.303514,-0.379798,0.924757,-0.024028,-0.379798,0.924757,-0.024028, + -0.379798,0.924757,-0.024028,-0.379798,0.924757,-0.024028,-0.372978,0.927319,-0.031107,-0.372978,0.927319,-0.031107, + -0.372978,0.927319,-0.031107,-0.372978,0.927319,-0.031107,0.882651,0.426814,0.196868,0.882651,0.426814,0.196868, + 0.882651,0.426814,0.196868,0.882651,0.426814,0.196868,-0.638102,-0.211831,0.740239,-0.638102,-0.211831,0.740239, + -0.638102,-0.211831,0.740239,-0.638102,-0.211831,0.740239,0.894249,0.363515,0.261104,0.894249,0.363515,0.261104, + 0.894249,0.363515,0.261104,0.894249,0.363515,0.261104,0.290217,0.065599,-0.954710,0.290217,0.065599,-0.954710, + 0.290217,0.065599,-0.954710,0.290217,0.065599,-0.954710,-0.064275,-0.055722,-0.996375,-0.064275,-0.055722,-0.996375, + -0.064275,-0.055722,-0.996375,-0.064275,-0.055722,-0.996375,-0.310915,-0.097108,0.945464,-0.310915,-0.097108,0.945464, + -0.310915,-0.097108,0.945464,-0.310915,-0.097108,0.945464,0.892554,0.367757,0.260964,0.892554,0.367757,0.260964, + 0.892554,0.367757,0.260964,0.892554,0.367757,0.260964,0.899943,0.372553,0.226508,0.899943,0.372553,0.226508, + 0.899943,0.372553,0.226508,0.899943,0.372553,0.226508,0.887078,0.365573,0.281867,0.887078,0.365573,0.281867, + 0.887078,0.365573,0.281867,0.887078,0.365573,0.281867,0.906020,0.370567,0.204469,0.906020,0.370567,0.204469, + 0.906020,0.370567,0.204469,0.906020,0.370567,0.204469,-0.303365,-0.020698,0.952650,-0.303365,-0.020698,0.952650, + -0.303365,-0.020698,0.952650,-0.303365,-0.020698,0.952650,-0.303363,-0.020697,0.952650,-0.303363,-0.020697,0.952650, + -0.303363,-0.020697,0.952650,-0.303363,-0.020697,0.952650,0.850594,0.427438,0.306245,0.850594,0.427438,0.306245, + 0.850594,0.427438,0.306245,0.850594,0.427438,0.306245,0.220058,-0.970155,-0.101853,0.220058,-0.970155,-0.101853, + 0.220058,-0.970155,-0.101853,0.220058,-0.970155,-0.101853,0.858245,0.424184,0.288935,0.858245,0.424184,0.288935, + 0.858245,0.424184,0.288935,0.858245,0.424184,0.288935,-0.368966,-0.910935,-0.184560,-0.368966,-0.910935,-0.184560, + -0.368966,-0.910935,-0.184560,-0.368966,-0.910935,-0.184560,-0.373594,0.927146,-0.028783,-0.373594,0.927146,-0.028783, + -0.373594,0.927146,-0.028783,-0.373594,0.927146,-0.028783,-0.379006,0.924996,-0.027146,-0.379006,0.924996,-0.027146, + -0.379006,0.924996,-0.027146,-0.379006,0.924996,-0.027146,-0.354720,-0.107148,0.928813,-0.354720,-0.107148,0.928813, + -0.354720,-0.107148,0.928813,-0.020440,-0.987755,-0.154666,-0.020440,-0.987755,-0.154666,-0.020440,-0.987755,-0.154666, + -0.020440,-0.987755,-0.154666,-0.366488,-0.910066,-0.193561,-0.366488,-0.910066,-0.193561,-0.366488,-0.910066,-0.193561, + -0.366488,-0.910066,-0.193561,-0.889004,-0.367536,-0.273110,-0.889004,-0.367536,-0.273110,-0.889004,-0.367536,-0.273110, + -0.889004,-0.367536,-0.273110,0.892558,0.367754,0.260955,0.892558,0.367754,0.260955,0.892558,0.367754,0.260955, + 0.892558,0.367754,0.260955,-0.057036,-0.060231,-0.996554,-0.057036,-0.060231,-0.996554,-0.057036,-0.060231,-0.996554, + -0.057036,-0.060231,-0.996554,0.892486,0.367938,0.260941,0.892486,0.367938,0.260941,0.892486,0.367938,0.260941, + 0.892486,0.367938,0.260941,0.894260,0.363484,0.261110,0.894260,0.363484,0.261110,0.894260,0.363484,0.261110, + 0.894260,0.363484,0.261110,0.903912,0.372434,0.210322,0.903912,0.372434,0.210322,0.903912,0.372434,0.210322, + 0.903912,0.372434,0.210322,0.882098,0.370331,0.291133,0.882098,0.370331,0.291133,0.882098,0.370331,0.291133, + 0.882098,0.370331,0.291133,0.905184,0.369571,0.209901,0.905184,0.369571,0.209901,0.905184,0.369571,0.209901, + 0.905184,0.369571,0.209901,-0.318389,-0.082252,0.944385,-0.318389,-0.082252,0.944385,-0.318389,-0.082252,0.944385, + -0.318389,-0.082252,0.944385,0.317661,0.092065,-0.943724,0.317661,0.092065,-0.943724,0.317661,0.092065,-0.943724, + 0.317661,0.092065,-0.943724,0.330196,-0.943641,0.022619,0.330196,-0.943641,0.022619,0.330196,-0.943641,0.022619, + -0.653389,-0.235342,0.719512,-0.653389,-0.235342,0.719512,-0.653389,-0.235342,0.719512,-0.653389,-0.235342,0.719512, + -0.354638,-0.094139,0.930252,-0.354638,-0.094139,0.930252,-0.354638,-0.094139,0.930252,-0.354638,-0.094139,0.930252, + -0.025122,-0.057794,-0.998012,-0.025122,-0.057794,-0.998012,-0.025122,-0.057794,-0.998012,-0.025122,-0.057794,-0.998012, + 0.266323,-0.963874,0.004364,0.266323,-0.963874,0.004364,0.266323,-0.963874,0.004364,-0.889005,-0.367535,-0.273109, + -0.889005,-0.367535,-0.273109,-0.889005,-0.367535,-0.273109,-0.889005,-0.367535,-0.273109,-0.347556,-0.933915,-0.083717, + -0.347556,-0.933915,-0.083717,-0.347556,-0.933915,-0.083717,-0.390774,-0.895160,-0.214439,-0.390774,-0.895160,-0.214439, + -0.390774,-0.895160,-0.214439,-0.390774,-0.895160,-0.214439,-0.409734,0.909703,-0.067517,-0.409734,0.909703,-0.067517, + -0.409734,0.909703,-0.067517,-0.409734,0.909703,-0.067517,-0.420067,0.904008,-0.079454,-0.420067,0.904008,-0.079454, + -0.420067,0.904008,-0.079454,-0.348926,0.937115,0.008137,-0.348926,0.937115,0.008137,-0.348926,0.937115,0.008137, + -0.348926,0.937115,0.008137,-0.908392,-0.333661,-0.251981,-0.908392,-0.333661,-0.251981,-0.908392,-0.333661,-0.251981, + -0.363763,-0.055131,0.929859,-0.363763,-0.055131,0.929859,-0.363763,-0.055131,0.929859,0.947633,0.001073,0.319360, + 0.947633,0.001073,0.319360,0.947633,0.001073,0.319360,0.947633,0.001073,0.319360,0.985405,0.007933,0.170043, + 0.985405,0.007933,0.170043,0.985405,0.007933,0.170043,0.985405,0.007933,0.170043,0.027841,-0.998151,-0.054025, + 0.027841,-0.998151,-0.054025,0.027841,-0.998151,-0.054025,0.027841,-0.998151,-0.054025,0.023552,0.997344,0.068915, + 0.023552,0.997344,0.068915,0.023552,0.997344,0.068915,0.023552,0.997344,0.068915,0.023548,0.997344,0.068919, + 0.023548,0.997344,0.068919,0.023548,0.997344,0.068919,0.023548,0.997344,0.068919,0.952076,0.020356,0.305182, + 0.952076,0.020356,0.305182,0.952076,0.020356,0.305182,0.952076,0.020356,0.305182,0.027837,-0.998152,-0.054023, + 0.027837,-0.998152,-0.054023,0.027837,-0.998152,-0.054023,0.027837,-0.998152,-0.054023,0.952076,0.020358,0.305183, + 0.952076,0.020358,0.305183,0.952076,0.020358,0.305183,0.952076,0.020358,0.305183,-0.406753,-0.873424,-0.267736, + -0.406753,-0.873424,-0.267736,-0.406753,-0.873424,-0.267736,-0.406753,-0.873424,-0.267736,-0.281385,-0.004197,0.959586, + -0.281385,-0.004197,0.959586,-0.281385,-0.004197,0.959586,-0.281385,-0.004197,0.959586,0.973209,0.018426,0.229181, + 0.973209,0.018426,0.229181,0.973209,0.018426,0.229181,0.973209,0.018426,0.229181,0.972345,-0.032495,0.231279, + 0.972345,-0.032495,0.231279,0.972345,-0.032495,0.231279,0.972345,-0.032495,0.231279,-0.180467,0.511208,0.840296, + -0.180467,0.511208,0.840296,-0.180467,0.511208,0.840296,-0.180467,0.511208,0.840296,0.181493,-0.506728,-0.842785, + 0.181493,-0.506728,-0.842785,0.181493,-0.506728,-0.842785,0.181493,-0.506728,-0.842785,0.979725,-0.041279,0.196047, + 0.979725,-0.041279,0.196047,0.979725,-0.041279,0.196047,0.979725,-0.041279,0.196047,-0.979725,0.041283,-0.196048, + -0.979725,0.041283,-0.196048,-0.979725,0.041283,-0.196048,-0.979725,0.041283,-0.196048,-0.167684,-0.085470,0.982129, + -0.167684,-0.085470,0.982129,-0.167684,-0.085470,0.982129,-0.167684,-0.085470,0.982129,0.166701,0.047996,-0.984839, + 0.166701,0.047996,-0.984839,0.166701,0.047996,-0.984839,0.166701,0.047996,-0.984839,0.022578,0.995110,0.096159, + 0.022578,0.995110,0.096159,0.022578,0.995110,0.096159,0.022578,0.995110,0.096159,-0.039238,-0.999228,0.002101, + -0.039238,-0.999228,0.002101,-0.039238,-0.999228,0.002101,-0.039238,-0.999228,0.002101,0.983002,-0.034886,0.180251, + 0.983002,-0.034886,0.180251,0.983002,-0.034886,0.180251,0.983002,-0.034886,0.180251,-0.983002,0.034879,-0.180251, + -0.983002,0.034879,-0.180251,-0.983002,0.034879,-0.180251,-0.983002,0.034879,-0.180251,0.162518,0.153220,-0.974737, + 0.162518,0.153220,-0.974737,0.162518,0.153220,-0.974737,0.162518,0.153220,-0.974737,-0.162210,-0.115947,0.979921, + -0.162210,-0.115947,0.979921,-0.162210,-0.115947,0.979921,-0.162210,-0.115947,0.979921,-0.004489,-0.986861,-0.161512, + -0.004489,-0.986861,-0.161512,-0.004489,-0.986861,-0.161512,-0.004489,-0.986861,-0.161512,0.020646,0.997753,0.063740, + 0.020646,0.997753,0.063740,0.020646,0.997753,0.063740,0.020646,0.997753,0.063740,0.974900,-0.045542,0.217935, + 0.974900,-0.045542,0.217935,0.974900,-0.045542,0.217935,0.974900,-0.045542,0.217935,-0.974898,0.045550,-0.217942, + -0.974898,0.045550,-0.217942,-0.974898,0.045550,-0.217942,-0.974898,0.045550,-0.217942,0.200538,0.062041,-0.977719, + 0.200538,0.062041,-0.977719,0.200538,0.062041,-0.977719,0.200538,0.062041,-0.977719,-0.199119,-0.024484,0.979669, + -0.199119,-0.024484,0.979669,-0.199119,-0.024484,0.979669,-0.199119,-0.024484,0.979669,-0.031487,-0.996654,-0.075430, + -0.031487,-0.996654,-0.075430,-0.031487,-0.996654,-0.075430,-0.031487,-0.996654,-0.075430,0.051309,0.998436,-0.022184, + 0.051309,0.998436,-0.022184,0.051309,0.998436,-0.022184,0.051309,0.998436,-0.022184,0.978650,-0.040523,0.201499, + 0.978650,-0.040523,0.201499,0.978650,-0.040523,0.201499,0.978650,-0.040523,0.201499,0.958649,-0.047605,0.280583, + 0.958649,-0.047605,0.280583,0.958649,-0.047605,0.280583,0.958649,-0.047605,0.280583,0.958749,-0.048143,0.280147, + 0.958749,-0.048143,0.280147,0.958749,-0.048143,0.280147,0.958749,-0.048143,0.280147,0.028828,0.997082,0.070679, + 0.028828,0.997082,0.070679,0.028828,0.997082,0.070679,0.028828,0.997082,0.070679,0.025412,0.996189,0.083441, + 0.025412,0.996189,0.083441,0.025412,0.996189,0.083441,0.025412,0.996189,0.083441,-0.029949,-0.997337,-0.066499, + -0.029949,-0.997337,-0.066499,-0.029949,-0.997337,-0.066499,-0.029949,-0.997337,-0.066499,-0.026521,-0.996497,-0.079307, + -0.026521,-0.996497,-0.079307,-0.026521,-0.996497,-0.079307,-0.026521,-0.996497,-0.079307,0.958748,-0.048175,0.280146, + 0.958748,-0.048175,0.280146,0.958748,-0.048175,0.280146,0.958748,-0.048175,0.280146,0.025409,0.996189,0.083437, + 0.025409,0.996189,0.083437,0.025409,0.996189,0.083437,0.025409,0.996189,0.083437,-0.026520,-0.996498,-0.079303, + -0.026520,-0.996498,-0.079303,-0.026520,-0.996498,-0.079303,-0.026520,-0.996498,-0.079303,0.165730,-0.572992,-0.802629, + 0.165730,-0.572992,-0.802629,0.165730,-0.572992,-0.802629,0.165730,-0.572992,-0.802629,-0.164406,0.578245,0.799127, + -0.164406,0.578245,0.799127,-0.164406,0.578245,0.799127,-0.164406,0.578245,0.799127,0.973082,-0.032292,0.228186, + 0.973082,-0.032292,0.228186,0.973082,-0.032292,0.228186,0.973082,-0.032292,0.228186,0.947861,0.014031,0.318376, + 0.947861,0.014031,0.318376,0.947861,0.014031,0.318376,0.947861,0.014031,0.318376,0.014933,0.994613,0.102572, + 0.014933,0.994613,0.102572,0.014933,0.994613,0.102572,0.014933,0.994613,0.102572,0.029858,0.997364,0.066135, + 0.029858,0.997364,0.066135,0.029858,0.997364,0.066135,0.029858,0.997364,0.066135,0.984448,0.019630,0.174577, + 0.984448,0.019630,0.174577,0.984448,0.019630,0.174577,0.984448,0.019630,0.174577,0.966534,-0.047801,0.252044, + 0.966534,-0.047801,0.252044,0.966534,-0.047801,0.252044,0.966534,-0.047801,0.252044,0.249521,0.073578,-0.965570, + 0.249521,0.073578,-0.965570,0.249521,0.073578,-0.965570,0.249521,0.073578,-0.965570,-0.609384,-0.049923,0.791302, + -0.609384,-0.049923,0.791302,-0.609384,-0.049923,0.791302,-0.609384,-0.049923,0.791302,0.966596,-0.045658,0.252205, + 0.966596,-0.045658,0.252205,0.966596,-0.045658,0.252205,0.966596,-0.045658,0.252205,0.981011,-0.041309,0.189502, + 0.981011,-0.041309,0.189502,0.981011,-0.041309,0.189502,0.981011,-0.041309,0.189502,0.975937,-0.043006,0.213768, + 0.975937,-0.043006,0.213768,0.975937,-0.043006,0.213768,0.975937,-0.043006,0.213768,0.958624,-0.047597,0.280669, + 0.958624,-0.047597,0.280669,0.958624,-0.047597,0.280669,0.958624,-0.047597,0.280669,0.978865,-0.046098,0.199244, + 0.978865,-0.046098,0.199244,0.978865,-0.046098,0.199244,0.978865,-0.046098,0.199244,0.980120,-0.040632,0.194199, + 0.980120,-0.040632,0.194199,0.980120,-0.040632,0.194199,0.980120,-0.040632,0.194199,0.957716,-0.041501,0.284706, + 0.957716,-0.041501,0.284706,0.957716,-0.041501,0.284706,0.957716,-0.041501,0.284706,-0.191579,-0.037960,0.980743, + -0.191579,-0.037960,0.980743,-0.191579,-0.037960,0.980743,0.975175,-0.037999,0.218152,0.975175,-0.037999,0.218152, + 0.975175,-0.037999,0.218152,0.975175,-0.037999,0.218152,0.960806,-0.044718,0.273592,0.960806,-0.044718,0.273592, + 0.960806,-0.044718,0.273592,0.960806,-0.044718,0.273592,-0.372934,-0.056574,0.926131,-0.372934,-0.056574,0.926131, + -0.372934,-0.056574,0.926131,-0.372934,-0.056574,0.926131,-0.281548,-0.016979,0.959397,-0.281548,-0.016979,0.959397, + -0.281548,-0.016979,0.959397,-0.281548,-0.016979,0.959397,-0.281388,-0.004198,0.959585,-0.281388,-0.004198,0.959585, + -0.281388,-0.004198,0.959585,-0.281388,-0.004198,0.959585,0.952512,0.006272,0.304435,0.952512,0.006272,0.304435, + 0.952512,0.006272,0.304435,0.952512,0.006272,0.304435,-0.254963,-0.931902,-0.257977,-0.254963,-0.931902,-0.257977, + -0.254963,-0.931902,-0.257977,-0.254963,-0.931902,-0.257977,0.961234,0.017128,0.275202,0.961234,0.017128,0.275202, + 0.961234,0.017128,0.275202,0.961234,0.017128,0.275202,0.023552,0.997344,0.068915,0.023552,0.997344,0.068915, + 0.023552,0.997344,0.068915,0.023552,0.997344,0.068915,-0.966402,0.131793,-0.220675,-0.966402,0.131793,-0.220675, + -0.966402,0.131793,-0.220675,-0.966402,0.131793,-0.220675,-0.963314,0.045782,-0.264442,-0.963314,0.045782,-0.264442, + -0.963314,0.045782,-0.264442,-0.963314,0.045782,-0.264442,0.072325,-0.996172,-0.049095,0.072325,-0.996172,-0.049095, + 0.072325,-0.996172,-0.049095,0.292012,0.052667,-0.954964,0.292012,0.052667,-0.954964,0.292012,0.052667,-0.954964, + 0.292012,0.052667,-0.954964,-0.963314,0.045795,-0.264442,-0.963314,0.045795,-0.264442,-0.963314,0.045795,-0.264442, + -0.963314,0.045795,-0.264442,0.023976,-0.997789,-0.061986,0.023976,-0.997789,-0.061986,0.023976,-0.997789,-0.061986, + -0.705088,-0.665878,-0.243837,-0.705088,-0.665878,-0.243837,-0.705088,-0.665878,-0.243837,-0.705088,-0.665878,-0.243837, + 0.027106,0.996695,0.076575,0.027106,0.996695,0.076575,0.027106,0.996695,0.076575,0.027106,0.996695,0.076575, + 0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726,0.254837,0.066045,-0.964726, + 0.018365,0.995824,0.089426,0.018365,0.995824,0.089426,0.018365,0.995824,0.089426,0.018365,0.995824,0.089426, + 0.966628,-0.044473,0.252293,0.966628,-0.044473,0.252293,0.966628,-0.044473,0.252293,0.966628,-0.044473,0.252293, + 0.966227,-0.056820,0.251349,0.966227,-0.056820,0.251349,0.966227,-0.056820,0.251349,0.966227,-0.056820,0.251349, + -0.666609,-0.031427,0.744745,-0.666609,-0.031427,0.744745,-0.666609,-0.031427,0.744745,-0.666609,-0.031427,0.744745, + 0.288248,0.058342,-0.955777,0.288248,0.058342,-0.955777,0.288248,0.058342,-0.955777,0.288248,0.058342,-0.955777, + -0.613040,-0.042887,0.788887,-0.613040,-0.042887,0.788887,-0.613040,-0.042887,0.788887,-0.613040,-0.042887,0.788887, + 0.966595,-0.045658,0.252209,0.966595,-0.045658,0.252209,0.966595,-0.045658,0.252209,0.966595,-0.045658,0.252209, + -0.410911,-0.875229,-0.255198,-0.410911,-0.875229,-0.255198,-0.410911,-0.875229,-0.255198,-0.410911,-0.875229,-0.255198, + -0.698237,-0.663778,-0.268073,-0.698237,-0.663778,-0.268073,-0.698237,-0.663778,-0.268073,-0.698237,-0.663778,-0.268073, + -0.654137,-0.027350,0.755882,-0.654137,-0.027350,0.755882,-0.654137,-0.027350,0.755882,-0.654137,-0.027350,0.755882, + -0.706342,-0.038977,0.706797,-0.706342,-0.038977,0.706797,-0.706342,-0.038977,0.706797,-0.706342,-0.038977,0.706797, + 0.327269,0.064095,-0.942755,0.327269,0.064095,-0.942755,0.327269,0.064095,-0.942755,0.327269,0.064095,-0.942755, + -0.745954,-0.649267,-0.148339,-0.745954,-0.649267,-0.148339,-0.745954,-0.649267,-0.148339,-0.796889,-0.521598,-0.304801, + -0.796889,-0.521598,-0.304801,-0.796889,-0.521598,-0.304801,-0.796889,-0.521598,-0.304801,-0.028244,0.999408,0.019627, + -0.028244,0.999408,0.019627,-0.028244,0.999408,0.019627,-0.028244,0.999408,0.019627,0.060985,0.990858,0.120338, + 0.060985,0.990858,0.120338,0.060985,0.990858,0.120338,0.060985,0.990858,0.120338,-0.911979,0.374499,-0.167464, + -0.911979,0.374499,-0.167464,-0.911979,0.374499,-0.167464,-0.911979,0.374499,-0.167464,-0.882633,0.384300,-0.270689, + -0.882633,0.384300,-0.270689,-0.882633,0.384300,-0.270689,-0.882633,0.384300,-0.270689,0.353645,0.920992,0.163427, + 0.353645,0.920992,0.163427,0.353645,0.920992,0.163427,0.353645,0.920992,0.163427,-0.401571,-0.899296,-0.173227, + -0.401571,-0.899296,-0.173227,-0.401571,-0.899296,-0.173227,-0.401571,-0.899296,-0.173227,-0.401570,-0.899296,-0.173227, + -0.401570,-0.899296,-0.173227,-0.401570,-0.899296,-0.173227,-0.401570,-0.899296,-0.173227,-0.914756,0.369186,-0.164079, + -0.914756,0.369186,-0.164079,-0.914756,0.369186,-0.164079,-0.914756,0.369186,-0.164079,0.353644,0.920993,0.163427, + 0.353644,0.920993,0.163427,0.353644,0.920993,0.163427,0.353644,0.920993,0.163427,-0.914758,0.369183,-0.164080, + -0.914758,0.369183,-0.164080,-0.914758,0.369183,-0.164080,-0.914758,0.369183,-0.164080,0.759042,0.631751,0.157305, + 0.759042,0.631751,0.157305,0.759042,0.631751,0.157305,0.759042,0.631751,0.157305,-0.252829,-0.133207,0.958297, + -0.252829,-0.133207,0.958297,-0.252829,-0.133207,0.958297,-0.252829,-0.133207,0.958297,-0.888572,0.382681,-0.252973, + -0.888572,0.382681,-0.252973,-0.888572,0.382681,-0.252973,-0.888572,0.382681,-0.252973,-0.190906,-0.097363,0.976768, + -0.190906,-0.097363,0.976768,-0.190906,-0.097363,0.976768,-0.190906,-0.097363,0.976768,-0.883649,0.434824,-0.173475, + -0.883649,0.434824,-0.173475,-0.883649,0.434824,-0.173475,-0.883649,0.434824,-0.173475,-0.409878,-0.897782,-0.161210, + -0.409878,-0.897782,-0.161210,-0.409878,-0.897782,-0.161210,-0.409878,-0.897782,-0.161210,0.408793,0.897523,0.165353, + 0.408793,0.897523,0.165353,0.408793,0.897523,0.165353,0.408793,0.897523,0.165353,-0.862010,0.439304,-0.252886, + -0.862010,0.439304,-0.252886,-0.862010,0.439304,-0.252886,-0.862010,0.439304,-0.252886,-0.215290,-0.728523,-0.650311, + -0.215290,-0.728523,-0.650311,-0.215290,-0.728523,-0.650311,-0.215290,-0.728523,-0.650311,0.217447,0.731189,0.646590, + 0.217447,0.731189,0.646590,0.217447,0.731189,0.646590,0.217447,0.731189,0.646590,-0.864588,0.438924,-0.244606, + -0.864588,0.438924,-0.244606,-0.864588,0.438924,-0.244606,-0.864588,0.438924,-0.244606,-0.478041,-0.825896,0.298954, + -0.478041,-0.825896,0.298954,-0.478041,-0.825896,0.298954,-0.478041,-0.825896,0.298954,0.478212,0.824041,-0.303758, + 0.478212,0.824041,-0.303758,0.478212,0.824041,-0.303758,0.478212,0.824041,-0.303758,-0.860836,0.439053,-0.257280, + -0.860836,0.439053,-0.257280,-0.860836,0.439053,-0.257280,-0.860836,0.439053,-0.257280,0.860841,-0.439043,0.257282, + 0.860841,-0.439043,0.257282,0.860841,-0.439043,0.257282,0.860841,-0.439043,0.257282,-0.325878,-0.012647,0.945327, + -0.325878,-0.012647,0.945327,-0.325878,-0.012647,0.945327,-0.325878,-0.012647,0.945327,0.341119,0.046410,-0.938874, + 0.341119,0.046410,-0.938874,0.341119,0.046410,-0.938874,0.341119,0.046410,-0.938874,-0.413609,-0.898233,-0.148681, + -0.413609,-0.898233,-0.148681,-0.413609,-0.898233,-0.148681,-0.413609,-0.898233,-0.148681,0.379332,0.892993,0.242221, + 0.379332,0.892993,0.242221,0.379332,0.892993,0.242221,0.379332,0.892993,0.242221,-0.857812,0.434926,-0.273857, + -0.857812,0.434926,-0.273857,-0.857812,0.434926,-0.273857,-0.857812,0.434926,-0.273857,0.857813,-0.434925,0.273857, + 0.857813,-0.434925,0.273857,0.857813,-0.434925,0.273857,0.857813,-0.434925,0.273857,0.302696,-0.051311,-0.951705, + 0.302696,-0.051311,-0.951705,0.302696,-0.051311,-0.951705,0.302696,-0.051311,-0.951705,-0.318563,0.017420,0.947742, + -0.318563,0.017420,0.947742,-0.318563,0.017420,0.947742,-0.318563,0.017420,0.947742,0.428859,0.899633,0.082104, + 0.428859,0.899633,0.082104,0.428859,0.899633,0.082104,0.428859,0.899633,0.082104,-0.396826,-0.900768,-0.176483, + -0.396826,-0.900768,-0.176483,-0.396826,-0.900768,-0.176483,-0.396826,-0.900768,-0.176483,-0.866418,0.440454,-0.235200, + -0.866418,0.440454,-0.235200,-0.866418,0.440454,-0.235200,-0.866418,0.440454,-0.235200,0.866419,-0.440453,0.235200, + 0.866419,-0.440453,0.235200,0.866419,-0.440453,0.235200,0.866419,-0.440453,0.235200,0.305834,0.047468,-0.950901, + 0.305834,0.047468,-0.950901,0.305834,0.047468,-0.950901,0.305834,0.047468,-0.950901,-0.321026,-0.081130,0.943589, + -0.321026,-0.081130,0.943589,-0.321026,-0.081130,0.943589,-0.321026,-0.081130,0.943589,0.410849,0.895543,0.170900, + 0.410849,0.895543,0.170900,0.410849,0.895543,0.170900,0.410849,0.895543,0.170900,-0.378609,-0.886867,-0.264806, + -0.378609,-0.886867,-0.264806,-0.378609,-0.886867,-0.264806,-0.378609,-0.886867,-0.264806,-0.864594,0.438914,-0.244604, + -0.864594,0.438914,-0.244604,-0.864594,0.438914,-0.244604,-0.864594,0.438914,-0.244604,-0.215206,-0.728417,-0.650457, + -0.215206,-0.728417,-0.650457,-0.215206,-0.728417,-0.650457,-0.215206,-0.728417,-0.650457,0.217368,0.731076,0.646745, + 0.217368,0.731076,0.646745,0.217368,0.731076,0.646745,0.217368,0.731076,0.646745,-0.866238,0.438652,-0.239198, + -0.866238,0.438652,-0.239198,-0.866238,0.438652,-0.239198,-0.866238,0.438652,-0.239198,-0.477964,-0.826570,0.297206, + -0.477964,-0.826570,0.297206,-0.477964,-0.826570,0.297206,-0.477964,-0.826570,0.297206,0.478139,0.824722,-0.302020, + 0.478139,0.824722,-0.302020,0.478139,0.824722,-0.302020,0.478139,0.824722,-0.302020,-0.912225,0.374406,-0.166332, + -0.912225,0.374406,-0.166332,-0.912225,0.374406,-0.166332,-0.912225,0.374406,-0.166332,-0.406296,-0.900331,-0.155974, + -0.406296,-0.900331,-0.155974,-0.406296,-0.900331,-0.155974,-0.406296,-0.900331,-0.155974,-0.408644,-0.897571,-0.165460, + -0.408644,-0.897571,-0.165460,-0.408644,-0.897571,-0.165460,-0.408644,-0.897571,-0.165460,-0.882105,0.384437,-0.272212, + -0.882105,0.384437,-0.272212,-0.882105,0.384437,-0.272212,-0.882105,0.384437,-0.272212,0.165151,-0.270675,0.948399, + 0.165151,-0.270675,0.948399,0.165151,-0.270675,0.948399,0.165151,-0.270675,0.948399,-0.874970,0.440493,-0.200979, + -0.874970,0.440493,-0.200979,-0.874970,0.440493,-0.200979,-0.874970,0.440493,-0.200979,0.230513,0.093341,-0.968582, + 0.230513,0.093341,-0.968582,0.230513,0.093341,-0.968582,0.230513,0.093341,-0.968582,0.533308,-0.091452,-0.840963, + 0.533308,-0.091452,-0.840963,0.533308,-0.091452,-0.840963,0.533308,-0.091452,-0.840963,-0.192993,-0.088383,0.977211, + -0.192993,-0.088383,0.977211,-0.192993,-0.088383,0.977211,-0.192993,-0.088383,0.977211,-0.876841,0.436401,-0.201752, + -0.876841,0.436401,-0.201752,-0.876841,0.436401,-0.201752,-0.876841,0.436401,-0.201752,-0.868440,0.435863,-0.236294, + -0.868440,0.435863,-0.236294,-0.868440,0.435863,-0.236294,-0.868440,0.435863,-0.236294,-0.881878,0.435502,-0.180634, + -0.881878,0.435502,-0.180634,-0.881878,0.435502,-0.180634,-0.881878,0.435502,-0.180634,-0.860372,0.439894,-0.257397, + -0.860372,0.439894,-0.257397,-0.860372,0.439894,-0.257397,-0.860372,0.439894,-0.257397,-0.252829,-0.133207,0.958297, + -0.252829,-0.133207,0.958297,-0.252829,-0.133207,0.958297,-0.252829,-0.133207,0.958297,-0.252830,-0.133207,0.958297, + -0.252830,-0.133207,0.958297,-0.252830,-0.133207,0.958297,-0.252830,-0.133207,0.958297,-0.914756,0.369188,-0.164080, + -0.914756,0.369188,-0.164080,-0.914756,0.369188,-0.164080,-0.914756,0.369188,-0.164080,0.585724,0.802156,0.116075, + 0.585724,0.802156,0.116075,0.585724,0.802156,0.116075,0.585724,0.802156,0.116075,-0.908892,0.375610,-0.181198, + -0.908892,0.375610,-0.181198,-0.908892,0.375610,-0.181198,-0.908892,0.375610,-0.181198,0.916716,0.319925,0.239332, + 0.916716,0.319925,0.239332,0.916716,0.319925,0.239332,0.916716,0.319925,0.239332,-0.409257,-0.897717,-0.163135, + -0.409257,-0.897717,-0.163135,-0.409257,-0.897717,-0.163135,-0.409257,-0.897717,-0.163135,-0.405477,-0.900155,-0.159089, + -0.405477,-0.900155,-0.159089,-0.405477,-0.900155,-0.159089,-0.405477,-0.900155,-0.159089,-0.153667,-0.115458,0.981354, + -0.153667,-0.115458,0.981354,-0.153667,-0.115458,0.981354,0.758206,0.631598,0.161884,0.758206,0.631598,0.161884, + 0.758206,0.631598,0.161884,0.758206,0.631598,0.161884,0.918865,0.320446,0.230221,0.918865,0.320446,0.230221, + 0.918865,0.320446,0.230221,0.918865,0.320446,0.230221,0.880280,-0.434901,0.189654,0.880280,-0.434901,0.189654, + 0.880280,-0.434901,0.189654,0.880280,-0.434901,0.189654,-0.876841,0.436401,-0.201751,-0.876841,0.436401,-0.201751, + -0.876841,0.436401,-0.201751,-0.876841,0.436401,-0.201751,0.532376,-0.083098,-0.842419,0.532376,-0.083098,-0.842419, + 0.532376,-0.083098,-0.842419,0.532376,-0.083098,-0.842419,-0.876920,0.436225,-0.201790,-0.876920,0.436225,-0.201790, + -0.876920,0.436225,-0.201790,-0.876920,0.436225,-0.201790,-0.874957,0.440523,-0.200973,-0.874957,0.440523,-0.200973, + -0.874957,0.440523,-0.200973,-0.874957,0.440523,-0.200973,-0.863152,0.437563,-0.252008,-0.863152,0.437563,-0.252008, + -0.863152,0.437563,-0.252008,-0.863152,0.437563,-0.252008,-0.886579,0.429395,-0.172039,-0.886579,0.429395,-0.172039, + -0.886579,0.429395,-0.172039,-0.886579,0.429395,-0.172039,-0.861720,0.440380,-0.251999,-0.861720,0.440380,-0.251999, + -0.861720,0.440380,-0.251999,-0.861720,0.440380,-0.251999,-0.198425,-0.103919,0.974592,-0.198425,-0.103919,0.974592, + -0.198425,-0.103919,0.974592,-0.198425,-0.103919,0.974592,0.191827,0.096880,-0.976635,0.191827,0.096880,-0.976635, + 0.191827,0.096880,-0.976635,0.191827,0.096880,-0.976635,0.447940,0.876103,0.178305,0.447940,0.876103,0.178305, + 0.447940,0.876103,0.178305,0.199426,-0.267986,0.942557,0.199426,-0.267986,0.942557,0.199426,-0.267986,0.942557, + 0.199426,-0.267986,0.942557,-0.163271,-0.123962,0.978762,-0.163271,-0.123962,0.978762,-0.163271,-0.123962,0.978762, + -0.163271,-0.123962,0.978762,0.513317,-0.061222,-0.856012,0.513317,-0.061222,-0.856012,0.513317,-0.061222,-0.856012, + 0.513317,-0.061222,-0.856012,0.506326,0.840852,0.191314,0.506326,0.840852,0.191314,0.506326,0.840852,0.191314, + 0.880282,-0.434897,0.189654,0.880282,-0.434897,0.189654,0.880282,-0.434897,0.189654,0.880282,-0.434897,0.189654, + 0.873875,0.359313,0.327470,0.873875,0.359313,0.327470,0.873875,0.359313,0.327470,0.932033,0.290824,0.216187, + 0.932033,0.290824,0.216187,0.932033,0.290824,0.216187,0.932033,0.290824,0.216187,-0.359031,-0.915978,-0.179110, + -0.359031,-0.915978,-0.179110,-0.359031,-0.915978,-0.179110,-0.359031,-0.915978,-0.179110,-0.343795,-0.920795,-0.184234, + -0.343795,-0.920795,-0.184234,-0.343795,-0.920795,-0.184234,-0.447033,-0.883112,-0.142390,-0.447033,-0.883112,-0.142390, + -0.447033,-0.883112,-0.142390,-0.447033,-0.883112,-0.142390,0.858351,-0.470163,0.205379,0.858351,-0.470163,0.205379, + 0.858351,-0.470163,0.205379,-0.202464,-0.168293,0.964721,-0.202464,-0.168293,0.964721,-0.202464,-0.168293,0.964721, + -0.539178,0.842043,-0.015824,-0.539178,0.842043,-0.015824,-0.539178,0.842043,-0.015824,-0.539178,0.842043,-0.015824, + -0.496342,0.852582,-0.163550,-0.496342,0.852582,-0.163550,-0.496342,0.852582,-0.163550,-0.496342,0.852582,-0.163550, + 0.807351,0.531356,0.256603,0.807351,0.531356,0.256603,0.807351,0.531356,0.256603,0.807351,0.531356,0.256603, + -0.834858,-0.485536,-0.259358,-0.834858,-0.485536,-0.259358,-0.834858,-0.485536,-0.259358,-0.834858,-0.485536,-0.259358, + -0.834859,-0.485534,-0.259359,-0.834859,-0.485534,-0.259359,-0.834859,-0.485534,-0.259359,-0.834859,-0.485534,-0.259359, + -0.550324,0.834175,-0.035977,-0.550324,0.834175,-0.035977,-0.550324,0.834175,-0.035977,-0.550324,0.834175,-0.035977, + 0.807351,0.531356,0.256604,0.807351,0.531356,0.256604,0.807351,0.531356,0.256604,0.807351,0.531356,0.256604, + -0.550325,0.834175,-0.035978,-0.550325,0.834175,-0.035978,-0.550325,0.834175,-0.035978,-0.550325,0.834175,-0.035978, + 0.983730,0.072581,0.164339,0.983730,0.072581,0.164339,0.983730,0.072581,0.164339,0.983730,0.072581,0.164339, + -0.290714,-0.121053,0.949121,-0.290714,-0.121053,0.949121,-0.290714,-0.121053,0.949121,-0.290714,-0.121053,0.949121, + -0.525016,0.843944,-0.110076,-0.525016,0.843944,-0.110076,-0.525016,0.843944,-0.110076,-0.525016,0.843944,-0.110076, + -0.484946,0.869701,-0.091910,-0.484946,0.869701,-0.091910,-0.484946,0.869701,-0.091910,-0.484946,0.869701,-0.091910, + -0.692997,-0.315321,0.648327,-0.692997,-0.315321,0.648327,-0.692997,-0.315321,0.648327,-0.692997,-0.315321,0.648327, + 0.690064,0.313573,-0.652291,0.690064,0.313573,-0.652291,0.690064,0.313573,-0.652291,0.690064,0.313573,-0.652291, + -0.465901,0.876243,-0.123024,-0.465901,0.876243,-0.123024,-0.465901,0.876243,-0.123024,-0.465901,0.876243,-0.123024, + 0.465899,-0.876244,0.123025,0.465899,-0.876244,0.123025,0.465899,-0.876244,0.123025,0.465899,-0.876244,0.123025, + -0.283694,0.020014,0.958706,-0.283694,0.020014,0.958706,-0.283694,0.020014,0.958706,-0.283694,0.020014,0.958706, + 0.315176,-0.001858,-0.949031,0.315176,-0.001858,-0.949031,0.315176,-0.001858,-0.949031,0.315176,-0.001858,-0.949031, + -0.844425,-0.481866,-0.233989,-0.844425,-0.481866,-0.233989,-0.844425,-0.481866,-0.233989,-0.844425,-0.481866,-0.233989, + 0.812393,0.481807,0.328451,0.812393,0.481807,0.328451,0.812393,0.481807,0.328451,0.812393,0.481807,0.328451, + -0.465587,0.873827,-0.140197,-0.465587,0.873827,-0.140197,-0.465587,0.873827,-0.140197,-0.465587,0.873827,-0.140197, + 0.465589,-0.873826,0.140196,0.465589,-0.873826,0.140196,0.465589,-0.873826,0.140196,0.465589,-0.873826,0.140196, + 0.228720,-0.058443,-0.971736,0.228720,-0.058443,-0.971736,0.228720,-0.058443,-0.971736,0.228720,-0.058443,-0.971736, + -0.260810,0.040152,0.964555,-0.260810,0.040152,0.964555,-0.260810,0.040152,0.964555,-0.260810,0.040152,0.964555, + 0.858297,0.485159,0.167176,0.858297,0.485159,0.167176,0.858297,0.485159,0.167176,0.858297,0.485159,0.167176, + -0.831739,-0.488831,-0.263161,-0.831739,-0.488831,-0.263161,-0.831739,-0.488831,-0.263161,-0.831739,-0.488831,-0.263161, + -0.469888,0.876978,-0.100571,-0.469888,0.876978,-0.100571,-0.469888,0.876978,-0.100571,-0.469888,0.876978,-0.100571, + 0.469888,-0.876979,0.100565,0.469888,-0.876979,0.100565,0.469888,-0.876979,0.100565,0.469888,-0.876979,0.100565, + 0.286611,0.020443,-0.957829,0.286611,0.020443,-0.957829,0.286611,0.020443,-0.957829,0.286611,0.020443,-0.957829, + -0.317965,-0.038402,0.947324,-0.317965,-0.038402,0.947324,-0.317965,-0.038402,0.947324,-0.317965,-0.038402,0.947324, + 0.840460,0.477703,0.255785,0.840460,0.477703,0.255785,0.840460,0.477703,0.255785,0.840460,0.477703,0.255785, + -0.808246,-0.473537,-0.350002,-0.808246,-0.473537,-0.350002,-0.808246,-0.473537,-0.350002,-0.808246,-0.473537,-0.350002, + -0.468391,0.875601,-0.118034,-0.468391,0.875601,-0.118034,-0.468391,0.875601,-0.118034,-0.468391,0.875601,-0.118034, + -0.488341,0.871794,-0.038711,-0.488341,0.871794,-0.038711,-0.488341,0.871794,-0.038711,-0.488341,0.871794,-0.038711, + -0.487738,0.872121,-0.038954,-0.487738,0.872121,-0.038954,-0.487738,0.872121,-0.038954,-0.487738,0.872121,-0.038954, + -0.837643,-0.480711,-0.259368,-0.837643,-0.480711,-0.259368,-0.837643,-0.480711,-0.259368,-0.837643,-0.480711,-0.259368, + -0.840972,-0.481619,-0.246596,-0.840972,-0.481619,-0.246596,-0.840972,-0.481619,-0.246596,-0.840972,-0.481619,-0.246596, + 0.836510,0.480414,0.263540,0.836510,0.480414,0.263540,0.836510,0.480414,0.263540,0.836510,0.480414,0.263540, + 0.839907,0.481334,0.250746,0.839907,0.481334,0.250746,0.839907,0.481334,0.250746,0.839907,0.481334,0.250746, + -0.487738,0.872121,-0.038955,-0.487738,0.872121,-0.038955,-0.487738,0.872121,-0.038955,-0.487738,0.872121,-0.038955, + -0.840979,-0.481606,-0.246596,-0.840979,-0.481606,-0.246596,-0.840979,-0.481606,-0.246596,-0.840979,-0.481606,-0.246596, + 0.839912,0.481326,0.250746,0.839912,0.481326,0.250746,0.839912,0.481326,0.250746,0.839912,0.481326,0.250746, + 0.732314,0.339156,-0.590499,0.732314,0.339156,-0.590499,0.732314,0.339156,-0.590499,0.732314,0.339156,-0.590499, + -0.735537,-0.341169,0.585310,-0.735537,-0.341169,0.585310,-0.735537,-0.341169,0.585310,-0.735537,-0.341169,0.585310, + -0.484094,0.869846,-0.094981,-0.484094,0.869846,-0.094981,-0.484094,0.869846,-0.094981,-0.484094,0.869846,-0.094981, + -0.549175,0.835448,-0.020846,-0.549175,0.835448,-0.020846,-0.549175,0.835448,-0.020846,-0.549175,0.835448,-0.020846, + -0.843523,-0.487388,-0.225658,-0.843523,-0.487388,-0.225658,-0.843523,-0.487388,-0.225658,-0.843523,-0.487388,-0.225658, + -0.836343,-0.480531,-0.263857,-0.836343,-0.480531,-0.263857,-0.836343,-0.480531,-0.263857,-0.836343,-0.480531,-0.263857, + -0.507207,0.846295,-0.162865,-0.507207,0.846295,-0.162865,-0.507207,0.846295,-0.162865,-0.507207,0.846295,-0.162865, + -0.479221,0.875158,-0.066678,-0.479221,0.875158,-0.066678,-0.479221,0.875158,-0.066678,-0.479221,0.875158,-0.066678, + 0.251450,0.057548,-0.966158,0.251450,0.057548,-0.966158,0.251450,0.057548,-0.966158,0.251450,0.057548,-0.966158, + -0.043072,-0.396095,0.917199,-0.043072,-0.396095,0.917199,-0.043072,-0.396095,0.917199,-0.043072,-0.396095,0.917199, + -0.481026,0.874125,-0.067229,-0.481026,0.874125,-0.067229,-0.481026,0.874125,-0.067229,-0.481026,0.874125,-0.067229, + -0.463600,0.876564,-0.129271,-0.463600,0.876564,-0.129271,-0.463600,0.876564,-0.129271,-0.463600,0.876564,-0.129271, + -0.470547,0.876055,-0.105417,-0.470547,0.876055,-0.105417,-0.470547,0.876055,-0.105417,-0.470547,0.876055,-0.105417, + -0.488363,0.871785,-0.038626,-0.488363,0.871785,-0.038626,-0.488363,0.871785,-0.038626,-0.488363,0.871785,-0.038626, + -0.463067,0.878384,-0.118367,-0.463067,0.878384,-0.118367,-0.463067,0.878384,-0.118367,-0.463067,0.878384,-0.118367, + -0.465784,0.876026,-0.124999,-0.465784,0.876026,-0.124999,-0.465784,0.876026,-0.124999,-0.465784,0.876026,-0.124999, + -0.494575,0.868362,-0.036643,-0.494575,0.868362,-0.036643,-0.494575,0.868362,-0.036643,-0.494575,0.868362,-0.036643, + -0.310891,-0.024905,0.950119,-0.310891,-0.024905,0.950119,-0.310891,-0.024905,0.950119,-0.476104,0.873357,-0.102826, + -0.476104,0.873357,-0.102826,-0.476104,0.873357,-0.102826,-0.476104,0.873357,-0.102826,-0.488534,0.871302,-0.046555, + -0.488534,0.871302,-0.046555,-0.488534,0.871302,-0.046555,-0.488534,0.871302,-0.046555,-0.195831,-0.175780,0.964755, + -0.195831,-0.175780,0.964755,-0.195831,-0.175780,0.964755,-0.195831,-0.175780,0.964755,-0.280375,-0.114624,0.953022, + -0.280375,-0.114624,0.953022,-0.280375,-0.114624,0.953022,-0.280375,-0.114624,0.953022,-0.290714,-0.121053,0.949121, + -0.290714,-0.121053,0.949121,-0.290714,-0.121053,0.949121,-0.290714,-0.121053,0.949121,-0.538957,0.841711,-0.032359, + -0.538957,0.841711,-0.032359,-0.538957,0.841711,-0.032359,-0.538957,0.841711,-0.032359,0.961950,0.232683,0.143213, + 0.961950,0.232683,0.143213,0.961950,0.232683,0.143213,0.961950,0.232683,0.143213,-0.538725,0.839994,-0.064697, + -0.538725,0.839994,-0.064697,-0.538725,0.839994,-0.064697,-0.538725,0.839994,-0.064697,-0.834859,-0.485535,-0.259358, + -0.834859,-0.485535,-0.259358,-0.834859,-0.485535,-0.259358,-0.834859,-0.485535,-0.259358,0.398687,-0.914540,0.068295, + 0.398687,-0.914540,0.068295,0.398687,-0.914540,0.068295,0.398687,-0.914540,0.068295,0.484802,-0.872880,0.055200, + 0.484802,-0.872880,0.055200,0.484802,-0.872880,0.055200,0.484802,-0.872880,0.055200,0.784829,0.568684,0.246257, + 0.784829,0.568684,0.246257,0.784829,0.568684,0.246257,0.245588,0.105652,-0.963600,0.245588,0.105652,-0.963600, + 0.245588,0.105652,-0.963600,0.245588,0.105652,-0.963600,0.484801,-0.872881,0.055199,0.484801,-0.872881,0.055199, + 0.484801,-0.872881,0.055199,0.484801,-0.872881,0.055199,0.812123,0.526930,0.250601,0.812123,0.526930,0.250601, + 0.812123,0.526930,0.250601,0.934150,-0.284632,0.215287,0.934150,-0.284632,0.215287,0.934150,-0.284632,0.215287, + 0.934150,-0.284632,0.215287,-0.839140,-0.481265,-0.253434,-0.839140,-0.481265,-0.253434,-0.839140,-0.481265,-0.253434, + -0.839140,-0.481265,-0.253434,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.840279,-0.486686,-0.238888,-0.840279,-0.486686,-0.238888,-0.840279,-0.486686,-0.238888, + -0.840279,-0.486686,-0.238888,-0.482029,0.873549,-0.067528,-0.482029,0.873549,-0.067528,-0.482029,0.873549,-0.067528, + -0.482029,0.873549,-0.067528,-0.471603,0.879458,-0.064378,-0.471603,0.879458,-0.064378,-0.471603,0.879458,-0.064378, + -0.471603,0.879458,-0.064378,-0.013578,-0.459782,0.887928,-0.013578,-0.459782,0.887928,-0.013578,-0.459782,0.887928, + -0.013578,-0.459782,0.887928,0.243004,0.099435,-0.964915,0.243004,0.099435,-0.964915,0.243004,0.099435,-0.964915, + 0.243004,0.099435,-0.964915,-0.046097,-0.403110,0.913990,-0.046097,-0.403110,0.913990,-0.046097,-0.403110,0.913990, + -0.046097,-0.403110,0.913990,-0.481027,0.874124,-0.067229,-0.481027,0.874124,-0.067229,-0.481027,0.874124,-0.067229, + -0.481027,0.874124,-0.067229,0.981532,0.071481,0.177444,0.981532,0.071481,0.177444,0.981532,0.071481,0.177444, + 0.981532,0.071481,0.177444,0.940011,-0.282821,0.190766,0.940011,-0.282821,0.190766,0.940011,-0.282821,0.190766, + 0.940011,-0.282821,0.190766,-0.026895,-0.449961,0.892643,-0.026895,-0.449961,0.892643,-0.026895,-0.449961,0.892643, + -0.026895,-0.449961,0.892643,0.025588,-0.494183,0.868982,0.025588,-0.494183,0.868982,0.025588,-0.494183,0.868982, + 0.025588,-0.494183,0.868982,0.216306,0.131153,-0.967476,0.216306,0.131153,-0.967476,0.216306,0.131153,-0.967476, + 0.216306,0.131153,-0.967476,0.897080,-0.316369,0.308476,0.897080,-0.316369,0.308476,0.897080,-0.316369,0.308476, + 0.884185,-0.444203,0.144571,0.884185,-0.444203,0.144571,0.884185,-0.444203,0.144571,0.884185,-0.444203,0.144571, + -0.793374,-0.536489,-0.287640,-0.793374,-0.536489,-0.287640,-0.793374,-0.536489,-0.287640,-0.793374,-0.536489,-0.287640, + -0.867656,-0.444237,-0.223219,-0.867656,-0.444237,-0.223219,-0.867656,-0.444237,-0.223219,-0.867656,-0.444237,-0.223219, + -0.791663,0.598995,-0.120311,-0.791663,0.598995,-0.120311,-0.791663,0.598995,-0.120311,-0.791663,0.598995,-0.120311, + -0.761701,0.608192,-0.223415,-0.761701,0.608192,-0.223415,-0.761701,0.608192,-0.223415,-0.761701,0.608192,-0.223415, + 0.572924,0.791584,0.212493,0.572924,0.791584,0.212493,0.572924,0.791584,0.212493,0.572924,0.791584,0.212493, + -0.614033,-0.758091,-0.219686,-0.614033,-0.758091,-0.219686,-0.614033,-0.758091,-0.219686,-0.614033,-0.758091,-0.219686, + -0.614034,-0.758090,-0.219684,-0.614034,-0.758090,-0.219684,-0.614034,-0.758090,-0.219684,-0.614034,-0.758090,-0.219684, + -0.795644,0.594319,-0.117202,-0.795644,0.594319,-0.117202,-0.795644,0.594319,-0.117202,-0.795644,0.594319,-0.117202, + 0.572923,0.791584,0.212494,0.572923,0.791584,0.212494,0.572923,0.791584,0.212494,0.572923,0.791584,0.212494, + -0.795644,0.594318,-0.117202,-0.795644,0.594318,-0.117202,-0.795644,0.594318,-0.117202,-0.795644,0.594318,-0.117202, + 0.893616,0.412107,0.177817,0.893616,0.412107,0.177817,0.893616,0.412107,0.177817,0.893616,0.412107,0.177817, + -0.269646,-0.131022,0.954004,-0.269646,-0.131022,0.954004,-0.269646,-0.131022,0.954004,-0.269646,-0.131022,0.954004, + -0.767702,0.606897,-0.205695,-0.767702,0.606897,-0.205695,-0.767702,0.606897,-0.205695,-0.767702,0.606897,-0.205695, + -0.200597,-0.112954,0.973140,-0.200597,-0.112954,0.973140,-0.200597,-0.112954,0.973140,-0.200597,-0.112954,0.973140, + -0.725105,0.651190,-0.223995,-0.725105,0.651190,-0.223995,-0.725105,0.651190,-0.223995,-0.725105,0.651190,-0.223995, + 0.725105,-0.651190,0.223996,0.725105,-0.651190,0.223996,0.725105,-0.651190,0.223996,0.725105,-0.651190,0.223996, + 0.272114,-0.060105,-0.960386,0.272114,-0.060105,-0.960386,0.272114,-0.060105,-0.960386,0.272114,-0.060105,-0.960386, + -0.295951,0.031540,0.954682,-0.295951,0.031540,0.954682,-0.295951,0.031540,0.954682,-0.295951,0.031540,0.954682, + 0.639750,0.757831,0.128109,0.639750,0.757831,0.128109,0.639750,0.757831,0.128109,0.639750,0.757831,0.128109, + -0.609842,-0.760456,-0.223160,-0.609842,-0.760456,-0.223160,-0.609842,-0.760456,-0.223160,-0.609842,-0.760456,-0.223160, + -0.730422,0.654748,-0.194391,-0.730422,0.654748,-0.194391,-0.730422,0.654748,-0.194391,-0.730422,0.654748,-0.194391, + -0.395211,-0.606764,-0.689671,-0.395211,-0.606764,-0.689671,-0.395211,-0.606764,-0.689671,-0.395211,-0.606764,-0.689671, + 0.397927,0.609043,0.686091,0.397927,0.609043,0.686091,0.397927,0.609043,0.686091,0.397927,0.609043,0.686091, + -0.732039,0.654530,-0.188968,-0.732039,0.654530,-0.188968,-0.732039,0.654530,-0.188968,-0.732039,0.654530,-0.188968, + -0.665852,-0.700718,0.256196,-0.665852,-0.700718,0.256196,-0.665852,-0.700718,0.256196,-0.665852,-0.700718,0.256196, + 0.665516,0.699218,-0.261117,0.665516,0.699218,-0.261117,0.665516,0.699218,-0.261117,0.665516,0.699218,-0.261117, + -0.791915,0.598888,-0.119183,-0.791915,0.598888,-0.119183,-0.791915,0.598888,-0.119183,-0.791915,0.598888,-0.119183, + -0.618719,-0.759088,-0.202418,-0.618719,-0.759088,-0.202418,-0.618719,-0.759088,-0.202418,-0.618719,-0.759088,-0.202418, + -0.620391,-0.755195,-0.211649,-0.620391,-0.755195,-0.211649,-0.620391,-0.755195,-0.211649,-0.620391,-0.755195,-0.211649, + -0.761170,0.608294,-0.224940,-0.761170,0.608294,-0.224940,-0.761170,0.608294,-0.224940,-0.761170,0.608294,-0.224940, + 0.100931,-0.366662,0.924863,0.100931,-0.366662,0.924863,0.100931,-0.366662,0.924863,0.100931,-0.366662,0.924863, + -0.739703,0.655888,-0.150501,-0.739703,0.655888,-0.150501,-0.739703,0.655888,-0.150501,-0.739703,0.655888,-0.150501, + 0.238030,0.098710,-0.966229,0.238030,0.098710,-0.966229,0.238030,0.098710,-0.966229,0.238030,0.098710,-0.966229, + 0.486476,-0.163470,-0.858265,0.486476,-0.163470,-0.858265,0.486476,-0.163470,-0.858265,0.486476,-0.163470,-0.858265, + -0.200381,-0.103787,0.974205,-0.200381,-0.103787,0.974205,-0.200381,-0.103787,0.974205,-0.200381,-0.103787,0.974205, + -0.742538,0.652449,-0.151488,-0.742538,0.652449,-0.151488,-0.742538,0.652449,-0.151488,-0.742538,0.652449,-0.151488, + -0.734836,0.652187,-0.186192,-0.734836,0.652187,-0.186192,-0.734836,0.652187,-0.186192,-0.734836,0.652187,-0.186192, + -0.747457,0.651397,-0.130346,-0.747457,0.651397,-0.130346,-0.747457,0.651397,-0.130346,-0.747457,0.651397,-0.130346, + -0.726204,0.655514,-0.207193,-0.726204,0.655514,-0.207193,-0.726204,0.655514,-0.207193,-0.726204,0.655514,-0.207193, + -0.269645,-0.131022,0.954005,-0.269645,-0.131022,0.954005,-0.269645,-0.131022,0.954005,-0.269645,-0.131022,0.954005, + -0.269646,-0.131021,0.954004,-0.269646,-0.131021,0.954004,-0.269646,-0.131021,0.954004,-0.269646,-0.131021,0.954004, + -0.795645,0.594317,-0.117203,-0.795645,0.594317,-0.117203,-0.795645,0.594317,-0.117203,-0.795645,0.594317,-0.117203, + 0.767751,0.622493,0.151860,0.767751,0.622493,0.151860,0.767751,0.622493,0.151860,0.767751,0.622493,0.151860, + -0.788513,0.600238,-0.134020,-0.788513,0.600238,-0.134020,-0.788513,0.600238,-0.134020,-0.788513,0.600238,-0.134020, + 0.969521,0.066148,0.235908,0.969521,0.066148,0.235908,0.969521,0.066148,0.235908,0.969521,0.066148,0.235908, + -0.620998,-0.755345,-0.209323,-0.620998,-0.755345,-0.209323,-0.620998,-0.755345,-0.209323,-0.620998,-0.755345,-0.209323, + -0.617908,-0.758910,-0.205536,-0.617908,-0.758910,-0.205536,-0.617908,-0.758910,-0.205536,-0.617908,-0.758910,-0.205536, + -0.168989,-0.139967,0.975629,-0.168989,-0.139967,0.975629,-0.168989,-0.139967,0.975629,0.892806,0.411860,0.182396, + 0.892806,0.411860,0.182396,0.892806,0.411860,0.182396,0.892806,0.411860,0.182396,0.971653,0.066737,0.226797, + 0.971653,0.066737,0.226797,0.971653,0.066737,0.226797,0.971653,0.066737,0.226797,0.746139,-0.651029,0.139422, + 0.746139,-0.651029,0.139422,0.746139,-0.651029,0.139422,0.746139,-0.651029,0.139422,-0.742539,0.652448,-0.151484, + -0.742539,0.652448,-0.151484,-0.742539,0.652448,-0.151484,-0.742539,0.652448,-0.151484,0.487638,-0.155066,-0.859164, + 0.487638,-0.155066,-0.859164,0.487638,-0.155066,-0.859164,0.487638,-0.155066,-0.859164,-0.742660,0.652300,-0.151528, + -0.742660,0.652300,-0.151528,-0.742660,0.652300,-0.151528,-0.742660,0.652300,-0.151528,-0.739682,0.655913,-0.150493, + -0.739682,0.655913,-0.150493,-0.739682,0.655913,-0.150493,-0.739682,0.655913,-0.150493,-0.729429,0.653584,-0.201895, + -0.729429,0.653584,-0.201895,-0.729429,0.653584,-0.201895,-0.729429,0.653584,-0.201895,-0.753453,0.646076,-0.122038, + -0.753453,0.646076,-0.122038,-0.753453,0.646076,-0.122038,-0.753453,0.646076,-0.122038,-0.727343,0.655951,-0.201743, + -0.727343,0.655951,-0.201743,-0.727343,0.655951,-0.201743,-0.727343,0.655951,-0.201743,-0.209529,-0.117280,0.970744, + -0.209529,-0.117280,0.970744,-0.209529,-0.117280,0.970744,-0.209529,-0.117280,0.970744,0.201371,0.112250,-0.973062, + 0.201371,0.112250,-0.973062,0.201371,0.112250,-0.973062,0.201371,0.112250,-0.973062,0.653229,0.723849,0.222115, + 0.653229,0.723849,0.222115,0.653229,0.723849,0.222115,0.134746,-0.372150,0.918340,0.134746,-0.372150,0.918340, + 0.134746,-0.372150,0.918340,0.134746,-0.372150,0.918340,-0.180427,-0.145636,0.972747,-0.180427,-0.145636,0.972747, + -0.180427,-0.145636,0.972747,-0.180427,-0.145636,0.972747,0.474499,-0.128285,-0.870858,0.474499,-0.128285,-0.870858, + 0.474499,-0.128285,-0.870858,0.474499,-0.128285,-0.870858,0.701122,0.674456,0.231380,0.701122,0.674456,0.231380, + 0.701122,0.674456,0.231380,0.746138,-0.651030,0.139422,0.746138,-0.651030,0.139422,0.746138,-0.651030,0.139422, + 0.746138,-0.651030,0.139422,0.938588,0.108855,0.327418,0.938588,0.108855,0.327418,0.938588,0.108855,0.327418, + 0.976920,0.035796,0.210585,0.976920,0.035796,0.210585,0.976920,0.035796,0.210585,0.976920,0.035796,0.210585, + -0.577029,-0.784345,-0.227684,-0.577029,-0.784345,-0.227684,-0.577029,-0.784345,-0.227684,-0.577029,-0.784345,-0.227684, + -0.563515,-0.792422,-0.233492,-0.563515,-0.792422,-0.233492,-0.563515,-0.792422,-0.233492,-0.653775,-0.733283,-0.186746, + -0.653775,-0.733283,-0.186746,-0.653775,-0.733283,-0.186746,-0.653775,-0.733283,-0.186746,0.716273,-0.680744,0.153430, + 0.716273,-0.680744,0.153430,0.716273,-0.680744,0.153430,-0.163934,-0.135180,0.977165,-0.163934,-0.135180,0.977165, + -0.163934,-0.135180,0.977165,-0.845115,0.521262,-0.118601,-0.845115,0.521262,-0.118601,-0.845115,0.521262,-0.118601, + -0.845115,0.521262,-0.118601,-0.802831,0.533397,-0.266364,-0.802831,0.533397,-0.266364,-0.802831,0.533397,-0.266364, + -0.802831,0.533397,-0.266364,0.488075,0.850936,0.194142,0.488075,0.850936,0.194142,0.488075,0.850936,0.194142, + 0.488075,0.850936,0.194142,-0.532302,-0.821986,-0.202468,-0.532302,-0.821986,-0.202468,-0.532302,-0.821986,-0.202468, + -0.532302,-0.821986,-0.202468,-0.532304,-0.821985,-0.202468,-0.532304,-0.821985,-0.202468,-0.532304,-0.821985,-0.202468, + -0.532304,-0.821985,-0.202468,-0.850714,0.507269,-0.137709,-0.850714,0.507269,-0.137709,-0.850714,0.507269,-0.137709, + -0.850714,0.507269,-0.137709,0.488074,0.850936,0.194143,0.488074,0.850936,0.194143,0.488074,0.850936,0.194143, + 0.488074,0.850936,0.194143,-0.850715,0.507268,-0.137710,-0.850715,0.507268,-0.137710,-0.850715,0.507268,-0.137710, + -0.850715,0.507268,-0.137710,0.848092,0.505694,0.158159,0.848092,0.505694,0.158159,0.848092,0.505694,0.158159, + 0.848092,0.505694,0.158159,-0.262904,-0.132448,0.955688,-0.262904,-0.132448,0.955688,-0.262904,-0.132448,0.955688, + -0.262904,-0.132448,0.955688,-0.827966,0.519018,-0.212349,-0.827966,0.519018,-0.212349,-0.827966,0.519018,-0.212349, + -0.827966,0.519018,-0.212349,-0.803778,0.561279,-0.197248,-0.803778,0.561279,-0.197248,-0.803778,0.561279,-0.197248, + -0.803778,0.561279,-0.197248,-0.526680,-0.511684,0.678813,-0.526680,-0.511684,0.678813,-0.526680,-0.511684,0.678813, + -0.526680,-0.511684,0.678813,0.524992,0.508426,-0.682559,0.524992,0.508426,-0.682559,0.524992,0.508426,-0.682559, + 0.524992,0.508426,-0.682559,-0.787669,0.572021,-0.228844,-0.787669,0.572021,-0.228844,-0.787669,0.572021,-0.228844, + -0.787669,0.572021,-0.228844,0.787668,-0.572020,0.228849,0.787668,-0.572020,0.228849,0.787668,-0.572020,0.228849, + 0.787668,-0.572020,0.228849,-0.317288,-0.001955,0.948327,-0.317288,-0.001955,0.948327,-0.317288,-0.001955,0.948327, + -0.317288,-0.001955,0.948327,0.337398,0.032793,-0.940791,0.337398,0.032793,-0.940791,0.337398,0.032793,-0.940791, + 0.337398,0.032793,-0.940791,-0.543864,-0.820135,-0.177738,-0.543864,-0.820135,-0.177738,-0.543864,-0.820135,-0.177738, + -0.543864,-0.820135,-0.177738,0.509854,0.816318,0.271430,0.509854,0.816318,0.271430,0.509854,0.816318,0.271430, + 0.509854,0.816318,0.271430,-0.785410,0.568159,-0.245614,-0.785410,0.568159,-0.245614,-0.785410,0.568159,-0.245614, + -0.785410,0.568159,-0.245614,0.785411,-0.568159,0.245614,0.785411,-0.568159,0.245614,0.785411,-0.568159,0.245614, + 0.785411,-0.568159,0.245614,0.284781,-0.057544,-0.956864,0.284781,-0.057544,-0.956864,0.284781,-0.057544,-0.956864, + 0.284781,-0.057544,-0.956864,-0.305536,0.026572,0.951810,-0.305536,0.026572,0.951810,-0.305536,0.026572,0.951810, + -0.305536,0.026572,0.951810,0.558678,0.821911,0.111086,0.558678,0.821911,0.111086,0.558678,0.821911,0.111086, + 0.558678,0.821911,0.111086,-0.527857,-0.824012,-0.205843,-0.527857,-0.824012,-0.205843,-0.527857,-0.824012,-0.205843, + -0.527857,-0.824012,-0.205843,-0.792817,0.573354,-0.206656,-0.792817,0.573354,-0.206656,-0.792817,0.573354,-0.206656, + -0.792817,0.573354,-0.206656,0.792815,-0.573356,0.206656,0.792815,-0.573356,0.206656,0.792815,-0.573356,0.206656, + 0.792815,-0.573356,0.206656,0.302583,0.039573,-0.952301,0.302583,0.039573,-0.952301,0.302583,0.039573,-0.952301, + 0.302583,0.039573,-0.952301,-0.322694,-0.070272,0.943891,-0.322694,-0.070272,0.943891,-0.322694,-0.070272,0.943891, + -0.322694,-0.070272,0.943891,0.540866,0.817012,0.199889,0.540866,0.817012,0.199889,0.540866,0.817012,0.199889, + 0.540866,0.817012,0.199889,-0.508372,-0.809478,-0.293773,-0.508372,-0.809478,-0.293773,-0.508372,-0.809478,-0.293773, + -0.508372,-0.809478,-0.293773,-0.789917,0.570904,-0.223828,-0.789917,0.570904,-0.223828,-0.789917,0.570904,-0.223828, + -0.789917,0.570904,-0.223828,-0.810655,0.567363,-0.144696,-0.810655,0.567363,-0.144696,-0.810655,0.567363,-0.144696, + -0.810655,0.567363,-0.144696,-0.810237,0.567890,-0.144974,-0.810237,0.567890,-0.144974,-0.810237,0.567890,-0.144974, + -0.810237,0.567890,-0.144974,-0.536876,-0.818858,-0.203066,-0.536876,-0.818858,-0.203066,-0.536876,-0.818858,-0.203066, + -0.536876,-0.818858,-0.203066,-0.540194,-0.819743,-0.190294,-0.540194,-0.819743,-0.190294,-0.540194,-0.819743,-0.190294, + -0.540194,-0.819743,-0.190294,0.535765,0.818538,0.207247,0.535765,0.818538,0.207247,0.535765,0.818538,0.207247, + 0.535765,0.818538,0.207247,0.539122,0.819476,0.194438,0.539122,0.819476,0.194438,0.539122,0.819476,0.194438, + 0.539122,0.819476,0.194438,-0.810237,0.567889,-0.144975,-0.810237,0.567889,-0.144975,-0.810237,0.567889,-0.144975, + -0.810237,0.567889,-0.144975,-0.540189,-0.819748,-0.190285,-0.540189,-0.819748,-0.190285,-0.540189,-0.819748,-0.190285, + -0.540189,-0.819748,-0.190285,0.539115,0.819482,0.194435,0.539115,0.819482,0.194435,0.539115,0.819482,0.194435, + 0.539115,0.819482,0.194435,0.548808,0.556136,-0.624118,0.548808,0.556136,-0.624118,0.548808,0.556136,-0.624118, + 0.548808,0.556136,-0.624118,-0.550603,-0.559850,0.619196,-0.550603,-0.559850,0.619196,-0.550603,-0.559850,0.619196, + -0.550603,-0.559850,0.619196,-0.802902,0.561448,-0.200313,-0.802902,0.561448,-0.200313,-0.802902,0.561448,-0.200313, + -0.802902,0.561448,-0.200313,-0.851050,0.510516,-0.122834,-0.851050,0.510516,-0.122834,-0.851050,0.510516,-0.122834, + -0.851050,0.510516,-0.122834,-0.541185,-0.823783,-0.168822,-0.541185,-0.823783,-0.168822,-0.541185,-0.823783,-0.168822, + -0.541185,-0.823783,-0.168822,-0.535533,-0.818615,-0.207541,-0.535533,-0.818615,-0.207541,-0.535533,-0.818615,-0.207541, + -0.535533,-0.818615,-0.207541,-0.809995,0.523161,-0.264973,-0.809995,0.523161,-0.264973,-0.809995,0.523161,-0.264973, + -0.809995,0.523161,-0.264973,-0.802325,0.571317,-0.172835,-0.802325,0.571317,-0.172835,-0.802325,0.571317,-0.172835, + -0.802325,0.571317,-0.172835,0.255483,0.056816,-0.965143,0.255483,0.056816,-0.965143,0.255483,0.056816,-0.965143, + 0.255483,0.056816,-0.965143,0.079751,-0.275898,0.957873,0.079751,-0.275898,0.957873,0.079751,-0.275898,0.957873, + 0.079751,-0.275898,0.957873,-0.803485,0.569558,-0.173252,-0.803485,0.569558,-0.173252,-0.803485,0.569558,-0.173252, + -0.803485,0.569558,-0.173252,-0.785386,0.572631,-0.235081,-0.785386,0.572631,-0.235081,-0.785386,0.572631,-0.235081, + -0.785386,0.572631,-0.235081,-0.792749,0.571729,-0.211365,-0.792749,0.571729,-0.211365,-0.792749,0.571729,-0.211365, + -0.792749,0.571729,-0.211365,-0.810678,0.567353,-0.144610,-0.810678,0.567353,-0.144610,-0.810678,0.567353,-0.144610, + -0.810678,0.567353,-0.144610,-0.786279,0.575653,-0.224472,-0.786279,0.575653,-0.224472,-0.786279,0.575653,-0.224472, + -0.786279,0.575653,-0.224472,-0.787362,0.571664,-0.230782,-0.787362,0.571664,-0.230782,-0.787362,0.571664,-0.230782, + -0.787362,0.571664,-0.230782,-0.814935,0.561823,-0.142255,-0.814935,0.561823,-0.142255,-0.814935,0.561823,-0.142255, + -0.814935,0.561823,-0.142255,-0.322191,-0.054827,0.945086,-0.322191,-0.054827,0.945086,-0.322191,-0.054827,0.945086, + -0.796757,0.567195,-0.208491,-0.796757,0.567195,-0.208491,-0.796757,0.567195,-0.208491,-0.796757,0.567195,-0.208491, + -0.810191,0.566001,-0.152425,-0.810191,0.566001,-0.152425,-0.810191,0.566001,-0.152425,-0.810191,0.566001,-0.152425, + -0.154756,-0.139032,0.978121,-0.154756,-0.139032,0.978121,-0.154756,-0.139032,0.978121,-0.154756,-0.139032,0.978121, + -0.256522,-0.121823,0.958830,-0.256522,-0.121823,0.958830,-0.256522,-0.121823,0.958830,-0.256522,-0.121823,0.958830, + -0.262903,-0.132448,0.955688,-0.262903,-0.132448,0.955688,-0.262903,-0.132448,0.955688,-0.262903,-0.132448,0.955688, + -0.843867,0.519297,-0.134977,-0.843867,0.519297,-0.134977,-0.843867,0.519297,-0.134977,-0.843867,0.519297,-0.134977, + 0.761284,0.637605,0.117926,0.761284,0.637605,0.117926,0.761284,0.637605,0.117926,0.761284,0.637605,0.117926, + -0.841149,0.514413,-0.166874,-0.841149,0.514413,-0.166874,-0.841149,0.514413,-0.166874,-0.841149,0.514413,-0.166874, + -0.532304,-0.821985,-0.202469,-0.532304,-0.821985,-0.202469,-0.532304,-0.821985,-0.202469,-0.532304,-0.821985,-0.202469, + 0.746334,-0.641091,0.178849,0.746334,-0.641091,0.178849,0.746334,-0.641091,0.178849,0.746334,-0.641091,0.178849, + 0.807021,-0.568100,0.161181,0.807021,-0.568100,0.161181,0.807021,-0.568100,0.161181,0.807021,-0.568100,0.161181, + 0.452394,0.873606,0.179312,0.452394,0.873606,0.179312,0.452394,0.873606,0.179312,0.229529,0.097691,-0.968387, + 0.229529,0.097691,-0.968387,0.229529,0.097691,-0.968387,0.229529,0.097691,-0.968387,0.807020,-0.568101,0.161182, + 0.807020,-0.568101,0.161182,0.807020,-0.568101,0.161182,0.807020,-0.568101,0.161182,0.494604,0.848376,0.188745, + 0.494604,0.848376,0.188745,0.494604,0.848376,0.188745,0.952928,0.169571,0.251343,0.952928,0.169571,0.251343, + 0.952928,0.169571,0.251343,0.952928,0.169571,0.251343,-0.538313,-0.819369,-0.197114,-0.538313,-0.819369,-0.197114, + -0.538313,-0.819369,-0.197114,-0.538313,-0.819369,-0.197114,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,-0.537829,-0.823168,-0.182027,-0.537829,-0.823168,-0.182027, + -0.537829,-0.823168,-0.182027,-0.537829,-0.823168,-0.182027,-0.804125,0.568580,-0.173495,-0.804125,0.568580,-0.173495, + -0.804125,0.568580,-0.173495,-0.804125,0.568580,-0.173495,-0.797408,0.578697,-0.171026,-0.797408,0.578697,-0.171026, + -0.797408,0.578697,-0.171026,-0.797408,0.578697,-0.171026,0.135155,-0.323424,0.936552,0.135155,-0.323424,0.936552, + 0.135155,-0.323424,0.936552,0.135155,-0.323424,0.936552,0.229923,0.090866,-0.968958,0.229923,0.090866,-0.968958, + 0.229923,0.090866,-0.968958,0.229923,0.090866,-0.968958,0.080190,-0.283831,0.955515,0.080190,-0.283831,0.955515, + 0.080190,-0.283831,0.955515,0.080190,-0.283831,0.955515,-0.803483,0.569559,-0.173259,-0.803483,0.569559,-0.173259, + -0.803483,0.569559,-0.173259,-0.803483,0.569559,-0.173259,0.845853,0.505165,0.171291,0.845853,0.505165,0.171291, + 0.845853,0.505165,0.171291,0.845853,0.505165,0.171291,0.958793,0.171104,0.226803,0.958793,0.171104,0.226803, + 0.958793,0.171104,0.226803,0.958793,0.171104,0.226803,0.118683,-0.319845,0.940007,0.118683,-0.319845,0.940007, + 0.118683,-0.319845,0.940007,0.118683,-0.319845,0.940007,0.186230,-0.339436,0.922010,0.186230,-0.339436,0.922010, + 0.186230,-0.339436,0.922010,0.186230,-0.339436,0.922010,0.192428,0.107543,-0.975400,0.192428,0.107543,-0.975400, + 0.192428,0.107543,-0.975400,0.192428,0.107543,-0.975400,0.927888,0.135103,0.347522,0.927888,0.135103,0.347522, + 0.927888,0.135103,0.347522,0.979780,-0.002503,0.200062,0.979780,-0.002503,0.200062,0.979780,-0.002503,0.200062, + 0.979780,-0.002503,0.200062,-0.471564,-0.852832,-0.224287,-0.471564,-0.852832,-0.224287,-0.471564,-0.852832,-0.224287, + -0.471564,-0.852832,-0.224287,-0.581509,-0.795223,-0.171660,-0.581509,-0.795223,-0.171660,-0.581509,-0.795223,-0.171660, + -0.581509,-0.795223,-0.171660,-0.962751,0.047720,-0.266144,-0.962751,0.047720,-0.266144,-0.962751,0.047720,-0.266144, + -0.962751,0.047720,-0.266144,0.014701,0.997772,0.065079,0.014701,0.997772,0.065079,0.014701,0.997772,0.065079, + 0.014701,0.997772,0.065079,0.970611,-0.046302,0.236157,0.970611,-0.046302,0.236157,0.970611,-0.046302,0.236157, + 0.970611,-0.046302,0.236157,-0.013053,-0.995887,-0.089655,-0.013053,-0.995887,-0.089655,-0.013053,-0.995887,-0.089655, + -0.013053,-0.995887,-0.089655,0.199529,-0.050846,0.978572,0.199529,-0.050846,0.978572,0.199529,-0.050846,0.978572, + 0.199529,-0.050846,0.978572,-0.251480,0.018151,0.967692,-0.251480,0.018151,0.967692,-0.251480,0.018151,0.967692, + -0.251480,0.018151,0.967692,0.151520,-0.055936,0.986870,0.151520,-0.055936,0.986870,0.151520,-0.055936,0.986870, + 0.151520,-0.055936,0.986870,-0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723,-0.254848,-0.066046,0.964723, + -0.967972,0.047235,-0.246573,-0.967972,0.047235,-0.246573,-0.967972,0.047235,-0.246573,-0.967972,0.047235,-0.246573, + -0.368849,-0.928983,-0.030668,-0.368849,-0.928983,-0.030668,-0.368849,-0.928983,-0.030668,-0.964625,0.047891,-0.259238, + -0.964625,0.047891,-0.259238,-0.964625,0.047891,-0.259238,-0.964625,0.047891,-0.259238,-0.121584,-0.968992,0.215107, + -0.121584,-0.968992,0.215107,-0.121584,-0.968992,0.215107,-0.121584,-0.968992,0.215107,-0.170752,-0.982750,-0.071045, + -0.170752,-0.982750,-0.071045,-0.170752,-0.982750,-0.071045,-0.170752,-0.982750,-0.071045,-0.361136,-0.912561,-0.191867, + -0.361136,-0.912561,-0.191867,-0.361136,-0.912561,-0.191867,-0.361136,-0.912561,-0.191867,0.469708,0.846512,0.250585, + 0.469708,0.846512,0.250585,0.469708,0.846512,0.250585,-0.993430,0.037213,-0.108219,-0.993430,0.037213,-0.108219, + -0.993430,0.037213,-0.108219,0.467376,0.864803,0.183508,0.467376,0.864803,0.183508,0.467376,0.864803,0.183508, + 0.467376,0.864803,0.183508,0.198337,-0.980113,-0.006405,0.198337,-0.980113,-0.006405,0.198337,-0.980113,-0.006405, + 0.198337,-0.980113,-0.006405,0.488156,0.852886,0.185175,0.488156,0.852886,0.185175,0.488156,0.852886,0.185175, + 0.488156,0.852886,0.185175,0.227069,-0.973804,-0.012029,0.227069,-0.973804,-0.012029,0.227069,-0.973804,-0.012029, + 0.227069,-0.973804,-0.012029,0.175396,-0.981470,0.077157,0.175396,-0.981470,0.077157,0.175396,-0.981470,0.077157, + 0.368849,0.928983,0.030668,0.368849,0.928983,0.030668,0.368849,0.928983,0.030668,0.121584,0.968992,-0.215107, + 0.121584,0.968992,-0.215107,0.121584,0.968992,-0.215107,0.121584,0.968992,-0.215107,0.170751,0.982749,0.071047, + 0.170751,0.982749,0.071047,0.170751,0.982749,0.071047,0.170751,0.982749,0.071047,0.361135,0.912561,0.191870, + 0.361135,0.912561,0.191870,0.361135,0.912561,0.191870,0.361135,0.912561,0.191870,-0.967754,0.047124,-0.247452, + -0.967754,0.047124,-0.247452,-0.967754,0.047124,-0.247452,-0.967754,0.047124,-0.247452,-0.254863,-0.066049,0.964719, + -0.254863,-0.066049,0.964719,-0.254863,-0.066049,0.964719,0.237305,-0.971435,0.000094,0.237305,-0.971435,0.000094, + 0.237305,-0.971435,0.000094,0.237305,-0.971435,0.000094,0.458485,0.869705,0.182770,0.458485,0.869705,0.182770, + 0.458485,0.869705,0.182770,0.458485,0.869705,0.182770,-0.181122,-0.978108,-0.102468,-0.181122,-0.978108,-0.102468, + -0.181122,-0.978108,-0.102468,0.181122,0.978108,0.102468,0.181122,0.978108,0.102468,0.181122,0.978108,0.102468, + 0.851811,0.470348,0.230630,0.851811,0.470348,0.230630,0.851811,0.470348,0.230630,0.851811,0.470348,0.230630, + 0.553176,-0.823600,0.125216,0.553176,-0.823600,0.125216,0.553176,-0.823600,0.125216,0.553176,-0.823600,0.125216, + -0.773742,-0.596557,-0.213173,-0.773742,-0.596557,-0.213173,-0.773742,-0.596557,-0.213173,-0.773742,-0.596557,-0.213173, + -0.553176,0.823598,-0.125227,-0.553176,0.823598,-0.125227,-0.553176,0.823598,-0.125227,-0.553176,0.823598,-0.125227, + 0.133874,0.186528,-0.973286,0.133874,0.186528,-0.973286,0.133874,0.186528,-0.973286,0.133874,0.186528,-0.973286, + 0.298767,0.055800,-0.952693,0.298767,0.055800,-0.952693,0.298767,0.055800,-0.952693,0.298767,0.055800,-0.952693, + 0.794521,0.566792,0.217906,0.794521,0.566792,0.217906,0.794521,0.566792,0.217906,0.794521,0.566792,0.217906, + 0.553184,-0.823595,0.125218,0.553184,-0.823595,0.125218,0.553184,-0.823595,0.125218,0.553184,-0.823595,0.125218, + -0.794518,-0.566792,-0.217917,-0.794518,-0.566792,-0.217917,-0.794518,-0.566792,-0.217917,-0.794518,-0.566792,-0.217917, + -0.553176,0.823599,-0.125229,-0.553176,0.823599,-0.125229,-0.553176,0.823599,-0.125229,-0.553176,0.823599,-0.125229, + 0.212349,0.076849,-0.974167,0.212349,0.076849,-0.974167,0.212349,0.076849,-0.974167,0.212349,0.076849,-0.974167, + -0.794519,-0.566794,-0.217908,-0.794519,-0.566794,-0.217908,-0.794519,-0.566794,-0.217908,-0.794519,-0.566794,-0.217908, + 0.794522,0.566790,0.217908,0.794522,0.566790,0.217908,0.794522,0.566790,0.217908,0.794522,0.566790,0.217908, + 0.553183,-0.823593,0.125230,0.553183,-0.823593,0.125230,0.553183,-0.823593,0.125230,0.553183,-0.823593,0.125230, + -0.794519,-0.566795,-0.217905,-0.794519,-0.566795,-0.217905,-0.794519,-0.566795,-0.217905,-0.794519,-0.566795,-0.217905, + -0.553179,0.823595,-0.125240,-0.553179,0.823595,-0.125240,-0.553179,0.823595,-0.125240,-0.553179,0.823595,-0.125240, + 0.250443,0.021038,-0.967903,0.250443,0.021038,-0.967903,0.250443,0.021038,-0.967903,0.250443,0.021038,-0.967903, + 0.543501,-0.830419,0.122518,0.543501,-0.830419,0.122518,0.543501,-0.830419,0.122518,0.543501,-0.830419,0.122518, + 0.794522,0.566791,0.217907,0.794522,0.566791,0.217907,0.794522,0.566791,0.217907,0.794522,0.566791,0.217907, + 0.553187,-0.823590,0.125231,0.553187,-0.823590,0.125231,0.553187,-0.823590,0.125231,0.553187,-0.823590,0.125231, + -0.794522,-0.566791,-0.217905,-0.794522,-0.566791,-0.217905,-0.794522,-0.566791,-0.217905,-0.794522,-0.566791,-0.217905, + -0.553179,0.823594,-0.125242,-0.553179,0.823594,-0.125242,-0.553179,0.823594,-0.125242,-0.553179,0.823594,-0.125242, + 0.250455,0.021043,-0.967899,0.250455,0.021043,-0.967899,0.250455,0.021043,-0.967899,0.250455,0.021043,-0.967899, + 0.792325,0.566581,0.226289,0.792325,0.566581,0.226289,0.792325,0.566581,0.226289,0.792325,0.566581,0.226289, + 0.794519,0.566794,0.217909,0.794519,0.566794,0.217909,0.794519,0.566794,0.217909,0.794519,0.566794,0.217909, + 0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225, + -0.794521,-0.566791,-0.217909,-0.794521,-0.566791,-0.217909,-0.794521,-0.566791,-0.217909,-0.794521,-0.566791,-0.217909, + -0.553181,0.823590,-0.125260,-0.553181,0.823590,-0.125260,-0.553181,0.823590,-0.125260,-0.553181,0.823590,-0.125260, + 0.250444,0.021043,-0.967902,0.250444,0.021043,-0.967902,0.250444,0.021043,-0.967902,0.250444,0.021043,-0.967902, + -0.553186,0.823593,-0.125219,-0.553186,0.823593,-0.125219,-0.553186,0.823593,-0.125219,-0.553186,0.823593,-0.125219, + 0.296204,0.053946,-0.953600,0.296204,0.053946,-0.953600,0.296204,0.053946,-0.953600,0.296204,0.053946,-0.953600, + -0.794523,-0.566791,-0.217901,-0.794523,-0.566791,-0.217901,-0.794523,-0.566791,-0.217901,-0.794523,-0.566791,-0.217901, + 0.553182,-0.823593,0.125237,0.553182,-0.823593,0.125237,0.553182,-0.823593,0.125237,0.553182,-0.823593,0.125237, + 0.794526,0.566782,0.217914,0.794526,0.566782,0.217914,0.794526,0.566782,0.217914,0.794526,0.566782,0.217914, + -0.553181,0.823594,-0.125237,-0.553181,0.823594,-0.125237,-0.553181,0.823594,-0.125237,-0.553181,0.823594,-0.125237, + 0.302815,0.058752,-0.951237,0.302815,0.058752,-0.951237,0.302815,0.058752,-0.951237,0.302815,0.058752,-0.951237, + -0.794522,-0.566792,-0.217904,-0.794522,-0.566792,-0.217904,-0.794522,-0.566792,-0.217904,-0.794522,-0.566792,-0.217904, + 0.553184,-0.823592,0.125236,0.553184,-0.823592,0.125236,0.553184,-0.823592,0.125236,0.553184,-0.823592,0.125236, + 0.794519,0.566791,0.217917,0.794519,0.566791,0.217917,0.794519,0.566791,0.217917,0.794519,0.566791,0.217917, + -0.553186,0.823592,-0.125226,-0.553186,0.823592,-0.125226,-0.553186,0.823592,-0.125226,-0.553186,0.823592,-0.125226, + -0.250451,-0.021041,0.967901,-0.250451,-0.021041,0.967901,-0.250451,-0.021041,0.967901,-0.250451,-0.021041,0.967901, + -0.298770,-0.055801,0.952692,-0.298770,-0.055801,0.952692,-0.298770,-0.055801,0.952692,-0.298770,-0.055801,0.952692, + -0.809546,-0.550369,-0.204278,-0.809546,-0.550369,-0.204278,-0.809546,-0.550369,-0.204278,-0.809546,-0.550369,-0.204278, + -0.212357,-0.076852,0.974166,-0.212357,-0.076852,0.974166,-0.212357,-0.076852,0.974166,-0.212357,-0.076852,0.974166, + -0.133871,-0.186529,0.973286,-0.133871,-0.186529,0.973286,-0.133871,-0.186529,0.973286,-0.133871,-0.186529,0.973286, + -0.250450,-0.021045,0.967901,-0.250450,-0.021045,0.967901,-0.250450,-0.021045,0.967901,-0.250450,-0.021045,0.967901, + -0.250449,-0.021045,0.967901,-0.250449,-0.021045,0.967901,-0.250449,-0.021045,0.967901,-0.250449,-0.021045,0.967901, + -0.296198,-0.053950,0.953601,-0.296198,-0.053950,0.953601,-0.296198,-0.053950,0.953601,-0.296198,-0.053950,0.953601, + -0.557396,0.823111,-0.108616,-0.557396,0.823111,-0.108616,-0.557396,0.823111,-0.108616,-0.557396,0.823111,-0.108616, + 0.548586,-0.832829,0.073816,0.548586,-0.832829,0.073816,0.548586,-0.832829,0.073816,0.548586,-0.832829,0.073816, + -0.799005,-0.567338,-0.199296,-0.799005,-0.567338,-0.199296,-0.799005,-0.567338,-0.199296,-0.799005,-0.567338,-0.199296, + 0.780895,0.569051,0.257651,0.780895,0.569051,0.257651,0.780895,0.569051,0.257651,0.780895,0.569051,0.257651, + 0.553186,-0.823591,0.125228,0.553186,-0.823591,0.125228,0.553186,-0.823591,0.125228,0.553186,-0.823591,0.125228, + -0.783348,-0.565415,-0.258208,-0.783348,-0.565415,-0.258208,-0.783348,-0.565415,-0.258208,-0.783348,-0.565415,-0.258208, + -0.584894,0.811087,0.006125,-0.584894,0.811087,0.006125,-0.584894,0.811087,0.006125,-0.584894,0.811087,0.006125, + 0.297263,0.008940,-0.954754,0.297263,0.008940,-0.954754,0.297263,0.008940,-0.954754,0.297263,0.008940,-0.954754, + 0.557416,-0.823098,0.108614,0.557416,-0.823098,0.108614,0.557416,-0.823098,0.108614,0.557416,-0.823098,0.108614, + 0.799026,0.567305,0.199305,0.799026,0.567305,0.199305,0.799026,0.567305,0.199305,0.799026,0.567305,0.199305, + 0.809543,0.550369,0.204288,0.809543,0.550369,0.204288,0.809543,0.550369,0.204288,0.809543,0.550369,0.204288, + -0.767471,-0.538291,-0.348181,-0.767471,-0.538291,-0.348181,-0.767471,-0.538291,-0.348181,-0.767471,-0.538291,-0.348181, + 0.209415,0.010041,-0.977775,0.209415,0.010041,-0.977775,0.209415,0.010041,-0.977775,0.209415,0.010041,-0.977775, + -0.544685,0.833432,-0.093320,-0.544685,0.833432,-0.093320,-0.544685,0.833432,-0.093320,-0.544685,0.833432,-0.093320, + 0.553192,-0.823586,0.125240,0.553192,-0.823586,0.125240,0.553192,-0.823586,0.125240,0.553192,-0.823586,0.125240, + 0.674368,0.524208,0.520032,0.674368,0.524208,0.520032,0.674368,0.524208,0.520032,0.674368,0.524208,0.520032, + 0.510108,0.234155,-0.827624,0.510108,0.234155,-0.827624,0.510108,0.234155,-0.827624,0.510108,0.234155,-0.827624, + 0.579375,0.275363,-0.767138,0.579375,0.275363,-0.767138,0.579375,0.275363,-0.767138,0.579375,0.275363,-0.767138, + -0.469532,0.861338,-0.194001,-0.469532,0.861338,-0.194001,-0.469532,0.861338,-0.194001,-0.469532,0.861338,-0.194001, + -0.626321,-0.475315,-0.617898,-0.626321,-0.475315,-0.617898,-0.626321,-0.475315,-0.617898,-0.626321,-0.475315,-0.617898, + 0.374324,-0.909355,0.181535,0.374324,-0.909355,0.181535,0.374324,-0.909355,0.181535,0.374324,-0.909355,0.181535, + 0.626369,0.475226,0.617917,0.626369,0.475226,0.617917,0.626369,0.475226,0.617917,0.626369,0.475226,0.617917, + -0.674372,-0.524209,-0.520026,-0.674372,-0.524209,-0.520026,-0.674372,-0.524209,-0.520026,-0.674372,-0.524209,-0.520026, + -0.553188,0.823590,-0.125232,-0.553188,0.823590,-0.125232,-0.553188,0.823590,-0.125232,-0.553188,0.823590,-0.125232, + 0.497890,0.197328,-0.844492,0.497890,0.197328,-0.844492,0.497890,0.197328,-0.844492,0.497890,0.197328,-0.844492, + 0.714475,0.551566,0.430466,0.714475,0.551566,0.430466,0.714475,0.551566,0.430466,0.714475,0.551566,0.430466, + 0.753362,0.433099,0.494844,0.753362,0.433099,0.494844,0.753362,0.433099,0.494844,0.753362,0.433099,0.494844, + 0.553186,-0.823591,0.125235,0.553186,-0.823591,0.125235,0.553186,-0.823591,0.125235,0.553186,-0.823591,0.125235, + -0.644195,-0.602239,-0.471509,-0.644195,-0.602239,-0.471509,-0.644195,-0.602239,-0.471509,-0.644195,-0.602239,-0.471509, + -0.553177,0.823597,-0.125230,-0.553177,0.823597,-0.125230,-0.553177,0.823597,-0.125230,-0.553177,0.823597,-0.125230, + 0.533398,0.071851,-0.842807,0.533398,0.071851,-0.842807,0.533398,0.071851,-0.842807,0.533398,0.071851,-0.842807, + -0.370796,0.859632,-0.351487,-0.370796,0.859632,-0.351487,-0.370796,0.859632,-0.351487,-0.370796,0.859632,-0.351487, + 0.465561,0.190873,-0.864188,0.465561,0.190873,-0.864188,0.465561,0.190873,-0.864188,0.465561,0.190873,-0.864188, + 0.832087,-0.505716,0.227777,0.832087,-0.505716,0.227777,0.832087,-0.505716,0.227777,0.832087,-0.505716,0.227777, + 0.555280,-0.829971,0.053024,0.555280,-0.829971,0.053024,0.555280,-0.829971,0.053024,0.555280,-0.829971,0.053024, + -0.623579,0.072337,0.778406,-0.623579,0.072337,0.778406,-0.623579,0.072337,0.778406,-0.623579,0.072337,0.778406, + 0.758071,0.542360,0.362180,0.758071,0.542360,0.362180,0.758071,0.542360,0.362180,0.758071,0.542360,0.362180, + 0.773551,0.621696,-0.122936,0.773551,0.621696,-0.122936,0.773551,0.621696,-0.122936,0.773551,0.621696,-0.122936, + -0.164109,0.019758,-0.986244,-0.164109,0.019758,-0.986244,-0.164109,0.019758,-0.986244,-0.164109,0.019758,-0.986244, + -0.692551,-0.543465,-0.474361,-0.692551,-0.543465,-0.474361,-0.692551,-0.543465,-0.474361,-0.692551,-0.543465,-0.474361, + -0.771729,-0.525735,0.357824,-0.771729,-0.525735,0.357824,-0.771729,-0.525735,0.357824,-0.771729,-0.525735,0.357824, + -0.048289,0.701283,-0.711246,-0.048289,0.701283,-0.711246,-0.048289,0.701283,-0.711246,-0.048289,0.701283,-0.711246, + 0.837649,0.402762,-0.368953,0.837649,0.402762,-0.368953,0.837649,0.402762,-0.368953,0.837649,0.402762,-0.368953, + -0.070501,-0.555527,-0.828505,-0.070501,-0.555527,-0.828505,-0.070501,-0.555527,-0.828505,-0.070501,-0.555527,-0.828505, + -0.772482,-0.624210,0.116763,-0.772482,-0.624210,0.116763,-0.772482,-0.624210,0.116763,-0.772482,-0.624210,0.116763, + 0.722353,0.581047,0.374954,0.722353,0.581047,0.374954,0.722353,0.581047,0.374954,0.722353,0.581047,0.374954, + 0.642592,-0.035421,-0.765389,0.642592,-0.035421,-0.765389,0.642592,-0.035421,-0.765389,0.642592,-0.035421,-0.765389, + -0.721134,-0.524566,-0.452543,-0.721134,-0.524566,-0.452543,-0.721134,-0.524566,-0.452543,-0.721134,-0.524566,-0.452543, + -0.295070,-0.012266,0.955397,-0.295070,-0.012266,0.955397,-0.295070,-0.012266,0.955397,-0.295070,-0.012266,0.955397, + -0.557393,0.823114,-0.108611,-0.557393,0.823114,-0.108611,-0.557393,0.823114,-0.108611,-0.557393,0.823114,-0.108611, + -0.797500,-0.567181,-0.205666,-0.797500,-0.567181,-0.205666,-0.797500,-0.567181,-0.205666,-0.797500,-0.567181,-0.205666, + 0.557411,-0.823100,0.108620,0.557411,-0.823100,0.108620,0.557411,-0.823100,0.108620,0.557411,-0.823100,0.108620, + 0.797522,0.567151,0.205663,0.797522,0.567151,0.205663,0.797522,0.567151,0.205663,0.797522,0.567151,0.205663, + -0.557667,0.823071,-0.107524,-0.557667,0.823071,-0.107524,-0.557667,0.823071,-0.107524,-0.557667,0.823071,-0.107524, + -0.794522,-0.566787,-0.217915,-0.794522,-0.566787,-0.217915,-0.794522,-0.566787,-0.217915,-0.794522,-0.566787,-0.217915, + 0.557676,-0.823064,0.107532,0.557676,-0.823064,0.107532,0.557676,-0.823064,0.107532,0.557676,-0.823064,0.107532, + 0.794521,0.566794,0.217902,0.794521,0.566794,0.217902,0.794521,0.566794,0.217902,0.794521,0.566794,0.217902, + -0.557400,0.823109,-0.108615,-0.557400,0.823109,-0.108615,-0.557400,0.823109,-0.108615,-0.557400,0.823109,-0.108615, + -0.797532,-0.567135,-0.205670,-0.797532,-0.567135,-0.205670,-0.797532,-0.567135,-0.205670,-0.797532,-0.567135,-0.205670, + 0.557397,-0.823111,0.108615,0.557397,-0.823111,0.108615,0.557397,-0.823111,0.108615,0.557397,-0.823111,0.108615, + 0.794526,0.566784,0.217909,0.794526,0.566784,0.217909,0.794526,0.566784,0.217909,0.794526,0.566784,0.217909, + 0.282378,0.043946,-0.958296,0.282378,0.043946,-0.958296,0.282378,0.043946,-0.958296,0.282378,0.043946,-0.958296, + -0.793357,-0.566694,-0.222359,-0.793357,-0.566694,-0.222359,-0.793357,-0.566694,-0.222359,-0.793357,-0.566694,-0.222359, + 0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225,0.553185,-0.823593,0.125225, + 0.793357,0.566697,0.222349,0.793357,0.566697,0.222349,0.793357,0.566697,0.222349,0.793357,0.566697,0.222349, + -0.553187,0.823591,-0.125229,-0.553187,0.823591,-0.125229,-0.553187,0.823591,-0.125229,-0.553187,0.823591,-0.125229, + 0.407701,-0.091684,-0.908501,0.407701,-0.091684,-0.908501,0.407701,-0.091684,-0.908501,0.407701,-0.091684,-0.908501, + -0.794517,-0.566795,-0.217912,-0.794517,-0.566795,-0.217912,-0.794517,-0.566795,-0.217912,-0.794517,-0.566795,-0.217912, + 0.492842,-0.812271,0.311966,0.492842,-0.812271,0.311966,0.492842,-0.812271,0.311966,0.492842,-0.812271,0.311966, + 0.794523,0.566788,0.217911,0.794523,0.566788,0.217911,0.794523,0.566788,0.217911,0.794523,0.566788,0.217911, + -0.492841,0.812270,-0.311969,-0.492841,0.812270,-0.311969,-0.492841,0.812270,-0.311969,-0.492841,0.812270,-0.311969, + -0.549421,0.827299,-0.117099,-0.549421,0.827299,-0.117099,-0.549421,0.827299,-0.117099,-0.549421,0.827299,-0.117099, + -0.751207,-0.427017,0.503333,-0.751207,-0.427017,0.503333,-0.751207,-0.427017,0.503333,-0.751207,-0.427017,0.503333, + 0.549432,-0.827293,0.117090,0.549432,-0.827293,0.117090,0.549432,-0.827293,0.117090,0.549432,-0.827293,0.117090, + 0.751198,0.427029,-0.503337,0.751198,0.427029,-0.503337,0.751198,0.427029,-0.503337,0.751198,0.427029,-0.503337, + -0.549129,0.827461,-0.117326,-0.549129,0.827461,-0.117326,-0.549129,0.827461,-0.117326,-0.549129,0.827461,-0.117326, + -0.737128,-0.415553,0.532877,-0.737128,-0.415553,0.532877,-0.737128,-0.415553,0.532877,-0.737128,-0.415553,0.532877, + 0.549131,-0.827459,0.117330,0.549131,-0.827459,0.117330,0.549131,-0.827459,0.117330,0.549131,-0.827459,0.117330, + 0.733592,0.412214,-0.540298,0.733592,0.412214,-0.540298,0.733592,0.412214,-0.540298,0.733592,0.412214,-0.540298, + -0.549444,0.827277,-0.117149,-0.549444,0.827277,-0.117149,-0.549444,0.827277,-0.117149,-0.549444,0.827277,-0.117149, + -0.749022,-0.424996,0.508275,-0.749022,-0.424996,0.508275,-0.749022,-0.424996,0.508275,-0.749022,-0.424996,0.508275, + 0.549447,-0.827277,0.117137,0.549447,-0.827277,0.117137,0.549447,-0.827277,0.117137,0.549447,-0.827277,0.117137, + 0.749038,0.424998,-0.508251,0.749038,0.424998,-0.508251,0.749038,0.424998,-0.508251,0.749038,0.424998,-0.508251, + 0.546354,-0.827387,0.130111,0.546354,-0.827387,0.130111,0.546354,-0.827387,0.130111,0.546354,-0.827387,0.130111, + 0.369662,0.377985,0.848809,0.369662,0.377985,0.848809,0.369662,0.377985,0.848809,0.369662,0.377985,0.848809, + -0.546362,0.827381,-0.130111,-0.546362,0.827381,-0.130111,-0.546362,0.827381,-0.130111,-0.546362,0.827381,-0.130111, + -0.369647,-0.377991,-0.848813,-0.369647,-0.377991,-0.848813,-0.369647,-0.377991,-0.848813,-0.369647,-0.377991,-0.848813, + 0.546374,-0.827375,0.130100,0.546374,-0.827375,0.130100,0.546374,-0.827375,0.130100,0.546374,-0.827375,0.130100, + 0.346926,0.365916,0.863567,0.346926,0.365916,0.863567,0.346926,0.365916,0.863567,0.346926,0.365916,0.863567, + -0.546368,0.827376,-0.130122,-0.546368,0.827376,-0.130122,-0.546368,0.827376,-0.130122,-0.546368,0.827376,-0.130122, + -0.346941,-0.365933,-0.863554,-0.346941,-0.365933,-0.863554,-0.346941,-0.365933,-0.863554,-0.346941,-0.365933,-0.863554, + 0.546039,-0.827631,0.129878,0.546039,-0.827631,0.129878,0.546039,-0.827631,0.129878,0.546039,-0.827631,0.129878, + 0.363368,0.375803,0.852488,0.363368,0.375803,0.852488,0.363368,0.375803,0.852488,0.363368,0.375803,0.852488, + -0.546049,0.827616,-0.129933,-0.546049,0.827616,-0.129933,-0.546049,0.827616,-0.129933,-0.546049,0.827616,-0.129933, + -0.356963,-0.372338,-0.856704,-0.356963,-0.372338,-0.856704,-0.356963,-0.372338,-0.856704,-0.356963,-0.372338,-0.856704, + 0.797216,0.560499,0.224250,0.797216,0.560499,0.224250,0.797216,0.560499,0.224250,0.797216,0.560499,0.224250, + -0.568254,0.567474,0.595870,-0.568254,0.567474,0.595870,-0.568254,0.567474,0.595870,-0.568254,0.567474,0.595870, + -0.797224,-0.560490,-0.224244,-0.797224,-0.560490,-0.224244,-0.797224,-0.560490,-0.224244,-0.797224,-0.560490,-0.224244, + 0.567988,-0.566707,-0.596853,0.567988,-0.566707,-0.596853,0.567988,-0.566707,-0.596853,0.567988,-0.566707,-0.596853, + 0.755554,0.618517,0.215810,0.755554,0.618517,0.215810,0.755554,0.618517,0.215810,0.755554,0.618517,0.215810, + -0.607176,0.537553,0.585128,-0.607176,0.537553,0.585128,-0.607176,0.537553,0.585128,-0.607176,0.537553,0.585128, + -0.755553,-0.618517,-0.215817,-0.755553,-0.618517,-0.215817,-0.755553,-0.618517,-0.215817,-0.755553,-0.618517,-0.215817, + 0.607198,-0.537529,-0.585127,0.607198,-0.537529,-0.585127,0.607198,-0.537529,-0.585127,0.607198,-0.537529,-0.585127, + 0.438899,0.605372,0.663997,0.438899,0.605372,0.663997,0.438899,0.605372,0.663997,0.438899,0.605372,0.663997, + -0.775237,0.543797,-0.321392,-0.775237,0.543797,-0.321392,-0.775237,0.543797,-0.321392,-0.775237,0.543797,-0.321392, + -0.825709,0.543178,-0.152193,-0.825709,0.543178,-0.152193,-0.825709,0.543178,-0.152193,-0.825709,0.543178,-0.152193, + -0.308836,-0.832279,-0.460361,-0.308836,-0.832279,-0.460361,-0.308836,-0.832279,-0.460361,-0.308836,-0.832279,-0.460361, + -0.781377,0.579278,-0.232134,-0.781377,0.579278,-0.232134,-0.781377,0.579278,-0.232134,-0.781377,0.579278,-0.232134, + 0.660352,0.525141,0.536807,0.660352,0.525141,0.536807,0.660352,0.525141,0.536807,0.660352,0.525141,0.536807, + 0.794509,-0.536609,0.284265,0.794509,-0.536609,0.284265,0.794509,-0.536609,0.284265,0.794509,-0.536609,0.284265, + 0.670783,0.632671,0.387012,0.670783,0.632671,0.387012,0.670783,0.632671,0.387012,0.670783,0.632671,0.387012, + -0.530185,-0.758213,-0.379495,-0.530185,-0.758213,-0.379495,-0.530185,-0.758213,-0.379495,-0.530185,-0.758213,-0.379495, + 0.761741,0.560941,0.324184,0.761741,0.560941,0.324184,0.761741,0.560941,0.324184,0.761741,0.560941,0.324184, + -0.620938,0.776193,-0.109364,-0.620938,0.776193,-0.109364,-0.620938,0.776193,-0.109364,-0.620938,0.776193,-0.109364, + 0.508768,-0.858299,0.066917,0.508768,-0.858299,0.066917,0.508768,-0.858299,0.066917,0.508768,-0.858299,0.066917, + 0.539815,-0.830841,0.135290,0.539815,-0.830841,0.135290,0.539815,-0.830841,0.135290,0.539815,-0.830841,0.135290, + -0.539855,0.830810,-0.135319,-0.539855,0.830810,-0.135319,-0.539855,0.830810,-0.135319,-0.539855,0.830810,-0.135319, + -0.547774,0.826032,-0.132723,-0.547774,0.826032,-0.132723,-0.547774,0.826032,-0.132723,-0.547774,0.826032,-0.132723, + 0.535224,-0.118594,-0.836343,0.535224,-0.118594,-0.836343,0.535224,-0.118594,-0.836343,-0.444402,0.823737,-0.352087, + -0.444402,0.823737,-0.352087,-0.444402,0.823737,-0.352087,-0.444402,0.823737,-0.352087,0.547796,-0.826020,0.132703, + 0.547796,-0.826020,0.132703,0.547796,-0.826020,0.132703,0.547796,-0.826020,0.132703,0.796414,0.566940,0.210484, + 0.796414,0.566940,0.210484,0.796414,0.566940,0.210484,0.796414,0.566940,0.210484,-0.797209,-0.567002,-0.207282, + -0.797209,-0.567002,-0.207282,-0.797209,-0.567002,-0.207282,-0.797209,-0.567002,-0.207282,-0.554282,0.823484,-0.121016, + -0.554282,0.823484,-0.121016,-0.554282,0.823484,-0.121016,-0.554282,0.823484,-0.121016,0.788842,0.566193,0.239068, + 0.788842,0.566193,0.239068,0.788842,0.566193,0.239068,0.788842,0.566193,0.239068,-0.790593,-0.566394,-0.232726, + -0.790593,-0.566394,-0.232726,-0.790593,-0.566394,-0.232726,-0.790593,-0.566394,-0.232726,-0.554290,0.823480,-0.121008, + -0.554290,0.823480,-0.121008,-0.554290,0.823480,-0.121008,-0.554290,0.823480,-0.121008,0.250465,0.021019,-0.967897, + 0.250465,0.021019,-0.967897,0.250465,0.021019,-0.967897,0.250465,0.021019,-0.967897,-0.553185,0.823591,-0.125235, + -0.553185,0.823591,-0.125235,-0.553185,0.823591,-0.125235,-0.553185,0.823591,-0.125235,-0.250453,-0.021028,0.967900, + -0.250453,-0.021028,0.967900,-0.250453,-0.021028,0.967900,-0.250453,-0.021028,0.967900,0.250459,0.021029,-0.967899, + 0.250459,0.021029,-0.967899,0.250459,0.021029,-0.967899,0.250459,0.021029,-0.967899,-0.553190,0.823588,-0.125230, + -0.553190,0.823588,-0.125230,-0.553190,0.823588,-0.125230,-0.553190,0.823588,-0.125230,-0.250462,-0.021030,0.967898, + -0.250462,-0.021030,0.967898,-0.250462,-0.021030,0.967898,-0.250462,-0.021030,0.967898,0.799698,0.566653,0.198462, + 0.799698,0.566653,0.198462,0.799698,0.566653,0.198462,0.799698,0.566653,0.198462,-0.800048,-0.566638,-0.197089, + -0.800048,-0.566638,-0.197089,-0.800048,-0.566638,-0.197089,-0.800048,-0.566638,-0.197089,-0.554244,0.823101,-0.123767, + -0.554244,0.823101,-0.123767,-0.554244,0.823101,-0.123767,-0.554244,0.823101,-0.123767,0.790658,0.566705,0.231742, + 0.790658,0.566705,0.231742,0.790658,0.566705,0.231742,0.790658,0.566705,0.231742,-0.790912,-0.566725,-0.230828, + -0.790912,-0.566725,-0.230828,-0.790912,-0.566725,-0.230828,-0.790912,-0.566725,-0.230828,-0.552978,0.824003,-0.123426, + -0.552978,0.824003,-0.123426,-0.552978,0.824003,-0.123426,-0.552978,0.824003,-0.123426,0.264444,0.000079,-0.964401, + 0.264444,0.000079,-0.964401,0.264444,0.000079,-0.964401,0.264444,0.000079,-0.964401,-0.553190,0.823590,-0.125224, + -0.553190,0.823590,-0.125224,-0.553190,0.823590,-0.125224,-0.553190,0.823590,-0.125224,-0.264433,-0.000075,0.964404, + -0.264433,-0.000075,0.964404,-0.264433,-0.000075,0.964404,-0.264433,-0.000075,0.964404,0.554248,-0.823098,0.123768, + 0.554248,-0.823098,0.123768,0.554248,-0.823098,0.123768,0.554248,-0.823098,0.123768,0.553176,-0.823596,0.125241, + 0.553176,-0.823596,0.125241,0.553176,-0.823596,0.125241,0.553176,-0.823596,0.125241,0.552979,-0.824003,0.123426, + 0.552979,-0.824003,0.123426,0.552979,-0.824003,0.123426,0.552979,-0.824003,0.123426,0.554274,-0.823490,0.121014, + 0.554274,-0.823490,0.121014,0.554274,-0.823490,0.121014,0.554274,-0.823490,0.121014,0.553184,-0.823593,0.125226, + 0.553184,-0.823593,0.125226,0.553184,-0.823593,0.125226,0.553184,-0.823593,0.125226,0.554267,-0.823496,0.121009, + 0.554267,-0.823496,0.121009,0.554267,-0.823496,0.121009,0.554267,-0.823496,0.121009,0.553189,-0.823588,0.125235, + 0.553189,-0.823588,0.125235,0.553189,-0.823588,0.125235,0.553189,-0.823588,0.125235,-0.801200,-0.563056,-0.202598, + -0.801200,-0.563056,-0.202598,-0.801200,-0.563056,-0.202598,-0.801200,-0.563056,-0.202598,0.801645,0.563323,0.200081, + 0.801645,0.563323,0.200081,0.801645,0.563323,0.200081,0.801645,0.563323,0.200081,0.577026,-0.816510,-0.018781, + 0.577026,-0.816510,-0.018781,0.577026,-0.816510,-0.018781,0.577026,-0.816510,-0.018781,-0.806228,-0.566389,-0.170882, + -0.806228,-0.566389,-0.170882,-0.806228,-0.566389,-0.170882,-0.806228,-0.566389,-0.170882,0.804864,0.565480,0.180075, + 0.804864,0.565480,0.180075,0.804864,0.565480,0.180075,0.804864,0.565480,0.180075,0.577011,-0.816521,-0.018744, + 0.577011,-0.816521,-0.018744,0.577011,-0.816521,-0.018744,0.577011,-0.816521,-0.018744,0.164195,0.109448,-0.980337, + 0.164195,0.109448,-0.980337,0.164195,0.109448,-0.980337,0.164195,0.109448,-0.980337,0.555292,-0.828972,-0.066754, + 0.555292,-0.828972,-0.066754,0.555292,-0.828972,-0.066754,0.555292,-0.828972,-0.066754,-0.165038,-0.110038,0.980130, + -0.165038,-0.110038,0.980130,-0.165038,-0.110038,0.980130,-0.165038,-0.110038,0.980130,0.165562,0.110407,-0.980000, + 0.165562,0.110407,-0.980000,0.165562,0.110407,-0.980000,0.165562,0.110407,-0.980000,0.554504,-0.829483,-0.066962, + 0.554504,-0.829483,-0.066962,0.554504,-0.829483,-0.066962,0.554504,-0.829483,-0.066962,-0.164857,-0.109915,0.980174, + -0.164857,-0.109915,0.980174,-0.164857,-0.109915,0.980174,-0.164857,-0.109915,0.980174,-0.792122,-0.566164,-0.228037, + -0.792122,-0.566164,-0.228037,-0.792122,-0.566164,-0.228037,-0.792122,-0.566164,-0.228037,0.791941,0.566107,0.228807, + 0.791941,0.566107,0.228807,0.791941,0.566107,0.228807,0.791941,0.566107,0.228807,0.553414,-0.823138,0.127184, + 0.553414,-0.823138,0.127184,0.553414,-0.823138,0.127184,0.553414,-0.823138,0.127184,-0.799152,-0.568286,-0.195975, + -0.799152,-0.568286,-0.195975,-0.799152,-0.568286,-0.195975,-0.799152,-0.568286,-0.195975,0.798831,0.568199,0.197532, + 0.798831,0.568199,0.197532,0.798831,0.568199,0.197532,0.798831,0.568199,0.197532,0.552045,-0.824115,0.126815, + 0.552045,-0.824115,0.126815,0.552045,-0.824115,0.126815,0.552045,-0.824115,0.126815,0.218511,0.067950,-0.973466, + 0.218511,0.067950,-0.973466,0.218511,0.067950,-0.973466,0.218511,0.067950,-0.973466,0.553183,-0.823592,0.125238, + 0.553183,-0.823592,0.125238,0.553183,-0.823592,0.125238,0.553183,-0.823592,0.125238,0.746552,0.556815,0.364166, + 0.746552,0.556815,0.364166,0.746552,0.556815,0.364166,0.746552,0.556815,0.364166,0.553182,-0.823594,0.125228, + 0.553182,-0.823594,0.125228,0.553182,-0.823594,0.125228,0.553182,-0.823594,0.125228,-0.794522,-0.566792,-0.217905, + -0.794522,-0.566792,-0.217905,-0.794522,-0.566792,-0.217905,-0.794522,-0.566792,-0.217905,-0.553185,0.823591,-0.125236, + -0.553185,0.823591,-0.125236,-0.553185,0.823591,-0.125236,-0.553185,0.823591,-0.125236,0.250443,0.021044,-0.967903, + 0.250443,0.021044,-0.967903,0.250443,0.021044,-0.967903,0.250443,0.021044,-0.967903,-0.250445,-0.021045,0.967902, + -0.250445,-0.021045,0.967902,-0.250445,-0.021045,0.967902,-0.250445,-0.021045,0.967902,0.794523,0.566791,0.217903, + 0.794523,0.566791,0.217903,0.794523,0.566791,0.217903,0.794523,0.566791,0.217903,0.553182,-0.823595,0.125226, + 0.553182,-0.823595,0.125226,0.553182,-0.823595,0.125226,0.553182,-0.823595,0.125226,-0.785016,-0.565669,-0.252523, + -0.785016,-0.565669,-0.252523,-0.785016,-0.565669,-0.252523,-0.785016,-0.565669,-0.252523,-0.553189,0.823590,-0.125228, + -0.553189,0.823590,-0.125228,-0.553189,0.823590,-0.125228,-0.553189,0.823590,-0.125228,0.250454,0.021045,-0.967900, + 0.250454,0.021045,-0.967900,0.250454,0.021045,-0.967900,0.250454,0.021045,-0.967900,-0.250446,-0.021043,0.967902, + -0.250446,-0.021043,0.967902,-0.250446,-0.021043,0.967902,-0.250446,-0.021043,0.967902,0.828329,0.484820,0.280750, + 0.828329,0.484820,0.280750,0.828329,0.484820,0.280750,0.828329,0.484820,0.280750,0.547292,-0.771280,-0.324960, + 0.547292,-0.771280,-0.324960,0.547292,-0.771280,-0.324960,0.547292,-0.771280,-0.324960,-0.828330,-0.484817,-0.280753, + -0.828330,-0.484817,-0.280753,-0.828330,-0.484817,-0.280753,-0.828330,-0.484817,-0.280753,-0.547293,0.771283,0.324951, + -0.547293,0.771283,0.324951,-0.547293,0.771283,0.324951,-0.547293,0.771283,0.324951,-0.052558,0.872575,0.485644, + -0.052558,0.872575,0.485644,-0.052558,0.872575,0.485644,-0.052558,0.872575,0.485644,-0.084241,-0.517929,0.851265, + -0.084241,-0.517929,0.851265,-0.084241,-0.517929,0.851265,-0.084241,-0.517929,0.851265,0.794522,0.566789,0.217910, + 0.794522,0.566789,0.217910,0.794522,0.566789,0.217910,0.794522,0.566789,0.217910,0.553180,-0.823594,0.125242, + 0.553180,-0.823594,0.125242,0.553180,-0.823594,0.125242,0.553180,-0.823594,0.125242,-0.740830,-0.555104,-0.378194, + -0.740830,-0.555104,-0.378194,-0.740830,-0.555104,-0.378194,-0.740830,-0.555104,-0.378194,-0.553185,0.823591,-0.125237, + -0.553185,0.823591,-0.125237,-0.553185,0.823591,-0.125237,-0.553185,0.823591,-0.125237,0.157672,-0.044104,-0.986506, + 0.157672,-0.044104,-0.986506,0.157672,-0.044104,-0.986506,0.157672,-0.044104,-0.986506,-0.250449,-0.021042,0.967901, + -0.250449,-0.021042,0.967901,-0.250449,-0.021042,0.967901,-0.250449,-0.021042,0.967901,0.794526,0.566787,0.217901, + 0.794526,0.566787,0.217901,0.794526,0.566787,0.217901,0.794526,0.566787,0.217901,0.553193,-0.823585,0.125240, + 0.553193,-0.823585,0.125240,0.553193,-0.823585,0.125240,0.553193,-0.823585,0.125240,0.794518,0.566794,0.217911, + 0.794518,0.566794,0.217911,0.794518,0.566794,0.217911,0.794518,0.566794,0.217911,-0.553176,0.823599,-0.125225, + -0.553176,0.823599,-0.125225,-0.553176,0.823599,-0.125225,-0.553176,0.823599,-0.125225,0.250450,0.021041,-0.967901, + 0.250450,0.021041,-0.967901,0.250450,0.021041,-0.967901,0.250450,0.021041,-0.967901,-0.250448,-0.021045,0.967901, + -0.250448,-0.021045,0.967901,-0.250448,-0.021045,0.967901,-0.250448,-0.021045,0.967901,0.553190,-0.823590,0.125220, + 0.553190,-0.823590,0.125220,0.553190,-0.823590,0.125220,0.553190,-0.823590,0.125220,-0.553177,0.823596,-0.125240, + -0.553177,0.823596,-0.125240,-0.553177,0.823596,-0.125240,-0.553177,0.823596,-0.125240,0.118560,-0.070963,-0.990408, + 0.118560,-0.070963,-0.990408,0.118560,-0.070963,-0.990408,0.118560,-0.070963,-0.990408,-0.250446,-0.021044,0.967902, + -0.250446,-0.021044,0.967902,-0.250446,-0.021044,0.967902,-0.250446,-0.021044,0.967902,0.553185,-0.823591,0.125236, + 0.553185,-0.823591,0.125236,0.553185,-0.823591,0.125236,0.553185,-0.823591,0.125236,-0.756794,-0.559670,-0.337686, + -0.756794,-0.559670,-0.337686,-0.756794,-0.559670,-0.337686,-0.756794,-0.559670,-0.337686,0.794525,0.566785,0.217910, + 0.794525,0.566785,0.217910,0.794525,0.566785,0.217910,0.794525,0.566785,0.217910,0.250451,0.021048,-0.967900, + 0.250451,0.021048,-0.967900,0.250451,0.021048,-0.967900,0.250451,0.021048,-0.967900,-0.250447,-0.021039,0.967902, + -0.250447,-0.021039,0.967902,-0.250447,-0.021039,0.967902,-0.250447,-0.021039,0.967902,0.553187,-0.823590,0.125234, + 0.553187,-0.823590,0.125234,0.553187,-0.823590,0.125234,0.553187,-0.823590,0.125234,-0.778551,-0.564606,-0.274003, + -0.778551,-0.564606,-0.274003,-0.778551,-0.564606,-0.274003,-0.778551,-0.564606,-0.274003,0.807773,0.567062,0.161070, + 0.807773,0.567062,0.161070,0.807773,0.567062,0.161070,0.807773,0.567062,0.161070,0.250455,0.021046,-0.967899, + 0.250455,0.021046,-0.967899,0.250455,0.021046,-0.967899,0.250455,0.021046,-0.967899,-0.250449,-0.021046,0.967901, + -0.250449,-0.021046,0.967901,-0.250449,-0.021046,0.967901,-0.250449,-0.021046,0.967901,0.545104,-0.823846,0.155368, + 0.545104,-0.823846,0.155368,0.545104,-0.823846,0.155368,0.545104,-0.823846,0.155368,-0.802947,-0.567196,-0.183206, + -0.802947,-0.567196,-0.183206,-0.802947,-0.567196,-0.183206,-0.802947,-0.567196,-0.183206,0.794521,0.566791,0.217909, + 0.794521,0.566791,0.217909,0.794521,0.566791,0.217909,0.794521,0.566791,0.217909,0.250448,0.021043,-0.967901, + 0.250448,0.021043,-0.967901,0.250448,0.021043,-0.967901,0.250448,0.021043,-0.967901,-0.250450,-0.021044,0.967901, + -0.250450,-0.021044,0.967901,-0.250450,-0.021044,0.967901,-0.250450,-0.021044,0.967901,-0.553182,0.823593,-0.125234, + -0.553182,0.823593,-0.125234,-0.553182,0.823593,-0.125234,-0.553182,0.823593,-0.125234,0.794530,0.566781,0.217905, + 0.794530,0.566781,0.217905,0.794530,0.566781,0.217905,0.794530,0.566781,0.217905,-0.764647,-0.561660,-0.315994, + -0.764647,-0.561660,-0.315994,-0.764647,-0.561660,-0.315994,-0.764647,-0.561660,-0.315994,0.250445,0.021045,-0.967902, + 0.250445,0.021045,-0.967902,0.250445,0.021045,-0.967902,0.250445,0.021045,-0.967902,-0.250443,-0.021036,0.967903, + -0.250443,-0.021036,0.967903,-0.250443,-0.021036,0.967903,-0.250443,-0.021036,0.967903,-0.553183,0.823592,-0.125240, + -0.553183,0.823592,-0.125240,-0.553183,0.823592,-0.125240,-0.553183,0.823592,-0.125240,0.760558,0.560653,0.327444, + 0.760558,0.560653,0.327444,0.760558,0.560653,0.327444,0.760558,0.560653,0.327444,-0.757779,-0.559911,-0.335069, + -0.757779,-0.559911,-0.335069,-0.757779,-0.559911,-0.335069,-0.757779,-0.559911,-0.335069,0.250447,0.021043,-0.967902, + 0.250447,0.021043,-0.967902,0.250447,0.021043,-0.967902,0.250447,0.021043,-0.967902,-0.215225,0.003933,0.976557, + -0.215225,0.003933,0.976557,-0.215225,0.003933,0.976557,-0.215225,0.003933,0.976557,-0.717154,-0.235475,0.655928, + -0.717154,-0.235475,0.655928,-0.717154,-0.235475,0.655928,-0.717154,-0.235475,0.655928,0.166390,-0.985931,-0.015958, + 0.166390,-0.985931,-0.015958,0.166390,-0.985931,-0.015958,0.166390,-0.985931,-0.015958,0.482750,0.554406,0.677928, + 0.482750,0.554406,0.677928,0.482750,0.554406,0.677928,0.482750,0.554406,0.677928,-0.784593,-0.222397,0.578752, + -0.784593,-0.222397,0.578752,-0.784593,-0.222397,0.578752,-0.784593,-0.222397,0.578752,-0.639229,0.399066,-0.657367, + -0.639229,0.399066,-0.657367,-0.639229,0.399066,-0.657367,-0.639229,0.399066,-0.657367,-0.749384,-0.147928,0.645400, + -0.749384,-0.147928,0.645400,-0.749384,-0.147928,0.645400,-0.749384,-0.147928,0.645400,-0.162747,0.986459,0.020277, + -0.162747,0.986459,0.020277,-0.162747,0.986459,0.020277,-0.162747,0.986459,0.020277,-0.722049,-0.135083,0.678526, + -0.722049,-0.135083,0.678526,-0.722049,-0.135083,0.678526,-0.722049,-0.135083,0.678526,0.162953,-0.986431,-0.020017, + 0.162953,-0.986431,-0.020017,0.162953,-0.986431,-0.020017,0.162953,-0.986431,-0.020017,0.642501,0.077916,0.762313, + 0.642501,0.077916,0.762313,0.642501,0.077916,0.762313,0.642501,0.077916,0.762313,-0.752052,-0.124770,0.647187, + -0.752052,-0.124770,0.647187,-0.752052,-0.124770,0.647187,-0.752052,-0.124770,0.647187,-0.642470,-0.078128,-0.762318, + -0.642470,-0.078128,-0.762318,-0.642470,-0.078128,-0.762318,-0.642470,-0.078128,-0.762318,-0.594789,0.803800,0.011465, + -0.594789,0.803800,0.011465,-0.594789,0.803800,0.011465,-0.594789,0.803800,0.011465,-0.586622,0.807308,-0.064253, + -0.586622,0.807308,-0.064253,-0.586622,0.807308,-0.064253,-0.586622,0.807308,-0.064253,-0.594981,0.803647,0.012241, + -0.594981,0.803647,0.012241,-0.594981,0.803647,0.012241,-0.594981,0.803647,0.012241,-0.587401,0.806735,-0.064333, + -0.587401,0.806735,-0.064333,-0.587401,0.806735,-0.064333,-0.587401,0.806735,-0.064333,-0.158298,-0.072728,0.984709, + -0.158298,-0.072728,0.984709,-0.158298,-0.072728,0.984709,-0.158298,-0.072728,0.984709,0.594789,-0.803800,-0.011478, + 0.594789,-0.803800,-0.011478,0.594789,-0.803800,-0.011478,0.594789,-0.803800,-0.011478,0.154569,0.069955,-0.985502, + 0.154569,0.069955,-0.985502,0.154569,0.069955,-0.985502,0.154569,0.069955,-0.985502,-0.143559,-0.083293,0.986130, + -0.143559,-0.083293,0.986130,-0.143559,-0.083293,0.986130,-0.143559,-0.083293,0.986130,0.594974,-0.803652,-0.012225, + 0.594974,-0.803652,-0.012225,0.594974,-0.803652,-0.012225,0.594974,-0.803652,-0.012225,0.146921,0.085794,-0.985421, + 0.146921,0.085794,-0.985421,0.146921,0.085794,-0.985421,0.146921,0.085794,-0.985421,0.592019,-0.805413,0.028688, + 0.592019,-0.805413,0.028688,0.592019,-0.805413,0.028688,0.592019,-0.805413,0.028688,0.794133,0.591782,0.138371, + 0.794133,0.591782,0.138371,0.794133,0.591782,0.138371,0.794133,0.591782,0.138371,-0.794443,-0.591936,-0.135909, + -0.794443,-0.591936,-0.135909,-0.794443,-0.591936,-0.135909,-0.794443,-0.591936,-0.135909,0.592831,-0.804812,0.028797, + 0.592831,-0.804812,0.028797,0.592831,-0.804812,0.028797,0.592831,-0.804812,0.028797,0.790321,0.589853,0.165726, + 0.790321,0.589853,0.165726,0.790321,0.589853,0.165726,0.790321,0.589853,0.165726,-0.790974,-0.590180,-0.161392, + -0.790974,-0.590180,-0.161392,-0.790974,-0.590180,-0.161392,-0.790974,-0.590180,-0.161392,-0.577014,0.816518,0.018777, + -0.577014,0.816518,0.018777,-0.577014,0.816518,0.018777,-0.577014,0.816518,0.018777,-0.555292,0.828970,0.066779, + -0.555292,0.828970,0.066779,-0.555292,0.828970,0.066779,-0.555292,0.828970,0.066779,-0.577002,0.816528,0.018743, + -0.577002,0.816528,0.018743,-0.577002,0.816528,0.018743,-0.577002,0.816528,0.018743,-0.554505,0.829482,0.066963, + -0.554505,0.829482,0.066963,-0.554505,0.829482,0.066963,-0.554505,0.829482,0.066963,0.773740,0.596560,0.213173, + 0.773740,0.596560,0.213173,0.773740,0.596560,0.213173,0.773740,0.596560,0.213173,-0.851812,-0.470344,-0.230635, + -0.851812,-0.470344,-0.230635,-0.851812,-0.470344,-0.230635,-0.851812,-0.470344,-0.230635,0.276291,-0.017875,-0.960908, + 0.276291,-0.017875,-0.960908,0.276291,-0.017875,-0.960908,0.276291,-0.017875,-0.960908,-0.276291,0.017873,0.960908, + -0.276291,0.017873,0.960908,-0.276291,0.017873,0.960908,-0.276291,0.017873,0.960908,0.794517,0.566793,0.217918, + 0.794517,0.566793,0.217918,0.794517,0.566793,0.217918,0.794517,0.566793,0.217918,-0.794518,-0.566794,-0.217912, + -0.794518,-0.566794,-0.217912,-0.794518,-0.566794,-0.217912,-0.794518,-0.566794,-0.217912,0.271770,-0.010986,-0.962299, + 0.271770,-0.010986,-0.962299,0.271770,-0.010986,-0.962299,0.271770,-0.010986,-0.962299,-0.271766,0.010987,0.962300, + -0.271766,0.010987,0.962300,-0.271766,0.010987,0.962300,-0.271766,0.010987,0.962300,0.786694,0.560596,0.258543, + 0.786694,0.560596,0.258543,0.786694,0.560596,0.258543,0.786694,0.560596,0.258543,-0.783350,-0.565417,-0.258199, + -0.783350,-0.565417,-0.258199,-0.783350,-0.565417,-0.258199,-0.783350,-0.565417,-0.258199,0.264147,0.052725,-0.963040, + 0.264147,0.052725,-0.963040,0.264147,0.052725,-0.963040,0.264147,0.052725,-0.963040,-0.264051,-0.052846,0.963060, + -0.264051,-0.052846,0.963060,-0.264051,-0.052846,0.963060,-0.264051,-0.052846,0.963060,0.644199,0.602239,0.471503, + 0.644199,0.602239,0.471503,0.644199,0.602239,0.471503,0.644199,0.602239,0.471503,-0.753365,-0.433102,-0.494837, + -0.753365,-0.433102,-0.494837,-0.753365,-0.433102,-0.494837,-0.753365,-0.433102,-0.494837,0.415883,0.251025,-0.874087, + 0.415883,0.251025,-0.874087,0.415883,0.251025,-0.874087,0.415883,0.251025,-0.874087,0.147674,0.009659,-0.988989, + 0.147674,0.009659,-0.988989,0.147674,0.009659,-0.988989,0.147674,0.009659,-0.988989,-0.496516,0.798634,-0.340081, + -0.496516,0.798634,-0.340081,-0.496516,0.798634,-0.340081,-0.496516,0.798634,-0.340081,0.289807,0.106625,-0.951127, + 0.289807,0.106625,-0.951127,0.289807,0.106625,-0.951127,0.289807,0.106625,-0.951127,0.583158,-0.808428,0.079818, + 0.583158,-0.808428,0.079818,0.583158,-0.808428,0.079818,0.583158,-0.808428,0.079818,-0.494066,-0.844134,-0.208175, + -0.494066,-0.844134,-0.208175,-0.494066,-0.844134,-0.208175,-0.494066,-0.844134,-0.208175,0.491149,0.842202,0.222415, + 0.491149,0.842202,0.222415,0.491149,0.842202,0.222415,0.491149,0.842202,0.222415,0.770268,-0.605389,0.200478, + 0.770268,-0.605389,0.200478,0.770268,-0.605389,0.200478,0.770268,-0.605389,0.200478,-0.626895,0.776605,-0.062350, + -0.626895,0.776605,-0.062350,-0.626895,0.776605,-0.062350,-0.626895,0.776605,-0.062350,-0.584163,-0.681934,-0.440136, + -0.584163,-0.681934,-0.440136,-0.584163,-0.681934,-0.440136,-0.584163,-0.681934,-0.440136,0.625415,-0.777415,0.066939, + 0.625415,-0.777415,0.066939,0.625415,-0.777415,0.066939,0.625415,-0.777415,0.066939,0.786546,0.586477,0.193367, + 0.786546,0.586477,0.193367,0.786546,0.586477,0.193367,0.786546,0.586477,0.193367,0.569301,0.685172,0.454352, + 0.569301,0.685172,0.454352,0.569301,0.685172,0.454352,0.569301,0.685172,0.454352,0.256740,-0.653877,0.711708, + 0.256740,-0.653877,0.711708,0.256740,-0.653877,0.711708,0.256740,-0.653877,0.711708,-0.782046,-0.587913,-0.206790, + -0.782046,-0.587913,-0.206790,-0.782046,-0.587913,-0.206790,-0.782046,-0.587913,-0.206790,-0.251188,0.651747,-0.715633, + -0.251188,0.651747,-0.715633,-0.251188,0.651747,-0.715633,-0.251188,0.651747,-0.715633,-0.845520,0.186118,0.500457, + -0.845520,0.186118,0.500457,-0.845520,0.186118,0.500457,-0.845520,0.186118,0.500457,-0.815402,0.568335,-0.110070, + -0.815402,0.568335,-0.110070,-0.815402,0.568335,-0.110070,-0.815402,0.568335,-0.110070,-0.789578,0.586966,-0.178990, + -0.789578,0.586966,-0.178990,-0.789578,0.586966,-0.178990,-0.789578,0.586966,-0.178990,0.209638,0.402233,0.891213, + 0.209638,0.402233,0.891213,0.209638,0.402233,0.891213,0.209638,0.402233,0.891213,0.814946,-0.568790,0.111091, + 0.814946,-0.568790,0.111091,0.814946,-0.568790,0.111091,0.814946,-0.568790,0.111091,-0.210269,-0.403960,-0.890282, + -0.210269,-0.403960,-0.890282,-0.210269,-0.403960,-0.890282,-0.210269,-0.403960,-0.890282,-0.103337,-0.732821,0.672529, + -0.103337,-0.732821,0.672529,-0.103337,-0.732821,0.672529,-0.103337,-0.732821,0.672529,0.557600,0.285679,-0.779404, + 0.557600,0.285679,-0.779404,0.557600,0.285679,-0.779404,0.557600,0.285679,-0.779404,-0.398596,0.867343,-0.298055, + -0.398596,0.867343,-0.298055,-0.398596,0.867343,-0.298055,-0.398596,0.867343,-0.298055,-0.415885,-0.251020,0.874087, + -0.415885,-0.251020,0.874087,-0.415885,-0.251020,0.874087,-0.415885,-0.251020,0.874087,-0.533398,-0.071848,0.842808, + -0.533398,-0.071848,0.842808,-0.533398,-0.071848,0.842808,-0.533398,-0.071848,0.842808,0.637573,0.604648,0.477390, + 0.637573,0.604648,0.477390,0.637573,0.604648,0.477390,0.637573,0.604648,0.477390,0.553181,-0.823594,0.125236, + 0.553181,-0.823594,0.125236,0.553181,-0.823594,0.125236,0.553181,-0.823594,0.125236,-0.699649,-0.560422,-0.443191, + -0.699649,-0.560422,-0.443191,-0.699649,-0.560422,-0.443191,-0.699649,-0.560422,-0.443191,-0.553190,0.823590,-0.125226, + -0.553190,0.823590,-0.125226,-0.553190,0.823590,-0.125226,-0.553190,0.823590,-0.125226,0.271998,-0.011335,-0.962231, + 0.271998,-0.011335,-0.962231,0.271998,-0.011335,-0.962231,0.271998,-0.011335,-0.962231,-0.270277,0.008737,0.962743, + -0.270277,0.008737,0.962743,-0.270277,0.008737,0.962743,-0.270277,0.008737,0.962743,0.719161,0.602764,0.345663, + 0.719161,0.602764,0.345663,0.719161,0.602764,0.345663,0.719161,0.602764,0.345663,-0.635267,-0.426184,-0.644053, + -0.635267,-0.426184,-0.644053,-0.635267,-0.426184,-0.644053,-0.635267,-0.426184,-0.644053,0.106691,0.222968,-0.968970, + 0.106691,0.222968,-0.968970,0.106691,0.222968,-0.968970,0.106691,0.222968,-0.968970,-0.105126,-0.225043,0.968661, + -0.105126,-0.225043,0.968661,-0.105126,-0.225043,0.968661,-0.105126,-0.225043,0.968661,-0.537751,0.215498,-0.815098, + -0.537751,0.215498,-0.815098,-0.537751,0.215498,-0.815098,-0.537751,0.215498,-0.815098,0.064995,0.561566,0.824875, + 0.064995,0.561566,0.824875,0.064995,0.561566,0.824875,0.064995,0.561566,0.824875,-0.839859,-0.399955,0.366976, + -0.839859,-0.399955,0.366976,-0.839859,-0.399955,0.366976,-0.839859,-0.399955,0.366976,0.768017,0.525112,-0.366615, + 0.768017,0.525112,-0.366615,0.768017,0.525112,-0.366615,0.768017,0.525112,-0.366615,-0.174924,-0.431373,-0.885053, + -0.174924,-0.431373,-0.885053,-0.174924,-0.431373,-0.885053,-0.174924,-0.431373,-0.885053,0.164846,0.444183,0.880640, + 0.164846,0.444183,0.880640,0.164846,0.444183,0.880640,0.164846,0.444183,0.880640,0.874019,-0.444350,0.196583, + 0.874019,-0.444350,0.196583,0.874019,-0.444350,0.196583,0.874019,-0.444350,0.196583,-0.422602,-0.582318,-0.694488, + -0.422602,-0.582318,-0.694488,-0.422602,-0.582318,-0.694488,-0.422602,-0.582318,-0.694488,-0.642294,-0.402187,0.652460, + -0.642294,-0.402187,0.652460,-0.642294,-0.402187,0.652460,-0.642294,-0.402187,0.652460,0.168108,0.193166,0.966658, + 0.168108,0.193166,0.966658,0.168108,0.193166,0.966658,0.168108,0.193166,0.966658,-0.771939,0.629351,-0.089601, + -0.771939,0.629351,-0.089601,-0.771939,0.629351,-0.089601,-0.771939,0.629351,-0.089601,-0.764656,0.632008,-0.125967, + -0.764656,0.632008,-0.125967,-0.764656,0.632008,-0.125967,-0.764656,0.632008,-0.125967,0.765577,-0.636284,0.095053, + 0.765577,-0.636284,0.095053,0.765577,-0.636284,0.095053,0.765577,-0.636284,0.095053,0.474922,0.831253,0.288906, + 0.474922,0.831253,0.288906,0.474922,0.831253,0.288906,0.474922,0.831253,0.288906,-0.652518,-0.691771,-0.309311, + -0.652518,-0.691771,-0.309311,-0.652518,-0.691771,-0.309311,-0.652518,-0.691771,-0.309311,0.859052,-0.469738,0.203411, + 0.859052,-0.469738,0.203411,0.859052,-0.469738,0.203411,0.859052,-0.469738,0.203411,-0.184665,-0.242173,-0.952497, + -0.184665,-0.242173,-0.952497,-0.184665,-0.242173,-0.952497,-0.184665,-0.242173,-0.952497,-0.148744,-0.857866,0.491875, + -0.148744,-0.857866,0.491875,-0.148744,-0.857866,0.491875,-0.148744,-0.857866,0.491875,0.736987,0.463162,0.492271, + 0.736987,0.463162,0.492271,0.736987,0.463162,0.492271,0.736987,0.463162,0.492271,0.252758,0.017599,-0.967369, + 0.252758,0.017599,-0.967369,0.252758,0.017599,-0.967369,0.252758,0.017599,-0.967369,-0.250920,-0.020336,0.967794, + -0.250920,-0.020336,0.967794,-0.250920,-0.020336,0.967794,-0.250920,-0.020336,0.967794,-0.535487,-0.560692,-0.631568, + -0.535487,-0.560692,-0.631568,-0.535487,-0.560692,-0.631568,-0.535487,-0.560692,-0.631568,-0.497895,-0.197331,0.844489, + -0.497895,-0.197331,0.844489,-0.497895,-0.197331,0.844489,-0.497895,-0.197331,0.844489,-0.573617,-0.284906,0.767979, + -0.573617,-0.284906,0.767979,-0.573617,-0.284906,0.767979,-0.573617,-0.284906,0.767979,0.780831,0.528381,0.333343, + 0.780831,0.528381,0.333343,0.780831,0.528381,0.333343,0.780831,0.528381,0.333343,-0.744388,-0.519375,-0.419685, + -0.744388,-0.519375,-0.419685,-0.744388,-0.519375,-0.419685,-0.744388,-0.519375,-0.419685,0.167078,0.536471,-0.827215, + 0.167078,0.536471,-0.827215,0.167078,0.536471,-0.827215,0.167078,0.536471,-0.827215,0.714790,0.588067,0.378486, + 0.714790,0.588067,0.378486,0.714790,0.588067,0.378486,0.714790,0.588067,0.378486,0.642244,0.001209,-0.766500, + 0.642244,0.001209,-0.766500,0.642244,0.001209,-0.766500,0.642244,0.001209,-0.766500,-0.693885,-0.542312,-0.473731, + -0.693885,-0.542312,-0.473731,-0.693885,-0.542312,-0.473731,-0.693885,-0.542312,-0.473731,-0.328584,0.939426,-0.097529, + -0.328584,0.939426,-0.097529,-0.328584,0.939426,-0.097529,-0.328584,0.939426,-0.097529,-0.802760,-0.248362,0.542118, + -0.802760,-0.248362,0.542118,-0.802760,-0.248362,0.542118,-0.802760,-0.248362,0.542118,0.684195,0.262418,-0.680451, + 0.684195,0.262418,-0.680451,0.684195,0.262418,-0.680451,0.684195,0.262418,-0.680451,0.305939,-0.944930,0.116228, + 0.305939,-0.944930,0.116228,0.305939,-0.944930,0.116228,0.305939,-0.944930,0.116228,-0.713517,-0.173873,0.678721, + -0.713517,-0.173873,0.678721,-0.713517,-0.173873,0.678721,-0.713517,-0.173873,0.678721,0.802762,0.248362,-0.542116, + 0.802762,0.248362,-0.542116,0.802762,0.248362,-0.542116,0.802762,0.248362,-0.542116,0.446796,-0.862446,0.237825, + 0.446796,-0.862446,0.237825,0.446796,-0.862446,0.237825,0.446796,-0.862446,0.237825,-0.446805,0.862443,-0.237818, + -0.446805,0.862443,-0.237818,-0.446805,0.862443,-0.237818,-0.446805,0.862443,-0.237818,-0.670103,-0.454762,-0.586646, + -0.670103,-0.454762,-0.586646,-0.670103,-0.454762,-0.586646,-0.670103,-0.454762,-0.586646,0.549126,0.278456,-0.787986, + 0.549126,0.278456,-0.787986,0.549126,0.278456,-0.787986,0.549126,0.278456,-0.787986,0.576611,-0.810392,0.103848, + 0.576611,-0.810392,0.103848,0.576611,-0.810392,0.103848,0.576611,-0.810392,0.103848,-0.390945,-0.042884,0.919414, + -0.390945,-0.042884,0.919414,-0.390945,-0.042884,0.919414,-0.390945,-0.042884,0.919414,-0.715331,-0.397784,0.574517, + -0.715331,-0.397784,0.574517,-0.715331,-0.397784,0.574517,-0.715331,-0.397784,0.574517,-0.209553,-0.040617,0.976954, + -0.209553,-0.040617,0.976954,-0.209553,-0.040617,0.976954,-0.209553,-0.040617,0.976954,-0.813662,-0.576737,-0.072996, + -0.813662,-0.576737,-0.072996,-0.813662,-0.576737,-0.072996,-0.813662,-0.576737,-0.072996,-0.343300,-0.162668,0.925032, + -0.343300,-0.162668,0.925032,-0.343300,-0.162668,0.925032,-0.343300,-0.162668,0.925032,-0.829735,-0.551732,-0.084447, + -0.829735,-0.551732,-0.084447,-0.829735,-0.551732,-0.084447,-0.829735,-0.551732,-0.084447,-0.368974,-0.185392,0.910762, + -0.368974,-0.185392,0.910762,-0.368974,-0.185392,0.910762,-0.368974,-0.185392,0.910762,-0.828031,-0.557606,-0.058660, + -0.828031,-0.557606,-0.058660,-0.828031,-0.557606,-0.058660,-0.828031,-0.557606,-0.058660,0.312899,-0.125786,-0.941420, + 0.312899,-0.125786,-0.941420,0.312899,-0.125786,-0.941420,0.312899,-0.125786,-0.941420,0.491920,-0.812925,0.311716, + 0.491920,-0.812925,0.311716,0.491920,-0.812925,0.311716,0.491920,-0.812925,0.311716,-0.493763,0.811612,-0.312223, + -0.493763,0.811612,-0.312223,-0.493763,0.811612,-0.312223,-0.493763,0.811612,-0.312223,0.228732,0.005608,-0.973473, + 0.228732,0.005608,-0.973473,0.228732,0.005608,-0.973473,0.228732,0.005608,-0.973473,0.539292,-0.833344,0.121249, + 0.539292,-0.833344,0.121249,0.539292,-0.833344,0.121249,0.539292,-0.833344,0.121249,-0.553180,0.823593,-0.125243, + -0.553180,0.823593,-0.125243,-0.553180,0.823593,-0.125243,-0.553180,0.823593,-0.125243,-0.233574,-0.009048,0.972297, + -0.233574,-0.009048,0.972297,-0.233574,-0.009048,0.972297,-0.233574,-0.009048,0.972297,0.233868,0.009249,-0.972224, + 0.233868,0.009249,-0.972224,0.233868,0.009249,-0.972224,0.233868,0.009249,-0.972224,0.553183,-0.823592,0.125237, + 0.553183,-0.823592,0.125237,0.553183,-0.823592,0.125237,0.553183,-0.823592,0.125237,-0.553185,0.823591,-0.125233, + -0.553185,0.823591,-0.125233,-0.553185,0.823591,-0.125233,-0.553185,0.823591,-0.125233,0.217354,-0.002425,-0.976090, + 0.217354,-0.002425,-0.976090,0.217354,-0.002425,-0.976090,0.217354,-0.002425,-0.976090,0.553185,-0.823591,0.125238, + 0.553185,-0.823591,0.125238,0.553185,-0.823591,0.125238,0.553185,-0.823591,0.125238,-0.553186,0.823591,-0.125229, + -0.553186,0.823591,-0.125229,-0.553186,0.823591,-0.125229,-0.553186,0.823591,-0.125229,0.215345,-0.003844,-0.976530, + 0.215345,-0.003844,-0.976530,0.215345,-0.003844,-0.976530,0.215345,-0.003844,-0.976530,0.553181,-0.823595,0.125227, + 0.553181,-0.823595,0.125227,0.553181,-0.823595,0.125227,0.553181,-0.823595,0.125227,-0.553185,0.823592,-0.125229, + -0.553185,0.823592,-0.125229,-0.553185,0.823592,-0.125229,-0.553185,0.823592,-0.125229,-0.215348,0.003847,0.976530, + -0.215348,0.003847,0.976530,-0.215348,0.003847,0.976530,-0.215348,0.003847,0.976530,-0.452584,-0.234441,0.860352, + -0.452584,-0.234441,0.860352,-0.452584,-0.234441,0.860352,-0.452584,-0.234441,0.860352,-0.793537,-0.568970,-0.215804, + -0.793537,-0.568970,-0.215804,-0.793537,-0.568970,-0.215804,-0.793537,-0.568970,-0.215804,-0.510261,-0.248005,0.823485, + -0.510261,-0.248005,0.823485,-0.510261,-0.248005,0.823485,-0.510261,-0.248005,0.823485,-0.826319,-0.559378,0.065526, + -0.826319,-0.559378,0.065526,-0.826319,-0.559378,0.065526,-0.826319,-0.559378,0.065526,0.737553,0.666379,0.109335, + 0.737553,0.666379,0.109335,0.737553,0.666379,0.109335,0.737553,0.666379,0.109335,0.508165,0.459684,-0.728326, + 0.508165,0.459684,-0.728326,0.508165,0.459684,-0.728326,0.508165,0.459684,-0.728326,0.555204,-0.825253,0.103466, + 0.555204,-0.825253,0.103466,0.555204,-0.825253,0.103466,0.555204,-0.825253,0.103466,0.497150,-0.846538,0.190306, + 0.497150,-0.846538,0.190306,0.497150,-0.846538,0.190306,0.497150,-0.846538,0.190306,0.497150,-0.846538,0.190306, + -0.449122,0.865767,-0.220765,-0.449122,0.865767,-0.220765,-0.449122,0.865767,-0.220765,-0.568349,0.802962,-0.179528, + -0.568349,0.802962,-0.179528,-0.568349,0.802962,-0.179528,-0.568349,0.802962,-0.179528,-0.496804,0.828682,-0.257820, + -0.496804,0.828682,-0.257820,-0.496804,0.828682,-0.257820,-0.496804,0.828682,-0.257820,0.715359,-0.698260,0.026364, + 0.715359,-0.698260,0.026364,0.715359,-0.698260,0.026364,0.571184,-0.819582,0.045106,0.571184,-0.819582,0.045106, + 0.571184,-0.819582,0.045106,0.571184,-0.819582,0.045106,0.596779,-0.800805,-0.050661,0.596779,-0.800805,-0.050661, + 0.596779,-0.800805,-0.050661,0.596779,-0.800805,-0.050661,0.576574,-0.816893,0.015758,0.576574,-0.816893,0.015758, + 0.576574,-0.816893,0.015758,-0.728262,-0.667032,-0.157169,-0.728262,-0.667032,-0.157169,-0.728262,-0.667032,-0.157169, + -0.728262,-0.667032,-0.157169,0.529089,-0.827713,0.186965,0.529089,-0.827713,0.186965,0.529089,-0.827713,0.186965, + 0.529089,-0.827713,0.186965,0.552485,-0.776220,0.303714,0.552485,-0.776220,0.303714,0.552485,-0.776220,0.303714, + 0.504733,-0.847004,0.166817,0.504733,-0.847004,0.166817,0.504733,-0.847004,0.166817,0.504733,-0.847004,0.166817, + 0.492518,-0.839991,0.227685,0.492518,-0.839991,0.227685,0.492518,-0.839991,0.227685,0.492518,-0.839991,0.227685, + 0.522566,-0.828622,0.200774,0.522566,-0.828622,0.200774,0.522566,-0.828622,0.200774,0.522566,-0.828622,0.200774, + -0.682061,0.731092,0.017233,-0.682061,0.731092,0.017233,-0.682061,0.731092,0.017233,-0.568702,0.817271,-0.092982, + -0.568702,0.817271,-0.092982,-0.568702,0.817271,-0.092982,-0.568702,0.817271,-0.092982,-0.602877,0.794075,0.077357, + -0.602877,0.794075,0.077357,-0.602877,0.794075,0.077357,-0.602877,0.794075,0.077357,-0.794523,-0.566792,-0.217901, + -0.794523,-0.566792,-0.217901,-0.794523,-0.566792,-0.217901,-0.794523,-0.566792,-0.217901,-0.142021,-0.086626,0.986066, + -0.142021,-0.086626,0.986066,-0.142021,-0.086626,0.986066,-0.142021,-0.086626,0.986066,-0.490772,-0.253391,0.833628, + -0.490772,-0.253391,0.833628,-0.490772,-0.253391,0.833628,-0.490772,-0.253391,0.833628,0.782457,0.565587,0.260523, + 0.782457,0.565587,0.260523,0.782457,0.565587,0.260523,0.782457,0.565587,0.260523,0.505511,-0.159528,-0.847944, + 0.505511,-0.159528,-0.847944,0.505511,-0.159528,-0.847944,0.505511,-0.159528,-0.847944,-0.210434,-0.082420,0.974128, + -0.210434,-0.082420,0.974128,-0.210434,-0.082420,0.974128,-0.210434,-0.082420,0.974128,0.786555,0.565880,0.247208, + 0.786555,0.565880,0.247208,0.786555,0.565880,0.247208,0.786555,0.565880,0.247208,-0.152407,0.253432,0.955272, + -0.152407,0.253432,0.955272,-0.152407,0.253432,0.955272,-0.152407,0.253432,0.955272,-0.594473,0.787210,-0.164018, + -0.594473,0.787210,-0.164018,-0.594473,0.787210,-0.164018,-0.594473,0.787210,-0.164018,-0.618869,0.783749,0.052329, + -0.618869,0.783749,0.052329,-0.618869,0.783749,0.052329,-0.618869,0.783749,0.052329,-0.397343,-0.034125,0.917036, + -0.397343,-0.034125,0.917036,-0.397343,-0.034125,0.917036,-0.397343,-0.034125,0.917036,-0.782486,-0.565618,-0.260367, + -0.782486,-0.565618,-0.260367,-0.782486,-0.565618,-0.260367,-0.782486,-0.565618,-0.260367,0.174824,0.955995,0.235605, + 0.174824,0.955995,0.235605,0.174824,0.955995,0.235605,0.174824,0.955995,0.235605,-0.560288,0.819496,-0.120431, + -0.560288,0.819496,-0.120431,-0.560288,0.819496,-0.120431,-0.560288,0.819496,-0.120431,-0.776327,0.590636,-0.220147, + -0.776327,0.590636,-0.220147,-0.776327,0.590636,-0.220147,-0.776327,0.590636,-0.220147,-0.532388,0.824259,-0.192769, + -0.532388,0.824259,-0.192769,-0.532388,0.824259,-0.192769,-0.532388,0.824259,-0.192769,-0.573718,-0.241149,0.782749, + -0.573718,-0.241149,0.782749,-0.573718,-0.241149,0.782749,-0.573718,-0.241149,0.782749,-0.640856,0.767321,-0.022832, + -0.640856,0.767321,-0.022832,-0.640856,0.767321,-0.022832,-0.640856,0.767321,-0.022832,-0.571352,0.799484,-0.185422, + -0.571352,0.799484,-0.185422,-0.571352,0.799484,-0.185422,-0.571352,0.799484,-0.185422,-0.673970,-0.686399,-0.273169, + -0.673970,-0.686399,-0.273169,-0.673970,-0.686399,-0.273169,-0.673970,-0.686399,-0.273169,0.570848,-0.799575,0.186582, + 0.570848,-0.799575,0.186582,0.570848,-0.799575,0.186582,0.570848,-0.799575,0.186582,0.807933,0.580169,0.103189, + 0.807933,0.580169,0.103189,0.807933,0.580169,0.103189,0.807933,0.580169,0.103189,0.644815,0.701639,0.303177, + 0.644815,0.701639,0.303177,0.644815,0.701639,0.303177,0.644815,0.701639,0.303177,0.247727,-0.490853,0.835281, + 0.247727,-0.490853,0.835281,0.247727,-0.490853,0.835281,0.247727,-0.490853,0.835281,-0.808009,-0.580102,-0.102967, + -0.808009,-0.580102,-0.102967,-0.808009,-0.580102,-0.102967,-0.808009,-0.580102,-0.102967,-0.218344,0.480161,-0.849572, + -0.218344,0.480161,-0.849572,-0.218344,0.480161,-0.849572,-0.218344,0.480161,-0.849572,-0.995023,0.076775,0.063527, + -0.995023,0.076775,0.063527,-0.995023,0.076775,0.063527,-0.995023,0.076775,0.063527,-0.496271,-0.828895,-0.258165, + -0.496271,-0.828895,-0.258165,-0.496271,-0.828895,-0.258165,-0.496271,-0.828895,-0.258165,0.492061,0.831006,0.259431, + 0.492061,0.831006,0.259431,0.492061,0.831006,0.259431,0.492061,0.831006,0.259431,0.101676,-0.320154,0.941894, + 0.101676,-0.320154,0.941894,0.101676,-0.320154,0.941894,0.101676,-0.320154,0.941894,-0.090120,0.318971,-0.943470, + -0.090120,0.318971,-0.943470,-0.090120,0.318971,-0.943470,-0.090120,0.318971,-0.943470,-0.509437,0.818799,-0.264654, + -0.509437,0.818799,-0.264654,-0.509437,0.818799,-0.264654,-0.509437,0.818799,-0.264654,-0.703376,-0.703543,-0.101436, + -0.703376,-0.703543,-0.101436,-0.703376,-0.703543,-0.101436,-0.703376,-0.703543,-0.101436,0.509683,-0.818914,0.263822, + 0.509683,-0.818914,0.263822,0.509683,-0.818914,0.263822,0.509683,-0.818914,0.263822,0.807464,0.564758,0.170440, + 0.807464,0.564758,0.170440,0.807464,0.564758,0.170440,0.807464,0.564758,0.170440,0.700698,0.705285,0.107681, + 0.700698,0.705285,0.107681,0.700698,0.705285,0.107681,0.700698,0.705285,0.107681,0.634365,-0.639005,0.435033, + 0.634365,-0.639005,0.435033,0.634365,-0.639005,0.435033,0.634365,-0.639005,0.435033,-0.807520,-0.564750,-0.170201, + -0.807520,-0.564750,-0.170201,-0.807520,-0.564750,-0.170201,-0.807520,-0.564750,-0.170201,-0.636438,0.641094,-0.428889, + -0.636438,0.641094,-0.428889,-0.636438,0.641094,-0.428889,-0.636438,0.641094,-0.428889,-0.641037,0.349242,0.683448, + -0.641037,0.349242,0.683448,-0.641037,0.349242,0.683448,-0.641037,0.349242,0.683448,-0.703332,-0.653535,0.279673, + -0.703332,-0.653535,0.279673,-0.703332,-0.653535,0.279673,-0.703332,-0.653535,0.279673,0.701629,0.656747,-0.276406, + 0.701629,0.656747,-0.276406,0.701629,0.656747,-0.276406,0.701629,0.656747,-0.276406,0.639389,-0.352426,0.683357, + 0.639389,-0.352426,0.683357,0.639389,-0.352426,0.683357,0.639389,-0.352426,0.683357,-0.632596,0.348079,-0.691855, + -0.632596,0.348079,-0.691855,-0.632596,0.348079,-0.691855,-0.632596,0.348079,-0.691855,-0.530079,0.821184,-0.211360, + -0.530079,0.821184,-0.211360,-0.530079,0.821184,-0.211360,-0.530079,0.821184,-0.211360,-0.637452,0.091539,0.765033, + -0.637452,0.091539,0.765033,-0.637452,0.091539,0.765033,-0.637452,0.091539,0.765033,0.530213,-0.821172,0.211071, + 0.530213,-0.821172,0.211071,0.530213,-0.821172,0.211071,0.530213,-0.821172,0.211071,0.744602,0.563533,0.357769, + 0.744602,0.563533,0.357769,0.744602,0.563533,0.357769,0.744602,0.563533,0.357769,-0.574054,0.808769,-0.127886, + -0.574054,0.808769,-0.127886,-0.574054,0.808769,-0.127886,-0.574054,0.808769,-0.127886,0.567922,-0.810889,0.141153, + 0.567922,-0.810889,0.141153,0.567922,-0.810889,0.141153,0.567922,-0.810889,0.141153,-0.744275,-0.563484,-0.358524, + -0.744275,-0.563484,-0.358524,-0.744275,-0.563484,-0.358524,-0.744275,-0.563484,-0.358524,0.725162,0.538244,0.429456, + 0.725162,0.538244,0.429456,0.725162,0.538244,0.429456,0.725162,0.538244,0.429456,-0.727280,-0.538086,-0.426060, + -0.727280,-0.538086,-0.426060,-0.727280,-0.538086,-0.426060,-0.727280,-0.538086,-0.426060,-0.825475,-0.558590,-0.081041, + -0.825475,-0.558590,-0.081041,-0.825475,-0.558590,-0.081041,-0.825475,-0.558590,-0.081041,0.825105,0.558805,0.083300, + 0.825105,0.558805,0.083300,0.825105,0.558805,0.083300,0.825105,0.558805,0.083300,0.595187,-0.803586,-0.001188, + 0.595187,-0.803586,-0.001188,0.595187,-0.803586,-0.001188,0.595187,-0.803586,-0.001188,-0.595528,0.803330,0.002660, + -0.595528,0.803330,0.002660,-0.595528,0.803330,0.002660,-0.595528,0.803330,0.002660,-0.818052,-0.519088,-0.247666, + -0.818052,-0.519088,-0.247666,-0.818052,-0.519088,-0.247666,-0.818052,-0.519088,-0.247666,0.813358,0.520906,0.259049, + 0.813358,0.520906,0.259049,0.813358,0.520906,0.259049,0.813358,0.520906,0.259049,0.537671,-0.818455,0.202587, + 0.537671,-0.818455,0.202587,0.537671,-0.818455,0.202587,0.537671,-0.818455,0.202587,-0.544734,0.817083,-0.188786, + -0.544734,0.817083,-0.188786,-0.544734,0.817083,-0.188786,-0.544734,0.817083,-0.188786,-0.637453,0.091547,0.765031, + -0.637453,0.091547,0.765031,-0.637453,0.091547,0.765031,-0.637453,0.091547,0.765031,-0.328556,-0.592844,0.735246, + -0.328556,-0.592844,0.735246,-0.328556,-0.592844,0.735246,-0.328556,-0.592844,0.735246,-0.826361,-0.481441,-0.292133, + -0.826361,-0.481441,-0.292133,-0.826361,-0.481441,-0.292133,-0.826361,-0.481441,-0.292133,0.824837,0.475644,0.305626, + 0.824837,0.475644,0.305626,0.824837,0.475644,0.305626,0.824837,0.475644,0.305626,-0.525596,0.798328,0.293976, + -0.525596,0.798328,0.293976,-0.525596,0.798328,0.293976,-0.525596,0.798328,0.293976,0.524446,-0.800292,-0.290671, + 0.524446,-0.800292,-0.290671,0.524446,-0.800292,-0.290671,0.524446,-0.800292,-0.290671,0.426866,-0.894140,0.135274, + 0.426866,-0.894140,0.135274,0.426866,-0.894140,0.135274,0.426866,-0.894140,0.135274,-0.427857,0.894019,-0.132926, + -0.427857,0.894019,-0.132926,-0.427857,0.894019,-0.132926,-0.427857,0.894019,-0.132926,0.848646,0.503726,0.161431, + 0.848646,0.503726,0.161431,0.848646,0.503726,0.161431,0.848646,0.503726,0.161431,-0.848711,-0.503913,-0.160506, + -0.848711,-0.503913,-0.160506,-0.848711,-0.503913,-0.160506,-0.848711,-0.503913,-0.160506,0.439201,-0.883774,0.161389, + 0.439201,-0.883774,0.161389,0.439201,-0.883774,0.161389,0.439201,-0.883774,0.161389,-0.439149,0.883739,-0.161720, + -0.439149,0.883739,-0.161720,-0.439149,0.883739,-0.161720,-0.439149,0.883739,-0.161720,-0.861100,-0.456906,-0.223031, + -0.861100,-0.456906,-0.223031,-0.861100,-0.456906,-0.223031,-0.861100,-0.456906,-0.223031,0.863989,0.457013,0.211335, + 0.863989,0.457013,0.211335,0.863989,0.457013,0.211335,0.863989,0.457013,0.211335,0.908028,0.407410,0.097485, + 0.908028,0.407410,0.097485,0.908028,0.407410,0.097485,0.908028,0.407410,0.097485,-0.908421,-0.407469,-0.093493, + -0.908421,-0.407469,-0.093493,-0.908421,-0.407469,-0.093493,-0.908421,-0.407469,-0.093493,-0.408053,0.878448,-0.248642, + -0.408053,0.878448,-0.248642,-0.408053,0.878448,-0.248642,-0.408053,0.878448,-0.248642,0.405216,-0.875616,0.262863, + 0.405216,-0.875616,0.262863,0.405216,-0.875616,0.262863,0.405216,-0.875616,0.262863,0.026067,-0.079520,0.996492, + 0.026067,-0.079520,0.996492,0.026067,-0.079520,0.996492,0.026067,-0.079520,0.996492,0.114795,-0.080154,0.990150, + 0.114795,-0.080154,0.990150,0.114795,-0.080154,0.990150,0.114795,-0.080154,0.990150,0.428482,-0.875084,0.225013, + 0.428482,-0.875084,0.225013,0.428482,-0.875084,0.225013,0.428482,-0.875084,0.225013,-0.430071,0.877886,-0.210606, + -0.430071,0.877886,-0.210606,-0.430071,0.877886,-0.210606,-0.430071,0.877886,-0.210606,-0.912447,-0.409001,-0.012611, + -0.912447,-0.409001,-0.012611,-0.912447,-0.409001,-0.012611,-0.912447,-0.409001,-0.012611,0.912390,0.408984,0.016618, + 0.912390,0.408984,0.016618,0.912390,0.408984,0.016618,0.912390,0.408984,0.016618,0.882056,0.458783,0.107215, + 0.882056,0.458783,0.107215,0.882056,0.458783,0.107215,0.882056,0.458783,0.107215,-0.880567,-0.458955,-0.118157, + -0.880567,-0.458955,-0.118157,-0.880567,-0.458955,-0.118157,-0.880567,-0.458955,-0.118157,-0.459557,0.887835,0.023594, + -0.459557,0.887835,0.023594,-0.459557,0.887835,0.023594,-0.459557,0.887835,0.023594,0.459527,-0.887859,-0.023246, + 0.459527,-0.887859,-0.023246,0.459527,-0.887859,-0.023246,0.459527,-0.887859,-0.023246,-0.429731,-0.243702,0.869448, + -0.429731,-0.243702,0.869448,-0.429731,-0.243702,0.869448,-0.429731,-0.243702,0.869448,0.640859,-0.767319,0.022822, + 0.640859,-0.767319,0.022822,0.640859,-0.767319,0.022822,0.640859,-0.767319,0.022822,0.426706,0.241147,-0.871648, + 0.426706,0.241147,-0.871648,0.426706,0.241147,-0.871648,0.426706,0.241147,-0.871648,-0.275917,-0.199554,0.940238, + -0.275917,-0.199554,0.940238,-0.275917,-0.199554,0.940238,-0.275917,-0.199554,0.940238,0.618864,-0.783754,-0.052317, + 0.618864,-0.783754,-0.052317,0.618864,-0.783754,-0.052317,0.618864,-0.783754,-0.052317,0.278731,0.201647,-0.938961, + 0.278731,0.201647,-0.938961,0.278731,0.201647,-0.938961,0.278731,0.201647,-0.938961,0.560109,-0.819553,0.120871, + 0.560109,-0.819553,0.120871,0.560109,-0.819553,0.120871,0.560109,-0.819553,0.120871,0.737460,0.579113,0.347534, + 0.737460,0.579113,0.347534,0.737460,0.579113,0.347534,0.737460,0.579113,0.347534,-0.739011,-0.580003,-0.342723, + -0.739011,-0.580003,-0.342723,-0.739011,-0.580003,-0.342723,-0.739011,-0.580003,-0.342723,0.594127,-0.787318,0.164754, + 0.594127,-0.787318,0.164754,0.594127,-0.787318,0.164754,0.594127,-0.787318,0.164754,0.711353,0.563192,0.420466, + 0.711353,0.563192,0.420466,0.711353,0.563192,0.420466,0.711353,0.563192,0.420466,-0.710107,-0.562435,-0.423574, + -0.710107,-0.562435,-0.423574,-0.710107,-0.562435,-0.423574,-0.710107,-0.562435,-0.423574,-0.576309,0.801402,-0.160070, + -0.576309,0.801402,-0.160070,-0.576309,0.801402,-0.160070,-0.576309,0.801402,-0.160070,-0.591939,0.803523,-0.062928, + -0.591939,0.803523,-0.062928,-0.591939,0.803523,-0.062928,-0.591939,0.803523,-0.062928,-0.551136,0.820632,-0.151038, + -0.551136,0.820632,-0.151038,-0.551136,0.820632,-0.151038,-0.551136,0.820632,-0.151038,-0.586805,0.808144,-0.050625, + -0.586805,0.808144,-0.050625,-0.586805,0.808144,-0.050625,-0.586805,0.808144,-0.050625,-0.307776,-0.051590,0.950059, + -0.307776,-0.051590,0.950059,-0.307776,-0.051590,0.950059,-0.307776,-0.051590,0.950059,0.587215,-0.807913,0.049536, + 0.587215,-0.807913,0.049536,0.587215,-0.807913,0.049536,0.587215,-0.807913,0.049536,0.319117,0.042090,-0.946780, + 0.319117,0.042090,-0.946780,0.319117,0.042090,-0.946780,0.319117,0.042090,-0.946780,-0.328271,-0.060621,0.942636, + -0.328271,-0.060621,0.942636,-0.328271,-0.060621,0.942636,-0.328271,-0.060621,0.942636,0.591756,-0.803568,0.064058, + 0.591756,-0.803568,0.064058,0.591756,-0.803568,0.064058,0.591756,-0.803568,0.064058,0.308563,0.068655,-0.948723, + 0.308563,0.068655,-0.948723,0.308563,0.068655,-0.948723,0.308563,0.068655,-0.948723,0.562734,-0.816305,0.130289, + 0.562734,-0.816305,0.130289,0.562734,-0.816305,0.130289,0.562734,-0.816305,0.130289,0.740972,0.571458,0.352698, + 0.740972,0.571458,0.352698,0.740972,0.571458,0.352698,0.740972,0.571458,0.352698,-0.741372,-0.566814,-0.359289, + -0.741372,-0.566814,-0.359289,-0.741372,-0.566814,-0.359289,-0.741372,-0.566814,-0.359289,0.580944,-0.802692,0.134866, + 0.580944,-0.802692,0.134866,0.580944,-0.802692,0.134866,0.580944,-0.802692,0.134866,0.677722,0.544467,0.494215, + 0.677722,0.544467,0.494215,0.677722,0.544467,0.494215,0.677722,0.544467,0.494215,-0.677424,-0.544335,-0.494769, + -0.677424,-0.544335,-0.494769,-0.677424,-0.544335,-0.494769,-0.677424,-0.544335,-0.494769,0.565843,-0.824320,0.017852, + 0.565843,-0.824320,0.017852,0.565843,-0.824320,0.017852,0.565843,-0.824320,0.017852,0.559674,-0.828705,-0.003648, + 0.559674,-0.828705,-0.003648,0.559674,-0.828705,-0.003648,-0.554209,0.832000,0.025072,-0.554209,0.832000,0.025072, + -0.554209,0.832000,0.025072,-0.749789,0.661116,-0.027217,-0.749789,0.661116,-0.027217,-0.749789,0.661116,-0.027217, + 0.678697,-0.734002,0.024728,0.678697,-0.734002,0.024728,0.678697,-0.734002,0.024728,0.678697,-0.734002,0.024728, + 0.646941,-0.762192,-0.023032,0.646941,-0.762192,-0.023032,0.646941,-0.762192,-0.023032,-0.717821,0.695334,-0.035264, + -0.717821,0.695334,-0.035264,-0.717821,0.695334,-0.035264,-0.717821,0.695334,-0.035264,0.653265,0.689759,0.312213, + 0.653265,0.689759,0.312213,0.653265,0.689759,0.312213,-0.588369,0.778254,-0.219414,-0.588369,0.778254,-0.219414, + -0.588369,0.778254,-0.219414,0.750880,0.558158,0.353042,0.750880,0.558158,0.353042,0.750880,0.558158,0.353042, + -0.514884,0.837076,-0.184930,-0.514884,0.837076,-0.184930,-0.514884,0.837076,-0.184930,-0.752008,-0.558365,-0.350303, + -0.752008,-0.558365,-0.350303,-0.752008,-0.558365,-0.350303,0.446478,-0.881781,0.152051,0.446478,-0.881781,0.152051, + 0.446478,-0.881781,0.152051,0.522966,-0.828330,0.200938,0.522966,-0.828330,0.200938,0.522966,-0.828330,0.200938, + 0.566768,-0.814815,0.121862,0.566768,-0.814815,0.121862,0.566768,-0.814815,0.121862,0.566768,-0.814815,0.121862, + 0.501145,-0.838638,0.213400,0.501145,-0.838638,0.213400,0.501145,-0.838638,0.213400,-0.496852,0.770232,-0.399852, + -0.496852,0.770232,-0.399852,-0.496852,0.770232,-0.399852,-0.543338,0.833972,-0.096299,-0.543338,0.833972,-0.096299, + -0.543338,0.833972,-0.096299,-0.543338,0.833972,-0.096299,-0.496461,0.829673,-0.255282,-0.496461,0.829673,-0.255282, + -0.496461,0.829673,-0.255282,0.564291,-0.824905,0.033268,0.564291,-0.824905,0.033268,0.564291,-0.824905,0.033268, + 0.564291,-0.824905,0.033268,-0.514254,0.840379,-0.171189,-0.514254,0.840379,-0.171189,-0.514254,0.840379,-0.171189, + -0.514254,0.840379,-0.171189,-0.483129,0.833102,-0.269308,-0.483129,0.833102,-0.269308,-0.483129,0.833102,-0.269308, + -0.483129,0.833102,-0.269308,-0.516736,0.830210,-0.209131,-0.516736,0.830210,-0.209131,-0.516736,0.830210,-0.209131, + -0.516736,0.830210,-0.209131,-0.563638,0.825506,-0.029194,-0.563638,0.825506,-0.029194,-0.563638,0.825506,-0.029194, + -0.563638,0.825506,-0.029194,0.528359,-0.825825,0.197102,0.528359,-0.825825,0.197102,0.528359,-0.825825,0.197102, + 0.524145,-0.827435,0.201551,0.524145,-0.827435,0.201551,0.524145,-0.827435,0.201551,0.524145,-0.827435,0.201551, + -0.560345,0.827514,-0.035129,-0.560345,0.827514,-0.035129,-0.560345,0.827514,-0.035129,-0.899789,-0.246634,-0.359932, + -0.899789,-0.246634,-0.359932,-0.899789,-0.246634,-0.359932,-0.899789,-0.246634,-0.359932,0.250933,0.208294,-0.945329, + 0.250933,0.208294,-0.945329,0.250933,0.208294,-0.945329,0.250933,0.208294,-0.945329,0.532380,-0.824266,0.192762, + 0.532380,-0.824266,0.192762,0.532380,-0.824266,0.192762,0.532380,-0.824266,0.192762,-0.730541,0.400591,0.553025, + -0.730541,0.400591,0.553025,-0.730541,0.400591,0.553025,-0.730541,0.400591,0.553025,0.823477,-0.467937,0.320812, + 0.823477,-0.467937,0.320812,0.823477,-0.467937,0.320812,0.823477,-0.467937,0.320812,-0.773193,-0.562936,-0.292022, + -0.773193,-0.562936,-0.292022,-0.773193,-0.562936,-0.292022,-0.773193,-0.562936,-0.292022,0.587827,-0.808982,0.002814, + 0.587827,-0.808982,0.002814,0.587827,-0.808982,0.002814,-0.250444,-0.021044,0.967902,-0.250444,-0.021044,0.967902, + -0.250444,-0.021044,0.967902,-0.250444,-0.021044,0.967902,0.250445,0.021042,-0.967902,0.250445,0.021042,-0.967902, + 0.250445,0.021042,-0.967902,0.250445,0.021042,-0.967902,-0.587466,0.809234,-0.004981,-0.587466,0.809234,-0.004981, + -0.587466,0.809234,-0.004981,0.794522,0.566791,0.217905,0.794522,0.566791,0.217905,0.794522,0.566791,0.217905, + 0.794522,0.566791,0.217905,-0.554783,0.831731,-0.020933,-0.554783,0.831731,-0.020933,-0.554783,0.831731,-0.020933, + -0.554783,0.831731,-0.020933,0.550238,-0.823081,0.140627,0.550238,-0.823081,0.140627,0.550238,-0.823081,0.140627, + 0.550515,-0.822727,0.141612,0.550515,-0.822727,0.141612,0.550515,-0.822727,0.141612,-0.550671,0.822707,-0.141124, + -0.550671,0.822707,-0.141124,-0.550671,0.822707,-0.141124,-0.521480,0.825589,-0.215549,-0.521480,0.825589,-0.215549, + -0.521480,0.825589,-0.215549,-0.550968,0.822320,-0.142212,-0.550968,0.822320,-0.142212,-0.550968,0.822320,-0.142212, + 0.443982,-0.823626,0.352875,0.443982,-0.823626,0.352875,0.443982,-0.823626,0.352875,0.443982,-0.823626,0.352875, + 0.700827,0.544999,0.460237,0.700827,0.544999,0.460237,0.700827,0.544999,0.460237,-0.702786,-0.542111,-0.460660, + -0.702786,-0.542111,-0.460660,-0.702786,-0.542111,-0.460660,-0.530593,0.107276,0.840811,-0.530593,0.107276,0.840811, + -0.530593,0.107276,0.840811,0.506476,-0.118965,-0.854008,0.506476,-0.118965,-0.854008,0.506476,-0.118965,-0.854008, + -0.458454,0.815525,-0.353184,-0.458454,0.815525,-0.353184,-0.458454,0.815525,-0.353184,-0.458454,0.815525,-0.353184, + 0.458463,-0.815544,0.353130,0.458463,-0.815544,0.353130,0.458463,-0.815544,0.353130,0.458463,-0.815544,0.353130, + 0.720380,0.557105,0.413142,0.720380,0.557105,0.413142,0.720380,0.557105,0.413142,-0.719982,-0.557166,-0.413754, + -0.719982,-0.557166,-0.413754,-0.719982,-0.557166,-0.413754,-0.507110,0.118362,0.853715,-0.507110,0.118362,0.853715, + -0.507110,0.118362,0.853715,-0.531587,0.844462,-0.065562,-0.531587,0.844462,-0.065562,-0.531587,0.844462,-0.065562, + -0.531587,0.844462,-0.065562,0.531592,-0.844459,0.065561,0.531592,-0.844459,0.065561,0.531592,-0.844459,0.065561, + 0.531592,-0.844459,0.065561,0.344660,-0.235859,-0.908614,0.344660,-0.235859,-0.908614,0.344660,-0.235859,-0.908614, + -0.525252,0.819740,-0.228335,-0.525252,0.819740,-0.228335,-0.525252,0.819740,-0.228335,-0.525252,0.819740,-0.228335, + 0.525194,-0.819697,0.228621,0.525194,-0.819697,0.228621,0.525194,-0.819697,0.228621,0.525194,-0.819697,0.228621, + 0.785131,0.573237,0.234451,0.785131,0.573237,0.234451,0.785131,0.573237,0.234451,-0.785269,-0.573256,-0.233943, + -0.785269,-0.573256,-0.233943,-0.785269,-0.573256,-0.233943,-0.179762,-0.024184,0.983413,-0.179762,-0.024184,0.983413, + -0.179762,-0.024184,0.983413,-0.312897,0.125785,0.941421,-0.312897,0.125785,0.941421,-0.312897,0.125785,0.941421, + -0.312897,0.125785,0.941421,-0.407708,0.091681,0.908498,-0.407708,0.091681,0.908498,-0.407708,0.091681,0.908498, + -0.407708,0.091681,0.908498,-0.217355,0.002430,0.976090,-0.217355,0.002430,0.976090,-0.217355,0.002430,0.976090, + -0.217355,0.002430,0.976090,-0.302818,-0.058746,0.951236,-0.302818,-0.058746,0.951236,-0.302818,-0.058746,0.951236, + -0.302818,-0.058746,0.951236,-0.233865,-0.009246,0.972225,-0.233865,-0.009246,0.972225,-0.233865,-0.009246,0.972225, + -0.233865,-0.009246,0.972225,-0.282368,-0.043951,0.958299,-0.282368,-0.043951,0.958299,-0.282368,-0.043951,0.958299, + -0.282368,-0.043951,0.958299,-0.552042,0.824116,-0.126817,-0.552042,0.824116,-0.126817,-0.552042,0.824116,-0.126817, + -0.552042,0.824116,-0.126817,-0.553413,0.823140,-0.127181,-0.553413,0.823140,-0.127181,-0.553413,0.823140,-0.127181, + -0.553413,0.823140,-0.127181,-0.553186,0.823591,-0.125235,-0.553186,0.823591,-0.125235,-0.553186,0.823591,-0.125235, + -0.553186,0.823591,-0.125235,-0.218511,-0.067949,0.973466,-0.218511,-0.067949,0.973466,-0.218511,-0.067949,0.973466, + -0.218511,-0.067949,0.973466,-0.715836,-0.680053,0.158450,-0.715836,-0.680053,0.158450,-0.715836,-0.680053,0.158450, + -0.715836,-0.680053,0.158450,-0.398778,-0.913670,-0.078632,-0.398778,-0.913670,-0.078632,-0.398778,-0.913670,-0.078632, + -0.398778,-0.913670,-0.078632,-0.444179,-0.875220,0.191558,-0.444179,-0.875220,0.191558,-0.444179,-0.875220,0.191558, + -0.444179,-0.875220,0.191558,0.759271,-0.650711,-0.009105,0.759271,-0.650711,-0.009105,0.759271,-0.650711,-0.009105, + 0.759271,-0.650711,-0.009105,-0.991122,-0.006361,-0.132803,-0.991122,-0.006361,-0.132803,-0.991122,-0.006361,-0.132803, + -0.991122,-0.006361,-0.132803,-0.806642,-0.567730,-0.164353,-0.806642,-0.567730,-0.164353,-0.806642,-0.567730,-0.164353, + -0.806642,-0.567730,-0.164353,0.773243,0.562937,0.291885,0.773243,0.562937,0.291885,0.773243,0.562937,0.291885, + 0.773243,0.562937,0.291885,0.806633,0.567745,0.164346,0.806633,0.567745,0.164346,0.806633,0.567745,0.164346, + 0.806633,0.567745,0.164346,-0.786549,-0.565893,-0.247198,-0.786549,-0.565893,-0.247198,-0.786549,-0.565893,-0.247198, + -0.786549,-0.565893,-0.247198,-0.531813,0.824182,-0.194678,-0.531813,0.824182,-0.194678,-0.531813,0.824182,-0.194678, + -0.531813,0.824182,-0.194678,-0.532516,0.825742,-0.185947,-0.532516,0.825742,-0.185947,-0.532516,0.825742,-0.185947, + -0.532516,0.825742,-0.185947,-0.538986,0.823538,-0.176857,-0.538986,0.823538,-0.176857,-0.538986,0.823538,-0.176857, + -0.538986,0.823538,-0.176857,0.538991,-0.823534,0.176863,0.538991,-0.823534,0.176863,0.538991,-0.823534,0.176863, + 0.538991,-0.823534,0.176863,0.531827,-0.824174,0.194672,0.531827,-0.824174,0.194672,0.531827,-0.824174,0.194672, + 0.531827,-0.824174,0.194672,0.532500,-0.825752,0.185948,0.532500,-0.825752,0.185948,0.532500,-0.825752,0.185948, + 0.532500,-0.825752,0.185948,-0.197969,0.006976,0.980183,-0.197969,0.006976,0.980183,-0.197969,0.006976,0.980183, + -0.485552,-0.392263,0.781261,-0.485552,-0.392263,0.781261,-0.485552,-0.392263,0.781261,-0.558014,-0.116780,0.821574, + -0.558014,-0.116780,0.821574,-0.558014,-0.116780,0.821574,-0.682650,-0.110139,0.722397,-0.682650,-0.110139,0.722397, + -0.682650,-0.110139,0.722397,-0.604314,-0.015981,0.796586,-0.604314,-0.015981,0.796586,-0.604314,-0.015981,0.796586, + -0.365110,0.243892,0.898450,-0.365110,0.243892,0.898450,-0.365110,0.243892,0.898450,0.456763,-0.857579,0.236485, + 0.456763,-0.857579,0.236485,0.456763,-0.857579,0.236485,0.456763,-0.857579,0.236485,0.499134,0.226843,-0.836306, + 0.499134,0.226843,-0.836306,0.499134,0.226843,-0.836306,-0.206506,-0.014519,0.978338,-0.206506,-0.014519,0.978338, + -0.206506,-0.014519,0.978338,-0.206506,-0.014519,0.978338,-0.630281,-0.009435,0.776310,-0.630281,-0.009435,0.776310, + -0.630281,-0.009435,0.776310,-0.630281,-0.009435,0.776310,-0.141494,-0.560144,0.816222,-0.141494,-0.560144,0.816222, + -0.141494,-0.560144,0.816222,-0.141494,-0.560144,0.816222,0.193703,-0.044604,0.980046,0.193703,-0.044604,0.980046, + 0.193703,-0.044604,0.980046,0.193703,-0.044604,0.980046,-0.641728,0.049206,0.765352,-0.641728,0.049206,0.765352, + -0.641728,0.049206,0.765352,-0.641728,0.049206,0.765352,0.044279,-0.698674,0.714069,0.044279,-0.698674,0.714069, + 0.044279,-0.698674,0.714069,0.044279,-0.698674,0.714069,-0.550887,0.825224,-0.124616,-0.550887,0.825224,-0.124616, + -0.550887,0.825224,-0.124616,-0.550887,0.825224,-0.124616,0.595231,0.775995,0.208640,0.595231,0.775995,0.208640, + 0.595231,0.775995,0.208640,0.595231,0.775995,0.208640,-0.443390,0.154173,0.882970,-0.443390,0.154173,0.882970, + -0.443390,0.154173,0.882970,-0.443390,0.154173,0.882970,-0.737254,0.091932,0.669331,-0.737254,0.091932,0.669331, + -0.737254,0.091932,0.669331,-0.737254,0.091932,0.669331,-0.851747,0.463748,-0.243855,-0.851747,0.463748,-0.243855, + -0.851747,0.463748,-0.243855,-0.851747,0.463748,-0.243855,-0.552852,0.823839,-0.125077,-0.552852,0.823839,-0.125077, + -0.552852,0.823839,-0.125077,-0.552852,0.823839,-0.125077,-0.549831,0.829740,-0.096004,-0.549831,0.829740,-0.096004, + -0.549831,0.829740,-0.096004,-0.549831,0.829740,-0.096004,0.595129,0.772937,0.219979,0.595129,0.772937,0.219979, + 0.595129,0.772937,0.219979,0.595129,0.772937,0.219979,-0.866774,0.461724,-0.188450,-0.866774,0.461724,-0.188450, + -0.866774,0.461724,-0.188450,-0.866774,0.461724,-0.188450,-0.667071,-0.707165,-0.234379,-0.667071,-0.707165,-0.234379, + -0.667071,-0.707165,-0.234379,-0.667071,-0.707165,-0.234379,0.946989,-0.148151,0.285066,0.946989,-0.148151,0.285066, + 0.946989,-0.148151,0.285066,0.946989,-0.148151,0.285066,-0.589246,-0.771629,-0.239537,-0.589246,-0.771629,-0.239537, + -0.589246,-0.771629,-0.239537,-0.589246,-0.771629,-0.239537,-0.666484,0.725239,-0.172707,-0.666484,0.725239,-0.172707, + -0.666484,0.725239,-0.172707,-0.666484,0.725239,-0.172707,0.867414,0.408113,0.284668,0.867414,0.408113,0.284668, + 0.867414,0.408113,0.284668,0.867414,0.408113,0.284668,-0.770903,-0.571901,-0.280426,-0.770903,-0.571901,-0.280426, + -0.770903,-0.571901,-0.280426,-0.770903,-0.571901,-0.280426,0.868077,-0.461424,0.183110,0.868077,-0.461424,0.183110, + 0.868077,-0.461424,0.183110,0.868077,-0.461424,0.183110,0.167489,0.983386,-0.069997,0.167489,0.983386,-0.069997, + 0.167489,0.983386,-0.069997,0.167489,0.983386,-0.069997,0.101544,0.993184,0.057227,0.101544,0.993184,0.057227, + 0.101544,0.993184,0.057227,0.101544,0.993184,0.057227,0.100112,0.993329,0.057224,0.100112,0.993329,0.057224, + 0.100112,0.993329,0.057224,0.100112,0.993329,0.057224,0.554403,-0.823433,0.120814,0.554403,-0.823433,0.120814, + 0.554403,-0.823433,0.120814,0.553249,-0.823947,0.122586,0.553249,-0.823947,0.122586,0.553249,-0.823947,0.122586, + 0.553249,-0.823947,0.122586,-0.553183,0.823592,-0.125237,-0.553183,0.823592,-0.125237,-0.553183,0.823592,-0.125237, + -0.553183,0.823592,-0.125237,-0.553183,0.823593,-0.125232,-0.553183,0.823593,-0.125232,-0.553183,0.823593,-0.125232, + -0.553183,0.823593,-0.125232,-0.553184,0.823593,-0.125231,-0.553184,0.823593,-0.125231,-0.553184,0.823593,-0.125231, + -0.553184,0.823593,-0.125231,-0.553188,0.823589,-0.125239,-0.553188,0.823589,-0.125239,-0.553188,0.823589,-0.125239, + 0.798030,0.567035,0.204008,0.798030,0.567035,0.204008,0.798030,0.567035,0.204008,0.798030,0.567035,0.204008, + 0.552412,-0.825376,0.116601,0.552412,-0.825376,0.116601,0.552412,-0.825376,0.116601,0.552412,-0.825376,0.116601, + -0.786197,-0.570756,-0.236921,-0.786197,-0.570756,-0.236921,-0.786197,-0.570756,-0.236921,-0.786197,-0.570756,-0.236921, + -0.553183,0.823593,-0.125230,-0.553183,0.823593,-0.125230,-0.553183,0.823593,-0.125230,-0.553183,0.823593,-0.125230, + 0.550670,-0.825511,0.123672,0.550670,-0.825511,0.123672,0.550670,-0.825511,0.123672,0.550670,-0.825511,0.123672, + -0.553183,0.823593,-0.125232,-0.553183,0.823593,-0.125232,-0.553183,0.823593,-0.125232,-0.553183,0.823593,-0.125232, + -0.553185,0.823591,-0.125232,-0.553185,0.823591,-0.125232,-0.553185,0.823591,-0.125232,-0.553185,0.823591,-0.125232, + -0.554344,0.823439,-0.121039,-0.554344,0.823439,-0.121039,-0.554344,0.823439,-0.121039,-0.553249,0.823938,-0.122645, + -0.553249,0.823938,-0.122645,-0.553249,0.823938,-0.122645,-0.553249,0.823938,-0.122645,0.553183,-0.823592,0.125234, + 0.553183,-0.823592,0.125234,0.553183,-0.823592,0.125234,0.553183,-0.823592,0.125234,0.553184,-0.823592,0.125233, + 0.553184,-0.823592,0.125233,0.553184,-0.823592,0.125233,0.553184,-0.823592,0.125233,0.553183,-0.823592,0.125235, + 0.553183,-0.823592,0.125235,0.553183,-0.823592,0.125235,0.553183,-0.823592,0.125235,0.553187,-0.823591,0.125232, + 0.553187,-0.823591,0.125232,0.553187,-0.823591,0.125232,-0.797845,-0.567026,-0.204758,-0.797845,-0.567026,-0.204758, + -0.797845,-0.567026,-0.204758,-0.797845,-0.567026,-0.204758,-0.552327,0.825376,-0.117003,-0.552327,0.825376,-0.117003, + -0.552327,0.825376,-0.117003,-0.552327,0.825376,-0.117003,0.786481,0.570792,0.235892,0.786481,0.570792,0.235892, + 0.786481,0.570792,0.235892,0.786481,0.570792,0.235892,0.553185,-0.823592,0.125233,0.553185,-0.823592,0.125233, + 0.553185,-0.823592,0.125233,0.553185,-0.823592,0.125233,-0.550438,0.825668,-0.123654,-0.550438,0.825668,-0.123654, + -0.550438,0.825668,-0.123654,-0.550438,0.825668,-0.123654,0.553185,-0.823592,0.125232,0.553185,-0.823592,0.125232, + 0.553185,-0.823592,0.125232,0.553185,-0.823592,0.125232,0.553186,-0.823591,0.125233,0.553186,-0.823591,0.125233, + 0.553186,-0.823591,0.125233,0.553186,-0.823591,0.125233,0.378642,-0.873100,0.307124,0.378642,-0.873100,0.307124, + 0.378642,-0.873100,0.307124,-0.301567,-0.057845,0.951689,-0.301567,-0.057845,0.951689,-0.301567,-0.057845,0.951689, + -0.301567,-0.057845,0.951689,-0.190203,0.021485,0.981510,-0.190203,0.021485,0.981510,-0.190203,0.021485,0.981510, + -0.190203,0.021485,0.981510,0.374630,-0.873034,0.312190,0.374630,-0.873034,0.312190,0.374630,-0.873034,0.312190, + 0.333465,-0.895485,0.294802,0.333465,-0.895485,0.294802,0.333465,-0.895485,0.294802,-0.461554,0.880714,-0.106353, + -0.461554,0.880714,-0.106353,-0.461554,0.880714,-0.106353,-0.461554,0.880714,-0.106353,0.267177,-0.910442,0.315771, + 0.267177,-0.910442,0.315771,0.267177,-0.910442,0.315771,-0.925719,-0.376358,-0.037406,-0.925719,-0.376358,-0.037406, + -0.925719,-0.376358,-0.037406,0.461549,-0.880716,0.106356,0.461549,-0.880716,0.106356,0.461549,-0.880716,0.106356, + 0.461549,-0.880716,0.106356,0.436898,-0.782530,0.443584,0.436898,-0.782530,0.443584,0.436898,-0.782530,0.443584, + 0.362035,-0.880053,0.307306,0.362035,-0.880053,0.307306,0.362035,-0.880053,0.307306,0.151204,-0.516583,0.842781, + 0.151204,-0.516583,0.842781,0.151204,-0.516583,0.842781,-0.866234,-0.466389,-0.179220,-0.866234,-0.466389,-0.179220, + -0.866234,-0.466389,-0.179220,-0.866234,-0.466389,-0.179220,0.866232,0.466393,0.179220,0.866232,0.466393,0.179220, + 0.866232,0.466393,0.179220,0.866232,0.466393,0.179220,0.374391,-0.872521,0.313908,0.374391,-0.872521,0.313908, + 0.374391,-0.872521,0.313908,0.674637,-0.259352,0.691088,0.674637,-0.259352,0.691088,0.674637,-0.259352,0.691088, + 0.374473,-0.873438,0.311250,0.374473,-0.873438,0.311250,0.374473,-0.873438,0.311250,0.364911,-0.879388,0.305806, + 0.364911,-0.879388,0.305806,0.364911,-0.879388,0.305806,-0.142955,0.989100,0.035292,-0.142955,0.989100,0.035292, + -0.142955,0.989100,0.035292,-0.142955,0.989100,0.035292,-0.513081,-0.550403,-0.658638,-0.513081,-0.550403,-0.658638, + -0.513081,-0.550403,-0.658638,-0.513081,-0.550403,-0.658638,-0.346048,-0.220859,0.911851,-0.346048,-0.220859,0.911851, + -0.346048,-0.220859,0.911851,0.637662,-0.491049,0.593513,0.637662,-0.491049,0.593513,0.637662,-0.491049,0.593513, + 0.637662,-0.491049,0.593513,0.399466,-0.848295,0.347595,0.399466,-0.848295,0.347595,0.399466,-0.848295,0.347595, + 0.462384,-0.756772,0.462057,0.462384,-0.756772,0.462057,0.462384,-0.756772,0.462057,0.988007,-0.037415,0.149807, + 0.988007,-0.037415,0.149807,0.988007,-0.037415,0.149807,0.988007,-0.037415,0.149807,0.052556,-0.872575,-0.485645, + 0.052556,-0.872575,-0.485645,0.052556,-0.872575,-0.485645,0.052556,-0.872575,-0.485645,-0.988007,0.037415,-0.149807, + -0.988007,0.037415,-0.149807,-0.988007,0.037415,-0.149807,-0.988007,0.037415,-0.149807,-0.068832,-0.558186,0.826855, + -0.068832,-0.558186,0.826855,-0.068832,-0.558186,0.826855,-0.068832,-0.558186,0.826855,-0.067370,-0.459692,0.885519, + -0.067370,-0.459692,0.885519,-0.067370,-0.459692,0.885519,-0.067370,-0.459692,0.885519,-0.767948,-0.640506,-0.002763, + -0.767948,-0.640506,-0.002763,-0.767948,-0.640506,-0.002763,-0.767948,-0.640506,-0.002763,0.770795,0.636854,0.017100, + 0.770795,0.636854,0.017100,0.770795,0.636854,0.017100,0.770795,0.636854,0.017100,-0.583993,0.787235,0.198023, + -0.583993,0.787235,0.198023,-0.583993,0.787235,0.198023,-0.583993,0.787235,0.198023,0.586462,-0.768893,-0.254688, + 0.586462,-0.768893,-0.254688,0.586462,-0.768893,-0.254688,0.586462,-0.768893,-0.254688,0.551556,-0.833903,0.019772, + 0.551556,-0.833903,0.019772,0.551556,-0.833903,0.019772,0.551556,-0.833903,0.019772,-0.551847,0.833740,-0.018486, + -0.551847,0.833740,-0.018486,-0.551847,0.833740,-0.018486,-0.551847,0.833740,-0.018486,0.811844,0.529816,0.245365, + 0.811844,0.529816,0.245365,0.811844,0.529816,0.245365,0.811844,0.529816,0.245365,-0.811818,-0.529766,-0.245559, + -0.811818,-0.529766,-0.245559,-0.811818,-0.529766,-0.245559,-0.811818,-0.529766,-0.245559,0.488714,-0.871938,-0.029698, + 0.488714,-0.871938,-0.029698,0.488714,-0.871938,-0.029698,0.488714,-0.871938,-0.029698,-0.485628,0.873996,0.017206, + -0.485628,0.873996,0.017206,-0.485628,0.873996,0.017206,-0.485628,0.873996,0.017206,-0.843077,-0.476561,-0.249221, + -0.843077,-0.476561,-0.249221,-0.843077,-0.476561,-0.249221,-0.843077,-0.476561,-0.249221,0.843060,0.476541,0.249316, + 0.843060,0.476541,0.249316,0.843060,0.476541,0.249316,0.843060,0.476541,0.249316,0.764336,0.565329,0.310150, + 0.764336,0.565329,0.310150,0.764336,0.565329,0.310150,0.764336,0.565329,0.310150,0.553189,-0.823588,0.125239, + 0.553189,-0.823588,0.125239,0.553189,-0.823588,0.125239,0.553189,-0.823588,0.125239,-0.720934,-0.610057,-0.328764, + -0.720934,-0.610057,-0.328764,-0.720934,-0.610057,-0.328764,-0.720934,-0.610057,-0.328764,-0.588804,0.808263,0.004442, + -0.588804,0.808263,0.004442,-0.588804,0.808263,0.004442,-0.588804,0.808263,0.004442,0.346757,0.044905,-0.936879, + 0.346757,0.044905,-0.936879,0.346757,0.044905,-0.936879,0.346757,0.044905,-0.936879,-0.344570,-0.048241,0.937520, + -0.344570,-0.048241,0.937520,-0.344570,-0.048241,0.937520,-0.344570,-0.048241,0.937520,0.730454,0.597951,0.329987, + 0.730454,0.597951,0.329987,0.730454,0.597951,0.329987,0.730454,0.597951,0.329987,-0.766524,-0.562088,-0.310642, + -0.766524,-0.562088,-0.310642,-0.766524,-0.562088,-0.310642,-0.766524,-0.562088,-0.310642,0.299609,0.083574,-0.950394, + 0.299609,0.083574,-0.950394,0.299609,0.083574,-0.950394,0.299609,0.083574,-0.950394,-0.299381,-0.083914,0.950437, + -0.299381,-0.083914,0.950437,-0.299381,-0.083914,0.950437,-0.299381,-0.083914,0.950437,0.769890,0.505422,0.389638, + 0.769890,0.505422,0.389638,0.769890,0.505422,0.389638,0.769890,0.505422,0.389638,0.553183,-0.823593,0.125229, + 0.553183,-0.823593,0.125229,0.553183,-0.823593,0.125229,0.553183,-0.823593,0.125229,-0.731863,-0.564182,-0.382197, + -0.731863,-0.564182,-0.382197,-0.731863,-0.564182,-0.382197,-0.731863,-0.564182,-0.382197,-0.726602,0.683373,-0.071065, + -0.726602,0.683373,-0.071065,-0.726602,0.683373,-0.071065,-0.726602,0.683373,-0.071065,0.200268,0.361970,-0.910423, + 0.200268,0.361970,-0.910423,0.200268,0.361970,-0.910423,0.200268,0.361970,-0.910423,-0.197911,-0.364695,0.909851, + -0.197911,-0.364695,0.909851,-0.197911,-0.364695,0.909851,-0.197911,-0.364695,0.909851,0.743829,0.547396,0.383505, + 0.743829,0.547396,0.383505,0.743829,0.547396,0.383505,0.743829,0.547396,0.383505,-0.771869,-0.502085,-0.390037, + -0.771869,-0.502085,-0.390037,-0.771869,-0.502085,-0.390037,-0.771869,-0.502085,-0.390037,0.415704,0.167352,-0.893971, + 0.415704,0.167352,-0.893971,0.415704,0.167352,-0.893971,0.415704,0.167352,-0.893971,-0.415592,-0.167484,0.893998, + -0.415592,-0.167484,0.893998,-0.415592,-0.167484,0.893998,-0.415592,-0.167484,0.893998,0.754026,0.579223,0.309750, + 0.754026,0.579223,0.309750,0.754026,0.579223,0.309750,0.754026,0.579223,0.309750,0.553179,-0.823594,0.125247, + 0.553179,-0.823594,0.125247,0.553179,-0.823594,0.125247,0.553179,-0.823594,0.125247,-0.777465,-0.545142,-0.313638, + -0.777465,-0.545142,-0.313638,-0.777465,-0.545142,-0.313638,-0.777465,-0.545142,-0.313638,-0.681589,0.730908,-0.034777, + -0.681589,0.730908,-0.034777,-0.681589,0.730908,-0.034777,-0.681589,0.730908,-0.034777,0.342232,0.040579,-0.938739, + 0.342232,0.040579,-0.938739,0.342232,0.040579,-0.938739,0.342232,0.040579,-0.938739,-0.340057,-0.043915,0.939379, + -0.340057,-0.043915,0.939379,-0.340057,-0.043915,0.939379,-0.340057,-0.043915,0.939379,0.770745,0.554985,0.312960, + 0.770745,0.554985,0.312960,0.770745,0.554985,0.312960,0.770745,0.554985,0.312960,-0.753026,-0.580652,-0.309508, + -0.753026,-0.580652,-0.309508,-0.753026,-0.580652,-0.309508,-0.753026,-0.580652,-0.309508,0.322825,0.095075,-0.941671, + 0.322825,0.095075,-0.941671,0.322825,0.095075,-0.941671,0.322825,0.095075,-0.941671,-0.322726,-0.095195,0.941693, + -0.322726,-0.095195,0.941693,-0.322726,-0.095195,0.941693,-0.322726,-0.095195,0.941693,-0.798349,-0.570143,-0.193845, + -0.798349,-0.570143,-0.193845,-0.798349,-0.570143,-0.193845,-0.798349,-0.570143,-0.193845,0.302574,0.099418,-0.947927, + 0.302574,0.099418,-0.947927,0.302574,0.099418,-0.947927,0.302574,0.099418,-0.947927,-0.299594,-0.097237,0.949099, + -0.299594,-0.097237,0.949099,-0.299594,-0.097237,0.949099,-0.299594,-0.097237,0.949099,-0.503991,0.861231,-0.065374, + -0.503991,0.861231,-0.065374,-0.503991,0.861231,-0.065374,-0.503991,0.861231,-0.065374,0.617906,-0.778796,0.108024, + 0.617906,-0.778796,0.108024,0.617906,-0.778796,0.108024,0.617906,-0.778796,0.108024,0.375699,0.149481,-0.914607, + 0.375699,0.149481,-0.914607,0.375699,0.149481,-0.914607,0.375699,0.149481,-0.914607,-0.376124,-0.149794,0.914381, + -0.376124,-0.149794,0.914381,-0.376124,-0.149794,0.914381,-0.376124,-0.149794,0.914381,0.761747,0.560932,0.324185, + 0.761747,0.560932,0.324185,0.761747,0.560932,0.324185,0.761747,0.560932,0.324185,-0.572815,0.814898,-0.088457, + -0.572815,0.814898,-0.088457,-0.572815,0.814898,-0.088457,-0.572815,0.814898,-0.088457,0.570691,-0.816522,0.087192, + 0.570691,-0.816522,0.087192,0.570691,-0.816522,0.087192,0.570691,-0.816522,0.087192,-0.798349,-0.570143,-0.193845, + -0.798349,-0.570143,-0.193845,-0.798349,-0.570143,-0.193845,-0.798349,-0.570143,-0.193845,0.313690,0.107584,-0.943411, + 0.313690,0.107584,-0.943411,0.313690,0.107584,-0.943411,0.313690,0.107584,-0.943411,-0.310734,-0.105413,0.944634, + -0.310734,-0.105413,0.944634,-0.310734,-0.105413,0.944634,-0.310734,-0.105413,0.944634,-0.566140,0.819843,-0.085695, + -0.566140,0.819843,-0.085695,-0.566140,0.819843,-0.085695,-0.566140,0.819843,-0.085695,0.569607,-0.817289,0.087099, + 0.569607,-0.817289,0.087099,0.569607,-0.817289,0.087099,0.569607,-0.817289,0.087099,0.358447,0.136592,-0.923503, + 0.358447,0.136592,-0.923503,0.358447,0.136592,-0.923503,0.358447,0.136592,-0.923503,-0.358734,-0.136804,0.923360, + -0.358734,-0.136804,0.923360,-0.358734,-0.136804,0.923360,-0.358734,-0.136804,0.923360,-0.965302,-0.145092,-0.217120, + -0.965302,-0.145092,-0.217120,-0.965302,-0.145092,-0.217120,-0.965302,-0.145092,-0.217120,-0.937553,-0.134650,-0.320725, + -0.937553,-0.134650,-0.320725,-0.937553,-0.134650,-0.320725,-0.937553,-0.134650,-0.320725,-0.151137,0.987905,0.034664, + -0.151137,0.987905,0.034664,-0.151137,0.987905,0.034664,-0.151137,0.987905,0.034664,0.099495,-0.993911,-0.047342, + 0.099495,-0.993911,-0.047342,0.099495,-0.993911,-0.047342,0.099495,-0.993911,-0.047342,0.099495,-0.993911,-0.047342, + 0.099495,-0.993911,-0.047342,0.099495,-0.993911,-0.047342,0.099495,-0.993911,-0.047342,-0.965362,-0.150639,-0.213035, + -0.965362,-0.150639,-0.213035,-0.965362,-0.150639,-0.213035,-0.965362,-0.150639,-0.213035,-0.151136,0.987905,0.034665, + -0.151136,0.987905,0.034665,-0.151136,0.987905,0.034665,-0.151136,0.987905,0.034665,-0.965363,-0.150631,-0.213035, + -0.965363,-0.150631,-0.213035,-0.965363,-0.150631,-0.213035,-0.965363,-0.150631,-0.213035,0.343137,0.936797,0.068323, + 0.343137,0.936797,0.068323,0.343137,0.936797,0.068323,0.343137,0.936797,0.068323,-0.219976,-0.123768,0.967622, + -0.219976,-0.123768,0.967622,-0.219976,-0.123768,0.967622,-0.219976,-0.123768,0.967622,-0.943134,-0.136818,-0.302951, + -0.943134,-0.136818,-0.302951,-0.943134,-0.136818,-0.302951,-0.943134,-0.136818,-0.302951,-0.184724,-0.060204,0.980945, + -0.184724,-0.060204,0.980945,-0.184724,-0.060204,0.980945,-0.184724,-0.060204,0.980945,-0.969575,-0.079839,-0.231409, + -0.969575,-0.079839,-0.231409,-0.969575,-0.079839,-0.231409,-0.969575,-0.079839,-0.231409,0.090722,-0.995238,-0.035646, + 0.090722,-0.995238,-0.035646,0.090722,-0.995238,-0.035646,0.090722,-0.995238,-0.035646,-0.091809,0.994982,0.039785, + -0.091809,0.994982,0.039785,-0.091809,0.994982,0.039785,-0.091809,0.994982,0.039785,-0.947554,-0.074926,-0.310688, + -0.947554,-0.074926,-0.310688,-0.947554,-0.074926,-0.310688,-0.947554,-0.074926,-0.310688,0.210794,-0.812507,-0.543506, + 0.210794,-0.812507,-0.543506,0.210794,-0.812507,-0.543506,0.210794,-0.812507,-0.543506,-0.209963,0.815414,0.539458, + -0.209963,0.815414,0.539458,-0.209963,0.815414,0.539458,-0.209963,0.815414,0.539458,-0.950173,-0.075527,-0.302433, + -0.950173,-0.075527,-0.302433,-0.950173,-0.075527,-0.302433,-0.950173,-0.075527,-0.302433,-0.034642,-0.911320,0.410238, + -0.034642,-0.911320,0.410238,-0.034642,-0.911320,0.410238,-0.034642,-0.911320,0.410238,0.036003,0.909233,-0.414728, + 0.036003,0.909233,-0.414728,0.036003,0.909233,-0.414728,0.036003,0.909233,-0.414728,-0.946115,-0.075096,-0.315003, + -0.946115,-0.075096,-0.315003,-0.946115,-0.075096,-0.315003,-0.946115,-0.075096,-0.315003,0.946114,0.075095,0.315005, + 0.946114,0.075095,0.315005,0.946114,0.075095,0.315005,0.946114,0.075095,0.315005,-0.341401,-0.057215,0.938175, + -0.341401,-0.057215,0.938175,-0.341401,-0.057215,0.938175,-0.341401,-0.057215,0.938175,0.337810,0.094604,-0.936448, + 0.337810,0.094604,-0.936448,0.337810,0.094604,-0.936448,0.337810,0.094604,-0.936448,0.086851,-0.995952,-0.023171, + 0.086851,-0.995952,-0.023171,0.086851,-0.995952,-0.023171,0.086851,-0.995952,-0.023171,-0.120479,0.985852,0.116533, + -0.120479,0.985852,0.116533,-0.120479,0.985852,0.116533,-0.120479,0.985852,0.116533,-0.940354,-0.079167,-0.330858, + -0.940354,-0.079167,-0.330858,-0.940354,-0.079167,-0.330858,-0.940354,-0.079167,-0.330858,0.940354,0.079173,0.330856, + 0.940354,0.079173,0.330856,0.940354,0.079173,0.330856,0.940354,0.079173,0.330856,0.352754,-0.010118,-0.935661, + 0.352754,-0.010118,-0.935661,0.352754,-0.010118,-0.935661,0.352754,-0.010118,-0.935661,-0.349809,-0.027389,0.936421, + -0.349809,-0.027389,0.936421,-0.349809,-0.027389,0.936421,-0.349809,-0.027389,0.936421,-0.069791,0.996635,-0.042994, + -0.069791,0.996635,-0.042994,-0.069791,0.996635,-0.042994,-0.069791,0.996635,-0.042994,0.104550,-0.993242,-0.050388, + 0.104550,-0.993242,-0.050388,0.104550,-0.993242,-0.050388,0.104550,-0.993242,-0.050388,-0.953147,-0.073968,-0.293327, + -0.953147,-0.073968,-0.293327,-0.953147,-0.073968,-0.293327,-0.953147,-0.073968,-0.293327,0.953146,0.073961,0.293330, + 0.953146,0.073961,0.293330,0.953146,0.073961,0.293330,0.953146,0.073961,0.293330,0.307346,0.076739,-0.948499, + 0.307346,0.076739,-0.948499,0.307346,0.076739,-0.948499,0.307346,0.076739,-0.948499,-0.303728,-0.114101,0.945902, + -0.303728,-0.114101,0.945902,-0.303728,-0.114101,0.945902,-0.303728,-0.114101,0.945902,-0.089440,0.994950,0.045548, + -0.089440,0.994950,0.045548,-0.089440,0.994950,0.045548,-0.089440,0.994950,0.045548,0.119648,-0.982928,-0.139771, + 0.119648,-0.982928,-0.139771,0.119648,-0.982928,-0.139771,0.119648,-0.982928,-0.139771,-0.950174,-0.075533,-0.302431, + -0.950174,-0.075533,-0.302431,-0.950174,-0.075533,-0.302431,-0.950174,-0.075533,-0.302431,0.210830,-0.812397,-0.543656, + 0.210830,-0.812397,-0.543656,0.210830,-0.812397,-0.543656,0.210830,-0.812397,-0.543656,-0.209985,0.815300,0.539622, + -0.209985,0.815300,0.539622,-0.209985,0.815300,0.539622,-0.209985,0.815300,0.539622,-0.951843,-0.075923,-0.297036, + -0.951843,-0.075923,-0.297036,-0.951843,-0.075923,-0.297036,-0.951843,-0.075923,-0.297036,-0.034145,-0.912075,0.408600, + -0.034145,-0.912075,0.408600,-0.034145,-0.912075,0.408600,-0.034145,-0.912075,0.408600,0.035514,0.909988,-0.413111, + 0.035514,0.909988,-0.413111,0.035514,0.909988,-0.413111,0.035514,0.909988,-0.413111,-0.965545,-0.145163,-0.215987, + -0.965545,-0.145163,-0.215987,-0.965545,-0.145163,-0.215987,-0.965545,-0.145163,-0.215987,0.094719,-0.995049,-0.030109, + 0.094719,-0.995049,-0.030109,0.094719,-0.995049,-0.030109,0.094719,-0.995049,-0.030109,0.091968,-0.994963,-0.039887, + 0.091968,-0.994963,-0.039887,0.091968,-0.994963,-0.039887,0.091968,-0.994963,-0.039887,-0.937056,-0.134459,-0.322251, + -0.937056,-0.134459,-0.322251,-0.937056,-0.134459,-0.322251,-0.937056,-0.134459,-0.322251,0.211654,-0.038219,0.976597, + 0.211654,-0.038219,0.976597,0.211654,-0.038219,0.976597,0.211654,-0.038219,0.976597,-0.962920,-0.074016,-0.259435, + -0.962920,-0.074016,-0.259435,-0.962920,-0.074016,-0.259435,-0.962920,-0.074016,-0.259435,0.220628,0.077177,-0.972300, + 0.220628,0.077177,-0.972300,0.220628,0.077177,-0.972300,0.220628,0.077177,-0.972300,0.565691,0.081869,-0.820544, + 0.565691,0.081869,-0.820544,0.565691,0.081869,-0.820544,0.565691,0.081869,-0.820544,-0.190942,-0.053429,0.980146, + -0.190942,-0.053429,0.980146,-0.190942,-0.053429,0.980146,-0.190942,-0.053429,0.980146,-0.962506,-0.078559,-0.259634, + -0.962506,-0.078559,-0.259634,-0.962506,-0.078559,-0.259634,-0.962506,-0.078559,-0.259634,-0.952599,-0.079053,-0.293777, + -0.952599,-0.079053,-0.293777,-0.952599,-0.079053,-0.293777,-0.952599,-0.079053,-0.293777,-0.967879,-0.079268,-0.238593, + -0.967879,-0.079268,-0.238593,-0.967879,-0.079268,-0.238593,-0.967879,-0.079268,-0.238593,-0.946111,-0.074153,-0.315238, + -0.946111,-0.074153,-0.315238,-0.946111,-0.074153,-0.315238,-0.946111,-0.074153,-0.315238,-0.219974,-0.123766,0.967622, + -0.219974,-0.123766,0.967622,-0.219974,-0.123766,0.967622,-0.219974,-0.123766,0.967622,-0.219974,-0.123768,0.967622, + -0.219974,-0.123768,0.967622,-0.219974,-0.123768,0.967622,-0.219974,-0.123768,0.967622,-0.965362,-0.150638,-0.213035, + -0.965362,-0.150638,-0.213035,-0.965362,-0.150638,-0.213035,-0.965362,-0.150638,-0.213035,0.112030,0.993697,0.004057, + 0.112030,0.993697,0.004057,0.112030,0.993697,0.004057,0.112030,0.993697,0.004057,-0.962228,-0.144268,-0.230878, + -0.962228,-0.144268,-0.230878,-0.962228,-0.144268,-0.230878,-0.962228,-0.144268,-0.230878,0.626677,0.755127,0.192509, + 0.626677,0.755127,0.192509,0.626677,0.755127,0.192509,0.626677,0.755127,0.192509,0.091352,-0.995110,-0.037561, + 0.091352,-0.995110,-0.037561,0.091352,-0.995110,-0.037561,0.091352,-0.995110,-0.037561,0.095556,-0.994870,-0.033220, + 0.095556,-0.994870,-0.033220,0.095556,-0.994870,-0.033220,0.095556,-0.994870,-0.033220,-0.143794,-0.056968,0.987967, + -0.143794,-0.056968,0.987967,-0.143794,-0.056968,0.987967,0.342170,0.936808,0.072878,0.342170,0.936808,0.072878, + 0.342170,0.936808,0.072878,0.342170,0.936808,0.072878,0.628909,0.755535,0.183413,0.628909,0.755535,0.183413, + 0.628909,0.755535,0.183413,0.628909,0.755535,0.183413,0.965586,0.080092,0.247446,0.965586,0.080092,0.247446, + 0.965586,0.080092,0.247446,0.965586,0.080092,0.247446,-0.962506,-0.078559,-0.259635,-0.962506,-0.078559,-0.259635, + -0.962506,-0.078559,-0.259635,-0.962506,-0.078559,-0.259635,0.560912,0.088442,-0.823138,0.560912,0.088442,-0.823138, + 0.560912,0.088442,-0.823138,0.560912,0.088442,-0.823138,-0.962487,-0.078755,-0.259647,-0.962487,-0.078755,-0.259647, + -0.962487,-0.078755,-0.259647,-0.962487,-0.078755,-0.259647,-0.962923,-0.073984,-0.259432,-0.962923,-0.073984,-0.259432, + -0.962923,-0.073984,-0.259432,-0.962923,-0.073984,-0.259432,-0.947761,-0.076881,-0.309577,-0.947761,-0.076881,-0.309577, + -0.947761,-0.076881,-0.309577,-0.947761,-0.076881,-0.309577,-0.969581,-0.085810,-0.229236,-0.969581,-0.085810,-0.229236, + -0.969581,-0.085810,-0.229236,-0.969581,-0.085810,-0.229236,-0.947886,-0.073747,-0.309958,-0.947886,-0.073747,-0.309958, + -0.947886,-0.073747,-0.309958,-0.947886,-0.073747,-0.309958,-0.187938,-0.069815,0.979696,-0.187938,-0.069815,0.979696, + -0.187938,-0.069815,0.979696,-0.187938,-0.069815,0.979696,0.185752,0.060256,-0.980747,0.185752,0.060256,-0.980747, + 0.185752,0.060256,-0.980747,0.185752,0.060256,-0.980747,-0.048160,0.997293,0.055568,-0.048160,0.997293,0.055568, + -0.048160,0.997293,0.055568,0.240593,-0.019764,0.970425,0.240593,-0.019764,0.970425,0.240593,-0.019764,0.970425, + 0.240593,-0.019764,0.970425,-0.147845,-0.069335,0.986577,-0.147845,-0.069335,0.986577,-0.147845,-0.069335,0.986577, + -0.147845,-0.069335,0.986577,0.534581,0.096316,-0.839611,0.534581,0.096316,-0.839611,0.534581,0.096316,-0.839611, + 0.534581,0.096316,-0.839611,0.018966,0.997132,0.073265,0.018966,0.997132,0.073265,0.018966,0.997132,0.073265, + 0.965586,0.080092,0.247445,0.965586,0.080092,0.247445,0.965586,0.080092,0.247445,0.965586,0.080092,0.247445, + 0.564254,0.778670,0.274390,0.564254,0.778670,0.274390,0.564254,0.778670,0.274390,0.655740,0.734758,0.173593, + 0.655740,0.734758,0.173593,0.655740,0.734758,0.173593,0.655740,0.734758,0.173593,0.145063,-0.988113,-0.050887, + 0.145063,-0.988113,-0.050887,0.145063,-0.988113,-0.050887,0.145063,-0.988113,-0.050887,0.161022,-0.985400,-0.055304, + 0.161022,-0.985400,-0.055304,0.161022,-0.985400,-0.055304,0.049942,-0.998571,-0.019014,0.049942,-0.998571,-0.019014, + 0.049942,-0.998571,-0.019014,0.049942,-0.998571,-0.019014,0.962585,0.040793,0.267893,0.962585,0.040793,0.267893, + 0.962585,0.040793,0.267893,-0.142755,-0.078479,0.986642,-0.142755,-0.078479,0.986642,-0.142755,-0.078479,0.986642, + -0.981792,0.011040,-0.189636,-0.981792,0.011040,-0.189636,-0.981792,0.011040,-0.189636,-0.981792,0.011040,-0.189636, + -0.940940,0.024514,-0.337685,-0.940940,0.024514,-0.337685,-0.940940,0.024514,-0.337685,-0.940940,0.024514,-0.337685, + -0.010963,0.997320,0.072338,-0.010963,0.997320,0.072338,-0.010963,0.997320,0.072338,-0.010963,0.997320,0.072338, + -0.041101,-0.995567,-0.084596,-0.041101,-0.995567,-0.084596,-0.041101,-0.995567,-0.084596,-0.041101,-0.995567,-0.084596, + -0.041098,-0.995568,-0.084595,-0.041098,-0.995568,-0.084595,-0.041098,-0.995568,-0.084595,-0.041098,-0.995568,-0.084595, + -0.978409,-0.006097,-0.206587,-0.978409,-0.006097,-0.206587,-0.978409,-0.006097,-0.206587,-0.978409,-0.006097,-0.206587, + -0.010961,0.997320,0.072338,-0.010961,0.997320,0.072338,-0.010961,0.997320,0.072338,-0.010961,0.997320,0.072338, + -0.978409,-0.006096,-0.206587,-0.978409,-0.006096,-0.206587,-0.978409,-0.006096,-0.206587,-0.978409,-0.006096,-0.206587, + 0.474132,0.876365,0.084752,0.474132,0.876365,0.084752,0.474132,0.876365,0.084752,0.474132,0.876365,0.084752, + -0.228388,-0.128143,0.965100,-0.228388,-0.128143,0.965100,-0.228388,-0.128143,0.965100,-0.228388,-0.128143,0.965100, + -0.959347,0.006224,-0.282160,-0.959347,0.006224,-0.282160,-0.959347,0.006224,-0.282160,-0.959347,0.006224,-0.282160, + -0.960313,0.056401,-0.273163,-0.960313,0.056401,-0.273163,-0.960313,0.056401,-0.273163,-0.960313,0.056401,-0.273163, + -0.250444,-0.618935,0.744444,-0.250444,-0.618935,0.744444,-0.250444,-0.618935,0.744444,-0.250444,-0.618935,0.744444, + 0.250856,0.614843,-0.747689,0.250856,0.614843,-0.747689,0.250856,0.614843,-0.747689,0.250856,0.614843,-0.747689, + -0.949479,0.069792,-0.305973,-0.949479,0.069792,-0.305973,-0.949479,0.069792,-0.305973,-0.949479,0.069792,-0.305973, + 0.949478,-0.069797,0.305974,0.949478,-0.069797,0.305974,0.949478,-0.069797,0.305974,0.949478,-0.069797,0.305974, + -0.339488,-0.044212,0.939571,-0.339488,-0.044212,0.939571,-0.339488,-0.044212,0.939571,-0.339488,-0.044212,0.939571, + 0.341184,0.081639,-0.936445,0.341184,0.081639,-0.936445,0.341184,0.081639,-0.936445,0.341184,0.081639,-0.936445, + -0.053725,-0.996731,-0.060334,-0.053725,-0.996731,-0.060334,-0.053725,-0.996731,-0.060334,-0.053725,-0.996731,-0.060334, + 0.019683,0.987923,0.153688,0.019683,0.987923,0.153688,0.019683,0.987923,0.153688,0.019683,0.987923,0.153688, + -0.944456,0.065560,-0.322033,-0.944456,0.065560,-0.322033,-0.944456,0.065560,-0.322033,-0.944456,0.065560,-0.322033, + 0.944458,-0.065561,0.322027,0.944458,-0.065561,0.322027,0.944458,-0.065561,0.322027,0.944458,-0.065561,0.322027, + 0.341300,-0.024100,-0.939645,0.341300,-0.024100,-0.939645,0.341300,-0.024100,-0.939645,0.341300,-0.024100,-0.939645, + -0.343635,-0.013456,0.939007,-0.343635,-0.013456,0.939007,-0.343635,-0.013456,0.939007,-0.343635,-0.013456,0.939007, + 0.070299,0.997508,-0.005909,0.070299,0.997508,-0.005909,0.070299,0.997508,-0.005909,0.070299,0.997508,-0.005909, + -0.036014,-0.995499,-0.087658,-0.036014,-0.995499,-0.087658,-0.036014,-0.995499,-0.087658,-0.036014,-0.995499,-0.087658, + -0.956129,0.071088,-0.284190,-0.956129,0.071088,-0.284190,-0.956129,0.071088,-0.284190,-0.956129,0.071088,-0.284190, + 0.956130,-0.071081,0.284188,0.956130,-0.071081,0.284188,0.956130,-0.071081,0.284188,0.956130,-0.071081,0.284188, + 0.308445,0.068669,-0.948760,0.308445,0.068669,-0.948760,0.308445,0.068669,-0.948760,0.308445,0.068669,-0.948760, + -0.310117,-0.106056,0.944764,-0.310117,-0.106056,0.944764,-0.310117,-0.106056,0.944764,-0.310117,-0.106056,0.944764, + 0.051179,0.995257,0.082733,0.051179,0.995257,0.082733,0.051179,0.995257,0.082733,0.051179,0.995257,0.082733, + -0.020249,-0.984039,-0.176796,-0.020249,-0.984039,-0.176796,-0.020249,-0.984039,-0.176796,-0.020249,-0.984039,-0.176796, + -0.951222,0.068328,-0.300846,-0.951222,0.068328,-0.300846,-0.951222,0.068328,-0.300846,-0.951222,0.068328,-0.300846, + -0.972909,0.064604,-0.221977,-0.972909,0.064604,-0.221977,-0.972909,0.064604,-0.221977,-0.972909,0.064604,-0.221977, + -0.972787,0.065237,-0.222325,-0.972787,0.065237,-0.222325,-0.972787,0.065237,-0.222325,-0.972787,0.065237,-0.222325, + -0.046566,-0.995239,-0.085618,-0.046566,-0.995239,-0.085618,-0.046566,-0.995239,-0.085618,-0.046566,-0.995239,-0.085618, + -0.049878,-0.996095,-0.072842,-0.049878,-0.996095,-0.072842,-0.049878,-0.996095,-0.072842,-0.049878,-0.996095,-0.072842, + 0.045466,0.994921,0.089804,0.045466,0.994921,0.089804,0.045466,0.994921,0.089804,0.045466,0.994921,0.089804, + 0.048803,0.995837,0.076992,0.048803,0.995837,0.076992,0.048803,0.995837,0.076992,0.048803,0.995837,0.076992, + -0.972789,0.065217,-0.222327,-0.972789,0.065217,-0.222327,-0.972789,0.065217,-0.222327,-0.972789,0.065217,-0.222327, + -0.049881,-0.996095,-0.072844,-0.049881,-0.996095,-0.072844,-0.049881,-0.996095,-0.072844,-0.049881,-0.996095,-0.072844, + 0.048812,0.995836,0.076991,0.048812,0.995836,0.076991,0.048812,0.995836,0.076991,0.048812,0.995836,0.076991, + 0.243880,0.674797,-0.696543,0.243880,0.674797,-0.696543,0.243880,0.674797,-0.696543,0.243880,0.674797,-0.696543, + -0.243248,-0.679483,0.692195,-0.243248,-0.679483,0.692195,-0.243248,-0.679483,0.692195,-0.243248,-0.679483,0.692195, + -0.959425,0.056607,-0.276222,-0.959425,0.056607,-0.276222,-0.959425,0.056607,-0.276222,-0.959425,0.056607,-0.276222, + -0.981332,-0.001659,-0.192315,-0.981332,-0.001659,-0.192315,-0.981332,-0.001659,-0.192315,-0.981332,-0.001659,-0.192315, + -0.050230,-0.997434,-0.051019,-0.050230,-0.997434,-0.051019,-0.050230,-0.997434,-0.051019,-0.050230,-0.997434,-0.051019, + -0.045212,-0.994907,-0.090084,-0.045212,-0.994907,-0.090084,-0.045212,-0.994907,-0.090084,-0.045212,-0.994907,-0.090084, + -0.942186,0.012325,-0.334864,-0.942186,0.012325,-0.334864,-0.942186,0.012325,-0.334864,-0.942186,0.012325,-0.334864, + -0.965702,0.068719,-0.250395,-0.965702,0.068719,-0.250395,-0.965702,0.068719,-0.250395,-0.965702,0.068719,-0.250395, + 0.259988,0.058396,-0.963844,0.259988,0.058396,-0.963844,0.259988,0.058396,-0.963844,0.259988,0.058396,-0.963844, + 0.139298,-0.079970,0.987016,0.139298,-0.079970,0.987016,0.139298,-0.079970,0.987016,0.139298,-0.079970,0.987016, + -0.965804,0.066578,-0.250578,-0.965804,0.066578,-0.250578,-0.965804,0.066578,-0.250578,-0.965804,0.066578,-0.250578, + -0.947371,0.070696,-0.312233,-0.947371,0.070696,-0.312233,-0.947371,0.070696,-0.312233,-0.947371,0.070696,-0.312233, + -0.954945,0.069144,-0.288618,-0.954945,0.069144,-0.288618,-0.954945,0.069144,-0.288618,-0.954945,0.069144,-0.288618, + -0.972930,0.064593,-0.221890,-0.972930,0.064593,-0.221890,-0.972930,0.064593,-0.221890,-0.972930,0.064593,-0.221890, + -0.950372,0.074140,-0.302152,-0.950372,0.074140,-0.302152,-0.950372,0.074140,-0.302152,-0.950372,0.074140,-0.302152, + -0.948903,0.069406,-0.307841,-0.948903,0.069406,-0.307841,-0.948903,0.069406,-0.307841,-0.948903,0.069406,-0.307841, + -0.974049,0.058013,-0.218778,-0.974049,0.058013,-0.218778,-0.974049,0.058013,-0.218778,-0.974049,0.058013,-0.218778, + -0.317393,-0.092425,0.943779,-0.317393,-0.092425,0.943779,-0.317393,-0.092425,0.943779,-0.956376,0.063606,-0.285131, + -0.956376,0.063606,-0.285131,-0.956376,0.063606,-0.285131,-0.956376,0.063606,-0.285131,-0.971300,0.062722,-0.229438, + -0.971300,0.062722,-0.229438,-0.971300,0.062722,-0.229438,-0.971300,0.062722,-0.229438,-0.132963,-0.077088,0.988119, + -0.132963,-0.077088,0.988119,-0.132963,-0.077088,0.988119,-0.132963,-0.077088,0.988119,-0.228329,-0.115459,0.966714, + -0.228329,-0.115459,0.966714,-0.228329,-0.115459,0.966714,-0.228329,-0.115459,0.966714,-0.228387,-0.128143,0.965100, + -0.228387,-0.128143,0.965100,-0.228387,-0.128143,0.965100,-0.228387,-0.128143,0.965100,-0.978609,0.007982,-0.205575, + -0.978609,0.007982,-0.205575,-0.978609,0.007982,-0.205575,-0.978609,0.007982,-0.205575,0.336494,0.941313,0.026506, + 0.336494,0.941313,0.026506,0.336494,0.941313,0.026506,0.336494,0.941313,0.026506,-0.971637,0.001250,-0.236475, + -0.971637,0.001250,-0.236475,-0.971637,0.001250,-0.236475,-0.971637,0.001250,-0.236475,-0.041101,-0.995567,-0.084596, + -0.041101,-0.995567,-0.084596,-0.041101,-0.995567,-0.084596,-0.041101,-0.995567,-0.084596,0.951245,-0.155783,0.266203, + 0.951245,-0.155783,0.266203,0.951245,-0.155783,0.266203,0.951245,-0.155783,0.266203,0.968985,-0.065041,0.238406, + 0.968985,-0.065041,0.238406,0.968985,-0.065041,0.238406,0.968985,-0.065041,0.238406,-0.052065,0.997156,0.054492, + -0.052065,0.997156,0.054492,-0.052065,0.997156,0.054492,0.217519,0.080117,-0.972762,0.217519,0.080117,-0.972762, + 0.217519,0.080117,-0.972762,0.217519,0.080117,-0.972762,0.968986,-0.065032,0.238406,0.968986,-0.065032,0.238406, + 0.968986,-0.065032,0.238406,0.968986,-0.065032,0.238406,-0.003665,0.997725,0.067311,-0.003665,0.997725,0.067311, + -0.003665,0.997725,0.067311,0.724655,0.651674,0.224046,0.724655,0.651674,0.224046,0.724655,0.651674,0.224046, + 0.724655,0.651674,0.224046,-0.047971,-0.995668,-0.079654,-0.047971,-0.995668,-0.079654,-0.047971,-0.995668,-0.079654, + -0.047971,-0.995668,-0.079654,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.046717,-0.996844,-0.064186,-0.046717,-0.996844,-0.064186,-0.046717,-0.996844,-0.064186, + -0.046717,-0.996844,-0.064186,-0.965862,0.065390,-0.250668,-0.965862,0.065390,-0.250668,-0.965862,0.065390,-0.250668, + -0.965862,0.065390,-0.250668,-0.965212,0.077723,-0.249649,-0.965212,0.077723,-0.249649,-0.965212,0.077723,-0.249649, + -0.965212,0.077723,-0.249649,0.212271,-0.095702,0.972513,0.212271,-0.095702,0.972513,0.212271,-0.095702,0.972513, + 0.212271,-0.095702,0.972513,0.221272,0.074388,-0.972371,0.221272,0.074388,-0.972371,0.221272,0.074388,-0.972371, + 0.221272,0.074388,-0.972371,0.143761,-0.086844,0.985794,0.143761,-0.086844,0.985794,0.143761,-0.086844,0.985794, + 0.143761,-0.086844,0.985794,-0.965805,0.066577,-0.250574,-0.965805,0.066577,-0.250574,-0.965805,0.066577,-0.250574, + -0.965805,0.066577,-0.250574,0.471546,0.876398,0.097831,0.471546,0.876398,0.097831,0.471546,0.876398,0.097831, + 0.471546,0.876398,0.097831,0.730675,0.652918,0.199530,0.730675,0.652918,0.199530,0.730675,0.652918,0.199530, + 0.730675,0.652918,0.199530,0.195989,-0.100429,0.975450,0.195989,-0.100429,0.975450,0.195989,-0.100429,0.975450, + 0.195989,-0.100429,0.975450,0.265448,-0.085729,0.960306,0.265448,-0.085729,0.960306,0.265448,-0.085729,0.960306, + 0.265448,-0.085729,0.960306,0.180983,0.069202,-0.981049,0.180983,0.069202,-0.981049,0.180983,0.069202,-0.981049, + 0.180983,0.069202,-0.981049,0.713346,0.621348,0.324138,0.713346,0.621348,0.324138,0.713346,0.621348,0.324138, + 0.836502,0.511179,0.197381,0.836502,0.511179,0.197381,0.836502,0.511179,0.197381,0.836502,0.511179,0.197381, + 0.028289,-0.994389,-0.101936,0.028289,-0.994389,-0.101936,0.028289,-0.994389,-0.101936,0.028289,-0.994389,-0.101936, + -0.099097,-0.993398,-0.057791,-0.099097,-0.993398,-0.057791,-0.099097,-0.993398,-0.057791,-0.099097,-0.993398,-0.057791, + -0.904240,-0.368202,-0.216281,-0.904240,-0.368202,-0.216281,-0.904240,-0.368202,-0.216281,-0.904240,-0.368202,-0.216281, + -0.877348,-0.357521,-0.320060,-0.877348,-0.357521,-0.320060,-0.877348,-0.357521,-0.320060,-0.877348,-0.357521,-0.320060, + -0.358441,0.933235,-0.024343,-0.358441,0.933235,-0.024343,-0.358441,0.933235,-0.024343,-0.358441,0.933235,-0.024343, + 0.313095,-0.949639,0.012520,0.313095,-0.949639,0.012520,0.313095,-0.949639,0.012520,0.313095,-0.949639,0.012520, + 0.313096,-0.949639,0.012521,0.313096,-0.949639,0.012521,0.313096,-0.949639,0.012521,0.313096,-0.949639,0.012521, + -0.903007,-0.373758,-0.211859,-0.903007,-0.373758,-0.211859,-0.903007,-0.373758,-0.211859,-0.903007,-0.373758,-0.211859, + -0.358442,0.933234,-0.024345,-0.358442,0.933234,-0.024345,-0.358442,0.933234,-0.024345,-0.358442,0.933234,-0.024345, + -0.903011,-0.373748,-0.211859,-0.903011,-0.373748,-0.211859,-0.903011,-0.373748,-0.211859,-0.903011,-0.373748,-0.211859, + 0.102198,0.994668,0.013843,0.102198,0.994668,0.013843,0.102198,0.994668,0.013843,0.102198,0.994668,0.013843, + -0.206849,-0.119001,0.971109,-0.206849,-0.119001,0.971109,-0.206849,-0.119001,0.971109,-0.206849,-0.119001,0.971109, + -0.882667,-0.359934,-0.302237,-0.882667,-0.359934,-0.302237,-0.882667,-0.359934,-0.302237,-0.882667,-0.359934,-0.302237, + -0.188016,-0.044190,0.981171,-0.188016,-0.044190,0.981171,-0.188016,-0.044190,0.981171,-0.188016,-0.044190,0.981171, + -0.924102,-0.301673,-0.234582,-0.924102,-0.301673,-0.234582,-0.924102,-0.301673,-0.234582,-0.924102,-0.301673,-0.234582, + 0.305210,-0.951999,0.023357,0.305210,-0.951999,0.023357,0.305210,-0.951999,0.023357,0.305210,-0.951999,0.023357, + -0.306191,0.951770,-0.019514,-0.306191,0.951770,-0.019514,-0.306191,0.951770,-0.019514,-0.306191,0.951770,-0.019514, + -0.901986,-0.296541,-0.313822,-0.901986,-0.296541,-0.313822,-0.901986,-0.296541,-0.313822,-0.901986,-0.296541,-0.313822, + 0.391410,-0.793996,-0.465154,0.391410,-0.793996,-0.465154,0.391410,-0.793996,-0.465154,0.391410,-0.793996,-0.465154, + -0.391096,0.796560,0.461016,-0.391096,0.796560,0.461016,-0.391096,0.796560,0.461016,-0.391096,0.796560,0.461016, + -0.904590,-0.297229,-0.305569,-0.904590,-0.297229,-0.305569,-0.904590,-0.297229,-0.305569,-0.904590,-0.297229,-0.305569, + 0.166042,-0.883934,0.437139,0.166042,-0.883934,0.437139,0.166042,-0.883934,0.437139,0.166042,-0.883934,0.437139, + -0.164252,0.882153,-0.441393,-0.164252,0.882153,-0.441393,-0.164252,0.882153,-0.441393,-0.164252,0.882153,-0.441393, + -0.900441,-0.296673,-0.318107,-0.900441,-0.296673,-0.318107,-0.900441,-0.296673,-0.318107,-0.900441,-0.296673,-0.318107, + 0.900441,0.296668,0.318109,0.900441,0.296668,0.318109,0.900441,0.296668,0.318109,0.900441,0.296668,0.318109, + -0.341041,-0.076592,0.936923,-0.341041,-0.076592,0.936923,-0.341041,-0.076592,0.936923,-0.341041,-0.076592,0.936923, + 0.328494,0.115131,-0.937463,0.328494,0.115131,-0.937463,0.328494,0.115131,-0.937463,0.328494,0.115131,-0.937463, + 0.301592,-0.952797,0.034924,0.301592,-0.952797,0.034924,0.301592,-0.952797,0.034924,0.301592,-0.952797,0.034924, + -0.331896,0.941890,0.051851,-0.331896,0.941890,0.051851,-0.331896,0.941890,0.051851,-0.331896,0.941890,0.051851, + -0.893473,-0.300656,-0.333635,-0.893473,-0.300656,-0.333635,-0.893473,-0.300656,-0.333635,-0.893473,-0.300656,-0.333635, + 0.893472,0.300651,0.333640,0.893472,0.300651,0.333640,0.893472,0.300651,0.333640,0.893472,0.300651,0.333640, + 0.368086,0.008546,-0.929753,0.368086,0.008546,-0.929753,0.368086,0.008546,-0.929753,0.368086,0.008546,-0.929753, + -0.356371,-0.047200,0.933151,-0.356371,-0.047200,0.933151,-0.356371,-0.047200,0.933151,-0.356371,-0.047200,0.933151, + -0.284959,0.953711,-0.096088,-0.284959,0.953711,-0.096088,-0.284959,0.953711,-0.096088,-0.284959,0.953711,-0.096088, + 0.317558,-0.948189,0.009682,0.317558,-0.948189,0.009682,0.317558,-0.948189,0.009682,0.317558,-0.948189,0.009682, + -0.908073,-0.295689,-0.296600,-0.908073,-0.295689,-0.296600,-0.908073,-0.295689,-0.296600,-0.908073,-0.295689,-0.296600, + 0.908074,0.295684,0.296601,0.908074,0.295684,0.296601,0.908074,0.295684,0.296601,0.908074,0.295684,0.296601, + 0.303280,0.089276,-0.948710,0.303280,0.089276,-0.948710,0.303280,0.089276,-0.948710,0.303280,0.089276,-0.948710, + -0.290648,-0.127825,0.948254,-0.290648,-0.127825,0.948254,-0.290648,-0.127825,0.948254,-0.290648,-0.127825,0.948254, + -0.304198,0.952504,-0.014158,-0.304198,0.952504,-0.014158,-0.304198,0.952504,-0.014158,-0.304198,0.952504,-0.014158, + 0.331056,-0.940738,-0.073574,0.331056,-0.940738,-0.073574,0.331056,-0.940738,-0.073574,0.331056,-0.940738,-0.073574, + -0.904583,-0.297254,-0.305565,-0.904583,-0.297254,-0.305565,-0.904583,-0.297254,-0.305565,-0.904583,-0.297254,-0.305565, + 0.391436,-0.793898,-0.465300,0.391436,-0.793898,-0.465300,0.391436,-0.793898,-0.465300,0.391436,-0.793898,-0.465300, + -0.391076,0.796475,0.461181,-0.391076,0.796475,0.461181,-0.391076,0.796475,0.461181,-0.391076,0.796475,0.461181, + -0.906241,-0.297694,-0.300177,-0.906241,-0.297694,-0.300177,-0.906241,-0.297694,-0.300177,-0.906241,-0.297694,-0.300177, + 0.166657,-0.884571,0.435615,0.166657,-0.884571,0.435615,0.166657,-0.884571,0.435615,0.166657,-0.884571,0.435615, + -0.164905,0.882802,-0.439848,-0.164905,0.882802,-0.439848,-0.164905,0.882802,-0.439848,-0.164905,0.882802,-0.439848, + -0.904490,-0.368252,-0.215146,-0.904490,-0.368252,-0.215146,-0.904490,-0.368252,-0.215146,-0.904490,-0.368252,-0.215146, + 0.308662,-0.950745,0.028496,0.308662,-0.950745,0.028496,0.308662,-0.950745,0.028496,0.308662,-0.950745,0.028496, + 0.306347,-0.951722,0.019419,0.306347,-0.951722,0.019419,0.306347,-0.951722,0.019419,0.306347,-0.951722,0.019419, + -0.876877,-0.357307,-0.321587,-0.876877,-0.357307,-0.321587,-0.876877,-0.357307,-0.321587,-0.876877,-0.357307,-0.321587, + 0.194532,0.062127,0.978927,0.194532,0.062127,0.978927,0.194532,0.062127,0.978927,0.194532,0.062127,0.978927, + -0.918374,-0.295803,-0.262850,-0.918374,-0.295803,-0.262850,-0.918374,-0.295803,-0.262850,-0.918374,-0.295803,-0.262850, + 0.218860,0.070057,-0.973238,0.218860,0.070057,-0.973238,0.218860,0.070057,-0.973238,0.218860,0.070057,-0.973238, + 0.551907,0.156639,-0.819062,0.551907,0.156639,-0.819062,0.551907,0.156639,-0.819062,0.551907,0.156639,-0.819062, + -0.195711,-0.038444,0.979908,-0.195711,-0.038444,0.979908,-0.195711,-0.038444,0.979908,-0.195711,-0.038444,0.979908, + -0.916874,-0.300490,-0.262771,-0.916874,-0.300490,-0.262771,-0.916874,-0.300490,-0.262771,-0.916874,-0.300490,-0.262771, + -0.906304,-0.300933,-0.296737,-0.906304,-0.300933,-0.296737,-0.906304,-0.300933,-0.296737,-0.906304,-0.300933,-0.296737, + -0.922426,-0.301123,-0.241775,-0.922426,-0.301123,-0.241775,-0.922426,-0.301123,-0.241775,-0.922426,-0.301123,-0.241775, + -0.900660,-0.295695,-0.318397,-0.900660,-0.295695,-0.318397,-0.900660,-0.295695,-0.318397,-0.900660,-0.295695,-0.318397, + -0.206850,-0.119002,0.971108,-0.206850,-0.119002,0.971108,-0.206850,-0.119002,0.971108,-0.206850,-0.119002,0.971108, + -0.206847,-0.119001,0.971109,-0.206847,-0.119001,0.971109,-0.206847,-0.119001,0.971109,-0.206847,-0.119001,0.971109, + -0.903012,-0.373745,-0.211860,-0.903012,-0.373745,-0.211860,-0.903012,-0.373745,-0.211860,-0.903012,-0.373745,-0.211860, + -0.120574,0.991392,-0.051036,-0.120574,0.991392,-0.051036,-0.120574,0.991392,-0.051036,-0.120574,0.991392,-0.051036, + -0.901129,-0.367493,-0.230032,-0.901129,-0.367493,-0.230032,-0.901129,-0.367493,-0.230032,-0.901129,-0.367493,-0.230032, + 0.410990,0.899813,0.146369,0.410990,0.899813,0.146369,0.410990,0.899813,0.146369,0.410990,0.899813,0.146369, + 0.305773,-0.951860,0.021576,0.305773,-0.951860,0.021576,0.305773,-0.951860,0.021576,0.305773,-0.951860,0.021576, + 0.309444,-0.950573,0.025616,0.309444,-0.950573,0.025616,0.309444,-0.950573,0.025616,0.309444,-0.950573,0.025616, + -0.148913,-0.031758,0.988340,-0.148913,-0.031758,0.988340,-0.148913,-0.031758,0.988340,0.101208,0.994700,0.018106, + 0.101208,0.994700,0.018106,0.101208,0.994700,0.018106,0.101208,0.994700,0.018106,0.413200,0.900180,0.137628, + 0.413200,0.900180,0.137628,0.413200,0.900180,0.137628,0.413200,0.900180,0.137628,0.919791,0.302018,0.250539, + 0.919791,0.302018,0.250539,0.919791,0.302018,0.250539,0.919791,0.302018,0.250539,-0.916874,-0.300489,-0.262770, + -0.916874,-0.300489,-0.262770,-0.916874,-0.300489,-0.262770,-0.916874,-0.300489,-0.262770,0.545710,0.162370,-0.822093, + 0.545710,0.162370,-0.822093,0.545710,0.162370,-0.822093,0.545710,0.162370,-0.822093,-0.916808,-0.300691,-0.262770, + -0.916808,-0.300691,-0.262770,-0.916808,-0.300691,-0.262770,-0.916808,-0.300691,-0.262770,-0.918386,-0.295769,-0.262847, + -0.918386,-0.295769,-0.262847,-0.918386,-0.295769,-0.262847,-0.918386,-0.295769,-0.262847,-0.901743,-0.298568,-0.312598, + -0.901743,-0.298568,-0.312598,-0.901743,-0.298568,-0.312598,-0.901743,-0.298568,-0.312598,-0.922723,-0.307788,-0.232055, + -0.922723,-0.307788,-0.232055,-0.922723,-0.307788,-0.232055,-0.922723,-0.307788,-0.232055,-0.902610,-0.295332,-0.313169, + -0.902610,-0.295332,-0.313169,-0.902610,-0.295332,-0.313169,-0.902610,-0.295332,-0.313169,-0.188819,-0.055015,0.980470, + -0.188819,-0.055015,0.980470,-0.188819,-0.055015,0.980470,-0.188819,-0.055015,0.980470,0.189006,0.044472,-0.980968, + 0.189006,0.044472,-0.980968,0.189006,0.044472,-0.980968,0.189006,0.044472,-0.980968,-0.267479,0.963552,-0.004716, + -0.267479,0.963552,-0.004716,-0.267479,0.963552,-0.004716,0.218541,0.087209,0.971923,0.218541,0.087209,0.971923, + 0.218541,0.087209,0.971923,0.218541,0.087209,0.971923,-0.149868,-0.045658,0.987651,-0.149868,-0.045658,0.987651, + -0.149868,-0.045658,0.987651,-0.149868,-0.045658,0.987651,0.518422,0.164103,-0.839231,0.518422,0.164103,-0.839231, + 0.518422,0.164103,-0.839231,0.518422,0.164103,-0.839231,-0.207041,0.978255,0.012271,-0.207041,0.978255,0.012271, + -0.207041,0.978255,0.012271,0.919789,0.302022,0.250539,0.919789,0.302022,0.250539,0.919789,0.302022,0.250539, + 0.919789,0.302022,0.250539,0.343811,0.912333,0.222355,0.343811,0.912333,0.222355,0.343811,0.912333,0.222355, + 0.444564,0.886272,0.129941,0.444564,0.886272,0.129941,0.444564,0.886272,0.129941,0.444564,0.886272,0.129941, + 0.353290,-0.935468,0.009280,0.353290,-0.935468,0.009280,0.353290,-0.935468,0.009280,0.353290,-0.935468,0.009280, + 0.367313,-0.930083,0.005166,0.367313,-0.930083,0.005166,0.367313,-0.930083,0.005166,0.268631,-0.962469,0.038616, + 0.268631,-0.962469,0.038616,0.268631,-0.962469,0.038616,0.268631,-0.962469,0.038616,0.925747,0.261380,0.273263, + 0.925747,0.261380,0.273263,0.925747,0.261380,0.273263,-0.923665,0.329948,-0.194877,-0.923665,0.329948,-0.194877, + -0.923665,0.329948,-0.194877,-0.923665,0.329948,-0.194877,0.308227,0.914527,0.261986,0.308227,0.914527,0.261986, + 0.308227,0.914527,0.261986,0.308227,0.914527,0.261986,0.931679,-0.283886,0.226678,0.931679,-0.283886,0.226678, + 0.931679,-0.283886,0.226678,0.931679,-0.283886,0.226678,-0.365776,-0.916952,-0.159398,-0.365776,-0.916952,-0.159398, + -0.365776,-0.916952,-0.159398,-0.365776,-0.916952,-0.159398,0.265216,-0.964181,0.004051,0.265216,-0.964181,0.004051, + 0.265216,-0.964181,0.004051,0.265216,-0.964181,0.004051,-0.943258,-0.212530,-0.255138,-0.943258,-0.212530,-0.255138, + -0.943258,-0.212530,-0.255138,-0.943258,-0.212530,-0.255138,0.907660,0.295470,0.298080,0.907660,0.295470,0.298080, + 0.907660,0.295470,0.298080,0.907660,0.295470,0.298080,-0.936452,0.265571,-0.229195,-0.936452,0.265571,-0.229195, + -0.936452,0.265571,-0.229195,-0.936452,0.265571,-0.229195,-0.307264,0.950837,0.038703,-0.307264,0.950837,0.038703, + -0.307264,0.950837,0.038703,-0.307264,0.950837,0.038703,0.205841,-0.978504,-0.012615,0.205841,-0.978504,-0.012615, + 0.205841,-0.978504,-0.012615,0.205841,-0.978504,-0.012615,-0.211426,0.977331,0.011049,-0.211426,0.977331,0.011049, + -0.211426,0.977331,0.011049,-0.211426,0.977331,0.011049,0.383221,0.909076,0.163467,0.383221,0.909076,0.163467, + 0.383221,0.909076,0.163467,0.383221,0.909076,0.163467,-0.306705,-0.059421,0.949948,-0.306705,-0.059421,0.949948, + -0.306705,-0.059421,0.949948,-0.306705,-0.059421,0.949948,-0.209786,-0.093465,0.973270,-0.209786,-0.093465,0.973270, + -0.209786,-0.093465,0.973270,-0.209786,-0.093465,0.973270,-0.257495,-0.080892,0.962888,-0.257495,-0.080892,0.962888, + -0.257495,-0.080892,0.962888,-0.257495,-0.080892,0.962888,-0.207944,-0.112052,0.971701,-0.207944,-0.112052,0.971701, + -0.207944,-0.112052,0.971701,-0.207944,-0.112052,0.971701,-0.319501,-0.041369,0.946683,-0.319501,-0.041369,0.946683, + -0.319501,-0.041369,0.946683,-0.319501,-0.041369,0.946683,-0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724, + -0.254844,-0.066046,0.964724,-0.254844,-0.066046,0.964724,-0.269422,-0.096130,0.958212,-0.269422,-0.096130,0.958212, + -0.269422,-0.096130,0.958212,-0.269422,-0.096130,0.958212,-0.254840,-0.066042,0.964725,-0.254840,-0.066042,0.964725, + -0.254840,-0.066042,0.964725,-0.254840,-0.066042,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.383528,-0.908935,-0.163535,-0.383528,-0.908935,-0.163535, + -0.383528,-0.908935,-0.163535,-0.383528,-0.908935,-0.163535,-0.913977,-0.309325,-0.262610,-0.913977,-0.309325,-0.262610, + -0.913977,-0.309325,-0.262610,-0.913977,-0.309325,-0.262610,0.922102,-0.317013,0.221878,0.922102,-0.317013,0.221878, + 0.922102,-0.317013,0.221878,0.922102,-0.317013,0.221878,0.940959,0.212958,0.263146,0.940959,0.212958,0.263146, + 0.940959,0.212958,0.263146,0.940959,0.212958,0.263146,0.205840,-0.978504,-0.012623,0.205840,-0.978504,-0.012623, + 0.205840,-0.978504,-0.012623,0.205840,-0.978504,-0.012623,0.328421,0.081211,-0.941034,0.328421,0.081211,-0.941034, + 0.328421,0.081211,-0.941034,0.328421,0.081211,-0.941034,0.894021,0.182807,0.409032,0.894021,0.182807,0.409032, + 0.894021,0.182807,0.409032,0.894021,0.182807,0.409032,-0.869258,-0.176920,-0.461617,-0.869258,-0.176920,-0.461617, + -0.869258,-0.176920,-0.461617,-0.869258,-0.176920,-0.461617,-0.286971,-0.072683,0.955178,-0.286971,-0.072683,0.955178, + -0.286971,-0.072683,0.955178,-0.286971,-0.072683,0.955178,0.205847,-0.978503,-0.012609,0.205847,-0.978503,-0.012609, + 0.205847,-0.978503,-0.012609,0.205847,-0.978503,-0.012609,0.222410,0.059326,-0.973146,0.222410,0.059326,-0.973146, + 0.222410,0.059326,-0.973146,0.222410,0.059326,-0.973146,-0.179676,-0.050471,0.982430,-0.179676,-0.050471,0.982430, + -0.179676,-0.050471,0.982430,-0.179676,-0.050471,0.982430,0.172985,-0.964947,0.197367,0.172985,-0.964947,0.197367, + 0.172985,-0.964947,0.197367,0.172985,-0.964947,0.197367,-0.368388,-0.023702,0.929370,-0.368388,-0.023702,0.929370, + -0.368388,-0.023702,0.929370,-0.368388,-0.023702,0.929370,-0.849167,-0.215927,-0.481967,-0.849167,-0.215927,-0.481967, + -0.849167,-0.215927,-0.481967,-0.849167,-0.215927,-0.481967,0.820418,0.212629,0.530757,0.820418,0.212629,0.530757, + 0.820418,0.212629,0.530757,0.820418,0.212629,0.530757,0.327133,0.013692,-0.944879,0.327133,0.013692,-0.944879, + 0.327133,0.013692,-0.944879,0.327133,0.013692,-0.944879,0.172988,-0.964945,0.197373,0.172988,-0.964945,0.197373, + 0.172988,-0.964945,0.197373,0.172988,-0.964945,0.197373,-0.263073,0.001576,0.964774,-0.263073,0.001576,0.964774, + -0.263073,0.001576,0.964774,-0.263073,0.001576,0.964774,0.220862,-0.011490,-0.975237,0.220862,-0.011490,-0.975237, + 0.220862,-0.011490,-0.975237,0.220862,-0.011490,-0.975237,0.780161,0.235073,0.579732,0.780161,0.235073,0.579732, + 0.780161,0.235073,0.579732,0.780161,0.235073,0.579732,-0.937314,-0.221523,-0.269017,-0.937314,-0.221523,-0.269017, + -0.937314,-0.221523,-0.269017,-0.937314,-0.221523,-0.269017,0.314091,0.034227,-0.948776,0.314091,0.034227,-0.948776, + 0.314091,0.034227,-0.948776,0.314091,0.034227,-0.948776,0.854494,-0.374029,0.360475,0.854494,-0.374029,0.360475, + 0.854494,-0.374029,0.360475,0.854494,-0.374029,0.360475,-0.227455,0.949770,-0.214945,-0.227455,0.949770,-0.214945, + -0.227455,0.949770,-0.214945,-0.227455,0.949770,-0.214945,-0.280024,-0.040896,0.959122,-0.280024,-0.040896,0.959122, + -0.280024,-0.040896,0.959122,-0.280024,-0.040896,0.959122,-0.432617,-0.882897,-0.182581,-0.432617,-0.882897,-0.182581, + -0.432617,-0.882897,-0.182581,-0.432617,-0.882897,-0.182581,0.229485,0.090945,-0.969054,0.229485,0.090945,-0.969054, + 0.229485,0.090945,-0.969054,0.229485,0.090945,-0.969054,-0.195505,-0.096977,0.975896,-0.195505,-0.096977,0.975896, + -0.195505,-0.096977,0.975896,-0.195505,-0.096977,0.975896,0.195715,-0.966359,0.166870,0.195715,-0.966359,0.166870, + 0.195715,-0.966359,0.166870,0.195715,-0.966359,0.166870,-0.447977,-0.891165,-0.071703,-0.447977,-0.891165,-0.071703, + -0.447977,-0.891165,-0.071703,-0.447977,-0.891165,-0.071703,-0.266975,0.205507,0.941536,-0.266975,0.205507,0.941536, + -0.266975,0.205507,0.941536,-0.266975,0.205507,0.941536,-0.243597,0.894504,-0.374865,-0.243597,0.894504,-0.374865, + -0.243597,0.894504,-0.374865,-0.243597,0.894504,-0.374865,0.684321,-0.426957,0.591111,0.684321,-0.426957,0.591111, + 0.684321,-0.426957,0.591111,0.684321,-0.426957,0.591111,0.261201,-0.042389,-0.964353,0.261201,-0.042389,-0.964353, + 0.261201,-0.042389,-0.964353,0.261201,-0.042389,-0.964353,-0.962278,-0.211976,-0.170548,-0.962278,-0.211976,-0.170548, + -0.962278,-0.211976,-0.170548,-0.962278,-0.211976,-0.170548,-0.194986,-0.053668,0.979337,-0.194986,-0.053668,0.979337, + -0.194986,-0.053668,0.979337,-0.194986,-0.053668,0.979337,0.180813,0.066475,-0.981268,0.180813,0.066475,-0.981268, + 0.180813,0.066475,-0.981268,0.180813,0.066475,-0.981268,0.303860,0.902139,0.306290,0.303860,0.902139,0.306290, + 0.303860,0.902139,0.306290,0.303860,0.902139,0.306290,0.939660,-0.340764,0.030319,0.939660,-0.340764,0.030319, + 0.939660,-0.340764,0.030319,0.939660,-0.340764,0.030319,0.296629,0.146459,-0.943695,0.296629,0.146459,-0.943695, + 0.296629,0.146459,-0.943695,0.296629,0.146459,-0.943695,0.239974,0.890413,0.386752,0.239974,0.890413,0.386752, + 0.239974,0.890413,0.386752,0.239974,0.890413,0.386752,-0.039968,-0.216747,0.975409,-0.039968,-0.216747,0.975409, + -0.039968,-0.216747,0.975409,-0.039968,-0.216747,0.975409,0.951481,-0.275310,-0.137436,0.951481,-0.275310,-0.137436, + 0.951481,-0.275310,-0.137436,0.951481,-0.275310,-0.137436,-0.953369,0.275388,0.123489,-0.953369,0.275388,0.123489, + -0.953369,0.275388,0.123489,-0.953369,0.275388,0.123489,0.232076,0.156835,-0.959971,0.232076,0.156835,-0.959971, + 0.232076,0.156835,-0.959971,0.232076,0.156835,-0.959971,0.260997,0.872144,0.413819,0.260997,0.872144,0.413819, + 0.260997,0.872144,0.413819,0.260997,0.872144,0.413819,-0.284287,-0.137438,0.948837,-0.284287,-0.137438,0.948837, + -0.284287,-0.137438,0.948837,-0.284287,-0.137438,0.948837,0.305582,0.124019,-0.944054,0.305582,0.124019,-0.944054, + 0.305582,0.124019,-0.944054,0.305582,0.124019,-0.944054,-0.352164,-0.062659,0.933839,-0.352164,-0.062659,0.933839, + -0.352164,-0.062659,0.933839,-0.352164,-0.062659,0.933839,0.727065,0.220081,0.650339,0.727065,0.220081,0.650339, + 0.727065,0.220081,0.650339,0.727065,0.220081,0.650339,0.403788,-0.902437,0.150211,0.403788,-0.902437,0.150211, + 0.403788,-0.902437,0.150211,-0.141366,0.989642,-0.024996,-0.141366,0.989642,-0.024996,-0.141366,0.989642,-0.024996, + -0.275431,-0.105834,0.955477,-0.275431,-0.105834,0.955477,-0.275431,-0.105834,0.955477,-0.275431,-0.105834,0.955477, + -0.805220,-0.374154,-0.460033,-0.805220,-0.374154,-0.460033,-0.805220,-0.374154,-0.460033,-0.805220,-0.374154,-0.460033, + -0.323484,-0.055053,0.944631,-0.323484,-0.055053,0.944631,-0.323484,-0.055053,0.944631,-0.323484,-0.055053,0.944631, + 0.244929,0.068271,-0.967134,0.244929,0.068271,-0.967134,0.244929,0.068271,-0.967134,0.244929,0.068271,-0.967134, + 0.403550,-0.910660,0.088579,0.403550,-0.910660,0.088579,0.403550,-0.910660,0.088579,-0.873703,0.151527,-0.462258, + -0.873703,0.151527,-0.462258,-0.873703,0.151527,-0.462258,-0.873703,0.151527,-0.462258,-0.279828,-0.901920,-0.328993, + -0.279828,-0.901920,-0.328993,-0.279828,-0.901920,-0.328993,-0.279828,-0.901920,-0.328993,-0.706536,0.632128,-0.318154, + -0.706536,0.632128,-0.318154,-0.706536,0.632128,-0.318154,-0.706536,0.632128,-0.318154,-0.314117,-0.052312,0.947942, + -0.314117,-0.052312,0.947942,-0.314117,-0.052312,0.947942,-0.314117,-0.052312,0.947942,0.893859,0.330412,0.303058, + 0.893859,0.330412,0.303058,0.893859,0.330412,0.303058,0.343523,-0.044836,-0.938073,0.343523,-0.044836,-0.938073, + 0.343523,-0.044836,-0.938073,0.343523,-0.044836,-0.938073,-0.286227,-0.132578,0.948945,-0.286227,-0.132578,0.948945, + -0.286227,-0.132578,0.948945,-0.286227,-0.132578,0.948945,-0.208164,-0.153690,0.965944,-0.208164,-0.153690,0.965944, + -0.208164,-0.153690,0.965944,-0.208164,-0.153690,0.965944,-0.949190,-0.054885,-0.309882,-0.949190,-0.054885,-0.309882, + -0.949190,-0.054885,-0.309882,0.868195,0.343435,0.358175,0.868195,0.343435,0.358175,0.868195,0.343435,0.358175, + -0.283723,0.858383,0.427410,-0.283723,0.858383,0.427410,-0.283723,0.858383,0.427410,-0.283723,0.858383,0.427410, + 0.254954,0.070340,-0.964391,0.254954,0.070340,-0.964391,0.254954,0.070340,-0.964391,0.254954,0.070340,-0.964391, + -0.348728,-0.865972,-0.358444,-0.348728,-0.865972,-0.358444,-0.348728,-0.865972,-0.358444,-0.348728,-0.865972,-0.358444, + -0.984162,-0.021411,-0.175976,-0.984162,-0.021411,-0.175976,-0.984162,-0.021411,-0.175976,0.235276,-0.949889,-0.205804, + 0.235276,-0.949889,-0.205804,0.235276,-0.949889,-0.205804,0.235276,-0.949889,-0.205804,-0.266452,-0.113415,0.957152, + -0.266452,-0.113415,0.957152,-0.266452,-0.113415,0.957152,-0.266452,-0.113415,0.957152,-0.376286,0.905894,-0.194334, + -0.376286,0.905894,-0.194334,-0.376286,0.905894,-0.194334,0.887224,0.350136,0.300398,0.887224,0.350136,0.300398, + 0.887224,0.350136,0.300398,0.887224,0.350136,0.300398,0.831347,-0.525251,0.181588,0.831347,-0.525251,0.181588, + 0.831347,-0.525251,0.181588,-0.376699,0.921634,-0.093211,-0.376699,0.921634,-0.093211,-0.376699,0.921634,-0.093211, + 0.830786,-0.523665,0.188601,0.830786,-0.523665,0.188601,0.830786,-0.523665,0.188601,0.259484,0.034049,-0.965147, + 0.259484,0.034049,-0.965147,0.259484,0.034049,-0.965147,0.259484,0.034049,-0.965147,-0.903091,0.335391,-0.268213, + -0.903091,0.335391,-0.268213,-0.903091,0.335391,-0.268213,0.966970,-0.034410,0.252558,0.966970,-0.034410,0.252558, + 0.966970,-0.034410,0.252558,0.253108,0.955573,0.151051,0.253108,0.955573,0.151051,0.253108,0.955573,0.151051, + 0.253108,0.955573,0.151051,-0.894286,0.323396,-0.309301,-0.894286,0.323396,-0.309301,-0.894286,0.323396,-0.309301, + -0.777171,0.624761,-0.075356,-0.777171,0.624761,-0.075356,-0.777171,0.624761,-0.075356,0.202777,0.073442,-0.976467, + 0.202777,0.073442,-0.976467,0.202777,0.073442,-0.976467,0.202777,0.073442,-0.976467,0.412742,0.889103,0.197837, + 0.412742,0.889103,0.197837,0.412742,0.889103,0.197837,0.412742,0.889103,0.197837,0.925308,-0.369313,0.086098, + 0.925308,-0.369313,0.086098,0.925308,-0.369313,0.086098,-0.780188,0.595007,-0.193062,-0.780188,0.595007,-0.193062, + -0.780188,0.595007,-0.193062,0.921027,-0.388936,-0.020910,0.921027,-0.388936,-0.020910,0.921027,-0.388936,-0.020910, + 0.967088,-0.034532,0.252087,0.967088,-0.034532,0.252087,0.967088,-0.034532,0.252087,0.282095,-0.019289,-0.959192, + 0.282095,-0.019289,-0.959192,0.282095,-0.019289,-0.959192,0.282095,-0.019289,-0.959192,-0.876934,0.298876,-0.376378, + -0.876934,0.298876,-0.376378,-0.876934,0.298876,-0.376378,-0.876934,0.298876,-0.376378,-0.135039,0.983891,0.117142, + -0.135039,0.983891,0.117142,-0.135039,0.983891,0.117142,-0.864522,-0.230017,-0.446872,-0.864522,-0.230017,-0.446872, + -0.864522,-0.230017,-0.446872,-0.864522,-0.230017,-0.446872,-0.325745,0.027251,0.945065,-0.325745,0.027251,0.945065, + -0.325745,0.027251,0.945065,-0.325745,0.027251,0.945065,0.851220,0.487532,0.194259,0.851220,0.487532,0.194259, + 0.851220,0.487532,0.194259,0.808559,-0.560253,0.179860,0.808559,-0.560253,0.179860,0.808559,-0.560253,0.179860, + 0.808559,-0.560253,0.179860,-0.307986,-0.940099,-0.146142,-0.307986,-0.940099,-0.146142,-0.307986,-0.940099,-0.146142, + 0.850498,0.481706,0.211217,0.850498,0.481706,0.211217,0.850498,0.481706,0.211217,-0.307968,-0.940012,-0.146739, + -0.307968,-0.940012,-0.146739,-0.307968,-0.940012,-0.146739,0.225361,0.050621,-0.972959,0.225361,0.050621,-0.972959, + 0.225361,0.050621,-0.972959,0.225361,0.050621,-0.972959,0.176369,0.981750,0.071142,0.176369,0.981750,0.071142, + 0.176369,0.981750,0.071142,0.198944,-0.979821,-0.019292,0.198944,-0.979821,-0.019292,0.198944,-0.979821,-0.019292, + 0.924614,-0.264515,0.274080,0.924614,-0.264515,0.274080,0.924614,-0.264515,0.274080,0.924614,-0.264515,0.274080, + 0.173849,0.983539,0.049278,0.173849,0.983539,0.049278,0.173849,0.983539,0.049278,0.324157,0.927635,0.185516, + 0.324157,0.927635,0.185516,0.324157,0.927635,0.185516,0.255654,0.113640,-0.960066,0.255654,0.113640,-0.960066, + 0.255654,0.113640,-0.960066,0.255654,0.113640,-0.960066,0.890041,-0.391388,0.233754,0.890041,-0.391388,0.233754, + 0.890041,-0.391388,0.233754,0.890041,-0.391388,0.233754,-0.258355,-0.929141,-0.264482,-0.258355,-0.929141,-0.264482, + -0.258355,-0.929141,-0.264482,0.319617,0.941156,0.109863,0.319617,0.941156,0.109863,0.319617,0.941156,0.109863, + -0.257673,-0.931873,-0.255377,-0.257673,-0.931873,-0.255377,-0.257673,-0.931873,-0.255377,0.198787,-0.979818,-0.021010, + 0.198787,-0.979818,-0.021010,0.198787,-0.979818,-0.021010,-0.282730,-0.092582,0.954721,-0.282730,-0.092582,0.954721, + -0.282730,-0.092582,0.954721,-0.282730,-0.092582,0.954721,-0.249799,0.011148,0.968234,-0.249799,0.011148,0.968234, + -0.249799,0.011148,0.968234,-0.249799,0.011148,0.968234,0.038237,0.992829,-0.113266,0.038237,0.992829,-0.113266, + 0.038237,0.992829,-0.113266,0.038237,0.992829,-0.113266,-0.345160,-0.034658,0.937904,-0.345160,-0.034658,0.937904, + -0.345160,-0.034658,0.937904,-0.345160,-0.034658,0.937904,-0.265266,0.940413,-0.212736,-0.265266,0.940413,-0.212736, + -0.265266,0.940413,-0.212736,-0.265266,0.940413,-0.212736,0.936669,0.082801,0.340287,0.936669,0.082801,0.340287, + 0.936669,0.082801,0.340287,0.295836,0.097864,-0.950212,0.295836,0.097864,-0.950212,0.295836,0.097864,-0.950212, + 0.295836,0.097864,-0.950212,0.303235,-0.951951,0.042872,0.303235,-0.951951,0.042872,0.303235,-0.951951,0.042872, + 0.303235,-0.951951,0.042872,-0.850063,-0.362155,-0.382408,-0.850063,-0.362155,-0.382408,-0.850063,-0.362155,-0.382408, + 0.961694,0.139629,0.235901,0.961694,0.139629,0.235901,0.961694,0.139629,0.235901,-0.821161,-0.314746,-0.476056, + -0.821161,-0.314746,-0.476056,-0.821161,-0.314746,-0.476056,0.413650,0.910285,-0.016579,0.413650,0.910285,-0.016579, + 0.413650,0.910285,-0.016579,0.413650,0.910285,-0.016579,0.244624,0.098110,-0.964642,0.244624,0.098110,-0.964642, + 0.244624,0.098110,-0.964642,0.244624,0.098110,-0.964642,0.976664,-0.061252,0.205854,0.976664,-0.061252,0.205854, + 0.976664,-0.061252,0.205854,-0.963598,-0.065983,-0.259086,-0.963598,-0.065983,-0.259086,-0.963598,-0.065983,-0.259086, + 0.025880,-0.998726,-0.043318,0.025880,-0.998726,-0.043318,0.025880,-0.998726,-0.043318,0.025880,-0.998726,-0.043318, + 0.985042,-0.043851,0.166644,0.985042,-0.043851,0.166644,0.985042,-0.043851,0.166644,0.792349,-0.574580,0.205037, + 0.792349,-0.574580,0.205037,0.792349,-0.574580,0.205037,0.295648,0.070293,-0.952707,0.295648,0.070293,-0.952707, + 0.295648,0.070293,-0.952707,0.295648,0.070293,-0.952707,-0.409230,-0.898457,-0.159077,-0.409230,-0.898457,-0.159077, + -0.409230,-0.898457,-0.159077,-0.409230,-0.898457,-0.159077,-0.923301,0.103304,-0.369924,-0.923301,0.103304,-0.369924, + -0.923301,0.103304,-0.369924,0.835527,-0.536202,0.119926,0.835527,-0.536202,0.119926,0.835527,-0.536202,0.119926, + -0.876905,0.139768,-0.459894,-0.876905,0.139768,-0.459894,-0.876905,0.139768,-0.459894,-0.957689,-0.055430,-0.282418, + -0.957689,-0.055430,-0.282418,-0.957689,-0.055430,-0.282418,-0.310012,-0.068544,0.948259,-0.310012,-0.068544,0.948259, + -0.310012,-0.068544,0.948259,-0.310012,-0.068544,0.948259,-0.915481,-0.081980,-0.393921,-0.915481,-0.081980,-0.393921, + -0.915481,-0.081980,-0.393921,-0.915481,-0.081980,-0.393921,0.182096,0.081061,-0.979934,0.182096,0.081061,-0.979934, + 0.182096,0.081061,-0.979934,0.182096,0.081061,-0.979934,0.936583,0.239873,0.255486,0.936583,0.239873,0.255486, + 0.936583,0.239873,0.255486,0.936583,0.239873,0.255486,-0.331250,0.002452,0.943540,-0.331250,0.002452,0.943540, + -0.331250,0.002452,0.943540,-0.331250,0.002452,0.943540,-0.331746,-0.031554,0.942841,-0.331746,-0.031554,0.942841, + -0.331746,-0.031554,0.942841,-0.331746,-0.031554,0.942841,0.917087,-0.397286,0.033388,0.917087,-0.397286,0.033388, + 0.917087,-0.397286,0.033388,0.917087,-0.397286,0.033388,-0.351007,-0.032478,0.935809,-0.351007,-0.032478,0.935809, + -0.351007,-0.032478,0.935809,-0.351007,-0.032478,0.935809,0.982368,-0.180973,0.046922,0.982368,-0.180973,0.046922, + 0.982368,-0.180973,0.046922,0.982368,-0.180973,0.046922,-0.370510,-0.916478,-0.150964,-0.370510,-0.916478,-0.150964, + -0.370510,-0.916478,-0.150964,0.269515,0.077366,-0.959883,0.269515,0.077366,-0.959883,0.269515,0.077366,-0.959883, + 0.269515,0.077366,-0.959883,-0.954947,0.219130,-0.200144,-0.954947,0.219130,-0.200144,-0.954947,0.219130,-0.200144, + -0.954947,0.219130,-0.200144,0.181625,0.983367,0.001243,0.181625,0.983367,0.001243,0.181625,0.983367,0.001243, + -0.271588,-0.916935,-0.292354,-0.271588,-0.916935,-0.292354,-0.271588,-0.916935,-0.292354,0.210722,0.976301,-0.049326, + 0.210722,0.976301,-0.049326,0.210722,0.976301,-0.049326,0.307662,-0.942297,-0.131983,0.307662,-0.942297,-0.131983, + 0.307662,-0.942297,-0.131983,0.307662,-0.942297,-0.131983,0.284169,0.060193,-0.956883,0.284169,0.060193,-0.956883, + 0.284169,0.060193,-0.956883,0.284169,0.060193,-0.956883,-0.657880,-0.696529,-0.286427,-0.657880,-0.696529,-0.286427, + -0.657880,-0.696529,-0.286427,0.423665,0.889195,0.172745,0.423665,0.889195,0.172745,0.423665,0.889195,0.172745, + -0.834721,0.528162,-0.155843,-0.834721,0.528162,-0.155843,-0.834721,0.528162,-0.155843,-0.834721,0.528162,-0.155843, + -0.664199,-0.695418,-0.274287,-0.664199,-0.695418,-0.274287,-0.664199,-0.695418,-0.274287,-0.912167,-0.339776,-0.229136, + -0.912167,-0.339776,-0.229136,-0.912167,-0.339776,-0.229136,0.326418,0.093036,-0.940636,0.326418,0.093036,-0.940636, + 0.326418,0.093036,-0.940636,0.326418,0.093036,-0.940636,-0.340156,0.940143,-0.020624,-0.340156,0.940143,-0.020624, + -0.340156,0.940143,-0.020624,-0.340156,0.940143,-0.020624,0.746080,0.665682,0.015263,0.746080,0.665682,0.015263, + 0.746080,0.665682,0.015263,-0.872962,-0.368248,-0.319892,-0.872962,-0.368248,-0.319892,-0.872962,-0.368248,-0.319892, + 0.752245,0.658815,-0.009463,0.752245,0.658815,-0.009463,0.752245,0.658815,-0.009463,0.437570,0.886476,0.150640, + 0.437570,0.886476,0.150640,0.437570,0.886476,0.150640,-0.226172,-0.097109,0.969235,-0.226172,-0.097109,0.969235, + -0.226172,-0.097109,0.969235,-0.226172,-0.097109,0.969235,-0.311754,-0.111018,0.943655,-0.311754,-0.111018,0.943655, + -0.311754,-0.111018,0.943655,-0.311754,-0.111018,0.943655,0.848191,0.525101,0.069578,0.848191,0.525101,0.069578, + 0.848191,0.525101,0.069578,0.848191,0.525101,0.069578,0.973738,0.204727,0.099604,0.973738,0.204727,0.099604, + 0.973738,0.204727,0.099604,0.973738,0.204727,0.099604,0.269647,0.086648,-0.959053,0.269647,0.086648,-0.959053, + 0.269647,0.086648,-0.959053,0.269647,0.086648,-0.959053,0.412820,-0.910629,-0.018282,0.412820,-0.910629,-0.018282, + 0.412820,-0.910629,-0.018282,-0.677863,0.723367,-0.131309,-0.677863,0.723367,-0.131309,-0.677863,0.723367,-0.131309, + -0.831555,-0.509577,-0.221014,-0.831555,-0.509577,-0.221014,-0.831555,-0.509577,-0.221014,-0.831555,-0.509577,-0.221014, + 0.406642,-0.913566,-0.006327,0.406642,-0.913566,-0.006327,0.406642,-0.913566,-0.006327,0.008529,-0.991076,-0.133025, + 0.008529,-0.991076,-0.133025,0.008529,-0.991076,-0.133025,0.274148,0.131818,-0.952610,0.274148,0.131818,-0.952610, + 0.274148,0.131818,-0.952610,0.274148,0.131818,-0.952610,-0.900591,-0.333502,-0.278767,-0.900591,-0.333502,-0.278767, + -0.900591,-0.333502,-0.278767,-0.900591,-0.333502,-0.278767,-0.365995,0.927988,-0.069901,-0.365995,0.927988,-0.069901, + -0.365995,0.927988,-0.069901,0.054068,-0.979416,-0.194475,0.054068,-0.979416,-0.194475,0.054068,-0.979416,-0.194475, + -0.303246,0.936826,-0.174351,-0.303246,0.936826,-0.174351,-0.303246,0.936826,-0.174351,-0.669152,0.728144,-0.148468, + -0.669152,0.728144,-0.148468,-0.669152,0.728144,-0.148468,-0.387455,-0.015885,0.921752,-0.387455,-0.015885,0.921752, + -0.387455,-0.015885,0.921752,-0.387455,-0.015885,0.921752,-0.617439,-0.709945,-0.338743,-0.617439,-0.709945,-0.338743, + -0.617439,-0.709945,-0.338743,-0.617439,-0.709945,-0.338743,0.242387,0.008884,-0.970139,0.242387,0.008884,-0.970139, + 0.242387,0.008884,-0.970139,0.242387,0.008884,-0.970139,0.751354,0.617820,0.231873,0.751354,0.617820,0.231873, + 0.751354,0.617820,0.231873,0.751354,0.617820,0.231873,0.180118,-0.950658,0.252602,0.180118,-0.950658,0.252602, + 0.180118,-0.950658,0.252602,0.180118,-0.950658,0.252602,-0.956758,-0.230620,-0.177280,-0.956758,-0.230620,-0.177280, + -0.956758,-0.230620,-0.177280,-0.956758,-0.230620,-0.177280,0.322402,0.012723,-0.946517,0.322402,0.012723,-0.946517, + 0.322402,0.012723,-0.946517,0.322402,0.012723,-0.946517,-0.319537,-0.011957,0.947498,-0.319537,-0.011957,0.947498, + -0.319537,-0.011957,0.947498,-0.319537,-0.011957,0.947498,-0.939423,-0.249786,-0.234716,-0.939423,-0.249786,-0.234716, + -0.939423,-0.249786,-0.234716,-0.939423,-0.249786,-0.234716,-0.214488,0.970264,-0.112175,-0.214488,0.970264,-0.112175, + -0.214488,0.970264,-0.112175,-0.214488,0.970264,-0.112175,0.279917,0.113482,-0.953293,0.279917,0.113482,-0.953293, + 0.279917,0.113482,-0.953293,0.279917,0.113482,-0.953293,-0.279590,-0.114697,0.953244,-0.279590,-0.114697,0.953244, + -0.279590,-0.114697,0.953244,-0.279590,-0.114697,0.953244,-0.931587,0.352975,-0.086912,-0.931587,0.352975,-0.086912, + -0.931587,0.352975,-0.086912,-0.931587,0.352975,-0.086912,-0.295481,-0.146922,0.943984,-0.295481,-0.146922,0.943984, + -0.295481,-0.146922,0.943984,-0.295481,-0.146922,0.943984,-0.969742,-0.007866,-0.244004,-0.969742,-0.007866,-0.244004, + -0.969742,-0.007866,-0.244004,-0.969742,-0.007866,-0.244004,0.697586,-0.705230,0.126588,0.697586,-0.705230,0.126588, + 0.697586,-0.705230,0.126588,0.697586,-0.705230,0.126588,-0.214974,-0.082897,0.973095,-0.214974,-0.082897,0.973095, + -0.214974,-0.082897,0.973095,-0.209409,-0.071070,0.975242,-0.209409,-0.071070,0.975242,-0.209409,-0.071070,0.975242, + -0.509922,0.859882,-0.024134,-0.509922,0.859882,-0.024134,-0.509922,0.859882,-0.024134,-0.509922,0.859882,-0.024134, + 0.961496,-0.133623,0.240147,0.961496,-0.133623,0.240147,0.961496,-0.133623,0.240147,0.961496,-0.133623,0.240147, + -0.245771,-0.086181,0.965489,-0.245771,-0.086181,0.965489,-0.245771,-0.086181,0.965489,-0.501961,-0.845048,-0.184199, + -0.501961,-0.845048,-0.184199,-0.501961,-0.845048,-0.184199,-0.501961,-0.845048,-0.184199,0.363608,0.889451,0.276886, + 0.363608,0.889451,0.276886,0.363608,0.889451,0.276886,0.363608,0.889451,0.276886,-0.270284,-0.050512,0.961455, + -0.270284,-0.050512,0.961455,-0.270284,-0.050512,0.961455,-0.967508,0.088625,-0.236800,-0.967508,0.088625,-0.236800, + -0.967508,0.088625,-0.236800,-0.967508,0.088625,-0.236800,0.701060,-0.701571,0.127720,0.701060,-0.701571,0.127720, + 0.701060,-0.701571,0.127720,0.701060,-0.701571,0.127720,-0.222602,-0.086528,0.971062,-0.222602,-0.086528,0.971062, + -0.222602,-0.086528,0.971062,-0.213089,-0.034086,0.976438,-0.213089,-0.034086,0.976438,-0.213089,-0.034086,0.976438, + 0.148908,0.974617,0.167176,0.148908,0.974617,0.167176,0.148908,0.974617,0.167176,0.148908,0.974617,0.167176, + 0.673484,0.687329,0.272027,0.673484,0.687329,0.272027,0.673484,0.687329,0.272027,0.673484,0.687329,0.272027, + -0.229983,-0.088019,0.969206,-0.229983,-0.088019,0.969206,-0.229983,-0.088019,0.969206,-0.393951,-0.904885,-0.161202, + -0.393951,-0.904885,-0.161202,-0.393951,-0.904885,-0.161202,-0.393951,-0.904885,-0.161202,-0.070970,0.982665,0.171266, + -0.070970,0.982665,0.171266,-0.070970,0.982665,0.171266,-0.070970,0.982665,0.171266,-0.257156,-0.052589,0.964938, + -0.257156,-0.052589,0.964938,-0.257156,-0.052589,0.964938,-0.968490,0.072977,-0.238121,-0.968490,0.072977,-0.238121, + -0.968490,0.072977,-0.238121,-0.968490,0.072977,-0.238121,0.659359,-0.743076,0.114381,0.659359,-0.743076,0.114381, + 0.659359,-0.743076,0.114381,0.659359,-0.743076,0.114381,-0.192406,-0.093897,0.976813,-0.192406,-0.093897,0.976813, + -0.192406,-0.093897,0.976813,-0.183246,-0.045105,0.982032,-0.183246,-0.045105,0.982032,-0.183246,-0.045105,0.982032, + -0.299041,0.953529,0.036830,-0.299041,0.953529,0.036830,-0.299041,0.953529,0.036830,-0.299041,0.953529,0.036830, + 0.910963,0.296214,0.287060,0.910963,0.296214,0.287060,0.910963,0.296214,0.287060,0.910963,0.296214,0.287060, + -0.231947,-0.090991,0.968463,-0.231947,-0.090991,0.968463,-0.231947,-0.090991,0.968463,-0.366844,-0.917237,-0.155247, + -0.366844,-0.917237,-0.155247,-0.366844,-0.917237,-0.155247,-0.366844,-0.917237,-0.155247,0.310561,0.914725,0.258516, + 0.310561,0.914725,0.258516,0.310561,0.914725,0.258516,0.310561,0.914725,0.258516,-0.269849,-0.051849,0.961506, + -0.269849,-0.051849,0.961506,-0.269849,-0.051849,0.961506,-0.359360,-0.923834,-0.131876,-0.359360,-0.923834,-0.131876, + -0.359360,-0.923834,-0.131876,-0.359360,-0.923834,-0.131876,0.850423,0.469574,0.237236,0.850423,0.469574,0.237236, + 0.850423,0.469574,0.237236,0.850423,0.469574,0.237236,-0.222416,-0.028528,0.974534,-0.222416,-0.028528,0.974534, + -0.222416,-0.028528,0.974534,-0.268089,-0.002862,0.963390,-0.268089,-0.002862,0.963390,-0.268089,-0.002862,0.963390, + -0.874059,0.465262,-0.139830,-0.874059,0.465262,-0.139830,-0.874059,0.465262,-0.139830,-0.874059,0.465262,-0.139830, + -0.456111,0.889654,-0.021868,-0.456111,0.889654,-0.021868,-0.456111,0.889654,-0.021868,-0.456111,0.889654,-0.021868, + -0.223167,-0.036228,0.974107,-0.223167,-0.036228,0.974107,-0.223167,-0.036228,0.974107,0.724780,-0.671210,0.155471, + 0.724780,-0.671210,0.155471,0.724780,-0.671210,0.155471,0.724780,-0.671210,0.155471,-0.958108,0.263887,-0.111317, + -0.958108,0.263887,-0.111317,-0.958108,0.263887,-0.111317,-0.958108,0.263887,-0.111317,-0.263784,-0.051826,0.963188, + -0.263784,-0.051826,0.963188,-0.263784,-0.051826,0.963188,-0.270674,-0.956287,-0.110688,-0.270674,-0.956287,-0.110688, + -0.270674,-0.956287,-0.110688,-0.270674,-0.956287,-0.110688,0.852811,0.465011,0.237651,0.852811,0.465011,0.237651, + 0.852811,0.465011,0.237651,0.852811,0.465011,0.237651,-0.223550,-0.019908,0.974489,-0.223550,-0.019908,0.974489, + -0.223550,-0.019908,0.974489,-0.232895,-0.010757,0.972442,-0.232895,-0.010757,0.972442,-0.232895,-0.010757,0.972442, + -0.952522,-0.222516,-0.207819,-0.952522,-0.222516,-0.207819,-0.952522,-0.222516,-0.207819,-0.952522,-0.222516,-0.207819, + 0.397453,0.905486,0.148747,0.397453,0.905486,0.148747,0.397453,0.905486,0.148747,0.397453,0.905486,0.148747, + -0.229419,-0.051153,0.971983,-0.229419,-0.051153,0.971983,-0.229419,-0.051153,0.971983,0.638424,-0.758687,0.129647, + 0.638424,-0.758687,0.129647,0.638424,-0.758687,0.129647,0.638424,-0.758687,0.129647,-0.747933,0.662718,-0.037428, + -0.747933,0.662718,-0.037428,-0.747933,0.662718,-0.037428,-0.747933,0.662718,-0.037428,-0.269401,-0.064166,0.960888, + -0.269401,-0.064166,0.960888,-0.269401,-0.064166,0.960888,-0.965714,0.073700,-0.248928,-0.965714,0.073700,-0.248928, + -0.965714,0.073700,-0.248928,-0.965714,0.073700,-0.248928,0.664702,-0.741111,0.094472,0.664702,-0.741111,0.094472, + 0.664702,-0.741111,0.094472,0.664702,-0.741111,0.094472,-0.205146,-0.134121,0.969498,-0.205146,-0.134121,0.969498, + -0.205146,-0.134121,0.969498,-0.196532,-0.085492,0.976763,-0.196532,-0.085492,0.976763,-0.196532,-0.085492,0.976763, + -0.308541,0.948626,0.070078,-0.308541,0.948626,0.070078,-0.308541,0.948626,0.070078,-0.308541,0.948626,0.070078, + 0.904017,0.292748,0.311532,0.904017,0.292748,0.311532,0.904017,0.292748,0.311532,0.904017,0.292748,0.311532, + -0.244589,-0.131241,0.960704,-0.244589,-0.131241,0.960704,-0.244589,-0.131241,0.960704,-0.355937,-0.913624,-0.196471, + -0.355937,-0.913624,-0.196471,-0.355937,-0.913624,-0.196471,-0.355937,-0.913624,-0.196471,0.298240,0.906525,0.298774, + 0.298240,0.906525,0.298774,0.298240,0.906525,0.298774,0.298240,0.906525,0.298774,-0.282734,-0.092203,0.954757, + -0.282734,-0.092203,0.954757,-0.282734,-0.092203,0.954757,-0.743775,-0.613092,-0.266302,-0.743775,-0.613092,-0.266302, + -0.743775,-0.613092,-0.266302,-0.743775,-0.613092,-0.266302,0.966721,-0.026241,0.254485,0.966721,-0.026241,0.254485, + 0.966721,-0.026241,0.254485,0.966721,-0.026241,0.254485,-0.228014,-0.107430,0.967713,-0.228014,-0.107430,0.967713, + -0.228014,-0.107430,0.967713,-0.256399,-0.062113,0.964573,-0.256399,-0.062113,0.964573,-0.256399,-0.062113,0.964573, + -0.556631,0.830727,0.007425,-0.556631,0.830727,0.007425,-0.556631,0.830727,0.007425,-0.556631,0.830727,0.007425, + 0.008093,0.985767,0.167921,0.008093,0.985767,0.167921,0.008093,0.985767,0.167921,0.008093,0.985767,0.167921, + -0.232243,-0.113693,0.965990,-0.232243,-0.113693,0.965990,-0.232243,-0.113693,0.965990,0.328706,-0.944268,-0.017608, + 0.328706,-0.944268,-0.017608,0.328706,-0.944268,-0.017608,0.328706,-0.944268,-0.017608,-0.724864,0.688866,0.005998, + -0.724864,0.688866,0.005998,-0.724864,0.688866,0.005998,-0.724864,0.688866,0.005998,-0.275252,-0.106582,0.955446, + -0.275252,-0.106582,0.955446,-0.275252,-0.106582,0.955446,0.778471,-0.627668,0.003963,0.778471,-0.627668,0.003963, + 0.778471,-0.627668,0.003963,0.778471,-0.627668,0.003963,-0.120182,0.970403,0.209460,-0.120182,0.970403,0.209460, + -0.120182,0.970403,0.209460,-0.120182,0.970403,0.209460,-0.202009,-0.199346,0.958881,-0.202009,-0.199346,0.958881, + -0.202009,-0.199346,0.958881,-0.213727,-0.204353,0.955280,-0.213727,-0.204353,0.955280,-0.213727,-0.204353,0.955280, + -0.143583,-0.965873,-0.215575,-0.143583,-0.965873,-0.215575,-0.143583,-0.965873,-0.215575,-0.143583,-0.965873,-0.215575, + -0.687629,0.724637,0.045474,-0.687629,0.724637,0.045474,-0.687629,0.724637,0.045474,-0.687629,0.724637,0.045474, + -0.175552,-0.217111,0.960231,-0.175552,-0.217111,0.960231,-0.175552,-0.217111,0.960231,0.923244,0.288946,0.253240, + 0.923244,0.288946,0.253240,0.923244,0.288946,0.253240,0.923244,0.288946,0.253240,-0.891498,-0.426113,-0.153815, + -0.891498,-0.426113,-0.153815,-0.891498,-0.426113,-0.153815,-0.891498,-0.426113,-0.153815,-0.177924,-0.259128,0.949313, + -0.177924,-0.259128,0.949313,-0.177924,-0.259128,0.949313,0.963574,-0.084783,0.253648,0.963574,-0.084783,0.253648, + 0.963574,-0.084783,0.253648,0.963574,-0.084783,0.253648,-0.763097,0.641918,0.074989,-0.763097,0.641918,0.074989, + -0.763097,0.641918,0.074989,-0.763097,0.641918,0.074989,-0.287407,-0.398739,0.870864,-0.287407,-0.398739,0.870864, + -0.287407,-0.398739,0.870864,-0.291141,-0.446160,0.846273,-0.291141,-0.446160,0.846273,-0.291141,-0.446160,0.846273, + -0.077934,-0.915974,-0.393597,-0.077934,-0.915974,-0.393597,-0.077934,-0.915974,-0.393597,-0.077934,-0.915974,-0.393597, + -0.621322,-0.648842,-0.439276,-0.621322,-0.648842,-0.439276,-0.621322,-0.648842,-0.439276,-0.621322,-0.648842,-0.439276, + -0.280336,-0.397468,0.873746,-0.280336,-0.397468,0.873746,-0.280336,-0.397468,0.873746,0.296568,0.822509,0.485310, + 0.296568,0.822509,0.485310,0.296568,0.822509,0.485310,0.296568,0.822509,0.485310,0.111472,-0.951321,-0.287338, + 0.111472,-0.951321,-0.287338,0.111472,-0.951321,-0.287338,0.111472,-0.951321,-0.287338,-0.249964,-0.429904,0.867583, + -0.249964,-0.429904,0.867583,-0.249964,-0.429904,0.867583,-0.267308,0.963600,-0.004647,-0.267308,0.963600,-0.004647, + -0.267308,0.963600,-0.004647,-0.267308,0.963600,-0.004647,-0.452387,-0.873608,-0.179319,-0.452387,-0.873608,-0.179319, + -0.452387,-0.873608,-0.179319,-0.452387,-0.873608,-0.179319,-0.262167,-0.123216,0.957124,-0.262167,-0.123216,0.957124, + -0.262167,-0.123216,0.957124,-0.214339,-0.116701,0.969763,-0.214339,-0.116701,0.969763,-0.214339,-0.116701,0.969763, + 0.764293,0.577080,0.287810,0.764293,0.577080,0.287810,0.764293,0.577080,0.287810,0.764293,0.577080,0.287810, + 0.581186,-0.802207,0.136696,0.581186,-0.802207,0.136696,0.581186,-0.802207,0.136696,0.581186,-0.802207,0.136696, + -0.273294,-0.084292,0.958230,-0.273294,-0.084292,0.958230,-0.273294,-0.084292,0.958230,-0.965712,0.068503,-0.250416, + -0.965712,0.068503,-0.250416,-0.965712,0.068503,-0.250416,-0.965712,0.068503,-0.250416,0.931468,-0.046621,0.360825, + 0.931468,-0.046621,0.360825,0.931468,-0.046621,0.360825,0.931468,-0.046621,0.360825,-0.250546,-0.035182,0.967465, + -0.250546,-0.035182,0.967465,-0.250546,-0.035182,0.967465,-0.567060,-0.797905,-0.204429,-0.567060,-0.797905,-0.204429, + -0.567060,-0.797905,-0.204429,-0.567060,-0.797905,-0.204429,0.951834,0.158769,0.262307,0.951834,0.158769,0.262307, + 0.951834,0.158769,0.262307,0.951834,0.158769,0.262307,-0.205801,-0.037719,0.977867,-0.205801,-0.037719,0.977867, + -0.205801,-0.037719,0.977867,-0.240724,-0.002813,0.970589,-0.240724,-0.002813,0.970589,-0.240724,-0.002813,0.970589, + -0.942880,0.277945,-0.183638,-0.942880,0.277945,-0.183638,-0.942880,0.277945,-0.183638,-0.942880,0.277945,-0.183638, + 0.228989,0.959471,0.164255,0.228989,0.959471,0.164255,0.228989,0.959471,0.164255,0.228989,0.959471,0.164255, + -0.229121,-0.070083,0.970872,-0.229121,-0.070083,0.970872,-0.229121,-0.070083,0.970872,0.556184,-0.826131,0.090367, + 0.556184,-0.826131,0.090367,0.556184,-0.826131,0.090367,0.556184,-0.826131,0.090367,-0.604326,0.796633,0.012846, + -0.604326,0.796633,0.012846,-0.604326,0.796633,0.012846,-0.604326,0.796633,0.012846,-0.280872,-0.081196,0.956304, + -0.280872,-0.081196,0.956304,-0.280872,-0.081196,0.956304,0.810548,-0.558641,0.175874,0.810548,-0.558641,0.175874, + 0.810548,-0.558641,0.175874,0.810548,-0.558641,0.175874,-0.193226,0.981022,0.016110,-0.193226,0.981022,0.016110, + -0.193226,0.981022,0.016110,-0.193226,0.981022,0.016110,-0.268922,-0.036490,0.962471,-0.268922,-0.036490,0.962471, + -0.268922,-0.036490,0.962471,-0.279992,-0.042893,0.959044,-0.279992,-0.042893,0.959044,-0.279992,-0.042893,0.959044, + -0.068952,-0.996752,-0.041611,-0.068952,-0.996752,-0.041611,-0.068952,-0.996752,-0.041611,-0.068952,-0.996752,-0.041611, + -0.729902,0.669267,-0.139014,-0.729902,0.669267,-0.139014,-0.729902,0.669267,-0.139014,-0.729902,0.669267,-0.139014, + -0.241680,-0.051750,0.968975,-0.241680,-0.051750,0.968975,-0.241680,-0.051750,0.968975,0.880750,0.395982,0.259764, + 0.880750,0.395982,0.259764,0.880750,0.395982,0.259764,0.880750,0.395982,0.259764,-0.849452,-0.510221,-0.134557, + -0.849452,-0.510221,-0.134557,-0.849452,-0.510221,-0.134557,-0.849452,-0.510221,-0.134557,-0.240691,-0.095108,0.965931, + -0.240691,-0.095108,0.965931,-0.240691,-0.095108,0.965931,0.614478,-0.781393,0.108819,0.614478,-0.781393,0.108819, + 0.614478,-0.781393,0.108819,0.614478,-0.781393,0.108819,0.100621,0.990438,0.094382,0.100621,0.990438,0.094382, + 0.100621,0.990438,0.094382,0.100621,0.990438,0.094382,-0.259737,-0.033598,0.965095,-0.259737,-0.033598,0.965095, + -0.259737,-0.033598,0.965095,-0.272218,-0.036234,0.961553,-0.272218,-0.036234,0.961553,-0.272218,-0.036234,0.961553, + -0.356244,-0.927561,-0.112784,-0.356244,-0.927561,-0.112784,-0.356244,-0.927561,-0.112784,-0.356244,-0.927561,-0.112784, + -0.504823,0.860662,-0.066448,-0.504823,0.860662,-0.066448,-0.504823,0.860662,-0.066448,-0.504823,0.860662,-0.066448, + -0.238054,-0.056552,0.969604,-0.238054,-0.056552,0.969604,-0.238054,-0.056552,0.969604,0.960016,0.102252,0.260604, + 0.960016,0.102252,0.260604,0.960016,0.102252,0.260604,0.960016,0.102252,0.260604,-0.962240,-0.230248,-0.145192, + -0.962240,-0.230248,-0.145192,-0.962240,-0.230248,-0.145192,-0.962240,-0.230248,-0.145192,-0.249752,-0.097959,0.963342, + -0.249752,-0.097959,0.963342,-0.249752,-0.097959,0.963342,0.791207,-0.360907,0.493698,0.791207,-0.360907,0.493698, + 0.791207,-0.360907,0.493698,0.791207,-0.360907,0.493698,-0.330595,0.917533,-0.220997,-0.330595,0.917533,-0.220997, + -0.330595,0.917533,-0.220997,-0.330595,0.917533,-0.220997,-0.540831,0.042005,0.840082,-0.540831,0.042005,0.840082, + -0.540831,0.042005,0.840082,-0.549257,0.033162,0.834995,-0.549257,0.033162,0.834995,-0.549257,0.033162,0.834995, + 0.093919,-0.987381,0.127509,0.093919,-0.987381,0.127509,0.093919,-0.987381,0.127509,0.093919,-0.987381,0.127509, + -0.742752,0.489078,-0.457299,-0.742752,0.489078,-0.457299,-0.742752,0.489078,-0.457299,-0.742752,0.489078,-0.457299, + -0.514932,0.033371,0.856581,-0.514932,0.033371,0.856581,-0.514932,0.033371,0.856581,0.691768,0.591495,0.414236, + 0.691768,0.591495,0.414236,0.691768,0.591495,0.414236,0.691768,0.591495,0.414236,-0.683687,-0.679471,-0.266254, + -0.683687,-0.679471,-0.266254,-0.683687,-0.679471,-0.266254,-0.683687,-0.679471,-0.266254,-0.506721,-0.008971,0.862063, + -0.506721,-0.008971,0.862063,-0.506721,-0.008971,0.862063,-0.400955,-0.907982,-0.121673,-0.400955,-0.907982,-0.121673, + -0.400955,-0.907982,-0.121673,-0.400955,-0.907982,-0.121673,0.826306,0.371395,0.423421,0.826306,0.371395,0.423421, + 0.826306,0.371395,0.423421,0.826306,0.371395,0.423421,-0.448497,0.138200,0.883035,-0.448497,0.138200,0.883035, + -0.448497,0.138200,0.883035,-0.483999,0.164251,0.859515,-0.483999,0.164251,0.859515,-0.483999,0.164251,0.859515, + -0.887165,0.066995,-0.456563,-0.887165,0.066995,-0.456563,-0.887165,0.066995,-0.456563,-0.887165,0.066995,-0.456563, + 0.069224,0.997044,-0.033338,0.069224,0.997044,-0.033338,0.069224,0.997044,-0.033338,0.069224,0.997044,-0.033338, + -0.465407,0.101593,0.879247,-0.465407,0.101593,0.879247,-0.465407,0.101593,0.879247,0.602150,-0.680201,0.418020, + 0.602150,-0.680201,0.418020,0.602150,-0.680201,0.418020,0.602150,-0.680201,0.418020,-0.671964,0.665736,-0.324438, + -0.671964,0.665736,-0.324438,-0.671964,0.665736,-0.324438,-0.671964,0.665736,-0.324438,-0.509978,0.078949,0.856557, + -0.509978,0.078949,0.856557,-0.509978,0.078949,0.856557,-0.274644,-0.951636,-0.137697,-0.274644,-0.951636,-0.137697, + -0.274644,-0.951636,-0.137697,-0.274644,-0.951636,-0.137697,0.841133,0.477019,0.254849,0.841133,0.477019,0.254849, + 0.841133,0.477019,0.254849,0.841133,0.477019,0.254849,-0.217922,-0.022484,0.975707,-0.217922,-0.022484,0.975707, + -0.217922,-0.022484,0.975707,-0.261885,-0.001363,0.965098,-0.261885,-0.001363,0.965098,-0.261885,-0.001363,0.965098, + -0.975027,-0.055746,-0.214978,-0.975027,-0.055746,-0.214978,-0.975027,-0.055746,-0.214978,-0.975027,-0.055746,-0.214978, + -0.095657,0.992135,0.080738,-0.095657,0.992135,0.080738,-0.095657,0.992135,0.080738,-0.095657,0.992135,0.080738, + -0.229415,-0.061089,0.971410,-0.229415,-0.061089,0.971410,-0.229415,-0.061089,0.971410,0.787379,-0.593312,0.167379, + 0.787379,-0.593312,0.167379,0.787379,-0.593312,0.167379,0.787379,-0.593312,0.167379,-0.827251,0.558362,-0.062347, + -0.827251,0.558362,-0.062347,-0.827251,0.558362,-0.062347,-0.827251,0.558362,-0.062347,-0.274350,-0.089391,0.957466, + -0.274350,-0.089391,0.957466,-0.274350,-0.089391,0.957466,0.252673,-0.967551,0.000508,0.252673,-0.967551,0.000508, + 0.252673,-0.967551,0.000508,0.252673,-0.967551,0.000508,0.400014,0.901100,0.167354,0.400014,0.901100,0.167354, + 0.400014,0.901100,0.167354,0.400014,0.901100,0.167354,-0.243485,-0.040091,0.969076,-0.243485,-0.040091,0.969076, + -0.243485,-0.040091,0.969076,-0.294513,-0.047395,0.954472,-0.294513,-0.047395,0.954472,-0.294513,-0.047395,0.954472, + -0.967274,-0.152162,-0.203044,-0.967274,-0.152162,-0.203044,-0.967274,-0.152162,-0.203044,-0.967274,-0.152162,-0.203044, + -0.882666,0.446488,-0.146797,-0.882666,0.446488,-0.146797,-0.882666,0.446488,-0.146797,-0.882666,0.446488,-0.146797, + -0.239618,-0.046766,0.969740,-0.239618,-0.046766,0.969740,-0.239618,-0.046766,0.969740,0.963763,-0.098684,0.247835, + 0.963763,-0.098684,0.247835,0.963763,-0.098684,0.247835,0.963763,-0.098684,0.247835,-0.921503,-0.359787,-0.146240, + -0.921503,-0.359787,-0.146240,-0.921503,-0.359787,-0.146240,-0.921503,-0.359787,-0.146240,-0.262702,-0.084266,0.961190, + -0.262702,-0.084266,0.961190,-0.262702,-0.084266,0.961190,-0.498149,0.864061,-0.072436,-0.498149,0.864061,-0.072436, + -0.498149,0.864061,-0.072436,-0.498149,0.864061,-0.072436,-0.216428,-0.968459,-0.123474,-0.216428,-0.968459,-0.123474, + -0.216428,-0.968459,-0.123474,-0.216428,-0.968459,-0.123474,-0.247541,-0.123605,0.960961,-0.247541,-0.123605,0.960961, + -0.247541,-0.123605,0.960961,-0.203153,-0.104548,0.973549,-0.203153,-0.104548,0.973549,-0.203153,-0.104548,0.973549, + 0.589373,0.766699,0.254581,0.589373,0.766699,0.254581,0.589373,0.766699,0.254581,0.589373,0.766699,0.254581, + 0.758628,-0.621359,0.195947,0.758628,-0.621359,0.195947,0.758628,-0.621359,0.195947,0.758628,-0.621359,0.195947, + -0.268011,-0.088694,0.959324,-0.268011,-0.088694,0.959324,-0.268011,-0.088694,0.959324,-0.945768,-0.190805,-0.262901, + -0.945768,-0.190805,-0.262901,-0.945768,-0.190805,-0.262901,-0.945768,-0.190805,-0.262901,0.904369,0.210431,0.371261, + 0.904369,0.210431,0.371261,0.904369,0.210431,0.371261,0.904369,0.210431,0.371261,-0.258416,-0.034975,0.965400, + -0.258416,-0.034975,0.965400,-0.258416,-0.034975,0.965400,0.931762,0.250036,0.263252,0.931762,0.250036,0.263252, + 0.931762,0.250036,0.263252,0.931762,0.250036,0.263252,-0.850368,0.490274,-0.191066,-0.850368,0.490274,-0.191066, + -0.850368,0.490274,-0.191066,-0.850368,0.490274,-0.191066,-0.310009,-0.056391,0.949060,-0.310009,-0.056391,0.949060, + -0.310009,-0.056391,0.949060,-0.303190,-0.105799,0.947039,-0.303190,-0.105799,0.947039,-0.303190,-0.105799,0.947039, + 0.557042,-0.819025,0.137483,0.557042,-0.819025,0.137483,0.557042,-0.819025,0.137483,0.557042,-0.819025,0.137483, + -0.779727,-0.590449,-0.208317,-0.779727,-0.590449,-0.208317,-0.779727,-0.590449,-0.208317,-0.779727,-0.590449,-0.208317, + -0.272600,-0.046394,0.961008,-0.272600,-0.046394,0.961008,-0.272600,-0.046394,0.961008,0.058578,0.994778,0.083576, + 0.058578,0.994778,0.083576,0.058578,0.994778,0.083576,0.058578,0.994778,0.083576,-0.059120,-0.997670,0.034038, + -0.059120,-0.997670,0.034038,-0.059120,-0.997670,0.034038,-0.059120,-0.997670,0.034038,-0.224790,-0.071148,0.971806, + -0.224790,-0.071148,0.971806,-0.224790,-0.071148,0.971806,-0.834617,0.510777,-0.206209,-0.834617,0.510777,-0.206209, + -0.834617,0.510777,-0.206209,-0.834617,0.510777,-0.206209,-0.256533,-0.020517,0.966318,-0.256533,-0.020517,0.966318, + -0.256533,-0.020517,0.966318,-0.256533,-0.020517,0.966318,0.322724,0.125809,-0.938094,0.322724,0.125809,-0.938094, + 0.322724,0.125809,-0.938094,0.322724,0.125809,-0.938094,-0.530387,-0.828476,-0.179769,-0.530387,-0.828476,-0.179769, + -0.530387,-0.828476,-0.179769,-0.530387,-0.828476,-0.179769,0.528726,0.826763,0.192125,0.528726,0.826763,0.192125, + 0.528726,0.826763,0.192125,0.528726,0.826763,0.192125,-0.804433,0.561967,-0.192564,-0.804433,0.561967,-0.192564, + -0.804433,0.561967,-0.192564,-0.804433,0.561967,-0.192564,-0.811506,0.558541,-0.171725,-0.811506,0.558541,-0.171725, + -0.811506,0.558541,-0.171725,0.534172,0.827997,0.170534,0.534172,0.827997,0.170534,0.534172,0.827997,0.170534, + 0.534172,0.827997,0.170534,-0.254852,-0.066043,0.964722,-0.254852,-0.066043,0.964722,-0.254852,-0.066043,0.964722, + -0.254852,-0.066043,0.964722,0.277523,0.101886,-0.955301,0.277523,0.101886,-0.955301,0.277523,0.101886,-0.955301, + 0.277523,0.101886,-0.955301,0.295307,0.036413,-0.954708,0.295307,0.036413,-0.954708,0.295307,0.036413,-0.954708, + 0.295307,0.036413,-0.954708,-0.514990,-0.822495,-0.241426,-0.514990,-0.822495,-0.241426,-0.514990,-0.822495,-0.241426, + -0.514990,-0.822495,-0.241426,-0.811367,0.558708,-0.171837,-0.811367,0.558708,-0.171837,-0.811367,0.558708,-0.171837, + -0.260506,-0.011848,0.965399,-0.260506,-0.011848,0.965399,-0.260506,-0.011848,0.965399,-0.260506,-0.011848,0.965399, + 0.529635,0.826874,0.189119,0.529635,0.826874,0.189119,0.529635,0.826874,0.189119,0.529635,0.826874,0.189119, + -0.511537,-0.823532,-0.245204,-0.511537,-0.823532,-0.245204,-0.511537,-0.823532,-0.245204,-0.511537,-0.823532,-0.245204, + -0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971, + -0.810334,0.558979,-0.175790,-0.810334,0.558979,-0.175790,-0.810334,0.558979,-0.175790,-0.810334,0.558979,-0.175790, + 0.527658,0.826542,0.195973,0.527658,0.826542,0.195973,0.527658,0.826542,0.195973,0.527658,0.826542,0.195973, + 0.810329,-0.558985,0.175790,0.810329,-0.558985,0.175790,0.810329,-0.558985,0.175790,0.810329,-0.558985,0.175790, + 0.244235,0.073342,-0.966938,0.244235,0.073342,-0.966938,0.244235,0.073342,-0.966938,0.244235,0.073342,-0.966938, + 0.254850,0.066043,-0.964723,0.254850,0.066043,-0.964723,0.254850,0.066043,-0.964723,0.254850,0.066043,-0.964723, + -0.527661,-0.826540,-0.195971,-0.527661,-0.826540,-0.195971,-0.527661,-0.826540,-0.195971,-0.527661,-0.826540,-0.195971, + -0.810329,0.558985,-0.175788,-0.810329,0.558985,-0.175788,-0.810329,0.558985,-0.175788,-0.810329,0.558985,-0.175788, + 0.527660,0.826541,0.195971,0.527660,0.826541,0.195971,0.527660,0.826541,0.195971,0.527660,0.826541,0.195971, + 0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787, + 0.245749,0.072305,-0.966633,0.245749,0.072305,-0.966633,0.245749,0.072305,-0.966633,0.245749,0.072305,-0.966633, + 0.527656,0.826544,0.195972,0.527656,0.826544,0.195972,0.527656,0.826544,0.195972,0.527656,0.826544,0.195972, + -0.527661,-0.826541,-0.195970,-0.527661,-0.826541,-0.195970,-0.527661,-0.826541,-0.195970,-0.527661,-0.826541,-0.195970, + -0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789, + 0.527657,0.826543,0.195971,0.527657,0.826543,0.195971,0.527657,0.826543,0.195971,0.527657,0.826543,0.195971, + 0.810328,-0.558987,0.175788,0.810328,-0.558987,0.175788,0.810328,-0.558987,0.175788,0.810328,-0.558987,0.175788, + 0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724,0.254844,0.066046,-0.964724, + -0.810330,0.558984,-0.175791,-0.810330,0.558984,-0.175791,-0.810330,0.558984,-0.175791,-0.810330,0.558984,-0.175791, + -0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971, + -0.810331,0.558982,-0.175788,-0.810331,0.558982,-0.175788,-0.810331,0.558982,-0.175788,-0.810331,0.558982,-0.175788, + 0.527664,0.826539,0.195970,0.527664,0.826539,0.195970,0.527664,0.826539,0.195970,0.527664,0.826539,0.195970, + 0.810326,-0.558992,0.175787,0.810326,-0.558992,0.175787,0.810326,-0.558992,0.175787,0.810326,-0.558992,0.175787, + 0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725,0.254839,0.066044,-0.964725, + -0.527661,-0.826541,-0.195971,-0.527661,-0.826541,-0.195971,-0.527661,-0.826541,-0.195971,-0.527661,-0.826541,-0.195971, + -0.527657,-0.826542,-0.195973,-0.527657,-0.826542,-0.195973,-0.527657,-0.826542,-0.195973,-0.527657,-0.826542,-0.195973, + -0.810329,0.558986,-0.175788,-0.810329,0.558986,-0.175788,-0.810329,0.558986,-0.175788,-0.810329,0.558986,-0.175788, + 0.527660,0.826542,0.195968,0.527660,0.826542,0.195968,0.527660,0.826542,0.195968,0.527660,0.826542,0.195968, + 0.810328,-0.558988,0.175789,0.810328,-0.558988,0.175789,0.810328,-0.558988,0.175789,0.810328,-0.558988,0.175789, + 0.254845,0.066042,-0.964724,0.254845,0.066042,-0.964724,0.254845,0.066042,-0.964724,0.254845,0.066042,-0.964724, + 0.810330,-0.558985,0.175787,0.810330,-0.558985,0.175787,0.810330,-0.558985,0.175787,0.810330,-0.558985,0.175787, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725, + 0.527653,0.826546,0.195970,0.527653,0.826546,0.195970,0.527653,0.826546,0.195970,0.527653,0.826546,0.195970, + -0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789, + -0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972, + 0.810329,-0.558986,0.175787,0.810329,-0.558986,0.175787,0.810329,-0.558986,0.175787,0.810329,-0.558986,0.175787, + 0.254833,0.066049,-0.964727,0.254833,0.066049,-0.964727,0.254833,0.066049,-0.964727,0.254833,0.066049,-0.964727, + 0.527656,0.826543,0.195972,0.527656,0.826543,0.195972,0.527656,0.826543,0.195972,0.527656,0.826543,0.195972, + -0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787, + -0.527656,-0.826543,-0.195972,-0.527656,-0.826543,-0.195972,-0.527656,-0.826543,-0.195972,-0.527656,-0.826543,-0.195972, + 0.810330,-0.558984,0.175791,0.810330,-0.558984,0.175791,0.810330,-0.558984,0.175791,0.810330,-0.558984,0.175791, + -0.523718,-0.825442,-0.210631,-0.523718,-0.825442,-0.210631,-0.523718,-0.825442,-0.210631,-0.523718,-0.825442,-0.210631, + -0.807200,0.562000,-0.180509,-0.807200,0.562000,-0.180509,-0.807200,0.562000,-0.180509,-0.807200,0.562000,-0.180509, + 0.528432,0.830802,0.174724,0.528432,0.830802,0.174724,0.528432,0.830802,0.174724,0.528432,0.830802,0.174724, + 0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.254850,-0.066044,0.964723,-0.254850,-0.066044,0.964723,-0.254850,-0.066044,0.964723,-0.254850,-0.066044,0.964723, + 0.504810,0.817947,0.275915,0.504810,0.817947,0.275915,0.504810,0.817947,0.275915,0.504810,0.817947,0.275915, + -0.245747,-0.072302,0.966634,-0.245747,-0.072302,0.966634,-0.245747,-0.072302,0.966634,-0.245747,-0.072302,0.966634, + -0.244231,-0.073343,0.966940,-0.244231,-0.073343,0.966940,-0.244231,-0.073343,0.966940,-0.244231,-0.073343,0.966940, + -0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724,-0.254843,-0.066044,0.964724, + -0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723,-0.254847,-0.066045,0.964723, + -0.254847,-0.066042,0.964723,-0.254847,-0.066042,0.964723,-0.254847,-0.066042,0.964723,-0.254847,-0.066042,0.964723, + -0.527658,-0.826543,-0.195970,-0.527658,-0.826543,-0.195970,-0.527658,-0.826543,-0.195970,-0.527658,-0.826543,-0.195970, + -0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787, + 0.527659,0.826541,0.195974,0.527659,0.826541,0.195974,0.527659,0.826541,0.195974,0.527659,0.826541,0.195974, + 0.810333,-0.558980,0.175790,0.810333,-0.558980,0.175790,0.810333,-0.558980,0.175790,0.810333,-0.558980,0.175790, + 0.248620,0.070328,-0.966044,0.248620,0.070328,-0.966044,0.248620,0.070328,-0.966044,0.248620,0.070328,-0.966044, + 0.131483,0.148450,-0.980140,0.131483,0.148450,-0.980140,0.131483,0.148450,-0.980140,0.131483,0.148450,-0.980140, + -0.527658,-0.826542,-0.195971,-0.527658,-0.826542,-0.195971,-0.527658,-0.826542,-0.195971,-0.527658,-0.826542,-0.195971, + -0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787,-0.810330,0.558985,-0.175787, + 0.527654,0.826545,0.195971,0.527654,0.826545,0.195971,0.527654,0.826545,0.195971,0.527654,0.826545,0.195971, + 0.810326,-0.558989,0.175790,0.810326,-0.558989,0.175790,0.810326,-0.558989,0.175790,0.810326,-0.558989,0.175790, + 0.248621,0.070331,-0.966044,0.248621,0.070331,-0.966044,0.248621,0.070331,-0.966044,0.248621,0.070331,-0.966044, + 0.805838,-0.560037,0.192309,0.805838,-0.560037,0.192309,0.805838,-0.560037,0.192309,0.805838,-0.560037,0.192309, + -0.527657,-0.826543,-0.195973,-0.527657,-0.826543,-0.195973,-0.527657,-0.826543,-0.195973,-0.527657,-0.826543,-0.195973, + -0.810332,0.558981,-0.175789,-0.810332,0.558981,-0.175789,-0.810332,0.558981,-0.175789,-0.810332,0.558981,-0.175789, + 0.527657,0.826543,0.195973,0.527657,0.826543,0.195973,0.527657,0.826543,0.195973,0.527657,0.826543,0.195973, + 0.810328,-0.558987,0.175790,0.810328,-0.558987,0.175790,0.810328,-0.558987,0.175790,0.810328,-0.558987,0.175790, + 0.235940,0.079020,-0.968550,0.235940,0.079020,-0.968550,0.235940,0.079020,-0.968550,0.235940,0.079020,-0.968550, + -0.810326,0.558990,-0.175787,-0.810326,0.558990,-0.175787,-0.810326,0.558990,-0.175787,-0.810326,0.558990,-0.175787, + -0.527656,-0.826543,-0.195973,-0.527656,-0.826543,-0.195973,-0.527656,-0.826543,-0.195973,-0.527656,-0.826543,-0.195973, + -0.810323,0.558994,-0.175789,-0.810323,0.558994,-0.175789,-0.810323,0.558994,-0.175789,-0.810323,0.558994,-0.175789, + 0.527658,0.826542,0.195972,0.527658,0.826542,0.195972,0.527658,0.826542,0.195972,0.527658,0.826542,0.195972, + 0.810329,-0.558985,0.175791,0.810329,-0.558985,0.175791,0.810329,-0.558985,0.175791,0.810329,-0.558985,0.175791, + 0.248623,0.070328,-0.966044,0.248623,0.070328,-0.966044,0.248623,0.070328,-0.966044,0.248623,0.070328,-0.966044, + 0.522457,0.825281,0.214359,0.522457,0.825281,0.214359,0.522457,0.825281,0.214359,0.522457,0.825281,0.214359, + -0.524459,-0.828739,-0.195279,-0.524459,-0.828739,-0.195279,-0.524459,-0.828739,-0.195279,-0.524459,-0.828739,-0.195279, + -0.810330,0.558984,-0.175788,-0.810330,0.558984,-0.175788,-0.810330,0.558984,-0.175788,-0.810330,0.558984,-0.175788, + 0.527657,0.826543,0.195972,0.527657,0.826543,0.195972,0.527657,0.826543,0.195972,0.527657,0.826543,0.195972, + 0.768363,-0.562780,0.304788,0.768363,-0.562780,0.304788,0.768363,-0.562780,0.304788,0.768363,-0.562780,0.304788, + 0.224265,0.086965,-0.970640,0.224265,0.086965,-0.970640,0.224265,0.086965,-0.970640,0.224265,0.086965,-0.970640, + 0.849099,-0.519901,-0.093457,0.849099,-0.519901,-0.093457,0.849099,-0.519901,-0.093457,0.849099,-0.519901,-0.093457, + 0.218846,0.090640,-0.971540,0.218846,0.090640,-0.971540,0.218846,0.090640,-0.971540,0.218846,0.090640,-0.971540, + -0.805841,0.560034,-0.192309,-0.805841,0.560034,-0.192309,-0.805841,0.560034,-0.192309,-0.805841,0.560034,-0.192309, + -0.842527,0.538644,-0.003326,-0.842527,0.538644,-0.003326,-0.842527,0.538644,-0.003326,-0.842527,0.538644,-0.003326, + -0.522457,-0.825281,-0.214359,-0.522457,-0.825281,-0.214359,-0.522457,-0.825281,-0.214359,-0.522457,-0.825281,-0.214359, + -0.504811,-0.817946,-0.275916,-0.504811,-0.817946,-0.275916,-0.504811,-0.817946,-0.275916,-0.504811,-0.817946,-0.275916, + -0.810326,0.558990,-0.175791,-0.810326,0.558990,-0.175791,-0.810326,0.558990,-0.175791,-0.810326,0.558990,-0.175791, + -0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972,-0.527657,-0.826543,-0.195972, + 0.527659,0.826541,0.195976,0.527659,0.826541,0.195976,0.527659,0.826541,0.195976,0.527659,0.826541,0.195976, + 0.306050,0.158010,-0.938811,0.306050,0.158010,-0.938811,0.306050,0.158010,-0.938811,0.306050,0.158010,-0.938811, + 0.816359,-0.555780,0.157054,0.816359,-0.555780,0.157054,0.816359,-0.555780,0.157054,0.816359,-0.555780,0.157054, + -0.810333,0.558980,-0.175787,-0.810333,0.558980,-0.175787,-0.810333,0.558980,-0.175787,-0.810333,0.558980,-0.175787, + -0.537922,-0.828590,-0.155170,-0.537922,-0.828590,-0.155170,-0.537922,-0.828590,-0.155170,-0.537922,-0.828590,-0.155170, + 0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725,0.254842,0.066044,-0.964725, + 0.810331,-0.558984,0.175787,0.810331,-0.558984,0.175787,0.810331,-0.558984,0.175787,0.810331,-0.558984,0.175787, + 0.527658,0.826542,0.195972,0.527658,0.826542,0.195972,0.527658,0.826542,0.195972,0.527658,0.826542,0.195972, + -0.238577,-0.077218,0.968049,-0.238577,-0.077218,0.968049,-0.238577,-0.077218,0.968049,-0.238577,-0.077218,0.968049, + 0.242285,0.046478,-0.969091,0.242285,0.046478,-0.969091,0.242285,0.046478,-0.969091,0.242285,0.046478,-0.969091, + 0.245765,0.072299,-0.966630,0.245765,0.072299,-0.966630,0.245765,0.072299,-0.966630,0.245765,0.072299,-0.966630, + 0.810336,-0.558977,0.175784,0.810336,-0.558977,0.175784,0.810336,-0.558977,0.175784,0.810336,-0.558977,0.175784, + 0.527655,0.826545,0.195970,0.527655,0.826545,0.195970,0.527655,0.826545,0.195970,0.527655,0.826545,0.195970, + -0.810328,0.558988,-0.175788,-0.810328,0.558988,-0.175788,-0.810328,0.558988,-0.175788,-0.810328,0.558988,-0.175788, + -0.527654,-0.826544,-0.195976,-0.527654,-0.826544,-0.195976,-0.527654,-0.826544,-0.195976,-0.527654,-0.826544,-0.195976, + 0.537918,0.828592,0.155175,0.537918,0.828592,0.155175,0.537918,0.828592,0.155175,0.537918,0.828592,0.155175, + 0.810327,-0.558988,0.175794,0.810327,-0.558988,0.175794,0.810327,-0.558988,0.175794,0.810327,-0.558988,0.175794, + 0.232398,0.031181,-0.972121,0.232398,0.031181,-0.972121,0.232398,0.031181,-0.972121,0.232398,0.031181,-0.972121, + -0.527659,-0.826542,-0.195972,-0.527659,-0.826542,-0.195972,-0.527659,-0.826542,-0.195972,-0.527659,-0.826542,-0.195972, + -0.527658,-0.826541,-0.195976,-0.527658,-0.826541,-0.195976,-0.527658,-0.826541,-0.195976,-0.527658,-0.826541,-0.195976, + -0.810331,0.558981,-0.175793,-0.810331,0.558981,-0.175793,-0.810331,0.558981,-0.175793,-0.810331,0.558981,-0.175793, + 0.527658,0.826542,0.195970,0.527658,0.826542,0.195970,0.527658,0.826542,0.195970,0.527658,0.826542,0.195970, + 0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787, + 0.245063,0.072776,-0.966772,0.245063,0.072776,-0.966772,0.245063,0.072776,-0.966772,0.245063,0.072776,-0.966772, + 0.839033,-0.543873,0.015041,0.839033,-0.543873,0.015041,0.839033,-0.543873,0.015041,0.839033,-0.543873,0.015041, + 0.249902,0.058321,-0.966513,0.249902,0.058321,-0.966513,0.249902,0.058321,-0.966513,0.249902,0.058321,-0.966513, + 0.527652,0.826546,0.195972,0.527652,0.826546,0.195972,0.527652,0.826546,0.195972,0.527652,0.826546,0.195972, + -0.804368,0.560556,-0.196898,-0.804368,0.560556,-0.196898,-0.804368,0.560556,-0.196898,-0.804368,0.560556,-0.196898, + -0.527661,-0.826540,-0.195975,-0.527661,-0.826540,-0.195975,-0.527661,-0.826540,-0.195975,-0.527661,-0.826540,-0.195975, + -0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724,-0.254843,-0.066047,0.964724, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + -0.502745,-0.799464,-0.328792,-0.502745,-0.799464,-0.328792,-0.502745,-0.799464,-0.328792,-0.502745,-0.799464,-0.328792, + -0.508516,-0.853081,-0.116896,-0.508516,-0.853081,-0.116896,-0.508516,-0.853081,-0.116896,-0.508516,-0.853081,-0.116896, + 0.740190,-0.334191,-0.583468,0.740190,-0.334191,-0.583468,0.740190,-0.334191,-0.583468,0.740190,-0.334191,-0.583468, + 0.513914,0.831016,0.212849,0.513914,0.831016,0.212849,0.513914,0.831016,0.212849,0.513914,0.831016,0.212849, + 0.559778,0.813787,0.156206,0.559778,0.813787,0.156206,0.559778,0.813787,0.156206,0.559778,0.813787,0.156206, + 0.740048,-0.334034,-0.583738,0.740048,-0.334034,-0.583738,0.740048,-0.334034,-0.583738,0.740048,-0.334034,-0.583738, + -0.556448,-0.815245,-0.160441,-0.556448,-0.815245,-0.160441,-0.556448,-0.815245,-0.160441,-0.556448,-0.815245,-0.160441, + 0.011205,0.223909,-0.974546,0.011205,0.223909,-0.974546,0.011205,0.223909,-0.974546,0.011205,0.223909,-0.974546, + 0.507525,0.854175,0.113152,0.507525,0.854175,0.113152,0.507525,0.854175,0.113152,0.507525,0.854175,0.113152, + -0.467749,-0.832017,-0.298260,-0.467749,-0.832017,-0.298260,-0.467749,-0.832017,-0.298260,-0.467749,-0.832017,-0.298260, + 0.010110,0.224577,-0.974404,0.010110,0.224577,-0.974404,0.010110,0.224577,-0.974404,0.010110,0.224577,-0.974404, + 0.535649,0.811747,0.232696,0.535649,0.811747,0.232696,0.535649,0.811747,0.232696,0.535649,0.811747,0.232696, + 0.841864,-0.498284,-0.207313,0.841864,-0.498284,-0.207313,0.841864,-0.498284,-0.207313,0.841864,-0.498284,-0.207313, + 0.004973,-0.210055,0.977677,0.004973,-0.210055,0.977677,0.004973,-0.210055,0.977677,0.004973,-0.210055,0.977677, + -0.730421,0.285146,0.620627,-0.730421,0.285146,0.620627,-0.730421,0.285146,0.620627,-0.730421,0.285146,0.620627, + -0.197897,0.376560,-0.905008,-0.197897,0.376560,-0.905008,-0.197897,0.376560,-0.905008,-0.197897,0.376560,-0.905008, + -0.507057,-0.840383,-0.191440,-0.507057,-0.840383,-0.191440,-0.507057,-0.840383,-0.191440,-0.507057,-0.840383,-0.191440, + 0.814453,-0.557796,0.159777,0.814453,-0.557796,0.159777,0.814453,-0.557796,0.159777,0.814453,-0.557796,0.159777, + 0.001221,0.206241,-0.978500,0.001221,0.206241,-0.978500,0.001221,0.206241,-0.978500,0.001221,0.206241,-0.978500, + 0.735737,-0.297158,-0.608595,0.735737,-0.297158,-0.608595,0.735737,-0.297158,-0.608595,0.735737,-0.297158,-0.608595, + 0.563766,0.820125,0.097787,0.563766,0.820125,0.097787,0.563766,0.820125,0.097787,0.563766,0.820125,0.097787, + 0.524405,0.847979,0.077011,0.524405,0.847979,0.077011,0.524405,0.847979,0.077011,0.524405,0.847979,0.077011, + -0.552596,-0.799233,-0.236355,-0.552596,-0.799233,-0.236355,-0.552596,-0.799233,-0.236355,-0.552596,-0.799233,-0.236355, + -0.802086,0.560785,-0.205371,-0.802086,0.560785,-0.205371,-0.802086,0.560785,-0.205371,-0.802086,0.560785,-0.205371, + 0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789,0.810329,-0.558985,0.175789, + -0.532347,-0.827637,-0.177831,-0.532347,-0.827637,-0.177831,-0.532347,-0.827637,-0.177831,-0.532347,-0.827637,-0.177831, + -0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789, + 0.522919,0.825200,0.213542,0.522919,0.825200,0.213542,0.522919,0.825200,0.213542,0.522919,0.825200,0.213542, + -0.522736,-0.825144,-0.214206,-0.522736,-0.825144,-0.214206,-0.522736,-0.825144,-0.214206,0.536867,0.828442,0.159554, + 0.536867,0.828442,0.159554,0.536867,0.828442,0.159554,0.533869,0.827937,0.171767,0.533869,0.827937,0.171767, + 0.533869,0.827937,0.171767,0.533869,0.827937,0.171767,-0.524399,-0.825644,-0.208131,-0.524399,-0.825644,-0.208131, + -0.524399,-0.825644,-0.208131,-0.524399,-0.825644,-0.208131,-0.536743,-0.828422,-0.160075,-0.536743,-0.828422,-0.160075, + -0.536743,-0.828422,-0.160075,-0.536743,-0.828422,-0.160075,-0.819193,0.556156,-0.140043,-0.819193,0.556156,-0.140043, + -0.819193,0.556156,-0.140043,-0.819193,0.556156,-0.140043,0.536737,0.828426,0.160074,0.536737,0.828426,0.160074, + 0.536737,0.828426,0.160074,0.536737,0.828426,0.160074,0.819187,-0.556166,0.140042,0.819187,-0.556166,0.140042, + 0.819187,-0.556166,0.140042,0.819187,-0.556166,0.140042,-0.530065,-0.827137,-0.186751,-0.530065,-0.827137,-0.186751, + -0.530065,-0.827137,-0.186751,-0.530065,-0.827137,-0.186751,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.530058,0.827142,0.186750,0.530058,0.827142,0.186750, + 0.530058,0.827142,0.186750,0.530058,0.827142,0.186750,0.814097,-0.557929,0.161124,0.814097,-0.557929,0.161124, + 0.814097,-0.557929,0.161124,0.814097,-0.557929,0.161124,-0.525200,-0.825875,-0.205172,-0.525200,-0.825875,-0.205172, + -0.525200,-0.825875,-0.205172,-0.525200,-0.825875,-0.205172,0.525197,0.825876,0.205172,0.525197,0.825876,0.205172, + 0.525197,0.825876,0.205172,0.525197,0.825876,0.205172,0.814101,-0.557923,0.161125,0.814101,-0.557923,0.161125, + 0.814101,-0.557923,0.161125,0.814101,-0.557923,0.161125,-0.819149,0.556188,-0.140181,-0.819149,0.556188,-0.140181, + -0.819149,0.556188,-0.140181,-0.819149,0.556188,-0.140181,-0.524666,-0.825725,-0.207131,-0.524666,-0.825725,-0.207131, + -0.524666,-0.825725,-0.207131,-0.524666,-0.825725,-0.207131,0.522800,0.825162,0.213982,0.522800,0.825162,0.213982, + 0.522800,0.825162,0.213982,0.522800,0.825162,0.213982,0.819150,-0.556185,0.140180,0.819150,-0.556185,0.140180, + 0.819150,-0.556185,0.140180,0.819150,-0.556185,0.140180,-0.227577,-0.084719,0.970068,-0.227577,-0.084719,0.970068, + -0.227577,-0.084719,0.970068,-0.227577,-0.084719,0.970068,-0.522751,-0.825359,-0.213340,-0.522751,-0.825359,-0.213340, + -0.522751,-0.825359,-0.213340,-0.522751,-0.825359,-0.213340,-0.814824,0.557692,-0.158248,-0.814824,0.557692,-0.158248, + -0.814824,0.557692,-0.158248,-0.814824,0.557692,-0.158248,0.522749,0.825361,0.213339,0.522749,0.825361,0.213339, + 0.522749,0.825361,0.213339,0.522749,0.825361,0.213339,0.814818,-0.557701,0.158247,0.814818,-0.557701,0.158247, + 0.814818,-0.557701,0.158247,0.814818,-0.557701,0.158247,-0.525187,-0.825982,-0.204773,-0.525187,-0.825982,-0.204773, + -0.525187,-0.825982,-0.204773,-0.525187,-0.825982,-0.204773,0.525196,0.825976,0.204776,0.525196,0.825976,0.204776, + 0.525196,0.825976,0.204776,0.525196,0.825976,0.204776,0.814817,-0.557702,0.158246,0.814817,-0.557702,0.158246, + 0.814817,-0.557702,0.158246,0.814817,-0.557702,0.158246,-0.530074,-0.827040,-0.187152,-0.530074,-0.827040,-0.187152, + -0.530074,-0.827040,-0.187152,-0.530074,-0.827040,-0.187152,0.530077,0.827038,0.187154,0.530077,0.827038,0.187154, + 0.530077,0.827038,0.187154,0.530077,0.827038,0.187154,0.814820,-0.557697,0.158246,0.814820,-0.557697,0.158246, + 0.814820,-0.557697,0.158246,0.814820,-0.557697,0.158246,-0.814821,0.557696,-0.158247,-0.814821,0.557696,-0.158247, + -0.814821,0.557696,-0.158247,-0.814821,0.557696,-0.158247,-0.532514,-0.827472,-0.178099,-0.532514,-0.827472,-0.178099, + -0.532514,-0.827472,-0.178099,-0.532514,-0.827472,-0.178099,0.463098,0.870933,0.164363,0.463098,0.870933,0.164363, + 0.463098,0.870933,0.164363,0.463098,0.870933,0.164363,0.814819,-0.557699,0.158246,0.814819,-0.557699,0.158246, + 0.814819,-0.557699,0.158246,0.814819,-0.557699,0.158246,0.802292,-0.560728,0.204725,0.802292,-0.560728,0.204725, + 0.802292,-0.560728,0.204725,0.802292,-0.560728,0.204725,-0.802288,0.560733,-0.204724,-0.802288,0.560733,-0.204724, + -0.802288,0.560733,-0.204724,-0.802288,0.560733,-0.204724,0.536509,0.828387,0.161039,0.536509,0.828387,0.161039, + 0.536509,0.828387,0.161039,0.536509,0.828387,0.161039,0.816673,-0.557079,0.150691,0.816673,-0.557079,0.150691, + 0.816673,-0.557079,0.150691,0.816673,-0.557079,0.150691,-0.816669,0.557085,-0.150690,-0.816669,0.557085,-0.150690, + -0.816669,0.557085,-0.150690,-0.816669,0.557085,-0.150690,0.536387,0.828371,0.161525,0.536387,0.828371,0.161525, + 0.536387,0.828371,0.161525,0.536387,0.828371,0.161525,0.814231,-0.558630,0.157989,0.814231,-0.558630,0.157989, + 0.814231,-0.558630,0.157989,0.814231,-0.558630,0.157989,-0.814033,0.558712,-0.158718,-0.814033,0.558712,-0.158718, + -0.814033,0.558712,-0.158718,-0.814033,0.558712,-0.158718,0.525613,0.825090,0.207259,0.525613,0.825090,0.207259, + 0.525613,0.825090,0.207259,0.525613,0.825090,0.207259,0.803342,-0.560796,0.200375,0.803342,-0.560796,0.200375, + 0.803342,-0.560796,0.200375,0.803342,-0.560796,0.200375,-0.803335,0.560806,-0.200373,-0.803335,0.560806,-0.200373, + -0.803335,0.560806,-0.200373,-0.803335,0.560806,-0.200373,0.524692,0.825725,0.207065,0.524692,0.825725,0.207065, + 0.524692,0.825725,0.207065,0.524692,0.825725,0.207065,-0.816766,0.557039,-0.150338,-0.816766,0.557039,-0.150338, + -0.816766,0.557039,-0.150338,-0.816766,0.557039,-0.150338,0.816755,-0.557056,0.150333,0.816755,-0.557056,0.150333, + 0.816755,-0.557056,0.150333,0.816755,-0.557056,0.150333,-0.523113,-0.825256,-0.212850,-0.523113,-0.825256,-0.212850, + -0.523113,-0.825256,-0.212850,-0.523113,-0.825256,-0.212850,-0.802432,0.560691,-0.204278,-0.802432,0.560691,-0.204278, + -0.802432,0.560691,-0.204278,-0.802432,0.560691,-0.204278,0.802425,-0.560701,0.204276,0.802425,-0.560701,0.204276, + 0.802425,-0.560701,0.204276,0.802425,-0.560701,0.204276,-0.523183,-0.825280,-0.212586,-0.523183,-0.825280,-0.212586, + -0.523183,-0.825280,-0.212586,-0.523183,-0.825280,-0.212586,-0.803729,0.560189,-0.200519,-0.803729,0.560189,-0.200519, + -0.803729,0.560189,-0.200519,-0.803729,0.560189,-0.200519,0.803726,-0.560194,0.200518,0.803726,-0.560194,0.200518, + 0.803726,-0.560194,0.200518,0.803726,-0.560194,0.200518,-0.530673,-0.827272,-0.184410,-0.530673,-0.827272,-0.184410, + -0.530673,-0.827272,-0.184410,-0.530673,-0.827272,-0.184410,-0.815377,0.556749,-0.158714,-0.815377,0.556749,-0.158714, + -0.815377,0.556749,-0.158714,-0.815377,0.556749,-0.158714,0.815553,-0.556704,0.157965,0.815553,-0.556704,0.157965, + 0.815553,-0.556704,0.157965,0.815553,-0.556704,0.157965,-0.529764,-0.827971,-0.183889,-0.529764,-0.827971,-0.183889, + -0.529764,-0.827971,-0.183889,-0.529764,-0.827971,-0.183889,0.522531,0.825078,0.214959,0.522531,0.825078,0.214959, + 0.522531,0.825078,0.214959,0.522531,0.825078,0.214959,0.799840,-0.561121,0.213070,0.799840,-0.561121,0.213070, + 0.799840,-0.561121,0.213070,0.799840,-0.561121,0.213070,-0.522526,-0.825082,-0.214958,-0.522526,-0.825082,-0.214958, + -0.522526,-0.825082,-0.214958,-0.522526,-0.825082,-0.214958,-0.799838,0.561125,-0.213069,-0.799838,0.561125,-0.213069, + -0.799838,0.561125,-0.213069,-0.799838,0.561125,-0.213069,0.525199,0.825879,0.205158,0.525199,0.825879,0.205158, + 0.525199,0.825879,0.205158,0.525199,0.825879,0.205158,-0.525206,-0.825874,-0.205159,-0.525206,-0.825874,-0.205159, + -0.525206,-0.825874,-0.205159,-0.525206,-0.825874,-0.205159,-0.800074,0.561085,-0.212285,-0.800074,0.561085,-0.212285, + -0.800074,0.561085,-0.212285,-0.800074,0.561085,-0.212285,0.530067,0.827131,0.186768,0.530067,0.827131,0.186768, + 0.530067,0.827131,0.186768,0.530067,0.827131,0.186768,-0.530068,-0.827131,-0.186768,-0.530068,-0.827131,-0.186768, + -0.530068,-0.827131,-0.186768,-0.530068,-0.827131,-0.186768,-0.800070,0.561091,-0.212284,-0.800070,0.561091,-0.212284, + -0.800070,0.561091,-0.212284,-0.800070,0.561091,-0.212284,0.800046,-0.561093,0.212371,0.800046,-0.561093,0.212371, + 0.800046,-0.561093,0.212371,0.800046,-0.561093,0.212371,0.537013,0.828457,0.158981,0.537013,0.828457,0.158981, + 0.537013,0.828457,0.158981,0.537013,0.828457,0.158981,-0.537008,-0.828461,-0.158980,-0.537008,-0.828461,-0.158980, + -0.537008,-0.828461,-0.158980,-0.537008,-0.828461,-0.158980,-0.800043,0.561096,-0.212371,-0.800043,0.561096,-0.212371, + -0.800043,0.561096,-0.212371,-0.800043,0.561096,-0.212371,0.532075,0.827775,0.178003,0.532075,0.827775,0.178003, + 0.532075,0.827775,0.178003,0.532075,0.827775,0.178003,0.805569,-0.560093,0.193272,0.805569,-0.560093,0.193272, + 0.805569,-0.560093,0.193272,0.805569,-0.560093,0.193272,-0.532076,-0.827774,-0.178003,-0.532076,-0.827774,-0.178003, + -0.532076,-0.827774,-0.178003,-0.532076,-0.827774,-0.178003,-0.805574,0.560085,-0.193273,-0.805574,0.560085,-0.193273, + -0.805574,0.560085,-0.193273,-0.805574,0.560085,-0.193273,0.529863,0.827186,0.187107,0.529863,0.827186,0.187107, + 0.529863,0.827186,0.187107,0.529863,0.827186,0.187107,-0.529860,-0.827188,-0.187106,-0.529860,-0.827188,-0.187106, + -0.529860,-0.827188,-0.187106,-0.529860,-0.827188,-0.187106,-0.805573,0.560087,-0.193273,-0.805573,0.560087,-0.193273, + -0.805573,0.560087,-0.193273,-0.805573,0.560087,-0.193273,0.525411,0.825828,0.204822,0.525411,0.825828,0.204822, + 0.525411,0.825828,0.204822,0.525411,0.825828,0.204822,-0.525411,-0.825828,-0.204821,-0.525411,-0.825828,-0.204821, + -0.525411,-0.825828,-0.204821,-0.525411,-0.825828,-0.204821,-0.805568,0.560094,-0.193272,-0.805568,0.560094,-0.193272, + -0.805568,0.560094,-0.193272,-0.805568,0.560094,-0.193272,0.805568,-0.560095,0.193272,0.805568,-0.560095,0.193272, + 0.805568,-0.560095,0.193272,0.805568,-0.560095,0.193272,0.523172,0.825069,0.213430,0.523172,0.825069,0.213430, + 0.523172,0.825069,0.213430,0.523172,0.825069,0.213430,-0.454561,-0.868732,-0.196671,-0.454561,-0.868732,-0.196671, + -0.454561,-0.868732,-0.196671,-0.454561,-0.868732,-0.196671,-0.805573,0.560087,-0.193273,-0.805573,0.560087,-0.193273, + -0.805573,0.560087,-0.193273,-0.805573,0.560087,-0.193273,-0.236362,-0.078726,0.968470,-0.236362,-0.078726,0.968470, + -0.236362,-0.078726,0.968470,-0.236362,-0.078726,0.968470,0.805835,-0.560043,0.192307,0.805835,-0.560043,0.192307, + 0.805835,-0.560043,0.192307,0.805835,-0.560043,0.192307,0.524250,0.825750,0.208085,0.524250,0.825750,0.208085, + 0.524250,0.825750,0.208085,0.524250,0.825750,0.208085,-0.805836,0.560042,-0.192307,-0.805836,0.560042,-0.192307, + -0.805836,0.560042,-0.192307,-0.805836,0.560042,-0.192307,-0.524251,-0.825749,-0.208085,-0.524251,-0.825749,-0.208085, + -0.524251,-0.825749,-0.208085,-0.524251,-0.825749,-0.208085,0.805836,-0.560041,0.192307,0.805836,-0.560041,0.192307, + 0.805836,-0.560041,0.192307,0.805836,-0.560041,0.192307,0.527657,0.826543,0.195972,0.527657,0.826543,0.195972, + 0.527657,0.826543,0.195972,0.527657,0.826543,0.195972,-0.805833,0.560045,-0.192307,-0.805833,0.560045,-0.192307, + -0.805833,0.560045,-0.192307,-0.805833,0.560045,-0.192307,-0.527654,-0.826545,-0.195971,-0.527654,-0.826545,-0.195971, + -0.527654,-0.826545,-0.195971,-0.527654,-0.826545,-0.195971,0.805844,-0.560030,0.192309,0.805844,-0.560030,0.192309, + 0.805844,-0.560030,0.192309,0.805844,-0.560030,0.192309,0.524255,0.825746,0.208088,0.524255,0.825746,0.208088, + 0.524255,0.825746,0.208088,0.524255,0.825746,0.208088,-0.805843,0.560030,-0.192310,-0.805843,0.560030,-0.192310, + -0.805843,0.560030,-0.192310,-0.805843,0.560030,-0.192310,-0.527657,-0.826543,-0.195973,-0.527657,-0.826543,-0.195973, + -0.527657,-0.826543,-0.195973,-0.527657,-0.826543,-0.195973,0.254842,0.066049,-0.964724,0.254842,0.066049,-0.964724, + 0.254842,0.066049,-0.964724,0.254842,0.066049,-0.964724,0.527654,0.826545,0.195972,0.527654,0.826545,0.195972, + 0.527654,0.826545,0.195972,0.527654,0.826545,0.195972,-0.810331,0.558983,-0.175791,-0.810331,0.558983,-0.175791, + -0.810331,0.558983,-0.175791,-0.810331,0.558983,-0.175791,-0.527661,-0.826539,-0.195978,-0.527661,-0.826539,-0.195978, + -0.527661,-0.826539,-0.195978,-0.527661,-0.826539,-0.195978,0.810328,-0.558986,0.175795,0.810328,-0.558986,0.175795, + 0.810328,-0.558986,0.175795,0.810328,-0.558986,0.175795,0.115474,0.157924,-0.980676,0.115474,0.157924,-0.980676, + 0.115474,0.157924,-0.980676,0.115474,0.157924,-0.980676,0.527657,0.826543,0.195973,0.527657,0.826543,0.195973, + 0.527657,0.826543,0.195973,0.527657,0.826543,0.195973,-0.843913,0.536225,0.016557,-0.843913,0.536225,0.016557, + -0.843913,0.536225,0.016557,-0.843913,0.536225,0.016557,-0.527661,-0.826540,-0.195971,-0.527661,-0.826540,-0.195971, + -0.527661,-0.826540,-0.195971,-0.527661,-0.826540,-0.195971,0.844524,-0.535268,-0.016329,0.844524,-0.535268,-0.016329, + 0.844524,-0.535268,-0.016329,0.844524,-0.535268,-0.016329,0.804863,-0.565275,0.180721,0.804863,-0.565275,0.180721, + 0.804863,-0.565275,0.180721,0.804863,-0.565275,0.180721,0.190410,0.536528,0.822120,0.190410,0.536528,0.822120, + 0.190410,0.536528,0.822120,0.190410,0.536528,0.822120,-0.804859,0.565279,-0.180723,-0.804859,0.565279,-0.180723, + -0.804859,0.565279,-0.180723,-0.804859,0.565279,-0.180723,-0.185324,-0.531021,-0.826844,-0.185324,-0.531021,-0.826844, + -0.185324,-0.531021,-0.826844,-0.185324,-0.531021,-0.826844,0.804958,-0.565044,0.181021,0.804958,-0.565044,0.181021, + 0.804958,-0.565044,0.181021,0.804958,-0.565044,0.181021,0.207780,0.553586,0.806455,0.207780,0.553586,0.806455, + 0.207780,0.553586,0.806455,0.207780,0.553586,0.806455,-0.804958,0.565043,-0.181023,-0.804958,0.565043,-0.181023, + -0.804958,0.565043,-0.181023,-0.804958,0.565043,-0.181023,-0.207792,-0.553578,-0.806457,-0.207792,-0.553578,-0.806457, + -0.207792,-0.553578,-0.806457,-0.207792,-0.553578,-0.806457,-0.808521,0.563908,-0.168228,-0.808521,0.563908,-0.168228, + -0.808521,0.563908,-0.168228,-0.808521,0.563908,-0.168228,-0.548943,-0.620630,0.559893,-0.548943,-0.620630,0.559893, + -0.548943,-0.620630,0.559893,-0.548943,-0.620630,0.559893,0.808518,-0.563914,0.168226,0.808518,-0.563914,0.168226, + 0.808518,-0.563914,0.168226,0.808518,-0.563914,0.168226,0.548937,0.620637,-0.559891,0.548937,0.620637,-0.559891, + 0.548937,0.620637,-0.559891,0.548937,0.620637,-0.559891,-0.808521,0.563905,-0.168242,-0.808521,0.563905,-0.168242, + -0.808521,0.563905,-0.168242,-0.808521,0.563905,-0.168242,-0.542014,-0.604489,0.583793,-0.542014,-0.604489,0.583793, + -0.542014,-0.604489,0.583793,-0.542014,-0.604489,0.583793,0.808524,-0.563901,0.168238,0.808524,-0.563901,0.168238, + 0.808524,-0.563901,0.168238,0.808524,-0.563901,0.168238,0.542023,0.604483,-0.583790,0.542023,0.604483,-0.583790, + 0.542023,0.604483,-0.583790,0.542023,0.604483,-0.583790,-0.535124,-0.822691,-0.191890,-0.535124,-0.822691,-0.191890, + -0.535124,-0.822691,-0.191890,-0.535124,-0.822691,-0.191890,0.392786,-0.441973,0.806461,0.392786,-0.441973,0.806461, + 0.392786,-0.441973,0.806461,0.392786,-0.441973,0.806461,0.535124,0.822691,0.191890,0.535124,0.822691,0.191890, + 0.535124,0.822691,0.191890,0.535124,0.822691,0.191890,-0.391839,0.441496,-0.807183,-0.391839,0.441496,-0.807183, + -0.391839,0.441496,-0.807183,-0.391839,0.441496,-0.807183,-0.476033,-0.861262,-0.177823,-0.476033,-0.861262,-0.177823, + -0.476033,-0.861262,-0.177823,-0.476033,-0.861262,-0.177823,0.417845,-0.399451,0.815993,0.417845,-0.399451,0.815993, + 0.417845,-0.399451,0.815993,0.417845,-0.399451,0.815993,0.476037,0.861259,0.177825,0.476037,0.861259,0.177825, + 0.476037,0.861259,0.177825,0.476037,0.861259,0.177825,-0.417854,0.399451,-0.815988,-0.417854,0.399451,-0.815988, + -0.417854,0.399451,-0.815988,-0.417854,0.399451,-0.815988,0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788, + 0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788,-0.810327,0.558989,-0.175788,-0.810327,0.558989,-0.175788, + -0.810327,0.558989,-0.175788,-0.810327,0.558989,-0.175788,0.554668,0.828453,0.077521,0.554668,0.828453,0.077521, + 0.554668,0.828453,0.077521,0.554668,0.828453,0.077521,-0.778689,0.562835,-0.277237,-0.778689,0.562835,-0.277237, + -0.778689,0.562835,-0.277237,-0.778689,0.562835,-0.277237,0.778681,-0.562847,0.277236,0.778681,-0.562847,0.277236, + 0.778681,-0.562847,0.277236,0.778681,-0.562847,0.277236,-0.511805,-0.821238,-0.252238,-0.511805,-0.821238,-0.252238, + -0.511805,-0.821238,-0.252238,-0.511805,-0.821238,-0.252238,0.831207,-0.549955,0.081520,0.831207,-0.549955,0.081520, + 0.831207,-0.549955,0.081520,0.831207,-0.549955,0.081520,-0.831204,0.549959,-0.081520,-0.831204,0.549959,-0.081520, + -0.831204,0.549959,-0.081520,-0.831204,0.549959,-0.081520,0.568328,0.822795,-0.003403,0.568328,0.822795,-0.003403, + 0.568328,0.822795,-0.003403,0.568328,0.822795,-0.003403,-0.831203,0.549960,-0.081519,-0.831203,0.549960,-0.081519, + -0.831203,0.549960,-0.081519,-0.831203,0.549960,-0.081519,0.831199,-0.549966,0.081520,0.831199,-0.549966,0.081520, + 0.831199,-0.549966,0.081520,0.831199,-0.549966,0.081520,-0.528994,-0.826875,-0.190898,-0.528994,-0.826875,-0.190898, + -0.528994,-0.826875,-0.190898,-0.528994,-0.826875,-0.190898,0.818508,-0.557178,0.139990,0.818508,-0.557178,0.139990, + 0.818508,-0.557178,0.139990,0.818508,-0.557178,0.139990,-0.821683,0.556167,-0.124558,-0.821683,0.556167,-0.124558, + -0.821683,0.556167,-0.124558,-0.821683,0.556167,-0.124558,0.534667,0.828077,0.168582,0.534667,0.828077,0.168582, + 0.534667,0.828077,0.168582,0.534667,0.828077,0.168582,0.800337,-0.560089,0.213916,0.800337,-0.560089,0.213916, + 0.800337,-0.560089,0.213916,0.800337,-0.560089,0.213916,-0.803475,0.559844,-0.202490,-0.803475,0.559844,-0.202490, + -0.803475,0.559844,-0.202490,-0.803475,0.559844,-0.202490,0.534655,0.828085,0.168578,0.534655,0.828085,0.168578, + 0.534655,0.828085,0.168578,0.534655,0.828085,0.168578,0.237461,0.038994,-0.970614,0.237461,0.038994,-0.970614, + 0.237461,0.038994,-0.970614,0.237461,0.038994,-0.970614,0.535703,0.828259,0.164347,0.535703,0.828259,0.164347, + 0.535703,0.828259,0.164347,0.535703,0.828259,0.164347,-0.237464,-0.039002,0.970613,-0.237464,-0.039002,0.970613, + -0.237464,-0.039002,0.970613,-0.237464,-0.039002,0.970613,0.237468,0.039006,-0.970612,0.237468,0.039006,-0.970612, + 0.237468,0.039006,-0.970612,0.237468,0.039006,-0.970612,0.535703,0.828259,0.164344,0.535703,0.828259,0.164344, + 0.535703,0.828259,0.164344,0.535703,0.828259,0.164344,-0.237465,-0.039001,0.970613,-0.237465,-0.039001,0.970613, + -0.237465,-0.039001,0.970613,-0.237465,-0.039001,0.970613,0.237469,0.039012,-0.970612,0.237469,0.039012,-0.970612, + 0.237469,0.039012,-0.970612,0.237469,0.039012,-0.970612,0.535704,0.828259,0.164342,0.535704,0.828259,0.164342, + 0.535704,0.828259,0.164342,0.535704,0.828259,0.164342,-0.237463,-0.039002,0.970613,-0.237463,-0.039002,0.970613, + -0.237463,-0.039002,0.970613,-0.237463,-0.039002,0.970613,0.810333,-0.558979,0.175790,0.810333,-0.558979,0.175790, + 0.810333,-0.558979,0.175790,0.810333,-0.558979,0.175790,0.535703,0.828259,0.164344,0.535703,0.828259,0.164344, + 0.535703,0.828259,0.164344,0.535703,0.828259,0.164344,-0.810326,0.558991,-0.175788,-0.810326,0.558991,-0.175788, + -0.810326,0.558991,-0.175788,-0.810326,0.558991,-0.175788,0.535702,0.828260,0.164344,0.535702,0.828260,0.164344, + 0.535702,0.828260,0.164344,0.535702,0.828260,0.164344,-0.538503,-0.828671,-0.152703,-0.538503,-0.828671,-0.152703, + -0.538503,-0.828671,-0.152703,-0.538503,-0.828671,-0.152703,-0.811530,0.558669,-0.171195,-0.811530,0.558669,-0.171195, + -0.811530,0.558669,-0.171195,-0.811530,0.558669,-0.171195,0.519026,0.823933,0.227480,0.519026,0.823933,0.227480, + 0.519026,0.823933,0.227480,0.519026,0.823933,0.227480,-0.811510,0.558671,-0.171283,-0.811510,0.558671,-0.171283, + -0.811510,0.558671,-0.171283,-0.811510,0.558671,-0.171283,0.242007,0.046029,-0.969182,0.242007,0.046029,-0.969182, + 0.242007,0.046029,-0.969182,0.242007,0.046029,-0.969182,-0.810330,0.558983,-0.175791,-0.810330,0.558983,-0.175791, + -0.810330,0.558983,-0.175791,-0.810330,0.558983,-0.175791,-0.810333,0.558980,-0.175789,-0.810333,0.558980,-0.175789, + -0.810333,0.558980,-0.175789,-0.810333,0.558980,-0.175789,-0.254840,-0.066044,0.964725,-0.254840,-0.066044,0.964725, + -0.254840,-0.066044,0.964725,-0.254840,-0.066044,0.964725,-0.811515,0.558664,-0.171285,-0.811515,0.558664,-0.171285, + -0.811515,0.558664,-0.171285,-0.811515,0.558664,-0.171285,-0.542874,-0.829075,-0.133876,-0.542874,-0.829075,-0.133876, + -0.542874,-0.829075,-0.133876,-0.542874,-0.829075,-0.133876,0.542012,0.829019,0.137660,0.542012,0.829019,0.137660, + 0.542012,0.829019,0.137660,0.542012,0.829019,0.137660,-0.810326,0.558991,-0.175787,-0.810326,0.558991,-0.175787, + -0.810326,0.558991,-0.175787,-0.810326,0.558991,-0.175787,-0.527658,-0.826542,-0.195974,-0.527658,-0.826542,-0.195974, + -0.527658,-0.826542,-0.195974,-0.527658,-0.826542,-0.195974,-0.810330,0.558985,-0.175789,-0.810330,0.558985,-0.175789, + -0.810330,0.558985,-0.175789,-0.810330,0.558985,-0.175789,-0.534188,-0.827972,-0.170603,-0.534188,-0.827972,-0.170603, + -0.534188,-0.827972,-0.170603,-0.534188,-0.827972,-0.170603,0.810332,-0.558981,0.175790,0.810332,-0.558981,0.175790, + 0.810332,-0.558981,0.175790,0.810332,-0.558981,0.175790,0.253038,0.063258,-0.965386,0.253038,0.063258,-0.965386, + 0.253038,0.063258,-0.965386,0.253038,0.063258,-0.965386,-0.256736,-0.068988,0.964016,-0.256736,-0.068988,0.964016, + -0.256736,-0.068988,0.964016,-0.256736,-0.068988,0.964016,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,0.810335,-0.558976,0.175790,0.810335,-0.558976,0.175790, + 0.810335,-0.558976,0.175790,0.810335,-0.558976,0.175790,0.520866,0.824521,0.221051,0.520866,0.824521,0.221051, + 0.520866,0.824521,0.221051,0.520866,0.824521,0.221051,0.810331,-0.558984,0.175788,0.810331,-0.558984,0.175788, + 0.810331,-0.558984,0.175788,0.810331,-0.558984,0.175788,0.520786,0.824531,0.221203,0.520786,0.824531,0.221203, + 0.520786,0.824531,0.221203,0.520786,0.824531,0.221203,0.810318,-0.559003,0.175787,0.810318,-0.559003,0.175787, + 0.810318,-0.559003,0.175787,0.810318,-0.559003,0.175787,-0.520838,-0.824540,-0.221049,-0.520838,-0.824540,-0.221049, + -0.520838,-0.824540,-0.221049,-0.520838,-0.824540,-0.221049,-0.254859,-0.066048,0.964720,-0.254859,-0.066048,0.964720, + -0.254859,-0.066048,0.964720,-0.254859,-0.066048,0.964720,0.810331,-0.558982,0.175790,0.810331,-0.558982,0.175790, + 0.810331,-0.558982,0.175790,0.810331,-0.558982,0.175790,0.254834,0.066049,-0.964727,0.254834,0.066049,-0.964727, + 0.254834,0.066049,-0.964727,0.254834,0.066049,-0.964727,-0.525689,-0.826012,-0.203359,-0.525689,-0.826012,-0.203359, + -0.525689,-0.826012,-0.203359,-0.525689,-0.826012,-0.203359,0.524835,0.825767,0.206535,0.524835,0.825767,0.206535, + 0.524835,0.825767,0.206535,0.524835,0.825767,0.206535,0.809211,-0.559266,0.179999,0.809211,-0.559266,0.179999, + 0.809211,-0.559266,0.179999,0.809211,-0.559266,0.179999,-0.533114,-0.827793,-0.174782,-0.533114,-0.827793,-0.174782, + -0.533114,-0.827793,-0.174782,-0.533114,-0.827793,-0.174782,0.531500,0.827459,0.181162,0.531500,0.827459,0.181162, + 0.531500,0.827459,0.181162,0.531500,0.827459,0.181162,0.809209,-0.559268,0.179999,0.809209,-0.559268,0.179999, + 0.809209,-0.559268,0.179999,0.809209,-0.559268,0.179999,0.254831,0.066053,-0.964727,0.254831,0.066053,-0.964727, + 0.254831,0.066053,-0.964727,0.254831,0.066053,-0.964727,0.810329,-0.558985,0.175794,0.810329,-0.558985,0.175794, + 0.810329,-0.558985,0.175794,0.810329,-0.558985,0.175794,-0.254833,-0.066053,0.964726,-0.254833,-0.066053,0.964726, + -0.254833,-0.066053,0.964726,-0.254833,-0.066053,0.964726,0.254844,0.066039,-0.964724,0.254844,0.066039,-0.964724, + 0.254844,0.066039,-0.964724,0.254844,0.066039,-0.964724,0.810332,-0.558983,0.175785,0.810332,-0.558983,0.175785, + 0.810332,-0.558983,0.175785,0.810332,-0.558983,0.175785,-0.254833,-0.066048,0.964727,-0.254833,-0.066048,0.964727, + -0.254833,-0.066048,0.964727,-0.254833,-0.066048,0.964727,0.254819,0.066048,-0.964731,0.254819,0.066048,-0.964731, + 0.254819,0.066048,-0.964731,0.254819,0.066048,-0.964731,0.810332,-0.558982,0.175788,0.810332,-0.558982,0.175788, + 0.810332,-0.558982,0.175788,0.810332,-0.558982,0.175788,-0.254850,-0.066042,0.964723,-0.254850,-0.066042,0.964723, + -0.254850,-0.066042,0.964723,-0.254850,-0.066042,0.964723,-0.531937,-0.827545,-0.179476,-0.531937,-0.827545,-0.179476, + -0.531937,-0.827545,-0.179476,-0.531937,-0.827545,-0.179476,0.810324,-0.558994,0.175787,0.810324,-0.558994,0.175787, + 0.810324,-0.558994,0.175787,0.810324,-0.558994,0.175787,0.527651,0.826548,0.195968,0.527651,0.826548,0.195968, + 0.527651,0.826548,0.195968,0.527651,0.826548,0.195968,0.810331,-0.558982,0.175790,0.810331,-0.558982,0.175790, + 0.810331,-0.558982,0.175790,0.810331,-0.558982,0.175790,-0.514804,-0.822415,-0.242096,-0.514804,-0.822415,-0.242096, + -0.514804,-0.822415,-0.242096,-0.514804,-0.822415,-0.242096,0.512349,0.821459,0.250406,0.512349,0.821459,0.250406, + 0.512349,0.821459,0.250406,0.512349,0.821459,0.250406,0.809110,-0.559289,0.180379,0.809110,-0.559289,0.180379, + 0.809110,-0.559289,0.180379,0.809110,-0.559289,0.180379,-0.533119,-0.827789,-0.174784,-0.533119,-0.827789,-0.174784, + -0.533119,-0.827789,-0.174784,-0.533119,-0.827789,-0.174784,0.532288,0.827615,0.178110,0.532288,0.827615,0.178110, + 0.532288,0.827615,0.178110,0.532288,0.827615,0.178110,0.809088,-0.559291,0.180471,0.809088,-0.559291,0.180471, + 0.809088,-0.559291,0.180471,0.809088,-0.559291,0.180471,0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724, + 0.254845,0.066046,-0.964724,0.254845,0.066046,-0.964724,0.810333,-0.558981,0.175783,0.810333,-0.558981,0.175783, + 0.810333,-0.558981,0.175783,0.810333,-0.558981,0.175783,-0.254840,-0.066050,0.964725,-0.254840,-0.066050,0.964725, + -0.254840,-0.066050,0.964725,-0.254840,-0.066050,0.964725,0.265094,0.082170,-0.960715,0.265094,0.082170,-0.960715, + 0.265094,0.082170,-0.960715,0.265094,0.082170,-0.960715,0.810333,-0.558981,0.175786,0.810333,-0.558981,0.175786, + 0.810333,-0.558981,0.175786,0.810333,-0.558981,0.175786,-0.269582,-0.089253,0.958832,-0.269582,-0.089253,0.958832, + -0.269582,-0.089253,0.958832,-0.269582,-0.089253,0.958832,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725, + 0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789, + 0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789,-0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726, + -0.254837,-0.066042,0.964726,-0.254837,-0.066042,0.964726,-0.527653,-0.826547,-0.195966,-0.527653,-0.826547,-0.195966, + -0.527653,-0.826547,-0.195966,-0.527653,-0.826547,-0.195966,0.810330,-0.558985,0.175787,0.810330,-0.558985,0.175787, + 0.810330,-0.558985,0.175787,0.810330,-0.558985,0.175787,0.527638,0.826557,0.195964,0.527638,0.826557,0.195964, + 0.527638,0.826557,0.195964,0.527638,0.826557,0.195964,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,-0.520382,-0.824401,-0.222635,-0.520382,-0.824401,-0.222635, + -0.520382,-0.824401,-0.222635,-0.520382,-0.824401,-0.222635,0.518993,0.823929,0.227569,0.518993,0.823929,0.227569, + 0.518993,0.823929,0.227569,0.518993,0.823929,0.227569,0.809082,-0.559301,0.180469,0.809082,-0.559301,0.180469, + 0.809082,-0.559301,0.180469,0.809082,-0.559301,0.180469,-0.542880,-0.829070,-0.133877,-0.542880,-0.829070,-0.133877, + -0.542880,-0.829070,-0.133877,-0.542880,-0.829070,-0.133877,0.540642,0.828902,0.143625,0.540642,0.828902,0.143625, + 0.540642,0.828902,0.143625,0.540642,0.828902,0.143625,0.809084,-0.559298,0.180469,0.809084,-0.559298,0.180469, + 0.809084,-0.559298,0.180469,0.809084,-0.559298,0.180469,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725, + 0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,0.810332,-0.558982,0.175789,0.810332,-0.558982,0.175789, + 0.810332,-0.558982,0.175789,0.810332,-0.558982,0.175789,-0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726, + -0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726,0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724, + 0.254843,0.066045,-0.964724,0.254843,0.066045,-0.964724,0.810334,-0.558982,0.175779,0.810334,-0.558982,0.175779, + 0.810334,-0.558982,0.175779,0.810334,-0.558982,0.175779,-0.254847,-0.066046,0.964723,-0.254847,-0.066046,0.964723, + -0.254847,-0.066046,0.964723,-0.254847,-0.066046,0.964723,0.254855,0.066054,-0.964721,0.254855,0.066054,-0.964721, + 0.254855,0.066054,-0.964721,0.254855,0.066054,-0.964721,0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789, + 0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789,-0.254838,-0.066055,0.964725,-0.254838,-0.066055,0.964725, + -0.254838,-0.066055,0.964725,-0.254838,-0.066055,0.964725,-0.527659,-0.826543,-0.195967,-0.527659,-0.826543,-0.195967, + -0.527659,-0.826543,-0.195967,-0.527659,-0.826543,-0.195967,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,0.527648,0.826550,0.195965,0.527648,0.826550,0.195965, + 0.527648,0.826550,0.195965,0.527648,0.826550,0.195965,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,-0.520769,-0.824524,-0.221270,-0.520769,-0.824524,-0.221270, + -0.520769,-0.824524,-0.221270,-0.520769,-0.824524,-0.221270,0.518994,0.823929,0.227567,0.518994,0.823929,0.227567, + 0.518994,0.823929,0.227567,0.518994,0.823929,0.227567,0.809125,-0.559281,0.180337,0.809125,-0.559281,0.180337, + 0.809125,-0.559281,0.180337,0.809125,-0.559281,0.180337,-0.538318,-0.828639,-0.153532,-0.538318,-0.828639,-0.153532, + -0.538318,-0.828639,-0.153532,-0.538318,-0.828639,-0.153532,0.536259,0.828355,0.162032,0.536259,0.828355,0.162032, + 0.536259,0.828355,0.162032,0.536259,0.828355,0.162032,0.809116,-0.559295,0.180336,0.809116,-0.559295,0.180336, + 0.809116,-0.559295,0.180336,0.809116,-0.559295,0.180336,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726, + 0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.810331,-0.558983,0.175790,0.810331,-0.558983,0.175790, + 0.810331,-0.558983,0.175790,0.810331,-0.558983,0.175790,-0.254841,-0.066043,0.964725,-0.254841,-0.066043,0.964725, + -0.254841,-0.066043,0.964725,-0.254841,-0.066043,0.964725,0.254835,0.066044,-0.964727,0.254835,0.066044,-0.964727, + 0.254835,0.066044,-0.964727,0.254835,0.066044,-0.964727,0.810329,-0.558986,0.175791,0.810329,-0.558986,0.175791, + 0.810329,-0.558986,0.175791,0.810329,-0.558986,0.175791,-0.254837,-0.066048,0.964726,-0.254837,-0.066048,0.964726, + -0.254837,-0.066048,0.964726,-0.254837,-0.066048,0.964726,0.254856,0.066046,-0.964721,0.254856,0.066046,-0.964721, + 0.254856,0.066046,-0.964721,0.254856,0.066046,-0.964721,0.810332,-0.558982,0.175787,0.810332,-0.558982,0.175787, + 0.810332,-0.558982,0.175787,0.810332,-0.558982,0.175787,-0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727, + -0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727,-0.527663,-0.826539,-0.195974,-0.527663,-0.826539,-0.195974, + -0.527663,-0.826539,-0.195974,-0.527663,-0.826539,-0.195974,0.810335,-0.558976,0.175791,0.810335,-0.558976,0.175791, + 0.810335,-0.558976,0.175791,0.810335,-0.558976,0.175791,0.527668,0.826536,0.195970,0.527668,0.826536,0.195970, + 0.527668,0.826536,0.195970,0.527668,0.826536,0.195970,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,-0.515984,-0.822860,-0.238038,-0.515984,-0.822860,-0.238038, + -0.515984,-0.822860,-0.238038,-0.515984,-0.822860,-0.238038,0.512921,0.821692,0.248462,0.512921,0.821692,0.248462, + 0.512921,0.821692,0.248462,0.512921,0.821692,0.248462,0.809120,-0.559289,0.180337,0.809120,-0.559289,0.180337, + 0.809120,-0.559289,0.180337,0.809120,-0.559289,0.180337,-0.535744,-0.828268,-0.164162,-0.535744,-0.828268,-0.164162, + -0.535744,-0.828268,-0.164162,-0.535744,-0.828268,-0.164162,0.534176,0.827994,0.170535,0.534176,0.827994,0.170535, + 0.534176,0.827994,0.170535,0.534176,0.827994,0.170535,0.809123,-0.559285,0.180336,0.809123,-0.559285,0.180336, + 0.809123,-0.559285,0.180336,0.809123,-0.559285,0.180336,0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724, + 0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724,0.810329,-0.558986,0.175786,0.810329,-0.558986,0.175786, + 0.810329,-0.558986,0.175786,0.810329,-0.558986,0.175786,-0.254838,-0.066047,0.964726,-0.254838,-0.066047,0.964726, + -0.254838,-0.066047,0.964726,-0.254838,-0.066047,0.964726,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726, + 0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726,0.810332,-0.558983,0.175785,0.810332,-0.558983,0.175785, + 0.810332,-0.558983,0.175785,0.810332,-0.558983,0.175785,-0.254839,-0.066049,0.964725,-0.254839,-0.066049,0.964725, + -0.254839,-0.066049,0.964725,-0.254839,-0.066049,0.964725,0.254826,0.066047,-0.964729,0.254826,0.066047,-0.964729, + 0.254826,0.066047,-0.964729,0.254826,0.066047,-0.964729,0.810329,-0.558983,0.175800,0.810329,-0.558983,0.175800, + 0.810329,-0.558983,0.175800,0.810329,-0.558983,0.175800,-0.254847,-0.066054,0.964723,-0.254847,-0.066054,0.964723, + -0.254847,-0.066054,0.964723,-0.254847,-0.066054,0.964723,-0.527654,-0.826546,-0.195967,-0.527654,-0.826546,-0.195967, + -0.527654,-0.826546,-0.195967,-0.527654,-0.826546,-0.195967,0.810328,-0.558988,0.175789,0.810328,-0.558988,0.175789, + 0.810328,-0.558988,0.175789,0.810328,-0.558988,0.175789,0.527662,0.826540,0.195971,0.527662,0.826540,0.195971, + 0.527662,0.826540,0.195971,0.527662,0.826540,0.195971,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,-0.520766,-0.824525,-0.221270,-0.520766,-0.824525,-0.221270, + -0.520766,-0.824525,-0.221270,-0.520766,-0.824525,-0.221270,0.518990,0.823932,0.227565,0.518990,0.823932,0.227565, + 0.518990,0.823932,0.227565,0.518990,0.823932,0.227565,0.809121,-0.559287,0.180336,0.809121,-0.559287,0.180336, + 0.809121,-0.559287,0.180336,0.809121,-0.559287,0.180336,-0.541698,-0.828990,-0.139068,-0.541698,-0.828990,-0.139068, + -0.541698,-0.828990,-0.139068,-0.541698,-0.828990,-0.139068,0.539125,0.828747,0.150074,0.539125,0.828747,0.150074, + 0.539125,0.828747,0.150074,0.539125,0.828747,0.150074,0.809162,-0.559284,0.180160,0.809162,-0.559284,0.180160, + 0.809162,-0.559284,0.180160,0.809162,-0.559284,0.180160,0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724, + 0.254845,0.066044,-0.964724,0.254845,0.066044,-0.964724,0.810331,-0.558983,0.175787,0.810331,-0.558983,0.175787, + 0.810331,-0.558983,0.175787,0.810331,-0.558983,0.175787,-0.254842,-0.066048,0.964724,-0.254842,-0.066048,0.964724, + -0.254842,-0.066048,0.964724,-0.254842,-0.066048,0.964724,0.231686,0.030082,-0.972325,0.231686,0.030082,-0.972325, + 0.231686,0.030082,-0.972325,0.231686,0.030082,-0.972325,0.810329,-0.558988,0.175785,0.810329,-0.558988,0.175785, + 0.810329,-0.558988,0.175785,0.810329,-0.558988,0.175785,-0.224772,-0.019480,0.974217,-0.224772,-0.019480,0.974217, + -0.224772,-0.019480,0.974217,-0.224772,-0.019480,0.974217,0.254847,0.066041,-0.964724,0.254847,0.066041,-0.964724, + 0.254847,0.066041,-0.964724,0.254847,0.066041,-0.964724,0.810333,-0.558984,0.175777,0.810333,-0.558984,0.175777, + 0.810333,-0.558984,0.175777,0.810333,-0.558984,0.175777,-0.254832,-0.066047,0.964727,-0.254832,-0.066047,0.964727, + -0.254832,-0.066047,0.964727,-0.254832,-0.066047,0.964727,-0.527664,-0.826538,-0.195972,-0.527664,-0.826538,-0.195972, + -0.527664,-0.826538,-0.195972,-0.527664,-0.826538,-0.195972,0.810328,-0.558987,0.175788,0.810328,-0.558987,0.175788, + 0.810328,-0.558987,0.175788,0.810328,-0.558987,0.175788,0.527661,0.826541,0.195971,0.527661,0.826541,0.195971, + 0.527661,0.826541,0.195971,0.527661,0.826541,0.195971,0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789, + 0.810331,-0.558983,0.175789,0.810331,-0.558983,0.175789,0.518998,0.823925,0.227572,0.518998,0.823925,0.227572, + 0.518998,0.823925,0.227572,0.518998,0.823925,0.227572,-0.811497,0.558691,-0.171282,-0.811497,0.558691,-0.171282, + -0.811497,0.558691,-0.171282,-0.811497,0.558691,-0.171282,0.254849,0.066044,-0.964723,0.254849,0.066044,-0.964723, + 0.254849,0.066044,-0.964723,0.254849,0.066044,-0.964723,-0.810326,0.558989,-0.175792,-0.810326,0.558989,-0.175792, + -0.810326,0.558989,-0.175792,-0.810326,0.558989,-0.175792,-0.810329,0.558987,-0.175785,-0.810329,0.558987,-0.175785, + -0.810329,0.558987,-0.175785,-0.810329,0.558987,-0.175785,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,0.527640,0.826555,0.195967,0.527640,0.826555,0.195967, + 0.527640,0.826555,0.195967,0.527640,0.826555,0.195967,-0.810334,0.558978,-0.175790,-0.810334,0.558978,-0.175790, + -0.810334,0.558978,-0.175790,-0.810334,0.558978,-0.175790,-0.527649,-0.826548,-0.195971,-0.527649,-0.826548,-0.195971, + -0.527649,-0.826548,-0.195971,-0.527649,-0.826548,-0.195971,-0.810331,0.558984,-0.175789,-0.810331,0.558984,-0.175789, + -0.810331,0.558984,-0.175789,-0.810331,0.558984,-0.175789,-0.516211,-0.822928,-0.237310,-0.516211,-0.822928,-0.237310, + -0.516211,-0.822928,-0.237310,-0.516211,-0.822928,-0.237310,-0.254851,-0.066043,0.964722,-0.254851,-0.066043,0.964722, + -0.254851,-0.066043,0.964722,-0.254851,-0.066043,0.964722,-0.804172,0.560379,-0.198200,-0.804172,0.560379,-0.198200, + -0.804172,0.560379,-0.198200,-0.804172,0.560379,-0.198200,-0.536481,-0.827758,-0.164334,-0.536481,-0.827758,-0.164334, + -0.536481,-0.827758,-0.164334,-0.536481,-0.827758,-0.164334,0.511682,0.822552,0.248174,0.511682,0.822552,0.248174, + 0.511682,0.822552,0.248174,0.511682,0.822552,0.248174,-0.804180,0.560366,-0.198201,-0.804180,0.560366,-0.198201, + -0.804180,0.560366,-0.198201,-0.804180,0.560366,-0.198201,0.277386,0.050403,-0.959436,0.277386,0.050403,-0.959436, + 0.277386,0.050403,-0.959436,0.277386,0.050403,-0.959436,-0.802891,0.560612,-0.202683,-0.802891,0.560612,-0.202683, + -0.802891,0.560612,-0.202683,-0.802891,0.560612,-0.202683,-0.802893,0.560610,-0.202682,-0.802893,0.560610,-0.202682, + -0.802893,0.560610,-0.202682,-0.802893,0.560610,-0.202682,-0.277392,-0.050390,0.959434,-0.277392,-0.050390,0.959434, + -0.277392,-0.050390,0.959434,-0.277392,-0.050390,0.959434,0.527643,0.826553,0.195966,0.527643,0.826553,0.195966, + 0.527643,0.826553,0.195966,0.527643,0.826553,0.195966,-0.802893,0.560609,-0.202682,-0.802893,0.560609,-0.202682, + -0.802893,0.560609,-0.202682,-0.802893,0.560609,-0.202682,-0.527633,-0.826561,-0.195961,-0.527633,-0.826561,-0.195961, + -0.527633,-0.826561,-0.195961,-0.527633,-0.826561,-0.195961,-0.802892,0.560611,-0.202682,-0.802892,0.560611,-0.202682, + -0.802892,0.560611,-0.202682,-0.802892,0.560611,-0.202682,0.254839,0.066050,-0.964725,0.254839,0.066050,-0.964725, + 0.254839,0.066050,-0.964725,0.254839,0.066050,-0.964725,0.536243,0.828341,0.162156,0.536243,0.828341,0.162156, + 0.536243,0.828341,0.162156,0.536243,0.828341,0.162156,-0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725, + -0.254841,-0.066048,0.964725,-0.254841,-0.066048,0.964725,-0.520882,-0.824574,-0.220818,-0.520882,-0.824574,-0.220818, + -0.520882,-0.824574,-0.220818,-0.520882,-0.824574,-0.220818,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.539814,0.828813,0.147207,0.539814,0.828813,0.147207, + 0.539814,0.828813,0.147207,0.539814,0.828813,0.147207,-0.244638,-0.050119,0.968318,-0.244638,-0.050119,0.968318, + -0.244638,-0.050119,0.968318,-0.244638,-0.050119,0.968318,-0.520918,-0.824568,-0.220754,-0.520918,-0.824568,-0.220754, + -0.520918,-0.824568,-0.220754,-0.520918,-0.824568,-0.220754,0.254846,0.066043,-0.964724,0.254846,0.066043,-0.964724, + 0.254846,0.066043,-0.964724,0.254846,0.066043,-0.964724,0.534065,0.827973,0.170982,0.534065,0.827973,0.170982, + 0.534065,0.827973,0.170982,0.534065,0.827973,0.170982,-0.522423,-0.825048,-0.215337,-0.522423,-0.825048,-0.215337, + -0.522423,-0.825048,-0.215337,-0.522423,-0.825048,-0.215337,0.522039,0.824935,0.216695,0.522039,0.824935,0.216695, + 0.522039,0.824935,0.216695,0.522039,0.824935,0.216695,0.810319,-0.558434,0.177580,0.810319,-0.558434,0.177580, + 0.810319,-0.558434,0.177580,0.810319,-0.558434,0.177580,-0.531259,-0.827408,-0.182101,-0.531259,-0.827408,-0.182101, + -0.531259,-0.827408,-0.182101,-0.531259,-0.827408,-0.182101,0.531024,0.827357,0.183015,0.531024,0.827357,0.183015, + 0.531024,0.827357,0.183015,0.531024,0.827357,0.183015,0.809481,-0.559749,0.177263,0.809481,-0.559749,0.177263, + 0.809481,-0.559749,0.177263,0.809481,-0.559749,0.177263,0.254850,0.066043,-0.964723,0.254850,0.066043,-0.964723, + 0.254850,0.066043,-0.964723,0.254850,0.066043,-0.964723,0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789, + 0.810330,-0.558984,0.175789,0.810330,-0.558984,0.175789,-0.254841,-0.066049,0.964725,-0.254841,-0.066049,0.964725, + -0.254841,-0.066049,0.964725,-0.254841,-0.066049,0.964725,0.511285,0.821038,0.253939,0.511285,0.821038,0.253939, + 0.511285,0.821038,0.253939,0.511285,0.821038,0.253939,-0.810330,0.558984,-0.175792,-0.810330,0.558984,-0.175792, + -0.810330,0.558984,-0.175792,-0.810330,0.558984,-0.175792,0.256603,0.068813,-0.964064,0.256603,0.068813,-0.964064, + 0.256603,0.068813,-0.964064,0.256603,0.068813,-0.964064,-0.252915,-0.063022,0.965434,-0.252915,-0.063022,0.965434, + -0.252915,-0.063022,0.965434,-0.252915,-0.063022,0.965434,-0.810332,0.558982,-0.175790,-0.810332,0.558982,-0.175790, + -0.810332,0.558982,-0.175790,-0.810332,0.558982,-0.175790,-0.810335,0.558976,-0.175791,-0.810335,0.558976,-0.175791, + -0.810335,0.558976,-0.175791,-0.810335,0.558976,-0.175791,-0.810331,0.558983,-0.175790,-0.810331,0.558983,-0.175790, + -0.810331,0.558983,-0.175790,-0.810331,0.558983,-0.175790,-0.533284,-0.827812,-0.174169,-0.533284,-0.827812,-0.174169, + -0.533284,-0.827812,-0.174169,-0.533284,-0.827812,-0.174169,-0.810331,0.558983,-0.175789,-0.810331,0.558983,-0.175789, + -0.810331,0.558983,-0.175789,-0.810331,0.558983,-0.175789,-0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971, + -0.527658,-0.826543,-0.195971,-0.527658,-0.826543,-0.195971,-0.810324,0.558993,-0.175789,-0.810324,0.558993,-0.175789, + -0.810324,0.558993,-0.175789,-0.810324,0.558993,-0.175789,0.527675,0.826530,0.195977,0.527675,0.826530,0.195977, + 0.527675,0.826530,0.195977,0.527675,0.826530,0.195977,-0.266302,-0.084078,0.960216,-0.266302,-0.084078,0.960216, + -0.266302,-0.084078,0.960216,-0.266302,-0.084078,0.960216,-0.810332,0.558982,-0.175788,-0.810332,0.558982,-0.175788, + -0.810332,0.558982,-0.175788,-0.810332,0.558982,-0.175788,0.243359,0.048103,-0.968743,0.243359,0.048103,-0.968743, + 0.243359,0.048103,-0.968743,0.243359,0.048103,-0.968743,0.532766,0.827726,0.176154,0.532766,0.827726,0.176154, + 0.532766,0.827726,0.176154,0.532766,0.827726,0.176154,-0.532555,-0.827679,-0.177014,-0.532555,-0.827679,-0.177014, + -0.532555,-0.827679,-0.177014,-0.532555,-0.827679,-0.177014,-0.811385,0.558767,-0.171560,-0.811385,0.558767,-0.171560, + -0.811385,0.558767,-0.171560,-0.811385,0.558767,-0.171560,0.523679,0.825424,0.210796,0.523679,0.825424,0.210796, + 0.523679,0.825424,0.210796,0.523679,0.825424,0.210796,-0.526646,-0.826269,-0.199808,-0.526646,-0.826269,-0.199808, + -0.526646,-0.826269,-0.199808,-0.526646,-0.826269,-0.199808,-0.811387,0.558766,-0.171555,-0.811387,0.558766,-0.171555, + -0.811387,0.558766,-0.171555,-0.811387,0.558766,-0.171555,0.242884,0.047373,-0.968898,0.242884,0.047373,-0.968898, + 0.242884,0.047373,-0.968898,0.242884,0.047373,-0.968898,-0.810333,0.558978,-0.175793,-0.810333,0.558978,-0.175793, + -0.810333,0.558978,-0.175793,-0.810333,0.558978,-0.175793,-0.242856,-0.047387,0.968904,-0.242856,-0.047387,0.968904, + -0.242856,-0.047387,0.968904,-0.242856,-0.047387,0.968904,0.242279,0.046449,-0.969094,0.242279,0.046449,-0.969094, + 0.242279,0.046449,-0.969094,0.242279,0.046449,-0.969094,-0.810331,0.558983,-0.175791,-0.810331,0.558983,-0.175791, + -0.810331,0.558983,-0.175791,-0.810331,0.558983,-0.175791,-0.242030,-0.046057,0.969175,-0.242030,-0.046057,0.969175, + -0.242030,-0.046057,0.969175,-0.242030,-0.046057,0.969175,0.242837,0.047383,-0.968909,0.242837,0.047383,-0.968909, + 0.242837,0.047383,-0.968909,0.242837,0.047383,-0.968909,-0.810328,0.558988,-0.175789,-0.810328,0.558988,-0.175789, + -0.810328,0.558988,-0.175789,-0.810328,0.558988,-0.175789,-0.242886,-0.047381,0.968897,-0.242886,-0.047381,0.968897, + -0.242886,-0.047381,0.968897,-0.242886,-0.047381,0.968897,0.528376,0.826729,0.193229,0.528376,0.826729,0.193229, + 0.528376,0.826729,0.193229,0.528376,0.826729,0.193229,-0.810330,0.558985,-0.175789,-0.810330,0.558985,-0.175789, + -0.810330,0.558985,-0.175789,-0.810330,0.558985,-0.175789,-0.528336,-0.826727,-0.193350,-0.528336,-0.826727,-0.193350, + -0.528336,-0.826727,-0.193350,-0.528336,-0.826727,-0.193350,-0.810332,0.558982,-0.175790,-0.810332,0.558982,-0.175790, + -0.810332,0.558982,-0.175790,-0.810332,0.558982,-0.175790,0.530283,0.827186,0.185912,0.530283,0.827186,0.185912, + 0.530283,0.827186,0.185912,0.530283,0.827186,0.185912,-0.530471,-0.827238,-0.185142,-0.530471,-0.827238,-0.185142, + -0.530471,-0.827238,-0.185142,-0.530471,-0.827238,-0.185142,-0.811243,0.558156,-0.174200,-0.811243,0.558156,-0.174200, + -0.811243,0.558156,-0.174200,-0.811243,0.558156,-0.174200,0.521815,0.824852,0.217550,0.521815,0.824852,0.217550, + 0.521815,0.824852,0.217550,0.521815,0.824852,0.217550,-0.522233,-0.824989,-0.216025,-0.522233,-0.824989,-0.216025, + -0.522233,-0.824989,-0.216025,-0.522233,-0.824989,-0.216025,-0.810339,0.559576,-0.173854,-0.810339,0.559576,-0.173854, + -0.810339,0.559576,-0.173854,-0.810339,0.559576,-0.173854,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,-0.810333,0.558980,-0.175789,-0.810333,0.558980,-0.175789, + -0.810333,0.558980,-0.175789,-0.810333,0.558980,-0.175789,-0.527654,-0.826545,-0.195971,-0.527654,-0.826545,-0.195971, + -0.527654,-0.826545,-0.195971,-0.527654,-0.826545,-0.195971,-0.810328,0.558988,-0.175787,-0.810328,0.558988,-0.175787, + -0.810328,0.558988,-0.175787,-0.810328,0.558988,-0.175787,0.527659,0.826541,0.195972,0.527659,0.826541,0.195972, + 0.527659,0.826541,0.195972,0.527659,0.826541,0.195972,0.810332,-0.558981,0.175790,0.810332,-0.558981,0.175790, + 0.810332,-0.558981,0.175790,0.810332,-0.558981,0.175790,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,-0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724, + -0.254844,-0.066048,0.964724,-0.254844,-0.066048,0.964724,-0.560570,-0.826868,-0.045276,-0.560570,-0.826868,-0.045276, + -0.560570,-0.826868,-0.045276,-0.560570,-0.826868,-0.045276,-0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789, + -0.810329,0.558986,-0.175789,-0.810329,0.558986,-0.175789,0.527654,0.826545,0.195972,0.527654,0.826545,0.195972, + 0.527654,0.826545,0.195972,0.527654,0.826545,0.195972,0.810330,-0.558985,0.175790,0.810330,-0.558985,0.175790, + 0.810330,-0.558985,0.175790,0.810330,-0.558985,0.175790,0.254840,0.066043,-0.964725,0.254840,0.066043,-0.964725, + 0.254840,0.066043,-0.964725,0.254840,0.066043,-0.964725,-0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726, + -0.254838,-0.066046,0.964726,-0.254838,-0.066046,0.964726,-0.527655,-0.826544,-0.195972,-0.527655,-0.826544,-0.195972, + -0.527655,-0.826544,-0.195972,-0.527655,-0.826544,-0.195972,-0.810327,0.558989,-0.175789,-0.810327,0.558989,-0.175789, + -0.810327,0.558989,-0.175789,-0.810327,0.558989,-0.175789,0.536471,0.828381,0.161197,0.536471,0.828381,0.161197, + 0.536471,0.828381,0.161197,0.536471,0.828381,0.161197,0.810330,-0.558985,0.175789,0.810330,-0.558985,0.175789, + 0.810330,-0.558985,0.175789,0.810330,-0.558985,0.175789,0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724, + 0.254843,0.066048,-0.964724,0.254843,0.066048,-0.964724,-0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725, + -0.254840,-0.066046,0.964725,-0.254840,-0.066046,0.964725,-0.518591,-0.809059,-0.276561,-0.518591,-0.809059,-0.276561, + -0.518591,-0.809059,-0.276561,-0.518591,-0.809059,-0.276561,-0.810329,0.558986,-0.175785,-0.810329,0.558986,-0.175785, + -0.810329,0.558986,-0.175785,-0.810329,0.558986,-0.175785,0.518589,0.809062,0.276559,0.518589,0.809062,0.276559, + 0.518589,0.809062,0.276559,0.518589,0.809062,0.276559,0.810329,-0.558987,0.175786,0.810329,-0.558987,0.175786, + 0.810329,-0.558987,0.175786,0.810329,-0.558987,0.175786,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727, + -0.254833,-0.066043,0.964727,-0.254833,-0.066043,0.964727,-0.527659,-0.826542,-0.195972,-0.527659,-0.826542,-0.195972, + -0.527659,-0.826542,-0.195972,-0.527659,-0.826542,-0.195972,-0.810330,0.558983,-0.175793,-0.810330,0.558983,-0.175793, + -0.810330,0.558983,-0.175793,-0.810330,0.558983,-0.175793,0.563107,0.825829,0.030287,0.563107,0.825829,0.030287, + 0.563107,0.825829,0.030287,0.563107,0.825829,0.030287,0.810325,-0.558991,0.175790,0.810325,-0.558991,0.175790, + 0.810325,-0.558991,0.175790,0.810325,-0.558991,0.175790,0.313687,0.160421,-0.935877,0.313687,0.160421,-0.935877, + 0.313687,0.160421,-0.935877,0.313687,0.160421,-0.935877,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725,-0.527658,-0.826543,-0.195970,-0.527658,-0.826543,-0.195970, + -0.527658,-0.826543,-0.195970,-0.527658,-0.826543,-0.195970,-0.810328,0.558988,-0.175790,-0.810328,0.558988,-0.175790, + -0.810328,0.558988,-0.175790,-0.810328,0.558988,-0.175790,-0.527662,-0.826540,-0.195970,-0.527662,-0.826540,-0.195970, + -0.527662,-0.826540,-0.195970,-0.527662,-0.826540,-0.195970,0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788, + 0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.254846,-0.066047,0.964724,-0.254846,-0.066047,0.964724, + -0.254846,-0.066047,0.964724,-0.254846,-0.066047,0.964724,-0.810331,0.558983,-0.175788,-0.810331,0.558983,-0.175788, + -0.810331,0.558983,-0.175788,-0.810331,0.558983,-0.175788,0.810326,-0.558992,0.175783,0.810326,-0.558992,0.175783, + 0.810326,-0.558992,0.175783,0.810326,-0.558992,0.175783,0.336883,0.198946,-0.920288,0.336883,0.198946,-0.920288, + 0.336883,0.198946,-0.920288,0.336883,0.198946,-0.920288,-0.254839,-0.066047,0.964725,-0.254839,-0.066047,0.964725, + -0.254839,-0.066047,0.964725,-0.254839,-0.066047,0.964725,-0.810326,0.558990,-0.175791,-0.810326,0.558990,-0.175791, + -0.810326,0.558990,-0.175791,-0.810326,0.558990,-0.175791,0.555478,0.828293,0.073310,0.555478,0.828293,0.073310, + 0.555478,0.828293,0.073310,0.555478,0.828293,0.073310,-0.527656,-0.826544,-0.195969,-0.527656,-0.826544,-0.195969, + -0.527656,-0.826544,-0.195969,-0.527656,-0.826544,-0.195969,0.254836,0.066048,-0.964726,0.254836,0.066048,-0.964726, + 0.254836,0.066048,-0.964726,0.254836,0.066048,-0.964726,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,-0.810333,0.558980,-0.175790,-0.810333,0.558980,-0.175790, + -0.810333,0.558980,-0.175790,-0.810333,0.558980,-0.175790,0.541624,0.828989,0.139355,0.541624,0.828989,0.139355, + 0.541624,0.828989,0.139355,0.541624,0.828989,0.139355,-0.511897,-0.821278,-0.251920,-0.511897,-0.821278,-0.251920, + -0.511897,-0.821278,-0.251920,-0.511897,-0.821278,-0.251920,0.254850,0.066047,-0.964723,0.254850,0.066047,-0.964723, + 0.254850,0.066047,-0.964723,0.254850,0.066047,-0.964723,-0.254849,-0.066041,0.964723,-0.254849,-0.066041,0.964723, + -0.254849,-0.066041,0.964723,-0.254849,-0.066041,0.964723,-0.817886,0.556653,-0.145604,-0.817886,0.556653,-0.145604, + -0.817886,0.556653,-0.145604,-0.817886,0.556653,-0.145604,0.518220,0.823660,0.230287,0.518220,0.823660,0.230287, + 0.518220,0.823660,0.230287,0.518220,0.823660,0.230287,-0.527655,-0.826544,-0.195971,-0.527655,-0.826544,-0.195971, + -0.527655,-0.826544,-0.195971,-0.527655,-0.826544,-0.195971,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726, + 0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,-0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723, + -0.254849,-0.066045,0.964723,-0.254849,-0.066045,0.964723,0.810327,-0.558988,0.175792,0.810327,-0.558988,0.175792, + 0.810327,-0.558988,0.175792,0.810327,-0.558988,0.175792,-0.527662,-0.826539,-0.195974,-0.527662,-0.826539,-0.195974, + -0.527662,-0.826539,-0.195974,-0.527662,-0.826539,-0.195974,0.551005,0.828959,0.096028,0.551005,0.828959,0.096028, + 0.551005,0.828959,0.096028,0.551005,0.828959,0.096028,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723, + 0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723,-0.254850,-0.066045,0.964723,-0.254850,-0.066045,0.964723, + -0.254850,-0.066045,0.964723,-0.254850,-0.066045,0.964723,0.810330,-0.558985,0.175789,0.810330,-0.558985,0.175789, + 0.810330,-0.558985,0.175789,0.810330,-0.558985,0.175789,-0.498914,-0.815509,-0.293308,-0.498914,-0.815509,-0.293308, + -0.498914,-0.815509,-0.293308,-0.498914,-0.815509,-0.293308,0.527663,0.826539,0.195971,0.527663,0.826539,0.195971, + 0.527663,0.826539,0.195971,0.527663,0.826539,0.195971,0.209307,-0.004083,-0.977841,0.209307,-0.004083,-0.977841, + 0.209307,-0.004083,-0.977841,0.209307,-0.004083,-0.977841,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725, + -0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,0.810328,-0.558987,0.175790,0.810328,-0.558987,0.175790, + 0.810328,-0.558987,0.175790,0.810328,-0.558987,0.175790,-0.553400,-0.828662,-0.084068,-0.553400,-0.828662,-0.084068, + -0.553400,-0.828662,-0.084068,-0.553400,-0.828662,-0.084068,0.554952,0.828397,0.076067,0.554952,0.828397,0.076067, + 0.554952,0.828397,0.076067,0.554952,0.828397,0.076067,0.254849,0.066044,-0.964723,0.254849,0.066044,-0.964723, + 0.254849,0.066044,-0.964723,0.254849,0.066044,-0.964723,-0.277830,-0.102365,0.955161,-0.277830,-0.102365,0.955161, + -0.277830,-0.102365,0.955161,-0.277830,-0.102365,0.955161,0.810327,-0.558987,0.175791,0.810327,-0.558987,0.175791, + 0.810327,-0.558987,0.175791,0.810327,-0.558987,0.175791,-0.527662,-0.826539,-0.195974,-0.527662,-0.826539,-0.195974, + -0.527662,-0.826539,-0.195974,-0.527662,-0.826539,-0.195974,0.527656,0.826544,0.195971,0.527656,0.826544,0.195971, + 0.527656,0.826544,0.195971,0.527656,0.826544,0.195971,0.254831,0.066053,-0.964727,0.254831,0.066053,-0.964727, + 0.254831,0.066053,-0.964727,0.254831,0.066053,-0.964727,-0.254835,-0.066043,0.964727,-0.254835,-0.066043,0.964727, + -0.254835,-0.066043,0.964727,-0.254835,-0.066043,0.964727,0.810329,-0.558985,0.175791,0.810329,-0.558985,0.175791, + 0.810329,-0.558985,0.175791,0.810329,-0.558985,0.175791,-0.527646,-0.826551,-0.195966,-0.527646,-0.826551,-0.195966, + -0.527646,-0.826551,-0.195966,-0.527646,-0.826551,-0.195966,0.476247,0.803063,0.358161,0.476247,0.803063,0.358161, + 0.476247,0.803063,0.358161,0.476247,0.803063,0.358161,0.254831,0.066045,-0.964728,0.254831,0.066045,-0.964728, + 0.254831,0.066045,-0.964728,0.254831,0.066045,-0.964728,-0.254838,-0.066042,0.964726,-0.254838,-0.066042,0.964726, + -0.254838,-0.066042,0.964726,-0.254838,-0.066042,0.964726,0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787, + 0.810328,-0.558988,0.175787,0.810328,-0.558988,0.175787,-0.527661,-0.826540,-0.195973,-0.527661,-0.826540,-0.195973, + -0.527661,-0.826540,-0.195973,-0.527661,-0.826540,-0.195973,0.527649,0.826549,0.195966,0.527649,0.826549,0.195966, + 0.527649,0.826549,0.195966,0.527649,0.826549,0.195966,0.254830,0.066049,-0.964728,0.254830,0.066049,-0.964728, + 0.254830,0.066049,-0.964728,0.254830,0.066049,-0.964728,-0.254839,-0.066043,0.964725,-0.254839,-0.066043,0.964725, + -0.254839,-0.066043,0.964725,-0.254839,-0.066043,0.964725,0.810331,-0.558984,0.175787,0.810331,-0.558984,0.175787, + 0.810331,-0.558984,0.175787,0.810331,-0.558984,0.175787,-0.435993,-0.775577,-0.456498,-0.435993,-0.775577,-0.456498, + -0.435993,-0.775577,-0.456498,-0.435993,-0.775577,-0.456498,0.541497,0.828983,0.139885,0.541497,0.828983,0.139885, + 0.541497,0.828983,0.139885,0.541497,0.828983,0.139885,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,-0.254838,-0.066050,0.964725,-0.254838,-0.066050,0.964725, + -0.254838,-0.066050,0.964725,-0.254838,-0.066050,0.964725,0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788, + 0.810329,-0.558986,0.175788,0.810329,-0.558986,0.175788,-0.527667,-0.826535,-0.195976,-0.527667,-0.826535,-0.195976, + -0.527667,-0.826535,-0.195976,-0.527667,-0.826535,-0.195976,0.527649,0.826549,0.195966,0.527649,0.826549,0.195966, + 0.527649,0.826549,0.195966,0.527649,0.826549,0.195966,0.254852,0.066048,-0.964722,0.254852,0.066048,-0.964722, + 0.254852,0.066048,-0.964722,0.254852,0.066048,-0.964722,-0.254850,-0.066042,0.964723,-0.254850,-0.066042,0.964723, + -0.254850,-0.066042,0.964723,-0.254850,-0.066042,0.964723,-0.810328,0.558987,-0.175791,-0.810328,0.558987,-0.175791, + -0.810328,0.558987,-0.175791,-0.810328,0.558987,-0.175791,0.527652,0.826547,0.195968,0.527652,0.826547,0.195968, + 0.527652,0.826547,0.195968,0.527652,0.826547,0.195968,-0.527652,-0.826546,-0.195971,-0.527652,-0.826546,-0.195971, + -0.527652,-0.826546,-0.195971,-0.527652,-0.826546,-0.195971,0.254838,0.066051,-0.964725,0.254838,0.066051,-0.964725, + 0.254838,0.066051,-0.964725,0.254838,0.066051,-0.964725,-0.254840,-0.066050,0.964725,-0.254840,-0.066050,0.964725, + -0.254840,-0.066050,0.964725,-0.254840,-0.066050,0.964725,-0.810332,0.558981,-0.175790,-0.810332,0.558981,-0.175790, + -0.810332,0.558981,-0.175790,-0.810332,0.558981,-0.175790,0.541509,0.828975,0.139885,0.541509,0.828975,0.139885, + 0.541509,0.828975,0.139885,0.541509,0.828975,0.139885,-0.527650,-0.826549,-0.195966,-0.527650,-0.826549,-0.195966, + -0.527650,-0.826549,-0.195966,-0.527650,-0.826549,-0.195966,0.254840,0.066041,-0.964725,0.254840,0.066041,-0.964725, + 0.254840,0.066041,-0.964725,0.254840,0.066041,-0.964725,-0.254843,-0.066045,0.964725,-0.254843,-0.066045,0.964725, + -0.254843,-0.066045,0.964725,-0.254843,-0.066045,0.964725,-0.810331,0.558981,-0.175792,-0.810331,0.558981,-0.175792, + -0.810331,0.558981,-0.175792,-0.810331,0.558981,-0.175792,0.527657,0.826543,0.195971,0.527657,0.826543,0.195971, + 0.527657,0.826543,0.195971,0.527657,0.826543,0.195971,-0.527660,-0.826540,-0.195975,-0.527660,-0.826540,-0.195975, + -0.527660,-0.826540,-0.195975,-0.527660,-0.826540,-0.195975,0.254842,0.066040,-0.964725,0.254842,0.066040,-0.964725, + 0.254842,0.066040,-0.964725,0.254842,0.066040,-0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,0.225160,0.713595,0.663389,0.225160,0.713595,0.663389, + 0.225160,0.713595,0.663389,0.225160,0.713595,0.663389,-0.595925,-0.708637,0.377767,-0.595925,-0.708637,0.377767, + -0.595925,-0.708637,0.377767,-0.595925,-0.708637,0.377767,0.828169,-0.560418,-0.008261,0.828169,-0.560418,-0.008261, + 0.828169,-0.560418,-0.008261,0.828169,-0.560418,-0.008261,-0.243067,-0.736480,-0.631281,-0.243067,-0.736480,-0.631281, + -0.243067,-0.736480,-0.631281,-0.243067,-0.736480,-0.631281,0.662929,0.694818,-0.278841,0.662929,0.694818,-0.278841, + 0.662929,0.694818,-0.278841,0.662929,0.694818,-0.278841,0.862176,-0.506594,-0.003890,0.862176,-0.506594,-0.003890, + 0.862176,-0.506594,-0.003890,0.862176,-0.506594,-0.003890,0.832785,-0.548830,0.072488,0.832785,-0.548830,0.072488, + 0.832785,-0.548830,0.072488,0.808369,-0.561952,0.175358,0.808369,-0.561952,0.175358,0.808369,-0.561952,0.175358, + 0.808369,-0.561952,0.175358,0.628506,0.751278,0.201401,0.628506,0.751278,0.201401,0.628506,0.751278,0.201401, + 0.628506,0.751278,0.201401,-0.241954,-0.045959,0.969199,-0.241954,-0.045959,0.969199,-0.241954,-0.045959,0.969199, + -0.241954,-0.045959,0.969199,-0.319793,-0.673244,-0.666689,-0.319793,-0.673244,-0.666689,-0.319793,-0.673244,-0.666689, + -0.319793,-0.673244,-0.666689,-0.070487,-0.187714,0.979691,-0.070487,-0.187714,0.979691,-0.070487,-0.187714,0.979691, + -0.070487,-0.187714,0.979691,0.808760,-0.560349,0.178652,0.808760,-0.560349,0.178652,0.808760,-0.560349,0.178652, + 0.808760,-0.560349,0.178652,0.585367,0.758486,-0.286435,0.585367,0.758486,-0.286435,0.585367,0.758486,-0.286435, + 0.585367,0.758486,-0.286435,0.810330,-0.558984,0.175790,0.810330,-0.558984,0.175790,0.810330,-0.558984,0.175790, + 0.810330,-0.558984,0.175790,-0.489888,-0.852396,-0.182841,-0.489888,-0.852396,-0.182841,-0.489888,-0.852396,-0.182841, + -0.489888,-0.852396,-0.182841,0.561555,0.805276,0.190225,0.561555,0.805276,0.190225,0.561555,0.805276,0.190225, + 0.561555,0.805276,0.190225,-0.831839,0.542390,-0.117717,-0.831839,0.542390,-0.117717,-0.831839,0.542390,-0.117717, + -0.831839,0.542390,-0.117717,0.832457,-0.541393,0.117933,0.832457,-0.541393,0.117933,0.832457,-0.541393,0.117933, + 0.832457,-0.541393,0.117933,0.232138,0.030799,-0.972195,0.232138,0.030799,-0.972195,0.232138,0.030799,-0.972195, + 0.232138,0.030799,-0.972195,0.810331,-0.558979,0.175799,0.810331,-0.558979,0.175799,0.810331,-0.558979,0.175799, + 0.810331,-0.558979,0.175799,-0.232002,-0.030561,0.972235,-0.232002,-0.030561,0.972235,-0.232002,-0.030561,0.972235, + -0.232002,-0.030561,0.972235,-0.527676,-0.826529,-0.195977,-0.527676,-0.826529,-0.195977,-0.527676,-0.826529,-0.195977, + -0.527676,-0.826529,-0.195977,0.810329,-0.558986,0.175789,0.810329,-0.558986,0.175789,0.810329,-0.558986,0.175789, + 0.810329,-0.558986,0.175789,0.527662,0.826539,0.195972,0.527662,0.826539,0.195972,0.527662,0.826539,0.195972, + 0.527662,0.826539,0.195972,-0.006483,-0.227089,0.973852,-0.006483,-0.227089,0.973852,-0.006483,-0.227089,0.973852, + -0.006483,-0.227089,0.973852,-0.031626,-0.449534,-0.892703,-0.031626,-0.449534,-0.892703,-0.031626,-0.449534,-0.892703, + -0.031626,-0.449534,-0.892703,-0.843114,0.535973,-0.043499,-0.843114,0.535973,-0.043499,-0.843114,0.535973,-0.043499, + -0.843114,0.535973,-0.043499,0.841697,-0.536340,0.062338,0.841697,-0.536340,0.062338,0.841697,-0.536340,0.062338, + 0.841697,-0.536340,0.062338,0.505507,0.842575,0.185823,0.505507,0.842575,0.185823,0.505507,0.842575,0.185823, + 0.505507,0.842575,0.185823,-0.064576,-0.191624,0.979342,-0.064576,-0.191624,0.979342,-0.064576,-0.191624,0.979342, + -0.064576,-0.191624,0.979342,-0.614412,-0.762951,-0.201006,-0.614412,-0.762951,-0.201006,-0.614412,-0.762951,-0.201006, + -0.614412,-0.762951,-0.201006,-0.830698,0.542227,-0.126219,-0.830698,0.542227,-0.126219,-0.830698,0.542227,-0.126219, + -0.830698,0.542227,-0.126219,0.832458,-0.541391,0.117939,0.832458,-0.541391,0.117939,0.832458,-0.541391,0.117939, + 0.832458,-0.541391,0.117939,0.358111,0.919598,0.161543,0.358111,0.919598,0.161543,0.358111,0.919598,0.161543, + 0.358111,0.919598,0.161543,0.021964,-0.244608,0.969373,0.021964,-0.244608,0.969373,0.021964,-0.244608,0.969373, + 0.021964,-0.244608,0.969373,-0.729291,-0.647437,-0.221269,-0.729291,-0.647437,-0.221269,-0.729291,-0.647437,-0.221269, + -0.729291,-0.647437,-0.221269,-0.830289,0.539527,-0.139754,-0.830289,0.539527,-0.139754,-0.830289,0.539527,-0.139754, + -0.830289,0.539527,-0.139754,0.827901,-0.543417,0.138846,0.827901,-0.543417,0.138846,0.827901,-0.543417,0.138846, + 0.827901,-0.543417,0.138846,-0.494306,-0.852302,-0.171007,-0.494306,-0.852302,-0.171007,-0.494306,-0.852302,-0.171007, + -0.494306,-0.852302,-0.171007,-0.700189,0.293108,0.651017,-0.700189,0.293108,0.651017,-0.700189,0.293108,0.651017, + -0.700189,0.293108,0.651017,0.593478,0.755089,0.278613,0.593478,0.755089,0.278613,0.593478,0.755089,0.278613, + 0.593478,0.755089,0.278613,0.594133,-0.507522,0.624041,0.594133,-0.507522,0.624041,0.594133,-0.507522,0.624041, + 0.594133,-0.507522,0.624041,-0.593384,0.508709,-0.623788,-0.593384,0.508709,-0.623788,-0.593384,0.508709,-0.623788, + -0.593384,0.508709,-0.623788,-0.502935,-0.845836,-0.177817,-0.502935,-0.845836,-0.177817,-0.502935,-0.845836,-0.177817, + -0.502935,-0.845836,-0.177817,-0.727599,0.321201,0.606160,-0.727599,0.321201,0.606160,-0.727599,0.321201,0.606160, + -0.727599,0.321201,0.606160,0.581785,0.765052,0.276082,0.581785,0.765052,0.276082,0.581785,0.765052,0.276082, + 0.581785,0.765052,0.276082,0.555695,-0.495108,0.667885,0.555695,-0.495108,0.667885,0.555695,-0.495108,0.667885, + 0.555695,-0.495108,0.667885,-0.555143,0.495968,-0.667707,-0.555143,0.495968,-0.667707,-0.555143,0.495968,-0.667707, + -0.555143,0.495968,-0.667707,-0.359690,-0.929191,-0.085019,-0.359690,-0.929191,-0.085019,-0.359690,-0.929191,-0.085019, + -0.359690,-0.929191,-0.085019,-0.707985,0.299564,0.639546,-0.707985,0.299564,0.639546,-0.707985,0.299564,0.639546, + -0.707985,0.299564,0.639546,0.653579,0.694609,0.300589,0.653579,0.694609,0.300589,0.653579,0.694609,0.300589, + 0.653579,0.694609,0.300589,0.710662,-0.544591,0.445399,0.710662,-0.544591,0.445399,0.710662,-0.544591,0.445399, + 0.710662,-0.544591,0.445399,-0.629016,0.524680,-0.573628,-0.629016,0.524680,-0.573628,-0.629016,0.524680,-0.573628, + -0.629016,0.524680,-0.573628,-0.507049,-0.841840,-0.184949,-0.507049,-0.841840,-0.184949,-0.507049,-0.841840,-0.184949, + -0.507049,-0.841840,-0.184949,-0.692224,0.285186,0.662944,-0.692224,0.285186,0.662944,-0.692224,0.285186,0.662944, + -0.692224,0.285186,0.662944,0.583504,0.767713,0.264838,0.583504,0.767713,0.264838,0.583504,0.767713,0.264838, + 0.583504,0.767713,0.264838,0.603934,-0.511246,0.611466,0.603934,-0.511246,0.611466,0.603934,-0.511246,0.611466, + 0.603934,-0.511246,0.611466,-0.603388,0.512127,-0.611268,-0.603388,0.512127,-0.611268,-0.603388,0.512127,-0.611268, + -0.603388,0.512127,-0.611268,-0.508524,-0.841230,-0.183672,-0.508524,-0.841230,-0.183672,-0.508524,-0.841230,-0.183672, + -0.508524,-0.841230,-0.183672,-0.727582,0.321223,0.606169,-0.727582,0.321223,0.606169,-0.727582,0.321223,0.606169, + -0.727582,0.321223,0.606169,0.577710,0.770310,0.269950,0.577710,0.770310,0.269950,0.577710,0.770310,0.269950, + 0.577710,0.770310,0.269950,0.556222,-0.494228,0.668098,0.556222,-0.494228,0.668098,0.556222,-0.494228,0.668098, + 0.556222,-0.494228,0.668098,-0.555688,0.495111,-0.667889,-0.555688,0.495111,-0.667889,-0.555688,0.495111,-0.667889, + -0.555688,0.495111,-0.667889,0.156167,0.133057,-0.978727,0.156167,0.133057,-0.978727,0.156167,0.133057,-0.978727, + 0.156167,0.133057,-0.978727,0.590050,0.787002,0.180191,0.590050,0.787002,0.180191,0.590050,0.787002,0.180191, + 0.590050,0.787002,0.180191,-0.844886,0.534562,0.020281,-0.844886,0.534562,0.020281,-0.844886,0.534562,0.020281, + -0.844886,0.534562,0.020281,-0.543611,-0.817792,-0.188955,-0.543611,-0.817792,-0.188955,-0.543611,-0.817792,-0.188955, + -0.543611,-0.817792,-0.188955,0.795243,-0.565035,0.219827,0.795243,-0.565035,0.219827,0.795243,-0.565035,0.219827, + 0.795243,-0.565035,0.219827,-0.147598,-0.138330,0.979326,-0.147598,-0.138330,0.979326,-0.147598,-0.138330,0.979326, + -0.147598,-0.138330,0.979326,0.765849,-0.562695,0.311206,0.765849,-0.562695,0.311206,0.765849,-0.562695,0.311206, + 0.765849,-0.562695,0.311206,0.527660,0.826541,0.195973,0.527660,0.826541,0.195973,0.527660,0.826541,0.195973, + 0.527660,0.826541,0.195973,-0.765849,0.562695,-0.311207,-0.765849,0.562695,-0.311207,-0.765849,0.562695,-0.311207, + -0.765849,0.562695,-0.311207,-0.527658,-0.826543,-0.195972,-0.527658,-0.826543,-0.195972,-0.527658,-0.826543,-0.195972, + -0.527658,-0.826543,-0.195972,0.766373,-0.562715,0.309878,0.766373,-0.562715,0.309878,0.766373,-0.562715,0.309878, + 0.766373,-0.562715,0.309878,0.527655,0.826544,0.195972,0.527655,0.826544,0.195972,0.527655,0.826544,0.195972, + 0.527655,0.826544,0.195972,-0.766377,0.562708,-0.309880,-0.766377,0.562708,-0.309880,-0.766377,0.562708,-0.309880, + -0.766377,0.562708,-0.309880,-0.527659,-0.826541,-0.195973,-0.527659,-0.826541,-0.195973,-0.527659,-0.826541,-0.195973, + -0.527659,-0.826541,-0.195973,-0.612544,-0.789864,-0.030063,-0.612544,-0.789864,-0.030063,-0.612544,-0.789864,-0.030063, + -0.612544,-0.789864,-0.030063,0.294480,-0.277746,0.914406,0.294480,-0.277746,0.914406,0.294480,-0.277746,0.914406, + 0.294480,-0.277746,0.914406,0.612542,0.789866,0.030062,0.612542,0.789866,0.030062,0.612542,0.789866,0.030062, + 0.612542,0.789866,0.030062,-0.294476,0.277739,-0.914410,-0.294476,0.277739,-0.914410,-0.294476,0.277739,-0.914410, + -0.294476,0.277739,-0.914410,-0.294281,-0.855206,-0.426639,-0.294281,-0.855206,-0.426639,-0.294281,-0.855206,-0.426639, + -0.294281,-0.855206,-0.426639,0.150476,-0.424465,0.892853,0.150476,-0.424465,0.892853,0.150476,-0.424465,0.892853, + 0.150476,-0.424465,0.892853,0.294280,0.855207,0.426639,0.294280,0.855207,0.426639,0.294280,0.855207,0.426639, + 0.294280,0.855207,0.426639,-0.150474,0.424462,-0.892855,-0.150474,0.424462,-0.892855,-0.150474,0.424462,-0.892855, + -0.150474,0.424462,-0.892855,0.417295,-0.063884,-0.906523,0.417295,-0.063884,-0.906523,0.417295,-0.063884,-0.906523, + 0.417295,-0.063884,-0.906523,0.557854,0.804374,0.204405,0.557854,0.804374,0.204405,0.557854,0.804374,0.204405, + 0.557854,0.804374,0.204405,-0.743199,0.558785,-0.367987,-0.743199,0.558785,-0.367987,-0.743199,0.558785,-0.367987, + -0.743199,0.558785,-0.367987,-0.535649,-0.821194,-0.196774,-0.535649,-0.821194,-0.196774,-0.535649,-0.821194,-0.196774, + -0.535649,-0.821194,-0.196774,0.643354,-0.543051,0.539622,0.643354,-0.543051,0.539622,0.643354,-0.543051,0.539622, + 0.643354,-0.543051,0.539622,-0.407785,0.057539,0.911263,-0.407785,0.057539,0.911263,-0.407785,0.057539,0.911263, + -0.407785,0.057539,0.911263,0.415387,-0.045228,-0.908520,0.415387,-0.045228,-0.908520,0.415387,-0.045228,-0.908520, + 0.415387,-0.045228,-0.908520,-0.712001,0.590473,-0.379996,-0.712001,0.590473,-0.379996,-0.712001,0.590473,-0.379996, + -0.712001,0.590473,-0.379996,-0.540616,-0.818995,-0.192305,-0.540616,-0.818995,-0.192305,-0.540616,-0.818995,-0.192305, + -0.540616,-0.818995,-0.192305,0.426622,-0.054292,-0.902799,0.426622,-0.054292,-0.902799,0.426622,-0.054292,-0.902799, + 0.426622,-0.054292,-0.902799,0.454723,0.809105,0.372259,0.454723,0.809105,0.372259,0.454723,0.809105,0.372259, + 0.454723,0.809105,0.372259,-0.409126,0.055917,0.910763,-0.409126,0.055917,0.910763,-0.409126,0.055917,0.910763, + -0.409126,0.055917,0.910763,-0.712001,0.590472,-0.379996,-0.712001,0.590472,-0.379996,-0.712001,0.590472,-0.379996, + -0.712001,0.590472,-0.379996,-0.481925,-0.861110,-0.161981,-0.481925,-0.861110,-0.161981,-0.481925,-0.861110,-0.161981, + -0.481925,-0.861110,-0.161981,0.395655,0.853098,0.340118,0.395655,0.853098,0.340118,0.395655,0.853098,0.340118, + 0.395655,0.853098,0.340118,-0.421132,0.065419,0.904637,-0.421132,0.065419,0.904637,-0.421132,0.065419,0.904637, + -0.421132,0.065419,0.904637,0.405797,-0.048634,-0.912668,0.405797,-0.048634,-0.912668,0.405797,-0.048634,-0.912668, + 0.405797,-0.048634,-0.912668,0.790131,-0.563097,0.242103,0.790131,-0.563097,0.242103,0.790131,-0.563097,0.242103, + 0.790131,-0.563097,0.242103,-0.398801,0.044596,0.915953,-0.398801,0.044596,0.915953,-0.398801,0.044596,0.915953, + -0.398801,0.044596,0.915953,-0.429562,0.452586,-0.781436,-0.429562,0.452586,-0.781436,-0.429562,0.452586,-0.781436, + -0.429562,0.452586,-0.781436,-0.790342,0.562768,-0.242181,-0.790342,0.562768,-0.242181,-0.790342,0.562768,-0.242181, + -0.790342,0.562768,-0.242181,-0.527639,-0.826556,-0.195963,-0.527639,-0.826556,-0.195963,-0.527639,-0.826556,-0.195963, + -0.527639,-0.826556,-0.195963,0.527655,0.826544,0.195971,0.527655,0.826544,0.195971,0.527655,0.826544,0.195971, + 0.527655,0.826544,0.195971,0.853178,-0.480465,-0.203080,0.853178,-0.480465,-0.203080,0.853178,-0.480465,-0.203080, + 0.853178,-0.480465,-0.203080,-0.022845,-0.256874,0.966175,-0.022845,-0.256874,0.966175,-0.022845,-0.256874,0.966175, + -0.022845,-0.256874,0.966175,-0.705554,0.320613,0.631981,-0.705554,0.320613,0.631981,-0.705554,0.320613,0.631981, + -0.705554,0.320613,0.631981,-0.223190,0.337118,-0.914624,-0.223190,0.337118,-0.914624,-0.223190,0.337118,-0.914624, + -0.223190,0.337118,-0.914624,0.028322,0.247372,-0.968506,0.028322,0.247372,-0.968506,0.028322,0.247372,-0.968506, + 0.028322,0.247372,-0.968506,0.715505,-0.330513,-0.615478,0.715505,-0.330513,-0.615478,0.715505,-0.330513,-0.615478, + 0.715505,-0.330513,-0.615478,-0.527658,-0.826542,-0.195974,-0.527658,-0.826542,-0.195974,-0.527658,-0.826542,-0.195974, + -0.527658,-0.826542,-0.195974,0.527658,0.826543,0.195971,0.527658,0.826543,0.195971,0.527658,0.826543,0.195971, + 0.527658,0.826543,0.195971,0.265412,0.058734,-0.962344,0.265412,0.058734,-0.962344,0.265412,0.058734,-0.962344, + 0.265412,0.058734,-0.962344,-0.265412,-0.058734,0.962344,-0.265412,-0.058734,0.962344,-0.265412,-0.058734,0.962344, + -0.265412,-0.058734,0.962344,-0.527656,-0.826544,-0.195972,-0.527656,-0.826544,-0.195972,-0.527656,-0.826544,-0.195972, + -0.527656,-0.826544,-0.195972,0.527661,0.826540,0.195971,0.527661,0.826540,0.195971,0.527661,0.826540,0.195971, + 0.527661,0.826540,0.195971,0.263901,0.059779,-0.962696,0.263901,0.059779,-0.962696,0.263901,0.059779,-0.962696, + 0.263901,0.059779,-0.962696,-0.263906,-0.059780,0.962694,-0.263906,-0.059780,0.962694,-0.263906,-0.059780,0.962694, + -0.263906,-0.059780,0.962694,0.277297,0.675940,0.682797,0.277297,0.675940,0.682797,0.277297,0.675940,0.682797, + 0.277297,0.675940,0.682797,-0.660074,-0.669685,0.340329,-0.660074,-0.669685,0.340329,-0.660074,-0.669685,0.340329, + -0.660074,-0.669685,0.340329,-0.527656,-0.826543,-0.195972,-0.527656,-0.826543,-0.195972,-0.527656,-0.826543,-0.195972, + -0.527656,-0.826543,-0.195972,0.527659,0.826542,0.195972,0.527659,0.826542,0.195972,0.527659,0.826542,0.195972, + 0.527659,0.826542,0.195972,0.270566,0.055155,-0.961120,0.270566,0.055155,-0.961120,0.270566,0.055155,-0.961120, + 0.270566,0.055155,-0.961120,-0.273166,-0.053345,0.960487,-0.273166,-0.053345,0.960487,-0.273166,-0.053345,0.960487, + -0.273166,-0.053345,0.960487,-0.524545,-0.828745,-0.195025,-0.524545,-0.828745,-0.195025,-0.524545,-0.828745,-0.195025, + -0.524545,-0.828745,-0.195025,0.527658,0.826543,0.195970,0.527658,0.826543,0.195970,0.527658,0.826543,0.195970, + 0.527658,0.826543,0.195970,0.269437,0.055932,-0.961392,0.269437,0.055932,-0.961392,0.269437,0.055932,-0.961392, + 0.269437,0.055932,-0.961392,-0.269566,-0.055847,0.961361,-0.269566,-0.055847,0.961361,-0.269566,-0.055847,0.961361, + -0.269566,-0.055847,0.961361,-0.527659,-0.826543,-0.195967,-0.527659,-0.826543,-0.195967,-0.527659,-0.826543,-0.195967, + -0.527659,-0.826543,-0.195967,0.527655,0.826544,0.195972,0.527655,0.826544,0.195972,0.527655,0.826544,0.195972, + 0.527655,0.826544,0.195972,0.261589,0.061383,-0.963225,0.261589,0.061383,-0.963225,0.261589,0.061383,-0.963225, + 0.261589,0.061383,-0.963225,0.273419,0.095356,-0.957157,0.273419,0.095356,-0.957157,0.273419,0.095356,-0.957157, + 0.273419,0.095356,-0.957157,0.844128,-0.535875,0.016935,0.844128,-0.535875,0.016935,0.844128,-0.535875,0.016935, + 0.844128,-0.535875,0.016935,0.262206,0.077619,-0.961885,0.262206,0.077619,-0.961885,0.262206,0.077619,-0.961885, + 0.262206,0.077619,-0.961885,-0.804637,0.560134,-0.197003,-0.804637,0.560134,-0.197003,-0.804637,0.560134,-0.197003, + -0.804637,0.560134,-0.197003,-0.812879,0.424333,0.398960,-0.812879,0.424333,0.398960,-0.812879,0.424333,0.398960, + -0.812879,0.424333,0.398960,0.812871,-0.424345,-0.398965,0.812871,-0.424345,-0.398965,0.812871,-0.424345,-0.398965, + 0.812871,-0.424345,-0.398965,-0.523108,-0.825260,-0.212848,-0.523108,-0.825260,-0.212848,-0.523108,-0.825260,-0.212848, + -0.523108,-0.825260,-0.212848,-0.812870,0.424347,0.398964,-0.812870,0.424347,0.398964,-0.812870,0.424347,0.398964, + -0.812870,0.424347,0.398964,0.812880,-0.424329,-0.398964,0.812880,-0.424329,-0.398964,0.812880,-0.424329,-0.398964, + 0.812880,-0.424329,-0.398964,-0.523106,-0.825261,-0.212848,-0.523106,-0.825261,-0.212848,-0.523106,-0.825261,-0.212848, + -0.523106,-0.825261,-0.212848,-0.840778,0.475269,0.259253,-0.840778,0.475269,0.259253,-0.840778,0.475269,0.259253, + -0.840778,0.475269,0.259253,0.840778,-0.475270,-0.259250,0.840778,-0.475270,-0.259250,0.840778,-0.475270,-0.259250, + 0.840778,-0.475270,-0.259250,-0.523109,-0.825259,-0.212850,-0.523109,-0.825259,-0.212850,-0.523109,-0.825259,-0.212850, + -0.523109,-0.825259,-0.212850,-0.807334,0.416222,0.418296,-0.807334,0.416222,0.418296,-0.807334,0.416222,0.418296, + -0.807334,0.416222,0.418296,0.807339,-0.416208,-0.418300,0.807339,-0.416208,-0.418300,0.807339,-0.416208,-0.418300, + 0.807339,-0.416208,-0.418300,-0.528531,-0.826766,-0.192648,-0.528531,-0.826766,-0.192648,-0.528531,-0.826766,-0.192648, + -0.528531,-0.826766,-0.192648,0.199802,0.928745,0.312270,0.199802,0.928745,0.312270,0.199802,0.928745,0.312270, + 0.199802,0.928745,0.312270,0.832445,-0.457233,-0.313006,0.832445,-0.457233,-0.313006,0.832445,-0.457233,-0.313006, + 0.832445,-0.457233,-0.313006,-0.531178,-0.827384,-0.182443,-0.531178,-0.827384,-0.182443,-0.531178,-0.827384,-0.182443, + -0.531178,-0.827384,-0.182443,-0.843325,0.482033,0.237585,-0.843325,0.482033,0.237585,-0.843325,0.482033,0.237585, + -0.843325,0.482033,0.237585,0.843321,-0.482040,-0.237586,0.843321,-0.482040,-0.237586,0.843321,-0.482040,-0.237586, + 0.843321,-0.482040,-0.237586,-0.531114,-0.827374,-0.182678,-0.531114,-0.827374,-0.182678,-0.531114,-0.827374,-0.182678, + -0.531114,-0.827374,-0.182678,0.514209,-0.494424,0.700810,0.514209,-0.494424,0.700810,0.514209,-0.494424,0.700810, + 0.514209,-0.494424,0.700810,-0.514210,0.494421,-0.700811,-0.514210,0.494421,-0.700811,-0.514210,0.494421,-0.700811, + -0.514210,0.494421,-0.700811,0.535251,0.828186,0.166176,0.535251,0.828186,0.166176,0.535251,0.828186,0.166176, + 0.535251,0.828186,0.166176,0.481516,-0.481090,0.732594,0.481516,-0.481090,0.732594,0.481516,-0.481090,0.732594, + 0.481516,-0.481090,0.732594,-0.481516,0.481090,-0.732595,-0.481516,0.481090,-0.732595,-0.481516,0.481090,-0.732595, + -0.481516,0.481090,-0.732595,0.535582,0.828242,0.164824,0.535582,0.828242,0.164824,0.535582,0.828242,0.164824, + 0.535582,0.828242,0.164824,0.554343,-0.509855,0.657839,0.554343,-0.509855,0.657839,0.554343,-0.509855,0.657839, + 0.554343,-0.509855,0.657839,-0.554339,0.509861,-0.657837,-0.554339,0.509861,-0.657837,-0.554339,0.509861,-0.657837, + -0.554339,0.509861,-0.657837,0.521164,0.824645,0.219881,0.521164,0.824645,0.219881,0.521164,0.824645,0.219881, + 0.521164,0.824645,0.219881,0.594842,-0.376870,0.710022,0.594842,-0.376870,0.710022,0.594842,-0.376870,0.710022, + 0.594842,-0.376870,0.710022,-0.525352,0.495943,-0.691409,-0.525352,0.495943,-0.691409,-0.525352,0.495943,-0.691409, + -0.525352,0.495943,-0.691409,0.523561,0.825395,0.211204,0.523561,0.825395,0.211204,0.523561,0.825395,0.211204, + 0.523561,0.825395,0.211204,-0.820634,0.512771,-0.252242,-0.820634,0.512771,-0.252242,-0.820634,0.512771,-0.252242, + -0.820634,0.512771,-0.252242,-0.294888,0.006551,0.955509,-0.294888,0.006551,0.955509,-0.294888,0.006551,0.955509, + -0.294888,0.006551,0.955509,0.360976,0.098832,-0.927323,0.360976,0.098832,-0.927323,0.360976,0.098832,-0.927323, + 0.360976,0.098832,-0.927323,-0.531024,-0.828053,-0.179837,-0.531024,-0.828053,-0.179837,-0.531024,-0.828053,-0.179837, + -0.531024,-0.828053,-0.179837,0.528859,0.826670,0.192159,0.528859,0.826670,0.192159,0.528859,0.826670,0.192159, + 0.528859,0.826670,0.192159,-0.790513,0.564014,-0.238699,-0.790513,0.564014,-0.238699,-0.790513,0.564014,-0.238699, + -0.790513,0.564014,-0.238699,-0.798438,0.561193,-0.218082,-0.798438,0.561193,-0.218082,-0.798438,0.561193,-0.218082, + 0.535191,0.827286,0.170787,0.535191,0.827286,0.170787,0.535191,0.827286,0.170787,0.535191,0.827286,0.170787, + -0.293623,-0.039014,0.955125,-0.293623,-0.039014,0.955125,-0.293623,-0.039014,0.955125,-0.293623,-0.039014,0.955125, + 0.316267,0.074878,-0.945710,0.316267,0.074878,-0.945710,0.316267,0.074878,-0.945710,0.316267,0.074878,-0.945710, + 0.333342,0.009282,-0.942760,0.333342,0.009282,-0.942760,0.333342,0.009282,-0.942760,0.333342,0.009282,-0.942760, + -0.513158,-0.823773,-0.240972,-0.513158,-0.823773,-0.240972,-0.513158,-0.823773,-0.240972,-0.513158,-0.823773,-0.240972, + -0.798294,0.561354,-0.218191,-0.798294,0.561354,-0.218191,-0.798294,0.561354,-0.218191,-0.298759,0.015232,0.954207, + -0.298759,0.015232,0.954207,-0.298759,0.015232,0.954207,-0.298759,0.015232,0.954207,0.529927,0.826668,0.189204, + 0.529927,0.826668,0.189204,0.529927,0.826668,0.189204,0.529927,0.826668,0.189204,-0.509587,-0.824922,-0.244593, + -0.509587,-0.824922,-0.244593,-0.509587,-0.824922,-0.244593,-0.509587,-0.824922,-0.244593,0.483299,0.858847,0.169718, + 0.483299,0.858847,0.169718,0.483299,0.858847,0.169718,0.483299,0.858847,0.169718,-0.212593,-0.067927,0.974777, + -0.212593,-0.067927,0.974777,-0.212593,-0.067927,0.974777,-0.212593,-0.067927,0.974777,0.315153,-0.003369,-0.949035, + 0.315153,-0.003369,-0.949035,0.315153,-0.003369,-0.949035,0.315153,-0.003369,-0.949035,-0.815370,0.556320,-0.160249, + -0.815370,0.556320,-0.160249,-0.815370,0.556320,-0.160249,-0.815370,0.556320,-0.160249,0.811342,-0.558718,0.171926, + 0.811342,-0.558718,0.171926,0.811342,-0.558718,0.171926,0.811342,-0.558718,0.171926,0.533042,0.826107,0.182792, + 0.533042,0.826107,0.182792,0.533042,0.826107,0.182792,0.533042,0.826107,0.182792,0.525429,0.826089,0.203719, + 0.525429,0.826089,0.203719,0.525429,0.826089,0.203719,0.816805,-0.556970,0.150380,0.816805,-0.556970,0.150380, + 0.816805,-0.556970,0.150380,0.816805,-0.556970,0.150380,-0.256852,-0.069199,0.963970,-0.256852,-0.069199,0.963970, + -0.256852,-0.069199,0.963970,-0.256852,-0.069199,0.963970,0.291811,0.044856,-0.955424,0.291811,0.044856,-0.955424, + 0.291811,0.044856,-0.955424,0.291811,0.044856,-0.955424,0.228649,0.027534,-0.973120,0.228649,0.027534,-0.973120, + 0.228649,0.027534,-0.973120,0.228649,0.027534,-0.973120,-0.797261,0.561632,-0.221233,-0.797261,0.561632,-0.221233, + -0.797261,0.561632,-0.221233,-0.797261,0.561632,-0.221233,0.525620,0.825996,0.203605,0.525620,0.825996,0.203605, + 0.525620,0.825996,0.203605,-0.204179,-0.063824,0.976851,-0.204179,-0.063824,0.976851,-0.204179,-0.063824,0.976851, + -0.204179,-0.063824,0.976851,0.812030,-0.558652,0.168862,0.812030,-0.558652,0.168862,0.812030,-0.558652,0.168862, + 0.812030,-0.558652,0.168862,-0.797340,0.559607,-0.226027,-0.797340,0.559607,-0.226027,-0.797340,0.559607,-0.226027, + -0.797340,0.559607,-0.226027,0.843880,-0.508430,0.171365,0.843880,-0.508430,0.171365,0.843880,-0.508430,0.171365, + 0.843880,-0.508430,0.171365,-0.255744,-0.109310,0.960545,-0.255744,-0.109310,0.960545,-0.255744,-0.109310,0.960545, + -0.255744,-0.109310,0.960545,0.187828,0.003571,-0.982195,0.187828,0.003571,-0.982195,0.187828,0.003571,-0.982195, + 0.187828,0.003571,-0.982195,0.521929,0.826353,0.211497,0.521929,0.826353,0.211497,0.521929,0.826353,0.211497, + 0.521929,0.826353,0.211497,-0.526692,-0.826232,-0.199843,-0.526692,-0.826232,-0.199843,-0.526692,-0.826232,-0.199843, + -0.526692,-0.826232,-0.199843,0.812622,-0.559892,0.161759,0.812622,-0.559892,0.161759,0.812622,-0.559892,0.161759, + 0.812622,-0.559892,0.161759,0.808345,-0.559345,0.183608,0.808345,-0.559345,0.183608,0.808345,-0.559345,0.183608, + -0.520692,-0.824576,-0.221255,-0.520692,-0.824576,-0.221255,-0.520692,-0.824576,-0.221255,-0.520692,-0.824576,-0.221255, + -0.257937,-0.063907,0.964046,-0.257937,-0.063907,0.964046,-0.257937,-0.063907,0.964046,-0.257937,-0.063907,0.964046, + 0.234773,0.027942,-0.971649,0.234773,0.027942,-0.971649,0.234773,0.027942,-0.971649,0.234773,0.027942,-0.971649, + 0.216866,0.093379,-0.971725,0.216866,0.093379,-0.971725,0.216866,0.093379,-0.971725,0.216866,0.093379,-0.971725, + 0.539273,0.828645,0.150106,0.539273,0.828645,0.150106,0.539273,0.828645,0.150106,0.539273,0.828645,0.150106, + 0.808288,-0.559488,0.183423,0.808288,-0.559488,0.183423,0.808288,-0.559488,0.183423,-0.251581,-0.117923,0.960625, + -0.251581,-0.117923,0.960625,-0.251581,-0.117923,0.960625,-0.251581,-0.117923,0.960625,-0.525974,-0.825948,-0.202883, + -0.525974,-0.825948,-0.202883,-0.525974,-0.825948,-0.202883,-0.525974,-0.825948,-0.202883,0.538144,0.830236,0.145287, + 0.538144,0.830236,0.145287,0.538144,0.830236,0.145287,0.538144,0.830236,0.145287,-0.338852,-0.136710,0.930854, + -0.338852,-0.136710,0.930854,-0.338852,-0.136710,0.930854,0.665555,0.686942,0.291800,0.665555,0.686942,0.291800, + 0.665555,0.686942,0.291800,0.665555,0.686942,0.291800,0.705984,0.693605,0.143173,0.705984,0.693605,0.143173, + 0.705984,0.693605,0.143173,0.705984,0.693605,0.143173,0.686967,-0.713152,0.139606,0.686967,-0.713152,0.139606, + 0.686967,-0.713152,0.139606,0.686967,-0.713152,0.139606,-0.650024,0.749397,-0.125989,-0.650024,0.749397,-0.125989, + -0.650024,0.749397,-0.125989,-0.650024,0.749397,-0.125989,-0.650028,0.749393,-0.125990,-0.650028,0.749393,-0.125990, + -0.650028,0.749393,-0.125990,-0.650028,0.749393,-0.125990,0.657711,0.701644,0.274065,0.657711,0.701644,0.274065, + 0.657711,0.701644,0.274065,0.657711,0.701644,0.274065,0.686967,-0.713153,0.139603,0.686967,-0.713153,0.139603, + 0.686967,-0.713153,0.139603,0.686967,-0.713153,0.139603,0.657707,0.701649,0.274063,0.657707,0.701649,0.274063, + 0.657707,0.701649,0.274063,0.657707,0.701649,0.274063,0.306560,-0.948100,-0.084420,0.306560,-0.948100,-0.084420, + 0.306560,-0.948100,-0.084420,0.306560,-0.948100,-0.084420,-0.314840,-0.039847,0.948308,-0.314840,-0.039847,0.948308, + -0.314840,-0.039847,0.948308,-0.314840,-0.039847,0.948308,0.683280,0.702397,0.199418,0.683280,0.702397,0.199418, + 0.683280,0.702397,0.199418,0.683280,0.702397,0.199418,0.716089,0.665240,0.211360,0.716089,0.665240,0.211360, + 0.716089,0.665240,0.211360,0.716089,0.665240,0.211360,-0.567385,0.382431,0.729260,-0.567385,0.382431,0.729260, + -0.567385,0.382431,0.729260,-0.567385,0.382431,0.729260,0.565430,-0.378872,-0.732629,0.565430,-0.378872,-0.732629, + 0.565430,-0.378872,-0.732629,0.565430,-0.378872,-0.732629,0.731370,0.658254,0.178324,0.731370,0.658254,0.178324, + 0.731370,0.658254,0.178324,0.731370,0.658254,0.178324,-0.731360,-0.658265,-0.178323,-0.731360,-0.658265,-0.178323, + -0.731360,-0.658265,-0.178323,-0.731360,-0.658265,-0.178323,-0.179345,-0.018929,0.983604,-0.179345,-0.018929,0.983604, + -0.179345,-0.018929,0.983604,-0.179345,-0.018929,0.983604,0.203722,-0.009328,-0.978984,0.203722,-0.009328,-0.978984, + 0.203722,-0.009328,-0.978984,0.203722,-0.009328,-0.978984,-0.652397,0.751408,-0.098816,-0.652397,0.751408,-0.098816, + -0.652397,0.751408,-0.098816,-0.652397,0.751408,-0.098816,0.631606,-0.750006,0.196382,0.631606,-0.750006,0.196382, + 0.631606,-0.750006,0.196382,0.631606,-0.750006,0.196382,0.731358,0.662589,0.161526,0.731358,0.662589,0.161526, + 0.731358,0.662589,0.161526,0.731358,0.662589,0.161526,-0.731360,-0.662588,-0.161524,-0.731360,-0.662588,-0.161524, + -0.731360,-0.662588,-0.161524,-0.731360,-0.662588,-0.161524,0.129859,0.065659,-0.989356,0.129859,0.065659,-0.989356, + 0.129859,0.065659,-0.989356,0.129859,0.065659,-0.989356,-0.154855,-0.037621,0.987221,-0.154855,-0.037621,0.987221, + -0.154855,-0.037621,0.987221,-0.154855,-0.037621,0.987221,0.667774,-0.743645,0.032718,0.667774,-0.743645,0.032718, + 0.667774,-0.743645,0.032718,0.667774,-0.743645,0.032718,-0.651884,0.746908,-0.131057,-0.651884,0.746908,-0.131057, + -0.651884,0.746908,-0.131057,-0.651884,0.746908,-0.131057,0.728116,0.655405,0.200726,0.728116,0.655405,0.200726, + 0.728116,0.655405,0.200726,0.728116,0.655405,0.200726,-0.728116,-0.655403,-0.200732,-0.728116,-0.655403,-0.200732, + -0.728116,-0.655403,-0.200732,-0.728116,-0.655403,-0.200732,0.218722,0.024638,-0.975476,0.218722,0.024638,-0.975476, + 0.218722,0.024638,-0.975476,0.218722,0.024638,-0.975476,-0.242762,0.003796,0.970078,-0.242762,0.003796,0.970078, + -0.242762,0.003796,0.970078,-0.242762,0.003796,0.970078,0.644399,-0.755282,0.119576,0.644399,-0.755282,0.119576, + 0.644399,-0.755282,0.119576,0.644399,-0.755282,0.119576,-0.619887,0.754318,-0.216207,-0.619887,0.754318,-0.216207, + -0.619887,0.754318,-0.216207,-0.619887,0.754318,-0.216207,0.729453,0.658943,0.183557,0.729453,0.658943,0.183557, + 0.729453,0.658943,0.183557,0.729453,0.658943,0.183557,0.710310,0.652933,0.262941,0.710310,0.652933,0.262941, + 0.710310,0.652933,0.262941,0.710310,0.652933,0.262941,0.710820,0.652505,0.262624,0.710820,0.652505,0.262624, + 0.710820,0.652505,0.262624,0.710820,0.652505,0.262624,-0.646144,0.753022,-0.124320,-0.646144,0.753022,-0.124320, + -0.646144,0.753022,-0.124320,-0.646144,0.753022,-0.124320,-0.649539,0.752099,-0.111565,-0.649539,0.752099,-0.111565, + -0.649539,0.752099,-0.111565,-0.649539,0.752099,-0.111565,0.645000,-0.753302,0.128493,0.645000,-0.753302,0.128493, + 0.645000,-0.753302,0.128493,0.645000,-0.753302,0.128493,0.648435,-0.752426,0.115704,0.648435,-0.752426,0.115704, + 0.648435,-0.752426,0.115704,0.648435,-0.752426,0.115704,0.710816,0.652512,0.262621,0.710816,0.652512,0.262621, + 0.710816,0.652512,0.262621,0.710816,0.652512,0.262621,-0.649526,0.752110,-0.111559,-0.649526,0.752110,-0.111559, + -0.649526,0.752110,-0.111559,-0.649526,0.752110,-0.111559,0.648456,-0.752407,0.115710,0.648456,-0.752407,0.115710, + 0.648456,-0.752407,0.115710,0.648456,-0.752407,0.115710,0.593036,-0.431131,-0.680025,0.593036,-0.431131,-0.680025, + 0.593036,-0.431131,-0.680025,0.593036,-0.431131,-0.680025,-0.595098,0.435267,0.675574,-0.595098,0.435267,0.675574, + -0.595098,0.435267,0.675574,-0.595098,0.435267,0.675574,0.716844,0.665403,0.208262,0.716844,0.665403,0.208262, + 0.716844,0.665403,0.208262,0.716844,0.665403,0.208262,0.657272,0.696319,0.288327,0.657272,0.696319,0.288327, + 0.657272,0.696319,0.288327,0.657272,0.696319,0.288327,-0.658432,0.746964,-0.092261,-0.658432,0.746964,-0.092261, + -0.658432,0.746964,-0.092261,-0.658432,0.746964,-0.092261,-0.645046,0.753200,-0.128863,-0.645046,0.753200,-0.128863, + -0.645046,0.753200,-0.128863,-0.645046,0.753200,-0.128863,0.697033,0.702146,0.145379,0.697033,0.702146,0.145379, + 0.697033,0.702146,0.145379,0.697033,0.702146,0.145379,0.719543,0.653544,0.234814,0.719543,0.653544,0.234814, + 0.719543,0.653544,0.234814,0.719543,0.653544,0.234814,0.246012,0.067801,-0.966893,0.246012,0.067801,-0.966893, + 0.246012,0.067801,-0.966893,0.246012,0.067801,-0.966893,-0.508652,-0.319623,0.799446,-0.508652,-0.319623,0.799446, + -0.508652,-0.319623,0.799446,-0.508652,-0.319623,0.799446,0.718148,0.655167,0.234563,0.718148,0.655167,0.234563, + 0.718148,0.655167,0.234563,0.718148,0.655167,0.234563,0.733085,0.658059,0.171887,0.733085,0.658059,0.171887, + 0.733085,0.658059,0.171887,0.733085,0.658059,0.171887,0.727689,0.657268,0.196132,0.727689,0.657268,0.196132, + 0.727689,0.657268,0.196132,0.727689,0.657268,0.196132,0.710289,0.652922,0.263027,0.710289,0.652922,0.263027, + 0.710289,0.652922,0.263027,0.710289,0.652922,0.263027,0.733556,0.654690,0.182418,0.733556,0.654690,0.182418, + 0.733556,0.654690,0.182418,0.733556,0.654690,0.182418,0.731444,0.658694,0.176383,0.731444,0.658694,0.176383, + 0.731444,0.658694,0.176383,0.731444,0.658694,0.176383,0.705128,0.657366,0.265826,0.705128,0.657366,0.265826, + 0.705128,0.657366,0.265826,0.705128,0.657366,0.265826,-0.228344,-0.000729,0.973580,-0.228344,-0.000729,0.973580, + -0.228344,-0.000729,0.973580,0.723314,0.661079,0.199480,0.723314,0.661079,0.199480,0.723314,0.661079,0.199480, + 0.723314,0.661079,0.199480,0.710808,0.655349,0.255480,0.710808,0.655349,0.255480,0.710808,0.655349,0.255480, + 0.710808,0.655349,0.255480,-0.344270,-0.144497,0.927685,-0.344270,-0.144497,0.927685,-0.344270,-0.144497,0.927685, + -0.344270,-0.144497,0.927685,-0.306487,-0.049248,0.950600,-0.306487,-0.049248,0.950600,-0.306487,-0.049248,0.950600, + -0.306487,-0.049248,0.950600,-0.314849,-0.039852,0.948305,-0.314849,-0.039852,0.948305,-0.314849,-0.039852,0.948305, + -0.314849,-0.039852,0.948305,0.667435,0.691613,0.276047,0.667435,0.691613,0.276047,0.667435,0.691613,0.276047, + 0.667435,0.691613,0.276047,0.456664,-0.887118,-0.066928,0.456664,-0.887118,-0.066928,0.456664,-0.887118,-0.066928, + 0.456664,-0.887118,-0.066928,0.670034,0.700709,0.245074,0.670034,0.700709,0.245074,0.670034,0.700709,0.245074, + 0.670034,0.700709,0.245074,-0.650027,0.749394,-0.125990,-0.650027,0.749394,-0.125990,-0.650027,0.749394,-0.125990, + -0.650027,0.749394,-0.125990,-0.778559,-0.587631,-0.220307,-0.778559,-0.587631,-0.220307,-0.778559,-0.587631,-0.220307, + -0.778559,-0.587631,-0.220307,-0.714414,-0.654808,-0.246656,-0.714414,-0.654808,-0.246656,-0.714414,-0.654808,-0.246656, + -0.714414,-0.654808,-0.246656,0.718078,-0.681100,0.143063,0.718078,-0.681100,0.143063,0.718078,-0.681100,0.143063, + 0.290138,0.082826,-0.953394,0.290138,0.082826,-0.953394,0.290138,0.082826,-0.953394,0.290138,0.082826,-0.953394, + -0.714416,-0.654805,-0.246658,-0.714416,-0.654805,-0.246658,-0.714416,-0.654805,-0.246658,-0.714416,-0.654805,-0.246658, + 0.684762,-0.716746,0.131820,0.684762,-0.716746,0.131820,0.684762,-0.716746,0.131820,-0.054609,-0.994029,-0.094469, + -0.054609,-0.994029,-0.094469,-0.054609,-0.994029,-0.094469,-0.054609,-0.994029,-0.094469,-0.647832,0.752521,-0.118433, + -0.647832,0.752521,-0.118433,-0.647832,0.752521,-0.118433,-0.647832,0.752521,-0.118433,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.655198,0.748059,-0.105465, + -0.655198,0.748059,-0.105465,-0.655198,0.748059,-0.105465,-0.655198,0.748059,-0.105465,0.717382,0.656059,0.234414, + 0.717382,0.656059,0.234414,0.717382,0.656059,0.234414,0.717382,0.656059,0.234414,0.725359,0.646695,0.235881, + 0.725359,0.646695,0.235881,0.725359,0.646695,0.235881,0.725359,0.646695,0.235881,-0.558017,-0.351967,0.751489, + -0.558017,-0.351967,0.751489,-0.558017,-0.351967,0.751489,-0.558017,-0.351967,0.751489,0.283683,0.084283,-0.955207, + 0.283683,0.084283,-0.955207,0.283683,0.084283,-0.955207,0.283683,0.084283,-0.955207,-0.515742,-0.317359,0.795797, + -0.515742,-0.317359,0.795797,-0.515742,-0.317359,0.795797,-0.515742,-0.317359,0.795797,0.718151,0.655163,0.234565, + 0.718151,0.655163,0.234565,0.718151,0.655163,0.234565,0.718151,0.655163,0.234565,0.303243,-0.950214,-0.071680, + 0.303243,-0.950214,-0.071680,0.303243,-0.950214,-0.071680,0.303243,-0.950214,-0.071680,-0.048165,-0.991749,-0.118804, + -0.048165,-0.991749,-0.118804,-0.048165,-0.991749,-0.118804,-0.048165,-0.991749,-0.118804,-0.552734,-0.338886,0.761342, + -0.552734,-0.338886,0.761342,-0.552734,-0.338886,0.761342,-0.552734,-0.338886,0.761342,-0.578176,-0.390099,0.716614, + -0.578176,-0.390099,0.716614,-0.578176,-0.390099,0.716614,-0.578176,-0.390099,0.716614,0.307330,0.116687,-0.944422, + 0.307330,0.116687,-0.944422,0.307330,0.116687,-0.944422,0.307330,0.116687,-0.944422,-0.106743,-0.994282,-0.003104, + -0.106743,-0.994282,-0.003104,-0.106743,-0.994282,-0.003104,-0.211168,-0.960707,-0.180139,-0.211168,-0.960707,-0.180139, + -0.211168,-0.960707,-0.180139,-0.211168,-0.960707,-0.180139,-0.684191,0.708346,-0.173576,-0.684191,0.708346,-0.173576, + -0.684191,0.708346,-0.173576,-0.684191,0.708346,-0.173576,-0.623831,0.777939,-0.075139,-0.623831,0.777939,-0.075139, + -0.623831,0.777939,-0.075139,-0.623831,0.777939,-0.075139,-0.086548,0.991911,0.092852,-0.086548,0.991911,0.092852, + -0.086548,0.991911,0.092852,-0.086548,0.991911,0.092852,-0.055897,0.998384,-0.010259,-0.055897,0.998384,-0.010259, + -0.055897,0.998384,-0.010259,-0.055897,0.998384,-0.010259,0.962730,0.054185,0.264982,0.962730,0.054185,0.264982, + 0.962730,0.054185,0.264982,0.962730,0.054185,0.264982,-0.965427,-0.000913,-0.260673,-0.965427,-0.000913,-0.260673, + -0.965427,-0.000913,-0.260673,-0.965427,-0.000913,-0.260673,-0.965427,-0.000912,-0.260673,-0.965427,-0.000912,-0.260673, + -0.965427,-0.000912,-0.260673,-0.965427,-0.000912,-0.260673,-0.092793,0.991083,0.095624,-0.092793,0.991083,0.095624, + -0.092793,0.991083,0.095624,-0.092793,0.991083,0.095624,0.962730,0.054186,0.264980,0.962730,0.054186,0.264980, + 0.962730,0.054186,0.264980,0.962730,0.054186,0.264980,-0.092792,0.991083,0.095625,-0.092792,0.991083,0.095625, + -0.092792,0.991083,0.095625,-0.092792,0.991083,0.095625,0.899733,-0.418884,0.122543,0.899733,-0.418884,0.122543, + 0.899733,-0.418884,0.122543,0.899733,-0.418884,0.122543,-0.312405,-0.095359,0.945151,-0.312405,-0.095359,0.945151, + -0.312405,-0.095359,0.945151,-0.312405,-0.095359,0.945151,-0.061528,0.998076,0.007630,-0.061528,0.998076,0.007630, + -0.061528,0.998076,0.007630,-0.061528,0.998076,0.007630,-0.253247,-0.137873,0.957526,-0.253247,-0.137873,0.957526, + -0.253247,-0.137873,0.957526,-0.253247,-0.137873,0.957526,-0.019715,0.995459,0.093125,-0.019715,0.995459,0.093125, + -0.019715,0.995459,0.093125,-0.019715,0.995459,0.093125,-0.968961,0.003689,-0.247186,-0.968961,0.003689,-0.247186, + -0.968961,0.003689,-0.247186,-0.968961,0.003689,-0.247186,0.967893,-0.003982,0.251330,0.967893,-0.003982,0.251330, + 0.967893,-0.003982,0.251330,0.967893,-0.003982,0.251330,0.000719,0.999910,0.013384,0.000719,0.999910,0.013384, + 0.000719,0.999910,0.013384,0.000719,0.999910,0.013384,-0.689694,0.040177,-0.722986,-0.689694,0.040177,-0.722986, + -0.689694,0.040177,-0.722986,-0.689694,0.040177,-0.722986,0.693323,-0.039891,0.719522,0.693323,-0.039891,0.719522, + 0.693323,-0.039891,0.719522,0.693323,-0.039891,0.719522,-0.001493,0.999762,0.021786,-0.001493,0.999762,0.021786, + -0.001493,0.999762,0.021786,-0.001493,0.999762,0.021786,-0.974540,-0.028635,0.222378,-0.974540,-0.028635,0.222378, + -0.974540,-0.028635,0.222378,-0.974540,-0.028635,0.222378,0.973377,0.028966,-0.227374,0.973377,0.028966,-0.227374, + 0.973377,0.028966,-0.227374,0.973377,0.028966,-0.227374,0.001398,0.999959,0.008889,0.001398,0.999959,0.008889, + 0.001398,0.999959,0.008889,0.001398,0.999959,0.008889,-0.001399,-0.999960,-0.008887,-0.001399,-0.999960,-0.008887, + -0.001399,-0.999960,-0.008887,-0.001399,-0.999960,-0.008887,-0.239796,0.023466,0.970540,-0.239796,0.023466,0.970540, + -0.239796,0.023466,0.970540,-0.239796,0.023466,0.970540,0.276132,-0.023568,-0.960831,0.276132,-0.023568,-0.960831, + 0.276132,-0.023568,-0.960831,0.276132,-0.023568,-0.960831,-0.972109,0.003418,-0.234505,-0.972109,0.003418,-0.234505, + -0.972109,0.003418,-0.234505,-0.972109,0.003418,-0.234505,0.943929,-0.001018,0.330146,0.943929,-0.001018,0.330146, + 0.943929,-0.001018,0.330146,0.943929,-0.001018,0.330146,0.000517,0.999964,-0.008440,0.000517,0.999964,-0.008440, + 0.000517,0.999964,-0.008440,0.000517,0.999964,-0.008440,-0.000517,-0.999964,0.008434,-0.000517,-0.999964,0.008434, + -0.000517,-0.999964,0.008434,-0.000517,-0.999964,0.008434,0.173191,-0.029733,-0.984439,0.173191,-0.029733,-0.984439, + 0.173191,-0.029733,-0.984439,0.173191,-0.029733,-0.984439,-0.210113,0.029637,0.977228,-0.210113,0.029637,0.977228, + -0.210113,0.029637,0.977228,-0.210113,0.029637,0.977228,0.985825,0.001812,0.167769,0.985825,0.001812,0.167769, + 0.985825,0.001812,0.167769,0.985825,0.001812,0.167769,-0.964233,-0.004743,-0.265014,-0.964233,-0.004743,-0.265014, + -0.964233,-0.004743,-0.265014,-0.964233,-0.004743,-0.265014,-0.001748,0.999503,0.031488,-0.001748,0.999503,0.031488, + -0.001748,0.999503,0.031488,-0.001748,0.999503,0.031488,0.001748,-0.999503,-0.031485,0.001748,-0.999503,-0.031485, + 0.001748,-0.999503,-0.031485,0.001748,-0.999503,-0.031485,0.261389,0.010469,-0.965177,0.261389,0.010469,-0.965177, + 0.261389,0.010469,-0.965177,0.261389,0.010469,-0.965177,-0.297522,-0.010111,0.954661,-0.297522,-0.010111,0.954661, + -0.297522,-0.010111,0.954661,-0.297522,-0.010111,0.954661,0.966676,-0.008129,0.255872,0.966676,-0.008129,0.255872, + 0.966676,-0.008129,0.255872,0.966676,-0.008129,0.255872,-0.936402,0.009024,-0.350812,-0.936402,0.009024,-0.350812, + -0.936402,0.009024,-0.350812,-0.936402,0.009024,-0.350812,-0.001497,0.999762,0.021778,-0.001497,0.999762,0.021778, + -0.001497,0.999762,0.021778,-0.001497,0.999762,0.021778,-0.689552,0.040187,-0.723121,-0.689552,0.040187,-0.723121, + -0.689552,0.040187,-0.723121,-0.689552,0.040187,-0.723121,0.693183,-0.039905,0.719656,0.693183,-0.039905,0.719656, + 0.693183,-0.039905,0.719656,0.693183,-0.039905,0.719656,-0.002937,0.999624,0.027259,-0.002937,0.999624,0.027259, + -0.002937,0.999624,0.027259,-0.002937,0.999624,0.027259,-0.974957,-0.028505,0.220558,-0.974957,-0.028505,0.220558, + -0.974957,-0.028505,0.220558,-0.974957,-0.028505,0.220558,0.973797,0.028842,-0.225582,0.973797,0.028842,-0.225582, + 0.973797,0.028842,-0.225582,0.973797,0.028842,-0.225582,-0.086839,0.991781,0.093968,-0.086839,0.991781,0.093968, + -0.086839,0.991781,0.093968,-0.086839,0.991781,0.093968,-0.969935,-0.001884,-0.243357,-0.969935,-0.001884,-0.243357, + -0.969935,-0.001884,-0.243357,-0.969935,-0.001884,-0.243357,-0.967857,0.003859,-0.251471,-0.967857,0.003859,-0.251471, + -0.967857,0.003859,-0.251471,-0.967857,0.003859,-0.251471,-0.055410,0.998394,-0.011800,-0.055410,0.998394,-0.011800, + -0.055410,0.998394,-0.011800,-0.055410,0.998394,-0.011800,-0.235799,-0.512045,0.825959,-0.235799,-0.512045,0.825959, + -0.235799,-0.512045,0.825959,-0.235799,-0.512045,0.825959,-0.008469,0.997779,0.066074,-0.008469,0.997779,0.066074, + -0.008469,0.997779,0.066074,-0.008469,0.997779,0.066074,0.267693,0.099890,-0.958312,0.267693,0.099890,-0.958312, + 0.267693,0.099890,-0.958312,0.267693,0.099890,-0.958312,0.237560,-0.274943,-0.931650,0.237560,-0.274943,-0.931650, + 0.237560,-0.274943,-0.931650,0.237560,-0.274943,-0.931650,-0.246373,-0.132282,0.960105,-0.246373,-0.132282,0.960105, + -0.246373,-0.132282,0.960105,-0.246373,-0.132282,0.960105,-0.012883,0.997808,0.064910,-0.012883,0.997808,0.064910, + -0.012883,0.997808,0.064910,-0.012883,0.997808,0.064910,-0.006649,0.999529,0.029946,-0.006649,0.999529,0.029946, + -0.006649,0.999529,0.029946,-0.006649,0.999529,0.029946,-0.017726,0.996135,0.086022,-0.017726,0.996135,0.086022, + -0.017726,0.996135,0.086022,-0.017726,0.996135,0.086022,0.002370,0.999958,0.008847,0.002370,0.999958,0.008847, + 0.002370,0.999958,0.008847,0.002370,0.999958,0.008847,-0.312407,-0.095358,0.945150,-0.312407,-0.095358,0.945150, + -0.312407,-0.095358,0.945150,-0.312407,-0.095358,0.945150,-0.312401,-0.095357,0.945152,-0.312401,-0.095357,0.945152, + -0.312401,-0.095357,0.945152,-0.312401,-0.095357,0.945152,-0.092793,0.991083,0.095624,-0.092793,0.991083,0.095624, + -0.092793,0.991083,0.095624,-0.092793,0.991083,0.095624,0.971245,-0.184593,0.150362,0.971245,-0.184593,0.150362, + 0.971245,-0.184593,0.150362,0.971245,-0.184593,0.150362,-0.083019,0.993391,0.079259,-0.083019,0.993391,0.079259, + -0.083019,0.993391,0.079259,-0.083019,0.993391,0.079259,0.693326,-0.712232,0.109659,0.693326,-0.712232,0.109659, + 0.693326,-0.712232,0.109659,0.693326,-0.712232,0.109659,-0.968460,0.003703,-0.249141,-0.968460,0.003703,-0.249141, + -0.968460,0.003703,-0.249141,-0.968460,0.003703,-0.249141,-0.969147,-0.001687,-0.246479,-0.969147,-0.001687,-0.246479, + -0.969147,-0.001687,-0.246479,-0.969147,-0.001687,-0.246479,-0.251997,-0.179000,0.951029,-0.251997,-0.179000,0.951029, + -0.251997,-0.179000,0.951029,0.898843,-0.419443,0.127080,0.898843,-0.419443,0.127080,0.898843,-0.419443,0.127080, + 0.898843,-0.419443,0.127080,0.695523,-0.711429,0.100581,0.695523,-0.711429,0.100581,0.695523,-0.711429,0.100581, + 0.695523,-0.711429,0.100581,0.016783,-0.996896,-0.076924,0.016783,-0.996896,-0.076924,0.016783,-0.996896,-0.076924, + 0.016783,-0.996896,-0.076924,-0.012882,0.997809,0.064892,-0.012882,0.997809,0.064892,-0.012882,0.997809,0.064892, + -0.012882,0.997809,0.064892,0.244579,-0.270111,-0.931247,0.244579,-0.270111,-0.931247,0.244579,-0.270111,-0.931247, + 0.244579,-0.270111,-0.931247,-0.013072,0.997808,0.064865,-0.013072,0.997808,0.064865,-0.013072,0.997808,0.064865, + -0.013072,0.997808,0.064865,-0.008435,0.997779,0.066073,-0.008435,0.997779,0.066073,-0.008435,0.997779,0.066073, + -0.008435,0.997779,0.066073,-0.001416,0.999899,0.014128,-0.001416,0.999899,0.014128,-0.001416,0.999899,0.014128, + -0.001416,0.999899,0.014128,-0.025990,0.995230,0.094030,-0.025990,0.995230,0.094030,-0.025990,0.995230,0.094030, + -0.025990,0.995230,0.094030,0.001732,0.999895,0.014396,0.001732,0.999895,0.014396,0.001732,0.999895,0.014396, + 0.001732,0.999895,0.014396,-0.262373,-0.133689,0.955661,-0.262373,-0.133689,0.955661,-0.262373,-0.133689,0.955661, + -0.262373,-0.133689,0.955661,0.253246,0.136837,-0.957675,0.253246,0.136837,-0.957675,0.253246,0.136837,-0.957675, + 0.253246,0.136837,-0.957675,0.966453,-0.050422,0.251844,0.966453,-0.050422,0.251844,0.966453,-0.050422,0.251844, + -0.216847,-0.538791,0.814053,-0.216847,-0.538791,0.814053,-0.216847,-0.538791,0.814053,-0.216847,-0.538791,0.814053, + -0.263784,-0.173765,0.948801,-0.263784,-0.173765,0.948801,-0.263784,-0.173765,0.948801,-0.263784,-0.173765,0.948801, + 0.255923,-0.240573,-0.936284,0.255923,-0.240573,-0.936284,0.255923,-0.240573,-0.936284,0.255923,-0.240573,-0.936284, + 0.961903,-0.119448,0.245918,0.961903,-0.119448,0.245918,0.961903,-0.119448,0.245918,0.016783,-0.996896,-0.076922, + 0.016783,-0.996896,-0.076922,0.016783,-0.996896,-0.076922,0.016783,-0.996896,-0.076922,0.700759,-0.681643,0.210475, + 0.700759,-0.681643,0.210475,0.700759,-0.681643,0.210475,0.676803,-0.731941,0.078747,0.676803,-0.731941,0.078747, + 0.676803,-0.731941,0.078747,0.676803,-0.731941,0.078747,-0.959607,-0.043204,-0.278007,-0.959607,-0.043204,-0.278007, + -0.959607,-0.043204,-0.278007,-0.959607,-0.043204,-0.278007,-0.956264,-0.057039,-0.286891,-0.956264,-0.057039,-0.286891, + -0.956264,-0.057039,-0.286891,-0.975049,0.037037,-0.218878,-0.975049,0.037037,-0.218878,-0.975049,0.037037,-0.218878, + -0.975049,0.037037,-0.218878,-0.025771,-0.997599,-0.064279,-0.025771,-0.997599,-0.064279,-0.025771,-0.997599,-0.064279, + 0.254828,0.066047,-0.964728,0.254828,0.066047,-0.964728,0.254828,0.066047,-0.964728,0.254828,0.066047,-0.964728, + 0.040196,0.996079,0.078811,0.040196,0.996079,0.078811,0.040196,0.996079,0.078811,0.040196,0.996079,0.078811, + 0.040198,0.996079,0.078811,0.040198,0.996079,0.078811,0.040198,0.996079,0.078811,0.040198,0.996079,0.078811, + -0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189, + -0.040200,-0.996078,-0.078814,-0.040200,-0.996078,-0.078814,-0.040200,-0.996078,-0.078814,-0.040200,-0.996078,-0.078814, + -0.040200,-0.996079,-0.078809,-0.040200,-0.996079,-0.078809,-0.040200,-0.996079,-0.078809,-0.040200,-0.996079,-0.078809, + 0.966148,-0.058865,0.251182,0.966148,-0.058865,0.251182,0.966148,-0.058865,0.251182,0.966148,-0.058865,0.251182, + -0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189,-0.966146,0.058865,-0.251189, + -0.036315,-0.994958,-0.093483,-0.036315,-0.994958,-0.093483,-0.036315,-0.994958,-0.093483,-0.036315,-0.994958,-0.093483, + -0.964583,0.062435,-0.256284,-0.964583,0.062435,-0.256284,-0.964583,0.062435,-0.256284,-0.964583,0.062435,-0.256284, + 0.040233,0.997553,0.057177,0.040233,0.997553,0.057177,0.040233,0.997553,0.057177,0.040233,0.997553,0.057177, + 0.966147,-0.058864,0.251188,0.966147,-0.058864,0.251188,0.966147,-0.058864,0.251188,0.966147,-0.058864,0.251188, + -0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724,-0.254845,-0.066044,0.964724, + -0.985578,0.052916,-0.160736,-0.985578,0.052916,-0.160736,-0.985578,0.052916,-0.160736,-0.985578,0.052916,-0.160736, + 0.514243,-0.088249,0.853092,0.514243,-0.088249,0.853092,0.514243,-0.088249,0.853092,0.514243,-0.088249,0.853092, + 0.108313,0.074065,-0.991354,0.108313,0.074065,-0.991354,0.108313,0.074065,-0.991354,0.108313,0.074065,-0.991354, + 0.961687,-0.059960,0.267511,0.961687,-0.059960,0.267511,0.961687,-0.059960,0.267511,0.961687,-0.059960,0.267511, + 0.040198,0.996079,0.078810,0.040198,0.996079,0.078810,0.040198,0.996079,0.078810,0.040198,0.996079,0.078810, + 0.999034,-0.038663,-0.020909,0.999034,-0.038663,-0.020909,0.999034,-0.038663,-0.020909,0.999034,-0.038663,-0.020909, + 0.211979,0.068577,-0.974865,0.211979,0.068577,-0.974865,0.211979,0.068577,-0.974865,0.211979,0.068577,-0.974865, + -0.995912,0.046323,-0.077551,-0.995912,0.046323,-0.077551,-0.995912,0.046323,-0.077551,-0.995912,0.046323,-0.077551, + -0.763782,-0.587204,-0.268008,-0.763782,-0.587204,-0.268008,-0.763782,-0.587204,-0.268008,-0.763782,-0.587204,-0.268008, + -0.966147,0.058822,-0.251196,-0.966147,0.058822,-0.251196,-0.966147,0.058822,-0.251196,-0.966147,0.058822,-0.251196, + -0.966147,0.058862,-0.251186,-0.966147,0.058862,-0.251186,-0.966147,0.058862,-0.251186,-0.966147,0.058862,-0.251186, + -0.159228,-0.877178,0.452996,-0.159228,-0.877178,0.452996,-0.159228,-0.877178,0.452996,-0.159228,-0.877178,0.452996, + 0.275379,0.064775,-0.959151,0.275379,0.064775,-0.959151,0.275379,0.064775,-0.959151,0.275379,0.064775,-0.959151, + -0.966148,0.058864,-0.251185,-0.966148,0.058864,-0.251185,-0.966148,0.058864,-0.251185,-0.966148,0.058864,-0.251185, + -0.953181,0.061885,-0.296001,-0.953181,0.061885,-0.296001,-0.953181,0.061885,-0.296001,-0.953181,0.061885,-0.296001, + 0.830280,0.010584,-0.557246,0.830280,0.010584,-0.557246,0.830280,0.010584,-0.557246,0.830280,0.010584,-0.557246, + 0.966148,-0.058841,0.251188,0.966148,-0.058841,0.251188,0.966148,-0.058841,0.251188,0.966148,-0.058841,0.251188, + -0.468684,0.095168,-0.878224,-0.468684,0.095168,-0.878224,-0.468684,0.095168,-0.878224,-0.468684,0.095168,-0.878224, + 0.080704,0.994635,-0.064712,0.080704,0.994635,-0.064712,0.080704,0.994635,-0.064712,0.080704,0.994635,-0.064712, + 0.262963,0.065543,-0.962577,0.262963,0.065543,-0.962577,0.262963,0.065543,-0.962577,0.262963,0.065543,-0.962577, + -0.966150,0.058848,-0.251181,-0.966150,0.058848,-0.251181,-0.966150,0.058848,-0.251181,-0.966150,0.058848,-0.251181, + -0.035344,-0.994547,-0.098118,-0.035344,-0.994547,-0.098118,-0.035344,-0.994547,-0.098118,-0.035344,-0.994547,-0.098118, + 0.966147,-0.058863,0.251189,0.966147,-0.058863,0.251189,0.966147,-0.058863,0.251189,0.966147,-0.058863,0.251189, + 0.990757,-0.113559,-0.074192,0.990757,-0.113559,-0.074192,0.990757,-0.113559,-0.074192,0.990757,-0.113559,-0.074192, + 0.643539,-0.444502,0.623117,0.643539,-0.444502,0.623117,0.643539,-0.444502,0.623117,0.643539,-0.444502,0.623117, + 0.248816,0.761259,-0.598811,0.248816,0.761259,-0.598811,0.248816,0.761259,-0.598811,0.248816,0.761259,-0.598811, + -0.950201,0.093955,-0.297138,-0.950201,0.093955,-0.297138,-0.950201,0.093955,-0.297138,-0.950201,0.093955,-0.297138, + 0.537150,0.105700,0.836838,0.537150,0.105700,0.836838,0.537150,0.105700,0.836838,0.537150,0.105700,0.836838, + 0.290366,-0.256020,-0.922031,0.290366,-0.256020,-0.922031,0.290366,-0.256020,-0.922031,0.290366,-0.256020,-0.922031, + -0.941742,0.007822,-0.336245,-0.941742,0.007822,-0.336245,-0.941742,0.007822,-0.336245,-0.941742,0.007822,-0.336245, + 0.993745,0.107332,0.030831,0.993745,0.107332,0.030831,0.993745,0.107332,0.030831,0.993745,0.107332,0.030831, + 0.133708,0.955459,-0.263097,0.133708,0.955459,-0.263097,0.133708,0.955459,-0.263097,0.133708,0.955459,-0.263097, + -0.246284,0.257443,0.934381,-0.246284,0.257443,0.934381,-0.246284,0.257443,0.934381,-0.246284,0.257443,0.934381, + -0.190982,-0.725481,0.661214,-0.190982,-0.725481,0.661214,-0.190982,-0.725481,0.661214,-0.190982,-0.725481,0.661214, + 0.162097,-0.508931,-0.845407,0.162097,-0.508931,-0.845407,0.162097,-0.508931,-0.845407,0.162097,-0.508931,-0.845407, + 0.966911,-0.028121,0.253560,0.966911,-0.028121,0.253560,0.966911,-0.028121,0.253560,0.966911,-0.028121,0.253560, + 0.040002,0.998388,0.040264,0.040002,0.998388,0.040264,0.040002,0.998388,0.040264,0.040002,0.998388,0.040264, + 0.247272,-0.249794,-0.936194,0.247272,-0.249794,-0.936194,0.247272,-0.249794,-0.936194,0.247272,-0.249794,-0.936194, + 0.192492,0.737114,-0.647773,0.192492,0.737114,-0.647773,0.192492,0.737114,-0.647773,0.192492,0.737114,-0.647773, + -0.929591,0.085001,-0.358659,-0.929591,0.085001,-0.358659,-0.929591,0.085001,-0.358659,-0.929591,0.085001,-0.358659, + -0.926489,0.023568,-0.375584,-0.926489,0.023568,-0.375584,-0.926489,0.023568,-0.375584,-0.926489,0.023568,-0.375584, + 0.971768,-0.108034,0.209750,0.971768,-0.108034,0.209750,0.971768,-0.108034,0.209750,0.971768,-0.108034,0.209750, + -0.038955,-0.995742,-0.083547,-0.038955,-0.995742,-0.083547,-0.038955,-0.995742,-0.083547,-0.038955,-0.995742,-0.083547, + 0.035541,0.994708,0.096400,0.035541,0.994708,0.096400,0.035541,0.994708,0.096400,0.035541,0.994708,0.096400, + 0.976424,-0.067887,0.204909,0.976424,-0.067887,0.204909,0.976424,-0.067887,0.204909,-0.954346,0.061639,-0.292276, + -0.954346,0.061639,-0.292276,-0.954346,0.061639,-0.292276,-0.952269,0.062076,-0.298880,-0.952269,0.062076,-0.298880, + -0.952269,0.062076,-0.298880,-0.952269,0.062076,-0.298880,0.974157,-0.068340,0.215283,0.974157,-0.068340,0.215283, + 0.974157,-0.068340,0.215283,0.974157,-0.068340,0.215283,-0.782758,-0.591538,-0.193323,-0.782758,-0.591538,-0.193323, + -0.782758,-0.591538,-0.193323,-0.782758,-0.591538,-0.193323,0.049616,0.997843,0.042994,0.049616,0.997843,0.042994, + 0.049616,0.997843,0.042994,0.049616,0.997843,0.042994,-0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724, + -0.254845,-0.066045,0.964724,-0.254845,-0.066045,0.964724,0.972340,-0.057128,0.226475,0.972340,-0.057128,0.226475, + 0.972340,-0.057128,0.226475,0.972340,-0.057128,0.226475,0.972337,-0.057188,0.226473,0.972337,-0.057188,0.226473, + 0.972337,-0.057188,0.226473,0.972337,-0.057188,0.226473,0.974867,-0.056394,0.215530,0.974867,-0.056394,0.215530, + 0.974867,-0.056394,0.215530,0.974867,-0.056394,0.215530,-0.035331,-0.994737,-0.096179,-0.035331,-0.994737,-0.096179, + -0.035331,-0.994737,-0.096179,-0.035331,-0.994737,-0.096179,-0.970614,0.057641,-0.233635,-0.970614,0.057641,-0.233635, + -0.970614,0.057641,-0.233635,-0.970614,0.057641,-0.233635,0.035329,0.994737,0.096175,0.035329,0.994737,0.096175, + 0.035329,0.994737,0.096175,0.035329,0.994737,0.096175,0.970614,-0.057657,0.233634,0.970614,-0.057657,0.233634, + 0.970614,-0.057657,0.233634,0.970614,-0.057657,0.233634,0.970612,-0.057678,0.233634,0.970612,-0.057678,0.233634, + 0.970612,-0.057678,0.233634,0.970612,-0.057678,0.233634,0.970613,-0.057676,0.233633,0.970613,-0.057676,0.233633, + 0.970613,-0.057676,0.233633,0.970613,-0.057676,0.233633,0.970614,-0.057645,0.233634,0.970614,-0.057645,0.233634, + 0.970614,-0.057645,0.233634,0.970614,-0.057645,0.233634,0.041988,0.996518,0.072033,0.041988,0.996518,0.072033, + 0.041988,0.996518,0.072033,0.041988,0.996518,0.072033,0.049239,0.997798,0.044439,0.049239,0.997798,0.044439, + 0.049239,0.997798,0.044439,0.049239,0.997798,0.044439,0.037262,0.995252,0.089911,0.037262,0.995252,0.089911, + 0.037262,0.995252,0.089911,0.037262,0.995252,0.089911,-0.035725,-0.994768,-0.095708,-0.035725,-0.994768,-0.095708, + -0.035725,-0.994768,-0.095708,-0.035725,-0.994768,-0.095708,-0.035795,-0.994791,-0.095442,-0.035795,-0.994791,-0.095442, + -0.035795,-0.994791,-0.095442,-0.035795,-0.994791,-0.095442,-0.043247,-0.996798,-0.067258,-0.043247,-0.996798,-0.067258, + -0.043247,-0.996798,-0.067258,-0.043247,-0.996798,-0.067258,-0.042150,-0.996886,-0.066644,-0.042150,-0.996886,-0.066644, + -0.042150,-0.996886,-0.066644,-0.042150,-0.996886,-0.066644,0.035168,0.994582,0.097822,0.035168,0.994582,0.097822, + 0.035168,0.994582,0.097822,0.035168,0.994582,0.097822,0.955537,-0.061378,0.288412,0.955537,-0.061378,0.288412, + 0.955537,-0.061378,0.288412,0.955537,-0.061378,0.288412,-0.035167,-0.994582,-0.097822,-0.035167,-0.994582,-0.097822, + -0.035167,-0.994582,-0.097822,-0.035167,-0.994582,-0.097822,-0.955537,0.061390,-0.288411,-0.955537,0.061390,-0.288411, + -0.955537,0.061390,-0.288411,-0.955537,0.061390,-0.288411,-0.955775,0.061345,-0.287630,-0.955775,0.061345,-0.287630, + -0.955775,0.061345,-0.287630,-0.955775,0.061345,-0.287630,-0.955777,0.061324,-0.287629,-0.955777,0.061324,-0.287629, + -0.955777,0.061324,-0.287629,-0.955777,0.061324,-0.287629,0.955751,-0.061320,0.287716,0.955751,-0.061320,0.287716, + 0.955751,-0.061320,0.287716,0.955751,-0.061320,0.287716,0.049906,0.997874,0.041905,0.049906,0.997874,0.041905, + 0.049906,0.997874,0.041905,0.049906,0.997874,0.041905,-0.049902,-0.997875,-0.041903,-0.049902,-0.997875,-0.041903, + -0.049902,-0.997875,-0.041903,-0.049902,-0.997875,-0.041903,-0.955749,0.061352,-0.287716,-0.955749,0.061352,-0.287716, + -0.955749,0.061352,-0.287716,-0.955749,0.061352,-0.287716,-0.044658,-0.997148,-0.060840,-0.044658,-0.997148,-0.060840, + -0.044658,-0.997148,-0.060840,-0.044658,-0.997148,-0.060840,-0.961362,0.060033,-0.268660,-0.961362,0.060033,-0.268660, + -0.961362,0.060033,-0.268660,-0.961362,0.060033,-0.268660,-0.961360,0.060074,-0.268659,-0.961360,0.060074,-0.268659, + -0.961360,0.060074,-0.268659,-0.961360,0.060074,-0.268659,0.035838,0.994706,0.096308,0.035838,0.994706,0.096308, + 0.035838,0.994706,0.096308,0.035838,0.994706,0.096308,-0.961363,0.060035,-0.268659,-0.961363,0.060035,-0.268659, + -0.961363,0.060035,-0.268659,-0.961363,0.060035,-0.268659,-0.232830,-0.067365,0.970182,-0.232830,-0.067365,0.970182, + -0.232830,-0.067365,0.970182,-0.232830,-0.067365,0.970182,0.961686,-0.059981,0.267511,0.961686,-0.059981,0.267511, + 0.961686,-0.059981,0.267511,0.961686,-0.059981,0.267511,-0.764926,-0.587502,-0.264064,-0.764926,-0.587502,-0.264064, + -0.764926,-0.587502,-0.264064,-0.764926,-0.587502,-0.264064,-0.715911,0.680523,-0.156079,-0.715911,0.680523,-0.156079, + -0.715911,0.680523,-0.156079,-0.715911,0.680523,-0.156079,-0.040196,-0.996079,-0.078809,-0.040196,-0.996079,-0.078809, + -0.040196,-0.996079,-0.078809,-0.040196,-0.996079,-0.078809,-0.753142,0.636641,-0.165730,-0.753142,0.636641,-0.165730, + -0.753142,0.636641,-0.165730,-0.753142,0.636641,-0.165730,-0.040196,-0.996079,-0.078810,-0.040196,-0.996079,-0.078810, + -0.040196,-0.996079,-0.078810,-0.040196,-0.996079,-0.078810,-0.923139,0.067215,-0.378546,-0.923139,0.067215,-0.378546, + -0.923139,0.067215,-0.378546,-0.923139,0.067215,-0.378546,0.980685,-0.054453,0.187863,0.980685,-0.054453,0.187863, + 0.980685,-0.054453,0.187863,0.980685,-0.054453,0.187863,-0.938944,0.064621,-0.337946,-0.938944,0.064621,-0.337946, + -0.938944,0.064621,-0.337946,-0.938944,0.064621,-0.337946,0.964645,-0.059217,0.256813,0.964645,-0.059217,0.256813, + 0.964645,-0.059217,0.256813,0.964645,-0.059217,0.256813,-0.958017,0.060836,-0.280182,-0.958017,0.060836,-0.280182, + -0.958017,0.060836,-0.280182,-0.958017,0.060836,-0.280182,-0.051533,-0.998034,-0.035660,-0.051533,-0.998034,-0.035660, + -0.051533,-0.998034,-0.035660,-0.051533,-0.998034,-0.035660,-0.967348,0.058569,-0.246593,-0.967348,0.058569,-0.246593, + -0.967348,0.058569,-0.246593,-0.967348,0.058569,-0.246593,0.031825,0.993380,0.110381,0.031825,0.993380,0.110381, + 0.031825,0.993380,0.110381,0.031825,0.993380,0.110381,-0.967326,0.058540,-0.246684,-0.967326,0.058540,-0.246684, + -0.967326,0.058540,-0.246684,-0.967326,0.058540,-0.246684,0.253800,0.041931,-0.966348,0.253800,0.041931,-0.966348, + 0.253800,0.041931,-0.966348,0.253800,0.041931,-0.966348,-0.966148,0.058860,-0.251184,-0.966148,0.058860,-0.251184, + -0.966148,0.058860,-0.251184,-0.966148,0.058860,-0.251184,-0.966145,0.058863,-0.251197,-0.966145,0.058863,-0.251197, + -0.966145,0.058863,-0.251197,-0.966145,0.058863,-0.251197,-0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723, + -0.254846,-0.066047,0.964723,-0.254846,-0.066047,0.964723,-0.967326,0.058545,-0.246683,-0.967326,0.058545,-0.246683, + -0.967326,0.058545,-0.246683,-0.967326,0.058545,-0.246683,-0.056411,-0.998264,-0.016954,-0.056411,-0.998264,-0.016954, + -0.056411,-0.998264,-0.016954,-0.056411,-0.998264,-0.016954,-0.966147,0.058846,-0.251189,-0.966147,0.058846,-0.251189, + -0.966147,0.058846,-0.251189,-0.966147,0.058846,-0.251189,-0.966147,0.058858,-0.251187,-0.966147,0.058858,-0.251187, + -0.966147,0.058858,-0.251187,-0.966147,0.058858,-0.251187,-0.046878,-0.997468,-0.053481,-0.046878,-0.997468,-0.053481, + -0.046878,-0.997468,-0.053481,-0.046878,-0.997468,-0.053481,0.966148,-0.058862,0.251185,0.966148,-0.058862,0.251185, + 0.966148,-0.058862,0.251185,0.966148,-0.058862,0.251185,0.254717,0.062691,-0.964981,0.254717,0.062691,-0.964981, + 0.254717,0.062691,-0.964981,0.254717,0.062691,-0.964981,-0.254961,-0.069598,0.964443,-0.254961,-0.069598,0.964443, + -0.254961,-0.069598,0.964443,-0.254961,-0.069598,0.964443,0.966147,-0.058861,0.251188,0.966147,-0.058861,0.251188, + 0.966147,-0.058861,0.251188,0.966147,-0.058861,0.251188,0.966146,-0.058882,0.251189,0.966146,-0.058882,0.251189, + 0.966146,-0.058882,0.251189,0.966146,-0.058882,0.251189,0.966146,-0.058869,0.251188,0.966146,-0.058869,0.251188, + 0.966146,-0.058869,0.251188,0.966146,-0.058869,0.251188,0.033546,0.994020,0.103916,0.033546,0.994020,0.103916, + 0.033546,0.994020,0.103916,0.033546,0.994020,0.103916,0.966147,-0.058861,0.251189,0.966147,-0.058861,0.251189, + 0.966147,-0.058861,0.251189,0.966147,-0.058861,0.251189,0.966146,-0.058885,0.251187,0.966146,-0.058885,0.251187, + 0.966146,-0.058885,0.251187,0.966146,-0.058885,0.251187,0.966148,-0.058858,0.251185,0.966148,-0.058858,0.251185, + 0.966148,-0.058858,0.251185,0.966148,-0.058858,0.251185,-0.027904,-0.991755,-0.125072,-0.027904,-0.991755,-0.125072, + -0.027904,-0.991755,-0.125072,-0.027904,-0.991755,-0.125072,0.025665,0.990725,0.133434,0.025665,0.990725,0.133434, + 0.025665,0.990725,0.133434,0.025665,0.990725,0.133434,0.936170,-0.272797,0.221737,0.936170,-0.272797,0.221737, + 0.936170,-0.272797,0.221737,0.936170,-0.272797,0.221737,-0.045772,-0.997287,-0.057649,-0.045772,-0.997287,-0.057649, + -0.045772,-0.997287,-0.057649,-0.045772,-0.997287,-0.057649,0.044901,0.997129,0.060966,0.044901,0.997129,0.060966, + 0.044901,0.997129,0.060966,0.044901,0.997129,0.060966,0.951806,0.158322,0.262677,0.951806,0.158322,0.262677, + 0.951806,0.158322,0.262677,0.951806,0.158322,0.262677,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,0.797376,-0.079507,0.598222,0.797376,-0.079507,0.598222, + 0.797376,-0.079507,0.598222,0.797376,-0.079507,0.598222,-0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725, + -0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,0.255574,0.085482,-0.963003,0.255574,0.085482,-0.963003, + 0.255574,0.085482,-0.963003,0.255574,0.085482,-0.963003,0.990942,-0.020717,-0.132683,0.990942,-0.020717,-0.132683, + 0.990942,-0.020717,-0.132683,0.990942,-0.020717,-0.132683,-0.255866,-0.094017,0.962130,-0.255866,-0.094017,0.962130, + -0.255866,-0.094017,0.962130,-0.255866,-0.094017,0.962130,0.966149,-0.058859,0.251179,0.966149,-0.058859,0.251179, + 0.966149,-0.058859,0.251179,0.966149,-0.058859,0.251179,0.966144,-0.058910,0.251187,0.966144,-0.058910,0.251187, + 0.966144,-0.058910,0.251187,0.966144,-0.058910,0.251187,0.966147,-0.058862,0.251187,0.966147,-0.058862,0.251187, + 0.966147,-0.058862,0.251187,0.966147,-0.058862,0.251187,-0.033117,-0.993865,-0.105526,-0.033117,-0.993865,-0.105526, + -0.033117,-0.993865,-0.105526,-0.033117,-0.993865,-0.105526,0.031800,0.993371,0.110470,0.031800,0.993371,0.110470, + 0.031800,0.993371,0.110470,0.031800,0.993371,0.110470,0.948337,-0.211852,0.236170,0.948337,-0.211852,0.236170, + 0.948337,-0.211852,0.236170,0.948337,-0.211852,0.236170,-0.056412,-0.998264,-0.016953,-0.056412,-0.998264,-0.016953, + -0.056412,-0.998264,-0.016953,-0.056412,-0.998264,-0.016953,0.053892,0.998192,0.026633,0.053892,0.998192,0.026633, + 0.053892,0.998192,0.026633,0.053892,0.998192,0.026633,0.961854,0.095807,0.256236,0.961854,0.095807,0.256236, + 0.961854,0.095807,0.256236,0.961854,0.095807,0.256236,0.254835,0.066047,-0.964726,0.254835,0.066047,-0.964726, + 0.254835,0.066047,-0.964726,0.254835,0.066047,-0.964726,0.857701,-0.074854,0.508670,0.857701,-0.074854,0.508670, + 0.857701,-0.074854,0.508670,0.857701,-0.074854,0.508670,-0.254835,-0.066046,0.964726,-0.254835,-0.066046,0.964726, + -0.254835,-0.066046,0.964726,-0.254835,-0.066046,0.964726,0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726, + 0.254837,0.066046,-0.964726,0.254837,0.066046,-0.964726,0.998931,-0.038252,-0.025959,0.998931,-0.038252,-0.025959, + 0.998931,-0.038252,-0.025959,0.998931,-0.038252,-0.025959,-0.254834,-0.066050,0.964727,-0.254834,-0.066050,0.964727, + -0.254834,-0.066050,0.964727,-0.254834,-0.066050,0.964727,0.966145,-0.058863,0.251195,0.966145,-0.058863,0.251195, + 0.966145,-0.058863,0.251195,0.966145,-0.058863,0.251195,0.966146,-0.058856,0.251192,0.966146,-0.058856,0.251192, + 0.966146,-0.058856,0.251192,0.966146,-0.058856,0.251192,0.966147,-0.058867,0.251188,0.966147,-0.058867,0.251188, + 0.966147,-0.058867,0.251188,0.966147,-0.058867,0.251188,-0.958016,0.060850,-0.280181,-0.958016,0.060850,-0.280181, + -0.958016,0.060850,-0.280181,-0.958016,0.060850,-0.280181,-0.957998,0.060817,-0.280253,-0.957998,0.060817,-0.280253, + -0.957998,0.060817,-0.280253,-0.957998,0.060817,-0.280253,0.050930,0.998307,0.028087,0.050930,0.998307,0.028087, + 0.050930,0.998307,0.028087,0.050930,0.998307,0.028087,-0.038569,-0.995570,-0.085749,-0.038569,-0.995570,-0.085749, + -0.038569,-0.995570,-0.085749,-0.038569,-0.995570,-0.085749,-0.226289,-0.109553,0.967880,-0.226289,-0.109553,0.967880, + -0.226289,-0.109553,0.967880,-0.226289,-0.109553,0.967880,0.964098,-0.059379,0.258821,0.964098,-0.059379,0.258821, + 0.964098,-0.059379,0.258821,0.052391,0.998078,0.033091,0.052391,0.998078,0.033091,0.052391,0.998078,0.033091, + 0.052391,0.998078,0.033091,0.208929,0.069927,-0.975427,0.208929,0.069927,-0.975427,0.208929,0.069927,-0.975427, + 0.208929,0.069927,-0.975427,0.256528,0.022491,-0.966275,0.256528,0.022491,-0.966275,0.256528,0.022491,-0.966275, + 0.256528,0.022491,-0.966275,-0.258528,-0.065819,0.963759,-0.258528,-0.065819,0.963759,-0.258528,-0.065819,0.963759, + -0.258528,-0.065819,0.963759,-0.033383,-0.994004,-0.104125,-0.033383,-0.994004,-0.104125,-0.033383,-0.994004,-0.104125, + -0.033383,-0.994004,-0.104125,0.964066,-0.059206,0.258981,0.964066,-0.059206,0.258981,0.964066,-0.059206,0.258981, + 0.969540,-0.060207,0.237418,0.969540,-0.060207,0.237418,0.969540,-0.060207,0.237418,0.969540,-0.060207,0.237418, + -0.039223,-0.995804,-0.082679,-0.039223,-0.995804,-0.082679,-0.039223,-0.995804,-0.082679,-0.039223,-0.995804,-0.082679, + 0.034261,0.994962,0.094221,0.034261,0.994962,0.094221,0.034261,0.994962,0.094221,0.034261,0.994962,0.094221, + 0.228364,-0.022997,-0.973304,0.228364,-0.022997,-0.973304,0.228364,-0.022997,-0.973304,0.228364,-0.022997,-0.973304, + -0.234148,-0.104229,0.966598,-0.234148,-0.104229,0.966598,-0.234148,-0.104229,0.966598,-0.234148,-0.104229,0.966598, + 0.970833,0.000698,0.239756,0.970833,0.000698,0.239756,0.970833,0.000698,0.239756,0.970833,0.000698,0.239756, + 0.031804,0.993370,0.110473,0.031804,0.993370,0.110473,0.031804,0.993370,0.110473,0.031804,0.993370,0.110473, + -0.967328,0.058512,-0.246684,-0.967328,0.058512,-0.246684,-0.967328,0.058512,-0.246684,-0.967328,0.058512,-0.246684, + 0.254860,0.066044,-0.964720,0.254860,0.066044,-0.964720,0.254860,0.066044,-0.964720,0.254860,0.066044,-0.964720, + -0.966148,0.058858,-0.251184,-0.966148,0.058858,-0.251184,-0.966148,0.058858,-0.251184,-0.966148,0.058858,-0.251184, + -0.966145,0.058868,-0.251196,-0.966145,0.058868,-0.251196,-0.966145,0.058868,-0.251196,-0.966145,0.058868,-0.251196, + -0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727,-0.254834,-0.066048,0.964727, + -0.966149,0.058830,-0.251188,-0.966149,0.058830,-0.251188,-0.966149,0.058830,-0.251188,-0.966149,0.058830,-0.251188, + -0.966147,0.058859,-0.251188,-0.966147,0.058859,-0.251188,-0.966147,0.058859,-0.251188,-0.966147,0.058859,-0.251188, + 0.254828,0.066045,-0.964728,0.254828,0.066045,-0.964728,0.254828,0.066045,-0.964728,0.254828,0.066045,-0.964728, + 0.049075,0.997778,0.045065,0.049075,0.997778,0.045065,0.049075,0.997778,0.045065,0.049075,0.997778,0.045065, + -0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725,-0.254842,-0.066040,0.964725, + -0.033602,-0.994040,-0.103705,-0.033602,-0.994040,-0.103705,-0.033602,-0.994040,-0.103705,-0.033602,-0.994040,-0.103705, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725, + 0.052962,0.998140,0.030192,0.052962,0.998140,0.030192,0.052962,0.998140,0.030192,0.052962,0.998140,0.030192, + -0.254008,-0.046854,0.966067,-0.254008,-0.046854,0.966067,-0.254008,-0.046854,0.966067,-0.254008,-0.046854,0.966067, + -0.033622,-0.994047,-0.103631,-0.033622,-0.994047,-0.103631,-0.033622,-0.994047,-0.103631,-0.033622,-0.994047,-0.103631, + 0.043075,0.997208,0.060990,0.043075,0.997208,0.060990,0.043075,0.997208,0.060990,0.911890,-0.351389,0.212093, + 0.911890,-0.351389,0.212093,0.911890,-0.351389,0.212093,0.911890,-0.351389,0.212093,0.697369,0.025849,-0.716246, + 0.697369,0.025849,-0.716246,0.697369,0.025849,-0.716246,0.697369,0.025849,-0.716246,0.935442,0.238551,0.260847, + 0.935442,0.238551,0.260847,0.935442,0.238551,0.260847,0.935442,0.238551,0.260847,0.838903,-0.076490,0.538880, + 0.838903,-0.076490,0.538880,0.838903,-0.076490,0.538880,0.838903,-0.076490,0.538880,-0.040199,-0.996079,-0.078813, + -0.040199,-0.996079,-0.078813,-0.040199,-0.996079,-0.078813,0.713755,-0.680780,0.164599,0.713755,-0.680780,0.164599, + 0.713755,-0.680780,0.164599,0.713755,-0.680780,0.164599,0.647908,-0.155456,0.745687,0.647908,-0.155456,0.745687, + 0.647908,-0.155456,0.745687,0.647908,-0.155456,0.745687,-0.941915,-0.096805,0.321596,-0.941915,-0.096805,0.321596, + -0.941915,-0.096805,0.321596,-0.941915,-0.096805,0.321596,-0.866732,-0.004483,0.498753,-0.866732,-0.004483,0.498753, + -0.866732,-0.004483,0.498753,-0.866732,-0.004483,0.498753,-0.966624,0.058740,-0.249373,-0.966624,0.058740,-0.249373, + -0.966624,0.058740,-0.249373,-0.044974,-0.997143,-0.060691,-0.044974,-0.997143,-0.060691,-0.044974,-0.997143,-0.060691, + -0.044974,-0.997143,-0.060691,0.966147,-0.058864,0.251188,0.966147,-0.058864,0.251188,0.966147,-0.058864,0.251188, + 0.966147,-0.058864,0.251188,-0.891189,0.401607,-0.210936,-0.891189,0.401607,-0.210936,-0.891189,0.401607,-0.210936, + -0.891189,0.401607,-0.210936,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.040197,0.996079,0.078807,0.040197,0.996079,0.078807,0.040197,0.996079,0.078807, + -0.920147,-0.291117,-0.261879,-0.920147,-0.291117,-0.261879,-0.920147,-0.291117,-0.261879,-0.920147,-0.291117,-0.261879, + -0.040196,-0.996079,-0.078815,-0.040196,-0.996079,-0.078815,-0.040196,-0.996079,-0.078815,-0.998476,0.044090,0.033199, + -0.998476,0.044090,0.033199,-0.998476,0.044090,0.033199,-0.998476,0.044090,0.033199,0.040200,0.996079,0.078813, + 0.040200,0.996079,0.078813,0.040200,0.996079,0.078813,0.765199,0.014991,-0.643619,0.765199,0.014991,-0.643619, + 0.765199,0.014991,-0.643619,0.765199,0.014991,-0.643619,-0.854633,0.068414,-0.514706,-0.854633,0.068414,-0.514706, + -0.854633,0.068414,-0.514706,-0.854633,0.068414,-0.514706,-0.040192,-0.996079,-0.078808,-0.040192,-0.996079,-0.078808, + -0.040192,-0.996079,-0.078808,-0.966147,0.058859,-0.251190,-0.966147,0.058859,-0.251190,-0.966147,0.058859,-0.251190, + -0.966147,0.058859,-0.251190,-0.966147,0.058856,-0.251187,-0.966147,0.058856,-0.251187,-0.966147,0.058856,-0.251187, + -0.966147,0.058856,-0.251187,-0.966147,0.058856,-0.251188,-0.966147,0.058856,-0.251188,-0.966147,0.058856,-0.251188, + -0.966147,0.058856,-0.251188,-0.723915,-0.642695,-0.250782,-0.723915,-0.642695,-0.250782,-0.723915,-0.642695,-0.250782, + -0.723915,-0.642695,-0.250782,-0.727165,0.669111,-0.153364,-0.727165,0.669111,-0.153364,-0.727165,0.669111,-0.153364, + -0.727165,0.669111,-0.153364,-0.966147,0.058864,-0.251188,-0.966147,0.058864,-0.251188,-0.966147,0.058864,-0.251188, + -0.966147,0.058864,-0.251188,0.615612,-0.110702,0.780235,0.615612,-0.110702,0.780235,0.615612,-0.110702,0.780235, + 0.615612,-0.110702,0.780235,0.946612,0.162267,-0.278559,0.946612,0.162267,-0.278559,0.946612,0.162267,-0.278559, + 0.946612,0.162267,-0.278559,-0.666082,0.258947,-0.699486,-0.666082,0.258947,-0.699486,-0.666082,0.258947,-0.699486, + -0.666082,0.258947,-0.699486,0.098308,0.995086,-0.011847,0.098308,0.995086,-0.011847,0.098308,0.995086,-0.011847, + 0.043284,0.996009,0.078058,0.043284,0.996009,0.078058,0.043284,0.996009,0.078058,0.043284,0.996009,0.078058, + 0.017420,0.996143,0.085999,0.017420,0.996143,0.085999,0.017420,0.996143,0.085999,0.017420,0.996143,0.085999, + 0.025018,0.998074,0.056766,0.025018,0.998074,0.056766,0.025018,0.998074,0.056766,0.025018,0.998074,0.056766, + 0.029476,0.996671,0.076018,0.029476,0.996671,0.076018,0.029476,0.996671,0.076018,0.029476,0.996671,0.076018, + 0.042647,0.996670,0.069498,0.042647,0.996670,0.069498,0.042647,0.996670,0.069498,0.042647,0.996670,0.069498, + 0.116458,0.956476,-0.267565,0.116458,0.956476,-0.267565,0.116458,0.956476,-0.267565,0.116458,0.956476,-0.267565, + -0.197987,0.256320,0.946098,-0.197987,0.256320,0.946098,-0.197987,0.256320,0.946098,-0.197987,0.256320,0.946098, + -0.228773,-0.721092,0.653980,-0.228773,-0.721092,0.653980,-0.228773,-0.721092,0.653980,-0.228773,-0.721092,0.653980, + 0.202582,-0.511499,-0.835063,0.202582,-0.511499,-0.835063,0.202582,-0.511499,-0.835063,0.202582,-0.511499,-0.835063, + 0.203944,-0.246384,-0.947471,0.203944,-0.246384,-0.947471,0.203944,-0.246384,-0.947471,0.203944,-0.246384,-0.947471, + 0.225317,0.736035,-0.638345,0.225317,0.736035,-0.638345,0.225317,0.736035,-0.638345,0.225317,0.736035,-0.638345, + -0.934065,-0.029766,0.355860,-0.934065,-0.029766,0.355860,-0.934065,-0.029766,0.355860,-0.934065,-0.029766,0.355860, + 0.040198,0.996079,0.078811,0.040198,0.996079,0.078811,0.040198,0.996079,0.078811,0.040198,0.996079,0.078811, + 0.223799,0.067885,-0.972268,0.223799,0.067885,-0.972268,0.223799,0.067885,-0.972268,0.223799,0.067885,-0.972268, + 0.073042,0.995096,-0.066703,0.073042,0.995096,-0.066703,0.073042,0.995096,-0.066703,0.073042,0.995096,-0.066703, + 0.242626,0.066782,-0.967819,0.242626,0.066782,-0.967819,0.242626,0.066782,-0.967819,0.242626,0.066782,-0.967819, + -0.034937,-0.994572,-0.098014,-0.034937,-0.994572,-0.098014,-0.034937,-0.994572,-0.098014,-0.034937,-0.994572,-0.098014, + -0.035725,-0.994768,-0.095705,-0.035725,-0.994768,-0.095705,-0.035725,-0.994768,-0.095705,-0.035725,-0.994768,-0.095705, + -0.035726,-0.994768,-0.095706,-0.035726,-0.994768,-0.095706,-0.035726,-0.994768,-0.095706,-0.035726,-0.994768,-0.095706, + -0.035726,-0.994768,-0.095705,-0.035726,-0.994768,-0.095705,-0.035726,-0.994768,-0.095705,-0.035726,-0.994768,-0.095705, + -0.041076,-0.996300,-0.075488,-0.041076,-0.996300,-0.075488,-0.041076,-0.996300,-0.075488,-0.041076,-0.996300,-0.075488, + -0.043766,-0.996906,-0.065292,-0.043766,-0.996906,-0.065292,-0.043766,-0.996906,-0.065292,-0.043766,-0.996906,-0.065292, + -0.043702,-0.996893,-0.065531,-0.043702,-0.996893,-0.065531,-0.043702,-0.996893,-0.065531,-0.043702,-0.996893,-0.065531, + 0.048025,0.997640,0.049071,0.048025,0.997640,0.049071,0.048025,0.997640,0.049071,0.048025,0.997640,0.049071, + 0.048378,0.997688,0.047726,0.048378,0.997688,0.047726,0.048378,0.997688,0.047726,0.048378,0.997688,0.047726, + 0.033854,0.994130,0.102755,0.033854,0.994130,0.102755,0.033854,0.994130,0.102755,0.033854,0.994130,0.102755, + 0.036162,0.994910,0.094056,0.036162,0.994910,0.094056,0.036162,0.994910,0.094056,0.036162,0.994910,0.094056, + -0.012394,0.998753,0.048353,-0.012394,0.998753,0.048353,-0.012394,0.998753,0.048353,-0.012394,0.998753,0.048353, + -0.217891,-0.045545,0.974910,-0.217891,-0.045545,0.974910,-0.217891,-0.045545,0.974910,-0.217891,-0.045545,0.974910, + 0.340199,0.038053,-0.939583,0.340199,0.038053,-0.939583,0.340199,0.038053,-0.939583,0.340199,0.038053,-0.939583, + -0.970281,0.055955,-0.235424,-0.970281,0.055955,-0.235424,-0.970281,0.055955,-0.235424,-0.970281,0.055955,-0.235424, + 0.967154,-0.058690,0.247324,0.967154,-0.058690,0.247324,0.967154,-0.058690,0.247324,0.967154,-0.058690,0.247324, + 0.045987,0.996772,0.065814,0.045987,0.996772,0.065814,0.045987,0.996772,0.065814,0.045987,0.996772,0.065814, + 0.037957,0.995524,0.086548,0.037957,0.995524,0.086548,0.037957,0.995524,0.086548,0.972517,-0.057012,0.225742, + 0.972517,-0.057012,0.225742,0.972517,-0.057012,0.225742,0.972517,-0.057012,0.225742,-0.254995,-0.069852,0.964416, + -0.254995,-0.069852,0.964416,-0.254995,-0.069852,0.964416,-0.254995,-0.069852,0.964416,0.296723,0.067231,-0.952594, + 0.296723,0.067231,-0.952594,0.296723,0.067231,-0.952594,0.296723,0.067231,-0.952594,0.251515,0.018906,-0.967669, + 0.251515,0.018906,-0.967669,0.251515,0.018906,-0.967669,0.251515,0.018906,-0.967669,-0.952991,0.062094,-0.296567, + -0.952991,0.062094,-0.296567,-0.952991,0.062094,-0.296567,-0.952991,0.062094,-0.296567,0.038175,0.995525,0.086447, + 0.038175,0.995525,0.086447,0.038175,0.995525,0.086447,-0.212729,-0.037608,0.976387,-0.212729,-0.037608,0.976387, + -0.212729,-0.037608,0.976387,-0.212729,-0.037608,0.976387,0.967931,-0.058628,0.244280,0.967931,-0.058628,0.244280, + 0.967931,-0.058628,0.244280,0.967931,-0.058628,0.244280,-0.951742,0.059724,-0.301033,-0.951742,0.059724,-0.301033, + -0.951742,0.059724,-0.301033,-0.951742,0.059724,-0.301033,0.970833,0.000696,0.239756,0.970833,0.000696,0.239756, + 0.970833,0.000696,0.239756,0.970833,0.000696,0.239756,-0.234147,-0.104240,0.966597,-0.234147,-0.104240,0.966597, + -0.234147,-0.104240,0.966597,-0.234147,-0.104240,0.966597,0.228364,-0.022993,-0.973304,0.228364,-0.022993,-0.973304, + 0.228364,-0.022993,-0.973304,0.228364,-0.022993,-0.973304,0.034253,0.994963,0.094211,0.034253,0.994963,0.094211, + 0.034253,0.994963,0.094211,0.034253,0.994963,0.094211,-0.039220,-0.995804,-0.082682,-0.039220,-0.995804,-0.082682, + -0.039220,-0.995804,-0.082682,-0.039220,-0.995804,-0.082682,0.969540,-0.060211,0.237418,0.969540,-0.060211,0.237418, + 0.969540,-0.060211,0.237418,0.969540,-0.060211,0.237418,0.964066,-0.059211,0.258981,0.964066,-0.059211,0.258981, + 0.964066,-0.059211,0.258981,-0.033383,-0.994004,-0.104127,-0.033383,-0.994004,-0.104127,-0.033383,-0.994004,-0.104127, + -0.033383,-0.994004,-0.104127,-0.258540,-0.065823,0.963756,-0.258540,-0.065823,0.963756,-0.258540,-0.065823,0.963756, + -0.258540,-0.065823,0.963756,0.256549,0.022488,-0.966269,0.256549,0.022488,-0.966269,0.256549,0.022488,-0.966269, + 0.256549,0.022488,-0.966269,0.208886,0.069933,-0.975436,0.208886,0.069933,-0.975436,0.208886,0.069933,-0.975436, + 0.208886,0.069933,-0.975436,0.052389,0.998078,0.033090,0.052389,0.998078,0.033090,0.052389,0.998078,0.033090, + 0.052389,0.998078,0.033090,0.964098,-0.059383,0.258821,0.964098,-0.059383,0.258821,0.964098,-0.059383,0.258821, + -0.226263,-0.109560,0.967885,-0.226263,-0.109560,0.967885,-0.226263,-0.109560,0.967885,-0.226263,-0.109560,0.967885, + -0.038568,-0.995571,-0.085738,-0.038568,-0.995571,-0.085738,-0.038568,-0.995571,-0.085738,-0.038568,-0.995571,-0.085738, + 0.050916,0.998308,0.028081,0.050916,0.998308,0.028081,0.050916,0.998308,0.028081,0.050916,0.998308,0.028081, + -0.959508,0.060497,-0.275109,-0.959508,0.060497,-0.275109,-0.959508,0.060497,-0.275109,-0.959508,0.060497,-0.275109, + 0.768771,0.588317,0.250746,0.768771,0.588317,0.250746,0.768771,0.588317,0.250746,0.768771,0.588317,0.250746, + 0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723,0.254847,0.066044,-0.964723, + 0.254844,0.066042,-0.964724,0.254844,0.066042,-0.964724,0.254844,0.066042,-0.964724,0.254844,0.066042,-0.964724, + 0.966149,-0.058850,0.251184,0.966149,-0.058850,0.251184,0.966149,-0.058850,0.251184,-0.966147,0.058889,-0.251182, + -0.966147,0.058889,-0.251182,-0.966147,0.058889,-0.251182,0.254843,0.066054,-0.964724,0.254843,0.066054,-0.964724, + 0.254843,0.066054,-0.964724,0.254843,0.066054,-0.964724,0.966147,-0.058887,0.251182,0.966147,-0.058887,0.251182, + 0.966147,-0.058887,0.251182,-0.966148,0.058840,-0.251190,-0.966148,0.058840,-0.251190,-0.966148,0.058840,-0.251190, + -0.966624,0.058736,-0.249375,-0.966624,0.058736,-0.249375,-0.966624,0.058736,-0.249375,-0.959508,0.060493,-0.275108, + -0.959508,0.060493,-0.275108,-0.959508,0.060493,-0.275108,-0.959508,0.060493,-0.275108,0.040197,0.996079,0.078811, + 0.040197,0.996079,0.078811,0.040197,0.996079,0.078811,-0.040195,-0.996080,-0.078802,-0.040195,-0.996080,-0.078802, + -0.040195,-0.996080,-0.078802,-0.206616,-0.759596,0.616704,-0.206616,-0.759596,0.616704,-0.206616,-0.759596,0.616704, + -0.206616,-0.759596,0.616704,-0.174473,0.568148,0.804219,-0.174473,0.568148,0.804219,-0.174473,0.568148,0.804219, + -0.174473,0.568148,0.804219,-0.966148,0.058847,-0.251189,-0.966148,0.058847,-0.251189,-0.966148,0.058847,-0.251189, + 0.966148,-0.058843,0.251188,0.966148,-0.058843,0.251188,0.966148,-0.058843,0.251188,0.232321,0.067396,-0.970301, + 0.232321,0.067396,-0.970301,0.232321,0.067396,-0.970301,0.232321,0.067396,-0.970301,0.035102,0.994666,0.096990, + 0.035102,0.994666,0.096990,0.035102,0.994666,0.096990,0.035102,0.994666,0.096990,-0.966148,0.058850,-0.251188, + -0.966148,0.058850,-0.251188,-0.966148,0.058850,-0.251188,0.922747,-0.067258,0.379491,0.922747,-0.067258,0.379491, + 0.922747,-0.067258,0.379491,-0.040197,-0.996079,-0.078807,-0.040197,-0.996079,-0.078807,-0.040197,-0.996079,-0.078807, + 0.843127,0.008516,-0.537647,0.843127,0.008516,-0.537647,0.843127,0.008516,-0.537647,0.843127,0.008516,-0.537647, + 0.040198,0.996079,0.078812,0.040198,0.996079,0.078812,0.040198,0.996079,0.078812,0.966147,-0.058863,0.251186, + 0.966147,-0.058863,0.251186,0.966147,-0.058863,0.251186,0.966147,-0.058863,0.251186,-0.040199,-0.996079,-0.078811, + -0.040199,-0.996079,-0.078811,-0.040199,-0.996079,-0.078811,0.040193,0.996079,0.078810,0.040193,0.996079,0.078810, + 0.040193,0.996079,0.078810,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.720666,0.475566,-0.504458,-0.720666,0.475566,-0.504458,-0.720666,0.475566,-0.504458, + -0.720666,0.475566,-0.504458,-0.654170,-0.119382,-0.746866,-0.654170,-0.119382,-0.746866,-0.654170,-0.119382,-0.746866, + -0.654170,-0.119382,-0.746866,0.974899,-0.056388,0.215389,0.974899,-0.056388,0.215389,0.974899,-0.056388,0.215389, + 0.974899,-0.056388,0.215389,-0.037242,-0.995247,-0.089980,-0.037242,-0.995247,-0.089980,-0.037242,-0.995247,-0.089980, + -0.037242,-0.995247,-0.089980,-0.703383,0.703923,-0.098716,-0.703383,0.703923,-0.098716,-0.703383,0.703923,-0.098716, + -0.703383,0.703923,-0.098716,-0.045179,-0.997116,-0.060978,-0.045179,-0.997116,-0.060978,-0.045179,-0.997116,-0.060978, + -0.045179,-0.997116,-0.060978,-0.740730,0.655374,-0.147661,-0.740730,0.655374,-0.147661,-0.740730,0.655374,-0.147661, + -0.740730,0.655374,-0.147661,0.770015,0.588701,0.245985,0.770015,0.588701,0.245985,0.770015,0.588701,0.245985, + 0.770015,0.588701,0.245985,-0.961362,0.060044,-0.268660,-0.961362,0.060044,-0.268660,-0.961362,0.060044,-0.268660, + -0.961362,0.060044,-0.268660,0.739102,-0.655805,0.153778,0.739102,-0.655805,0.153778,0.739102,-0.655805,0.153778, + 0.739102,-0.655805,0.153778,0.036841,0.995189,0.090783,0.036841,0.995189,0.090783,0.036841,0.995189,0.090783, + 0.036841,0.995189,0.090783,0.961688,-0.059954,0.267511,0.961688,-0.059954,0.267511,0.961688,-0.059954,0.267511, + 0.961688,-0.059954,0.267511,0.961687,-0.059973,0.267511,0.961687,-0.059973,0.267511,0.961687,-0.059973,0.267511, + 0.961687,-0.059973,0.267511,0.041211,0.996351,0.074739,0.041211,0.996351,0.074739,0.041211,0.996351,0.074739, + 0.041211,0.996351,0.074739,0.273595,0.064880,-0.959654,0.273595,0.064880,-0.959654,0.273595,0.064880,-0.959654, + 0.273595,0.064880,-0.959654,-0.177136,-0.885104,0.430365,-0.177136,-0.885104,0.430365,-0.177136,-0.885104,0.430365, + -0.177136,-0.885104,0.430365,-0.036468,-0.996321,-0.077556,-0.036468,-0.996321,-0.077556,-0.036468,-0.996321,-0.077556, + -0.036468,-0.996321,-0.077556,0.254148,0.066093,-0.964904,0.254148,0.066093,-0.964904,0.254148,0.066093,-0.964904, + 0.254148,0.066093,-0.964904,-0.121321,0.760251,0.638201,-0.121321,0.760251,0.638201,-0.121321,0.760251,0.638201, + -0.121321,0.760251,0.638201,0.966147,-0.058862,0.251187,0.966147,-0.058862,0.251187,0.966147,-0.058862,0.251187, + 0.966147,-0.058862,0.251187,-0.469328,0.078744,-0.879506,-0.469328,0.078744,-0.879506,-0.469328,0.078744,-0.879506, + -0.469328,0.078744,-0.879506,-0.044749,-0.997167,-0.060453,-0.044749,-0.997167,-0.060453,-0.044749,-0.997167,-0.060453, + -0.044749,-0.997167,-0.060453,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724,0.254843,0.066046,-0.964724, + 0.254843,0.066046,-0.964724,-0.739404,0.656250,-0.150390,-0.739404,0.656250,-0.150390,-0.739404,0.656250,-0.150390, + -0.739404,0.656250,-0.150390,-0.739400,0.656253,-0.150396,-0.739400,0.656253,-0.150396,-0.739400,0.656253,-0.150396, + -0.739400,0.656253,-0.150396,-0.623169,-0.751646,-0.216075,-0.623169,-0.751646,-0.216075,-0.623169,-0.751646,-0.216075, + -0.623169,-0.751646,-0.216075,0.739403,-0.656251,0.150394,0.739403,-0.656251,0.150394,0.739403,-0.656251,0.150394, + 0.739403,-0.656251,0.150394,0.739403,-0.656251,0.150394,0.739403,-0.656251,0.150394,0.739403,-0.656251,0.150394, + 0.739403,-0.656251,0.150394,0.623170,0.751646,0.216075,0.623170,0.751646,0.216075,0.623170,0.751646,0.216075, + 0.623170,0.751646,0.216075,-0.623169,-0.751645,-0.216080,-0.623169,-0.751645,-0.216080,-0.623169,-0.751645,-0.216080, + -0.623169,-0.751645,-0.216080,0.743193,-0.655172,0.135694,0.743193,-0.655172,0.135694,0.743193,-0.655172,0.135694, + 0.743193,-0.655172,0.135694,-0.624123,-0.749151,-0.221909,-0.624123,-0.749151,-0.221909,-0.624123,-0.749151,-0.221909, + -0.624123,-0.749151,-0.221909,-0.737300,0.653360,-0.171780,-0.737300,0.653360,-0.171780,-0.737300,0.653360,-0.171780, + -0.737300,0.653360,-0.171780,0.623171,0.751644,0.216075,0.623171,0.751644,0.216075,0.623171,0.751644,0.216075, + 0.623171,0.751644,0.216075,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.644407,-0.754254,-0.125857,-0.644407,-0.754254,-0.125857,-0.644407,-0.754254,-0.125857, + -0.644407,-0.754254,-0.125857,0.268566,0.492331,0.827938,0.268566,0.492331,0.827938,0.268566,0.492331,0.827938, + 0.268566,0.492331,0.827938,0.159324,-0.046481,-0.986131,0.159324,-0.046481,-0.986131,0.159324,-0.046481,-0.986131, + 0.159324,-0.046481,-0.986131,0.618761,0.750416,0.232404,0.618761,0.750416,0.232404,0.618761,0.750416,0.232404, + 0.618761,0.750416,0.232404,-0.739401,0.656253,-0.150392,-0.739401,0.656253,-0.150392,-0.739401,0.656253,-0.150392, + -0.739401,0.656253,-0.150392,0.669009,0.741239,-0.054700,0.669009,0.741239,-0.054700,0.669009,0.741239,-0.054700, + 0.669009,0.741239,-0.054700,0.227103,0.032823,-0.973317,0.227103,0.032823,-0.973317,0.227103,0.032823,-0.973317, + 0.227103,0.032823,-0.973317,-0.658285,-0.751541,-0.042979,-0.658285,-0.751541,-0.042979,-0.658285,-0.751541,-0.042979, + -0.658285,-0.751541,-0.042979,-0.003070,-0.995472,-0.095010,-0.003070,-0.995472,-0.095010,-0.003070,-0.995472,-0.095010, + -0.003070,-0.995472,-0.095010,-0.623165,-0.751652,-0.216068,-0.623165,-0.751652,-0.216068,-0.623165,-0.751652,-0.216068, + -0.623165,-0.751652,-0.216068,-0.623171,-0.751644,-0.216076,-0.623171,-0.751644,-0.216076,-0.623171,-0.751644,-0.216076, + -0.623171,-0.751644,-0.216076,0.495122,-0.580828,0.646136,0.495122,-0.580828,0.646136,0.495122,-0.580828,0.646136, + 0.495122,-0.580828,0.646136,0.268070,0.082050,-0.959899,0.268070,0.082050,-0.959899,0.268070,0.082050,-0.959899, + 0.268070,0.082050,-0.959899,-0.623171,-0.751645,-0.216075,-0.623171,-0.751645,-0.216075,-0.623171,-0.751645,-0.216075, + -0.623171,-0.751645,-0.216075,-0.610581,-0.747738,-0.260919,-0.610581,-0.747738,-0.260919,-0.610581,-0.747738,-0.260919, + -0.610581,-0.747738,-0.260919,0.603372,0.546793,-0.580483,0.603372,0.546793,-0.580483,0.603372,0.546793,-0.580483, + 0.603372,0.546793,-0.580483,0.623169,0.751647,0.216071,0.623169,0.751647,0.216071,0.623169,0.751647,0.216071, + 0.623169,0.751647,0.216071,-0.241051,-0.457471,-0.855929,-0.241051,-0.457471,-0.855929,-0.241051,-0.457471,-0.855929, + -0.241051,-0.457471,-0.855929,-0.691312,0.661158,-0.291475,-0.691312,0.661158,-0.291475,-0.691312,0.661158,-0.291475, + -0.691312,0.661158,-0.291475,0.260080,0.072368,-0.962872,0.260080,0.072368,-0.962872,0.260080,0.072368,-0.962872, + 0.260080,0.072368,-0.962872,-0.623168,-0.751648,-0.216070,-0.623168,-0.751648,-0.216070,-0.623168,-0.751648,-0.216070, + -0.623168,-0.751648,-0.216070,0.744185,-0.654992,0.131047,0.744185,-0.654992,0.131047,0.744185,-0.654992,0.131047, + 0.744185,-0.654992,0.131047,0.623169,0.751645,0.216079,0.623169,0.751645,0.216079,0.623169,0.751645,0.216079, + 0.623169,0.751645,0.216079,0.728247,0.679479,-0.089242,0.728247,0.679479,-0.089242,0.728247,0.679479,-0.089242, + 0.728247,0.679479,-0.089242,0.654358,0.332491,0.679165,0.654358,0.332491,0.679165,0.654358,0.332491,0.679165, + 0.654358,0.332491,0.679165,-0.328827,0.552830,-0.765671,-0.328827,0.552830,-0.765671,-0.328827,0.552830,-0.765671, + -0.328827,0.552830,-0.765671,-0.632770,-0.725958,-0.269421,-0.632770,-0.725958,-0.269421,-0.632770,-0.725958,-0.269421, + -0.632770,-0.725958,-0.269421,0.138873,0.626133,0.767250,0.138873,0.626133,0.767250,0.138873,0.626133,0.767250, + 0.138873,0.626133,0.767250,0.514778,-0.096756,-0.851846,0.514778,-0.096756,-0.851846,0.514778,-0.096756,-0.851846, + 0.514778,-0.096756,-0.851846,-0.556464,-0.779233,-0.288345,-0.556464,-0.779233,-0.288345,-0.556464,-0.779233,-0.288345, + -0.556464,-0.779233,-0.288345,0.547585,0.835925,-0.037148,0.547585,0.835925,-0.037148,0.547585,0.835925,-0.037148, + 0.547585,0.835925,-0.037148,-0.598623,0.642819,-0.477947,-0.598623,0.642819,-0.477947,-0.598623,0.642819,-0.477947, + -0.598623,0.642819,-0.477947,-0.489581,0.133730,0.861642,-0.489581,0.133730,0.861642,-0.489581,0.133730,0.861642, + -0.489581,0.133730,0.861642,0.329418,-0.475334,0.815807,0.329418,-0.475334,0.815807,0.329418,-0.475334,0.815807, + 0.329418,-0.475334,0.815807,0.613007,-0.337132,-0.714538,0.613007,-0.337132,-0.714538,0.613007,-0.337132,-0.714538, + 0.613007,-0.337132,-0.714538,0.600062,0.771521,0.211378,0.600062,0.771521,0.211378,0.600062,0.771521,0.211378, + 0.600062,0.771521,0.211378,-0.735583,0.650705,-0.188417,-0.735583,0.650705,-0.188417,-0.735583,0.650705,-0.188417, + -0.735583,0.650705,-0.188417,0.484693,-0.128596,-0.865180,0.484693,-0.128596,-0.865180,0.484693,-0.128596,-0.865180, + 0.484693,-0.128596,-0.865180,-0.339237,0.486012,-0.805426,-0.339237,0.486012,-0.805426,-0.339237,0.486012,-0.805426, + -0.339237,0.486012,-0.805426,-0.603776,-0.726480,-0.328149,-0.603776,-0.726480,-0.328149,-0.603776,-0.726480,-0.328149, + -0.603776,-0.726480,-0.328149,-0.552852,-0.764778,-0.330860,-0.552852,-0.764778,-0.330860,-0.552852,-0.764778,-0.330860, + -0.552852,-0.764778,-0.330860,0.670054,0.718469,0.186629,0.670054,0.718469,0.186629,0.670054,0.718469,0.186629, + 0.670054,0.718469,0.186629,0.740637,-0.655928,0.145655,0.740637,-0.655928,0.145655,0.740637,-0.655928,0.145655, + 0.740637,-0.655928,0.145655,-0.743927,0.654939,-0.132765,-0.743927,0.654939,-0.132765,-0.743927,0.654939,-0.132765, + -0.743927,0.654939,-0.132765,0.643376,0.745830,0.172639,0.643376,0.745830,0.172639,0.643376,0.745830,0.172639, + -0.611684,-0.748127,-0.257195,-0.611684,-0.748127,-0.257195,-0.611684,-0.748127,-0.257195,-0.609718,-0.747428,-0.263810, + -0.609718,-0.747428,-0.263810,-0.609718,-0.747428,-0.263810,-0.609718,-0.747428,-0.263810,0.640743,0.745643,0.182934, + 0.640743,0.745643,0.182934,0.640743,0.745643,0.182934,0.640743,0.745643,0.182934,-0.022901,-0.999527,-0.020530, + -0.022901,-0.999527,-0.020530,-0.022901,-0.999527,-0.020530,-0.022901,-0.999527,-0.020530,-0.729445,0.658251,-0.186052, + -0.729445,0.658251,-0.186052,-0.729445,0.658251,-0.186052,-0.729445,0.658251,-0.186052,-0.254844,-0.066047,0.964724, + -0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,-0.254844,-0.066047,0.964724,0.629475,0.753086,0.191373, + 0.629475,0.753086,0.191373,0.629475,0.753086,0.191373,0.629475,0.753086,0.191373,0.629476,0.753085,0.191370, + 0.629476,0.753085,0.191370,0.629476,0.753085,0.191370,0.629476,0.753085,0.191370,0.632120,0.753568,0.180442, + 0.632120,0.753568,0.180442,0.632120,0.753568,0.180442,0.632120,0.753568,0.180442,0.744052,-0.654755,0.132979, + 0.744052,-0.654755,0.132979,0.744052,-0.654755,0.132979,0.744052,-0.654755,0.132979,-0.627695,-0.752719,-0.198526, + -0.627695,-0.752719,-0.198526,-0.627695,-0.752719,-0.198526,-0.627695,-0.752719,-0.198526,-0.744051,0.654755,-0.132979, + -0.744051,0.654755,-0.132979,-0.744051,0.654755,-0.132979,-0.744051,0.654755,-0.132979,0.627693,0.752721,0.198526, + 0.627693,0.752721,0.198526,0.627693,0.752721,0.198526,0.627693,0.752721,0.198526,0.627692,0.752721,0.198527, + 0.627692,0.752721,0.198527,0.627692,0.752721,0.198527,0.627692,0.752721,0.198527,0.627694,0.752720,0.198527, + 0.627694,0.752720,0.198527,0.627694,0.752720,0.198527,0.627694,0.752720,0.198527,0.627696,0.752718,0.198528, + 0.627696,0.752718,0.198528,0.627696,0.752718,0.198528,0.627696,0.752718,0.198528,-0.737592,0.656701,-0.157167, + -0.737592,0.656701,-0.157167,-0.737592,0.656701,-0.157167,-0.737592,0.656701,-0.157167,-0.729865,0.658189,-0.184619, + -0.729865,0.658189,-0.184619,-0.729865,0.658189,-0.184619,-0.729865,0.658189,-0.184619,-0.742286,0.655449,-0.139279, + -0.742286,0.655449,-0.139279,-0.742286,0.655449,-0.139279,-0.742286,0.655449,-0.139279,0.743752,-0.654997,0.133462, + 0.743752,-0.654997,0.133462,0.743752,-0.654997,0.133462,0.743752,-0.654997,0.133462,0.743686,-0.655018,0.133726, + 0.743686,-0.655018,0.133726,0.743686,-0.655018,0.133726,0.743686,-0.655018,0.133726,0.736297,-0.656998,0.161929, + 0.736297,-0.656998,0.161929,0.736297,-0.656998,0.161929,0.736297,-0.656998,0.161929,0.736966,-0.656105,0.162502, + 0.736966,-0.656105,0.162502,0.736966,-0.656105,0.162502,0.736966,-0.656105,0.162502,-0.744279,0.654827,-0.131340, + -0.744279,0.654827,-0.131340,-0.744279,0.654827,-0.131340,-0.744279,0.654827,-0.131340,0.612818,0.748519,0.253324, + 0.612818,0.748519,0.253324,0.612818,0.748519,0.253324,0.612818,0.748519,0.253324,0.744280,-0.654826,0.131340, + 0.744280,-0.654826,0.131340,0.744280,-0.654826,0.131340,0.744280,-0.654826,0.131340,-0.612817,-0.748520,-0.253324, + -0.612817,-0.748520,-0.253324,-0.612817,-0.748520,-0.253324,-0.612817,-0.748520,-0.253324,-0.613048,-0.748594,-0.252543, + -0.613048,-0.748594,-0.252543,-0.613048,-0.748594,-0.252543,-0.613048,-0.748594,-0.252543,-0.613046,-0.748597,-0.252542, + -0.613046,-0.748597,-0.252542,-0.613046,-0.748597,-0.252542,-0.613046,-0.748597,-0.252542,0.613024,0.748586,0.252627, + 0.613024,0.748586,0.252627,0.613024,0.748586,0.252627,0.613024,0.748586,0.252627,-0.729125,0.658300,-0.187130, + -0.729125,0.658300,-0.187130,-0.729125,0.658300,-0.187130,-0.729125,0.658300,-0.187130,0.729126,-0.658297,0.187136, + 0.729126,-0.658297,0.187136,0.729126,-0.658297,0.187136,0.729126,-0.658297,0.187136,-0.613021,-0.748587,-0.252631, + -0.613021,-0.748587,-0.252631,-0.613021,-0.748587,-0.252631,-0.613021,-0.748587,-0.252631,0.734712,-0.657167,0.168313, + 0.734712,-0.657167,0.168313,0.734712,-0.657167,0.168313,0.734712,-0.657167,0.168313,-0.618446,-0.750318,-0.233553, + -0.618446,-0.750318,-0.233553,-0.618446,-0.750318,-0.233553,-0.618446,-0.750318,-0.233553,-0.618444,-0.750321,-0.233551, + -0.618444,-0.750321,-0.233551,-0.618444,-0.750321,-0.233551,-0.618444,-0.750321,-0.233551,-0.743723,0.655150,-0.132869, + -0.743723,0.655150,-0.132869,-0.743723,0.655150,-0.132869,-0.743723,0.655150,-0.132869,-0.618441,-0.750324,-0.233550, + -0.618441,-0.750324,-0.233550,-0.618441,-0.750324,-0.233550,-0.618441,-0.750324,-0.233550,-0.240621,-0.048955,0.969384, + -0.240621,-0.048955,0.969384,-0.240621,-0.048955,0.969384,-0.240621,-0.048955,0.969384,0.618760,0.750417,0.232402, + 0.618760,0.750417,0.232402,0.618760,0.750417,0.232402,0.618760,0.750417,0.232402,-0.004157,-0.995837,-0.091054, + -0.004157,-0.995837,-0.091054,-0.004157,-0.995837,-0.091054,-0.004157,-0.995837,-0.091054,-0.947928,-0.160712,-0.274961, + -0.947928,-0.160712,-0.274961,-0.947928,-0.160712,-0.274961,-0.947928,-0.160712,-0.274961,0.739403,-0.656251,0.150393, + 0.739403,-0.656251,0.150393,0.739403,-0.656251,0.150393,0.739403,-0.656251,0.150393,-0.937040,-0.218008,-0.272817, + -0.937040,-0.218008,-0.272817,-0.937040,-0.218008,-0.272817,-0.937040,-0.218008,-0.272817,0.739401,-0.656253,0.150395, + 0.739401,-0.656253,0.150395,0.739401,-0.656253,0.150395,0.739401,-0.656253,0.150395,-0.583276,-0.735951,-0.343752, + -0.583276,-0.735951,-0.343752,-0.583276,-0.735951,-0.343752,-0.583276,-0.735951,-0.343752,0.638439,0.754348,0.152825, + 0.638439,0.754348,0.152825,0.638439,0.754348,0.152825,0.638439,0.754348,0.152825,-0.597394,-0.742511,-0.302980, + -0.597394,-0.742511,-0.302980,-0.597394,-0.742511,-0.302980,-0.597394,-0.742511,-0.302980,0.621673,0.751247,0.221699, + 0.621673,0.751247,0.221699,0.621673,0.751247,0.221699,0.621673,0.751247,0.221699,-0.615196,-0.749310,-0.245088, + -0.615196,-0.749310,-0.245088,-0.615196,-0.749310,-0.245088,-0.615196,-0.749310,-0.245088,0.727289,-0.658544,0.193315, + 0.727289,-0.658544,0.193315,0.727289,-0.658544,0.193315,0.727289,-0.658544,0.193315,-0.624376,-0.751952,-0.211477, + -0.624376,-0.751952,-0.211477,-0.624376,-0.751952,-0.211477,-0.624376,-0.751952,-0.211477,-0.747353,0.653738,-0.118699, + -0.747353,0.653738,-0.118699,-0.747353,0.653738,-0.118699,-0.747353,0.653738,-0.118699,-0.624356,-0.751942,-0.211570, + -0.624356,-0.751942,-0.211570,-0.624356,-0.751942,-0.211570,-0.624356,-0.751942,-0.211570,0.272654,0.050149,-0.960804, + 0.272654,0.050149,-0.960804,0.272654,0.050149,-0.960804,0.272654,0.050149,-0.960804,-0.623171,-0.751645,-0.216073, + -0.623171,-0.751645,-0.216073,-0.623171,-0.751645,-0.216073,-0.623171,-0.751645,-0.216073,-0.623172,-0.751645,-0.216070, + -0.623172,-0.751645,-0.216070,-0.623172,-0.751645,-0.216070,-0.623172,-0.751645,-0.216070,-0.254840,-0.066043,0.964725, + -0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.254840,-0.066043,0.964725,-0.624352,-0.751944,-0.211576, + -0.624352,-0.751944,-0.211576,-0.624352,-0.751944,-0.211576,-0.624352,-0.751944,-0.211576,0.721586,-0.659137,0.211786, + 0.721586,-0.659137,0.211786,0.721586,-0.659137,0.211786,0.721586,-0.659137,0.211786,-0.623172,-0.751643,-0.216076, + -0.623172,-0.751643,-0.216076,-0.623172,-0.751643,-0.216076,-0.623172,-0.751643,-0.216076,-0.623171,-0.751645,-0.216075, + -0.623171,-0.751645,-0.216075,-0.623171,-0.751645,-0.216075,-0.623171,-0.751645,-0.216075,0.732469,-0.657749,0.175659, + 0.732469,-0.657749,0.175659,0.732469,-0.657749,0.175659,0.732469,-0.657749,0.175659,0.623170,0.751646,0.216073, + 0.623170,0.751646,0.216073,0.623170,0.751646,0.216073,0.623170,0.751646,0.216073,0.257332,0.063839,-0.964212, + 0.257332,0.063839,-0.964212,0.257332,0.063839,-0.964212,0.257332,0.063839,-0.964212,-0.252190,-0.068368,0.965260, + -0.252190,-0.068368,0.965260,-0.252190,-0.068368,0.965260,-0.252190,-0.068368,0.965260,0.623169,0.751646,0.216075, + 0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.623171,0.751645,0.216074, + 0.623171,0.751645,0.216074,0.623171,0.751645,0.216074,0.623171,0.751645,0.216074,0.623168,0.751647,0.216075, + 0.623168,0.751647,0.216075,0.623168,0.751647,0.216075,0.623168,0.751647,0.216075,-0.745786,0.654312,-0.125215, + -0.745786,0.654312,-0.125215,-0.745786,0.654312,-0.125215,-0.745786,0.654312,-0.125215,0.623169,0.751646,0.216075, + 0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.623170,0.751646,0.216075, + 0.623170,0.751646,0.216075,0.623170,0.751646,0.216075,0.623170,0.751646,0.216075,0.623168,0.751645,0.216082, + 0.623168,0.751645,0.216082,0.623168,0.751645,0.216082,0.623168,0.751645,0.216082,0.750789,-0.652325,0.103868, + 0.750789,-0.652325,0.103868,0.750789,-0.652325,0.103868,0.750789,-0.652325,0.103868,-0.752673,0.651447,-0.095401, + -0.752673,0.651447,-0.095401,-0.752673,0.651447,-0.095401,-0.752673,0.651447,-0.095401,0.770227,0.592055,0.237111, + 0.770227,0.592055,0.237111,0.770227,0.592055,0.237111,0.770227,0.592055,0.237111,0.733638,-0.657543,0.171500, + 0.733638,-0.657543,0.171500,0.733638,-0.657543,0.171500,0.733638,-0.657543,0.171500,-0.734564,0.657362,-0.168199, + -0.734564,0.657362,-0.168199,-0.734564,0.657362,-0.168199,-0.734564,0.657362,-0.168199,0.448090,0.875937,0.178742, + 0.448090,0.875937,0.178742,0.448090,0.875937,0.178742,0.448090,0.875937,0.178742,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.480005,0.670471,0.565741, + 0.480005,0.670471,0.565741,0.480005,0.670471,0.565741,0.480005,0.670471,0.565741,-0.254841,-0.066046,0.964725, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,0.240357,0.078847,-0.967477, + 0.240357,0.078847,-0.967477,0.240357,0.078847,-0.967477,0.240357,0.078847,-0.967477,0.666777,0.726265,-0.167175, + 0.666777,0.726265,-0.167175,0.666777,0.726265,-0.167175,0.666777,0.726265,-0.167175,-0.233956,-0.084466,0.968571, + -0.233956,-0.084466,0.968571,-0.233956,-0.084466,0.968571,-0.233956,-0.084466,0.968571,0.623168,0.751645,0.216079, + 0.623168,0.751645,0.216079,0.623168,0.751645,0.216079,0.623168,0.751645,0.216079,0.623168,0.751647,0.216074, + 0.623168,0.751647,0.216074,0.623168,0.751647,0.216074,0.623168,0.751647,0.216074,0.623169,0.751646,0.216075, + 0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.623169,0.751646,0.216075,0.746183,-0.654168,0.123595, + 0.746183,-0.654168,0.123595,0.746183,-0.654168,0.123595,0.746183,-0.654168,0.123595,-0.747376,0.653729,-0.118608, + -0.747376,0.653729,-0.118608,-0.747376,0.653729,-0.118608,-0.747376,0.653729,-0.118608,0.729747,0.641387,0.236839, + 0.729747,0.641387,0.236839,0.729747,0.641387,0.236839,0.729747,0.641387,0.236839,0.721590,-0.659133,0.211782, + 0.721590,-0.659133,0.211782,0.721590,-0.659133,0.211782,0.721590,-0.659133,0.211782,-0.724572,0.658860,-0.202235, + -0.724572,0.658860,-0.202235,-0.724572,0.658860,-0.202235,-0.724572,0.658860,-0.202235,0.502706,0.844170,0.186180, + 0.502706,0.844170,0.186180,0.502706,0.844170,0.186180,0.502706,0.844170,0.186180,0.254843,0.066047,-0.964724, + 0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.254843,0.066047,-0.964724,0.528164,0.703920,0.474910, + 0.528164,0.703920,0.474910,0.528164,0.703920,0.474910,0.528164,0.703920,0.474910,-0.254841,-0.066044,0.964725, + -0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,-0.254841,-0.066044,0.964725,0.254841,0.066046,-0.964725, + 0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.254841,0.066046,-0.964725,0.669383,0.740516,-0.059681, + 0.669383,0.740516,-0.059681,0.669383,0.740516,-0.059681,0.669383,0.740516,-0.059681,-0.254844,-0.066045,0.964724, + -0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,-0.254844,-0.066045,0.964724,0.623170,0.751647,0.216072, + 0.623170,0.751647,0.216072,0.623170,0.751647,0.216072,0.623170,0.751647,0.216072,0.623169,0.751646,0.216074, + 0.623169,0.751646,0.216074,0.623169,0.751646,0.216074,0.623169,0.751646,0.216074,0.623170,0.751646,0.216073, + 0.623170,0.751646,0.216073,0.623170,0.751646,0.216073,0.623170,0.751646,0.216073,-0.615196,-0.749310,-0.245088, + -0.615196,-0.749310,-0.245088,-0.615196,-0.749310,-0.245088,-0.615196,-0.749310,-0.245088,-0.615178,-0.749304,-0.245152, + -0.615178,-0.749304,-0.245152,-0.615178,-0.749304,-0.245152,-0.615178,-0.749304,-0.245152,-0.726758,0.656913,-0.200720, + -0.726758,0.656913,-0.200720,-0.726758,0.656913,-0.200720,-0.726758,0.656913,-0.200720,0.741080,-0.655912,0.143459, + 0.741080,-0.655912,0.143459,0.741080,-0.655912,0.143459,0.741080,-0.655912,0.143459,-0.204202,-0.070229,0.976406, + -0.204202,-0.070229,0.976406,-0.204202,-0.070229,0.976406,-0.204202,-0.070229,0.976406,0.621131,0.751100,0.223707, + 0.621131,0.751100,0.223707,0.621131,0.751100,0.223707,-0.726396,0.658777,-0.195861,-0.726396,0.658777,-0.195861, + -0.726396,0.658777,-0.195861,-0.726396,0.658777,-0.195861,0.224213,0.031200,-0.974041,0.224213,0.031200,-0.974041, + 0.224213,0.031200,-0.974041,0.224213,0.031200,-0.974041,0.289098,0.040342,-0.956449,0.289098,0.040342,-0.956449, + 0.289098,0.040342,-0.956449,0.289098,0.040342,-0.956449,-0.257217,-0.068911,0.963893,-0.257217,-0.068911,0.963893, + -0.257217,-0.068911,0.963893,-0.257217,-0.068911,0.963893,0.745912,-0.654211,0.124994,0.745912,-0.654211,0.124994, + 0.745912,-0.654211,0.124994,0.745912,-0.654211,0.124994,0.620954,0.751211,0.223828,0.620954,0.751211,0.223828, + 0.620954,0.751211,0.223828,0.628383,0.750995,0.202834,0.628383,0.750995,0.202834,0.628383,0.750995,0.202834, + 0.628383,0.750995,0.202834,0.740389,-0.656013,0.146529,0.740389,-0.656013,0.146529,0.740389,-0.656013,0.146529, + 0.740389,-0.656013,0.146529,-0.744613,0.653724,-0.134893,-0.744613,0.653724,-0.134893,-0.744613,0.653724,-0.134893, + -0.744613,0.653724,-0.134893,0.306619,-0.010459,-0.951775,0.306619,-0.010459,-0.951775,0.306619,-0.010459,-0.951775, + 0.306619,-0.010459,-0.951775,-0.213066,-0.073241,0.974289,-0.213066,-0.073241,0.974289,-0.213066,-0.073241,0.974289, + -0.213066,-0.073241,0.974289,0.582793,0.789790,0.191272,0.582793,0.789790,0.191272,0.582793,0.789790,0.191272, + 0.582793,0.789790,0.191272,-0.747376,0.653729,-0.118604,-0.747376,0.653729,-0.118604,-0.747376,0.653729,-0.118604, + -0.747376,0.653729,-0.118604,-0.624355,-0.751944,-0.211569,-0.624355,-0.751944,-0.211569,-0.624355,-0.751944,-0.211569, + -0.624355,-0.751944,-0.211569,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725,0.254841,0.066047,-0.964725, + 0.254841,0.066047,-0.964725,-0.623167,-0.751646,-0.216084,-0.623167,-0.751646,-0.216084,-0.623167,-0.751646,-0.216084, + -0.623167,-0.751646,-0.216084,-0.623171,-0.751645,-0.216074,-0.623171,-0.751645,-0.216074,-0.623171,-0.751645,-0.216074, + -0.623171,-0.751645,-0.216074,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725, + -0.254842,-0.066047,0.964725,-0.623170,-0.751646,-0.216072,-0.623170,-0.751646,-0.216072,-0.623170,-0.751646,-0.216072, + -0.623170,-0.751646,-0.216072,-0.623170,-0.751645,-0.216074,-0.623170,-0.751645,-0.216074,-0.623170,-0.751645,-0.216074, + -0.623170,-0.751645,-0.216074,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725,0.254839,0.066045,-0.964725, + 0.254839,0.066045,-0.964725,-0.730048,0.658159,-0.184002,-0.730048,0.658159,-0.184002,-0.730048,0.658159,-0.184002, + -0.730048,0.658159,-0.184002,-0.254842,-0.066044,0.964724,-0.254842,-0.066044,0.964724,-0.254842,-0.066044,0.964724, + -0.254842,-0.066044,0.964724,0.745733,-0.654333,0.125422,0.745733,-0.654333,0.125422,0.745733,-0.654333,0.125422, + 0.745733,-0.654333,0.125422,0.254840,0.066044,-0.964725,0.254840,0.066044,-0.964725,0.254840,0.066044,-0.964725, + 0.254840,0.066044,-0.964725,-0.725647,0.658746,-0.198722,-0.725647,0.658746,-0.198722,-0.725647,0.658746,-0.198722, + -0.725647,0.658746,-0.198722,-0.269027,-0.053397,0.961651,-0.269027,-0.053397,0.961651,-0.269027,-0.053397,0.961651, + -0.269027,-0.053397,0.961651,0.745719,-0.654334,0.125499,0.745719,-0.654334,0.125499,0.745719,-0.654334,0.125499, + 0.745719,-0.654334,0.125499,-0.735791,0.656008,-0.168124,-0.735791,0.656008,-0.168124,-0.735791,0.656008,-0.168124, + 0.815616,0.523433,0.246553,0.815616,0.523433,0.246553,0.815616,0.523433,0.246553,0.815616,0.523433,0.246553, + 0.530593,0.425790,-0.732921,0.530593,0.425790,-0.732921,0.530593,0.425790,-0.732921,0.530593,0.425790,-0.732921, + 0.377241,0.912274,0.159516,0.377241,0.912274,0.159516,0.377241,0.912274,0.159516,0.377241,0.912274,0.159516, + 0.512953,0.693791,0.505503,0.512953,0.693791,0.505503,0.512953,0.693791,0.505503,0.512953,0.693791,0.505503, + 0.739405,-0.656250,0.150390,0.739405,-0.656250,0.150390,0.739405,-0.656250,0.150390,0.945488,0.160425,0.283402, + 0.945488,0.160425,0.283402,0.945488,0.160425,0.283402,0.945488,0.160425,0.283402,0.420431,0.534933,0.732861, + 0.420431,0.534933,0.732861,0.420431,0.534933,0.732861,0.420431,0.534933,0.732861,-0.574527,-0.727277,0.375483, + -0.574527,-0.727277,0.375483,-0.574527,-0.727277,0.375483,-0.574527,-0.727277,0.375483,-0.622587,-0.581443,0.523745, + -0.622587,-0.581443,0.523745,-0.622587,-0.581443,0.523745,-0.622587,-0.581443,0.523745,-0.623647,-0.751769,-0.214260, + -0.623647,-0.751769,-0.214260,-0.623647,-0.751769,-0.214260,0.734487,-0.657377,0.168473,0.734487,-0.657377,0.168473, + 0.734487,-0.657377,0.168473,0.734487,-0.657377,0.168473,0.623171,0.751644,0.216075,0.623171,0.751644,0.216075, + 0.623171,0.751644,0.216075,0.623171,0.751644,0.216075,-0.840567,-0.476495,-0.257679,-0.840567,-0.476495,-0.257679, + -0.840567,-0.476495,-0.257679,-0.840567,-0.476495,-0.257679,0.254843,0.066045,-0.964725,0.254843,0.066045,-0.964725, + 0.254843,0.066045,-0.964725,0.254843,0.066045,-0.964725,-0.739402,0.656252,-0.150394,-0.739402,0.656252,-0.150394, + -0.739402,0.656252,-0.150394,-0.327566,-0.932961,-0.149283,-0.327566,-0.932961,-0.149283,-0.327566,-0.932961,-0.149283, + -0.327566,-0.932961,-0.149283,0.739403,-0.656256,0.150373,0.739403,-0.656256,0.150373,0.739403,-0.656256,0.150373, + -0.674572,-0.735307,0.065394,-0.674572,-0.735307,0.065394,-0.674572,-0.735307,0.065394,-0.674572,-0.735307,0.065394, + -0.739400,0.656252,-0.150400,-0.739400,0.656252,-0.150400,-0.739400,0.656252,-0.150400,0.571315,0.484158,-0.662714, + 0.571315,0.484158,-0.662714,0.571315,0.484158,-0.662714,0.571315,0.484158,-0.662714,-0.520438,-0.706574,-0.479475, + -0.520438,-0.706574,-0.479475,-0.520438,-0.706574,-0.479475,-0.520438,-0.706574,-0.479475,0.739397,-0.656256,0.150399, + 0.739397,-0.656256,0.150399,0.739397,-0.656256,0.150399,-0.623168,-0.751647,-0.216073,-0.623168,-0.751647,-0.216073, + -0.623168,-0.751647,-0.216073,-0.623168,-0.751647,-0.216073,-0.623170,-0.751646,-0.216075,-0.623170,-0.751646,-0.216075, + -0.623170,-0.751646,-0.216075,-0.623170,-0.751646,-0.216075,-0.623168,-0.751647,-0.216075,-0.623168,-0.751647,-0.216075, + -0.623168,-0.751647,-0.216075,-0.623168,-0.751647,-0.216075,0.061761,-0.995812,-0.067414,0.061761,-0.995812,-0.067414, + 0.061761,-0.995812,-0.067414,0.061761,-0.995812,-0.067414,-0.946870,-0.175902,-0.269252,-0.946870,-0.175902,-0.269252, + -0.946870,-0.175902,-0.269252,-0.946870,-0.175902,-0.269252,-0.623171,-0.751644,-0.216075,-0.623171,-0.751644,-0.216075, + -0.623171,-0.751644,-0.216075,-0.623171,-0.751644,-0.216075,0.360903,0.543661,0.757748,0.360903,0.543661,0.757748, + 0.360903,0.543661,0.757748,0.360903,0.543661,0.757748,0.521656,0.778680,-0.348615,0.521656,0.778680,-0.348615, + 0.521656,0.778680,-0.348615,0.521656,0.778680,-0.348615,-0.517109,-0.477223,-0.710532,-0.517109,-0.477223,-0.710532, + -0.517109,-0.477223,-0.710532,-0.517109,-0.477223,-0.710532,-0.688235,0.684325,-0.240897,-0.688235,0.684325,-0.240897, + -0.688235,0.684325,-0.240897,-0.737270,0.658451,-0.151244,-0.737270,0.658451,-0.151244,-0.737270,0.658451,-0.151244, + -0.737270,0.658451,-0.151244,-0.755025,0.640040,-0.142429,-0.755025,0.640040,-0.142429,-0.755025,0.640040,-0.142429, + -0.755025,0.640040,-0.142429,-0.747331,0.641901,-0.171639,-0.747331,0.641901,-0.171639,-0.747331,0.641901,-0.171639, + -0.747331,0.641901,-0.171639,-0.746269,0.647872,-0.152787,-0.746269,0.647872,-0.152787,-0.746269,0.647872,-0.152787, + -0.746269,0.647872,-0.152787,-0.736915,0.656853,-0.159692,-0.736915,0.656853,-0.159692,-0.736915,0.656853,-0.159692, + -0.736915,0.656853,-0.159692,-0.609723,0.629381,-0.481785,-0.609723,0.629381,-0.481785,-0.609723,0.629381,-0.481785, + -0.609723,0.629381,-0.481785,-0.459681,0.172273,0.871215,-0.459681,0.172273,0.871215,-0.459681,0.172273,0.871215, + -0.459681,0.172273,0.871215,0.303081,-0.502995,0.809406,0.303081,-0.502995,0.809406,0.303081,-0.502995,0.809406, + 0.303081,-0.502995,0.809406,0.639223,-0.305729,-0.705638,0.639223,-0.305729,-0.705638,0.639223,-0.305729,-0.705638, + 0.639223,-0.305729,-0.705638,0.456165,-0.161834,-0.875056,0.456165,-0.161834,-0.875056,0.456165,-0.161834,-0.875056, + 0.456165,-0.161834,-0.875056,-0.318893,0.512273,-0.797423,-0.318893,0.512273,-0.797423,-0.318893,0.512273,-0.797423, + -0.318893,0.512273,-0.797423,-0.625285,-0.674031,0.393321,-0.625285,-0.674031,0.393321,-0.625285,-0.674031,0.393321, + -0.625285,-0.674031,0.393321,-0.739401,0.656253,-0.150393,-0.739401,0.656253,-0.150393,-0.739401,0.656253,-0.150393, + -0.739401,0.656253,-0.150393,0.234775,0.041960,-0.971144,0.234775,0.041960,-0.971144,0.234775,0.041960,-0.971144, + 0.234775,0.041960,-0.971144,-0.696248,0.655193,-0.293191,-0.696248,0.655193,-0.293191,-0.696248,0.655193,-0.293191, + -0.696248,0.655193,-0.293191,0.246956,0.056551,-0.967375,0.246956,0.056551,-0.967375,0.246956,0.056551,-0.967375, + 0.246956,0.056551,-0.967375,0.744447,-0.654677,0.131140,0.744447,-0.654677,0.131140,0.744447,-0.654677,0.131140, + 0.744447,-0.654677,0.131140,0.743752,-0.654996,0.133463,0.743752,-0.654996,0.133463,0.743752,-0.654996,0.133463, + 0.743752,-0.654996,0.133463,0.743753,-0.654995,0.133462,0.743753,-0.654995,0.133462,0.743753,-0.654995,0.133462, + 0.743753,-0.654995,0.133462,0.743753,-0.654996,0.133463,0.743753,-0.654996,0.133463,0.743753,-0.654996,0.133463, + 0.743753,-0.654996,0.133463,0.738518,-0.656478,0.153714,0.738518,-0.656478,0.153714,0.738518,-0.656478,0.153714, + 0.738518,-0.656478,0.153714,0.735758,-0.657115,0.163890,0.735758,-0.657115,0.163890,0.735758,-0.657115,0.163890, + 0.735758,-0.657115,0.163890,0.735824,-0.657101,0.163653,0.735824,-0.657101,0.163653,0.735824,-0.657101,0.163653, + 0.735824,-0.657101,0.163653,-0.731204,0.657975,-0.180025,-0.731204,0.657975,-0.180025,-0.731204,0.657975,-0.180025, + -0.731204,0.657975,-0.180025,-0.730817,0.658037,-0.181364,-0.730817,0.658037,-0.181364,-0.730817,0.658037,-0.181364, + -0.730817,0.658037,-0.181364,-0.745505,0.654409,-0.126380,-0.745505,0.654409,-0.126380,-0.745505,0.654409,-0.126380, + -0.745505,0.654409,-0.126380,-0.743337,0.655129,-0.135118,-0.743337,0.655129,-0.135118,-0.743337,0.655129,-0.135118, + -0.743337,0.655129,-0.135118,-0.770445,0.612045,-0.178369,-0.770445,0.612045,-0.178369,-0.770445,0.612045,-0.178369, + -0.770445,0.612045,-0.178369,-0.248302,-0.023229,0.968404,-0.248302,-0.023229,0.968404,-0.248302,-0.023229,0.968404, + -0.248302,-0.023229,0.968404,0.326686,0.118993,-0.937612,0.326686,0.118993,-0.937612,0.326686,0.118993,-0.937612, + 0.326686,0.118993,-0.937612,-0.625943,-0.753812,-0.199904,-0.625943,-0.753812,-0.199904,-0.625943,-0.753812,-0.199904, + -0.625943,-0.753812,-0.199904,0.624220,0.751872,0.212221,0.624220,0.751872,0.212221,0.624220,0.751872,0.212221, + 0.624220,0.751872,0.212221,-0.734317,0.658835,-0.163447,-0.734317,0.658835,-0.163447,-0.734317,0.658835,-0.163447, + -0.734317,0.658835,-0.163447,-0.741552,0.655557,-0.142641,-0.741552,0.655557,-0.142641,-0.741552,0.655557,-0.142641, + 0.629582,0.753188,0.190617,0.629582,0.753188,0.190617,0.629582,0.753188,0.190617,0.629582,0.753188,0.190617, + -0.252014,-0.068554,0.965292,-0.252014,-0.068554,0.965292,-0.252014,-0.068554,0.965292,-0.252014,-0.068554,0.965292, + 0.278846,0.101137,-0.954995,0.278846,0.101137,-0.954995,0.278846,0.101137,-0.954995,0.278846,0.101137,-0.954995, + 0.288777,0.034047,-0.956791,0.288777,0.034047,-0.956791,0.288777,0.034047,-0.956791,0.288777,0.034047,-0.956791, + -0.610537,-0.747559,-0.261536,-0.610537,-0.747559,-0.261536,-0.610537,-0.747559,-0.261536,-0.610537,-0.747559,-0.261536, + -0.741398,0.655708,-0.142749,-0.741398,0.655708,-0.142749,-0.741398,0.655708,-0.142749,-0.251234,-0.014123,0.967823, + -0.251234,-0.014123,0.967823,-0.251234,-0.014123,0.967823,-0.251234,-0.014123,0.967823,0.625119,0.751968,0.209213, + 0.625119,0.751968,0.209213,0.625119,0.751968,0.209213,0.625119,0.751968,0.209213,-0.607273,-0.748857,-0.265393, + -0.607273,-0.748857,-0.265393,-0.607273,-0.748857,-0.265393,-0.607273,-0.748857,-0.265393,0.582794,0.789789,0.191273, + 0.582794,0.789789,0.191273,0.582794,0.789789,0.191273,0.582794,0.789789,0.191273,-0.213046,-0.073230,0.974294, + -0.213046,-0.073230,0.974294,-0.213046,-0.073230,0.974294,-0.213046,-0.073230,0.974294,0.306611,-0.010463,-0.951777, + 0.306611,-0.010463,-0.951777,0.306611,-0.010463,-0.951777,0.306611,-0.010463,-0.951777,-0.744617,0.653719,-0.134896, + -0.744617,0.653719,-0.134896,-0.744617,0.653719,-0.134896,-0.744617,0.653719,-0.134896,0.740387,-0.656018,0.146519, + 0.740387,-0.656018,0.146519,0.740387,-0.656018,0.146519,0.740387,-0.656018,0.146519,0.628382,0.750995,0.202834, + 0.628382,0.750995,0.202834,0.628382,0.750995,0.202834,0.628382,0.750995,0.202834,0.620954,0.751211,0.223828, + 0.620954,0.751211,0.223828,0.620954,0.751211,0.223828,0.745914,-0.654208,0.124995,0.745914,-0.654208,0.124995, + 0.745914,-0.654208,0.124995,0.745914,-0.654208,0.124995,-0.257218,-0.068917,0.963893,-0.257218,-0.068917,0.963893, + -0.257218,-0.068917,0.963893,-0.257218,-0.068917,0.963893,0.289101,0.040347,-0.956448,0.289101,0.040347,-0.956448, + 0.289101,0.040347,-0.956448,0.289101,0.040347,-0.956448,0.224205,0.031196,-0.974043,0.224205,0.031196,-0.974043, + 0.224205,0.031196,-0.974043,0.224205,0.031196,-0.974043,-0.726396,0.658777,-0.195862,-0.726396,0.658777,-0.195862, + -0.726396,0.658777,-0.195862,-0.726396,0.658777,-0.195862,0.621132,0.751099,0.223708,0.621132,0.751099,0.223708, + 0.621132,0.751099,0.223708,-0.204203,-0.070231,0.976406,-0.204203,-0.070231,0.976406,-0.204203,-0.070231,0.976406, + -0.204203,-0.070231,0.976406,0.741079,-0.655912,0.143461,0.741079,-0.655912,0.143461,0.741079,-0.655912,0.143461, + 0.741079,-0.655912,0.143461,-0.726764,0.656906,-0.200719,-0.726764,0.656906,-0.200719,-0.726764,0.656906,-0.200719, + -0.726764,0.656906,-0.200719,-0.616636,-0.749771,-0.240007,-0.616636,-0.749771,-0.240007,-0.616636,-0.749771,-0.240007, + -0.616636,-0.749771,-0.240007,0.007947,0.996942,0.077740,0.007947,0.996942,0.077740,0.007947,0.996942,0.077740, + 0.007947,0.996942,0.077740,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724, + 0.254843,0.066044,-0.964724,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725,0.254840,0.066045,-0.964725, + 0.254840,0.066045,-0.964725,0.623167,0.751649,0.216070,0.623167,0.751649,0.216070,0.623167,0.751649,0.216070, + -0.623169,-0.751647,-0.216071,-0.623169,-0.751647,-0.216071,-0.623169,-0.751647,-0.216071,0.254843,0.066044,-0.964724, + 0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.254843,0.066044,-0.964724,0.623170,0.751644,0.216082, + 0.623170,0.751644,0.216082,0.623170,0.751644,0.216082,-0.623176,-0.751640,-0.216078,-0.623176,-0.751640,-0.216078, + -0.623176,-0.751640,-0.216078,-0.623646,-0.751770,-0.214260,-0.623646,-0.751770,-0.214260,-0.623646,-0.751770,-0.214260, + -0.616638,-0.749770,-0.240005,-0.616638,-0.749770,-0.240005,-0.616638,-0.749770,-0.240005,-0.616638,-0.749770,-0.240005, + -0.739400,0.656253,-0.150397,-0.739400,0.656253,-0.150397,-0.739400,0.656253,-0.150397,0.739393,-0.656263,0.150391, + 0.739393,-0.656263,0.150391,0.739393,-0.656263,0.150391,0.351824,-0.516171,0.780889,0.351824,-0.516171,0.780889, + 0.351824,-0.516171,0.780889,0.351824,-0.516171,0.780889,-0.659610,0.356680,0.661585,-0.659610,0.356680,0.661585, + -0.659610,0.356680,0.661585,-0.659610,0.356680,0.661585,-0.623170,-0.751645,-0.216076,-0.623170,-0.751645,-0.216076, + -0.623170,-0.751645,-0.216076,0.623171,0.751643,0.216078,0.623171,0.751643,0.216078,0.623171,0.751643,0.216078, + 0.240292,0.048559,-0.969485,0.240292,0.048559,-0.969485,0.240292,0.048559,-0.969485,0.240292,0.048559,-0.969485, + -0.744262,0.654681,-0.132163,-0.744262,0.654681,-0.132163,-0.744262,0.654681,-0.132163,-0.744262,0.654681,-0.132163, + -0.623166,-0.751648,-0.216078,-0.623166,-0.751648,-0.216078,-0.623166,-0.751648,-0.216078,0.582931,0.735778,0.344706, + 0.582931,0.735778,0.344706,0.582931,0.735778,0.344706,0.739400,-0.656253,0.150401,0.739400,-0.656253,0.150401, + 0.739400,-0.656253,0.150401,0.610234,0.558875,-0.561492,0.610234,0.558875,-0.561492,0.610234,0.558875,-0.561492, + 0.610234,0.558875,-0.561492,-0.739401,0.656254,-0.150391,-0.739401,0.656254,-0.150391,-0.739401,0.656254,-0.150391, + 0.623171,0.751646,0.216071,0.623171,0.751646,0.216071,0.623171,0.751646,0.216071,0.623171,0.751646,0.216071, + 0.739397,-0.656258,0.150391,0.739397,-0.656258,0.150391,0.739397,-0.656258,0.150391,-0.739404,0.656250,-0.150391, + -0.739404,0.656250,-0.150391,-0.739404,0.656250,-0.150391,-0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725, + -0.254842,-0.066046,0.964725,-0.254842,-0.066046,0.964725,-0.744527,-0.351762,-0.567400,-0.744527,-0.351762,-0.567400, + -0.744527,-0.351762,-0.567400,-0.744527,-0.351762,-0.567400,-0.216373,-0.708654,-0.671559,-0.216373,-0.708654,-0.671559, + -0.216373,-0.708654,-0.671559,-0.216373,-0.708654,-0.671559,0.632155,0.753573,0.180300,0.632155,0.753573,0.180300, + 0.632155,0.753573,0.180300,0.632155,0.753573,0.180300,0.742300,-0.655448,0.139208,0.742300,-0.655448,0.139208, + 0.742300,-0.655448,0.139208,0.742300,-0.655448,0.139208,-0.966108,-0.126577,-0.224976,-0.966108,-0.126577,-0.224976, + -0.966108,-0.126577,-0.224976,-0.966108,-0.126577,-0.224976,0.734381,-0.657566,0.168199,0.734381,-0.657566,0.168199, + 0.734381,-0.657566,0.168199,0.734381,-0.657566,0.168199,-0.945967,-0.193756,-0.260011,-0.945967,-0.193756,-0.260011, + -0.945967,-0.193756,-0.260011,-0.945967,-0.193756,-0.260011,0.009164,0.997292,0.072968,0.009164,0.997292,0.072968, + 0.009164,0.997292,0.072968,0.009164,0.997292,0.072968,-0.618440,-0.750324,-0.233551,-0.618440,-0.750324,-0.233551, + -0.618440,-0.750324,-0.233551,-0.618440,-0.750324,-0.233551,0.944349,0.193339,0.266129,0.944349,0.193339,0.266129, + 0.944349,0.193339,0.266129,0.944349,0.193339,0.266129,-0.742631,0.655245,-0.138394,-0.742631,0.655245,-0.138394, + -0.742631,0.655245,-0.138394,-0.742631,0.655245,-0.138394,0.618761,0.750415,0.232404,0.618761,0.750415,0.232404, + 0.618761,0.750415,0.232404,0.618761,0.750415,0.232404,0.618761,0.750417,0.232401,0.618761,0.750417,0.232401, + 0.618761,0.750417,0.232401,0.618761,0.750417,0.232401,-0.738361,0.656479,-0.154461,-0.738361,0.656479,-0.154461, + -0.738361,0.656479,-0.154461,-0.738361,0.656479,-0.154461,0.266921,0.080660,-0.960337,0.266921,0.080660,-0.960337, + 0.266921,0.080660,-0.960337,0.266921,0.080660,-0.960337,0.493045,-0.603473,0.626679,0.493045,-0.603473,0.626679, + 0.493045,-0.603473,0.626679,0.493045,-0.603473,0.626679,0.741776,-0.653311,0.151501,0.741776,-0.653311,0.151501, + 0.741776,-0.653311,0.151501,0.741776,-0.653311,0.151501,0.254393,0.065506,-0.964880,0.254393,0.065506,-0.964880, + 0.254393,0.065506,-0.964880,0.254393,0.065506,-0.964880,-0.746528,0.486135,0.454279,-0.746528,0.486135,0.454279, + -0.746528,0.486135,0.454279,-0.746528,0.486135,0.454279,0.623170,0.751645,0.216077,0.623170,0.751645,0.216077, + 0.623170,0.751645,0.216077,0.623170,0.751645,0.216077,-0.228855,-0.468280,-0.853428,-0.228855,-0.468280,-0.853428, + -0.228855,-0.468280,-0.853428,-0.228855,-0.468280,-0.853428,0.734611,-0.657181,0.168702,0.734611,-0.657181,0.168702, + 0.734611,-0.657181,0.168702,0.734611,-0.657181,0.168702,0.937425,0.164794,0.306721,0.937425,0.164794,0.306721, + 0.937425,0.164794,0.306721,0.937425,0.164794,0.306721,0.964659,0.168574,0.202523,0.964659,0.168574,0.202523, + 0.964659,0.168574,0.202523,0.964659,0.168574,0.202523,0.970161,0.107422,0.217368,0.970161,0.107422,0.217368, + 0.970161,0.107422,0.217368,0.970161,0.107422,0.217368,0.035083,0.879691,-0.474250,0.035083,0.879691,-0.474250, + 0.035083,0.879691,-0.474250,0.035083,0.879691,-0.474250,-0.033662,-0.882018,0.470012,-0.033662,-0.882018,0.470012, + -0.033662,-0.882018,0.470012,-0.033662,-0.882018,0.470012,0.965840,0.111894,0.233736,0.965840,0.111894,0.233736, + 0.965840,0.111894,0.233736,0.965840,0.111894,0.233736,-0.238090,0.802079,0.547707,-0.238090,0.802079,0.547707, + -0.238090,0.802079,0.547707,-0.238090,0.802079,0.547707,0.240389,-0.793172,-0.559546,0.240389,-0.793172,-0.559546, + 0.240389,-0.793172,-0.559546,0.240389,-0.793172,-0.559546,-0.664773,-0.091301,0.741445,-0.664773,-0.091301,0.741445, + -0.664773,-0.091301,0.741445,-0.664773,-0.091301,0.741445,0.960270,0.100059,0.260519,0.960270,0.100059,0.260519, + 0.960270,0.100059,0.260519,0.960270,0.100059,0.260519,0.288966,0.055744,-0.955715,0.288966,0.055744,-0.955715, + 0.288966,0.055744,-0.955715,0.288966,0.055744,-0.955715,-0.085232,0.033639,-0.995793,-0.085232,0.033639,-0.995793, + -0.085232,0.033639,-0.995793,-0.085232,0.033639,-0.995793,-0.317233,-0.080081,0.944960,-0.317233,-0.080081,0.944960, + -0.317233,-0.080081,0.944960,-0.317233,-0.080081,0.944960,0.959743,0.104593,0.260681,0.959743,0.104593,0.260681, + 0.959743,0.104593,0.260681,0.959743,0.104593,0.260681,-0.289994,-0.008943,0.956987,-0.289994,-0.008943,0.956987, + -0.289994,-0.008943,0.956987,-0.289994,-0.008943,0.956987,0.935151,0.169737,0.310938,0.935151,0.169737,0.310938, + 0.935151,0.169737,0.310938,0.935151,0.169737,0.310938,-0.040870,-0.984293,-0.171746,-0.040870,-0.984293,-0.171746, + -0.040870,-0.984293,-0.171746,-0.040870,-0.984293,-0.171746,0.972804,0.113529,0.201902,0.972804,0.113529,0.201902, + 0.972804,0.113529,0.201902,0.972804,0.113529,0.201902,0.949838,0.110170,0.292696,0.949838,0.110170,0.292696, + 0.949838,0.110170,0.292696,0.949838,0.110170,0.292696,0.970362,0.110586,0.214870,0.970362,0.110586,0.214870, + 0.970362,0.110586,0.214870,0.970362,0.110586,0.214870,-0.579318,-0.803671,-0.136025,-0.579318,-0.803671,-0.136025, + -0.579318,-0.803671,-0.136025,-0.612099,-0.745876,-0.262686,-0.612099,-0.745876,-0.262686,-0.612099,-0.745876,-0.262686, + -0.612099,-0.745876,-0.262686,-0.159473,0.987195,0.003896,-0.159473,0.987195,0.003896,-0.159473,0.987195,0.003896, + -0.159473,0.987195,0.003896,-0.171031,0.985232,-0.008107,-0.171031,0.985232,-0.008107,-0.171031,0.985232,-0.008107, + -0.092970,0.992487,0.079542,-0.092970,0.992487,0.079542,-0.092970,0.992487,0.079542,-0.092970,0.992487,0.079542, + -0.966082,-0.068266,-0.249051,-0.966082,-0.068266,-0.249051,-0.966082,-0.068266,-0.249051,-0.246691,-0.055581,0.967499, + -0.246691,-0.055581,0.967499,-0.246691,-0.055581,0.967499,-0.246691,-0.055581,0.967499,-0.974734,0.071158,-0.211730, + -0.974734,0.071158,-0.211730,-0.974734,0.071158,-0.211730,-0.974734,0.071158,-0.211730,0.663739,-0.741797,0.095853, + 0.663739,-0.741797,0.095853,0.663739,-0.741797,0.095853,0.663739,-0.741797,0.095853,-0.165670,-0.095038,0.981591, + -0.165670,-0.095038,0.981591,-0.165670,-0.095038,0.981591,-0.156473,-0.046220,0.986600,-0.156473,-0.046220,0.986600, + -0.156473,-0.046220,0.986600,-0.299889,0.952879,0.045696,-0.299889,0.952879,0.045696,-0.299889,0.952879,0.045696, + -0.299889,0.952879,0.045696,0.917800,0.297890,0.262497,0.917800,0.297890,0.262497,0.917800,0.297890,0.262497, + 0.917800,0.297890,0.262497,-0.205434,-0.092212,0.974317,-0.205434,-0.092212,0.974317,-0.205434,-0.092212,0.974317, + -0.369039,-0.917877,-0.145988,-0.369039,-0.917877,-0.145988,-0.369039,-0.917877,-0.145988,-0.369039,-0.917877,-0.145988, + 0.315569,0.915169,0.250762,0.315569,0.915169,0.250762,0.315569,0.915169,0.250762,0.315569,0.915169,0.250762, + -0.243557,-0.053148,0.968429,-0.243557,-0.053148,0.968429,-0.243557,-0.053148,0.968429,-0.966596,0.248387,-0.063209, + -0.966596,0.248387,-0.063209,-0.966596,0.248387,-0.063209,-0.966596,0.248387,-0.063209,0.596750,-0.799122,-0.072759, + 0.596750,-0.799122,-0.072759,0.596750,-0.799122,-0.072759,0.596750,-0.799122,-0.072759,-0.090279,-0.192259,0.977183, + -0.090279,-0.192259,0.977183,-0.090279,-0.192259,0.977183,-0.072211,-0.142815,0.987112,-0.072211,-0.142815,0.987112, + -0.072211,-0.142815,0.987112,0.318581,0.912959,0.254976,0.318581,0.912959,0.254976,0.318581,0.912959,0.254976, + 0.318581,0.912959,0.254976,0.802730,0.546878,0.237799,0.802730,0.546878,0.237799,0.802730,0.546878,0.237799, + 0.802730,0.546878,0.237799,-0.097995,-0.192488,0.976394,-0.097995,-0.192488,0.976394,-0.097995,-0.192488,0.976394, + -0.546621,-0.812954,-0.200777,-0.546621,-0.812954,-0.200777,-0.546621,-0.812954,-0.200777,-0.546621,-0.812954,-0.200777, + 0.105437,0.949386,0.295888,0.105437,0.949386,0.295888,0.105437,0.949386,0.295888,0.105437,0.949386,0.295888, + -0.119774,-0.153533,0.980858,-0.119774,-0.153533,0.980858,-0.119774,-0.153533,0.980858,0.254843,0.066042,-0.964724, + 0.254843,0.066042,-0.964724,0.254843,0.066042,-0.964724,0.254843,0.066042,-0.964724,-0.888760,-0.377100,-0.260578, + -0.888760,-0.377100,-0.260578,-0.888760,-0.377100,-0.260578,-0.888760,-0.377100,-0.260578,-0.888761,-0.377091,-0.260589, + -0.888761,-0.377091,-0.260589,-0.888761,-0.377091,-0.260589,-0.888761,-0.377091,-0.260589,0.380997,-0.923821,0.037362, + 0.380997,-0.923821,0.037362,0.380997,-0.923821,0.037362,0.380997,-0.923821,0.037362,0.888760,0.377089,0.260594, + 0.888760,0.377089,0.260594,0.888760,0.377089,0.260594,0.888760,0.377089,0.260594,0.888759,0.377090,0.260598, + 0.888759,0.377090,0.260598,0.888759,0.377090,0.260598,0.888759,0.377090,0.260598,0.381005,-0.923816,0.037401, + 0.381005,-0.923816,0.037401,0.381005,-0.923816,0.037401,0.381005,-0.923816,0.037401,-0.254840,-0.066047,0.964725, + -0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,-0.254840,-0.066047,0.964725,0.355383,-0.926123,0.126490, + 0.355383,-0.926123,0.126490,0.355383,-0.926123,0.126490,0.355383,-0.926123,0.126490,-0.450742,0.615664,0.646366, + -0.450742,0.615664,0.646366,-0.450742,0.615664,0.646366,-0.450742,0.615664,0.646366,-0.888760,-0.377090,-0.260594, + -0.888760,-0.377090,-0.260594,-0.888760,-0.377090,-0.260594,-0.888760,-0.377090,-0.260594,0.271405,0.025229,-0.962135, + 0.271405,0.025229,-0.962135,0.271405,0.025229,-0.962135,0.271405,0.025229,-0.962135,0.330227,-0.921036,0.206502, + 0.330227,-0.921036,0.206502,0.330227,-0.921036,0.206502,0.330227,-0.921036,0.206502,0.381027,-0.923807,0.037414, + 0.381027,-0.923807,0.037414,0.381027,-0.923807,0.037414,0.381027,-0.923807,0.037414,0.380997,-0.923818,0.037423, + 0.380997,-0.923818,0.037423,0.380997,-0.923818,0.037423,0.380997,-0.923818,0.037423,0.609615,0.293762,0.736256, + 0.609615,0.293762,0.736256,0.609615,0.293762,0.736256,0.609615,0.293762,0.736256,0.246661,0.085722,-0.965303, + 0.246661,0.085722,-0.965303,0.246661,0.085722,-0.965303,0.246661,0.085722,-0.965303,0.380994,-0.923819,0.037442, + 0.380994,-0.923819,0.037442,0.380994,-0.923819,0.037442,0.380994,-0.923819,0.037442,0.392493,-0.919723,-0.007715, + 0.392493,-0.919723,-0.007715,0.392493,-0.919723,-0.007715,0.392493,-0.919723,-0.007715,-0.060957,0.660686,-0.748183, + -0.060957,0.660686,-0.748183,-0.060957,0.660686,-0.748183,-0.060957,0.660686,-0.748183,-0.380997,0.923817,-0.037459, + -0.380997,0.923817,-0.037459,-0.380997,0.923817,-0.037459,-0.380997,0.923817,-0.037459,-0.842187,-0.360147,-0.401267, + -0.842187,-0.360147,-0.401267,-0.842187,-0.360147,-0.401267,-0.842187,-0.360147,-0.401267,0.251626,0.073817,-0.965005, + 0.251626,0.073817,-0.965005,0.251626,0.073817,-0.965005,0.251626,0.073817,-0.965005,0.380997,-0.923819,0.037413, + 0.380997,-0.923819,0.037413,0.380997,-0.923819,0.037413,0.380997,-0.923819,0.037413,0.893767,0.378104,0.241283, + 0.893767,0.378104,0.241283,0.893767,0.378104,0.241283,0.893767,0.378104,0.241283,-0.381005,0.923818,-0.037345, + -0.381005,0.923818,-0.037345,-0.381005,0.923818,-0.037345,-0.381005,0.923818,-0.037345,-0.098507,0.851036,0.515785, + -0.098507,0.851036,0.515785,-0.098507,0.851036,0.515785,-0.098507,0.851036,0.515785,-0.481881,-0.184520,-0.856588, + -0.481881,-0.184520,-0.856588,-0.481881,-0.184520,-0.856588,-0.481881,-0.184520,-0.856588,0.364817,-0.930866,-0.019924, + 0.364817,-0.930866,-0.019924,0.364817,-0.930866,-0.019924,0.364817,-0.930866,-0.019924,-0.615895,0.551351,0.562748, + -0.615895,0.551351,0.562748,-0.615895,0.551351,0.562748,-0.615895,0.551351,0.562748,0.497702,0.240811,-0.833248, + 0.497702,0.240811,-0.833248,0.497702,0.240811,-0.833248,0.497702,0.240811,-0.833248,0.450914,-0.892064,-0.029986, + 0.450914,-0.892064,-0.029986,0.450914,-0.892064,-0.029986,0.450914,-0.892064,-0.029986,-0.745342,-0.323574,-0.582893, + -0.745342,-0.323574,-0.582893,-0.745342,-0.323574,-0.582893,-0.745342,-0.323574,-0.582893,-0.518929,-0.200285,0.831022, + -0.518929,-0.200285,0.831022,-0.518929,-0.200285,0.831022,-0.518929,-0.200285,0.831022,0.406335,0.229663,0.884391, + 0.406335,0.229663,0.884391,0.406335,0.229663,0.884391,0.406335,0.229663,0.884391,0.723602,0.244378,-0.645507, + 0.723602,0.244378,-0.645507,0.723602,0.244378,-0.645507,0.723602,0.244378,-0.645507,-0.874782,-0.383592,-0.295997, + -0.874782,-0.383592,-0.295997,-0.874782,-0.383592,-0.295997,-0.874782,-0.383592,-0.295997,0.512870,0.197662,-0.835400, + 0.512870,0.197662,-0.835400,0.512870,0.197662,-0.835400,0.512870,0.197662,-0.835400,-0.422220,-0.231400,-0.876461, + -0.422220,-0.231400,-0.876461,-0.422220,-0.231400,-0.876461,-0.422220,-0.231400,-0.876461,0.390737,-0.917152,-0.078459, + 0.390737,-0.917152,-0.078459,0.390737,-0.917152,-0.078459,0.390737,-0.917152,-0.078459,0.448616,-0.890578,-0.074934, + 0.448616,-0.890578,-0.074934,0.448616,-0.890578,-0.074934,0.448616,-0.890578,-0.074934,0.890004,0.377402,0.255853, + 0.890004,0.377402,0.255853,0.890004,0.377402,0.255853,0.890004,0.377402,0.255853,-0.893262,-0.378233,-0.242945, + -0.893262,-0.378233,-0.242945,-0.893262,-0.378233,-0.242945,-0.893262,-0.378233,-0.242945,0.391566,-0.920142,-0.003952, + 0.391566,-0.920142,-0.003952,0.391566,-0.920142,-0.003952,0.393209,-0.919387,-0.010648,0.393209,-0.919387,-0.010648, + 0.393209,-0.919387,-0.010648,0.393209,-0.919387,-0.010648,0.845287,-0.474974,0.244724,0.845287,-0.474974,0.244724, + 0.845287,-0.474974,0.244724,0.845287,-0.474974,0.244724,-0.878702,-0.374382,-0.296177,-0.878702,-0.374382,-0.296177, + -0.878702,-0.374382,-0.296177,-0.878702,-0.374382,-0.296177,-0.371355,0.925628,-0.072855,-0.371355,0.925628,-0.072855, + -0.371355,0.925628,-0.072855,-0.371355,0.925628,-0.072855,0.893125,0.378466,0.243086,0.893125,0.378466,0.243086, + 0.893125,0.378466,0.243086,0.893125,0.378466,0.243086,0.376321,-0.924860,0.054924,0.376321,-0.924860,0.054924, + 0.376321,-0.924860,0.054924,0.376321,-0.924860,0.054924,-0.893125,-0.378462,-0.243094,-0.893125,-0.378462,-0.243094, + -0.893125,-0.378462,-0.243094,-0.893125,-0.378462,-0.243094,-0.376302,0.924869,-0.054905,-0.376302,0.924869,-0.054905, + -0.376302,0.924869,-0.054905,-0.376302,0.924869,-0.054905,-0.376308,0.924867,-0.054896,-0.376308,0.924867,-0.054896, + -0.376308,0.924867,-0.054896,-0.376308,0.924867,-0.054896,-0.886946,-0.376622,-0.267362,-0.886946,-0.376622,-0.267362, + -0.886946,-0.376622,-0.267362,-0.886946,-0.376622,-0.267362,-0.879131,-0.374496,-0.294756,-0.879131,-0.374496,-0.294756, + -0.879131,-0.374496,-0.294756,-0.879131,-0.374496,-0.294756,-0.891631,-0.377831,-0.249475,-0.891631,-0.377831,-0.249475, + -0.891631,-0.377831,-0.249475,-0.891631,-0.377831,-0.249475,0.893088,0.378194,0.243645,0.893088,0.378194,0.243645, + 0.893088,0.378194,0.243645,0.893088,0.378194,0.243645,0.893024,0.378180,0.243902,0.893024,0.378180,0.243902, + 0.893024,0.378180,0.243902,0.893024,0.378180,0.243902,0.885650,0.376268,0.272115,0.885650,0.376268,0.272115, + 0.885650,0.376268,0.272115,0.885650,0.376268,0.272115,0.885104,0.377369,0.272366,0.885104,0.377369,0.272366, + 0.885104,0.377369,0.272366,0.885104,0.377369,0.272366,-0.893611,-0.378313,-0.241533,-0.893611,-0.378313,-0.241533, + -0.893611,-0.378313,-0.241533,-0.893611,-0.378313,-0.241533,-0.390587,0.920566,0.000055,-0.390587,0.920566,0.000055, + -0.390587,0.920566,0.000055,-0.390587,0.920566,0.000055,0.893614,0.378325,0.241506,0.893614,0.378325,0.241506, + 0.893614,0.378325,0.241506,0.893614,0.378325,0.241506,0.390601,-0.920560,-0.000031,0.390601,-0.920560,-0.000031, + 0.390601,-0.920560,-0.000031,0.390601,-0.920560,-0.000031,0.390391,-0.920649,0.000748,0.390391,-0.920649,0.000748, + 0.390391,-0.920649,0.000748,0.390391,-0.920649,0.000748,0.390403,-0.920644,0.000745,0.390403,-0.920644,0.000745, + 0.390403,-0.920644,0.000745,0.390403,-0.920644,0.000745,-0.390413,0.920640,-0.000668,-0.390413,0.920640,-0.000668, + -0.390413,0.920640,-0.000668,-0.390413,0.920640,-0.000668,-0.878380,-0.374289,-0.297249,-0.878380,-0.374289,-0.297249, + -0.878380,-0.374289,-0.297249,-0.878380,-0.374289,-0.297249,0.878374,0.374304,0.297246,0.878374,0.374304,0.297246, + 0.878374,0.374304,0.297246,0.878374,0.374304,0.297246,0.390429,-0.920633,0.000673,0.390429,-0.920633,0.000673, + 0.390429,-0.920633,0.000673,0.390429,-0.920633,0.000673,0.883779,0.376054,0.278420,0.883779,0.376054,0.278420, + 0.883779,0.376054,0.278420,0.883779,0.376054,0.278420,0.385554,-0.922471,0.019871,0.385554,-0.922471,0.019871, + 0.385554,-0.922471,0.019871,0.385554,-0.922471,0.019871,0.385556,-0.922470,0.019888,0.385556,-0.922470,0.019888, + 0.385556,-0.922470,0.019888,0.385556,-0.922470,0.019888,-0.893327,-0.377975,-0.243109,-0.893327,-0.377975,-0.243109, + -0.893327,-0.377975,-0.243109,-0.893327,-0.377975,-0.243109,0.385561,-0.922468,0.019874,0.385561,-0.922468,0.019874, + 0.385561,-0.922468,0.019874,0.385561,-0.922468,0.019874,-0.263426,-0.045042,0.963627,-0.263426,-0.045042,0.963627, + -0.263426,-0.045042,0.963627,-0.263426,-0.045042,0.963627,0.411790,-0.906564,-0.092579,0.411790,-0.906564,-0.092579, + 0.411790,-0.906564,-0.092579,0.411790,-0.906564,-0.092579,0.402616,-0.913972,-0.050554,0.402616,-0.913972,-0.050554, + 0.402616,-0.913972,-0.050554,0.402616,-0.913972,-0.050554,0.388519,-0.921404,0.008280,0.388519,-0.921404,0.008280, + 0.388519,-0.921404,0.008280,0.388519,-0.921404,0.008280,0.876491,0.373774,0.303407,0.876491,0.373774,0.303407, + 0.876491,0.373774,0.303407,0.876491,0.373774,0.303407,0.379788,-0.924120,0.041987,0.379788,-0.924120,0.041987, + 0.379788,-0.924120,0.041987,0.379788,-0.924120,0.041987,-0.896636,-0.379047,-0.228838,-0.896636,-0.379047,-0.228838, + -0.896636,-0.379047,-0.228838,-0.896636,-0.379047,-0.228838,0.379816,-0.924113,0.041899,0.379816,-0.924113,0.041899, + 0.379816,-0.924113,0.041899,0.379816,-0.924113,0.041899,0.276272,0.075148,-0.958137,0.276272,0.075148,-0.958137, + 0.276272,0.075148,-0.958137,0.276272,0.075148,-0.958137,0.380997,-0.923819,0.037413,0.380997,-0.923819,0.037413, + 0.380997,-0.923819,0.037413,0.380997,-0.923819,0.037413,0.380995,-0.923819,0.037435,0.380995,-0.923819,0.037435, + 0.380995,-0.923819,0.037435,0.380995,-0.923819,0.037435,-0.254855,-0.066052,0.964721,-0.254855,-0.066052,0.964721, + -0.254855,-0.066052,0.964721,-0.254855,-0.066052,0.964721,0.379813,-0.924113,0.041910,0.379813,-0.924113,0.041910, + 0.379813,-0.924113,0.041910,0.379813,-0.924113,0.041910,0.870647,0.372104,0.321735,0.870647,0.372104,0.321735, + 0.870647,0.372104,0.321735,0.870647,0.372104,0.321735,0.381007,-0.923816,0.037400,0.381007,-0.923816,0.037400, + 0.381007,-0.923816,0.037400,0.381007,-0.923816,0.037400,0.380998,-0.923819,0.037394,0.380998,-0.923819,0.037394, + 0.380998,-0.923819,0.037394,0.380998,-0.923819,0.037394,0.388520,-0.921403,0.008269,0.388520,-0.921403,0.008269, + 0.388520,-0.921403,0.008269,0.388520,-0.921403,0.008269,0.388535,-0.921397,0.008214,0.388535,-0.921397,0.008214, + 0.388535,-0.921397,0.008214,0.388535,-0.921397,0.008214,-0.896653,-0.379057,-0.228755,-0.896653,-0.379057,-0.228755, + -0.896653,-0.379057,-0.228755,-0.896653,-0.379057,-0.228755,0.379812,-0.924115,0.041893,0.379812,-0.924115,0.041893, + 0.379812,-0.924115,0.041893,0.379812,-0.924115,0.041893,0.254849,0.066047,-0.964723,0.254849,0.066047,-0.964723, + 0.254849,0.066047,-0.964723,0.254849,0.066047,-0.964723,0.380994,-0.923819,0.037432,0.380994,-0.923819,0.037432, + 0.380994,-0.923819,0.037432,0.380994,-0.923819,0.037432,0.380998,-0.923818,0.037416,0.380998,-0.923818,0.037416, + 0.380998,-0.923818,0.037416,0.380998,-0.923818,0.037416,-0.254819,-0.066041,0.964731,-0.254819,-0.066041,0.964731, + -0.254819,-0.066041,0.964731,-0.254819,-0.066041,0.964731,0.381030,-0.923806,0.037407,0.381030,-0.923806,0.037407, + 0.381030,-0.923806,0.037407,0.381030,-0.923806,0.037407,0.381001,-0.923818,0.037400,0.381001,-0.923818,0.037400, + 0.381001,-0.923818,0.037400,0.381001,-0.923818,0.037400,0.254834,0.066043,-0.964727,0.254834,0.066043,-0.964727, + 0.254834,0.066043,-0.964727,0.254834,0.066043,-0.964727,-0.879313,-0.374551,-0.294144,-0.879313,-0.374551,-0.294144, + -0.879313,-0.374551,-0.294144,-0.879313,-0.374551,-0.294144,-0.254867,-0.066048,0.964718,-0.254867,-0.066048,0.964718, + -0.254867,-0.066048,0.964718,-0.254867,-0.066048,0.964718,0.895043,0.378669,0.235600,0.895043,0.378669,0.235600, + 0.895043,0.378669,0.235600,0.895043,0.378669,0.235600,0.254853,0.066046,-0.964722,0.254853,0.066046,-0.964722, + 0.254853,0.066046,-0.964722,0.254853,0.066046,-0.964722,-0.874822,-0.373304,-0.308757,-0.874822,-0.373304,-0.308757, + -0.874822,-0.373304,-0.308757,-0.874822,-0.373304,-0.308757,-0.271919,-0.073295,0.959525,-0.271919,-0.073295,0.959525, + -0.271919,-0.073295,0.959525,-0.271919,-0.073295,0.959525,0.895030,0.378662,0.235661,0.895030,0.378662,0.235661, + 0.895030,0.378662,0.235661,0.895030,0.378662,0.235661,-0.883350,-0.377466,-0.277870,-0.883350,-0.377466,-0.277870, + -0.883350,-0.377466,-0.277870,0.036614,0.513305,-0.857425,0.036614,0.513305,-0.857425,0.036614,0.513305,-0.857425, + 0.036614,0.513305,-0.857425,0.888745,0.377087,0.260648,0.888745,0.377087,0.260648,0.888745,0.377087,0.260648, + -0.394971,0.748902,0.532112,-0.394971,0.748902,0.532112,-0.394971,0.748902,0.532112,-0.394971,0.748902,0.532112, + 0.268729,-0.756496,0.596237,0.268729,-0.756496,0.596237,0.268729,-0.756496,0.596237,0.268729,-0.756496,0.596237, + 0.883821,0.375785,0.278650,0.883821,0.375785,0.278650,0.883821,0.375785,0.278650,0.883821,0.375785,0.278650, + -0.888763,-0.377085,-0.260589,-0.888763,-0.377085,-0.260589,-0.888763,-0.377085,-0.260589,0.888745,0.377088,0.260647, + 0.888745,0.377088,0.260647,0.888745,0.377088,0.260647,-0.888760,-0.377072,-0.260618,-0.888760,-0.377072,-0.260618, + -0.888760,-0.377072,-0.260618,-0.007079,0.588664,-0.808347,-0.007079,0.588664,-0.808347,-0.007079,0.588664,-0.808347, + -0.007079,0.588664,-0.808347,0.888755,0.377093,0.260607,0.888755,0.377093,0.260607,0.888755,0.377093,0.260607, + 0.380999,-0.923819,0.037402,0.380999,-0.923819,0.037402,0.380999,-0.923819,0.037402,0.380999,-0.923819,0.037402, + -0.436106,0.705764,0.558309,-0.436106,0.705764,0.558309,-0.436106,0.705764,0.558309,-0.436106,0.705764,0.558309, + -0.343416,0.738799,-0.579864,-0.343416,0.738799,-0.579864,-0.343416,0.738799,-0.579864,-0.343416,0.738799,-0.579864, + 0.294558,-0.802803,-0.518404,0.294558,-0.802803,-0.518404,0.294558,-0.802803,-0.518404,0.294558,-0.802803,-0.518404, + -0.870299,-0.337271,-0.358926,-0.870299,-0.337271,-0.358926,-0.870299,-0.337271,-0.358926,-0.889439,-0.374406,-0.262144, + -0.889439,-0.374406,-0.262144,-0.889439,-0.374406,-0.262144,-0.889439,-0.374406,-0.262144,-0.884053,-0.396490,-0.247478, + -0.884053,-0.396490,-0.247478,-0.884053,-0.396490,-0.247478,-0.884053,-0.396490,-0.247478,-0.876229,-0.394574,-0.276648, + -0.876229,-0.394574,-0.276648,-0.876229,-0.394574,-0.276648,-0.876229,-0.394574,-0.276648,-0.884484,-0.387319,-0.260137, + -0.884484,-0.387319,-0.260137,-0.884484,-0.387319,-0.260137,-0.884484,-0.387319,-0.260137,-0.886257,-0.376454,-0.269874, + -0.886257,-0.376454,-0.269874,-0.886257,-0.376454,-0.269874,-0.886257,-0.376454,-0.269874,-0.738533,-0.340057,-0.582177, + -0.738533,-0.340057,-0.582177,-0.738533,-0.340057,-0.582177,-0.738533,-0.340057,-0.582177,-0.539170,-0.154994,0.827812, + -0.539170,-0.154994,0.827812,-0.539170,-0.154994,0.827812,-0.539170,-0.154994,0.827812,0.418406,0.192999,0.887518, + 0.418406,0.192999,0.887518,0.418406,0.192999,0.887518,0.418406,0.192999,0.887518,0.707792,0.283105,-0.647211, + 0.707792,0.283105,-0.647211,0.707792,0.283105,-0.647211,0.707792,0.283105,-0.647211,0.529310,0.155901,-0.833982, + 0.529310,0.155901,-0.833982,0.529310,0.155901,-0.833982,0.529310,0.155901,-0.833982,-0.436313,-0.200282,-0.877222, + -0.436313,-0.200282,-0.877222,-0.436313,-0.200282,-0.877222,-0.436313,-0.200282,-0.877222,0.195250,-0.773259,0.603281, + 0.195250,-0.773259,0.603281,0.195250,-0.773259,0.603281,0.195250,-0.773259,0.603281,-0.888759,-0.377091,-0.260594, + -0.888759,-0.377091,-0.260594,-0.888759,-0.377091,-0.260594,-0.888759,-0.377091,-0.260594,0.266897,0.036452,-0.963035, + 0.266897,0.036452,-0.963035,0.266897,0.036452,-0.963035,0.266897,0.036452,-0.963035,-0.839163,-0.367472,-0.400962, + -0.839163,-0.367472,-0.400962,-0.839163,-0.367472,-0.400962,-0.839163,-0.367472,-0.400962,0.259627,0.054378,-0.964177, + 0.259627,0.054378,-0.964177,0.259627,0.054378,-0.964177,0.259627,0.054378,-0.964177,0.893606,0.378490,0.241273, + 0.893606,0.378490,0.241273,0.893606,0.378490,0.241273,0.893606,0.378490,0.241273,0.893087,0.378191,0.243652, + 0.893087,0.378191,0.243652,0.893087,0.378191,0.243652,0.893087,0.378191,0.243652,0.893090,0.378191,0.243644, + 0.893090,0.378191,0.243644,0.893090,0.378191,0.243644,0.893090,0.378191,0.243644,0.893088,0.378191,0.243650, + 0.893088,0.378191,0.243650,0.893088,0.378191,0.243650,0.893088,0.378191,0.243650,0.887880,0.376857,0.263909, + 0.887880,0.376857,0.263909,0.887880,0.376857,0.263909,0.887880,0.376857,0.263909,0.885102,0.376128,0.274085, + 0.885102,0.376128,0.274085,0.885102,0.376128,0.274085,0.885102,0.376128,0.274085,0.885167,0.376145,0.273850, + 0.885167,0.376145,0.273850,0.885167,0.376145,0.273850,0.885167,0.376145,0.273850,-0.880493,-0.374879,-0.290169, + -0.880493,-0.374879,-0.290169,-0.880493,-0.374879,-0.290169,-0.880493,-0.374879,-0.290169,-0.880102,-0.374763,-0.291501, + -0.880102,-0.374763,-0.291501,-0.880102,-0.374763,-0.291501,-0.880102,-0.374763,-0.291501,-0.894816,-0.378618,-0.236542, + -0.894816,-0.378618,-0.236542,-0.894816,-0.378618,-0.236542,-0.894816,-0.378618,-0.236542,-0.892682,-0.378084,-0.245300, + -0.892682,-0.378084,-0.245300,-0.892682,-0.378084,-0.245300,-0.892682,-0.378084,-0.245300,0.254839,0.066047,-0.964725, + 0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254839,0.066047,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.381010,-0.923815,0.037376, + 0.381010,-0.923815,0.037376,0.381010,-0.923815,0.037376,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,-0.381019,0.923809,-0.037447,-0.381019,0.923809,-0.037447, + -0.381019,0.923809,-0.037447,0.380987,-0.923822,0.037448,0.380987,-0.923822,0.037448,0.380987,-0.923822,0.037448, + -0.888757,-0.377094,-0.260595,-0.888757,-0.377094,-0.260595,-0.888757,-0.377094,-0.260595,0.888759,0.377100,0.260582, + 0.888759,0.377100,0.260582,0.888759,0.377100,0.260582,0.458815,0.224032,0.859825,0.458815,0.224032,0.859825, + 0.458815,0.224032,0.859825,0.458815,0.224032,0.859825,-0.752550,-0.286358,0.593015,-0.752550,-0.286358,0.593015, + -0.752550,-0.286358,0.593015,-0.752550,-0.286358,0.593015,0.380993,-0.923821,0.037411,0.380993,-0.923821,0.037411, + 0.380993,-0.923821,0.037411,-0.380992,0.923821,-0.037407,-0.380992,0.923821,-0.037407,-0.380992,0.923821,-0.037407, + 0.263629,0.044558,-0.963595,0.263629,0.044558,-0.963595,0.263629,0.044558,-0.963595,0.263629,0.044558,-0.963595, + 0.380982,-0.923826,0.037401,0.380982,-0.923826,0.037401,0.380982,-0.923826,0.037401,-0.411994,0.906368,0.093581, + -0.411994,0.906368,0.093581,-0.411994,0.906368,0.093581,0.888762,0.377104,0.260566,0.888762,0.377104,0.260566, + 0.888762,0.377104,0.260566,-0.071624,0.675775,-0.733620,-0.071624,0.675775,-0.733620,-0.071624,0.675775,-0.733620, + -0.071624,0.675775,-0.733620,-0.888778,-0.377087,-0.260536,-0.888778,-0.377087,-0.260536,-0.888778,-0.377087,-0.260536, + -0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725,-0.254841,-0.066042,0.964725, + -0.371320,0.925631,-0.073000,-0.371320,0.925631,-0.073000,-0.371320,0.925631,-0.073000,-0.371320,0.925631,-0.073000, + 0.891649,0.377835,0.249406,0.891649,0.377835,0.249406,0.891649,0.377835,0.249406,0.891649,0.377835,0.249406, + -0.316530,-0.942272,-0.109233,-0.316530,-0.942272,-0.109233,-0.316530,-0.942272,-0.109233,-0.316530,-0.942272,-0.109233, + 0.883991,0.375544,0.278436,0.883991,0.375544,0.278436,0.883991,0.375544,0.278436,0.883991,0.375544,0.278436, + -0.242688,-0.961781,-0.126811,-0.242688,-0.961781,-0.126811,-0.242688,-0.961781,-0.126811,-0.242688,-0.961781,-0.126811, + -0.860241,0.472097,-0.192640,-0.860241,0.472097,-0.192640,-0.860241,0.472097,-0.192640,-0.860241,0.472097,-0.192640, + 0.385570,-0.922464,0.019884,0.385570,-0.922464,0.019884,0.385570,-0.922464,0.019884,0.385570,-0.922464,0.019884, + 0.241047,0.961367,0.132928,0.241047,0.961367,0.132928,0.241047,0.961367,0.132928,0.241047,0.961367,0.132928, + 0.247383,0.084012,-0.965269,0.247383,0.084012,-0.965269,0.247383,0.084012,-0.965269,0.247383,0.084012,-0.965269, + 0.631708,0.277986,0.723649,0.631708,0.277986,0.723649,0.631708,0.277986,0.723649,0.631708,0.277986,0.723649, + 0.887180,0.380701,0.260726,0.887180,0.380701,0.260726,0.887180,0.380701,0.260726,0.887180,0.380701,0.260726, + 0.255114,0.065382,-0.964698,0.255114,0.065382,-0.964698,0.255114,0.065382,-0.964698,0.255114,0.065382,-0.964698, + -0.864758,-0.343608,0.366235,-0.864758,-0.343608,0.366235,-0.864758,-0.343608,0.366235,-0.864758,-0.343608,0.366235, + 0.254847,0.066045,-0.964723,0.254847,0.066045,-0.964723,0.254847,0.066045,-0.964723,0.254847,0.066045,-0.964723, + 0.963386,-0.103300,0.247420,0.963386,-0.103300,0.247420,0.963386,-0.103300,0.247420,0.963386,-0.103300,0.247420, + 0.963393,-0.103290,0.247398,0.963393,-0.103290,0.247398,0.963393,-0.103290,0.247398,0.963393,-0.103290,0.247398, + -0.963385,0.103293,-0.247426,-0.963385,0.103293,-0.247426,-0.963385,0.103293,-0.247426,-0.963385,0.103293,-0.247426, + -0.083307,-0.992458,-0.089930,-0.083307,-0.992458,-0.089930,-0.083307,-0.992458,-0.089930,-0.083307,-0.992458,-0.089930, + 0.968964,-0.096435,0.227616,0.968964,-0.096435,0.227616,0.968964,-0.096435,0.227616,0.968964,-0.096435,0.227616, + -0.083307,-0.992456,-0.089952,-0.083307,-0.992456,-0.089952,-0.083307,-0.992456,-0.089952,-0.083307,-0.992456,-0.089952, + -0.254846,-0.066048,0.964723,-0.254846,-0.066048,0.964723,-0.254846,-0.066048,0.964723,-0.254846,-0.066048,0.964723, + 0.264398,0.212919,-0.940616,0.264398,0.212919,-0.940616,0.264398,0.212919,-0.940616,0.264398,0.212919,-0.940616, + -0.087621,-0.993433,-0.073578,-0.087621,-0.993433,-0.073578,-0.087621,-0.993433,-0.073578,-0.087621,-0.993433,-0.073578, + 0.963388,-0.103292,0.247417,0.963388,-0.103292,0.247417,0.963388,-0.103292,0.247417,0.963388,-0.103292,0.247417, + -0.010790,-0.937004,-0.349152,-0.010790,-0.937004,-0.349152,-0.010790,-0.937004,-0.349152,-0.010790,-0.937004,-0.349152, + -0.542800,0.832299,-0.112460,-0.542800,0.832299,-0.112460,-0.542800,0.832299,-0.112460,-0.542800,0.832299,-0.112460, + 0.202733,0.049245,-0.977995,0.202733,0.049245,-0.977995,0.202733,0.049245,-0.977995,0.202733,0.049245,-0.977995, + 0.135987,-0.607055,-0.782938,0.135987,-0.607055,-0.782938,0.135987,-0.607055,-0.782938,0.135987,-0.607055,-0.782938, + -0.083317,-0.992455,-0.089952,-0.083317,-0.992455,-0.089952,-0.083317,-0.992455,-0.089952,-0.083317,-0.992455,-0.089952, + 0.988492,-0.114231,0.099173,0.988492,-0.114231,0.099173,0.988492,-0.114231,0.099173,0.988492,-0.114231,0.099173, + 0.254132,0.057692,-0.965447,0.254132,0.057692,-0.965447,0.254132,0.057692,-0.965447,0.254132,0.057692,-0.965447, + -0.083304,-0.992458,-0.089935,-0.083304,-0.992458,-0.089935,-0.083304,-0.992458,-0.089935,-0.083304,-0.992458,-0.089935, + -0.074312,-0.909058,-0.409990,-0.074312,-0.909058,-0.409990,-0.074312,-0.909058,-0.409990,-0.074312,-0.909058,-0.409990, + 0.122468,-0.954470,-0.272008,0.122468,-0.954470,-0.272008,0.122468,-0.954470,-0.272008,0.122468,-0.954470,-0.272008, + 0.990947,-0.080334,-0.107566,0.990947,-0.080334,-0.107566,0.990947,-0.080334,-0.107566,0.990947,-0.080334,-0.107566, + 0.068601,-0.077371,0.994639,0.068601,-0.077371,0.994639,0.068601,-0.077371,0.994639,0.068601,-0.077371,0.994639, + -0.842569,-0.002548,0.538582,-0.842569,-0.002548,0.538582,-0.842569,-0.002548,0.538582,-0.842569,-0.002548,0.538582, + -0.053572,-0.995172,-0.082232,-0.053572,-0.995172,-0.082232,-0.053572,-0.995172,-0.082232,-0.053572,-0.995172,-0.082232, + 0.973006,-0.090818,0.212159,0.973006,-0.090818,0.212159,0.973006,-0.090818,0.212159,0.973006,-0.090818,0.212159, + -0.060726,0.076712,-0.995202,-0.060726,0.076712,-0.995202,-0.060726,0.076712,-0.995202,-0.060726,0.076712,-0.995202, + -0.123509,-0.982496,-0.139451,-0.123509,-0.982496,-0.139451,-0.123509,-0.982496,-0.139451,-0.123509,-0.982496,-0.139451, + 0.958577,-0.104479,0.264980,0.958577,-0.104479,0.264980,0.958577,-0.104479,0.264980,0.958577,-0.104479,0.264980, + -0.083092,-0.986955,-0.137894,-0.083092,-0.986955,-0.137894,-0.083092,-0.986955,-0.137894,-0.085569,-0.988125,-0.127623, + -0.085569,-0.988125,-0.127623,-0.085569,-0.988125,-0.127623,-0.085569,-0.988125,-0.127623,0.972171,-0.100788,0.211486, + 0.972171,-0.100788,0.211486,0.972171,-0.100788,0.211486,0.972171,-0.100788,0.211486,-0.076769,-0.990447,-0.114548, + -0.076769,-0.990447,-0.114548,-0.076769,-0.990447,-0.114548,-0.076769,-0.990447,-0.114548,-0.076770,-0.990445,-0.114560, + -0.076770,-0.990445,-0.114560,-0.076770,-0.990445,-0.114560,-0.076770,-0.990445,-0.114560,-0.073874,-0.989354,-0.125384, + -0.073874,-0.989354,-0.125384,-0.073874,-0.989354,-0.125384,-0.073874,-0.989354,-0.125384,-0.958645,0.104199,-0.264844, + -0.958645,0.104199,-0.264844,-0.958645,0.104199,-0.264844,-0.958645,0.104199,-0.264844,0.078662,0.991094,0.107445, + 0.078662,0.991094,0.107445,0.078662,0.991094,0.107445,0.078662,0.991094,0.107445,0.958639,-0.104229,0.264853, + 0.958639,-0.104229,0.264853,0.958639,-0.104229,0.264853,0.958639,-0.104229,0.264853,-0.078663,-0.991093,-0.107459, + -0.078663,-0.991093,-0.107459,-0.078663,-0.991093,-0.107459,-0.078663,-0.991093,-0.107459,-0.078664,-0.991095,-0.107441, + -0.078664,-0.991095,-0.107441,-0.078664,-0.991095,-0.107441,-0.078664,-0.991095,-0.107441,-0.078661,-0.991094,-0.107445, + -0.078661,-0.991094,-0.107445,-0.078661,-0.991094,-0.107445,-0.078661,-0.991094,-0.107445,-0.078669,-0.991093,-0.107450, + -0.078669,-0.991093,-0.107450,-0.078669,-0.991093,-0.107450,-0.078669,-0.991093,-0.107450,0.965156,-0.102838,0.240622, + 0.965156,-0.102838,0.240622,0.965156,-0.102838,0.240622,0.965156,-0.102838,0.240622,0.971843,-0.100881,0.212941, + 0.971843,-0.100881,0.212941,0.971843,-0.100881,0.212941,0.971843,-0.100881,0.212941,0.960390,-0.104054,0.258502, + 0.960390,-0.104054,0.258502,0.960390,-0.104054,0.258502,0.960390,-0.104054,0.258502,-0.092937,-0.994251,-0.053171, + -0.092937,-0.994251,-0.053171,-0.092937,-0.994251,-0.053171,-0.092937,-0.994251,-0.053171,0.972418,-0.100700,0.210389, + 0.972418,-0.100700,0.210389,0.972418,-0.100700,0.210389,0.972418,-0.100700,0.210389,-0.972415,0.100724,-0.210388, + -0.972415,0.100724,-0.210388,-0.972415,0.100724,-0.210388,-0.972415,0.100724,-0.210388,0.958600,-0.104690,0.264814, + 0.958600,-0.104690,0.264814,0.958600,-0.104690,0.264814,0.958600,-0.104690,0.264814,-0.087623,-0.993433,-0.073575, + -0.087623,-0.993433,-0.073575,-0.087623,-0.993433,-0.073575,-0.087623,-0.993433,-0.073575,-0.543878,0.832122,-0.108489, + -0.543878,0.832122,-0.108489,-0.543878,0.832122,-0.108489,-0.543878,0.832122,-0.108489,0.681018,0.700213,0.214280, + 0.681018,0.700213,0.214280,0.681018,0.700213,0.214280,0.681018,0.700213,0.214280,-0.963390,0.103255,-0.247423, + -0.963390,0.103255,-0.247423,-0.963390,0.103255,-0.247423,-0.963390,0.103255,-0.247423,-0.963387,0.103311,-0.247413, + -0.963387,0.103311,-0.247413,-0.963387,0.103311,-0.247413,-0.963387,0.103311,-0.247413,-0.066541,-0.986054,-0.152547, + -0.066541,-0.986054,-0.152547,-0.066541,-0.986054,-0.152547,-0.066541,-0.986054,-0.152547,-0.084791,-0.992825,-0.084311, + -0.084791,-0.992825,-0.084311,-0.084791,-0.992825,-0.084311,-0.084791,-0.992825,-0.084311,-0.969738,0.101526,-0.222038, + -0.969738,0.101526,-0.222038,-0.969738,0.101526,-0.222038,-0.969738,0.101526,-0.222038,-0.083307,-0.992455,-0.089960, + -0.083307,-0.992455,-0.089960,-0.083307,-0.992455,-0.089960,-0.083307,-0.992455,-0.089960,0.251572,0.066367,-0.965561, + 0.251572,0.066367,-0.965561,0.251572,0.066367,-0.965561,0.251572,0.066367,-0.965561,-0.258250,-0.065679,0.963843, + -0.258250,-0.065679,0.963843,-0.258250,-0.065679,0.963843,-0.258250,-0.065679,0.963843,-0.083303,-0.992456,-0.089950, + -0.083303,-0.992456,-0.089950,-0.083303,-0.992456,-0.089950,-0.083303,-0.992456,-0.089950,-0.083306,-0.992455,-0.089957, + -0.083306,-0.992455,-0.089957,-0.083306,-0.992455,-0.089957,-0.083306,-0.992455,-0.089957,-0.083315,-0.992455,-0.089949, + -0.083315,-0.992455,-0.089949,-0.083315,-0.992455,-0.089949,-0.083315,-0.992455,-0.089949,0.956407,-0.105069,0.272483, + 0.956407,-0.105069,0.272483,0.956407,-0.105069,0.272483,0.956407,-0.105069,0.272483,-0.083307,-0.992456,-0.089945, + -0.083307,-0.992456,-0.089945,-0.083307,-0.992456,-0.089945,-0.083307,-0.992456,-0.089945,-0.083342,-0.992454,-0.089942, + -0.083342,-0.992454,-0.089942,-0.083342,-0.992454,-0.089942,-0.083342,-0.992454,-0.089942,-0.083314,-0.992460,-0.089897, + -0.083314,-0.992460,-0.089897,-0.083314,-0.992460,-0.089897,-0.083314,-0.992460,-0.089897,-0.950036,0.106323,-0.293475, + -0.950036,0.106323,-0.293475,-0.950036,0.106323,-0.293475,-0.950036,0.106323,-0.293475,0.947374,-0.106840,0.301773, + 0.947374,-0.106840,0.301773,0.947374,-0.106840,0.301773,0.947374,-0.106840,0.301773,-0.288322,-0.946054,-0.147828, + -0.288322,-0.946054,-0.147828,-0.288322,-0.946054,-0.147828,-0.288322,-0.946054,-0.147828,-0.968741,0.101815,-0.226218, + -0.968741,0.101815,-0.226218,-0.968741,0.101815,-0.226218,-0.968741,0.101815,-0.226218,0.967927,-0.102123,0.229538, + 0.967927,-0.102123,0.229538,0.967927,-0.102123,0.229538,0.967927,-0.102123,0.229538,0.127292,-0.991288,-0.033823, + 0.127292,-0.991288,-0.033823,0.127292,-0.991288,-0.033823,0.127292,-0.991288,-0.033823,0.254848,0.066054,-0.964722, + 0.254848,0.066054,-0.964722,0.254848,0.066054,-0.964722,0.254848,0.066054,-0.964722,-0.173709,-0.943372,0.282620, + -0.173709,-0.943372,0.282620,-0.173709,-0.943372,0.282620,-0.173709,-0.943372,0.282620,0.273606,0.064014,-0.959709, + 0.273606,0.064014,-0.959709,0.273606,0.064014,-0.959709,0.273606,0.064014,-0.959709,0.027968,-0.894152,-0.446890, + 0.027968,-0.894152,-0.446890,0.027968,-0.894152,-0.446890,0.027968,-0.894152,-0.446890,-0.083305,-0.992458,-0.089932, + -0.083305,-0.992458,-0.089932,-0.083305,-0.992458,-0.089932,-0.083305,-0.992458,-0.089932,-0.083302,-0.992458,-0.089930, + -0.083302,-0.992458,-0.089930,-0.083302,-0.992458,-0.089930,-0.083302,-0.992458,-0.089930,-0.083304,-0.992457,-0.089945, + -0.083304,-0.992457,-0.089945,-0.083304,-0.992457,-0.089945,-0.083304,-0.992457,-0.089945,-0.955956,0.105040,-0.274071, + -0.955956,0.105040,-0.274071,-0.955956,0.105040,-0.274071,-0.955956,0.105040,-0.274071,0.954488,-0.105426,0.278995, + 0.954488,-0.105426,0.278995,0.954488,-0.105426,0.278995,0.954488,-0.105426,0.278995,-0.230997,-0.964643,-0.126901, + -0.230997,-0.964643,-0.126901,-0.230997,-0.964643,-0.126901,-0.230997,-0.964643,-0.126901,-0.977712,0.098866,-0.185214, + -0.977712,0.098866,-0.185214,-0.977712,0.098866,-0.185214,-0.977712,0.098866,-0.185214,0.975737,-0.099564,0.195000, + 0.975737,-0.099564,0.195000,0.975737,-0.099564,0.195000,0.975737,-0.099564,0.195000,0.067416,-0.996219,-0.054798, + 0.067416,-0.996219,-0.054798,0.067416,-0.996219,-0.054798,0.067416,-0.996219,-0.054798,0.254836,0.066042,-0.964727, + 0.254836,0.066042,-0.964727,0.254836,0.066042,-0.964727,0.254836,0.066042,-0.964727,-0.150655,-0.971899,0.180875, + -0.150655,-0.971899,0.180875,-0.150655,-0.971899,0.180875,-0.150655,-0.971899,0.180875,0.254856,0.066055,-0.964720, + 0.254856,0.066055,-0.964720,0.254856,0.066055,-0.964720,0.254856,0.066055,-0.964720,-0.009428,-0.935275,-0.353797, + -0.009428,-0.935275,-0.353797,-0.009428,-0.935275,-0.353797,-0.009428,-0.935275,-0.353797,-0.083308,-0.992458,-0.089932, + -0.083308,-0.992458,-0.089932,-0.083308,-0.992458,-0.089932,-0.083308,-0.992458,-0.089932,-0.083304,-0.992457,-0.089946, + -0.083304,-0.992457,-0.089946,-0.083304,-0.992457,-0.089946,-0.083304,-0.992457,-0.089946,-0.083306,-0.992456,-0.089951, + -0.083306,-0.992456,-0.089951,-0.083306,-0.992456,-0.089951,-0.083306,-0.992456,-0.089951,0.975503,-0.097284,0.197306, + 0.975503,-0.097284,0.197306,0.975503,-0.097284,0.197306,0.975503,-0.097284,0.197306,-0.961538,0.103911,-0.254260, + -0.961538,0.103911,-0.254260,-0.961538,0.103911,-0.254260,-0.961538,0.103911,-0.254260,-0.085321,-0.992947,-0.082317, + -0.085321,-0.992947,-0.082317,-0.085321,-0.992947,-0.082317,0.974357,-0.100230,0.201453,0.974357,-0.100230,0.201453, + 0.974357,-0.100230,0.201453,0.974357,-0.100230,0.201453,0.259614,0.112765,-0.959106,0.259614,0.112765,-0.959106, + 0.259614,0.112765,-0.959106,0.259614,0.112765,-0.959106,0.212433,0.066681,-0.974898,0.212433,0.066681,-0.974898, + 0.212433,0.066681,-0.974898,0.212433,0.066681,-0.974898,-0.956360,0.104902,-0.272712,-0.956360,0.104902,-0.272712, + -0.956360,0.104902,-0.272712,-0.956360,0.104902,-0.272712,-0.085180,-0.992977,-0.082100,-0.085180,-0.992977,-0.082100, + -0.085180,-0.992977,-0.082100,-0.081925,-0.991190,-0.104072,-0.081925,-0.991190,-0.104072,-0.081925,-0.991190,-0.104072, + -0.081925,-0.991190,-0.104072,-0.962375,0.103431,-0.251271,-0.962375,0.103431,-0.251271,-0.962375,0.103431,-0.251271, + -0.962375,0.103431,-0.251271,0.959207,-0.102633,0.263415,0.959207,-0.102633,0.263415,0.959207,-0.102633,0.263415, + 0.959207,-0.102633,0.263415,0.168491,0.097361,-0.980883,0.168491,0.097361,-0.980883,0.168491,0.097361,-0.980883, + 0.168491,0.097361,-0.980883,-0.022562,-0.995607,-0.090870,-0.022562,-0.995607,-0.090870,-0.022562,-0.995607,-0.090870, + -0.022562,-0.995607,-0.090870,0.967963,-0.100368,0.230162,0.967963,-0.100368,0.230162,0.967963,-0.100368,0.230162, + -0.364161,-0.916837,-0.163699,-0.364161,-0.916837,-0.163699,-0.364161,-0.916837,-0.163699,-0.364161,-0.916837,-0.163699, + 0.178234,-0.430864,-0.884641,0.178234,-0.430864,-0.884641,0.178234,-0.430864,-0.884641,0.178234,-0.430864,-0.884641, + 0.205999,-0.978435,-0.015163,0.205999,-0.978435,-0.015163,0.205999,-0.978435,-0.015163,0.205999,-0.978435,-0.015163, + -0.158463,-0.963746,0.214668,-0.158463,-0.963746,0.214668,-0.158463,-0.963746,0.214668,-0.158463,-0.963746,0.214668, + -0.963380,0.103320,-0.247433,-0.963380,0.103320,-0.247433,-0.963380,0.103320,-0.247433,-0.682950,-0.700895,-0.205730, + -0.682950,-0.700895,-0.205730,-0.682950,-0.700895,-0.205730,-0.682950,-0.700895,-0.205730,-0.279851,-0.846278,0.453317, + -0.279851,-0.846278,0.453317,-0.279851,-0.846278,0.453317,-0.279851,-0.846278,0.453317,-0.083307,-0.992456,-0.089950, + -0.083307,-0.992456,-0.089950,-0.083307,-0.992456,-0.089950,-0.083307,-0.992456,-0.089950,0.963388,-0.103301,0.247410, + 0.963388,-0.103301,0.247410,0.963388,-0.103301,0.247410,-0.963398,0.103242,-0.247399,-0.963398,0.103242,-0.247399, + -0.963398,0.103242,-0.247399,0.963390,-0.103294,0.247407,0.963390,-0.103294,0.247407,0.963390,-0.103294,0.247407, + 0.155288,-0.517923,-0.841215,0.155288,-0.517923,-0.841215,0.155288,-0.517923,-0.841215,0.155288,-0.517923,-0.841215, + -0.963388,0.103306,-0.247408,-0.963388,0.103306,-0.247408,-0.963388,0.103306,-0.247408,-0.243276,-0.828611,0.504202, + -0.243276,-0.828611,0.504202,-0.243276,-0.828611,0.504202,-0.243276,-0.828611,0.504202,0.234348,-0.812714,-0.533457, + 0.234348,-0.812714,-0.533457,0.234348,-0.812714,-0.533457,0.234348,-0.812714,-0.533457,0.981062,-0.129121,0.144378, + 0.981062,-0.129121,0.144378,0.981062,-0.129121,0.144378,0.963535,-0.105967,0.245707,0.963535,-0.105967,0.245707, + 0.963535,-0.105967,0.245707,0.963535,-0.105967,0.245707,0.961550,-0.084055,0.261451,0.961550,-0.084055,0.261451, + 0.961550,-0.084055,0.261451,0.961550,-0.084055,0.261451,0.969201,-0.081940,0.232241,0.969201,-0.081940,0.232241, + 0.969201,-0.081940,0.232241,0.969201,-0.081940,0.232241,0.964254,-0.092274,0.248395,0.964254,-0.092274,0.248395, + 0.964254,-0.092274,0.248395,0.964254,-0.092274,0.248395,0.965801,-0.102658,0.238097,0.965801,-0.102658,0.238097, + 0.965801,-0.102658,0.238097,0.965801,-0.102658,0.238097,0.992397,-0.062619,-0.105956,0.992397,-0.062619,-0.105956, + 0.992397,-0.062619,-0.105956,0.992397,-0.062619,-0.105956,0.066382,-0.126788,0.989706,0.066382,-0.126788,0.989706, + 0.066382,-0.126788,0.989706,0.066382,-0.126788,0.989706,-0.837758,0.035353,0.544896,-0.837758,0.035353,0.544896, + -0.837758,0.035353,0.544896,-0.837758,0.035353,0.544896,-0.337880,0.097015,-0.936176,-0.337880,0.097015,-0.936176, + -0.337880,0.097015,-0.936176,-0.337880,0.097015,-0.936176,-0.056231,0.121194,-0.991035,-0.056231,0.121194,-0.991035, + -0.056231,0.121194,-0.991035,-0.056231,0.121194,-0.991035,0.849358,-0.037705,-0.526468,0.849358,-0.037705,-0.526468, + 0.849358,-0.037705,-0.526468,0.849358,-0.037705,-0.526468,0.963388,-0.103293,0.247414,0.963388,-0.103293,0.247414, + 0.963388,-0.103293,0.247414,0.963388,-0.103293,0.247414,0.180948,0.105488,-0.977819,0.180948,0.105488,-0.977819, + 0.180948,0.105488,-0.977819,0.180948,0.105488,-0.977819,0.990770,-0.089999,0.101364,0.990770,-0.089999,0.101364, + 0.990770,-0.089999,0.101364,0.990770,-0.089999,0.101364,0.970776,-0.101213,0.217599,0.970776,-0.101213,0.217599, + 0.970776,-0.101213,0.217599,0.970776,-0.101213,0.217599,0.971089,-0.101111,0.216247,0.971089,-0.101111,0.216247, + 0.971089,-0.101111,0.216247,0.971089,-0.101111,0.216247,0.956759,-0.104898,0.271311,0.956759,-0.104898,0.271311, + 0.956759,-0.104898,0.271311,0.956759,-0.104898,0.271311,0.959236,-0.104324,0.262645,0.959236,-0.104324,0.262645, + 0.959236,-0.104324,0.262645,0.959236,-0.104324,0.262645,0.970606,-0.043855,0.236644,0.970606,-0.043855,0.236644, + 0.970606,-0.043855,0.236644,0.970606,-0.043855,0.236644,0.224586,-0.021666,-0.974214,0.224586,-0.021666,-0.974214, + 0.224586,-0.021666,-0.974214,0.224586,-0.021666,-0.974214,-0.082348,-0.992179,-0.093811,-0.082348,-0.992179,-0.093811, + -0.082348,-0.992179,-0.093811,-0.082348,-0.992179,-0.093811,0.966682,-0.104626,0.233621,0.966682,-0.104626,0.233621, + 0.966682,-0.104626,0.233621,0.966682,-0.104626,0.233621,0.961314,-0.103641,0.255214,0.961314,-0.103641,0.255214, + 0.961314,-0.103641,0.255214,-0.076469,-0.990388,-0.115256,-0.076469,-0.990388,-0.115256,-0.076469,-0.990388,-0.115256, + -0.076469,-0.990388,-0.115256,0.254656,0.022477,-0.966770,0.254656,0.022477,-0.966770,0.254656,0.022477,-0.966770, + 0.254656,0.022477,-0.966770,0.209092,0.072030,-0.975240,0.209092,0.072030,-0.975240,0.209092,0.072030,-0.975240, + 0.209092,0.072030,-0.975240,0.961340,-0.103800,0.255050,0.961340,-0.103800,0.255050,0.961340,-0.103800,0.255050, + -0.081679,-0.991941,-0.096854,-0.081679,-0.991941,-0.096854,-0.081679,-0.991941,-0.096854,-0.081679,-0.991941,-0.096854, + -0.022562,-0.995607,-0.090870,-0.022562,-0.995607,-0.090870,-0.022562,-0.995607,-0.090870,-0.022562,-0.995607,-0.090870, + -0.292216,-0.084726,0.952592,-0.292216,-0.084726,0.952592,-0.292216,-0.084726,0.952592,-0.292216,-0.084726,0.952592, + 0.168491,0.097371,-0.980882,0.168491,0.097371,-0.980882,0.168491,0.097371,-0.980882,0.168491,0.097371,-0.980882, + 0.959215,-0.102568,0.263413,0.959215,-0.102568,0.263413,0.959215,-0.102568,0.263413,0.959215,-0.102568,0.263413, + -0.962362,0.103612,-0.251246,-0.962362,0.103612,-0.251246,-0.962362,0.103612,-0.251246,-0.962362,0.103612,-0.251246, + -0.081924,-0.991191,-0.104066,-0.081924,-0.991191,-0.104066,-0.081924,-0.991191,-0.104066,-0.081924,-0.991191,-0.104066, + -0.085183,-0.992976,-0.082109,-0.085183,-0.992976,-0.082109,-0.085183,-0.992976,-0.082109,-0.956362,0.104896,-0.272708, + -0.956362,0.104896,-0.272708,-0.956362,0.104896,-0.272708,-0.956362,0.104896,-0.272708,0.212432,0.066678,-0.974898, + 0.212432,0.066678,-0.974898,0.212432,0.066678,-0.974898,0.212432,0.066678,-0.974898,0.259615,0.112765,-0.959106, + 0.259615,0.112765,-0.959106,0.259615,0.112765,-0.959106,0.259615,0.112765,-0.959106,0.974358,-0.100214,0.201452, + 0.974358,-0.100214,0.201452,0.974358,-0.100214,0.201452,0.974358,-0.100214,0.201452,-0.085321,-0.992948,-0.082308, + -0.085321,-0.992948,-0.082308,-0.085321,-0.992948,-0.082308,-0.297488,-0.092331,0.950251,-0.297488,-0.092331,0.950251, + -0.297488,-0.092331,0.950251,-0.297488,-0.092331,0.950251,-0.961525,0.104008,-0.254267,-0.961525,0.104008,-0.254267, + -0.961525,0.104008,-0.254267,-0.961525,0.104008,-0.254267,0.975506,-0.097239,0.197316,0.975506,-0.097239,0.197316, + 0.975506,-0.097239,0.197316,0.975506,-0.097239,0.197316,-0.083304,-0.992457,-0.089945,-0.083304,-0.992457,-0.089945, + -0.083304,-0.992457,-0.089945,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725,0.254841,0.066044,-0.964725, + 0.254841,0.066044,-0.964725,-0.083311,-0.992453,-0.089977,-0.083311,-0.992453,-0.089977,-0.083311,-0.992453,-0.089977, + 0.963386,-0.103306,0.247418,0.963386,-0.103306,0.247418,0.963386,-0.103306,0.247418,-0.083301,-0.992455,-0.089971, + -0.083301,-0.992455,-0.089971,-0.083301,-0.992455,-0.089971,0.256709,0.089094,-0.962374,0.256709,0.089094,-0.962374, + 0.256709,0.089094,-0.962374,0.256709,0.089094,-0.962374,0.958411,-0.104256,0.265669,0.958411,-0.104256,0.265669, + 0.958411,-0.104256,0.265669,0.958411,-0.104256,0.265669,-0.117042,-0.992260,0.041484,-0.117042,-0.992260,0.041484, + -0.117042,-0.992260,0.041484,-0.083306,-0.992457,-0.089939,-0.083306,-0.992457,-0.089939,-0.083306,-0.992457,-0.089939, + -0.083306,-0.992457,-0.089939,-0.963382,0.103339,-0.247420,-0.963382,0.103339,-0.247420,-0.963382,0.103339,-0.247420, + 0.963388,-0.103296,0.247412,0.963388,-0.103296,0.247412,0.963388,-0.103296,0.247412,0.546280,0.824802,-0.145873, + 0.546280,0.824802,-0.145873,0.546280,0.824802,-0.145873,0.546280,0.824802,-0.145873,0.010219,0.863600,-0.504074, + 0.010219,0.863600,-0.504074,0.010219,0.863600,-0.504074,0.010219,0.863600,-0.504074,-0.073846,-0.989339,-0.125517, + -0.073846,-0.989339,-0.125517,-0.073846,-0.989339,-0.125517,-0.073846,-0.989339,-0.125517,-0.960371,0.104051,-0.258575, + -0.960371,0.104051,-0.258575,-0.960371,0.104051,-0.258575,-0.960371,0.104051,-0.258575,-0.967922,0.102345,-0.229460, + -0.967922,0.102345,-0.229460,-0.967922,0.102345,-0.229460,-0.967922,0.102345,-0.229460,-0.655762,-0.722430,-0.219249, + -0.655762,-0.722430,-0.219249,-0.655762,-0.722430,-0.219249,-0.655762,-0.722430,-0.219249,0.960148,-0.103934,0.259449, + 0.960148,-0.103934,0.259449,0.960148,-0.103934,0.259449,0.960148,-0.103934,0.259449,-0.087614,-0.993433,-0.073580, + -0.087614,-0.993433,-0.073580,-0.087614,-0.993433,-0.073580,-0.087614,-0.993433,-0.073580,-0.087615,-0.993433,-0.073584, + -0.087615,-0.993433,-0.073584,-0.087615,-0.993433,-0.073584,-0.087615,-0.993433,-0.073584,0.964455,-0.102969,0.243361, + 0.964455,-0.102969,0.243361,0.964455,-0.102969,0.243361,0.964455,-0.102969,0.243361,0.253168,0.046720,-0.966294, + 0.253168,0.046720,-0.966294,0.253168,0.046720,-0.966294,0.253168,0.046720,-0.966294,-0.083305,-0.992454,-0.089979, + -0.083305,-0.992454,-0.089979,-0.083305,-0.992454,-0.089979,-0.083305,-0.992454,-0.089979,0.254847,0.066046,-0.964723, + 0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723,0.254847,0.066046,-0.964723,0.025512,0.996859,0.074968, + 0.025512,0.996859,0.074968,0.025512,0.996859,0.074968,0.025512,0.996859,0.074968,-0.966644,0.043718,-0.252364, + -0.966644,0.043718,-0.252364,-0.966644,0.043718,-0.252364,-0.966644,0.043718,-0.252364,-0.025513,-0.996854,-0.075043, + -0.025513,-0.996854,-0.075043,-0.025513,-0.996854,-0.075043,-0.025513,-0.996854,-0.075043,-0.025504,-0.996856,-0.075024, + -0.025504,-0.996856,-0.075024,-0.025504,-0.996856,-0.075024,-0.025504,-0.996856,-0.075024,0.966646,-0.043720,0.252357, + 0.966646,-0.043720,0.252357,0.966646,-0.043720,0.252357,0.966646,-0.043720,0.252357,-0.021630,-0.995738,-0.089656, + -0.021630,-0.995738,-0.089656,-0.021630,-0.995738,-0.089656,-0.021630,-0.995738,-0.089656,0.966646,-0.043719,0.252357, + 0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357,-0.254838,-0.066046,0.964725, + -0.254838,-0.066046,0.964725,-0.254838,-0.066046,0.964725,-0.254838,-0.066046,0.964725,-0.986083,0.037837,-0.161892, + -0.986083,0.037837,-0.161892,-0.986083,0.037837,-0.161892,-0.986083,0.037837,-0.161892,0.108237,0.071814,-0.991528, + 0.108237,0.071814,-0.991528,0.108237,0.071814,-0.991528,0.108237,0.071814,-0.991528,0.962189,-0.044825,0.268670, + 0.962189,-0.044825,0.268670,0.962189,-0.044825,0.268670,0.962189,-0.044825,0.268670,0.999514,-0.024089,-0.019783, + 0.999514,-0.024089,-0.019783,0.999514,-0.024089,-0.019783,0.999514,-0.024089,-0.019783,-0.754818,-0.599370,-0.266468, + -0.754818,-0.599370,-0.266468,-0.754818,-0.599370,-0.266468,-0.754818,-0.599370,-0.266468,-0.966647,0.043718,-0.252352, + -0.966647,0.043718,-0.252352,-0.966647,0.043718,-0.252352,-0.966647,0.043718,-0.252352,-0.953683,0.046754,-0.297158, + -0.953683,0.046754,-0.297158,-0.953683,0.046754,-0.297158,-0.953683,0.046754,-0.297158,0.830605,0.020604,-0.556481, + 0.830605,0.020604,-0.556481,0.830605,0.020604,-0.556481,0.830605,0.020604,-0.556481,-0.469120,0.084891,-0.879045, + -0.469120,0.084891,-0.879045,-0.469120,0.084891,-0.879045,-0.469120,0.084891,-0.879045,0.262969,0.065681,-0.962566, + 0.262969,0.065681,-0.962566,0.262969,0.065681,-0.962566,0.262969,0.065681,-0.962566,-0.020662,-0.995331,-0.094280, + -0.020662,-0.995331,-0.094280,-0.020662,-0.995331,-0.094280,-0.020662,-0.995331,-0.094280,0.966644,-0.043720,0.252364, + 0.966644,-0.043720,0.252364,0.966644,-0.043720,0.252364,0.966644,-0.043720,0.252364,0.992392,-0.099307,-0.072781, + 0.992392,-0.099307,-0.072781,0.992392,-0.099307,-0.072781,0.992392,-0.099307,-0.072781,0.992033,0.122011,0.031380, + 0.992033,0.122011,0.031380,0.992033,0.122011,0.031380,0.992033,0.122011,0.031380,-0.181009,-0.725643,0.663836, + -0.181009,-0.725643,0.663836,-0.181009,-0.725643,0.663836,-0.181009,-0.725643,0.663836,0.170413,-0.509752,-0.843275, + 0.170413,-0.509752,-0.843275,0.170413,-0.509752,-0.843275,0.170413,-0.509752,-0.843275,0.966956,-0.012971,0.254613, + 0.966956,-0.012971,0.254613,0.966956,-0.012971,0.254613,0.966956,-0.012971,0.254613,0.251873,-0.249759,-0.934976, + 0.251873,-0.249759,-0.934976,0.251873,-0.249759,-0.934976,0.251873,-0.249759,-0.934976,0.973033,-0.092951,0.211108, + 0.973033,-0.092951,0.211108,0.973033,-0.092951,0.211108,0.973033,-0.092951,0.211108,-0.024269,-0.996522,-0.079720, + -0.024269,-0.996522,-0.079720,-0.024269,-0.996522,-0.079720,-0.024269,-0.996522,-0.079720,0.977102,-0.052772,0.206124, + 0.977102,-0.052772,0.206124,0.977102,-0.052772,0.206124,0.974832,-0.053217,0.216497,0.974832,-0.053217,0.216497, + 0.974832,-0.053217,0.216497,0.974832,-0.053217,0.216497,-0.773786,-0.603716,-0.191789,-0.773786,-0.603716,-0.191789, + -0.773786,-0.603716,-0.191789,-0.773786,-0.603716,-0.191789,0.034939,0.998622,0.039170,0.034939,0.998622,0.039170, + 0.034939,0.998622,0.039170,0.034939,0.998622,0.039170,0.972838,-0.041998,0.227645,0.972838,-0.041998,0.227645, + 0.972838,-0.041998,0.227645,0.972838,-0.041998,0.227645,0.972836,-0.041992,0.227656,0.972836,-0.041992,0.227656, + 0.972836,-0.041992,0.227656,0.972836,-0.041992,0.227656,0.975367,-0.041237,0.216700,0.975367,-0.041237,0.216700, + 0.975367,-0.041237,0.216700,0.975367,-0.041237,0.216700,-0.020639,-0.995513,-0.092347,-0.020639,-0.995513,-0.092347, + -0.020639,-0.995513,-0.092347,-0.020639,-0.995513,-0.092347,-0.971112,0.042501,-0.234810,-0.971112,0.042501,-0.234810, + -0.971112,0.042501,-0.234810,-0.971112,0.042501,-0.234810,0.020639,0.995512,0.092353,0.020639,0.995512,0.092353, + 0.020639,0.995512,0.092353,0.020639,0.995512,0.092353,0.971112,-0.042511,0.234807,0.971112,-0.042511,0.234807, + 0.971112,-0.042511,0.234807,0.971112,-0.042511,0.234807,0.971114,-0.042488,0.234804,0.971114,-0.042488,0.234804, + 0.971114,-0.042488,0.234804,0.971114,-0.042488,0.234804,0.971112,-0.042542,0.234801,0.971112,-0.042542,0.234801, + 0.971112,-0.042542,0.234801,0.971112,-0.042542,0.234801,0.971111,-0.042546,0.234805,0.971111,-0.042546,0.234805, + 0.971111,-0.042546,0.234805,0.971111,-0.042546,0.234805,-0.021043,-0.995547,-0.091889,-0.021043,-0.995547,-0.091889, + -0.021043,-0.995547,-0.091889,-0.021043,-0.995547,-0.091889,-0.021113,-0.995572,-0.091604,-0.021113,-0.995572,-0.091604, + -0.021113,-0.995572,-0.091604,-0.021113,-0.995572,-0.091604,-0.028582,-0.997576,-0.063444,-0.028582,-0.997576,-0.063444, + -0.028582,-0.997576,-0.063444,-0.028582,-0.997576,-0.063444,-0.027461,-0.997647,-0.062815,-0.027461,-0.997647,-0.062815, + -0.027461,-0.997647,-0.062815,-0.027461,-0.997647,-0.062815,0.020479,0.995362,0.093998,0.020479,0.995362,0.093998, + 0.020479,0.995362,0.093998,0.020479,0.995362,0.093998,0.956033,-0.046262,0.289586,0.956033,-0.046262,0.289586, + 0.956033,-0.046262,0.289586,0.956033,-0.046262,0.289586,-0.020480,-0.995363,-0.093989,-0.020480,-0.995363,-0.093989, + -0.020480,-0.995363,-0.093989,-0.020480,-0.995363,-0.093989,-0.956030,0.046234,-0.289600,-0.956030,0.046234,-0.289600, + -0.956030,0.046234,-0.289600,-0.956030,0.046234,-0.289600,-0.029985,-0.997923,-0.057011,-0.029985,-0.997923,-0.057011, + -0.029985,-0.997923,-0.057011,-0.029985,-0.997923,-0.057011,0.962184,-0.044849,0.268684,0.962184,-0.044849,0.268684, + 0.962184,-0.044849,0.268684,0.962184,-0.044849,0.268684,-0.755963,-0.599664,-0.262532,-0.755963,-0.599664,-0.262532, + -0.755963,-0.599664,-0.262532,-0.755963,-0.599664,-0.262532,-0.725643,0.669351,-0.159410,-0.725643,0.669351,-0.159410, + -0.725643,0.669351,-0.159410,-0.725643,0.669351,-0.159410,-0.025505,-0.996859,-0.074979,-0.025505,-0.996859,-0.074979, + -0.025505,-0.996859,-0.074979,-0.025505,-0.996859,-0.074979,-0.762230,0.624872,-0.168941,-0.762230,0.624872,-0.168941, + -0.762230,0.624872,-0.168941,-0.762230,0.624872,-0.168941,-0.025506,-0.996859,-0.074979,-0.025506,-0.996859,-0.074979, + -0.025506,-0.996859,-0.074979,-0.025506,-0.996859,-0.074979,0.981183,-0.039333,0.189029,0.981183,-0.039333,0.189029, + 0.981183,-0.039333,0.189029,0.981183,-0.039333,0.189029,0.965143,-0.044091,0.257982,0.965143,-0.044091,0.257982, + 0.965143,-0.044091,0.257982,0.965143,-0.044091,0.257982,0.966646,-0.043721,0.252357,0.966646,-0.043721,0.252357, + 0.966646,-0.043721,0.252357,0.966646,-0.043721,0.252357,0.966646,-0.043722,0.252358,0.966646,-0.043722,0.252358, + 0.966646,-0.043722,0.252358,0.966646,-0.043722,0.252358,0.966648,-0.043685,0.252357,0.966648,-0.043685,0.252357, + 0.966648,-0.043685,0.252357,0.966648,-0.043685,0.252357,0.966651,-0.043698,0.252343,0.966651,-0.043698,0.252343, + 0.966651,-0.043698,0.252343,0.966651,-0.043698,0.252343,0.966647,-0.043716,0.252356,0.966647,-0.043716,0.252356, + 0.966647,-0.043716,0.252356,0.966647,-0.043716,0.252356,0.966648,-0.043779,0.252338,0.966648,-0.043779,0.252338, + 0.966648,-0.043779,0.252338,0.966648,-0.043779,0.252338,0.966646,-0.043717,0.252356,0.966646,-0.043717,0.252356, + 0.966646,-0.043717,0.252356,0.966646,-0.043717,0.252356,-0.018471,-0.994643,-0.101709,-0.018471,-0.994643,-0.101709, + -0.018471,-0.994643,-0.101709,-0.018471,-0.994643,-0.101709,0.951097,-0.197009,0.237913,0.951097,-0.197009,0.237913, + 0.951097,-0.197009,0.237913,0.951097,-0.197009,0.237913,-0.041765,-0.999041,-0.013126,-0.041765,-0.999041,-0.013126, + -0.041765,-0.999041,-0.013126,-0.041765,-0.999041,-0.013126,0.960082,0.110878,0.256805,0.960082,0.110878,0.256805, + 0.960082,0.110878,0.256805,0.960082,0.110878,0.256805,0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725, + 0.254840,0.066046,-0.964725,0.254840,0.066046,-0.964725,0.858193,-0.060309,0.509772,0.858193,-0.060309,0.509772, + 0.858193,-0.060309,0.509772,0.858193,-0.060309,0.509772,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724, + 0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.999411,-0.023706,-0.024820,0.999411,-0.023706,-0.024820, + 0.999411,-0.023706,-0.024820,0.999411,-0.023706,-0.024820,0.966648,-0.043717,0.252348,0.966648,-0.043717,0.252348, + 0.966648,-0.043717,0.252348,0.966648,-0.043717,0.252348,0.966638,-0.043753,0.252380,0.966638,-0.043753,0.252380, + 0.966638,-0.043753,0.252380,0.966638,-0.043753,0.252380,0.966646,-0.043716,0.252356,0.966646,-0.043716,0.252356, + 0.966646,-0.043716,0.252356,0.966646,-0.043716,0.252356,0.964599,-0.044235,0.259985,0.964599,-0.044235,0.259985, + 0.964599,-0.044235,0.259985,0.257179,0.022514,-0.966102,0.257179,0.022514,-0.966102,0.257179,0.022514,-0.966102, + 0.257179,0.022514,-0.966102,-0.018701,-0.994783,-0.100289,-0.018701,-0.994783,-0.100289,-0.018701,-0.994783,-0.100289, + -0.018701,-0.994783,-0.100289,0.964562,-0.044060,0.260150,0.964562,-0.044060,0.260150,0.964562,-0.044060,0.260150, + 0.916720,-0.337167,0.214343,0.916720,-0.337167,0.214343,0.916720,-0.337167,0.214343,0.916720,-0.337167,0.214343, + 0.697655,0.033302,-0.715659,0.697655,0.033302,-0.715659,0.697655,0.033302,-0.715659,0.697655,0.033302,-0.715659, + 0.931583,0.253224,0.260827,0.931583,0.253224,0.260827,0.931583,0.253224,0.260827,0.931583,0.253224,0.260827, + 0.839376,-0.062097,0.539993,0.839376,-0.062097,0.539993,0.839376,-0.062097,0.539993,0.839376,-0.062097,0.539993, + -0.025491,-0.996862,-0.074943,-0.025491,-0.996862,-0.074943,-0.025491,-0.996862,-0.074943,-0.030289,-0.997922,-0.056864, + -0.030289,-0.997922,-0.056864,-0.030289,-0.997922,-0.056864,-0.030289,-0.997922,-0.056864,0.966646,-0.043719,0.252357, + 0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,-0.025519,-0.996860,-0.074958, + -0.025519,-0.996860,-0.074958,-0.025519,-0.996860,-0.074958,0.765561,0.023721,-0.642925,0.765561,0.023721,-0.642925, + 0.765561,0.023721,-0.642925,0.765561,0.023721,-0.642925,-0.025504,-0.996859,-0.074976,-0.025504,-0.996859,-0.074976, + -0.025504,-0.996859,-0.074976,-0.218852,-0.721836,0.656548,-0.218852,-0.721836,0.656548,-0.218852,-0.721836,0.656548, + -0.218852,-0.721836,0.656548,0.210932,-0.511719,-0.832857,0.210932,-0.511719,-0.832857,0.210932,-0.511719,-0.832857, + 0.210932,-0.511719,-0.832857,0.208511,-0.247027,-0.946309,0.208511,-0.247027,-0.946309,0.208511,-0.247027,-0.946309, + 0.208511,-0.247027,-0.946309,0.242629,0.066601,-0.967830,0.242629,0.066601,-0.967830,0.242629,0.066601,-0.967830, + 0.242629,0.066601,-0.967830,-0.020257,-0.995349,-0.094181,-0.020257,-0.995349,-0.094181,-0.020257,-0.995349,-0.094181, + -0.020257,-0.995349,-0.094181,-0.021039,-0.995546,-0.091895,-0.021039,-0.995546,-0.091895,-0.021039,-0.995546,-0.091895, + -0.021039,-0.995546,-0.091895,-0.021038,-0.995547,-0.091890,-0.021038,-0.995547,-0.091890,-0.021038,-0.995547,-0.091890, + -0.021038,-0.995547,-0.091890,-0.021039,-0.995548,-0.091882,-0.021039,-0.995548,-0.091882,-0.021039,-0.995548,-0.091882, + -0.021039,-0.995548,-0.091882,-0.026387,-0.997079,-0.071668,-0.026387,-0.997079,-0.071668,-0.026387,-0.997079,-0.071668, + -0.026387,-0.997079,-0.071668,-0.029089,-0.997686,-0.061458,-0.029089,-0.997686,-0.061458,-0.029089,-0.997686,-0.061458, + -0.029089,-0.997686,-0.061458,-0.029014,-0.997673,-0.061700,-0.029014,-0.997673,-0.061700,-0.029014,-0.997673,-0.061700, + -0.029014,-0.997673,-0.061700,0.964563,-0.044064,0.260148,0.964563,-0.044064,0.260148,0.964563,-0.044064,0.260148, + -0.018701,-0.994783,-0.100289,-0.018701,-0.994783,-0.100289,-0.018701,-0.994783,-0.100289,-0.018701,-0.994783,-0.100289, + 0.257180,0.022514,-0.966101,0.257180,0.022514,-0.966101,0.257180,0.022514,-0.966101,0.257180,0.022514,-0.966101, + 0.964596,-0.044235,0.259995,0.964596,-0.044235,0.259995,0.964596,-0.044235,0.259995,-0.959806,0.042945,-0.277358, + -0.959806,0.042945,-0.277358,-0.959806,0.042945,-0.277358,-0.959806,0.042945,-0.277358,0.254846,0.066043,-0.964724, + 0.254846,0.066043,-0.964724,0.254846,0.066043,-0.964724,0.254846,0.066043,-0.964724,0.966650,-0.043688,0.252347, + 0.966650,-0.043688,0.252347,0.966650,-0.043688,0.252347,0.254836,0.066041,-0.964727,0.254836,0.066041,-0.964727, + 0.254836,0.066041,-0.964727,0.254836,0.066041,-0.964727,0.966648,-0.043691,0.252356,0.966648,-0.043691,0.252356, + 0.966648,-0.043691,0.252356,-0.025499,-0.996862,-0.074946,-0.025499,-0.996862,-0.074946,-0.025499,-0.996862,-0.074946, + -0.196093,-0.760143,0.619459,-0.196093,-0.760143,0.619459,-0.196093,-0.760143,0.619459,-0.196093,-0.760143,0.619459, + -0.183614,0.568621,0.801845,-0.183614,0.568621,0.801845,-0.183614,0.568621,0.801845,-0.183614,0.568621,0.801845, + 0.020434,0.995439,0.093186,0.020434,0.995439,0.093186,0.020434,0.995439,0.093186,0.020434,0.995439,0.093186, + 0.923232,-0.052312,0.380666,0.923232,-0.052312,0.380666,0.923232,-0.052312,0.380666,-0.025502,-0.996857,-0.075011, + -0.025502,-0.996857,-0.075011,-0.025502,-0.996857,-0.075011,0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357, + 0.966646,-0.043719,0.252357,0.966646,-0.043719,0.252357,-0.025512,-0.996865,-0.074892,-0.025512,-0.996865,-0.074892, + -0.025512,-0.996865,-0.074892,0.025502,0.996860,0.074967,0.025502,0.996860,0.074967,0.025502,0.996860,0.074967, + -0.727033,0.463010,-0.506996,-0.727033,0.463010,-0.506996,-0.727033,0.463010,-0.506996,-0.727033,0.463010,-0.506996, + -0.651578,-0.131849,-0.747036,-0.651578,-0.131849,-0.747036,-0.651578,-0.131849,-0.747036,-0.651578,-0.131849,-0.747036, + 0.975396,-0.041233,0.216570,0.975396,-0.041233,0.216570,0.975396,-0.041233,0.216570,0.975396,-0.041233,0.216570, + -0.022556,-0.996027,-0.086152,-0.022556,-0.996027,-0.086152,-0.022556,-0.996027,-0.086152,-0.022556,-0.996027,-0.086152, + -0.713519,0.693151,-0.102133,-0.713519,0.693151,-0.102133,-0.713519,0.693151,-0.102133,-0.713519,0.693151,-0.102133, + -0.030487,-0.997899,-0.057164,-0.030487,-0.997899,-0.057164,-0.030487,-0.997899,-0.057164,-0.030487,-0.997899,-0.057164, + -0.750094,0.643881,-0.150920,-0.750094,0.643881,-0.150920,-0.750094,0.643881,-0.150920,-0.750094,0.643881,-0.150920, + 0.761059,0.600862,0.244446,0.761059,0.600862,0.244446,0.761059,0.600862,0.244446,0.761059,0.600862,0.244446, + -0.961859,0.044903,-0.269833,-0.961859,0.044903,-0.269833,-0.961859,0.044903,-0.269833,-0.961859,0.044903,-0.269833, + 0.022152,0.995966,0.086954,0.022152,0.995966,0.086954,0.022152,0.995966,0.086954,0.022152,0.995966,0.086954, + 0.962186,-0.044840,0.268678,0.962186,-0.044840,0.268678,0.962186,-0.044840,0.268678,0.962186,-0.044840,0.268678, + 0.962184,-0.044839,0.268683,0.962184,-0.044839,0.268683,0.962184,-0.044839,0.268683,0.962184,-0.044839,0.268683, + -0.021778,-0.997043,-0.073702,-0.021778,-0.997043,-0.073702,-0.021778,-0.997043,-0.073702,-0.021778,-0.997043,-0.073702, + 0.254140,0.066066,-0.964908,0.254140,0.066066,-0.964908,0.254140,0.066066,-0.964908,0.254140,0.066066,-0.964908, + 0.966647,-0.043720,0.252355,0.966647,-0.043720,0.252355,0.966647,-0.043720,0.252355,0.966647,-0.043720,0.252355, + -0.469527,0.068454,-0.880260,-0.469527,0.068454,-0.880260,-0.469527,0.068454,-0.880260,-0.469527,0.068454,-0.880260, + 0.078179,-0.996548,-0.027916,0.078179,-0.996548,-0.027916,0.078179,-0.996548,-0.027916,0.078179,-0.996548,-0.027916, + -0.655373,0.742078,-0.140738,-0.655373,0.742078,-0.140738,-0.655373,0.742078,-0.140738,-0.807228,-0.561251,-0.182701, + -0.807228,-0.561251,-0.182701,-0.807228,-0.561251,-0.182701,-0.807228,-0.561251,-0.182701,-0.768498,-0.547412,-0.331287, + -0.768498,-0.547412,-0.331287,-0.768498,-0.547412,-0.331287,-0.768498,-0.547412,-0.331287,-0.793618,-0.575718,-0.196769, + -0.793618,-0.575718,-0.196769,-0.793618,-0.575718,-0.196769,-0.793618,-0.575718,-0.196769,-0.793620,-0.575718,-0.196765, + -0.793620,-0.575718,-0.196765,-0.793620,-0.575718,-0.196765,-0.793620,-0.575718,-0.196765,-0.778325,-0.565179,-0.273465, + -0.778325,-0.565179,-0.273465,-0.778325,-0.565179,-0.273465,-0.778325,-0.565179,-0.273465,-0.826582,-0.516699,-0.223125, + -0.826582,-0.516699,-0.223125,-0.826582,-0.516699,-0.223125,-0.826582,-0.516699,-0.223125,-0.826801,-0.516160,-0.223559, + -0.826801,-0.516160,-0.223559,-0.826801,-0.516160,-0.223559,-0.826801,-0.516160,-0.223559,-0.807229,-0.511510,-0.294515, + -0.807229,-0.511510,-0.294515,-0.807229,-0.511510,-0.294515,-0.807229,-0.511510,-0.294515,-0.811265,-0.512709,-0.281031, + -0.811265,-0.512709,-0.281031,-0.811265,-0.512709,-0.281031,-0.811265,-0.512709,-0.281031,0.513563,-0.852923,0.093677, + 0.513563,-0.852923,0.093677,0.513563,-0.852923,0.093677,0.513563,-0.852923,0.093677,-0.826582,-0.516701,-0.223121, + -0.826582,-0.516701,-0.223121,-0.826582,-0.516701,-0.223121,-0.826582,-0.516701,-0.223121,-0.826795,-0.516170,-0.223561, + -0.826795,-0.516170,-0.223561,-0.826795,-0.516170,-0.223561,-0.826795,-0.516170,-0.223561,-0.807226,-0.511513,-0.294518, + -0.807226,-0.511513,-0.294518,-0.807226,-0.511513,-0.294518,-0.807226,-0.511513,-0.294518,-0.810892,-0.517225,-0.273738, + -0.810892,-0.517225,-0.273738,-0.810892,-0.517225,-0.273738,-0.810892,-0.517225,-0.273738,-0.826589,-0.516686,-0.223127, + -0.826589,-0.516686,-0.223127,-0.826589,-0.516686,-0.223127,-0.826589,-0.516686,-0.223127,-0.826799,-0.516162,-0.223564, + -0.826799,-0.516162,-0.223564,-0.826799,-0.516162,-0.223564,-0.826799,-0.516162,-0.223564,-0.807222,-0.511518,-0.294519, + -0.807222,-0.511518,-0.294519,-0.807222,-0.511518,-0.294519,-0.807222,-0.511518,-0.294519,-0.808866,-0.512002,-0.289119, + -0.808866,-0.512002,-0.289119,-0.808866,-0.512002,-0.289119,-0.808866,-0.512002,-0.289119,-0.799655,-0.571781,-0.183352, + -0.799655,-0.571781,-0.183352,-0.799655,-0.571781,-0.183352,-0.799655,-0.571781,-0.183352,0.509883,-0.853590,0.106783, + 0.509883,-0.853590,0.106783,0.509883,-0.853590,0.106783,0.509883,-0.853590,0.106783,0.515875,-0.853979,0.067774, + 0.515875,-0.853979,0.067774,0.515875,-0.853979,0.067774,0.515875,-0.853979,0.067774,-0.763078,-0.557730,-0.326571, + -0.763078,-0.557730,-0.326571,-0.763078,-0.557730,-0.326571,-0.763078,-0.557730,-0.326571,-0.217822,-0.127381,0.967640, + -0.217822,-0.127381,0.967640,-0.217822,-0.127381,0.967640,-0.219864,-0.053344,0.974071,-0.219864,-0.053344,0.974071, + -0.219864,-0.053344,0.974071,-0.219864,-0.053344,0.974071,-0.804622,-0.513505,-0.298156,-0.804622,-0.513505,-0.298156, + -0.804622,-0.513505,-0.298156,-0.804622,-0.513505,-0.298156,-0.801592,-0.564141,-0.197980,-0.801592,-0.564141,-0.197980, + -0.801592,-0.564141,-0.197980,-0.801592,-0.564141,-0.197980,-0.789566,-0.569947,-0.227479,-0.789566,-0.569947,-0.227479, + -0.789566,-0.569947,-0.227479,-0.789566,-0.569947,-0.227479,0.519207,-0.851501,0.073276,0.519207,-0.851501,0.073276, + 0.519207,-0.851501,0.073276,0.519207,-0.851501,0.073276,0.519209,-0.851500,0.073281,0.519209,-0.851500,0.073281, + 0.519209,-0.851500,0.073281,0.519209,-0.851500,0.073281,0.525731,-0.849326,0.047459,0.525731,-0.849326,0.047459, + 0.525731,-0.849326,0.047459,0.525731,-0.849326,0.047459,0.513143,-0.854732,0.078218,0.513143,-0.854732,0.078218, + 0.513143,-0.854732,0.078218,0.513143,-0.854732,0.078218,0.519209,-0.851501,0.073272,0.519209,-0.851501,0.073272, + 0.519209,-0.851501,0.073272,0.519209,-0.851501,0.073272,-0.825111,-0.505367,-0.252579,-0.825111,-0.505367,-0.252579, + -0.825111,-0.505367,-0.252579,-0.825111,-0.505367,-0.252579,-0.207361,-0.143979,0.967611,-0.207361,-0.143979,0.967611, + -0.207361,-0.143979,0.967611,-0.207360,-0.143982,0.967611,-0.207360,-0.143982,0.967611,-0.207360,-0.143982,0.967611, + -0.819415,-0.514973,-0.251717,-0.819415,-0.514973,-0.251717,-0.819415,-0.514973,-0.251717,-0.819415,-0.514973,-0.251717, + 0.503162,-0.856576,0.114484,0.503162,-0.856576,0.114484,0.503162,-0.856576,0.114484,0.503162,-0.856576,0.114484, + -0.655377,0.742074,-0.140736,-0.655377,0.742074,-0.140736,-0.655377,0.742074,-0.140736,-0.655371,0.742079,-0.140739, + -0.655371,0.742079,-0.140739,-0.655371,0.742079,-0.140739,-0.655373,0.742078,-0.140739,-0.655373,0.742078,-0.140739, + -0.655373,0.742078,-0.140739,-0.824322,-0.518946,-0.226248,-0.824322,-0.518946,-0.226248,-0.824322,-0.518946,-0.226248, + -0.824322,-0.518946,-0.226248,-0.819922,-0.514135,-0.251779,-0.819922,-0.514135,-0.251779,-0.819922,-0.514135,-0.251779, + -0.819922,-0.514135,-0.251779,-0.448808,0.890389,-0.076019,-0.448808,0.890389,-0.076019,-0.448808,0.890389,-0.076019, + -0.924024,-0.327349,-0.197542,-0.924024,-0.327349,-0.197542,-0.924024,-0.327349,-0.197542,-0.924024,-0.327349,-0.197542, + -0.884355,-0.313504,-0.345878,-0.884355,-0.313504,-0.345878,-0.884355,-0.313504,-0.345878,-0.884355,-0.313504,-0.345878, + -0.914615,-0.343766,-0.212849,-0.914615,-0.343766,-0.212849,-0.914615,-0.343766,-0.212849,-0.914615,-0.343766,-0.212849, + -0.914615,-0.343764,-0.212853,-0.914615,-0.343764,-0.212853,-0.914615,-0.343764,-0.212853,-0.914615,-0.343764,-0.212853, + -0.897833,-0.332161,-0.289077,-0.897833,-0.332161,-0.289077,-0.897833,-0.332161,-0.289077,-0.897833,-0.332161,-0.289077, + -0.931901,-0.276707,-0.234506,-0.931901,-0.276707,-0.234506,-0.931901,-0.276707,-0.234506,-0.931901,-0.276707,-0.234506, + -0.931978,-0.276106,-0.234912,-0.931978,-0.276106,-0.234912,-0.931978,-0.276106,-0.234912,-0.931978,-0.276106,-0.234912, + -0.912481,-0.271664,-0.305904,-0.912481,-0.271664,-0.305904,-0.912481,-0.271664,-0.305904,-0.912481,-0.271664,-0.305904, + -0.916583,-0.272734,-0.292390,-0.916583,-0.272734,-0.292390,-0.916583,-0.272734,-0.292390,-0.916583,-0.272734,-0.292390, + 0.283267,-0.958700,0.025592,0.283267,-0.958700,0.025592,0.283267,-0.958700,0.025592,0.283267,-0.958700,0.025592, + -0.931900,-0.276710,-0.234507,-0.931900,-0.276710,-0.234507,-0.931900,-0.276710,-0.234507,-0.931900,-0.276710,-0.234507, + -0.931975,-0.276108,-0.234918,-0.931975,-0.276108,-0.234918,-0.931975,-0.276108,-0.234918,-0.931975,-0.276108,-0.234918, + -0.912483,-0.271658,-0.305902,-0.912483,-0.271658,-0.305902,-0.912483,-0.271658,-0.305902,-0.912483,-0.271658,-0.305902, + -0.917285,-0.277681,-0.285449,-0.917285,-0.277681,-0.285449,-0.917285,-0.277681,-0.285449,-0.917285,-0.277681,-0.285449, + -0.931898,-0.276705,-0.234521,-0.931898,-0.276705,-0.234521,-0.931898,-0.276705,-0.234521,-0.931898,-0.276705,-0.234521, + -0.931975,-0.276110,-0.234919,-0.931975,-0.276110,-0.234919,-0.931975,-0.276110,-0.234919,-0.931975,-0.276110,-0.234919, + -0.912483,-0.271656,-0.305904,-0.912483,-0.271656,-0.305904,-0.912483,-0.271656,-0.305904,-0.912483,-0.271656,-0.305904, + -0.914143,-0.272084,-0.300519,-0.914143,-0.272084,-0.300519,-0.914143,-0.272084,-0.300519,-0.914143,-0.272084,-0.300519, + -0.919348,-0.339372,-0.199060,-0.919348,-0.339372,-0.199060,-0.919348,-0.339372,-0.199060,-0.919348,-0.339372,-0.199060, + 0.279653,-0.959320,0.038726,0.279653,-0.959320,0.038726,0.279653,-0.959320,0.038726,0.279653,-0.959320,0.038726, + 0.285015,-0.958523,-0.000361,0.285015,-0.958523,-0.000361,0.285015,-0.958523,-0.000361,0.285015,-0.958523,-0.000361, + -0.881661,-0.325151,-0.341979,-0.881661,-0.325151,-0.341979,-0.881661,-0.325151,-0.341979,-0.881661,-0.325151,-0.341979, + -0.234422,-0.134749,0.962751,-0.234422,-0.134749,0.962751,-0.234422,-0.134749,0.962751,-0.217714,-0.063179,0.973966, + -0.217714,-0.063179,0.973966,-0.217714,-0.063179,0.973966,-0.217714,-0.063179,0.973966,-0.910496,-0.273984,-0.309725, + -0.910496,-0.273984,-0.309725,-0.910496,-0.273984,-0.309725,-0.910496,-0.273984,-0.309725,-0.919427,-0.330508,-0.213116, + -0.919427,-0.330508,-0.213116,-0.919427,-0.330508,-0.213116,-0.919427,-0.330508,-0.213116,-0.909508,-0.337102,-0.243224, + -0.909508,-0.337102,-0.243224,-0.909508,-0.337102,-0.243224,-0.909508,-0.337102,-0.243224,0.288909,-0.957343,0.005197, + 0.288909,-0.957343,0.005197,0.288909,-0.957343,0.005197,0.288909,-0.957343,0.005197,0.288909,-0.957342,0.005193, + 0.288909,-0.957342,0.005193,0.288909,-0.957342,0.005193,0.288909,-0.957342,0.005193,0.295550,-0.955105,-0.020589, + 0.295550,-0.955105,-0.020589,0.295550,-0.955105,-0.020589,0.295550,-0.955105,-0.020589,0.282271,-0.959282,0.010076, + 0.282271,-0.959282,0.010076,0.282271,-0.959282,0.010076,0.282271,-0.959282,0.010076,0.288909,-0.957342,0.005193, + 0.288909,-0.957342,0.005193,0.288909,-0.957342,0.005193,0.288909,-0.957342,0.005193,-0.927885,-0.264120,-0.263192, + -0.927885,-0.264120,-0.263192,-0.927885,-0.264120,-0.263192,-0.927885,-0.264120,-0.263192,-0.228478,-0.153401,0.961387, + -0.228478,-0.153401,0.961387,-0.228478,-0.153401,0.961387,-0.228474,-0.153396,0.961389,-0.228474,-0.153396,0.961389, + -0.228474,-0.153396,0.961389,-0.924780,-0.274880,-0.263102,-0.924780,-0.274880,-0.263102,-0.924780,-0.274880,-0.263102, + -0.924780,-0.274880,-0.263102,0.272463,-0.961047,0.046394,0.272463,-0.961047,0.046394,0.272463,-0.961047,0.046394, + 0.272463,-0.961047,0.046394,-0.448806,0.890389,-0.076031,-0.448806,0.890389,-0.076031,-0.448806,0.890389,-0.076031, + -0.448806,0.890390,-0.076012,-0.448806,0.890390,-0.076012,-0.448806,0.890390,-0.076012,-0.448811,0.890388,-0.076017, + -0.448811,0.890388,-0.076017,-0.448811,0.890388,-0.076017,-0.930304,-0.279231,-0.237834,-0.930304,-0.279231,-0.237834, + -0.930304,-0.279231,-0.237834,-0.930304,-0.279231,-0.237834,-0.925056,-0.273937,-0.263118,-0.925056,-0.273937,-0.263118, + -0.925056,-0.273937,-0.263118,-0.925056,-0.273937,-0.263118,0.150954,-0.987822,-0.037689,0.150954,-0.987822,-0.037689, + 0.150954,-0.987822,-0.037689,0.150954,-0.987822,-0.037689,0.177489,-0.972786,-0.148943,0.177489,-0.972786,-0.148943, + 0.177489,-0.972786,-0.148943,0.177489,-0.972786,-0.148943,0.977940,0.187210,0.092661,0.977940,0.187210,0.092661, + 0.977940,0.187210,0.092661,0.977940,0.187210,0.092661,-0.965790,-0.185701,-0.181010,-0.965790,-0.185701,-0.181010, + -0.965790,-0.185701,-0.181010,-0.965790,-0.185701,-0.181010,0.988571,0.110509,0.102548,0.988571,0.110509,0.102548, + 0.988571,0.110509,0.102548,0.988571,0.110509,0.102548,0.175251,-0.974622,-0.139282,0.175251,-0.974622,-0.139282, + 0.175251,-0.974622,-0.139282,0.175251,-0.974622,-0.139282,0.927717,0.171698,0.331453,0.927717,0.171698,0.331453, + 0.927717,0.171698,0.331453,0.927717,0.171698,0.331453,0.939792,0.086248,0.330684,0.939792,0.086248,0.330684, + 0.939792,0.086248,0.330684,0.939792,0.086248,0.330684,0.176379,-0.974679,-0.137447,0.176379,-0.974679,-0.137447, + 0.176379,-0.974679,-0.137447,0.176379,-0.974679,-0.137447,0.938083,0.128390,0.321738,0.938083,0.128390,0.321738, + 0.938083,0.128390,0.321738,0.938083,0.128390,0.321738,0.146794,-0.988842,-0.025371,0.146794,-0.988842,-0.025371, + 0.146794,-0.988842,-0.025371,0.146794,-0.988842,-0.025371,-0.968961,-0.139389,-0.204170,-0.968961,-0.139389,-0.204170, + -0.968961,-0.139389,-0.204170,-0.968961,-0.139389,-0.204170,0.149308,-0.988431,-0.026670,0.149308,-0.988431,-0.026670, + 0.149308,-0.988431,-0.026670,0.149308,-0.988431,-0.026670,0.132341,-0.990699,0.031643,0.132341,-0.990699,0.031643, + 0.132341,-0.990699,0.031643,0.132341,-0.990699,0.031643,0.161156,-0.983916,-0.077061,0.161156,-0.983916,-0.077061, + 0.161156,-0.983916,-0.077061,0.161156,-0.983916,-0.077061,0.549744,0.793630,0.260640,0.549744,0.793630,0.260640, + 0.549744,0.793630,0.260640,0.549744,0.793630,0.260640,0.580629,0.803034,0.134187,0.580629,0.803034,0.134187, + 0.580629,0.803034,0.134187,0.580629,0.803034,0.134187,0.967059,0.136001,0.215174,0.967059,0.136001,0.215174, + 0.967059,0.136001,0.215174,0.967059,0.136001,0.215174,0.935993,0.131207,0.326653,0.935993,0.131207,0.326653, + 0.935993,0.131207,0.326653,0.935993,0.131207,0.326653,-0.578333,-0.801443,-0.152381,-0.578333,-0.801443,-0.152381, + -0.578333,-0.801443,-0.152381,-0.578333,-0.801443,-0.152381,-0.542114,-0.792710,-0.278790,-0.542114,-0.792710,-0.278790, + -0.542114,-0.792710,-0.278790,-0.542114,-0.792710,-0.278790,0.928747,0.129511,0.347355,0.928747,0.129511,0.347355, + 0.928747,0.129511,0.347355,0.928747,0.129511,0.347355,0.161813,-0.983604,-0.079624,0.161813,-0.983604,-0.079624, + 0.161813,-0.983604,-0.079624,0.161813,-0.983604,-0.079624,0.969339,0.139802,0.202084,0.969339,0.139802,0.202084, + 0.969339,0.139802,0.202084,0.969339,0.139802,0.202084,0.133720,-0.990662,0.026608,0.133720,-0.990662,0.026608, + 0.133720,-0.990662,0.026608,0.133720,-0.990662,0.026608,-0.800889,0.591133,-0.095595,-0.800889,0.591133,-0.095595, + -0.800889,0.591133,-0.095595,-0.800889,0.591133,-0.095595,-0.756930,0.601218,-0.256115,-0.756930,0.601218,-0.256115, + -0.756930,0.601218,-0.256115,-0.756930,0.601218,-0.256115,0.960608,0.099603,0.259446,0.960608,0.099603,0.259446, + 0.960608,0.099603,0.259446,0.960608,0.099603,0.259446,0.951253,0.160987,0.263060,0.951253,0.160987,0.263060, + 0.951253,0.160987,0.263060,0.951253,0.160987,0.263060,0.122970,-0.991122,-0.050547,0.122970,-0.991122,-0.050547, + 0.122970,-0.991122,-0.050547,0.122970,-0.991122,-0.050547,0.167554,-0.985589,-0.023247,0.167554,-0.985589,-0.023247, + 0.167554,-0.985589,-0.023247,0.167554,-0.985589,-0.023247,-0.964265,-0.138350,-0.225946,-0.964265,-0.138350,-0.225946, + -0.964265,-0.138350,-0.225946,-0.964265,-0.138350,-0.225946,-0.939821,-0.132113,-0.315093,-0.939821,-0.132113,-0.315093, + -0.939821,-0.132113,-0.315093,-0.939821,-0.132113,-0.315093,-0.946845,-0.133817,-0.292536,-0.946845,-0.133817,-0.292536, + -0.946845,-0.133817,-0.292536,-0.946845,-0.133817,-0.292536,0.163977,-0.982526,-0.088052,0.163977,-0.982526,-0.088052, + 0.163977,-0.982526,-0.088052,0.163977,-0.982526,-0.088052,-0.041937,-0.863002,0.503457,-0.041937,-0.863002,0.503457, + -0.041937,-0.863002,0.503457,0.160521,-0.984211,-0.074579,0.160521,-0.984211,-0.074579,0.160521,-0.984211,-0.074579, + 0.160521,-0.984211,-0.074579,0.147013,-0.988238,-0.042118,0.147013,-0.988238,-0.042118,0.147013,-0.988238,-0.042118, + 0.147013,-0.988238,-0.042118,0.956381,0.130374,0.261415,0.956381,0.130374,0.261415,0.956381,0.130374,0.261415, + 0.956381,0.130374,0.261415,0.177202,-0.974426,-0.138182,0.177202,-0.974426,-0.138182,0.177202,-0.974426,-0.138182, + 0.177202,-0.974426,-0.138182,0.189719,-0.968400,-0.161890,0.189719,-0.968400,-0.161890,0.189719,-0.968400,-0.161890, + 0.189719,-0.968400,-0.161890,0.180571,-0.969444,-0.166052,0.180571,-0.969444,-0.166052,0.180571,-0.969444,-0.166052, + 0.180571,-0.969444,-0.166052,0.176340,-0.974703,-0.137324,0.176340,-0.974703,-0.137324,0.176340,-0.974703,-0.137324, + 0.176340,-0.974703,-0.137324,0.782299,-0.598259,0.173476,0.782299,-0.598259,0.173476,0.782299,-0.598259,0.173476, + 0.782299,-0.598259,0.173476,0.972601,0.135750,0.188728,0.972601,0.135750,0.188728,0.972601,0.135750,0.188728, + 0.972601,0.135750,0.188728,-0.578848,-0.801389,-0.150701,-0.578848,-0.801389,-0.150701,-0.578848,-0.801389,-0.150701, + -0.578848,-0.801389,-0.150701,0.175826,-0.975087,-0.135244,0.175826,-0.975087,-0.135244,0.175826,-0.975087,-0.135244, + 0.175826,-0.975087,-0.135244,0.972572,0.140765,0.185174,0.972572,0.140765,0.185174,0.972572,0.140765,0.185174, + 0.972572,0.140765,0.185174,0.622139,0.057721,0.780776,0.622139,0.057721,0.780776,0.622139,0.057721,0.780776, + 0.963323,0.152515,0.220788,0.963323,0.152515,0.220788,0.963323,0.152515,0.220788,0.963323,0.152515,0.220788, + 0.227147,-0.676630,0.700411,0.227147,-0.676630,0.700411,0.227147,-0.676630,0.700411,0.227147,-0.676630,0.700411, + 0.260612,-0.348258,-0.900443,0.260612,-0.348258,-0.900443,0.260612,-0.348258,-0.900443,0.260612,-0.348258,-0.900443, + -0.327591,-0.797466,0.506687,-0.327591,-0.797466,0.506687,-0.327591,-0.797466,0.506687,-0.327591,-0.797466,0.506687, + 0.796297,-0.586968,0.146218,0.796297,-0.586968,0.146218,0.796297,-0.586968,0.146218,0.796297,-0.586968,0.146218, + 0.769934,-0.629211,0.106276,0.769934,-0.629211,0.106276,0.769934,-0.629211,0.106276,0.769934,-0.629211,0.106276, + 0.126191,-0.990534,0.054018,0.126191,-0.990534,0.054018,0.126191,-0.990534,0.054018,0.126191,-0.990534,0.054018, + 0.123631,-0.990719,0.056485,0.123631,-0.990719,0.056485,0.123631,-0.990719,0.056485,0.123631,-0.990719,0.056485, + -0.062122,-0.760733,0.646085,-0.062122,-0.760733,0.646085,-0.062122,-0.760733,0.646085,-0.062122,-0.760733,0.646085, + 0.485553,0.021716,0.873937,0.485553,0.021716,0.873937,0.485553,0.021716,0.873937,0.485553,0.021716,0.873937, + 0.972097,0.183464,0.146177,0.972097,0.183464,0.146177,0.972097,0.183464,0.146177,0.972097,0.183464,0.146177, + 0.967543,0.140322,0.210167,0.967543,0.140322,0.210167,0.967543,0.140322,0.210167,0.967543,0.140322,0.210167, + 0.126035,-0.990523,0.054593,0.126035,-0.990523,0.054593,0.126035,-0.990523,0.054593,0.126035,-0.990523,0.054593, + 0.150915,-0.987834,-0.037538,0.150915,-0.987834,-0.037538,0.150915,-0.987834,-0.037538,0.150915,-0.987834,-0.037538, + 0.176379,-0.974679,-0.137444,0.176379,-0.974679,-0.137444,0.176379,-0.974679,-0.137444,0.971809,0.143441,0.187115, + 0.971809,0.143441,0.187115,0.971809,0.143441,0.187115,0.971808,0.143444,0.187116,0.971808,0.143444,0.187116, + 0.971808,0.143444,0.187116,0.971808,0.143445,0.187117,0.971808,0.143445,0.187117,0.971808,0.143445,0.187117, + 0.971808,0.143445,0.187117,0.176374,-0.974682,-0.137430,0.176374,-0.974682,-0.137430,0.176374,-0.974682,-0.137430, + 0.939578,0.132346,0.315719,0.939578,0.132346,0.315719,0.939578,0.132346,0.315719,0.939578,0.132346,0.315719, + 0.924975,0.128660,0.357586,0.924975,0.128660,0.357586,0.924975,0.128660,0.357586,0.924975,0.128660,0.357586, + 0.162777,-0.983133,-0.083383,0.162777,-0.983133,-0.083383,0.162777,-0.983133,-0.083383,0.162777,-0.983133,-0.083383, + -0.730255,-0.461858,0.503403,-0.730255,-0.461858,0.503403,-0.730255,-0.461858,0.503403,-0.730255,-0.461858,0.503403, + 0.975931,0.193788,-0.100028,0.975931,0.193788,-0.100028,0.975931,0.193788,-0.100028,0.961085,0.132159,0.242587, + 0.961085,0.132159,0.242587,0.961085,0.132159,0.242587,0.961085,0.132159,0.242587,0.266015,-0.893399,-0.362042, + 0.266015,-0.893399,-0.362042,0.266015,-0.893399,-0.362042,-0.330167,-0.813666,-0.478474,-0.330167,-0.813666,-0.478474, + -0.330167,-0.813666,-0.478474,-0.330167,-0.813666,-0.478474,-0.501638,-0.860545,0.088442,-0.501638,-0.860545,0.088442, + -0.501638,-0.860545,0.088442,-0.501638,-0.860545,0.088442,-0.406802,-0.744378,-0.529541,-0.406802,-0.744378,-0.529541, + -0.406802,-0.744378,-0.529541,0.600620,0.763976,-0.235787,0.600620,0.763976,-0.235787,0.600620,0.763976,-0.235787, + 0.841187,-0.508580,-0.183714,0.841187,-0.508580,-0.183714,0.841187,-0.508580,-0.183714,-0.913739,0.158311,-0.374191, + -0.913739,0.158311,-0.374191,-0.913739,0.158311,-0.374191,-0.913739,0.158311,-0.374191,-0.160516,-0.979784,-0.119408, + -0.160516,-0.979784,-0.119408,-0.160516,-0.979784,-0.119408,-0.160516,-0.979784,-0.119408,-0.131560,-0.964257,-0.230001, + -0.131560,-0.964257,-0.230001,-0.131560,-0.964257,-0.230001,-0.131560,-0.964257,-0.230001,0.988843,-0.129355,0.073873, + 0.988843,-0.129355,0.073873,0.988843,-0.129355,0.073873,0.988843,-0.129355,0.073873,-0.897728,0.233706,-0.373452, + -0.897728,0.233706,-0.373452,-0.897728,0.233706,-0.373452,-0.897728,0.233706,-0.373452,-0.977545,0.134533,-0.162191, + -0.977545,0.134533,-0.162191,-0.977545,0.134533,-0.162191,-0.977545,0.134533,-0.162191,0.975446,-0.206189,0.077400, + 0.975446,-0.206189,0.077400,0.975446,-0.206189,0.077400,0.975446,-0.206189,0.077400,-0.963080,0.219750,-0.155519, + -0.963080,0.219750,-0.155519,-0.963080,0.219750,-0.155519,-0.963080,0.219750,-0.155519,-0.134170,-0.966131,-0.220430, + -0.134170,-0.966131,-0.220430,-0.134170,-0.966131,-0.220430,-0.134170,-0.966131,-0.220430,0.938255,-0.148850,0.312285, + 0.938255,-0.148850,0.312285,0.938255,-0.148850,0.312285,0.938255,-0.148850,0.312285,0.923455,-0.233508,0.304474, + 0.923455,-0.233508,0.304474,0.923455,-0.233508,0.304474,0.923455,-0.233508,0.304474,-0.133103,-0.966685,-0.218642, + -0.133103,-0.966685,-0.218642,-0.133103,-0.966685,-0.218642,-0.133103,-0.966685,-0.218642,0.934714,-0.192270,0.298901, + 0.934714,-0.192270,0.298901,0.934714,-0.192270,0.298901,0.934714,-0.192270,0.298901,-0.164684,-0.980518,-0.107069, + -0.164684,-0.980518,-0.107069,-0.164684,-0.980518,-0.107069,-0.164684,-0.980518,-0.107069,-0.966508,0.181376,-0.181562, + -0.966508,0.181376,-0.181562,-0.966508,0.181376,-0.181562,-0.966508,0.181376,-0.181562,-0.162178,-0.980784,-0.108449, + -0.162178,-0.980784,-0.108449,-0.162178,-0.980784,-0.108449,-0.162178,-0.980784,-0.108449,-0.178531,-0.982667,-0.049927, + -0.178531,-0.982667,-0.049927,-0.178531,-0.982667,-0.049927,-0.178531,-0.982667,-0.049927,-0.940501,0.190809,-0.281158, + -0.940501,0.190809,-0.281158,-0.940501,0.190809,-0.281158,-0.940501,0.190809,-0.281158,-0.149930,-0.975877,-0.158697, + -0.149930,-0.975877,-0.158697,-0.149930,-0.975877,-0.158697,-0.149930,-0.975877,-0.158697,-0.965341,0.181544,-0.187507, + -0.965341,0.181544,-0.187507,-0.965341,0.181544,-0.187507,-0.965341,0.181544,-0.187507,0.769327,0.562525,0.302825, + 0.769327,0.562525,0.302825,0.769327,0.562525,0.302825,0.769327,0.562525,0.302825,0.800563,0.572662,0.176514, + 0.800563,0.572662,0.176514,0.800563,0.572662,0.176514,0.800563,0.572662,0.176514,-0.956627,0.184371,-0.225548, + -0.956627,0.184371,-0.225548,-0.956627,0.184371,-0.225548,-0.956627,0.184371,-0.225548,-0.952641,0.185445,-0.241008, + -0.952641,0.185445,-0.241008,-0.952641,0.185445,-0.241008,-0.952641,0.185445,-0.241008,0.562931,-0.820898,0.096102, + 0.562931,-0.820898,0.096102,0.562931,-0.820898,0.096102,0.562931,-0.820898,0.096102,0.567936,-0.819473,0.076892, + 0.567936,-0.819473,0.076892,0.567936,-0.819473,0.076892,0.567936,-0.819473,0.076892,0.963748,-0.184929,0.192330, + 0.963748,-0.184929,0.192330,0.963748,-0.184929,0.192330,0.963748,-0.184929,0.192330,0.933633,-0.189375,0.304084, + 0.933633,-0.189375,0.304084,0.933633,-0.189375,0.304084,0.933633,-0.189375,0.304084,-0.798039,-0.570321,-0.194595, + -0.798039,-0.570321,-0.194595,-0.798039,-0.570321,-0.194595,-0.798039,-0.570321,-0.194595,-0.761933,-0.562456,-0.321094, + -0.761933,-0.562456,-0.321094,-0.761933,-0.562456,-0.321094,-0.761933,-0.562456,-0.321094,0.926389,-0.190509,0.324821, + 0.926389,-0.190509,0.324821,0.926389,-0.190509,0.324821,0.926389,-0.190509,0.324821,-0.149230,-0.975569,-0.161234, + -0.149230,-0.975569,-0.161234,-0.149230,-0.975569,-0.161234,-0.149230,-0.975569,-0.161234,0.966978,-0.180928,0.179497, + 0.966978,-0.180928,0.179497,0.966978,-0.180928,0.179497,0.966978,-0.180928,0.179497,-0.177255,-0.982627,-0.054993, + -0.177255,-0.982627,-0.054993,-0.177255,-0.982627,-0.054993,-0.177255,-0.982627,-0.054993,-0.581001,0.813598,-0.022277, + -0.581001,0.813598,-0.022277,-0.581001,0.813598,-0.022277,-0.581001,0.813598,-0.022277,-0.537404,0.823246,-0.182930, + -0.537404,0.823246,-0.182930,-0.537404,0.823246,-0.182930,-0.537404,0.823246,-0.182930,-0.946497,0.221300,-0.234883, + -0.946497,0.221300,-0.234883,-0.946497,0.221300,-0.234883,-0.946497,0.221300,-0.234883,-0.956979,0.160375,-0.241809, + -0.956979,0.160375,-0.241809,-0.956979,0.160375,-0.241809,-0.956979,0.160375,-0.241809,0.946779,-0.221208,0.233828, + 0.946779,-0.221208,0.233828,0.946779,-0.221208,0.233828,0.946779,-0.221208,0.233828,0.956787,-0.160438,0.242523, + 0.956787,-0.160438,0.242523,0.956787,-0.160438,0.242523,0.956787,-0.160438,0.242523,-0.188259,-0.973273,-0.131521, + -0.188259,-0.973273,-0.131521,-0.188259,-0.973273,-0.131521,-0.188259,-0.973273,-0.131521,-0.143914,-0.983966,-0.105354, + -0.143914,-0.983966,-0.105354,-0.143914,-0.983966,-0.105354,-0.143914,-0.983966,-0.105354,-0.952202,0.190910,-0.238464, + -0.952202,0.190910,-0.238464,-0.952202,0.190910,-0.238464,-0.952202,0.190910,-0.238464,-0.961902,0.182750,-0.203340, + -0.961902,0.182750,-0.203340,-0.961902,0.182750,-0.203340,-0.961902,0.182750,-0.203340,-0.937453,0.188715,-0.292520, + -0.937453,0.188715,-0.292520,-0.937453,0.188715,-0.292520,-0.937453,0.188715,-0.292520,-0.944478,0.187357,-0.269924, + -0.944478,0.187357,-0.269924,-0.944478,0.187357,-0.269924,-0.944478,0.187357,-0.269924,-0.146914,-0.974496,-0.169629, + -0.146914,-0.974496,-0.169629,-0.146914,-0.974496,-0.169629,-0.146914,-0.974496,-0.169629,-0.301195,-0.848051,0.435994, + -0.301195,-0.848051,0.435994,-0.301195,-0.848051,0.435994,-0.150607,-0.976170,-0.156238,-0.150607,-0.976170,-0.156238, + -0.150607,-0.976170,-0.156238,-0.150607,-0.976170,-0.156238,-0.164429,-0.978597,-0.123737,-0.164429,-0.978597,-0.123737, + -0.164429,-0.978597,-0.123737,-0.164429,-0.978597,-0.123737,0.952239,-0.190898,0.238324,0.952239,-0.190898,0.238324, + 0.952239,-0.190898,0.238324,0.952239,-0.190898,0.238324,-0.132255,-0.966626,-0.219414,-0.132255,-0.966626,-0.219414, + -0.132255,-0.966626,-0.219414,-0.132255,-0.966626,-0.219414,-0.118675,-0.962757,-0.242931,-0.118675,-0.962757,-0.242931, + -0.118675,-0.962757,-0.242931,-0.118675,-0.962757,-0.242931,-0.127756,-0.960577,-0.246920,-0.127756,-0.960577,-0.246920, + -0.127756,-0.960577,-0.246920,-0.127756,-0.960577,-0.246920,-0.936621,0.192276,-0.292868,-0.936621,0.192276,-0.292868, + -0.936621,0.192276,-0.292868,-0.936621,0.192276,-0.292868,-0.133133,-0.966709,-0.218518,-0.133133,-0.966709,-0.218518, + -0.133133,-0.966709,-0.218518,-0.133133,-0.966709,-0.218518,0.561759,-0.821240,0.099959,0.561759,-0.821240,0.099959, + 0.561759,-0.821240,0.099959,0.561759,-0.821240,0.099959,-0.798499,-0.570255,-0.192896,-0.798499,-0.570255,-0.192896, + -0.798499,-0.570255,-0.192896,-0.798499,-0.570255,-0.192896,-0.133736,-0.967087,-0.216466,-0.133736,-0.967087,-0.216466, + -0.133736,-0.967087,-0.216466,-0.133736,-0.967087,-0.216466,0.616148,-0.201373,0.761453,0.616148,-0.201373,0.761453, + 0.616148,-0.201373,0.761453,0.965320,-0.168592,0.199332,0.965320,-0.168592,0.199332,0.965320,-0.168592,0.199332, + 0.965320,-0.168592,0.199332,0.013781,-0.770211,0.637640,0.013781,-0.770211,0.637640,0.013781,-0.770211,0.637640, + 0.013781,-0.770211,0.637640,0.133432,-0.334041,-0.933066,0.133432,-0.334041,-0.933066,0.133432,-0.334041,-0.933066, + 0.133432,-0.334041,-0.933066,-0.552813,-0.698821,0.453923,-0.552813,-0.698821,0.453923,-0.552813,-0.698821,0.453923, + -0.552813,-0.698821,0.453923,0.578330,-0.812513,0.073194,0.578330,-0.812513,0.073194,0.578330,-0.812513,0.073194, + 0.578330,-0.812513,0.073194,0.539920,-0.841145,0.031021,0.539920,-0.841145,0.031021,0.539920,-0.841145,0.031021, + 0.539920,-0.841145,0.031021,0.442944,0.429980,-0.786713,0.442944,0.429980,-0.786713,0.442944,0.429980,-0.786713, + 0.442944,0.429980,-0.786713,-0.184141,-0.982518,-0.027400,-0.184141,-0.982518,-0.027400,-0.184141,-0.982518,-0.027400, + -0.184141,-0.982518,-0.027400,-0.186618,-0.982118,-0.024866,-0.186618,-0.982118,-0.024866,-0.186618,-0.982118,-0.024866, + -0.186618,-0.982118,-0.024866,-0.287768,-0.756916,0.586743,-0.287768,-0.756916,0.586743,-0.287768,-0.756916,0.586743, + -0.287768,-0.756916,0.586743,0.475880,-0.201601,0.856093,0.475880,-0.201601,0.856093,0.475880,-0.201601,0.856093, + 0.475880,-0.201601,0.856093,0.982571,-0.135653,0.127094,0.982571,-0.135653,0.127094,0.982571,-0.135653,0.127094, + 0.982571,-0.135653,0.127094,-0.938807,0.189386,-0.287707,-0.938807,0.189386,-0.287707,-0.938807,0.189386,-0.287707, + -0.938807,0.189386,-0.287707,0.965496,-0.180559,0.187659,0.965496,-0.180559,0.187659,0.965496,-0.180559,0.187659, + 0.965496,-0.180559,0.187659,-0.184295,-0.982505,-0.026830,-0.184295,-0.982505,-0.026830,-0.184295,-0.982505,-0.026830, + -0.184295,-0.982505,-0.026830,-0.160554,-0.979795,-0.119263,-0.160554,-0.979795,-0.119263,-0.160554,-0.979795,-0.119263, + -0.160554,-0.979795,-0.119263,-0.930358,0.192590,-0.311998,-0.930358,0.192590,-0.311998,-0.930358,0.192590,-0.311998, + -0.133099,-0.966686,-0.218636,-0.133099,-0.966686,-0.218636,-0.133099,-0.966686,-0.218636,0.970325,-0.176957,0.164788, + 0.970325,-0.176957,0.164788,0.970325,-0.176957,0.164788,-0.930359,0.192589,-0.311996,-0.930359,0.192589,-0.311996, + -0.930359,0.192589,-0.311996,-0.930360,0.192586,-0.311996,-0.930360,0.192586,-0.311996,-0.930360,0.192586,-0.311996, + -0.930360,0.192586,-0.311996,0.970325,-0.176957,0.164789,0.970325,-0.176957,0.164789,0.970325,-0.176957,0.164789, + 0.970325,-0.176957,0.164786,0.970325,-0.176957,0.164786,0.970325,-0.176957,0.164786,0.970325,-0.176957,0.164786, + -0.133106,-0.966685,-0.218639,-0.133106,-0.966685,-0.218639,-0.133106,-0.966685,-0.218639,-0.968504,0.177185,-0.174945, + -0.968504,0.177185,-0.174945,-0.968504,0.177185,-0.174945,-0.968504,0.177185,-0.174945,0.937307,-0.188472,0.293145, + 0.937307,-0.188472,0.293145,0.937307,-0.188472,0.293145,0.937307,-0.188472,0.293145,-0.961926,0.182747,-0.203229, + -0.961926,0.182747,-0.203229,-0.961926,0.182747,-0.203229,-0.961926,0.182747,-0.203229,0.922621,-0.191029,0.335079, + 0.922621,-0.191029,0.335079,0.922621,-0.191029,0.335079,0.922621,-0.191029,0.335079,-0.148198,-0.975099,-0.164984, + -0.148198,-0.975099,-0.164984,-0.148198,-0.975099,-0.164984,-0.148198,-0.975099,-0.164984,-0.832736,-0.257115,0.490350, + -0.832736,-0.257115,0.490350,-0.832736,-0.257115,0.490350,-0.832736,-0.257115,0.490350,0.957108,-0.189059,0.219545, + 0.957108,-0.189059,0.219545,0.957108,-0.189059,0.219545,0.957108,-0.189059,0.219545,-0.024693,-0.898105,-0.439087, + -0.024693,-0.898105,-0.439087,-0.024693,-0.898105,-0.439087,-0.864176,-0.205505,0.459312,-0.864176,-0.205505,0.459312, + -0.864176,-0.205505,0.459312,-0.864176,-0.205505,0.459312,-0.479299,-0.683889,0.550062,-0.479299,-0.683889,0.550062, + -0.479299,-0.683889,0.550062,-0.479299,-0.683889,0.550062,-0.620411,-0.536877,-0.571710,-0.620411,-0.536877,-0.571710, + -0.620411,-0.536877,-0.571710,0.642422,-0.724096,-0.250954,0.642422,-0.724096,-0.250954,0.642422,-0.724096,-0.250954, + 0.074556,-0.994974,-0.066836,0.074556,-0.994974,-0.066836,0.074556,-0.994974,-0.066836,-0.154648,-0.987180,-0.039481, + -0.154648,-0.987180,-0.039481,-0.154648,-0.987180,-0.039481,-0.154648,-0.987180,-0.039481,-0.118324,-0.974862,-0.188796, + -0.118324,-0.974862,-0.188796,-0.118324,-0.974862,-0.188796,-0.118324,-0.974862,-0.188796,0.021669,-0.999711,-0.010424, + 0.021669,-0.999711,-0.010424,0.021669,-0.999711,-0.010424,0.021669,-0.999711,-0.010424,-0.008626,-0.999793,-0.018438, + -0.008626,-0.999793,-0.018438,-0.008626,-0.999793,-0.018438,-0.008626,-0.999793,-0.018438,0.004484,-0.995359,-0.096122, + 0.004484,-0.995359,-0.096122,0.004484,-0.995359,-0.096122,0.004484,-0.995359,-0.096122,0.952201,-0.137636,0.272707, + 0.952201,-0.137636,0.272707,0.952201,-0.137636,0.272707,0.952201,-0.137636,0.272707,0.952245,-0.138209,0.272265, + 0.952245,-0.138209,0.272265,0.952245,-0.138209,0.272265,0.952245,-0.138209,0.272265,0.970561,-0.132643,0.201038, + 0.970561,-0.132643,0.201038,0.970561,-0.132643,0.201038,0.970561,-0.132643,0.201038,0.967463,-0.133666,0.214825, + 0.967463,-0.133666,0.214825,0.967463,-0.133666,0.214825,0.967463,-0.133666,0.214825,0.961090,-0.078245,0.264924, + 0.961090,-0.078245,0.264924,0.961090,-0.078245,0.264924,0.961090,-0.078245,0.264924,0.952205,-0.137601,0.272711, + 0.952205,-0.137601,0.272711,0.952205,-0.137601,0.272711,0.952205,-0.137601,0.272711,0.952250,-0.138162,0.272271, + 0.952250,-0.138162,0.272271,0.952250,-0.138162,0.272271,0.952250,-0.138162,0.272271,0.970556,-0.132671,0.201044, + 0.970556,-0.132671,0.201044,0.970556,-0.132671,0.201044,0.970556,-0.132671,0.201044,0.966328,-0.129610,0.222286, + 0.966328,-0.129610,0.222286,0.966328,-0.129610,0.222286,0.966328,-0.129610,0.222286,0.952200,-0.137623,0.272718, + 0.952200,-0.137623,0.272718,0.952200,-0.137623,0.272718,0.952200,-0.137623,0.272718,0.952244,-0.138211,0.272268, + 0.952244,-0.138211,0.272268,0.952244,-0.138211,0.272268,0.952244,-0.138211,0.272268,0.970559,-0.132659,0.201040, + 0.970559,-0.132659,0.201040,0.970559,-0.132659,0.201040,0.970559,-0.132659,0.201040,0.969347,-0.133047,0.206557, + 0.969347,-0.133047,0.206557,0.969347,-0.133047,0.206557,0.969347,-0.133047,0.206557,0.012815,-0.999916,0.001961, + 0.012815,-0.999916,0.001961,0.012815,-0.999916,0.001961,0.012815,-0.999916,0.001961,0.958658,-0.047940,0.280493, + 0.958658,-0.047940,0.280493,0.958658,-0.047940,0.280493,0.958658,-0.047940,0.280493,0.968851,-0.050465,0.242448, + 0.968851,-0.050465,0.242448,0.968851,-0.050465,0.242448,0.968851,-0.050465,0.242448,0.046545,-0.988741,-0.142216, + 0.046545,-0.988741,-0.142216,0.046545,-0.988741,-0.142216,0.046545,-0.988741,-0.142216,-0.186307,-0.081421,0.979112, + -0.186307,-0.081421,0.979112,-0.186307,-0.081421,0.979112,-0.289813,-0.053166,0.955606,-0.289813,-0.053166,0.955606, + -0.289813,-0.053166,0.955606,-0.289813,-0.053166,0.955606,0.971723,-0.129622,0.197366,0.971723,-0.129622,0.197366, + 0.971723,-0.129622,0.197366,0.971723,-0.129622,0.197366,-0.146737,-0.987700,-0.053999,-0.146737,-0.987700,-0.053999, + -0.146737,-0.987700,-0.053999,-0.146737,-0.987700,-0.053999,-0.005852,-0.998741,-0.049813,-0.005852,-0.998741,-0.049813, + -0.005852,-0.998741,-0.049813,-0.005852,-0.998741,-0.049813,0.966613,-0.076624,0.244516,0.966613,-0.076624,0.244516, + 0.966613,-0.076624,0.244516,0.966613,-0.076624,0.244516,0.967951,-0.045369,0.247006,0.967951,-0.045369,0.247006, + 0.967951,-0.045369,0.247006,0.967951,-0.045369,0.247006,0.957435,-0.202412,0.205786,0.957435,-0.202412,0.205786, + 0.957435,-0.202412,0.205786,0.957435,-0.202412,0.205786,0.964638,-0.082416,0.250360,0.964638,-0.082416,0.250360, + 0.964638,-0.082416,0.250360,0.964638,-0.082416,0.250360,0.951108,-0.204242,0.231685,0.951108,-0.204242,0.231685, + 0.951108,-0.204242,0.231685,0.951108,-0.204242,0.231685,0.958797,-0.146787,0.243232,0.958797,-0.146787,0.243232, + 0.958797,-0.146787,0.243232,0.958797,-0.146787,0.243232,-0.165802,-0.073783,0.983395,-0.165802,-0.073783,0.983395, + -0.165802,-0.073783,0.983395,-0.165658,-0.070930,0.983629,-0.165658,-0.070930,0.983629,-0.165658,-0.070930,0.983629, + 0.960145,-0.135724,0.244339,0.960145,-0.135724,0.244339,0.960145,-0.135724,0.244339,0.960145,-0.135724,0.244339, + 0.938153,-0.212281,0.273505,0.938153,-0.212281,0.273505,0.938153,-0.212281,0.273505,0.938153,-0.212281,0.273505, + 0.074557,-0.994974,-0.066844,0.074557,-0.994974,-0.066844,0.074557,-0.994974,-0.066844,0.074556,-0.994974,-0.066842, + 0.074556,-0.994974,-0.066842,0.074556,-0.994974,-0.066842,0.074555,-0.994974,-0.066841,0.074555,-0.994974,-0.066841, + 0.074555,-0.994974,-0.066841,0.953494,-0.134594,0.269693,0.953494,-0.134594,0.269693,0.953494,-0.134594,0.269693, + 0.953494,-0.134594,0.269693,0.960031,-0.136696,0.244243,0.960031,-0.136696,0.244243,0.960031,-0.136696,0.244243, + 0.960031,-0.136696,0.244243,-0.375302,-0.909294,-0.179811,-0.375302,-0.909294,-0.179811,-0.375302,-0.909294,-0.179811, + -0.577114,-0.804818,-0.138590,-0.577114,-0.804818,-0.138590,-0.577114,-0.804818,-0.138590,-0.577114,-0.804818,-0.138590, + -0.539532,-0.791358,-0.287503,-0.539532,-0.791358,-0.287503,-0.539532,-0.791358,-0.287503,-0.539532,-0.791358,-0.287503, + -0.424628,-0.897205,-0.121300,-0.424628,-0.897205,-0.121300,-0.424628,-0.897205,-0.121300,-0.424628,-0.897205,-0.121300, + -0.451826,-0.882946,-0.127515,-0.451826,-0.882946,-0.127515,-0.451826,-0.882946,-0.127515,-0.451826,-0.882946,-0.127515, + -0.438336,-0.875150,-0.204875,-0.438336,-0.875150,-0.204875,-0.438336,-0.875150,-0.204875,-0.438336,-0.875150,-0.204875, + 0.792790,-0.575526,0.200631,0.792790,-0.575526,0.200631,0.792790,-0.575526,0.200631,0.792790,-0.575526,0.200631, + 0.792583,-0.575991,0.200115,0.792583,-0.575991,0.200115,0.792583,-0.575991,0.200115,0.792583,-0.575991,0.200115, + 0.811248,-0.570294,0.128999,0.811248,-0.570294,0.128999,0.811248,-0.570294,0.128999,0.811248,-0.570294,0.128999, + 0.808077,-0.571524,0.142730,0.808077,-0.571524,0.142730,0.808077,-0.571524,0.142730,0.808077,-0.571524,0.142730, + 0.827114,-0.525660,0.198906,0.827114,-0.525660,0.198906,0.827114,-0.525660,0.198906,0.827114,-0.525660,0.198906, + 0.792792,-0.575527,0.200622,0.792792,-0.575527,0.200622,0.792792,-0.575527,0.200622,0.792792,-0.575527,0.200622, + 0.792582,-0.575992,0.200117,0.792582,-0.575992,0.200117,0.792582,-0.575992,0.200117,0.792582,-0.575992,0.200117, + 0.811242,-0.570303,0.129001,0.811242,-0.570303,0.129001,0.811242,-0.570303,0.129001,0.811242,-0.570303,0.129001, + 0.808880,-0.568352,0.150629,0.808880,-0.568352,0.150629,0.808880,-0.568352,0.150629,0.808880,-0.568352,0.150629, + 0.792816,-0.575490,0.200636,0.792816,-0.575490,0.200636,0.792816,-0.575490,0.200636,0.792816,-0.575490,0.200636, + 0.792593,-0.575979,0.200113,0.792593,-0.575979,0.200113,0.792593,-0.575979,0.200113,0.792593,-0.575979,0.200113, + 0.811258,-0.570281,0.128996,0.811258,-0.570281,0.128996,0.811258,-0.570281,0.128996,0.811258,-0.570281,0.128996, + 0.809995,-0.570808,0.134484,0.809995,-0.570808,0.134484,0.809995,-0.570808,0.134484,0.809995,-0.570808,0.134484, + -0.432617,-0.895022,-0.108524,-0.432617,-0.895022,-0.108524,-0.432617,-0.895022,-0.108524,-0.432617,-0.895022,-0.108524, + 0.838446,-0.499561,0.217822,0.838446,-0.499561,0.217822,0.838446,-0.499561,0.217822,0.838446,-0.499561,0.217822, + 0.846342,-0.501589,0.179201,0.846342,-0.501589,0.179201,0.846342,-0.501589,0.179201,0.846342,-0.501589,0.179201, + -0.397846,-0.882078,-0.252302,-0.397846,-0.882078,-0.252302,-0.397846,-0.882078,-0.252302,-0.397846,-0.882078,-0.252302, + -0.200218,-0.111688,0.973365,-0.200218,-0.111688,0.973365,-0.200218,-0.111688,0.973365,-0.280482,-0.038062,0.959104, + -0.280482,-0.038062,0.959104,-0.280482,-0.038062,0.959104,-0.280482,-0.038062,0.959104,0.813626,-0.567657,0.125613, + 0.813626,-0.567657,0.125613,0.813626,-0.567657,0.125613,0.813626,-0.567657,0.125613,-0.570299,-0.806966,-0.153507, + -0.570299,-0.806966,-0.153507,-0.570299,-0.806966,-0.153507,-0.570299,-0.806966,-0.153507,-0.448959,-0.879349,-0.158687, + -0.448959,-0.879349,-0.158687,-0.448959,-0.879349,-0.158687,-0.448959,-0.879349,-0.158687,0.832733,-0.524107,0.178513, + 0.832733,-0.524107,0.178513,0.832733,-0.524107,0.178513,0.832733,-0.524107,0.178513,0.847815,-0.497221,0.184340, + 0.847815,-0.497221,0.184340,0.847815,-0.497221,0.184340,0.847815,-0.497221,0.184340,0.768521,-0.627133,0.126804, + 0.768521,-0.627133,0.126804,0.768521,-0.627133,0.126804,0.768521,-0.627133,0.126804,0.828400,-0.529128,0.183786, + 0.828400,-0.529128,0.183786,0.828400,-0.529128,0.183786,0.828400,-0.529128,0.183786,0.762112,-0.629189,0.152666, + 0.762112,-0.629189,0.152666,0.762112,-0.629189,0.152666,0.762112,-0.629189,0.152666,0.794554,-0.582912,0.169992, + 0.794554,-0.582912,0.169992,0.794554,-0.582912,0.169992,0.794554,-0.582912,0.169992,-0.178446,-0.114451,0.977271, + -0.178446,-0.114451,0.977271,-0.178446,-0.114451,0.977271,-0.177044,-0.112010,0.977808,-0.177044,-0.112010,0.977808, + -0.177044,-0.112010,0.977808,0.800682,-0.573805,0.172207,0.800682,-0.573805,0.172207,0.800682,-0.573805,0.172207, + 0.800682,-0.573805,0.172207,0.747065,-0.635802,0.194034,0.747065,-0.635802,0.194034,0.747065,-0.635802,0.194034, + 0.747065,-0.635802,0.194034,-0.375301,-0.909295,-0.179811,-0.375301,-0.909295,-0.179811,-0.375301,-0.909295,-0.179811, + -0.375301,-0.909296,-0.179806,-0.375301,-0.909296,-0.179806,-0.375301,-0.909296,-0.179806,-0.375307,-0.909293,-0.179811, + -0.375307,-0.909293,-0.179811,-0.375307,-0.909293,-0.179811,0.795296,-0.573013,0.197890,0.795296,-0.573013,0.197890, + 0.795296,-0.573013,0.197890,0.795296,-0.573013,0.197890,0.800146,-0.574608,0.172023,0.800146,-0.574608,0.172023, + 0.800146,-0.574608,0.172023,0.800146,-0.574608,0.172023,-0.181511,0.020465,0.983176,-0.181511,0.020465,0.983176, + -0.181511,0.020465,0.983176,-0.561482,-0.816359,-0.135261,-0.561482,-0.816359,-0.135261,-0.561482,-0.816359,-0.135261, + -0.561482,-0.816359,-0.135261,-0.524117,-0.802826,-0.284204,-0.524117,-0.802826,-0.284204,-0.524117,-0.802826,-0.284204, + -0.524117,-0.802826,-0.284204,-0.800800,0.575600,-0.165540,-0.800800,0.575600,-0.165540,-0.800800,0.575600,-0.165540, + -0.800800,0.575600,-0.165540,0.771868,-0.616241,0.156419,0.771868,-0.616241,0.156419,0.771868,-0.616241,0.156419, + 0.771868,-0.616241,0.156419,0.771869,-0.616240,0.156420,0.771869,-0.616240,0.156420,0.771869,-0.616240,0.156420, + 0.771869,-0.616240,0.156420,-0.542431,-0.827027,-0.147631,-0.542431,-0.827027,-0.147631,-0.542431,-0.827027,-0.147631, + -0.542431,-0.827027,-0.147631,-0.800801,0.575599,-0.165539,-0.800801,0.575599,-0.165539,-0.800801,0.575599,-0.165539, + -0.800801,0.575599,-0.165539,-0.542429,-0.827028,-0.147635,-0.542429,-0.827028,-0.147635,-0.542429,-0.827028,-0.147635, + -0.542429,-0.827028,-0.147635,-0.438611,0.885839,-0.151362,-0.438611,0.885839,-0.151362,-0.438611,0.885839,-0.151362, + -0.438611,0.885839,-0.151362,-0.187676,-0.082255,0.978781,-0.187676,-0.082255,0.978781,-0.187676,-0.082255,0.978781, + -0.187676,-0.082255,0.978781,-0.528957,-0.818304,-0.224908,-0.528957,-0.818304,-0.224908,-0.528957,-0.818304,-0.224908, + -0.528957,-0.818304,-0.224908,-0.572700,-0.787267,-0.228527,-0.572700,-0.787267,-0.228527,-0.572700,-0.787267,-0.228527, + -0.572700,-0.787267,-0.228527,0.237804,-0.429594,0.871147,0.237804,-0.429594,0.871147,0.237804,-0.429594,0.871147, + 0.237804,-0.429594,0.871147,-0.233763,0.427032,-0.873498,-0.233763,0.427032,-0.873498,-0.233763,0.427032,-0.873498, + -0.233763,0.427032,-0.873498,-0.571988,-0.776546,-0.264207,-0.571988,-0.776546,-0.264207,-0.571988,-0.776546,-0.264207, + -0.571988,-0.776546,-0.264207,0.571992,0.776549,0.264192,0.571992,0.776549,0.264192,0.571992,0.776549,0.264192, + 0.571992,0.776549,0.264192,-0.319104,-0.125426,0.939383,-0.319104,-0.125426,0.939383,-0.319104,-0.125426,0.939383, + -0.319104,-0.125426,0.939383,0.288591,0.150008,-0.945628,0.288591,0.150008,-0.945628,0.288591,0.150008,-0.945628, + 0.288591,0.150008,-0.945628,0.761889,-0.622313,0.179586,0.761889,-0.622313,0.179586,0.761889,-0.622313,0.179586, + 0.761889,-0.622313,0.179586,-0.788925,0.607845,-0.090125,-0.788925,0.607845,-0.090125,-0.788925,0.607845,-0.090125, + -0.788925,0.607845,-0.090125,-0.562864,-0.778045,-0.278979,-0.562864,-0.778045,-0.278979,-0.562864,-0.778045,-0.278979, + -0.562864,-0.778045,-0.278979,0.562864,0.778042,0.278990,0.562864,0.778042,0.278990,0.562864,0.778042,0.278990, + 0.562864,0.778042,0.278990,0.376671,0.085555,-0.922388,0.376671,0.085555,-0.922388,0.376671,0.085555,-0.922388, + 0.376671,0.085555,-0.922388,-0.346979,-0.110310,0.931363,-0.346979,-0.110310,0.931363,-0.346979,-0.110310,0.931363, + -0.346979,-0.110310,0.931363,-0.743180,0.623973,-0.241539,-0.743180,0.623973,-0.241539,-0.743180,0.623973,-0.241539, + -0.743180,0.623973,-0.241539,0.775168,-0.612867,0.153325,0.775168,-0.612867,0.153325,0.775168,-0.612867,0.153325, + 0.775168,-0.612867,0.153325,-0.580581,-0.777076,-0.243063,-0.580581,-0.777076,-0.243063,-0.580581,-0.777076,-0.243063, + -0.580581,-0.777076,-0.243063,0.580578,0.777075,0.243070,0.580578,0.777075,0.243070,0.580578,0.777075,0.243070, + 0.580578,0.777075,0.243070,0.281895,0.113616,-0.952695,0.281895,0.113616,-0.952695,0.281895,0.113616,-0.952695, + 0.281895,0.113616,-0.952695,-0.251222,-0.138270,0.958003,-0.251222,-0.138270,0.958003,-0.251222,-0.138270,0.958003, + -0.251222,-0.138270,0.958003,-0.765641,0.623411,-0.158597,-0.765641,0.623411,-0.158597,-0.765641,0.623411,-0.158597, + -0.765641,0.623411,-0.158597,0.789241,-0.610303,0.068032,0.789241,-0.610303,0.068032,0.789241,-0.610303,0.068032, + 0.789241,-0.610303,0.068032,-0.572651,-0.777887,-0.258774,-0.572651,-0.777887,-0.258774,-0.572651,-0.777887,-0.258774, + -0.572651,-0.777887,-0.258774,-0.595372,-0.782965,-0.180272,-0.595372,-0.782965,-0.180272,-0.595372,-0.782965,-0.180272, + -0.595372,-0.782965,-0.180272,-0.595769,-0.782548,-0.180768,-0.595769,-0.782548,-0.180768,-0.595769,-0.782548,-0.180768, + -0.595769,-0.782548,-0.180768,0.768695,-0.620378,0.155688,0.768695,-0.620378,0.155688,0.768695,-0.620378,0.155688, + 0.768695,-0.620378,0.155688,0.765514,-0.621160,0.167778,0.765514,-0.621160,0.167778,0.765514,-0.621160,0.167778, + 0.765514,-0.621160,0.167778,-0.769708,0.620109,-0.151707,-0.769708,0.620109,-0.151707,-0.769708,0.620109,-0.151707, + -0.769708,0.620109,-0.151707,-0.766557,0.620921,-0.163852,-0.766557,0.620921,-0.163852,-0.766557,0.620921,-0.163852, + -0.766557,0.620921,-0.163852,-0.595767,-0.782548,-0.180774,-0.595767,-0.782548,-0.180774,-0.595767,-0.782548,-0.180774, + -0.595767,-0.782548,-0.180774,0.765505,-0.621167,0.167792,0.765505,-0.621167,0.167792,0.765505,-0.621167,0.167792, + 0.765505,-0.621167,0.167792,-0.766553,0.620926,-0.163853,-0.766553,0.620926,-0.163853,-0.766553,0.620926,-0.163853, + -0.766553,0.620926,-0.163853,-0.293678,0.464522,-0.835447,-0.293678,0.464522,-0.835447,-0.293678,0.464522,-0.835447, + -0.293678,0.464522,-0.835447,0.298439,-0.467396,0.832151,0.298439,-0.467396,0.832151,0.298439,-0.467396,0.832151, + 0.298439,-0.467396,0.832151,-0.571842,-0.786995,-0.231593,-0.571842,-0.786995,-0.231593,-0.571842,-0.786995,-0.231593, + -0.571842,-0.786995,-0.231593,-0.550202,-0.824089,-0.134746,-0.550202,-0.824089,-0.134746,-0.550202,-0.824089,-0.134746, + -0.550202,-0.824089,-0.134746,0.763007,-0.618401,0.188154,0.763007,-0.618401,0.188154,0.763007,-0.618401,0.188154, + 0.763007,-0.618401,0.188154,0.769887,-0.619955,0.151426,0.769887,-0.619955,0.151426,0.769887,-0.619955,0.151426, + 0.769887,-0.619955,0.151426,-0.515183,-0.810610,-0.278385,-0.515183,-0.810610,-0.278385,-0.515183,-0.810610,-0.278385, + -0.515183,-0.810610,-0.278385,-0.589848,-0.779940,-0.209219,-0.589848,-0.779940,-0.209219,-0.589848,-0.779940,-0.209219, + -0.589848,-0.779940,-0.209219,0.264095,0.065715,-0.962255,0.264095,0.065715,-0.962255,0.264095,0.065715,-0.962255, + 0.264095,0.065715,-0.962255,-0.012710,0.246037,0.969177,-0.012710,0.246037,0.969177,-0.012710,0.246037,0.969177, + -0.012710,0.246037,0.969177,-0.588107,-0.781353,-0.208847,-0.588107,-0.781353,-0.208847,-0.588107,-0.781353,-0.208847, + -0.588107,-0.781353,-0.208847,-0.570459,-0.775470,-0.270599,-0.570459,-0.775470,-0.270599,-0.570459,-0.775470,-0.270599, + -0.570459,-0.775470,-0.270599,-0.577544,-0.778120,-0.246926,-0.577544,-0.778120,-0.246926,-0.577544,-0.778120,-0.246926, + -0.577544,-0.778120,-0.246926,-0.595398,-0.782966,-0.180185,-0.595398,-0.782966,-0.180185,-0.595398,-0.782966,-0.180185, + -0.595398,-0.782966,-0.180185,-0.576747,-0.773933,-0.261517,-0.576747,-0.773933,-0.261517,-0.576747,-0.773933,-0.261517, + -0.576747,-0.773933,-0.261517,-0.571019,-0.776667,-0.265944,-0.571019,-0.776667,-0.265944,-0.571019,-0.776667,-0.265944, + -0.571019,-0.776667,-0.265944,-0.591118,-0.787263,-0.175490,-0.591118,-0.787263,-0.175490,-0.591118,-0.787263,-0.175490, + -0.591118,-0.787263,-0.175490,-0.266708,-0.136065,0.954124,-0.266708,-0.136065,0.954124,-0.266708,-0.136065,0.954124, + -0.574374,-0.781970,-0.242110,-0.574374,-0.781970,-0.242110,-0.574374,-0.781970,-0.242110,-0.574374,-0.781970,-0.242110, + -0.591641,-0.784184,-0.187128,-0.591641,-0.784184,-0.187128,-0.591641,-0.784184,-0.187128,-0.591641,-0.784184,-0.187128, + -0.177088,0.029440,0.983755,-0.177088,0.029440,0.983755,-0.177088,0.029440,0.983755,-0.177088,0.029440,0.983755, + -0.198430,-0.074252,0.977298,-0.198430,-0.074252,0.977298,-0.198430,-0.074252,0.977298,-0.198430,-0.074252,0.977298, + -0.187677,-0.082255,0.978781,-0.187677,-0.082255,0.978781,-0.187677,-0.082255,0.978781,-0.187677,-0.082255,0.978781, + -0.554428,-0.818581,-0.150116,-0.554428,-0.818581,-0.150116,-0.554428,-0.818581,-0.150116,-0.554428,-0.818581,-0.150116, + -0.556370,0.803252,-0.212693,-0.556370,0.803252,-0.212693,-0.556370,0.803252,-0.212693,-0.556370,0.803252,-0.212693, + -0.539612,-0.822716,-0.178767,-0.539612,-0.822716,-0.178767,-0.539612,-0.822716,-0.178767,-0.539612,-0.822716,-0.178767, + 0.771868,-0.616240,0.156421,0.771868,-0.616240,0.156421,0.771868,-0.616240,0.156421,0.771868,-0.616240,0.156421, + 0.650539,0.718324,0.246597,0.650539,0.718324,0.246597,0.650539,0.718324,0.246597,0.650539,0.718324,0.246597, + 0.590714,0.782584,0.196515,0.590714,0.782584,0.196515,0.590714,0.782584,0.196515,0.590714,0.782584,0.196515, + -0.821348,0.541308,-0.179926,-0.821348,0.541308,-0.179926,-0.821348,0.541308,-0.179926,0.222313,0.043104,-0.974022, + 0.222313,0.043104,-0.974022,0.222313,0.043104,-0.974022,0.222313,0.043104,-0.974022,0.590716,0.782583,0.196514, + 0.590716,0.782583,0.196514,0.590716,0.782583,0.196514,0.590716,0.782583,0.196514,-0.796206,0.580484,-0.170570, + -0.796206,0.580484,-0.170570,-0.796206,0.580484,-0.170570,-0.142241,0.989659,0.018506,-0.142241,0.989659,0.018506, + -0.142241,0.989659,0.018506,-0.142241,0.989659,0.018506,0.767308,-0.620656,0.161324,0.767308,-0.620656,0.161324, + 0.767308,-0.620656,0.161324,0.767308,-0.620656,0.161324,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.766548,-0.617671,0.175746,0.766548,-0.617671,0.175746, + 0.766548,-0.617671,0.175746,0.766548,-0.617671,0.175746,-0.587139,-0.782133,-0.208651,-0.587139,-0.782133,-0.208651, + -0.587139,-0.782133,-0.208651,-0.587139,-0.782133,-0.208651,-0.597139,-0.773965,-0.210721,-0.597139,-0.773965,-0.210721, + -0.597139,-0.773965,-0.210721,-0.597139,-0.773965,-0.210721,0.046076,0.292419,0.955180,0.046076,0.292419,0.955180, + 0.046076,0.292419,0.955180,0.046076,0.292419,0.955180,0.229230,0.042726,-0.972434,0.229230,0.042726,-0.972434, + 0.229230,0.042726,-0.972434,0.229230,0.042726,-0.972434,-0.004159,0.245237,0.969454,-0.004159,0.245237,0.969454, + -0.004159,0.245237,0.969454,-0.004159,0.245237,0.969454,-0.588109,-0.781352,-0.208846,-0.588109,-0.781352,-0.208846, + -0.588109,-0.781352,-0.208846,-0.588109,-0.781352,-0.208846,-0.442114,0.886108,-0.139098,-0.442114,0.886108,-0.139098, + -0.442114,0.886108,-0.139098,-0.442114,0.886108,-0.139098,-0.135852,0.990715,-0.005222,-0.135852,0.990715,-0.005222, + -0.135852,0.990715,-0.005222,-0.135852,0.990715,-0.005222,0.039835,0.277035,0.960034,0.039835,0.277035,0.960034, + 0.039835,0.277035,0.960034,0.039835,0.277035,0.960034,0.071415,0.338876,0.938117,0.071415,0.338876,0.938117, + 0.071415,0.338876,0.938117,0.071415,0.338876,0.938117,0.211006,0.005648,-0.977469,0.211006,0.005648,-0.977469, + 0.211006,0.005648,-0.977469,0.211006,0.005648,-0.977469,-0.140523,0.982661,0.120961,-0.140523,0.982661,0.120961, + -0.140523,0.982661,0.120961,0.040399,0.998952,0.021510,0.040399,0.998952,0.021510,0.040399,0.998952,0.021510, + 0.040399,0.998952,0.021510,0.812969,-0.566003,0.136827,0.812969,-0.566003,0.136827,0.812969,-0.566003,0.136827, + 0.812969,-0.566003,0.136827,0.733458,-0.654517,0.183431,0.733458,-0.654517,0.183431,0.733458,-0.654517,0.183431, + 0.733458,-0.654517,0.183431,-0.804134,-0.451248,-0.386969,-0.804134,-0.451248,-0.386969,-0.804134,-0.451248,-0.386969, + -0.804134,-0.451248,-0.386969,0.437624,-0.898072,0.044182,0.437624,-0.898072,0.044182,0.437624,-0.898072,0.044182, + 0.437624,-0.898072,0.044182,0.462093,-0.884244,-0.067702,0.462093,-0.884244,-0.067702,0.462093,-0.884244,-0.067702, + 0.462093,-0.884244,-0.067702,-0.834082,-0.381201,-0.398740,-0.834082,-0.381201,-0.398740,-0.834082,-0.381201,-0.398740, + -0.834082,-0.381201,-0.398740,-0.861234,-0.477716,-0.173386,-0.861234,-0.477716,-0.173386,-0.861234,-0.477716,-0.173386, + -0.861234,-0.477716,-0.173386,-0.898561,-0.399833,-0.180890,-0.898561,-0.399833,-0.180890,-0.898561,-0.399833,-0.180890, + -0.898561,-0.399833,-0.180890,0.460193,-0.885926,-0.057934,0.460193,-0.885926,-0.057934,0.460193,-0.885926,-0.057934, + 0.460193,-0.885926,-0.057934,-0.449764,0.893113,0.007863,-0.449764,0.893113,0.007863,-0.449764,0.893113,0.007863, + -0.449764,0.893113,0.007863,0.824179,0.464395,0.324140,0.824179,0.464395,0.324140,0.824179,0.464395,0.324140, + 0.824179,0.464395,0.324140,-0.224178,-0.063327,0.972488,-0.224178,-0.063327,0.972488,-0.224178,-0.063327,0.972488, + -0.224178,-0.063327,0.972488,-0.224178,-0.063326,0.972488,-0.224178,-0.063326,0.972488,-0.224178,-0.063326,0.972488, + -0.224178,-0.063326,0.972488,-0.224178,-0.063326,0.972489,-0.224178,-0.063326,0.972489,-0.224178,-0.063326,0.972489, + -0.224178,-0.063326,0.972489,-0.224178,-0.063327,0.972489,-0.224178,-0.063327,0.972489,-0.224178,-0.063327,0.972489, + -0.224178,-0.063327,0.972489,-0.224175,-0.063325,0.972489,-0.224175,-0.063325,0.972489,-0.224175,-0.063325,0.972489, + -0.224175,-0.063325,0.972489,-0.224178,-0.063326,0.972489,-0.224178,-0.063326,0.972489,-0.224178,-0.063326,0.972489, + -0.224178,-0.063326,0.972489,-0.224178,-0.063326,0.972488,-0.224178,-0.063326,0.972488,-0.224178,-0.063326,0.972488, + -0.224178,-0.063326,0.972488,-0.224180,-0.063325,0.972488,-0.224180,-0.063325,0.972488,-0.224180,-0.063325,0.972488, + -0.224180,-0.063325,0.972488,0.861013,0.386606,0.330443,0.861013,0.386606,0.330443,0.861013,0.386606,0.330443, + 0.861013,0.386606,0.330443,0.461224,-0.885510,-0.056083,0.461224,-0.885510,-0.056083,0.461224,-0.885510,-0.056083, + 0.461224,-0.885510,-0.056083,0.847204,0.425530,0.318071,0.847204,0.425530,0.318071,0.847204,0.425530,0.318071, + 0.847204,0.425530,0.318071,0.433567,-0.899347,0.056511,0.433567,-0.899347,0.056511,0.433567,-0.899347,0.056511, + 0.433567,-0.899347,0.056511,-0.290426,-0.124939,0.948706,-0.290426,-0.124939,0.948706,-0.290426,-0.124939,0.948706, + -0.290426,-0.124939,0.948706,-0.453887,0.890777,0.022441,-0.453887,0.890777,0.022441,-0.453887,0.890777,0.022441, + -0.453887,0.890777,0.022441,-0.877220,-0.436326,-0.200263,-0.877220,-0.436326,-0.200263,-0.877220,-0.436326,-0.200263, + -0.877220,-0.436326,-0.200263,-0.450358,0.892725,0.014805,-0.450358,0.892725,0.014805,-0.450358,0.892725,0.014805, + -0.450358,0.892725,0.014805,-0.186139,-0.072592,0.979838,-0.186139,-0.072592,0.979838,-0.186139,-0.072592,0.979838, + -0.186139,-0.072592,0.979838,0.435885,-0.898308,0.055206,0.435885,-0.898308,0.055206,0.435885,-0.898308,0.055206, + 0.435885,-0.898308,0.055206,0.418481,-0.901123,0.113364,0.418481,-0.901123,0.113364,0.418481,-0.901123,0.113364, + 0.418481,-0.901123,0.113364,-0.852649,-0.427572,-0.300286,-0.852649,-0.427572,-0.300286,-0.852649,-0.427572,-0.300286, + -0.852649,-0.427572,-0.300286,0.447483,-0.894280,0.004711,0.447483,-0.894280,0.004711,0.447483,-0.894280,0.004711, + 0.447483,-0.894280,0.004711,-0.875844,-0.436339,-0.206170,-0.875844,-0.436339,-0.206170,-0.875844,-0.436339,-0.206170, + -0.875844,-0.436339,-0.206170,0.281588,0.938520,0.199722,0.281588,0.938520,0.199722,0.281588,0.938520,0.199722, + 0.281588,0.938520,0.199722,0.312363,0.947139,0.073187,0.312363,0.947139,0.073187,0.312363,0.947139,0.073187, + 0.312363,0.947139,0.073187,-0.867014,-0.434325,-0.244229,-0.867014,-0.434325,-0.244229,-0.867014,-0.434325,-0.244229, + -0.867014,-0.434325,-0.244229,-0.863014,-0.433314,-0.259703,-0.863014,-0.433314,-0.259703,-0.863014,-0.433314,-0.259703, + -0.863014,-0.433314,-0.259703,0.919371,-0.323155,0.224338,0.919371,-0.323155,0.224338,0.919371,-0.323155,0.224338, + 0.919371,-0.323155,0.224338,0.924325,-0.321794,0.205112,0.924325,-0.321794,0.205112,0.924325,-0.321794,0.205112, + 0.924325,-0.321794,0.205112,0.448096,-0.893983,0.002139,0.448096,-0.893983,0.002139,0.448096,-0.893983,0.002139, + 0.448096,-0.893983,0.002139,0.419940,-0.901062,0.108338,0.419940,-0.901062,0.108338,0.419940,-0.901062,0.108338, + 0.419940,-0.901062,0.108338,-0.936424,0.317117,-0.150158,-0.936424,0.317117,-0.150158,-0.936424,0.317117,-0.150158, + -0.936424,0.317117,-0.150158,-0.892270,0.327696,-0.310594,-0.892270,0.327696,-0.310594,-0.892270,0.327696,-0.310594, + -0.892270,0.327696,-0.310594,-0.878962,-0.400053,-0.259584,-0.878962,-0.400053,-0.259584,-0.878962,-0.400053,-0.259584, + -0.878962,-0.400053,-0.259584,-0.852199,-0.456115,-0.256350,-0.852199,-0.456115,-0.256350,-0.852199,-0.456115,-0.256350, + -0.852199,-0.456115,-0.256350,0.412304,-0.910505,0.031397,0.412304,-0.910505,0.031397,0.412304,-0.910505,0.031397, + 0.412304,-0.910505,0.031397,0.452341,-0.889919,0.058585,0.452341,-0.889919,0.058585,0.452341,-0.889919,0.058585, + 0.452341,-0.889919,0.058585,-0.865991,-0.428308,-0.258092,-0.865991,-0.428308,-0.258092,-0.865991,-0.428308,-0.258092, + -0.865991,-0.428308,-0.258092,-0.872338,-0.435586,-0.222016,-0.872338,-0.435586,-0.222016,-0.872338,-0.435586,-0.222016, + -0.872338,-0.435586,-0.222016,-0.854901,-0.431104,-0.288608,-0.854901,-0.431104,-0.288608,-0.854901,-0.431104,-0.288608, + -0.854901,-0.431104,-0.288608,0.450090,-0.892961,-0.006338,0.450090,-0.892961,-0.006338,0.450090,-0.892961,-0.006338, + 0.450090,-0.892961,-0.006338,0.199100,-0.795924,0.571720,0.199100,-0.795924,0.571720,0.199100,-0.795924,0.571720, + 0.446867,-0.894572,0.007182,0.446867,-0.894572,0.007182,0.446867,-0.894572,0.007182,0.446867,-0.894572,0.007182, + 0.434129,-0.899973,0.039769,0.434129,-0.899973,0.039769,0.434129,-0.899973,0.039769,0.434129,-0.899973,0.039769, + 0.461957,-0.885077,-0.056869,0.461957,-0.885077,-0.056869,0.461957,-0.885077,-0.056869,0.461957,-0.885077,-0.056869, + 0.472893,-0.877405,-0.080832,0.472893,-0.877405,-0.080832,0.472893,-0.877405,-0.080832,0.472893,-0.877405,-0.080832, + 0.464586,-0.881435,-0.085040,0.464586,-0.881435,-0.085040,0.464586,-0.881435,-0.085040,0.464586,-0.881435,-0.085040, + -0.843020,-0.437134,-0.313418,-0.843020,-0.437134,-0.313418,-0.843020,-0.437134,-0.313418,-0.843020,-0.437134,-0.313418, + -0.849290,-0.425797,-0.312095,-0.849290,-0.425797,-0.312095,-0.849290,-0.425797,-0.312095,-0.849290,-0.425797,-0.312095, + -0.847412,-0.424664,-0.318675,-0.847412,-0.424664,-0.318675,-0.847412,-0.424664,-0.318675,-0.847412,-0.424664,-0.318675, + 0.461205,-0.885526,-0.055968,0.461205,-0.885526,-0.055968,0.461205,-0.885526,-0.055968,0.461205,-0.885526,-0.055968, + -0.855804,-0.431357,-0.285536,-0.855804,-0.431357,-0.285536,-0.855804,-0.431357,-0.285536,-0.855804,-0.431357,-0.285536, + 0.918275,-0.323562,0.228206,0.918275,-0.323562,0.228206,0.918275,-0.323562,0.228206,0.918275,-0.323562,0.228206, + 0.882268,0.432789,0.185195,0.882268,0.432789,0.185195,0.882268,0.432789,0.185195,0.882268,0.432789,0.185195, + -0.310623,-0.946285,-0.089765,-0.310623,-0.946285,-0.089765,-0.310623,-0.946285,-0.089765,-0.310623,-0.946285,-0.089765, + 0.460751,-0.885893,-0.053868,0.460751,-0.885893,-0.053868,0.460751,-0.885893,-0.053868,0.460751,-0.885893,-0.053868, + 0.880869,0.437286,0.181248,0.880869,0.437286,0.181248,0.880869,0.437286,0.181248,0.880869,0.437286,0.181248, + -0.944694,0.312162,-0.100534,-0.944694,0.312162,-0.100534,-0.944694,0.312162,-0.100534,-0.944694,0.312162,-0.100534, + -0.108455,0.363100,-0.925417,-0.108455,0.363100,-0.925417,-0.108455,0.363100,-0.925417,-0.108455,0.363100,-0.925417, + 0.867415,0.448403,0.215699,0.867415,0.448403,0.215699,0.867415,0.448403,0.215699,0.867415,0.448403,0.215699, + -0.154980,-0.099881,-0.982856,-0.154980,-0.099881,-0.982856,-0.154980,-0.099881,-0.982856,-0.154980,-0.099881,-0.982856, + 0.394498,-0.523661,0.755083,0.394498,-0.523661,0.755083,0.394498,-0.523661,0.755083,0.394498,-0.523661,0.755083, + 0.380871,-0.321705,-0.866858,0.380871,-0.321705,-0.866858,0.380871,-0.321705,-0.866858,0.380871,-0.321705,-0.866858, + -0.093093,-0.818314,0.567182,-0.093093,-0.818314,0.567182,-0.093093,-0.818314,0.567182,-0.093093,-0.818314,0.567182, + 0.513636,0.401105,-0.758480,0.513636,0.401105,-0.758480,0.513636,0.401105,-0.758480,0.513636,0.401105,-0.758480, + -0.220179,0.035063,-0.974829,-0.220179,0.035063,-0.974829,-0.220179,0.035063,-0.974829,-0.220179,0.035063,-0.974829, + 0.088797,-0.289762,-0.952971,0.088797,-0.289762,-0.952971,0.088797,-0.289762,-0.952971,0.088797,-0.289762,-0.952971, + 0.929175,-0.310705,0.200237,0.929175,-0.310705,0.200237,0.929175,-0.310705,0.200237,0.929175,-0.310705,0.200237, + 0.574664,-0.097678,-0.812539,0.574664,-0.097678,-0.812539,0.574664,-0.097678,-0.812539,0.574664,-0.097678,-0.812539, + 0.917793,-0.361765,0.163653,0.917793,-0.361765,0.163653,0.917793,-0.361765,0.163653,0.917793,-0.361765,0.163653, + 0.185598,0.492269,-0.850426,0.185598,0.492269,-0.850426,0.185598,0.492269,-0.850426,0.185598,0.492269,-0.850426, + 0.411843,-0.901108,0.135606,0.411843,-0.901108,0.135606,0.411843,-0.901108,0.135606,0.411843,-0.901108,0.135606, + 0.409375,-0.901861,0.138057,0.409375,-0.901861,0.138057,0.409375,-0.901861,0.138057,0.409375,-0.901861,0.138057, + 0.627987,0.265253,-0.731623,0.627987,0.265253,-0.731623,0.627987,0.265253,-0.731623,-0.000785,0.502243,-0.864726, + -0.000785,0.502243,-0.864726,-0.000785,0.502243,-0.864726,-0.206874,-0.126932,-0.970099,-0.206874,-0.126932,-0.970099, + -0.206874,-0.126932,-0.970099,0.144973,-0.693857,0.705369,0.144973,-0.693857,0.705369,0.144973,-0.693857,0.705369, + 0.144973,-0.693857,0.705369,-0.791931,-0.356621,0.495648,-0.791931,-0.356621,0.495648,-0.791931,-0.356621,0.495648, + -0.791931,-0.356621,0.495648,0.435584,-0.357766,-0.825996,0.435584,-0.357766,-0.825996,0.435584,-0.357766,-0.825996, + -0.864342,-0.386239,0.322076,-0.864342,-0.386239,0.322076,-0.864342,-0.386239,0.322076,-0.849879,-0.428657,-0.306527, + -0.849879,-0.428657,-0.306527,-0.849879,-0.428657,-0.306527,-0.849879,-0.428657,-0.306527,0.411659,-0.901108,0.136167, + 0.411659,-0.901108,0.136167,0.411659,-0.901108,0.136167,0.411659,-0.901108,0.136167,0.437588,-0.898082,0.044339, + 0.437588,-0.898082,0.044339,0.437588,-0.898082,0.044339,0.437588,-0.898082,0.044339,-0.238720,-0.098947,0.966034, + -0.238720,-0.098947,0.966034,-0.238720,-0.098947,0.966034,-0.238721,-0.098947,0.966034,-0.238721,-0.098947,0.966034, + -0.238721,-0.098947,0.966034,-0.238719,-0.098947,0.966035,-0.238719,-0.098947,0.966035,-0.238719,-0.098947,0.966035, + -0.238719,-0.098947,0.966035,-0.238721,-0.098948,0.966034,-0.238721,-0.098948,0.966034,-0.238721,-0.098948,0.966034, + -0.238721,-0.098947,0.966034,-0.238721,-0.098947,0.966034,-0.238721,-0.098947,0.966034,-0.238718,-0.098946,0.966035, + -0.238718,-0.098946,0.966035,-0.238718,-0.098946,0.966035,-0.238718,-0.098946,0.966035,-0.238719,-0.098947,0.966035, + -0.238719,-0.098947,0.966035,-0.238719,-0.098947,0.966035,-0.238719,-0.098947,0.966035,-0.448912,0.893567,0.004025, + -0.448912,0.893567,0.004025,-0.448912,0.893567,0.004025,-0.448912,0.893567,0.004025,-0.842680,-0.424583,-0.331087, + -0.842680,-0.424583,-0.331087,-0.842680,-0.424583,-0.331087,0.461223,-0.885509,-0.056097,0.461223,-0.885509,-0.056097, + 0.461223,-0.885509,-0.056097,-0.842681,-0.424585,-0.331083,-0.842681,-0.424585,-0.331083,-0.842681,-0.424585,-0.331083, + -0.842681,-0.424584,-0.331085,-0.842681,-0.424584,-0.331085,-0.842681,-0.424584,-0.331085,-0.842681,-0.424584,-0.331085, + 0.461224,-0.885509,-0.056088,0.461224,-0.885509,-0.056088,0.461224,-0.885509,-0.056088,-0.877037,-0.439934,-0.193041, + -0.877037,-0.439934,-0.193041,-0.877037,-0.439934,-0.193041,-0.877037,-0.439934,-0.193041,-0.211458,-0.152855,0.965360, + -0.211458,-0.152855,0.965360,-0.211458,-0.152855,0.965360,-0.211458,-0.152855,0.965360,-0.265108,-0.044678,0.963183, + -0.265108,-0.044678,0.963183,-0.265108,-0.044678,0.963183,-0.265108,-0.044678,0.963183,0.847657,0.429289,0.311752, + 0.847657,0.429289,0.311752,0.847657,0.429289,0.311752,0.847657,0.429289,0.311752,-0.872364,-0.435592,-0.221903, + -0.872364,-0.435592,-0.221903,-0.872364,-0.435592,-0.221903,-0.872364,-0.435592,-0.221903,0.448998,-0.893531,-0.001647, + 0.448998,-0.893531,-0.001647,0.448998,-0.893531,-0.001647,0.448998,-0.893531,-0.001647,-0.890849,-0.064342,0.449721, + -0.890849,-0.064342,0.449721,-0.890849,-0.064342,0.449721,-0.890849,-0.064342,0.449721,-0.576713,-0.618938,0.533215, + -0.576713,-0.618938,0.533215,-0.576713,-0.618938,0.533215,-0.576713,-0.618938,0.533215,-0.655618,-0.389916,-0.646630, + -0.655618,-0.389916,-0.646630,-0.655618,-0.389916,-0.646630,-0.304198,0.828370,-0.470390,-0.304198,0.828370,-0.470390, + -0.304198,0.828370,-0.470390,0.870602,0.429998,0.239069,0.870602,0.429998,0.239069,0.870602,0.429998,0.239069, + 0.870602,0.429998,0.239069,0.529971,-0.798424,-0.285743,0.529971,-0.798424,-0.285743,0.529971,-0.798424,-0.285743, + -0.629101,-0.599818,0.494419,-0.629101,-0.599818,0.494419,-0.629101,-0.599818,0.494419,-0.629101,-0.599818,0.494419, + -0.049933,-0.750548,0.658927,-0.049933,-0.750548,0.658927,-0.049933,-0.750548,0.658927,-0.049933,-0.750548,0.658927, + -0.151045,-0.869368,-0.470516,-0.151045,-0.869368,-0.470516,-0.151045,-0.869368,-0.470516,0.959472,-0.247594,-0.134574, + 0.959472,-0.247594,-0.134574,0.959472,-0.247594,-0.134574,-0.681531,0.716373,-0.149415,-0.681531,0.716373,-0.149415, + -0.681531,0.716373,-0.149415,-0.785809,-0.591956,-0.179144,-0.785809,-0.591956,-0.179144,-0.785809,-0.591956,-0.179144, + -0.785809,-0.591956,-0.179144,-0.747212,-0.578138,-0.327768,-0.747212,-0.578138,-0.327768,-0.747212,-0.578138,-0.327768, + -0.747212,-0.578138,-0.327768,-0.771647,-0.606050,-0.193040,-0.771647,-0.606050,-0.193040,-0.771647,-0.606050,-0.193040, + -0.771647,-0.606050,-0.193040,-0.771646,-0.606052,-0.193038,-0.771646,-0.606052,-0.193038,-0.771646,-0.606052,-0.193038, + -0.771646,-0.606052,-0.193038,-0.756542,-0.595696,-0.269796,-0.756542,-0.595696,-0.269796,-0.756542,-0.595696,-0.269796, + -0.756542,-0.595696,-0.269796,-0.806667,-0.548518,-0.220036,-0.806667,-0.548518,-0.220036,-0.806667,-0.548518,-0.220036, + -0.806667,-0.548518,-0.220036,-0.806901,-0.547992,-0.220487,-0.806901,-0.547992,-0.220487,-0.806901,-0.547992,-0.220487, + -0.806901,-0.547992,-0.220487,-0.787317,-0.543321,-0.291437,-0.787317,-0.543321,-0.291437,-0.787317,-0.543321,-0.291437, + -0.787317,-0.543321,-0.291437,-0.791352,-0.544545,-0.277906,-0.791352,-0.544545,-0.277906,-0.791352,-0.544545,-0.277906, + -0.791352,-0.544545,-0.277906,0.543967,-0.832751,0.103084,0.543967,-0.832751,0.103084,0.543967,-0.832751,0.103084, + 0.543967,-0.832751,0.103084,-0.806664,-0.548520,-0.220042,-0.806664,-0.548520,-0.220042,-0.806664,-0.548520,-0.220042, + -0.806664,-0.548520,-0.220042,-0.806894,-0.548005,-0.220480,-0.806894,-0.548005,-0.220480,-0.806894,-0.548005,-0.220480, + -0.806894,-0.548005,-0.220480,-0.787316,-0.543321,-0.291438,-0.787316,-0.543321,-0.291438,-0.787316,-0.543321,-0.291438, + -0.787316,-0.543321,-0.291438,-0.790834,-0.548962,-0.270596,-0.790834,-0.548962,-0.270596,-0.790834,-0.548962,-0.270596, + -0.790834,-0.548962,-0.270596,-0.806669,-0.548515,-0.220037,-0.806669,-0.548515,-0.220037,-0.806669,-0.548515,-0.220037, + -0.806669,-0.548515,-0.220037,-0.806898,-0.547999,-0.220481,-0.806898,-0.547999,-0.220481,-0.806898,-0.547999,-0.220481, + -0.806898,-0.547999,-0.220481,-0.787311,-0.543326,-0.291441,-0.787311,-0.543326,-0.291441,-0.787311,-0.543326,-0.291441, + -0.787311,-0.543326,-0.291441,-0.788943,-0.543827,-0.286044,-0.788943,-0.543827,-0.286044,-0.788943,-0.543827,-0.286044, + -0.788943,-0.543827,-0.286044,-0.777854,-0.602211,-0.179679,-0.777854,-0.602211,-0.179679,-0.777854,-0.602211,-0.179679, + -0.777854,-0.602211,-0.179679,0.540282,-0.833423,0.116195,0.540282,-0.833423,0.116195,0.540282,-0.833423,0.116195, + 0.540282,-0.833423,0.116195,0.546386,-0.833967,0.077207,0.546386,-0.833967,0.077207,0.546386,-0.833967,0.077207, + 0.546386,-0.833967,0.077207,-0.741432,-0.588205,-0.322946,-0.741432,-0.588205,-0.322946,-0.741432,-0.588205,-0.322946, + -0.741432,-0.588205,-0.322946,-0.215625,-0.125964,0.968318,-0.215625,-0.125964,0.968318,-0.215625,-0.125964,0.968318, + -0.220375,-0.051992,0.974029,-0.220375,-0.051992,0.974029,-0.220375,-0.051992,0.974029,-0.220375,-0.051992,0.974029, + -0.784632,-0.545251,-0.295048,-0.784632,-0.545251,-0.295048,-0.784632,-0.545251,-0.295048,-0.784632,-0.545251,-0.295048, + -0.780030,-0.594784,-0.194386,-0.780030,-0.594784,-0.194386,-0.780030,-0.594784,-0.194386,-0.780030,-0.594784,-0.194386, + -0.767721,-0.600432,-0.223798,-0.767721,-0.600432,-0.223798,-0.767721,-0.600432,-0.223798,-0.767721,-0.600432,-0.223798, + 0.549611,-0.831318,0.082693,0.549611,-0.831318,0.082693,0.549611,-0.831318,0.082693,0.549611,-0.831318,0.082693, + 0.549616,-0.831315,0.082691,0.549616,-0.831315,0.082691,0.549616,-0.831315,0.082691,0.549616,-0.831315,0.082691, + 0.556117,-0.829156,0.056867,0.556117,-0.829156,0.056867,0.556117,-0.829156,0.056867,0.556117,-0.829156,0.056867, + 0.543652,-0.834722,0.087644,0.543652,-0.834722,0.087644,0.543652,-0.834722,0.087644,0.543652,-0.834722,0.087644, + 0.549609,-0.831320,0.082689,0.549609,-0.831320,0.082689,0.549609,-0.831320,0.082689,0.549609,-0.831320,0.082689, + -0.805524,-0.537430,-0.249600,-0.805524,-0.537430,-0.249600,-0.805524,-0.537430,-0.249600,-0.805524,-0.537430,-0.249600, + -0.204571,-0.142172,0.968472,-0.204571,-0.142172,0.968472,-0.204571,-0.142172,0.968472,-0.204573,-0.142172,0.968472, + -0.204573,-0.142172,0.968472,-0.204573,-0.142172,0.968472,-0.799485,-0.546812,-0.248638,-0.799485,-0.546812,-0.248638, + -0.799485,-0.546812,-0.248638,-0.799485,-0.546812,-0.248638,0.533649,-0.836580,0.123907,0.533649,-0.836580,0.123907, + 0.533649,-0.836580,0.123907,0.533649,-0.836580,0.123907,-0.681533,0.716374,-0.149405,-0.681533,0.716374,-0.149405, + -0.681533,0.716374,-0.149405,-0.681529,0.716378,-0.149400,-0.681529,0.716378,-0.149400,-0.681529,0.716378,-0.149400, + -0.681533,0.716372,-0.149412,-0.681533,0.716372,-0.149412,-0.681533,0.716372,-0.149412,-0.804313,-0.550717,-0.223139, + -0.804313,-0.550717,-0.223139,-0.804313,-0.550717,-0.223139,-0.804313,-0.550717,-0.223139,-0.800017,-0.545990,-0.248731, + -0.800017,-0.545990,-0.248731,-0.800017,-0.545990,-0.248731,-0.800017,-0.545990,-0.248731,0.323684,-0.946162,0.002314, + 0.323684,-0.946162,0.002314,0.323684,-0.946162,0.002314,0.099245,-0.994694,0.027083,0.099245,-0.994694,0.027083, + 0.099245,-0.994694,0.027083,0.099245,-0.994694,0.027083,0.135144,-0.983234,-0.122418,0.135144,-0.983234,-0.122418, + 0.135144,-0.983234,-0.122418,0.135144,-0.983234,-0.122418,0.272245,-0.960451,0.058450,0.272245,-0.960451,0.058450, + 0.272245,-0.960451,0.058450,0.272245,-0.960451,0.058450,0.243154,-0.968687,0.050215,0.243154,-0.968687,0.050215, + 0.243154,-0.968687,0.050215,0.243154,-0.968687,0.050215,0.256728,-0.966093,-0.027492,0.256728,-0.966093,-0.027492, + 0.256728,-0.966093,-0.027492,0.256728,-0.966093,-0.027492,0.948905,0.124849,0.289812,0.948905,0.124849,0.289812, + 0.948905,0.124849,0.289812,0.948905,0.124849,0.289812,0.949105,0.124284,0.289401,0.949105,0.124284,0.289401, + 0.949105,0.124284,0.289401,0.949105,0.124284,0.289401,0.967267,0.129672,0.218128,0.967267,0.129672,0.218128, + 0.967267,0.129672,0.218128,0.967267,0.129672,0.218128,0.964169,0.128798,0.231926,0.964169,0.128798,0.231926, + 0.964169,0.128798,0.231926,0.964169,0.128798,0.231926,0.942800,0.183912,0.278037,0.942800,0.183912,0.278037, + 0.942800,0.183912,0.278037,0.942800,0.183912,0.278037,0.948908,0.124840,0.289807,0.948908,0.124840,0.289807, + 0.948908,0.124840,0.289807,0.948908,0.124840,0.289807,0.949106,0.124270,0.289405,0.949106,0.124270,0.289405, + 0.949106,0.124270,0.289405,0.949106,0.124270,0.289405,0.967264,0.129672,0.218141,0.967264,0.129672,0.218141, + 0.967264,0.129672,0.218141,0.967264,0.129672,0.218141,0.961863,0.132914,0.239066,0.961863,0.132914,0.239066, + 0.961863,0.132914,0.239066,0.961863,0.132914,0.239066,0.948909,0.124818,0.289813,0.948909,0.124818,0.289813, + 0.948909,0.124818,0.289813,0.948909,0.124818,0.289813,0.949103,0.124277,0.289411,0.949103,0.124277,0.289411, + 0.949103,0.124277,0.289411,0.949103,0.124277,0.289411,0.967267,0.129672,0.218130,0.967267,0.129672,0.218130, + 0.967267,0.129672,0.218130,0.967267,0.129672,0.218130,0.966057,0.129300,0.223641,0.966057,0.129300,0.223641, + 0.966057,0.129300,0.223641,0.966057,0.129300,0.223641,0.263409,-0.962087,0.070748,0.263409,-0.962087,0.070748, + 0.263409,-0.962087,0.070748,0.263409,-0.962087,0.070748,0.932437,0.213567,0.291464,0.932437,0.213567,0.291464, + 0.932437,0.213567,0.291464,0.932437,0.213567,0.291464,0.943912,0.211256,0.253774,0.943912,0.211256,0.253774, + 0.943912,0.211256,0.253774,0.943912,0.211256,0.253774,0.296954,-0.952055,-0.073554,0.296954,-0.952055,-0.073554, + 0.296954,-0.952055,-0.073554,0.296954,-0.952055,-0.073554,-0.185031,-0.062676,0.980732,-0.185031,-0.062676,0.980732, + -0.185031,-0.062676,0.980732,-0.291682,-0.063017,0.954437,-0.291682,-0.063017,0.954437,-0.291682,-0.063017,0.954437, + -0.291682,-0.063017,0.954437,0.967727,0.132645,0.214265,0.967727,0.132645,0.214265,0.967727,0.132645,0.214265, + 0.967727,0.132645,0.214265,0.107404,-0.994134,0.012695,0.107404,-0.994134,0.012695,0.107404,-0.994134,0.012695, + 0.107404,-0.994134,0.012695,0.246383,-0.968989,0.018853,0.246383,-0.968989,0.018853,0.246383,-0.968989,0.018853, + 0.246383,-0.968989,0.018853,0.948262,0.185564,0.257614,0.948262,0.185564,0.257614,0.948262,0.185564,0.257614, + 0.948262,0.185564,0.257614,0.941645,0.216233,0.257970,0.941645,0.216233,0.257970,0.941645,0.216233,0.257970, + 0.941645,0.216233,0.257970,0.971961,0.059304,0.227542,0.971961,0.059304,0.227542,0.971961,0.059304,0.227542, + 0.971961,0.059304,0.227542,0.947657,0.179842,0.263825,0.947657,0.179842,0.263825,0.947657,0.179842,0.263825, + 0.947657,0.179842,0.263825,0.965634,0.057600,0.253442,0.965634,0.057600,0.253442,0.965634,0.057600,0.253442, + 0.965634,0.057600,0.253442,0.958349,0.115760,0.261088,0.958349,0.115760,0.261088,0.958349,0.115760,0.261088, + 0.958349,0.115760,0.261088,-0.167226,-0.049855,0.984657,-0.167226,-0.049855,0.984657,-0.167226,-0.049855,0.984657, + -0.167797,-0.047049,0.984698,-0.167797,-0.047049,0.984698,-0.167797,-0.047049,0.984698,0.956847,0.126850,0.261444, + 0.956847,0.126850,0.261444,0.956847,0.126850,0.261444,0.956847,0.126850,0.261444,0.954039,0.049273,0.295604, + 0.954039,0.049273,0.295604,0.954039,0.049273,0.295604,0.954039,0.049273,0.295604,0.323683,-0.946163,0.002312, + 0.323683,-0.946163,0.002312,0.323683,-0.946163,0.002312,0.323682,-0.946163,0.002311,0.323682,-0.946163,0.002311, + 0.323682,-0.946163,0.002311,0.323682,-0.946163,0.002312,0.323682,-0.946163,0.002312,0.323682,-0.946163,0.002312, + 0.949475,0.127895,0.286602,0.949475,0.127895,0.286602,0.949475,0.127895,0.286602,0.949475,0.127895,0.286602, + 0.956983,0.125878,0.261415,0.956983,0.125878,0.261415,0.956983,0.125878,0.261415,0.956983,0.125878,0.261415, + -0.727204,0.666319,-0.164902,-0.727204,0.666319,-0.164902,-0.727204,0.666319,-0.164902,-0.743449,-0.646380,-0.171685, + -0.743449,-0.646380,-0.171685,-0.743449,-0.646380,-0.171685,-0.743449,-0.646380,-0.171685,-0.705097,-0.632615,-0.320369, + -0.705097,-0.632615,-0.320369,-0.705097,-0.632615,-0.320369,-0.705097,-0.632615,-0.320369,-0.728302,-0.659738,-0.185264, + -0.728302,-0.659738,-0.185264,-0.728302,-0.659738,-0.185264,-0.728302,-0.659738,-0.185264,-0.728303,-0.659735,-0.185268, + -0.728303,-0.659735,-0.185268,-0.728303,-0.659735,-0.185268,-0.728303,-0.659735,-0.185268,-0.713530,-0.649740,-0.262133, + -0.713530,-0.649740,-0.262133,-0.713530,-0.649740,-0.262133,-0.713530,-0.649740,-0.262133,-0.766953,-0.605172,-0.213424, + -0.766953,-0.605172,-0.213424,-0.766953,-0.605172,-0.213424,-0.766953,-0.605172,-0.213424,-0.767222,-0.604669,-0.213883, + -0.767222,-0.604669,-0.213883,-0.767222,-0.604669,-0.213883,-0.767222,-0.604669,-0.213883,-0.747634,-0.599930,-0.284828, + -0.747634,-0.599930,-0.284828,-0.747634,-0.599930,-0.284828,-0.747634,-0.599930,-0.284828,-0.751644,-0.601186,-0.271306, + -0.751644,-0.601186,-0.271306,-0.751644,-0.601186,-0.271306,-0.751644,-0.601186,-0.271306,0.597987,-0.792454,0.120113, + 0.597987,-0.792454,0.120113,0.597987,-0.792454,0.120113,0.597987,-0.792454,0.120113,-0.766955,-0.605169,-0.213426, + -0.766955,-0.605169,-0.213426,-0.766955,-0.605169,-0.213426,-0.766955,-0.605169,-0.213426,-0.767216,-0.604676,-0.213884, + -0.767216,-0.604676,-0.213884,-0.767216,-0.604676,-0.213884,-0.767216,-0.604676,-0.213884,-0.747633,-0.599931,-0.284828, + -0.747633,-0.599931,-0.284828,-0.747633,-0.599931,-0.284828,-0.747633,-0.599931,-0.284828,-0.750864,-0.605425,-0.263939, + -0.750864,-0.605425,-0.263939,-0.750864,-0.605425,-0.263939,-0.750864,-0.605425,-0.263939,-0.766955,-0.605167,-0.213430, + -0.766955,-0.605167,-0.213430,-0.766955,-0.605167,-0.213430,-0.766955,-0.605167,-0.213430,-0.767221,-0.604668,-0.213889, + -0.767221,-0.604668,-0.213889,-0.767221,-0.604668,-0.213889,-0.767221,-0.604668,-0.213889,-0.747630,-0.599934,-0.284830, + -0.747630,-0.599934,-0.284830,-0.747630,-0.599934,-0.284830,-0.747630,-0.599934,-0.284830,-0.749251,-0.600452,-0.279429, + -0.749251,-0.600452,-0.279429,-0.749251,-0.600452,-0.279429,-0.749251,-0.600452,-0.279429,-0.734826,-0.656084,-0.172002, + -0.734826,-0.656084,-0.172002,-0.734826,-0.656084,-0.172002,-0.734826,-0.656084,-0.172002,0.594287,-0.793143,0.133221, + 0.594287,-0.793143,0.133221,0.594287,-0.793143,0.133221,0.594287,-0.793143,0.133221,0.600620,-0.793957,0.094274, + 0.600620,-0.793957,0.094274,0.600620,-0.793957,0.094274,0.600620,-0.793957,0.094274,-0.698679,-0.642188,-0.315344, + -0.698679,-0.642188,-0.315344,-0.698679,-0.642188,-0.315344,-0.698679,-0.642188,-0.315344,-0.211717,-0.123125,0.969544, + -0.211717,-0.123125,0.969544,-0.211717,-0.123125,0.969544,-0.221443,-0.049551,0.973914,-0.221443,-0.049551,0.973914, + -0.221443,-0.049551,0.973914,-0.221443,-0.049551,0.973914,-0.744805,-0.601743,-0.288395,-0.744805,-0.601743,-0.288395, + -0.744805,-0.601743,-0.288395,-0.744805,-0.601743,-0.288395,-0.737417,-0.649080,-0.186847,-0.737417,-0.649080,-0.186847, + -0.737417,-0.649080,-0.186847,-0.737417,-0.649080,-0.186847,-0.724604,-0.654407,-0.216104,-0.724604,-0.654407,-0.216104, + -0.724604,-0.654407,-0.216104,-0.724604,-0.654407,-0.216104,0.603631,-0.791003,0.099719,0.603631,-0.791003,0.099719, + 0.603631,-0.791003,0.099719,0.603631,-0.791003,0.099719,0.603630,-0.791004,0.099720,0.603630,-0.791004,0.099720, + 0.603630,-0.791004,0.099720,0.603630,-0.791004,0.099720,0.610112,-0.788862,0.073892,0.610112,-0.788862,0.073892, + 0.610112,-0.788862,0.073892,0.610112,-0.788862,0.073892,0.597886,-0.794712,0.104712,0.597886,-0.794712,0.104712, + 0.597886,-0.794712,0.104712,0.597886,-0.794712,0.104712,0.603630,-0.791004,0.099720,0.603630,-0.791004,0.099720, + 0.603630,-0.791004,0.099720,0.603630,-0.791004,0.099720,-0.766411,-0.594546,-0.243165,-0.766411,-0.594546,-0.243165, + -0.766411,-0.594546,-0.243165,-0.766411,-0.594546,-0.243165,-0.199599,-0.138548,0.970033,-0.199599,-0.138548,0.970033, + -0.199599,-0.138548,0.970033,-0.199604,-0.138551,0.970032,-0.199604,-0.138551,0.970032,-0.199604,-0.138551,0.970032, + -0.759761,-0.603483,-0.242015,-0.759761,-0.603483,-0.242015,-0.759761,-0.603483,-0.242015,-0.759761,-0.603483,-0.242015, + 0.587841,-0.796600,0.140965,0.587841,-0.796600,0.140965,0.587841,-0.796600,0.140965,0.587841,-0.796600,0.140965, + -0.727203,0.666323,-0.164893,-0.727203,0.666323,-0.164893,-0.727203,0.666323,-0.164893,-0.727204,0.666320,-0.164903, + -0.727204,0.666320,-0.164903,-0.727204,0.666320,-0.164903,-0.727204,0.666320,-0.164899,-0.727204,0.666320,-0.164899, + -0.727204,0.666320,-0.164899,-0.764448,-0.607254,-0.216476,-0.764448,-0.607254,-0.216476,-0.764448,-0.607254,-0.216476, + -0.764448,-0.607254,-0.216476,-0.760347,-0.602701,-0.242122,-0.760347,-0.602701,-0.242122,-0.760347,-0.602701,-0.242122, + -0.760347,-0.602701,-0.242122,0.323680,-0.946164,0.002311,0.323680,-0.946164,0.002311,0.323680,-0.946164,0.002311, + 0.099237,-0.994695,0.027079,0.099237,-0.994695,0.027079,0.099237,-0.994695,0.027079,0.099237,-0.994695,0.027079, + 0.135135,-0.983235,-0.122419,0.135135,-0.983235,-0.122419,0.135135,-0.983235,-0.122419,0.135135,-0.983235,-0.122419, + 0.272243,-0.960452,0.058447,0.272243,-0.960452,0.058447,0.272243,-0.960452,0.058447,0.272243,-0.960452,0.058447, + 0.243155,-0.968688,0.050202,0.243155,-0.968688,0.050202,0.243155,-0.968688,0.050202,0.243155,-0.968688,0.050202, + 0.256735,-0.966091,-0.027484,0.256735,-0.966091,-0.027484,0.256735,-0.966091,-0.027484,0.256735,-0.966091,-0.027484, + 0.948905,0.124854,0.289810,0.948905,0.124854,0.289810,0.948905,0.124854,0.289810,0.948905,0.124854,0.289810, + 0.949108,0.124257,0.289405,0.949108,0.124257,0.289405,0.949108,0.124257,0.289405,0.949108,0.124257,0.289405, + 0.967266,0.129679,0.218129,0.967266,0.129679,0.218129,0.967266,0.129679,0.218129,0.967266,0.129679,0.218129, + 0.964169,0.128785,0.231932,0.964169,0.128785,0.231932,0.964169,0.128785,0.231932,0.964169,0.128785,0.231932, + 0.942799,0.183909,0.278042,0.942799,0.183909,0.278042,0.942799,0.183909,0.278042,0.942799,0.183909,0.278042, + 0.948904,0.124839,0.289821,0.948904,0.124839,0.289821,0.948904,0.124839,0.289821,0.948904,0.124839,0.289821, + 0.949105,0.124282,0.289401,0.949105,0.124282,0.289401,0.949105,0.124282,0.289401,0.949105,0.124282,0.289401, + 0.967266,0.129671,0.218134,0.967266,0.129671,0.218134,0.967266,0.129671,0.218134,0.967266,0.129671,0.218134, + 0.961865,0.132907,0.239065,0.961865,0.132907,0.239065,0.961865,0.132907,0.239065,0.961865,0.132907,0.239065, + 0.948909,0.124824,0.289813,0.948909,0.124824,0.289813,0.948909,0.124824,0.289813,0.948909,0.124824,0.289813, + 0.949105,0.124273,0.289405,0.949105,0.124273,0.289405,0.949105,0.124273,0.289405,0.949105,0.124273,0.289405, + 0.967268,0.129664,0.218128,0.967268,0.129664,0.218128,0.967268,0.129664,0.218128,0.967268,0.129664,0.218128, + 0.966053,0.129322,0.223645,0.966053,0.129322,0.223645,0.966053,0.129322,0.223645,0.966053,0.129322,0.223645, + 0.263408,-0.962087,0.070748,0.263408,-0.962087,0.070748,0.263408,-0.962087,0.070748,0.263408,-0.962087,0.070748, + 0.932434,0.213571,0.291469,0.932434,0.213571,0.291469,0.932434,0.213571,0.291469,0.932434,0.213571,0.291469, + 0.943912,0.211253,0.253777,0.943912,0.211253,0.253777,0.943912,0.211253,0.253777,0.943912,0.211253,0.253777, + 0.296954,-0.952055,-0.073553,0.296954,-0.952055,-0.073553,0.296954,-0.952055,-0.073553,0.296954,-0.952055,-0.073553, + -0.185025,-0.062671,0.980733,-0.185025,-0.062671,0.980733,-0.185025,-0.062671,0.980733,-0.291680,-0.063017,0.954438, + -0.291680,-0.063017,0.954438,-0.291680,-0.063017,0.954438,-0.291680,-0.063017,0.954438,0.967727,0.132645,0.214264, + 0.967727,0.132645,0.214264,0.967727,0.132645,0.214264,0.967727,0.132645,0.214264,0.107398,-0.994135,0.012698, + 0.107398,-0.994135,0.012698,0.107398,-0.994135,0.012698,0.107398,-0.994135,0.012698,0.246397,-0.968985,0.018858, + 0.246397,-0.968985,0.018858,0.246397,-0.968985,0.018858,0.246397,-0.968985,0.018858,0.948260,0.185569,0.257617, + 0.948260,0.185569,0.257617,0.948260,0.185569,0.257617,0.948260,0.185569,0.257617,0.941646,0.216234,0.257966, + 0.941646,0.216234,0.257966,0.941646,0.216234,0.257966,0.941646,0.216234,0.257966,0.971961,0.059306,0.227542, + 0.971961,0.059306,0.227542,0.971961,0.059306,0.227542,0.971961,0.059306,0.227542,0.947657,0.179839,0.263826, + 0.947657,0.179839,0.263826,0.947657,0.179839,0.263826,0.947657,0.179839,0.263826,0.965634,0.057598,0.253443, + 0.965634,0.057598,0.253443,0.965634,0.057598,0.253443,0.965634,0.057598,0.253443,0.958350,0.115758,0.261087, + 0.958350,0.115758,0.261087,0.958350,0.115758,0.261087,0.958350,0.115758,0.261087,-0.167225,-0.049854,0.984658, + -0.167225,-0.049854,0.984658,-0.167225,-0.049854,0.984658,-0.167797,-0.047048,0.984698,-0.167797,-0.047048,0.984698, + -0.167797,-0.047048,0.984698,0.956847,0.126850,0.261445,0.956847,0.126850,0.261445,0.956847,0.126850,0.261445, + 0.956847,0.126850,0.261445,0.954038,0.049276,0.295605,0.954038,0.049276,0.295605,0.954038,0.049276,0.295605, + 0.954038,0.049276,0.295605,0.323679,-0.946164,0.002309,0.323679,-0.946164,0.002309,0.323679,-0.946164,0.002309, + 0.323682,-0.946163,0.002312,0.323682,-0.946163,0.002312,0.323682,-0.946163,0.002312,0.323679,-0.946164,0.002310, + 0.323679,-0.946164,0.002310,0.323679,-0.946164,0.002310,0.949475,0.127895,0.286602,0.949475,0.127895,0.286602, + 0.949475,0.127895,0.286602,0.949475,0.127895,0.286602,0.956984,0.125878,0.261412,0.956984,0.125878,0.261412, + 0.956984,0.125878,0.261412,0.956984,0.125878,0.261412,0.210962,-0.035218,-0.976860,0.210962,-0.035218,-0.976860, + 0.210962,-0.035218,-0.976860,0.210962,-0.035218,-0.976860,-0.444084,0.488826,-0.750892,-0.444084,0.488826,-0.750892, + -0.444084,0.488826,-0.750892,-0.444084,0.488826,-0.750892,0.593260,0.788427,0.162559,0.593260,0.788427,0.162559, + 0.593260,0.788427,0.162559,0.593260,0.788427,0.162559,0.765990,-0.614869,0.187604,0.765990,-0.614869,0.187604, + 0.765990,-0.614869,0.187604,0.765990,-0.614869,0.187604,0.655831,-0.356148,-0.665616,0.655831,-0.356148,-0.665616, + 0.655831,-0.356148,-0.665616,0.655831,-0.356148,-0.665616,0.593145,0.788520,0.162526,0.593145,0.788520,0.162526, + 0.593145,0.788520,0.162526,0.593145,0.788520,0.162526,-0.593142,-0.788521,-0.162534,-0.593142,-0.788521,-0.162534, + -0.593142,-0.788521,-0.162534,-0.593142,-0.788521,-0.162534,-0.444074,0.488836,-0.750891,-0.444074,0.488836,-0.750891, + -0.444074,0.488836,-0.750891,-0.444074,0.488836,-0.750891,0.593147,0.788516,0.162542,0.593147,0.788516,0.162542, + 0.593147,0.788516,0.162542,0.593147,0.788516,0.162542,0.765998,-0.614855,0.187619,0.765998,-0.614855,0.187619, + 0.765998,-0.614855,0.187619,0.765998,-0.614855,0.187619,0.570930,-0.269614,-0.775466,0.570930,-0.269614,-0.775466, + 0.570930,-0.269614,-0.775466,0.570930,-0.269614,-0.775466,-0.749091,0.636682,-0.183028,-0.749091,0.636682,-0.183028, + -0.749091,0.636682,-0.183028,-0.749091,0.636682,-0.183028,-0.593146,-0.788519,-0.162525,-0.593146,-0.788519,-0.162525, + -0.593146,-0.788519,-0.162525,-0.593146,-0.788519,-0.162525,-0.444091,0.488817,-0.750893,-0.444091,0.488817,-0.750893, + -0.444091,0.488817,-0.750893,-0.444091,0.488817,-0.750893,0.593138,0.788522,0.162541,0.593138,0.788522,0.162541, + 0.593138,0.788522,0.162541,0.593138,0.788522,0.162541,0.766000,-0.614856,0.187607,0.766000,-0.614856,0.187607, + 0.766000,-0.614856,0.187607,0.766000,-0.614856,0.187607,0.594293,-0.292639,-0.749119,0.594293,-0.292639,-0.749119, + 0.594293,-0.292639,-0.749119,0.594293,-0.292639,-0.749119,-0.595264,-0.788612,-0.154115,-0.595264,-0.788612,-0.154115, + -0.595264,-0.788612,-0.154115,-0.595264,-0.788612,-0.154115,-0.593139,-0.788525,-0.162525,-0.593139,-0.788525,-0.162525, + -0.593139,-0.788525,-0.162525,-0.593139,-0.788525,-0.162525,-0.444092,0.488827,-0.750886,-0.444092,0.488827,-0.750886, + -0.444092,0.488827,-0.750886,-0.444092,0.488827,-0.750886,0.593144,0.788519,0.162536,0.593144,0.788519,0.162536, + 0.593144,0.788519,0.162536,0.593144,0.788519,0.162536,0.765977,-0.614888,0.187597,0.765977,-0.614888,0.187597, + 0.765977,-0.614888,0.187597,0.765977,-0.614888,0.187597,0.604987,-0.303341,-0.736189,0.604987,-0.303341,-0.736189, + 0.604987,-0.303341,-0.736189,0.604987,-0.303341,-0.736189,0.765992,-0.614865,0.187606,0.765992,-0.614865,0.187606, + 0.765992,-0.614865,0.187606,0.765992,-0.614865,0.187606,0.635939,-0.418401,-0.648477,0.635939,-0.418401,-0.648477, + 0.635939,-0.418401,-0.648477,0.635939,-0.418401,-0.648477,0.593147,0.788521,0.162519,0.593147,0.788521,0.162519, + 0.593147,0.788521,0.162519,0.593147,0.788521,0.162519,-0.444093,0.488827,-0.750886,-0.444093,0.488827,-0.750886, + -0.444093,0.488827,-0.750886,-0.444093,0.488827,-0.750886,-0.593147,-0.788517,-0.162533,-0.593147,-0.788517,-0.162533, + -0.593147,-0.788517,-0.162533,-0.593147,-0.788517,-0.162533,0.444075,-0.488831,0.750894,0.444075,-0.488831,0.750894, + 0.444075,-0.488831,0.750894,0.444075,-0.488831,0.750894,0.207806,-0.039329,-0.977379,0.207806,-0.039329,-0.977379, + 0.207806,-0.039329,-0.977379,0.207806,-0.039329,-0.977379,0.593148,0.788520,0.162517,0.593148,0.788520,0.162517, + 0.593148,0.788520,0.162517,0.593148,0.788520,0.162517,-0.766000,0.614859,-0.187596,-0.766000,0.614859,-0.187596, + -0.766000,0.614859,-0.187596,-0.766000,0.614859,-0.187596,-0.593151,-0.788515,-0.162529,-0.593151,-0.788515,-0.162529, + -0.593151,-0.788515,-0.162529,-0.593151,-0.788515,-0.162529,0.765994,-0.614867,0.187597,0.765994,-0.614867,0.187597, + 0.765994,-0.614867,0.187597,0.765994,-0.614867,0.187597,-0.565091,0.263963,0.781662,-0.565091,0.263963,0.781662, + -0.565091,0.263963,0.781662,-0.565091,0.263963,0.781662,-0.210970,0.035215,0.976858,-0.210970,0.035215,0.976858, + -0.210970,0.035215,0.976858,-0.210970,0.035215,0.976858,0.594573,0.781817,0.187735,0.594573,0.781817,0.187735, + 0.594573,0.781817,0.187735,0.594573,0.781817,0.187735,-0.585932,0.284328,0.758842,-0.585932,0.284328,0.758842, + -0.585932,0.284328,0.758842,-0.585932,0.284328,0.758842,-0.603382,0.301727,0.738167,-0.603382,0.301727,0.738167, + -0.603382,0.301727,0.738167,-0.603382,0.301727,0.738167,-0.635935,0.418405,0.648478,-0.635935,0.418405,0.648478, + -0.635935,0.418405,0.648478,-0.635935,0.418405,0.648478,0.444974,-0.453357,0.772311,0.444974,-0.453357,0.772311, + 0.444974,-0.453357,0.772311,0.444974,-0.453357,0.772311,-0.518281,0.550307,-0.654635,-0.518281,0.550307,-0.654635, + -0.518281,0.550307,-0.654635,-0.518281,0.550307,-0.654635,0.416602,0.840403,0.346649,0.416602,0.840403,0.346649, + 0.416602,0.840403,0.346649,0.416602,0.840403,0.346649,0.357814,0.505234,-0.785307,0.357814,0.505234,-0.785307, + 0.357814,0.505234,-0.785307,0.357814,0.505234,-0.785307,0.002044,0.840880,0.541218,0.002044,0.840880,0.541218, + 0.002044,0.840880,0.541218,0.002044,0.840880,0.541218,-0.342240,-0.851753,0.396722,-0.342240,-0.851753,0.396722, + -0.342240,-0.851753,0.396722,-0.342240,-0.851753,0.396722,-0.127711,-0.805689,-0.578408,-0.127711,-0.805689,-0.578408, + -0.127711,-0.805689,-0.578408,-0.127711,-0.805689,-0.578408,0.926509,-0.117289,0.357525,0.926509,-0.117289,0.357525, + 0.926509,-0.117289,0.357525,0.926509,-0.117289,0.357525,-0.346442,0.626901,-0.697834,-0.346442,0.626901,-0.697834, + -0.346442,0.626901,-0.697834,-0.346442,0.626901,-0.697834,-0.479186,-0.758767,-0.441196,-0.479186,-0.758767,-0.441196, + -0.479186,-0.758767,-0.441196,-0.479186,-0.758767,-0.441196,-0.594570,-0.781823,-0.187723,-0.594570,-0.781823,-0.187723, + -0.594570,-0.781823,-0.187723,-0.594570,-0.781823,-0.187723,0.887138,0.451301,0.096512,0.887138,0.451301,0.096512, + 0.887138,0.451301,0.096512,0.887138,0.451301,0.096512,0.611421,-0.253422,-0.749628,0.611421,-0.253422,-0.749628, + 0.611421,-0.253422,-0.749628,0.611421,-0.253422,-0.749628,0.530765,-0.555610,0.639989,0.530765,-0.555610,0.639989, + 0.530765,-0.555610,0.639989,0.530765,-0.555610,0.639989,-0.434377,0.895282,-0.098929,-0.434377,0.895282,-0.098929, + -0.434377,0.895282,-0.098929,-0.434377,0.895282,-0.098929,-0.902358,-0.419875,0.097238,-0.902358,-0.419875,0.097238, + -0.902358,-0.419875,0.097238,-0.902358,-0.419875,0.097238,-0.072059,-0.159740,-0.984525,-0.072059,-0.159740,-0.984525, + -0.072059,-0.159740,-0.984525,-0.072059,-0.159740,-0.984525,0.252440,-0.603760,-0.756140,0.252440,-0.603760,-0.756140, + 0.252440,-0.603760,-0.756140,0.252440,-0.603760,-0.756140,0.563316,-0.627051,0.538034,0.563316,-0.627051,0.538034, + 0.563316,-0.627051,0.538034,0.563316,-0.627051,0.538034,0.802749,0.573401,-0.163724,0.802749,0.573401,-0.163724, + 0.802749,0.573401,-0.163724,0.802749,0.573401,-0.163724,-0.499886,0.705810,-0.501943,-0.499886,0.705810,-0.501943, + -0.499886,0.705810,-0.501943,-0.499886,0.705810,-0.501943,-0.802799,-0.573342,0.163686,-0.802799,-0.573342,0.163686, + -0.802799,-0.573342,0.163686,-0.802799,-0.573342,0.163686,0.902357,0.419875,-0.097243,0.902357,0.419875,-0.097243, + 0.902357,0.419875,-0.097243,0.902357,0.419875,-0.097243,0.434375,-0.895282,0.098935,0.434375,-0.895282,0.098935, + 0.434375,-0.895282,0.098935,0.434375,-0.895282,0.098935,-0.048628,-0.125104,-0.990951,-0.048628,-0.125104,-0.990951, + -0.048628,-0.125104,-0.990951,-0.048628,-0.125104,-0.990951,-0.897314,-0.441388,-0.002225,-0.897314,-0.441388,-0.002225, + -0.897314,-0.441388,-0.002225,-0.897314,-0.441388,-0.002225,-0.946971,-0.318347,0.043611,-0.946971,-0.318347,0.043611, + -0.946971,-0.318347,0.043611,-0.946971,-0.318347,0.043611,-0.434377,0.895283,-0.098918,-0.434377,0.895283,-0.098918, + -0.434377,0.895283,-0.098918,-0.434377,0.895283,-0.098918,0.862763,0.501557,-0.063878,0.862763,0.501557,-0.063878, + 0.862763,0.501557,-0.063878,0.862763,0.501557,-0.063878,0.434381,-0.895280,0.098925,0.434381,-0.895280,0.098925, + 0.434381,-0.895280,0.098925,0.434381,-0.895280,0.098925,-0.064166,0.004200,-0.997930,-0.064166,0.004200,-0.997930, + -0.064166,0.004200,-0.997930,-0.064166,0.004200,-0.997930,0.383217,-0.905731,-0.181100,0.383217,-0.905731,-0.181100, + 0.383217,-0.905731,-0.181100,0.383217,-0.905731,-0.181100,0.387003,-0.498730,-0.775563,0.387003,-0.498730,-0.775563, + 0.387003,-0.498730,-0.775563,0.387003,-0.498730,-0.775563,-0.837543,0.287249,-0.464769,-0.837543,0.287249,-0.464769, + -0.837543,0.287249,-0.464769,-0.837543,0.287249,-0.464769,-0.506381,0.541650,-0.670965,-0.506381,0.541650,-0.670965, + -0.506381,0.541650,-0.670965,-0.506381,0.541650,-0.670965,-0.185478,0.308427,0.932990,-0.185478,0.308427,0.932990, + -0.185478,0.308427,0.932990,-0.185478,0.308427,0.932990,-0.900940,-0.426081,-0.082230,-0.900940,-0.426081,-0.082230, + -0.900940,-0.426081,-0.082230,-0.900940,-0.426081,-0.082230,-0.031186,-0.469858,-0.882191,-0.031186,-0.469858,-0.882191, + -0.031186,-0.469858,-0.882191,-0.031186,-0.469858,-0.882191,0.794948,0.519986,-0.312525,0.794948,0.519986,-0.312525, + 0.794948,0.519986,-0.312525,0.794948,0.519986,-0.312525,0.898515,0.436392,-0.047245,0.898515,0.436392,-0.047245, + 0.898515,0.436392,-0.047245,0.898515,0.436392,-0.047245,-0.091397,0.262037,0.960720,-0.091397,0.262037,0.960720, + -0.091397,0.262037,0.960720,-0.091397,0.262037,0.960720,0.295696,-0.702516,-0.647329,0.295696,-0.702516,-0.647329, + 0.295696,-0.702516,-0.647329,0.295696,-0.702516,-0.647329,0.006968,-0.153800,-0.988077,0.006968,-0.153800,-0.988077, + 0.006968,-0.153800,-0.988077,0.006968,-0.153800,-0.988077,0.364849,0.916640,-0.163267,0.364849,0.916640,-0.163267, + 0.364849,0.916640,-0.163267,0.364849,0.916640,-0.163267,0.033833,0.475298,0.879174,0.033833,0.475298,0.879174, + 0.033833,0.475298,0.879174,0.033833,0.475298,0.879174,-0.881126,-0.469483,-0.056594,-0.881126,-0.469483,-0.056594, + -0.881126,-0.469483,-0.056594,-0.881126,-0.469483,-0.056594,-0.182415,0.126321,-0.975073,-0.182415,0.126321,-0.975073, + -0.182415,0.126321,-0.975073,-0.182415,0.126321,-0.975073,0.910321,0.413603,-0.015758,0.910321,0.413603,-0.015758, + 0.910321,0.413603,-0.015758,0.910321,0.413603,-0.015758,-0.926852,0.120737,-0.355482,-0.926852,0.120737,-0.355482, + -0.926852,0.120737,-0.355482,-0.926852,0.120737,-0.355482,0.356186,-0.438062,0.825368,0.356186,-0.438062,0.825368, + 0.356186,-0.438062,0.825368,0.356186,-0.438062,0.825368,0.605107,0.781781,0.150547,0.605107,0.781781,0.150547, + 0.605107,0.781781,0.150547,0.605107,0.781781,0.150547,-0.356188,0.438066,-0.825366,-0.356188,0.438066,-0.825366, + -0.356188,0.438066,-0.825366,-0.356188,0.438066,-0.825366,-0.605097,-0.781790,-0.150537,-0.605097,-0.781790,-0.150537, + -0.605097,-0.781790,-0.150537,-0.605097,-0.781790,-0.150537,0.297735,-0.402410,0.865690,0.297735,-0.402410,0.865690, + 0.297735,-0.402410,0.865690,0.297735,-0.402410,0.865690,0.455550,0.843288,0.285200,0.455550,0.843288,0.285200, + 0.455550,0.843288,0.285200,0.455550,0.843288,0.285200,-0.297735,0.402400,-0.865695,-0.297735,0.402400,-0.865695, + -0.297735,0.402400,-0.865695,-0.297735,0.402400,-0.865695,-0.455562,-0.843280,-0.285207,-0.455562,-0.843280,-0.285207, + -0.455562,-0.843280,-0.285207,-0.455562,-0.843280,-0.285207,0.460584,-0.497921,0.734804,0.460584,-0.497921,0.734804, + 0.460584,-0.497921,0.734804,0.460584,-0.497921,0.734804,0.884893,0.459458,0.076562,0.884893,0.459458,0.076562, + 0.884893,0.459458,0.076562,0.884893,0.459458,0.076562,-0.471209,0.503688,-0.724058,-0.471209,0.503688,-0.724058, + -0.471209,0.503688,-0.724058,-0.471209,0.503688,-0.724058,-0.890066,-0.449815,-0.073814,-0.890066,-0.449815,-0.073814, + -0.890066,-0.449815,-0.073814,-0.890066,-0.449815,-0.073814,0.223677,-0.018675,-0.974484,0.223677,-0.018675,-0.974484, + 0.223677,-0.018675,-0.974484,0.223677,-0.018675,-0.974484,0.594273,0.788577,0.158070,0.594273,0.788577,0.158070, + 0.594273,0.788577,0.158070,0.594273,0.788577,0.158070,-0.765991,0.614867,-0.187606,-0.765991,0.614867,-0.187606, + -0.765991,0.614867,-0.187606,-0.765991,0.614867,-0.187606,-0.594276,-0.788574,-0.158074,-0.594276,-0.788574,-0.158074, + -0.594276,-0.788574,-0.158074,-0.594276,-0.788574,-0.158074,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603, + 0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603,0.055444,0.069750,-0.996023,0.055444,0.069750,-0.996023, + 0.055444,0.069750,-0.996023,0.055444,0.069750,-0.996023,0.593134,0.788528,0.162526,0.593134,0.788528,0.162526, + 0.593134,0.788528,0.162526,0.593134,0.788528,0.162526,-0.799182,0.601062,0.005666,-0.799182,0.601062,0.005666, + -0.799182,0.601062,0.005666,-0.799182,0.601062,0.005666,-0.593161,-0.788507,-0.162535,-0.593161,-0.788507,-0.162535, + -0.593161,-0.788507,-0.162535,-0.593161,-0.788507,-0.162535,0.799187,-0.601056,-0.005655,0.799187,-0.601056,-0.005655, + 0.799187,-0.601056,-0.005655,0.799187,-0.601056,-0.005655,0.335542,-0.667143,-0.665080,0.335542,-0.667143,-0.665080, + 0.335542,-0.667143,-0.665080,-0.937229,0.072340,-0.341129,-0.937229,0.072340,-0.341129,-0.937229,0.072340,-0.341129, + -0.937229,0.072340,-0.341129,-0.057979,-0.837986,-0.542602,-0.057979,-0.837986,-0.542602,-0.057979,-0.837986,-0.542602, + -0.369233,0.307204,-0.877093,-0.369233,0.307204,-0.877093,-0.369233,0.307204,-0.877093,-0.369233,0.307204,-0.877093, + 0.370721,-0.495421,0.785572,0.370721,-0.495421,0.785572,0.370721,-0.495421,0.785572,0.370721,-0.495421,0.785572, + 0.047209,0.834148,0.549516,0.047209,0.834148,0.549516,0.047209,0.834148,0.549516,0.047209,0.834148,0.549516, + -0.369907,0.502674,-0.781337,-0.369907,0.502674,-0.781337,-0.369907,0.502674,-0.781337,-0.369907,0.502674,-0.781337, + -0.040850,-0.832639,-0.552307,-0.040850,-0.832639,-0.552307,-0.040850,-0.832639,-0.552307,-0.040850,-0.832639,-0.552307, + -0.504370,0.521027,-0.688580,-0.504370,0.521027,-0.688580,-0.504370,0.521027,-0.688580,-0.504370,0.521027,-0.688580, + -0.529657,0.406765,-0.744316,-0.529657,0.406765,-0.744316,-0.529657,0.406765,-0.744316,-0.529657,0.406765,-0.744316, + -0.924958,-0.229805,0.302724,-0.924958,-0.229805,0.302724,-0.924958,-0.229805,0.302724,-0.924958,-0.229805,0.302724, + 0.512276,-0.391564,0.764363,0.512276,-0.391564,0.764363,0.512276,-0.391564,0.764363,0.512276,-0.391564,0.764363, + 0.925084,0.239098,-0.295045,0.925084,0.239098,-0.295045,0.925084,0.239098,-0.295045,0.925084,0.239098,-0.295045, + -0.461279,0.366000,-0.808249,-0.461279,0.366000,-0.808249,-0.461279,0.366000,-0.808249,-0.461279,0.366000,-0.808249, + -0.880037,-0.216985,0.422437,-0.880037,-0.216985,0.422437,-0.880037,-0.216985,0.422437,-0.880037,-0.216985,0.422437, + 0.461201,-0.365011,0.808740,0.461201,-0.365011,0.808740,0.461201,-0.365011,0.808740,0.461201,-0.365011,0.808740, + 0.879787,0.214047,-0.424451,0.879787,0.214047,-0.424451,0.879787,0.214047,-0.424451,0.879787,0.214047,-0.424451, + -0.687383,0.709793,-0.153944,-0.687383,0.709793,-0.153944,-0.687383,0.709793,-0.153944,0.575406,0.764560,0.290442, + 0.575406,0.764560,0.290442,0.575406,0.764560,0.290442,0.575406,0.764560,0.290442,-0.637490,-0.770226,0.018940, + -0.637490,-0.770226,0.018940,-0.637490,-0.770226,0.018940,-0.637490,-0.770226,0.018940,-0.047186,0.055453,0.997346, + -0.047186,0.055453,0.997346,-0.047186,0.055453,0.997346,-0.047186,0.055453,0.997346,0.637502,0.770216,-0.018939, + 0.637502,0.770216,-0.018939,0.637502,0.770216,-0.018939,0.637502,0.770216,-0.018939,0.039577,-0.065188,-0.997088, + 0.039577,-0.065188,-0.997088,0.039577,-0.065188,-0.997088,0.039577,-0.065188,-0.997088,-0.419665,-0.876054,-0.237509, + -0.419665,-0.876054,-0.237509,-0.419665,-0.876054,-0.237509,-0.419665,-0.876054,-0.237509,0.891635,-0.269521,0.363794, + 0.891635,-0.269521,0.363794,0.891635,-0.269521,0.363794,0.891635,-0.269521,0.363794,0.798089,-0.359691,0.483401, + 0.798089,-0.359691,0.483401,0.798089,-0.359691,0.483401,0.798089,-0.359691,0.483401,0.596278,0.777759,-0.198853, + 0.596278,0.777759,-0.198853,0.596278,0.777759,-0.198853,0.596278,0.777759,-0.198853,0.714891,-0.686846,0.131043, + 0.714891,-0.686846,0.131043,0.714891,-0.686846,0.131043,0.714891,-0.686846,0.131043,-0.898429,-0.422809,0.118568, + -0.898429,-0.422809,0.118568,-0.898429,-0.422809,0.118568,-0.898429,-0.422809,0.118568,-0.872150,0.283251,-0.398902, + -0.872150,0.283251,-0.398902,-0.872150,0.283251,-0.398902,-0.872150,0.283251,-0.398902,-0.333151,-0.753220,-0.567160, + -0.333151,-0.753220,-0.567160,-0.333151,-0.753220,-0.567160,-0.333151,-0.753220,-0.567160,0.194869,0.852215,0.485546, + 0.194869,0.852215,0.485546,0.194869,0.852215,0.485546,0.194869,0.852215,0.485546,-0.183835,-0.909041,-0.373963, + -0.183835,-0.909041,-0.373963,-0.183835,-0.909041,-0.373963,-0.183835,-0.909041,-0.373963,0.726865,-0.578285,0.370476, + 0.726865,-0.578285,0.370476,0.726865,-0.578285,0.370476,0.726865,-0.578285,0.370476,-0.751608,0.538554,-0.380848, + -0.751608,0.538554,-0.380848,-0.751608,0.538554,-0.380848,-0.751608,0.538554,-0.380848,-0.262468,0.305914,-0.915165, + -0.262468,0.305914,-0.915165,-0.262468,0.305914,-0.915165,-0.262468,0.305914,-0.915165,0.262533,-0.305868,0.915162, + 0.262533,-0.305868,0.915162,0.262533,-0.305868,0.915162,0.262533,-0.305868,0.915162,0.407123,-0.472472,0.781678, + 0.407123,-0.472472,0.781678,0.407123,-0.472472,0.781678,0.407123,-0.472472,0.781678,0.486729,-0.596138,-0.638525, + 0.486729,-0.596138,-0.638525,0.486729,-0.596138,-0.638525,0.406096,-0.450969,0.794804,0.406096,-0.450969,0.794804, + 0.406096,-0.450969,0.794804,0.406096,-0.450969,0.794804,-0.407116,0.472479,-0.781678,-0.407116,0.472479,-0.781678, + -0.407116,0.472479,-0.781678,-0.407116,0.472479,-0.781678,-0.591220,-0.788402,-0.169948,-0.591220,-0.788402,-0.169948, + -0.591220,-0.788402,-0.169948,-0.591220,-0.788402,-0.169948,0.590406,0.788316,0.173142,0.590406,0.788316,0.173142, + 0.590406,0.788316,0.173142,0.590406,0.788316,0.173142,0.764917,-0.614900,0.191833,0.764917,-0.614900,0.191833, + 0.764917,-0.614900,0.191833,0.764917,-0.614900,0.191833,-0.598429,-0.788624,-0.141263,-0.598429,-0.788624,-0.141263, + -0.598429,-0.788624,-0.141263,-0.598429,-0.788624,-0.141263,0.596865,0.788636,0.147668,0.596865,0.788636,0.147668, + 0.596865,0.788636,0.147668,0.596865,0.788636,0.147668,0.764910,-0.614911,0.191828,0.764910,-0.614911,0.191828, + 0.764910,-0.614911,0.191828,0.764910,-0.614911,0.191828,0.247845,0.013243,-0.968709,0.247845,0.013243,-0.968709, + 0.247845,0.013243,-0.968709,0.247845,0.013243,-0.968709,0.765994,-0.614864,0.187605,0.765994,-0.614864,0.187605, + 0.765994,-0.614864,0.187605,0.765994,-0.614864,0.187605,-0.247850,-0.013240,0.968708,-0.247850,-0.013240,0.968708, + -0.247850,-0.013240,0.968708,-0.247850,-0.013240,0.968708,0.247836,0.013243,-0.968711,0.247836,0.013243,-0.968711, + 0.247836,0.013243,-0.968711,0.247836,0.013243,-0.968711,0.765996,-0.614863,0.187598,0.765996,-0.614863,0.187598, + 0.765996,-0.614863,0.187598,0.765996,-0.614863,0.187598,-0.247854,-0.013237,0.968707,-0.247854,-0.013237,0.968707, + -0.247854,-0.013237,0.968707,-0.247854,-0.013237,0.968707,-0.588453,-0.787760,-0.182092,-0.588453,-0.787760,-0.182092, + -0.588453,-0.787760,-0.182092,-0.588453,-0.787760,-0.182092,0.588114,0.787694,0.183465,0.588114,0.787694,0.183465, + 0.588114,0.787694,0.183465,0.588114,0.787694,0.183465,0.766055,-0.614244,0.189376,0.766055,-0.614244,0.189376, + 0.766055,-0.614244,0.189376,0.766055,-0.614244,0.189376,-0.596388,-0.788832,-0.148547,-0.596388,-0.788832,-0.148547, + -0.596388,-0.788832,-0.148547,-0.596388,-0.788832,-0.148547,0.596172,0.788822,0.149464,0.596172,0.788822,0.149464, + 0.596172,0.788822,0.149464,0.596172,0.788822,0.149464,0.765096,-0.615521,0.189109,0.765096,-0.615521,0.189109, + 0.765096,-0.615521,0.189109,0.765096,-0.615521,0.189109,0.228297,0.028871,-0.973163,0.228297,0.028871,-0.973163, + 0.228297,0.028871,-0.973163,0.228297,0.028871,-0.973163,0.765992,-0.614866,0.187608,0.765992,-0.614866,0.187608, + 0.765992,-0.614866,0.187608,0.765992,-0.614866,0.187608,-0.228293,-0.028864,0.973165,-0.228293,-0.028864,0.973165, + -0.228293,-0.028864,0.973165,-0.228293,-0.028864,0.973165,-0.766048,0.614254,-0.189374,-0.766048,0.614254,-0.189374, + -0.766048,0.614254,-0.189374,-0.766048,0.614254,-0.189374,-0.765992,0.614866,-0.187603,-0.765992,0.614866,-0.187603, + -0.765992,0.614866,-0.187603,-0.765992,0.614866,-0.187603,-0.765096,0.615520,-0.189109,-0.765096,0.615520,-0.189109, + -0.765096,0.615520,-0.189109,-0.765096,0.615520,-0.189109,-0.764892,0.614933,-0.191827,-0.764892,0.614933,-0.191827, + -0.764892,0.614933,-0.191827,-0.764892,0.614933,-0.191827,-0.765992,0.614864,-0.187612,-0.765992,0.614864,-0.187612, + -0.765992,0.614864,-0.187612,-0.765992,0.614864,-0.187612,-0.764908,0.614912,-0.191832,-0.764908,0.614912,-0.191832, + -0.764908,0.614912,-0.191832,-0.764908,0.614912,-0.191832,-0.765993,0.614868,-0.187597,-0.765993,0.614868,-0.187597, + -0.765993,0.614868,-0.187597,-0.765993,0.614868,-0.187597,0.603589,0.778570,0.171785,0.603589,0.778570,0.171785, + 0.603589,0.778570,0.171785,0.603589,0.778570,0.171785,-0.604474,-0.777411,-0.173905,-0.604474,-0.777411,-0.173905, + -0.604474,-0.777411,-0.173905,-0.604474,-0.777411,-0.173905,-0.725632,0.449055,0.521352,-0.725632,0.449055,0.521352, + -0.725632,0.449055,0.521352,-0.725632,0.449055,0.521352,0.614454,0.763635,0.198264,0.614454,0.763635,0.198264, + 0.614454,0.763635,0.198264,0.614454,0.763635,0.198264,-0.611356,-0.768053,-0.190626,-0.611356,-0.768053,-0.190626, + -0.611356,-0.768053,-0.190626,-0.611356,-0.768053,-0.190626,-0.725605,0.449066,0.521380,-0.725605,0.449066,0.521380, + -0.725605,0.449066,0.521380,-0.725605,0.449066,0.521380,-0.342674,0.454080,-0.822427,-0.342674,0.454080,-0.822427, + -0.342674,0.454080,-0.822427,-0.342674,0.454080,-0.822427,-0.717723,0.493414,0.491341,-0.717723,0.493414,0.491341, + -0.717723,0.493414,0.491341,-0.717723,0.493414,0.491341,0.343308,-0.453273,0.822608,0.343308,-0.453273,0.822608, + 0.343308,-0.453273,0.822608,0.343308,-0.453273,0.822608,-0.343713,0.452764,-0.822719,-0.343713,0.452764,-0.822719, + -0.343713,0.452764,-0.822719,-0.343713,0.452764,-0.822719,-0.717118,0.494152,0.491482,-0.717118,0.494152,0.491482, + -0.717118,0.494152,0.491482,-0.717118,0.494152,0.491482,0.343184,-0.453444,0.822565,0.343184,-0.453444,0.822565, + 0.343184,-0.453444,0.822565,0.343184,-0.453444,0.822565,-0.624204,-0.781175,-0.011620,-0.624204,-0.781175,-0.011620, + -0.624204,-0.781175,-0.011620,-0.624204,-0.781175,-0.011620,-0.765992,0.614868,-0.187601,-0.765992,0.614868,-0.187601, + -0.765992,0.614868,-0.187601,-0.765992,0.614868,-0.187601,0.593146,0.788518,0.162533,0.593146,0.788518,0.162533, + 0.593146,0.788518,0.162533,0.593146,0.788518,0.162533,0.765993,-0.614867,0.187598,0.765993,-0.614867,0.187598, + 0.765993,-0.614867,0.187598,0.765993,-0.614867,0.187598,0.247865,0.013226,-0.968704,0.247865,0.013226,-0.968704, + 0.247865,0.013226,-0.968704,0.247865,0.013226,-0.968704,-0.247862,-0.013222,0.968705,-0.247862,-0.013222,0.968705, + -0.247862,-0.013222,0.968705,-0.247862,-0.013222,0.968705,-0.593143,-0.788521,-0.162529,-0.593143,-0.788521,-0.162529, + -0.593143,-0.788521,-0.162529,-0.593143,-0.788521,-0.162529,-0.765991,0.614867,-0.187604,-0.765991,0.614867,-0.187604, + -0.765991,0.614867,-0.187604,-0.765991,0.614867,-0.187604,0.626474,0.779435,-0.003343,0.626474,0.779435,-0.003343, + 0.626474,0.779435,-0.003343,0.626474,0.779435,-0.003343,0.765989,-0.614872,0.187601,0.765989,-0.614872,0.187601, + 0.765989,-0.614872,0.187601,0.765989,-0.614872,0.187601,0.314260,0.103578,-0.943669,0.314260,0.103578,-0.943669, + 0.314260,0.103578,-0.943669,0.314260,0.103578,-0.943669,-0.247867,-0.013224,0.968704,-0.247867,-0.013224,0.968704, + -0.247867,-0.013224,0.968704,-0.247867,-0.013224,0.968704,-0.593145,-0.788520,-0.162531,-0.593145,-0.788520,-0.162531, + -0.593145,-0.788520,-0.162531,-0.593145,-0.788520,-0.162531,-0.765996,0.614862,-0.187605,-0.765996,0.614862,-0.187605, + -0.765996,0.614862,-0.187605,-0.765996,0.614862,-0.187605,-0.593146,-0.788519,-0.162528,-0.593146,-0.788519,-0.162528, + -0.593146,-0.788519,-0.162528,-0.593146,-0.788519,-0.162528,0.765999,-0.614860,0.187596,0.765999,-0.614860,0.187596, + 0.765999,-0.614860,0.187596,0.765999,-0.614860,0.187596,0.247861,0.013220,-0.968705,0.247861,0.013220,-0.968705, + 0.247861,0.013220,-0.968705,0.247861,0.013220,-0.968705,-0.247861,-0.013223,0.968705,-0.247861,-0.013223,0.968705, + -0.247861,-0.013223,0.968705,-0.247861,-0.013223,0.968705,-0.765989,0.614871,-0.187603,-0.765989,0.614871,-0.187603, + -0.765989,0.614871,-0.187603,-0.765989,0.614871,-0.187603,0.765995,-0.614861,0.187609,0.765995,-0.614861,0.187609, + 0.765995,-0.614861,0.187609,0.765995,-0.614861,0.187609,0.340600,0.140666,-0.929626,0.340600,0.140666,-0.929626, + 0.340600,0.140666,-0.929626,0.340600,0.140666,-0.929626,-0.247872,-0.013224,0.968703,-0.247872,-0.013224,0.968703, + -0.247872,-0.013224,0.968703,-0.247872,-0.013224,0.968703,0.765992,-0.614868,0.187601,0.765992,-0.614868,0.187601, + 0.765992,-0.614868,0.187601,0.765992,-0.614868,0.187601,-0.593154,-0.788513,-0.162530,-0.593154,-0.788513,-0.162530, + -0.593154,-0.788513,-0.162530,-0.593154,-0.788513,-0.162530,0.615408,0.785739,0.062347,0.615408,0.785739,0.062347, + 0.615408,0.785739,0.062347,0.615408,0.785739,0.062347,0.247848,0.013226,-0.968709,0.247848,0.013226,-0.968709, + 0.247848,0.013226,-0.968709,0.247848,0.013226,-0.968709,-0.247867,-0.013222,0.968704,-0.247867,-0.013222,0.968704, + -0.247867,-0.013222,0.968704,-0.247867,-0.013222,0.968704,0.082382,0.843136,0.531352,0.082382,0.843136,0.531352, + 0.082382,0.843136,0.531352,0.295314,-0.293085,0.909335,0.295314,-0.293085,0.909335,0.295314,-0.293085,0.909335, + 0.295314,-0.293085,0.909335,0.221654,0.356811,0.907500,0.221654,0.356811,0.907500,0.221654,0.356811,0.907500, + 0.221654,0.356811,0.907500,-0.426825,0.894267,-0.134560,-0.426825,0.894267,-0.134560,-0.426825,0.894267,-0.134560, + -0.426825,0.894267,-0.134560,-0.551138,-0.737980,0.389401,-0.551138,-0.737980,0.389401,-0.551138,-0.737980,0.389401, + -0.551138,-0.737980,0.389401,0.317647,0.371746,0.872299,0.317647,0.371746,0.872299,0.317647,0.371746,0.872299, + 0.317647,0.371746,0.872299,0.957836,-0.128634,-0.256910,0.957836,-0.128634,-0.256910,0.957836,-0.128634,-0.256910, + 0.957836,-0.128634,-0.256910,0.279645,0.283633,0.917252,0.279645,0.283633,0.917252,0.279645,0.283633,0.917252, + 0.279645,0.283633,0.917252,0.421961,-0.896260,0.136629,0.421961,-0.896260,0.136629,0.421961,-0.896260,0.136629, + 0.421961,-0.896260,0.136629,0.245324,0.260091,0.933900,0.245324,0.260091,0.933900,0.245324,0.260091,0.933900, + 0.245324,0.260091,0.933900,-0.422248,0.896142,-0.136513,-0.422248,0.896142,-0.136513,-0.422248,0.896142,-0.136513, + -0.422248,0.896142,-0.136513,-0.866338,-0.338152,0.367576,-0.866338,-0.338152,0.367576,-0.866338,-0.338152,0.367576, + -0.866338,-0.338152,0.367576,0.287996,0.262126,0.921058,0.287996,0.262126,0.921058,0.287996,0.262126,0.921058, + 0.287996,0.262126,0.921058,0.866237,0.338365,-0.367617,0.866237,0.338365,-0.367617,0.866237,0.338365,-0.367617, + 0.866237,0.338365,-0.367617,0.738362,-0.429952,-0.519580,0.738362,-0.429952,-0.519580,0.738362,-0.429952,-0.519580, + 0.738362,-0.429952,-0.519580,0.715160,-0.389854,-0.580139,0.715160,-0.389854,-0.580139,0.715160,-0.389854,-0.580139, + 0.715160,-0.389854,-0.580139,0.738679,-0.430240,-0.518890,0.738679,-0.430240,-0.518890,0.738679,-0.430240,-0.518890, + 0.738679,-0.430240,-0.518890,0.715778,-0.389144,-0.579852,0.715778,-0.389144,-0.579852,0.715778,-0.389144,-0.579852, + 0.715778,-0.389144,-0.579852,0.345661,-0.485826,0.802802,0.345661,-0.485826,0.802802,0.345661,-0.485826,0.802802, + 0.345661,-0.485826,0.802802,-0.738367,0.429956,0.519569,-0.738367,0.429956,0.519569,-0.738367,0.429956,0.519569, + -0.738367,0.429956,0.519569,-0.342854,0.489483,-0.801784,-0.342854,0.489483,-0.801784,-0.342854,0.489483,-0.801784, + -0.342854,0.489483,-0.801784,0.329682,-0.483172,0.811083,0.329682,-0.483172,0.811083,0.329682,-0.483172,0.811083, + 0.329682,-0.483172,0.811083,-0.738668,0.430229,0.518914,-0.738668,0.430229,0.518914,-0.738668,0.430229,0.518914, + -0.738668,0.430229,0.518914,-0.332219,0.479889,-0.811996,-0.332219,0.479889,-0.811996,-0.332219,0.479889,-0.811996, + -0.332219,0.479889,-0.811996,-0.727496,0.408044,0.551588,-0.727496,0.408044,0.551588,-0.727496,0.408044,0.551588, + -0.727496,0.408044,0.551588,-0.604484,-0.759636,-0.239900,-0.604484,-0.759636,-0.239900,-0.604484,-0.759636,-0.239900, + -0.604484,-0.759636,-0.239900,0.605291,0.758359,0.241898,0.605291,0.758359,0.241898,0.605291,0.758359,0.241898, + 0.605291,0.758359,0.241898,-0.728132,0.407279,0.551314,-0.728132,0.407279,0.551314,-0.728132,0.407279,0.551314, + -0.728132,0.407279,0.551314,-0.595427,-0.773369,-0.217641,-0.595427,-0.773369,-0.217641,-0.595427,-0.773369,-0.217641, + -0.595427,-0.773369,-0.217641,0.596914,0.771214,0.221185,0.596914,0.771214,0.221185,0.596914,0.771214,0.221185, + 0.596914,0.771214,0.221185,0.725633,-0.449044,-0.521360,0.725633,-0.449044,-0.521360,0.725633,-0.449044,-0.521360, + 0.725633,-0.449044,-0.521360,0.717725,-0.493417,-0.491336,0.717725,-0.493417,-0.491336,0.717725,-0.493417,-0.491336, + 0.717725,-0.493417,-0.491336,0.725613,-0.449043,-0.521388,0.725613,-0.449043,-0.521388,0.725613,-0.449043,-0.521388, + 0.725613,-0.449043,-0.521388,0.717120,-0.494144,-0.491488,0.717120,-0.494144,-0.491488,0.717120,-0.494144,-0.491488, + 0.717120,-0.494144,-0.491488,0.341521,0.854406,-0.391606,0.341521,0.854406,-0.391606,0.341521,0.854406,-0.391606, + 0.341521,0.854406,-0.391606,-0.357818,-0.508958,0.782897,-0.357818,-0.508958,0.782897,-0.357818,-0.508958,0.782897, + -0.357818,-0.508958,0.782897,0.910158,-0.024728,0.413522,0.910158,-0.024728,0.413522,0.910158,-0.024728,0.413522, + 0.910158,-0.024728,0.413522,-0.909762,0.022908,-0.414498,-0.909762,0.022908,-0.414498,-0.909762,0.022908,-0.414498, + -0.909762,0.022908,-0.414498,-0.862760,-0.501562,0.063878,-0.862760,-0.501562,0.063878,-0.862760,-0.501562,0.063878, + -0.862760,-0.501562,0.063878,0.946973,0.318343,-0.043600,0.946973,0.318343,-0.043600,0.946973,0.318343,-0.043600, + 0.946973,0.318343,-0.043600,0.029841,-0.190161,-0.981299,0.029841,-0.190161,-0.981299,0.029841,-0.190161,-0.981299, + 0.029841,-0.190161,-0.981299,-0.330809,-0.288388,-0.898553,-0.330809,-0.288388,-0.898553,-0.330809,-0.288388,-0.898553, + -0.330809,-0.288388,-0.898553,0.081267,-0.979874,-0.182323,0.081267,-0.979874,-0.182323,0.081267,-0.979874,-0.182323, + 0.081267,-0.979874,-0.182323,0.553257,-0.367938,-0.747348,0.553257,-0.367938,-0.747348,0.553257,-0.367938,-0.747348, + 0.553257,-0.367938,-0.747348,-0.541528,0.515656,-0.663962,-0.541528,0.515656,-0.663962,-0.541528,0.515656,-0.663962, + -0.541528,0.515656,-0.663962,-0.179815,0.963092,0.200301,-0.179815,0.963092,0.200301,-0.179815,0.963092,0.200301, + -0.179815,0.963092,0.200301,0.170312,-0.966939,-0.189795,0.170312,-0.966939,-0.189795,0.170312,-0.966939,-0.189795, + 0.170312,-0.966939,-0.189795,-0.827607,0.053868,-0.558717,-0.827607,0.053868,-0.558717,-0.827607,0.053868,-0.558717, + -0.827607,0.053868,-0.558717,0.276581,-0.221339,0.935153,0.276581,-0.221339,0.935153,0.276581,-0.221339,0.935153, + 0.276581,-0.221339,0.935153,0.603168,0.785614,-0.137834,0.603168,0.785614,-0.137834,0.603168,0.785614,-0.137834, + 0.603168,0.785614,-0.137834,-0.280425,0.223809,-0.933419,-0.280425,0.223809,-0.933419,-0.280425,0.223809,-0.933419, + -0.280425,0.223809,-0.933419,-0.439378,-0.888333,-0.133460,-0.439378,-0.888333,-0.133460,-0.439378,-0.888333,-0.133460, + -0.439378,-0.888333,-0.133460,-0.611556,-0.776010,0.154300,-0.611556,-0.776010,0.154300,-0.611556,-0.776010,0.154300, + -0.611556,-0.776010,0.154300,-0.763328,0.490157,-0.420804,-0.763328,0.490157,-0.420804,-0.763328,0.490157,-0.420804, + -0.763328,0.490157,-0.420804,0.450499,0.883873,0.125775,0.450499,0.883873,0.125775,0.450499,0.883873,0.125775, + 0.450499,0.883873,0.125775,0.765148,-0.492757,0.414415,0.765148,-0.492757,0.414415,0.765148,-0.492757,0.414415, + 0.765148,-0.492757,0.414415,-0.186688,0.480460,0.856916,-0.186688,0.480460,0.856916,-0.186688,0.480460,0.856916, + -0.186688,0.480460,0.856916,0.763042,-0.047667,0.644589,0.763042,-0.047667,0.644589,0.763042,-0.047667,0.644589, + 0.763042,-0.047667,0.644589,0.809854,-0.041240,0.585181,0.809854,-0.041240,0.585181,0.809854,-0.041240,0.585181, + 0.809854,-0.041240,0.585181,-0.431832,-0.814115,0.388250,-0.431832,-0.814115,0.388250,-0.431832,-0.814115,0.388250, + -0.431832,-0.814115,0.388250,-0.763815,0.047773,-0.643665,-0.763815,0.047773,-0.643665,-0.763815,0.047773,-0.643665, + -0.763815,0.047773,-0.643665,0.430408,0.815289,-0.387367,0.430408,0.815289,-0.387367,0.430408,0.815289,-0.387367, + 0.430408,0.815289,-0.387367,-0.859837,0.304178,0.410068,-0.859837,0.304178,0.410068,-0.859837,0.304178,0.410068, + -0.859837,0.304178,0.410068,-0.143077,-0.203700,-0.968522,-0.143077,-0.203700,-0.968522,-0.143077,-0.203700,-0.968522, + -0.143077,-0.203700,-0.968522,0.375164,-0.916844,-0.136561,0.375164,-0.916844,-0.136561,0.375164,-0.916844,-0.136561, + 0.375164,-0.916844,-0.136561,-0.029844,0.190165,0.981299,-0.029844,0.190165,0.981299,-0.029844,0.190165,0.981299, + -0.029844,0.190165,0.981299,0.064155,-0.004200,0.997931,0.064155,-0.004200,0.997931,0.064155,-0.004200,0.997931, + 0.064155,-0.004200,0.997931,-0.392765,-0.777975,-0.490397,-0.392765,-0.777975,-0.490397,-0.392765,-0.777975,-0.490397, + -0.392765,-0.777975,-0.490397,-0.765992,0.614867,-0.187603,-0.765992,0.614867,-0.187603,-0.765992,0.614867,-0.187603, + -0.765992,0.614867,-0.187603,0.422004,0.723391,0.546461,0.422004,0.723391,0.546461,0.422004,0.723391,0.546461, + 0.422004,0.723391,0.546461,0.765995,-0.614862,0.187606,0.765995,-0.614862,0.187606,0.765995,-0.614862,0.187606, + 0.765995,-0.614862,0.187606,0.532909,0.525418,-0.663283,0.532909,0.525418,-0.663283,0.532909,0.525418,-0.663283, + 0.532909,0.525418,-0.663283,-0.535388,-0.523549,0.662763,-0.535388,-0.523549,0.662763,-0.535388,-0.523549,0.662763, + -0.535388,-0.523549,0.662763,-0.343408,-0.706559,-0.618745,-0.343408,-0.706559,-0.618745,-0.343408,-0.706559,-0.618745, + -0.343408,-0.706559,-0.618745,0.593056,0.718084,0.364199,0.593056,0.718084,0.364199,0.593056,0.718084,0.364199, + 0.593056,0.718084,0.364199,0.734533,0.334998,-0.590117,0.734533,0.334998,-0.590117,0.734533,0.334998,-0.590117, + 0.734533,0.334998,-0.590117,-0.736112,-0.333111,0.589217,-0.736112,-0.333111,0.589217,-0.736112,-0.333111,0.589217, + -0.736112,-0.333111,0.589217,0.962600,0.269421,0.028533,0.962600,0.269421,0.028533,0.962600,0.269421,0.028533, + 0.962600,0.269421,0.028533,-0.356542,-0.919656,0.164654,-0.356542,-0.919656,0.164654,-0.356542,-0.919656,0.164654, + -0.356542,-0.919656,0.164654,-0.003096,0.152533,0.988293,-0.003096,0.152533,0.988293,-0.003096,0.152533,0.988293, + -0.003096,0.152533,0.988293,0.099290,-0.256687,-0.961381,0.099290,-0.256687,-0.961381,0.099290,-0.256687,-0.961381, + 0.099290,-0.256687,-0.961381,0.518131,0.844711,-0.134180,0.518131,0.844711,-0.134180,0.518131,0.844711,-0.134180, + 0.518131,0.844711,-0.134180,-0.503681,-0.852921,0.137226,-0.503681,-0.852921,0.137226,-0.503681,-0.852921,0.137226, + -0.503681,-0.852921,0.137226,-0.808918,0.251737,-0.531300,-0.808918,0.251737,-0.531300,-0.808918,0.251737,-0.531300, + -0.808918,0.251737,-0.531300,0.443447,0.872878,0.203566,0.443447,0.872878,0.203566,0.443447,0.872878,0.203566, + 0.443447,0.872878,0.203566,-0.310886,-0.003552,0.950441,-0.310886,-0.003552,0.950441,-0.310886,-0.003552,0.950441, + -0.310886,-0.003552,0.950441,-0.683669,-0.688489,0.242031,-0.683669,-0.688489,0.242031,-0.683669,-0.688489,0.242031, + -0.683669,-0.688489,0.242031,0.765585,-0.466963,0.442521,0.765585,-0.466963,0.442521,0.765585,-0.466963,0.442521, + 0.765585,-0.466963,0.442521,0.788746,-0.449665,0.419143,0.788746,-0.449665,0.419143,0.788746,-0.449665,0.419143, + 0.788746,-0.449665,0.419143,-0.769326,0.469968,-0.432745,-0.769326,0.469968,-0.432745,-0.769326,0.469968,-0.432745, + -0.769326,0.469968,-0.432745,-0.067339,-0.863611,-0.499642,-0.067339,-0.863611,-0.499642,-0.067339,-0.863611,-0.499642, + -0.067339,-0.863611,-0.499642,0.240822,0.760541,0.602978,0.240822,0.760541,0.602978,0.240822,0.760541,0.602978, + 0.240822,0.760541,0.602978,-0.817702,0.269635,-0.508586,-0.817702,0.269635,-0.508586,-0.817702,0.269635,-0.508586, + -0.817702,0.269635,-0.508586,0.659508,0.722298,-0.208169,0.659508,0.722298,-0.208169,0.659508,0.722298,-0.208169, + 0.659508,0.722298,-0.208169,-0.670859,0.457726,0.583468,-0.670859,0.457726,0.583468,-0.670859,0.457726,0.583468, + -0.670859,0.457726,0.583468,-0.521972,-0.668842,-0.529336,-0.521972,-0.668842,-0.529336,-0.521972,-0.668842,-0.529336, + -0.521972,-0.668842,-0.529336,0.560232,0.504207,-0.657202,0.560232,0.504207,-0.657202,0.560232,0.504207,-0.657202, + 0.560232,0.504207,-0.657202,-0.562785,-0.502176,0.656576,-0.562785,-0.502176,0.656576,-0.562785,-0.502176,0.656576, + -0.562785,-0.502176,0.656576,0.468615,0.822650,0.321942,0.468615,0.822650,0.321942,0.468615,0.822650,0.321942, + 0.468615,0.822650,0.321942,0.048632,0.125099,0.990952,0.048632,0.125099,0.990952,0.048632,0.125099,0.990952, + 0.048632,0.125099,0.990952,-0.258046,0.610280,0.748980,-0.258046,0.610280,0.748980,-0.258046,0.610280,0.748980, + -0.258046,0.610280,0.748980,-0.904942,-0.409014,-0.117416,-0.904942,-0.409014,-0.117416,-0.904942,-0.409014,-0.117416, + -0.904942,-0.409014,-0.117416,0.913925,0.405186,0.023777,0.913925,0.405186,0.023777,0.913925,0.405186,0.023777, + 0.913925,0.405186,0.023777,0.186236,-0.508523,-0.840667,0.186236,-0.508523,-0.840667,0.186236,-0.508523,-0.840667, + 0.186236,-0.508523,-0.840667,-0.877174,-0.477525,-0.050364,-0.877174,-0.477525,-0.050364,-0.877174,-0.477525,-0.050364, + -0.877174,-0.477525,-0.050364,-0.186258,0.090025,-0.978368,-0.186258,0.090025,-0.978368,-0.186258,0.090025,-0.978368, + -0.186258,0.090025,-0.978368,0.899217,0.435064,-0.046136,0.899217,0.435064,-0.046136,0.899217,0.435064,-0.046136, + 0.899217,0.435064,-0.046136,0.211631,-0.977318,0.007903,0.211631,-0.977318,0.007903,0.211631,-0.977318,0.007903, + 0.211631,-0.977318,0.007903,0.465291,0.130773,0.875444,0.465291,0.130773,0.875444,0.465291,0.130773,0.875444, + 0.465291,0.130773,0.875444,-0.297561,-0.162178,-0.940827,-0.297561,-0.162178,-0.940827,-0.297561,-0.162178,-0.940827, + -0.297561,-0.162178,-0.940827,-0.200351,0.979526,0.019686,-0.200351,0.979526,0.019686,-0.200351,0.979526,0.019686, + -0.200351,0.979526,0.019686,0.312481,0.070307,0.947318,0.312481,0.070307,0.947318,0.312481,0.070307,0.947318, + 0.312481,0.070307,0.947318,-0.465289,-0.130767,-0.875446,-0.465289,-0.130767,-0.875446,-0.465289,-0.130767,-0.875446, + -0.465289,-0.130767,-0.875446,-0.391634,0.918582,0.053195,-0.391634,0.918582,0.053195,-0.391634,0.918582,0.053195, + -0.391634,0.918582,0.053195,0.391635,-0.918582,-0.053185,0.391635,-0.918582,-0.053185,0.391635,-0.918582,-0.053185, + 0.391635,-0.918582,-0.053185,0.921964,0.351613,-0.162328,0.921964,0.351613,-0.162328,0.921964,0.351613,-0.162328, + 0.921964,0.351613,-0.162328,0.287932,-0.598135,-0.747883,0.287932,-0.598135,-0.747883,0.287932,-0.598135,-0.747883, + 0.287932,-0.598135,-0.747883,-0.555894,0.523990,-0.645303,-0.555894,0.523990,-0.645303,-0.555894,0.523990,-0.645303, + -0.555894,0.523990,-0.645303,-0.114840,0.052578,0.991991,-0.114840,0.052578,0.991991,-0.114840,0.052578,0.991991, + -0.114840,0.052578,0.991991,0.209323,0.519748,0.828279,0.209323,0.519748,0.828279,0.209323,0.519748,0.828279, + 0.209323,0.519748,0.828279,-0.292009,-0.007119,0.956389,-0.292009,-0.007119,0.956389,-0.292009,-0.007119,0.956389, + -0.292009,-0.007119,0.956389,0.538712,0.787819,0.298547,0.538712,0.787819,0.298547,0.538712,0.787819,0.298547, + 0.538712,0.787819,0.298547,-0.193059,0.152649,0.969240,-0.193059,0.152649,0.969240,-0.193059,0.152649,0.969240, + -0.193059,0.152649,0.969240,0.564921,0.769769,0.297187,0.564921,0.769769,0.297187,0.564921,0.769769,0.297187, + 0.564921,0.769769,0.297187,-0.171851,0.183110,0.967956,-0.171851,0.183110,0.967956,-0.171851,0.183110,0.967956, + -0.171851,0.183110,0.967956,0.549743,0.772114,0.318784,0.549743,0.772114,0.318784,0.549743,0.772114,0.318784, + 0.549743,0.772114,0.318784,0.139489,0.132636,-0.981300,0.139489,0.132636,-0.981300,0.139489,0.132636,-0.981300, + 0.139489,0.132636,-0.981300,-0.798497,0.601970,0.005843,-0.798497,0.601970,0.005843,-0.798497,0.601970,0.005843, + -0.798497,0.601970,0.005843,0.799875,-0.600142,-0.005470,0.799875,-0.600142,-0.005470,0.799875,-0.600142,-0.005470, + 0.799875,-0.600142,-0.005470,0.094697,-0.180611,-0.978985,0.094697,-0.180611,-0.978985,0.094697,-0.180611,-0.978985, + 0.094697,-0.180611,-0.978985,-0.755498,0.628522,-0.184887,-0.755498,0.628522,-0.184887,-0.755498,0.628522,-0.184887, + -0.755498,0.628522,-0.184887,0.765995,-0.614862,0.187606,0.765995,-0.614862,0.187606,0.765995,-0.614862,0.187606, + 0.765995,-0.614862,0.187606,-0.091025,0.185041,0.978506,-0.091025,0.185041,0.978506,-0.091025,0.185041,0.978506, + -0.091025,0.185041,0.978506,0.260154,0.029626,-0.965112,0.260154,0.029626,-0.965112,0.260154,0.029626,-0.965112, + 0.260154,0.029626,-0.965112,-0.765991,0.614868,-0.187603,-0.765991,0.614868,-0.187603,-0.765991,0.614868,-0.187603, + -0.765991,0.614868,-0.187603,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603, + 0.765992,-0.614867,0.187603,0.272209,0.045839,-0.961146,0.272209,0.045839,-0.961146,0.272209,0.045839,-0.961146, + 0.272209,0.045839,-0.961146,-0.765995,0.614865,-0.187597,-0.765995,0.614865,-0.187597,-0.765995,0.614865,-0.187597, + -0.765995,0.614865,-0.187597,0.765990,-0.614870,0.187599,0.765990,-0.614870,0.187599,0.765990,-0.614870,0.187599, + 0.765990,-0.614870,0.187599,0.696915,-0.338250,-0.632373,0.696915,-0.338250,-0.632373,0.696915,-0.338250,-0.632373, + 0.696915,-0.338250,-0.632373,-0.444077,0.488826,-0.750896,-0.444077,0.488826,-0.750896,-0.444077,0.488826,-0.750896, + -0.444077,0.488826,-0.750896,0.444091,-0.488829,0.750886,0.444091,-0.488829,0.750886,0.444091,-0.488829,0.750886, + 0.444091,-0.488829,0.750886,-0.696914,0.338257,0.632371,-0.696914,0.338257,0.632371,-0.696914,0.338257,0.632371, + -0.696914,0.338257,0.632371,-0.093477,0.258943,0.961359,-0.093477,0.258943,0.961359,-0.093477,0.258943,0.961359, + -0.093477,0.258943,0.961359,0.590694,0.790092,0.163814,0.590694,0.790092,0.163814,0.590694,0.790092,0.163814, + 0.590694,0.790092,0.163814,-0.032358,0.292166,0.955820,-0.032358,0.292166,0.955820,-0.032358,0.292166,0.955820, + -0.032358,0.292166,0.955820,0.490031,0.759951,0.427017,0.490031,0.759951,0.427017,0.490031,0.759951,0.427017, + 0.490031,0.759951,0.427017,-0.147186,-0.382937,-0.911974,-0.147186,-0.382937,-0.911974,-0.147186,-0.382937,-0.911974, + -0.147186,-0.382937,-0.911974,-0.144512,0.988202,0.050717,-0.144512,0.988202,0.050717,-0.144512,0.988202,0.050717, + -0.144512,0.988202,0.050717,-0.415450,0.909454,-0.017142,-0.415450,0.909454,-0.017142,-0.415450,0.909454,-0.017142, + -0.415450,0.909454,-0.017142,-0.415450,0.909454,-0.017142,-0.823268,0.292885,0.486260,-0.823268,0.292885,0.486260, + -0.823268,0.292885,0.486260,-0.707086,0.414997,0.572543,-0.707086,0.414997,0.572543,-0.707086,0.414997,0.572543, + -0.707086,0.414997,0.572543,-0.747987,0.450487,0.487419,-0.747987,0.450487,0.487419,-0.747987,0.450487,0.487419, + -0.747987,0.450487,0.487419,-0.717920,0.428890,0.548310,-0.717920,0.428890,0.548310,-0.717920,0.428890,0.548310, + 0.807659,-0.353243,-0.472129,0.807659,-0.353243,-0.472129,0.807659,-0.353243,-0.472129,0.694033,-0.385467,-0.608057, + 0.694033,-0.385467,-0.608057,0.694033,-0.385467,-0.608057,0.694033,-0.385467,-0.608057,0.758087,-0.459573,-0.462705, + 0.758087,-0.459573,-0.462705,0.758087,-0.459573,-0.462705,0.758087,-0.459573,-0.462705,0.593148,0.788518,0.162530, + 0.593148,0.788518,0.162530,0.593148,0.788518,0.162530,0.593148,0.788518,0.162530,-0.560312,-0.794398,-0.234483, + -0.560312,-0.794398,-0.234483,-0.560312,-0.794398,-0.234483,-0.560312,-0.794398,-0.234483,-0.465029,-0.519224,0.717046, + -0.465029,-0.519224,0.717046,-0.465029,-0.519224,0.717046,-0.465029,-0.519224,0.717046,0.402067,-0.713349,0.574000, + 0.402067,-0.713349,0.574000,0.402067,-0.713349,0.574000,0.402067,-0.713349,0.574000,0.457698,-0.426629,0.780064, + 0.457698,-0.426629,0.780064,0.457698,-0.426629,0.780064,0.457698,-0.426629,0.780064,0.285577,-0.352753,0.891073, + 0.285577,-0.352753,0.891073,0.285577,-0.352753,0.891073,0.285577,-0.352753,0.891073,0.559627,0.794732,0.234987, + 0.559627,0.794732,0.234987,0.559627,0.794732,0.234987,0.559627,0.794732,0.234987,0.403057,-0.457772,0.792458, + 0.403057,-0.457772,0.792458,0.403057,-0.457772,0.792458,0.403057,-0.457772,0.792458,0.306007,-0.359066,0.881720, + 0.306007,-0.359066,0.881720,0.306007,-0.359066,0.881720,0.306007,-0.359066,0.881720,0.663825,-0.116514,0.738756, + 0.663825,-0.116514,0.738756,0.663825,-0.116514,0.738756,0.663825,-0.116514,0.738756,0.361026,-0.349306,0.864665, + 0.361026,-0.349306,0.864665,0.361026,-0.349306,0.864665,0.361026,-0.349306,0.864665,0.304008,0.467191,0.830248, + 0.304008,0.467191,0.830248,0.304008,0.467191,0.830248,0.304008,0.467191,0.830248,0.863736,-0.502713,-0.035201, + 0.863736,-0.502713,-0.035201,0.863736,-0.502713,-0.035201,0.863736,-0.502713,-0.035201,0.284257,0.892653,-0.349813, + 0.284257,0.892653,-0.349813,0.284257,0.892653,-0.349813,0.284257,0.892653,-0.349813,-0.863919,0.502455,0.034387, + -0.863919,0.502455,0.034387,-0.863919,0.502455,0.034387,-0.863919,0.502455,0.034387,-0.448486,-0.809090,0.379782, + -0.448486,-0.809090,0.379782,-0.448486,-0.809090,0.379782,-0.448486,-0.809090,0.379782,-0.281717,-0.890963,0.356118, + -0.281717,-0.890963,0.356118,-0.281717,-0.890963,0.356118,-0.281717,-0.890963,0.356118,-0.902855,0.343290,0.258852, + -0.902855,0.343290,0.258852,-0.902855,0.343290,0.258852,-0.902855,0.343290,0.258852,0.448520,0.809174,-0.379562, + 0.448520,0.809174,-0.379562,0.448520,0.809174,-0.379562,0.448520,0.809174,-0.379562,0.905059,-0.342232,-0.252480, + 0.905059,-0.342232,-0.252480,0.905059,-0.342232,-0.252480,0.905059,-0.342232,-0.252480,0.659157,0.223639,0.717982, + 0.659157,0.223639,0.717982,0.659157,0.223639,0.717982,0.659157,0.223639,0.717982,0.270761,0.962240,0.027989, + 0.270761,0.962240,0.027989,0.270761,0.962240,0.027989,0.270761,0.962240,0.027989,-0.268097,-0.963093,-0.024001, + -0.268097,-0.963093,-0.024001,-0.268097,-0.963093,-0.024001,-0.268097,-0.963093,-0.024001,-0.793809,0.177091,0.581813, + -0.793809,0.177091,0.581813,-0.793809,0.177091,0.581813,-0.793809,0.177091,0.581813,0.786637,-0.179314,-0.590804, + 0.786637,-0.179314,-0.590804,0.786637,-0.179314,-0.590804,0.786637,-0.179314,-0.590804,-0.185496,-0.312598,-0.931597, + -0.185496,-0.312598,-0.931597,-0.185496,-0.312598,-0.931597,-0.185496,-0.312598,-0.931597,0.710376,-0.639416,-0.294133, + 0.710376,-0.639416,-0.294133,0.710376,-0.639416,-0.294133,0.710376,-0.639416,-0.294133,-0.716333,0.638837,0.280632, + -0.716333,0.638837,0.280632,-0.716333,0.638837,0.280632,-0.716333,0.638837,0.280632,0.543681,0.790227,-0.282759, + 0.543681,0.790227,-0.282759,0.543681,0.790227,-0.282759,0.543681,0.790227,-0.282759,-0.544613,-0.790944,0.278934, + -0.544613,-0.790944,0.278934,-0.544613,-0.790944,0.278934,-0.544613,-0.790944,0.278934,-0.656263,-0.752113,-0.060368, + -0.656263,-0.752113,-0.060368,-0.656263,-0.752113,-0.060368,-0.656263,-0.752113,-0.060368,0.655947,0.752564,0.058142, + 0.655947,0.752564,0.058142,0.655947,0.752564,0.058142,0.655947,0.752564,0.058142,-0.673595,0.610633,0.416410, + -0.673595,0.610633,0.416410,-0.673595,0.610633,0.416410,-0.673595,0.610633,0.416410,0.672975,-0.610370,-0.417796, + 0.672975,-0.610370,-0.417796,0.672975,-0.610370,-0.417796,0.672975,-0.610370,-0.417796,0.412004,0.516617,0.750573, + 0.412004,0.516617,0.750573,0.412004,0.516617,0.750573,0.412004,0.516617,0.750573,0.327003,0.884597,-0.332501, + 0.327003,0.884597,-0.332501,0.327003,0.884597,-0.332501,0.327003,0.884597,-0.332501,-0.321159,-0.881653,0.345753, + -0.321159,-0.881653,0.345753,-0.321159,-0.881653,0.345753,-0.321159,-0.881653,0.345753,0.849935,-0.454791,-0.266037, + 0.849935,-0.454791,-0.266037,0.849935,-0.454791,-0.266037,0.849935,-0.454791,-0.266037,-0.848097,0.456338,0.269235, + -0.848097,0.456338,0.269235,-0.848097,0.456338,0.269235,-0.848097,0.456338,0.269235,-0.591604,0.499730,0.632673, + -0.591604,0.499730,0.632673,-0.591604,0.499730,0.632673,-0.591604,0.499730,0.632673,0.593500,-0.499604,-0.630993, + 0.593500,-0.499604,-0.630993,0.593500,-0.499604,-0.630993,0.593500,-0.499604,-0.630993,-0.402079,-0.888522,0.221047, + -0.402079,-0.888522,0.221047,-0.402079,-0.888522,0.221047,-0.402079,-0.888522,0.221047,0.402514,0.888538,-0.220190, + 0.402514,0.888538,-0.220190,0.402514,0.888538,-0.220190,0.402514,0.888538,-0.220190,-0.837907,0.545805,0.002793, + -0.837907,0.545805,0.002793,-0.837907,0.545805,0.002793,-0.837907,0.545805,0.002793,0.838525,-0.544861,-0.001268, + 0.838525,-0.544861,-0.001268,0.838525,-0.544861,-0.001268,0.838525,-0.544861,-0.001268,0.457673,0.674968,-0.578752, + 0.457673,0.674968,-0.578752,0.457673,0.674968,-0.578752,0.457673,0.674968,-0.578752,-0.458659,-0.681589,0.570148, + -0.458659,-0.681589,0.570148,-0.458659,-0.681589,0.570148,-0.458659,-0.681589,0.570148,-0.223885,-0.758536,0.611963, + -0.223885,-0.758536,0.611963,-0.223885,-0.758536,0.611963,-0.223885,-0.758536,0.611963,0.223460,0.761118,-0.608905, + 0.223460,0.761118,-0.608905,0.223460,0.761118,-0.608905,0.223460,0.761118,-0.608905,0.976601,-0.212391,0.033765, + 0.976601,-0.212391,0.033765,0.976601,-0.212391,0.033765,0.976601,-0.212391,0.033765,-0.974947,0.221330,-0.022141, + -0.974947,0.221330,-0.022141,-0.974947,0.221330,-0.022141,-0.974947,0.221330,-0.022141,-0.236623,0.581331,0.778501, + -0.236623,0.581331,0.778501,-0.236623,0.581331,0.778501,-0.236623,0.581331,0.778501,-0.388603,0.872985,0.294763, + -0.388603,0.872985,0.294763,-0.388603,0.872985,0.294763,-0.388603,0.872985,0.294763,-0.521778,0.645398,0.557861, + -0.521778,0.645398,0.557861,-0.521778,0.645398,0.557861,-0.521778,0.645398,0.557861,-0.361023,0.349312,-0.864664, + -0.361023,0.349312,-0.864664,-0.361023,0.349312,-0.864664,-0.361023,0.349312,-0.864664,0.525182,-0.642429,-0.558094, + 0.525182,-0.642429,-0.558094,0.525182,-0.642429,-0.558094,0.525182,-0.642429,-0.558094,-0.661734,0.555638,0.503363, + -0.661734,0.555638,0.503363,-0.661734,0.555638,0.503363,-0.661734,0.555638,0.503363,-0.285588,0.352752,-0.891070, + -0.285588,0.352752,-0.891070,-0.285588,0.352752,-0.891070,-0.285588,0.352752,-0.891070,0.659209,-0.558365,-0.503659, + 0.659209,-0.558365,-0.503659,0.659209,-0.558365,-0.503659,0.659209,-0.558365,-0.503659,-0.403340,0.458033,-0.792163, + -0.403340,0.458033,-0.792163,-0.403340,0.458033,-0.792163,-0.403340,0.458033,-0.792163,-0.674064,-0.736398,-0.057919, + -0.674064,-0.736398,-0.057919,-0.674064,-0.736398,-0.057919,-0.674064,-0.736398,-0.057919,0.670733,0.739217,0.060629, + 0.670733,0.739217,0.060629,0.670733,0.739217,0.060629,0.670733,0.739217,0.060629,-0.458174,0.427063,-0.779547, + -0.458174,0.427063,-0.779547,-0.458174,0.427063,-0.779547,-0.458174,0.427063,-0.779547,-0.722920,-0.690753,-0.015731, + -0.722920,-0.690753,-0.015731,-0.722920,-0.690753,-0.015731,-0.722920,-0.690753,-0.015731,0.724960,0.688650,0.013894, + 0.724960,0.688650,0.013894,0.724960,0.688650,0.013894,0.724960,0.688650,0.013894,0.305395,-0.274983,0.911657, + 0.305395,-0.274983,0.911657,0.305395,-0.274983,0.911657,0.305395,-0.274983,0.911657,0.228241,-0.225273,0.947185, + 0.228241,-0.225273,0.947185,0.228241,-0.225273,0.947185,0.228241,-0.225273,0.947185,0.282906,-0.299089,0.911323, + 0.282906,-0.299089,0.911323,0.282906,-0.299089,0.911323,0.282906,-0.299089,0.911323,0.214491,-0.226165,0.950181, + 0.214491,-0.226165,0.950181,0.214491,-0.226165,0.950181,0.214491,-0.226165,0.950181,-0.670863,0.626867,0.396209, + -0.670863,0.626867,0.396209,-0.670863,0.626867,0.396209,-0.670863,0.626867,0.396209,-0.213789,0.225281,-0.950549, + -0.213789,0.225281,-0.950549,-0.213789,0.225281,-0.950549,-0.213789,0.225281,-0.950549,0.663889,-0.625680,-0.409605, + 0.663889,-0.625680,-0.409605,0.663889,-0.625680,-0.409605,0.663889,-0.625680,-0.409605,-0.653412,0.641927,0.401225, + -0.653412,0.641927,0.401225,-0.653412,0.641927,0.401225,-0.653412,0.641927,0.401225,-0.229133,0.225897,-0.946820, + -0.229133,0.225897,-0.946820,-0.229133,0.225897,-0.946820,-0.229133,0.225897,-0.946820,0.667009,-0.638394,-0.384125, + 0.667009,-0.638394,-0.384125,0.667009,-0.638394,-0.384125,0.667009,-0.638394,-0.384125,-0.271044,0.280325,-0.920844, + -0.271044,0.280325,-0.920844,-0.271044,0.280325,-0.920844,-0.271044,0.280325,-0.920844,-0.737461,-0.675215,0.015354, + -0.737461,-0.675215,0.015354,-0.737461,-0.675215,0.015354,-0.737461,-0.675215,0.015354,0.742747,0.669437,-0.013417, + 0.742747,0.669437,-0.013417,0.742747,0.669437,-0.013417,0.742747,0.669437,-0.013417,-0.285575,0.262231,-0.921782, + -0.285575,0.262231,-0.921782,-0.285575,0.262231,-0.921782,-0.285575,0.262231,-0.921782,-0.826446,-0.558413,0.071847, + -0.826446,-0.558413,0.071847,-0.826446,-0.558413,0.071847,-0.826446,-0.558413,0.071847,0.826768,0.557903,-0.072095, + 0.826768,0.557903,-0.072095,0.826768,0.557903,-0.072095,0.826768,0.557903,-0.072095,-0.708788,0.436367,0.554260, + -0.708788,0.436367,0.554260,-0.708788,0.436367,0.554260,-0.708788,0.436367,0.554260,-0.708399,0.454285,0.540181, + -0.708399,0.454285,0.540181,-0.708399,0.454285,0.540181,0.708440,-0.471139,-0.525491,0.708440,-0.471139,-0.525491, + 0.708440,-0.471139,-0.525491,0.848175,-0.254435,-0.464609,0.848175,-0.254435,-0.464609,0.848175,-0.254435,-0.464609, + -0.796115,0.331400,0.506334,-0.796115,0.331400,0.506334,-0.796115,0.331400,0.506334,-0.796115,0.331400,0.506334, + -0.781895,0.390319,0.486099,-0.781895,0.390319,0.486099,-0.781895,0.390319,0.486099,0.823112,-0.284661,-0.491381, + 0.823112,-0.284661,-0.491381,0.823112,-0.284661,-0.491381,0.823112,-0.284661,-0.491381,0.013060,-0.211273,0.977340, + 0.013060,-0.211273,0.977340,0.013060,-0.211273,0.977340,0.013060,-0.211273,0.977340,-0.704147,0.428072,0.566508, + -0.704147,0.428072,0.566508,-0.704147,0.428072,0.566508,-0.704147,0.428072,0.566508,-0.013063,0.211267,-0.977341, + -0.013063,0.211267,-0.977341,-0.013063,0.211267,-0.977341,-0.013063,0.211267,-0.977341,-0.593266,-0.788420,-0.162568, + -0.593266,-0.788420,-0.162568,-0.593266,-0.788420,-0.162568,-0.593266,-0.788420,-0.162568,0.704516,-0.431141,-0.563715, + 0.704516,-0.431141,-0.563715,0.704516,-0.431141,-0.563715,0.704516,-0.431141,-0.563715,-0.758720,0.624388,-0.185696, + -0.758720,0.624388,-0.185696,-0.758720,0.624388,-0.185696,-0.758720,0.624388,-0.185696,-0.185999,0.067334,0.980240, + -0.185999,0.067334,0.980240,-0.185999,0.067334,0.980240,-0.185999,0.067334,0.980240,0.700528,-0.430081,-0.569466, + 0.700528,-0.430081,-0.569466,0.700528,-0.430081,-0.569466,0.776286,-0.600959,0.190339,0.776286,-0.600959,0.190339, + 0.776286,-0.600959,0.190339,0.776286,-0.600959,0.190339,0.189707,-0.062589,-0.979844,0.189707,-0.062589,-0.979844, + 0.189707,-0.062589,-0.979844,0.189707,-0.062589,-0.979844,-0.288095,0.348679,-0.891866,-0.288095,0.348679,-0.891866, + -0.288095,0.348679,-0.891866,-0.288095,0.348679,-0.891866,-0.429935,-0.272985,0.860602,-0.429935,-0.272985,0.860602, + -0.429935,-0.272985,0.860602,-0.429935,-0.272985,0.860602,0.756500,-0.627269,0.185044,0.756500,-0.627269,0.185044, + 0.756500,-0.627269,0.185044,0.756500,-0.627269,0.185044,0.466204,0.845780,0.259442,0.466204,0.845780,0.259442, + 0.466204,0.845780,0.259442,0.466204,0.845780,0.259442,-0.729763,0.427361,0.533675,-0.729763,0.427361,0.533675, + -0.729763,0.427361,0.533675,-0.247864,-0.013225,0.968705,-0.247864,-0.013225,0.968705,-0.247864,-0.013225,0.968705, + -0.247864,-0.013225,0.968705,0.247861,0.013220,-0.968705,0.247861,0.013220,-0.968705,0.247861,0.013220,-0.968705, + 0.247861,0.013220,-0.968705,0.729000,-0.426364,-0.535512,0.729000,-0.426364,-0.535512,0.729000,-0.426364,-0.535512, + -0.593142,-0.788524,-0.162518,-0.593142,-0.788524,-0.162518,-0.593142,-0.788524,-0.162518,-0.593142,-0.788524,-0.162518, + 0.699130,-0.443340,-0.560952,0.699130,-0.443340,-0.560952,0.699130,-0.443340,-0.560952,0.699130,-0.443340,-0.560952, + 0.432444,0.276883,-0.858096,0.432444,0.276883,-0.858096,0.432444,0.276883,-0.858096,0.432444,0.276883,-0.858096, + -0.769171,0.610622,-0.188456,-0.769171,0.610622,-0.188456,-0.769171,0.610622,-0.188456,-0.769171,0.610622,-0.188456, + -0.406646,0.451504,-0.794219,-0.406646,0.451504,-0.794219,-0.406646,0.451504,-0.794219,-0.406646,0.451504,-0.794219, + -0.808078,-0.587046,0.048860,-0.808078,-0.587046,0.048860,-0.808078,-0.587046,0.048860,0.808959,0.586093,-0.045611, + 0.808959,0.586093,-0.045611,0.808959,0.586093,-0.045611,-0.491145,0.603054,0.628572,-0.491145,0.603054,0.628572, + -0.491145,0.603054,0.628572,0.464864,-0.372882,-0.803032,0.464864,-0.372882,-0.803032,0.464864,-0.372882,-0.803032, + 0.548825,-0.566260,0.614931,0.548825,-0.566260,0.614931,0.548825,-0.566260,0.614931,0.548825,-0.566260,0.614931, + -0.548821,0.566252,-0.614943,-0.548821,0.566252,-0.614943,-0.548821,0.566252,-0.614943,-0.548821,0.566252,-0.614943, + -0.721454,-0.691866,-0.028731,-0.721454,-0.691866,-0.028731,-0.721454,-0.691866,-0.028731,0.721878,0.691441,0.028296, + 0.721878,0.691441,0.028296,0.721878,0.691441,0.028296,-0.464136,0.373583,0.803127,-0.464136,0.373583,0.803127, + -0.464136,0.373583,0.803127,0.670139,-0.433123,-0.602758,0.670139,-0.433123,-0.602758,0.670139,-0.433123,-0.602758, + 0.670139,-0.433123,-0.602758,-0.670164,0.433073,0.602766,-0.670164,0.433073,0.602766,-0.670164,0.433073,0.602766, + -0.670164,0.433073,0.602766,-0.571882,0.615413,-0.542418,-0.571882,0.615413,-0.542418,-0.571882,0.615413,-0.542418, + 0.624232,-0.319511,-0.712915,0.624232,-0.319511,-0.712915,0.624232,-0.319511,-0.712915,0.624232,-0.319511,-0.712915, + -0.624118,0.319288,0.713114,-0.624118,0.319288,0.713114,-0.624118,0.319288,0.713114,-0.624118,0.319288,0.713114, + -0.579371,-0.800356,-0.154144,-0.579371,-0.800356,-0.154144,-0.579371,-0.800356,-0.154144,0.579539,0.800165,0.154504, + 0.579539,0.800165,0.154504,0.579539,0.800165,0.154504,0.376038,-0.514899,0.770373,0.376038,-0.514899,0.770373, + 0.376038,-0.514899,0.770373,-0.139505,-0.132629,0.981299,-0.139505,-0.132629,0.981299,-0.139505,-0.132629,0.981299, + -0.139505,-0.132629,0.981299,-0.055442,-0.069752,0.996023,-0.055442,-0.069752,0.996023,-0.055442,-0.069752,0.996023, + -0.055442,-0.069752,0.996023,-0.272196,-0.045841,0.961149,-0.272196,-0.045841,0.961149,-0.272196,-0.045841,0.961149, + -0.272196,-0.045841,0.961149,-0.207806,0.039328,0.977379,-0.207806,0.039328,0.977379,-0.207806,0.039328,0.977379, + -0.207806,0.039328,0.977379,-0.260151,-0.029621,0.965113,-0.260151,-0.029621,0.965113,-0.260151,-0.029621,0.965113, + -0.260151,-0.029621,0.965113,-0.223685,0.018677,0.974482,-0.223685,0.018677,0.974482,-0.223685,0.018677,0.974482, + -0.223685,0.018677,0.974482,-0.646290,-0.755528,-0.107179,-0.646290,-0.755528,-0.107179,-0.646290,-0.755528,-0.107179, + -0.646290,-0.755528,-0.107179,-0.517548,0.528087,-0.673252,-0.517548,0.528087,-0.673252,-0.517548,0.528087,-0.673252, + -0.517548,0.528087,-0.673252,0.646286,0.755533,0.107166,0.646286,0.755533,0.107166,0.646286,0.755533,0.107166, + 0.646286,0.755533,0.107166,0.916235,0.378062,-0.132601,0.916235,0.378062,-0.132601,0.916235,0.378062,-0.132601, + 0.916235,0.378062,-0.132601,0.485225,-0.319946,0.813751,0.485225,-0.319946,0.813751,0.485225,-0.319946,0.813751, + 0.485225,-0.319946,0.813751,-0.466022,-0.845819,-0.259643,-0.466022,-0.845819,-0.259643,-0.466022,-0.845819,-0.259643, + -0.466022,-0.845819,-0.259643,0.179375,-0.527522,-0.830388,0.179375,-0.527522,-0.830388,0.179375,-0.527522,-0.830388, + 0.179375,-0.527522,-0.830388,0.457940,0.503493,-0.732657,0.457940,0.503493,-0.732657,0.457940,0.503493,-0.732657, + 0.457940,0.503493,-0.732657,0.833316,-0.505589,0.223525,0.833316,-0.505589,0.223525,0.833316,-0.505589,0.223525, + 0.833316,-0.505589,0.223525,0.532751,-0.616927,0.579290,0.532751,-0.616927,0.579290,0.532751,-0.616927,0.579290, + 0.532751,-0.616927,0.579290,0.912498,0.408844,0.013915,0.912498,0.408844,0.013915,0.912498,0.408844,0.013915, + 0.912498,0.408844,0.013915,-0.519010,0.311955,-0.795809,-0.519010,0.311955,-0.795809,-0.519010,0.311955,-0.795809, + -0.519010,0.311955,-0.795809,-0.833332,0.505614,-0.223412,-0.833332,0.505614,-0.223412,-0.833332,0.505614,-0.223412, + -0.833332,0.505614,-0.223412,-0.535967,0.618682,-0.574432,-0.535967,0.618682,-0.574432,-0.535967,0.618682,-0.574432, + -0.535967,0.618682,-0.574432,0.331584,0.367977,0.868703,0.331584,0.367977,0.868703,0.331584,0.367977,0.868703, + 0.217386,0.086686,0.972229,0.217386,0.086686,0.972229,0.217386,0.086686,0.972229,0.096344,0.034090,0.994764, + 0.096344,0.034090,0.994764,0.096344,0.034090,0.994764,0.175882,0.166980,0.970146,0.175882,0.166980,0.970146, + 0.175882,0.166980,0.970146,0.074081,0.092675,0.992937,0.074081,0.092675,0.992937,0.074081,0.092675,0.992937, + 0.331584,0.367977,0.868703,0.331584,0.367977,0.868703,0.331584,0.367977,0.868703,-0.399592,0.915339,0.049816, + -0.399592,0.915339,0.049816,-0.399592,0.915339,0.049816,-0.399592,0.915339,0.049816,-0.057357,-0.154042,-0.986398, + -0.057357,-0.154042,-0.986398,-0.057357,-0.154042,-0.986398,-0.614309,0.256432,0.746235,-0.614309,0.256432,0.746235, + -0.614309,0.256432,0.746235,-0.614309,0.256432,0.746235,0.172215,-0.080129,0.981795,0.172215,-0.080129,0.981795, + 0.172215,-0.080129,0.981795,0.172215,-0.080129,0.981795,-0.200064,0.535629,0.820412,-0.200064,0.535629,0.820412, + -0.200064,0.535629,0.820412,-0.200064,0.535629,0.820412,-0.817806,-0.496267,0.291397,-0.817806,-0.496267,0.291397, + -0.817806,-0.496267,0.291397,-0.817806,-0.496267,0.291397,0.179920,-0.139830,0.973692,0.179920,-0.139830,0.973692, + 0.179920,-0.139830,0.973692,0.179920,-0.139830,0.973692,-0.293933,0.699354,0.651543,-0.293933,0.699354,0.651543, + -0.293933,0.699354,0.651543,-0.293933,0.699354,0.651543,0.557346,-0.550944,0.621149,0.557346,-0.550944,0.621149, + 0.557346,-0.550944,0.621149,0.557346,-0.550944,0.621149,-0.099840,-0.775869,-0.622944,-0.099840,-0.775869,-0.622944, + -0.099840,-0.775869,-0.622944,-0.099840,-0.775869,-0.622944,-0.368282,0.180997,0.911926,-0.368282,0.180997,0.911926, + -0.368282,0.180997,0.911926,-0.368282,0.180997,0.911926,-0.027676,0.317246,0.947939,-0.027676,0.317246,0.947939, + -0.027676,0.317246,0.947939,-0.027676,0.317246,0.947939,0.839705,-0.242821,0.485730,0.839705,-0.242821,0.485730, + 0.839705,-0.242821,0.485730,0.839705,-0.242821,0.485730,0.558756,-0.548998,0.621605,0.558756,-0.548998,0.621605, + 0.558756,-0.548998,0.621605,0.558756,-0.548998,0.621605,0.535544,-0.550704,0.640248,0.535544,-0.550704,0.640248, + 0.535544,-0.550704,0.640248,0.535544,-0.550704,0.640248,0.233632,-0.844265,-0.482321,0.233632,-0.844265,-0.482321, + 0.233632,-0.844265,-0.482321,0.233632,-0.844265,-0.482321,0.766196,0.091115,0.636114,0.766196,0.091115,0.636114, + 0.766196,0.091115,0.636114,0.766196,0.091115,0.636114,0.188216,0.733188,0.653460,0.188216,0.733188,0.653460, + 0.188216,0.733188,0.653460,0.188216,0.733188,0.653460,-0.771770,-0.046471,-0.634201,-0.771770,-0.046471,-0.634201, + -0.771770,-0.046471,-0.634201,-0.771770,-0.046471,-0.634201,-0.224706,0.853296,0.470524,-0.224706,0.853296,0.470524, + -0.224706,0.853296,0.470524,-0.224706,0.853296,0.470524,0.813560,-0.504492,0.289149,0.813560,-0.504492,0.289149, + 0.813560,-0.504492,0.289149,0.813560,-0.504492,0.289149,-0.469482,-0.512538,-0.718952,-0.469482,-0.512538,-0.718952, + -0.469482,-0.512538,-0.718952,-0.469482,-0.512538,-0.718952,0.338936,0.646227,0.683749,0.338936,0.646227,0.683749, + 0.338936,0.646227,0.683749,0.338936,0.646227,0.683749,-0.763221,-0.089560,-0.639900,-0.763221,-0.089560,-0.639900, + -0.763221,-0.089560,-0.639900,-0.763221,-0.089560,-0.639900,0.031107,-0.741582,-0.670141,0.031107,-0.741582,-0.670141, + 0.031107,-0.741582,-0.670141,0.031107,-0.741582,-0.670141,0.123205,-0.805168,-0.580108,0.123205,-0.805168,-0.580108, + 0.123205,-0.805168,-0.580108,0.123205,-0.805168,-0.580108,0.124625,-0.804835,-0.580266,0.124625,-0.804835,-0.580266, + 0.124625,-0.804835,-0.580266,0.124625,-0.804835,-0.580266,0.765991,-0.614868,0.187604,0.765991,-0.614868,0.187604, + 0.765991,-0.614868,0.187604,0.765991,-0.614868,0.187604,0.765991,-0.614868,0.187602,0.765991,-0.614868,0.187602, + 0.765991,-0.614868,0.187602,0.765991,-0.614868,0.187602,0.765992,-0.614868,0.187601,0.765992,-0.614868,0.187601, + 0.765992,-0.614868,0.187601,0.765992,-0.614868,0.187601,0.765993,-0.614866,0.187600,0.765993,-0.614866,0.187600, + 0.765993,-0.614866,0.187600,-0.589529,-0.788249,-0.176405,-0.589529,-0.788249,-0.176405,-0.589529,-0.788249,-0.176405, + -0.589529,-0.788249,-0.176405,0.592324,0.792915,0.142963,0.592324,0.792915,0.142963,0.592324,0.792915,0.142963, + 0.592324,0.792915,0.142963,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603, + 0.765992,-0.614867,0.187603,0.765993,-0.614866,0.187603,0.765993,-0.614866,0.187603,0.765993,-0.614866,0.187603, + 0.765993,-0.614866,0.187603,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603,0.765992,-0.614867,0.187603, + 0.765992,-0.614867,0.187603,-0.765990,0.614868,-0.187608,-0.765990,0.614868,-0.187608,-0.765990,0.614868,-0.187608, + -0.765990,0.614868,-0.187608,-0.765991,0.614868,-0.187604,-0.765991,0.614868,-0.187604,-0.765991,0.614868,-0.187604, + -0.765991,0.614868,-0.187604,-0.765993,0.614866,-0.187603,-0.765993,0.614866,-0.187603,-0.765993,0.614866,-0.187603, + -0.765993,0.614866,-0.187603,-0.765992,0.614867,-0.187603,-0.765992,0.614867,-0.187603,-0.765992,0.614867,-0.187603, + 0.589727,0.788268,0.175659,0.589727,0.788268,0.175659,0.589727,0.788268,0.175659,0.589727,0.788268,0.175659, + -0.686221,0.686527,0.240375,-0.686221,0.686527,0.240375,-0.686221,0.686527,0.240375,-0.686221,0.686527,0.240375, + -0.592248,-0.792791,-0.143961,-0.592248,-0.792791,-0.143961,-0.592248,-0.792791,-0.143961,-0.592248,-0.792791,-0.143961, + -0.765991,0.614869,-0.187603,-0.765991,0.614869,-0.187603,-0.765991,0.614869,-0.187603,-0.765991,0.614869,-0.187603, + -0.675012,0.720059,-0.160853,-0.675012,0.720059,-0.160853,-0.675012,0.720059,-0.160853,-0.675012,0.720059,-0.160853, + -0.765990,0.614869,-0.187604,-0.765990,0.614869,-0.187604,-0.765990,0.614869,-0.187604,-0.765990,0.614869,-0.187604, + -0.765991,0.614868,-0.187603,-0.765991,0.614868,-0.187603,-0.765991,0.614868,-0.187603,-0.765991,0.614868,-0.187603, + -0.720055,0.691879,0.053147,-0.720055,0.691879,0.053147,-0.720055,0.691879,0.053147,-0.208782,0.038067,0.977221, + -0.208782,0.038067,0.977221,-0.208782,0.038067,0.977221,-0.208782,0.038067,0.977221,-0.291624,-0.072280,0.953798, + -0.291624,-0.072280,0.953798,-0.291624,-0.072280,0.953798,-0.291624,-0.072280,0.953798,-0.719054,0.692401,0.059511, + -0.719054,0.692401,0.059511,-0.719054,0.692401,0.059511,-0.683355,0.727379,0.062808,-0.683355,0.727379,0.062808, + -0.683355,0.727379,0.062808,-0.876383,-0.479384,-0.046298,-0.876383,-0.479384,-0.046298,-0.876383,-0.479384,-0.046298, + -0.876383,-0.479384,-0.046298,-0.642434,0.758086,0.112182,-0.642434,0.758086,0.112182,-0.642434,0.758086,0.112182, + 0.675605,0.624712,0.391526,0.675605,0.624712,0.391526,0.675605,0.624712,0.391526,0.396499,-0.883925,-0.247921, + 0.396499,-0.883925,-0.247921,0.396499,-0.883925,-0.247921,0.396499,-0.883925,-0.247921,-0.804884,0.574383,0.149150, + -0.804884,0.574383,0.149150,-0.804884,0.574383,0.149150,-0.708374,0.703205,0.060913,-0.708374,0.703205,0.060913, + -0.708374,0.703205,0.060913,-0.672830,0.358828,0.646948,-0.672830,0.358828,0.646948,-0.672830,0.358828,0.646948, + 0.502640,0.840176,-0.203611,0.502640,0.840176,-0.203611,0.502640,0.840176,-0.203611,0.502640,0.840176,-0.203611, + -0.551267,-0.820201,0.152887,-0.551267,-0.820201,0.152887,-0.551267,-0.820201,0.152887,-0.551267,-0.820201,0.152887, + -0.719499,0.691796,0.061157,-0.719499,0.691796,0.061157,-0.719499,0.691796,0.061157,-0.961111,-0.018149,0.275564, + -0.961111,-0.018149,0.275564,-0.961111,-0.018149,0.275564,-0.718613,0.692924,0.058748,-0.718613,0.692924,0.058748, + -0.718613,0.692924,0.058748,-0.709879,0.701910,0.058247,-0.709879,0.701910,0.058247,-0.709879,0.701910,0.058247, + 0.399274,-0.905997,0.140535,0.399274,-0.905997,0.140535,0.399274,-0.905997,0.140535,0.399274,-0.905997,0.140535, + 0.568607,0.740677,-0.357887,0.568607,0.740677,-0.357887,0.568607,0.740677,-0.357887,0.568607,0.740677,-0.357887, + -0.202093,0.210300,0.956521,-0.202093,0.210300,0.956521,-0.202093,0.210300,0.956521,-0.954418,0.223632,0.197672, + -0.954418,0.223632,0.197672,-0.954418,0.223632,0.197672,-0.954418,0.223632,0.197672,-0.748776,0.657996,0.079844, + -0.748776,0.657996,0.079844,-0.748776,0.657996,0.079844,-0.826970,0.540644,0.154351,-0.826970,0.540644,0.154351, + -0.826970,0.540644,0.154351,0.156713,-0.165009,0.973762,0.156713,-0.165009,0.973762,0.156713,-0.165009,0.973762, + 0.156713,-0.165009,0.973762,0.598175,0.707369,0.376586,0.598175,0.707369,0.376586,0.598175,0.707369,0.376586, + 0.598175,0.707369,0.376586,-0.598640,-0.714007,-0.363075,-0.598640,-0.714007,-0.363075,-0.598640,-0.714007,-0.363075, + -0.598640,-0.714007,-0.363075,0.764335,-0.532029,-0.364332,0.764335,-0.532029,-0.364332,0.764335,-0.532029,-0.364332, + 0.764335,-0.532029,-0.364332,-0.774946,0.551369,0.308951,-0.774946,0.551369,0.308951,-0.774946,0.551369,0.308951, + -0.774946,0.551369,0.308951,-0.696752,0.446622,0.561307,-0.696752,0.446622,0.561307,-0.696752,0.446622,0.561307, + -0.696752,0.446622,0.561307,0.697270,-0.447168,-0.560228,0.697270,-0.447168,-0.560228,0.697270,-0.447168,-0.560228, + 0.697270,-0.447168,-0.560228,-0.611551,-0.782460,-0.117313,-0.611551,-0.782460,-0.117313,-0.611551,-0.782460,-0.117313, + -0.611551,-0.782460,-0.117313,0.611508,0.782519,0.117140,0.611508,0.782519,0.117140,0.611508,0.782519,0.117140, + 0.611508,0.782519,0.117140,-0.743522,0.635117,0.209288,-0.743522,0.635117,0.209288,-0.743522,0.635117,0.209288, + -0.743522,0.635117,0.209288,0.738776,-0.637368,-0.219026,0.738776,-0.637368,-0.219026,0.738776,-0.637368,-0.219026, + 0.738776,-0.637368,-0.219026,0.467930,0.766356,-0.440159,0.467930,0.766356,-0.440159,0.467930,0.766356,-0.440159, + 0.467930,0.766356,-0.440159,-0.468410,-0.766491,0.439412,-0.468410,-0.766491,0.439412,-0.468410,-0.766491,0.439412, + -0.468410,-0.766491,0.439412,0.717914,-0.625773,0.304972,0.717914,-0.625773,0.304972,0.717914,-0.625773,0.304972, + 0.717914,-0.625773,0.304972,-0.582393,-0.777499,-0.237305,-0.582393,-0.777499,-0.237305,-0.582393,-0.777499,-0.237305, + -0.582393,-0.777499,-0.237305,-0.824588,0.407916,-0.391994,-0.824588,0.407916,-0.391994,-0.824588,0.407916,-0.391994, + -0.824588,0.407916,-0.391994,0.528118,0.768624,0.360983,0.528118,0.768624,0.360983,0.528118,0.768624,0.360983, + 0.528118,0.768624,0.360983,0.517543,-0.528089,0.673254,0.517543,-0.528089,0.673254,0.517543,-0.528089,0.673254, + 0.517543,-0.528089,0.673254,-0.365909,0.033269,0.930056,-0.365909,0.033269,0.930056,-0.365909,0.033269,0.930056, + -0.365909,0.033269,0.930056,0.819285,-0.421322,0.388921,0.819285,-0.421322,0.388921,0.819285,-0.421322,0.388921, + 0.819285,-0.421322,0.388921,-0.715627,0.628840,-0.304037,-0.715627,0.628840,-0.304037,-0.715627,0.628840,-0.304037, + -0.715627,0.628840,-0.304037,0.516754,0.216009,-0.828436,0.516754,0.216009,-0.828436,0.516754,0.216009,-0.828436, + 0.516754,0.216009,-0.828436,-0.517875,-0.217804,0.827265,-0.517875,-0.217804,0.827265,-0.517875,-0.217804,0.827265, + -0.517875,-0.217804,0.827265,-0.880979,-0.436806,-0.181872,-0.880979,-0.436806,-0.181872,-0.880979,-0.436806,-0.181872, + -0.880979,-0.436806,-0.181872,-0.422692,0.894904,-0.143104,-0.422692,0.894904,-0.143104,-0.422692,0.894904,-0.143104, + -0.422692,0.894904,-0.143104,0.904373,0.415051,0.099202,0.904373,0.415051,0.099202,0.904373,0.415051,0.099202, + 0.904373,0.415051,0.099202,0.793037,-0.407078,0.453189,0.793037,-0.407078,0.453189,0.793037,-0.407078,0.453189, + 0.793037,-0.407078,0.453189,0.296805,-0.207462,-0.932130,0.296805,-0.207462,-0.932130,0.296805,-0.207462,-0.932130, + 0.296805,-0.207462,-0.932130,-0.298387,0.211115,0.930804,-0.298387,0.211115,0.930804,-0.298387,0.211115,0.930804, + -0.298387,0.211115,0.930804,-0.907228,-0.408082,-0.102013,-0.907228,-0.408082,-0.102013,-0.907228,-0.408082,-0.102013, + -0.907228,-0.408082,-0.102013,0.882722,0.433016,0.182480,0.882722,0.433016,0.182480,0.882722,0.433016,0.182480, + 0.882722,0.433016,0.182480,0.231257,-0.466231,-0.853902,0.231257,-0.466231,-0.853902,0.231257,-0.466231,-0.853902, + 0.231257,-0.466231,-0.853902,-0.235189,0.469964,0.850776,-0.235189,0.469964,0.850776,-0.235189,0.469964,0.850776, + -0.235189,0.469964,0.850776,-0.159679,-0.913357,-0.374543,-0.159679,-0.913357,-0.374543,-0.159679,-0.913357,-0.374543, + -0.159679,-0.913357,-0.374543,-0.822800,0.350471,-0.447404,-0.822800,0.350471,-0.447404,-0.822800,0.350471,-0.447404, + -0.822800,0.350471,-0.447404,0.193090,0.898489,0.394251,0.193090,0.898489,0.394251,0.193090,0.898489,0.394251, + 0.193090,0.898489,0.394251,0.758193,-0.265741,0.595420,0.758193,-0.265741,0.595420,0.758193,-0.265741,0.595420, + 0.758193,-0.265741,0.595420,0.509542,0.257662,-0.820961,0.509542,0.257662,-0.820961,0.509542,0.257662,-0.820961, + 0.509542,0.257662,-0.820961,-0.512948,-0.256274,0.819273,-0.512948,-0.256274,0.819273,-0.512948,-0.256274,0.819273, + -0.512948,-0.256274,0.819273,-0.183764,-0.903012,-0.388330,-0.183764,-0.903012,-0.388330,-0.183764,-0.903012,-0.388330, + -0.183764,-0.903012,-0.388330,0.158223,0.913935,0.373749,0.158223,0.913935,0.373749,0.158223,0.913935,0.373749, + 0.158223,0.913935,0.373749,0.553306,0.224727,-0.802091,0.553306,0.224727,-0.802091,0.553306,0.224727,-0.802091, + 0.553306,0.224727,-0.802091,-0.553436,-0.224687,0.802013,-0.553436,-0.224687,0.802013,-0.553436,-0.224687,0.802013, + -0.553436,-0.224687,0.802013,0.106367,0.871430,0.478849,0.106367,0.871430,0.478849,0.106367,0.871430,0.478849, + 0.106367,0.871430,0.478849,-0.593140,-0.788524,-0.162527,-0.593140,-0.788524,-0.162527,-0.593140,-0.788524,-0.162527, + -0.593140,-0.788524,-0.162527,-0.475524,0.090403,0.875045,-0.475524,0.090403,0.875045,-0.475524,0.090403,0.875045, + -0.475524,0.090403,0.875045,0.750172,-0.542225,0.378463,0.750172,-0.542225,0.378463,0.750172,-0.542225,0.378463, + 0.750172,-0.542225,0.378463,-0.724774,0.582597,-0.367810,-0.724774,0.582597,-0.367810,-0.724774,0.582597,-0.367810, + -0.724774,0.582597,-0.367810,0.569420,0.253235,-0.782069,0.569420,0.253235,-0.782069,0.569420,0.253235,-0.782069, + 0.569420,0.253235,-0.782069,-0.569466,-0.253480,0.781957,-0.569466,-0.253480,0.781957,-0.569466,-0.253480,0.781957, + -0.569466,-0.253480,0.781957,-0.617027,-0.785101,-0.053799,-0.617027,-0.785101,-0.053799,-0.617027,-0.785101,-0.053799, + -0.617027,-0.785101,-0.053799,0.762639,-0.604978,0.228875,0.762639,-0.604978,0.228875,0.762639,-0.604978,0.228875, + 0.762639,-0.604978,0.228875,-0.747595,0.624370,-0.226415,-0.747595,0.624370,-0.226415,-0.747595,0.624370,-0.226415, + -0.747595,0.624370,-0.226415,0.584144,0.790203,0.185351,0.584144,0.790203,0.185351,0.584144,0.790203,0.185351, + 0.584144,0.790203,0.185351,0.209747,-0.089793,-0.973624,0.209747,-0.089793,-0.973624,0.209747,-0.089793,-0.973624, + 0.209747,-0.089793,-0.973624,-0.212133,0.086752,0.973383,-0.212133,0.086752,0.973383,-0.212133,0.086752,0.973383, + -0.212133,0.086752,0.973383,0.743922,-0.629008,0.225677,0.743922,-0.629008,0.225677,0.743922,-0.629008,0.225677, + 0.743922,-0.629008,0.225677,-0.760047,0.608318,-0.228643,-0.760047,0.608318,-0.228643,-0.760047,0.608318,-0.228643, + -0.760047,0.608318,-0.228643,0.451309,0.257789,-0.854321,0.451309,0.257789,-0.854321,0.451309,0.257789,-0.854321, + 0.451309,0.257789,-0.854321,-0.452850,-0.260267,0.852753,-0.452850,-0.260267,0.852753,-0.452850,-0.260267,0.852753, + -0.452850,-0.260267,0.852753,-0.593142,-0.788520,-0.162536,-0.593142,-0.788520,-0.162536,-0.593142,-0.788520,-0.162536, + -0.593142,-0.788520,-0.162536,0.247859,0.013221,-0.968706,0.247859,0.013221,-0.968706,0.247859,0.013221,-0.968706, + 0.247859,0.013221,-0.968706,-0.247866,-0.013218,0.968704,-0.247866,-0.013218,0.968704,-0.247866,-0.013218,0.968704, + -0.247866,-0.013218,0.968704,0.593141,0.788521,0.162537,0.593141,0.788521,0.162537,0.593141,0.788521,0.162537, + 0.593141,0.788521,0.162537,0.593134,0.788526,0.162535,0.593134,0.788526,0.162535,0.593134,0.788526,0.162535, + 0.593134,0.788526,0.162535,-0.593152,-0.788515,-0.162530,-0.593152,-0.788515,-0.162530,-0.593152,-0.788515,-0.162530, + -0.593152,-0.788515,-0.162530,0.593148,0.788517,0.162530,0.593148,0.788517,0.162530,0.593148,0.788517,0.162530, + 0.593148,0.788517,0.162530,0.247867,0.013216,-0.968704,0.247867,0.013216,-0.968704,0.247867,0.013216,-0.968704, + 0.247867,0.013216,-0.968704,-0.247863,-0.013218,0.968705,-0.247863,-0.013218,0.968705,-0.247863,-0.013218,0.968705, + -0.247863,-0.013218,0.968705,-0.593147,-0.788517,-0.162537,-0.593147,-0.788517,-0.162537,-0.593147,-0.788517,-0.162537, + -0.593147,-0.788517,-0.162537,0.593147,0.788518,0.162530,0.593147,0.788518,0.162530,0.593147,0.788518,0.162530, + 0.593147,0.788518,0.162530,0.246261,0.014511,-0.969095,0.246261,0.014511,-0.969095,0.246261,0.014511,-0.969095, + 0.246261,0.014511,-0.969095,-0.250313,-0.011262,0.968099,-0.250313,-0.011262,0.968099,-0.250313,-0.011262,0.968099, + -0.250313,-0.011262,0.968099,0.510455,-0.529905,0.677227,0.510455,-0.529905,0.677227,0.510455,-0.529905,0.677227, + 0.510455,-0.529905,0.677227,0.922824,0.121805,-0.365459,0.922824,0.121805,-0.365459,0.922824,0.121805,-0.365459, + 0.922824,0.121805,-0.365459,-0.587925,-0.791346,-0.167676,-0.587925,-0.791346,-0.167676,-0.587925,-0.791346,-0.167676, + -0.587925,-0.791346,-0.167676,-0.592094,0.564017,-0.575596,-0.592094,0.564017,-0.575596,-0.592094,0.564017,-0.575596, + -0.592094,0.564017,-0.575596,-0.923191,-0.134440,0.360062,-0.923191,-0.134440,0.360062,-0.923191,-0.134440,0.360062, + -0.923191,-0.134440,0.360062,0.587923,0.791343,0.167700,0.587923,0.791343,0.167700,0.587923,0.791343,0.167700, + 0.587923,0.791343,0.167700,-0.741972,0.241344,0.625484,-0.741972,0.241344,0.625484,-0.741972,0.241344,0.625484, + -0.741972,0.241344,0.625484,0.592097,-0.564026,0.575583,0.592097,-0.564026,0.575583,0.592097,-0.564026,0.575583, + 0.592097,-0.564026,0.575583,-0.409132,0.102745,0.906672,-0.409132,0.102745,0.906672,-0.409132,0.102745,0.906672, + -0.409132,0.102745,0.906672,-0.487135,-0.735199,-0.471362,-0.487135,-0.735199,-0.471362,-0.487135,-0.735199,-0.471362, + -0.487135,-0.735199,-0.471362,-0.349540,0.657843,0.667131,-0.349540,0.657843,0.667131,-0.349540,0.657843,0.667131, + 0.414222,-0.089239,-0.905791,0.414222,-0.089239,-0.905791,0.414222,-0.089239,-0.905791,0.930183,-0.099920,0.353237, + 0.930183,-0.099920,0.353237,0.930183,-0.099920,0.353237,0.930183,-0.099920,0.353237,-0.642641,0.342105,0.685548, + -0.642641,0.342105,0.685548,-0.642641,0.342105,0.685548,-0.642641,0.342105,0.685548,-0.593146,-0.788518,-0.162534, + -0.593146,-0.788518,-0.162534,-0.593146,-0.788518,-0.162534,-0.593146,-0.788518,-0.162534,0.268240,-0.003211,-0.963347, + 0.268240,-0.003211,-0.963347,0.268240,-0.003211,-0.963347,0.268240,-0.003211,-0.963347,-0.268241,0.003210,0.963347, + -0.268241,0.003210,0.963347,-0.268241,0.003210,0.963347,-0.268241,0.003210,0.963347,0.211690,-0.399701,0.891867, + 0.211690,-0.399701,0.891867,0.211690,-0.399701,0.891867,0.211690,-0.399701,0.891867,-0.212536,0.400466,-0.891322, + -0.212536,0.400466,-0.891322,-0.212536,0.400466,-0.891322,-0.212536,0.400466,-0.891322,-0.524373,-0.811408,-0.258165, + -0.524373,-0.811408,-0.258165,-0.524373,-0.811408,-0.258165,-0.524373,-0.811408,-0.258165,0.524184,0.811500,0.258262, + 0.524184,0.811500,0.258262,0.524184,0.811500,0.258262,0.524184,0.811500,0.258262,0.683439,0.728928,-0.039673, + 0.683439,0.728928,-0.039673,0.683439,0.728928,-0.039673,0.683439,0.728928,-0.039673,-0.689895,-0.721567,0.058194, + -0.689895,-0.721567,0.058194,-0.689895,-0.721567,0.058194,-0.689895,-0.721567,0.058194,-0.768056,0.596857,-0.232062, + -0.768056,0.596857,-0.232062,-0.768056,0.596857,-0.232062,-0.768056,0.596857,-0.232062,0.768389,-0.606570,0.204086, + 0.768389,-0.606570,0.204086,0.768389,-0.606570,0.204086,0.768389,-0.606570,0.204086,0.593141,0.788522,0.162534, + 0.593141,0.788522,0.162534,0.593141,0.788522,0.162534,0.593141,0.788522,0.162534,0.146079,0.067358,-0.986977, + 0.146079,0.067358,-0.986977,0.146079,0.067358,-0.986977,0.146079,0.067358,-0.986977,0.310331,0.788440,-0.531091, + 0.310331,0.788440,-0.531091,0.310331,0.788440,-0.531091,0.310331,0.788440,-0.531091,0.950480,-0.249056,0.185899, + 0.950480,-0.249056,0.185899,0.950480,-0.249056,0.185899,0.950480,-0.249056,0.185899,-0.233579,-0.967124,-0.100558, + -0.233579,-0.967124,-0.100558,-0.233579,-0.967124,-0.100558,-0.233579,-0.967124,-0.100558,0.025087,-0.534991,-0.844485, + 0.025087,-0.534991,-0.844485,0.025087,-0.534991,-0.844485,0.025087,-0.534991,-0.844485,0.950517,-0.248906,0.185912, + 0.950517,-0.248906,0.185912,0.950517,-0.248906,0.185912,0.950517,-0.248906,0.185912,-0.950519,0.248898,-0.185915, + -0.950519,0.248898,-0.185915,-0.950519,0.248898,-0.185915,-0.950519,0.248898,-0.185915,0.310332,0.788441,-0.531089, + 0.310332,0.788441,-0.531089,0.310332,0.788441,-0.531089,0.310332,0.788441,-0.531089,0.950519,-0.248898,0.185911, + 0.950519,-0.248898,0.185911,0.950519,-0.248898,0.185911,0.950519,-0.248898,0.185911,-0.233577,-0.967124,-0.100559, + -0.233577,-0.967124,-0.100559,-0.233577,-0.967124,-0.100559,-0.233577,-0.967124,-0.100559,0.075238,-0.396210,-0.915072, + 0.075238,-0.396210,-0.915072,0.075238,-0.396210,-0.915072,0.075238,-0.396210,-0.915072,0.260091,0.959784,0.105673, + 0.260091,0.959784,0.105673,0.260091,0.959784,0.105673,0.260091,0.959784,0.105673,-0.950517,0.248901,-0.185916, + -0.950517,0.248901,-0.185916,-0.950517,0.248901,-0.185916,-0.950517,0.248901,-0.185916,0.310336,0.788435,-0.531096, + 0.310336,0.788435,-0.531096,0.310336,0.788435,-0.531096,0.310336,0.788435,-0.531096,0.950519,-0.248900,0.185912, + 0.950519,-0.248900,0.185912,0.950519,-0.248900,0.185912,0.950519,-0.248900,0.185912,-0.233576,-0.967124,-0.100561, + -0.233576,-0.967124,-0.100561,-0.233576,-0.967124,-0.100561,-0.233576,-0.967124,-0.100561,0.062484,-0.433035,-0.899209, + 0.062484,-0.433035,-0.899209,0.062484,-0.433035,-0.899209,0.062484,-0.433035,-0.899209,-0.952252,0.248464,-0.177429, + -0.952252,0.248464,-0.177429,-0.952252,0.248464,-0.177429,-0.952252,0.248464,-0.177429,-0.950517,0.248901,-0.185919, + -0.950517,0.248901,-0.185919,-0.950517,0.248901,-0.185919,-0.950517,0.248901,-0.185919,0.310334,0.788436,-0.531094, + 0.310334,0.788436,-0.531094,0.310334,0.788436,-0.531094,0.310334,0.788436,-0.531094,0.950517,-0.248902,0.185917, + 0.950517,-0.248902,0.185917,0.950517,-0.248902,0.185917,0.950517,-0.248902,0.185917,-0.233577,-0.967125,-0.100555, + -0.233577,-0.967125,-0.100555,-0.233577,-0.967125,-0.100555,-0.233577,-0.967125,-0.100555,0.056413,-0.450191,-0.891149, + 0.056413,-0.450191,-0.891149,0.056413,-0.450191,-0.891149,0.056413,-0.450191,-0.891149,-0.233580,-0.967123,-0.100562, + -0.233580,-0.967123,-0.100562,-0.233580,-0.967123,-0.100562,-0.233580,-0.967123,-0.100562,-0.040872,-0.547084,-0.836079, + -0.040872,-0.547084,-0.836079,-0.040872,-0.547084,-0.836079,-0.040872,-0.547084,-0.836079,0.950521,-0.248894,0.185905, + 0.950521,-0.248894,0.185905,0.950521,-0.248894,0.185905,0.950521,-0.248894,0.185905,0.310337,0.788432,-0.531099, + 0.310337,0.788432,-0.531099,0.310337,0.788432,-0.531099,0.310337,0.788432,-0.531099,-0.950510,0.248929,-0.185915, + -0.950510,0.248929,-0.185915,-0.950510,0.248929,-0.185915,-0.950510,0.248929,-0.185915,-0.310337,-0.788441,0.531086, + -0.310337,-0.788441,0.531086,-0.310337,-0.788441,0.531086,-0.310337,-0.788441,0.531086,0.141066,0.068623,-0.987619, + 0.141066,0.068623,-0.987619,0.141066,0.068623,-0.987619,0.141066,0.068623,-0.987619,0.950518,-0.248902,0.185912, + 0.950518,-0.248902,0.185912,0.950518,-0.248902,0.185912,0.950518,-0.248902,0.185912,0.233579,0.967124,0.100556, + 0.233579,0.967124,0.100556,0.233579,0.967124,0.100556,0.233579,0.967124,0.100556,-0.950515,0.248911,-0.185915, + -0.950515,0.248911,-0.185915,-0.950515,0.248911,-0.185915,-0.950515,0.248911,-0.185915,-0.233579,-0.967124,-0.100556, + -0.233579,-0.967124,-0.100556,-0.233579,-0.967124,-0.100556,-0.233579,-0.967124,-0.100556,-0.078310,0.387151,0.918685, + -0.078310,0.387151,0.918685,-0.078310,0.387151,0.918685,-0.078310,0.387151,0.918685,-0.146079,-0.067350,0.986978, + -0.146079,-0.067350,0.986978,-0.146079,-0.067350,0.986978,-0.146079,-0.067350,0.986978,0.942928,-0.259685,0.208449, + 0.942928,-0.259685,0.208449,0.942928,-0.259685,0.208449,0.942928,-0.259685,0.208449,-0.067127,0.419743,0.905157, + -0.067127,0.419743,0.905157,-0.067127,0.419743,0.905157,-0.067127,0.419743,0.905157,-0.057343,0.447588,0.892400, + -0.057343,0.447588,0.892400,-0.057343,0.447588,0.892400,-0.057343,0.447588,0.892400,0.040877,0.547098,0.836070, + 0.040877,0.547098,0.836070,0.040877,0.547098,0.836070,0.040877,0.547098,0.836070,-0.280049,-0.780898,0.558364, + -0.280049,-0.780898,0.558364,-0.280049,-0.780898,0.558364,-0.280049,-0.780898,0.558364,0.324616,0.851725,-0.411326, + 0.324616,0.851725,-0.411326,0.324616,0.851725,-0.411326,0.324616,0.851725,-0.411326,0.903933,-0.123782,0.409368, + 0.903933,-0.123782,0.409368,0.903933,-0.123782,0.409368,0.903933,-0.123782,0.409368,0.677400,0.102290,-0.728468, + 0.677400,0.102290,-0.728468,0.677400,0.102290,-0.728468,0.677400,0.102290,-0.728468,0.706682,0.186351,0.682549, + 0.706682,0.186351,0.682549,0.706682,0.186351,0.682549,0.706682,0.186351,0.682549,-0.946934,-0.148357,0.285141, + -0.946934,-0.148357,0.285141,-0.946934,-0.148357,0.285141,-0.946934,-0.148357,0.285141,-0.726639,-0.052156,-0.685036, + -0.726639,-0.052156,-0.685036,-0.726639,-0.052156,-0.685036,-0.726639,-0.052156,-0.685036,0.267174,-0.955378,0.125983, + 0.267174,-0.955378,0.125983,0.267174,-0.955378,0.125983,0.267174,-0.955378,0.125983,0.471915,0.743605,-0.473653, + 0.471915,0.743605,-0.473653,0.471915,0.743605,-0.473653,0.471915,0.743605,-0.473653,-0.849772,0.236899,-0.470921, + -0.849772,0.236899,-0.470921,-0.849772,0.236899,-0.470921,-0.849772,0.236899,-0.470921,-0.942930,0.259677,-0.208451, + -0.942930,0.259677,-0.208451,-0.942930,0.259677,-0.208451,-0.942930,0.259677,-0.208451,0.782301,-0.622883,-0.004687, + 0.782301,-0.622883,-0.004687,0.782301,-0.622883,-0.004687,0.782301,-0.622883,-0.004687,0.105106,-0.432224,-0.895620, + 0.105106,-0.432224,-0.895620,0.105106,-0.432224,-0.895620,0.105106,-0.432224,-0.895620,-0.322680,-0.860758,0.393668, + -0.322680,-0.860758,0.393668,-0.322680,-0.860758,0.393668,-0.322680,-0.860758,0.393668,0.621474,0.764536,0.171043, + 0.621474,0.764536,0.171043,0.621474,0.764536,0.171043,0.621474,0.764536,0.171043,-0.777782,0.595966,0.199697, + -0.777782,0.595966,0.199697,-0.777782,0.595966,0.199697,-0.777782,0.595966,0.199697,-0.088093,0.267545,-0.959510, + -0.088093,0.267545,-0.959510,-0.088093,0.267545,-0.959510,-0.088093,0.267545,-0.959510,-0.364541,-0.255979,-0.895313, + -0.364541,-0.255979,-0.895313,-0.364541,-0.255979,-0.895313,-0.364541,-0.255979,-0.895313,-0.363552,-0.890001,0.275186, + -0.363552,-0.890001,0.275186,-0.363552,-0.890001,0.275186,-0.363552,-0.890001,0.275186,0.877757,-0.429373,-0.212560, + 0.877757,-0.429373,-0.212560,0.877757,-0.429373,-0.212560,0.877757,-0.429373,-0.212560,0.458542,0.856075,-0.238483, + 0.458542,0.856075,-0.238483,0.458542,0.856075,-0.238483,0.458542,0.856075,-0.238483,-0.877716,0.429460,0.212552, + -0.877716,0.429460,0.212552,-0.877716,0.429460,0.212552,-0.877716,0.429460,0.212552,0.777775,-0.595977,-0.199690, + 0.777775,-0.595977,-0.199690,0.777775,-0.595977,-0.199690,0.777775,-0.595977,-0.199690,-0.621474,-0.764535,-0.171045, + -0.621474,-0.764535,-0.171045,-0.621474,-0.764535,-0.171045,-0.621474,-0.764535,-0.171045,-0.046298,0.262599,-0.963794, + -0.046298,0.262599,-0.963794,-0.046298,0.262599,-0.963794,-0.046298,0.262599,-0.963794,-0.786111,0.610079,0.099162, + -0.786111,0.610079,0.099162,-0.786111,0.610079,0.099162,-0.786111,0.610079,0.099162,-0.701555,0.690162,0.177476, + -0.701555,0.690162,0.177476,-0.701555,0.690162,0.177476,-0.701555,0.690162,0.177476,0.621472,0.764537,0.171044, + 0.621472,0.764537,0.171044,0.621472,0.764537,0.171044,0.621472,0.764537,0.171044,0.830774,-0.537797,-0.143485, + 0.830774,-0.537797,-0.143485,0.830774,-0.537797,-0.143485,0.830774,-0.537797,-0.143485,-0.621477,-0.764535,-0.171037, + -0.621477,-0.764535,-0.171037,-0.621477,-0.764535,-0.171037,-0.621477,-0.764535,-0.171037,0.063389,0.329691,-0.941959, + 0.063389,0.329691,-0.941959,0.063389,0.329691,-0.941959,0.063389,0.329691,-0.941959,-0.628547,-0.647636,-0.430692, + -0.628547,-0.647636,-0.430692,-0.628547,-0.647636,-0.430692,-0.628547,-0.647636,-0.430692,-0.210129,-0.326581,-0.921515, + -0.210129,-0.326581,-0.921515,-0.210129,-0.326581,-0.921515,-0.210129,-0.326581,-0.921515,-0.066775,0.974521,-0.214127, + -0.066775,0.974521,-0.214127,-0.066775,0.974521,-0.214127,-0.066775,0.974521,-0.214127,0.323501,0.842279,-0.431177, + 0.323501,0.842279,-0.431177,0.323501,0.842279,-0.431177,0.323501,0.842279,-0.431177,0.113624,0.031322,0.993030, + 0.113624,0.031322,0.993030,0.113624,0.031322,0.993030,0.113624,0.031322,0.993030,-0.766959,0.641161,0.026219, + -0.766959,0.641161,0.026219,-0.766959,0.641161,0.026219,-0.766959,0.641161,0.026219,-0.357080,0.080121,-0.930631, + -0.357080,0.080121,-0.930631,-0.357080,0.080121,-0.930631,-0.357080,0.080121,-0.930631,0.839561,-0.403330,-0.363954, + 0.839561,-0.403330,-0.363954,0.839561,-0.403330,-0.363954,0.839561,-0.403330,-0.363954,0.786514,-0.599637,-0.147754, + 0.786514,-0.599637,-0.147754,0.786514,-0.599637,-0.147754,0.786514,-0.599637,-0.147754,0.110636,-0.077123,0.990864, + 0.110636,-0.077123,0.990864,0.110636,-0.077123,0.990864,0.110636,-0.077123,0.990864,-0.443705,-0.362903,-0.819407, + -0.443705,-0.362903,-0.819407,-0.443705,-0.362903,-0.819407,-0.443705,-0.362903,-0.819407,-0.048037,0.201689,-0.978271, + -0.048037,0.201689,-0.978271,-0.048037,0.201689,-0.978271,-0.048037,0.201689,-0.978271,0.994426,0.090857,-0.053492, + 0.994426,0.090857,-0.053492,0.994426,0.090857,-0.053492,0.994426,0.090857,-0.053492,0.363369,-0.079443,0.928252, + 0.363369,-0.079443,0.928252,0.363369,-0.079443,0.928252,0.363369,-0.079443,0.928252,-0.799472,0.599491,0.038155, + -0.799472,0.599491,0.038155,-0.799472,0.599491,0.038155,-0.799472,0.599491,0.038155,0.119245,0.475757,-0.871456, + 0.119245,0.475757,-0.871456,0.119245,0.475757,-0.871456,0.119245,0.475757,-0.871456,0.768479,-0.627646,-0.124502, + 0.768479,-0.627646,-0.124502,0.768479,-0.627646,-0.124502,0.768479,-0.627646,-0.124502,-0.264431,0.956493,-0.123275, + -0.264431,0.956493,-0.123275,-0.264431,0.956493,-0.123275,-0.264431,0.956493,-0.123275,-0.309683,-0.711516,0.630747, + -0.309683,-0.711516,0.630747,-0.309683,-0.711516,0.630747,-0.309683,-0.711516,0.630747,0.950745,-0.258793,0.170614, + 0.950745,-0.258793,0.170614,0.950745,-0.258793,0.170614,0.950745,-0.258793,0.170614,0.309680,0.711518,-0.630747, + 0.309680,0.711518,-0.630747,0.309680,0.711518,-0.630747,0.309680,0.711518,-0.630747,-0.950742,0.258806,-0.170613, + -0.950742,0.258806,-0.170613,-0.950742,0.258806,-0.170613,-0.950742,0.258806,-0.170613,-0.306744,-0.657091,0.688578, + -0.306744,-0.657091,0.688578,-0.306744,-0.657091,0.688578,-0.306744,-0.657091,0.688578,0.928871,-0.140025,0.342916, + 0.928871,-0.140025,0.342916,0.928871,-0.140025,0.342916,0.928871,-0.140025,0.342916,0.306738,0.657098,-0.688574, + 0.306738,0.657098,-0.688574,0.306738,0.657098,-0.688574,0.306738,0.657098,-0.688574,-0.928876,0.140007,-0.342910, + -0.928876,0.140007,-0.342910,-0.928876,0.140007,-0.342910,-0.928876,0.140007,-0.342910,-0.309885,-0.802129,0.510451, + -0.309885,-0.802129,0.510451,-0.309885,-0.802129,0.510451,-0.309885,-0.802129,0.510451,0.790366,-0.612247,-0.021780, + 0.790366,-0.612247,-0.021780,0.790366,-0.612247,-0.021780,0.790366,-0.612247,-0.021780,0.309487,0.810811,-0.496793, + 0.309487,0.810811,-0.496793,0.309487,0.810811,-0.496793,0.309487,0.810811,-0.496793,-0.784226,0.619871,0.027372, + -0.784226,0.619871,0.027372,-0.784226,0.619871,0.027372,-0.784226,0.619871,0.027372,0.166224,0.062186,-0.984125, + 0.166224,0.062186,-0.984125,0.166224,0.062186,-0.984125,0.166224,0.062186,-0.984125,0.951446,-0.248675,0.181414, + 0.951446,-0.248675,0.181414,0.951446,-0.248675,0.181414,0.951446,-0.248675,0.181414,0.233579,0.967124,0.100560, + 0.233579,0.967124,0.100560,0.233579,0.967124,0.100560,0.233579,0.967124,0.100560,-0.951443,0.248684,-0.181416, + -0.951443,0.248684,-0.181416,-0.951443,0.248684,-0.181416,-0.951443,0.248684,-0.181416,-0.233579,-0.967124,-0.100558, + -0.233579,-0.967124,-0.100558,-0.233579,-0.967124,-0.100558,-0.233579,-0.967124,-0.100558,0.174041,0.250626,-0.952311, + 0.174041,0.250626,-0.952311,0.174041,0.250626,-0.952311,0.174041,0.250626,-0.952311,0.950519,-0.248901,0.185907, + 0.950519,-0.248901,0.185907,0.950519,-0.248901,0.185907,0.950519,-0.248901,0.185907,0.189793,0.938028,0.289971, + 0.189793,0.938028,0.289971,0.189793,0.938028,0.289971,0.189793,0.938028,0.289971,-0.950523,0.248879,-0.185915, + -0.950523,0.248879,-0.185915,-0.950523,0.248879,-0.185915,-0.950523,0.248879,-0.185915,-0.189787,-0.938026,-0.289981, + -0.189787,-0.938026,-0.289981,-0.189787,-0.938026,-0.289981,-0.189787,-0.938026,-0.289981,-0.393142,-0.378764,-0.837840, + -0.393142,-0.378764,-0.837840,-0.393142,-0.378764,-0.837840,-0.313573,0.942351,-0.116820,-0.313573,0.942351,-0.116820, + -0.313573,0.942351,-0.116820,-0.313573,0.942351,-0.116820,-0.728351,-0.135813,-0.671610,-0.728351,-0.135813,-0.671610, + -0.728351,-0.135813,-0.671610,0.191315,0.684801,-0.703169,0.191315,0.684801,-0.703169,0.191315,0.684801,-0.703169, + 0.191315,0.684801,-0.703169,-0.351257,-0.736289,0.578357,-0.351257,-0.736289,0.578357,-0.351257,-0.736289,0.578357, + -0.351257,-0.736289,0.578357,0.719602,0.141854,0.679743,0.719602,0.141854,0.679743,0.719602,0.141854,0.679743, + 0.719602,0.141854,0.679743,0.357715,0.737320,-0.573062,0.357715,0.737320,-0.573062,0.357715,0.737320,-0.573062, + 0.357715,0.737320,-0.573062,-0.715223,-0.146059,-0.683464,-0.715223,-0.146059,-0.683464,-0.715223,-0.146059,-0.683464, + -0.715223,-0.146059,-0.683464,0.307459,0.837086,-0.452500,0.307459,0.837086,-0.452500,0.307459,0.837086,-0.452500, + 0.307459,0.837086,-0.452500,0.198970,0.828809,-0.522959,0.198970,0.828809,-0.522959,0.198970,0.828809,-0.522959, + 0.198970,0.828809,-0.522959,-0.635390,0.635619,0.438483,-0.635390,0.635619,0.438483,-0.635390,0.635619,0.438483, + -0.635390,0.635619,0.438483,-0.194670,-0.812992,0.548769,-0.194670,-0.812992,0.548769,-0.194670,-0.812992,0.548769, + -0.194670,-0.812992,0.548769,0.643070,-0.634145,-0.429326,0.643070,-0.634145,-0.429326,0.643070,-0.634145,-0.429326, + 0.643070,-0.634145,-0.429326,0.197842,0.770097,-0.606473,0.197842,0.770097,-0.606473,0.197842,0.770097,-0.606473, + 0.197842,0.770097,-0.606473,-0.614822,0.568832,0.546282,-0.614822,0.568832,0.546282,-0.614822,0.568832,0.546282, + -0.614822,0.568832,0.546282,-0.197047,-0.769764,0.607154,-0.197047,-0.769764,0.607154,-0.197047,-0.769764,0.607154, + -0.197047,-0.769764,0.607154,0.612265,-0.569224,-0.548740,0.612265,-0.569224,-0.548740,0.612265,-0.569224,-0.548740, + 0.612265,-0.569224,-0.548740,0.349955,0.926995,0.134949,0.349955,0.926995,0.134949,0.349955,0.926995,0.134949, + 0.910097,-0.277784,0.307505,0.910097,-0.277784,0.307505,0.910097,-0.277784,0.307505,0.910097,-0.277784,0.307505, + -0.969373,0.245593,0.000815,-0.969373,0.245593,0.000815,-0.969373,0.245593,0.000815,-0.969373,0.245593,0.000815, + -0.058391,-0.208239,0.976333,-0.058391,-0.208239,0.976333,-0.058391,-0.208239,0.976333,-0.058391,-0.208239,0.976333, + 0.969371,-0.245599,-0.000815,0.969371,-0.245599,-0.000815,0.969371,-0.245599,-0.000815,0.969371,-0.245599,-0.000815, + 0.046335,0.210943,-0.976400,0.046335,0.210943,-0.976400,0.046335,0.210943,-0.976400,0.046335,0.210943,-0.976400, + -0.946780,0.082504,-0.311128,-0.946780,0.082504,-0.311128,-0.946780,0.082504,-0.311128,-0.946780,0.082504,-0.311128, + 0.115063,-0.987302,0.109522,0.115063,-0.987302,0.109522,0.115063,-0.987302,0.109522,0.115063,-0.987302,0.109522, + -0.016933,-0.973969,0.226048,-0.016933,-0.973969,0.226048,-0.016933,-0.973969,0.226048,-0.016933,-0.973969,0.226048, + 0.973957,-0.157486,-0.163113,0.973957,-0.157486,-0.163113,0.973957,-0.157486,-0.163113,0.973957,-0.157486,-0.163113, + -0.315324,-0.935715,-0.158140,-0.315324,-0.935715,-0.158140,-0.315324,-0.935715,-0.158140,-0.315324,-0.935715,-0.158140, + -0.780554,0.585568,0.218735,-0.780554,0.585568,0.218735,-0.780554,0.585568,0.218735,-0.780554,0.585568,0.218735, + -0.091191,0.985287,-0.144544,-0.091191,0.985287,-0.144544,-0.091191,0.985287,-0.144544,-0.091191,0.985287,-0.144544, + -0.770128,0.145574,-0.621056,-0.770128,0.145574,-0.621056,-0.770128,0.145574,-0.621056,-0.770128,0.145574,-0.621056, + 0.805722,0.037217,0.591123,0.805722,0.037217,0.591123,0.805722,0.037217,0.591123,0.805722,0.037217,0.591123, + -0.861613,-0.099961,-0.497626,-0.861613,-0.099961,-0.497626,-0.861613,-0.099961,-0.497626,-0.861613,-0.099961,-0.497626, + -0.233897,-0.968088,0.089985,-0.233897,-0.968088,0.089985,-0.233897,-0.968088,0.089985,-0.233897,-0.968088,0.089985, + 0.188445,0.976717,-0.102529,0.188445,0.976717,-0.102529,0.188445,0.976717,-0.102529,0.188445,0.976717,-0.102529, + 0.240001,0.601200,-0.762206,0.240001,0.601200,-0.762206,0.240001,0.601200,-0.762206,0.240001,0.601200,-0.762206, + -0.239926,-0.601246,0.762194,-0.239926,-0.601246,0.762194,-0.239926,-0.601246,0.762194,-0.239926,-0.601246,0.762194, + -0.314496,-0.757934,0.571514,-0.314496,-0.757934,0.571514,-0.314496,-0.757934,0.571514,-0.314496,-0.757934,0.571514, + -0.265984,-0.490069,-0.830111,-0.265984,-0.490069,-0.830111,-0.265984,-0.490069,-0.830111,-0.296828,-0.752034,0.588505, + -0.296828,-0.752034,0.588505,-0.296828,-0.752034,0.588505,-0.296828,-0.752034,0.588505,0.314501,0.757927,-0.571521, + 0.314501,0.757927,-0.571521,0.314501,0.757927,-0.571521,0.314501,0.757927,-0.571521,-0.948922,0.249285,-0.193399, + -0.948922,0.249285,-0.193399,-0.948922,0.249285,-0.193399,-0.948922,0.249285,-0.193399,0.948214,-0.249466,0.196613, + 0.948214,-0.249466,0.196613,0.948214,-0.249466,0.196613,0.948214,-0.249466,0.196613,-0.234467,-0.967344,-0.096291, + -0.234467,-0.967344,-0.096291,-0.234467,-0.967344,-0.096291,-0.234467,-0.967344,-0.096291,-0.954776,0.247708,-0.164450, + -0.954776,0.247708,-0.164450,-0.954776,0.247708,-0.164450,-0.954776,0.247708,-0.164450,0.953546,-0.248071,0.170913, + 0.953546,-0.248071,0.170913,0.953546,-0.248071,0.170913,0.953546,-0.248071,0.170913,-0.234471,-0.967342,-0.096292, + -0.234471,-0.967342,-0.096292,-0.234471,-0.967342,-0.096292,-0.234471,-0.967342,-0.096292,0.204839,0.052182,-0.977404, + 0.204839,0.052182,-0.977404,0.204839,0.052182,-0.977404,0.204839,0.052182,-0.977404,-0.233580,-0.967123,-0.100564, + -0.233580,-0.967123,-0.100564,-0.233580,-0.967123,-0.100564,-0.233580,-0.967123,-0.100564,-0.204836,-0.052178,0.977405, + -0.204836,-0.052178,0.977405,-0.204836,-0.052178,0.977405,-0.204836,-0.052178,0.977405,0.204837,0.052182,-0.977404, + 0.204837,0.052182,-0.977404,0.204837,0.052182,-0.977404,0.204837,0.052182,-0.977404,-0.233577,-0.967124,-0.100561, + -0.233577,-0.967124,-0.100561,-0.233577,-0.967124,-0.100561,-0.233577,-0.967124,-0.100561,-0.204841,-0.052183,0.977403, + -0.204841,-0.052183,0.977403,-0.204841,-0.052183,0.977403,-0.204841,-0.052183,0.977403,-0.946082,0.250407,-0.205485, + -0.946082,0.250407,-0.205485,-0.946082,0.250407,-0.205485,-0.946082,0.250407,-0.205485,0.945747,-0.250543,0.206858, + 0.945747,-0.250543,0.206858,0.945747,-0.250543,0.206858,0.945747,-0.250543,0.206858,-0.233166,-0.967410,-0.098755, + -0.233166,-0.967410,-0.098755,-0.233166,-0.967410,-0.098755,-0.233166,-0.967410,-0.098755,-0.953436,0.247814,-0.171896, + -0.953436,0.247814,-0.171896,-0.953436,0.247814,-0.171896,-0.953436,0.247814,-0.171896,0.953259,-0.247852,0.172821, + 0.953259,-0.247852,0.172821,0.953259,-0.247852,0.172821,0.953259,-0.247852,0.172821,-0.234679,-0.967013,-0.099056, + -0.234679,-0.967013,-0.099056,-0.234679,-0.967013,-0.099056,-0.234679,-0.967013,-0.099056,0.210710,0.076758,-0.974530, + 0.210710,0.076758,-0.974530,0.210710,0.076758,-0.974530,0.210710,0.076758,-0.974530,-0.233576,-0.967124,-0.100562, + -0.233576,-0.967124,-0.100562,-0.233576,-0.967124,-0.100562,-0.233576,-0.967124,-0.100562,-0.210712,-0.076751,0.974531, + -0.210712,-0.076751,0.974531,-0.210712,-0.076751,0.974531,-0.210712,-0.076751,0.974531,0.233160,0.967411,0.098753, + 0.233160,0.967411,0.098753,0.233160,0.967411,0.098753,0.233160,0.967411,0.098753,0.233579,0.967123,0.100564, + 0.233579,0.967123,0.100564,0.233579,0.967123,0.100564,0.233579,0.967123,0.100564,0.234681,0.967012,0.099058, + 0.234681,0.967012,0.099058,0.234681,0.967012,0.099058,0.234681,0.967012,0.099058,0.234468,0.967343,0.096290, + 0.234468,0.967343,0.096290,0.234468,0.967343,0.096290,0.234468,0.967343,0.096290,0.233579,0.967124,0.100560, + 0.233579,0.967124,0.100560,0.233579,0.967124,0.100560,0.233579,0.967124,0.100560,0.234469,0.967343,0.096292, + 0.234469,0.967343,0.096292,0.234469,0.967343,0.096292,0.234469,0.967343,0.096292,0.233579,0.967124,0.100561, + 0.233579,0.967124,0.100561,0.233579,0.967124,0.100561,0.233579,0.967124,0.100561,0.945346,-0.264534,0.190639, + 0.945346,-0.264534,0.190639,0.945346,-0.264534,0.190639,0.945346,-0.264534,0.190639,-0.944508,0.266351,-0.192256, + -0.944508,0.266351,-0.192256,-0.944508,0.266351,-0.192256,-0.944508,0.266351,-0.192256,0.040419,0.672484,0.739007, + 0.040419,0.672484,0.739007,0.040419,0.672484,0.739007,0.040419,0.672484,0.739007,0.934374,-0.287213,0.210842, + 0.934374,-0.287213,0.210842,0.934374,-0.287213,0.210842,0.934374,-0.287213,0.210842,-0.937647,0.280685,-0.205023, + -0.937647,0.280685,-0.205023,-0.937647,0.280685,-0.205023,-0.937647,0.280685,-0.205023,0.040417,0.672458,0.739031, + 0.040417,0.672458,0.739031,0.040417,0.672458,0.739031,0.040417,0.672458,0.739031,0.329668,0.705267,-0.627628, + 0.329668,0.705267,-0.627628,0.329668,0.705267,-0.627628,0.329668,0.705267,-0.627628,0.086223,0.691443,0.717268, + 0.086223,0.691443,0.717268,0.086223,0.691443,0.717268,0.086223,0.691443,0.717268,-0.328681,-0.705548,0.627830, + -0.328681,-0.705548,0.627830,-0.328681,-0.705548,0.627830,-0.328681,-0.705548,0.627830,0.328067,0.705731,-0.627946, + 0.328067,0.705731,-0.627946,0.328067,0.705731,-0.627946,0.328067,0.705731,-0.627946,0.087135,0.691160,0.717430, + 0.087135,0.691160,0.717430,0.087135,0.691160,0.717430,0.087135,0.691160,0.717430,-0.328889,-0.705500,0.627776, + -0.328889,-0.705500,0.627776,-0.328889,-0.705500,0.627776,-0.328889,-0.705500,0.627776,-0.970713,0.237911,-0.033382, + -0.970713,0.237911,-0.033382,-0.970713,0.237911,-0.033382,-0.970713,0.237911,-0.033382,0.233577,0.967124,0.100558, + 0.233577,0.967124,0.100558,0.233577,0.967124,0.100558,0.233577,0.967124,0.100558,0.950516,-0.248905,0.185919, + 0.950516,-0.248905,0.185919,0.950516,-0.248905,0.185919,0.950516,-0.248905,0.185919,-0.233581,-0.967123,-0.100562, + -0.233581,-0.967123,-0.100562,-0.233581,-0.967123,-0.100562,-0.233581,-0.967123,-0.100562,0.204831,0.052160,-0.977407, + 0.204831,0.052160,-0.977407,0.204831,0.052160,-0.977407,0.204831,0.052160,-0.977407,-0.204830,-0.052155,0.977407, + -0.204830,-0.052155,0.977407,-0.204830,-0.052155,0.977407,-0.204830,-0.052155,0.977407,-0.950521,0.248888,-0.185914, + -0.950521,0.248888,-0.185914,-0.950521,0.248888,-0.185914,-0.950521,0.248888,-0.185914,0.233581,0.967123,0.100561, + 0.233581,0.967123,0.100561,0.233581,0.967123,0.100561,0.233581,0.967123,0.100561,0.971456,-0.236519,0.018232, + 0.971456,-0.236519,0.018232,0.971456,-0.236519,0.018232,0.971456,-0.236519,0.018232,-0.233580,-0.967124,-0.100561, + -0.233580,-0.967124,-0.100561,-0.233580,-0.967124,-0.100561,-0.233580,-0.967124,-0.100561,0.312509,0.023268,-0.949630, + 0.312509,0.023268,-0.949630,0.312509,0.023268,-0.949630,0.312509,0.023268,-0.949630,-0.204836,-0.052161,0.977405, + -0.204836,-0.052161,0.977405,-0.204836,-0.052161,0.977405,-0.204836,-0.052161,0.977405,-0.950518,0.248896,-0.185918, + -0.950518,0.248896,-0.185918,-0.950518,0.248896,-0.185918,-0.950518,0.248896,-0.185918,0.233574,0.967125,0.100560, + 0.233574,0.967125,0.100560,0.233574,0.967125,0.100560,0.233574,0.967125,0.100560,-0.950518,0.248898,-0.185918, + -0.950518,0.248898,-0.185918,-0.950518,0.248898,-0.185918,-0.950518,0.248898,-0.185918,-0.233579,-0.967124,-0.100561, + -0.233579,-0.967124,-0.100561,-0.233579,-0.967124,-0.100561,-0.233579,-0.967124,-0.100561,0.204840,0.052158,-0.977405, + 0.204840,0.052158,-0.977405,0.204840,0.052158,-0.977405,0.204840,0.052158,-0.977405,-0.204841,-0.052162,0.977404, + -0.204841,-0.052162,0.977404,-0.204841,-0.052162,0.977404,-0.204841,-0.052162,0.977404,0.233578,0.967124,0.100562, + 0.233578,0.967124,0.100562,0.233578,0.967124,0.100562,0.233578,0.967124,0.100562,-0.233581,-0.967124,-0.100556, + -0.233581,-0.967124,-0.100556,-0.233581,-0.967124,-0.100556,-0.233581,-0.967124,-0.100556,0.355973,0.011187,-0.934429, + 0.355973,0.011187,-0.934429,0.355973,0.011187,-0.934429,0.355973,0.011187,-0.934429,-0.204833,-0.052159,0.977406, + -0.204833,-0.052159,0.977406,-0.204833,-0.052159,0.977406,-0.204833,-0.052159,0.977406,-0.233582,-0.967123,-0.100560, + -0.233582,-0.967123,-0.100560,-0.233582,-0.967123,-0.100560,-0.233582,-0.967123,-0.100560,-0.950519,0.248901,-0.185907, + -0.950519,0.248901,-0.185907,-0.950519,0.248901,-0.185907,-0.950519,0.248901,-0.185907,0.966505,-0.242261,0.084722, + 0.966505,-0.242261,0.084722,0.966505,-0.242261,0.084722,0.966505,-0.242261,0.084722,0.204832,0.052155,-0.977407, + 0.204832,0.052155,-0.977407,0.204832,0.052155,-0.977407,0.204832,0.052155,-0.977407,-0.204828,-0.052163,0.977407, + -0.204828,-0.052163,0.977407,-0.204828,-0.052163,0.977407,-0.204828,-0.052163,0.977407,0.744582,0.119618,0.656727, + 0.744582,0.119618,0.656727,0.744582,0.119618,0.656727,-0.213699,-0.623246,0.752261,-0.213699,-0.623246,0.752261, + -0.213699,-0.623246,0.752261,-0.213699,-0.623246,0.752261,0.336555,-0.298899,0.892967,0.336555,-0.298899,0.892967, + 0.336555,-0.298899,0.892967,0.336555,-0.298899,0.892967,0.626977,0.767232,0.135112,0.626977,0.767232,0.135112, + 0.626977,0.767232,0.135112,0.626977,0.767232,0.135112,-0.935374,0.081918,0.344042,-0.935374,0.081918,0.344042, + -0.935374,0.081918,0.344042,-0.935374,0.081918,0.344042,0.394859,-0.367372,0.842095,0.394859,-0.367372,0.842095, + 0.394859,-0.367372,0.842095,0.394859,-0.367372,0.842095,0.324578,-0.819962,-0.471499,0.324578,-0.819962,-0.471499, + 0.324578,-0.819962,-0.471499,0.324578,-0.819962,-0.471499,0.295428,-0.381517,0.875881,0.295428,-0.381517,0.875881, + 0.295428,-0.381517,0.875881,0.295428,-0.381517,0.875881,-0.631073,-0.764321,-0.132518,-0.631073,-0.764321,-0.132518, + -0.631073,-0.764321,-0.132518,-0.631073,-0.764321,-0.132518,0.257930,-0.365393,0.894405,0.257930,-0.365393,0.894405, + 0.257930,-0.365393,0.894405,0.257930,-0.365393,0.894405,0.630841,0.764487,0.132664,0.630841,0.764487,0.132664, + 0.630841,0.764487,0.132664,0.630841,0.764487,0.132664,-0.712597,0.523386,0.467196,-0.712597,0.523386,0.467196, + -0.712597,0.523386,0.467196,-0.712597,0.523386,0.467196,0.279469,-0.398442,0.873579,0.279469,-0.398442,0.873579, + 0.279469,-0.398442,0.873579,0.279469,-0.398442,0.873579,0.712732,-0.523236,-0.467158,0.712732,-0.523236,-0.467158, + 0.712732,-0.523236,-0.467158,0.712732,-0.523236,-0.467158,-0.017907,-0.676493,-0.736231,-0.017907,-0.676493,-0.736231, + -0.017907,-0.676493,-0.736231,-0.017907,-0.676493,-0.736231,0.013223,-0.623679,-0.781568,0.013223,-0.623679,-0.781568, + 0.013223,-0.623679,-0.781568,0.013223,-0.623679,-0.781568,-0.018081,-0.677064,-0.735702,-0.018081,-0.677064,-0.735702, + -0.018081,-0.677064,-0.735702,-0.018081,-0.677064,-0.735702,0.014103,-0.624013,-0.781286,0.014103,-0.624013,-0.781286, + 0.014103,-0.624013,-0.781286,0.014103,-0.624013,-0.781286,-0.355089,-0.715206,0.601990,-0.355089,-0.715206,0.601990, + -0.355089,-0.715206,0.601990,-0.355089,-0.715206,0.601990,0.017911,0.676502,0.736223,0.017911,0.676502,0.736223, + 0.017911,0.676502,0.736223,0.017911,0.676502,0.736223,0.359491,0.713921,-0.600902,0.359491,0.713921,-0.600902, + 0.359491,0.713921,-0.600902,0.359491,0.713921,-0.600902,-0.360387,-0.702434,0.613765,-0.360387,-0.702434,0.613765, + -0.360387,-0.702434,0.613765,-0.360387,-0.702434,0.613765,0.018085,0.677061,0.735704,0.018085,0.677061,0.735704, + 0.018085,0.677061,0.735704,0.018085,0.677061,0.735704,0.356423,0.703576,-0.614771,0.356423,0.703576,-0.614771, + 0.356423,0.703576,-0.614771,0.356423,0.703576,-0.614771,0.000196,0.649511,0.760352,0.000196,0.649511,0.760352, + 0.000196,0.649511,0.760352,0.000196,0.649511,0.760352,-0.922786,0.291466,-0.252018,-0.922786,0.291466,-0.252018, + -0.922786,0.291466,-0.252018,-0.922786,0.291466,-0.252018,0.921832,-0.293173,0.253526,0.921832,-0.293173,0.253526, + 0.921832,-0.293173,0.253526,0.921832,-0.293173,0.253526,-0.000732,0.649839,0.760072,-0.000732,0.649839,0.760072, + -0.000732,0.649839,0.760072,-0.000732,0.649839,0.760072,-0.933102,0.271968,-0.235274,-0.933102,0.271968,-0.235274, + -0.933102,0.271968,-0.235274,-0.933102,0.271968,-0.235274,0.931514,-0.275067,0.237949,0.931514,-0.275067,0.237949, + 0.931514,-0.275067,0.237949,0.931514,-0.275067,0.237949,-0.040424,-0.672479,-0.739011,-0.040424,-0.672479,-0.739011, + -0.040424,-0.672479,-0.739011,-0.040424,-0.672479,-0.739011,-0.086225,-0.691437,-0.717273,-0.086225,-0.691437,-0.717273, + -0.086225,-0.691437,-0.717273,-0.086225,-0.691437,-0.717273,-0.040416,-0.672455,-0.739033,-0.040416,-0.672455,-0.739033, + -0.040416,-0.672455,-0.739033,-0.040416,-0.672455,-0.739033,-0.087135,-0.691171,-0.717419,-0.087135,-0.691171,-0.717419, + -0.087135,-0.691171,-0.717419,-0.087135,-0.691171,-0.717419,0.948550,0.148649,-0.279566,0.948550,0.148649,-0.279566, + 0.948550,0.148649,-0.279566,0.948550,0.148649,-0.279566,-0.680518,-0.103119,0.725439,-0.680518,-0.103119,0.725439, + -0.680518,-0.103119,0.725439,-0.680518,-0.103119,0.725439,0.338067,-0.919374,0.201150,0.338067,-0.919374,0.201150, + 0.338067,-0.919374,0.201150,0.338067,-0.919374,0.201150,-0.339433,0.918570,-0.202520,-0.339433,0.918570,-0.202520, + -0.339433,0.918570,-0.202520,-0.339433,0.918570,-0.202520,-0.830771,0.537803,0.143479,-0.830771,0.537803,0.143479, + -0.830771,0.537803,0.143479,-0.830771,0.537803,0.143479,0.701551,-0.690168,-0.177466,0.701551,-0.690168,-0.177466, + 0.701551,-0.690168,-0.177466,0.701551,-0.690168,-0.177466,-0.071240,0.165298,-0.983667,-0.071240,0.165298,-0.983667, + -0.071240,0.165298,-0.983667,-0.071240,0.165298,-0.983667,-0.323597,0.419340,-0.848197,-0.323597,0.419340,-0.848197, + -0.323597,0.419340,-0.848197,-0.323597,0.419340,-0.848197,-0.826398,-0.412526,-0.383261,-0.826398,-0.412526,-0.383261, + -0.826398,-0.412526,-0.383261,-0.826398,-0.412526,-0.383261,-0.023005,-0.427632,-0.903660,-0.023005,-0.427632,-0.903660, + -0.023005,-0.427632,-0.903660,-0.023005,-0.427632,-0.903660,0.284287,0.860770,-0.422203,0.284287,0.860770,-0.422203, + 0.284287,0.860770,-0.422203,0.284287,0.860770,-0.422203,0.766859,0.487204,0.417803,0.766859,0.487204,0.417803, + 0.766859,0.487204,0.417803,0.766859,0.487204,0.417803,-0.775368,-0.483277,-0.406507,-0.775368,-0.483277,-0.406507, + -0.775368,-0.483277,-0.406507,-0.775368,-0.483277,-0.406507,-0.263277,0.898279,-0.351822,-0.263277,0.898279,-0.351822, + -0.263277,0.898279,-0.351822,-0.263277,0.898279,-0.351822,-0.159851,-0.585238,0.794950,-0.159851,-0.585238,0.794950, + -0.159851,-0.585238,0.794950,-0.159851,-0.585238,0.794950,0.978635,-0.177037,-0.104553,0.978635,-0.177037,-0.104553, + 0.978635,-0.177037,-0.104553,0.978635,-0.177037,-0.104553,0.160235,0.589114,-0.792003,0.160235,0.589114,-0.792003, + 0.160235,0.589114,-0.792003,0.160235,0.589114,-0.792003,-0.975499,0.066522,-0.209708,-0.975499,0.066522,-0.209708, + -0.975499,0.066522,-0.209708,-0.975499,0.066522,-0.209708,-0.975132,0.183723,0.123949,-0.975132,0.183723,0.123949, + -0.975132,0.183723,0.123949,-0.975132,0.183723,0.123949,0.143502,0.978549,-0.147816,0.143502,0.978549,-0.147816, + 0.143502,0.978549,-0.147816,0.143502,0.978549,-0.147816,0.977023,-0.075938,0.199147,0.977023,-0.075938,0.199147, + 0.977023,-0.075938,0.199147,0.977023,-0.075938,0.199147,-0.144476,-0.979438,0.140815,-0.144476,-0.979438,0.140815, + -0.144476,-0.979438,0.140815,-0.144476,-0.979438,0.140815,0.273886,0.121752,0.954024,0.273886,0.121752,0.954024, + 0.273886,0.121752,0.954024,0.273886,0.121752,0.954024,0.233133,-0.862681,0.448811,0.233133,-0.862681,0.448811, + 0.233133,-0.862681,0.448811,0.233133,-0.862681,0.448811,0.264508,-0.884910,0.383367,0.264508,-0.884910,0.383367, + 0.264508,-0.884910,0.383367,0.264508,-0.884910,0.383367,-0.951500,-0.052604,0.303118,-0.951500,-0.052604,0.303118, + -0.951500,-0.052604,0.303118,-0.951500,-0.052604,0.303118,-0.233485,0.863124,-0.447775,-0.233485,0.863124,-0.447775, + -0.233485,0.863124,-0.447775,-0.233485,0.863124,-0.447775,0.951857,0.054064,-0.301737,0.951857,0.054064,-0.301737, + 0.951857,0.054064,-0.301737,0.951857,0.054064,-0.301737,-0.138111,0.762464,0.632119,-0.138111,0.762464,0.632119, + -0.138111,0.762464,0.632119,-0.138111,0.762464,0.632119,-0.159803,0.307838,-0.937922,-0.159803,0.307838,-0.937922, + -0.159803,0.307838,-0.937922,-0.159803,0.307838,-0.937922,-0.645916,-0.657155,-0.388511,-0.645916,-0.657155,-0.388511, + -0.645916,-0.657155,-0.388511,-0.645916,-0.657155,-0.388511,0.071233,-0.165299,0.983668,0.071233,-0.165299,0.983668, + 0.071233,-0.165299,0.983668,0.071233,-0.165299,0.983668,-0.063386,-0.329691,0.941959,-0.063386,-0.329691,0.941959, + -0.063386,-0.329691,0.941959,-0.063386,-0.329691,0.941959,-0.825012,0.166989,-0.539879,-0.825012,0.166989,-0.539879, + -0.825012,0.166989,-0.539879,-0.825012,0.166989,-0.539879,0.233578,0.967124,0.100563,0.233578,0.967124,0.100563, + 0.233578,0.967124,0.100563,0.233578,0.967124,0.100563,0.783925,-0.229642,0.576823,0.783925,-0.229642,0.576823, + 0.783925,-0.229642,0.576823,0.783925,-0.229642,0.576823,-0.233578,-0.967124,-0.100558,-0.233578,-0.967124,-0.100558, + -0.233578,-0.967124,-0.100558,-0.233578,-0.967124,-0.100558,0.761046,-0.076192,-0.644207,0.761046,-0.076192,-0.644207, + 0.761046,-0.076192,-0.644207,0.761046,-0.076192,-0.644207,-0.760402,0.079254,0.644599,-0.760402,0.079254,0.644599, + -0.760402,0.079254,0.644599,-0.760402,0.079254,0.644599,-0.728264,0.187240,-0.659221,-0.728264,0.187240,-0.659221, + -0.728264,0.187240,-0.659221,-0.728264,0.187240,-0.659221,0.869684,-0.331869,0.365394,0.869684,-0.331869,0.365394, + 0.869684,-0.331869,0.365394,0.869684,-0.331869,0.365394,0.671887,-0.348648,-0.653462,0.671887,-0.348648,-0.653462, + 0.671887,-0.348648,-0.653462,0.671887,-0.348648,-0.653462,-0.670798,0.351029,0.653306,-0.670798,0.351029,0.653306, + -0.670798,0.351029,0.653306,-0.670798,0.351029,0.653306,0.658207,-0.743019,-0.121187,0.658207,-0.743019,-0.121187, + 0.658207,-0.743019,-0.121187,0.658207,-0.743019,-0.121187,-0.993631,-0.099712,0.052491,-0.993631,-0.099712,0.052491, + -0.993631,-0.099712,0.052491,-0.993631,-0.099712,0.052491,0.048572,-0.205643,0.977421,0.048572,-0.205643,0.977421, + 0.048572,-0.205643,0.977421,0.048572,-0.205643,0.977421,-0.102331,0.072523,-0.992103,-0.102331,0.072523,-0.992103, + -0.102331,0.072523,-0.992103,-0.102331,0.072523,-0.992103,0.994214,-0.079972,-0.071718,0.994214,-0.079972,-0.071718, + 0.994214,-0.079972,-0.071718,0.994214,-0.079972,-0.071718,-0.995541,0.063219,0.070017,-0.995541,0.063219,0.070017, + -0.995541,0.063219,0.070017,-0.995541,0.063219,0.070017,-0.080271,0.953413,-0.290793,-0.080271,0.953413,-0.290793, + -0.080271,0.953413,-0.290793,-0.080271,0.953413,-0.290793,0.957271,-0.095363,0.273017,0.957271,-0.095363,0.273017, + 0.957271,-0.095363,0.273017,0.957271,-0.095363,0.273017,-0.222020,0.011859,0.974970,-0.222020,0.011859,0.974970, + -0.222020,0.011859,0.974970,-0.222020,0.011859,0.974970,-0.935845,0.257861,0.240210,-0.935845,0.257861,0.240210, + -0.935845,0.257861,0.240210,-0.935845,0.257861,0.240210,-0.123630,-0.977187,0.172691,-0.123630,-0.977187,0.172691, + -0.123630,-0.977187,0.172691,-0.123630,-0.977187,0.172691,-0.095977,-0.984193,0.148839,-0.095977,-0.984193,0.148839, + -0.095977,-0.984193,0.148839,-0.095977,-0.984193,0.148839,0.123825,0.978997,-0.161963,0.123825,0.978997,-0.161963, + 0.123825,0.978997,-0.161963,0.123825,0.978997,-0.161963,-0.759145,-0.149602,-0.633497,-0.759145,-0.149602,-0.633497, + -0.759145,-0.149602,-0.633497,-0.759145,-0.149602,-0.633497,0.733316,-0.071581,0.676110,0.733316,-0.071581,0.676110, + 0.733316,-0.071581,0.676110,0.733316,-0.071581,0.676110,-0.070048,0.962062,-0.263686,-0.070048,0.962062,-0.263686, + -0.070048,0.962062,-0.263686,-0.070048,0.962062,-0.263686,0.952642,-0.232420,-0.196096,0.952642,-0.232420,-0.196096, + 0.952642,-0.232420,-0.196096,0.952642,-0.232420,-0.196096,0.066575,0.611078,0.788766,0.066575,0.611078,0.788766, + 0.066575,0.611078,0.788766,0.066575,0.611078,0.788766,-0.780109,0.334272,-0.528859,-0.780109,0.334272,-0.528859, + -0.780109,0.334272,-0.528859,-0.780109,0.334272,-0.528859,0.753417,-0.110237,-0.648236,0.753417,-0.110237,-0.648236, + 0.753417,-0.110237,-0.648236,0.753417,-0.110237,-0.648236,-0.752650,0.113450,0.648573,-0.752650,0.113450,0.648573, + -0.752650,0.113450,0.648573,-0.752650,0.113450,0.648573,0.912854,-0.169679,0.371358,0.912854,-0.169679,0.371358, + 0.912854,-0.169679,0.371358,0.912854,-0.169679,0.371358,0.046303,-0.262593,0.963795,0.046303,-0.262593,0.963795, + 0.046303,-0.262593,0.963795,0.046303,-0.262593,0.963795,0.368566,0.265436,0.890900,0.368566,0.265436,0.890900, + 0.368566,0.265436,0.890900,0.368566,0.265436,0.890900,-0.750341,0.661042,-0.003314,-0.750341,0.661042,-0.003314, + -0.750341,0.661042,-0.003314,-0.750341,0.661042,-0.003314,0.759036,-0.644934,-0.089023,0.759036,-0.644934,-0.089023, + 0.759036,-0.644934,-0.089023,0.759036,-0.644934,-0.089023,-0.300645,-0.136982,-0.943848,-0.300645,-0.136982,-0.943848, + -0.300645,-0.136982,-0.943848,-0.300645,-0.136982,-0.943848,-0.805501,0.591123,0.041727,-0.805501,0.591123,0.041727, + -0.805501,0.591123,0.041727,-0.805501,0.591123,0.041727,0.085359,0.465527,-0.880908,0.085359,0.465527,-0.880908, + 0.085359,0.465527,-0.880908,0.085359,0.465527,-0.880908,0.785533,-0.601082,-0.147100,0.785533,-0.601082,-0.147100, + 0.785533,-0.601082,-0.147100,0.785533,-0.601082,-0.147100,-0.784010,-0.577469,-0.227723,-0.784010,-0.577469,-0.227723, + -0.784010,-0.577469,-0.227723,-0.784010,-0.577469,-0.227723,0.243033,-0.593665,0.767136,0.243033,-0.593665,0.767136, + 0.243033,-0.593665,0.767136,0.243033,-0.593665,0.767136,-0.192350,0.452098,-0.870982,-0.192350,0.452098,-0.870982, + -0.192350,0.452098,-0.870982,-0.192350,0.452098,-0.870982,0.788482,0.560959,0.252234,0.788482,0.560959,0.252234, + 0.788482,0.560959,0.252234,0.788482,0.560959,0.252234,0.115983,-0.503595,0.856119,0.115983,-0.503595,0.856119, + 0.115983,-0.503595,0.856119,0.115983,-0.503595,0.856119,-0.243025,0.593664,-0.767139,-0.243025,0.593664,-0.767139, + -0.243025,0.593664,-0.767139,-0.243025,0.593664,-0.767139,0.647609,0.694987,0.312402,0.647609,0.694987,0.312402, + 0.647609,0.694987,0.312402,0.647609,0.694987,0.312402,-0.647613,-0.694985,-0.312401,-0.647613,-0.694985,-0.312401, + -0.647613,-0.694985,-0.312401,-0.647613,-0.694985,-0.312401,0.730890,-0.622641,-0.279496,0.730890,-0.622641,-0.279496, + 0.730890,-0.622641,-0.279496,0.730890,-0.622641,-0.279496,-0.344761,-0.287060,-0.893720,-0.344761,-0.287060,-0.893720, + -0.344761,-0.287060,-0.893720,-0.344761,-0.287060,-0.893720,0.283861,0.871591,-0.399690,0.283861,0.871591,-0.399690, + 0.283861,0.871591,-0.399690,0.283861,0.871591,-0.399690,-0.089977,-0.148708,0.984779,-0.089977,-0.148708,0.984779, + -0.089977,-0.148708,0.984779,-0.089977,-0.148708,0.984779,0.484117,-0.201478,0.851491,0.484117,-0.201478,0.851491, + 0.484117,-0.201478,0.851491,0.484117,-0.201478,0.851491,-0.217514,-0.007718,0.976027,-0.217514,-0.007718,0.976027, + -0.217514,-0.007718,0.976027,-0.217514,-0.007718,0.976027,0.914241,-0.238577,0.327481,0.914241,-0.238577,0.327481, + 0.914241,-0.238577,0.327481,0.914241,-0.238577,0.327481,-0.032409,-0.034088,0.998893,-0.032409,-0.034088,0.998893, + -0.032409,-0.034088,0.998893,-0.032409,-0.034088,0.998893,0.909610,-0.268356,0.317167,0.909610,-0.268356,0.317167, + 0.909610,-0.268356,0.317167,0.909610,-0.268356,0.317167,0.004222,-0.040152,0.999185,0.004222,-0.040152,0.999185, + 0.004222,-0.040152,0.999185,0.004222,-0.040152,0.999185,0.903201,-0.260014,0.341497,0.903201,-0.260014,0.341497, + 0.903201,-0.260014,0.341497,0.903201,-0.260014,0.341497,0.265702,0.198119,-0.943478,0.265702,0.198119,-0.943478, + 0.265702,0.198119,-0.943478,0.265702,0.198119,-0.943478,0.190894,0.937735,0.290194,0.190894,0.937735,0.290194, + 0.190894,0.937735,0.290194,0.190894,0.937735,0.290194,-0.188686,-0.938315,-0.289764,-0.188686,-0.938315,-0.289764, + -0.188686,-0.938315,-0.289764,-0.188686,-0.938315,-0.289764,-0.034636,0.111705,-0.993138,-0.034636,0.111705,-0.993138, + -0.034636,0.111705,-0.993138,-0.034636,0.111705,-0.993138,0.250145,0.962646,0.103634,0.250145,0.962646,0.103634, + 0.250145,0.962646,0.103634,0.250145,0.962646,0.103634,-0.233577,-0.967124,-0.100560,-0.233577,-0.967124,-0.100560, + -0.233577,-0.967124,-0.100560,-0.233577,-0.967124,-0.100560,0.040247,-0.113021,0.992777,0.040247,-0.113021,0.992777, + 0.040247,-0.113021,0.992777,0.040247,-0.113021,0.992777,0.224566,0.046963,-0.973327,0.224566,0.046963,-0.973327, + 0.224566,0.046963,-0.973327,0.224566,0.046963,-0.973327,0.233579,0.967124,0.100562,0.233579,0.967124,0.100562, + 0.233579,0.967124,0.100562,0.233579,0.967124,0.100562,-0.233579,-0.967124,-0.100556,-0.233579,-0.967124,-0.100556, + -0.233579,-0.967124,-0.100556,-0.233579,-0.967124,-0.100556,0.243995,0.041814,-0.968874,0.243995,0.041814,-0.968874, + 0.243995,0.041814,-0.968874,0.243995,0.041814,-0.968874,0.233578,0.967124,0.100563,0.233578,0.967124,0.100563, + 0.233578,0.967124,0.100563,0.233578,0.967124,0.100563,-0.233582,-0.967124,-0.100556,-0.233582,-0.967124,-0.100556, + -0.233582,-0.967124,-0.100556,-0.233582,-0.967124,-0.100556,0.056080,-0.572879,-0.817719,0.056080,-0.572879,-0.817719, + 0.056080,-0.572879,-0.817719,0.056080,-0.572879,-0.817719,0.310335,0.788437,-0.531092,0.310335,0.788437,-0.531092, + 0.310335,0.788437,-0.531092,0.310335,0.788437,-0.531092,-0.310332,-0.788437,0.531094,-0.310332,-0.788437,0.531094, + -0.310332,-0.788437,0.531094,-0.310332,-0.788437,0.531094,-0.056081,0.572888,0.817713,-0.056081,0.572888,0.817713, + -0.056081,0.572888,0.817713,-0.056081,0.572888,0.817713,0.106885,-0.076709,0.991308,0.106885,-0.076709,0.991308, + 0.106885,-0.076709,0.991308,0.106885,-0.076709,0.991308,0.950744,-0.246484,0.187965,0.950744,-0.246484,0.187965, + 0.950744,-0.246484,0.187965,0.950744,-0.246484,0.187965,0.163775,-0.115454,0.979718,0.163775,-0.115454,0.979718, + 0.163775,-0.115454,0.979718,0.163775,-0.115454,0.979718,0.856793,-0.242074,0.455308,0.856793,-0.242074,0.455308, + 0.856793,-0.242074,0.455308,0.856793,-0.242074,0.455308,-0.327146,0.224459,-0.917929,-0.327146,0.224459,-0.917929, + -0.327146,0.224459,-0.917929,-0.327146,0.224459,-0.917929,0.817863,0.507053,0.272026,0.817863,0.507053,0.272026, + 0.817863,0.507053,0.272026,0.817863,0.507053,0.272026,0.635230,0.731348,0.248222,0.635230,0.731348,0.248222, + 0.635230,0.731348,0.248222,0.635230,0.731348,0.248222,0.635230,0.731348,0.248222,-0.138951,0.705203,0.695256, + -0.138951,0.705203,0.695256,-0.138951,0.705203,0.695256,0.013488,0.628712,0.777521,0.013488,0.628712,0.777521, + 0.013488,0.628712,0.777521,0.013488,0.628712,0.777521,0.034931,0.701874,0.711444,0.034931,0.701874,0.711444, + 0.034931,0.701874,0.711444,0.034931,0.701874,0.711444,0.023339,0.650343,0.759282,0.023339,0.650343,0.759282, + 0.023339,0.650343,0.759282,0.076830,-0.719476,-0.690254,0.076830,-0.719476,-0.690254,0.076830,-0.719476,-0.690254, + 0.010395,-0.595824,-0.803048,0.010395,-0.595824,-0.803048,0.010395,-0.595824,-0.803048,0.010395,-0.595824,-0.803048, + -0.040841,-0.721074,-0.691653,-0.040841,-0.721074,-0.691653,-0.040841,-0.721074,-0.691653,-0.040841,-0.721074,-0.691653, + 0.950520,-0.248896,0.185911,0.950520,-0.248896,0.185911,0.950520,-0.248896,0.185911,0.950520,-0.248896,0.185911, + -0.935174,0.237387,-0.262863,-0.935174,0.237387,-0.262863,-0.935174,0.237387,-0.262863,-0.935174,0.237387,-0.262863, + -0.730645,0.004590,0.682742,-0.730645,0.004590,0.682742,-0.730645,0.004590,0.682742,-0.730645,0.004590,0.682742, + -0.514248,-0.793055,0.326517,-0.514248,-0.793055,0.326517,-0.514248,-0.793055,0.326517,-0.514248,-0.793055,0.326517, + -0.251244,-0.783483,0.568358,-0.251244,-0.783483,0.568358,-0.251244,-0.783483,0.568358,-0.251244,-0.783483,0.568358, + -0.269782,-0.633552,0.725141,-0.269782,-0.633552,0.725141,-0.269782,-0.633552,0.725141,-0.269782,-0.633552,0.725141, + 0.935120,-0.236817,0.263567,0.935120,-0.236817,0.263567,0.935120,-0.236817,0.263567,0.935120,-0.236817,0.263567, + -0.304025,-0.751451,0.585568,-0.304025,-0.751451,0.585568,-0.304025,-0.751451,0.585568,-0.304025,-0.751451,0.585568, + -0.265731,-0.651408,0.710672,-0.265731,-0.651408,0.710672,-0.265731,-0.651408,0.710672,-0.265731,-0.651408,0.710672, + 0.119980,-0.828937,0.546323,0.119980,-0.828937,0.546323,0.119980,-0.828937,0.546323,0.119980,-0.828937,0.546323, + -0.231508,-0.691035,0.684744,-0.231508,-0.691035,0.684744,-0.231508,-0.691035,0.684744,-0.231508,-0.691035,0.684744, + 0.478094,-0.305902,0.823317,0.478094,-0.305902,0.823317,0.478094,-0.305902,0.823317,0.478094,-0.305902,0.823317, + -0.070959,-0.947247,-0.312551,-0.070959,-0.947247,-0.312551,-0.070959,-0.947247,-0.312551,-0.070959,-0.947247,-0.312551, + 0.954199,0.202668,-0.220066,0.954199,0.202668,-0.220066,0.954199,0.202668,-0.220066,0.954199,0.202668,-0.220066, + 0.070709,0.947529,0.311751,0.070709,0.947529,0.311751,0.070709,0.947529,0.311751,0.070709,0.947529,0.311751, + -0.953515,-0.033719,0.299453,-0.953515,-0.033719,0.299453,-0.953515,-0.033719,0.299453,-0.953515,-0.033719,0.299453, + -0.952130,-0.205945,0.225911,-0.952130,-0.205945,0.225911,-0.952130,-0.205945,0.225911,-0.952130,-0.205945,0.225911, + -0.108513,0.856942,0.503861,-0.108513,0.856942,0.503861,-0.108513,0.856942,0.503861,-0.108513,0.856942,0.503861, + 0.953587,0.033659,-0.299230,0.953587,0.033659,-0.299230,0.953587,0.033659,-0.299230,0.953587,0.033659,-0.299230, + 0.109860,-0.860184,-0.498011,0.109860,-0.860184,-0.498011,0.109860,-0.860184,-0.498011,0.109860,-0.860184,-0.498011, + 0.424493,-0.683434,0.593905,0.424493,-0.683434,0.593905,0.424493,-0.683434,0.593905,0.424493,-0.683434,0.593905, + 0.977500,0.139353,0.158347,0.977500,0.139353,0.158347,0.977500,0.139353,0.158347,0.977500,0.139353,0.158347, + -0.977454,-0.143108,-0.155255,-0.977454,-0.143108,-0.155255,-0.977454,-0.143108,-0.155255,-0.977454,-0.143108,-0.155255, + -0.238250,0.607168,0.758013,-0.238250,0.607168,0.758013,-0.238250,0.607168,0.758013,-0.238250,0.607168,0.758013, + 0.233909,-0.599322,-0.765571,0.233909,-0.599322,-0.765571,0.233909,-0.599322,-0.765571,0.233909,-0.599322,-0.765571, + -0.279084,0.291415,-0.914980,-0.279084,0.291415,-0.914980,-0.279084,0.291415,-0.914980,-0.279084,0.291415,-0.914980, + -0.237521,-0.796994,-0.555323,-0.237521,-0.796994,-0.555323,-0.237521,-0.796994,-0.555323,-0.237521,-0.796994,-0.555323, + 0.235581,0.805659,0.543521,0.235581,0.805659,0.543521,0.235581,0.805659,0.543521,0.235581,0.805659,0.543521, + 0.969576,-0.083599,-0.230073,0.969576,-0.083599,-0.230073,0.969576,-0.083599,-0.230073,0.969576,-0.083599,-0.230073, + -0.970291,0.085146,0.226461,-0.970291,0.085146,0.226461,-0.970291,0.085146,0.226461,-0.970291,0.085146,0.226461, + -0.954360,0.290881,-0.067714,-0.954360,0.290881,-0.067714,-0.954360,0.290881,-0.067714,-0.954360,0.290881,-0.067714, + 0.954831,-0.289783,0.065748,0.954831,-0.289783,0.065748,0.954831,-0.289783,0.065748,0.954831,-0.289783,0.065748, + 0.217032,0.719998,0.659166,0.217032,0.719998,0.659166,0.217032,0.719998,0.659166,0.217032,0.719998,0.659166, + -0.216961,-0.718969,-0.660312,-0.216961,-0.718969,-0.660312,-0.216961,-0.718969,-0.660312,-0.216961,-0.718969,-0.660312, + 0.576410,-0.359013,0.734072,0.576410,-0.359013,0.734072,0.576410,-0.359013,0.734072,0.576410,-0.359013,0.734072, + 0.964085,0.157306,-0.213997,0.964085,0.157306,-0.213997,0.964085,0.157306,-0.213997,0.964085,0.157306,-0.213997, + -0.960067,-0.164847,0.226046,-0.960067,-0.164847,0.226046,-0.960067,-0.164847,0.226046,-0.960067,-0.164847,0.226046, + -0.013795,-0.853154,-0.521476,-0.013795,-0.853154,-0.521476,-0.013795,-0.853154,-0.521476,-0.013795,-0.853154,-0.521476, + 0.015706,0.851290,0.524460,0.015706,0.851290,0.524460,0.015706,0.851290,0.524460,0.015706,0.851290,0.524460, + 0.134415,0.545036,0.827568,0.134415,0.545036,0.827568,0.134415,0.545036,0.827568,0.134415,0.545036,0.827568, + -0.133612,-0.547110,-0.826329,-0.133612,-0.547110,-0.826329,-0.133612,-0.547110,-0.826329,-0.133612,-0.547110,-0.826329, + -0.990526,-0.062783,0.122135,-0.990526,-0.062783,0.122135,-0.990526,-0.062783,0.122135,-0.990526,-0.062783,0.122135, + 0.990654,0.062172,-0.121408,0.990654,0.062172,-0.121408,0.990654,0.062172,-0.121408,0.990654,0.062172,-0.121408, + 0.123673,0.950659,0.284522,0.123673,0.950659,0.284522,0.123673,0.950659,0.284522,0.123673,0.950659,0.284522, + -0.122681,-0.951239,-0.283008,-0.122681,-0.951239,-0.283008,-0.122681,-0.951239,-0.283008,-0.122681,-0.951239,-0.283008, + 0.854819,0.026308,-0.518260,0.854819,0.026308,-0.518260,0.854819,0.026308,-0.518260,0.854819,0.026308,-0.518260, + -0.860428,-0.025767,0.508920,-0.860428,-0.025767,0.508920,-0.860428,-0.025767,0.508920,-0.860428,-0.025767,0.508920, + -0.830759,-0.273403,0.484861,-0.830759,-0.273403,0.484861,-0.830759,-0.273403,0.484861,-0.830759,-0.273403,0.484861, + 0.832605,0.273981,-0.481355,0.832605,0.273981,-0.481355,0.832605,0.273981,-0.481355,0.832605,0.273981,-0.481355, + 0.232226,-0.948986,-0.213297,0.232226,-0.948986,-0.213297,0.232226,-0.948986,-0.213297,0.232226,-0.948986,-0.213297, + -0.224499,0.947941,0.225848,-0.224499,0.947941,0.225848,-0.224499,0.947941,0.225848,-0.224499,0.947941,0.225848, + 0.349388,0.227077,0.909046,0.349388,0.227077,0.909046,0.349388,0.227077,0.909046,0.349388,0.227077,0.909046, + 0.586900,0.608312,0.534327,0.586900,0.608312,0.534327,0.586900,0.608312,0.534327,0.586900,0.608312,0.534327, + 0.301901,0.562416,0.769769,0.301901,0.562416,0.769769,0.301901,0.562416,0.769769,0.301901,0.562416,0.769769, + 0.231511,0.691031,-0.684748,0.231511,0.691031,-0.684748,0.231511,0.691031,-0.684748,0.231511,0.691031,-0.684748, + -0.297740,-0.564167,-0.770108,-0.297740,-0.564167,-0.770108,-0.297740,-0.564167,-0.770108,-0.297740,-0.564167,-0.770108, + 0.165297,0.663983,0.729248,0.165297,0.663983,0.729248,0.165297,0.663983,0.729248,0.165297,0.663983,0.729248, + 0.269789,0.633549,-0.725141,0.269789,0.633549,-0.725141,0.269789,0.633549,-0.725141,0.269789,0.633549,-0.725141, + -0.168831,-0.662763,-0.729548,-0.168831,-0.662763,-0.729548,-0.168831,-0.662763,-0.729548,-0.168831,-0.662763,-0.729548, + 0.304109,0.751712,-0.585189,0.304109,0.751712,-0.585189,0.304109,0.751712,-0.585189,0.304109,0.751712,-0.585189, + -0.948258,0.312053,-0.058560,-0.948258,0.312053,-0.058560,-0.948258,0.312053,-0.058560,-0.948258,0.312053,-0.058560, + 0.949094,-0.308745,0.062425,0.949094,-0.308745,0.062425,0.949094,-0.308745,0.062425,0.949094,-0.308745,0.062425, + 0.251399,0.783934,-0.567668,0.251399,0.783934,-0.567668,0.251399,0.783934,-0.567668,0.251399,0.783934,-0.567668, + -0.932359,0.361532,0.000987,-0.932359,0.361532,0.000987,-0.932359,0.361532,0.000987,-0.932359,0.361532,0.000987, + 0.931513,-0.363691,-0.003586,0.931513,-0.363691,-0.003586,0.931513,-0.363691,-0.003586,0.931513,-0.363691,-0.003586, + -0.193276,-0.625475,0.755927,-0.193276,-0.625475,0.755927,-0.193276,-0.625475,0.755927,-0.193276,-0.625475,0.755927, + -0.185491,-0.547755,0.815817,-0.185491,-0.547755,0.815817,-0.185491,-0.547755,0.815817,-0.185491,-0.547755,0.815817, + -0.224648,-0.615319,0.755590,-0.224648,-0.615319,0.755590,-0.224648,-0.615319,0.755590,-0.224648,-0.615319,0.755590, + -0.192536,-0.536894,0.821386,-0.192536,-0.536894,0.821386,-0.192536,-0.536894,0.821386,-0.192536,-0.536894,0.821386, + 0.234528,0.729587,0.642417,0.234528,0.729587,0.642417,0.234528,0.729587,0.642417,0.234528,0.729587,0.642417, + 0.192104,0.536009,-0.822065,0.192104,0.536009,-0.822065,0.192104,0.536009,-0.822065,0.192104,0.536009,-0.822065, + -0.235345,-0.719353,-0.653562,-0.235345,-0.719353,-0.653562,-0.235345,-0.719353,-0.653562,-0.235345,-0.719353,-0.653562, + 0.255194,0.718952,0.646517,0.255194,0.718952,0.646517,0.255194,0.718952,0.646517,0.255194,0.718952,0.646517, + 0.185632,0.548686,-0.815159,0.185632,0.548686,-0.815159,0.185632,0.548686,-0.815159,0.185632,0.548686,-0.815159, + -0.247605,-0.734113,-0.632274,-0.247605,-0.734113,-0.632274,-0.247605,-0.734113,-0.632274,-0.247605,-0.734113,-0.632274, + 0.213840,0.600022,-0.770873,0.213840,0.600022,-0.770873,0.213840,0.600022,-0.770873,0.213840,0.600022,-0.770873, + -0.927490,0.372029,0.036836,-0.927490,0.372029,0.036836,-0.927490,0.372029,0.036836,-0.927490,0.372029,0.036836, + 0.924459,-0.379461,-0.037215,0.924459,-0.379461,-0.037215,0.924459,-0.379461,-0.037215,0.924459,-0.379461,-0.037215, + 0.191388,0.605784,-0.772267,0.191388,0.605784,-0.772267,0.191388,0.605784,-0.772267,0.191388,0.605784,-0.772267, + -0.866572,0.481163,0.132423,-0.866572,0.481163,0.132423,-0.866572,0.481163,0.132423,-0.866572,0.481163,0.132423, + 0.866289,-0.481562,-0.132821,0.866289,-0.481562,-0.132821,0.866289,-0.481562,-0.132821,0.866289,-0.481562,-0.132821, + 0.033493,0.643709,0.764537,0.033493,0.643709,0.764537,0.033493,0.643709,0.764537,0.033493,0.643709,0.764537, + 0.050951,0.654356,0.754468,0.050951,0.654356,0.754468,0.050951,0.654356,0.754468,-0.067320,-0.665118,-0.743697, + -0.067320,-0.665118,-0.743697,-0.067320,-0.665118,-0.743697,0.182334,-0.717566,-0.672201,0.182334,-0.717566,-0.672201, + 0.182334,-0.717566,-0.672201,-0.094377,0.691333,0.716346,-0.094377,0.691333,0.716346,-0.094377,0.691333,0.716346, + -0.094377,0.691333,0.716346,-0.033623,0.707907,0.705505,-0.033623,0.707907,0.705505,-0.033623,0.707907,0.705505, + 0.146698,-0.700389,-0.698523,0.146698,-0.700389,-0.698523,0.146698,-0.700389,-0.698523,0.146698,-0.700389,-0.698523, + -0.269349,-0.361985,0.892423,-0.269349,-0.361985,0.892423,-0.269349,-0.361985,0.892423,-0.269349,-0.361985,0.892423, + 0.027012,0.632999,0.773681,0.027012,0.632999,0.773681,0.027012,0.632999,0.773681,0.027012,0.632999,0.773681, + 0.269343,0.361993,-0.892421,0.269343,0.361993,-0.892421,0.269343,0.361993,-0.892421,0.269343,0.361993,-0.892421, + -0.950482,0.249049,-0.185901,-0.950482,0.249049,-0.185901,-0.950482,0.249049,-0.185901,-0.950482,0.249049,-0.185901, + -0.029843,-0.635309,-0.771681,-0.029843,-0.635309,-0.771681,-0.029843,-0.635309,-0.771681,-0.029843,-0.635309,-0.771681, + 0.245111,0.964038,0.102717,0.245111,0.964038,0.102717,0.245111,0.964038,0.102717,0.245111,0.964038,0.102717, + -0.106724,-0.077312,0.991278,-0.106724,-0.077312,0.991278,-0.106724,-0.077312,0.991278,-0.106724,-0.077312,0.991278, + -0.030127,-0.629831,-0.776148,-0.030127,-0.629831,-0.776148,-0.030127,-0.629831,-0.776148,-0.216875,-0.971331,-0.097376, + -0.216875,-0.971331,-0.097376,-0.216875,-0.971331,-0.097376,-0.216875,-0.971331,-0.097376,0.112560,0.075850,-0.990746, + 0.112560,0.075850,-0.990746,0.112560,0.075850,-0.990746,0.112560,0.075850,-0.990746,0.265123,0.634343,-0.726167, + 0.265123,0.634343,-0.726167,0.265123,0.634343,-0.726167,0.265123,0.634343,-0.726167,-0.507366,0.033023,0.861098, + -0.507366,0.033023,0.861098,-0.507366,0.033023,0.861098,-0.507366,0.033023,0.861098,-0.248599,-0.963065,-0.103464, + -0.248599,-0.963065,-0.103464,-0.248599,-0.963065,-0.103464,-0.248599,-0.963065,-0.103464,0.938006,-0.141309,0.316506, + 0.938006,-0.141309,0.316506,0.938006,-0.141309,0.316506,0.938006,-0.141309,0.316506,0.018098,0.664085,0.747438, + 0.018098,0.664085,0.747438,0.018098,0.664085,0.747438,-0.204830,-0.052158,0.977407,-0.204830,-0.052158,0.977407, + -0.204830,-0.052158,0.977407,-0.204830,-0.052158,0.977407,0.204835,0.052157,-0.977406,0.204835,0.052157,-0.977406, + 0.204835,0.052157,-0.977406,0.204835,0.052157,-0.977406,-0.017371,-0.662524,-0.748839,-0.017371,-0.662524,-0.748839, + -0.017371,-0.662524,-0.748839,-0.950518,0.248902,-0.185914,-0.950518,0.248902,-0.185914,-0.950518,0.248902,-0.185914, + -0.950518,0.248902,-0.185914,-0.043361,-0.636213,-0.770294,-0.043361,-0.636213,-0.770294,-0.043361,-0.636213,-0.770294, + -0.043361,-0.636213,-0.770294,0.511727,-0.034360,-0.858461,0.511727,-0.034360,-0.858461,0.511727,-0.034360,-0.858461, + 0.511727,-0.034360,-0.858461,0.228461,0.968446,0.099586,0.228461,0.968446,0.099586,0.228461,0.968446,0.099586, + 0.228461,0.968446,0.099586,0.297020,0.752555,-0.587742,0.297020,0.752555,-0.587742,0.297020,0.752555,-0.587742, + 0.297020,0.752555,-0.587742,-0.882220,0.459890,0.100946,-0.882220,0.459890,0.100946,-0.882220,0.459890,0.100946, + 0.881448,-0.461954,-0.098226,0.881448,-0.461954,-0.098226,0.881448,-0.461954,-0.098226,0.271074,0.499448,0.822843, + 0.271074,0.499448,0.822843,0.271074,0.499448,0.822843,-0.061077,-0.336987,-0.939526,-0.061077,-0.336987,-0.939526, + -0.061077,-0.336987,-0.939526,-0.322138,-0.874010,0.363777,-0.322138,-0.874010,0.363777,-0.322138,-0.874010,0.363777, + -0.322138,-0.874010,0.363777,0.322133,0.874011,-0.363778,0.322133,0.874011,-0.363778,0.322133,0.874011,-0.363778, + 0.322133,0.874011,-0.363778,-0.931512,0.363514,-0.011972,-0.931512,0.363514,-0.011972,-0.931512,0.363514,-0.011972, + 0.931431,-0.363741,0.011368,0.931431,-0.363741,0.011368,0.931431,-0.363741,0.011368,0.062000,0.336644,0.939589, + 0.062000,0.336644,0.939589,0.062000,0.336644,0.939589,-0.043136,-0.595361,-0.802299,-0.043136,-0.595361,-0.802299, + -0.043136,-0.595361,-0.802299,-0.043136,-0.595361,-0.802299,0.043120,0.595379,0.802287,0.043120,0.595379,0.802287, + 0.043120,0.595379,0.802287,0.043120,0.595379,0.802287,0.349735,0.894044,-0.279948,0.349735,0.894044,-0.279948, + 0.349735,0.894044,-0.279948,0.048276,-0.479840,-0.876027,0.048276,-0.479840,-0.876027,0.048276,-0.479840,-0.876027, + 0.048276,-0.479840,-0.876027,-0.048428,0.479567,0.876168,-0.048428,0.479567,0.876168,-0.048428,0.479567,0.876168, + -0.048428,0.479567,0.876168,-0.955872,0.229776,-0.183064,-0.955872,0.229776,-0.183064,-0.955872,0.229776,-0.183064, + 0.955715,-0.230179,0.183376,0.955715,-0.230179,0.183376,0.955715,-0.230179,0.183376,-0.365049,-0.744580,0.558874, + -0.365049,-0.744580,0.558874,-0.365049,-0.744580,0.558874,-0.265702,-0.198120,0.943478,-0.265702,-0.198120,0.943478, + -0.265702,-0.198120,0.943478,-0.265702,-0.198120,0.943478,-0.174045,-0.250624,0.952311,-0.174045,-0.250624,0.952311, + -0.174045,-0.250624,0.952311,-0.174045,-0.250624,0.952311,-0.243989,-0.041809,0.968876,-0.243989,-0.041809,0.968876, + -0.243989,-0.041809,0.968876,-0.243989,-0.041809,0.968876,-0.141063,-0.068619,0.987620,-0.141063,-0.068619,0.987620, + -0.141063,-0.068619,0.987620,-0.141063,-0.068619,0.987620,-0.224565,-0.046962,0.973327,-0.224565,-0.046962,0.973327, + -0.224565,-0.046962,0.973327,-0.224565,-0.046962,0.973327,-0.166222,-0.062179,0.984126,-0.166222,-0.062179,0.984126, + -0.166222,-0.062179,0.984126,-0.166222,-0.062179,0.984126,-0.948981,0.293494,-0.115307,-0.948981,0.293494,-0.115307, + -0.948981,0.293494,-0.115307,-0.948981,0.293494,-0.115307,0.306686,0.847274,-0.433670,0.306686,0.847274,-0.433670, + 0.306686,0.847274,-0.433670,0.306686,0.847274,-0.433670,0.948975,-0.293514,0.115313,0.948975,-0.293514,0.115313, + 0.948975,-0.293514,0.115313,0.948975,-0.293514,0.115313,0.749448,-0.615191,-0.244679,0.749448,-0.615191,-0.244679, + 0.749448,-0.615191,-0.244679,0.749448,-0.615191,-0.244679,-0.146637,-0.774184,0.615741,-0.146637,-0.774184,0.615741, + -0.146637,-0.774184,0.615741,-0.146637,-0.774184,0.615741,-0.937948,0.141190,-0.316733,-0.937948,0.141190,-0.316733, + -0.937948,0.141190,-0.316733,-0.937948,0.141190,-0.316733,-0.321546,-0.141359,-0.936283,-0.321546,-0.141359,-0.936283, + -0.321546,-0.141359,-0.936283,-0.321546,-0.141359,-0.936283,0.714831,-0.000430,-0.699297,0.714831,-0.000430,-0.699297, + 0.714831,-0.000430,-0.699297,0.714831,-0.000430,-0.699297,-0.109494,-0.992244,-0.058845,-0.109494,-0.992244,-0.058845, + -0.109494,-0.992244,-0.058845,-0.109494,-0.992244,-0.058845,-0.371411,-0.870443,0.323084,-0.371411,-0.870443,0.323084, + -0.371411,-0.870443,0.323084,-0.371411,-0.870443,0.323084,0.762568,-0.639525,-0.097462,0.762568,-0.639525,-0.097462, + 0.762568,-0.639525,-0.097462,0.762568,-0.639525,-0.097462,0.123189,0.795682,-0.593056,0.123189,0.795682,-0.593056, + 0.123189,0.795682,-0.593056,0.123189,0.795682,-0.593056,0.109508,0.992236,0.058961,0.109508,0.992236,0.058961, + 0.109508,0.992236,0.058961,0.109508,0.992236,0.058961,0.371139,0.872641,-0.317418,0.371139,0.872641,-0.317418, + 0.371139,0.872641,-0.317418,0.371139,0.872641,-0.317418,0.397893,-0.380088,0.834993,0.397893,-0.380088,0.834993, + 0.397893,-0.380088,0.834993,0.087031,-0.420579,0.903072,0.087031,-0.420579,0.903072,0.087031,-0.420579,0.903072, + -0.014762,-0.341725,0.939684,-0.014762,-0.341725,0.939684,-0.014762,-0.341725,0.939684,0.141101,-0.351661,0.925432, + 0.141101,-0.351661,0.925432,0.141101,-0.351661,0.925432,0.028168,-0.298383,0.954031,0.028168,-0.298383,0.954031, + 0.028168,-0.298383,0.954031,0.397866,-0.380093,0.835004,0.397866,-0.380093,0.835004,0.397866,-0.380093,0.835004, + 0.641536,0.701573,0.310206,0.641536,0.701573,0.310206,0.641536,0.701573,0.310206,0.641536,0.701573,0.310206, + -0.076404,0.257525,-0.963246,-0.076404,0.257525,-0.963246,-0.076404,0.257525,-0.963246,-0.103388,0.436881,0.893558, + -0.103388,0.436881,0.893558,-0.103388,0.436881,0.893558,-0.103388,0.436881,0.893558,-0.082912,-0.450204,0.889068, + -0.082912,-0.450204,0.889068,-0.082912,-0.450204,0.889068,-0.082912,-0.450204,0.889068,0.320678,0.165420,0.932632, + 0.320678,0.165420,0.932632,0.320678,0.165420,0.932632,0.320678,0.165420,0.932632,-0.826415,0.438570,0.353122, + -0.826415,0.438570,0.353122,-0.826415,0.438570,0.353122,-0.826415,0.438570,0.353122,-0.132322,-0.478589,0.868011, + -0.132322,-0.478589,0.868011,-0.132322,-0.478589,0.868011,-0.132322,-0.478589,0.868011,0.441289,0.358943,0.822450, + 0.441289,0.358943,0.822450,0.441289,0.358943,0.822450,0.441289,0.358943,0.822450,-0.305250,-0.877041,0.370974, + -0.305250,-0.877041,0.370974,-0.305250,-0.877041,0.370974,-0.305250,-0.877041,0.370974,-0.683867,-0.052495,-0.727715, + -0.683867,-0.052495,-0.727715,-0.683867,-0.052495,-0.727715,-0.683867,-0.052495,-0.727715,-0.078324,0.146244,0.986143, + -0.078324,0.146244,0.986143,-0.078324,0.146244,0.986143,-0.078324,0.146244,0.986143,0.188962,-0.107391,0.976094, + 0.188962,-0.107391,0.976094,0.188962,-0.107391,0.976094,0.188962,-0.107391,0.976094,0.105656,-0.964403,0.242413, + 0.105656,-0.964403,0.242413,0.105656,-0.964403,0.242413,0.105656,-0.964403,0.242413,-0.302938,-0.877623,0.371491, + -0.302938,-0.877623,0.371491,-0.302938,-0.877623,0.371491,-0.302938,-0.877623,0.371491,-0.316211,-0.863064,0.393867, + -0.316211,-0.863064,0.393867,-0.316211,-0.863064,0.393867,-0.316211,-0.863064,0.393867,-0.612218,-0.410096,-0.676026, + -0.612218,-0.410096,-0.676026,-0.612218,-0.410096,-0.676026,-0.612218,-0.410096,-0.676026,0.359598,-0.807734,0.467177, + 0.359598,-0.807734,0.467177,0.359598,-0.807734,0.467177,0.359598,-0.807734,0.467177,0.681468,-0.050200,0.730124, + 0.681468,-0.050200,0.730124,0.681468,-0.050200,0.730124,0.681468,-0.050200,0.730124,-0.322208,0.829910,-0.455446, + -0.322208,0.829910,-0.455446,-0.322208,0.829910,-0.455446,-0.322208,0.829910,-0.455446,0.625228,0.409084,0.664636, + 0.625228,0.409084,0.664636,0.625228,0.409084,0.664636,0.625228,0.409084,0.664636,-0.122895,-0.992384,0.008380, + -0.122895,-0.992384,0.008380,-0.122895,-0.992384,0.008380,-0.122895,-0.992384,0.008380,-0.600573,0.402365,-0.690952, + -0.600573,0.402365,-0.690952,-0.600573,0.402365,-0.690952,-0.600573,0.402365,-0.690952,0.666565,-0.225109,0.710646, + 0.666565,-0.225109,0.710646,0.666565,-0.225109,0.710646,0.666565,-0.225109,0.710646,-0.356545,0.806805,-0.471107, + -0.356545,0.806805,-0.471107,-0.356545,0.806805,-0.471107,-0.356545,0.806805,-0.471107,-0.591965,-0.140625,-0.793601, + -0.591965,-0.140625,-0.793601,-0.591965,-0.140625,-0.793601,-0.591965,-0.140625,-0.793601,-0.616710,-0.271154,-0.739016, + -0.616710,-0.271154,-0.739016,-0.616710,-0.271154,-0.739016,-0.616710,-0.271154,-0.739016,-0.615772,-0.272244,-0.739397, + -0.615772,-0.272244,-0.739397,-0.615772,-0.272244,-0.739397,-0.615772,-0.272244,-0.739397,-0.233581,-0.967123,-0.100561, + -0.233581,-0.967123,-0.100561,-0.233581,-0.967123,-0.100561,-0.233581,-0.967123,-0.100561,-0.233579,-0.967124,-0.100561, + -0.233579,-0.967124,-0.100561,-0.233579,-0.967124,-0.100561,-0.233579,-0.967124,-0.100561,-0.233580,-0.967124,-0.100560, + -0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560,-0.233578,-0.967124,-0.100559, + -0.233578,-0.967124,-0.100559,-0.233578,-0.967124,-0.100559,-0.947484,0.249622,-0.199909,-0.947484,0.249622,-0.199909, + -0.947484,0.249622,-0.199909,-0.947484,0.249622,-0.199909,0.955815,-0.241100,0.168193,0.955815,-0.241100,0.168193, + 0.955815,-0.241100,0.168193,0.955815,-0.241100,0.168193,-0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560, + -0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560, + -0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100560,-0.233580,-0.967124,-0.100561,-0.233580,-0.967124,-0.100561, + -0.233580,-0.967124,-0.100561,-0.233580,-0.967124,-0.100561,0.233580,0.967123,0.100561,0.233580,0.967123,0.100561, + 0.233580,0.967123,0.100561,0.233580,0.967123,0.100561,0.233580,0.967124,0.100560,0.233580,0.967124,0.100560, + 0.233580,0.967124,0.100560,0.233580,0.967124,0.100560,0.233580,0.967124,0.100561,0.233580,0.967124,0.100561, + 0.233580,0.967124,0.100561,0.233580,0.967124,0.100561,0.233578,0.967124,0.100559,0.233578,0.967124,0.100559, + 0.233578,0.967124,0.100559,0.947652,-0.249585,0.199156,0.947652,-0.249585,0.199156,0.947652,-0.249585,0.199156, + 0.947652,-0.249585,0.199156,0.294966,0.809294,0.507974,0.294966,0.809294,0.507974,0.294966,0.809294,0.507974, + 0.294966,0.809294,0.507974,-0.955583,0.241354,-0.169142,-0.955583,0.241354,-0.169142,-0.955583,0.241354,-0.169142, + -0.955583,0.241354,-0.169142,0.233579,0.967124,0.100560,0.233579,0.967124,0.100560,0.233579,0.967124,0.100560, + 0.233579,0.967124,0.100560,0.365092,0.922166,0.127739,0.365092,0.922166,0.127739,0.365092,0.922166,0.127739, + 0.365092,0.922166,0.127739,0.233580,0.967124,0.100560,0.233580,0.967124,0.100560,0.233580,0.967124,0.100560, + 0.233580,0.967124,0.100560,0.233580,0.967124,0.100561,0.233580,0.967124,0.100561,0.233580,0.967124,0.100561, + 0.233580,0.967124,0.100561,0.301454,0.892055,0.336695,0.301454,0.892055,0.336695,0.301454,0.892055,0.336695, + -0.142592,-0.068232,0.987427,-0.142592,-0.068232,0.987427,-0.142592,-0.068232,0.987427,-0.142592,-0.068232,0.987427, + -0.275479,-0.033361,0.960728,-0.275479,-0.033361,0.960728,-0.275479,-0.033361,0.960728,-0.275479,-0.033361,0.960728, + 0.301808,0.889651,0.342686,0.301808,0.889651,0.342686,0.301808,0.889651,0.342686,0.348459,0.871429,0.345237, + 0.348459,0.871429,0.345237,0.348459,0.871429,0.345237,-0.807177,0.588584,0.045098,-0.807177,0.588584,0.045098, + -0.807177,0.588584,0.045098,-0.807177,0.588584,0.045098,0.389423,0.834427,0.389975,0.389423,0.834427,0.389975, + 0.389423,0.834427,0.389975,0.819618,-0.448815,0.356078,0.819618,-0.448815,0.356078,0.819618,-0.448815,0.356078, + -0.597353,-0.632369,-0.493234,-0.597353,-0.632369,-0.493234,-0.597353,-0.632369,-0.493234,-0.597353,-0.632369,-0.493234, + 0.150824,0.893279,0.423444,0.150824,0.893279,0.423444,0.150824,0.893279,0.423444,0.315991,0.884239,0.343905, + 0.315991,0.884239,0.343905,0.315991,0.884239,0.343905,-0.028432,0.556028,0.830677,-0.028432,0.556028,0.830677, + -0.028432,0.556028,0.830677,0.989495,-0.049309,-0.135898,0.989495,-0.049309,-0.135898,0.989495,-0.049309,-0.135898, + 0.989495,-0.049309,-0.135898,-0.988333,0.113682,0.101365,-0.988333,0.113682,0.101365,-0.988333,0.113682,0.101365, + -0.988333,0.113682,0.101365,0.300926,0.889351,0.344235,0.300926,0.889351,0.344235,0.300926,0.889351,0.344235, + -0.459140,0.759160,0.461374,-0.459140,0.759160,0.461374,-0.459140,0.759160,0.461374,0.302518,0.889691,0.341956, + 0.302518,0.889691,0.341956,0.302518,0.889691,0.341956,0.314416,0.885764,0.341417,0.314416,0.885764,0.341417, + 0.314416,0.885764,0.341417,-0.650002,-0.749428,-0.125915,-0.650002,-0.749428,-0.125915,-0.650002,-0.749428,-0.125915, + -0.650002,-0.749428,-0.125915,0.942636,-0.104736,-0.316967,0.942636,-0.104736,-0.316967,0.942636,-0.104736,-0.316967, + 0.942636,-0.104736,-0.316967,0.016416,0.000289,0.999865,0.016416,0.000289,0.999865,0.016416,0.000289,0.999865, + -0.232800,0.871002,0.432620,-0.232800,0.871002,0.432620,-0.232800,0.871002,0.432620,-0.232800,0.871002,0.432620, + 0.256239,0.896407,0.361656,0.256239,0.896407,0.361656,0.256239,0.896407,0.361656,0.110503,0.897735,0.426451, + 0.110503,0.897735,0.426451,0.110503,0.897735,0.426451,-0.164998,-0.468328,0.868012,-0.164998,-0.468328,0.868012, + -0.164998,-0.468328,0.868012,-0.164998,-0.468328,0.868012,0.861229,-0.343999,0.374098,0.861229,-0.343999,0.374098, + 0.861229,-0.343999,0.374098,0.861229,-0.343999,0.374098,-0.868578,0.338037,-0.362358,-0.868578,0.338037,-0.362358, + -0.868578,0.338037,-0.362358,-0.868578,0.338037,-0.362358,-0.111639,-0.782254,-0.612875,-0.111639,-0.782254,-0.612875, + -0.111639,-0.782254,-0.612875,-0.111639,-0.782254,-0.612875,0.129220,0.814355,0.565799,0.129220,0.814355,0.565799, + 0.129220,0.814355,0.565799,0.129220,0.814355,0.565799,0.047305,0.635331,0.770790,0.047305,0.635331,0.770790, + 0.047305,0.635331,0.770790,0.047305,0.635331,0.770790,-0.047654,-0.636312,-0.769959,-0.047654,-0.636312,-0.769959, + -0.047654,-0.636312,-0.769959,-0.047654,-0.636312,-0.769959,-0.957072,0.255126,-0.137561,-0.957072,0.255126,-0.137561, + -0.957072,0.255126,-0.137561,-0.957072,0.255126,-0.137561,0.957124,-0.255014,0.137408,0.957124,-0.255014,0.137408, + 0.957124,-0.255014,0.137408,0.957124,-0.255014,0.137408,0.226706,0.847408,0.480107,0.226706,0.847408,0.480107, + 0.226706,0.847408,0.480107,0.226706,0.847408,0.480107,-0.229923,-0.841504,-0.488883,-0.229923,-0.841504,-0.488883, + -0.229923,-0.841504,-0.488883,-0.229923,-0.841504,-0.488883,0.928998,0.016086,-0.369735,0.928998,0.016086,-0.369735, + 0.928998,0.016086,-0.369735,0.928998,0.016086,-0.369735,-0.929267,-0.015494,0.369084,-0.929267,-0.015494,0.369084, + -0.929267,-0.015494,0.369084,-0.929267,-0.015494,0.369084,-0.274593,-0.961356,0.019818,-0.274593,-0.961356,0.019818, + -0.274593,-0.961356,0.019818,-0.274593,-0.961356,0.019818,-0.929395,0.264272,-0.257654,-0.929395,0.264272,-0.257654, + -0.929395,0.264272,-0.257654,-0.929395,0.264272,-0.257654,0.040604,0.991515,-0.123488,0.040604,0.991515,-0.123488, + 0.040604,0.991515,-0.123488,0.040604,0.991515,-0.123488,0.886951,-0.253966,0.385771,0.886951,-0.253966,0.385771, + 0.886951,-0.253966,0.385771,0.886951,-0.253966,0.385771,-0.306687,-0.847273,0.433672,-0.306687,-0.847273,0.433672, + -0.306687,-0.847273,0.433672,-0.306687,-0.847273,0.433672,-0.211213,0.080274,0.974138,-0.211213,0.080274,0.974138, + -0.211213,0.080274,0.974138,-0.211213,0.080274,0.974138,-0.054652,-0.991385,0.119037,-0.054652,-0.991385,0.119037, + -0.054652,-0.991385,0.119037,-0.054652,-0.991385,0.119037,0.278255,0.960323,-0.018800,0.278255,0.960323,-0.018800, + 0.278255,0.960323,-0.018800,0.278255,0.960323,-0.018800,0.491329,-0.140542,-0.859560,0.491329,-0.140542,-0.859560, + 0.491329,-0.140542,-0.859560,0.491329,-0.140542,-0.859560,-0.493322,0.141118,0.858324,-0.493322,0.141118,0.858324, + -0.493322,0.141118,0.858324,-0.493322,0.141118,0.858324,-0.759132,0.646541,-0.075518,-0.759132,0.646541,-0.075518, + -0.759132,0.646541,-0.075518,-0.759132,0.646541,-0.075518,0.630090,0.766202,0.126181,0.630090,0.766202,0.126181, + 0.630090,0.766202,0.126181,0.630090,0.766202,0.126181,0.757098,-0.653176,-0.012826,0.757098,-0.653176,-0.012826, + 0.757098,-0.653176,-0.012826,0.757098,-0.653176,-0.012826,-0.058952,-0.980226,0.188896,-0.058952,-0.980226,0.188896, + -0.058952,-0.980226,0.188896,-0.058952,-0.980226,0.188896,0.025236,-0.088731,-0.995736,0.025236,-0.088731,-0.995736, + 0.025236,-0.088731,-0.995736,0.025236,-0.088731,-0.995736,-0.022550,0.091931,0.995510,-0.022550,0.091931,0.995510, + -0.022550,0.091931,0.995510,-0.022550,0.091931,0.995510,-0.751852,0.659221,0.012093,-0.751852,0.659221,0.012093, + -0.751852,0.659221,0.012093,-0.751852,0.659221,0.012093,0.756448,-0.649741,0.074992,0.756448,-0.649741,0.074992, + 0.756448,-0.649741,0.074992,0.756448,-0.649741,0.074992,-0.241987,-0.155912,-0.957671,-0.241987,-0.155912,-0.957671, + -0.241987,-0.155912,-0.957671,-0.241987,-0.155912,-0.957671,0.243888,0.161703,0.956227,0.243888,0.161703,0.956227, + 0.243888,0.161703,0.956227,0.243888,0.161703,0.956227,-0.854907,-0.122671,-0.504069,-0.854907,-0.122671,-0.504069, + -0.854907,-0.122671,-0.504069,-0.854907,-0.122671,-0.504069,-0.005240,0.982119,-0.188189,-0.005240,0.982119,-0.188189, + -0.005240,0.982119,-0.188189,-0.005240,0.982119,-0.188189,0.854416,0.082115,0.513061,0.854416,0.082115,0.513061, + 0.854416,0.082115,0.513061,0.854416,0.082115,0.513061,0.039988,-0.932063,0.360081,0.039988,-0.932063,0.360081, + 0.039988,-0.932063,0.360081,0.039988,-0.932063,0.360081,0.524829,-0.119649,-0.842757,0.524829,-0.119649,-0.842757, + 0.524829,-0.119649,-0.842757,0.524829,-0.119649,-0.842757,-0.524921,0.123636,0.842124,-0.524921,0.123636,0.842124, + -0.524921,0.123636,0.842124,-0.524921,0.123636,0.842124,-0.854922,-0.093699,-0.510224,-0.854922,-0.093699,-0.510224, + -0.854922,-0.093699,-0.510224,-0.854922,-0.093699,-0.510224,0.854866,0.124394,0.503717,0.854866,0.124394,0.503717, + 0.854866,0.124394,0.503717,0.854866,0.124394,0.503717,0.512738,-0.176245,-0.840261,0.512738,-0.176245,-0.840261, + 0.512738,-0.176245,-0.840261,0.512738,-0.176245,-0.840261,-0.512755,0.176392,0.840219,-0.512755,0.176392,0.840219, + -0.512755,0.176392,0.840219,-0.512755,0.176392,0.840219,0.784975,0.124197,0.606951,0.784975,0.124197,0.606951, + 0.784975,0.124197,0.606951,0.784975,0.124197,0.606951,-0.950520,0.248898,-0.185907,-0.950520,0.248898,-0.185907, + -0.950520,0.248898,-0.185907,-0.950520,0.248898,-0.185907,-0.202966,0.214036,0.955507,-0.202966,0.214036,0.955507, + -0.202966,0.214036,0.955507,-0.202966,0.214036,0.955507,-0.192139,-0.976278,0.099824,-0.192139,-0.976278,0.099824, + -0.192139,-0.976278,0.099824,-0.192139,-0.976278,0.099824,0.238441,0.967249,-0.087036,0.238441,0.967249,-0.087036, + 0.238441,0.967249,-0.087036,0.238441,0.967249,-0.087036,0.543542,-0.184438,-0.818868,0.543542,-0.184438,-0.818868, + 0.543542,-0.184438,-0.818868,0.543542,-0.184438,-0.818868,-0.543785,0.184384,0.818719,-0.543785,0.184384,0.818719, + -0.543785,0.184384,0.818719,-0.543785,0.184384,0.818719,-0.967402,0.241552,-0.076069,-0.967402,0.241552,-0.076069, + -0.967402,0.241552,-0.076069,-0.967402,0.241552,-0.076069,-0.229805,-0.971484,-0.058377,-0.229805,-0.971484,-0.058377, + -0.229805,-0.971484,-0.058377,-0.229805,-0.971484,-0.058377,0.253512,0.965383,0.061382,0.253512,0.965383,0.061382, + 0.253512,0.965383,0.061382,0.253512,0.965383,0.061382,0.946100,-0.246573,0.209992,0.946100,-0.246573,0.209992, + 0.946100,-0.246573,0.209992,0.946100,-0.246573,0.209992,0.096374,0.045759,-0.994293,0.096374,0.045759,-0.994293, + 0.096374,0.045759,-0.994293,0.096374,0.045759,-0.994293,-0.100116,-0.044817,0.993966,-0.100116,-0.044817,0.993966, + -0.100116,-0.044817,0.993966,-0.100116,-0.044817,0.993966,-0.259201,-0.963816,-0.062235,-0.259201,-0.963816,-0.062235, + -0.259201,-0.963816,-0.062235,-0.259201,-0.963816,-0.062235,0.233904,0.970486,0.058700,0.233904,0.970486,0.058700, + 0.233904,0.970486,0.058700,0.233904,0.970486,0.058700,0.502509,-0.059522,-0.862521,0.502509,-0.059522,-0.862521, + 0.502509,-0.059522,-0.862521,0.502509,-0.059522,-0.862521,-0.505261,0.060315,0.860856,-0.505261,0.060315,0.860856, + -0.505261,0.060315,0.860856,-0.505261,0.060315,0.860856,-0.950516,0.248903,-0.185921,-0.950516,0.248903,-0.185921, + -0.950516,0.248903,-0.185921,-0.950516,0.248903,-0.185921,0.204830,0.052159,-0.977407,0.204830,0.052159,-0.977407, + 0.204830,0.052159,-0.977407,0.204830,0.052159,-0.977407,-0.204835,-0.052161,0.977406,-0.204835,-0.052161,0.977406, + -0.204835,-0.052161,0.977406,-0.204835,-0.052161,0.977406,0.950519,-0.248896,0.185916,0.950519,-0.248896,0.185916, + 0.950519,-0.248896,0.185916,0.950519,-0.248896,0.185916,0.950520,-0.248891,0.185918,0.950520,-0.248891,0.185918, + 0.950520,-0.248891,0.185918,0.950520,-0.248891,0.185918,-0.950519,0.248898,-0.185912,-0.950519,0.248898,-0.185912, + -0.950519,0.248898,-0.185912,-0.950519,0.248898,-0.185912,0.950518,-0.248907,0.185908,0.950518,-0.248907,0.185908, + 0.950518,-0.248907,0.185908,0.950518,-0.248907,0.185908,0.204824,0.052161,-0.977408,0.204824,0.052161,-0.977408, + 0.204824,0.052161,-0.977408,0.204824,0.052161,-0.977408,-0.204825,-0.052159,0.977408,-0.204825,-0.052159,0.977408, + -0.204825,-0.052159,0.977408,-0.204825,-0.052159,0.977408,-0.950518,0.248900,-0.185917,-0.950518,0.248900,-0.185917, + -0.950518,0.248900,-0.185917,-0.950518,0.248900,-0.185917,0.950518,-0.248900,0.185918,0.950518,-0.248900,0.185918, + 0.950518,-0.248900,0.185918,0.950518,-0.248900,0.185918,0.205321,0.054180,-0.977194,0.205321,0.054180,-0.977194, + 0.205321,0.054180,-0.977194,0.205321,0.054180,-0.977194,-0.204087,-0.049067,0.977722,-0.204087,-0.049067,0.977722, + -0.204087,-0.049067,0.977722,-0.204087,-0.049067,0.977722,-0.311747,-0.842872,0.438611,-0.311747,-0.842872,0.438611, + -0.311747,-0.842872,0.438611,-0.311747,-0.842872,0.438611,0.543196,-0.659787,-0.519248,0.543196,-0.659787,-0.519248, + 0.543196,-0.659787,-0.519248,0.543196,-0.659787,-0.519248,-0.950317,0.244629,-0.192496,-0.950317,0.244629,-0.192496, + -0.950317,0.244629,-0.192496,-0.950317,0.244629,-0.192496,0.297839,0.900275,-0.317486,0.297839,0.900275,-0.317486, + 0.297839,0.900275,-0.317486,0.297839,0.900275,-0.317486,-0.554251,0.656500,0.511678,-0.554251,0.656500,0.511678, + -0.554251,0.656500,0.511678,-0.554251,0.656500,0.511678,0.950319,-0.244620,0.192495,0.950319,-0.244620,0.192495, + 0.950319,-0.244620,0.192495,0.950319,-0.244620,0.192495,-0.161929,0.575534,0.801585,-0.161929,0.575534,0.801585, + -0.161929,0.575534,0.801585,-0.161929,0.575534,0.801585,-0.297846,-0.900274,0.317482,-0.297846,-0.900274,0.317482, + -0.297846,-0.900274,0.317482,-0.297846,-0.900274,0.317482,-0.165744,0.152220,0.974350,-0.165744,0.152220,0.974350, + -0.165744,0.152220,0.974350,-0.165744,0.152220,0.974350,-0.829464,0.261501,-0.493565,-0.829464,0.261501,-0.493565, + -0.829464,0.261501,-0.493565,-0.829464,0.261501,-0.493565,0.378482,0.386888,0.840874,0.378482,0.386888,0.840874, + 0.378482,0.386888,0.840874,0.179996,-0.151507,-0.971930,0.179996,-0.151507,-0.971930,0.179996,-0.151507,-0.971930, + 0.284740,-0.950484,0.124515,0.284740,-0.950484,0.124515,0.284740,-0.950484,0.124515,0.284740,-0.950484,0.124515, + -0.033655,0.512412,0.858080,-0.033655,0.512412,0.858080,-0.033655,0.512412,0.858080,-0.033655,0.512412,0.858080, + -0.950519,0.248897,-0.185913,-0.950519,0.248897,-0.185913,-0.950519,0.248897,-0.185913,-0.950519,0.248897,-0.185913, + 0.198527,0.026302,-0.979742,0.198527,0.026302,-0.979742,0.198527,0.026302,-0.979742,0.198527,0.026302,-0.979742, + -0.198521,-0.026301,0.979744,-0.198521,-0.026301,0.979744,-0.198521,-0.026301,0.979744,-0.198521,-0.026301,0.979744, + -0.344104,-0.587811,0.732169,-0.344104,-0.587811,0.732169,-0.344104,-0.587811,0.732169,-0.344104,-0.587811,0.732169, + 0.344379,0.588703,-0.731322,0.344379,0.588703,-0.731322,0.344379,0.588703,-0.731322,0.344379,0.588703,-0.731322, + -0.932669,0.205618,-0.296394,-0.932669,0.205618,-0.296394,-0.932669,0.205618,-0.296394,-0.932669,0.205618,-0.296394, + 0.932661,-0.205441,0.296544,0.932661,-0.205441,0.296544,0.932661,-0.205441,0.296544,0.932661,-0.205441,0.296544, + 0.954210,-0.296670,-0.038359,0.954210,-0.296670,-0.038359,0.954210,-0.296670,-0.038359,0.954210,-0.296670,-0.038359, + -0.952047,0.300229,0.058898,-0.952047,0.300229,0.058898,-0.952047,0.300229,0.058898,-0.952047,0.300229,0.058898, + 0.220442,0.973856,0.054866,0.220442,0.973856,0.054866,0.220442,0.973856,0.054866,0.220442,0.973856,0.054866, + -0.226539,-0.970404,-0.083644,-0.226539,-0.970404,-0.083644,-0.226539,-0.970404,-0.083644,-0.226539,-0.970404,-0.083644, + 0.950518,-0.248900,0.185916,0.950518,-0.248900,0.185916,0.950518,-0.248900,0.185916,0.950518,-0.248900,0.185916, + 0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724,0.254845,0.066045,-0.964724, + -0.852944,0.485377,-0.192084,-0.852944,0.485377,-0.192084,-0.852944,0.485377,-0.192084,-0.852944,0.485377,-0.192084, + -0.852941,0.485378,-0.192093,-0.852941,0.485378,-0.192093,-0.852941,0.485378,-0.192093,-0.852941,0.485378,-0.192093, + -0.455565,-0.871807,-0.180036,-0.455565,-0.871807,-0.180036,-0.455565,-0.871807,-0.180036,-0.455565,-0.871807,-0.180036, + 0.852945,-0.485375,0.192084,0.852945,-0.485375,0.192084,0.852945,-0.485375,0.192084,0.852945,-0.485375,0.192084, + 0.852946,-0.485374,0.192082,0.852946,-0.485374,0.192082,0.852946,-0.485374,0.192082,0.852946,-0.485374,0.192082, + 0.455564,0.871809,0.180027,0.455564,0.871809,0.180027,0.455564,0.871809,0.180027,0.455564,0.871809,0.180027, + -0.455566,-0.871807,-0.180035,-0.455566,-0.871807,-0.180035,-0.455566,-0.871807,-0.180035,-0.455566,-0.871807,-0.180035, + 0.856724,-0.484314,0.177381,0.856724,-0.484314,0.177381,0.856724,-0.484314,0.177381,0.856724,-0.484314,0.177381, + -0.456888,-0.869861,-0.185996,-0.456888,-0.869861,-0.185996,-0.456888,-0.869861,-0.185996,-0.456888,-0.869861,-0.185996, + -0.849898,0.481863,-0.213265,-0.849898,0.481863,-0.213265,-0.849898,0.481863,-0.213265,-0.849898,0.481863,-0.213265, + 0.455567,0.871808,0.180027,0.455567,0.871808,0.180027,0.455567,0.871808,0.180027,0.455567,0.871808,0.180027, + -0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725,-0.254841,-0.066046,0.964725, + -0.477572,-0.873973,-0.089976,-0.477572,-0.873973,-0.089976,-0.477572,-0.873973,-0.089976,-0.477572,-0.873973,-0.089976, + 0.148510,0.578406,0.802117,0.148510,0.578406,0.802117,0.148510,0.578406,0.802117,0.148510,0.578406,0.802117, + 0.184250,-0.064354,-0.980770,0.184250,-0.064354,-0.980770,0.184250,-0.064354,-0.980770,0.184250,-0.064354,-0.980770, + 0.451177,0.870564,0.196361,0.451177,0.870564,0.196361,0.451177,0.870564,0.196361,0.451177,0.870564,0.196361, + -0.852944,0.485375,-0.192085,-0.852944,0.485375,-0.192085,-0.852944,0.485375,-0.192085,-0.852944,0.485375,-0.192085, + 0.507737,0.856863,-0.089380,0.507737,0.856863,-0.089380,0.507737,0.856863,-0.089380,0.507737,0.856863,-0.089380, + 0.234498,0.027523,-0.971727,0.234498,0.027523,-0.971727,0.234498,0.027523,-0.971727,0.234498,0.027523,-0.971727, + -0.493292,-0.869831,-0.007518,-0.493292,-0.869831,-0.007518,-0.493292,-0.869831,-0.007518,-0.493292,-0.869831,-0.007518, + 0.198393,-0.979278,-0.040682,0.198393,-0.979278,-0.040682,0.198393,-0.979278,-0.040682,0.198393,-0.979278,-0.040682, + -0.455547,-0.871817,-0.180031,-0.455547,-0.871817,-0.180031,-0.455547,-0.871817,-0.180031,-0.455547,-0.871817,-0.180031, + -0.455567,-0.871808,-0.180027,-0.455567,-0.871808,-0.180027,-0.455567,-0.871808,-0.180027,-0.455567,-0.871808,-0.180027, + 0.589061,-0.435141,0.680926,0.589061,-0.435141,0.680926,0.589061,-0.435141,0.680926,0.589061,-0.435141,0.680926, + 0.264496,0.084617,-0.960668,0.264496,0.084617,-0.960668,0.264496,0.084617,-0.960668,0.264496,0.084617,-0.960668, + -0.455566,-0.871809,-0.180027,-0.455566,-0.871809,-0.180027,-0.455566,-0.871809,-0.180027,-0.455566,-0.871809,-0.180027, + -0.443163,-0.867771,-0.224901,-0.443163,-0.867771,-0.224901,-0.443163,-0.867771,-0.224901,-0.443163,-0.867771,-0.224901, + 0.492489,0.626286,-0.604335,0.492489,0.626286,-0.604335,0.492489,0.626286,-0.604335,0.492489,0.626286,-0.604335, + 0.455560,0.871812,0.180025,0.455560,0.871812,0.180025,0.455560,0.871812,0.180025,0.455560,0.871812,0.180025, + -0.128011,-0.540218,-0.831732,-0.128011,-0.540218,-0.831732,-0.128011,-0.540218,-0.831732,-0.128011,-0.540218,-0.831732, + -0.804123,0.492561,-0.332821,-0.804123,0.492561,-0.332821,-0.804123,0.492561,-0.332821,-0.804123,0.492561,-0.332821, + 0.258665,0.073380,-0.963176,0.258665,0.073380,-0.963176,0.258665,0.073380,-0.963176,0.258665,0.073380,-0.963176, + -0.455561,-0.871812,-0.180022,-0.455561,-0.871812,-0.180022,-0.455561,-0.871812,-0.180022,-0.455561,-0.871812,-0.180022, + 0.857748,-0.484178,0.172740,0.857748,-0.484178,0.172740,0.857748,-0.484178,0.172740,0.857748,-0.484178,0.172740, + 0.455566,0.871810,0.180022,0.455566,0.871810,0.180022,0.455566,0.871810,0.180022,0.455566,0.871810,0.180022, + 0.578802,0.806587,-0.120024,0.578802,0.806587,-0.120024,0.578802,0.806587,-0.120024,0.578802,0.806587,-0.120024, + 0.561286,0.492000,0.665502,0.561286,0.492000,0.665502,0.561286,0.492000,0.665502,0.561286,0.492000,0.665502, + -0.418271,0.435036,-0.797366,-0.418271,0.435036,-0.797366,-0.418271,0.435036,-0.797366,-0.418271,0.435036,-0.797366, + -0.469099,-0.851369,-0.234769,-0.469099,-0.851369,-0.234769,-0.469099,-0.851369,-0.234769,-0.469099,-0.851369,-0.234769, + -0.004192,0.680053,0.733151,-0.004192,0.680053,0.733151,-0.004192,0.680053,0.733151,-0.004192,0.680053,0.733151, + 0.539931,-0.035067,-0.840978,0.539931,-0.035067,-0.840978,0.539931,-0.035067,-0.840978,0.539931,-0.035067,-0.840978, + -0.383313,-0.889105,-0.250128,-0.383313,-0.889105,-0.250128,-0.383313,-0.889105,-0.250128,-0.383313,-0.889105,-0.250128, + 0.369478,0.925957,-0.078034,0.369478,0.925957,-0.078034,0.369478,0.925957,-0.078034,0.369478,0.925957,-0.078034, + -0.706082,0.483634,-0.517249,-0.706082,0.483634,-0.517249,-0.706082,0.483634,-0.517249,-0.706082,0.483634,-0.517249, + -0.522851,0.076810,0.848956,-0.522851,0.076810,0.848956,-0.522851,0.076810,0.848956,-0.522851,0.076810,0.848956, + 0.402354,-0.356527,0.843208,0.402354,-0.356527,0.843208,0.402354,-0.356527,0.843208,0.402354,-0.356527,0.843208, + 0.681710,-0.243333,-0.689971,0.681710,-0.243333,-0.689971,0.681710,-0.243333,-0.689971,0.681710,-0.243333,-0.689971, + 0.429032,0.886358,0.174070,0.429032,0.886358,0.174070,0.429032,0.886358,0.174070,0.429032,0.886358,0.174070, + -0.847365,0.478751,-0.229718,-0.847365,0.478751,-0.229718,-0.847365,0.478751,-0.229718,-0.847365,0.478751,-0.229718, + 0.517102,-0.072954,-0.852809,0.517102,-0.072954,-0.852809,0.517102,-0.072954,-0.852809,0.517102,-0.072954,-0.852809, + -0.414312,0.365532,-0.833506,-0.414312,0.365532,-0.833506,-0.414312,0.365532,-0.833506,-0.414312,0.365532,-0.833506, + -0.439473,-0.849079,-0.293135,-0.439473,-0.849079,-0.293135,-0.439473,-0.849079,-0.293135,-0.439473,-0.849079,-0.293135, + -0.381858,-0.876438,-0.293328,-0.381858,-0.876438,-0.293328,-0.381858,-0.876438,-0.293328,-0.381858,-0.876438,-0.293328, + 0.508706,0.847270,0.152813,0.508706,0.847270,0.152813,0.508706,0.847270,0.152813,0.508706,0.847270,0.152813, + 0.854181,-0.485053,0.187346,0.854181,-0.485053,0.187346,0.854181,-0.485053,0.187346,0.854181,-0.485053,0.187346, + -0.857452,0.484090,-0.174451,-0.857452,0.484090,-0.174451,-0.857452,0.484090,-0.174451,-0.857452,0.484090,-0.174451, + 0.477355,0.867942,0.137143,0.477355,0.867942,0.137143,0.477355,0.867942,0.137143,-0.444234,-0.868180,-0.221180, + -0.444234,-0.868180,-0.221180,-0.444234,-0.868180,-0.221180,-0.442321,-0.867442,-0.227809,-0.442321,-0.867442,-0.227809, + -0.442321,-0.867442,-0.227809,-0.442321,-0.867442,-0.227809,0.474617,0.867761,0.147411,0.474617,0.867761,0.147411, + 0.474617,0.867761,0.147411,0.474617,0.867761,0.147411,0.178356,-0.983387,0.033736,0.178356,-0.983387,0.033736, + 0.178356,-0.983387,0.033736,0.178356,-0.983387,0.033736,-0.842911,0.487492,-0.227711,-0.842911,0.487492,-0.227711, + -0.842911,0.487492,-0.227711,-0.842911,0.487492,-0.227711,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,0.461925,0.873210,0.155339,0.461925,0.873210,0.155339, + 0.461925,0.873210,0.155339,0.461925,0.873210,0.155339,0.461922,0.873211,0.155337,0.461922,0.873211,0.155337, + 0.461922,0.873211,0.155337,0.461922,0.873211,0.155337,0.464637,0.873646,0.144416,0.464637,0.873646,0.144416, + 0.464637,0.873646,0.144416,0.464637,0.873646,0.144416,0.857536,-0.483868,0.174655,0.857536,-0.483868,0.174655, + 0.857536,-0.483868,0.174655,0.857536,-0.483868,0.174655,-0.460119,-0.872862,-0.162485,-0.460119,-0.872862,-0.162485, + -0.460119,-0.872862,-0.162485,-0.460119,-0.872862,-0.162485,-0.857534,0.483871,-0.174657,-0.857534,0.483871,-0.174657, + -0.857534,0.483871,-0.174657,-0.857534,0.483871,-0.174657,0.460115,0.872865,0.162485,0.460115,0.872865,0.162485, + 0.460115,0.872865,0.162485,0.460115,0.872865,0.162485,0.460123,0.872861,0.162485,0.460123,0.872861,0.162485, + 0.460123,0.872861,0.162485,0.460123,0.872861,0.162485,0.460120,0.872862,0.162488,0.460120,0.872862,0.162488, + 0.460120,0.872862,0.162488,0.460120,0.872862,0.162488,0.460118,0.872863,0.162483,0.460118,0.872863,0.162483, + 0.460118,0.872863,0.162483,0.460118,0.872863,0.162483,-0.851132,0.485830,-0.198858,-0.851132,0.485830,-0.198858, + -0.851132,0.485830,-0.198858,-0.851132,0.485830,-0.198858,-0.843338,0.487419,-0.226285,-0.843338,0.487419,-0.226285, + -0.843338,0.487419,-0.226285,-0.843338,0.487419,-0.226285,-0.855819,0.484586,-0.180969,-0.855819,0.484586,-0.180969, + -0.855819,0.484586,-0.180969,-0.855819,0.484586,-0.180969,0.857278,-0.484145,0.175150,0.857278,-0.484145,0.175150, + 0.857278,-0.484145,0.175150,0.857278,-0.484145,0.175150,0.857215,-0.484161,0.175414,0.857215,-0.484161,0.175414, + 0.857215,-0.484161,0.175414,0.857215,-0.484161,0.175414,0.849833,-0.486131,0.203619,0.849833,-0.486131,0.203619, + 0.849833,-0.486131,0.203619,0.849833,-0.486131,0.203619,0.850301,-0.485092,0.204143,0.850301,-0.485092,0.204143, + 0.850301,-0.485092,0.204143,0.850301,-0.485092,0.204143,-0.857802,0.483983,-0.173020,-0.857802,0.483983,-0.173020, + -0.857802,0.483983,-0.173020,-0.857802,0.483983,-0.173020,0.445338,0.868594,0.217299,0.445338,0.868594,0.217299, + 0.445338,0.868594,0.217299,0.445338,0.868594,0.217299,0.857801,-0.483983,0.173027,0.857801,-0.483983,0.173027, + 0.857801,-0.483983,0.173027,0.857801,-0.483983,0.173027,-0.445341,-0.868591,-0.217303,-0.445341,-0.868591,-0.217303, + -0.445341,-0.868591,-0.217303,-0.445341,-0.868591,-0.217303,-0.445569,-0.868671,-0.216517,-0.445569,-0.868671,-0.216517, + -0.445569,-0.868671,-0.216517,-0.445569,-0.868671,-0.216517,-0.445568,-0.868670,-0.216521,-0.445568,-0.868670,-0.216521, + -0.445568,-0.868670,-0.216521,-0.445568,-0.868670,-0.216521,0.445539,0.868662,0.216611,0.445539,0.868662,0.216611, + 0.445539,0.868662,0.216611,0.445539,0.868662,0.216611,-0.842584,0.487549,-0.228797,-0.842584,0.487549,-0.228797, + -0.842584,0.487549,-0.228797,-0.842584,0.487549,-0.228797,0.842587,-0.487546,0.228793,0.842587,-0.487546,0.228793, + 0.842587,-0.487546,0.228793,0.842587,-0.487546,0.228793,-0.445544,-0.868661,-0.216606,-0.445544,-0.868661,-0.216606, + -0.445544,-0.868661,-0.216606,-0.445544,-0.868661,-0.216606,0.848193,-0.486286,0.209989,0.848193,-0.486286,0.209989, + 0.848193,-0.486286,0.209989,0.848193,-0.486286,0.209989,-0.450868,-0.870465,-0.197507,-0.450868,-0.870465,-0.197507, + -0.450868,-0.870465,-0.197507,-0.450868,-0.870465,-0.197507,-0.450865,-0.870465,-0.197511,-0.450865,-0.870465,-0.197511, + -0.450865,-0.870465,-0.197511,-0.450865,-0.870465,-0.197511,-0.857293,0.484331,-0.174560,-0.857293,0.484331,-0.174560, + -0.857293,0.484331,-0.174560,-0.857293,0.484331,-0.174560,-0.450865,-0.870464,-0.197515,-0.450865,-0.870464,-0.197515, + -0.450865,-0.870464,-0.197515,-0.450865,-0.870464,-0.197515,-0.244427,-0.046224,0.968565,-0.244427,-0.046224,0.968565, + -0.244427,-0.046224,0.968565,-0.244427,-0.046224,0.968565,0.451180,0.870563,0.196359,0.451180,0.870563,0.196359, + 0.451180,0.870563,0.196359,0.451180,0.870563,0.196359,0.197327,-0.979650,-0.036722,0.197327,-0.979650,-0.036722, + 0.197327,-0.979650,-0.036722,0.197327,-0.979650,-0.036722,-0.891020,-0.362162,-0.273719,-0.891020,-0.362162,-0.273719, + -0.891020,-0.362162,-0.273719,-0.891020,-0.362162,-0.273719,0.852943,-0.485376,0.192087,0.852943,-0.485376,0.192087, + 0.852943,-0.485376,0.192087,0.852943,-0.485376,0.192087,-0.868907,-0.415908,-0.268369,-0.868907,-0.415908,-0.268369, + -0.868907,-0.415908,-0.268369,-0.868907,-0.415908,-0.268369,0.852943,-0.485378,0.192086,0.852943,-0.485378,0.192086, + 0.852943,-0.485378,0.192086,0.852943,-0.485378,0.192086,-0.417189,-0.855027,-0.308029,-0.417189,-0.855027,-0.308029, + -0.417189,-0.855027,-0.308029,-0.417189,-0.855027,-0.308029,0.471188,0.874258,0.116854,0.471188,0.874258,0.116854, + 0.471188,0.874258,0.116854,0.471188,0.874258,0.116854,-0.430480,-0.862179,-0.267084,-0.430480,-0.862179,-0.267084, + -0.430480,-0.862179,-0.267084,-0.430480,-0.862179,-0.267084,0.454075,0.871407,0.185651,0.454075,0.871407,0.185651, + 0.454075,0.871407,0.185651,0.454075,0.871407,0.185651,-0.447667,-0.869419,-0.209058,-0.447667,-0.869419,-0.209058, + -0.447667,-0.869419,-0.209058,-0.447667,-0.869419,-0.209058,0.840713,-0.487844,0.234968,0.840713,-0.487844,0.234968, + 0.840713,-0.487844,0.234968,0.840713,-0.487844,0.234968,-0.456767,-0.872116,-0.175434,-0.456767,-0.872116,-0.175434, + -0.456767,-0.872116,-0.175434,-0.456767,-0.872116,-0.175434,-0.860834,0.482956,-0.160368,-0.860834,0.482956,-0.160368, + -0.860834,0.482956,-0.160368,-0.860834,0.482956,-0.160368,-0.456746,-0.872109,-0.175524,-0.456746,-0.872109,-0.175524, + -0.456746,-0.872109,-0.175524,-0.456746,-0.872109,-0.175524,0.275401,0.054282,-0.959796,0.275401,0.054282,-0.959796, + 0.275401,0.054282,-0.959796,0.275401,0.054282,-0.959796,-0.455566,-0.871809,-0.180022,-0.455566,-0.871809,-0.180022, + -0.455566,-0.871809,-0.180022,-0.455566,-0.871809,-0.180022,-0.455568,-0.871809,-0.180020,-0.455568,-0.871809,-0.180020, + -0.455568,-0.871809,-0.180020,-0.455568,-0.871809,-0.180020,-0.254837,-0.066044,0.964726,-0.254837,-0.066044,0.964726, + -0.254837,-0.066044,0.964726,-0.254837,-0.066044,0.964726,-0.456748,-0.872109,-0.175523,-0.456748,-0.872109,-0.175523, + -0.456748,-0.872109,-0.175523,-0.456748,-0.872109,-0.175523,0.834900,-0.488608,0.253387,0.834900,-0.488608,0.253387, + 0.834900,-0.488608,0.253387,0.834900,-0.488608,0.253387,-0.455567,-0.871807,-0.180032,-0.455567,-0.871807,-0.180032, + -0.455567,-0.871807,-0.180032,-0.455567,-0.871807,-0.180032,-0.455566,-0.871808,-0.180028,-0.455566,-0.871808,-0.180028, + -0.455566,-0.871808,-0.180028,-0.455566,-0.871808,-0.180028,0.845967,-0.486934,0.217337,0.845967,-0.486934,0.217337, + 0.845967,-0.486934,0.217337,0.845967,-0.486934,0.217337,0.455566,0.871809,0.180023,0.455566,0.871809,0.180023, + 0.455566,0.871809,0.180023,0.455566,0.871809,0.180023,0.257709,0.064409,-0.964073,0.257709,0.064409,-0.964073, + 0.257709,0.064409,-0.964073,0.257709,0.064409,-0.964073,-0.251791,-0.067778,0.965405,-0.251791,-0.067778,0.965405, + -0.251791,-0.067778,0.965405,-0.251791,-0.067778,0.965405,0.455565,0.871809,0.180028,0.455565,0.871809,0.180028, + 0.455565,0.871809,0.180028,0.455565,0.871809,0.180028,0.455566,0.871809,0.180025,0.455566,0.871809,0.180025, + 0.455566,0.871809,0.180025,0.455566,0.871809,0.180025,0.455568,0.871808,0.180025,0.455568,0.871808,0.180025, + 0.455568,0.871808,0.180025,0.455568,0.871808,0.180025,-0.859297,0.483485,-0.166884,-0.859297,0.483485,-0.166884, + -0.859297,0.483485,-0.166884,-0.859297,0.483485,-0.166884,0.455566,0.871809,0.180027,0.455566,0.871809,0.180027, + 0.455566,0.871809,0.180027,0.455566,0.871809,0.180027,0.455564,0.871809,0.180029,0.455564,0.871809,0.180029, + 0.455564,0.871809,0.180029,0.455564,0.871809,0.180029,0.455574,0.871811,0.179992,0.455574,0.871811,0.179992, + 0.455574,0.871811,0.179992,0.455574,0.871811,0.179992,0.864206,-0.481637,0.145512,0.864206,-0.481637,0.145512, + 0.864206,-0.481637,0.145512,0.864206,-0.481637,0.145512,-0.866034,0.480843,-0.137025,-0.866034,0.480843,-0.137025, + -0.866034,0.480843,-0.137025,-0.866034,0.480843,-0.137025,0.631202,0.746380,0.210951,0.631202,0.746380,0.210951, + 0.631202,0.746380,0.210951,0.631202,0.746380,0.210951,0.847154,-0.486708,0.213181,0.847154,-0.486708,0.213181, + 0.847154,-0.486708,0.213181,0.847154,-0.486708,0.213181,-0.848090,0.486509,-0.209887,-0.848090,0.486509,-0.209887, + -0.848090,0.486509,-0.209887,-0.848090,0.486509,-0.209887,0.259868,0.956228,0.134523,0.259868,0.956228,0.134523, + 0.259868,0.956228,0.134523,0.259868,0.956228,0.134523,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.324915,0.781660,0.532390,0.324915,0.781660,0.532390, + 0.324915,0.781660,0.532390,0.324915,0.781660,0.532390,-0.254845,-0.066051,0.964723,-0.254845,-0.066051,0.964723, + -0.254845,-0.066051,0.964723,-0.254845,-0.066051,0.964723,0.238137,0.075511,-0.968292,0.238137,0.075511,-0.968292, + 0.238137,0.075511,-0.968292,0.238137,0.075511,-0.968292,0.510703,0.835955,-0.200903,0.510703,0.835955,-0.200903, + 0.510703,0.835955,-0.200903,0.510703,0.835955,-0.200903,-0.230771,-0.079667,0.969741,-0.230771,-0.079667,0.969741, + -0.230771,-0.079667,0.969741,-0.230771,-0.079667,0.969741,0.455563,0.871809,0.180032,0.455563,0.871809,0.180032, + 0.455563,0.871809,0.180032,0.455563,0.871809,0.180032,0.455570,0.871806,0.180028,0.455570,0.871806,0.180028, + 0.455570,0.871806,0.180028,0.455570,0.871806,0.180028,0.455564,0.871809,0.180029,0.455564,0.871809,0.180029, + 0.455564,0.871809,0.180029,0.455564,0.871809,0.180029,0.859684,-0.483354,0.165267,0.859684,-0.483354,0.165267, + 0.859684,-0.483354,0.165267,0.859684,-0.483354,0.165267,-0.860860,0.482940,-0.160277,-0.860860,0.482940,-0.160277, + -0.860860,0.482940,-0.160277,-0.860860,0.482940,-0.160277,0.581667,0.786474,0.207659,0.581667,0.786474,0.207659, + 0.581667,0.786474,0.207659,0.581667,0.786474,0.207659,0.834902,-0.488604,0.253385,0.834902,-0.488604,0.253385, + 0.834902,-0.488604,0.253385,0.834902,-0.488604,0.253385,-0.837949,0.488232,-0.243866,-0.837949,0.488232,-0.243866, + -0.837949,0.488232,-0.243866,-0.837949,0.488232,-0.243866,0.319596,0.936528,0.144131,0.319596,0.936528,0.144131, + 0.319596,0.936528,0.144131,0.319596,0.936528,0.144131,0.254850,0.066048,-0.964722,0.254850,0.066048,-0.964722, + 0.254850,0.066048,-0.964722,0.254850,0.066048,-0.964722,0.367125,0.819380,0.440267,0.367125,0.819380,0.440267, + 0.367125,0.819380,0.440267,0.367125,0.819380,0.440267,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724, + 0.254844,0.066047,-0.964724,0.254844,0.066047,-0.964724,0.508339,0.855974,-0.094343,0.508339,0.855974,-0.094343, + 0.508339,0.855974,-0.094343,0.508339,0.855974,-0.094343,-0.254837,-0.066041,0.964726,-0.254837,-0.066041,0.964726, + -0.254837,-0.066041,0.964726,-0.254837,-0.066041,0.964726,0.455567,0.871813,0.180003,0.455567,0.871813,0.180003, + 0.455567,0.871813,0.180003,0.455567,0.871813,0.180003,0.455566,0.871809,0.180023,0.455566,0.871809,0.180023, + 0.455566,0.871809,0.180023,0.455566,0.871809,0.180023,0.455564,0.871809,0.180028,0.455564,0.871809,0.180028, + 0.455564,0.871809,0.180028,0.455564,0.871809,0.180028,-0.447669,-0.869418,-0.209056,-0.447669,-0.869418,-0.209056, + -0.447669,-0.869418,-0.209056,-0.447669,-0.869418,-0.209056,-0.447652,-0.869412,-0.209119,-0.447652,-0.869412,-0.209119, + -0.447652,-0.869412,-0.209119,-0.447652,-0.869412,-0.209119,-0.839734,0.485950,-0.242279,-0.839734,0.485950,-0.242279, + -0.839734,0.485950,-0.242279,-0.839734,0.485950,-0.242279,0.854654,-0.485057,0.185165,0.854654,-0.485057,0.185165, + 0.854654,-0.485057,0.185165,0.854654,-0.485057,0.185165,-0.204624,-0.059344,0.977040,-0.204624,-0.059344,0.977040, + -0.204624,-0.059344,0.977040,-0.204624,-0.059344,0.977040,0.453532,0.871259,0.187661,0.453532,0.871259,0.187661, + 0.453532,0.871259,0.187661,-0.839839,0.488114,-0.237518,-0.839839,0.488114,-0.237518,-0.839839,0.488114,-0.237518, + -0.839839,0.488114,-0.237518,0.232007,0.025336,-0.972384,0.232007,0.025336,-0.972384,0.232007,0.025336,-0.972384, + 0.232007,0.025336,-0.972384,0.293384,0.048224,-0.954778,0.293384,0.048224,-0.954778,0.293384,0.048224,-0.954778, + 0.293384,0.048224,-0.954778,-0.256578,-0.069371,0.964031,-0.256578,-0.069371,0.964031,-0.256578,-0.069371,0.964031, + -0.256578,-0.069371,0.964031,0.859399,-0.483376,0.166674,0.859399,-0.483376,0.166674,0.859399,-0.483376,0.166674, + 0.859399,-0.483376,0.166674,0.453334,0.871338,0.187774,0.453334,0.871338,0.187774,0.453334,0.871338,0.187774, + 0.461056,0.871537,0.166887,0.461056,0.871537,0.166887,0.461056,0.871537,0.166887,0.461056,0.871537,0.166887, + 0.853927,-0.485162,0.188222,0.853927,-0.485162,0.188222,0.853927,-0.485162,0.188222,0.853927,-0.485162,0.188222, + -0.857843,0.482643,-0.176522,-0.857843,0.482643,-0.176522,-0.857843,0.482643,-0.176522,-0.857843,0.482643,-0.176522, + 0.320635,0.002294,-0.947200,0.320635,0.002294,-0.947200,0.320635,0.002294,-0.947200,0.320635,0.002294,-0.947200, + -0.212666,-0.064178,0.975015,-0.212666,-0.064178,0.975015,-0.212666,-0.064178,0.975015,-0.212666,-0.064178,0.975015, + 0.408842,0.899714,0.152847,0.408842,0.899714,0.152847,0.408842,0.899714,0.152847,0.408842,0.899714,0.152847, + -0.860858,0.482945,-0.160274,-0.860858,0.482945,-0.160274,-0.860858,0.482945,-0.160274,-0.860858,0.482945,-0.160274, + -0.456757,-0.872103,-0.175525,-0.456757,-0.872103,-0.175525,-0.456757,-0.872103,-0.175525,-0.456757,-0.872103,-0.175525, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + -0.455567,-0.871809,-0.180022,-0.455567,-0.871809,-0.180022,-0.455567,-0.871809,-0.180022,-0.455567,-0.871809,-0.180022, + -0.455568,-0.871809,-0.180017,-0.455568,-0.871809,-0.180017,-0.455568,-0.871809,-0.180017,-0.455568,-0.871809,-0.180017, + -0.254847,-0.066050,0.964723,-0.254847,-0.066050,0.964723,-0.254847,-0.066050,0.964723,-0.254847,-0.066050,0.964723, + -0.455571,-0.871806,-0.180028,-0.455571,-0.871806,-0.180028,-0.455571,-0.871806,-0.180028,-0.455571,-0.871806,-0.180028, + -0.455566,-0.871808,-0.180029,-0.455566,-0.871808,-0.180029,-0.455566,-0.871808,-0.180029,-0.455566,-0.871808,-0.180029, + 0.254839,0.066044,-0.964726,0.254839,0.066044,-0.964726,0.254839,0.066044,-0.964726,0.254839,0.066044,-0.964726, + -0.843517,0.487399,-0.225660,-0.843517,0.487399,-0.225660,-0.843517,0.487399,-0.225660,-0.843517,0.487399,-0.225660, + -0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + 0.859244,-0.483504,0.167104,0.859244,-0.483504,0.167104,0.859244,-0.483504,0.167104,0.859244,-0.483504,0.167104, + 0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726,0.254838,0.066045,-0.964726, + -0.839051,0.488078,-0.240362,-0.839051,0.488078,-0.240362,-0.839051,0.488078,-0.240362,-0.839051,0.488078,-0.240362, + -0.271219,-0.056687,0.960847,-0.271219,-0.056687,0.960847,-0.271219,-0.056687,0.960847,-0.271219,-0.056687,0.960847, + 0.859223,-0.483516,0.167175,0.859223,-0.483516,0.167175,0.859223,-0.483516,0.167175,0.859223,-0.483516,0.167175, + -0.849022,0.484947,-0.209733,-0.849022,0.484947,-0.209733,-0.849022,0.484947,-0.209733,0.689241,0.688876,0.224494, + 0.689241,0.688876,0.224494,0.689241,0.688876,0.224494,0.689241,0.688876,0.224494,0.448383,0.485410,-0.750553, + 0.448383,0.485410,-0.750553,0.448383,0.485410,-0.750553,0.448383,0.485410,-0.750553,0.183553,0.976522,0.112748, + 0.183553,0.976522,0.112748,0.183553,0.976522,0.112748,0.183553,0.976522,0.112748,0.353663,0.807984,0.471258, + 0.353663,0.807984,0.471258,0.353663,0.807984,0.471258,0.353663,0.807984,0.471258,0.852941,-0.485381,0.192083, + 0.852941,-0.485381,0.192083,0.852941,-0.485381,0.192083,0.888526,0.361826,0.282141,0.888526,0.361826,0.282141, + 0.888526,0.361826,0.282141,0.888526,0.361826,0.282141,0.290540,0.645726,0.706134,0.290540,0.645726,0.706134, + 0.290540,0.645726,0.706134,0.290540,0.645726,0.706134,-0.424127,-0.807622,0.409711,-0.424127,-0.807622,0.409711, + -0.424127,-0.807622,0.409711,-0.424127,-0.807622,0.409711,-0.503274,-0.666982,0.549410,-0.503274,-0.666982,0.549410, + -0.503274,-0.666982,0.549410,-0.503274,-0.666982,0.549410,-0.456043,-0.871932,-0.178211,-0.456043,-0.871932,-0.178211, + -0.456043,-0.871932,-0.178211,0.848011,-0.486530,0.210158,0.848011,-0.486530,0.210158,0.848011,-0.486530,0.210158, + 0.848011,-0.486530,0.210158,0.455567,0.871808,0.180027,0.455567,0.871808,0.180027,0.455567,0.871808,0.180027, + 0.455567,0.871808,0.180027,-0.722879,-0.648557,-0.238370,-0.722879,-0.648557,-0.238370,-0.722879,-0.648557,-0.238370, + -0.722879,-0.648557,-0.238370,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725,0.254842,0.066046,-0.964725, + 0.254842,0.066046,-0.964725,-0.852937,0.485383,-0.192098,-0.852937,0.485383,-0.192098,-0.852937,0.485383,-0.192098, + -0.130947,-0.986232,-0.100990,-0.130947,-0.986232,-0.100990,-0.130947,-0.986232,-0.100990,-0.130947,-0.986232,-0.100990, + 0.852945,-0.485366,0.192108,0.852945,-0.485366,0.192108,0.852945,-0.485366,0.192108,-0.514576,-0.851629,0.099701, + -0.514576,-0.851629,0.099701,-0.514576,-0.851629,0.099701,-0.514576,-0.851629,0.099701,-0.852952,0.485360,-0.192091, + -0.852952,0.485360,-0.192091,-0.852952,0.485360,-0.192091,0.475221,0.554321,-0.683296,0.475221,0.554321,-0.683296, + 0.475221,0.554321,-0.683296,0.475221,0.554321,-0.683296,-0.358935,-0.820658,-0.444619,-0.358935,-0.820658,-0.444619, + -0.358935,-0.820658,-0.444619,-0.358935,-0.820658,-0.444619,0.852946,-0.485375,0.192081,0.852946,-0.485375,0.192081, + 0.852946,-0.485375,0.192081,-0.455561,-0.871810,-0.180033,-0.455561,-0.871810,-0.180033,-0.455561,-0.871810,-0.180033, + -0.455561,-0.871810,-0.180033,-0.455554,-0.871814,-0.180029,-0.455554,-0.871814,-0.180029,-0.455554,-0.871814,-0.180029, + -0.455554,-0.871814,-0.180029,-0.455565,-0.871809,-0.180027,-0.455565,-0.871809,-0.180027,-0.455565,-0.871809,-0.180027, + -0.455565,-0.871809,-0.180027,0.261437,-0.965139,-0.012563,0.261437,-0.965139,-0.012563,0.261437,-0.965139,-0.012563, + 0.261437,-0.965139,-0.012563,-0.887047,-0.376511,-0.267184,-0.887047,-0.376511,-0.267184,-0.887047,-0.376511,-0.267184, + -0.887047,-0.376511,-0.267184,-0.455567,-0.871808,-0.180027,-0.455567,-0.871808,-0.180027,-0.455567,-0.871808,-0.180027, + -0.455567,-0.871808,-0.180027,0.230005,0.643570,0.730010,0.230005,0.643570,0.730010,0.230005,0.643570,0.730010, + 0.230005,0.643570,0.730010,0.361520,0.848652,-0.386126,0.361520,0.848652,-0.386126,0.361520,0.848652,-0.386126, + 0.361520,0.848652,-0.386126,-0.397234,-0.607577,-0.687790,-0.397234,-0.607577,-0.687790,-0.397234,-0.607577,-0.687790, + -0.397234,-0.607577,-0.687790,-0.806723,0.518456,-0.283552,-0.806723,0.518456,-0.283552,-0.806723,0.518456,-0.283552, + -0.851282,0.487910,-0.193035,-0.851282,0.487910,-0.193035,-0.851282,0.487910,-0.193035,-0.851282,0.487910,-0.193035, + -0.865149,0.466784,-0.183382,-0.865149,0.466784,-0.183382,-0.865149,0.466784,-0.183382,-0.865149,0.466784,-0.183382, + -0.857426,0.468642,-0.212594,-0.857426,0.468642,-0.212594,-0.857426,0.468642,-0.212594,-0.857426,0.468642,-0.212594, + -0.857946,0.475672,-0.194074,-0.857946,0.475672,-0.194074,-0.857946,0.475672,-0.194074,-0.857946,0.475672,-0.194074, + -0.850453,0.485980,-0.201381,-0.850453,0.485980,-0.201381,-0.850453,0.485980,-0.201381,-0.850453,0.485980,-0.201381, + -0.714189,0.468063,-0.520433,-0.714189,0.468063,-0.520433,-0.714189,0.468063,-0.520433,-0.714189,0.468063,-0.520433, + -0.501475,0.121023,0.856666,-0.501475,0.121023,0.856666,-0.501475,0.121023,0.856666,-0.501475,0.121023,0.856666, + 0.382226,-0.389215,0.838102,0.382226,-0.389215,0.838102,0.382226,-0.389215,0.838102,0.382226,-0.389215,0.838102, + 0.700925,-0.206883,-0.682571,0.700925,-0.206883,-0.682571,0.700925,-0.206883,-0.682571,0.700925,-0.206883,-0.682571, + 0.496012,-0.111717,-0.861099,0.496012,-0.111717,-0.861099,0.496012,-0.111717,-0.861099,0.496012,-0.111717,-0.861099, + -0.399804,0.395728,-0.826775,-0.399804,0.395728,-0.826775,-0.399804,0.395728,-0.826775,-0.399804,0.395728,-0.826775, + -0.484862,-0.764829,0.424199,-0.484862,-0.764829,0.424199,-0.484862,-0.764829,0.424199,-0.484862,-0.764829,0.424199, + -0.852945,0.485376,-0.192082,-0.852945,0.485376,-0.192082,-0.852945,0.485376,-0.192082,-0.852945,0.485376,-0.192082, + 0.240136,0.038120,-0.969991,0.240136,0.038120,-0.969991,0.240136,0.038120,-0.969991,0.240136,0.038120,-0.969991, + -0.807733,0.485644,-0.334242,-0.807733,0.485644,-0.334242,-0.807733,0.485644,-0.334242,-0.807733,0.485644,-0.334242, + 0.249073,0.055037,-0.966920,0.249073,0.055037,-0.966920,0.249073,0.055037,-0.966920,0.249073,0.055037,-0.966920, + 0.857939,-0.483813,0.172816,0.857939,-0.483813,0.172816,0.857939,-0.483813,0.172816,0.857939,-0.483813,0.172816, + 0.857279,-0.484144,0.175149,0.857279,-0.484144,0.175149,0.857279,-0.484144,0.175149,0.857279,-0.484144,0.175149, + 0.857277,-0.484147,0.175149,0.857277,-0.484147,0.175149,0.857277,-0.484147,0.175149,0.857277,-0.484147,0.175149, + 0.857279,-0.484145,0.175149,0.857279,-0.484145,0.175149,0.857279,-0.484145,0.175149,0.857279,-0.484145,0.175149, + 0.852062,-0.485600,0.195407,0.852062,-0.485600,0.195407,0.852062,-0.485600,0.195407,0.852062,-0.485600,0.195407, + 0.849292,-0.486252,0.205577,0.849292,-0.486252,0.205577,0.849292,-0.486252,0.205577,0.849292,-0.486252,0.205577, + 0.849358,-0.486238,0.205340,0.849358,-0.486238,0.205340,0.849358,-0.486238,0.205340,0.849358,-0.486238,0.205340, + -0.844693,0.487180,-0.221697,-0.844693,0.487180,-0.221697,-0.844693,0.487180,-0.221697,-0.844693,0.487180,-0.221697, + -0.844300,0.487250,-0.223035,-0.844300,0.487250,-0.223035,-0.844300,0.487250,-0.223035,-0.844300,0.487250,-0.223035, + -0.859014,0.483583,-0.168052,-0.859014,0.483583,-0.168052,-0.859014,0.483583,-0.168052,-0.859014,0.483583,-0.168052, + -0.856868,0.484271,-0.176801,-0.856868,0.484271,-0.176801,-0.856868,0.484271,-0.176801,-0.856868,0.484271,-0.176801, + -0.873954,0.434439,-0.217870,-0.873954,0.434439,-0.217870,-0.873954,0.434439,-0.217870,-0.873954,0.434439,-0.217870, + -0.257064,-0.022657,0.966129,-0.257064,-0.022657,0.966129,-0.257064,-0.022657,0.966129,-0.257064,-0.022657,0.966129, + 0.314077,0.133687,-0.939938,0.314077,0.133687,-0.939938,0.314077,0.133687,-0.939938,0.314077,0.133687,-0.939938, + -0.458166,-0.873646,-0.163785,-0.458166,-0.873646,-0.163785,-0.458166,-0.873646,-0.163785,-0.458166,-0.873646,-0.163785, + 0.456621,0.872042,0.176182,0.456621,0.872042,0.176182,0.456621,0.872042,0.176182,0.456621,0.872042,0.176182, + -0.848233,0.488248,-0.205218,-0.848233,0.488248,-0.205218,-0.848233,0.488248,-0.205218,-0.848233,0.488248,-0.205218, + -0.855060,0.484662,-0.184325,-0.855060,0.484662,-0.184325,-0.855060,0.484662,-0.184325,0.462018,0.873296,0.154576, + 0.462018,0.873296,0.154576,0.462018,0.873296,0.154576,0.462018,0.873296,0.154576,-0.251579,-0.067901,0.965452, + -0.251579,-0.067901,0.965452,-0.251579,-0.067901,0.965452,-0.251579,-0.067901,0.965452,0.271135,0.105707,-0.956719, + 0.271135,0.105707,-0.956719,0.271135,0.105707,-0.956719,0.271135,0.105707,-0.956719,0.294374,0.041986,-0.954768, + 0.294374,0.041986,-0.954768,0.294374,0.041986,-0.954768,0.294374,0.041986,-0.954768,-0.443145,-0.867616,-0.225533, + -0.443145,-0.867616,-0.225533,-0.443145,-0.867616,-0.225533,-0.443145,-0.867616,-0.225533,-0.854938,0.484832,-0.184440, + -0.854938,0.484832,-0.184440,-0.854938,0.484832,-0.184440,-0.261781,-0.014373,0.965020,-0.261781,-0.014373,0.965020, + -0.261781,-0.014373,0.965020,-0.261781,-0.014373,0.965020,0.457542,0.872162,0.173174,0.457542,0.872162,0.173174, + 0.457542,0.872162,0.173174,0.457542,0.872162,0.173174,-0.439609,-0.868428,-0.229297,-0.439609,-0.868428,-0.229297, + -0.439609,-0.868428,-0.229297,-0.439609,-0.868428,-0.229297,0.408844,0.899713,0.152848,0.408844,0.899713,0.152848, + 0.408844,0.899713,0.152848,0.408844,0.899713,0.152848,-0.212638,-0.064163,0.975022,-0.212638,-0.064163,0.975022, + -0.212638,-0.064163,0.975022,-0.212638,-0.064163,0.975022,0.320635,0.002289,-0.947200,0.320635,0.002289,-0.947200, + 0.320635,0.002289,-0.947200,0.320635,0.002289,-0.947200,-0.857837,0.482658,-0.176512,-0.857837,0.482658,-0.176512, + -0.857837,0.482658,-0.176512,-0.857837,0.482658,-0.176512,0.853943,-0.485133,0.188219,0.853943,-0.485133,0.188219, + 0.853943,-0.485133,0.188219,0.853943,-0.485133,0.188219,0.461058,0.871536,0.166885,0.461058,0.871536,0.166885, + 0.461058,0.871536,0.166885,0.461058,0.871536,0.166885,0.453334,0.871338,0.187774,0.453334,0.871338,0.187774, + 0.453334,0.871338,0.187774,0.859396,-0.483385,0.166669,0.859396,-0.483385,0.166669,0.859396,-0.483385,0.166669, + 0.859396,-0.483385,0.166669,-0.256584,-0.069379,0.964029,-0.256584,-0.069379,0.964029,-0.256584,-0.069379,0.964029, + -0.256584,-0.069379,0.964029,0.293396,0.048231,-0.954774,0.293396,0.048231,-0.954774,0.293396,0.048231,-0.954774, + 0.293396,0.048231,-0.954774,0.232008,0.025313,-0.972385,0.232008,0.025313,-0.972385,0.232008,0.025313,-0.972385, + 0.232008,0.025313,-0.972385,-0.839843,0.488111,-0.237511,-0.839843,0.488111,-0.237511,-0.839843,0.488111,-0.237511, + -0.839843,0.488111,-0.237511,0.453533,0.871258,0.187661,0.453533,0.871258,0.187661,0.453533,0.871258,0.187661, + -0.204622,-0.059343,0.977040,-0.204622,-0.059343,0.977040,-0.204622,-0.059343,0.977040,-0.204622,-0.059343,0.977040, + 0.854645,-0.485077,0.185156,0.854645,-0.485077,0.185156,0.854645,-0.485077,0.185156,0.854645,-0.485077,0.185156, + -0.839744,0.485935,-0.242276,-0.839744,0.485935,-0.242276,-0.839744,0.485935,-0.242276,-0.839744,0.485935,-0.242276, + -0.449084,-0.869897,-0.203966,-0.449084,-0.869897,-0.203966,-0.449084,-0.869897,-0.203966,-0.449084,-0.869897,-0.203966, + -0.193583,0.980805,0.023398,-0.193583,0.980805,0.023398,-0.193583,0.980805,0.023398,-0.193583,0.980805,0.023398, + 0.254838,0.066043,-0.964726,0.254838,0.066043,-0.964726,0.254838,0.066043,-0.964726,0.254838,0.066043,-0.964726, + 0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726,0.254837,0.066047,-0.964726, + 0.455562,0.871811,0.180025,0.455562,0.871811,0.180025,0.455562,0.871811,0.180025,-0.455563,-0.871808,-0.180038, + -0.455563,-0.871808,-0.180038,-0.455563,-0.871808,-0.180038,0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725, + 0.254840,0.066047,-0.964725,0.254840,0.066047,-0.964725,0.455570,0.871805,0.180030,0.455570,0.871805,0.180030, + 0.455570,0.871805,0.180030,-0.455564,-0.871808,-0.180033,-0.455564,-0.871808,-0.180033,-0.455564,-0.871808,-0.180033, + -0.456042,-0.871932,-0.178213,-0.456042,-0.871932,-0.178213,-0.456042,-0.871932,-0.178213,-0.449082,-0.869899,-0.203965, + -0.449082,-0.869899,-0.203965,-0.449082,-0.869899,-0.203965,-0.449082,-0.869899,-0.203965,-0.852949,0.485368,-0.192082, + -0.852949,0.485368,-0.192082,-0.852949,0.485368,-0.192082,0.852942,-0.485375,0.192096,0.852942,-0.485375,0.192096, + 0.852942,-0.485375,0.192096,0.433152,-0.393769,0.810756,0.433152,-0.393769,0.810756,0.433152,-0.393769,0.810756, + 0.433152,-0.393769,0.810756,-0.730263,0.250342,0.635645,-0.730263,0.250342,0.635645,-0.730263,0.250342,0.635645, + -0.730263,0.250342,0.635645,-0.455563,-0.871810,-0.180025,-0.455563,-0.871810,-0.180025,-0.455563,-0.871810,-0.180025, + 0.455563,0.871811,0.180023,0.455563,0.871811,0.180023,0.455563,0.871811,0.180023,0.244183,0.045767,-0.968648, + 0.244183,0.045767,-0.968648,0.244183,0.045767,-0.968648,0.244183,0.045767,-0.968648,-0.857737,0.483806,-0.173837, + -0.857737,0.483806,-0.173837,-0.857737,0.483806,-0.173837,-0.857737,0.483806,-0.173837,-0.455562,-0.871811,-0.180024, + -0.455562,-0.871811,-0.180024,-0.455562,-0.871811,-0.180024,0.416864,0.854840,0.308987,0.416864,0.854840,0.308987, + 0.416864,0.854840,0.308987,0.852945,-0.485375,0.192081,0.852945,-0.485375,0.192081,0.852945,-0.485375,0.192081, + 0.496425,0.640468,-0.585972,0.496425,0.640468,-0.585972,0.496425,0.640468,-0.585972,0.496425,0.640468,-0.585972, + -0.852944,0.485375,-0.192087,-0.852944,0.485375,-0.192087,-0.852944,0.485375,-0.192087,0.455568,0.871809,0.180020, + 0.455568,0.871809,0.180020,0.455568,0.871809,0.180020,0.455568,0.871809,0.180020,0.852948,-0.485371,0.192082, + 0.852948,-0.485371,0.192082,0.852948,-0.485371,0.192082,-0.852944,0.485374,-0.192092,-0.852944,0.485374,-0.192092, + -0.852944,0.485374,-0.192092,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725,-0.254840,-0.066045,0.964725, + -0.254840,-0.066045,0.964725,-0.647886,-0.523222,-0.553609,-0.647886,-0.523222,-0.553609,-0.647886,-0.523222,-0.553609, + -0.647886,-0.523222,-0.553609,-0.057009,-0.771431,-0.633754,-0.057009,-0.771431,-0.633754,-0.057009,-0.771431,-0.633754, + -0.057009,-0.771431,-0.633754,0.464668,0.873652,0.144276,0.464668,0.873652,0.144276,0.464668,0.873652,0.144276, + 0.464668,0.873652,0.144276,0.855839,-0.484578,0.180900,0.855839,-0.484578,0.180900,0.855839,-0.484578,0.180900, + 0.855839,-0.484578,0.180900,-0.916629,-0.329844,-0.225819,-0.916629,-0.329844,-0.225819,-0.916629,-0.329844,-0.225819, + -0.916629,-0.329844,-0.225819,0.847949,-0.486751,0.209894,0.847949,-0.486751,0.209894,0.847949,-0.486751,0.209894, + 0.847949,-0.486751,0.209894,-0.882761,-0.393317,-0.256974,-0.882761,-0.393317,-0.256974,-0.882761,-0.393317,-0.256974, + -0.882761,-0.393317,-0.256974,-0.192366,0.981146,0.018629,-0.192366,0.981146,0.018629,-0.192366,0.981146,0.018629, + -0.192366,0.981146,0.018629,-0.450870,-0.870463,-0.197510,-0.450870,-0.870463,-0.197510,-0.450870,-0.870463,-0.197510, + -0.450870,-0.870463,-0.197510,0.881141,0.392901,0.263097,0.881141,0.392901,0.263097,0.881141,0.392901,0.263097, + 0.881141,0.392901,0.263097,-0.856137,0.484357,-0.180074,-0.856137,0.484357,-0.180074,-0.856137,0.484357,-0.180074, + -0.856137,0.484357,-0.180074,0.451184,0.870560,0.196362,0.451184,0.870560,0.196362,0.451184,0.870560,0.196362, + 0.451184,0.870560,0.196362,0.451183,0.870561,0.196361,0.451183,0.870561,0.196361,0.451183,0.870561,0.196361, + 0.451183,0.870561,0.196361,-0.851893,0.485596,-0.196148,-0.851893,0.485596,-0.196148,-0.851893,0.485596,-0.196148, + -0.851893,0.485596,-0.196148,0.263659,0.082999,-0.961039,0.263659,0.082999,-0.961039,0.263659,0.082999,-0.961039, + 0.263659,0.082999,-0.961039,0.591939,-0.458715,0.662714,0.591939,-0.458715,0.662714,0.591939,-0.458715,0.662714, + 0.591939,-0.458715,0.662714,0.854659,-0.481962,0.193056,0.854659,-0.481962,0.193056,0.854659,-0.481962,0.193056, + 0.854659,-0.481962,0.193056,0.254513,0.065419,-0.964854,0.254513,0.065419,-0.964854,0.254513,0.065419,-0.964854, + 0.254513,0.065419,-0.964854,-0.837393,0.348774,0.420868,-0.837393,0.348774,0.420868,-0.837393,0.348774,0.420868, + -0.837393,0.348774,0.420868,0.455567,0.871809,0.180020,0.455567,0.871809,0.180020,0.455567,0.871809,0.180020, + 0.455567,0.871809,0.180020,-0.113945,-0.548204,-0.828546,-0.113945,-0.548204,-0.828546,-0.113945,-0.548204,-0.828546, + -0.113945,-0.548204,-0.828546,0.848089,-0.486301,0.210373,0.848089,-0.486301,0.210373,0.848089,-0.486301,0.210373, + 0.848089,-0.486301,0.210373,-0.197248,0.978348,0.062680,-0.197248,0.978348,0.062680,-0.197248,0.978348,0.062680, + -0.197248,0.978348,0.062680,-0.166552,0.985205,-0.040391,-0.166552,0.985205,-0.040391,-0.166552,0.985205,-0.040391, + -0.166552,0.985205,-0.040391,-0.112939,0.993569,-0.008076,-0.112939,0.993569,-0.008076,-0.112939,0.993569,-0.008076, + -0.112939,0.993569,-0.008076,-0.682986,-0.057937,-0.728130,-0.682986,-0.057937,-0.728130,-0.682986,-0.057937,-0.728130, + -0.682986,-0.057937,-0.728130,0.686618,0.058527,0.724659,0.686618,0.058527,0.724659,0.686618,0.058527,0.724659, + 0.686618,0.058527,0.724659,-0.122560,0.992440,0.006503,-0.122560,0.992440,0.006503,-0.122560,0.992440,0.006503, + -0.122560,0.992440,0.006503,-0.945891,-0.131035,0.296849,-0.945891,-0.131035,0.296849,-0.945891,-0.131035,0.296849, + -0.945891,-0.131035,0.296849,0.941296,0.131012,-0.311122,0.941296,0.131012,-0.311122,0.941296,0.131012,-0.311122, + 0.941296,0.131012,-0.311122,-0.185002,-0.510975,0.839451,-0.185002,-0.510975,0.839451,-0.185002,-0.510975,0.839451, + -0.185002,-0.510975,0.839451,-0.120060,0.992106,0.036202,-0.120060,0.992106,0.036202,-0.120060,0.992106,0.036202, + -0.120060,0.992106,0.036202,0.263787,0.101285,-0.959249,0.263787,0.101285,-0.959249,0.263787,0.101285,-0.959249, + 0.263787,0.101285,-0.959249,0.275306,-0.273638,-0.921590,0.275306,-0.273638,-0.921590,0.275306,-0.273638,-0.921590, + 0.275306,-0.273638,-0.921590,-0.239011,-0.131030,0.962136,-0.239011,-0.131030,0.962136,-0.239011,-0.131030,0.962136, + -0.239011,-0.131030,0.962136,-0.124440,0.991609,0.035010,-0.124440,0.991609,0.035010,-0.124440,0.991609,0.035010, + -0.124440,0.991609,0.035010,-0.308603,-0.102150,0.945690,-0.308603,-0.102150,0.945690,-0.308603,-0.102150,0.945690, + -0.308603,-0.102150,0.945690,-0.203387,0.976909,0.065442,-0.203387,0.976909,0.065442,-0.203387,0.976909,0.065442, + -0.203387,0.976909,0.065442,0.984318,-0.070709,0.161612,0.984318,-0.070709,0.161612,0.984318,-0.070709,0.161612, + 0.984318,-0.070709,0.161612,-0.113712,0.993202,-0.024890,-0.113712,0.993202,-0.024890,-0.113712,0.993202,-0.024890, + -0.113712,0.993202,-0.024890,-0.140345,0.987979,0.064808,-0.140345,0.987979,0.064808,-0.140345,0.987979,0.064808, + -0.140345,0.987979,0.064808,-0.115134,0.993284,-0.011447,-0.115134,0.993284,-0.011447,-0.115134,0.993284,-0.011447, + -0.115134,0.993284,-0.011447,0.770279,-0.592860,0.234919,0.770279,-0.592860,0.234919,0.770279,-0.592860,0.234919, + 0.753289,-0.649318,0.104607,0.753289,-0.649318,0.104607,0.753289,-0.649318,0.104607,0.753289,-0.649318,0.104607, + -0.946220,-0.157974,-0.282332,-0.946220,-0.157974,-0.282332,-0.946220,-0.157974,-0.282332,-0.946220,-0.157974,-0.282332, + -0.941277,-0.171602,-0.290776,-0.941277,-0.171602,-0.290776,-0.941277,-0.171602,-0.290776,-0.971044,-0.078277,-0.225714, + -0.971044,-0.078277,-0.225714,-0.971044,-0.078277,-0.225714,-0.971044,-0.078277,-0.225714,0.086005,-0.995693,-0.034622, + 0.086005,-0.995693,-0.034622,0.086005,-0.995693,-0.034622,-0.265151,-0.057542,0.962488,-0.265151,-0.057542,0.962488, + -0.265151,-0.057542,0.962488,-0.265151,-0.057542,0.962488,-0.223271,-0.094897,0.970126,-0.223271,-0.094897,0.970126, + -0.223271,-0.094897,0.970126,-0.223271,-0.094897,0.970126,-0.291741,-0.175933,0.940178,-0.291741,-0.175933,0.940178, + -0.291741,-0.175933,0.940178,-0.291741,-0.175933,0.940178,-0.223784,-0.101846,0.969303,-0.223784,-0.101846,0.969303, + -0.223784,-0.101846,0.969303,-0.223784,-0.101846,0.969303,-0.291771,-0.175933,0.940169,-0.291771,-0.175933,0.940169, + -0.291771,-0.175933,0.940169,-0.291771,-0.175933,0.940169,-0.232541,-0.096414,0.967796,-0.232541,-0.096414,0.967796, + -0.232541,-0.096414,0.967796,-0.232541,-0.096414,0.967796,-0.291759,-0.175928,0.940173,-0.291759,-0.175928,0.940173, + -0.291759,-0.175928,0.940173,-0.291759,-0.175928,0.940173,-0.223260,-0.094898,0.970128,-0.223260,-0.094898,0.970128, + -0.223260,-0.094898,0.970128,-0.223260,-0.094898,0.970128,-0.291769,-0.175929,0.940170,-0.291769,-0.175929,0.940170, + -0.291769,-0.175929,0.940170,-0.291769,-0.175929,0.940170,-0.475569,0.879481,0.018602,-0.475569,0.879481,0.018602, + -0.475569,0.879481,0.018602,-0.475569,0.879481,0.018602,-0.319497,-0.942269,-0.100257,-0.319497,-0.942269,-0.100257, + -0.319497,-0.942269,-0.100257,-0.319497,-0.942269,-0.100257,0.261761,0.939628,0.220411,0.261761,0.939628,0.220411, + 0.261761,0.939628,0.220411,0.261761,0.939628,0.220411,0.413942,-0.905809,0.090345,0.413942,-0.905809,0.090345, + 0.413942,-0.905809,0.090345,0.413942,-0.905809,0.090345,-0.254845,-0.066046,0.964724,-0.254845,-0.066046,0.964724, + -0.254845,-0.066046,0.964724,-0.820490,-0.450632,-0.351750,-0.820490,-0.450632,-0.351750,-0.820490,-0.450632,-0.351750, + -0.820490,-0.450632,-0.351750,0.944083,-0.318003,0.087072,0.944083,-0.318003,0.087072,0.944083,-0.318003,0.087072, + 0.944083,-0.318003,0.087072,-0.867163,0.374633,-0.328143,-0.867163,0.374633,-0.328143,-0.867163,0.374633,-0.328143, + -0.867163,0.374633,-0.328143,-0.382400,0.904787,-0.187434,-0.382400,0.904787,-0.187434,-0.382400,0.904787,-0.187434, + -0.382400,0.904787,-0.187434,0.491776,-0.869840,-0.039164,0.491776,-0.869840,-0.039164,0.491776,-0.869840,-0.039164, + 0.491776,-0.869840,-0.039164,0.345142,0.938546,-0.003063,0.345142,0.938546,-0.003063,0.345142,0.938546,-0.003063, + 0.345142,0.938546,-0.003063,-0.285449,-0.927745,-0.240433,-0.285449,-0.927745,-0.240433,-0.285449,-0.927745,-0.240433, + -0.285449,-0.927745,-0.240433,0.869727,0.481857,0.106716,0.869727,0.481857,0.106716,0.869727,0.481857,0.106716, + 0.869727,0.481857,0.106716,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,-0.254842,-0.066047,0.964725,0.892222,-0.375807,0.250419, + 0.892222,-0.375807,0.250419,0.892222,-0.375807,0.250419,0.892222,-0.375807,0.250419,-0.932107,0.325331,-0.159172, + -0.932107,0.325331,-0.159172,-0.932107,0.325331,-0.159172,-0.932107,0.325331,-0.159172,0.837513,0.456334,0.300551, + 0.837513,0.456334,0.300551,0.837513,0.456334,0.300551,0.837513,0.456334,0.300551,-0.852261,-0.482869,-0.201217, + -0.852261,-0.482869,-0.201217,-0.852261,-0.482869,-0.201217,-0.852261,-0.482869,-0.201217,0.861511,0.489064,0.136438, + 0.861511,0.489064,0.136438,0.861511,0.489064,0.136438,0.861511,0.489064,0.136438,-0.264705,-0.909675,-0.320035, + -0.264705,-0.909675,-0.320035,-0.264705,-0.909675,-0.320035,-0.264705,-0.909675,-0.320035,0.331530,0.942045,0.051381, + 0.331530,0.942045,0.051381,0.331530,0.942045,0.051381,0.331530,0.942045,0.051381,0.167338,0.097535,-0.981063, + 0.167338,0.097535,-0.981063,0.167338,0.097535,-0.981063,0.334841,0.109797,-0.935856,0.334841,0.109797,-0.935856, + 0.334841,0.109797,-0.935856,0.171960,0.020191,-0.984897,0.171960,0.020191,-0.984897,0.171960,0.020191,-0.984897, + 0.282885,0.153904,-0.946726,0.282885,0.153904,-0.946726,0.282885,0.153904,-0.946726,0.224295,-0.023143,-0.974246, + 0.224295,-0.023143,-0.974246,0.224295,-0.023143,-0.974246,0.209171,0.150366,-0.966249,0.209171,0.150366,-0.966249, + 0.209171,0.150366,-0.966249,0.294126,-0.019516,-0.955568,0.294126,-0.019516,-0.955568,0.294126,-0.019516,-0.955568, + 0.340141,0.030730,-0.939872,0.340141,0.030730,-0.939872,0.340141,0.030730,-0.939872,0.509438,-0.853963,-0.105925, + 0.509438,-0.853963,-0.105925,0.509438,-0.853963,-0.105925,0.509438,-0.853963,-0.105925,-0.394384,0.908187,-0.140205, + -0.394384,0.908187,-0.140205,-0.394384,0.908187,-0.140205,-0.394384,0.908187,-0.140205,-0.868270,0.378356,-0.320863, + -0.868270,0.378356,-0.320863,-0.868270,0.378356,-0.320863,-0.868270,0.378356,-0.320863,0.950662,-0.303471,0.064396, + 0.950662,-0.303471,0.064396,0.950662,-0.303471,0.064396,0.950662,-0.303471,0.064396,-0.802966,-0.440338,-0.401682, + -0.802966,-0.440338,-0.401682,-0.802966,-0.440338,-0.401682,-0.802966,-0.440338,-0.401682,0.620374,-0.726072,-0.296575, + 0.620374,-0.726072,-0.296575,0.620374,-0.726072,-0.296575,0.620374,-0.726072,-0.296575,0.247699,-0.473355,0.845328, + 0.247699,-0.473355,0.845328,0.247699,-0.473355,0.845328,0.247699,-0.473355,0.845328,-0.540637,0.545956,0.640034, + -0.540637,0.545956,0.640034,-0.540637,0.545956,0.640034,-0.540637,0.545956,0.640034,-0.193893,0.467679,-0.862370, + -0.193893,0.467679,-0.862370,-0.193893,0.467679,-0.862370,-0.193893,0.467679,-0.862370,0.580166,-0.813580,-0.038663, + 0.580166,-0.813580,-0.038663,0.580166,-0.813580,-0.038663,0.580166,-0.813580,-0.038663,0.247435,0.224116,-0.942628, + 0.247435,0.224116,-0.942628,0.247435,0.224116,-0.942628,0.247435,0.224116,-0.942628,-0.254852,-0.066048,0.964722, + -0.254852,-0.066048,0.964722,-0.254852,-0.066048,0.964722,-0.254839,-0.066045,0.964725,-0.254839,-0.066045,0.964725, + -0.254839,-0.066045,0.964725,-0.254848,-0.066044,0.964723,-0.254848,-0.066044,0.964723,-0.254848,-0.066044,0.964723, + -0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,-0.254842,-0.066044,0.964725,-0.254840,-0.066044,0.964725, + -0.254840,-0.066044,0.964725,-0.254840,-0.066044,0.964725,-0.129352,0.444195,-0.886543,-0.129352,0.444195,-0.886543, + -0.129352,0.444195,-0.886543,-0.129352,0.444195,-0.886543,-0.850875,-0.495764,-0.173869,-0.850875,-0.495764,-0.173869, + -0.850875,-0.495764,-0.173869,-0.850875,-0.495764,-0.173869,-0.805157,-0.568909,-0.167524,-0.805157,-0.568909,-0.167524, + -0.805157,-0.568909,-0.167524,-0.805157,-0.568909,-0.167524,-0.039142,0.510984,-0.858699,-0.039142,0.510984,-0.858699, + -0.039142,0.510984,-0.858699,-0.039142,0.510984,-0.858699,-0.472986,0.439282,0.763751,-0.472986,0.439282,0.763751, + -0.472986,0.439282,0.763751,-0.472986,0.439282,0.763751,-0.877368,-0.453133,0.157782,-0.877368,-0.453133,0.157782, + -0.877368,-0.453133,0.157782,-0.892914,-0.441559,0.087918,-0.892914,-0.441559,0.087918,-0.892914,-0.441559,0.087918, + -0.892914,-0.441559,0.087918,-0.468851,-0.880163,-0.074110,-0.468851,-0.880163,-0.074110,-0.468851,-0.880163,-0.074110, + -0.468851,-0.880163,-0.074110,-0.894302,-0.363711,0.260648,-0.894302,-0.363711,0.260648,-0.894302,-0.363711,0.260648, + -0.894302,-0.363711,0.260648,0.942360,0.049141,0.330972,0.942360,0.049141,0.330972,0.942360,0.049141,0.330972, + 0.942360,0.049141,0.330972,0.230606,0.488148,0.841744,0.230606,0.488148,0.841744,0.230606,0.488148,0.841744, + 0.230606,0.488148,0.841744,0.498264,0.460877,0.734388,0.498264,0.460877,0.734388,0.498264,0.460877,0.734388, + 0.498264,0.460877,0.734388,-0.036143,0.549393,-0.834782,-0.036143,0.549393,-0.834782,-0.036143,0.549393,-0.834782, + -0.036143,0.549393,-0.834782,-0.347351,0.481564,0.804639,-0.347351,0.481564,0.804639,-0.347351,0.481564,0.804639, + -0.347351,0.481564,0.804639,-0.176076,0.288620,-0.941114,-0.176076,0.288620,-0.941114,-0.176076,0.288620,-0.941114, + -0.176076,0.288620,-0.941114,-0.080044,-0.996372,-0.028912,-0.080044,-0.996372,-0.028912,-0.080044,-0.996372,-0.028912, + -0.080044,-0.996372,-0.028912,0.195395,-0.219903,-0.955753,0.195395,-0.219903,-0.955753,0.195395,-0.219903,-0.955753, + 0.195395,-0.219903,-0.955753,-0.396975,0.760312,-0.514137,-0.396975,0.760312,-0.514137,-0.396975,0.760312,-0.514137, + -0.396975,0.760312,-0.514137,-0.350758,0.533093,0.769923,-0.350758,0.533093,0.769923,-0.350758,0.533093,0.769923, + -0.350758,0.533093,0.769923,0.378029,-0.795373,0.473789,0.378029,-0.795373,0.473789,0.378029,-0.795373,0.473789, + 0.378029,-0.795373,0.473789,0.113010,0.040117,-0.992784,0.113010,0.040117,-0.992784,0.113010,0.040117,-0.992784, + 0.113010,0.040117,-0.992784,-0.781897,0.486910,0.389302,-0.781897,0.486910,0.389302,-0.781897,0.486910,0.389302, + -0.781897,0.486910,0.389302,0.366342,-0.833753,0.413098,0.366342,-0.833753,0.413098,0.366342,-0.833753,0.413098, + 0.366342,-0.833753,0.413098,0.878465,0.433178,0.201634,0.878465,0.433178,0.201634,0.878465,0.433178,0.201634, + 0.878465,0.433178,0.201634,0.886627,0.447504,0.116756,0.886627,0.447504,0.116756,0.886627,0.447504,0.116756, + 0.886627,0.447504,0.116756,0.335950,-0.872709,0.354284,0.335950,-0.872709,0.354284,0.335950,-0.872709,0.354284, + 0.335950,-0.872709,0.354284,-0.407515,0.645590,0.645867,-0.407515,0.645590,0.645867,-0.407515,0.645590,0.645867, + -0.407515,0.645590,0.645867,0.674167,0.694179,0.252219,0.674167,0.694179,0.252219,0.674167,0.694179,0.252219, + 0.718583,0.640406,0.271141,0.718583,0.640406,0.271141,0.718583,0.640406,0.271141,0.718583,0.640406,0.271141, + 0.827976,0.532329,-0.176304,0.827976,0.532329,-0.176304,0.827976,0.532329,-0.176304,0.827976,0.532329,-0.176304, + 0.417260,0.782622,0.461949,0.417260,0.782622,0.461949,0.417260,0.782622,0.461949,0.417260,0.782622,0.461949, + -0.692803,-0.138737,-0.707655,-0.692803,-0.138737,-0.707655,-0.692803,-0.138737,-0.707655,-0.692803,-0.138737,-0.707655, + -0.987759,0.153324,-0.028725,-0.987759,0.153324,-0.028725,-0.987759,0.153324,-0.028725,-0.987759,0.153324,-0.028725, + -0.915501,0.010841,-0.402170,-0.915501,0.010841,-0.402170,-0.915501,0.010841,-0.402170,-0.915501,0.010841,-0.402170, + 0.025651,-0.693059,0.720424,0.025651,-0.693059,0.720424,0.025651,-0.693059,0.720424,0.025651,-0.693059,0.720424, + 0.124639,0.009320,-0.992158,0.124639,0.009320,-0.992158,0.124639,0.009320,-0.992158,0.124639,0.009320,-0.992158, + 0.610425,-0.492468,0.620369,0.610425,-0.492468,0.620369,0.610425,-0.492468,0.620369,0.610425,-0.492468,0.620369, + 0.566726,0.388647,-0.726482,0.566726,0.388647,-0.726482,0.566726,0.388647,-0.726482,0.566726,0.388647,-0.726482, + 0.574126,-0.707375,0.412311,0.574126,-0.707375,0.412311,0.574126,-0.707375,0.412311,0.574126,-0.707375,0.412311, + 0.317624,-0.772577,0.549763,0.317624,-0.772577,0.549763,0.317624,-0.772577,0.549763,0.317624,-0.772577,0.549763, + -0.868372,0.378199,-0.320775,-0.868372,0.378199,-0.320775,-0.868372,0.378199,-0.320775,-0.868372,0.378199,-0.320775, + -0.868012,0.379080,-0.320708,-0.868012,0.379080,-0.320708,-0.868012,0.379080,-0.320708,-0.868012,0.379080,-0.320708, + 0.344380,-0.005866,-0.938812,0.344380,-0.005866,-0.938812,0.344380,-0.005866,-0.938812,0.344380,-0.005866,-0.938812, + -0.350109,-0.009033,0.936665,-0.350109,-0.009033,0.936665,-0.350109,-0.009033,0.936665,-0.350109,-0.009033,0.936665, + -0.305615,-0.917900,-0.253097,-0.305615,-0.917900,-0.253097,-0.305615,-0.917900,-0.253097,-0.305615,-0.917900,-0.253097, + 0.354201,0.925939,0.131069,0.354201,0.925939,0.131069,0.354201,0.925939,0.131069,0.354201,0.925939,0.131069, + 0.359998,0.035251,-0.932287,0.359998,0.035251,-0.932287,0.359998,0.035251,-0.932287,0.359998,0.035251,-0.932287, + -0.369395,-0.061068,0.927264,-0.369395,-0.061068,0.927264,-0.369395,-0.061068,0.927264,-0.369395,-0.061068,0.927264, + -0.338231,-0.924427,-0.176168,-0.338231,-0.924427,-0.176168,-0.338231,-0.924427,-0.176168,-0.338231,-0.924427,-0.176168, + 0.364901,0.925121,0.104873,0.364901,0.925121,0.104873,0.364901,0.925121,0.104873,0.364901,0.925121,0.104873, + 0.336211,0.941100,0.035950,0.336211,0.941100,0.035950,0.336211,0.941100,0.035950,0.336211,0.941100,0.035950, + 0.946235,-0.313254,0.080695,0.946235,-0.313254,0.080695,0.946235,-0.313254,0.080695,0.946235,-0.313254,0.080695, + 0.114967,0.093377,-0.988971,0.114967,0.093377,-0.988971,0.114967,0.093377,-0.988971,0.114967,0.093377,-0.988971, + -0.105985,-0.065364,0.992217,-0.105985,-0.065364,0.992217,-0.105985,-0.065364,0.992217,-0.105985,-0.065364,0.992217, + 0.302666,0.944518,0.127588,0.302666,0.944518,0.127588,0.302666,0.944518,0.127588,0.302666,0.944518,0.127588, + -0.293581,-0.935183,-0.198096,-0.293581,-0.935183,-0.198096,-0.293581,-0.935183,-0.198096,-0.293581,-0.935183,-0.198096, + 0.229933,-0.045217,-0.972156,0.229933,-0.045217,-0.972156,0.229933,-0.045217,-0.972156,0.229933,-0.045217,-0.972156, + -0.255327,0.054587,0.965313,-0.255327,0.054587,0.965313,-0.255327,0.054587,0.965313,-0.255327,0.054587,0.965313, + -0.910762,0.335199,-0.241151,-0.910762,0.335199,-0.241151,-0.910762,0.335199,-0.241151,-0.910762,0.335199,-0.241151, + 0.926288,-0.337930,0.166712,0.926288,-0.337930,0.166712,0.926288,-0.337930,0.166712,0.926288,-0.337930,0.166712, + 0.483471,-0.603292,0.634267,0.483471,-0.603292,0.634267,0.483471,-0.603292,0.634267,0.483471,-0.603292,0.634267, + 0.408416,-0.574154,0.709608,0.408416,-0.574154,0.709608,0.408416,-0.574154,0.709608,0.408416,-0.574154,0.709608, + 0.477337,-0.605124,0.637161,0.477337,-0.605124,0.637161,0.477337,-0.605124,0.637161,0.477337,-0.605124,0.637161, + 0.408416,-0.574161,0.709602,0.408416,-0.574161,0.709602,0.408416,-0.574161,0.709602,0.408416,-0.574161,0.709602, + 0.482062,-0.596855,0.641389,0.482062,-0.596855,0.641389,0.482062,-0.596855,0.641389,0.482062,-0.596855,0.641389, + 0.408416,-0.574160,0.709603,0.408416,-0.574160,0.709603,0.408416,-0.574160,0.709603,0.408416,-0.574160,0.709603, + 0.483467,-0.603293,0.634268,0.483467,-0.603293,0.634268,0.483467,-0.603293,0.634268,0.483467,-0.603293,0.634268, + 0.408412,-0.574155,0.709609,0.408412,-0.574155,0.709609,0.408412,-0.574155,0.709609,0.408412,-0.574155,0.709609, + 0.778019,0.628105,0.013037,0.778019,0.628105,0.013037,0.778019,0.628105,0.013037,0.778019,0.628105,0.013037, + -0.804068,-0.103706,0.585422,-0.804068,-0.103706,0.585422,-0.804068,-0.103706,0.585422,-0.804068,-0.103706,0.585422, + 0.849093,0.081666,-0.521893,0.849093,0.081666,-0.521893,0.849093,0.081666,-0.521893,0.849093,0.081666,-0.521893, + -0.757040,-0.650600,0.060089,-0.757040,-0.650600,0.060089,-0.757040,-0.650600,0.060089,-0.757040,-0.650600,0.060089, + 0.508168,-0.569871,0.645765,0.508168,-0.569871,0.645765,0.508168,-0.569871,0.645765,-0.465800,0.548160,0.694659, + -0.465800,0.548160,0.694659,-0.465800,0.548160,0.694659,-0.465800,0.548160,0.694659,-0.329639,-0.731866,-0.596415, + -0.329639,-0.731866,-0.596415,-0.329639,-0.731866,-0.596415,-0.329639,-0.731866,-0.596415,0.234168,0.882395,0.408098, + 0.234168,0.882395,0.408098,0.234168,0.882395,0.408098,0.234168,0.882395,0.408098,0.690264,0.710277,-0.137997, + 0.690264,0.710277,-0.137997,0.690264,0.710277,-0.137997,0.690264,0.710277,-0.137997,-0.799610,-0.597357,-0.061553, + -0.799610,-0.597357,-0.061553,-0.799610,-0.597357,-0.061553,-0.799610,-0.597357,-0.061553,0.731018,0.171844,-0.660366, + 0.731018,0.171844,-0.660366,0.731018,0.171844,-0.660366,0.731018,0.171844,-0.660366,-0.863558,-0.027633,0.503491, + -0.863558,-0.027633,0.503491,-0.863558,-0.027633,0.503491,-0.863558,-0.027633,0.503491,0.350550,-0.388799,-0.852027, + 0.350550,-0.388799,-0.852027,0.350550,-0.388799,-0.852027,0.350550,-0.388799,-0.852027,0.508153,-0.569871,0.645777, + 0.508153,-0.569871,0.645777,0.508153,-0.569871,0.645777,0.508150,-0.569876,0.645774,0.508150,-0.569876,0.645774, + 0.508150,-0.569876,0.645774,-0.289211,-0.832873,-0.471889,-0.289211,-0.832873,-0.471889,-0.289211,-0.832873,-0.471889, + -0.289211,-0.832873,-0.471889,0.282765,0.795707,0.535626,0.282765,0.795707,0.535626,0.282765,0.795707,0.535626, + 0.282765,0.795707,0.535626,0.430922,-0.508054,-0.745780,0.430922,-0.508054,-0.745780,0.430922,-0.508054,-0.745780, + 0.430922,-0.508054,-0.745780,-0.416530,0.459575,0.784407,-0.416530,0.459575,0.784407,-0.416530,0.459575,0.784407, + -0.416530,0.459575,0.784407,0.373872,-0.402519,-0.835582,0.373872,-0.402519,-0.835582,0.373872,-0.402519,-0.835582, + 0.373872,-0.402519,-0.835582,-0.895036,0.024509,0.445320,-0.895036,0.024509,0.445320,-0.895036,0.024509,0.445320, + -0.895036,0.024509,0.445320,0.765572,0.142072,-0.627467,0.765572,0.142072,-0.627467,0.765572,0.142072,-0.627467, + 0.765572,0.142072,-0.627467,-0.480490,0.644424,-0.594850,-0.480490,0.644424,-0.594850,-0.480490,0.644424,-0.594850, + -0.465888,0.520236,-0.715754,-0.465888,0.520236,-0.715754,-0.465888,0.520236,-0.715754,-0.547022,0.614110,-0.568890, + -0.547022,0.614110,-0.568890,-0.547022,0.614110,-0.568890,-0.429126,0.575330,-0.696309,-0.429126,0.575330,-0.696309, + -0.429126,0.575330,-0.696309,-0.583302,0.559275,-0.589042,-0.583302,0.559275,-0.589042,-0.583302,0.559275,-0.589042, + -0.433817,0.630435,-0.643704,-0.433817,0.630435,-0.643704,-0.433817,0.630435,-0.643704,-0.578535,0.507036,-0.638914, + -0.578535,0.507036,-0.638914,-0.578535,0.507036,-0.638914,-0.534010,0.489002,-0.689718,-0.534010,0.489002,-0.689718, + -0.534010,0.489002,-0.689718,-0.825447,-0.553488,-0.110851,-0.825447,-0.553488,-0.110851,-0.825447,-0.553488,-0.110851, + -0.825447,-0.553488,-0.110851,0.720548,0.684709,-0.109473,0.720548,0.684709,-0.109473,0.720548,0.684709,-0.109473, + 0.720548,0.684709,-0.109473,0.241389,0.879283,0.410601,0.241389,0.879283,0.410601,0.241389,0.879283,0.410601, + 0.241389,0.879283,0.410601,-0.330943,-0.713709,-0.617331,-0.330943,-0.713709,-0.617331,-0.330943,-0.713709,-0.617331, + -0.330943,-0.713709,-0.617331,-0.486956,0.577851,0.654952,-0.486956,0.577851,0.654952,-0.486956,0.577851,0.654952, + -0.486956,0.577851,0.654952,-0.838470,-0.430652,-0.333927,-0.838470,-0.430652,-0.333927,-0.838470,-0.430652,-0.333927, + -0.838470,-0.430652,-0.333927,0.044829,-0.934246,0.353801,0.044829,-0.934246,0.353801,0.044829,-0.934246,0.353801, + 0.044829,-0.934246,0.353801,0.869316,0.067915,0.489568,0.869316,0.067915,0.489568,0.869316,0.067915,0.489568, + 0.869316,0.067915,0.489568,-0.065507,0.913204,-0.402203,-0.065507,0.913204,-0.402203,-0.065507,0.913204,-0.402203, + -0.065507,0.913204,-0.402203,-0.763688,-0.626573,-0.155524,-0.763688,-0.626573,-0.155524,-0.763688,-0.626573,-0.155524, + -0.763688,-0.626573,-0.155524,-0.364550,0.620450,-0.694367,-0.364550,0.620450,-0.694367,-0.364550,0.620450,-0.694367, + -0.364550,0.620450,-0.694367,0.508153,-0.569873,0.645774,0.508153,-0.569873,0.645774,0.508153,-0.569873,0.645774, + 0.508152,-0.569878,0.645772,0.508152,-0.569878,0.645772,0.508152,-0.569878,0.645772,0.508154,-0.569873,0.645774, + 0.508154,-0.569873,0.645774,0.508154,-0.569873,0.645774,0.508157,-0.569870,0.645775,0.508157,-0.569870,0.645775, + 0.508157,-0.569870,0.645775,0.508157,-0.569872,0.645773,0.508157,-0.569872,0.645773,0.508157,-0.569872,0.645773, + -0.105987,0.884083,-0.455152,-0.105987,0.884083,-0.455152,-0.105987,0.884083,-0.455152,-0.105987,0.884083,-0.455152, + -0.401363,0.420544,0.813664,-0.401363,0.420544,0.813664,-0.401363,0.420544,0.813664,-0.401363,0.420544,0.813664, + -0.463762,0.361005,0.809074,-0.463762,0.361005,0.809074,-0.463762,0.361005,0.809074,-0.463762,0.361005,0.809074, + -0.046582,0.838342,-0.543150,-0.046582,0.838342,-0.543150,-0.046582,0.838342,-0.543150,-0.046582,0.838342,-0.543150, + 0.841173,-0.101549,0.531146,0.841173,-0.101549,0.531146,0.841173,-0.101549,0.531146,0.841173,-0.101549,0.531146, + -0.180252,0.215155,0.959801,-0.180252,0.215155,0.959801,-0.180252,0.215155,0.959801,-0.207338,0.278580,0.937766, + -0.207338,0.278580,0.937766,-0.207338,0.278580,0.937766,-0.207338,0.278580,0.937766,-0.710275,-0.022245,0.703573, + -0.710275,-0.022245,0.703573,-0.710275,-0.022245,0.703573,-0.710275,-0.022245,0.703573,-0.047620,0.186254,0.981347, + -0.047620,0.186254,0.981347,-0.047620,0.186254,0.981347,-0.047620,0.186254,0.981347,0.108060,-0.761314,-0.639315, + 0.108060,-0.761314,-0.639315,0.108060,-0.761314,-0.639315,0.108060,-0.761314,-0.639315,0.838696,-0.544091,-0.023546, + 0.838696,-0.544091,-0.023546,0.838696,-0.544091,-0.023546,0.838696,-0.544091,-0.023546,0.724384,-0.632325,-0.274651, + 0.724384,-0.632325,-0.274651,0.724384,-0.632325,-0.274651,0.724384,-0.632325,-0.274651,-0.002081,0.834569,-0.550899, + -0.002081,0.834569,-0.550899,-0.002081,0.834569,-0.550899,-0.002081,0.834569,-0.550899,0.883229,-0.186822,0.430120, + 0.883229,-0.186822,0.430120,0.883229,-0.186822,0.430120,0.883229,-0.186822,0.430120,-0.258890,0.888962,-0.377786, + -0.258890,0.888962,-0.377786,-0.258890,0.888962,-0.377786,-0.258890,0.888962,-0.377786,-0.828622,-0.324672,0.456041, + -0.828622,-0.324672,0.456041,-0.828622,-0.324672,0.456041,-0.828622,-0.324672,0.456041,-0.732019,0.485414,-0.478039, + -0.732019,0.485414,-0.478039,-0.732019,0.485414,-0.478039,-0.732019,0.485414,-0.478039,0.392742,0.895910,-0.207602, + 0.392742,0.895910,-0.207602,0.392742,0.895910,-0.207602,0.392742,0.895910,-0.207602,0.907111,-0.139654,0.397047, + 0.907111,-0.139654,0.397047,0.907111,-0.139654,0.397047,0.907111,-0.139654,0.397047,-0.441599,-0.869861,0.219844, + -0.441599,-0.869861,0.219844,-0.441599,-0.869861,0.219844,-0.441599,-0.869861,0.219844,-0.527750,0.661600,-0.532696, + -0.527750,0.661600,-0.532696,-0.527750,0.661600,-0.532696,-0.527750,0.661600,-0.532696,0.711805,0.363493,0.601005, + 0.711805,0.363493,0.601005,0.711805,0.363493,0.601005,0.711805,0.363493,0.601005,-0.505300,-0.834748,0.218788, + -0.505300,-0.834748,0.218788,-0.505300,-0.834748,0.218788,-0.505300,-0.834748,0.218788,0.361703,-0.480938,-0.798667, + 0.361703,-0.480938,-0.798667,0.361703,-0.480938,-0.798667,0.361703,-0.480938,-0.798667,0.325669,-0.419247,-0.847450, + 0.325669,-0.419247,-0.847450,0.325669,-0.419247,-0.847450,0.325669,-0.419247,-0.847450,-0.566149,-0.790386,0.234021, + -0.566149,-0.790386,0.234021,-0.566149,-0.790386,0.234021,-0.566149,-0.790386,0.234021,0.938519,0.026123,0.344237, + 0.938519,0.026123,0.344237,0.938519,0.026123,0.344237,0.938519,0.026123,0.344237,0.629913,-0.296741,-0.717743, + 0.629913,-0.296741,-0.717743,0.629913,-0.296741,-0.717743,0.590492,-0.356995,-0.723791,0.590492,-0.356995,-0.723791, + 0.590492,-0.356995,-0.723791,0.590492,-0.356995,-0.723791,0.241350,-0.142221,-0.959960,0.241350,-0.142221,-0.959960, + 0.241350,-0.142221,-0.959960,0.241350,-0.142221,-0.959960,0.849736,-0.264091,-0.456295,0.849736,-0.264091,-0.456295, + 0.849736,-0.264091,-0.456295,0.849736,-0.264091,-0.456295,-0.420018,0.851946,0.312685,-0.420018,0.851946,0.312685, + -0.420018,0.851946,0.312685,-0.420018,0.851946,0.312685,0.231171,0.650562,0.723415,0.231171,0.650562,0.723415, + 0.231171,0.650562,0.723415,0.231171,0.650562,0.723415,-0.101048,0.820371,0.562832,-0.101048,0.820371,0.562832, + -0.101048,0.820371,0.562832,-0.101048,0.820371,0.562832,-0.178273,-0.803042,0.568631,-0.178273,-0.803042,0.568631, + -0.178273,-0.803042,0.568631,-0.178273,-0.803042,0.568631,-0.554208,0.642341,-0.529388,-0.554208,0.642341,-0.529388, + -0.554208,0.642341,-0.529388,-0.554208,0.642341,-0.529388,-0.139122,-0.989884,-0.027842,-0.139122,-0.989884,-0.027842, + -0.139122,-0.989884,-0.027842,-0.139122,-0.989884,-0.027842,-0.148565,0.346161,-0.926337,-0.148565,0.346161,-0.926337, + -0.148565,0.346161,-0.926337,-0.148565,0.346161,-0.926337,-0.426685,-0.904400,-0.000421,-0.426685,-0.904400,-0.000421, + -0.426685,-0.904400,-0.000421,-0.426685,-0.904400,-0.000421,-0.373654,-0.880463,0.291834,-0.373654,-0.880463,0.291834, + -0.373654,-0.880463,0.291834,-0.373654,-0.880463,0.291834,0.241337,0.879216,0.410773,0.241337,0.879216,0.410773, + 0.241337,0.879216,0.410773,0.241337,0.879216,0.410773,0.242041,0.879308,0.410162,0.242041,0.879308,0.410162, + 0.242041,0.879308,0.410162,0.242041,0.879308,0.410162,-0.564166,0.471427,-0.677845,-0.564166,0.471427,-0.677845, + -0.564166,0.471427,-0.677845,-0.564166,0.471427,-0.677845,0.551381,-0.472462,0.687575,0.551381,-0.472462,0.687575, + 0.551381,-0.472462,0.687575,0.551381,-0.472462,0.687575,-0.859952,-0.003047,0.510366,-0.859952,-0.003047,0.510366, + -0.859952,-0.003047,0.510366,-0.859952,-0.003047,0.510366,0.793422,0.065592,-0.605127,0.793422,0.065592,-0.605127, + 0.793422,0.065592,-0.605127,0.793422,0.065592,-0.605127,-0.528503,0.473899,-0.704347,-0.528503,0.473899,-0.704347, + -0.528503,0.473899,-0.704347,-0.528503,0.473899,-0.704347,0.505586,-0.475007,0.720243,0.505586,-0.475007,0.720243, + 0.505586,-0.475007,0.720243,0.505586,-0.475007,0.720243,-0.818969,-0.041893,0.572306,-0.818969,-0.041893,0.572306, + -0.818969,-0.041893,0.572306,-0.818969,-0.041893,0.572306,0.777009,0.077860,-0.624655,0.777009,0.077860,-0.624655, + 0.777009,0.077860,-0.624655,0.777009,0.077860,-0.624655,0.755723,0.150045,-0.637471,0.755723,0.150045,-0.637471, + 0.755723,0.150045,-0.637471,0.755723,0.150045,-0.637471,-0.329510,-0.726674,-0.602801,-0.329510,-0.726674,-0.602801, + -0.329510,-0.726674,-0.602801,-0.329510,-0.726674,-0.602801,-0.481902,0.678637,-0.554276,-0.481902,0.678637,-0.554276, + -0.481902,0.678637,-0.554276,-0.481902,0.678637,-0.554276,0.505719,-0.675169,0.537023,0.505719,-0.675169,0.537023, + 0.505719,-0.675169,0.537023,0.505719,-0.675169,0.537023,0.813133,0.105078,-0.572515,0.813133,0.105078,-0.572515, + 0.813133,0.105078,-0.572515,0.813133,0.105078,-0.572515,-0.845378,-0.056191,0.531205,-0.845378,-0.056191,0.531205, + -0.845378,-0.056191,0.531205,-0.845378,-0.056191,0.531205,-0.601063,0.545846,-0.583759,-0.601063,0.545846,-0.583759, + -0.601063,0.545846,-0.583759,-0.601063,0.545846,-0.583759,0.608128,-0.522622,0.597534,0.608128,-0.522622,0.597534, + 0.608128,-0.522622,0.597534,0.608128,-0.522622,0.597534,0.254889,0.829753,0.496530,0.254889,0.829753,0.496530, + 0.254889,0.829753,0.496530,0.254889,0.829753,0.496530,-0.300061,-0.786452,-0.539867,-0.300061,-0.786452,-0.539867, + -0.300061,-0.786452,-0.539867,-0.300061,-0.786452,-0.539867,-0.083308,-0.769617,0.633047,-0.083308,-0.769617,0.633047, + -0.083308,-0.769617,0.633047,-0.083308,-0.769617,0.633047,0.182167,0.227635,0.956555,0.182167,0.227635,0.956555, + 0.182167,0.227635,0.956555,0.182167,0.227635,0.956555,-0.546358,-0.614486,0.569121,-0.546358,-0.614486,0.569121, + -0.546358,-0.614486,0.569121,-0.546358,-0.614486,0.569121,-0.743237,-0.232216,0.627435,-0.743237,-0.232216,0.627435, + -0.743237,-0.232216,0.627435,-0.743237,-0.232216,0.627435,0.400384,-0.137827,0.905923,0.400384,-0.137827,0.905923, + 0.400384,-0.137827,0.905923,0.400384,-0.137827,0.905923,-0.623125,0.179460,0.761255,-0.623125,0.179460,0.761255, + -0.623125,0.179460,0.761255,-0.623125,0.179460,0.761255,0.275502,-0.575730,0.769827,0.275502,-0.575730,0.769827, + 0.275502,-0.575730,0.769827,0.275502,-0.575730,0.769827,-0.268551,0.377347,0.886278,-0.268551,0.377347,0.886278, + -0.268551,0.377347,0.886278,-0.268551,0.377347,0.886278,-0.854257,-0.238997,0.461655,-0.854257,-0.238997,0.461655, + -0.854257,-0.238997,0.461655,-0.854257,-0.238997,0.461655,0.410434,-0.636256,0.653240,0.410434,-0.636256,0.653240, + 0.410434,-0.636256,0.653240,0.410434,-0.636256,0.653240,-0.704645,0.300852,0.642622,-0.704645,0.300852,0.642622, + -0.704645,0.300852,0.642622,-0.704645,0.300852,0.642622,-0.026580,-0.874922,0.483534,-0.026580,-0.874922,0.483534, + -0.026580,-0.874922,0.483534,-0.026580,-0.874922,0.483534,-0.256399,0.542239,0.800148,-0.256399,0.542239,0.800148, + -0.256399,0.542239,0.800148,-0.256399,0.542239,0.800148,-0.588837,-0.696052,0.410832,-0.588837,-0.696052,0.410832, + -0.588837,-0.696052,0.410832,-0.588837,-0.696052,0.410832,0.316120,0.350020,0.881790,0.316120,0.350020,0.881790, + 0.316120,0.350020,0.881790,0.316120,0.350020,0.881790,0.559513,-0.125410,0.819278,0.559513,-0.125410,0.819278, + 0.559513,-0.125410,0.819278,0.559513,-0.125410,0.819278,0.033933,-0.432569,0.900962,0.033933,-0.432569,0.900962, + 0.033933,-0.432569,0.900962,0.033933,-0.432569,0.900962,-0.254768,0.073604,0.964197,-0.254768,0.073604,0.964197, + -0.254768,0.073604,0.964197,-0.254768,0.073604,0.964197,-0.156103,-0.536827,0.829125,-0.156103,-0.536827,0.829125, + -0.156103,-0.536827,0.829125,-0.156103,-0.536827,0.829125,-0.015508,-0.007105,0.999855,-0.015508,-0.007105,0.999855, + -0.015508,-0.007105,0.999855,-0.015508,-0.007105,0.999855,-0.402201,-0.454060,0.795024,-0.402201,-0.454060,0.795024, + -0.402201,-0.454060,0.795024,-0.402201,-0.454060,0.795024,-0.505607,-0.250634,0.825557,-0.505607,-0.250634,0.825557, + -0.505607,-0.250634,0.825557,-0.505607,-0.250634,0.825557,0.101273,-0.200765,0.974391,0.101273,-0.200765,0.974391, + 0.101273,-0.200765,0.974391,0.101273,-0.200765,0.974391,-0.442000,-0.032617,0.896422,-0.442000,-0.032617,0.896422, + -0.442000,-0.032617,0.896422,-0.442000,-0.032617,0.896422,-0.214669,-0.244721,0.945531,-0.214669,-0.244721,0.945531, + -0.214669,-0.244721,0.945531,-0.214669,-0.244721,0.945531,-0.214669,-0.244721,0.945531,-0.214669,-0.244721,0.945531, + -0.214669,-0.244721,0.945531,-0.214669,-0.244721,0.945531,0.177497,0.445273,-0.877626,0.177497,0.445273,-0.877626, + 0.177497,0.445273,-0.877626,0.177497,0.445273,-0.877626,0.082367,0.086753,-0.992819,0.082367,0.086753,-0.992819, + 0.082367,0.086753,-0.992819,0.082367,0.086753,-0.992819,0.344037,0.389196,-0.854497,0.344037,0.389196,-0.854497, + 0.344037,0.389196,-0.854497,0.344037,0.389196,-0.854497,0.413828,0.251462,-0.874936,0.413828,0.251462,-0.874936, + 0.413828,0.251462,-0.874936,0.413828,0.251462,-0.874936,0.003257,0.217789,-0.975990,0.003257,0.217789,-0.975990, + 0.003257,0.217789,-0.975990,0.003257,0.217789,-0.975990,0.370818,0.104003,-0.922864,0.370818,0.104003,-0.922864, + 0.370818,0.104003,-0.922864,0.370818,0.104003,-0.922864,0.048942,0.374503,-0.925933,0.048942,0.374503,-0.925933, + 0.048942,0.374503,-0.925933,0.048942,0.374503,-0.925933,0.244317,0.032018,-0.969167,0.244317,0.032018,-0.969167, + 0.244317,0.032018,-0.969167,0.244317,0.032018,-0.969167,0.315833,0.357710,-0.878802,0.315833,0.357710,-0.878802, + 0.315833,0.357710,-0.878802,0.315833,0.357710,-0.878802,0.369880,0.250907,-0.894558,0.369880,0.250907,-0.894558, + 0.369880,0.250907,-0.894558,0.369880,0.250907,-0.894558,0.051657,0.224845,-0.973024,0.051657,0.224845,-0.973024, + 0.051657,0.224845,-0.973024,0.051657,0.224845,-0.973024,0.336530,0.136636,-0.931707,0.336530,0.136636,-0.931707, + 0.336530,0.136636,-0.931707,0.336530,0.136636,-0.931707,0.087075,0.346269,-0.934085,0.087075,0.346269,-0.934085, + 0.087075,0.346269,-0.934085,0.087075,0.346269,-0.934085,0.238549,0.080824,-0.967761,0.238549,0.080824,-0.967761, + 0.238549,0.080824,-0.967761,0.238549,0.080824,-0.967761,0.186731,0.401196,-0.896757,0.186731,0.401196,-0.896757, + 0.186731,0.401196,-0.896757,0.186731,0.401196,-0.896757,0.112980,0.123259,-0.985922,0.112980,0.123259,-0.985922, + 0.112980,0.123259,-0.985922,0.112980,0.123259,-0.985922,0.214670,0.244718,-0.945531,0.214670,0.244718,-0.945531, + 0.214670,0.244718,-0.945531,0.214670,0.244718,-0.945531,0.214670,0.244718,-0.945531,0.214670,0.244718,-0.945531, + 0.214670,0.244718,-0.945531,0.214670,0.244718,-0.945531,-0.121143,-0.132993,0.983686,-0.121143,-0.132993,0.983686, + -0.121143,-0.132993,0.983686,-0.121143,-0.132993,0.983686,-0.236901,-0.093874,0.966988,-0.236901,-0.093874,0.966988, + -0.236901,-0.093874,0.966988,-0.236901,-0.093874,0.966988,-0.327220,-0.145325,0.933706,-0.327220,-0.145325,0.933706, + -0.327220,-0.145325,0.933706,-0.327220,-0.145325,0.933706,-0.357950,-0.250667,0.899465,-0.357950,-0.250667,0.899465, + -0.357950,-0.250667,0.899465,-0.357950,-0.250667,0.899465,-0.308138,-0.349125,0.884965,-0.308138,-0.349125,0.884965, + -0.308138,-0.349125,0.884965,-0.308138,-0.349125,0.884965,-0.189136,-0.389210,0.901522,-0.189136,-0.389210,0.901522, + -0.189136,-0.389210,0.901522,-0.189136,-0.389210,0.901522,-0.097268,-0.338574,0.935899,-0.097268,-0.338574,0.935899, + -0.097268,-0.338574,0.935899,-0.097268,-0.338574,0.935899,-0.064611,-0.226652,0.971830,-0.064611,-0.226652,0.971830, + -0.064611,-0.226652,0.971830,-0.064611,-0.226652,0.971830,0.038934,0.746103,0.664692,0.038934,0.746103,0.664692, + 0.038934,0.746103,0.664692,0.038934,0.746103,0.664692,0.988408,-0.151788,-0.003156,0.988408,-0.151788,-0.003156, + 0.988408,-0.151788,-0.003156,0.988408,-0.151788,-0.003156,-0.923748,-0.226767,0.308653,-0.923748,-0.226767,0.308653, + -0.923748,-0.226767,0.308653,-0.923748,-0.226767,0.308653,0.923748,0.226771,-0.308649,0.923748,0.226771,-0.308649, + 0.923748,0.226771,-0.308649,0.923748,0.226771,-0.308649,0.721420,0.392099,-0.570800,0.721420,0.392099,-0.570800, + 0.721420,0.392099,-0.570800,0.721420,0.392099,-0.570800,-0.374216,0.362763,-0.853443,-0.374216,0.362763,-0.853443, + -0.374216,0.362763,-0.853443,-0.374216,0.362763,-0.853443,-0.999530,-0.030367,0.004217,-0.999530,-0.030367,0.004217, + -0.999530,-0.030367,0.004217,-0.999530,-0.030367,0.004217,0.038937,0.746125,0.664666,0.038937,0.746125,0.664666, + 0.038937,0.746125,0.664666,0.349979,-0.827126,0.439747,0.349979,-0.827126,0.439747,0.349979,-0.827126,0.439747, + 0.349979,-0.827126,0.439747,0.038933,0.746093,0.664702,0.038933,0.746093,0.664702,0.038933,0.746093,0.664702, + -0.636634,-0.550719,0.539820,-0.636634,-0.550719,0.539820,-0.636634,-0.550719,0.539820,-0.636634,-0.550719,0.539820, + -0.990466,-0.116135,0.074087,-0.990466,-0.116135,0.074087,-0.990466,-0.116135,0.074087,0.989642,-0.039579,-0.137993, + 0.989642,-0.039579,-0.137993,0.989642,-0.039579,-0.137993,0.608367,0.437227,-0.662361,0.608367,0.437227,-0.662361, + 0.608367,0.437227,-0.662361,-0.038945,-0.746100,-0.664694,-0.038945,-0.746100,-0.664694,-0.038945,-0.746100,-0.664694, + -0.038945,-0.746100,-0.664694,-0.614192,-0.575817,0.539633,-0.614192,-0.575817,0.539633,-0.614192,-0.575817,0.539633, + 0.996817,0.035632,-0.071319,0.996817,0.035632,-0.071319,0.996817,0.035632,-0.071319,0.996817,0.035632,-0.071319, + 0.038933,0.746102,0.664693,0.038933,0.746102,0.664693,0.038933,0.746102,0.664693,-0.989895,-0.051600,0.132079, + -0.989895,-0.051600,0.132079,-0.989895,-0.051600,0.132079,-0.989895,-0.051600,0.132079,0.038938,0.746100,0.664694, + 0.038938,0.746100,0.664694,0.038938,0.746100,0.664694,0.038938,0.746100,0.664694,0.038936,0.746101,0.664693, + 0.038936,0.746101,0.664693,0.038936,0.746101,0.664693,0.038936,0.746101,0.664693,0.038936,0.746099,0.664696, + 0.038936,0.746099,0.664696,0.038936,0.746099,0.664696,0.381354,-0.619278,0.686340,0.381354,-0.619278,0.686340, + 0.381354,-0.619278,0.686340,0.381354,-0.619278,0.686340,0.949910,0.071356,-0.304267,0.949910,0.071356,-0.304267, + 0.949910,0.071356,-0.304267,0.949910,0.071356,-0.304267,-0.382035,0.602771,-0.700512,-0.382035,0.602771,-0.700512, + -0.382035,0.602771,-0.700512,-0.382035,0.602771,-0.700512,-0.880280,-0.371315,0.295351,-0.880280,-0.371315,0.295351, + -0.880280,-0.371315,0.295351,-0.880280,-0.371315,0.295351,-0.612245,-0.490688,0.619984,-0.612245,-0.490688,0.619984, + -0.612245,-0.490688,0.619984,-0.612245,-0.490688,0.619984,0.614781,0.514721,-0.597583,0.614781,0.514721,-0.597583, + 0.614781,0.514721,-0.597583,0.614781,0.514721,-0.597583,-0.038946,-0.746104,-0.664689,-0.038946,-0.746104,-0.664689, + -0.038946,-0.746104,-0.664689,-0.038938,-0.746097,-0.664697,-0.038938,-0.746097,-0.664697,-0.038938,-0.746097,-0.664697, + -0.038935,-0.746107,-0.664687,-0.038935,-0.746107,-0.664687,-0.038935,-0.746107,-0.664687,-0.038938,-0.746097,-0.664698, + -0.038938,-0.746097,-0.664698,-0.038938,-0.746097,-0.664698,-0.038938,-0.746097,-0.664698,-0.038934,-0.746103,-0.664692, + -0.038934,-0.746103,-0.664692,-0.038934,-0.746103,-0.664692,-0.038934,-0.746103,-0.664692,-0.038943,-0.746104,-0.664689, + -0.038943,-0.746104,-0.664689,-0.038943,-0.746104,-0.664689,-0.038934,-0.746100,-0.664695,-0.038934,-0.746100,-0.664695, + -0.038934,-0.746100,-0.664695,-0.038934,-0.746100,-0.664695,0.038934,0.746098,0.664697,0.038934,0.746098,0.664697, + 0.038934,0.746098,0.664697,0.038934,0.746098,0.664697,0.038928,0.746100,0.664695,0.038928,0.746100,0.664695, + 0.038928,0.746100,0.664695,0.038928,0.746100,0.664695,-0.860041,0.501214,-0.095468,-0.860041,0.501214,-0.095468, + -0.860041,0.501214,-0.095468,-0.860041,0.501214,-0.095468,-0.370305,-0.665311,0.648256,-0.370305,-0.665311,0.648256, + -0.370305,-0.665311,0.648256,-0.370305,-0.665311,0.648256,0.262660,0.274578,-0.924996,0.262660,0.274578,-0.924996, + 0.262660,0.274578,-0.924996,0.262660,0.274578,-0.924996,-0.262729,-0.274580,0.924975,-0.262729,-0.274580,0.924975, + -0.262729,-0.274580,0.924975,-0.262729,-0.274580,0.924975,-0.037154,0.009316,0.999266,-0.037154,0.009316,0.999266, + -0.037154,0.009316,0.999266,-0.037154,0.009316,0.999266,0.683346,0.623856,0.379265,0.683346,0.623856,0.379265, + 0.683346,0.623856,0.379265,0.683346,0.623856,0.379265,0.452258,0.520860,-0.723994,0.452258,0.520860,-0.723994, + 0.452258,0.520860,-0.723994,0.452258,0.520860,-0.723994,-0.860059,0.501207,-0.095341,-0.860059,0.501207,-0.095341, + -0.860059,0.501207,-0.095341,-0.148018,-0.935842,-0.319828,-0.148018,-0.935842,-0.319828,-0.148018,-0.935842,-0.319828, + -0.148018,-0.935842,-0.319828,-0.860060,0.501186,-0.095442,-0.860060,0.501186,-0.095442,-0.860060,0.501186,-0.095442, + 0.091834,-0.182259,-0.978953,0.091834,-0.182259,-0.978953,0.091834,-0.182259,-0.978953,0.091834,-0.182259,-0.978953, + 0.429835,0.435335,-0.791028,0.429835,0.435335,-0.791028,0.429835,0.435335,-0.791028,-0.312543,-0.554425,0.771317, + -0.312543,-0.554425,0.771317,-0.312543,-0.554425,0.771317,0.065793,0.121246,0.990440,0.065793,0.121246,0.990440, + 0.065793,0.121246,0.990440,0.860032,-0.501230,0.095467,0.860032,-0.501230,0.095467,0.860032,-0.501230,0.095467, + 0.860032,-0.501230,0.095467,0.092761,-0.215224,-0.972149,0.092761,-0.215224,-0.972149,0.092761,-0.215224,-0.972149, + -0.400427,-0.505628,0.764198,-0.400427,-0.505628,0.764198,-0.400427,-0.505628,0.764198,-0.400427,-0.505628,0.764198, + -0.859911,0.501440,-0.095453,-0.859911,0.501440,-0.095453,-0.859911,0.501440,-0.095453,0.356293,0.480133,-0.801578, + 0.356293,0.480133,-0.801578,0.356293,0.480133,-0.801578,0.356293,0.480133,-0.801578,-0.860049,0.501205,-0.095443, + -0.860049,0.501205,-0.095443,-0.860049,0.501205,-0.095443,-0.860049,0.501205,-0.095443,-0.859997,0.501283,-0.095501, + -0.859997,0.501283,-0.095501,-0.859997,0.501283,-0.095501,-0.859997,0.501283,-0.095501,-0.860035,0.501229,-0.095446, + -0.860035,0.501229,-0.095446,-0.860035,0.501229,-0.095446,-0.445143,-0.816054,-0.368651,-0.445143,-0.816054,-0.368651, + -0.445143,-0.816054,-0.368651,-0.445143,-0.816054,-0.368651,-0.211311,-0.417803,0.883622,-0.211311,-0.417803,0.883622, + -0.211311,-0.417803,0.883622,-0.211311,-0.417803,0.883622,0.463650,0.804790,0.370597,0.463650,0.804790,0.370597, + 0.463650,0.804790,0.370597,0.463650,0.804790,0.370597,0.315714,0.133382,-0.939433,0.315714,0.133382,-0.939433, + 0.315714,0.133382,-0.939433,0.315714,0.133382,-0.939433,-0.007823,-0.157300,-0.987520,-0.007823,-0.157300,-0.987520, + -0.007823,-0.157300,-0.987520,-0.007823,-0.157300,-0.987520,-0.021232,0.172598,0.984764,-0.021232,0.172598,0.984764, + -0.021232,0.172598,0.984764,-0.021232,0.172598,0.984764,0.860040,-0.501224,0.095427,0.860040,-0.501224,0.095427, + 0.860040,-0.501224,0.095427,0.860049,-0.501184,0.095556,0.860049,-0.501184,0.095556,0.860049,-0.501184,0.095556, + 0.860026,-0.501238,0.095471,0.860026,-0.501238,0.095471,0.860026,-0.501238,0.095471,0.860046,-0.501195,0.095517, + 0.860046,-0.501195,0.095517,0.860046,-0.501195,0.095517,0.860046,-0.501195,0.095517,0.860091,-0.501133,0.095443, + 0.860091,-0.501133,0.095443,0.860091,-0.501133,0.095443,0.860091,-0.501133,0.095443,0.860029,-0.501243,0.095420, + 0.860029,-0.501243,0.095420,0.860029,-0.501243,0.095420,0.860050,-0.501203,0.095440,0.860050,-0.501203,0.095440, + 0.860050,-0.501203,0.095440,0.860050,-0.501203,0.095440,-0.860016,0.501262,-0.095441,-0.860016,0.501262,-0.095441, + -0.860016,0.501262,-0.095441,-0.860016,0.501262,-0.095441,-0.860043,0.501211,-0.095464,-0.860043,0.501211,-0.095464, + -0.860043,0.501211,-0.095464,-0.860043,0.501211,-0.095464,0.852538,0.492794,0.174166,0.852538,0.492794,0.174166, + 0.852538,0.492794,0.174166,0.852538,0.492794,0.174166,-0.399464,0.220678,0.889792,-0.399464,0.220678,0.889792, + -0.399464,0.220678,0.889792,-0.399464,0.220678,0.889792,0.106557,0.162352,-0.980962,0.106557,0.162352,-0.980962, + 0.106557,0.162352,-0.980962,0.106557,0.162352,-0.980962,-0.106557,-0.162352,0.980962,-0.106557,-0.162352,0.980962, + -0.106557,-0.162352,0.980962,-0.106557,-0.162352,0.980962,0.034309,-0.487036,0.872707,0.034309,-0.487036,0.872707, + 0.034309,-0.487036,0.872707,0.034309,-0.487036,0.872707,0.220959,-0.965785,-0.135782,0.220959,-0.965785,-0.135782, + 0.220959,-0.965785,-0.135782,0.220959,-0.965785,-0.135782,0.232828,-0.184600,-0.954837,0.232828,-0.184600,-0.954837, + 0.232828,-0.184600,-0.954837,0.232828,-0.184600,-0.954837,0.852528,0.492831,0.174105,0.852528,0.492831,0.174105, + 0.852528,0.492831,0.174105,-0.751586,0.659067,0.027372,-0.751586,0.659067,0.027372,-0.751586,0.659067,0.027372, + -0.751586,0.659067,0.027372,0.852520,0.492829,0.174154,0.852520,0.492829,0.174154,0.852520,0.492829,0.174154, + -0.212018,0.506247,-0.835920,-0.212018,0.506247,-0.835920,-0.212018,0.506247,-0.835920,-0.212018,0.506247,-0.835920, + 0.168083,-0.098294,-0.980860,0.168083,-0.098294,-0.980860,0.168083,-0.098294,-0.980860,-0.329117,0.068640,0.941791, + -0.329117,0.068640,0.941791,-0.329117,0.068640,0.941791,0.082778,-0.606119,0.791055,0.082778,-0.606119,0.791055, + 0.082778,-0.606119,0.791055,-0.852565,-0.492767,-0.174106,-0.852565,-0.492767,-0.174106,-0.852565,-0.492767,-0.174106, + -0.852565,-0.492767,-0.174106,-0.241281,0.515569,-0.822175,-0.241281,0.515569,-0.822175,-0.241281,0.515569,-0.822175, + -0.244089,0.118633,0.962469,-0.244089,0.118633,0.962469,-0.244089,0.118633,0.962469,-0.244089,0.118633,0.962469, + 0.852526,0.492783,0.174253,0.852526,0.492783,0.174253,0.852526,0.492783,0.174253,0.242670,-0.055734,-0.968507, + 0.242670,-0.055734,-0.968507,0.242670,-0.055734,-0.968507,0.242670,-0.055734,-0.968507,0.852548,0.492778,0.174159, + 0.852548,0.492778,0.174159,0.852548,0.492778,0.174159,0.852548,0.492778,0.174159,0.852537,0.492794,0.174167, + 0.852537,0.492794,0.174167,0.852537,0.492794,0.174167,0.852537,0.492794,0.174167,0.852545,0.492796,0.174122, + 0.852545,0.492796,0.174122,0.852545,0.492796,0.174122,-0.503979,0.859278,0.087442,-0.503979,0.859278,0.087442, + -0.503979,0.859278,0.087442,-0.503979,0.859278,0.087442,-0.257143,-0.121289,0.958732,-0.257143,-0.121289,0.958732, + -0.257143,-0.121289,0.958732,-0.257143,-0.121289,0.958732,0.485205,-0.869631,-0.091205,0.485205,-0.869631,-0.091205, + 0.485205,-0.869631,-0.091205,0.485205,-0.869631,-0.091205,-0.042843,0.187579,-0.981315,-0.042843,0.187579,-0.981315, + -0.042843,0.187579,-0.981315,-0.042843,0.187579,-0.981315,-0.142257,0.575664,-0.805216,-0.142257,0.575664,-0.805216, + -0.142257,0.575664,-0.805216,-0.142257,0.575664,-0.805216,0.169618,-0.558563,0.811934,0.169618,-0.558563,0.811934, + 0.169618,-0.558563,0.811934,0.169618,-0.558563,0.811934,-0.852557,-0.492755,-0.174182,-0.852557,-0.492755,-0.174182, + -0.852557,-0.492755,-0.174182,-0.852538,-0.492823,-0.174079,-0.852538,-0.492823,-0.174079,-0.852538,-0.492823,-0.174079, + -0.852603,-0.492675,-0.174182,-0.852603,-0.492675,-0.174182,-0.852603,-0.492675,-0.174182,-0.852542,-0.492781,-0.174180, + -0.852542,-0.492781,-0.174180,-0.852542,-0.492781,-0.174180,-0.852542,-0.492781,-0.174180,-0.852548,-0.492787,-0.174133, + -0.852548,-0.492787,-0.174133,-0.852548,-0.492787,-0.174133,-0.852548,-0.492787,-0.174133,-0.852534,-0.492768,-0.174254, + -0.852534,-0.492768,-0.174254,-0.852534,-0.492768,-0.174254,-0.852541,-0.492788,-0.174167,-0.852541,-0.492788,-0.174167, + -0.852541,-0.492788,-0.174167,-0.852541,-0.492788,-0.174167,0.852534,0.492797,0.174176,0.852534,0.492797,0.174176, + 0.852534,0.492797,0.174176,0.852534,0.492797,0.174176,0.852533,0.492806,0.174156,0.852533,0.492806,0.174156, + 0.852533,0.492806,0.174156,0.852533,0.492806,0.174156,0.120455,0.982532,-0.141853,0.120455,0.982532,-0.141853, + 0.120455,0.982532,-0.141853,0.829555,-0.544897,0.122173,0.829555,-0.544897,0.122173,0.829555,-0.544897,0.122173, + -0.417371,0.802172,-0.426992,-0.417371,0.802172,-0.426992,-0.417371,0.802172,-0.426992,-0.759273,0.544834,-0.355894, + -0.759273,0.544834,-0.355894,-0.759273,0.544834,-0.355894,-0.313347,-0.732462,0.604412,-0.313347,-0.732462,0.604412, + -0.313347,-0.732462,0.604412,0.965108,-0.227720,0.129268,0.965108,-0.227720,0.129268,0.965108,-0.227720,0.129268, + -0.943509,-0.299274,-0.142218,-0.943509,-0.299274,-0.142218,-0.943509,-0.299274,-0.142218,-0.055421,0.950340,-0.306240, + -0.055421,0.950340,-0.306240,-0.055421,0.950340,-0.306240,0.265391,-0.160568,-0.950676,0.265391,-0.160568,-0.950676, + 0.265391,-0.160568,-0.950676,-0.890595,-0.299740,-0.342046,-0.890595,-0.299740,-0.342046,-0.890595,-0.299740,-0.342046, + -0.919739,-0.170732,-0.353456,-0.919739,-0.170732,-0.353456,-0.919739,-0.170732,-0.353456,0.992069,-0.078015,0.098553, + 0.992069,-0.078015,0.098553,0.992069,-0.078015,0.098553,0.980934,-0.192191,-0.028828,0.980934,-0.192191,-0.028828, + 0.980934,-0.192191,-0.028828,0.879302,0.398827,0.260318,0.879302,0.398827,0.260318,0.879302,0.398827,0.260318, + 0.953893,0.030138,0.298629,0.953893,0.030138,0.298629,0.953893,0.030138,0.298629,-0.896071,-0.388510,0.214747, + -0.896071,-0.388510,0.214747,-0.896071,-0.388510,0.214747,-0.879617,-0.420254,0.222848,-0.879617,-0.420254,0.222848, + -0.879617,-0.420254,0.222848,0.448786,-0.757220,0.474562,0.448786,-0.757220,0.474562,0.448786,-0.757220,0.474562, + -0.048567,-0.848322,0.527248,-0.048567,-0.848322,0.527248,-0.048567,-0.848322,0.527248,0.079938,-0.015444,0.996680, + 0.079938,-0.015444,0.996680,0.079938,-0.015444,0.996680,0.267779,-0.167733,0.948768,0.267779,-0.167733,0.948768, + 0.267779,-0.167733,0.948768,0.138792,-0.324581,0.935620,0.138792,-0.324581,0.935620,0.138792,-0.324581,0.935620, + -0.342087,0.068722,0.937152,-0.342087,0.068722,0.937152,-0.342087,0.068722,0.937152,-0.093395,0.106220,0.989947, + -0.093395,0.106220,0.989947,-0.093395,0.106220,0.989947,0.527886,-0.262985,0.807574,0.527886,-0.262985,0.807574, + 0.527886,-0.262985,0.807574,0.289062,0.132269,0.948129,0.289062,0.132269,0.948129,0.289062,0.132269,0.948129, + -0.045660,-0.211111,0.976395,-0.045660,-0.211111,0.976395,-0.045660,-0.211111,0.976395,-0.023849,-0.027210,0.999345, + -0.023849,-0.027210,0.999345,-0.023849,-0.027210,0.999345,0.366718,0.270262,0.890211,0.366718,0.270262,0.890211, + 0.366718,0.270262,0.890211,0.137950,0.165545,0.976506,0.137950,0.165545,0.976506,0.137950,0.165545,0.976506, + -0.327271,0.458432,0.826277,-0.327271,0.458432,0.826277,-0.327271,0.458432,0.826277,-0.122093,0.558246,0.820643, + -0.122093,0.558246,0.820643,-0.122093,0.558246,0.820643,0.435551,0.150147,0.887554,0.435551,0.150147,0.887554, + 0.435551,0.150147,0.887554,-0.003164,0.159156,0.987248,-0.003164,0.159156,0.987248,-0.003164,0.159156,0.987248, + -0.141036,0.427017,0.893177,-0.141036,0.427017,0.893177,-0.141036,0.427017,0.893177,0.427200,0.876542,-0.221752, + 0.427200,0.876542,-0.221752,0.427200,0.876542,-0.221752,0.570734,-0.820437,0.033843,0.570734,-0.820437,0.033843, + 0.570734,-0.820437,0.033843,-0.132872,-0.985413,-0.106326,-0.132872,-0.985413,-0.106326,-0.132872,-0.985413,-0.106326, + -0.958825,0.158176,0.235872,-0.958825,0.158176,0.235872,-0.958825,0.158176,0.235872,-0.956126,0.176417,0.233879, + -0.956126,0.176417,0.233879,-0.956126,0.176417,0.233879,0.123403,0.969149,-0.213357,0.123403,0.969149,-0.213357, + 0.123403,0.969149,-0.213357,0.179994,0.964626,-0.192610,0.179994,0.964626,-0.192610,0.179994,0.964626,-0.192610, + 0.977315,0.108976,-0.181603,0.977315,0.108976,-0.181603,0.977315,0.108976,-0.181603,0.978320,-0.179436,-0.103409, + 0.978320,-0.179436,-0.103409,0.978320,-0.179436,-0.103409,-0.979748,-0.158743,0.122047,-0.979748,-0.158743,0.122047, + -0.979748,-0.158743,0.122047,-0.988795,0.016230,0.148396,-0.988795,0.016230,0.148396,-0.988795,0.016230,0.148396, + 0.874628,0.303299,-0.378201,0.874628,0.303299,-0.378201,0.874628,0.303299,-0.378201,0.935210,-0.136254,-0.326829, + 0.935210,-0.136254,-0.326829,0.935210,-0.136254,-0.326829,-0.374368,0.915414,-0.147872,-0.374368,0.915414,-0.147872, + -0.374368,0.915414,-0.147872,0.442198,0.870999,-0.214057,0.442198,0.870999,-0.214057,0.442198,0.870999,-0.214057, + -0.034562,-0.987286,0.155151,-0.034562,-0.987286,0.155151,-0.034562,-0.987286,0.155151,-0.007996,-0.997096,0.075730, + -0.007996,-0.997096,0.075730,-0.007996,-0.997096,0.075730,0.141457,-0.963599,0.226863,0.141457,-0.963599,0.226863, + 0.141457,-0.963599,0.226863,-0.131699,-0.981170,-0.141282,-0.131699,-0.981170,-0.141282,-0.131699,-0.981170,-0.141282, + -0.292095,0.899877,-0.323886,-0.292095,0.899877,-0.323886,-0.292095,0.899877,-0.323886,0.236569,0.903620,-0.357080, + 0.236569,0.903620,-0.357080,0.236569,0.903620,-0.357080,-0.308736,-0.948363,-0.072734,-0.308736,-0.948363,-0.072734, + -0.308736,-0.948363,-0.072734,-0.373547,-0.925668,-0.060014,-0.373547,-0.925668,-0.060014,-0.373547,-0.925668,-0.060014, + -0.517442,-0.478980,-0.709106,-0.517442,-0.478980,-0.709106,-0.517442,-0.478980,-0.709106,0.533755,-0.500281,-0.681781, + 0.533755,-0.500281,-0.681781,0.533755,-0.500281,-0.681781,0.251193,-0.130617,-0.959084,0.251193,-0.130617,-0.959084, + 0.251193,-0.130617,-0.959084,-0.462828,0.606745,-0.646259,-0.462828,0.606745,-0.646259,-0.462828,0.606745,-0.646259, + -0.494433,-0.107846,-0.862500,-0.494433,-0.107846,-0.862500,-0.494433,-0.107846,-0.862500,0.297070,-0.041919,-0.953935, + 0.297070,-0.041919,-0.953935,0.297070,-0.041919,-0.953935,0.376478,0.325370,-0.867409,0.376478,0.325370,-0.867409, + 0.376478,0.325370,-0.867409,0.144753,0.760716,-0.632738,0.144753,0.760716,-0.632738,0.144753,0.760716,-0.632738, + -0.355566,0.660917,-0.660879,-0.355566,0.660917,-0.660879,-0.355566,0.660917,-0.660879,0.397525,0.685248,-0.610253, + 0.397525,0.685248,-0.610253,0.397525,0.685248,-0.610253,0.434088,0.892609,0.121725,0.434088,0.892609,0.121725, + 0.434088,0.892609,0.121725,0.459690,0.887472,0.032845,0.459690,0.887472,0.032845,0.459690,0.887472,0.032845, + 0.141052,0.761333,-0.632832,0.141052,0.761333,-0.632832,0.141052,0.761333,-0.632832,0.106616,0.565868,-0.817574, + 0.106616,0.565868,-0.817574,0.106616,0.565868,-0.817574,-0.034316,-0.781293,-0.623220,-0.034316,-0.781293,-0.623220, + -0.034316,-0.781293,-0.623220,-0.698182,-0.394864,-0.597181,-0.698182,-0.394864,-0.597181,-0.698182,-0.394864,-0.597181, + -0.612354,-0.539351,-0.578034,-0.612354,-0.539351,-0.578034,-0.612354,-0.539351,-0.578034,0.220901,-0.752791,-0.620088, + 0.220901,-0.752791,-0.620088,0.220901,-0.752791,-0.620088,0.205969,-0.493589,0.844954,0.205969,-0.493589,0.844954, + 0.205969,-0.493589,0.844954,-0.121842,-0.509182,0.851991,-0.121842,-0.509182,0.851991,-0.121842,-0.509182,0.851991, + -0.819733,0.180937,0.543414,-0.819733,0.180937,0.543414,-0.819733,0.180937,0.543414,-0.903123,0.362387,-0.230314, + -0.903123,0.362387,-0.230314,-0.903123,0.362387,-0.230314,-0.970924,-0.239187,-0.009831,-0.970924,-0.239187,-0.009831, + -0.970924,-0.239187,-0.009831,0.424996,0.837012,-0.344657,0.424996,0.837012,-0.344657,0.424996,0.837012,-0.344657, + 0.139218,0.943915,-0.299403,0.139218,0.943915,-0.299403,0.139218,0.943915,-0.299403,0.177727,0.960734,-0.213079, + 0.177727,0.960734,-0.213079,0.177727,0.960734,-0.213079,0.126645,0.973408,-0.190888,0.126645,0.973408,-0.190888, + 0.126645,0.973408,-0.190888,0.169913,0.878824,-0.445867,0.169913,0.878824,-0.445867,0.169913,0.878824,-0.445867, + -0.008917,0.611069,0.791528,-0.008917,0.611069,0.791528,-0.008917,0.611069,0.791528,0.219069,0.597314,0.771508, + 0.219069,0.597314,0.771508,0.219069,0.597314,0.771508,-0.014656,-0.897060,-0.441665,-0.014656,-0.897060,-0.441665, + -0.014656,-0.897060,-0.441665,0.024233,-0.793520,-0.608061,0.024233,-0.793520,-0.608061,0.024233,-0.793520,-0.608061, + 0.042784,-0.793724,-0.606771,0.042784,-0.793724,-0.606771,0.042784,-0.793724,-0.606771,-0.435111,-0.590188,-0.679968, + -0.435111,-0.590188,-0.679968,-0.435111,-0.590188,-0.679968,0.501863,-0.457547,-0.734019,0.501863,-0.457547,-0.734019, + 0.501863,-0.457547,-0.734019,-0.672084,-0.653441,0.348307,-0.672084,-0.653441,0.348307,-0.672084,-0.653441,0.348307, + 0.776343,-0.468744,0.421391,0.776343,-0.468744,0.421391,0.776343,-0.468744,0.421391,-0.985161,-0.002115,0.171618, + -0.985161,-0.002115,0.171618,-0.985161,-0.002115,0.171618,-0.949843,0.180099,-0.255660,-0.949843,0.180099,-0.255660, + -0.949843,0.180099,-0.255660,0.816435,-0.466858,0.339820,0.816435,-0.466858,0.339820,0.816435,-0.466858,0.339820, + 0.689967,0.071216,-0.720329,0.689967,0.071216,-0.720329,0.689967,0.071216,-0.720329,0.889568,-0.379483,0.254287, + 0.889568,-0.379483,0.254287,0.889568,-0.379483,0.254287,-0.889059,0.193399,-0.414935,-0.889059,0.193399,-0.414935, + -0.889059,0.193399,-0.414935,-0.889059,0.193399,-0.414935,-0.845941,0.503645,-0.175284,-0.845941,0.503645,-0.175284, + -0.845941,0.503645,-0.175284,-0.998708,0.029883,-0.041092,-0.998708,0.029883,-0.041092,-0.998708,0.029883,-0.041092, + -0.926208,0.187092,0.327315,-0.926208,0.187092,0.327315,-0.926208,0.187092,0.327315,0.925037,0.375606,-0.056801, + 0.925037,0.375606,-0.056801,0.925037,0.375606,-0.056801,-0.304478,-0.941065,0.147272,-0.304478,-0.941065,0.147272, + -0.304478,-0.941065,0.147272,-0.304478,-0.941065,0.147272,-0.561905,-0.824270,0.069585,-0.561905,-0.824270,0.069585, + -0.561905,-0.824270,0.069585,0.976402,0.197232,-0.087975,0.976402,0.197232,-0.087975,0.976402,0.197232,-0.087975, + -0.142129,0.921086,-0.362490,-0.142129,0.921086,-0.362490,-0.142129,0.921086,-0.362490,-0.752037,0.641575,0.151070, + -0.752037,0.641575,0.151070,-0.752037,0.641575,0.151070,-0.539952,-0.605685,0.584464,-0.539952,-0.605685,0.584464, + -0.539952,-0.605685,0.584464,-0.724980,-0.639251,0.256441,-0.724980,-0.639251,0.256441,-0.724980,-0.639251,0.256441, + -0.117477,0.472677,-0.873370,-0.117477,0.472677,-0.873370,-0.117477,0.472677,-0.873370,0.891092,-0.020638,0.453354, + 0.891092,-0.020638,0.453354,0.891092,-0.020638,0.453354,0.995643,0.073395,0.057514,0.995643,0.073395,0.057514, + 0.995643,0.073395,0.057514,-0.978282,-0.154703,-0.137955,-0.978282,-0.154703,-0.137955,-0.978282,-0.154703,-0.137955, + 0.863215,0.321222,-0.389457,0.863215,0.321222,-0.389457,0.863215,0.321222,-0.389457,-0.289583,0.918109,-0.270588, + -0.289583,0.918109,-0.270588,-0.289583,0.918109,-0.270588,0.374350,-0.722885,0.580775,0.374350,-0.722885,0.580775, + 0.374350,-0.722885,0.580775,0.035067,-0.562952,-0.825746,0.035067,-0.562952,-0.825746,0.035067,-0.562952,-0.825746, + -0.271570,-0.199406,-0.941534,-0.271570,-0.199406,-0.941534,-0.271570,-0.199406,-0.941534,0.861429,0.325361,-0.389976, + 0.861429,0.325361,-0.389976,0.861429,0.325361,-0.389976,-0.969060,-0.236051,-0.072132,-0.969060,-0.236051,-0.072132, + -0.969060,-0.236051,-0.072132,-0.838996,-0.096283,-0.535552,-0.838996,-0.096283,-0.535552,-0.838996,-0.096283,-0.535552, + -0.072387,-0.993240,0.090748,-0.072387,-0.993240,0.090748,-0.072387,-0.993240,0.090748,-0.967378,-0.179941,0.178325, + -0.967378,-0.179941,0.178325,-0.967378,-0.179941,0.178325,0.974239,0.210556,0.080774,0.974239,0.210556,0.080774, + 0.974239,0.210556,0.080774,0.229260,-0.877873,0.420452,0.229260,-0.877873,0.420452,0.229260,-0.877873,0.420452, + 0.812977,-0.552261,0.184599,0.812977,-0.552261,0.184599,0.812977,-0.552261,0.184599,0.262207,-0.176973,0.948645, + 0.262207,-0.176973,0.948645,0.262207,-0.176973,0.948645,0.062849,0.134648,0.988898,0.062849,0.134648,0.988898, + 0.062849,0.134648,0.988898,-0.323909,0.141913,0.935384,-0.323909,0.141913,0.935384,-0.323909,0.141913,0.935384, + 0.089447,-0.195546,0.976607,0.089447,-0.195546,0.976607,0.089447,-0.195546,0.976607,0.440592,-0.411036,0.798078, + 0.440592,-0.411036,0.798078,0.440592,-0.411036,0.798078,0.198802,0.120960,0.972547,0.198802,0.120960,0.972547, + 0.198802,0.120960,0.972547,-0.109321,-0.372196,0.921694,-0.109321,-0.372196,0.921694,-0.109321,-0.372196,0.921694, + -0.170963,-0.281022,0.944351,-0.170963,-0.281022,0.944351,-0.170963,-0.281022,0.944351,0.345008,0.340356,0.874715, + 0.345008,0.340356,0.874715,0.345008,0.340356,0.874715,0.146827,0.404743,0.902566,0.146827,0.404743,0.902566, + 0.146827,0.404743,0.902566,-0.336168,0.392349,0.856186,-0.336168,0.392349,0.856186,-0.336168,0.392349,0.856186, + 0.414109,0.079662,0.906735,0.414109,0.079662,0.906735,0.414109,0.079662,0.906735,0.374670,-0.014445,0.927046, + 0.374670,-0.014445,0.927046,0.374670,-0.014445,0.927046,0.187363,0.369802,0.910023,0.187363,0.369802,0.910023, + 0.187363,0.369802,0.910023,-0.188879,0.317622,0.929215,-0.188879,0.317622,0.929215,-0.188879,0.317622,0.929215, + 0.189726,0.041192,0.980973,0.189726,0.041192,0.980973,0.189726,0.041192,0.980973,0.533652,0.814733,-0.226772, + 0.533652,0.814733,-0.226772,0.533652,0.814733,-0.226772,0.258960,-0.965829,-0.010658,0.258960,-0.965829,-0.010658, + 0.258960,-0.965829,-0.010658,-0.151729,0.947753,-0.280612,-0.151729,0.947753,-0.280612,-0.151729,0.947753,-0.280612, + -0.988711,0.002765,0.149809,-0.988711,0.002765,0.149809,-0.988711,0.002765,0.149809,0.943416,-0.007614,-0.331525, + 0.943416,-0.007614,-0.331525,0.943416,-0.007614,-0.331525,0.140284,0.975441,-0.169807,0.140284,0.975441,-0.169807, + 0.140284,0.975441,-0.169807,-0.333670,-0.929139,0.159263,-0.333670,-0.929139,0.159263,-0.333670,-0.929139,0.159263, + 0.014507,-0.994425,-0.104445,0.014507,-0.994425,-0.104445,0.014507,-0.994425,-0.104445,-0.312866,0.896240,-0.314434, + -0.312866,0.896240,-0.314434,-0.312866,0.896240,-0.314434,-0.377269,-0.924170,-0.059815,-0.377269,-0.924170,-0.059815, + -0.377269,-0.924170,-0.059815,-0.234535,-0.174782,-0.956266,-0.234535,-0.174782,-0.956266,-0.234535,-0.174782,-0.956266, + -0.660350,-0.538377,-0.523534,-0.660350,-0.538377,-0.523534,-0.660350,-0.538377,-0.523534,0.454838,-0.477899,-0.751488, + 0.454838,-0.477899,-0.751488,0.454838,-0.477899,-0.751488,-0.294752,0.285598,-0.911896,-0.294752,0.285598,-0.911896, + -0.294752,0.285598,-0.911896,-0.542189,-0.147224,-0.827259,-0.542189,-0.147224,-0.827259,-0.542189,-0.147224,-0.827259, + 0.356707,-0.145878,-0.922757,0.356707,-0.145878,-0.922757,0.356707,-0.145878,-0.922757,0.409717,0.375713,-0.831247, + 0.409717,0.375713,-0.831247,0.409717,0.375713,-0.831247,0.306349,0.684395,-0.661629,0.306349,0.684395,-0.661629, + 0.306349,0.684395,-0.661629,-0.384759,-0.721607,-0.575538,-0.384759,-0.721607,-0.575538,-0.384759,-0.721607,-0.575538, + -0.361487,-0.634948,-0.682765,-0.361487,-0.634948,-0.682765,-0.361487,-0.634948,-0.682765,0.129072,-0.398901,-0.907865, + 0.129072,-0.398901,-0.907865,0.129072,-0.398901,-0.907865,0.783304,0.529566,-0.325568,0.783304,0.529566,-0.325568, + 0.783304,0.529566,-0.325568,0.364847,-0.189957,-0.911484,0.364847,-0.189957,-0.911484,0.364847,-0.189957,-0.911484, + 0.273741,0.894149,-0.354350,0.273741,0.894149,-0.354350,0.273741,0.894149,-0.354350,-0.105165,0.891768,-0.440102, + -0.105165,0.891768,-0.440102,-0.105165,0.891768,-0.440102,0.084855,0.986674,-0.138830,0.084855,0.986674,-0.138830, + 0.084855,0.986674,-0.138830,-0.775730,0.272378,0.569257,-0.775730,0.272378,0.569257,-0.775730,0.272378,0.569257, + 0.778431,0.535379,0.327741,0.778431,0.535379,0.327741,0.778431,0.535379,0.327741,0.856345,0.179927,0.484045, + 0.856345,0.179927,0.484045,0.856345,0.179927,0.484045,-0.314785,-0.034094,-0.948550,-0.314785,-0.034094,-0.948550, + -0.314785,-0.034094,-0.948550,0.431630,-0.483174,-0.761734,0.431630,-0.483174,-0.761734,0.431630,-0.483174,-0.761734, + 0.431630,-0.483174,-0.761734,0.765796,0.604356,-0.219797,0.765796,0.604356,-0.219797,0.765796,0.604356,-0.219797, + 0.371055,0.894293,0.250118,0.371055,0.894293,0.250118,0.371055,0.894293,0.250118,0.371055,0.894293,0.250118, + 0.247162,0.908337,-0.337394,0.247162,0.908337,-0.337394,0.247162,0.908337,-0.337394,0.613309,0.689468,-0.385338, + 0.613309,0.689468,-0.385338,0.613309,0.689468,-0.385338,-0.735601,-0.093212,0.670971,-0.735601,-0.093212,0.670971, + -0.735601,-0.093212,0.670971,-0.956282,-0.251860,-0.148628,-0.956282,-0.251860,-0.148628,-0.956282,-0.251860,-0.148628, + 0.836262,-0.163955,-0.523244,0.836262,-0.163955,-0.523244,0.836262,-0.163955,-0.523244,0.811439,-0.385563,0.439213, + 0.811439,-0.385563,0.439213,0.811439,-0.385563,0.439213,-0.877186,-0.426591,0.220374,-0.877186,-0.426591,0.220374, + -0.877186,-0.426591,0.220374,0.844896,-0.533474,0.039448,0.844896,-0.533474,0.039448,0.844896,-0.533474,0.039448, + -0.836354,0.506185,-0.210450,-0.836354,0.506185,-0.210450,-0.836354,0.506185,-0.210450,-0.838990,0.530694,0.120250, + -0.838990,0.530694,0.120250,-0.838990,0.530694,0.120250,-0.663776,0.747784,-0.014857,-0.663776,0.747784,-0.014857, + -0.663776,0.747784,-0.014857,0.942379,0.071716,-0.326770,0.942379,0.071716,-0.326770,0.942379,0.071716,-0.326770, + 0.148341,0.950310,0.273688,0.148341,0.950310,0.273688,0.148341,0.950310,0.273688,0.042830,-0.996906,-0.065913, + 0.042830,-0.996906,-0.065913,0.042830,-0.996906,-0.065913,0.107879,-0.544126,0.832039,0.107879,-0.544126,0.832039, + 0.107879,-0.544126,0.832039,0.952398,0.032234,0.303148,0.952398,0.032234,0.303148,0.952398,0.032234,0.303148, + 0.888301,-0.459140,0.010594,0.888301,-0.459140,0.010594,0.888301,-0.459140,0.010594,0.888301,-0.459140,0.010594, + 0.205598,-0.587937,0.782342,0.205598,-0.587937,0.782342,0.205598,-0.587937,0.782342,0.205598,-0.587937,0.782342, + 0.972884,0.221834,-0.065466,0.972884,0.221834,-0.065466,0.972884,0.221834,-0.065466,0.972884,0.221834,-0.065466, + -0.840982,0.124244,0.526605,-0.840982,0.124244,0.526605,-0.840982,0.124244,0.526605,0.151643,0.502801,0.850997, + 0.151643,0.502801,0.850997,0.151643,0.502801,0.850997,0.151643,0.502801,0.850997,-0.133948,0.889114,-0.437646, + -0.133948,0.889114,-0.437646,-0.133948,0.889114,-0.437646,-0.133948,0.889114,-0.437646,0.964342,0.087673,-0.249718, + 0.964342,0.087673,-0.249718,0.964342,0.087673,-0.249718,0.964342,0.087673,-0.249718,0.898102,0.426761,-0.106248, + 0.898102,0.426761,-0.106248,0.898102,0.426761,-0.106248,0.898102,0.426761,-0.106248,-0.255185,-0.825627,0.503211, + -0.255185,-0.825627,0.503211,-0.255185,-0.825627,0.503211,-0.606982,-0.710867,0.355304,-0.606982,-0.710867,0.355304, + -0.606982,-0.710867,0.355304,-0.606982,-0.710867,0.355304,-0.881755,0.432545,-0.188182,-0.881755,0.432545,-0.188182, + -0.881755,0.432545,-0.188182,-0.881755,0.432545,-0.188182,-0.104200,-0.595264,0.796745,-0.104200,-0.595264,0.796745, + -0.104200,-0.595264,0.796745,-0.179835,-0.071807,-0.981072,-0.179835,-0.071807,-0.981072,-0.179835,-0.071807,-0.981072, + -0.179835,-0.071807,-0.981072,-0.072999,-0.829210,0.554149,-0.072999,-0.829210,0.554149,-0.072999,-0.829210,0.554149, + -0.179019,0.864954,-0.468836,-0.179019,0.864954,-0.468836,-0.179019,0.864954,-0.468836,-0.998918,-0.032006,-0.033729, + -0.998918,-0.032006,-0.033729,-0.998918,-0.032006,-0.033729,-0.789996,0.076120,-0.608369,-0.789996,0.076120,-0.608369, + -0.789996,0.076120,-0.608369,0.451791,-0.822994,0.344335,0.451791,-0.822994,0.344335,0.451791,-0.822994,0.344335, + -0.265036,-0.808380,0.525621,-0.265036,-0.808380,0.525621,-0.265036,-0.808380,0.525621,0.949618,-0.231081,0.211722, + 0.949618,-0.231081,0.211722,0.949618,-0.231081,0.211722,0.805560,0.588178,-0.071554,0.805560,0.588178,-0.071554, + 0.805560,0.588178,-0.071554,0.568142,0.809266,-0.149344,0.568142,0.809266,-0.149344,0.568142,0.809266,-0.149344, + -0.179261,0.867301,-0.464386,-0.179261,0.867301,-0.464386,-0.179261,0.867301,-0.464386,0.373846,0.894880,-0.243779, + 0.373846,0.894880,-0.243779,0.373846,0.894880,-0.243779,0.343683,0.722554,-0.599832,0.343683,0.722554,-0.599832, + 0.343683,0.722554,-0.599832,0.132912,0.745173,-0.653492,0.132912,0.745173,-0.653492,0.132912,0.745173,-0.653492, + -0.003387,-0.073746,-0.997271,-0.003387,-0.073746,-0.997271,-0.003387,-0.073746,-0.997271,0.085376,0.693354,-0.715522, + 0.085376,0.693354,-0.715522,0.085376,0.693354,-0.715522,-0.065978,0.013448,-0.997730,-0.065978,0.013448,-0.997730, + -0.065978,0.013448,-0.997730,0.034767,-0.634188,-0.772397,0.034767,-0.634188,-0.772397,0.034767,-0.634188,-0.772397, + 0.446373,-0.655616,-0.609031,0.446373,-0.655616,-0.609031,0.446373,-0.655616,-0.609031,-0.481079,-0.438307,-0.759243, + -0.481079,-0.438307,-0.759243,-0.481079,-0.438307,-0.759243,-0.451701,-0.397047,-0.798949,-0.451701,-0.397047,-0.798949, + -0.451701,-0.397047,-0.798949,-0.322988,-0.017958,-0.946233,-0.322988,-0.017958,-0.946233,-0.322988,-0.017958,-0.946233, + -0.406440,0.803445,-0.435065,-0.406440,0.803445,-0.435065,-0.406440,0.803445,-0.435065,-0.549015,0.713915,-0.434635, + -0.549015,0.713915,-0.434635,-0.549015,0.713915,-0.434635,-0.790048,0.074814,-0.608463,-0.790048,0.074814,-0.608463, + -0.790048,0.074814,-0.608463,0.567036,0.823557,0.014938,0.567036,0.823557,0.014938,0.567036,0.823557,0.014938, + 0.309154,-0.918937,0.244906,0.309154,-0.918937,0.244906,0.309154,-0.918937,0.244906,0.316862,-0.823909,0.469863, + 0.316862,-0.823909,0.469863,0.316862,-0.823909,0.469863,-0.194196,-0.774577,0.601928,-0.194196,-0.774577,0.601928, + -0.194196,-0.774577,0.601928,0.347392,0.913692,-0.210915,0.347392,0.913692,-0.210915,0.347392,0.913692,-0.210915, + 0.402629,0.752981,-0.520489,0.402629,0.752981,-0.520489,0.402629,0.752981,-0.520489,0.126770,0.742411,-0.657841, + 0.126770,0.742411,-0.657841,0.126770,0.742411,-0.657841,0.287654,0.534180,-0.794926,0.287654,0.534180,-0.794926, + 0.287654,0.534180,-0.794926,0.203145,-0.805526,-0.556651,0.203145,-0.805526,-0.556651,0.203145,-0.805526,-0.556651, + -0.158624,-0.538062,-0.827845,-0.158624,-0.538062,-0.827845,-0.158624,-0.538062,-0.827845,0.283898,-0.911804,-0.296675, + 0.283898,-0.911804,-0.296675,0.283898,-0.911804,-0.296675,0.268205,-0.916847,-0.295732,0.268205,-0.916847,-0.295732, + 0.268205,-0.916847,-0.295732,-0.623115,-0.770203,-0.136071,-0.623115,-0.770203,-0.136071,-0.623115,-0.770203,-0.136071, + -0.249071,0.545871,-0.799993,-0.249071,0.545871,-0.799993,-0.249071,0.545871,-0.799993,-0.623115,-0.770203,-0.136069, + -0.623115,-0.770203,-0.136069,-0.623115,-0.770203,-0.136069,-0.623116,-0.770203,-0.136064,-0.623116,-0.770203,-0.136064, + -0.623116,-0.770203,-0.136064,-0.623116,-0.770203,-0.136064,-0.657701,0.129178,0.742120,-0.657701,0.129178,0.742120, + -0.657701,0.129178,0.742120,-0.344739,-0.902928,0.256662,-0.344739,-0.902928,0.256662,-0.344739,-0.902928,0.256662, + -0.344739,-0.902928,0.256662,0.412335,-0.697317,0.586284,0.412335,-0.697317,0.586284,0.412335,-0.697317,0.586284, + -0.760630,0.635214,-0.133960,-0.760630,0.635214,-0.133960,-0.760630,0.635214,-0.133960,-0.713035,0.129885,0.688993, + -0.713035,0.129885,0.688993,-0.713035,0.129885,0.688993,-0.195654,-0.534921,-0.821936,-0.195654,-0.534921,-0.821936, + -0.195654,-0.534921,-0.821936,-0.195654,-0.534921,-0.821936,0.331292,0.531389,0.779661,0.331292,0.531389,0.779661, + 0.331292,0.531389,0.779661,0.331292,0.531389,0.779661,-0.324024,-0.714908,0.619609,-0.324024,-0.714908,0.619609, + -0.324024,-0.714908,0.619609,-0.324024,-0.714908,0.619609,0.893373,-0.312919,-0.322438,0.893373,-0.312919,-0.322438, + 0.893373,-0.312919,-0.322438,0.893373,-0.312919,-0.322438,0.524671,0.555567,-0.645031,0.524671,0.555567,-0.645031, + 0.524671,0.555567,-0.645031,0.524671,0.555567,-0.645031,-0.890014,0.335394,0.308847,-0.890014,0.335394,0.308847, + -0.890014,0.335394,0.308847,-0.890014,0.335394,0.308847,-0.159047,-0.559817,-0.813209,-0.159047,-0.559817,-0.813209, + -0.159047,-0.559817,-0.813209,-0.159047,-0.559817,-0.813209,0.301338,0.547304,0.780803,0.301338,0.547304,0.780803, + 0.301338,0.547304,0.780803,0.301338,0.547304,0.780803,-0.284126,-0.748432,0.599268,-0.284126,-0.748432,0.599268, + -0.284126,-0.748432,0.599268,-0.284126,-0.748432,0.599268,0.958701,-0.265364,-0.102341,0.958701,-0.265364,-0.102341, + 0.958701,-0.265364,-0.102341,0.958701,-0.265364,-0.102341,0.445807,0.668767,-0.594985,0.445807,0.668767,-0.594985, + 0.445807,0.668767,-0.594985,0.445807,0.668767,-0.594985,-0.948262,0.309757,0.069634,-0.948262,0.309757,0.069634, + -0.948262,0.309757,0.069634,-0.948262,0.309757,0.069634,-0.270786,-0.746635,0.607627,-0.270786,-0.746635,0.607627, + -0.270786,-0.746635,0.607627,-0.270786,-0.746635,0.607627,0.928577,-0.308307,-0.206620,0.928577,-0.308307,-0.206620, + 0.928577,-0.308307,-0.206620,0.928577,-0.308307,-0.206620,0.372120,0.689810,-0.621039,0.372120,0.689810,-0.621039, + 0.372120,0.689810,-0.621039,0.372120,0.689810,-0.621039,-0.925152,0.324514,0.196937,-0.925152,0.324514,0.196937, + -0.925152,0.324514,0.196937,-0.925152,0.324514,0.196937,-0.051395,-0.816766,0.574676,-0.051395,-0.816766,0.574676, + -0.051395,-0.816766,0.574676,-0.051395,-0.816766,0.574676,0.933873,-0.323884,-0.151595,0.933873,-0.323884,-0.151595, + 0.933873,-0.323884,-0.151595,0.933873,-0.323884,-0.151595,0.195339,0.772820,-0.603814,0.195339,0.772820,-0.603814, + 0.195339,0.772820,-0.603814,0.195339,0.772820,-0.603814,-0.913563,0.395135,0.096283,-0.913563,0.395135,0.096283, + -0.913563,0.395135,0.096283,-0.913563,0.395135,0.096283,-0.198541,-0.827640,0.524970,-0.198541,-0.827640,0.524970, + -0.198541,-0.827640,0.524970,-0.198541,-0.827640,0.524970,0.348222,0.519000,0.780628,0.348222,0.519000,0.780628, + 0.348222,0.519000,0.780628,0.348222,0.519000,0.780628,0.235564,0.871352,-0.430413,0.235564,0.871352,-0.430413, + 0.235564,0.871352,-0.430413,0.235564,0.871352,-0.430413,-0.331729,-0.442651,-0.833076,-0.331729,-0.442651,-0.833076, + -0.331729,-0.442651,-0.833076,-0.331729,-0.442651,-0.833076,-0.201284,-0.827011,0.524916,-0.201284,-0.827011,0.524916, + -0.201284,-0.827011,0.524916,-0.201284,-0.827011,0.524916,0.366769,0.512934,0.776131,0.366769,0.512934,0.776131, + 0.366769,0.512934,0.776131,0.366769,0.512934,0.776131,0.240837,0.870104,-0.430019,0.240837,0.870104,-0.430019, + 0.240837,0.870104,-0.430019,0.240837,0.870104,-0.430019,-0.351307,-0.437900,-0.827543,-0.351307,-0.437900,-0.827543, + -0.351307,-0.437900,-0.827543,-0.351307,-0.437900,-0.827543,-0.202251,-0.826621,0.525160,-0.202251,-0.826621,0.525160, + -0.202251,-0.826621,0.525160,-0.202251,-0.826621,0.525160,0.365979,0.512932,0.776505,0.365979,0.512932,0.776505, + 0.365979,0.512932,0.776505,0.365979,0.512932,0.776505,0.241843,0.869563,-0.430548,0.241843,0.869563,-0.430548, + 0.241843,0.869563,-0.430548,0.241843,0.869563,-0.430548,-0.349841,-0.437090,-0.828591,-0.349841,-0.437090,-0.828591, + -0.349841,-0.437090,-0.828591,-0.349841,-0.437090,-0.828591,-0.203883,-0.826329,0.524987,-0.203883,-0.826329,0.524987, + -0.203883,-0.826329,0.524987,-0.203883,-0.826329,0.524987,0.373782,0.509593,0.774985,0.373782,0.509593,0.774985, + 0.373782,0.509593,0.774985,0.373782,0.509593,0.774985,0.244617,0.868905,-0.430309,0.244617,0.868905,-0.430309, + 0.244617,0.868905,-0.430309,0.244617,0.868905,-0.430309,-0.357326,-0.432933,-0.827579,-0.357326,-0.432933,-0.827579, + -0.357326,-0.432933,-0.827579,-0.357326,-0.432933,-0.827579,-0.200214,-0.827607,0.524386,-0.200214,-0.827607,0.524386, + -0.200214,-0.827607,0.524386,-0.200214,-0.827607,0.524386,0.326074,0.526751,0.784990,0.326074,0.526751,0.784990, + 0.326074,0.526751,0.784990,0.326074,0.526751,0.784990,0.235573,0.872018,-0.429057,0.235573,0.872018,-0.429057, + 0.235573,0.872018,-0.429057,0.235573,0.872018,-0.429057,-0.310055,-0.450537,-0.837187,-0.310055,-0.450537,-0.837187, + -0.310055,-0.450537,-0.837187,-0.310055,-0.450537,-0.837187,-0.151677,-0.843416,0.515406,-0.151677,-0.843416,0.515406, + -0.151677,-0.843416,0.515406,-0.151677,-0.843416,0.515406,0.352494,0.517448,0.779741,0.352494,0.517448,0.779741, + 0.352494,0.517448,0.779741,0.352494,0.517448,0.779741,0.190528,0.886491,-0.421703,0.190528,0.886491,-0.421703, + 0.190528,0.886491,-0.421703,0.190528,0.886491,-0.421703,-0.340988,-0.439259,-0.831131,-0.340988,-0.439259,-0.831131, + -0.340988,-0.439259,-0.831131,-0.340988,-0.439259,-0.831131,0.264915,0.700050,-0.663137,0.264915,0.700050,-0.663137, + 0.264915,0.700050,-0.663137,0.264915,0.700050,-0.663137,-0.127466,-0.736208,0.664643,-0.127466,-0.736208,0.664643, + -0.127466,-0.736208,0.664643,-0.127466,-0.736208,0.664643,-0.608083,-0.467991,-0.641264,-0.608083,-0.467991,-0.641264, + -0.608083,-0.467991,-0.641264,-0.608083,-0.467991,-0.641264,0.926329,-0.249707,-0.282064,0.926329,-0.249707,-0.282064, + 0.926329,-0.249707,-0.282064,0.926329,-0.249707,-0.282064,0.790612,0.357753,0.496937,0.790612,0.357753,0.496937, + 0.790612,0.357753,0.496937,0.790612,0.357753,0.496937,-0.916122,0.263062,0.302521,-0.916122,0.263062,0.302521, + -0.916122,0.263062,0.302521,-0.916122,0.263062,0.302521,0.291172,0.669482,-0.683383,0.291172,0.669482,-0.683383, + 0.291172,0.669482,-0.683383,0.291172,0.669482,-0.683383,-0.153361,-0.718843,0.678045,-0.153361,-0.718843,0.678045, + -0.153361,-0.718843,0.678045,-0.153361,-0.718843,0.678045,-0.563721,-0.477441,-0.673995,-0.563721,-0.477441,-0.673995, + -0.563721,-0.477441,-0.673995,-0.563721,-0.477441,-0.673995,0.865666,-0.459905,-0.197760,0.865666,-0.459905,-0.197760, + 0.865666,-0.459905,-0.197760,0.865666,-0.459905,-0.197760,0.698046,0.376046,0.609362,0.698046,0.376046,0.609362, + 0.698046,0.376046,0.609362,0.698046,0.376046,0.609362,-0.839173,0.489205,0.237628,-0.839173,0.489205,0.237628, + -0.839173,0.489205,0.237628,-0.839173,0.489205,0.237628,-0.556806,-0.491107,-0.669911,-0.556806,-0.491107,-0.669911, + -0.556806,-0.491107,-0.669911,-0.556806,-0.491107,-0.669911,0.894959,-0.364154,-0.257761,0.894959,-0.364154,-0.257761, + 0.894959,-0.364154,-0.257761,0.894959,-0.364154,-0.257761,0.649474,0.439847,0.620257,0.649474,0.439847,0.620257, + 0.649474,0.439847,0.620257,0.649474,0.439847,0.620257,-0.886806,0.373171,0.272613,-0.886806,0.373171,0.272613, + -0.886806,0.373171,0.272613,-0.886806,0.373171,0.272613,-0.353735,-0.589951,-0.725830,-0.353735,-0.589951,-0.725830, + -0.353735,-0.589951,-0.725830,-0.353735,-0.589951,-0.725830,0.870222,-0.415526,-0.264671,0.870222,-0.415526,-0.264671, + 0.870222,-0.415526,-0.264671,0.870222,-0.415526,-0.264671,0.490959,0.531727,0.690091,0.490959,0.531727,0.690091, + 0.490959,0.531727,0.690091,0.490959,0.531727,0.690091,-0.823196,0.463047,0.328535,-0.823196,0.463047,0.328535, + -0.823196,0.463047,0.328535,-0.823196,0.463047,0.328535,-0.452374,-0.473309,-0.755868,-0.452374,-0.473309,-0.755868, + -0.452374,-0.473309,-0.755868,-0.452374,-0.473309,-0.755868,-0.113703,-0.747934,0.653963,-0.113703,-0.747934,0.653963, + -0.113703,-0.747934,0.653963,-0.113703,-0.747934,0.653963,0.434074,0.382183,0.815792,0.434074,0.382183,0.815792, + 0.434074,0.382183,0.815792,0.434074,0.382183,0.815792,0.156007,0.795902,-0.584981,0.156007,0.795902,-0.584981, + 0.156007,0.795902,-0.584981,0.156007,0.795902,-0.584981,-0.454665,-0.471722,-0.755486,-0.454665,-0.471722,-0.755486, + -0.454665,-0.471722,-0.755486,-0.454665,-0.471722,-0.755486,-0.095622,-0.754885,0.648849,-0.095622,-0.754885,0.648849, + -0.095622,-0.754885,0.648849,-0.095622,-0.754885,0.648849,0.438352,0.378911,0.815030,0.438352,0.378911,0.815030, + 0.438352,0.378911,0.815030,0.438352,0.378911,0.815030,0.136502,0.802320,-0.581077,0.136502,0.802320,-0.581077, + 0.136502,0.802320,-0.581077,0.136502,0.802320,-0.581077,-0.455611,-0.471332,-0.755159,-0.455611,-0.471332,-0.755159, + -0.455611,-0.471332,-0.755159,-0.455611,-0.471332,-0.755159,-0.096489,-0.754784,0.648839,-0.096489,-0.754784,0.648839, + -0.096489,-0.754784,0.648839,-0.096489,-0.754784,0.648839,0.439466,0.378742,0.814508,0.439466,0.378742,0.814508, + 0.439466,0.378742,0.814508,0.439466,0.378742,0.814508,0.138314,0.802573,-0.580297,0.138314,0.802573,-0.580297, + 0.138314,0.802573,-0.580297,0.138314,0.802573,-0.580297,-0.456890,-0.470287,-0.755037,-0.456890,-0.470287,-0.755037, + -0.456890,-0.470287,-0.755037,-0.456890,-0.470287,-0.755037,-0.089090,-0.758157,0.645957,-0.089090,-0.758157,0.645957, + -0.089090,-0.758157,0.645957,-0.089090,-0.758157,0.645957,0.441670,0.376957,0.814145,0.441670,0.376957,0.814145, + 0.441670,0.376957,0.814145,0.441670,0.376957,0.814145,0.131455,0.806325,-0.576681,0.131455,0.806325,-0.576681, + 0.131455,0.806325,-0.576681,0.131455,0.806325,-0.576681,-0.453484,-0.471941,-0.756059,-0.453484,-0.471941,-0.756059, + -0.453484,-0.471941,-0.756059,-0.453484,-0.471941,-0.756059,-0.134749,-0.738724,0.660401,-0.134749,-0.738724,0.660401, + -0.134749,-0.738724,0.660401,-0.134749,-0.738724,0.660401,0.433384,0.381180,0.816627,0.433384,0.381180,0.816627, + 0.433384,0.381180,0.816627,0.433384,0.381180,0.816627,0.176516,0.786704,-0.591556,0.176516,0.786704,-0.591556, + 0.176516,0.786704,-0.591556,0.176516,0.786704,-0.591556,-0.407678,-0.492455,-0.768951,-0.407678,-0.492455,-0.768951, + -0.407678,-0.492455,-0.768951,-0.407678,-0.492455,-0.768951,-0.109615,-0.749697,0.652639,-0.109615,-0.749697,0.652639, + -0.109615,-0.749697,0.652639,-0.109615,-0.749697,0.652639,0.391376,0.400986,0.828273,0.391376,0.400986,0.828273, + 0.391376,0.400986,0.828273,0.391376,0.400986,0.828273,0.147147,0.799693,-0.582099,0.147147,0.799693,-0.582099, + 0.147147,0.799693,-0.582099,0.147147,0.799693,-0.582099,-0.189950,0.161035,-0.968497,-0.189950,0.161035,-0.968497, + -0.189950,0.161035,-0.968497,-0.189950,0.161035,-0.968497,0.123537,-0.037528,0.991630,0.123537,-0.037528,0.991630, + 0.123537,-0.037528,0.991630,0.123537,-0.037528,0.991630,0.991806,0.009618,-0.127388,0.991806,0.009618,-0.127388, + 0.991806,0.009618,-0.127388,0.991806,0.009618,-0.127388,-0.283608,0.957575,-0.051161,-0.283608,0.957575,-0.051161, + -0.283608,0.957575,-0.051161,-0.283608,0.957575,-0.051161,-0.964967,0.244445,0.095317,-0.964967,0.244445,0.095317, + -0.964967,0.244445,0.095317,-0.964967,0.244445,0.095317,0.258571,-0.964338,0.056503,0.258571,-0.964338,0.056503, + 0.258571,-0.964338,0.056503,0.258571,-0.964338,0.056503,-0.178171,0.204189,-0.962581,-0.178171,0.204189,-0.962581, + -0.178171,0.204189,-0.962581,-0.178171,0.204189,-0.962581,0.122669,-0.071412,0.989875,0.122669,-0.071412,0.989875, + 0.122669,-0.071412,0.989875,0.122669,-0.071412,0.989875,0.987395,0.062374,-0.145468,0.987395,0.062374,-0.145468, + 0.987395,0.062374,-0.145468,0.987395,0.062374,-0.145468,-0.175227,0.972051,0.156243,-0.175227,0.972051,0.156243, + -0.175227,0.972051,0.156243,-0.175227,0.972051,0.156243,-0.979225,0.116569,0.165921,-0.979225,0.116569,0.165921, + -0.979225,0.116569,0.165921,-0.979225,0.116569,0.165921,0.120507,-0.981584,-0.148227,0.120507,-0.981584,-0.148227, + 0.120507,-0.981584,-0.148227,0.120507,-0.981584,-0.148227,0.988438,0.072380,-0.133232,0.988438,0.072380,-0.133232, + 0.988438,0.072380,-0.133232,0.988438,0.072380,-0.133232,-0.213755,0.975798,0.046121,-0.213755,0.975798,0.046121, + -0.213755,0.975798,0.046121,-0.213755,0.975798,0.046121,-0.990413,0.044534,0.130763,-0.990413,0.044534,0.130763, + -0.990413,0.044534,0.130763,-0.990413,0.044534,0.130763,0.195505,-0.979812,-0.041783,0.195505,-0.979812,-0.041783, + 0.195505,-0.979812,-0.041783,0.195505,-0.979812,-0.041783,0.947539,0.300222,-0.109708,0.947539,0.300222,-0.109708, + 0.947539,0.300222,-0.109708,0.947539,0.300222,-0.109708,-0.165973,0.983109,0.077129,-0.165973,0.983109,0.077129, + -0.165973,0.983109,0.077129,-0.165973,0.983109,0.077129,-0.981070,-0.151073,0.121159,-0.981070,-0.151073,0.121159, + -0.981070,-0.151073,0.121159,-0.981070,-0.151073,0.121159,0.075126,-0.995067,-0.064785,0.075126,-0.995067,-0.064785, + 0.075126,-0.995067,-0.064785,0.075126,-0.995067,-0.064785,0.960680,0.181770,-0.209890,0.960680,0.181770,-0.209890, + 0.960680,0.181770,-0.209890,0.960680,0.181770,-0.209890,0.127367,-0.016877,0.991712,0.127367,-0.016877,0.991712, + 0.127367,-0.016877,0.991712,0.127367,-0.016877,0.991712,-0.931536,-0.179032,0.316524,-0.931536,-0.179032,0.316524, + -0.931536,-0.179032,0.316524,-0.931536,-0.179032,0.316524,-0.218343,-0.001122,-0.975872,-0.218343,-0.001122,-0.975872, + -0.218343,-0.001122,-0.975872,-0.218343,-0.001122,-0.975872,0.961018,0.179081,-0.210653,0.961018,0.179081,-0.210653, + 0.961018,0.179081,-0.210653,0.961018,0.179081,-0.210653,0.122759,0.002601,0.992433,0.122759,0.002601,0.992433, + 0.122759,0.002601,0.992433,0.122759,0.002601,0.992433,-0.931959,-0.173870,0.318153,-0.931959,-0.173870,0.318153, + -0.931959,-0.173870,0.318153,-0.931959,-0.173870,0.318153,-0.211867,-0.020953,-0.977074,-0.211867,-0.020953,-0.977074, + -0.211867,-0.020953,-0.977074,-0.211867,-0.020953,-0.977074,0.961214,0.178032,-0.210646,0.961214,0.178032,-0.210646, + 0.961214,0.178032,-0.210646,0.961214,0.178032,-0.210646,0.123259,0.001882,0.992373,0.123259,0.001882,0.992373, + 0.123259,0.001882,0.992373,0.123259,0.001882,0.992373,-0.932274,-0.172688,0.317874,-0.932274,-0.172688,0.317874, + -0.932274,-0.172688,0.317874,-0.932274,-0.172688,0.317874,-0.213558,-0.019977,-0.976726,-0.213558,-0.019977,-0.976726, + -0.213558,-0.019977,-0.976726,-0.213558,-0.019977,-0.976726,0.961367,0.176483,-0.211250,0.961367,0.176483,-0.211250, + 0.961367,0.176483,-0.211250,0.961367,0.176483,-0.211250,0.122093,0.010424,0.992464,0.122093,0.010424,0.992464, + 0.122093,0.010424,0.992464,0.122093,0.010424,0.992464,-0.932472,-0.169971,0.318758,-0.932472,-0.169971,0.318758, + -0.932472,-0.169971,0.318758,-0.932472,-0.169971,0.318758,-0.213360,-0.028595,-0.976555,-0.213360,-0.028595,-0.976555, + -0.213360,-0.028595,-0.976555,-0.213360,-0.028595,-0.976555,0.960714,0.180349,-0.210957,0.960714,0.180349,-0.210957, + 0.960714,0.180349,-0.210957,0.960714,0.180349,-0.210957,0.131793,-0.040294,0.990458,0.131793,-0.040294,0.990458, + 0.131793,-0.040294,0.990458,0.131793,-0.040294,0.990458,-0.931002,-0.179462,0.317848,-0.931002,-0.179462,0.317848, + -0.931002,-0.179462,0.317848,-0.931002,-0.179462,0.317848,-0.222366,0.021925,-0.974717,-0.222366,0.021925,-0.974717, + -0.222366,0.021925,-0.974717,-0.222366,0.021925,-0.974717,0.950646,0.231046,-0.207097,0.950646,0.231046,-0.207097, + 0.950646,0.231046,-0.207097,0.950646,0.231046,-0.207097,0.126500,-0.012329,0.991890,0.126500,-0.012329,0.991890, + 0.126500,-0.012329,0.991890,0.126500,-0.012329,0.991890,-0.922233,-0.226329,0.313466,-0.922233,-0.226329,0.313466, + -0.922233,-0.226329,0.313466,-0.922233,-0.226329,0.313466,-0.216487,-0.010997,-0.976224,-0.216487,-0.010997,-0.976224, + -0.216487,-0.010997,-0.976224,-0.216487,-0.010997,-0.976224,0.597104,-0.172399,-0.783419,0.597104,-0.172399,-0.783419, + 0.597104,-0.172399,-0.783419,0.597104,-0.172399,-0.783419,-0.587361,0.032894,0.808657,-0.587361,0.032894,0.808657, + -0.587361,0.032894,0.808657,-0.587361,0.032894,0.808657,-0.755050,0.329340,-0.566952,-0.755050,0.329340,-0.566952, + -0.755050,0.329340,-0.566952,-0.755050,0.329340,-0.566952,0.000537,-0.993964,-0.109703,0.000537,-0.993964,-0.109703, + 0.000537,-0.993964,-0.109703,0.000537,-0.993964,-0.109703,0.680440,-0.557981,0.475036,0.680440,-0.557981,0.475036, + 0.680440,-0.557981,0.475036,0.680440,-0.557981,0.475036,0.019219,0.991692,0.127188,0.019219,0.991692,0.127188, + 0.019219,0.991692,0.127188,0.019219,0.991692,0.127188,0.572813,-0.209297,-0.792515,0.572813,-0.209297,-0.792515, + 0.572813,-0.209297,-0.792515,0.572813,-0.209297,-0.792515,-0.576630,0.064551,0.814452,-0.576630,0.064551,0.814452, + -0.576630,0.064551,0.814452,-0.576630,0.064551,0.814452,-0.756614,0.279027,-0.591336,-0.756614,0.279027,-0.591336, + -0.756614,0.279027,-0.591336,-0.756614,0.279027,-0.591336,-0.196257,-0.980405,0.017023,-0.196257,-0.980405,0.017023, + -0.196257,-0.980405,0.017023,-0.196257,-0.980405,0.017023,0.691383,-0.445554,0.568746,0.691383,-0.445554,0.568746, + 0.691383,-0.445554,0.568746,0.691383,-0.445554,0.568746,0.239852,0.970661,0.016950,0.239852,0.970661,0.016950, + 0.239852,0.970661,0.016950,0.239852,0.970661,0.016950,-0.766296,0.269407,-0.583275,-0.766296,0.269407,-0.583275, + -0.766296,0.269407,-0.583275,-0.766296,0.269407,-0.583275,-0.110499,-0.991983,-0.061317,-0.110499,-0.991983,-0.061317, + -0.110499,-0.991983,-0.061317,-0.110499,-0.991983,-0.061317,0.737611,-0.379960,0.558176,0.737611,-0.379960,0.558176, + 0.737611,-0.379960,0.558176,0.737611,-0.379960,0.558176,0.124436,0.989445,0.074260,0.124436,0.989445,0.074260, + 0.124436,0.989445,0.074260,0.124436,0.989445,0.074260,-0.805893,0.040242,-0.590692,-0.805893,0.040242,-0.590692, + -0.805893,0.040242,-0.590692,-0.805893,0.040242,-0.590692,-0.167300,-0.984204,-0.057905,-0.167300,-0.984204,-0.057905, + -0.167300,-0.984204,-0.057905,-0.167300,-0.984204,-0.057905,0.787509,-0.192338,0.585521,0.787509,-0.192338,0.585521, + 0.787509,-0.192338,0.585521,0.787509,-0.192338,0.585521,0.239113,0.964431,0.112682,0.239113,0.964431,0.112682, + 0.239113,0.964431,0.112682,0.239113,0.964431,0.112682,-0.734649,0.160545,-0.659178,-0.734649,0.160545,-0.659178, + -0.734649,0.160545,-0.659178,-0.734649,0.160545,-0.659178,-0.596114,0.014719,0.802765,-0.596114,0.014719,0.802765, + -0.596114,0.014719,0.802765,-0.596114,0.014719,0.802765,0.656600,-0.158072,0.737489,0.656600,-0.158072,0.737489, + 0.656600,-0.158072,0.737489,0.656600,-0.158072,0.737489,0.667917,-0.029004,-0.743670,0.667917,-0.029004,-0.743670, + 0.667917,-0.029004,-0.743670,0.667917,-0.029004,-0.743670,-0.733823,0.163222,-0.659441,-0.733823,0.163222,-0.659441, + -0.733823,0.163222,-0.659441,-0.733823,0.163222,-0.659441,-0.597943,-0.005185,0.801522,-0.597943,-0.005185,0.801522, + -0.597943,-0.005185,0.801522,-0.597943,-0.005185,0.801522,0.654738,-0.163137,0.738042,0.654738,-0.163137,0.738042, + 0.654738,-0.163137,0.738042,0.654738,-0.163137,0.738042,0.668545,-0.008121,-0.743627,0.668545,-0.008121,-0.743627, + 0.668545,-0.008121,-0.743627,0.668545,-0.008121,-0.743627,-0.733694,0.164280,-0.659321,-0.733694,0.164280,-0.659321, + -0.733694,0.164280,-0.659321,-0.733694,0.164280,-0.659321,-0.598132,-0.004338,0.801386,-0.598132,-0.004338,0.801386, + -0.598132,-0.004338,0.801386,-0.598132,-0.004338,0.801386,0.654838,-0.164342,0.737685,0.654838,-0.164342,0.737685, + 0.654838,-0.164342,0.737685,0.654838,-0.164342,0.737685,0.669498,-0.009622,-0.742752,0.669498,-0.009622,-0.742752, + 0.669498,-0.009622,-0.742752,0.669498,-0.009622,-0.742752,-0.733114,0.165812,-0.659584,-0.733114,0.165812,-0.659584, + -0.733114,0.165812,-0.659584,-0.733114,0.165812,-0.659584,-0.599520,-0.012772,0.800258,-0.599520,-0.012772,0.800258, + -0.599520,-0.012772,0.800258,-0.599520,-0.012772,0.800258,0.653817,-0.167007,0.737992,0.653817,-0.167007,0.737992, + 0.653817,-0.167007,0.737992,0.653817,-0.167007,0.737992,0.671586,-0.001455,-0.740925,0.671586,-0.001455,-0.740925, + 0.671586,-0.001455,-0.740925,0.671586,-0.001455,-0.740925,-0.733755,0.161945,-0.659831,-0.733755,0.161945,-0.659831, + -0.733755,0.161945,-0.659831,-0.733755,0.161945,-0.659831,-0.592824,0.038298,0.804421,-0.592824,0.038298,0.804421, + -0.592824,0.038298,0.804421,-0.592824,0.038298,0.804421,0.655625,-0.157540,0.738469,0.655625,-0.157540,0.738469, + 0.655625,-0.157540,0.738469,0.655625,-0.157540,0.738469,0.664442,-0.052099,-0.745521,0.664442,-0.052099,-0.745521, + 0.664442,-0.052099,-0.745521,0.664442,-0.052099,-0.745521,-0.741090,0.110689,-0.662219,-0.741090,0.110689,-0.662219, + -0.741090,0.110689,-0.662219,-0.741090,0.110689,-0.662219,-0.596730,0.010144,0.802378,-0.596730,0.010144,0.802378, + -0.596730,0.010144,0.802378,-0.596730,0.010144,0.802378,0.663250,-0.110299,0.740226,0.663250,-0.110299,0.740226, + 0.663250,-0.110299,0.740226,0.663250,-0.110299,0.740226,0.669235,-0.019079,-0.742806,0.669235,-0.019079,-0.742806, + 0.669235,-0.019079,-0.742806,0.669235,-0.019079,-0.742806,0.408470,0.163670,-0.897978,0.408470,0.163670,-0.897978, + 0.408470,0.163670,-0.897978,0.408470,0.163670,-0.897978,-0.271507,-0.050980,0.961085,-0.271507,-0.050980,0.961085, + -0.271507,-0.050980,0.961085,-0.271507,-0.050980,0.961085,-0.198255,-0.052905,0.978722,-0.198255,-0.052905,0.978722, + -0.198255,-0.052905,0.978722,-0.198255,-0.052905,0.978722,-0.146028,-0.027819,0.988889,-0.146028,-0.027819,0.988889, + -0.146028,-0.027819,0.988889,-0.146028,-0.027819,0.988889,0.588273,-0.803780,0.088723,0.588273,-0.803780,0.088723, + 0.588273,-0.803780,0.088723,0.588273,-0.803780,0.088723,0.847367,0.458554,0.267765,0.847367,0.458554,0.267765, + 0.847367,0.458554,0.267765,0.847367,0.458554,0.267765,0.571733,0.353041,0.740597,0.571733,0.353041,0.740597, + 0.571733,0.353041,0.740597,0.571733,0.353041,0.740597,-0.273606,-0.085080,0.958072,-0.273606,-0.085080,0.958072, + -0.273606,-0.085080,0.958072,-0.273606,-0.085080,0.958072,-0.447152,0.893379,-0.043925,-0.447152,0.893379,-0.043925, + -0.447152,0.893379,-0.043925,-0.447152,0.893379,-0.043925,-0.866615,-0.406441,-0.289456,-0.866615,-0.406441,-0.289456, + -0.866615,-0.406441,-0.289456,-0.866615,-0.406441,-0.289456,0.874464,0.464028,-0.141390,0.874464,0.464028,-0.141390, + 0.874464,0.464028,-0.141390,0.881871,0.469152,-0.046896,0.881871,0.469152,-0.046896,0.881871,0.469152,-0.046896, + 0.363488,-0.930741,0.039973,0.363488,-0.930741,0.039973,0.363488,-0.930741,0.039973,0.363488,-0.930741,0.039973, + 0.834526,0.493942,0.244105,0.834526,0.493942,0.244105,0.834526,0.493942,0.244105,0.834526,0.493942,0.244105, + -0.255325,0.966742,-0.014810,-0.255325,0.966742,-0.014810,-0.255325,0.966742,-0.014810,-0.255325,0.966742,-0.014810, + -0.844220,-0.477403,-0.243676,-0.844220,-0.477403,-0.243676,-0.844220,-0.477403,-0.243676,-0.844220,-0.477403,-0.243676, + 0.533664,-0.842451,0.074020,0.533664,-0.842451,0.074020,0.533664,-0.842451,0.074020,0.533664,-0.842451,0.074020, + 0.845725,0.452439,0.282928,0.845725,0.452439,0.282928,0.845725,0.452439,0.282928,0.845725,0.452439,0.282928, + -0.449348,0.892127,-0.046870,-0.449348,0.892127,-0.046870,-0.449348,0.892127,-0.046870,-0.449348,0.892127,-0.046870, + -0.884700,-0.368567,-0.285420,-0.884700,-0.368567,-0.285420,-0.884700,-0.368567,-0.285420,-0.884700,-0.368567,-0.285420, + -0.827687,-0.462762,-0.317467,-0.827687,-0.462762,-0.317467,-0.827687,-0.462762,-0.317467,-0.827687,-0.462762,-0.317467, + -0.875939,-0.392197,-0.280914,-0.875939,-0.392197,-0.280914,-0.875939,-0.392197,-0.280914,-0.875939,-0.392197,-0.280914, + -0.448352,0.891806,-0.060513,-0.448352,0.891806,-0.060513,-0.448352,0.891806,-0.060513,-0.448352,0.891806,-0.060513, + 0.850101,0.457181,0.261371,0.850101,0.457181,0.261371,0.850101,0.457181,0.261371,0.850101,0.457181,0.261371, + -0.835788,-0.460671,-0.298730,-0.835788,-0.460671,-0.298730,-0.835788,-0.460671,-0.298730,-0.835788,-0.460671,-0.298730, + 0.002881,0.039517,0.999215,0.002881,0.039517,0.999215,0.002881,0.039517,0.999215,0.002881,0.039517,0.999215, + 0.561268,-0.822133,0.095268,0.561268,-0.822133,0.095268,0.561268,-0.822133,0.095268,0.561268,-0.822133,0.095268, + -0.169679,0.016940,0.985354,-0.169679,0.016940,0.985354,-0.169679,0.016940,0.985354,-0.169679,0.016940,0.985354, + 0.588056,-0.803789,0.090078,0.588056,-0.803789,0.090078,0.588056,-0.803789,0.090078,0.588056,-0.803789,0.090078, + -0.158846,-0.032304,0.986775,-0.158846,-0.032304,0.986775,-0.158846,-0.032304,0.986775,-0.158846,-0.032304,0.986775, + -0.151741,-0.017122,0.988272,-0.151741,-0.017122,0.988272,-0.151741,-0.017122,0.988272,-0.151741,-0.017122,0.988272, + -0.867723,-0.406967,-0.285367,-0.867723,-0.406967,-0.285367,-0.867723,-0.406967,-0.285367,-0.867723,-0.406967,-0.285367, + -0.444031,0.894111,-0.058322,-0.444031,0.894111,-0.058322,-0.444031,0.894111,-0.058322,-0.444031,0.894111,-0.058322, + 0.847822,0.458752,0.265979,0.847822,0.458752,0.265979,0.847822,0.458752,0.265979,0.847822,0.458752,0.265979, + 0.585055,-0.804456,0.102767,0.585055,-0.804456,0.102767,0.585055,-0.804456,0.102767,0.585055,-0.804456,0.102767, + 0.559741,-0.823155,0.095422,0.559741,-0.823155,0.095422,0.559741,-0.823155,0.095422,0.559741,-0.823155,0.095422, + 0.847906,0.458775,0.265669,0.847906,0.458775,0.265669,0.847906,0.458775,0.265669,0.847906,0.458775,0.265669, + -0.380232,0.923995,-0.040699,-0.380232,0.923995,-0.040699,-0.380232,0.923995,-0.040699,-0.380232,0.923995,-0.040699, + -0.870954,-0.407860,-0.274026,-0.870954,-0.407860,-0.274026,-0.870954,-0.407860,-0.274026,-0.870954,-0.407860,-0.274026, + -0.119059,-0.001564,0.992886,-0.119059,-0.001564,0.992886,-0.119059,-0.001564,0.992886,-0.119059,-0.001564,0.992886, + -0.858745,-0.403983,-0.315206,-0.858745,-0.403983,-0.315206,-0.858745,-0.403983,-0.315206,-0.858745,-0.403983,-0.315206, + -0.401306,0.915373,-0.032338,-0.401306,0.915373,-0.032338,-0.401306,0.915373,-0.032338,-0.401306,0.915373,-0.032338, + 0.844965,0.457845,0.276429,0.844965,0.457845,0.276429,0.844965,0.457845,0.276429,0.844965,0.457845,0.276429, + 0.526117,-0.847232,0.073474,0.526117,-0.847232,0.073474,0.526117,-0.847232,0.073474,0.526117,-0.847232,0.073474, + 0.847749,0.458670,0.266353,0.847749,0.458670,0.266353,0.847749,0.458670,0.266353,0.847749,0.458670,0.266353, + -0.446961,0.893398,-0.045451,-0.446961,0.893398,-0.045451,-0.446961,0.893398,-0.045451,-0.446961,0.893398,-0.045451, + -0.867658,-0.406782,-0.285829,-0.867658,-0.406782,-0.285829,-0.867658,-0.406782,-0.285829,-0.867658,-0.406782,-0.285829, + 0.404430,0.170159,-0.898600,0.404430,0.170159,-0.898600,0.404430,0.170159,-0.898600,0.404430,0.170159,-0.898600, + -0.272066,-0.051665,0.960891,-0.272066,-0.051665,0.960891,-0.272066,-0.051665,0.960891,-0.272066,-0.051665,0.960891, + -0.147641,-0.023434,0.988763,-0.147641,-0.023434,0.988763,-0.147641,-0.023434,0.988763,-0.147641,-0.023434,0.988763, + -0.164843,-0.032543,0.985783,-0.164843,-0.032543,0.985783,-0.164843,-0.032543,0.985783,-0.164843,-0.032543,0.985783, + 0.599748,-0.794559,0.094753,0.599748,-0.794559,0.094753,0.599748,-0.794559,0.094753,0.599748,-0.794559,0.094753, + 0.828924,0.493518,0.263296,0.828924,0.493518,0.263296,0.828924,0.493518,0.263296,0.828924,0.493518,0.263296, + 0.555700,0.382136,0.738357,0.555700,0.382136,0.738357,0.555700,0.382136,0.738357,0.555700,0.382136,0.738357, + -0.272847,-0.085851,0.958219,-0.272847,-0.085851,0.958219,-0.272847,-0.085851,0.958219,-0.272847,-0.085851,0.958219, + -0.473949,0.878882,-0.054216,-0.473949,0.878882,-0.054216,-0.473949,0.878882,-0.054216,-0.473949,0.878882,-0.054216, + -0.848295,-0.441854,-0.291823,-0.848295,-0.441854,-0.291823,-0.848295,-0.441854,-0.291823,-0.848295,-0.441854,-0.291823, + 0.856446,0.495749,-0.143991,0.856446,0.495749,-0.143991,0.856446,0.495749,-0.143991,0.863382,0.502115,-0.049525, + 0.863382,0.502115,-0.049525,0.863382,0.502115,-0.049525,0.398756,-0.915676,0.050322,0.398756,-0.915676,0.050322, + 0.398756,-0.915676,0.050322,0.398756,-0.915676,0.050322,0.814303,0.528000,0.241095,0.814303,0.528000,0.241095, + 0.814303,0.528000,0.241095,0.814303,0.528000,0.241095,-0.292127,0.956046,-0.025264,-0.292127,0.956046,-0.025264, + -0.292127,0.956046,-0.025264,-0.292127,0.956046,-0.025264,-0.824627,-0.511838,-0.240858,-0.824627,-0.511838,-0.240858, + -0.824627,-0.511838,-0.240858,-0.824627,-0.511838,-0.240858,0.565337,-0.820583,0.083883,0.565337,-0.820583,0.083883, + 0.565337,-0.820583,0.083883,0.565337,-0.820583,0.083883,0.826975,0.487348,0.280364,0.826975,0.487348,0.280364, + 0.826975,0.487348,0.280364,0.826975,0.487348,0.280364,-0.483055,0.873730,-0.057033,-0.483055,0.873730,-0.057033, + -0.483055,0.873730,-0.057033,-0.483055,0.873730,-0.057033,-0.869124,-0.405066,-0.283804,-0.869124,-0.405066,-0.283804, + -0.869124,-0.405066,-0.283804,-0.869124,-0.405066,-0.283804,-0.808456,-0.497324,-0.314752,-0.808456,-0.497324,-0.314752, + -0.808456,-0.497324,-0.314752,-0.808456,-0.497324,-0.314752,-0.839357,-0.455487,-0.296666,-0.839357,-0.455487,-0.296666, + -0.839357,-0.455487,-0.296666,-0.839357,-0.455487,-0.296666,-0.508314,0.855768,-0.096318,-0.508314,0.855768,-0.096318, + -0.508314,0.855768,-0.096318,-0.508314,0.855768,-0.096318,0.827887,0.495428,0.262971,0.827887,0.495428,0.262971, + 0.827887,0.495428,0.262971,0.827887,0.495428,0.262971,-0.816689,-0.495352,-0.296049,-0.816689,-0.495352,-0.296049, + -0.816689,-0.495352,-0.296049,-0.816689,-0.495352,-0.296049,-0.001457,0.049657,0.998765,-0.001457,0.049657,0.998765, + -0.001457,0.049657,0.998765,-0.001457,0.049657,0.998765,0.648511,-0.747773,0.142370,0.648511,-0.747773,0.142370, + 0.648511,-0.747773,0.142370,0.648511,-0.747773,0.142370,-0.269268,-0.046530,0.961941,-0.269268,-0.046530,0.961941, + -0.269268,-0.046530,0.961941,-0.269268,-0.046530,0.961941,0.618154,-0.779711,0.099677,0.618154,-0.779711,0.099677, + 0.618154,-0.779711,0.099677,0.618154,-0.779711,0.099677,-0.160274,-0.028430,0.986663,-0.160274,-0.028430,0.986663, + -0.160274,-0.028430,0.986663,-0.160274,-0.028430,0.986663,-0.153762,-0.012972,0.988023,-0.153762,-0.012972,0.988023, + -0.153762,-0.012972,0.988023,-0.153762,-0.012972,0.988023,-0.850693,-0.442776,-0.283320,-0.850693,-0.442776,-0.283320, + -0.850693,-0.442776,-0.283320,-0.850693,-0.442776,-0.283320,-0.477787,0.875802,-0.068493,-0.477787,0.875802,-0.068493, + -0.477787,0.875802,-0.068493,-0.477787,0.875802,-0.068493,0.828876,0.493566,0.263358,0.828876,0.493566,0.263358, + 0.828876,0.493566,0.263358,0.828876,0.493566,0.263358,0.615148,-0.780363,0.112366,0.615148,-0.780363,0.112366, + 0.615148,-0.780363,0.112366,0.615148,-0.780363,0.112366,0.615166,-0.780363,0.112268,0.615166,-0.780363,0.112268, + 0.615166,-0.780363,0.112268,0.615166,-0.780363,0.112268,0.828958,0.493593,0.263047,0.828958,0.493593,0.263047, + 0.828958,0.493593,0.263047,0.828958,0.493593,0.263047,-0.477795,0.875803,-0.068425,-0.477795,0.875803,-0.068425, + -0.477795,0.875803,-0.068425,-0.477795,0.875803,-0.068425,-0.850930,-0.442844,-0.282502,-0.850930,-0.442844,-0.282502, + -0.850930,-0.442844,-0.282502,-0.850930,-0.442844,-0.282502,-0.153759,-0.012971,0.988023,-0.153759,-0.012971,0.988023, + -0.153759,-0.012971,0.988023,-0.153759,-0.012971,0.988023,-0.851224,-0.442761,-0.281745,-0.851224,-0.442761,-0.281745, + -0.851224,-0.442761,-0.281745,-0.851224,-0.442761,-0.281745,-0.480488,0.875184,-0.056431,-0.480488,0.875184,-0.056431, + -0.480488,0.875184,-0.056431,-0.480488,0.875184,-0.056431,0.829017,0.493547,0.262950,0.829017,0.493547,0.262950, + 0.829017,0.493547,0.262950,0.829017,0.493547,0.262950,0.617946,-0.779784,0.100400,0.617946,-0.779784,0.100400, + 0.617946,-0.779784,0.100400,0.617946,-0.779784,0.100400,0.828805,0.493485,0.263732,0.828805,0.493485,0.263732, + 0.828805,0.493485,0.263732,0.828805,0.493485,0.263732,-0.480724,0.875106,-0.055622,-0.480724,0.875106,-0.055622, + -0.480724,0.875106,-0.055622,-0.480724,0.875106,-0.055622,-0.850630,-0.442601,-0.283783,-0.850630,-0.442601,-0.283783, + -0.850630,-0.442601,-0.283783,-0.850630,-0.442601,-0.283783,0.389049,0.190742,-0.901254,0.389049,0.190742,-0.901254, + 0.389049,0.190742,-0.901254,0.389049,0.190742,-0.901254,-0.273726,-0.054150,0.960282,-0.273726,-0.054150,0.960282, + -0.273726,-0.054150,0.960282,-0.273726,-0.054150,0.960282,-0.154290,-0.009174,0.987983,-0.154290,-0.009174,0.987983, + -0.154290,-0.009174,0.987983,-0.154290,-0.009174,0.987983,-0.170146,-0.020522,0.985205,-0.170146,-0.020522,0.985205, + -0.170146,-0.020522,0.985205,-0.170146,-0.020522,0.985205,0.695970,-0.706899,0.126173,0.695970,-0.706899,0.126173, + 0.695970,-0.706899,0.126173,0.695970,-0.706899,0.126173,0.755535,0.604894,0.251535,0.755535,0.604894,0.251535, + 0.755535,0.604894,0.251535,0.755535,0.604894,0.251535,0.493699,0.475151,0.728350,0.493699,0.475151,0.728350, + 0.493699,0.475151,0.728350,0.493699,0.475151,0.728350,-0.270071,-0.088211,0.958791,-0.270071,-0.088211,0.958791, + -0.270071,-0.088211,0.958791,-0.270071,-0.088211,0.958791,-0.582536,0.808054,-0.087748,-0.582536,0.808054,-0.087748, + -0.582536,0.808054,-0.087748,-0.582536,0.808054,-0.087748,-0.781081,-0.557145,-0.281960,-0.781081,-0.557145,-0.281960, + -0.781081,-0.557145,-0.281960,-0.781081,-0.557145,-0.281960,0.787028,0.597031,-0.155372,0.787028,0.597031,-0.155372, + 0.787028,0.597031,-0.155372,0.792045,0.607390,-0.061167,0.792045,0.607390,-0.061167,0.792045,0.607390,-0.061167, + 0.512753,-0.854355,0.084633,0.512753,-0.854355,0.084633,0.512753,-0.854355,0.084633,0.512753,-0.854355,0.084633, + 0.736844,0.636436,0.228057,0.736844,0.636436,0.228057,0.736844,0.636436,0.228057,0.736844,0.636436,0.228057, + -0.412475,0.908973,-0.060278,-0.412475,0.908973,-0.060278,-0.412475,0.908973,-0.060278,-0.412475,0.908973,-0.060278, + -0.749157,-0.621753,-0.228447,-0.749157,-0.621753,-0.228447,-0.749157,-0.621753,-0.228447,-0.749157,-0.621753,-0.228447, + 0.665311,-0.737502,0.115982,0.665311,-0.737502,0.115982,0.665311,-0.737502,0.115982,0.665311,-0.737502,0.115982, + 0.754208,0.599100,0.268792,0.754208,0.599100,0.268792,0.754208,0.599100,0.268792,0.754208,0.599100,0.268792, + -0.590862,0.801687,-0.090444,-0.590862,0.801687,-0.090444,-0.590862,0.801687,-0.090444,-0.590862,0.801687,-0.090444, + -0.806563,-0.523100,-0.275359,-0.806563,-0.523100,-0.275359,-0.806563,-0.523100,-0.275359,-0.806563,-0.523100,-0.275359, + -0.734181,-0.607743,-0.302700,-0.734181,-0.607743,-0.302700,-0.734181,-0.607743,-0.302700,-0.734181,-0.607743,-0.302700, + -0.770407,-0.569670,-0.286268,-0.770407,-0.569670,-0.286268,-0.770407,-0.569670,-0.286268,-0.770407,-0.569670,-0.286268, + -0.613159,0.779314,-0.129249,-0.613159,0.779314,-0.129249,-0.613159,0.779314,-0.129249,-0.613159,0.779314,-0.129249, + 0.754263,0.606645,0.251136,0.754263,0.606645,0.251136,0.754263,0.606645,0.251136,0.754263,0.606645,0.251136, + -0.742802,-0.606231,-0.284127,-0.742802,-0.606231,-0.284127,-0.742802,-0.606231,-0.284127,-0.742802,-0.606231,-0.284127, + -0.018851,0.082460,0.996416,-0.018851,0.082460,0.996416,-0.018851,0.082460,0.996416,-0.018851,0.082460,0.996416, + 0.737772,-0.652648,0.172462,0.737772,-0.652648,0.172462,0.737772,-0.652648,0.172462,0.737772,-0.652648,0.172462, + -0.271629,-0.048660,0.961171,-0.271629,-0.048660,0.961171,-0.271629,-0.048660,0.961171,-0.271629,-0.048660,0.961171, + 0.712261,-0.689639,0.130702,0.712261,-0.689639,0.130702,0.712261,-0.689639,0.130702,0.712261,-0.689639,0.130702, + -0.166147,-0.015826,0.985974,-0.166147,-0.015826,0.985974,-0.166147,-0.015826,0.985974,-0.166147,-0.015826,0.985974, + -0.161697,0.000378,0.986840,-0.161697,0.000378,0.986840,-0.161697,0.000378,0.986840,-0.161697,0.000378,0.986840, + -0.783430,-0.558090,-0.273445,-0.783430,-0.558090,-0.273445,-0.783430,-0.558090,-0.273445,-0.783430,-0.558090,-0.273445, + -0.585783,0.804032,-0.101934,-0.585783,0.804032,-0.101934,-0.585783,0.804032,-0.101934,-0.585783,0.804032,-0.101934, + 0.755475,0.604945,0.251593,0.755475,0.604945,0.251593,0.755475,0.604945,0.251593,0.755475,0.604945,0.251593, + 0.709220,-0.690252,0.143384,0.709220,-0.690252,0.143384,0.709220,-0.690252,0.143384,0.709220,-0.690252,0.143384, + 0.709238,-0.690254,0.143287,0.709238,-0.690254,0.143287,0.709238,-0.690254,0.143287,0.709238,-0.690254,0.143287, + 0.755560,0.604968,0.251282,0.755560,0.604968,0.251282,0.755560,0.604968,0.251282,0.755560,0.604968,0.251282, + -0.585803,0.804026,-0.101867,-0.585803,0.804026,-0.101867,-0.585803,0.804026,-0.101867,-0.585803,0.804026,-0.101867, + -0.783668,-0.558156,-0.272628,-0.783668,-0.558156,-0.272628,-0.783668,-0.558156,-0.272628,-0.783668,-0.558156,-0.272628, + -0.161695,0.000379,0.986841,-0.161695,0.000379,0.986841,-0.161695,0.000379,0.986841,-0.161695,0.000379,0.986841, + -0.783978,-0.558087,-0.271877,-0.783978,-0.558087,-0.271877,-0.783978,-0.558087,-0.271877,-0.783978,-0.558087,-0.271877, + -0.588510,0.803479,-0.089874,-0.588510,0.803479,-0.089874,-0.588510,0.803479,-0.089874,-0.588510,0.803479,-0.089874, + 0.755623,0.604929,0.251186,0.755623,0.604929,0.251186,0.755623,0.604929,0.251186,0.755623,0.604929,0.251186, + 0.712047,-0.689722,0.131425,0.712047,-0.689722,0.131425,0.712047,-0.689722,0.131425,0.712047,-0.689722,0.131425, + 0.755417,0.604861,0.251970,0.755417,0.604861,0.251970,0.755417,0.604861,0.251970,0.755417,0.604861,0.251970, + -0.588738,0.803403,-0.089063,-0.588738,0.803403,-0.089063,-0.588738,0.803403,-0.089063,-0.588738,0.803403,-0.089063, + -0.783386,-0.557922,-0.273915,-0.783386,-0.557922,-0.273915,-0.783386,-0.557922,-0.273915,-0.783386,-0.557922,-0.273915, + 0.106797,-0.055971,-0.992704,0.106797,-0.055971,-0.992704,0.106797,-0.055971,-0.992704,0.106797,-0.055971,-0.992704, + -0.236225,-0.078576,0.968516,-0.236225,-0.078576,0.968516,-0.236225,-0.078576,0.968516,-0.236225,-0.078576,0.968516, + -0.353766,-0.118373,0.927813,-0.353766,-0.118373,0.927813,-0.353766,-0.118373,0.927813,-0.353766,-0.118373,0.927813, + -0.338610,-0.107868,0.934723,-0.338610,-0.107868,0.934723,-0.338610,-0.107868,0.934723,-0.338610,-0.107868,0.934723, + -0.667465,0.732215,-0.135471,-0.667465,0.732215,-0.135471,-0.667465,0.732215,-0.135471,-0.667465,0.732215,-0.135471, + -0.781213,-0.578179,-0.235407,-0.781213,-0.578179,-0.235407,-0.781213,-0.578179,-0.235407,-0.781213,-0.578179,-0.235407, + -0.789010,-0.523779,0.321121,-0.789010,-0.523779,0.321121,-0.789010,-0.523779,0.321121,-0.789010,-0.523779,0.321121, + -0.238667,-0.044405,0.970086,-0.238667,-0.044405,0.970086,-0.238667,-0.044405,0.970086,-0.238667,-0.044405,0.970086, + 0.549851,-0.829341,0.099285,0.549851,-0.829341,0.099285,0.549851,-0.829341,0.099285,0.549851,-0.829341,0.099285, + 0.818452,0.532757,0.215189,0.818452,0.532757,0.215189,0.818452,0.532757,0.215189,0.818452,0.532757,0.215189, + -0.607627,-0.520045,-0.600285,-0.607627,-0.520045,-0.600285,-0.607627,-0.520045,-0.600285,-0.658528,-0.541139,-0.522981, + -0.658528,-0.541139,-0.522981,-0.658528,-0.541139,-0.522981,-0.487629,0.870881,-0.061517,-0.487629,0.870881,-0.061517, + -0.487629,0.870881,-0.061517,-0.487629,0.870881,-0.061517,-0.753361,-0.607909,-0.250785,-0.753361,-0.607909,-0.250785, + -0.753361,-0.607909,-0.250785,-0.753361,-0.607909,-0.250785,0.388414,-0.921118,0.025995,0.388414,-0.921118,0.025995, + 0.388414,-0.921118,0.025995,0.388414,-0.921118,0.025995,0.764267,0.592570,0.254473,0.764267,0.592570,0.254473, + 0.764267,0.592570,0.254473,0.764267,0.592570,0.254473,-0.635770,0.761677,-0.125079,-0.635770,0.761677,-0.125079, + -0.635770,0.761677,-0.125079,-0.635770,0.761677,-0.125079,-0.788577,-0.574579,-0.219100,-0.788577,-0.574579,-0.219100, + -0.788577,-0.574579,-0.219100,-0.788577,-0.574579,-0.219100,0.558425,-0.823272,0.101907,0.558425,-0.823272,0.101907, + 0.558425,-0.823272,0.101907,0.558425,-0.823272,0.101907,0.837343,0.496541,0.228701,0.837343,0.496541,0.228701, + 0.837343,0.496541,0.228701,0.837343,0.496541,0.228701,0.787907,0.588506,0.181284,0.787907,0.588506,0.181284, + 0.787907,0.588506,0.181284,0.787907,0.588506,0.181284,0.811295,0.546399,0.207961,0.811295,0.546399,0.207961, + 0.811295,0.546399,0.207961,0.811295,0.546399,0.207961,0.596970,-0.798017,0.082437,0.596970,-0.798017,0.082437, + 0.596970,-0.798017,0.082437,0.596970,-0.798017,0.082437,-0.779910,-0.579950,-0.235367,-0.779910,-0.579950,-0.235367, + -0.779910,-0.579950,-0.235367,-0.779910,-0.579950,-0.235367,0.786234,0.584224,0.201292,0.786234,0.584224,0.201292, + 0.786234,0.584224,0.201292,0.786234,0.584224,0.201292,-0.475701,-0.201029,0.856327,-0.475701,-0.201029,0.856327, + -0.475701,-0.201029,0.856327,-0.475701,-0.201029,0.856327,-0.726679,0.675796,-0.123443,-0.726679,0.675796,-0.123443, + -0.726679,0.675796,-0.123443,-0.726679,0.675796,-0.123443,-0.238487,-0.083975,0.967508,-0.238487,-0.083975,0.967508, + -0.238487,-0.083975,0.967508,-0.238487,-0.083975,0.967508,-0.683858,0.715686,-0.141888,-0.683858,0.715686,-0.141888, + -0.683858,0.715686,-0.141888,-0.683858,0.715686,-0.141888,-0.342458,-0.112344,0.932792,-0.342458,-0.112344,0.932792, + -0.342458,-0.112344,0.932792,-0.342458,-0.112344,0.932792,-0.346763,-0.128198,0.929151,-0.346763,-0.128198,0.929151, + -0.346763,-0.128198,0.929151,-0.346763,-0.128198,0.929151,0.816290,0.532526,0.223802,0.816290,0.532526,0.223802, + 0.816290,0.532526,0.223802,0.816290,0.532526,0.223802,0.559681,-0.823893,0.089204,0.559681,-0.823893,0.089204, + 0.559681,-0.823893,0.089204,0.559681,-0.823893,0.089204,-0.781191,-0.578237,-0.235335,-0.781191,-0.578237,-0.235335, + -0.781191,-0.578237,-0.235335,-0.781191,-0.578237,-0.235335,-0.687480,0.714583,-0.129393,-0.687480,0.714583,-0.129393, + -0.687480,0.714583,-0.129393,-0.687480,0.714583,-0.129393,-0.687454,0.714591,-0.129488,-0.687454,0.714591,-0.129488, + -0.687454,0.714591,-0.129488,-0.687454,0.714591,-0.129488,-0.781110,-0.578220,-0.235646,-0.781110,-0.578220,-0.235646, + -0.781110,-0.578220,-0.235646,-0.781110,-0.578220,-0.235646,0.559659,-0.823901,0.089267,0.559659,-0.823901,0.089267, + 0.559659,-0.823901,0.089267,0.559659,-0.823901,0.089267,0.816089,0.532484,0.224631,0.816089,0.532484,0.224631, + 0.816089,0.532484,0.224631,0.816089,0.532484,0.224631,-0.346760,-0.128199,0.929151,-0.346760,-0.128199,0.929151, + -0.346760,-0.128199,0.929151,-0.346760,-0.128199,0.929151,0.815989,0.532305,0.225420,0.815989,0.532305,0.225420, + 0.815989,0.532305,0.225420,0.815989,0.532305,0.225420,0.556085,-0.824966,0.101000,0.556085,-0.824966,0.101000, + 0.556085,-0.824966,0.101000,0.556085,-0.824966,0.101000,-0.781124,-0.578156,-0.235755,-0.781124,-0.578156,-0.235755, + -0.781124,-0.578156,-0.235755,-0.781124,-0.578156,-0.235755,-0.684040,0.715657,-0.141156,-0.684040,0.715657,-0.141156, + -0.684040,0.715657,-0.141156,-0.684040,0.715657,-0.141156,-0.781319,-0.578212,-0.234969,-0.781319,-0.578212,-0.234969, + -0.781319,-0.578212,-0.234969,-0.781319,-0.578212,-0.234969,0.555900,-0.824989,0.101825,0.555900,-0.824989,0.101825, + 0.555900,-0.824989,0.101825,0.555900,-0.824989,0.101825,0.816481,0.532421,0.223353,0.816481,0.532421,0.223353, + 0.816481,0.532421,0.223353,0.816481,0.532421,0.223353,0.178867,-0.111879,-0.977491,0.178867,-0.111879,-0.977491, + 0.178867,-0.111879,-0.977491,0.178867,-0.111879,-0.977491,-0.232845,-0.068333,0.970110,-0.232845,-0.068333,0.970110, + -0.232845,-0.068333,0.970110,-0.232845,-0.068333,0.970110,-0.317586,-0.161088,0.934446,-0.317586,-0.161088,0.934446, + -0.317586,-0.161088,0.934446,-0.317586,-0.161088,0.934446,-0.309154,-0.144182,0.940019,-0.309154,-0.144182,0.940019, + -0.309154,-0.144182,0.940019,-0.309154,-0.144182,0.940019,-0.915047,0.332564,-0.228233,-0.915047,0.332564,-0.228233, + -0.915047,0.332564,-0.228233,-0.915047,0.332564,-0.228233,-0.425062,-0.890422,-0.162702,-0.425062,-0.890422,-0.162702, + -0.425062,-0.890422,-0.162702,-0.425062,-0.890422,-0.162702,-0.489148,-0.783842,0.382526,-0.489148,-0.783842,0.382526, + -0.489148,-0.783842,0.382526,-0.489148,-0.783842,0.382526,-0.250399,-0.038989,0.967357,-0.250399,-0.038989,0.967357, + -0.250399,-0.038989,0.967357,-0.250399,-0.038989,0.967357,0.855598,-0.475633,0.204269,0.855598,-0.475633,0.204269, + 0.855598,-0.475633,0.204269,0.855598,-0.475633,0.204269,0.479794,0.864731,0.148455,0.479794,0.864731,0.148455, + 0.479794,0.864731,0.148455,0.479794,0.864731,0.148455,-0.274584,-0.801282,-0.531555,-0.274584,-0.801282,-0.531555, + -0.274584,-0.801282,-0.531555,-0.315153,-0.834306,-0.452341,-0.315153,-0.834306,-0.452341,-0.315153,-0.834306,-0.452341, + -0.820849,0.544670,-0.171874,-0.820849,0.544670,-0.171874,-0.820849,0.544670,-0.171874,-0.820849,0.544670,-0.171874, + -0.386014,-0.905906,-0.174149,-0.386014,-0.905906,-0.174149,-0.386014,-0.905906,-0.174149,-0.386014,-0.905906,-0.174149, + 0.756828,-0.637844,0.142713,0.756828,-0.637844,0.142713,0.756828,-0.637844,0.142713,0.756828,-0.637844,0.142713, + 0.402382,0.897649,0.179762,0.402382,0.897649,0.179762,0.402382,0.897649,0.179762,0.402382,0.897649,0.179762, + -0.900535,0.374099,-0.221553,-0.900535,0.374099,-0.221553,-0.900535,0.374099,-0.221553,-0.900535,0.374099,-0.221553, + -0.434215,-0.888734,-0.147000,-0.434215,-0.888734,-0.147000,-0.434215,-0.888734,-0.147000,-0.434215,-0.888734,-0.147000, + 0.860384,-0.466101,0.206126,0.860384,-0.466101,0.206126,0.860384,-0.466101,0.206126,0.860384,-0.466101,0.206126, + 0.512052,0.842669,0.166468,0.512052,0.842669,0.166468,0.512052,0.842669,0.166468,0.512052,0.842669,0.166468, + 0.429620,0.896561,0.107725,0.429620,0.896561,0.107725,0.429620,0.896561,0.107725,0.429620,0.896561,0.107725, + 0.467741,0.872779,0.139552,0.467741,0.872779,0.139552,0.467741,0.872779,0.139552,0.467741,0.872779,0.139552, + 0.884660,-0.428509,0.183731,0.884660,-0.428509,0.183731,0.884660,-0.428509,0.183731,0.884660,-0.428509,0.183731, + -0.423111,-0.891398,-0.162437,-0.423111,-0.891398,-0.162437,-0.423111,-0.891398,-0.162437,-0.423111,-0.891398,-0.162437, + 0.428860,0.894243,0.128100,0.428860,0.894243,0.128100,0.428860,0.894243,0.128100,0.428860,0.894243,0.128100, + -0.385268,-0.297198,0.873637,-0.385268,-0.297198,0.873637,-0.385268,-0.297198,0.873637,-0.385268,-0.297198,0.873637, + -0.943400,0.257238,-0.209347,-0.943400,0.257238,-0.209347,-0.943400,0.257238,-0.209347,-0.943400,0.257238,-0.209347, + -0.232390,-0.074242,0.969785,-0.232390,-0.074242,0.969785,-0.232390,-0.074242,0.969785,-0.232390,-0.074242,0.969785, + -0.921916,0.309818,-0.232560,-0.921916,0.309818,-0.232560,-0.921916,0.309818,-0.232560,-0.921916,0.309818,-0.232560, + -0.310483,-0.150095,0.938654,-0.310483,-0.150095,0.938654,-0.310483,-0.150095,0.938654,-0.310483,-0.150095,0.938654, + -0.307020,-0.166487,0.937028,-0.307020,-0.166487,0.937028,-0.307020,-0.166487,0.937028,-0.307020,-0.166487,0.937028, + 0.477459,0.864509,0.157024,0.477459,0.864509,0.157024,0.477459,0.864509,0.157024,0.477459,0.864509,0.157024, + 0.862531,-0.467501,0.193604,0.862531,-0.467501,0.193604,0.862531,-0.467501,0.193604,0.862531,-0.467501,0.193604, + -0.425024,-0.890454,-0.162624,-0.425024,-0.890454,-0.162624,-0.425024,-0.890454,-0.162624,-0.425024,-0.890454,-0.162624, + -0.925395,0.308593,-0.220034,-0.925395,0.308593,-0.220034,-0.925395,0.308593,-0.220034,-0.925395,0.308593,-0.220034, + -0.925367,0.308607,-0.220132,-0.925367,0.308607,-0.220132,-0.925367,0.308607,-0.220132,-0.925367,0.308607,-0.220132, + -0.424945,-0.890435,-0.162935,-0.424945,-0.890435,-0.162935,-0.424945,-0.890435,-0.162935,-0.424945,-0.890435,-0.162935, + 0.862511,-0.467511,0.193670,0.862511,-0.467511,0.193670,0.862511,-0.467511,0.193670,0.862511,-0.467511,0.193670, + 0.477253,0.864473,0.157851,0.477253,0.864473,0.157851,0.477253,0.864473,0.157851,0.477253,0.864473,0.157851, + -0.307019,-0.166485,0.937028,-0.307019,-0.166485,0.937028,-0.307019,-0.166485,0.937028,-0.307019,-0.166485,0.937028, + 0.477200,0.864354,0.158657,0.477200,0.864354,0.158657,0.477200,0.864354,0.158657,0.477200,0.864354,0.158657, + 0.859117,-0.468737,0.205435,0.859117,-0.468737,0.205435,0.859117,-0.468737,0.205435,0.859117,-0.468737,0.205435, + -0.424970,-0.890402,-0.163049,-0.424970,-0.890402,-0.163049,-0.424970,-0.890402,-0.163049,-0.424970,-0.890402,-0.163049, + -0.922110,0.309786,-0.231830,-0.922110,0.309786,-0.231830,-0.922110,0.309786,-0.231830,-0.922110,0.309786,-0.231830, + -0.425171,-0.890449,-0.162264,-0.425171,-0.890449,-0.162264,-0.425171,-0.890449,-0.162264,-0.425171,-0.890449,-0.162264, + 0.858908,-0.468760,0.206254,0.858908,-0.468760,0.206254,0.858908,-0.468760,0.206254,0.858908,-0.468760,0.206254, + 0.477707,0.864450,0.156594,0.477707,0.864450,0.156594,0.477707,0.864450,0.156594,0.477707,0.864450,0.156594, + 0.359465,0.218779,-0.907150,0.359465,0.218779,-0.907150,0.359465,0.218779,-0.907150,0.359465,0.218779,-0.907150, + -0.275676,-0.058521,0.959468,-0.275676,-0.058521,0.959468,-0.275676,-0.058521,0.959468,-0.275676,-0.058521,0.959468, + -0.168512,0.011385,0.985634,-0.168512,0.011385,0.985634,-0.168512,0.011385,0.985634,-0.168512,0.011385,0.985634, + -0.181654,-0.003103,0.983358,-0.181654,-0.003103,0.983358,-0.181654,-0.003103,0.983358,-0.181654,-0.003103,0.983358, + 0.823129,-0.541467,0.171090,0.823129,-0.541467,0.171090,0.823129,-0.541467,0.171090,0.823129,-0.541467,0.171090, + 0.610893,0.759392,0.223904,0.610893,0.759392,0.223904,0.610893,0.759392,0.223904,0.610893,0.759392,0.223904, + 0.371795,0.603988,0.704959,0.371795,0.603988,0.704959,0.371795,0.603988,0.704959,0.371795,0.603988,0.704959, + -0.265100,-0.091149,0.959903,-0.265100,-0.091149,0.959903,-0.265100,-0.091149,0.959903,-0.265100,-0.091149,0.959903, + -0.733533,0.665622,-0.137389,-0.733533,0.665622,-0.137389,-0.733533,0.665622,-0.137389,-0.733533,0.665622,-0.137389, + -0.645055,-0.719568,-0.257148,-0.645055,-0.719568,-0.257148,-0.645055,-0.719568,-0.257148,-0.645055,-0.719568,-0.257148, + 0.651300,0.736755,-0.181663,0.651300,0.736755,-0.181663,0.651300,0.736755,-0.181663,0.652255,0.752860,-0.088118, + 0.652255,0.752860,-0.088118,0.652255,0.752860,-0.088118,0.674763,-0.725347,0.136261,0.674763,-0.725347,0.136261, + 0.674763,-0.725347,0.136261,0.674763,-0.725347,0.136261,0.586612,0.785152,0.198552,0.586612,0.785152,0.198552, + 0.586612,0.785152,0.198552,0.586612,0.785152,0.198552,-0.588268,0.800571,-0.114134,-0.588268,0.800571,-0.114134, + -0.588268,0.800571,-0.114134,-0.588268,0.800571,-0.114134,-0.601659,-0.773345,-0.199862,-0.601659,-0.773345,-0.199862, + -0.601659,-0.773345,-0.199862,-0.601659,-0.773345,-0.199862,0.799583,-0.578193,0.162355,0.799583,-0.578193,0.162355, + 0.799583,-0.578193,0.162355,0.799583,-0.578193,0.162355,0.610438,0.754368,0.241445,0.610438,0.754368,0.241445, + 0.610438,0.754368,0.241445,0.610438,0.754368,0.241445,-0.740335,0.657542,-0.139795,-0.740335,0.657542,-0.139795, + -0.740335,0.657542,-0.139795,-0.740335,0.657542,-0.139795,-0.677080,-0.691177,-0.252661,-0.677080,-0.691177,-0.252661, + -0.677080,-0.691177,-0.252661,-0.677080,-0.691177,-0.252661,-0.588410,-0.760493,-0.274635,-0.588410,-0.760493,-0.274635, + -0.588410,-0.760493,-0.274635,-0.588410,-0.760493,-0.274635,-0.631964,-0.729846,-0.260664,-0.631964,-0.729846,-0.260664, + -0.631964,-0.729846,-0.260664,-0.631964,-0.729846,-0.260664,-0.756828,0.629055,-0.177485,-0.756828,0.629055,-0.177485, + -0.756828,0.629055,-0.177485,-0.756828,0.629055,-0.177485,0.609297,0.760823,0.223396,0.609297,0.760823,0.223396, + 0.609297,0.760823,0.223396,0.609297,0.760823,0.223396,-0.597519,-0.759804,-0.256261,-0.597519,-0.759804,-0.256261, + -0.597519,-0.759804,-0.256261,-0.597519,-0.759804,-0.256261,-0.054843,0.129175,0.990104,-0.054843,0.129175,0.990104, + -0.054843,0.129175,0.990104,-0.054843,0.129175,0.990104,0.852053,-0.477424,0.214646,0.852053,-0.477424,0.214646, + 0.852053,-0.477424,0.214646,0.852053,-0.477424,0.214646,-0.274761,-0.052685,0.960068,-0.274761,-0.052685,0.960068, + -0.274761,-0.052685,0.960068,-0.274761,-0.052685,0.960068,0.835454,-0.521024,0.174788,0.835454,-0.521024,0.174788, + 0.835454,-0.521024,0.174788,0.835454,-0.521024,0.174788,-0.178721,0.002347,0.983897,-0.178721,0.002347,0.983897, + -0.178721,0.002347,0.983897,-0.178721,0.002347,0.983897,-0.177687,0.019142,0.983901,-0.177687,0.019142,0.983901, + -0.177687,0.019142,0.983901,-0.177687,0.019142,0.983901,-0.647329,-0.720525,-0.248613,-0.647329,-0.720525,-0.248613, + -0.647329,-0.720525,-0.248613,-0.647329,-0.720525,-0.248613,-0.735613,0.660277,-0.151354,-0.735613,0.660277,-0.151354, + -0.735613,0.660277,-0.151354,-0.735613,0.660277,-0.151354,0.610826,0.759430,0.223959,0.610826,0.759430,0.223959, + 0.610826,0.759430,0.223959,0.610826,0.759430,0.223959,0.832362,-0.521567,0.187462,0.832362,-0.521567,0.187462, + 0.832362,-0.521567,0.187462,0.832362,-0.521567,0.187462,0.832378,-0.521576,0.187363,0.832378,-0.521576,0.187363, + 0.832378,-0.521576,0.187363,0.832378,-0.521576,0.187363,0.610909,0.759455,0.223648,0.610909,0.759455,0.223648, + 0.610909,0.759455,0.223648,0.610909,0.759455,0.223648,-0.735628,0.660275,-0.151289,-0.735628,0.660275,-0.151289, + -0.735628,0.660275,-0.151289,-0.735628,0.660275,-0.151289,-0.647560,-0.720600,-0.247794,-0.647560,-0.720600,-0.247794, + -0.647560,-0.720600,-0.247794,-0.647560,-0.720600,-0.247794,-0.177692,0.019141,0.983900,-0.177692,0.019141,0.983900, + -0.177692,0.019141,0.983900,-0.177692,0.019141,0.983900,-0.647895,-0.720553,-0.247052,-0.647895,-0.720553,-0.247052, + -0.647895,-0.720553,-0.247052,-0.647895,-0.720553,-0.247052,-0.738406,0.659811,-0.139305,-0.738406,0.659811,-0.139305, + -0.738406,0.659811,-0.139305,-0.738406,0.659811,-0.139305,0.610983,0.759422,0.223555,0.610983,0.759422,0.223555, + 0.610983,0.759422,0.223555,0.610983,0.759422,0.223555,0.835256,-0.521097,0.175514,0.835256,-0.521097,0.175514, + 0.835256,-0.521097,0.175514,0.835256,-0.521097,0.175514,0.610769,0.759364,0.224337,0.610769,0.759364,0.224337, + 0.610769,0.759364,0.224337,0.610769,0.759364,0.224337,-0.738643,0.659716,-0.138500,-0.738643,0.659716,-0.138500, + -0.738643,0.659716,-0.138500,-0.738643,0.659716,-0.138500,-0.647310,-0.720378,-0.249089,-0.647310,-0.720378,-0.249089, + -0.647310,-0.720378,-0.249089,-0.647310,-0.720378,-0.249089,0.140646,-0.089171,-0.986036,0.140646,-0.089171,-0.986036, + 0.140646,-0.089171,-0.986036,0.140646,-0.089171,-0.986036,-0.233885,-0.073532,0.969480,-0.233885,-0.073532,0.969480, + -0.233885,-0.073532,0.969480,-0.233885,-0.073532,0.969480,-0.337641,-0.142560,0.930417,-0.337641,-0.142560,0.930417, + -0.337641,-0.142560,0.930417,-0.337641,-0.142560,0.930417,-0.325565,-0.128349,0.936768,-0.325565,-0.128349,0.936768, + -0.325565,-0.128349,0.936768,-0.325565,-0.128349,0.936768,-0.818567,0.542648,-0.188365,-0.818567,0.542648,-0.188365, + -0.818567,0.542648,-0.188365,-0.818567,0.542648,-0.188365,-0.616072,-0.760739,-0.204281,-0.616072,-0.760739,-0.204281, + -0.616072,-0.760739,-0.204281,-0.616072,-0.760739,-0.204281,-0.649800,-0.676032,0.347478,-0.649800,-0.676032,0.347478, + -0.649800,-0.676032,0.347478,-0.649800,-0.676032,0.347478,-0.244390,-0.040890,0.968814,-0.244390,-0.040890,0.968814, + -0.244390,-0.040890,0.968814,-0.244390,-0.040890,0.968814,0.728219,-0.666997,0.157518,0.728219,-0.666997,0.157518, + 0.728219,-0.666997,0.157518,0.728219,-0.666997,0.157518,0.663487,0.724347,0.187369,0.663487,0.724347,0.187369, + 0.663487,0.724347,0.187369,0.663487,0.724347,0.187369,-0.452572,-0.685243,-0.570631,-0.452572,-0.685243,-0.570631, + -0.452572,-0.685243,-0.570631,-0.498847,-0.713113,-0.492566,-0.498847,-0.713113,-0.492566,-0.498847,-0.713113,-0.492566, + -0.678539,0.724365,-0.121981,-0.678539,0.724365,-0.121981,-0.678539,0.724365,-0.121981,-0.678539,0.724365,-0.121981, + -0.581614,-0.783859,-0.217462,-0.581614,-0.783859,-0.217462,-0.581614,-0.783859,-0.217462,-0.581614,-0.783859,-0.217462, + 0.594930,-0.798844,0.088921,0.594930,-0.798844,0.088921,0.594930,-0.798844,0.088921,0.594930,-0.798844,0.088921, + 0.595751,0.771813,0.222229,0.595751,0.771813,0.222229,0.595751,0.771813,0.222229,0.595751,0.771813,0.222229, + -0.795018,0.579380,-0.179625,-0.795018,0.579380,-0.179625,-0.795018,0.579380,-0.179625,-0.795018,0.579380,-0.179625, + -0.624472,-0.758007,-0.188309,-0.624472,-0.758007,-0.188309,-0.624472,-0.758007,-0.188309,-0.624472,-0.758007,-0.188309, + 0.735047,-0.658912,0.159817,0.735047,-0.658912,0.159817,0.735047,-0.658912,0.159817,0.735047,-0.658912,0.159817, + 0.690102,0.694553,0.203361,0.690102,0.694553,0.203361,0.690102,0.694553,0.203361,0.690102,0.694553,0.203361, + 0.621417,0.769053,0.149658,0.621417,0.769053,0.149658,0.621417,0.769053,0.149658,0.621417,0.769053,0.149658, + 0.653480,0.735423,0.179213,0.653480,0.735423,0.179213,0.653480,0.735423,0.179213,0.653480,0.735423,0.179213, + 0.766971,-0.626426,0.139091,0.766971,-0.626426,0.139091,0.766971,-0.626426,0.139091,0.766971,-0.626426,0.139091, + -0.614388,-0.762144,-0.204116,-0.614388,-0.762144,-0.204116,-0.614388,-0.762144,-0.204116,-0.614388,-0.762144,-0.204116, + 0.620331,0.765720,0.169886,0.620331,0.765720,0.169886,0.620331,0.765720,0.169886,0.620331,0.765720,0.169886, + -0.434767,-0.256054,0.863374,-0.434767,-0.256054,0.863374,-0.434767,-0.256054,0.863374,-0.434767,-0.256054,0.863374, + -0.862992,0.474591,-0.173227,-0.862992,0.474591,-0.173227,-0.862992,0.474591,-0.173227,-0.862992,0.474591,-0.173227, + -0.234773,-0.079365,0.968805,-0.234773,-0.079365,0.968805,-0.234773,-0.079365,0.968805,-0.234773,-0.079365,0.968805, + -0.830422,0.522326,-0.193842,-0.830422,0.522326,-0.193842,-0.830422,0.522326,-0.193842,-0.830422,0.522326,-0.193842, + -0.328205,-0.133722,0.935094,-0.328205,-0.133722,0.935094,-0.328205,-0.133722,0.935094,-0.328205,-0.133722,0.935094, + -0.328543,-0.150337,0.932447,-0.328543,-0.150337,0.932447,-0.328543,-0.150337,0.932447,-0.328543,-0.150337,0.932447, + 0.661238,0.724130,0.195960,0.661238,0.724130,0.195960,0.661238,0.724130,0.195960,0.661238,0.724130,0.195960, + 0.736715,-0.659990,0.147190,0.736715,-0.659990,0.147190,0.736715,-0.659990,0.147190,0.736715,-0.659990,0.147190, + -0.616042,-0.760784,-0.204206,-0.616042,-0.760784,-0.204206,-0.616042,-0.760784,-0.204206,-0.616042,-0.760784,-0.204206, + -0.833977,0.521153,-0.181332,-0.833977,0.521153,-0.181332,-0.833977,0.521153,-0.181332,-0.833977,0.521153,-0.181332, + -0.833950,0.521164,-0.181428,-0.833950,0.521164,-0.181428,-0.833950,0.521164,-0.181428,-0.833950,0.521164,-0.181428, + -0.615960,-0.760767,-0.204518,-0.615960,-0.760767,-0.204518,-0.615960,-0.760767,-0.204518,-0.615960,-0.760767,-0.204518, + 0.736692,-0.660001,0.147254,0.736692,-0.660001,0.147254,0.736692,-0.660001,0.147254,0.736692,-0.660001,0.147254, + 0.661033,0.724092,0.196788,0.661033,0.724092,0.196788,0.661033,0.724092,0.196788,0.661033,0.724092,0.196788, + -0.328537,-0.150336,0.932450,-0.328537,-0.150336,0.932450,-0.328537,-0.150336,0.932450,-0.328537,-0.150336,0.932450, + 0.660961,0.723940,0.197587,0.660961,0.723940,0.197587,0.660961,0.723940,0.197587,0.660961,0.723940,0.197587, + 0.733208,-0.661154,0.159002,0.733208,-0.661154,0.159002,0.733208,-0.661154,0.159002,0.733208,-0.661154,0.159002, + -0.615982,-0.760719,-0.204630,-0.615982,-0.760719,-0.204630,-0.615982,-0.760719,-0.204630,-0.615982,-0.760719,-0.204630, + -0.830609,0.522300,-0.193109,-0.830609,0.522300,-0.193109,-0.830609,0.522300,-0.193109,-0.830609,0.522300,-0.193109, + -0.616182,-0.760768,-0.203844,-0.616182,-0.760768,-0.203844,-0.616182,-0.760768,-0.203844,-0.616182,-0.760768,-0.203844, + 0.733008,-0.661177,0.159825,0.733008,-0.661177,0.159825,0.733008,-0.661177,0.159825,0.733008,-0.661177,0.159825, + 0.661462,0.724044,0.195522,0.661462,0.724044,0.195522,0.661462,0.724044,0.195522,0.661462,0.724044,0.195522, + 0.294257,0.251034,-0.922168,0.294257,0.251034,-0.922168,0.294257,0.251034,-0.922168,0.294257,0.251034,-0.922168, + -0.276731,-0.067176,0.958597,-0.276731,-0.067176,0.958597,-0.276731,-0.067176,0.958597,-0.276731,-0.067176,0.958597, + -0.223798,-0.015932,0.974505,-0.223798,-0.015932,0.974505,-0.223798,-0.015932,0.974505,-0.223798,-0.015932,0.974505, + -0.203517,0.039153,0.978288,-0.203517,0.039153,0.978288,-0.203517,0.039153,0.978288,-0.203517,0.039153,0.978288, + 0.959565,-0.161142,0.230799,0.959565,-0.161142,0.230799,0.959565,-0.161142,0.230799,0.959565,-0.161142,0.230799, + 0.282619,0.947108,0.152028,0.282619,0.947108,0.152028,0.282619,0.947108,0.152028,0.282619,0.947108,0.152028, + 0.096249,0.759916,0.642856,0.096249,0.759916,0.642856,0.096249,0.759916,0.642856,0.096249,0.759916,0.642856, + -0.255071,-0.093490,0.962392,-0.255071,-0.093490,0.962392,-0.255071,-0.093490,0.962392,-0.255071,-0.093490,0.962392, + -0.921389,0.328371,-0.207880,-0.921389,0.328371,-0.207880,-0.921389,0.328371,-0.207880,-0.921389,0.328371,-0.207880, + -0.329130,-0.926369,-0.183068,-0.329130,-0.926369,-0.183068,-0.329130,-0.926369,-0.183068,-0.329130,-0.926369,-0.183068, + 0.346457,0.903930,-0.250753,0.346457,0.903930,-0.250753,0.346457,0.903930,-0.250753,0.337440,0.927767,-0.159323, + 0.337440,0.927767,-0.159323,0.337440,0.927767,-0.159323,0.885564,-0.412620,0.213356,0.885564,-0.412620,0.213356, + 0.885564,-0.412620,0.213356,0.885564,-0.412620,0.213356,0.252246,0.959917,0.122190,0.252246,0.959917,0.122190, + 0.252246,0.959917,0.122190,0.252246,0.959917,0.122190,-0.833339,0.515946,-0.198359,-0.833339,0.515946,-0.198359, + -0.833339,0.515946,-0.198359,-0.833339,0.515946,-0.198359,-0.270487,-0.954602,-0.124788,-0.270487,-0.954602,-0.124788, + -0.270487,-0.954602,-0.124788,-0.270487,-0.954602,-0.124788,0.947166,-0.228294,0.225296,0.947166,-0.228294,0.225296, + 0.947166,-0.228294,0.225296,0.947166,-0.228294,0.225296,0.283752,0.944043,0.168132,0.283752,0.944043,0.168132, + 0.283752,0.944043,0.168132,0.283752,0.944043,0.168132,-0.921815,0.325517,-0.210468,-0.921815,0.325517,-0.210468, + -0.921815,0.325517,-0.210468,-0.921815,0.325517,-0.210468,-0.368241,-0.910910,-0.186121,-0.368241,-0.910910,-0.186121, + -0.368241,-0.910910,-0.186121,-0.368241,-0.910910,-0.186121,-0.259591,-0.944698,-0.200395,-0.259591,-0.944698,-0.200395, + -0.259591,-0.944698,-0.200395,-0.259591,-0.944698,-0.200395,-0.346504,-0.921146,-0.177270,-0.346504,-0.921146,-0.177270, + -0.346504,-0.921146,-0.177270,-0.346504,-0.921146,-0.177270,-0.919286,0.323768,-0.223802,-0.919286,0.323768,-0.223802, + -0.919286,0.323768,-0.223802,-0.919286,0.323768,-0.223802,0.286287,0.946961,0.145964,0.286287,0.946961,0.145964, + 0.286287,0.946961,0.145964,0.286287,0.946961,0.145964,-0.269113,-0.945711,-0.182235,-0.269113,-0.945711,-0.182235, + -0.269113,-0.945711,-0.182235,-0.269113,-0.945711,-0.182235,-0.140711,0.190228,0.971604,-0.140711,0.190228,0.971604, + -0.140711,0.190228,0.971604,-0.140711,0.190228,0.971604,0.951309,-0.191581,0.241470,0.951309,-0.191581,0.241470, + 0.951309,-0.191581,0.241470,0.951309,-0.191581,0.241470,-0.250438,0.054539,0.966595,-0.250438,0.054539,0.966595, + -0.250438,0.054539,0.966595,-0.250438,0.054539,0.966595,0.959253,-0.161084,0.232134,0.959253,-0.161084,0.232134, + 0.959253,-0.161084,0.232134,0.959253,-0.161084,0.232134,-0.209662,0.026890,0.977404,-0.209662,0.026890,0.977404, + -0.209662,0.026890,0.977404,-0.209662,0.026890,0.977404,-0.214798,0.042829,0.975719,-0.214798,0.042829,0.975719, + -0.214798,0.042829,0.975719,-0.214798,0.042829,0.975719,-0.330069,-0.926843,-0.178930,-0.330069,-0.926843,-0.178930, + -0.330069,-0.926843,-0.178930,-0.330069,-0.926843,-0.178930,-0.917914,0.328718,-0.222211,-0.917914,0.328718,-0.222211, + -0.917914,0.328718,-0.222211,-0.917914,0.328718,-0.222211,0.283029,0.947273,0.150227,0.283029,0.947273,0.150227, + 0.283029,0.947273,0.150227,0.283029,0.947273,0.150227,0.956024,-0.161563,0.244776,0.956024,-0.161563,0.244776, + 0.956024,-0.161563,0.244776,0.956024,-0.161563,0.244776,0.950857,-0.193326,0.241859,0.950857,-0.193326,0.241859, + 0.950857,-0.193326,0.241859,0.950857,-0.193326,0.241859,0.283112,0.947298,0.149917,0.283112,0.947298,0.149917, + 0.283112,0.947298,0.149917,0.283112,0.947298,0.149917,-0.893231,0.396296,-0.212339,-0.893231,0.396296,-0.212339, + -0.893231,0.396296,-0.212339,-0.893231,0.396296,-0.212339,-0.333154,-0.927864,-0.167561,-0.333154,-0.927864,-0.167561, + -0.333154,-0.927864,-0.167561,-0.333154,-0.927864,-0.167561,-0.201805,0.076917,0.976401,-0.201805,0.076917,0.976401, + -0.201805,0.076917,0.976401,-0.201805,0.076917,0.976401,-0.322014,-0.923382,-0.208981,-0.322014,-0.923382,-0.208981, + -0.322014,-0.923382,-0.208981,-0.322014,-0.923382,-0.208981,-0.903875,0.377133,-0.201944,-0.903875,0.377133,-0.201944, + -0.903875,0.377133,-0.201944,-0.903875,0.377133,-0.201944,0.280326,0.946355,0.160717,0.280326,0.946355,0.160717, + 0.280326,0.946355,0.160717,0.280326,0.946355,0.160717,0.944900,-0.236939,0.225884,0.944900,-0.236939,0.225884, + 0.944900,-0.236939,0.225884,0.944900,-0.236939,0.225884,0.282985,0.947225,0.150610,0.282985,0.947225,0.150610, + 0.282985,0.947225,0.150610,0.282985,0.947225,0.150610,-0.921085,0.328270,-0.209384,-0.921085,0.328270,-0.209384, + -0.921085,0.328270,-0.209384,-0.921085,0.328270,-0.209384,-0.330086,-0.926743,-0.179420,-0.330086,-0.926743,-0.179420, + -0.330086,-0.926743,-0.179420,-0.330086,-0.926743,-0.179420,0.077527,0.141276,-0.986930,0.077527,0.141276,-0.986930, + 0.077527,0.141276,-0.986930,0.077527,0.141276,-0.986930,-0.256615,-0.088622,0.962442,-0.256615,-0.088622,0.962442, + -0.256615,-0.088622,0.962442,-0.256615,-0.088622,0.962442,-0.298174,-0.026304,0.954149,-0.298174,-0.026304,0.954149, + -0.298174,-0.026304,0.954149,-0.298174,-0.026304,0.954149,-0.346786,0.002614,0.937941,-0.346786,0.002614,0.937941, + -0.346786,0.002614,0.937941,-0.346786,0.002614,0.937941,0.286125,0.949478,0.128935,0.286125,0.949478,0.128935, + 0.286125,0.949478,0.128935,0.286125,0.949478,0.128935,-0.872994,0.450356,-0.187247,-0.872994,0.450356,-0.187247, + -0.872994,0.450356,-0.187247,-0.872994,0.450356,-0.187247,-0.870074,0.338069,0.358721,-0.870074,0.338069,0.358721, + -0.870074,0.338069,0.358721,-0.870074,0.338069,0.358721,-0.228465,-0.070972,0.970962,-0.228465,-0.070972,0.970962, + -0.228465,-0.070972,0.970962,-0.228465,-0.070972,0.970962,-0.441625,-0.882080,-0.164018,-0.441625,-0.882080,-0.164018, + -0.441625,-0.882080,-0.164018,-0.441625,-0.882080,-0.164018,0.852419,-0.498302,0.158358,0.852419,-0.498302,0.158358, + 0.852419,-0.498302,0.158358,0.852419,-0.498302,0.158358,-0.708909,0.425786,-0.562277,-0.708909,0.425786,-0.562277, + -0.708909,0.425786,-0.562277,-0.758218,0.438816,-0.482230,-0.758218,0.438816,-0.482230,-0.758218,0.438816,-0.482230, + 0.511871,0.835437,0.200084,0.511871,0.835437,0.200084,0.511871,0.835437,0.200084,0.511871,0.835437,0.200084, + -0.883119,0.417038,-0.214895,-0.883119,0.417038,-0.214895,-0.883119,0.417038,-0.214895,-0.883119,0.417038,-0.214895, + -0.602270,-0.765906,-0.225075,-0.602270,-0.765906,-0.225075,-0.602270,-0.765906,-0.225075,-0.602270,-0.765906,-0.225075, + 0.875076,-0.434379,0.213440,0.875076,-0.434379,0.213440,0.875076,-0.434379,0.213440,0.875076,-0.434379,0.213440, + 0.348162,0.925982,0.146085,0.348162,0.925982,0.146085,0.348162,0.925982,0.146085,0.348162,0.925982,0.146085, + -0.874293,0.454161,-0.171316,-0.874293,0.454161,-0.171316,-0.874293,0.454161,-0.171316,-0.874293,0.454161,-0.171316, + -0.438326,-0.883446,-0.165508,-0.438326,-0.883446,-0.165508,-0.438326,-0.883446,-0.165508,-0.438326,-0.883446,-0.165508, + 0.830664,-0.534368,0.156359,0.830664,-0.534368,0.156359,0.830664,-0.534368,0.156359,0.830664,-0.534368,0.156359, + 0.888735,-0.437262,0.137666,0.888735,-0.437262,0.137666,0.888735,-0.437262,0.137666,0.888735,-0.437262,0.137666, + 0.842338,-0.513165,0.164706,0.842338,-0.513165,0.164706,0.842338,-0.513165,0.164706,0.842338,-0.513165,0.164706, + -0.432502,-0.883910,-0.177890,-0.432502,-0.883910,-0.177890,-0.432502,-0.883910,-0.177890,-0.432502,-0.883910,-0.177890, + -0.870436,0.452685,-0.193434,-0.870436,0.452685,-0.193434,-0.870436,0.452685,-0.193434,-0.870436,0.452685,-0.193434, + 0.882741,-0.443046,0.156454,0.882741,-0.443046,0.156454,0.882741,-0.443046,0.156454,0.882741,-0.443046,0.156454, + -0.473893,0.085492,0.876423,-0.473893,0.085492,0.876423,-0.473893,0.085492,0.876423,-0.473893,0.085492,0.876423, + 0.310103,0.938879,0.149475,0.310103,0.938879,0.149475,0.310103,0.938879,0.149475,0.310103,0.938879,0.149475, + -0.367720,-0.042734,0.928954,-0.367720,-0.042734,0.928954,-0.367720,-0.042734,0.928954,-0.367720,-0.042734,0.928954, + 0.285660,0.949443,0.130219,0.285660,0.949443,0.130219,0.285660,0.949443,0.130219,0.285660,0.949443,0.130219, + -0.336275,-0.005405,0.941748,-0.336275,-0.005405,0.941748,-0.336275,-0.005405,0.941748,-0.336275,-0.005405,0.941748, + -0.351858,-0.008247,0.936017,-0.351858,-0.008247,0.936017,-0.351858,-0.008247,0.936017,-0.351858,-0.008247,0.936017, + 0.851536,-0.498468,0.162532,0.851536,-0.498468,0.162532,0.851536,-0.498468,0.162532,0.851536,-0.498468,0.162532, + -0.437310,-0.881498,-0.178104,-0.437310,-0.881498,-0.178104,-0.437310,-0.881498,-0.178104,-0.437310,-0.881498,-0.178104, + -0.872572,0.450420,-0.189051,-0.872572,0.450420,-0.189051,-0.872572,0.450420,-0.189051,-0.872572,0.450420,-0.189051, + 0.281974,0.948747,0.142725,0.281974,0.948747,0.142725,0.281974,0.948747,0.142725,0.281974,0.948747,0.142725, + 0.311550,0.938245,0.150443,0.311550,0.938245,0.150443,0.311550,0.938245,0.150443,0.311550,0.938245,0.150443, + -0.872490,0.450446,-0.189365,-0.872490,0.450446,-0.189365,-0.872490,0.450446,-0.189365,-0.872490,0.450446,-0.189365, + -0.498412,-0.845177,-0.193030,-0.498412,-0.845177,-0.193030,-0.498412,-0.845177,-0.193030,-0.498412,-0.845177,-0.193030, + 0.848744,-0.499364,0.173984,0.848744,-0.499364,0.173984,0.848744,-0.499364,0.173984,0.848744,-0.499364,0.173984, + -0.381394,0.009748,0.924361,-0.381394,0.009748,0.924361,-0.381394,0.009748,0.924361,-0.381394,0.009748,0.924361, + 0.858180,-0.496079,0.132033,0.858180,-0.496079,0.132033,0.858180,-0.496079,0.132033,0.858180,-0.496079,0.132033, + -0.485445,-0.856398,-0.175857,-0.485445,-0.856398,-0.175857,-0.485445,-0.856398,-0.175857,-0.485445,-0.856398,-0.175857, + -0.875140,0.449738,-0.178509,-0.875140,0.449738,-0.178509,-0.875140,0.449738,-0.178509,-0.875140,0.449738,-0.178509, + 0.355653,0.922567,0.149605,0.355653,0.922567,0.149605,0.355653,0.922567,0.149605,0.355653,0.922567,0.149605, + -0.872640,0.450448,-0.188669,-0.872640,0.450448,-0.188669,-0.872640,0.450448,-0.188669,-0.872640,0.450448,-0.188669, + -0.441052,-0.882101,-0.165440,-0.441052,-0.882101,-0.165440,-0.441052,-0.882101,-0.165440,-0.441052,-0.882101,-0.165440, + 0.851572,-0.498565,0.162042,0.851572,-0.498565,0.162042,0.851572,-0.498565,0.162042,0.851572,-0.498565,0.162042, + 0.117179,0.202353,-0.972277,0.117179,0.202353,-0.972277,0.117179,0.202353,-0.972277,0.117179,0.202353,-0.972277, + -0.264770,-0.086088,0.960461,-0.264770,-0.086088,0.960461,-0.264770,-0.086088,0.960461,-0.264770,-0.086088,0.960461, + -0.315486,0.033644,0.948334,-0.315486,0.033644,0.948334,-0.315486,0.033644,0.948334,-0.315486,0.033644,0.948334, + -0.303973,0.018232,0.952506,-0.303973,0.018232,0.952506,-0.303973,0.018232,0.952506,-0.303973,0.018232,0.952506, + 0.631598,0.746684,0.208680,0.631598,0.746684,0.208680,0.631598,0.746684,0.208680,0.631598,0.746684,0.208680, + -0.648618,0.753235,-0.109230,-0.648618,0.753235,-0.109230,-0.648618,0.753235,-0.109230,-0.648618,0.753235,-0.109230, + -0.683760,0.592899,0.425375,-0.683760,0.592899,0.425375,-0.683760,0.592899,0.425375,-0.683760,0.592899,0.425375, + -0.232051,-0.080820,0.969340,-0.232051,-0.080820,0.969340,-0.232051,-0.080820,0.969340,-0.232051,-0.080820,0.969340, + -0.738967,-0.634063,-0.227799,-0.738967,-0.634063,-0.227799,-0.738967,-0.634063,-0.227799,-0.738967,-0.634063,-0.227799, + 0.613271,-0.786706,0.070655,0.613271,-0.786706,0.070655,0.613271,-0.786706,0.070655,0.613271,-0.786706,0.070655, + -0.507886,0.708604,-0.489828,-0.507886,0.708604,-0.489828,-0.507886,0.708604,-0.489828,-0.548448,0.730524,-0.406866, + -0.548448,0.730524,-0.406866,-0.548448,0.730524,-0.406866,0.783255,0.567695,0.253443,0.783255,0.567695,0.253443, + 0.783255,0.567695,0.253443,0.783255,0.567695,0.253443,-0.670882,0.728706,-0.137492,-0.670882,0.728706,-0.137492, + -0.670882,0.728706,-0.137492,-0.670882,0.728706,-0.137492,-0.842127,-0.467951,-0.268038,-0.842127,-0.467951,-0.268038, + -0.842127,-0.467951,-0.268038,-0.842127,-0.467951,-0.268038,0.657041,-0.741704,0.134803,0.657041,-0.741704,0.134803, + 0.657041,-0.741704,0.134803,0.657041,-0.741704,0.134803,0.663637,0.716468,0.215079,0.663637,0.716468,0.215079, + 0.663637,0.716468,0.215079,0.663637,0.716468,0.215079,-0.648796,0.755487,-0.091122,-0.648796,0.755487,-0.091122, + -0.648796,0.755487,-0.091122,-0.648796,0.755487,-0.091122,-0.732123,-0.642371,-0.226618,-0.732123,-0.642371,-0.226618, + -0.732123,-0.642371,-0.226618,-0.732123,-0.642371,-0.226618,0.578763,-0.812418,0.070784,0.578763,-0.812418,0.070784, + 0.578763,-0.812418,0.070784,0.578763,-0.812418,0.070784,0.668194,-0.741676,0.058594,0.668194,-0.741676,0.058594, + 0.668194,-0.741676,0.058594,0.668194,-0.741676,0.058594,0.626586,-0.776326,0.068614,0.626586,-0.776326,0.068614, + 0.626586,-0.776326,0.068614,0.626586,-0.776326,0.068614,-0.698437,-0.670207,-0.251014,-0.698437,-0.670207,-0.251014, + -0.698437,-0.670207,-0.251014,-0.698437,-0.670207,-0.251014,-0.650152,0.751812,-0.109915,-0.650152,0.751812,-0.109915, + -0.650152,0.751812,-0.109915,-0.650152,0.751812,-0.109915,0.660633,-0.746750,0.076996,0.660633,-0.746750,0.076996, + 0.660633,-0.746750,0.076996,0.660633,-0.746750,0.076996,-0.403929,0.162782,0.900191,-0.403929,0.162782,0.900191, + -0.403929,0.162782,0.900191,-0.403929,0.162782,0.900191,0.565483,0.793211,0.225933,0.565483,0.793211,0.225933, + 0.565483,0.793211,0.225933,0.565483,0.793211,0.225933,-0.270228,-0.084175,0.959110,-0.270228,-0.084175,0.959110, + -0.270228,-0.084175,0.959110,-0.270228,-0.084175,0.959110,0.613925,0.762512,0.204138,0.613925,0.762512,0.204138, + 0.613925,0.762512,0.204138,0.613925,0.762512,0.204138,-0.308626,0.022024,0.950928,-0.308626,0.022024,0.950928, + -0.308626,0.022024,0.950928,-0.308626,0.022024,0.950928,-0.324205,0.025622,0.945640,-0.324205,0.025622,0.945640, + -0.324205,0.025622,0.945640,-0.324205,0.025622,0.945640,0.611360,-0.787368,0.079307,0.611360,-0.787368,0.079307, + 0.611360,-0.787368,0.079307,0.611360,-0.787368,0.079307,-0.730551,-0.639663,-0.239011,-0.730551,-0.639663,-0.239011, + -0.730551,-0.639663,-0.239011,-0.730551,-0.639663,-0.239011,-0.648683,0.753186,-0.109182,-0.648683,0.753186,-0.109182, + -0.648683,0.753186,-0.109182,-0.648683,0.753186,-0.109182,0.610333,0.761934,0.216681,0.610333,0.761934,0.216681, + 0.610333,0.761934,0.216681,0.610333,0.761934,0.216681,0.610363,0.761937,0.216586,0.610363,0.761937,0.216586, + 0.610363,0.761937,0.216586,0.610363,0.761937,0.216586,-0.648604,0.753209,-0.109494,-0.648604,0.753209,-0.109494, + -0.648604,0.753209,-0.109494,-0.648604,0.753209,-0.109494,-0.730570,-0.639665,-0.238947,-0.730570,-0.639665,-0.238947, + -0.730570,-0.639665,-0.238947,-0.730570,-0.639665,-0.238947,0.611158,-0.787442,0.080134,0.611158,-0.787442,0.080134, + 0.611158,-0.787442,0.080134,0.611158,-0.787442,0.080134,-0.324198,0.025620,0.945642,-0.324198,0.025620,0.945642, + -0.324198,0.025620,0.945642,-0.324198,0.025620,0.945642,0.610837,-0.787616,0.080863,0.610837,-0.787616,0.080863, + 0.610837,-0.787616,0.080863,0.610837,-0.787616,0.080863,-0.733990,-0.640055,-0.227128,-0.733990,-0.640055,-0.227128, + -0.733990,-0.640055,-0.227128,-0.733990,-0.640055,-0.227128,-0.648534,0.753257,-0.109581,-0.648534,0.753257,-0.109581, + -0.648534,0.753257,-0.109581,-0.648534,0.753257,-0.109581,0.613754,0.762451,0.204877,0.613754,0.762451,0.204877, + 0.613754,0.762451,0.204877,0.613754,0.762451,0.204877,-0.648734,0.753199,-0.108795,-0.648734,0.753199,-0.108795, + -0.648734,0.753199,-0.108795,-0.648734,0.753199,-0.108795,-0.734176,-0.640132,-0.226311,-0.734176,-0.640132,-0.226311, + -0.734176,-0.640132,-0.226311,-0.734176,-0.640132,-0.226311,0.611356,-0.787422,0.078812,0.611356,-0.787422,0.078812, + 0.611356,-0.787422,0.078812,0.611356,-0.787422,0.078812,0.409806,-0.037580,-0.911398,0.409806,-0.037580,-0.911398, + 0.409806,-0.037580,-0.911398,0.409806,-0.037580,-0.911398,-0.249632,-0.044046,0.967338,-0.249632,-0.044046,0.967338, + -0.249632,-0.044046,0.967338,-0.249632,-0.044046,0.967338,-0.170218,-0.147487,0.974307,-0.170218,-0.147487,0.974307, + -0.170218,-0.147487,0.974307,-0.170218,-0.147487,0.974307,-0.185884,-0.135606,0.973169,-0.185884,-0.135606,0.973169, + -0.185884,-0.135606,0.973169,-0.185884,-0.135606,0.973169,-0.438679,-0.879320,-0.185358,-0.438679,-0.879320,-0.185358, + -0.438679,-0.879320,-0.185358,-0.438679,-0.879320,-0.185358,0.793277,-0.581559,0.180280,0.793277,-0.581559,0.180280, + 0.793277,-0.581559,0.180280,0.793277,-0.581559,0.180280,0.530569,-0.519212,0.670012,0.530569,-0.519212,0.670012, + 0.530569,-0.519212,0.670012,0.530569,-0.519212,0.670012,-0.280057,-0.057023,0.958288,-0.280057,-0.057023,0.958288, + -0.280057,-0.057023,0.958288,-0.280057,-0.057023,0.958288,0.567367,0.794873,0.215107,0.567367,0.794873,0.215107, + 0.567367,0.794873,0.215107,0.567367,0.794873,0.215107,-0.753948,0.627735,-0.193676,-0.753948,0.627735,-0.193676, + -0.753948,0.627735,-0.193676,-0.753948,0.627735,-0.193676,0.841649,-0.495071,-0.215712,0.841649,-0.495071,-0.215712, + 0.841649,-0.495071,-0.215712,0.842592,-0.523787,-0.125247,0.842592,-0.523787,-0.125247,0.842592,-0.523787,-0.125247, + -0.633924,-0.744133,-0.210730,-0.633924,-0.744133,-0.210730,-0.633924,-0.744133,-0.210730,-0.633924,-0.744133,-0.210730, + 0.819017,-0.548424,0.168647,0.819017,-0.548424,0.168647,0.819017,-0.548424,0.168647,0.819017,-0.548424,0.168647, + 0.716219,0.661969,0.220970,0.716219,0.661969,0.220970,0.716219,0.661969,0.220970,0.716219,0.661969,0.220970, + -0.809421,0.564101,-0.163181,-0.809421,0.564101,-0.163181,-0.809421,0.564101,-0.163181,-0.809421,0.564101,-0.163181, + -0.476530,-0.857518,-0.193862,-0.476530,-0.857518,-0.193862,-0.476530,-0.857518,-0.193862,-0.476530,-0.857518,-0.193862, + 0.785502,-0.587051,0.195854,0.785502,-0.587051,0.195854,0.785502,-0.587051,0.195854,0.785502,-0.587051,0.195854, + 0.558893,0.801349,0.213255,0.558893,0.801349,0.213255,0.558893,0.801349,0.213255,0.558893,0.801349,0.213255, + -0.731505,0.659102,-0.174599,-0.731505,0.659102,-0.174599,-0.731505,0.659102,-0.174599,-0.731505,0.659102,-0.174599, + -0.783050,0.576035,-0.234557,-0.783050,0.576035,-0.234557,-0.783050,0.576035,-0.234557,-0.783050,0.576035,-0.234557, + -0.761556,0.615555,-0.202790,-0.761556,0.615555,-0.202790,-0.761556,0.615555,-0.202790,-0.761556,0.615555,-0.202790, + 0.534726,0.826239,0.177191,0.534726,0.826239,0.177191,0.534726,0.826239,0.177191,0.534726,0.826239,0.177191, + 0.794525,-0.579768,0.180549,0.794525,-0.579768,0.180549,0.794525,-0.579768,0.180549,0.794525,-0.579768,0.180549, + -0.786608,0.578976,-0.214559,-0.786608,0.578976,-0.214559,-0.786608,0.578976,-0.214559,-0.786608,0.578976,-0.214559, + -0.039664,-0.246116,0.968428,-0.039664,-0.246116,0.968428,-0.039664,-0.246116,0.968428,-0.039664,-0.246116,0.968428, + -0.378947,-0.914695,-0.140471,-0.378947,-0.914695,-0.140471,-0.378947,-0.914695,-0.140471,-0.378947,-0.914695,-0.140471, + -0.243895,-0.044587,0.968776,-0.243895,-0.044587,0.968776,-0.243895,-0.044587,0.968776,-0.243895,-0.044587,0.968776, + -0.417542,-0.890350,-0.181485,-0.417542,-0.890350,-0.181485,-0.417542,-0.890350,-0.181485,-0.417542,-0.890350,-0.181485, + -0.180229,-0.138075,0.973885,-0.180229,-0.138075,0.973885,-0.180229,-0.138075,0.973885,-0.180229,-0.138075,0.973885, + -0.163673,-0.137588,0.976873,-0.163673,-0.137588,0.976873,-0.163673,-0.137588,0.976873,-0.163673,-0.137588,0.976873, + -0.756569,0.627137,-0.185209,-0.756569,0.627137,-0.185209,-0.756569,0.627137,-0.185209,-0.756569,0.627137,-0.185209, + 0.564083,0.800732,0.201587,0.564083,0.800732,0.201587,0.564083,0.800732,0.201587,0.564083,0.800732,0.201587, + 0.793295,-0.581511,0.180358,0.793295,-0.581511,0.180358,0.793295,-0.581511,0.180358,0.793295,-0.581511,0.180358, + -0.420546,-0.891425,-0.168825,-0.420546,-0.891425,-0.168825,-0.420546,-0.891425,-0.168825,-0.420546,-0.891425,-0.168825, + -0.420527,-0.891416,-0.168922,-0.420527,-0.891416,-0.168922,-0.420527,-0.891416,-0.168922,-0.420527,-0.891416,-0.168922, + 0.793380,-0.581490,0.180048,0.793380,-0.581490,0.180048,0.793380,-0.581490,0.180048,0.793380,-0.581490,0.180048, + 0.564067,0.800727,0.201652,0.564067,0.800727,0.201652,0.564067,0.800727,0.201652,0.564067,0.800727,0.201652, + -0.756805,0.627094,-0.184389,-0.756805,0.627094,-0.184389,-0.756805,0.627094,-0.184389,-0.756805,0.627094,-0.184389, + -0.163667,-0.137587,0.976874,-0.163667,-0.137587,0.976874,-0.163667,-0.137587,0.976874,-0.163667,-0.137587,0.976874, + -0.756925,0.627184,-0.183587,-0.756925,0.627184,-0.183587,-0.756925,0.627184,-0.183587,-0.756925,0.627184,-0.183587, + 0.561302,0.799573,0.213595,0.561302,0.799573,0.213595,0.561302,0.799573,0.213595,0.561302,0.799573,0.213595, + 0.793373,-0.581536,0.179934,0.793373,-0.581536,0.179934,0.793373,-0.581536,0.179934,0.793373,-0.581536,0.179934, + -0.417760,-0.890393,-0.180768,-0.417760,-0.890393,-0.180768,-0.417760,-0.890393,-0.180768,-0.417760,-0.890393,-0.180768, + 0.793161,-0.581582,0.180716,0.793161,-0.581582,0.180716,0.793161,-0.581582,0.180716,0.793161,-0.581582,0.180716, + 0.561052,0.799533,0.214401,0.561052,0.799533,0.214401,0.561052,0.799533,0.214401,0.561052,0.799533,0.214401, + -0.756345,0.627282,-0.185632,-0.756345,0.627282,-0.185632,-0.756345,0.627282,-0.185632,-0.756345,0.627282,-0.185632, + 0.117183,0.202361,-0.972275,0.117183,0.202361,-0.972275,0.117183,0.202361,-0.972275,0.117183,0.202361,-0.972275, + -0.264760,-0.086076,0.960465,-0.264760,-0.086076,0.960465,-0.264760,-0.086076,0.960465,-0.264760,-0.086076,0.960465, + -0.315494,0.033651,0.948331,-0.315494,0.033651,0.948331,-0.315494,0.033651,0.948331,-0.315494,0.033651,0.948331, + -0.303972,0.018232,0.952507,-0.303972,0.018232,0.952507,-0.303972,0.018232,0.952507,-0.303972,0.018232,0.952507, + 0.631593,0.746688,0.208680,0.631593,0.746688,0.208680,0.631593,0.746688,0.208680,0.631593,0.746688,0.208680, + -0.648619,0.753234,-0.109231,-0.648619,0.753234,-0.109231,-0.648619,0.753234,-0.109231,-0.648619,0.753234,-0.109231, + -0.683761,0.592898,0.425374,-0.683761,0.592898,0.425374,-0.683761,0.592898,0.425374,-0.683761,0.592898,0.425374, + -0.232061,-0.080816,0.969338,-0.232061,-0.080816,0.969338,-0.232061,-0.080816,0.969338,-0.232061,-0.080816,0.969338, + -0.738970,-0.634058,-0.227802,-0.738970,-0.634058,-0.227802,-0.738970,-0.634058,-0.227802,-0.738970,-0.634058,-0.227802, + 0.613268,-0.786708,0.070656,0.613268,-0.786708,0.070656,0.613268,-0.786708,0.070656,0.613268,-0.786708,0.070656, + -0.507900,0.708602,-0.489818,-0.507900,0.708602,-0.489818,-0.507900,0.708602,-0.489818,-0.548465,0.730523,-0.406843, + -0.548465,0.730523,-0.406843,-0.548465,0.730523,-0.406843,0.783255,0.567695,0.253444,0.783255,0.567695,0.253444, + 0.783255,0.567695,0.253444,0.783255,0.567695,0.253444,-0.670884,0.728705,-0.137491,-0.670884,0.728705,-0.137491, + -0.670884,0.728705,-0.137491,-0.670884,0.728705,-0.137491,-0.842126,-0.467953,-0.268037,-0.842126,-0.467953,-0.268037, + -0.842126,-0.467953,-0.268037,-0.842126,-0.467953,-0.268037,0.657042,-0.741704,0.134801,0.657042,-0.741704,0.134801, + 0.657042,-0.741704,0.134801,0.657042,-0.741704,0.134801,0.663638,0.716467,0.215081,0.663638,0.716467,0.215081, + 0.663638,0.716467,0.215081,0.663638,0.716467,0.215081,-0.648792,0.755490,-0.091123,-0.648792,0.755490,-0.091123, + -0.648792,0.755490,-0.091123,-0.648792,0.755490,-0.091123,-0.732119,-0.642375,-0.226618,-0.732119,-0.642375,-0.226618, + -0.732119,-0.642375,-0.226618,-0.732119,-0.642375,-0.226618,0.578764,-0.812417,0.070785,0.578764,-0.812417,0.070785, + 0.578764,-0.812417,0.070785,0.578764,-0.812417,0.070785,0.668192,-0.741678,0.058592,0.668192,-0.741678,0.058592, + 0.668192,-0.741678,0.058592,0.668192,-0.741678,0.058592,0.626588,-0.776325,0.068614,0.626588,-0.776325,0.068614, + 0.626588,-0.776325,0.068614,0.626588,-0.776325,0.068614,-0.698440,-0.670204,-0.251012,-0.698440,-0.670204,-0.251012, + -0.698440,-0.670204,-0.251012,-0.698440,-0.670204,-0.251012,-0.650154,0.751810,-0.109916,-0.650154,0.751810,-0.109916, + -0.650154,0.751810,-0.109916,-0.650154,0.751810,-0.109916,0.660625,-0.746758,0.076989,0.660625,-0.746758,0.076989, + 0.660625,-0.746758,0.076989,0.660625,-0.746758,0.076989,-0.403899,0.162784,0.900204,-0.403899,0.162784,0.900204, + -0.403899,0.162784,0.900204,-0.403899,0.162784,0.900204,0.565487,0.793208,0.225933,0.565487,0.793208,0.225933, + 0.565487,0.793208,0.225933,0.565487,0.793208,0.225933,-0.270222,-0.084171,0.959112,-0.270222,-0.084171,0.959112, + -0.270222,-0.084171,0.959112,-0.270222,-0.084171,0.959112,0.613921,0.762514,0.204141,0.613921,0.762514,0.204141, + 0.613921,0.762514,0.204141,0.613921,0.762514,0.204141,-0.308625,0.022023,0.950929,-0.308625,0.022023,0.950929, + -0.308625,0.022023,0.950929,-0.308625,0.022023,0.950929,-0.324195,0.025629,0.945643,-0.324195,0.025629,0.945643, + -0.324195,0.025629,0.945643,-0.324195,0.025629,0.945643,0.611359,-0.787369,0.079306,0.611359,-0.787369,0.079306, + 0.611359,-0.787369,0.079306,0.611359,-0.787369,0.079306,-0.730558,-0.639655,-0.239013,-0.730558,-0.639655,-0.239013, + -0.730558,-0.639655,-0.239013,-0.730558,-0.639655,-0.239013,-0.648682,0.753188,-0.109182,-0.648682,0.753188,-0.109182, + -0.648682,0.753188,-0.109182,-0.648682,0.753188,-0.109182,0.610337,0.761930,0.216682,0.610337,0.761930,0.216682, + 0.610337,0.761930,0.216682,0.610337,0.761930,0.216682,0.610367,0.761934,0.216583,0.610367,0.761934,0.216583, + 0.610367,0.761934,0.216583,0.610367,0.761934,0.216583,-0.648603,0.753210,-0.109491,-0.648603,0.753210,-0.109491, + -0.648603,0.753210,-0.109491,-0.648603,0.753210,-0.109491,-0.730572,-0.639662,-0.238950,-0.730572,-0.639662,-0.238950, + -0.730572,-0.639662,-0.238950,-0.730572,-0.639662,-0.238950,0.611157,-0.787443,0.080134,0.611157,-0.787443,0.080134, + 0.611157,-0.787443,0.080134,0.611157,-0.787443,0.080134,-0.324200,0.025623,0.945641,-0.324200,0.025623,0.945641, + -0.324200,0.025623,0.945641,-0.324200,0.025623,0.945641,0.610840,-0.787614,0.080865,0.610840,-0.787614,0.080865, + 0.610840,-0.787614,0.080865,0.610840,-0.787614,0.080865,-0.733986,-0.640060,-0.227128,-0.733986,-0.640060,-0.227128, + -0.733986,-0.640060,-0.227128,-0.733986,-0.640060,-0.227128,-0.648534,0.753257,-0.109580,-0.648534,0.753257,-0.109580, + -0.648534,0.753257,-0.109580,-0.648534,0.753257,-0.109580,0.613759,0.762447,0.204877,0.613759,0.762447,0.204877, + 0.613759,0.762447,0.204877,0.613759,0.762447,0.204877,-0.648734,0.753198,-0.108796,-0.648734,0.753198,-0.108796, + -0.648734,0.753198,-0.108796,-0.648734,0.753198,-0.108796,-0.734177,-0.640131,-0.226309,-0.734177,-0.640131,-0.226309, + -0.734177,-0.640131,-0.226309,-0.734177,-0.640131,-0.226309,0.611355,-0.787422,0.078809,0.611355,-0.787422,0.078809, + 0.611355,-0.787422,0.078809,0.611355,-0.787422,0.078809,0.411678,0.158110,-0.897509,0.411678,0.158110,-0.897509, + 0.411678,0.158110,-0.897509,0.411678,0.158110,-0.897509,-0.271021,-0.050420,0.961252,-0.271021,-0.050420,0.961252, + -0.271021,-0.050420,0.961252,-0.271021,-0.050420,0.961252,-0.144800,-0.031540,0.988958,-0.144800,-0.031540,0.988958, + -0.144800,-0.031540,0.988958,-0.144800,-0.031540,0.988958,-0.162626,-0.039359,0.985903,-0.162626,-0.039359,0.985903, + -0.162626,-0.039359,0.985903,-0.162626,-0.039359,0.985903,0.542658,-0.836435,0.076801,0.542658,-0.836435,0.076801, + 0.542658,-0.836435,0.076801,0.542658,-0.836435,0.076801,0.862726,0.428934,0.267805,0.862726,0.428934,0.267805, + 0.862726,0.428934,0.267805,0.862726,0.428934,0.267805,0.584321,0.328150,0.742217,0.584321,0.328150,0.742217, + 0.584321,0.328150,0.742217,0.584321,0.328150,0.742217,-0.274215,-0.084411,0.957957,-0.274215,-0.084411,0.957957, + -0.274215,-0.084411,0.957957,-0.274215,-0.084411,0.957957,-0.411074,0.910914,-0.035413,-0.411074,0.910914,-0.035413, + -0.411074,0.910914,-0.035413,-0.411074,0.910914,-0.035413,-0.878531,-0.375503,-0.295266,-0.878531,-0.375503,-0.295266, + -0.878531,-0.375503,-0.295266,-0.878531,-0.375503,-0.295266,0.888645,0.436865,-0.139493,0.888645,0.436865,-0.139493, + 0.888645,0.436865,-0.139493,0.896405,0.440949,-0.044965,0.896405,0.440949,-0.044965,0.896405,0.440949,-0.044965, + 0.333459,-0.942246,0.031255,0.333459,-0.942246,0.031255,0.333459,-0.942246,0.031255,0.333459,-0.942246,0.031255, + 0.850481,0.464765,0.246323,0.850481,0.464765,0.246323,0.850481,0.464765,0.246323,0.850481,0.464765,0.246323, + -0.224140,0.974538,-0.006035,-0.224140,0.974538,-0.006035,-0.224140,0.974538,-0.006035,-0.224140,0.974538,-0.006035, + -0.859638,-0.447926,-0.245733,-0.859638,-0.447926,-0.245733,-0.859638,-0.447926,-0.245733,-0.859638,-0.447926,-0.245733, + 0.506441,-0.859773,0.065641,0.506441,-0.859773,0.065641,0.506441,-0.859773,0.065641,0.506441,-0.859773,0.065641, + 0.860420,0.422594,0.284766,0.860420,0.422594,0.284766,0.860420,0.422594,0.284766,0.860420,0.422594,0.284766, + -0.420526,0.906473,-0.038271,-0.420526,0.906473,-0.038271,-0.420526,0.906473,-0.038271,-0.420526,0.906473,-0.038271, + -0.896681,-0.337498,-0.286460,-0.896681,-0.337498,-0.286460,-0.896681,-0.337498,-0.286460,-0.896681,-0.337498,-0.286460, + -0.842800,-0.433193,-0.319424,-0.842800,-0.433193,-0.319424,-0.842800,-0.433193,-0.319424,-0.842800,-0.433193,-0.319424, + -0.870595,-0.389640,-0.300409,-0.870595,-0.389640,-0.300409,-0.870595,-0.389640,-0.300409,-0.870595,-0.389640,-0.300409, + -0.447138,0.891080,-0.077743,-0.447138,0.891080,-0.077743,-0.447138,0.891080,-0.077743,-0.447138,0.891080,-0.077743, + 0.861827,0.430914,0.267520,0.861827,0.430914,0.267520,0.861827,0.430914,0.267520,0.861827,0.430914,0.267520, + -0.850784,-0.431005,-0.300668,-0.850784,-0.431005,-0.300668,-0.850784,-0.431005,-0.300668,-0.850784,-0.431005,-0.300668, + 0.006203,0.030878,0.999504,0.006203,0.030878,0.999504,0.006203,0.030878,0.999504,0.006203,0.030878,0.999504, + 0.594796,-0.794098,0.125007,0.594796,-0.794098,0.125007,0.594796,-0.794098,0.125007,0.594796,-0.794098,0.125007, + -0.267869,-0.045517,0.962379,-0.267869,-0.045517,0.962379,-0.267869,-0.045517,0.962379,-0.267869,-0.045517,0.962379, + 0.562078,-0.823020,0.081894,0.562078,-0.823020,0.081894,0.562078,-0.823020,0.081894,0.562078,-0.823020,0.081894, + -0.157756,-0.035596,0.986836,-0.157756,-0.035596,0.986836,-0.157756,-0.035596,0.986836,-0.157756,-0.035596,0.986836, + -0.150178,-0.020662,0.988443,-0.150178,-0.020662,0.988443,-0.150178,-0.020662,0.988443,-0.150178,-0.020662,0.988443, + -0.880951,-0.376416,-0.286769,-0.880951,-0.376416,-0.286769,-0.880951,-0.376416,-0.286769,-0.880951,-0.376416,-0.286769, + -0.415170,0.908384,-0.049722,-0.415170,0.908384,-0.049722,-0.415170,0.908384,-0.049722,-0.415170,0.908384,-0.049722, + 0.862682,0.428983,0.267867,0.862682,0.428983,0.267867,0.862682,0.428983,0.267867,0.862682,0.428983,0.267867, + 0.559085,-0.823697,0.094587,0.559085,-0.823697,0.094587,0.559085,-0.823697,0.094587,0.559085,-0.823697,0.094587, + 0.559110,-0.823691,0.094493,0.559110,-0.823691,0.094493,0.559110,-0.823691,0.094493,0.559110,-0.823691,0.094493, + 0.862769,0.429003,0.267555,0.862769,0.429003,0.267555,0.862769,0.429003,0.267555,0.862769,0.429003,0.267555, + -0.415187,0.908380,-0.049651,-0.415187,0.908380,-0.049651,-0.415187,0.908380,-0.049651,-0.415187,0.908380,-0.049651, + -0.881186,-0.376487,-0.285951,-0.881186,-0.376487,-0.285951,-0.881186,-0.376487,-0.285951,-0.881186,-0.376487,-0.285951, + -0.150178,-0.020666,0.988443,-0.150178,-0.020666,0.988443,-0.150178,-0.020666,0.988443,-0.150178,-0.020666,0.988443, + -0.881472,-0.376392,-0.285193,-0.881472,-0.376392,-0.285193,-0.881472,-0.376392,-0.285193,-0.881472,-0.376392,-0.285193, + -0.417862,0.907730,-0.037655,-0.417862,0.907730,-0.037655,-0.417862,0.907730,-0.037655,-0.417862,0.907730,-0.037655, + 0.862821,0.428958,0.267459,0.862821,0.428958,0.267459,0.862821,0.428958,0.267459,0.862821,0.428958,0.267459, + 0.561870,-0.823090,0.082619,0.561870,-0.823090,0.082619,0.561870,-0.823090,0.082619,0.561870,-0.823090,0.082619, + 0.862606,0.428905,0.268239,0.862606,0.428905,0.268239,0.862606,0.428905,0.268239,0.862606,0.428905,0.268239, + -0.418098,0.907654,-0.036850,-0.418098,0.907654,-0.036850,-0.418098,0.907654,-0.036850,-0.418098,0.907654,-0.036850, + -0.880878,-0.376234,-0.287231,-0.880878,-0.376234,-0.287231,-0.880878,-0.376234,-0.287231,-0.880878,-0.376234,-0.287231, + 0.077574,0.141271,-0.986927,0.077574,0.141271,-0.986927,0.077574,0.141271,-0.986927,0.077574,0.141271,-0.986927, + -0.256614,-0.088617,0.962443,-0.256614,-0.088617,0.962443,-0.256614,-0.088617,0.962443,-0.256614,-0.088617,0.962443, + -0.298179,-0.026300,0.954148,-0.298179,-0.026300,0.954148,-0.298179,-0.026300,0.954148,-0.298179,-0.026300,0.954148, + -0.346788,0.002616,0.937940,-0.346788,0.002616,0.937940,-0.346788,0.002616,0.937940,-0.346788,0.002616,0.937940, + 0.286146,0.949471,0.128942,0.286146,0.949471,0.128942,0.286146,0.949471,0.128942,0.286146,0.949471,0.128942, + -0.872989,0.450366,-0.187246,-0.872989,0.450366,-0.187246,-0.872989,0.450366,-0.187246,-0.872989,0.450366,-0.187246, + -0.870079,0.338073,0.358706,-0.870079,0.338073,0.358706,-0.870079,0.338073,0.358706,-0.870079,0.338073,0.358706, + -0.228471,-0.070979,0.970960,-0.228471,-0.070979,0.970960,-0.228471,-0.070979,0.970960,-0.228471,-0.070979,0.970960, + -0.441625,-0.882081,-0.164013,-0.441625,-0.882081,-0.164013,-0.441625,-0.882081,-0.164013,-0.441625,-0.882081,-0.164013, + 0.852419,-0.498302,0.158355,0.852419,-0.498302,0.158355,0.852419,-0.498302,0.158355,0.852419,-0.498302,0.158355, + -0.708884,0.425774,-0.562316,-0.708884,0.425774,-0.562316,-0.708884,0.425774,-0.562316,-0.758228,0.438827,-0.482204, + -0.758228,0.438827,-0.482204,-0.758228,0.438827,-0.482204,0.511880,0.835432,0.200082,0.511880,0.835432,0.200082, + 0.511880,0.835432,0.200082,0.511880,0.835432,0.200082,-0.883114,0.417051,-0.214892,-0.883114,0.417051,-0.214892, + -0.883114,0.417051,-0.214892,-0.883114,0.417051,-0.214892,-0.602254,-0.765920,-0.225071,-0.602254,-0.765920,-0.225071, + -0.602254,-0.765920,-0.225071,-0.602254,-0.765920,-0.225071,0.875078,-0.434374,0.213441,0.875078,-0.434374,0.213441, + 0.875078,-0.434374,0.213441,0.875078,-0.434374,0.213441,0.348160,0.925982,0.146086,0.348160,0.925982,0.146086, + 0.348160,0.925982,0.146086,0.348160,0.925982,0.146086,-0.874296,0.454156,-0.171317,-0.874296,0.454156,-0.171317, + -0.874296,0.454156,-0.171317,-0.874296,0.454156,-0.171317,-0.438321,-0.883448,-0.165514,-0.438321,-0.883448,-0.165514, + -0.438321,-0.883448,-0.165514,-0.438321,-0.883448,-0.165514,0.830663,-0.534370,0.156361,0.830663,-0.534370,0.156361, + 0.830663,-0.534370,0.156361,0.830663,-0.534370,0.156361,0.888730,-0.437266,0.137684,0.888730,-0.437266,0.137684, + 0.888730,-0.437266,0.137684,0.888730,-0.437266,0.137684,0.842339,-0.513164,0.164705,0.842339,-0.513164,0.164705, + 0.842339,-0.513164,0.164705,0.842339,-0.513164,0.164705,-0.432511,-0.883905,-0.177894,-0.432511,-0.883905,-0.177894, + -0.432511,-0.883905,-0.177894,-0.432511,-0.883905,-0.177894,-0.870438,0.452682,-0.193436,-0.870438,0.452682,-0.193436, + -0.870438,0.452682,-0.193436,-0.870438,0.452682,-0.193436,0.882740,-0.443045,0.156464,0.882740,-0.443045,0.156464, + 0.882740,-0.443045,0.156464,0.882740,-0.443045,0.156464,-0.473911,0.085497,0.876412,-0.473911,0.085497,0.876412, + -0.473911,0.085497,0.876412,-0.473911,0.085497,0.876412,0.310109,0.938876,0.149482,0.310109,0.938876,0.149482, + 0.310109,0.938876,0.149482,0.310109,0.938876,0.149482,-0.367723,-0.042730,0.928953,-0.367723,-0.042730,0.928953, + -0.367723,-0.042730,0.928953,-0.367723,-0.042730,0.928953,0.285647,0.949446,0.130220,0.285647,0.949446,0.130220, + 0.285647,0.949446,0.130220,0.285647,0.949446,0.130220,-0.336277,-0.005410,0.941748,-0.336277,-0.005410,0.941748, + -0.336277,-0.005410,0.941748,-0.336277,-0.005410,0.941748,-0.351858,-0.008242,0.936017,-0.351858,-0.008242,0.936017, + -0.351858,-0.008242,0.936017,-0.351858,-0.008242,0.936017,0.851534,-0.498472,0.162530,0.851534,-0.498472,0.162530, + 0.851534,-0.498472,0.162530,0.851534,-0.498472,0.162530,-0.437304,-0.881502,-0.178099,-0.437304,-0.881502,-0.178099, + -0.437304,-0.881502,-0.178099,-0.437304,-0.881502,-0.178099,-0.872567,0.450430,-0.189052,-0.872567,0.450430,-0.189052, + -0.872567,0.450430,-0.189052,-0.872567,0.450430,-0.189052,0.281975,0.948746,0.142730,0.281975,0.948746,0.142730, + 0.281975,0.948746,0.142730,0.281975,0.948746,0.142730,0.311542,0.938247,0.150446,0.311542,0.938247,0.150446, + 0.311542,0.938247,0.150446,0.311542,0.938247,0.150446,-0.872494,0.450439,-0.189365,-0.872494,0.450439,-0.189365, + -0.872494,0.450439,-0.189365,-0.872494,0.450439,-0.189365,-0.498390,-0.845191,-0.193026,-0.498390,-0.845191,-0.193026, + -0.498390,-0.845191,-0.193026,-0.498390,-0.845191,-0.193026,0.848749,-0.499353,0.173987,0.848749,-0.499353,0.173987, + 0.848749,-0.499353,0.173987,0.848749,-0.499353,0.173987,-0.381374,0.009744,0.924370,-0.381374,0.009744,0.924370, + -0.381374,0.009744,0.924370,-0.381374,0.009744,0.924370,0.858184,-0.496072,0.132034,0.858184,-0.496072,0.132034, + 0.858184,-0.496072,0.132034,0.858184,-0.496072,0.132034,-0.485446,-0.856397,-0.175858,-0.485446,-0.856397,-0.175858, + -0.485446,-0.856397,-0.175858,-0.485446,-0.856397,-0.175858,-0.875140,0.449737,-0.178511,-0.875140,0.449737,-0.178511, + -0.875140,0.449737,-0.178511,-0.875140,0.449737,-0.178511,0.355656,0.922565,0.149606,0.355656,0.922565,0.149606, + 0.355656,0.922565,0.149606,0.355656,0.922565,0.149606,-0.872637,0.450455,-0.188669,-0.872637,0.450455,-0.188669, + -0.872637,0.450455,-0.188669,-0.872637,0.450455,-0.188669,-0.441043,-0.882106,-0.165439,-0.441043,-0.882106,-0.165439, + -0.441043,-0.882106,-0.165439,-0.441043,-0.882106,-0.165439,0.851573,-0.498564,0.162041,0.851573,-0.498564,0.162041, + 0.851573,-0.498564,0.162041,0.851573,-0.498564,0.162041,0.252857,-0.026584,-0.967138,0.252857,-0.026584,-0.967138, + 0.252857,-0.026584,-0.967138,0.252857,-0.026584,-0.967138,0.843027,-0.094263,0.529548,0.843027,-0.094263,0.529548, + 0.843027,-0.094263,0.529548,0.862559,0.268282,-0.428971,0.862559,0.268282,-0.428971,0.862559,0.268282,-0.428971, + 0.227114,0.893371,-0.387696,0.227114,0.893371,-0.387696,0.227114,0.893371,-0.387696,0.470235,0.769698,0.431791, + 0.470235,0.769698,0.431791,0.470235,0.769698,0.431791,0.015094,0.251261,0.967802,0.015094,0.251261,0.967802, + 0.015094,0.251261,0.967802,0.015094,0.251261,0.967802,-0.599065,0.386433,0.701278,-0.599065,0.386433,0.701278, + -0.599065,0.386433,0.701278,-0.599065,0.386433,0.701278,0.360854,0.834868,-0.415669,0.360854,0.834868,-0.415669, + 0.360854,0.834868,-0.415669,0.360854,0.834868,-0.415669,0.540965,-0.497144,-0.678383,0.540965,-0.497144,-0.678383, + 0.540965,-0.497144,-0.678383,0.540965,-0.497144,-0.678383,0.249172,0.644717,-0.722671,0.249172,0.644717,-0.722671, + 0.249172,0.644717,-0.722671,0.249172,0.644717,-0.722671,-0.732832,0.670876,0.113500,-0.732832,0.670876,0.113500, + -0.732832,0.670876,0.113500,-0.732832,0.670876,0.113500,-0.488187,-0.779975,0.391552,-0.488187,-0.779975,0.391552, + -0.488187,-0.779975,0.391552,-0.488187,-0.779975,0.391552,0.113928,-0.204574,0.972199,0.113928,-0.204574,0.972199, + 0.113928,-0.204574,0.972199,0.750311,-0.214315,0.625382,0.750311,-0.214315,0.625382,0.750311,-0.214315,0.625382, + 0.596691,0.645280,0.477046,0.596691,0.645280,0.477046,0.596691,0.645280,0.477046,-0.270909,0.446962,0.852545, + -0.270909,0.446962,0.852545,-0.270909,0.446962,0.852545,-0.308451,-0.200635,-0.929841,-0.308451,-0.200635,-0.929841, + -0.308451,-0.200635,-0.929841,-0.308451,-0.200635,-0.929841,-0.308084,0.096602,0.946442,-0.308084,0.096602,0.946442, + -0.308084,0.096602,0.946442,-0.308084,0.096602,0.946442,-0.946283,-0.282776,0.156798,-0.946283,-0.282776,0.156798, + -0.946283,-0.282776,0.156798,-0.946283,-0.282776,0.156798,0.693578,-0.179872,0.697563,0.693578,-0.179872,0.697563, + 0.693578,-0.179872,0.697563,0.693578,-0.179872,0.697563,-0.634010,0.436624,0.638272,-0.634010,0.436624,0.638272, + -0.634010,0.436624,0.638272,-0.634010,0.436624,0.638272,0.870390,-0.343401,-0.352841,0.870390,-0.343401,-0.352841, + 0.870390,-0.343401,-0.352841,0.870390,-0.343401,-0.352841,-0.141870,-0.116104,-0.983053,-0.141870,-0.116104,-0.983053, + -0.141870,-0.116104,-0.983053,-0.141870,-0.116104,-0.983053,-0.788711,0.608713,0.086045,-0.788711,0.608713,0.086045, + -0.788711,0.608713,0.086045,-0.788711,0.608713,0.086045,-0.407609,-0.774992,0.482951,-0.407609,-0.774992,0.482951, + -0.407609,-0.774992,0.482951,-0.407609,-0.774992,0.482951,0.900735,-0.415413,-0.126917,0.900735,-0.415413,-0.126917, + 0.900735,-0.415413,-0.126917,0.900735,-0.415413,-0.126917,-0.746859,-0.309512,0.588560,-0.746859,-0.309512,0.588560, + -0.746859,-0.309512,0.588560,-0.070991,-0.778061,0.624164,-0.070991,-0.778061,0.624164,-0.070991,-0.778061,0.624164, + -0.070954,-0.934609,-0.348529,-0.070954,-0.934609,-0.348529,-0.070954,-0.934609,-0.348529,-0.837098,-0.508332,-0.202151, + -0.837098,-0.508332,-0.202151,-0.837098,-0.508332,-0.202151,-0.571032,0.436241,-0.695425,-0.571032,0.436241,-0.695425, + -0.571032,0.436241,-0.695425,-0.571032,0.436241,-0.695425,-0.419427,0.442386,0.792701,-0.419427,0.442386,0.792701, + -0.419427,0.442386,0.792701,-0.419427,0.442386,0.792701,0.851114,0.076793,0.519333,0.851114,0.076793,0.519333, + 0.851114,0.076793,0.519333,0.851114,0.076793,0.519333,0.406792,0.436737,0.802360,0.406792,0.436737,0.802360, + 0.406792,0.436737,0.802360,-0.677951,0.708455,0.196147,-0.677951,0.708455,0.196147,-0.677951,0.708455,0.196147, + 0.976081,-0.181928,0.119033,0.976081,-0.181928,0.119033,0.976081,-0.181928,0.119033,-0.160927,-0.130225,-0.978337, + -0.160927,-0.130225,-0.978337,-0.160927,-0.130225,-0.978337,0.034338,-0.809155,0.586591,0.034338,-0.809155,0.586591, + 0.034338,-0.809155,0.586591,0.034338,-0.809155,0.586591,-0.481432,0.268221,0.834434,-0.481432,0.268221,0.834434, + -0.481432,0.268221,0.834434,-0.481432,0.268221,0.834434,0.167619,-0.685496,-0.708519,0.167619,-0.685496,-0.708519, + 0.167619,-0.685496,-0.708519,0.167619,-0.685496,-0.708519,-0.525525,0.588012,-0.614870,-0.525525,0.588012,-0.614870, + -0.525525,0.588012,-0.614870,-0.525525,0.588012,-0.614870,0.722205,0.440606,0.533186,0.722205,0.440606,0.533186, + 0.722205,0.440606,0.533186,0.722205,0.440606,0.533186,-0.926991,0.155875,-0.341162,-0.926991,0.155875,-0.341162, + -0.926991,0.155875,-0.341162,-0.926991,0.155875,-0.341162,-0.441697,0.897146,0.005758,-0.441697,0.897146,0.005758, + -0.441697,0.897146,0.005758,-0.441697,0.897146,0.005758,0.291328,0.953738,-0.074248,0.291328,0.953738,-0.074248, + 0.291328,0.953738,-0.074248,0.291328,0.953738,-0.074248,0.083172,-0.797252,-0.597890,0.083172,-0.797252,-0.597890, + 0.083172,-0.797252,-0.597890,-0.011401,0.935158,0.354048,-0.011401,0.935158,0.354048,-0.011401,0.935158,0.354048, + -0.011401,0.935158,0.354048,0.261966,0.700893,-0.663418,0.261966,0.700893,-0.663418,0.261966,0.700893,-0.663418, + -0.834250,0.302943,0.460708,-0.834250,0.302943,0.460708,-0.834250,0.302943,0.460708,-0.834250,0.302943,0.460708, + -0.601866,-0.721539,0.342256,-0.601866,-0.721539,0.342256,-0.601866,-0.721539,0.342256,-0.601866,-0.721539,0.342256, + 0.590202,0.057652,-0.805194,0.590202,0.057652,-0.805194,0.590202,0.057652,-0.805194,0.367231,0.585425,0.722785, + 0.367231,0.585425,0.722785,0.367231,0.585425,0.722785,-0.862537,-0.299884,0.407552,-0.862537,-0.299884,0.407552, + -0.862537,-0.299884,0.407552,-0.862537,-0.299884,0.407552,-0.435888,0.434102,0.788389,-0.435888,0.434102,0.788389, + -0.435888,0.434102,0.788389,-0.435888,0.434102,0.788389,0.436036,0.476097,0.763678,0.436036,0.476097,0.763678, + 0.436036,0.476097,0.763678,0.436036,0.476097,0.763678,-0.132949,-0.405700,0.904285,-0.132949,-0.405700,0.904285, + -0.132949,-0.405700,0.904285,-0.359887,-0.626139,0.691687,-0.359887,-0.626139,0.691687,-0.359887,-0.626139,0.691687, + 0.268318,-0.333696,0.903688,0.268318,-0.333696,0.903688,0.268318,-0.333696,0.903688,-0.990751,0.101837,-0.089675, + -0.990751,0.101837,-0.089675,-0.990751,0.101837,-0.089675,-0.990751,0.101837,-0.089675,-0.541145,0.611419,0.577346, + -0.541145,0.611419,0.577346,-0.541145,0.611419,0.577346,-0.541145,0.611419,0.577346,0.987262,0.116306,-0.108571, + 0.987262,0.116306,-0.108571,0.987262,0.116306,-0.108571,-0.040634,0.661166,-0.749138,-0.040634,0.661166,-0.749138, + -0.040634,0.661166,-0.749138,0.990624,0.111381,-0.079114,0.990624,0.111381,-0.079114,0.990624,0.111381,-0.079114, + 0.643182,-0.452095,0.618003,0.643182,-0.452095,0.618003,0.643182,-0.452095,0.618003,0.643182,-0.452095,0.618003, + 0.195934,0.882768,0.427001,0.195934,0.882768,0.427001,0.195934,0.882768,0.427001,0.165879,-0.833140,0.527600, + 0.165879,-0.833140,0.527600,0.165879,-0.833140,0.527600,0.000595,0.640572,-0.767898,0.000595,0.640572,-0.767898, + 0.000595,0.640572,-0.767898,0.000595,0.640572,-0.767898,-0.574798,-0.670377,0.469257,-0.574798,-0.670377,0.469257, + -0.574798,-0.670377,0.469257,-0.574798,-0.670377,0.469257,-0.064379,0.494599,0.866734,-0.064379,0.494599,0.866734, + -0.064379,0.494599,0.866734,-0.064379,0.494599,0.866734,-0.122519,0.327807,0.936767,-0.122519,0.327807,0.936767, + -0.122519,0.327807,0.936767,-0.682809,-0.655730,0.322165,-0.682809,-0.655730,0.322165,-0.682809,-0.655730,0.322165, + -0.682809,-0.655730,0.322165,0.747935,0.321940,-0.580472,0.747935,0.321940,-0.580472,0.747935,0.321940,-0.580472, + 0.747935,0.321940,-0.580472,0.827080,-0.095186,0.553965,0.827080,-0.095186,0.553965,0.827080,-0.095186,0.553965, + 0.827080,-0.095186,0.553965,-0.706069,0.225674,-0.671221,-0.706069,0.225674,-0.671221,-0.706069,0.225674,-0.671221, + -0.706069,0.225674,-0.671221,-0.595848,-0.207790,-0.775750,-0.595848,-0.207790,-0.775750,-0.595848,-0.207790,-0.775750, + -0.588173,-0.066280,-0.806015,-0.588173,-0.066280,-0.806015,-0.588173,-0.066280,-0.806015,-0.665106,-0.208493,-0.717053, + -0.665106,-0.208493,-0.717053,-0.665106,-0.208493,-0.717053,-0.738784,0.474651,-0.478441,-0.738784,0.474651,-0.478441, + -0.738784,0.474651,-0.478441,-0.458798,-0.644647,0.611502,-0.458798,-0.644647,0.611502,-0.458798,-0.644647,0.611502, + -0.458798,-0.644647,0.611502,-0.020607,0.075415,0.996939,-0.020607,0.075415,0.996939,-0.020607,0.075415,0.996939, + -0.020607,0.075415,0.996939,-0.020607,0.075415,0.996939,0.053375,0.932578,-0.357000,0.053375,0.932578,-0.357000, + 0.053375,0.932578,-0.357000,0.053375,0.932578,-0.357000,0.525842,0.316947,0.789325,0.525842,0.316947,0.789325, + 0.525842,0.316947,0.789325,0.571091,0.478191,0.667224,0.571091,0.478191,0.667224,0.571091,0.478191,0.667224, + 0.536070,0.331276,0.776456,0.536070,0.331276,0.776456,0.536070,0.331276,0.776456,0.184562,-0.102670,-0.977443, + 0.184562,-0.102670,-0.977443,0.184562,-0.102670,-0.977443,0.184562,-0.102670,-0.977443,0.734100,0.513933,-0.443813, + 0.734100,0.513933,-0.443813,0.734100,0.513933,-0.443813,0.734100,0.513933,-0.443813,-0.416462,0.467152,0.779954, + -0.416462,0.467152,0.779954,-0.416462,0.467152,0.779954,-0.416462,0.467152,0.779954,-0.918524,-0.315279,0.238564, + -0.918524,-0.315279,0.238564,-0.918524,-0.315279,0.238564,-0.918524,-0.315279,0.238564,-0.807797,0.390839,-0.441258, + -0.807797,0.390839,-0.441258,-0.807797,0.390839,-0.441258,-0.807797,0.390839,-0.441258,0.228299,0.901459,-0.367765, + 0.228299,0.901459,-0.367765,0.228299,0.901459,-0.367765,0.228299,0.901459,-0.367765,0.397105,0.808814,0.433737, + 0.397105,0.808814,0.433737,0.397105,0.808814,0.433737,0.397105,0.808814,0.433737,0.956113,-0.186379,0.226079, + 0.956113,-0.186379,0.226079,0.956113,-0.186379,0.226079,0.956113,-0.186379,0.226079,0.086100,0.995696,-0.034309, + 0.086100,0.995696,-0.034309,0.086100,0.995696,-0.034309,-0.826244,0.143490,0.544730,-0.826244,0.143490,0.544730, + -0.826244,0.143490,0.544730,-0.826244,0.143490,0.544730,-0.574096,-0.697646,0.428607,-0.574096,-0.697646,0.428607, + -0.574096,-0.697646,0.428607,0.982225,0.090050,-0.164696,0.982225,0.090050,-0.164696,0.982225,0.090050,-0.164696, + 0.293770,0.439674,0.848755,0.293770,0.439674,0.848755,0.293770,0.439674,0.848755,0.293770,0.439674,0.848755, + 0.143891,-0.667925,0.730186,0.143891,-0.667925,0.730186,0.143891,-0.667925,0.730186,0.143891,-0.667925,0.730186, + 0.433152,0.758501,0.486884,0.433152,0.758501,0.486884,0.433152,0.758501,0.486884,0.433152,0.758501,0.486884, + 0.013530,-0.343615,0.939013,0.013530,-0.343615,0.939013,0.013530,-0.343615,0.939013,0.013530,-0.343615,0.939013, + -0.419752,0.772224,-0.476946,-0.419752,0.772224,-0.476946,-0.419752,0.772224,-0.476946,0.096735,0.856784,-0.506522, + 0.096735,0.856784,-0.506522,0.096735,0.856784,-0.506522,0.096735,0.856784,-0.506522,-0.164737,0.626443,-0.761860, + -0.164737,0.626443,-0.761860,-0.164737,0.626443,-0.761860,-0.164737,0.626443,-0.761860,-0.746334,-0.538679,-0.390909, + -0.746334,-0.538679,-0.390909,-0.746334,-0.538679,-0.390909,-0.553958,0.485488,-0.676337,-0.553958,0.485488,-0.676337, + -0.553958,0.485488,-0.676337,-0.773307,0.379281,-0.508076,-0.773307,0.379281,-0.508076,-0.773307,0.379281,-0.508076, + -0.773307,0.379281,-0.508076,-0.797875,0.593491,-0.105659,-0.797875,0.593491,-0.105659,-0.797875,0.593491,-0.105659, + -0.997998,0.014937,0.061456,-0.997998,0.014937,0.061456,-0.997998,0.014937,0.061456,-0.879748,0.474685,0.026798, + -0.879748,0.474685,0.026798,-0.879748,0.474685,0.026798,-0.634743,-0.763675,-0.117906,-0.634743,-0.763675,-0.117906, + -0.634743,-0.763675,-0.117906,-0.634743,-0.763675,-0.117906,0.338012,0.935584,-0.102126,0.338012,0.935584,-0.102126, + 0.338012,0.935584,-0.102126,0.338012,0.935584,-0.102126,-0.470078,-0.761901,0.445570,-0.470078,-0.761901,0.445570, + -0.470078,-0.761901,0.445570,-0.470078,-0.761901,0.445570,-0.673592,-0.048543,0.737507,-0.673592,-0.048543,0.737507, + -0.673592,-0.048543,0.737507,-0.673592,-0.048543,0.737507,-0.315923,0.822716,0.472579,-0.315923,0.822716,0.472579, + -0.315923,0.822716,0.472579,-0.315923,0.822716,0.472579,-0.858244,-0.349169,-0.376163,-0.858244,-0.349169,-0.376163, + -0.858244,-0.349169,-0.376163,-0.858244,-0.349169,-0.376163,0.306716,0.442708,0.842576,0.306716,0.442708,0.842576, + 0.306716,0.442708,0.842576,0.306716,0.442708,0.842576,0.197510,0.272666,0.941617,0.197510,0.272666,0.941617, + 0.197510,0.272666,0.941617,0.197510,0.272666,0.941617,-0.316750,0.406300,-0.857082,-0.316750,0.406300,-0.857082, + -0.316750,0.406300,-0.857082,-0.316750,0.406300,-0.857082,-0.987856,-0.137513,-0.072326,-0.987856,-0.137513,-0.072326, + -0.987856,-0.137513,-0.072326,-0.987856,-0.137513,-0.072326,-0.270900,0.705927,-0.654431,-0.270900,0.705927,-0.654431, + -0.270900,0.705927,-0.654431,-0.270900,0.705927,-0.654431,-0.574728,-0.768859,0.280255,-0.574728,-0.768859,0.280255, + -0.574728,-0.768859,0.280255,-0.574728,-0.768859,0.280255,-0.270208,-0.843576,0.464076,-0.270208,-0.843576,0.464076, + -0.270208,-0.843576,0.464076,0.140817,0.920447,-0.364620,0.140817,0.920447,-0.364620,0.140817,0.920447,-0.364620, + -0.883037,0.405019,-0.237078,-0.883037,0.405019,-0.237078,-0.883037,0.405019,-0.237078,-0.221081,0.036966,-0.974555, + -0.221081,0.036966,-0.974555,-0.221081,0.036966,-0.974555,-0.221081,0.036966,-0.974555,0.848899,-0.453782,-0.271023, + 0.848899,-0.453782,-0.271023,0.848899,-0.453782,-0.271023,0.841305,-0.469039,-0.268716,0.841305,-0.469039,-0.268716, + 0.841305,-0.469039,-0.268716,0.841305,-0.469039,-0.268716,-0.898855,-0.158498,0.408581,-0.898855,-0.158498,0.408581, + -0.898855,-0.158498,0.408581,-0.898855,-0.158498,0.408581,0.895649,-0.369760,-0.247162,0.895649,-0.369760,-0.247162, + 0.895649,-0.369760,-0.247162,0.895649,-0.369760,-0.247162,0.481256,0.585636,0.652244,0.481256,0.585636,0.652244, + 0.481256,0.585636,0.652244,0.481256,0.585636,0.652244,0.246909,0.936113,-0.250457,0.246909,0.936113,-0.250457, + 0.246909,0.936113,-0.250457,0.976754,-0.213985,-0.012701,0.976754,-0.213985,-0.012701,0.976754,-0.213985,-0.012701, + 0.976754,-0.213985,-0.012701,0.252952,0.950384,0.181067,0.252952,0.950384,0.181067,0.252952,0.950384,0.181067, + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.986917,0.094915,-0.130329, + 0.986917,0.094915,-0.130329,0.986917,0.094915,-0.130329,0.371727,0.589420,0.717218,0.371727,0.589420,0.717218, + 0.371727,0.589420,0.717218,-0.231235,-0.969964,0.075500,-0.231235,-0.969964,0.075500,-0.231235,-0.969964,0.075500, + -0.231235,-0.969964,0.075500,0.575094,0.553282,-0.602616,0.575094,0.553282,-0.602616,0.575094,0.553282,-0.602616, + 0.791637,-0.433649,-0.430418,0.791637,-0.433649,-0.430418,0.791637,-0.433649,-0.430418,0.757406,-0.462625,0.460776, + 0.757406,-0.462625,0.460776,0.757406,-0.462625,0.460776,0.888882,0.369579,0.270741,0.888882,0.369579,0.270741, + 0.888882,0.369579,0.270741,-0.072128,0.990718,-0.115219,-0.072128,0.990718,-0.115219,-0.072128,0.990718,-0.115219, + -0.072128,0.990718,-0.115219,0.621596,0.684660,-0.380603,0.621596,0.684660,-0.380603,0.621596,0.684660,-0.380603, + 0.621596,0.684660,-0.380603,0.178133,0.717834,-0.673040,0.178133,0.717834,-0.673040,0.178133,0.717834,-0.673040, + 0.178133,0.717834,-0.673040,0.669980,-0.404519,-0.622488,0.669980,-0.404519,-0.622488,0.669980,-0.404519,-0.622488, + 0.669980,-0.404519,-0.622488,0.168505,0.659252,-0.732798,0.168505,0.659252,-0.732798,0.168505,0.659252,-0.732798, + 0.168505,0.659252,-0.732798,0.854539,-0.319946,-0.409143,0.854539,-0.319946,-0.409143,0.854539,-0.319946,-0.409143, + 0.854539,-0.319946,-0.409143,-0.357078,-0.855366,0.375293,-0.357078,-0.855366,0.375293,-0.357078,-0.855366,0.375293, + -0.357078,-0.855366,0.375293,0.378312,-0.048255,0.924419,0.378312,-0.048255,0.924419,0.378312,-0.048255,0.924419, + -0.103840,0.463185,0.880157,-0.103840,0.463185,0.880157,-0.103840,0.463185,0.880157,0.452807,0.838563,0.302949, + 0.452807,0.838563,0.302949,0.452807,0.838563,0.302949,0.926853,0.012023,0.375232,0.926853,0.012023,0.375232, + 0.926853,0.012023,0.375232,0.200395,-0.506131,-0.838852,0.200395,-0.506131,-0.838852,0.200395,-0.506131,-0.838852, + 0.200395,-0.506131,-0.838852,0.102456,0.029389,0.994303,0.102456,0.029389,0.994303,0.102456,0.029389,0.994303, + 0.102456,0.029389,0.994303,0.396890,-0.856638,0.329621,0.396890,-0.856638,0.329621,0.396890,-0.856638,0.329621, + 0.396890,-0.856638,0.329621,-0.502959,0.788959,-0.352952,-0.502959,0.788959,-0.352952,-0.502959,0.788959,-0.352952, + -0.502959,0.788959,-0.352952,-0.397111,0.185359,0.898858,-0.397111,0.185359,0.898858,-0.397111,0.185359,0.898858, + -0.397111,0.185359,0.898858,-0.757475,0.630110,0.170859,-0.757475,0.630110,0.170859,-0.757475,0.630110,0.170859, + -0.757475,0.630110,0.170859,-0.686868,-0.394568,-0.610351,-0.686868,-0.394568,-0.610351,-0.686868,-0.394568,-0.610351, + -0.686868,-0.394568,-0.610351,0.720489,-0.605756,-0.337572,0.720489,-0.605756,-0.337572,0.720489,-0.605756,-0.337572, + 0.720489,-0.605756,-0.337572,-0.086239,-0.424931,0.901109,-0.086239,-0.424931,0.901109,-0.086239,-0.424931,0.901109, + -0.086239,-0.424931,0.901109,-0.649417,0.741364,0.169224,-0.649417,0.741364,0.169224,-0.649417,0.741364,0.169224, + -0.649417,0.741364,0.169224,-0.921950,-0.172312,0.346867,-0.921950,-0.172312,0.346867,-0.921950,-0.172312,0.346867, + -0.875729,-0.101727,-0.471964,-0.875729,-0.101727,-0.471964,-0.875729,-0.101727,-0.471964,-0.200482,-0.815644,-0.542708, + -0.200482,-0.815644,-0.542708,-0.200482,-0.815644,-0.542708,-0.445724,-0.839280,0.311350,-0.445724,-0.839280,0.311350, + -0.445724,-0.839280,0.311350,0.620216,-0.489726,0.612781,0.620216,-0.489726,0.612781,0.620216,-0.489726,0.612781, + 0.620216,-0.489726,0.612781,-0.540374,0.633862,0.553367,-0.540374,0.633862,0.553367,-0.540374,0.633862,0.553367, + -0.540374,0.633862,0.553367,-0.010498,0.762686,-0.646684,-0.010498,0.762686,-0.646684,-0.010498,0.762686,-0.646684, + -0.010498,0.762686,-0.646684,0.699269,0.668756,0.252565,0.699269,0.668756,0.252565,0.699269,0.668756,0.252565, + 0.826596,-0.453915,-0.332718,0.826596,-0.453915,-0.332718,0.826596,-0.453915,-0.332718,-0.352141,0.918816,0.178254, + -0.352141,0.918816,0.178254,-0.352141,0.918816,0.178254,-0.682297,-0.416339,-0.600944,-0.682297,-0.416339,-0.600944, + -0.682297,-0.416339,-0.600944,-0.431075,0.668830,-0.605675,-0.431075,0.668830,-0.605675,-0.431075,0.668830,-0.605675, + -0.431075,0.668830,-0.605675,-0.123661,0.797718,0.590216,-0.123661,0.797718,0.590216,-0.123661,0.797718,0.590216, + -0.123661,0.797718,0.590216,-0.363016,-0.682164,-0.634721,-0.363016,-0.682164,-0.634721,-0.363016,-0.682164,-0.634721, + -0.363016,-0.682164,-0.634721,0.037260,-0.658427,0.751722,0.037260,-0.658427,0.751722,0.037260,-0.658427,0.751722, + 0.037260,-0.658427,0.751722,-0.223914,0.881644,0.415412,-0.223914,0.881644,0.415412,-0.223914,0.881644,0.415412, + -0.223914,0.881644,0.415412,-0.597374,-0.272657,-0.754190,-0.597374,-0.272657,-0.754190,-0.597374,-0.272657,-0.754190, + -0.597374,-0.272657,-0.754190,0.316584,-0.088686,-0.944410,0.316584,-0.088686,-0.944410,0.316584,-0.088686,-0.944410, + 0.316584,-0.088686,-0.944410,0.692971,0.431567,-0.577530,0.692971,0.431567,-0.577530,0.692971,0.431567,-0.577530, + 0.692971,0.431567,-0.577530,-0.275261,-0.798873,-0.534821,-0.275261,-0.798873,-0.534821,-0.275261,-0.798873,-0.534821, + 0.735369,0.612925,0.289059,0.735369,0.612925,0.289059,0.735369,0.612925,0.289059,0.735369,0.612925,0.289059, + -0.401887,0.739957,-0.539399,-0.401887,0.739957,-0.539399,-0.401887,0.739957,-0.539399,0.860197,-0.470865,0.195823, + 0.860197,-0.470865,0.195823,0.860197,-0.470865,0.195823,0.860197,-0.470865,0.195823,0.201352,-0.939687,0.276487, + 0.201352,-0.939687,0.276487,0.201352,-0.939687,0.276487,0.201352,-0.939687,0.276487,-0.833776,0.081149,-0.546107, + -0.833776,0.081149,-0.546107,-0.833776,0.081149,-0.546107,0.977301,-0.207718,-0.041663,0.977301,-0.207718,-0.041663, + 0.977301,-0.207718,-0.041663,-0.400911,-0.900038,-0.170888,-0.400911,-0.900038,-0.170888,-0.400911,-0.900038,-0.170888, + -0.400911,-0.900038,-0.170888,0.497436,-0.779300,-0.381115,0.497436,-0.779300,-0.381115,0.497436,-0.779300,-0.381115, + 0.497436,-0.779300,-0.381115,0.971136,-0.219579,0.093168,0.971136,-0.219579,0.093168,0.971136,-0.219579,0.093168, + 0.971136,-0.219579,0.093168,0.213793,-0.856494,0.469798,0.213793,-0.856494,0.469798,0.213793,-0.856494,0.469798, + -0.166206,-0.877941,0.448994,-0.166206,-0.877941,0.448994,-0.166206,-0.877941,0.448994,0.470281,-0.596266,0.650618, + 0.470281,-0.596266,0.650618,0.470281,-0.596266,0.650618,-0.516247,-0.515059,-0.684254,-0.516247,-0.515059,-0.684254, + -0.516247,-0.515059,-0.684254,-0.516247,-0.515059,-0.684254,0.425667,-0.645520,-0.634123,0.425667,-0.645520,-0.634123, + 0.425667,-0.645520,-0.634123,0.425667,-0.645520,-0.634123,0.530915,0.709594,0.463255,0.530915,0.709594,0.463255, + 0.530915,0.709594,0.463255,-0.058710,0.684665,-0.726490,-0.058710,0.684665,-0.726490,-0.058710,0.684665,-0.726490, + 0.547024,0.688101,0.476741,0.547024,0.688101,0.476741,0.547024,0.688101,0.476741,-0.533112,0.164439,0.829911, + -0.533112,0.164439,0.829911,-0.533112,0.164439,0.829911,-0.533112,0.164439,0.829911,-0.313589,0.260764,0.913052, + -0.313589,0.260764,0.913052,-0.313589,0.260764,0.913052,-0.537361,-0.836528,0.107070,-0.537361,-0.836528,0.107070, + -0.537361,-0.836528,0.107070,0.447853,0.405152,-0.797045,0.447853,0.405152,-0.797045,0.447853,0.405152,-0.797045, + 0.447853,0.405152,-0.797045,0.422785,-0.867883,0.260830,0.422785,-0.867883,0.260830,0.422785,-0.867883,0.260830, + 0.422785,-0.867883,0.260830,-0.112149,0.146418,0.982845,-0.112149,0.146418,0.982845,-0.112149,0.146418,0.982845, + -0.112149,0.146418,0.982845,0.008876,0.052169,0.998599,0.008876,0.052169,0.998599,0.008876,0.052169,0.998599, + 0.417368,-0.901357,-0.115585,0.417368,-0.901357,-0.115585,0.417368,-0.901357,-0.115585,0.417368,-0.901357,-0.115585, + -0.210430,0.680675,-0.701713,-0.210430,0.680675,-0.701713,-0.210430,0.680675,-0.701713,-0.210430,0.680675,-0.701713, + -0.914564,0.331826,0.231224,-0.914564,0.331826,0.231224,-0.914564,0.331826,0.231224,-0.914564,0.331826,0.231224, + 0.851500,-0.419136,-0.315076,0.851500,-0.419136,-0.315076,0.851500,-0.419136,-0.315076,0.851500,-0.419136,-0.315076, + 0.670122,0.143204,-0.728306,0.670122,0.143204,-0.728306,0.670122,0.143204,-0.728306,0.668905,0.281243,-0.688091, + 0.668905,0.281243,-0.688091,0.668905,0.281243,-0.688091,0.732934,0.110715,-0.671231,0.732934,0.110715,-0.671231, + 0.732934,0.110715,-0.671231,0.792963,0.594880,-0.131635,0.792963,0.594880,-0.131635,0.792963,0.594880,-0.131635, + -0.166151,-0.852738,0.495209,-0.166151,-0.852738,0.495209,-0.166151,-0.852738,0.495209,-0.166151,-0.852738,0.495209, + 0.174931,-0.027507,0.984196,0.174931,-0.027507,0.984196,0.174931,-0.027507,0.984196,0.174931,-0.027507,0.984196, + 0.174931,-0.027507,0.984196,0.343891,0.808274,-0.477946,0.343891,0.808274,-0.477946,0.343891,0.808274,-0.477946, + 0.343891,0.808274,-0.477946,0.045751,0.569640,0.820620,0.045751,0.569640,0.820620,0.045751,0.569640,0.820620, + 0.140432,0.704877,0.695289,0.140432,0.704877,0.695289,0.140432,0.704877,0.695289,0.050479,0.586878,0.808101, + 0.050479,0.586878,0.808101,0.050479,0.586878,0.808101,-0.539707,0.838947,-0.069894,-0.539707,0.838947,-0.069894, + -0.539707,0.838947,-0.069894,-0.539707,0.838947,-0.069894,0.442077,0.893589,-0.077891,0.442077,0.893589,-0.077891, + 0.442077,0.893589,-0.077891,0.442077,0.893589,-0.077891,0.522953,-0.754167,-0.397180,0.522953,-0.754167,-0.397180, + 0.522953,-0.754167,-0.397180,0.522953,-0.754167,-0.397180,-0.539417,-0.808151,-0.236478,-0.539417,-0.808151,-0.236478, + -0.539417,-0.808151,-0.236478,-0.539417,-0.808151,-0.236478,0.748840,0.234192,-0.619994,0.748840,0.234192,-0.619994, + 0.748840,0.234192,-0.619994,0.748840,0.234192,-0.619994,0.575181,0.718872,-0.390372,0.575181,0.718872,-0.390372, + 0.575181,0.718872,-0.390372,0.575181,0.718872,-0.390372,0.485912,0.762068,0.427950,0.485912,0.762068,0.427950, + 0.485912,0.762068,0.427950,0.485912,0.762068,0.427950,-0.811229,0.551218,0.195106,-0.811229,0.551218,0.195106, + -0.811229,0.551218,0.195106,-0.811229,0.551218,0.195106,-0.067465,0.896599,0.437675,-0.067465,0.896599,0.437675, + -0.067465,0.896599,0.437675,-0.030368,-0.891224,-0.452546,-0.030368,-0.891224,-0.452546,-0.030368,-0.891224,-0.452546, + -0.030368,-0.891224,-0.452546,-0.142077,-0.789410,0.597198,-0.142077,-0.789410,0.597198,-0.142077,-0.789410,0.597198, + -0.493696,0.866932,-0.068507,-0.493696,0.866932,-0.068507,-0.493696,0.866932,-0.068507,0.282798,0.445449,0.849470, + 0.282798,0.445449,0.849470,0.282798,0.445449,0.849470,0.282798,0.445449,0.849470,0.098219,-0.608555,0.787409, + 0.098219,-0.608555,0.787409,0.098219,-0.608555,0.787409,0.098219,-0.608555,0.787409,0.571879,0.699151,0.429117, + 0.571879,0.699151,0.429117,0.571879,0.699151,0.429117,0.571879,0.699151,0.429117,0.353195,-0.488951,0.797609, + 0.353195,-0.488951,0.797609,0.353195,-0.488951,0.797609,0.353195,-0.488951,0.797609,-0.199156,0.976135,0.086589, + -0.199156,0.976135,0.086589,-0.199156,0.976135,0.086589,0.489657,0.753360,-0.438959,0.489657,0.753360,-0.438959, + 0.489657,0.753360,-0.438959,0.489657,0.753360,-0.438959,-0.153233,0.611484,-0.776277,-0.153233,0.611484,-0.776277, + -0.153233,0.611484,-0.776277,-0.153233,0.611484,-0.776277,0.212130,-0.682999,-0.698937,0.212130,-0.682999,-0.698937, + 0.212130,-0.682999,-0.698937,0.417518,-0.855228,-0.307025,0.417518,-0.855228,-0.307025,0.417518,-0.855228,-0.307025, + 0.294345,-0.077533,-0.952549,0.294345,-0.077533,-0.952549,0.294345,-0.077533,-0.952549,0.294345,-0.077533,-0.952549, + -0.482111,0.060891,-0.873992,-0.482111,0.060891,-0.873992,-0.482111,0.060891,-0.873992,0.814643,0.520163,0.256491, + 0.814643,0.520163,0.256491,0.814643,0.520163,0.256491,0.995227,-0.065353,0.072471,0.995227,-0.065353,0.072471, + 0.995227,-0.065353,0.072471,0.734154,0.651264,0.192027,0.734154,0.651264,0.192027,0.734154,0.651264,0.192027, + -0.253001,-0.927008,-0.276852,-0.253001,-0.927008,-0.276852,-0.253001,-0.927008,-0.276852,-0.253001,-0.927008,-0.276852, + 0.311328,0.911505,-0.268763,0.311328,0.911505,-0.268763,0.311328,0.911505,-0.268763,0.311328,0.911505,-0.268763, + 0.015885,-0.969831,0.243261,0.015885,-0.969831,0.243261,0.015885,-0.969831,0.243261,0.015885,-0.969831,0.243261, + 0.741714,-0.654115,0.148302,0.741714,-0.654115,0.148302,0.741714,-0.654115,0.148302,0.741714,-0.654115,0.148302, + 0.959050,0.277191,-0.058203,0.959050,0.277191,-0.058203,0.959050,0.277191,-0.058203,0.959050,0.277191,-0.058203, + -0.043963,-0.697569,-0.715167,-0.043963,-0.697569,-0.715167,-0.043963,-0.697569,-0.715167,-0.043963,-0.697569,-0.715167, + 0.650989,0.295410,0.699247,0.650989,0.295410,0.699247,0.650989,0.295410,0.699247,0.650989,0.295410,0.699247, + 0.656322,0.076343,0.750609,0.656322,0.076343,0.750609,0.656322,0.076343,0.750609,0.656322,0.076343,0.750609, + -0.119493,0.321896,-0.939204,-0.119493,0.321896,-0.939204,-0.119493,0.321896,-0.939204,-0.119493,0.321896,-0.939204, + 0.665819,-0.727040,-0.167621,0.665819,-0.727040,-0.167621,0.665819,-0.727040,-0.167621,0.665819,-0.727040,-0.167621, + 0.985986,-0.044658,-0.160739,0.985986,-0.044658,-0.160739,0.985986,-0.044658,-0.160739,0.985986,-0.044658,-0.160739, + -0.171308,-0.965324,0.196988,-0.171308,-0.965324,0.196988,-0.171308,-0.965324,0.196988,-0.171308,-0.965324,0.196988, + -0.291943,-0.666422,0.686040,-0.291943,-0.666422,0.686040,-0.291943,-0.666422,0.686040,0.424406,0.513419,-0.745842, + 0.424406,0.513419,-0.745842,0.424406,0.513419,-0.745842,0.524992,-0.657030,0.541013,0.524992,-0.657030,0.541013, + 0.524992,-0.657030,0.541013,0.714768,-0.680222,-0.162498,0.714768,-0.680222,-0.162498,0.714768,-0.680222,-0.162498, + 0.714768,-0.680222,-0.162498,0.068343,0.333374,-0.940314,0.068343,0.333374,-0.940314,0.068343,0.333374,-0.940314, + -0.890672,0.275252,0.361857,-0.890672,0.275252,0.361857,-0.890672,0.275252,0.361857,-0.890672,0.275252,0.361857, + 0.716434,-0.679423,-0.158454,0.716434,-0.679423,-0.158454,0.716434,-0.679423,-0.158454,0.716434,-0.679423,-0.158454, + 0.104134,0.659275,0.744656,0.104134,0.659275,0.744656,0.104134,0.659275,0.744656,0.104134,0.659275,0.744656, + 0.996432,-0.084135,0.006698,0.996432,-0.084135,0.006698,0.996432,-0.084135,0.006698,0.996432,-0.084135,0.006698, + -0.493523,0.701935,-0.513539,-0.493523,0.701935,-0.513539,-0.493523,0.701935,-0.513539,-0.558237,-0.815776,-0.151268, + -0.558237,-0.815776,-0.151268,-0.558237,-0.815776,-0.151268,-0.558237,-0.815776,-0.151268,0.657381,0.737506,0.154710, + 0.657381,0.737506,0.154710,0.657381,0.737506,0.154710,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, + 0.000000,0.000000,1.000000,-0.497673,0.697468,-0.515616,-0.497673,0.697468,-0.515616,-0.497673,0.697468,-0.515616, + 0.978850,-0.199894,-0.043537,0.978850,-0.199894,-0.043537,0.978850,-0.199894,-0.043537,-0.710022,-0.104214,0.696426, + -0.710022,-0.104214,0.696426,-0.710022,-0.104214,0.696426,-0.710022,-0.104214,0.696426,-0.446071,-0.007791,0.894964, + -0.446071,-0.007791,0.894964,-0.446071,-0.007791,0.894964,-0.446071,-0.007791,0.894964,0.873946,0.429113,-0.228212, + 0.873946,0.429113,-0.228212,0.873946,0.429113,-0.228212,0.873946,0.429113,-0.228212,-0.377517,-0.650805,0.658736, + -0.377517,-0.650805,0.658736,-0.377517,-0.650805,0.658736,-0.377517,-0.650805,0.658736,0.255257,0.711194,-0.655017, + 0.255257,0.711194,-0.655017,0.255257,0.711194,-0.655017,-0.259221,-0.015522,-0.965693,-0.259221,-0.015522,-0.965693, + -0.259221,-0.015522,-0.965693,-0.249512,-0.046923,-0.967234,-0.249512,-0.046923,-0.967234,-0.249512,-0.046923,-0.967234, + -0.148870,0.611219,-0.777335,-0.148870,0.611219,-0.777335,-0.148870,0.611219,-0.777335,0.174812,-0.887290,0.426798, + 0.174812,-0.887290,0.426798,0.174812,-0.887290,0.426798,0.174812,-0.887290,0.426798,-0.627356,-0.375775,-0.682069, + -0.627356,-0.375775,-0.682069,-0.627356,-0.375775,-0.682069,-0.604999,-0.039655,-0.795238,-0.604999,-0.039655,-0.795238, + -0.604999,-0.039655,-0.795238,-0.692303,0.464751,-0.552018,-0.692303,0.464751,-0.552018,-0.692303,0.464751,-0.552018, + 0.722546,-0.687912,0.068587,0.722546,-0.687912,0.068587,0.722546,-0.687912,0.068587,0.722546,-0.687912,0.068587, + 0.626504,-0.689160,-0.364077,0.626504,-0.689160,-0.364077,0.626504,-0.689160,-0.364077,0.626504,-0.689160,-0.364077, + 0.421762,-0.247389,0.872305,0.421762,-0.247389,0.872305,0.421762,-0.247389,0.872305,0.317004,-0.940246,0.124285, + 0.317004,-0.940246,0.124285,0.317004,-0.940246,0.124285,0.656475,-0.494133,-0.569977,0.656475,-0.494133,-0.569977, + 0.656475,-0.494133,-0.569977,0.986391,-0.104710,0.126765,0.986391,-0.104710,0.126765,0.986391,-0.104710,0.126765, + -0.719264,0.305643,0.623892,-0.719264,0.305643,0.623892,-0.719264,0.305643,0.623892,-0.719264,0.305643,0.623892, + -0.419742,0.643676,0.639921,-0.419742,0.643676,0.639921,-0.419742,0.643676,0.639921,-0.419742,0.643676,0.639921, + 0.442062,-0.743258,0.502144,0.442062,-0.743258,0.502144,0.442062,-0.743258,0.502144,0.442062,-0.743258,0.502144, + -0.600425,-0.792217,0.109002,-0.600425,-0.792217,0.109002,-0.600425,-0.792217,0.109002,-0.600425,-0.792217,0.109002, + 0.459631,-0.717917,0.522814,0.459631,-0.717917,0.522814,0.459631,-0.717917,0.522814,0.459631,-0.717917,0.522814, + 0.599741,0.612443,0.515000,0.599741,0.612443,0.515000,0.599741,0.612443,0.515000,0.599741,0.612443,0.515000, + -0.298246,0.792260,-0.532328,-0.298246,0.792260,-0.532328,-0.298246,0.792260,-0.532328,-0.298246,0.792260,-0.532328, + -0.829179,0.308940,0.465852,-0.829179,0.308940,0.465852,-0.829179,0.308940,0.465852,-0.876380,-0.008308,0.481548, + -0.876380,-0.008308,0.481548,-0.876380,-0.008308,0.481548,-0.691709,-0.012036,0.722076,-0.691709,-0.012036,0.722076, + -0.691709,-0.012036,0.722076,-0.622976,0.320775,0.713445,-0.622976,0.320775,0.713445,-0.622976,0.320775,0.713445, + -0.046745,-0.743084,-0.667564,-0.046745,-0.743084,-0.667564,-0.046745,-0.743084,-0.667564,-0.046745,-0.743084,-0.667564, + 0.020290,0.991987,0.124702,0.020290,0.991987,0.124702,0.020290,0.991987,0.124702,0.020290,0.991987,0.124702, + -0.162901,0.475653,-0.864418,-0.162901,0.475653,-0.864418,-0.162901,0.475653,-0.864418,-0.162901,0.475653,-0.864418, + -0.060548,0.137138,0.988700,-0.060548,0.137138,0.988700,-0.060548,0.137138,0.988700,-0.060548,0.137138,0.988700, + 0.498680,0.842078,-0.205484,0.498680,0.842078,-0.205484,0.498680,0.842078,-0.205484,0.498680,0.842078,-0.205484, + -0.437242,-0.779305,-0.448892,-0.437242,-0.779305,-0.448892,-0.437242,-0.779305,-0.448892,-0.437242,-0.779305,-0.448892, + 0.792125,-0.184689,-0.581746,0.792125,-0.184689,-0.581746,0.792125,-0.184689,-0.581746,0.792125,-0.184689,-0.581746, + 0.480775,0.625265,0.614735,0.480775,0.625265,0.614735,0.480775,0.625265,0.614735,0.480775,0.625265,0.614735, + -0.489294,0.761478,-0.425138,-0.489294,0.761478,-0.425138,-0.489294,0.761478,-0.425138,-0.489294,0.761478,-0.425138, + -0.647658,-0.703867,-0.291738,-0.647658,-0.703867,-0.291738,-0.647658,-0.703867,-0.291738,-0.647658,-0.703867,-0.291738, + -0.215412,0.949252,-0.229168,-0.215412,0.949252,-0.229168,-0.215412,0.949252,-0.229168,-0.666341,0.638342,0.385368, + -0.666341,0.638342,0.385368,-0.666341,0.638342,0.385368,-0.979500,-0.117358,-0.163729,-0.979500,-0.117358,-0.163729, + -0.979500,-0.117358,-0.163729,-0.541350,0.397282,-0.741018,-0.541350,0.397282,-0.741018,-0.541350,0.397282,-0.741018, + 0.306125,-0.306985,-0.901137,0.306125,-0.306985,-0.901137,0.306125,-0.306985,-0.901137,0.306125,-0.306985,-0.901137, + 0.566075,0.821966,0.062698,0.566075,0.821966,0.062698,0.566075,0.821966,0.062698,0.566075,0.821966,0.062698, + 0.173963,-0.053027,0.983324,0.173963,-0.053027,0.983324,0.173963,-0.053027,0.983324,0.173963,-0.053027,0.983324, + -0.659941,-0.238335,0.712513,-0.659941,-0.238335,0.712513,-0.659941,-0.238335,0.712513,0.431523,0.504645,0.747744, + 0.431523,0.504645,0.747744,0.431523,0.504645,0.747744,-0.678965,-0.733831,0.022340,-0.678965,-0.733831,0.022340, + -0.678965,-0.733831,0.022340,0.775119,-0.130383,-0.618216,0.775119,-0.130383,-0.618216,0.775119,-0.130383,-0.618216, + -0.372509,0.380434,0.846468,-0.372509,0.380434,0.846468,-0.372509,0.380434,0.846468,-0.372509,0.380434,0.846468, + 0.436980,0.897473,0.059918,0.436980,0.897473,0.059918,0.436980,0.897473,0.059918,0.436980,0.897473,0.059918, + -0.817846,-0.575436,-0.001265,-0.817846,-0.575436,-0.001265,-0.817846,-0.575436,-0.001265,-0.817846,-0.575436,-0.001265, + 0.111505,-0.084199,-0.990190,0.111505,-0.084199,-0.990190,0.111505,-0.084199,-0.990190,0.111505,-0.084199,-0.990190, + 0.237220,0.268545,0.933601,0.237220,0.268545,0.933601,0.237220,0.268545,0.933601,0.237220,0.268545,0.933601, + -0.060374,-0.424144,-0.903580,-0.060374,-0.424144,-0.903580,-0.060374,-0.424144,-0.903580,-0.060374,-0.424144,-0.903580, + 0.745642,-0.361424,-0.559813,0.745642,-0.361424,-0.559813,0.745642,-0.361424,-0.559813,0.745642,-0.361424,-0.559813, + 0.915358,-0.336520,0.221074,0.915358,-0.336520,0.221074,0.915358,-0.336520,0.221074,0.915358,-0.336520,0.221074, + 0.212682,-0.507751,-0.834838,0.212682,-0.507751,-0.834838,0.212682,-0.507751,-0.834838,0.323320,0.562178,0.761196, + 0.323320,0.562178,0.761196,0.323320,0.562178,0.761196,0.323320,0.562178,0.761196,0.089050,-0.590806,0.801884, + 0.089050,-0.590806,0.801884,0.089050,-0.590806,0.801884,0.691408,0.641805,-0.331724,0.691408,0.641805,-0.331724, + 0.691408,0.641805,-0.331724,0.691408,0.641805,-0.331724,0.238046,0.115639,-0.964345,0.238046,0.115639,-0.964345, + 0.238046,0.115639,-0.964345,0.238046,0.115639,-0.964345,-0.274564,-0.950009,0.148651,-0.274564,-0.950009,0.148651, + -0.274564,-0.950009,0.148651,0.655753,0.340990,-0.673583,0.655753,0.340990,-0.673583,0.655753,0.340990,-0.673583, + 0.655753,0.340990,-0.673583,0.931950,0.315936,-0.177913,0.931950,0.315936,-0.177913,0.931950,0.315936,-0.177913, + 0.931950,0.315936,-0.177913,0.065877,-0.574483,-0.815861,0.065877,-0.574483,-0.815861,0.065877,-0.574483,-0.815861, + 0.065877,-0.574483,-0.815861,0.911337,0.297197,0.284848,0.911337,0.297197,0.284848,0.911337,0.297197,0.284848, + 0.911337,0.297197,0.284848,0.705474,0.017715,-0.708514,0.705474,0.017715,-0.708514,0.705474,0.017715,-0.708514, + 0.705474,0.017715,-0.708514,0.531777,0.547188,-0.646373,0.531777,0.547188,-0.646373,0.531777,0.547188,-0.646373, + 0.531777,0.547188,-0.646373,0.771049,0.603676,0.202628,0.771049,0.603676,0.202628,0.771049,0.603676,0.202628, + 0.771049,0.603676,0.202628,-0.160186,0.974805,-0.155229,-0.160186,0.974805,-0.155229,-0.160186,0.974805,-0.155229, + -0.160186,0.974805,-0.155229,-0.451398,0.836839,-0.309743,-0.451398,0.836839,-0.309743,-0.451398,0.836839,-0.309743, + 0.043722,0.989070,0.140817,0.043722,0.989070,0.140817,0.043722,0.989070,0.140817,0.043722,0.989070,0.140817, + -0.173879,-0.209550,-0.962213,-0.173879,-0.209550,-0.962213,-0.173879,-0.209550,-0.962213,-0.173879,-0.209550,-0.962213, + 0.624649,0.258871,-0.736750,0.624649,0.258871,-0.736750,0.624649,0.258871,-0.736750,0.624649,0.258871,-0.736750, + 0.392631,-0.030382,0.919194,0.392631,-0.030382,0.919194,0.392631,-0.030382,0.919194,0.861668,-0.491538,0.126167, + 0.861668,-0.491538,0.126167,0.861668,-0.491538,0.126167,0.375701,0.028178,0.926313,0.375701,0.028178,0.926313, + 0.375701,0.028178,0.926313,-0.405072,0.887847,0.218275,-0.405072,0.887847,0.218275,-0.405072,0.887847,0.218275, + -0.405072,0.887847,0.218275,-0.140542,0.736065,0.662160,-0.140542,0.736065,0.662160,-0.140542,0.736065,0.662160, + -0.140542,0.736065,0.662160,-0.251120,0.250444,-0.934996,-0.251120,0.250444,-0.934996,-0.251120,0.250444,-0.934996, + -0.251120,0.250444,-0.934996,-0.175324,0.773985,0.608447,-0.175324,0.773985,0.608447,-0.175324,0.773985,0.608447, + -0.175324,0.773985,0.608447,-0.952041,0.271371,-0.141334,-0.952041,0.271371,-0.141334,-0.952041,0.271371,-0.141334, + -0.952041,0.271371,-0.141334,0.116672,0.517475,0.847707,0.116672,0.517475,0.847707,0.116672,0.517475,0.847707, + -0.667284,0.163570,-0.726620,-0.667284,0.163570,-0.726620,-0.667284,0.163570,-0.726620,0.040548,0.399896,-0.915663, + 0.040548,0.399896,-0.915663,0.040548,0.399896,-0.915663,0.040548,0.399896,-0.915663,-0.033533,0.954128,0.297515, + -0.033533,0.954128,0.297515,-0.033533,0.954128,0.297515,-0.033533,0.954128,0.297515,-0.144901,0.989442,-0.002858, + -0.144901,0.989442,-0.002858,-0.144901,0.989442,-0.002858,0.241368,0.335354,-0.910648,0.241368,0.335354,-0.910648, + 0.241368,0.335354,-0.910648,0.241368,0.335354,-0.910648,0.212838,-0.807341,0.550363,0.212838,-0.807341,0.550363, + 0.212838,-0.807341,0.550363,0.212838,-0.807341,0.550363,-0.811367,-0.572012,0.120355,-0.811367,-0.572012,0.120355, + -0.811367,-0.572012,0.120355,-0.811367,-0.572012,0.120355,0.867498,0.496306,-0.033584,0.867498,0.496306,-0.033584, + 0.867498,0.496306,-0.033584,0.867498,0.496306,-0.033584,0.729216,-0.588951,-0.348398,0.729216,-0.588951,-0.348398, + 0.729216,-0.588951,-0.348398,0.775842,-0.578467,-0.251884,0.775842,-0.578467,-0.251884,0.775842,-0.578467,-0.251884, + 0.756536,-0.538432,-0.371138,0.756536,-0.538432,-0.371138,0.756536,-0.538432,-0.371138,0.986216,-0.030460,0.162637, + 0.986216,-0.030460,0.162637,0.986216,-0.030460,0.162637,-0.074287,0.567834,-0.819784,-0.074287,0.567834,-0.819784, + -0.074287,0.567834,-0.819784,-0.074287,0.567834,-0.819784,-0.443215,0.882070,-0.159727,-0.443215,0.882070,-0.159727, + -0.443215,0.882070,-0.159727,-0.443215,0.882070,-0.159727,-0.443215,0.882070,-0.159727,0.497787,0.106233,-0.860769, + 0.497787,0.106233,-0.860769,0.497787,0.106233,-0.860769,0.497787,0.106233,-0.860769,-0.049711,0.041424,0.997904, + -0.049711,0.041424,0.997904,-0.049711,0.041424,0.997904,-0.049711,0.041424,0.997904,-0.742225,0.520983,0.421520, + -0.742225,0.520983,0.421520,-0.742225,0.520983,0.421520,-0.745872,0.554931,0.368412,-0.745872,0.554931,0.368412, + -0.745872,0.554931,0.368412,-0.729159,0.599534,0.329979,-0.729159,0.599534,0.329979,-0.729159,0.599534,0.329979, + -0.103696,-0.973720,0.202770,-0.103696,-0.973720,0.202770,-0.103696,-0.973720,0.202770,-0.103696,-0.973720,0.202770, + 0.509186,-0.754729,0.413659,0.509186,-0.754729,0.413659,0.509186,-0.754729,0.413659,0.509186,-0.754729,0.413659, + 0.592295,0.510101,-0.623686,0.592295,0.510101,-0.623686,0.592295,0.510101,-0.623686,0.592295,0.510101,-0.623686, + -0.423636,0.255123,-0.869163,-0.423636,0.255123,-0.869163,-0.423636,0.255123,-0.869163,-0.423636,0.255123,-0.869163, + 0.861991,0.176262,0.475292,0.861991,0.176262,0.475292,0.861991,0.176262,0.475292,0.861991,0.176262,0.475292, + -0.020022,0.198416,0.979913,-0.020022,0.198416,0.979913,-0.020022,0.198416,0.979913,-0.020022,0.198416,0.979913, + -0.927840,0.046265,0.370098,-0.927840,0.046265,0.370098,-0.927840,0.046265,0.370098,-0.927840,0.046265,0.370098, + 0.452131,0.157408,0.877952,0.452131,0.157408,0.877952,0.452131,0.157408,0.877952,0.452131,0.157408,0.877952, + -0.696880,-0.051505,0.715336,-0.696880,-0.051505,0.715336,-0.696880,-0.051505,0.715336,-0.696880,-0.051505,0.715336, + 0.174906,0.424872,-0.888196,0.174906,0.424872,-0.888196,0.174906,0.424872,-0.888196,0.360504,-0.410715,0.837466, + 0.360504,-0.410715,0.837466,0.360504,-0.410715,0.837466,-0.389884,0.815697,0.427351,-0.389884,0.815697,0.427351, + -0.389884,0.815697,0.427351,-0.389884,0.815697,0.427351,-0.048336,0.428871,0.902072,-0.048336,0.428871,0.902072, + -0.048336,0.428871,0.902072,-0.533438,0.675354,0.509255,-0.533438,0.675354,0.509255,-0.533438,0.675354,0.509255, + -0.533438,0.675354,0.509255,0.102221,0.391072,-0.914666,0.102221,0.391072,-0.914666,0.102221,0.391072,-0.914666, + 0.102221,0.391072,-0.914666,0.739162,0.026880,0.672991,0.739162,0.026880,0.672991,0.739162,0.026880,0.672991, + 0.289021,-0.624308,0.725745,0.289021,-0.624308,0.725745,0.289021,-0.624308,0.725745,0.733032,-0.242322,-0.635566, + 0.733032,-0.242322,-0.635566,0.733032,-0.242322,-0.635566,0.654176,0.605269,-0.453545,0.654176,0.605269,-0.453545, + 0.654176,0.605269,-0.453545,0.654176,0.605269,-0.453545,-0.007119,0.992472,0.122262,-0.007119,0.992472,0.122262, + -0.007119,0.992472,0.122262,-0.007119,0.992472,0.122262,-0.874472,-0.345989,-0.339986,-0.874472,-0.345989,-0.339986, + -0.874472,-0.345989,-0.339986,-0.874472,-0.345989,-0.339986,0.919356,0.221178,0.325370,0.919356,0.221178,0.325370, + 0.919356,0.221178,0.325370,0.919356,0.221178,0.325370,-0.850478,-0.455775,0.262596,-0.850478,-0.455775,0.262596, + -0.850478,-0.455775,0.262596,-0.850478,-0.455775,0.262596,0.075170,-0.609374,-0.789312,0.075170,-0.609374,-0.789312, + 0.075170,-0.609374,-0.789312,0.896148,-0.428907,0.113830,0.896148,-0.428907,0.113830,0.896148,-0.428907,0.113830, + 0.698555,-0.135815,0.702549,0.698555,-0.135815,0.702549,0.698555,-0.135815,0.702549,0.698555,-0.135815,0.702549, + 0.365797,-0.642848,0.673007,0.365797,-0.642848,0.673007,0.365797,-0.642848,0.673007,0.365586,-0.666202,0.650017, + 0.365586,-0.666202,0.650017,0.365586,-0.666202,0.650017,0.526326,-0.616513,0.585570,0.526326,-0.616513,0.585570, + 0.526326,-0.616513,0.585570,0.928862,0.320048,0.186504,0.928862,0.320048,0.186504,0.928862,0.320048,0.186504, + 0.922765,0.330900,-0.197510,0.922765,0.330900,-0.197510,0.922765,0.330900,-0.197510,0.924640,0.351429,0.146760, + 0.924640,0.351429,0.146760,0.924640,0.351429,0.146760,0.821512,-0.502487,-0.269492,0.821512,-0.502487,-0.269492, + 0.821512,-0.502487,-0.269492,0.821512,-0.502487,-0.269492,-0.628880,0.687105,0.363863,-0.628880,0.687105,0.363863, + -0.628880,0.687105,0.363863,-0.628880,0.687105,0.363863,0.628690,-0.109264,-0.769942,0.628690,-0.109264,-0.769942, + 0.628690,-0.109264,-0.769942,0.628690,-0.109264,-0.769942,0.747084,0.551708,-0.370787,0.747084,0.551708,-0.370787, + 0.747084,0.551708,-0.370787,0.747084,0.551708,-0.370787,0.356887,0.713441,0.603021,0.356887,0.713441,0.603021, + 0.356887,0.713441,0.603021,0.356887,0.713441,0.603021,0.919874,-0.383633,-0.081597,0.919874,-0.383633,-0.081597, + 0.919874,-0.383633,-0.081597,0.919874,-0.383633,-0.081597,-0.046959,0.961337,0.271340,-0.046959,0.961337,0.271340, + -0.046959,0.961337,0.271340,-0.046959,0.961337,0.271340,-0.061266,0.909188,-0.411854,-0.061266,0.909188,-0.411854, + -0.061266,0.909188,-0.411854,-0.061266,0.909188,-0.411854,0.428852,-0.469127,0.772014,0.428852,-0.469127,0.772014, + 0.428852,-0.469127,0.772014,0.428852,-0.469127,0.772014,0.877737,0.367676,-0.307234,0.877737,0.367676,-0.307234, + 0.877737,0.367676,-0.307234,0.877737,0.367676,-0.307234,0.831425,-0.329411,0.447460,0.831425,-0.329411,0.447460, + 0.831425,-0.329411,0.447460,0.831425,-0.329411,0.447460,0.326892,0.188786,-0.926014,0.326892,0.188786,-0.926014, + 0.326892,0.188786,-0.926014,0.326892,0.188786,-0.926014,-0.443529,0.701035,-0.558419,-0.443529,0.701035,-0.558419, + -0.443529,0.701035,-0.558419,0.663432,-0.173713,0.727793,0.663432,-0.173713,0.727793,0.663432,-0.173713,0.727793, + 0.404891,0.441754,-0.800573,0.404891,0.441754,-0.800573,0.404891,0.441754,-0.800573,-0.096822,-0.658687,-0.746161, + -0.096822,-0.658687,-0.746161,-0.096822,-0.658687,-0.746161,-0.096822,-0.658687,-0.746161,-0.487795,-0.687075,0.538501, + -0.487795,-0.687075,0.538501,-0.487795,-0.687075,0.538501,-0.527046,-0.537250,-0.658471,-0.527046,-0.537250,-0.658471, + -0.527046,-0.537250,-0.658471,-0.527046,-0.537250,-0.658471,-0.084039,0.970276,-0.226942,-0.084039,0.970276,-0.226942, + -0.084039,0.970276,-0.226942,-0.084039,0.970276,-0.226942,0.659228,0.117327,-0.742733,0.659228,0.117327,-0.742733, + 0.659228,0.117327,-0.742733,0.659228,0.117327,-0.742733,0.978448,-0.204729,-0.026928,0.978448,-0.204729,-0.026928, + 0.978448,-0.204729,-0.026928,0.978448,-0.204729,-0.026928,0.819208,0.009829,-0.573412,0.819208,0.009829,-0.573412, + 0.819208,0.009829,-0.573412,0.819208,0.009829,-0.573412,-0.390718,0.446209,-0.805131,-0.390718,0.446209,-0.805131, + -0.390718,0.446209,-0.805131,-0.390718,0.446209,-0.805131,-0.598850,0.425689,-0.678357,-0.598850,0.425689,-0.678357, + -0.598850,0.425689,-0.678357,0.048444,0.980083,0.192591,0.048444,0.980083,0.192591,0.048444,0.980083,0.192591, + -0.143056,0.969989,-0.196612,-0.143056,0.969989,-0.196612,-0.143056,0.969989,-0.196612,-0.585490,0.690607,-0.424574, + -0.585490,0.690607,-0.424574,-0.585490,0.690607,-0.424574,-0.585490,0.690607,-0.424574,-0.363050,0.923807,-0.121552, + -0.363050,0.923807,-0.121552,-0.363050,0.923807,-0.121552,-0.399155,0.357222,0.844433,-0.399155,0.357222,0.844433, + -0.399155,0.357222,0.844433,0.591145,-0.381834,-0.710458,0.591145,-0.381834,-0.710458,0.591145,-0.381834,-0.710458, + 0.591145,-0.381834,-0.710458,0.464970,-0.748528,0.472767,0.464970,-0.748528,0.472767,0.464970,-0.748528,0.472767, + 0.422100,-0.719947,-0.550915,0.422100,-0.719947,-0.550915,0.422100,-0.719947,-0.550915,-0.449210,-0.578194,-0.681103, + -0.449210,-0.578194,-0.681103,-0.449210,-0.578194,-0.681103,-0.394986,-0.911616,0.113766,-0.394986,-0.911616,0.113766, + -0.394986,-0.911616,0.113766,-0.343250,0.393130,0.853011,-0.343250,0.393130,0.853011,-0.343250,0.393130,0.853011, + -0.343250,0.393130,0.853011,-0.886179,-0.071058,0.457862,-0.886179,-0.071058,0.457862,-0.886179,-0.071058,0.457862, + -0.886179,-0.071058,0.457862,-0.345763,-0.211637,0.914143,-0.345763,-0.211637,0.914143,-0.345763,-0.211637,0.914143, + -0.345763,-0.211637,0.914143,0.827420,0.116452,-0.549377,0.827420,0.116452,-0.549377,0.827420,0.116452,-0.549377, + 0.827420,0.116452,-0.549377,-0.405731,-0.243145,0.881058,-0.405731,-0.243145,0.881058,-0.405731,-0.243145,0.881058, + -0.405731,-0.243145,0.881058,-0.639604,-0.675694,-0.366530,-0.639604,-0.675694,-0.366530,-0.639604,-0.675694,-0.366530, + -0.639604,-0.675694,-0.366530,0.396533,0.066055,-0.915641,0.396533,0.066055,-0.915641,0.396533,0.066055,-0.915641, + 0.396533,0.066055,-0.915641,-0.489602,0.771931,-0.405479,-0.489602,0.771931,-0.405479,-0.489602,0.771931,-0.405479, + -0.445042,0.887618,-0.118628,-0.445042,0.887618,-0.118628,-0.445042,0.887618,-0.118628,-0.679893,0.732698,-0.029988, + -0.679893,0.732698,-0.029988,-0.679893,0.732698,-0.029988,-0.735735,0.590922,-0.330916,-0.735735,0.590922,-0.330916, + -0.735735,0.590922,-0.330916,0.650331,-0.128160,-0.748762,0.650331,-0.128160,-0.748762,0.650331,-0.128160,-0.748762, + 0.650331,-0.128160,-0.748762,-0.713562,0.591180,0.375945,-0.713562,0.591180,0.375945,-0.713562,0.591180,0.375945, + -0.713562,0.591180,0.375945,-0.069090,0.854356,-0.515075,-0.069090,0.854356,-0.515075,-0.069090,0.854356,-0.515075, + -0.069090,0.854356,-0.515075,0.409877,-0.228330,0.883100,0.409877,-0.228330,0.883100,0.409877,-0.228330,0.883100, + 0.409877,-0.228330,0.883100,-0.993845,0.108456,0.022586,-0.993845,0.108456,0.022586,-0.993845,0.108456,0.022586, + -0.993845,0.108456,0.022586,0.598363,0.561411,0.571647,0.598363,0.561411,0.571647,0.598363,0.561411,0.571647, + 0.598363,0.561411,0.571647,0.693893,-0.707968,0.131508,0.693893,-0.707968,0.131508,0.693893,-0.707968,0.131508, + 0.693893,-0.707968,0.131508,-0.685720,-0.533820,-0.494797,-0.685720,-0.533820,-0.494797,-0.685720,-0.533820,-0.494797, + -0.685720,-0.533820,-0.494797,0.323003,0.349566,-0.879473,0.323003,0.349566,-0.879473,0.323003,0.349566,-0.879473, + 0.323003,0.349566,-0.879473,0.377451,0.707148,0.597890,0.377451,0.707148,0.597890,0.377451,0.707148,0.597890, + 0.377451,0.707148,0.597890,-0.549027,0.673618,0.494781,-0.549027,0.673618,0.494781,-0.549027,0.673618,0.494781, + 0.257645,0.710774,0.654537,0.257645,0.710774,0.654537,0.257645,0.710774,0.654537,0.489023,0.820200,-0.296865, + 0.489023,0.820200,-0.296865,0.489023,0.820200,-0.296865,-0.398351,0.871186,-0.286968,-0.398351,0.871186,-0.286968, + -0.398351,0.871186,-0.286968,-0.573842,-0.094068,-0.813546,-0.573842,-0.094068,-0.813546,-0.573842,-0.094068,-0.813546, + -0.573842,-0.094068,-0.813546,-0.715339,-0.131216,0.686347,-0.715339,-0.131216,0.686347,-0.715339,-0.131216,0.686347, + -0.715339,-0.131216,0.686347,0.563668,-0.492511,0.663107,0.563668,-0.492511,0.663107,0.563668,-0.492511,0.663107, + 0.563668,-0.492511,0.663107,-0.692747,0.541587,0.476219,-0.692747,0.541587,0.476219,-0.692747,0.541587,0.476219, + -0.761034,-0.416855,-0.497050,-0.761034,-0.416855,-0.497050,-0.761034,-0.416855,-0.497050,-0.105855,0.574355,0.811733, + -0.105855,0.574355,0.811733,-0.105855,0.574355,0.811733,0.781857,-0.622903,0.026300,0.781857,-0.622903,0.026300, + 0.781857,-0.622903,0.026300,0.534625,0.199882,0.821111,0.534625,0.199882,0.821111,0.534625,0.199882,0.821111, + 0.534625,0.199882,0.821111,-0.688599,0.010745,0.725063,-0.688599,0.010745,0.725063,-0.688599,0.010745,0.725063, + -0.688599,0.010745,0.725063,0.755952,0.429853,-0.493723,0.755952,0.429853,-0.493723,0.755952,0.429853,-0.493723, + 0.755952,0.429853,-0.493723,-0.647376,0.195897,-0.736566,-0.647376,0.195897,-0.736566,-0.647376,0.195897,-0.736566, + -0.647376,0.195897,-0.736566,-0.504254,-0.429409,0.749223,-0.504254,-0.429409,0.749223,-0.504254,-0.429409,0.749223, + -0.504254,-0.429409,0.749223,-0.501256,-0.674599,-0.541904,-0.501256,-0.674599,-0.541904,-0.501256,-0.674599,-0.541904, + -0.501256,-0.674599,-0.541904,-0.397756,-0.813288,0.424680,-0.397756,-0.813288,0.424680,-0.397756,-0.813288,0.424680, + -0.397756,-0.813288,0.424680,0.318224,-0.609262,0.726315,0.318224,-0.609262,0.726315,0.318224,-0.609262,0.726315, + 0.318224,-0.609262,0.726315,0.166242,-0.528133,-0.832730,0.166242,-0.528133,-0.832730,0.166242,-0.528133,-0.832730, + -0.221494,0.245615,0.943723,-0.221494,0.245615,0.943723,-0.221494,0.245615,0.943723,-0.221494,0.245615,0.943723, + 0.743365,-0.278273,0.608254,0.743365,-0.278273,0.608254,0.743365,-0.278273,0.608254,-0.955481,-0.178629,0.234838, + -0.955481,-0.178629,0.234838,-0.955481,-0.178629,0.234838,-0.955481,-0.178629,0.234838,-0.718438,-0.181092,-0.671604, + -0.718438,-0.181092,-0.671604,-0.718438,-0.181092,-0.671604,-0.718438,-0.181092,-0.671604,0.957436,-0.288643,0.001383, + 0.957436,-0.288643,0.001383,0.957436,-0.288643,0.001383,-0.671648,-0.225574,0.705695,-0.671648,-0.225574,0.705695, + -0.671648,-0.225574,0.705695,-0.671648,-0.225574,0.705695,-0.174777,-0.156469,0.972096,-0.174777,-0.156469,0.972096, + -0.174777,-0.156469,0.972096,-0.174777,-0.156469,0.972096,-0.525135,-0.826762,-0.201737,-0.525135,-0.826762,-0.201737, + -0.525135,-0.826762,-0.201737,-0.525135,-0.826762,-0.201737,-0.134123,-0.330445,0.934247,-0.134123,-0.330445,0.934247, + -0.134123,-0.330445,0.934247,0.140564,-0.026277,0.989723,0.140564,-0.026277,0.989723,0.140564,-0.026277,0.989723, + 0.140564,-0.026277,0.989723,-0.575945,-0.529286,0.623013,-0.575945,-0.529286,0.623013,-0.575945,-0.529286,0.623013, + -0.575945,-0.529286,0.623013,-0.738812,0.004843,0.673895,-0.738812,0.004843,0.673895,-0.738812,0.004843,0.673895, + -0.738812,0.004843,0.673895,0.047627,0.294881,0.954346,0.047627,0.294881,0.954346,0.047627,0.294881,0.954346, + 0.047627,0.294881,0.954346,-0.529085,0.817342,0.228083,-0.529085,0.817342,0.228083,-0.529085,0.817342,0.228083, + -0.529085,0.817342,0.228083,-0.652713,0.750900,-0.100571,-0.652713,0.750900,-0.100571,-0.652713,0.750900,-0.100571, + -0.238830,0.868451,0.434457,-0.238830,0.868451,0.434457,-0.238830,0.868451,0.434457,-0.238830,0.868451,0.434457, + -0.825104,-0.487522,-0.285528,-0.825104,-0.487522,-0.285528,-0.825104,-0.487522,-0.285528,-0.825104,-0.487522,-0.285528, + -0.702282,-0.307499,0.642063,-0.702282,-0.307499,0.642063,-0.702282,-0.307499,0.642063,-0.702282,-0.307499,0.642063, + 0.901467,0.186792,0.390468,0.901467,0.186792,0.390468,0.901467,0.186792,0.390468,0.401201,-0.688089,0.604624, + 0.401201,-0.688089,0.604624,0.401201,-0.688089,0.604624,0.883942,0.245099,0.398213,0.883942,0.245099,0.398213, + 0.883942,0.245099,0.398213,-0.181444,0.983301,-0.014074,-0.181444,0.983301,-0.014074,-0.181444,0.983301,-0.014074, + -0.181444,0.983301,-0.014074,0.314329,0.930214,0.189468,0.314329,0.930214,0.189468,0.314329,0.930214,0.189468, + 0.314329,0.930214,0.189468,-0.982655,-0.061809,-0.174842,-0.982655,-0.061809,-0.174842,-0.982655,-0.061809,-0.174842, + -0.982655,-0.061809,-0.174842,0.246604,0.954088,0.170006,0.246604,0.954088,0.170006,0.246604,0.954088,0.170006, + 0.246604,0.954088,0.170006,0.420216,0.886237,0.194939,0.420216,0.886237,0.194939,0.420216,0.886237,0.194939, + 0.420216,0.886237,0.194939,-0.609411,-0.052254,0.791130,-0.609411,-0.052254,0.791130,-0.609411,-0.052254,0.791130, + 0.442257,0.804404,-0.396665,0.442257,0.804404,-0.396665,0.442257,0.804404,-0.396665,-0.104145,0.616205,-0.780670, + -0.104145,0.616205,-0.780670,-0.104145,0.616205,-0.780670,-0.104145,0.616205,-0.780670,-0.717016,0.588531,0.373522, + -0.717016,0.588531,0.373522,-0.717016,0.588531,0.373522,-0.717016,0.588531,0.373522,-0.603598,0.786496,0.130739, + -0.603598,0.786496,0.130739,-0.603598,0.786496,0.130739,-0.067329,0.434432,-0.898185,-0.067329,0.434432,-0.898185, + -0.067329,0.434432,-0.898185,-0.067329,0.434432,-0.898185,0.311663,-0.940626,0.134495,0.311663,-0.940626,0.134495, + 0.311663,-0.940626,0.134495,0.311663,-0.940626,0.134495,0.732549,0.465044,0.497097,0.732549,0.465044,0.497097, + 0.732549,0.465044,0.497097,0.732549,0.465044,0.497097,-0.643846,-0.570721,-0.509647,-0.643846,-0.570721,-0.509647, + -0.643846,-0.570721,-0.509647,-0.643846,-0.570721,-0.509647,0.027949,-0.765889,-0.642365,0.027949,-0.765889,-0.642365, + 0.027949,-0.765889,-0.642365,-0.012819,-0.815371,-0.578797,-0.012819,-0.815371,-0.578797,-0.012819,-0.815371,-0.578797, + -0.018085,-0.651036,-0.758831,-0.018085,-0.651036,-0.758831,-0.018085,-0.651036,-0.758831,-0.657275,-0.729814,-0.188044, + -0.657275,-0.729814,-0.188044,-0.657275,-0.729814,-0.188044,-0.190145,0.563317,-0.804064,-0.190145,0.563317,-0.804064, + -0.190145,0.563317,-0.804064,-0.190145,0.563317,-0.804064,-0.430238,0.900706,0.060200,-0.430238,0.900706,0.060200, + -0.430238,0.900706,0.060200,-0.430238,0.900706,0.060200,-0.430238,0.900706,0.060200,0.093951,-0.333902,-0.937914, + 0.093951,-0.333902,-0.937914,0.093951,-0.333902,-0.937914,0.093951,-0.333902,-0.937914,-0.359549,-0.114437,0.926082, + -0.359549,-0.114437,0.926082,-0.359549,-0.114437,0.926082,-0.359549,-0.114437,0.926082,-0.144187,0.638357,0.756116, + -0.144187,0.638357,0.756116,-0.144187,0.638357,0.756116,-0.265914,0.839951,0.473046,-0.265914,0.839951,0.473046, + -0.265914,0.839951,0.473046,-0.361714,0.829771,0.425021,-0.361714,0.829771,0.425021,-0.361714,0.829771,0.425021, + 0.541785,-0.698196,-0.467965,0.541785,-0.698196,-0.467965,0.541785,-0.698196,-0.467965,0.541785,-0.698196,-0.467965, + 0.723869,-0.663089,0.190596,0.723869,-0.663089,0.190596,0.723869,-0.663089,0.190596,0.723869,-0.663089,0.190596, + -0.696963,-0.040232,0.715977,-0.696963,-0.040232,0.715977,-0.696963,-0.040232,0.715977,-0.696963,-0.040232,0.715977, + -0.943911,0.033035,-0.328543,-0.943911,0.033035,-0.328543,-0.943911,0.033035,-0.328543,-0.943911,0.033035,-0.328543, + -0.736942,-0.675031,0.035358,-0.736942,-0.675031,0.035358,-0.736942,-0.675031,0.035358,-0.736942,-0.675031,0.035358, + -0.504259,0.009905,0.863495,-0.504259,0.009905,0.863495,-0.504259,0.009905,0.863495,-0.504259,0.009905,0.863495, + 0.419070,0.483378,0.768587,0.419070,0.483378,0.768587,0.419070,0.483378,0.768587,0.419070,0.483378,0.768587, + -0.595483,-0.485156,0.640331,-0.595483,-0.485156,0.640331,-0.595483,-0.485156,0.640331,-0.595483,-0.485156,0.640331, + 0.211034,0.036514,0.976797,0.211034,0.036514,0.976797,0.211034,0.036514,0.976797,0.211034,0.036514,0.976797, + -0.137046,0.459905,-0.877329,-0.137046,0.459905,-0.877329,-0.137046,0.459905,-0.877329,-0.171635,-0.710638,0.682302, + -0.171635,-0.710638,0.682302,-0.171635,-0.710638,0.682302,-0.378228,0.603870,0.701630,-0.378228,0.603870,0.701630, + -0.378228,0.603870,0.701630,-0.378228,0.603870,0.701630,-0.547545,-0.028233,0.836299,-0.547545,-0.028233,0.836299, + -0.547545,-0.028233,0.836299,-0.675943,0.580454,0.454064,-0.675943,0.580454,0.454064,-0.675943,0.580454,0.454064, + -0.675943,0.580454,0.454064,-0.176783,0.254721,-0.950718,-0.176783,0.254721,-0.950718,-0.176783,0.254721,-0.950718, + -0.176783,0.254721,-0.950718,-0.686995,-0.685330,0.241580,-0.686995,-0.685330,0.241580,-0.686995,-0.685330,0.241580, + 0.668923,-0.684012,0.290979,0.668923,-0.684012,0.290979,0.668923,-0.684012,0.290979,-0.081852,-0.433369,-0.897492, + -0.081852,-0.433369,-0.897492,-0.081852,-0.433369,-0.897492,-0.291803,-0.483257,-0.825417,-0.291803,-0.483257,-0.825417, + -0.291803,-0.483257,-0.825417,-0.291803,-0.483257,-0.825417,-0.974824,-0.050718,0.217133,-0.974824,-0.050718,0.217133, + -0.974824,-0.050718,0.217133,-0.974824,-0.050718,0.217133,-0.283054,-0.093552,-0.954530,-0.283054,-0.093552,-0.954530, + -0.283054,-0.093552,-0.954530,-0.283054,-0.093552,-0.954530,0.321928,-0.033828,0.946160,0.321928,-0.033828,0.946160, + 0.321928,-0.033828,0.946160,0.321928,-0.033828,0.946160,0.314813,0.041611,-0.948241,0.314813,0.041611,-0.948241, + 0.314813,0.041611,-0.948241,0.314813,0.041611,-0.948241,-0.486555,-0.849126,-0.205545,-0.486555,-0.849126,-0.205545, + -0.486555,-0.849126,-0.205545,-0.051477,-0.926838,-0.371916,-0.051477,-0.926838,-0.371916,-0.051477,-0.926838,-0.371916, + -0.221460,-0.911893,0.345552,-0.221460,-0.911893,0.345552,-0.221460,-0.911893,0.345552,-0.221460,-0.911893,0.345552, + 0.506121,-0.501314,0.701802,0.506121,-0.501314,0.701802,0.506121,-0.501314,0.701802,0.367562,-0.512184,0.776251, + 0.367562,-0.512184,0.776251,0.367562,-0.512184,0.776251,0.621014,-0.507051,0.597697,0.621014,-0.507051,0.597697, + 0.621014,-0.507051,0.597697,-0.849049,-0.490769,-0.195604,-0.849049,-0.490769,-0.195604,-0.849049,-0.490769,-0.195604, + -0.687104,-0.340786,-0.641680,-0.687104,-0.340786,-0.641680,-0.687104,-0.340786,-0.641680,-0.851855,-0.408213,-0.328184, + -0.851855,-0.408213,-0.328184,-0.851855,-0.408213,-0.328184,0.327959,-0.872012,-0.363370,0.327959,-0.872012,-0.363370, + 0.327959,-0.872012,-0.363370,0.327959,-0.872012,-0.363370,-0.788729,0.366473,0.493563,-0.788729,0.366473,0.493563, + -0.788729,0.366473,0.493563,-0.788729,0.366473,0.493563,0.172554,-0.483260,-0.858304,0.172554,-0.483260,-0.858304, + 0.172554,-0.483260,-0.858304,0.172554,-0.483260,-0.858304,-0.537324,-0.373663,-0.756081,-0.537324,-0.373663,-0.756081, + -0.537324,-0.373663,-0.756081,-0.537324,-0.373663,-0.756081,-0.911048,-0.297831,0.285112,-0.911048,-0.297831,0.285112, + -0.911048,-0.297831,0.285112,-0.911048,-0.297831,0.285112,0.196667,-0.942900,-0.268817,0.196667,-0.942900,-0.268817, + 0.196667,-0.942900,-0.268817,0.196667,-0.942900,-0.268817,-0.947298,0.318655,0.032940,-0.947298,0.318655,0.032940, + -0.947298,0.318655,0.032940,-0.947298,0.318655,0.032940,-0.618710,0.513341,-0.594709,-0.618710,0.513341,-0.594709, + -0.618710,0.513341,-0.594709,-0.618710,0.513341,-0.594709,0.100910,-0.664332,0.740594,0.100910,-0.664332,0.740594, + 0.100910,-0.664332,0.740594,0.100910,-0.664332,0.740594,-0.420206,-0.441512,-0.792776,-0.420206,-0.441512,-0.792776, + -0.420206,-0.441512,-0.792776,-0.420206,-0.441512,-0.792776,-0.433236,-0.899881,0.050200,-0.433236,-0.899881,0.050200, + -0.433236,-0.899881,0.050200,-0.433236,-0.899881,0.050200,0.040864,-0.008352,-0.999130,0.040864,-0.008352,-0.999130, + 0.040864,-0.008352,-0.999130,0.040864,-0.008352,-0.999130,0.573351,0.215650,-0.790420,0.573351,0.215650,-0.790420, + 0.573351,0.215650,-0.790420,-0.639005,-0.479477,0.601477,-0.639005,-0.479477,0.601477,-0.639005,-0.479477,0.601477, + -0.630223,0.214328,-0.746245,-0.630223,0.214328,-0.746245,-0.630223,0.214328,-0.746245,0.200587,0.085434,-0.975944, + 0.200587,0.085434,-0.975944,0.200587,0.085434,-0.975944,0.200587,0.085434,-0.975944,0.733287,-0.220556,0.643153, + 0.733287,-0.220556,0.643153,0.733287,-0.220556,0.643153,0.812368,0.545391,0.206416,0.812368,0.545391,0.206416, + 0.812368,0.545391,0.206416,0.812368,0.545391,0.206416,-0.332396,-0.510339,-0.793137,-0.332396,-0.510339,-0.793137, + -0.332396,-0.510339,-0.793137,-0.332396,-0.510339,-0.793137,-0.650353,-0.441639,0.618058,-0.650353,-0.441639,0.618058, + -0.650353,-0.441639,0.618058,-0.650353,-0.441639,0.618058,0.165832,-0.551604,0.817455,0.165832,-0.551604,0.817455, + 0.165832,-0.551604,0.817455,0.165832,-0.551604,0.817455,-0.435697,-0.525816,0.730538,-0.435697,-0.525816,0.730538, + -0.435697,-0.525816,0.730538,-0.435697,-0.525816,0.730538,-0.953387,0.206034,-0.220460,-0.953387,0.206034,-0.220460, + -0.953387,0.206034,-0.220460,-0.953387,0.206034,-0.220460,-0.853250,0.317126,-0.414000,-0.853250,0.317126,-0.414000, + -0.853250,0.317126,-0.414000,-0.187309,0.879492,0.437503,-0.187309,0.879492,0.437503,-0.187309,0.879492,0.437503, + -0.563304,0.790620,0.240019,-0.563304,0.790620,0.240019,-0.563304,0.790620,0.240019,-0.718543,0.633797,-0.286353, + -0.718543,0.633797,-0.286353,-0.718543,0.633797,-0.286353,-0.718543,0.633797,-0.286353,-0.502383,0.864333,0.023233, + -0.502383,0.864333,0.023233,-0.502383,0.864333,0.023233,-0.459368,0.030161,0.887734,-0.459368,0.030161,0.887734, + -0.459368,0.030161,0.887734,-0.232886,-0.396857,0.887845,-0.232886,-0.396857,0.887845,-0.232886,-0.396857,0.887845, + -0.232886,-0.396857,0.887845,0.186236,-0.363677,0.912719,0.186236,-0.363677,0.912719,0.186236,-0.363677,0.912719, + 0.186236,-0.363677,0.912719,-0.203814,-0.515992,0.831993,-0.203814,-0.515992,0.831993,-0.203814,-0.515992,0.831993, + -0.203814,-0.515992,0.831993,-0.043645,-0.797534,0.601692,-0.043645,-0.797534,0.601692,-0.043645,-0.797534,0.601692, + -0.043645,-0.797534,0.601692,0.425458,-0.862590,0.273722,0.425458,-0.862590,0.273722,0.425458,-0.862590,0.273722, + -0.086336,-0.413282,0.906501,-0.086336,-0.413282,0.906501,-0.086336,-0.413282,0.906501,0.391120,-0.864174,0.316590, + 0.391120,-0.864174,0.316590,0.391120,-0.864174,0.316590,0.100577,-0.364412,0.925791,0.100577,-0.364412,0.925791, + 0.100577,-0.364412,0.925791,0.100577,-0.364412,0.925791,0.457345,-0.661171,0.594717,0.457345,-0.661171,0.594717, + 0.457345,-0.661171,0.594717,0.457345,-0.661171,0.594717,0.087201,0.019630,-0.995997,0.087201,0.019630,-0.995997, + 0.087201,0.019630,-0.995997,0.087201,0.019630,-0.995997,-0.216067,0.627087,0.748383,-0.216067,0.627087,0.748383, + -0.216067,0.627087,0.748383,0.476524,0.878431,0.035821,0.476524,0.878431,0.035821,0.476524,0.878431,0.035821, + 0.023290,0.701600,-0.712191,0.023290,0.701600,-0.712191,0.023290,0.701600,-0.712191,-0.582295,0.806126,-0.105326, + -0.582295,0.806126,-0.105326,-0.582295,0.806126,-0.105326,0.180097,-0.239033,0.954164,0.180097,-0.239033,0.954164, + 0.180097,-0.239033,0.954164,0.180097,-0.239033,0.954164,-0.191062,0.498171,0.845766,-0.191062,0.498171,0.845766, + -0.191062,0.498171,0.845766,-0.191062,0.498171,0.845766,0.344232,0.146437,0.927394,0.344232,0.146437,0.927394, + 0.344232,0.146437,0.927394,0.344232,0.146437,0.927394,0.965531,0.113391,0.234290,0.965531,0.113391,0.234290, + 0.965531,0.113391,0.234290,0.965531,0.113391,0.234290,0.343003,0.095544,0.934463,0.343003,0.095544,0.934463, + 0.343003,0.095544,0.934463,0.343003,0.095544,0.934463,-0.627598,0.730870,0.268234,-0.627598,0.730870,0.268234, + -0.627598,0.730870,0.268234,-0.627598,0.730870,0.268234,-0.353964,0.082049,-0.931653,-0.353964,0.082049,-0.931653, + -0.353964,0.082049,-0.931653,-0.353964,0.082049,-0.931653,-0.719401,-0.692815,-0.049698,-0.719401,-0.692815,-0.049698, + -0.719401,-0.692815,-0.049698,-0.499690,-0.858414,0.115913,-0.499690,-0.858414,0.115913,-0.499690,-0.858414,0.115913, + -0.596370,-0.714938,0.364976,-0.596370,-0.714938,0.364976,-0.596370,-0.714938,0.364976,-0.826848,-0.524356,0.203401, + -0.826848,-0.524356,0.203401,-0.826848,-0.524356,0.203401,0.680633,0.341275,-0.648282,0.680633,0.341275,-0.648282, + 0.680633,0.341275,-0.648282,0.680633,0.341275,-0.648282,-0.770561,-0.624101,0.129355,-0.770561,-0.624101,0.129355, + -0.770561,-0.624101,0.129355,-0.770561,-0.624101,0.129355,-0.123714,-0.590552,-0.797461,-0.123714,-0.590552,-0.797461, + -0.123714,-0.590552,-0.797461,-0.123714,-0.590552,-0.797461,-0.205522,0.042845,0.977714,-0.205522,0.042845,0.977714, + -0.205522,0.042845,0.977714,-0.205522,0.042845,0.977714,-0.922543,-0.237585,-0.304085,-0.922543,-0.237585,-0.304085, + -0.922543,-0.237585,-0.304085,-0.922543,-0.237585,-0.304085,0.754415,-0.651775,-0.077766,0.754415,-0.651775,-0.077766, + 0.754415,-0.651775,-0.077766,0.754415,-0.651775,-0.077766,0.685825,0.717954,-0.119103,0.685825,0.717954,-0.119103, + 0.685825,0.717954,-0.119103,0.685825,0.717954,-0.119103,-0.726725,0.616098,0.303800,-0.726725,0.616098,0.303800, + -0.726725,0.616098,0.303800,-0.726725,0.616098,0.303800,-0.442239,-0.116328,-0.889321,-0.442239,-0.116328,-0.889321, + -0.442239,-0.116328,-0.889321,-0.442239,-0.116328,-0.889321,0.550638,-0.832726,-0.058008,0.550638,-0.832726,-0.058008, + 0.550638,-0.832726,-0.058008,0.550638,-0.832726,-0.058008,-0.534205,-0.829848,-0.161174,-0.534205,-0.829848,-0.161174, + -0.534205,-0.829848,-0.161174,-0.097692,-0.838111,0.536681,-0.097692,-0.838111,0.536681,-0.097692,-0.838111,0.536681, + 0.748620,-0.659814,0.064917,0.748620,-0.659814,0.064917,0.748620,-0.659814,0.064917,0.163217,-0.789839,-0.591197, + 0.163217,-0.789839,-0.591197,0.163217,-0.789839,-0.591197,0.159636,0.263772,-0.951284,0.159636,0.263772,-0.951284, + 0.159636,0.263772,-0.951284,0.159636,0.263772,-0.951284,-0.990134,-0.127128,-0.058932,-0.990134,-0.127128,-0.058932, + -0.990134,-0.127128,-0.058932,-0.990134,-0.127128,-0.058932,-0.215637,0.338269,0.916010,-0.215637,0.338269,0.916010, + -0.215637,0.338269,0.916010,-0.215637,0.338269,0.916010,-0.410998,-0.770788,0.486792,-0.410998,-0.770788,0.486792, + -0.410998,-0.770788,0.486792,-0.727455,0.511237,0.457652,-0.727455,0.511237,0.457652,-0.727455,0.511237,0.457652, + 0.376376,-0.905334,0.196753,0.376376,-0.905334,0.196753,0.376376,-0.905334,0.196753,0.662393,0.726736,-0.181906, + 0.662393,0.726736,-0.181906,0.662393,0.726736,-0.181906,-0.163269,-0.370608,0.914326,-0.163269,-0.370608,0.914326, + -0.163269,-0.370608,0.914326,-0.163269,-0.370608,0.914326,-0.961991,-0.271327,-0.030916,-0.961991,-0.271327,-0.030916, + -0.961991,-0.271327,-0.030916,-0.961991,-0.271327,-0.030916,0.961403,-0.208206,0.179873,0.961403,-0.208206,0.179873, + 0.961403,-0.208206,0.179873,0.961403,-0.208206,0.179873,0.133106,-0.041522,-0.990232,0.133106,-0.041522,-0.990232, + 0.133106,-0.041522,-0.990232,0.133106,-0.041522,-0.990232,-0.489329,0.160707,0.857164,-0.489329,0.160707,0.857164, + -0.489329,0.160707,0.857164,-0.489329,0.160707,0.857164,0.501439,0.532135,-0.682196,0.501439,0.532135,-0.682196, + 0.501439,0.532135,-0.682196,0.501439,0.532135,-0.682196,-0.107162,0.988104,-0.110304,-0.107162,0.988104,-0.110304, + -0.107162,0.988104,-0.110304,-0.107162,0.988104,-0.110304,-0.256380,0.732224,0.630966,-0.256380,0.732224,0.630966, + -0.256380,0.732224,0.630966,-0.256380,0.732224,0.630966,0.684690,0.281882,-0.672118,0.684690,0.281882,-0.672118, + 0.684690,0.281882,-0.672118,-0.765919,0.124944,0.630681,-0.765919,0.124944,0.630681,-0.765919,0.124944,0.630681, + -0.765919,0.124944,0.630681,0.245505,0.296249,0.923019,0.245505,0.296249,0.923019,0.245505,0.296249,0.923019, + -0.750960,0.440935,-0.491564,-0.750960,0.440935,-0.491564,-0.750960,0.440935,-0.491564,-0.750960,0.440935,-0.491564, + 0.045385,0.178731,-0.982851,0.045385,0.178731,-0.982851,0.045385,0.178731,-0.982851,0.045385,0.178731,-0.982851, + 0.856447,0.041547,0.514560,0.856447,0.041547,0.514560,0.856447,0.041547,0.514560,-0.646866,0.636623,-0.419851, + -0.646866,0.636623,-0.419851,-0.646866,0.636623,-0.419851,-0.646866,0.636623,-0.419851,-0.797808,0.589667,0.125680, + -0.797808,0.589667,0.125680,-0.797808,0.589667,0.125680,-0.797808,0.589667,0.125680,0.443256,0.747647,-0.494518, + 0.443256,0.747647,-0.494518,0.443256,0.747647,-0.494518,0.443256,0.747647,-0.494518,-0.793317,0.372656,0.481431, + -0.793317,0.372656,0.481431,-0.793317,0.372656,0.481431,-0.793317,0.372656,0.481431,-0.413103,0.849345,-0.328570, + -0.413103,0.849345,-0.328570,-0.413103,0.849345,-0.328570,-0.413103,0.849345,-0.328570,-0.742076,0.433605,-0.511186, + -0.742076,0.433605,-0.511186,-0.742076,0.433605,-0.511186,-0.742076,0.433605,-0.511186,-0.944467,0.139662,0.297449, + -0.944467,0.139662,0.297449,-0.944467,0.139662,0.297449,-0.944467,0.139662,0.297449,-0.693663,-0.515359,-0.503226, + -0.693663,-0.515359,-0.503226,-0.693663,-0.515359,-0.503226,-0.693663,-0.515359,-0.503226,-0.408440,-0.572738,-0.710738, + -0.408440,-0.572738,-0.710738,-0.408440,-0.572738,-0.710738,-0.830294,-0.530517,-0.170774,-0.830294,-0.530517,-0.170774, + -0.830294,-0.530517,-0.170774,-0.830294,-0.530517,-0.170774,0.290490,0.473498,-0.831514,0.290490,0.473498,-0.831514, + 0.290490,0.473498,-0.831514,0.290490,0.473498,-0.831514,-0.560857,0.687685,-0.461007,-0.560857,0.687685,-0.461007, + -0.560857,0.687685,-0.461007,-0.560857,0.687685,-0.461007,-0.223044,-0.179101,0.958214,-0.223044,-0.179101,0.958214, + -0.223044,-0.179101,0.958214,-0.107930,0.784141,0.611125,-0.107930,0.784141,0.611125,-0.107930,0.784141,0.611125, + -0.260776,-0.223569,0.939155,-0.260776,-0.223569,0.939155,-0.260776,-0.223569,0.939155,-0.487264,-0.835403,-0.254315, + -0.487264,-0.835403,-0.254315,-0.487264,-0.835403,-0.254315,-0.487264,-0.835403,-0.254315,-0.527560,-0.801459,0.281680, + -0.527560,-0.801459,0.281680,-0.527560,-0.801459,0.281680,-0.527560,-0.801459,0.281680,-0.037831,0.177801,-0.983339, + -0.037831,0.177801,-0.983339,-0.037831,0.177801,-0.983339,-0.037831,0.177801,-0.983339,-0.536973,-0.817160,0.209547, + -0.536973,-0.817160,0.209547,-0.536973,-0.817160,0.209547,-0.536973,-0.817160,0.209547,0.367346,-0.928553,-0.053353, + 0.367346,-0.928553,-0.053353,0.367346,-0.928553,-0.053353,0.367346,-0.928553,-0.053353,-0.643206,-0.158110,0.749191, + -0.643206,-0.158110,0.749191,-0.643206,-0.158110,0.749191,0.387481,-0.658846,-0.644811,0.387481,-0.658846,-0.644811, + 0.387481,-0.658846,-0.644811,-0.094487,-0.295762,-0.950577,-0.094487,-0.295762,-0.950577,-0.094487,-0.295762,-0.950577, + -0.094487,-0.295762,-0.950577,-0.802919,-0.566766,0.184653,-0.802919,-0.566766,0.184653,-0.802919,-0.566766,0.184653, + -0.802919,-0.566766,0.184653,-0.723868,-0.681544,-0.107302,-0.723868,-0.681544,-0.107302,-0.723868,-0.681544,-0.107302, + 0.037265,-0.076855,-0.996346,0.037265,-0.076855,-0.996346,0.037265,-0.076855,-0.996346,0.037265,-0.076855,-0.996346, + 0.383731,0.791234,0.476129,0.383731,0.791234,0.476129,0.383731,0.791234,0.476129,0.383731,0.791234,0.476129, + 0.534911,-0.836845,0.116452,0.534911,-0.836845,0.116452,0.534911,-0.836845,0.116452,0.534911,-0.836845,0.116452, + -0.430583,0.883565,-0.184149,-0.430583,0.883565,-0.184149,-0.430583,0.883565,-0.184149,-0.430583,0.883565,-0.184149, + 0.159421,0.863420,-0.478634,0.159421,0.863420,-0.478634,0.159421,0.863420,-0.478634,0.090429,0.935319,-0.342053, + 0.090429,0.935319,-0.342053,0.090429,0.935319,-0.342053,0.073867,0.845047,-0.529565,0.073867,0.845047,-0.529565, + 0.073867,0.845047,-0.529565,-0.508306,0.856247,-0.092013,-0.508306,0.856247,-0.092013,-0.508306,0.856247,-0.092013, + -0.210131,-0.292107,-0.933016,-0.210131,-0.292107,-0.933016,-0.210131,-0.292107,-0.933016,-0.210131,-0.292107,-0.933016, + -0.615515,-0.767944,-0.177211,-0.615515,-0.767944,-0.177211,-0.615515,-0.767944,-0.177211,-0.615515,-0.767944,-0.177211, + -0.615515,-0.767944,-0.177211,-0.785401,0.040389,-0.617668,-0.785401,0.040389,-0.617668,-0.785401,0.040389,-0.617668, + -0.785401,0.040389,-0.617668,0.083865,0.338130,0.937355,0.083865,0.338130,0.937355,0.083865,0.338130,0.937355, + 0.083865,0.338130,0.937355,-0.558164,-0.711838,0.426308,-0.558164,-0.711838,0.426308,-0.558164,-0.711838,0.426308, + -0.630187,-0.773931,0.062417,-0.630187,-0.773931,0.062417,-0.630187,-0.773931,0.062417,-0.547685,-0.708780,0.444604, + -0.547685,-0.708780,0.444604,-0.547685,-0.708780,0.444604,0.846225,0.305011,0.436888,0.846225,0.305011,0.436888, + 0.846225,0.305011,0.436888,0.846225,0.305011,0.436888,0.306023,0.519589,0.797733,0.306023,0.519589,0.797733, + 0.306023,0.519589,0.797733,0.306023,0.519589,0.797733,-0.747841,0.482883,-0.455585,-0.747841,0.482883,-0.455585, + -0.747841,0.482883,-0.455585,-0.747841,0.482883,-0.455585,0.057965,0.020593,-0.998106,0.057965,0.020593,-0.998106, + 0.057965,0.020593,-0.998106,0.057965,0.020593,-0.998106,-0.430511,0.873034,0.229067,-0.430511,0.873034,0.229067, + -0.430511,0.873034,0.229067,-0.430511,0.873034,0.229067,-0.594162,-0.181197,0.783670,-0.594162,-0.181197,0.783670, + -0.594162,-0.181197,0.783670,-0.594162,-0.181197,0.783670,0.445522,-0.702908,0.554464,0.445522,-0.702908,0.554464, + 0.445522,-0.702908,0.554464,0.445522,-0.702908,0.554464,-0.584986,0.313264,0.748102,-0.584986,0.313264,0.748102, + -0.584986,0.313264,0.748102,-0.584986,0.313264,0.748102,0.231280,-0.410982,0.881818,0.231280,-0.410982,0.881818, + 0.231280,-0.410982,0.881818,0.231280,-0.410982,0.881818,-0.092319,-0.049625,-0.994492,-0.092319,-0.049625,-0.994492, + -0.092319,-0.049625,-0.994492,-0.139862,0.333952,0.932156,-0.139862,0.333952,0.932156,-0.139862,0.333952,0.932156, + -0.458861,-0.748292,0.479067,-0.458861,-0.748292,0.479067,-0.458861,-0.748292,0.479067,-0.458861,-0.748292,0.479067, + -0.507044,-0.224171,0.832258,-0.507044,-0.224171,0.832258,-0.507044,-0.224171,0.832258,-0.734559,-0.299292,0.608972, + -0.734559,-0.299292,0.608972,-0.734559,-0.299292,0.608972,-0.734559,-0.299292,0.608972,-0.958944,-0.264643,0.101936, + -0.958944,-0.264643,0.101936,-0.958944,-0.264643,0.101936,-0.958944,-0.264643,0.101936,-0.339002,0.896855,0.284130, + -0.339002,0.896855,0.284130,-0.339002,0.896855,0.284130,0.919453,0.306059,-0.246850,0.919453,0.306059,-0.246850, + 0.919453,0.306059,-0.246850,0.252173,0.589707,-0.767238,0.252173,0.589707,-0.767238,0.252173,0.589707,-0.767238, + -0.780225,0.548611,-0.300459,-0.780225,0.548611,-0.300459,-0.780225,0.548611,-0.300459,-0.780225,0.548611,-0.300459, + -0.455919,0.612684,0.645567,-0.455919,0.612684,0.645567,-0.455919,0.612684,0.645567,-0.455919,0.612684,0.645567, + 0.798711,-0.269570,-0.537953,0.798711,-0.269570,-0.537953,0.798711,-0.269570,-0.537953,0.798711,-0.269570,-0.537953, + -0.723474,0.370308,0.582630,-0.723474,0.370308,0.582630,-0.723474,0.370308,0.582630,-0.723474,0.370308,0.582630, + 0.861868,-0.506572,0.023825,0.861868,-0.506572,0.023825,0.861868,-0.506572,0.023825,0.861868,-0.506572,0.023825, + 0.465565,0.757890,-0.457002,0.465565,0.757890,-0.457002,0.465565,0.757890,-0.457002,0.184603,0.959059,-0.214773, + 0.184603,0.959059,-0.214773,0.184603,0.959059,-0.214773,0.282363,0.948277,0.145056,0.282363,0.948277,0.145056, + 0.282363,0.948277,0.145056,0.282363,0.948277,0.145056,0.878056,0.326990,-0.349422,0.878056,0.326990,-0.349422, + 0.878056,0.326990,-0.349422,0.876691,0.306621,-0.370671,0.876691,0.306621,-0.370671,0.876691,0.306621,-0.370671, + 0.838593,0.384252,-0.386150,0.838593,0.384252,-0.386150,0.838593,0.384252,-0.386150,-0.598678,0.790862,-0.126975, + -0.598678,0.790862,-0.126975,-0.598678,0.790862,-0.126975,-0.400364,0.761909,-0.509121,-0.400364,0.761909,-0.509121, + -0.400364,0.761909,-0.509121,-0.584007,0.774925,-0.241716,-0.584007,0.774925,-0.241716,-0.584007,0.774925,-0.241716, + 0.606767,0.322856,-0.726359,0.606767,0.322856,-0.726359,0.606767,0.322856,-0.726359,0.606767,0.322856,-0.726359, + -0.010220,0.273331,0.961866,-0.010220,0.273331,0.961866,-0.010220,0.273331,0.961866,-0.010220,0.273331,0.961866, + -0.382457,0.104458,-0.918049,-0.382457,0.104458,-0.918049,-0.382457,0.104458,-0.918049,-0.382457,0.104458,-0.918049, + -0.545063,0.592285,-0.593385,-0.545063,0.592285,-0.593385,-0.545063,0.592285,-0.593385,-0.545063,0.592285,-0.593385, + -0.419601,0.710746,0.564602,-0.419601,0.710746,0.564602,-0.419601,0.710746,0.564602,-0.419601,0.710746,0.564602, + 0.735346,0.545527,-0.402077,0.735346,0.545527,-0.402077,0.735346,0.545527,-0.402077,0.735346,0.545527,-0.402077, + -0.804312,0.169285,0.569583,-0.804312,0.169285,0.569583,-0.804312,0.169285,0.569583,-0.804312,0.169285,0.569583, + -0.994188,-0.103795,-0.028597,-0.994188,-0.103795,-0.028597,-0.994188,-0.103795,-0.028597,-0.994188,-0.103795,-0.028597, + 0.759597,0.481862,0.436832,0.759597,0.481862,0.436832,0.759597,0.481862,0.436832,0.759597,0.481862,0.436832, + -0.222030,0.688193,-0.690719,-0.222030,0.688193,-0.690719,-0.222030,0.688193,-0.690719,-0.222030,0.688193,-0.690719, + -0.256788,0.936949,0.237039,-0.256788,0.936949,0.237039,-0.256788,0.936949,0.237039,-0.256788,0.936949,0.237039, + 0.146799,0.187985,-0.971139,0.146799,0.187985,-0.971139,0.146799,0.187985,-0.971139,0.146799,0.187985,-0.971139, + 0.091119,-0.301138,-0.949217,0.091119,-0.301138,-0.949217,0.091119,-0.301138,-0.949217,-0.108015,0.469497,0.876302, + -0.108015,0.469497,0.876302,-0.108015,0.469497,0.876302,-0.477276,-0.145743,-0.866583,-0.477276,-0.145743,-0.866583, + -0.477276,-0.145743,-0.866583,0.661680,0.234634,-0.712129,0.661680,0.234634,-0.712129,0.661680,0.234634,-0.712129, + 0.661680,0.234634,-0.712129,0.751824,0.202097,0.627629,0.751824,0.202097,0.627629,0.751824,0.202097,0.627629, + 0.698894,-0.612540,-0.369246,0.698894,-0.612540,-0.369246,0.698894,-0.612540,-0.369246,0.698894,-0.612540,-0.369246, + -0.709261,0.577524,-0.404246,-0.709261,0.577524,-0.404246,-0.709261,0.577524,-0.404246,-0.709261,0.577524,-0.404246, + -0.466191,0.785046,-0.407882,-0.466191,0.785046,-0.407882,-0.466191,0.785046,-0.407882,-0.466191,0.785046,-0.407882, + -0.405801,0.802632,0.437158,-0.405801,0.802632,0.437158,-0.405801,0.802632,0.437158,-0.405801,0.802632,0.437158, + -0.475938,0.864053,-0.163998,-0.475938,0.864053,-0.163998,-0.475938,0.864053,-0.163998,-0.475938,0.864053,-0.163998, + -0.117488,-0.083550,-0.989553,-0.117488,-0.083550,-0.989553,-0.117488,-0.083550,-0.989553,-0.117488,-0.083550,-0.989553, + 0.018376,-0.284500,-0.958500,0.018376,-0.284500,-0.958500,0.018376,-0.284500,-0.958500,-0.826847,-0.549121,-0.121613, + -0.826847,-0.549121,-0.121613,-0.826847,-0.549121,-0.121613,-0.699005,-0.479683,-0.530375,-0.699005,-0.479683,-0.530375, + -0.699005,-0.479683,-0.530375,-0.209176,-0.535901,-0.817958,-0.209176,-0.535901,-0.817958,-0.209176,-0.535901,-0.817958, + -0.209176,-0.535901,-0.817958,-0.534293,-0.649950,-0.540459,-0.534293,-0.649950,-0.540459,-0.534293,-0.649950,-0.540459, + -0.533485,-0.198690,0.822141,-0.533485,-0.198690,0.822141,-0.533485,-0.198690,0.822141,-0.042305,0.131573,-0.990403, + -0.042305,0.131573,-0.990403,-0.042305,0.131573,-0.990403,-0.042305,0.131573,-0.990403,0.220213,0.384828,0.896333, + 0.220213,0.384828,0.896333,0.220213,0.384828,0.896333,0.962148,0.068764,0.263709,0.962148,0.068764,0.263709, + 0.962148,0.068764,0.263709,0.666003,-0.744489,0.046650,0.666003,-0.744489,0.046650,0.666003,-0.744489,0.046650, + 0.267130,-0.553865,0.788591,0.267130,-0.553865,0.788591,0.267130,-0.553865,0.788591,0.127470,0.177559,0.975820, + 0.127470,0.177559,0.975820,0.127470,0.177559,0.975820,0.127470,0.177559,0.975820,0.236692,-0.590008,0.771924, + 0.236692,-0.590008,0.771924,0.236692,-0.590008,0.771924,0.236692,-0.590008,0.771924,0.239052,-0.004121,0.970998, + 0.239052,-0.004121,0.970998,0.239052,-0.004121,0.970998,0.239052,-0.004121,0.970998,0.652685,0.646153,-0.395586, + 0.652685,0.646153,-0.395586,0.652685,0.646153,-0.395586,0.652685,0.646153,-0.395586,0.186793,0.053323,0.980951, + 0.186793,0.053323,0.980951,0.186793,0.053323,0.980951,0.186793,0.053323,0.980951,0.196738,-0.972753,0.122664, + 0.196738,-0.972753,0.122664,0.196738,-0.972753,0.122664,0.196738,-0.972753,0.122664,-0.050328,-0.167448,-0.984595, + -0.050328,-0.167448,-0.984595,-0.050328,-0.167448,-0.984595,-0.050328,-0.167448,-0.984595,-0.973665,-0.148637,-0.172869, + -0.973665,-0.148637,-0.172869,-0.973665,-0.148637,-0.172869,-0.994907,0.093980,0.036445,-0.994907,0.093980,0.036445, + -0.994907,0.093980,0.036445,-0.959810,-0.109798,0.258282,-0.959810,-0.109798,0.258282,-0.959810,-0.109798,0.258282, + -0.925123,-0.376335,0.050204,-0.925123,-0.376335,0.050204,-0.925123,-0.376335,0.050204,0.645346,0.335686,-0.686180, + 0.645346,0.335686,-0.686180,0.645346,0.335686,-0.686180,0.645346,0.335686,-0.686180,-0.760958,-0.624554,0.175715, + -0.760958,-0.624554,0.175715,-0.760958,-0.624554,0.175715,-0.760958,-0.624554,0.175715,-0.320316,-0.425476,-0.846385, + -0.320316,-0.425476,-0.846385,-0.320316,-0.425476,-0.846385,-0.320316,-0.425476,-0.846385,-0.353185,0.609741,0.709560, + -0.353185,0.609741,0.709560,-0.353185,0.609741,0.709560,-0.353185,0.609741,0.709560,-0.610339,-0.770880,0.182295, + -0.610339,-0.770880,0.182295,-0.610339,-0.770880,0.182295,-0.610339,-0.770880,0.182295,-0.077377,0.993200,0.086981, + -0.077377,0.993200,0.086981,-0.077377,0.993200,0.086981,-0.077377,0.993200,0.086981,0.990669,0.136291,0.000225, + 0.990669,0.136291,0.000225,0.990669,0.136291,0.000225,0.990669,0.136291,0.000225,0.042900,-0.989095,0.140890, + 0.042900,-0.989095,0.140890,0.042900,-0.989095,0.140890,0.042900,-0.989095,0.140890,-0.265856,-0.126969,-0.955615, + -0.265856,-0.126969,-0.955615,-0.265856,-0.126969,-0.955615,-0.265856,-0.126969,-0.955615,-0.344129,0.936248,0.070815, + -0.344129,0.936248,0.070815,-0.344129,0.936248,0.070815,-0.344129,0.936248,0.070815,-0.940711,-0.213492,-0.263598, + -0.940711,-0.213492,-0.263598,-0.940711,-0.213492,-0.263598,-0.787928,0.590470,-0.174684,-0.787928,0.590470,-0.174684, + -0.787928,0.590470,-0.174684,-0.044788,0.568956,-0.821147,-0.044788,0.568956,-0.821147,-0.044788,0.568956,-0.821147, + -0.403117,-0.242200,-0.882517,-0.403117,-0.242200,-0.882517,-0.403117,-0.242200,-0.882517,0.456770,-0.781579,-0.424847, + 0.456770,-0.781579,-0.424847,0.456770,-0.781579,-0.424847,0.456770,-0.781579,-0.424847,-0.707279,-0.507464,0.492176, + -0.707279,-0.507464,0.492176,-0.707279,-0.507464,0.492176,-0.707279,-0.507464,0.492176,-0.027144,0.590482,0.806594, + -0.027144,0.590482,0.806594,-0.027144,0.590482,0.806594,-0.027144,0.590482,0.806594,-0.908400,0.048364,0.415297, + -0.908400,0.048364,0.415297,-0.908400,0.048364,0.415297,-0.056935,-0.954080,0.294090,-0.056935,-0.954080,0.294090, + -0.056935,-0.954080,0.294090,-0.529063,0.798138,0.288213,-0.529063,0.798138,0.288213,-0.529063,0.798138,0.288213, + 0.990146,0.123431,-0.066143,0.990146,0.123431,-0.066143,0.990146,0.123431,-0.066143,-0.534439,0.772420,0.343136, + -0.534439,0.772420,0.343136,-0.534439,0.772420,0.343136,-0.534439,0.772420,0.343136,-0.804167,-0.437975,0.401863, + -0.804167,-0.437975,0.401863,-0.804167,-0.437975,0.401863,-0.804167,-0.437975,0.401863,0.413811,0.669816,-0.616528, + 0.413811,0.669816,-0.616528,0.413811,0.669816,-0.616528,0.413811,0.669816,-0.616528,0.213814,-0.759513,-0.614348, + 0.213814,-0.759513,-0.614348,0.213814,-0.759513,-0.614348,0.213814,-0.759513,-0.614348,-0.209323,-0.091683,0.973539, + -0.209323,-0.091683,0.973539,-0.209323,-0.091683,0.973539,-0.209323,-0.091683,0.973539,0.913386,0.069373,-0.401141, + 0.913386,0.069373,-0.401141,0.913386,0.069373,-0.401141,0.913386,0.069373,-0.401141,0.840556,-0.076543,0.536290, + 0.840556,-0.076543,0.536290,0.840556,-0.076543,0.536290,0.840556,-0.076543,0.536290,0.219122,0.198072,0.955381, + 0.219122,0.198072,0.955381,0.219122,0.198072,0.955381,0.219122,0.198072,0.955381,0.735833,0.216419,-0.641648, + 0.735833,0.216419,-0.641648,0.735833,0.216419,-0.641648,-0.381706,-0.336169,0.860982,-0.381706,-0.336169,0.860982, + -0.381706,-0.336169,0.860982,-0.381706,-0.336169,0.860982,-0.152284,0.743083,0.651642,-0.152284,0.743083,0.651642, + -0.152284,0.743083,0.651642,0.410997,-0.867890,0.279014,0.410997,-0.867890,0.279014,0.410997,-0.867890,0.279014, + 0.410997,-0.867890,0.279014,0.651055,-0.501646,-0.569631,0.651055,-0.501646,-0.569631,0.651055,-0.501646,-0.569631, + 0.651055,-0.501646,-0.569631,-0.003610,0.999637,-0.026700,-0.003610,0.999637,-0.026700,-0.003610,0.999637,-0.026700, + 0.561953,-0.721305,0.404880,0.561953,-0.721305,0.404880,0.561953,-0.721305,0.404880,0.561953,-0.721305,0.404880, + 0.210064,-0.542539,0.813342,0.210064,-0.542539,0.813342,0.210064,-0.542539,0.813342,0.210064,-0.542539,0.813342, + 0.981498,0.143031,-0.127295,0.981498,0.143031,-0.127295,0.981498,0.143031,-0.127295,0.981498,0.143031,-0.127295, + -0.170678,0.079921,0.982080,-0.170678,0.079921,0.982080,-0.170678,0.079921,0.982080,-0.145441,-0.355100,0.923445, + -0.145441,-0.355100,0.923445,-0.145441,-0.355100,0.923445,-0.145441,-0.355100,0.923445,0.753844,-0.461565,0.467630, + 0.753844,-0.461565,0.467630,0.753844,-0.461565,0.467630,0.753844,-0.461565,0.467630,0.415041,-0.866203,0.278269, + 0.415041,-0.866203,0.278269,0.415041,-0.866203,0.278269,0.415041,-0.866203,0.278269,-0.285660,-0.600418,0.746924, + -0.285660,-0.600418,0.746924,-0.285660,-0.600418,0.746924,-0.285660,-0.600418,0.746924,-0.357737,-0.892711,-0.274030, + -0.357737,-0.892711,-0.274030,-0.357737,-0.892711,-0.274030,-0.357737,-0.892711,-0.274030,-0.225101,-0.778676,-0.585656, + -0.225101,-0.778676,-0.585656,-0.225101,-0.778676,-0.585656,-0.573009,-0.819535,0.004781,-0.573009,-0.819535,0.004781, + -0.573009,-0.819535,0.004781,-0.573009,-0.819535,0.004781,0.883526,-0.192706,-0.426902,0.883526,-0.192706,-0.426902, + 0.883526,-0.192706,-0.426902,0.883526,-0.192706,-0.426902,0.647543,-0.669780,0.363432,0.647543,-0.669780,0.363432, + 0.647543,-0.669780,0.363432,0.647543,-0.669780,0.363432,-0.686404,0.341437,0.642082,-0.686404,0.341437,0.642082, + -0.686404,0.341437,0.642082,0.311411,0.313074,0.897222,0.311411,0.313074,0.897222,0.311411,0.313074,0.897222, + -0.723578,0.296338,0.623392,-0.723578,0.296338,0.623392,-0.723578,0.296338,0.623392,-0.690907,-0.606615,-0.393275, + -0.690907,-0.606615,-0.393275,-0.690907,-0.606615,-0.393275,-0.690907,-0.606615,-0.393275,-0.941834,-0.336077,-0.000964, + -0.941834,-0.336077,-0.000964,-0.941834,-0.336077,-0.000964,-0.941834,-0.336077,-0.000964,0.628336,-0.570578,-0.528805, + 0.628336,-0.570578,-0.528805,0.628336,-0.570578,-0.528805,0.628336,-0.570578,-0.528805,-0.921153,-0.385629,-0.052603, + -0.921153,-0.385629,-0.052603,-0.921153,-0.385629,-0.052603,-0.921153,-0.385629,-0.052603,-0.815534,0.345833,-0.464009, + -0.815534,0.345833,-0.464009,-0.815534,0.345833,-0.464009,-0.815534,0.345833,-0.464009,-0.524701,-0.301599,0.796069, + -0.524701,-0.301599,0.796069,-0.524701,-0.301599,0.796069,-0.463037,0.204011,-0.862540,-0.463037,0.204011,-0.862540, + -0.463037,0.204011,-0.862540,-0.080767,-0.435670,-0.896475,-0.080767,-0.435670,-0.896475,-0.080767,-0.435670,-0.896475, + -0.080767,-0.435670,-0.896475,-0.744994,-0.620457,0.244983,-0.744994,-0.620457,0.244983,-0.744994,-0.620457,0.244983, + -0.744994,-0.620457,0.244983,-0.764285,-0.640069,-0.078618,-0.764285,-0.640069,-0.078618,-0.764285,-0.640069,-0.078618, + 0.117272,-0.350760,-0.929094,0.117272,-0.350760,-0.929094,0.117272,-0.350760,-0.929094,0.117272,-0.350760,-0.929094, + 0.655617,0.520594,0.546945,0.655617,0.520594,0.546945,0.655617,0.520594,0.546945,0.655617,0.520594,0.546945, + -0.033085,0.981079,0.190762,-0.033085,0.981079,0.190762,-0.033085,0.981079,0.190762,-0.033085,0.981079,0.190762, + 0.124431,-0.946382,-0.298125,0.124431,-0.946382,-0.298125,0.124431,-0.946382,-0.298125,0.124431,-0.946382,-0.298125, + 0.967502,-0.094463,-0.234557,0.967502,-0.094463,-0.234557,0.967502,-0.094463,-0.234557,0.992780,-0.116486,-0.028618, + 0.992780,-0.116486,-0.028618,0.992780,-0.116486,-0.028618,0.965572,-0.184087,-0.183802,0.965572,-0.184087,-0.183802, + 0.965572,-0.184087,-0.183802,0.800235,-0.527695,0.284890,0.800235,-0.527695,0.284890,0.800235,-0.527695,0.284890, + -0.095627,-0.431239,-0.897156,-0.095627,-0.431239,-0.897156,-0.095627,-0.431239,-0.897156,-0.095627,-0.431239,-0.897156, + -0.822390,-0.512757,-0.246483,-0.822390,-0.512757,-0.246483,-0.822390,-0.512757,-0.246483,-0.822390,-0.512757,-0.246483, + -0.822390,-0.512757,-0.246483,-0.482992,-0.680739,-0.550739,-0.482992,-0.680739,-0.550739,-0.482992,-0.680739,-0.550739, + -0.482992,-0.680739,-0.550739,0.441814,0.079914,0.893540,0.441814,0.079914,0.893540,0.441814,0.079914,0.893540, + 0.441814,0.079914,0.893540,-0.908092,-0.316846,0.273820,-0.908092,-0.316846,0.273820,-0.908092,-0.316846,0.273820, + -0.880409,-0.470414,-0.059917,-0.880409,-0.470414,-0.059917,-0.880409,-0.470414,-0.059917,-0.908286,-0.308751,0.282292, + -0.908286,-0.308751,0.282292,-0.908286,-0.308751,0.282292,0.258366,0.965383,0.035816,0.258366,0.965383,0.035816, + 0.258366,0.965383,0.035816,0.258366,0.965383,0.035816,0.110506,0.739204,0.664354,0.110506,0.739204,0.664354, + 0.110506,0.739204,0.664354,0.110506,0.739204,0.664354,0.426267,-0.836033,0.345463,0.426267,-0.836033,0.345463, + 0.426267,-0.836033,0.345463,0.426267,-0.836033,0.345463,0.531782,-0.511667,-0.674837,0.531782,-0.511667,-0.674837, + 0.531782,-0.511667,-0.674837,0.531782,-0.511667,-0.674837,0.815166,-0.540184,0.209060,0.815166,-0.540184,0.209060, + 0.815166,-0.540184,0.209060,0.815166,-0.540184,0.209060,-0.501630,-0.298284,0.812031,-0.501630,-0.298284,0.812031, + -0.501630,-0.298284,0.812031,-0.501630,-0.298284,0.812031,-0.780994,0.616091,0.102373,-0.780994,0.616091,0.102373, + -0.780994,0.616091,0.102373,-0.780994,0.616091,0.102373,-0.025203,-0.271988,0.961971,-0.025203,-0.271988,0.961971, + -0.025203,-0.271988,0.961971,-0.025203,-0.271988,0.961971,-0.618729,0.617952,0.485087,-0.618729,0.617952,0.485087, + -0.618729,0.617952,0.485087,-0.618729,0.617952,0.485087,0.060520,-0.375161,-0.924982,0.060520,-0.375161,-0.924982, + 0.060520,-0.375161,-0.924982,0.175580,0.196425,0.964670,0.175580,0.196425,0.964670,0.175580,0.196425,0.964670, + -0.932890,-0.220781,0.284555,-0.932890,-0.220781,0.284555,-0.932890,-0.220781,0.284555,-0.932890,-0.220781,0.284555, + -0.552946,-0.192529,0.810669,-0.552946,-0.192529,0.810669,-0.552946,-0.192529,0.810669,-0.623856,-0.463195,0.629487, + -0.623856,-0.463195,0.629487,-0.623856,-0.463195,0.629487,-0.623856,-0.463195,0.629487,-0.704557,-0.690131,-0.165286, + -0.704557,-0.690131,-0.165286,-0.704557,-0.690131,-0.165286,-0.704557,-0.690131,-0.165286,0.674856,-0.449456,0.585286, + 0.674856,-0.449456,0.585286,0.674856,-0.449456,0.585286,0.838611,0.384374,-0.385990,0.838611,0.384374,-0.385990, + 0.838611,0.384374,-0.385990,0.773432,-0.084317,-0.628246,0.773432,-0.084317,-0.628246,0.773432,-0.084317,-0.628246, + -0.435710,-0.837748,-0.329142,-0.435710,-0.837748,-0.329142,-0.435710,-0.837748,-0.329142,-0.435710,-0.837748,-0.329142, + 0.137623,-0.766068,0.627853,0.137623,-0.766068,0.627853,0.137623,-0.766068,0.627853,0.137623,-0.766068,0.627853, + 0.260117,0.335474,-0.905426,0.260117,0.335474,-0.905426,0.260117,0.335474,-0.905426,0.260117,0.335474,-0.905426, + -0.179411,-0.240884,0.953827,-0.179411,-0.240884,0.953827,-0.179411,-0.240884,0.953827,-0.179411,-0.240884,0.953827, + -0.199296,0.685588,-0.700179,-0.199296,0.685588,-0.700179,-0.199296,0.685588,-0.700179,-0.199296,0.685588,-0.700179, + 0.977120,0.183235,-0.107989,0.977120,0.183235,-0.107989,0.977120,0.183235,-0.107989,0.993934,-0.106206,0.028561, + 0.993934,-0.106206,0.028561,0.993934,-0.106206,0.028561,0.954222,-0.178170,0.240243,0.954222,-0.178170,0.240243, + 0.954222,-0.178170,0.240243,0.954222,-0.178170,0.240243,0.790707,0.510283,-0.338221,0.790707,0.510283,-0.338221, + 0.790707,0.510283,-0.338221,0.898239,0.395765,-0.191144,0.898239,0.395765,-0.191144,0.898239,0.395765,-0.191144, + 0.838574,0.384298,-0.386146,0.838574,0.384298,-0.386146,0.838574,0.384298,-0.386146,0.653985,-0.703092,0.279223, + 0.653985,-0.703092,0.279223,0.653985,-0.703092,0.279223,0.672888,-0.739536,-0.017549,0.672888,-0.739536,-0.017549, + 0.672888,-0.739536,-0.017549,0.642517,-0.761474,0.085610,0.642517,-0.761474,0.085610,0.642517,-0.761474,0.085610, + 0.295488,-0.076709,-0.952262,0.295488,-0.076709,-0.952262,0.295488,-0.076709,-0.952262,0.295488,-0.076709,-0.952262, + 0.260434,-0.215094,0.941227,0.260434,-0.215094,0.941227,0.260434,-0.215094,0.941227,0.260434,-0.215094,0.941227, + 0.023224,-0.304756,-0.952147,0.023224,-0.304756,-0.952147,0.023224,-0.304756,-0.952147,0.023224,-0.304756,-0.952147, + 0.393139,-0.724724,-0.565877,0.393139,-0.724724,-0.565877,0.393139,-0.724724,-0.565877,0.393139,-0.724724,-0.565877, + 0.445176,-0.676293,0.586895,0.445176,-0.676293,0.586895,0.445176,-0.676293,0.586895,0.445176,-0.676293,0.586895, + 0.858682,-0.057518,-0.509272,0.858682,-0.057518,-0.509272,0.858682,-0.057518,-0.509272,0.858682,-0.057518,-0.509272, + -0.216352,-0.778725,0.588880,-0.216352,-0.778725,0.588880,-0.216352,-0.778725,0.588880,-0.216352,-0.778725,0.588880, + -0.467859,-0.881022,-0.070061,-0.467859,-0.881022,-0.070061,-0.467859,-0.881022,-0.070061,-0.467859,-0.881022,-0.070061, + 0.806901,0.469631,0.358271,0.806901,0.469631,0.358271,0.806901,0.469631,0.358271,0.806901,0.469631,0.358271, + 0.677622,-0.448641,-0.582709,0.677622,-0.448641,-0.582709,0.677622,-0.448641,-0.582709,0.677622,-0.448641,-0.582709, + 0.743889,-0.343911,0.573022,0.743889,-0.343911,0.573022,0.743889,-0.343911,0.573022,0.743889,-0.343911,0.573022, + 0.320662,-0.101116,-0.941781,0.320662,-0.101116,-0.941781,0.320662,-0.101116,-0.941781,0.320662,-0.101116,-0.941781, + -0.101738,0.392507,-0.914105,-0.101738,0.392507,-0.914105,-0.101738,0.392507,-0.914105,0.231964,-0.540830,0.808514, + 0.231964,-0.540830,0.808514,0.231964,-0.540830,0.808514,0.116765,-0.831431,-0.543220,0.116765,-0.831431,-0.543220, + 0.116765,-0.831431,-0.543220,0.711535,-0.209670,-0.670639,0.711535,-0.209670,-0.670639,0.711535,-0.209670,-0.670639, + 0.711535,-0.209670,-0.670639,0.227768,0.913563,0.336934,0.227768,0.913563,0.336934,0.227768,0.913563,0.336934, + -0.041502,0.984177,-0.172259,-0.041502,0.984177,-0.172259,-0.041502,0.984177,-0.172259,-0.041502,0.984177,-0.172259, + 0.095444,-0.826644,-0.554573,0.095444,-0.826644,-0.554573,0.095444,-0.826644,-0.554573,0.095444,-0.826644,-0.554573, + 0.726420,-0.554654,0.405799,0.726420,-0.554654,0.405799,0.726420,-0.554654,0.405799,0.726420,-0.554654,0.405799, + 0.334237,-0.028673,0.942053,0.334237,-0.028673,0.942053,0.334237,-0.028673,0.942053,0.334237,-0.028673,0.942053, + 0.666920,-0.419684,0.615697,0.666920,-0.419684,0.615697,0.666920,-0.419684,0.615697,0.666920,-0.419684,0.615697, + 0.394925,-0.659155,-0.639960,0.394925,-0.659155,-0.639960,0.394925,-0.659155,-0.639960,0.394925,-0.659155,-0.639960, + 0.250105,-0.544772,-0.800419,0.250105,-0.544772,-0.800419,0.250105,-0.544772,-0.800419,-0.612051,-0.790427,0.024894, + -0.612051,-0.790427,0.024894,-0.612051,-0.790427,0.024894,-0.316266,-0.909665,-0.269231,-0.316266,-0.909665,-0.269231, + -0.316266,-0.909665,-0.269231,-0.088021,-0.672014,-0.735289,-0.088021,-0.672014,-0.735289,-0.088021,-0.672014,-0.735289, + -0.088021,-0.672014,-0.735289,-0.407449,-0.792439,-0.453900,-0.407449,-0.792439,-0.453900,-0.407449,-0.792439,-0.453900, + -0.521306,-0.231610,0.821338,-0.521306,-0.231610,0.821338,-0.521306,-0.231610,0.821338,0.262875,0.105545,0.959040, + 0.262875,0.105545,0.959040,0.262875,0.105545,0.959040,0.262875,0.105545,0.959040,-0.005323,0.273834,0.961762, + -0.005323,0.273834,0.961762,-0.005323,0.273834,0.961762,-0.005323,0.273834,0.961762,-0.002284,0.079621,0.996823, + -0.002284,0.079621,0.996823,-0.002284,0.079621,0.996823,-0.002284,0.079621,0.996823,0.371063,0.214217,0.903561, + 0.371063,0.214217,0.903561,0.371063,0.214217,0.903561,0.371063,0.214217,0.903561,0.491098,0.491497,0.719204, + 0.491098,0.491497,0.719204,0.491098,0.491497,0.719204,0.057814,0.209648,0.976066,0.057814,0.209648,0.976066, + 0.057814,0.209648,0.976066,0.538717,0.544618,0.642787,0.538717,0.544618,0.642787,0.538717,0.544618,0.642787, + -0.187050,0.225887,0.956027,-0.187050,0.225887,0.956027,-0.187050,0.225887,0.956027,-0.187050,0.225887,0.956027, + 0.035009,0.435402,0.899555,0.035009,0.435402,0.899555,0.035009,0.435402,0.899555,0.035009,0.435402,0.899555, + 0.482606,-0.463520,-0.743129,0.482606,-0.463520,-0.743129,0.482606,-0.463520,-0.743129,0.482606,-0.463520,-0.743129, + -0.032877,0.413915,0.909722,-0.032877,0.413915,0.909722,-0.032877,0.413915,0.909722,0.688334,-0.274348,0.671513, + 0.688334,-0.274348,0.671513,0.688334,-0.274348,0.671513,0.993463,0.058067,-0.098285,0.993463,0.058067,-0.098285, + 0.993463,0.058067,-0.098285,0.618249,0.726916,0.298931,0.618249,0.726916,0.298931,0.618249,0.726916,0.298931, + -0.279234,0.192164,0.940798,-0.279234,0.192164,0.940798,-0.279234,0.192164,0.940798,-0.279234,0.192164,0.940798, + -0.357559,0.802431,0.477761,-0.357559,0.802431,0.477761,-0.357559,0.802431,0.477761,-0.357559,0.802431,0.477761, + -0.091935,0.264561,0.959977,-0.091935,0.264561,0.959977,-0.091935,0.264561,0.959977,-0.091935,0.264561,0.959977, + 0.031363,-0.892978,0.449007,0.031363,-0.892978,0.449007,0.031363,-0.892978,0.449007,0.031363,-0.892978,0.449007, + -0.105410,0.190003,0.976108,-0.105410,0.190003,0.976108,-0.105410,0.190003,0.976108,-0.105410,0.190003,0.976108, + -0.353345,0.927161,-0.124578,-0.353345,0.927161,-0.124578,-0.353345,0.927161,-0.124578,-0.353345,0.927161,-0.124578, + 0.166274,-0.025434,-0.985752,0.166274,-0.025434,-0.985752,0.166274,-0.025434,-0.985752,0.166274,-0.025434,-0.985752, + -0.834334,-0.422881,-0.353637,-0.834334,-0.422881,-0.353637,-0.834334,-0.422881,-0.353637,-0.794180,-0.598734,-0.103898, + -0.794180,-0.598734,-0.103898,-0.794180,-0.598734,-0.103898,-0.917316,-0.395082,0.049419,-0.917316,-0.395082,0.049419, + -0.917316,-0.395082,0.049419,-0.959740,-0.187702,-0.208965,-0.959740,-0.187702,-0.208965,-0.959740,-0.187702,-0.208965, + 0.558508,-0.789105,-0.255699,0.558508,-0.789105,-0.255699,0.558508,-0.789105,-0.255699,0.558508,-0.789105,-0.255699, + -0.467135,0.818539,-0.334334,-0.467135,0.818539,-0.334334,-0.467135,0.818539,-0.334334,-0.467135,0.818539,-0.334334, + 0.014013,0.040625,-0.999076,0.014013,0.040625,-0.999076,0.014013,0.040625,-0.999076,0.014013,0.040625,-0.999076, + -0.616715,0.271887,0.738742,-0.616715,0.271887,0.738742,-0.616715,0.271887,0.738742,-0.616715,0.271887,0.738742, + -0.104858,0.857923,-0.502964,-0.104858,0.857923,-0.502964,-0.104858,0.857923,-0.502964,-0.104858,0.857923,-0.502964, + 0.401486,-0.850081,0.340839,0.401486,-0.850081,0.340839,0.401486,-0.850081,0.340839,0.401486,-0.850081,0.340839, + 0.979472,0.200639,-0.019478,0.979472,0.200639,-0.019478,0.979472,0.200639,-0.019478,0.979472,0.200639,-0.019478, + -0.394646,0.911027,-0.119518,-0.394646,0.911027,-0.119518,-0.394646,0.911027,-0.119518,-0.394646,0.911027,-0.119518, + -0.082416,-0.229939,-0.969709,-0.082416,-0.229939,-0.969709,-0.082416,-0.229939,-0.969709,-0.082416,-0.229939,-0.969709, + 0.077359,-0.947957,0.308857,0.077359,-0.947957,0.308857,0.077359,-0.947957,0.308857,0.077359,-0.947957,0.308857, + -0.576270,0.328817,-0.748193,-0.576270,0.328817,-0.748193,-0.576270,0.328817,-0.748193,-0.990408,-0.031193,-0.134610, + -0.990408,-0.031193,-0.134610,-0.990408,-0.031193,-0.134610,-0.464768,-0.861616,-0.203981,-0.464768,-0.861616,-0.203981, + -0.464768,-0.861616,-0.203981,-0.197178,-0.381975,-0.902893,-0.197178,-0.381975,-0.902893,-0.197178,-0.381975,-0.902893, + 0.831406,-0.189898,-0.522210,0.831406,-0.189898,-0.522210,0.831406,-0.189898,-0.522210,0.831406,-0.189898,-0.522210, + -0.157793,0.930658,-0.330115,-0.157793,0.930658,-0.330115,-0.157793,0.930658,-0.330115,-0.157793,0.930658,-0.330115, + -0.359532,0.368363,0.857348,-0.359532,0.368363,0.857348,-0.359532,0.368363,0.857348,-0.359532,0.368363,0.857348, + -0.737412,-0.282182,0.613675,-0.737412,-0.282182,0.613675,-0.737412,-0.282182,0.613675,-0.456835,0.889422,-0.015169, + -0.456835,0.889422,-0.015169,-0.456835,0.889422,-0.015169,-0.214820,-0.734976,0.643166,-0.214820,-0.734976,0.643166, + -0.214820,-0.734976,0.643166,0.979006,0.074931,-0.189558,0.979006,0.074931,-0.189558,0.979006,0.074931,-0.189558, + -0.888529,0.167322,0.427223,-0.888529,0.167322,0.427223,-0.888529,0.167322,0.427223,-0.888529,0.167322,0.427223, + -0.281991,0.875456,-0.392502,-0.281991,0.875456,-0.392502,-0.281991,0.875456,-0.392502,-0.281991,0.875456,-0.392502, + -0.176745,-0.962143,0.207466,-0.176745,-0.962143,0.207466,-0.176745,-0.962143,0.207466,-0.176745,-0.962143,0.207466, + 0.623373,-0.232371,-0.746599,0.623373,-0.232371,-0.746599,0.623373,-0.232371,-0.746599,0.623373,-0.232371,-0.746599, + -0.307095,0.600015,0.738699,-0.307095,0.600015,0.738699,-0.307095,0.600015,0.738699,-0.307095,0.600015,0.738699, + 0.347302,0.529109,-0.774226,0.347302,0.529109,-0.774226,0.347302,0.529109,-0.774226,0.347302,0.529109,-0.774226, + 0.510443,0.859782,-0.014955,0.510443,0.859782,-0.014955,0.510443,0.859782,-0.014955,0.510443,0.859782,-0.014955, + 0.591901,0.444127,0.672610,0.591901,0.444127,0.672610,0.591901,0.444127,0.672610,0.591901,0.444127,0.672610, + 0.616598,0.623313,-0.480924,0.616598,0.623313,-0.480924,0.616598,0.623313,-0.480924,-0.690911,-0.106917,0.714990, + -0.690911,-0.106917,0.714990,-0.690911,-0.106917,0.714990,-0.690911,-0.106917,0.714990,0.660106,-0.477000,0.580286, + 0.660106,-0.477000,0.580286,0.660106,-0.477000,0.580286,-0.702196,0.638739,0.314538,-0.702196,0.638739,0.314538, + -0.702196,0.638739,0.314538,-0.702196,0.638739,0.314538,-0.133519,0.867013,-0.480064,-0.133519,0.867013,-0.480064, + -0.133519,0.867013,-0.480064,-0.133519,0.867013,-0.480064,0.968708,-0.198563,-0.148922,0.968708,-0.198563,-0.148922, + 0.968708,-0.198563,-0.148922,-0.184631,0.982158,0.035734,-0.184631,0.982158,0.035734,-0.184631,0.982158,0.035734, + -0.184631,0.982158,0.035734,-0.045546,0.824884,0.563464,-0.045546,0.824884,0.563464,-0.045546,0.824884,0.563464, + -0.045546,0.824884,0.563464,0.509113,0.524569,-0.682373,0.509113,0.524569,-0.682373,0.509113,0.524569,-0.682373, + 0.509113,0.524569,-0.682373,-0.001838,0.479844,0.877352,-0.001838,0.479844,0.877352,-0.001838,0.479844,0.877352, + -0.001838,0.479844,0.877352,0.135916,0.989997,-0.037845,0.135916,0.989997,-0.037845,0.135916,0.989997,-0.037845, + 0.135916,0.989997,-0.037845,-0.415317,0.909314,0.025702,-0.415317,0.909314,0.025702,-0.415317,0.909314,0.025702, + -0.415317,0.909314,0.025702,-0.339436,0.492471,0.801408,-0.339436,0.492471,0.801408,-0.339436,0.492471,0.801408, + -0.339436,0.492471,0.801408,-0.988075,0.151112,0.029543,-0.988075,0.151112,0.029543,-0.988075,0.151112,0.029543, + -0.988075,0.151112,0.029543,-0.951402,0.033927,-0.306076,-0.951402,0.033927,-0.306076,-0.951402,0.033927,-0.306076, + -0.921677,0.088996,0.377612,-0.921677,0.088996,0.377612,-0.921677,0.088996,0.377612,-0.921677,0.088996,0.377612, + 0.081044,0.517277,-0.851972,0.081044,0.517277,-0.851972,0.081044,0.517277,-0.851972,0.081044,0.517277,-0.851972, + -0.119731,0.991532,-0.050283,-0.119731,0.991532,-0.050283,-0.119731,0.991532,-0.050283,-0.119731,0.991532,-0.050283, + 0.208115,-0.372549,0.904376,0.208115,-0.372549,0.904376,0.208115,-0.372549,0.904376,0.726933,0.435465,0.530979, + 0.726933,0.435465,0.530979,0.726933,0.435465,0.530979,0.147800,-0.380072,0.913072,0.147800,-0.380072,0.913072, + 0.147800,-0.380072,0.913072,-0.948950,-0.294426,0.113166,-0.948950,-0.294426,0.113166,-0.948950,-0.294426,0.113166, + -0.948950,-0.294426,0.113166,-0.695947,-0.443684,0.564626,-0.695947,-0.443684,0.564626,-0.695947,-0.443684,0.564626, + -0.695947,-0.443684,0.564626,-0.378486,0.517280,-0.767574,-0.378486,0.517280,-0.767574,-0.378486,0.517280,-0.767574, + -0.378486,0.517280,-0.767574,-0.746046,-0.424522,0.513027,-0.746046,-0.424522,0.513027,-0.746046,-0.424522,0.513027, + -0.746046,-0.424522,0.513027,-0.900348,-0.322161,-0.292550,-0.900348,-0.322161,-0.292550,-0.900348,-0.322161,-0.292550, + -0.900348,-0.322161,-0.292550,-0.506546,0.672980,0.538989,-0.506546,0.672980,0.538989,-0.506546,0.672980,0.538989, + -0.346365,-0.438633,-0.829236,-0.346365,-0.438633,-0.829236,-0.346365,-0.438633,-0.829236,0.121187,0.076370,-0.989688, + 0.121187,0.076370,-0.989688,0.121187,0.076370,-0.989688,0.121187,0.076370,-0.989688,-0.627785,0.769528,-0.117097, + -0.627785,0.769528,-0.117097,-0.627785,0.769528,-0.117097,-0.627785,0.769528,-0.117097,-0.632171,0.648061,-0.424708, + -0.632171,0.648061,-0.424708,-0.632171,0.648061,-0.424708,0.214791,0.146470,-0.965615,0.214791,0.146470,-0.965615, + 0.214791,0.146470,-0.965615,0.214791,0.146470,-0.965615,0.298663,-0.357398,0.884911,0.298663,-0.357398,0.884911, + 0.298663,-0.357398,0.884911,0.298663,-0.357398,0.884911,0.191180,-0.761862,0.618884,0.191180,-0.761862,0.618884, + 0.191180,-0.761862,0.618884,0.191180,-0.761862,0.618884,-0.048043,0.755619,-0.653247,-0.048043,0.755619,-0.653247, + -0.048043,0.755619,-0.653247,-0.048043,0.755619,-0.653247,0.994402,-0.055889,-0.089677,0.994402,-0.055889,-0.089677, + 0.994402,-0.055889,-0.089677,0.999450,0.021119,0.025582,0.999450,0.021119,0.025582,0.999450,0.021119,0.025582, + 0.996968,0.024545,0.073847,0.996968,0.024545,0.073847,0.996968,0.024545,0.073847,0.708605,0.670547,0.219650, + 0.708605,0.670547,0.219650,0.708605,0.670547,0.219650,-0.094125,0.067509,-0.993269,-0.094125,0.067509,-0.993269, + -0.094125,0.067509,-0.993269,-0.094125,0.067509,-0.993269,-0.800968,0.253578,-0.542354,-0.800968,0.253578,-0.542354, + -0.800968,0.253578,-0.542354,-0.800968,0.253578,-0.542354,-0.800968,0.253578,-0.542354,0.250889,0.068980,-0.965555, + 0.250889,0.068980,-0.965555,0.250889,0.068980,-0.965555,0.250889,0.068980,-0.965555,-0.294875,0.354297,0.887425, + -0.294875,0.354297,0.887425,-0.294875,0.354297,0.887425,-0.294875,0.354297,0.887425,-0.959270,-0.248650,0.134072, + -0.959270,-0.248650,0.134072,-0.959270,-0.248650,0.134072,-0.841453,-0.214127,0.496091,-0.841453,-0.214127,0.496091, + -0.841453,-0.214127,0.496091,-0.953787,-0.177582,-0.242395,-0.953787,-0.177582,-0.242395,-0.953787,-0.177582,-0.242395, + 0.914300,-0.368401,-0.168334,0.914300,-0.368401,-0.168334,0.914300,-0.368401,-0.168334,0.914300,-0.368401,-0.168334, + 0.897120,-0.053061,0.438589,0.897120,-0.053061,0.438589,0.897120,-0.053061,0.438589,0.897120,-0.053061,0.438589, + -0.360802,0.929844,0.072187,-0.360802,0.929844,0.072187,-0.360802,0.929844,0.072187,-0.360802,0.929844,0.072187, + -0.428014,0.351660,-0.832550,-0.428014,0.351660,-0.832550,-0.428014,0.351660,-0.832550,-0.428014,0.351660,-0.832550, + 0.073591,0.977770,0.196343,0.073591,0.977770,0.196343,0.073591,0.977770,0.196343,0.073591,0.977770,0.196343, + -0.596985,0.293388,0.746681,-0.596985,0.293388,0.746681,-0.596985,0.293388,0.746681,-0.596985,0.293388,0.746681, + -0.899542,-0.362153,0.244273,-0.899542,-0.362153,0.244273,-0.899542,-0.362153,0.244273,-0.899542,-0.362153,0.244273, + -0.121484,0.644563,0.754838,-0.121484,0.644563,0.754838,-0.121484,0.644563,0.754838,-0.121484,0.644563,0.754838, + -0.829722,-0.238503,0.504656,-0.829722,-0.238503,0.504656,-0.829722,-0.238503,0.504656,-0.829722,-0.238503,0.504656, + 0.107048,0.131672,-0.985496,0.107048,0.131672,-0.985496,0.107048,0.131672,-0.985496,0.084086,0.146768,0.985591, + 0.084086,0.146768,0.985591,0.084086,0.146768,0.985591,-0.861900,0.506870,0.014520,-0.861900,0.506870,0.014520, + -0.861900,0.506870,0.014520,-0.861900,0.506870,0.014520,-0.610914,0.556022,0.563582,-0.610914,0.556022,0.563582, + -0.610914,0.556022,0.563582,-0.962579,0.028716,0.269477,-0.962579,0.028716,0.269477,-0.962579,0.028716,0.269477, + -0.962579,0.028716,0.269477,-0.141866,-0.050423,-0.988601,-0.141866,-0.050423,-0.988601,-0.141866,-0.050423,-0.988601, + -0.141866,-0.050423,-0.988601,-0.028500,0.867271,0.497020,-0.028500,0.867271,0.497020,-0.028500,0.867271,0.497020, + 0.987562,-0.090349,0.128680,0.987562,-0.090349,0.128680,0.987562,-0.090349,0.128680,0.871420,0.072983,-0.485079, + 0.871420,0.072983,-0.485079,0.871420,0.072983,-0.485079,-0.105124,0.295250,-0.949619,-0.105124,0.295250,-0.949619, + -0.105124,0.295250,-0.949619,-0.105124,0.295250,-0.949619,-0.621232,0.782813,0.035703,-0.621232,0.782813,0.035703, + -0.621232,0.782813,0.035703,-0.621232,0.782813,0.035703,0.053763,-0.427885,-0.902233,0.053763,-0.427885,-0.902233, + 0.053763,-0.427885,-0.902233,0.053763,-0.427885,-0.902233,0.077322,0.449634,0.889860,0.077322,0.449634,0.889860, + 0.077322,0.449634,0.889860,0.077322,0.449634,0.889860,0.208638,-0.849312,-0.484912,0.208638,-0.849312,-0.484912, + 0.208638,-0.849312,-0.484912,0.208638,-0.849312,-0.484912,0.546984,0.507087,-0.666086,0.546984,0.507087,-0.666086, + 0.546984,0.507087,-0.666086,0.617430,0.716278,0.325156,0.617430,0.716278,0.325156,0.617430,0.716278,0.325156, + 0.305553,0.789016,0.533002,0.305553,0.789016,0.533002,0.305553,0.789016,0.533002,0.305553,0.789016,0.533002, + 0.686647,0.287451,0.667748,0.686647,0.287451,0.667748,0.686647,0.287451,0.667748,0.658275,0.314023,0.684151, + 0.658275,0.314023,0.684151,0.658275,0.314023,0.684151,0.984050,-0.125454,-0.126126,0.984050,-0.125454,-0.126126, + 0.984050,-0.125454,-0.126126,0.207324,0.977564,0.037227,0.207324,0.977564,0.037227,0.207324,0.977564,0.037227, + 0.287565,0.934996,-0.207577,0.287565,0.934996,-0.207577,0.287565,0.934996,-0.207577,0.184015,0.981691,-0.049198, + 0.184015,0.981691,-0.049198,0.184015,0.981691,-0.049198,0.922433,0.307980,-0.232950,0.922433,0.307980,-0.232950, + 0.922433,0.307980,-0.232950,0.922433,0.307980,-0.232950,-0.594237,0.432605,0.678037,-0.594237,0.432605,0.678037, + -0.594237,0.432605,0.678037,-0.594237,0.432605,0.678037,0.480119,0.176517,-0.859260,0.480119,0.176517,-0.859260, + 0.480119,0.176517,-0.859260,0.480119,0.176517,-0.859260,-0.055635,0.712129,-0.699841,-0.055635,0.712129,-0.699841, + -0.055635,0.712129,-0.699841,-0.055635,0.712129,-0.699841,-0.536074,0.822715,0.189115,-0.536074,0.822715,0.189115, + -0.536074,0.822715,0.189115,-0.536074,0.822715,0.189115,0.868207,0.489957,-0.078473,0.868207,0.489957,-0.078473, + 0.868207,0.489957,-0.078473,0.868207,0.489957,-0.078473,-0.871935,0.476590,-0.112208,-0.871935,0.476590,-0.112208, + -0.871935,0.476590,-0.112208,-0.871935,0.476590,-0.112208,-0.704015,0.264142,-0.659237,-0.704015,0.264142,-0.659237, + -0.704015,0.264142,-0.659237,-0.704015,0.264142,-0.659237,0.452400,0.393740,0.800189,0.452400,0.393740,0.800189, + 0.452400,0.393740,0.800189,0.452400,0.393740,0.800189,0.289978,0.821409,-0.491120,0.289978,0.821409,-0.491120, + 0.289978,0.821409,-0.491120,0.289978,0.821409,-0.491120,0.499223,0.643878,0.579826,0.499223,0.643878,0.579826, + 0.499223,0.643878,0.579826,0.499223,0.643878,0.579826,0.347003,0.114960,-0.930792,0.347003,0.114960,-0.930792, + 0.347003,0.114960,-0.930792,0.347003,0.114960,-0.930792,0.448416,-0.698067,-0.558233,0.448416,-0.698067,-0.558233, + 0.448416,-0.698067,-0.558233,-0.318417,0.689313,0.650737,-0.318417,0.689313,0.650737,-0.318417,0.689313,0.650737, + 0.426090,0.327393,-0.843363,0.426090,0.327393,-0.843363,0.426090,0.327393,-0.843363,0.707817,-0.632189,-0.315169, + 0.707817,-0.632189,-0.315169,0.707817,-0.632189,-0.315169,0.707817,-0.632189,-0.315169,-0.128233,-0.660033,0.740211, + -0.128233,-0.660033,0.740211,-0.128233,-0.660033,0.740211,0.491064,-0.868264,0.070535,0.491064,-0.868264,0.070535, + 0.491064,-0.868264,0.070535,0.491064,-0.868264,0.070535,-0.154787,0.620595,-0.768702,-0.154787,0.620595,-0.768702, + -0.154787,0.620595,-0.768702,-0.154787,0.620595,-0.768702,0.024975,0.997406,-0.067507,0.024975,0.997406,-0.067507, + 0.024975,0.997406,-0.067507,0.024975,0.997406,-0.067507,0.475798,0.669369,0.570580,0.475798,0.669369,0.570580, + 0.475798,0.669369,0.570580,0.475798,0.669369,0.570580,0.185890,0.973809,0.130924,0.185890,0.973809,0.130924, + 0.185890,0.973809,0.130924,0.185890,0.973809,0.130924,-0.596407,0.360207,-0.717321,-0.596407,0.360207,-0.717321, + -0.596407,0.360207,-0.717321,-0.596407,0.360207,-0.717321,-0.627813,0.123005,-0.768584,-0.627813,0.123005,-0.768584, + -0.627813,0.123005,-0.768584,-0.908032,0.054695,0.415315,-0.908032,0.054695,0.415315,-0.908032,0.054695,0.415315, + -0.981461,0.191399,0.010057,-0.981461,0.191399,0.010057,-0.981461,0.191399,0.010057,-0.858684,-0.002766,-0.512498, + -0.858684,-0.002766,-0.512498,-0.858684,-0.002766,-0.512498,-0.858684,-0.002766,-0.512498,-0.995490,-0.022163,-0.092239, + -0.995490,-0.022163,-0.092239,-0.995490,-0.022163,-0.092239,-0.916245,0.083308,0.391860,-0.916245,0.083308,0.391860, + -0.916245,0.083308,0.391860,0.323842,-0.462148,-0.825558,0.323842,-0.462148,-0.825558,0.323842,-0.462148,-0.825558, + 0.323842,-0.462148,-0.825558,0.724729,0.383240,0.572621,0.724729,0.383240,0.572621,0.724729,0.383240,0.572621, + 0.919712,0.075180,-0.385329,0.919712,0.075180,-0.385329,0.919712,0.075180,-0.385329,0.555828,-0.739500,-0.379730, + 0.555828,-0.739500,-0.379730,0.555828,-0.739500,-0.379730,0.698763,-0.554646,0.451772,0.698763,-0.554646,0.451772, + 0.698763,-0.554646,0.451772,-0.301975,0.764920,0.568954,-0.301975,0.764920,0.568954,-0.301975,0.764920,0.568954, + -0.301975,0.764920,0.568954,-0.108286,0.072287,0.991488,-0.108286,0.072287,0.991488,-0.108286,0.072287,0.991488, + -0.108286,0.072287,0.991488,-0.009131,0.517063,0.855898,-0.009131,0.517063,0.855898,-0.009131,0.517063,0.855898, + -0.009131,0.517063,0.855898,0.267266,0.652577,-0.709022,0.267266,0.652577,-0.709022,0.267266,0.652577,-0.709022, + 0.267266,0.652577,-0.709022,0.041724,0.359572,0.932184,0.041724,0.359572,0.932184,0.041724,0.359572,0.932184, + 0.041724,0.359572,0.932184,0.383507,-0.830662,0.403637,0.383507,-0.830662,0.403637,0.383507,-0.830662,0.403637, + 0.383507,-0.830662,0.403637,0.125916,-0.441633,-0.888316,0.125916,-0.441633,-0.888316,0.125916,-0.441633,-0.888316, + 0.125916,-0.441633,-0.888316,-0.881147,-0.437425,-0.179556,-0.881147,-0.437425,-0.179556,-0.881147,-0.437425,-0.179556, + -0.984977,-0.166483,-0.045873,-0.984977,-0.166483,-0.045873,-0.984977,-0.166483,-0.045873,-0.938777,-0.274002,0.208856, + -0.938777,-0.274002,0.208856,-0.938777,-0.274002,0.208856,-0.813867,-0.572469,0.099494,-0.813867,-0.572469,0.099494, + -0.813867,-0.572469,0.099494,0.406095,0.587204,-0.700199,0.406095,0.587204,-0.700199,0.406095,0.587204,-0.700199, + 0.406095,0.587204,-0.700199,-0.497938,-0.850138,0.171241,-0.497938,-0.850138,0.171241,-0.497938,-0.850138,0.171241, + -0.497938,-0.850138,0.171241,-0.289758,-0.427127,-0.856506,-0.289758,-0.427127,-0.856506,-0.289758,-0.427127,-0.856506, + -0.289758,-0.427127,-0.856506,0.053707,0.370230,0.927386,0.053707,0.370230,0.927386,0.053707,0.370230,0.927386, + 0.053707,0.370230,0.927386,-0.351437,-0.879951,0.319653,-0.351437,-0.879951,0.319653,-0.351437,-0.879951,0.319653, + -0.351437,-0.879951,0.319653,-0.296037,0.932985,-0.204700,-0.296037,0.932985,-0.204700,-0.296037,0.932985,-0.204700, + -0.296037,0.932985,-0.204700,0.719548,0.682929,0.125931,0.719548,0.682929,0.125931,0.719548,0.682929,0.125931, + 0.719548,0.682929,0.125931,0.340877,-0.912630,0.225630,0.340877,-0.912630,0.225630,0.340877,-0.912630,0.225630, + 0.340877,-0.912630,0.225630,-0.003671,-0.340006,-0.940416,-0.003671,-0.340006,-0.940416,-0.003671,-0.340006,-0.940416, + -0.003671,-0.340006,-0.940416,-0.612018,0.789344,-0.048677,-0.612018,0.789344,-0.048677,-0.612018,0.789344,-0.048677, + -0.612018,0.789344,-0.048677,-0.902215,-0.219732,0.371114,-0.902215,-0.219732,0.371114,-0.902215,-0.219732,0.371114, + -0.730155,0.585049,0.352975,-0.730155,0.585049,0.352975,-0.730155,0.585049,0.352975,-0.543915,0.571569,-0.614382, + -0.543915,0.571569,-0.614382,-0.543915,0.571569,-0.614382,-0.860722,-0.242059,-0.447845,-0.860722,-0.242059,-0.447845, + -0.860722,-0.242059,-0.447845,0.100437,-0.776507,-0.622052,0.100437,-0.776507,-0.622052,0.100437,-0.776507,-0.622052, + 0.100437,-0.776507,-0.622052,-0.251199,-0.514675,0.819761,-0.251199,-0.514675,0.819761,-0.251199,-0.514675,0.819761, + -0.251199,-0.514675,0.819761,0.473910,0.587302,0.656114,0.473910,0.587302,0.656114,0.473910,0.587302,0.656114, + 0.473910,0.587302,0.656114,-0.950288,-0.148459,0.273701,-0.950288,-0.148459,0.273701,-0.950288,-0.148459,0.273701, + 0.181757,-0.982610,-0.037964,0.181757,-0.982610,-0.037964,0.181757,-0.982610,-0.037964,-0.867509,0.329029,0.373052, + -0.867509,0.329029,0.373052,-0.867509,0.329029,0.373052,0.656399,0.729568,0.192019,0.656399,0.729568,0.192019, + 0.656399,0.729568,0.192019,-0.211949,0.767048,0.605570,-0.211949,0.767048,0.605570,-0.211949,0.767048,0.605570, + -0.211949,0.767048,0.605570,-0.383414,-0.445590,0.808976,-0.383414,-0.445590,0.808976,-0.383414,-0.445590,0.808976, + -0.383414,-0.445590,0.808976,-0.057098,0.675205,-0.735417,-0.057098,0.675205,-0.735417,-0.057098,0.675205,-0.735417, + -0.057098,0.675205,-0.735417,-0.207748,-0.755625,-0.621186,-0.207748,-0.755625,-0.621186,-0.207748,-0.755625,-0.621186, + -0.207748,-0.755625,-0.621186,-0.030649,-0.242692,0.969619,-0.030649,-0.242692,0.969619,-0.030649,-0.242692,0.969619, + -0.030649,-0.242692,0.969619,0.501809,-0.037821,-0.864151,0.501809,-0.037821,-0.864151,0.501809,-0.037821,-0.864151, + 0.501809,-0.037821,-0.864151,0.706461,-0.684495,-0.179944,0.706461,-0.684495,-0.179944,0.706461,-0.684495,-0.179944, + 0.706461,-0.684495,-0.179944,0.716499,-0.352945,0.601714,0.716499,-0.352945,0.601714,0.716499,-0.352945,0.601714, + 0.716499,-0.352945,0.601714,0.576963,0.678789,-0.454267,0.576963,0.678789,-0.454267,0.576963,0.678789,-0.454267, + -0.289210,-0.783837,0.549507,-0.289210,-0.783837,0.549507,-0.289210,-0.783837,0.549507,-0.289210,-0.783837,0.549507, + 0.297127,0.147821,0.943326,0.297127,0.147821,0.943326,0.297127,0.147821,0.943326,0.193074,-0.843812,-0.500704, + 0.193074,-0.843812,-0.500704,0.193074,-0.843812,-0.500704,0.193074,-0.843812,-0.500704,0.134207,-0.037181,-0.990256, + 0.134207,-0.037181,-0.990256,0.134207,-0.037181,-0.990256,0.134207,-0.037181,-0.990256,0.275130,0.715485,0.642172, + 0.275130,0.715485,0.642172,0.275130,0.715485,0.642172,0.072156,-0.997377,0.005766,0.072156,-0.997377,0.005766, + 0.072156,-0.997377,0.005766,0.072156,-0.997377,0.005766,0.168551,-0.825599,0.538494,0.168551,-0.825599,0.538494, + 0.168551,-0.825599,0.538494,0.168551,-0.825599,0.538494,0.623451,-0.356784,-0.695711,0.623451,-0.356784,-0.695711, + 0.623451,-0.356784,-0.695711,0.623451,-0.356784,-0.695711,-0.308035,0.008812,0.951334,-0.308035,0.008812,0.951334, + -0.308035,0.008812,0.951334,0.133494,-0.598215,0.790138,0.133494,-0.598215,0.790138,0.133494,-0.598215,0.790138, + 0.133494,-0.598215,0.790138,0.383802,-0.920998,-0.066774,0.383802,-0.920998,-0.066774,0.383802,-0.920998,-0.066774, + 0.383802,-0.920998,-0.066774,-0.169524,-0.985521,-0.002997,-0.169524,-0.985521,-0.002997,-0.169524,-0.985521,-0.002997, + -0.169524,-0.985521,-0.002997,-0.199504,-0.586395,0.785073,-0.199504,-0.586395,0.785073,-0.199504,-0.586395,0.785073, + -0.199504,-0.586395,0.785073,-0.916718,-0.398972,0.021195,-0.916718,-0.398972,0.021195,-0.916718,-0.398972,0.021195, + -0.916718,-0.398972,0.021195,-0.912451,-0.266386,-0.310598,-0.912451,-0.266386,-0.310598,-0.912451,-0.266386,-0.310598, + -0.867014,-0.332372,0.371235,-0.867014,-0.332372,0.371235,-0.867014,-0.332372,0.371235,-0.867014,-0.332372,0.371235, + 0.207011,-0.453879,-0.866683,0.207011,-0.453879,-0.866683,0.207011,-0.453879,-0.866683,0.207011,-0.453879,-0.866683, + 0.136972,-0.987318,-0.080260,0.136972,-0.987318,-0.080260,0.136972,-0.987318,-0.080260,0.136972,-0.987318,-0.080260, + 0.109663,0.386212,0.915868,0.109663,0.386212,0.915868,0.109663,0.386212,0.915868,0.816006,-0.251254,0.520582, + 0.816006,-0.251254,0.520582,0.816006,-0.251254,0.520582,0.049477,0.377848,0.924544,0.049477,0.377848,0.924544, + 0.049477,0.377848,0.924544,-0.992215,0.039118,0.118229,-0.992215,0.039118,0.118229,-0.992215,0.039118,0.118229, + -0.992215,0.039118,0.118229,-0.783904,0.234623,0.574845,-0.783904,0.234623,0.574845,-0.783904,0.234623,0.574845, + -0.783904,0.234623,0.574845,-0.236968,-0.573627,-0.784091,-0.236968,-0.573627,-0.784091,-0.236968,-0.573627,-0.784091, + -0.236968,-0.573627,-0.784091,-0.827687,0.204680,0.522532,-0.827687,0.204680,0.522532,-0.827687,0.204680,0.522532, + -0.827687,0.204680,0.522532,-0.919883,0.289803,-0.264254,-0.919883,0.289803,-0.264254,-0.919883,0.289803,-0.264254, + -0.919883,0.289803,-0.264254,-0.426989,-0.491174,0.759229,-0.426989,-0.491174,0.759229,-0.426989,-0.491174,0.759229, + -0.419657,0.164274,-0.892694,-0.419657,0.164274,-0.892694,-0.419657,0.164274,-0.892694,-0.053846,-0.323287,-0.944768, + -0.053846,-0.323287,-0.944768,-0.053846,-0.323287,-0.944768,-0.053846,-0.323287,-0.944768,-0.646698,-0.723826,0.240536, + -0.646698,-0.723826,0.240536,-0.646698,-0.723826,0.240536,-0.646698,-0.723826,0.240536,-0.711798,-0.694296,-0.106284, + -0.711798,-0.694296,-0.106284,-0.711798,-0.694296,-0.106284,0.164390,-0.305046,-0.938042,0.164390,-0.305046,-0.938042, + 0.164390,-0.305046,-0.938042,0.164390,-0.305046,-0.938042,0.533338,0.652336,0.538524,0.533338,0.652336,0.538524, + 0.533338,0.652336,0.538524,0.533338,0.652336,0.538524,-0.136231,0.877251,-0.460296,-0.136231,0.877251,-0.460296, + -0.136231,0.877251,-0.460296,-0.136231,0.877251,-0.460296,0.234598,-0.837977,0.492704,0.234598,-0.837977,0.492704, + 0.234598,-0.837977,0.492704,0.234598,-0.837977,0.492704,0.981888,0.091771,-0.165753,0.981888,0.091771,-0.165753, + 0.981888,0.091771,-0.165753,0.990228,0.075507,-0.117250,0.990228,0.075507,-0.117250,0.990228,0.075507,-0.117250, + 0.968758,0.053021,-0.242274,0.968758,0.053021,-0.242274,0.968758,0.053021,-0.242274,0.587248,-0.632352,0.505243, + 0.587248,-0.632352,0.505243,0.587248,-0.632352,0.505243,-0.164768,-0.151034,-0.974700,-0.164768,-0.151034,-0.974700, + -0.164768,-0.151034,-0.974700,-0.164768,-0.151034,-0.974700,-0.884846,-0.232806,-0.403546,-0.884846,-0.232806,-0.403546, + -0.884846,-0.232806,-0.403546,-0.884846,-0.232806,-0.403546,-0.884846,-0.232806,-0.403546,0.415184,-0.472916,-0.777156, + 0.415184,-0.472916,-0.777156,0.415184,-0.472916,-0.777156,0.415184,-0.472916,-0.777156,-0.325777,-0.028622,0.945013, + -0.325777,-0.028622,0.945013,-0.325777,-0.028622,0.945013,-0.325777,-0.028622,0.945013,-0.928101,0.258095,0.268356, + -0.928101,0.258095,0.268356,-0.928101,0.258095,0.268356,-0.767590,0.265143,0.583527,-0.767590,0.265143,0.583527, + -0.767590,0.265143,0.583527,-0.974111,0.097176,-0.204119,-0.974111,0.097176,-0.204119,-0.974111,0.097176,-0.204119, + 0.789430,0.594273,-0.153755,0.789430,0.594273,-0.153755,0.789430,0.594273,-0.153755,0.789430,0.594273,-0.153755, + 0.855594,0.267075,0.443429,0.855594,0.267075,0.443429,0.855594,0.267075,0.443429,0.855594,0.267075,0.443429, + -0.111395,-0.992842,0.043072,-0.111395,-0.992842,0.043072,-0.111395,-0.992842,0.043072,-0.111395,-0.992842,0.043072, + -0.327363,-0.424253,-0.844300,-0.327363,-0.424253,-0.844300,-0.327363,-0.424253,-0.844300,-0.327363,-0.424253,-0.844300, + -0.072114,-0.890029,0.450165,-0.072114,-0.890029,0.450165,-0.072114,-0.890029,0.450165,-0.072114,-0.890029,0.450165, + -0.612473,-0.288982,0.735776,-0.612473,-0.288982,0.735776,-0.612473,-0.288982,0.735776,-0.612473,-0.288982,0.735776, + -0.834269,0.486665,0.259139,-0.834269,0.486665,0.259139,-0.834269,0.486665,0.259139,-0.834269,0.486665,0.259139, + -0.051677,-0.437096,0.897929,-0.051677,-0.437096,0.897929,-0.051677,-0.437096,0.897929,-0.051677,-0.437096,0.897929, + -0.680131,0.416516,0.603271,-0.680131,0.416516,0.603271,-0.680131,0.416516,0.603271,-0.680131,0.416516,0.603271, + 0.055075,-0.207487,-0.976686,0.055075,-0.207487,-0.976686,0.055075,-0.207487,-0.976686,-0.034289,-0.082059,0.996037, + -0.034289,-0.082059,0.996037,-0.034289,-0.082059,0.996037,-0.883643,-0.300254,0.359198,-0.883643,-0.300254,0.359198, + -0.883643,-0.300254,0.359198,-0.883643,-0.300254,0.359198,-0.512783,-0.405293,0.756830,-0.512783,-0.405293,0.756830, + -0.512783,-0.405293,0.756830,-0.953683,-0.154090,0.258349,-0.953683,-0.154090,0.258349,-0.953683,-0.154090,0.258349, + -0.953683,-0.154090,0.258349,-0.195406,-0.464127,-0.863946,-0.195406,-0.464127,-0.863946,-0.195406,-0.464127,-0.863946, + -0.195406,-0.464127,-0.863946,-0.151717,-0.777248,0.610629,-0.151717,-0.777248,0.610629,-0.151717,-0.777248,0.610629, + 0.734656,0.230930,-0.637927,0.734656,0.230930,-0.637927,0.734656,0.230930,-0.637927,0.838039,-0.247497,-0.486247, + 0.838039,-0.247497,-0.486247,0.838039,-0.247497,-0.486247,0.310243,-0.937717,-0.156317,0.310243,-0.937717,-0.156317, + 0.310243,-0.937717,-0.156317,0.310243,-0.937717,-0.156317,-0.274530,-0.443506,0.853192,-0.274530,-0.443506,0.853192, + -0.274530,-0.443506,0.853192,-0.274530,-0.443506,0.853192,-0.060663,0.454106,-0.888880,-0.060663,0.454106,-0.888880, + -0.060663,0.454106,-0.888880,-0.060663,0.454106,-0.888880,0.192907,-0.441327,0.876366,0.192907,-0.441327,0.876366, + 0.192907,-0.441327,0.876366,0.192907,-0.441327,0.876366,-0.016795,0.888471,-0.458626,-0.016795,0.888471,-0.458626, + -0.016795,0.888471,-0.458626,-0.016795,0.888471,-0.458626,0.655682,-0.330683,-0.678770,0.655682,-0.330683,-0.678770, + 0.655682,-0.330683,-0.678770,0.403574,-0.782217,0.474621,0.403574,-0.782217,0.474621,0.403574,-0.782217,0.474621, + 0.558475,-0.443842,0.700792,0.558475,-0.443842,0.700792,0.558475,-0.443842,0.700792,0.558475,-0.443842,0.700792, + 0.641503,0.465181,0.609984,0.641503,0.465181,0.609984,0.641503,0.465181,0.609984,0.744768,0.665634,0.047454, + 0.744768,0.665634,0.047454,0.744768,0.665634,0.047454,0.717129,0.439473,-0.540915,0.717129,0.439473,-0.540915, + 0.717129,0.439473,-0.540915,-0.145326,-0.922812,0.356788,-0.145326,-0.922812,0.356788,-0.145326,-0.922812,0.356788, + -0.004072,-0.998876,-0.047219,-0.004072,-0.998876,-0.047219,-0.004072,-0.998876,-0.047219,-0.166081,-0.967353,0.191428, + -0.166081,-0.967353,0.191428,-0.166081,-0.967353,0.191428,0.917281,-0.259889,-0.301750,0.917281,-0.259889,-0.301750, + 0.917281,-0.259889,-0.301750,0.917281,-0.259889,-0.301750,-0.381947,-0.119418,0.916436,-0.381947,-0.119418,0.916436, + -0.381947,-0.119418,0.916436,-0.381947,-0.119418,0.916436,0.529280,-0.447077,-0.721100,0.529280,-0.447077,-0.721100, + 0.529280,-0.447077,-0.721100,0.529280,-0.447077,-0.721100,-0.108065,-0.910838,-0.398368,-0.108065,-0.910838,-0.398368, + -0.108065,-0.910838,-0.398368,-0.108065,-0.910838,-0.398368,-0.414526,-0.770143,0.484818,-0.414526,-0.770143,0.484818, + -0.414526,-0.770143,0.484818,-0.414526,-0.770143,0.484818,0.919397,-0.380190,0.100815,0.919397,-0.380190,0.100815, + 0.919397,-0.380190,0.100815,0.919397,-0.380190,0.100815,-0.785014,-0.618490,0.034976,-0.785014,-0.618490,0.034976, + -0.785014,-0.618490,0.034976,-0.785014,-0.618490,0.034976,-0.644663,-0.596540,-0.478069,-0.644663,-0.596540,-0.478069, + -0.644663,-0.596540,-0.478069,-0.644663,-0.596540,-0.478069,0.411880,0.096677,0.906095,0.411880,0.096677,0.906095, + 0.411880,0.096677,0.906095,0.411880,0.096677,0.906095,0.292848,-0.921213,-0.256138,0.292848,-0.921213,-0.256138, + 0.292848,-0.921213,-0.256138,0.292848,-0.921213,-0.256138,0.336777,-0.678343,0.653018,0.336777,-0.678343,0.653018, + 0.336777,-0.678343,0.653018,0.336777,-0.678343,0.653018,0.385316,-0.316231,-0.866908,0.385316,-0.316231,-0.866908, + 0.385316,-0.316231,-0.866908,0.385316,-0.316231,-0.866908,0.150545,-0.423348,-0.893371,0.150545,-0.423348,-0.893371, + 0.150545,-0.423348,-0.893371,0.142037,0.075921,0.986946,0.142037,0.075921,0.986946,0.142037,0.075921,0.986946, + 0.004582,-0.588640,-0.808382,0.004582,-0.588640,-0.808382,0.004582,-0.588640,-0.808382,0.272946,0.108134,-0.955933, + 0.272946,0.108134,-0.955933,0.272946,0.108134,-0.955933,0.272946,0.108134,-0.955933,0.354710,0.851321,0.386566, + 0.354710,0.851321,0.386566,0.354710,0.851321,0.386566,-0.153916,0.697646,-0.699714,-0.153916,0.697646,-0.699714, + -0.153916,0.697646,-0.699714,-0.153916,0.697646,-0.699714,0.370827,-0.928236,-0.029408,0.370827,-0.928236,-0.029408, + 0.370827,-0.928236,-0.029408,0.370827,-0.928236,-0.029408,0.278308,-0.955579,-0.097025,0.278308,-0.955579,-0.097025, + 0.278308,-0.955579,-0.097025,0.278308,-0.955579,-0.097025,0.632999,-0.542529,0.552245,0.632999,-0.542529,0.552245, + 0.632999,-0.542529,0.552245,0.632999,-0.542529,0.552245,0.428663,-0.897626,0.102546,0.428663,-0.897626,0.102546, + 0.428663,-0.897626,0.102546,0.428663,-0.897626,0.102546,-0.487531,-0.478898,-0.730048,-0.487531,-0.478898,-0.730048, + -0.487531,-0.478898,-0.730048,-0.487531,-0.478898,-0.730048,-0.578616,-0.256122,-0.774341,-0.578616,-0.256122,-0.774341, + -0.578616,-0.256122,-0.774341,-0.862411,-0.296918,0.409983,-0.862411,-0.296918,0.409983,-0.862411,-0.296918,0.409983, + -0.900202,-0.435472,0.000568,-0.900202,-0.435472,0.000568,-0.900202,-0.435472,0.000568,-0.832951,-0.201125,-0.515501, + -0.832951,-0.201125,-0.515501,-0.832951,-0.201125,-0.515501,-0.832951,-0.201125,-0.515501,-0.968534,-0.229877,-0.095384, + -0.968534,-0.229877,-0.095384,-0.968534,-0.229877,-0.095384,-0.657911,-0.242765,0.712895,-0.657911,-0.242765,0.712895, + -0.657911,-0.242765,0.712895,-0.200458,-0.071684,0.977076,-0.200458,-0.071684,0.977076,-0.200458,-0.071684,0.977076, + -0.200458,-0.071684,0.977076,-0.045073,0.312165,0.948958,-0.045073,0.312165,0.948958,-0.045073,0.312165,0.948958, + -0.045073,0.312165,0.948958,-0.211524,-0.179901,0.960673,-0.211524,-0.179901,0.960673,-0.211524,-0.179901,0.960673, + -0.211524,-0.179901,0.960673,0.153890,-0.211948,0.965089,0.153890,-0.211948,0.965089,0.153890,-0.211948,0.965089, + 0.153890,-0.211948,0.965089,0.578275,0.050185,0.814297,0.578275,0.050185,0.814297,0.578275,0.050185,0.814297, + -0.148421,0.033225,0.988366,-0.148421,0.033225,0.988366,-0.148421,0.033225,0.988366,0.553173,0.038170,0.832192, + 0.553173,0.038170,0.832192,0.553173,0.038170,0.832192,-0.148311,0.122342,0.981344,-0.148311,0.122342,0.981344, + -0.148311,0.122342,0.981344,-0.148311,0.122342,0.981344,0.348418,0.274135,0.896356,0.348418,0.274135,0.896356, + 0.348418,0.274135,0.896356,0.348418,0.274135,0.896356,-0.161391,-0.634111,0.756212,-0.161391,-0.634111,0.756212, + -0.161391,-0.634111,0.756212,-0.161391,-0.634111,0.756212,0.304945,0.332105,0.892589,0.304945,0.332105,0.892589, + 0.304945,0.332105,0.892589,0.304945,0.332105,0.892589,-0.593370,-0.405522,0.695316,-0.593370,-0.405522,0.695316, + -0.593370,-0.405522,0.695316,-0.593370,-0.405522,0.695316,-0.713179,0.011512,0.700887,-0.713179,0.011512,0.700887, + -0.713179,0.011512,0.700887,-0.713179,0.011512,0.700887,0.449358,-0.071480,0.890488,0.449358,-0.071480,0.890488, + 0.449358,-0.071480,0.890488,0.449358,-0.071480,0.890488,-0.510327,0.408428,0.756804,-0.510327,0.408428,0.756804, + -0.510327,0.408428,0.756804,-0.510327,0.408428,0.756804,0.236968,-0.493271,0.836977,0.236968,-0.493271,0.836977, + 0.236968,-0.493271,0.836977,0.236968,-0.493271,0.836977,-0.116471,0.552120,0.825590,-0.116471,0.552120,0.825590, + -0.116471,0.552120,0.825590,-0.116471,0.552120,0.825590,-0.838087,0.000714,0.545537,-0.838087,0.000714,0.545537, + -0.838087,0.000714,0.545537,-0.838087,0.000714,0.545537,0.347961,-0.595378,0.724188,0.347961,-0.595378,0.724188, + 0.347961,-0.595378,0.724188,0.347961,-0.595378,0.724188,-0.579333,0.523540,0.624724,-0.579333,0.523540,0.624724, + -0.579333,0.523540,0.624724,-0.579333,0.523540,0.624724,-0.137939,-0.769796,0.623207,-0.137939,-0.769796,0.623207, + -0.137939,-0.769796,0.623207,-0.137939,-0.769796,0.623207,-0.083026,0.696611,0.712629,-0.083026,0.696611,0.712629, + -0.083026,0.696611,0.712629,-0.083026,0.696611,0.712629,-0.663705,-0.500694,0.555699,-0.663705,-0.500694,0.555699, + -0.663705,-0.500694,0.555699,-0.663705,-0.500694,0.555699,0.451230,0.414018,0.790557,0.451230,0.414018,0.790557, + 0.451230,0.414018,0.790557,0.451230,0.414018,0.790557,0.599730,-0.102863,0.793564,0.599730,-0.102863,0.793564, + 0.599730,-0.102863,0.793564,0.599730,-0.102863,0.793564,0.037440,-0.288577,0.956724,0.037440,-0.288577,0.956724, + 0.037440,-0.288577,0.956724,0.037440,-0.288577,0.956724,-0.149901,0.266791,0.952025,-0.149901,0.266791,0.952025, + -0.149901,0.266791,0.952025,-0.149901,0.266791,0.952025,-0.173758,-0.364593,0.914812,-0.173758,-0.364593,0.914812, + -0.173758,-0.364593,0.914812,-0.173758,-0.364593,0.914812,0.073442,0.148551,0.986174,0.073442,0.148551,0.986174, + 0.073442,0.148551,0.986174,0.073442,0.148551,0.986174,-0.403285,-0.242805,0.882273,-0.403285,-0.242805,0.882273, + -0.403285,-0.242805,0.882273,-0.403285,-0.242805,0.882273,-0.465771,-0.021242,0.884650,-0.465771,-0.021242,0.884650, + -0.465771,-0.021242,0.884650,-0.465771,-0.021242,0.884650,0.151205,-0.065327,0.986341,0.151205,-0.065327,0.986341, + 0.151205,-0.065327,0.986341,0.151205,-0.065327,0.986341,-0.358349,0.188965,0.914264,-0.358349,0.188965,0.914264, + -0.358349,0.188965,0.914264,-0.358349,0.188965,0.914264,-0.168786,-0.052406,0.984259,-0.168786,-0.052406,0.984259, + -0.168786,-0.052406,0.984259,-0.168786,-0.052406,0.984259,-0.168786,-0.052406,0.984259,-0.168786,-0.052406,0.984259, + -0.168786,-0.052406,0.984259,-0.168786,-0.052406,0.984259,0.174106,0.264339,-0.948584,0.174106,0.264339,-0.948584, + 0.174106,0.264339,-0.948584,0.174106,0.264339,-0.948584,0.006863,-0.082918,-0.996533,0.006863,-0.082918,-0.996533, + 0.006863,-0.082918,-0.996533,0.006863,-0.082918,-0.996533,0.329427,0.181864,-0.926501,0.329427,0.181864,-0.926501, + 0.329427,0.181864,-0.926501,0.329427,0.181864,-0.926501,0.371524,0.031908,-0.927875,0.371524,0.031908,-0.927875, + 0.371524,0.031908,-0.927875,0.371524,0.031908,-0.927875,-0.045899,0.061754,-0.997036,-0.045899,0.061754,-0.997036, + -0.045899,0.061754,-0.997036,-0.045899,0.061754,-0.997036,0.298881,-0.110248,-0.947901,0.298881,-0.110248,-0.947901, + 0.298881,-0.110248,-0.947901,0.298881,-0.110248,-0.947901,0.031212,0.212720,-0.976615,0.031212,0.212720,-0.976615, + 0.031212,0.212720,-0.976615,0.031212,0.212720,-0.976615,0.157967,-0.163124,-0.973877,0.157967,-0.163124,-0.973877, + 0.157967,-0.163124,-0.973877,0.157967,-0.163124,-0.973877,0.294021,0.152975,-0.943478,0.294021,0.152975,-0.943478, + 0.294021,0.152975,-0.943478,0.294021,0.152975,-0.943478,0.326602,0.036732,-0.944448,0.326602,0.036732,-0.944448, + 0.326602,0.036732,-0.944448,0.326602,0.036732,-0.944448,0.003062,0.059870,-0.998201,0.003062,0.059870,-0.998201, + 0.003062,0.059870,-0.998201,0.003062,0.059870,-0.998201,0.270282,-0.073439,-0.959976,0.270282,-0.073439,-0.959976, + 0.270282,-0.073439,-0.959976,0.270282,-0.073439,-0.959976,0.062824,0.176857,-0.982229,0.062824,0.176857,-0.982229, + 0.062824,0.176857,-0.982229,0.062824,0.176857,-0.982229,0.161108,-0.114487,-0.980274,0.161108,-0.114487,-0.980274, + 0.161108,-0.114487,-0.980274,0.161108,-0.114487,-0.980274,0.173615,0.216917,-0.960627,0.173615,0.216917,-0.960627, + 0.173615,0.216917,-0.960627,0.173615,0.216917,-0.960627,0.043949,-0.052268,-0.997666,0.043949,-0.052268,-0.997666, + 0.043949,-0.052268,-0.997666,0.043949,-0.052268,-0.997666,0.168805,0.052410,-0.984255,0.168805,0.052410,-0.984255, + 0.168805,0.052410,-0.984255,0.168805,0.052410,-0.984255,0.168805,0.052410,-0.984255,0.168805,0.052410,-0.984255, + 0.168805,0.052410,-0.984255,0.168805,0.052410,-0.984255,-0.053913,0.044029,0.997574,-0.053913,0.044029,0.997574, + -0.053913,0.044029,0.997574,-0.053913,0.044029,0.997574,-0.161879,0.101393,0.981588,-0.161879,0.101393,0.981588, + -0.161879,0.101393,0.981588,-0.161879,0.101393,0.981588,-0.262511,0.063556,0.962834,-0.262511,0.063556,0.962834, + -0.262511,0.063556,0.962834,-0.262511,0.063556,0.962834,-0.314414,-0.038017,0.948525,-0.314414,-0.038017,0.948525, + -0.314414,-0.038017,0.948525,-0.314414,-0.038017,0.948525,-0.284402,-0.145170,0.947650,-0.284402,-0.145170,0.947650, + -0.284402,-0.145170,0.947650,-0.284402,-0.145170,0.947650,-0.173415,-0.204115,0.963465,-0.173415,-0.204115,0.963465, + -0.173415,-0.204115,0.963465,-0.173415,-0.204115,0.963465,-0.071274,-0.167163,0.983350,-0.071274,-0.167163,0.983350, + -0.071274,-0.167163,0.983350,-0.071274,-0.167163,0.983350,-0.016187,-0.059344,0.998106,-0.016187,-0.059344,0.998106, + -0.016187,-0.059344,0.998106,-0.016187,-0.059344,0.998106,-0.502084,0.500070,-0.705579,-0.502084,0.500070,-0.705579, + -0.502084,0.500070,-0.705579,-0.502084,0.500070,-0.705579,-0.745066,-0.218854,0.630064,-0.745066,-0.218854,0.630064, + -0.745066,-0.218854,0.630064,-0.931897,0.251730,-0.261150,-0.931897,0.251730,-0.261150,-0.931897,0.251730,-0.261150, + -0.488038,-0.275081,-0.828341,-0.488038,-0.275081,-0.828341,-0.488038,-0.275081,-0.828341,-0.628149,-0.766772,-0.132248, + -0.628149,-0.766772,-0.132248,-0.628149,-0.766772,-0.132248,0.530221,-0.218158,0.819312,0.530221,-0.218158,0.819312, + 0.530221,-0.218158,0.819312,0.530221,-0.218158,0.819312,0.059885,-0.827151,0.558780,0.059885,-0.827151,0.558780, + 0.059885,-0.827151,0.558780,0.059885,-0.827151,0.558780,0.251680,-0.316477,0.914603,0.251680,-0.316477,0.914603, + 0.251680,-0.316477,0.914603,0.251680,-0.316477,0.914603,-0.348930,0.936754,-0.027217,-0.348930,0.936754,-0.027217, + -0.348930,0.936754,-0.027217,-0.348930,0.936754,-0.027217,0.126818,-0.280326,0.951491,0.126818,-0.280326,0.951491, + 0.126818,-0.280326,0.951491,0.126818,-0.280326,0.951491,-0.109173,-0.992030,-0.062905,-0.109173,-0.992030,-0.062905, + -0.109173,-0.992030,-0.062905,-0.109173,-0.992030,-0.062905,-0.531844,0.238659,-0.812517,-0.531844,0.238659,-0.812517, + -0.531844,0.238659,-0.812517,-0.531844,0.238659,-0.812517,0.599551,0.121222,-0.791103,0.599551,0.121222,-0.791103, + 0.599551,0.121222,-0.791103,0.777542,0.565736,-0.274538,0.777542,0.565736,-0.274538,0.777542,0.565736,-0.274538, + 0.968012,-0.163440,0.190367,0.968012,-0.163440,0.190367,0.968012,-0.163440,0.190367,0.564836,-0.616911,-0.548071, + 0.564836,-0.616911,-0.548071,0.564836,-0.616911,-0.548071,-0.391533,0.445622,-0.805061,-0.391533,0.445622,-0.805061, + -0.391533,0.445622,-0.805061,-0.391533,0.445622,-0.805061,0.753742,-0.548581,0.361846,0.753742,-0.548581,0.361846, + 0.753742,-0.548581,0.361846,0.753742,-0.548581,0.361846,0.765206,-0.084644,-0.638196,0.765206,-0.084644,-0.638196, + 0.765206,-0.084644,-0.638196,0.765206,-0.084644,-0.638196,-0.191760,-0.139949,0.971413,-0.191760,-0.139949,0.971413, + -0.191760,-0.139949,0.971413,-0.191760,-0.139949,0.971413,0.453657,-0.887734,-0.078248,0.453657,-0.887734,-0.078248, + 0.453657,-0.887734,-0.078248,0.453657,-0.887734,-0.078248,0.241813,0.867597,0.434513,0.241813,0.867597,0.434513, + 0.241813,0.867597,0.434513,0.241813,0.867597,0.434513,-0.891511,0.133210,0.432971,-0.891511,0.133210,0.432971, + -0.891511,0.133210,0.432971,-0.891511,0.133210,0.432971,-0.156347,-0.980328,-0.120469,-0.156347,-0.980328,-0.120469, + -0.156347,-0.980328,-0.120469,-0.156347,-0.980328,-0.120469,-0.067538,0.240653,-0.968259,-0.067538,0.240653,-0.968259, + -0.067538,0.240653,-0.968259,-0.067538,0.240653,-0.968259,0.241876,0.915770,0.320720,0.241876,0.915770,0.320720, + 0.241876,0.915770,0.320720,0.241876,0.915770,0.320720,0.928644,-0.341253,0.145488,0.928644,-0.341253,0.145488, + 0.928644,-0.341253,0.145488,0.676319,0.204546,0.707640,0.676319,0.204546,0.707640,0.676319,0.204546,0.707640, + 0.468390,0.883186,0.024359,0.468390,0.883186,0.024359,0.468390,0.883186,0.024359,0.869285,0.235910,-0.434384, + 0.869285,0.235910,-0.434384,0.869285,0.235910,-0.434384,-0.037436,-0.084332,-0.995734,-0.037436,-0.084332,-0.995734, + -0.037436,-0.084332,-0.995734,-0.037436,-0.084332,-0.995734,0.321856,-0.924911,0.202357,0.321856,-0.924911,0.202357, + 0.321856,-0.924911,0.202357,0.321856,-0.924911,0.202357,-0.514017,-0.119001,0.849485,-0.514017,-0.119001,0.849485, + -0.514017,-0.119001,0.849485,-0.514017,-0.119001,0.849485,0.984964,-0.172523,0.009016,0.984964,-0.172523,0.009016, + 0.984964,-0.172523,0.009016,0.019774,-0.997655,-0.065530,0.019774,-0.997655,-0.065530,0.019774,-0.997655,-0.065530, + 0.548677,0.756601,0.355681,0.548677,0.756601,0.355681,0.548677,0.756601,0.355681,-0.902065,0.130550,0.411382, + -0.902065,0.130550,0.411382,-0.902065,0.130550,0.411382,0.148859,0.099570,0.983833,0.148859,0.099570,0.983833, + 0.148859,0.099570,0.983833,0.148859,0.099570,0.983833,0.446166,-0.858585,0.252523,0.446166,-0.858585,0.252523, + 0.446166,-0.858585,0.252523,0.446166,-0.858585,0.252523,-0.029218,0.999516,-0.010678,-0.029218,0.999516,-0.010678, + -0.029218,0.999516,-0.010678,-0.029218,0.999516,-0.010678,0.267040,-0.043999,-0.962680,0.267040,-0.043999,-0.962680, + 0.267040,-0.043999,-0.962680,0.267040,-0.043999,-0.962680,-0.217125,-0.378427,0.899805,-0.217125,-0.378427,0.899805, + -0.217125,-0.378427,0.899805,-0.217125,-0.378427,0.899805,-0.424914,0.226882,-0.876341,-0.424914,0.226882,-0.876341, + -0.424914,0.226882,-0.876341,-0.424914,0.226882,-0.876341,-0.888832,-0.357841,-0.286228,-0.888832,-0.357841,-0.286228, + -0.888832,-0.357841,-0.286228,-0.888832,-0.357841,-0.286228,-0.848521,-0.281246,0.448233,-0.848521,-0.281246,0.448233, + -0.848521,-0.281246,0.448233,-0.848521,-0.281246,0.448233,-0.297764,0.667699,-0.682287,-0.297764,0.667699,-0.682287, + -0.297764,0.667699,-0.682287,-0.077418,-0.782734,0.617523,-0.077418,-0.782734,0.617523,-0.077418,-0.782734,0.617523, + -0.077418,-0.782734,0.617523,-0.562687,0.332141,0.757011,-0.562687,0.332141,0.757011,-0.562687,0.332141,0.757011, + -0.140799,-0.907212,-0.396410,-0.140799,-0.907212,-0.396410,-0.140799,-0.907212,-0.396410,-0.140799,-0.907212,-0.396410, + 0.072769,-0.178820,-0.981187,0.072769,-0.178820,-0.981187,0.072769,-0.178820,-0.981187,0.072769,-0.178820,-0.981187, + -0.349872,0.883905,0.310324,-0.349872,0.883905,0.310324,-0.349872,0.883905,0.310324,-0.199915,-0.877763,0.435391, + -0.199915,-0.877763,0.435391,-0.199915,-0.877763,0.435391,0.283242,-0.292329,-0.913410,0.283242,-0.292329,-0.913410, + 0.283242,-0.292329,-0.913410,0.283242,-0.292329,-0.913410,-0.171013,-0.907604,-0.383419,-0.171013,-0.907604,-0.383419, + -0.171013,-0.907604,-0.383419,-0.171013,-0.907604,-0.383419,-0.073446,-0.872167,0.483663,-0.073446,-0.872167,0.483663, + -0.073446,-0.872167,0.483663,-0.073446,-0.872167,0.483663,0.688319,-0.688510,-0.228408,0.688319,-0.688510,-0.228408, + 0.688319,-0.688510,-0.228408,0.771285,-0.416006,-0.481725,0.771285,-0.416006,-0.481725,0.771285,-0.416006,-0.481725, + 0.689289,-0.702025,0.179002,0.689289,-0.702025,0.179002,0.689289,-0.702025,0.179002,-0.291511,0.012368,-0.956488, + -0.291511,0.012368,-0.956488,-0.291511,0.012368,-0.956488,-0.291511,0.012368,-0.956488,-0.429639,-0.782493,-0.450682, + -0.429639,-0.782493,-0.450682,-0.429639,-0.782493,-0.450682,-0.429639,-0.782493,-0.450682,0.017465,0.088820,0.995895, + 0.017465,0.088820,0.995895,0.017465,0.088820,0.995895,-0.891521,0.442964,0.094727,-0.891521,0.442964,0.094727, + -0.891521,0.442964,0.094727,0.033608,0.063504,0.997415,0.033608,0.063504,0.997415,0.033608,0.063504,0.997415, + 0.965693,0.256573,-0.040087,0.965693,0.256573,-0.040087,0.965693,0.256573,-0.040087,0.965693,0.256573,-0.040087, + 0.190273,-0.634739,0.748935,0.190273,-0.634739,0.748935,0.190273,-0.634739,0.748935,0.746585,0.248004,-0.617337, + 0.746585,0.248004,-0.617337,0.746585,0.248004,-0.617337,-0.792166,0.098686,0.602274,-0.792166,0.098686,0.602274, + -0.792166,0.098686,0.602274,-0.792166,0.098686,0.602274,0.255086,-0.235892,-0.937703,0.255086,-0.235892,-0.937703, + 0.255086,-0.235892,-0.937703,0.255086,-0.235892,-0.937703,0.510128,-0.829383,0.227800,0.510128,-0.829383,0.227800, + 0.510128,-0.829383,0.227800,0.510128,-0.829383,0.227800,0.582236,-0.811295,0.052932,0.582236,-0.811295,0.052932, + 0.582236,-0.811295,0.052932,0.076185,-0.218943,-0.972759,0.076185,-0.218943,-0.972759,0.076185,-0.218943,-0.972759, + 0.076185,-0.218943,-0.972759,-0.959100,0.198325,0.201977,-0.959100,0.198325,0.201977,-0.959100,0.198325,0.201977, + -0.959100,0.198325,0.201977,0.487989,0.788206,0.374965,0.487989,0.788206,0.374965,0.487989,0.788206,0.374965, + 0.487989,0.788206,0.374965,-0.600358,-0.720469,-0.347123,-0.600358,-0.720469,-0.347123,-0.600358,-0.720469,-0.347123, + -0.600358,-0.720469,-0.347123,-0.875680,0.233692,-0.422579,-0.875680,0.233692,-0.422579,-0.875680,0.233692,-0.422579, + -0.936178,0.176934,-0.303752,-0.936178,0.176934,-0.303752,-0.936178,0.176934,-0.303752,-0.866236,0.159178,-0.473601, + -0.866236,0.159178,-0.473601,-0.866236,0.159178,-0.473601,-0.912992,-0.407490,-0.019959,-0.912992,-0.407490,-0.019959, + -0.912992,-0.407490,-0.019959,0.422832,-0.267919,-0.865698,0.422832,-0.267919,-0.865698,0.422832,-0.267919,-0.865698, + 0.422832,-0.267919,-0.865698,0.757260,-0.647043,-0.088843,0.757260,-0.647043,-0.088843,0.757260,-0.647043,-0.088843, + 0.757260,-0.647043,-0.088843,0.757260,-0.647043,-0.088843,-0.157412,-0.268997,0.950191,-0.157412,-0.268997,0.950191, + -0.157412,-0.268997,0.950191,-0.157412,-0.268997,0.950191,0.817431,-0.343243,0.462591,0.817431,-0.343243,0.462591, + 0.817431,-0.343243,0.462591,0.698696,-0.334689,0.632303,0.698696,-0.334689,0.632303,0.698696,-0.334689,0.632303, + 0.808608,-0.337687,0.481789,0.808608,-0.337687,0.481789,0.808608,-0.337687,0.481789,-0.244075,0.949507,0.197140, + -0.244075,0.949507,0.197140,-0.244075,0.949507,0.197140,-0.244075,0.949507,0.197140,-0.513335,0.241041,0.823642, + -0.513335,0.241041,0.823642,-0.513335,0.241041,0.823642,-0.513335,0.241041,0.823642,-0.201074,-0.911621,-0.358492, + -0.201074,-0.911621,-0.358492,-0.201074,-0.911621,-0.358492,-0.201074,-0.911621,-0.358492,0.224268,-0.131915,-0.965558, + 0.224268,-0.131915,-0.965558,0.224268,-0.131915,-0.965558,0.224268,-0.131915,-0.965558,-0.877058,-0.452405,0.161554, + -0.877058,-0.452405,0.161554,-0.877058,-0.452405,0.161554,-0.877058,-0.452405,0.161554,-0.427488,-0.153788,0.890844, + -0.427488,-0.153788,0.890844,-0.427488,-0.153788,0.890844,-0.427488,-0.153788,0.890844,0.325138,-0.481234,0.814064, + 0.325138,-0.481234,0.814064,0.325138,-0.481234,0.814064,0.325138,-0.481234,0.814064,0.747182,0.521751,0.411698, + 0.747182,0.521751,0.411698,0.747182,0.521751,0.411698,0.747182,0.521751,0.411698,-0.266833,-0.486913,0.831695, + -0.266833,-0.486913,0.831695,-0.266833,-0.486913,0.831695,-0.063037,-0.585182,-0.808448,-0.063037,-0.585182,-0.808448, + -0.063037,-0.585182,-0.808448,-0.063037,-0.585182,-0.808448,0.231061,-0.196049,-0.952982,0.231061,-0.196049,-0.952982, + 0.231061,-0.196049,-0.952982,0.372117,0.614651,0.695509,0.372117,0.614651,0.695509,0.372117,0.614651,0.695509, + 0.704375,-0.581217,0.407484,0.704375,-0.581217,0.407484,0.704375,-0.581217,0.407484,0.704375,-0.581217,0.407484, + 0.907732,-0.419499,0.006552,0.907732,-0.419499,0.006552,0.907732,-0.419499,0.006552,0.907732,-0.419499,0.006552, + 0.620414,-0.584208,0.523246,0.620414,-0.584208,0.523246,0.620414,-0.584208,0.523246,0.620414,-0.584208,0.523246, + 0.523006,-0.443001,-0.728159,0.523006,-0.443001,-0.728159,0.523006,-0.443001,-0.728159,0.523006,-0.443001,-0.728159, + -0.889629,-0.327714,0.318062,-0.889629,-0.327714,0.318062,-0.889629,-0.327714,0.318062,-0.581279,-0.003091,0.813698, + -0.581279,-0.003091,0.813698,-0.581279,-0.003091,0.813698,-0.581279,-0.003091,0.813698,-0.885352,0.463754,-0.032931, + -0.885352,0.463754,-0.032931,-0.885352,0.463754,-0.032931,-0.885352,0.463754,-0.032931,-0.556679,0.103049,-0.824311, + -0.556679,0.103049,-0.824311,-0.556679,0.103049,-0.824311,-0.973469,-0.189167,0.128737,-0.973469,-0.189167,0.128737, + -0.973469,-0.189167,0.128737,-0.928855,-0.206925,0.307263,-0.928855,-0.206925,0.307263,-0.928855,-0.206925,0.307263, + -0.928855,-0.206925,0.307263,-0.683525,-0.729787,-0.014271,-0.683525,-0.729787,-0.014271,-0.683525,-0.729787,-0.014271, + -0.492648,-0.621017,-0.609619,-0.492648,-0.621017,-0.609619,-0.492648,-0.621017,-0.609619,-0.588520,-0.789351,-0.174841, + -0.588520,-0.789351,-0.174841,-0.588520,-0.789351,-0.174841,-0.590123,0.244662,-0.769348,-0.590123,0.244662,-0.769348, + -0.590123,0.244662,-0.769348,-0.590123,0.244662,-0.769348,0.330685,-0.565655,0.755435,0.330685,-0.565655,0.755435, + 0.330685,-0.565655,0.755435,0.330685,-0.565655,0.755435,-0.146659,-0.072844,-0.986501,-0.146659,-0.072844,-0.986501, + -0.146659,-0.072844,-0.986501,-0.146659,-0.072844,-0.986501,-0.166631,-0.775022,-0.609569,-0.166631,-0.775022,-0.609569, + -0.166631,-0.775022,-0.609569,-0.166631,-0.775022,-0.609569,-0.017761,-0.939022,0.343398,-0.017761,-0.939022,0.343398, + -0.017761,-0.939022,0.343398,-0.017761,-0.939022,0.343398,-0.921813,0.085745,-0.378034,-0.921813,0.085745,-0.378034, + -0.921813,0.085745,-0.378034,-0.921813,0.085745,-0.378034,0.709688,-0.702454,0.053869,0.709688,-0.702454,0.053869, + 0.709688,-0.702454,0.053869,0.709688,-0.702454,0.053869,0.673128,-0.720313,-0.167475,0.673128,-0.720313,-0.167475, + 0.673128,-0.720313,-0.167475,0.673128,-0.720313,-0.167475,-0.734158,0.217844,0.643083,-0.734158,0.217844,0.643083, + -0.734158,0.217844,0.643083,-0.734158,0.217844,0.643083,-0.595235,-0.566433,-0.569956,-0.595235,-0.566433,-0.569956, + -0.595235,-0.566433,-0.569956,-0.595235,-0.566433,-0.569956,-0.867117,-0.162062,0.471003,-0.867117,-0.162062,0.471003, + -0.867117,-0.162062,0.471003,-0.867117,-0.162062,0.471003,0.072984,-0.120483,-0.990029,0.072984,-0.120483,-0.990029, + 0.072984,-0.120483,-0.990029,0.072984,-0.120483,-0.990029,-0.207017,0.651128,-0.730189,-0.207017,0.651128,-0.730189, + -0.207017,0.651128,-0.730189,0.108252,-0.794757,0.597196,0.108252,-0.794757,0.597196,0.108252,-0.794757,0.597196, + 0.337285,-0.388807,-0.857361,0.337285,-0.388807,-0.857361,0.337285,-0.388807,-0.857361,-0.213071,0.541901,-0.812985, + -0.213071,0.541901,-0.812985,-0.213071,0.541901,-0.812985,-0.213071,0.541901,-0.812985,-0.491822,0.737439,0.462919, + -0.491822,0.737439,0.462919,-0.491822,0.737439,0.462919,0.090264,0.977235,0.192000,0.090264,0.977235,0.192000, + 0.090264,0.977235,0.192000,0.090264,0.977235,0.192000,-0.347467,-0.740833,-0.574833,-0.347467,-0.740833,-0.574833, + -0.347467,-0.740833,-0.574833,-0.347467,-0.740833,-0.574833,0.392966,0.397281,0.829304,0.392966,0.397281,0.829304, + 0.392966,0.397281,0.829304,0.392966,0.397281,0.829304,-0.207652,-0.808820,0.550173,-0.207652,-0.808820,0.550173, + -0.207652,-0.808820,0.550173,-0.207652,-0.808820,0.550173,-0.334474,-0.232202,0.913351,-0.334474,-0.232202,0.913351, + -0.334474,-0.232202,0.913351,0.577006,0.691118,0.435225,0.577006,0.691118,0.435225,0.577006,0.691118,0.435225, + 0.577006,0.691118,0.435225,0.006620,-0.493357,0.869802,0.006620,-0.493357,0.869802,0.006620,-0.493357,0.869802, + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.400516,0.594176,0.697526, + 0.400516,0.594176,0.697526,0.400516,0.594176,0.697526,-0.204906,-0.873967,0.440676,-0.204906,-0.873967,0.440676, + -0.204906,-0.873967,0.440676,-0.476627,0.379647,-0.792903,-0.476627,0.379647,-0.792903,-0.476627,0.379647,-0.792903, + -0.476627,0.379647,-0.792903,-0.635144,0.282029,0.719063,-0.635144,0.282029,0.719063,-0.635144,0.282029,0.719063, + -0.313485,0.949532,0.010818,-0.313485,0.949532,0.010818,-0.313485,0.949532,0.010818,0.568941,0.821197,0.044064, + 0.568941,0.821197,0.044064,0.568941,0.821197,0.044064,0.273800,0.530829,0.802031,0.273800,0.530829,0.802031, + 0.273800,0.530829,0.802031,0.190925,-0.485973,0.852864,0.190925,-0.485973,0.852864,0.190925,-0.485973,0.852864, + 0.190925,-0.485973,0.852864,0.692792,0.121975,0.710747,0.692792,0.121975,0.710747,0.692792,0.121975,0.710747, + 0.692792,0.121975,0.710747,0.339349,-0.389599,0.856186,0.339349,-0.389599,0.856186,0.339349,-0.389599,0.856186, + 0.339349,-0.389599,0.856186,-0.634637,0.396340,-0.663438,-0.634637,0.396340,-0.663438,-0.634637,0.396340,-0.663438, + -0.634637,0.396340,-0.663438,0.235515,-0.323128,0.916581,0.235515,-0.323128,0.916581,0.235515,-0.323128,0.916581, + 0.235515,-0.323128,0.916581,0.815876,0.541016,0.204077,0.815876,0.541016,0.204077,0.815876,0.541016,0.204077, + 0.815876,0.541016,0.204077,-0.406087,0.627246,-0.664572,-0.406087,0.627246,-0.664572,-0.406087,0.627246,-0.664572, + -0.406087,0.627246,-0.664572,0.243839,-0.267336,-0.932241,0.243839,-0.267336,-0.932241,0.243839,-0.267336,-0.932241, + -0.095174,-0.790711,-0.604746,-0.095174,-0.790711,-0.604746,-0.095174,-0.790711,-0.604746,0.598211,-0.799515,-0.054039, + 0.598211,-0.799515,-0.054039,0.598211,-0.799515,-0.054039,0.852072,-0.006591,-0.523384,0.852072,-0.006591,-0.523384, + 0.852072,-0.006591,-0.523384,-0.262656,0.400028,-0.878060,-0.262656,0.400028,-0.878060,-0.262656,0.400028,-0.878060, + -0.262656,0.400028,-0.878060,0.688074,-0.552455,0.470476,0.688074,-0.552455,0.470476,0.688074,-0.552455,0.470476, + 0.688074,-0.552455,0.470476,0.668613,-0.361663,-0.649735,0.668613,-0.361663,-0.649735,0.668613,-0.361663,-0.649735, + 0.668613,-0.361663,-0.649735,-0.660956,-0.381558,0.646181,-0.660956,-0.381558,0.646181,-0.660956,-0.381558,0.646181, + -0.660956,-0.381558,0.646181,0.775231,-0.368631,0.512961,0.775231,-0.368631,0.512961,0.775231,-0.368631,0.512961, + 0.775231,-0.368631,0.512961,-0.670527,-0.729658,0.134140,-0.670527,-0.729658,0.134140,-0.670527,-0.729658,0.134140, + -0.670527,-0.729658,0.134140,-0.581238,0.526892,0.620119,-0.581238,0.526892,0.620119,-0.581238,0.526892,0.620119, + -0.581238,0.526892,0.620119,0.787036,0.595567,0.160853,0.787036,0.595567,0.160853,0.787036,0.595567,0.160853, + 0.787036,0.595567,0.160853,-0.170889,0.297092,-0.939432,-0.170889,0.297092,-0.939432,-0.170889,0.297092,-0.939432, + -0.170889,0.297092,-0.939432,-0.699136,-0.714789,0.016900,-0.699136,-0.714789,0.016900,-0.699136,-0.714789,0.016900, + -0.699136,-0.714789,0.016900,0.446694,-0.894569,0.014525,0.446694,-0.894569,0.014525,0.446694,-0.894569,0.014525, + -0.367248,-0.924189,-0.104900,-0.367248,-0.924189,-0.104900,-0.367248,-0.924189,-0.104900,-0.321628,-0.328287,-0.888135, + -0.321628,-0.328287,-0.888135,-0.321628,-0.328287,-0.888135,0.530745,-0.487956,-0.692971,0.530745,-0.487956,-0.692971, + 0.530745,-0.487956,-0.692971,0.763765,0.544364,-0.346887,0.763765,0.544364,-0.346887,0.763765,0.544364,-0.346887, + 0.763765,0.544364,-0.346887,0.488719,-0.463820,0.738935,0.488719,-0.463820,0.738935,0.488719,-0.463820,0.738935, + 0.488719,-0.463820,0.738935,-0.760752,-0.019291,0.648756,-0.760752,-0.019291,0.648756,-0.760752,-0.019291,0.648756, + -0.760752,-0.019291,0.648756,0.627749,-0.745027,-0.225537,0.627749,-0.745027,-0.225537,0.627749,-0.745027,-0.225537, + 0.883565,0.437506,0.167037,0.883565,0.437506,0.167037,0.883565,0.437506,0.167037,-0.419159,-0.907912,0.001449, + -0.419159,-0.907912,0.001449,-0.419159,-0.907912,0.001449,-0.581979,0.544671,0.603849,-0.581979,0.544671,0.603849, + -0.581979,0.544671,0.603849,-0.719619,-0.631185,0.289403,-0.719619,-0.631185,0.289403,-0.719619,-0.631185,0.289403, + -0.719619,-0.631185,0.289403,0.464087,-0.589285,0.661336,0.464087,-0.589285,0.661336,0.464087,-0.589285,0.661336, + 0.464087,-0.589285,0.661336,-0.555774,0.122490,-0.822260,-0.555774,0.122490,-0.822260,-0.555774,0.122490,-0.822260, + -0.555774,0.122490,-0.822260,0.836899,0.272743,-0.474564,0.836899,0.272743,-0.474564,0.836899,0.272743,-0.474564, + 0.836899,0.272743,-0.474564,-0.125560,0.039873,0.991284,-0.125560,0.039873,0.991284,-0.125560,0.039873,0.991284, + -0.125560,0.039873,0.991284,-0.135224,0.781463,-0.609122,-0.135224,0.781463,-0.609122,-0.135224,0.781463,-0.609122, + -0.135224,0.781463,-0.609122,-0.222382,0.917963,0.328468,-0.222382,0.917963,0.328468,-0.222382,0.917963,0.328468, + -0.222382,0.917963,0.328468,-0.495509,0.394527,0.773834,-0.495509,0.394527,0.773834,-0.495509,0.394527,0.773834, + -0.495509,0.394527,0.773834,-0.425056,0.423959,-0.799741,-0.425056,0.423959,-0.799741,-0.425056,0.423959,-0.799741, + 0.287457,-0.084210,0.954084,0.287457,-0.084210,0.954084,0.287457,-0.084210,0.954084,0.287457,-0.084210,0.954084, + -0.842416,-0.203295,0.499005,-0.842416,-0.203295,0.499005,-0.842416,-0.203295,0.499005,0.672610,0.649916,0.353844, + 0.672610,0.649916,0.353844,0.672610,0.649916,0.353844,0.672610,0.649916,0.353844,0.498684,0.636529,-0.588341, + 0.498684,0.636529,-0.588341,0.498684,0.636529,-0.588341,0.498684,0.636529,-0.588341,-0.940376,-0.246537,-0.234333, + -0.940376,-0.246537,-0.234333,-0.940376,-0.246537,-0.234333,0.336254,0.148682,0.929961,0.336254,0.148682,0.929961, + 0.336254,0.148682,0.929961,0.688964,0.484353,-0.539194,0.688964,0.484353,-0.539194,0.688964,0.484353,-0.539194, + 0.688964,0.484353,-0.539194,0.649280,0.662706,0.373171,0.649280,0.662706,0.373171,0.649280,0.662706,0.373171, + 0.649280,0.662706,0.373171,0.396859,0.028136,0.917448,0.396859,0.028136,0.917448,0.396859,0.028136,0.917448, + 0.396859,0.028136,0.917448,0.993066,-0.105109,0.052653,0.993066,-0.105109,0.052653,0.993066,-0.105109,0.052653, + 0.941505,-0.090151,-0.324718,0.941505,-0.090151,-0.324718,0.941505,-0.090151,-0.324718,0.866790,-0.362217,0.342745, + 0.866790,-0.362217,0.342745,0.866790,-0.362217,0.342745,0.125517,0.810710,-0.571835,0.125517,0.810710,-0.571835, + 0.125517,0.810710,-0.571835,0.125517,0.810710,-0.571835,0.420092,0.844145,0.333080,0.420092,0.844145,0.333080, + 0.420092,0.844145,0.333080,0.420092,0.844145,0.333080,-0.383617,-0.678972,0.625968,-0.383617,-0.678972,0.625968, + -0.383617,-0.678972,0.625968,-0.907412,0.412540,0.080082,-0.907412,0.412540,0.080082,-0.907412,0.412540,0.080082, + -0.356272,-0.682843,0.637806,-0.356272,-0.682843,0.637806,-0.356272,-0.682843,0.637806,0.128727,-0.938426,-0.320602, + 0.128727,-0.938426,-0.320602,0.128727,-0.938426,-0.320602,0.128727,-0.938426,-0.320602,0.485427,-0.213252,0.847870, + 0.485427,-0.213252,0.847870,0.485427,-0.213252,0.847870,0.179243,-0.562057,-0.807443,0.179243,-0.562057,-0.807443, + 0.179243,-0.562057,-0.807443,-0.506971,0.505949,0.697851,-0.506971,0.505949,0.697851,-0.506971,0.505949,0.697851, + -0.506971,0.505949,0.697851,0.506428,0.122992,-0.853466,0.506428,0.122992,-0.853466,0.506428,0.122992,-0.853466, + 0.506428,0.122992,-0.853466,0.889543,-0.287600,0.354964,0.889543,-0.287600,0.354964,0.889543,-0.287600,0.354964, + 0.889543,-0.287600,0.354964,0.936687,-0.305178,0.171712,0.936687,-0.305178,0.171712,0.936687,-0.305178,0.171712, + 0.433152,0.290771,-0.853130,0.433152,0.290771,-0.853130,0.433152,0.290771,-0.853130,0.433152,0.290771,-0.853130, + -0.721862,0.633871,0.277708,-0.721862,0.633871,0.277708,-0.721862,0.633871,0.277708,-0.721862,0.633871,0.277708, + -0.697169,-0.681716,0.221853,-0.697169,-0.681716,0.221853,-0.697169,-0.681716,0.221853,-0.697169,-0.681716,0.221853, + 0.606450,0.766918,-0.209893,0.606450,0.766918,-0.209893,0.606450,0.766918,-0.209893,0.606450,0.766918,-0.209893, + -0.441808,0.853222,-0.277161,-0.441808,0.853222,-0.277161,-0.441808,0.853222,-0.277161,-0.437767,0.888632,-0.136721, + -0.437767,0.888632,-0.136721,-0.437767,0.888632,-0.136721,-0.359996,0.882064,-0.303917,-0.359996,0.882064,-0.303917, + -0.359996,0.882064,-0.303917,0.039950,0.953302,0.299366,0.039950,0.953302,0.299366,0.039950,0.953302,0.299366, + 0.581412,-0.041470,-0.812552,0.581412,-0.041470,-0.812552,0.581412,-0.041470,-0.812552,0.581412,-0.041470,-0.812552, + 0.881940,-0.469007,-0.047060,0.881940,-0.469007,-0.047060,0.881940,-0.469007,-0.047060,0.881940,-0.469007,-0.047060, + 0.881940,-0.469007,-0.047060,0.022592,0.013214,0.999657,0.022592,0.013214,0.999657,0.022592,0.013214,0.999657, + 0.022592,0.013214,0.999657,0.511293,-0.780365,0.360014,0.511293,-0.780365,0.360014,0.511293,-0.780365,0.360014, + 0.424085,-0.726829,0.540252,0.424085,-0.726829,0.540252,0.424085,-0.726829,0.540252,0.498966,-0.779826,0.378027, + 0.498966,-0.779826,0.378027,0.498966,-0.779826,0.378027,-0.880622,-0.269075,-0.390005,-0.880622,-0.269075,-0.390005, + -0.880622,-0.269075,-0.390005,-0.880622,-0.269075,-0.390005,-0.769989,-0.250292,0.586917,-0.769989,-0.250292,0.586917, + -0.769989,-0.250292,0.586917,-0.769989,-0.250292,0.586917,0.624562,0.668944,0.403034,0.624562,0.668944,0.403034, + 0.624562,0.668944,0.403034,0.624562,0.668944,0.403034,0.557472,0.505932,-0.658224,0.557472,0.505932,-0.658224, + 0.557472,0.505932,-0.658224,0.557472,0.505932,-0.658224,0.095333,0.888781,0.448308,0.095333,0.888781,0.448308, + 0.095333,0.888781,0.448308,0.095333,0.888781,0.448308,-0.206290,0.162060,0.964977,-0.206290,0.162060,0.964977, + -0.206290,0.162060,0.964977,-0.206290,0.162060,0.964977,0.381723,-0.400362,0.833066,0.381723,-0.400362,0.833066, + 0.381723,-0.400362,0.833066,0.381723,-0.400362,0.833066,-0.287432,-0.955596,0.064950,-0.287432,-0.955596,0.064950, + -0.287432,-0.955596,0.064950,-0.287432,-0.955596,0.064950,0.166894,0.132403,0.977045,0.166894,0.132403,0.977045, + 0.166894,0.132403,0.977045,0.636551,0.753759,-0.163250,0.636551,0.753759,-0.163250,0.636551,0.753759,-0.163250, + 0.636551,0.753759,-0.163250,0.464792,0.137672,-0.874651,0.464792,0.137672,-0.874651,0.464792,0.137672,-0.874651, + -0.568972,-0.729230,0.380124,-0.568972,-0.729230,0.380124,-0.568972,-0.729230,0.380124,0.697399,-0.591205,0.405106, + 0.697399,-0.591205,0.405106,0.697399,-0.591205,0.405106,0.697399,-0.591205,0.405106,0.867614,-0.496302,-0.030486, + 0.867614,-0.496302,-0.030486,0.867614,-0.496302,-0.030486,0.867614,-0.496302,-0.030486,0.706393,-0.449494,0.546776, + 0.706393,-0.449494,0.546776,0.706393,-0.449494,0.546776,0.706393,-0.449494,0.546776,0.733355,-0.113084,-0.670375, + 0.733355,-0.113084,-0.670375,0.733355,-0.113084,-0.670375,0.733355,-0.113084,-0.670375,-0.054330,0.762453,0.644759, + -0.054330,0.762453,0.644759,-0.054330,0.762453,0.644759,-0.373457,0.291872,0.880534,-0.373457,0.291872,0.880534, + -0.373457,0.291872,0.880534,-0.373457,0.291872,0.880534,-0.875197,0.483192,-0.023586,-0.875197,0.483192,-0.023586, + -0.875197,0.483192,-0.023586,-0.875197,0.483192,-0.023586,-0.121381,0.724562,-0.678437,-0.121381,0.724562,-0.678437, + -0.121381,0.724562,-0.678437,-0.211647,0.898732,0.384039,-0.211647,0.898732,0.384039,-0.211647,0.898732,0.384039, + -0.267430,0.830256,0.489036,-0.267430,0.830256,0.489036,-0.267430,0.830256,0.489036,-0.267430,0.830256,0.489036, + -0.879817,0.378579,0.287403,-0.879817,0.378579,0.287403,-0.879817,0.378579,0.287403,0.414678,0.838382,0.353776, + 0.414678,0.838382,0.353776,0.414678,0.838382,0.353776,0.512510,0.814208,-0.272761,0.512510,0.814208,-0.272761, + 0.512510,0.814208,-0.272761,0.537537,0.818551,0.202553,0.537537,0.818551,0.202553,0.537537,0.818551,0.202553, + -0.353658,0.615440,-0.704386,-0.353658,0.615440,-0.704386,-0.353658,0.615440,-0.704386,-0.353658,0.615440,-0.704386, + 0.559803,-0.203924,0.803141,0.559803,-0.203924,0.803141,0.559803,-0.203924,0.803141,0.559803,-0.203924,0.803141, + 0.154421,0.399214,-0.903760,0.154421,0.399214,-0.903760,0.154421,0.399214,-0.903760,0.154421,0.399214,-0.903760, + 0.710195,0.599796,-0.368603,0.710195,0.599796,-0.368603,0.710195,0.599796,-0.368603,0.710195,0.599796,-0.368603, + 0.772131,0.299470,0.560474,0.772131,0.299470,0.560474,0.772131,0.299470,0.560474,0.772131,0.299470,0.560474, + -0.417323,0.876664,-0.239380,-0.417323,0.876664,-0.239380,-0.417323,0.876664,-0.239380,-0.417323,0.876664,-0.239380, + 0.922967,-0.368075,0.112489,0.922967,-0.368075,0.112489,0.922967,-0.368075,0.112489,0.922967,-0.368075,0.112489, + 0.957383,-0.274645,-0.089379,0.957383,-0.274645,-0.089379,0.957383,-0.274645,-0.089379,0.957383,-0.274645,-0.089379, + -0.611942,0.409458,0.676662,-0.611942,0.409458,0.676662,-0.611942,0.409458,0.676662,-0.611942,0.409458,0.676662, + 0.436785,0.859102,-0.266764,0.436785,0.859102,-0.266764,0.436785,0.859102,-0.266764,0.436785,0.859102,-0.266764, + -0.270085,0.690440,0.671079,-0.270085,0.690440,0.671079,-0.270085,0.690440,0.671079,-0.270085,0.690440,0.671079, + 0.341425,0.239451,-0.908896,0.341425,0.239451,-0.908896,0.341425,0.239451,-0.908896,0.341425,0.239451,-0.908896, + -0.611242,0.156900,-0.775736,-0.611242,0.156900,-0.775736,-0.611242,0.156900,-0.775736,0.700450,0.033085,0.712934, + 0.700450,0.033085,0.712934,0.700450,0.033085,0.712934,0.895116,0.268179,-0.356156,0.895116,0.268179,-0.356156, + 0.895116,0.268179,-0.356156,0.172805,0.635555,-0.752468,0.172805,0.635555,-0.752468,0.172805,0.635555,-0.752468, + 0.172805,0.635555,-0.752468,-0.989919,0.131671,-0.052182,-0.989919,0.131671,-0.052182,-0.989919,0.131671,-0.052182, + -0.829906,-0.553130,-0.072827,-0.829906,-0.553130,-0.072827,-0.829906,-0.553130,-0.072827,-0.829906,-0.553130,-0.072827, + 0.519417,0.810275,-0.271403,0.519417,0.810275,-0.271403,0.519417,0.810275,-0.271403,0.519417,0.810275,-0.271403, + -0.302803,-0.934386,0.187707,-0.302803,-0.934386,0.187707,-0.302803,-0.934386,0.187707,-0.302803,-0.934386,0.187707, + 0.245005,0.057966,0.967788,0.245005,0.057966,0.967788,0.245005,0.057966,0.967788,0.245005,0.057966,0.967788, + -0.106020,0.093984,0.989913,-0.106020,0.093984,0.989913,-0.106020,0.093984,0.989913,-0.508108,-0.858318,0.071524, + -0.508108,-0.858318,0.071524,-0.508108,-0.858318,0.071524,-0.508108,-0.858318,0.071524,0.264524,-0.125120,0.956228, + 0.264524,-0.125120,0.956228,0.264524,-0.125120,0.956228,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, + 0.000000,0.000000,1.000000,-0.540449,-0.749547,0.382221,-0.540449,-0.749547,0.382221,-0.540449,-0.749547,0.382221, + 0.328682,0.147518,0.932849,0.328682,0.147518,0.932849,0.328682,0.147518,0.932849,-0.177637,-0.703432,-0.688207, + -0.177637,-0.703432,-0.688207,-0.177637,-0.703432,-0.688207,-0.177637,-0.703432,-0.688207,-0.065920,-0.973675,0.218200, + -0.065920,-0.973675,0.218200,-0.065920,-0.973675,0.218200,-0.065920,-0.973675,0.218200,0.854447,0.191166,0.483090, + 0.854447,0.191166,0.483090,0.854447,0.191166,0.483090,0.854447,0.191166,0.483090,0.045456,-0.243194,-0.968912, + 0.045456,-0.243194,-0.968912,0.045456,-0.243194,-0.968912,0.045456,-0.243194,-0.968912,-0.716746,0.503965,0.481969, + -0.716746,0.503965,0.481969,-0.716746,0.503965,0.481969,-0.771132,0.561641,0.299859,-0.771132,0.561641,0.299859, + -0.771132,0.561641,0.299859,-0.749036,0.611371,0.255284,-0.749036,0.611371,0.255284,-0.749036,0.611371,0.255284, + -0.850690,0.485547,0.201421,-0.850690,0.485547,0.201421,-0.850690,0.485547,0.201421,0.386316,0.295128,-0.873876, + 0.386316,0.295128,-0.873876,0.386316,0.295128,-0.873876,0.386316,0.295128,-0.873876,-0.824622,0.513325,0.237689, + -0.824622,0.513325,0.237689,-0.824622,0.513325,0.237689,-0.769338,0.469192,0.433564,-0.769338,0.469192,0.433564, + -0.769338,0.469192,0.433564,-0.821872,0.529796,0.209385,-0.821872,0.529796,0.209385,-0.821872,0.529796,0.209385, + 0.644332,0.510633,-0.569289,0.644332,0.510633,-0.569289,0.644332,0.510633,-0.569289,0.644332,0.510633,-0.569289, + -0.408564,-0.863362,-0.296112,-0.408564,-0.863362,-0.296112,-0.408564,-0.863362,-0.296112,-0.408564,-0.863362,-0.296112, + 0.790673,-0.076771,-0.607406,0.790673,-0.076771,-0.607406,0.790673,-0.076771,-0.607406,0.790673,-0.076771,-0.607406, + -0.908725,0.354464,0.220396,-0.908725,0.354464,0.220396,-0.908725,0.354464,0.220396,-0.908725,0.354464,0.220396, + 0.908722,-0.354465,-0.220408,0.908722,-0.354465,-0.220408,0.908722,-0.354465,-0.220408,0.908722,-0.354465,-0.220408, + 0.901126,-0.408350,0.145678,0.901126,-0.408350,0.145678,0.901126,-0.408350,0.145678,0.901126,-0.408350,0.145678, + 0.208213,-0.072646,0.975382,0.208213,-0.072646,0.975382,0.208213,-0.072646,0.975382,0.208213,-0.072646,0.975382, + -0.791836,0.252005,0.556317,-0.791836,0.252005,0.556317,-0.791836,0.252005,0.556317,-0.791836,0.252005,0.556317, + -0.408655,-0.863306,-0.296151,-0.408655,-0.863306,-0.296151,-0.408655,-0.863306,-0.296151,0.046039,0.610003,-0.791061, + 0.046039,0.610003,-0.791061,0.046039,0.610003,-0.791061,0.046039,0.610003,-0.791061,-0.408547,-0.863360,-0.296138, + -0.408547,-0.863360,-0.296138,-0.408547,-0.863360,-0.296138,-0.807962,0.546748,-0.219692,-0.807962,0.546748,-0.219692, + -0.807962,0.546748,-0.219692,-0.807962,0.546748,-0.219692,-0.823405,0.316005,0.471322,-0.823405,0.316005,0.471322, + -0.823405,0.316005,0.471322,0.868809,-0.153934,-0.470611,0.868809,-0.153934,-0.470611,0.868809,-0.153934,-0.470611, + 0.865524,-0.405686,0.293748,0.865524,-0.405686,0.293748,0.865524,-0.405686,0.293748,0.408596,0.863330,0.296161, + 0.408596,0.863330,0.296161,0.408596,0.863330,0.296161,0.408596,0.863330,0.296161,-0.788957,0.565586,-0.240125, + -0.788957,0.565586,-0.240125,-0.788957,0.565586,-0.240125,0.830397,-0.241612,-0.502061,0.830397,-0.241612,-0.502061, + 0.830397,-0.241612,-0.502061,0.830397,-0.241612,-0.502061,-0.408683,-0.863300,-0.296127,-0.408683,-0.863300,-0.296127, + -0.408683,-0.863300,-0.296127,-0.861260,0.241851,0.446921,-0.861260,0.241851,0.446921,-0.861260,0.241851,0.446921, + -0.861260,0.241851,0.446921,-0.408564,-0.863369,-0.296091,-0.408564,-0.863369,-0.296091,-0.408564,-0.863369,-0.296091, + -0.408564,-0.863369,-0.296091,-0.408547,-0.863360,-0.296140,-0.408547,-0.863360,-0.296140,-0.408547,-0.863360,-0.296140, + -0.408547,-0.863360,-0.296140,-0.408600,-0.863331,-0.296152,-0.408600,-0.863331,-0.296152,-0.408600,-0.863331,-0.296152, + -0.089014,0.351350,-0.932003,-0.089014,0.351350,-0.932003,-0.089014,0.351350,-0.932003,-0.089014,0.351350,-0.932003, + 0.933789,-0.213745,-0.286969,0.933789,-0.213745,-0.286969,0.933789,-0.213745,-0.286969,0.933789,-0.213745,-0.286969, + 0.097865,-0.332402,0.938047,0.097865,-0.332402,0.938047,0.097865,-0.332402,0.938047,0.097865,-0.332402,0.938047, + -0.859668,0.484858,0.160883,-0.859668,0.484858,0.160883,-0.859668,0.484858,0.160883,-0.859668,0.484858,0.160883, + -0.840317,0.466624,-0.275916,-0.840317,0.466624,-0.275916,-0.840317,0.466624,-0.275916,-0.840317,0.466624,-0.275916, + 0.827552,-0.494959,0.264902,0.827552,-0.494959,0.264902,0.827552,-0.494959,0.264902,0.827552,-0.494959,0.264902, + 0.408628,0.863323,0.296136,0.408628,0.863323,0.296136,0.408628,0.863323,0.296136,0.408558,0.863379,0.296071, + 0.408558,0.863379,0.296071,0.408558,0.863379,0.296071,0.408576,0.863375,0.296057,0.408576,0.863375,0.296057, + 0.408576,0.863375,0.296057,0.408568,0.863355,0.296125,0.408568,0.863355,0.296125,0.408568,0.863355,0.296125, + 0.408568,0.863355,0.296125,0.408589,0.863333,0.296160,0.408589,0.863333,0.296160,0.408589,0.863333,0.296160, + 0.408589,0.863333,0.296160,0.408512,0.863414,0.296032,0.408512,0.863414,0.296032,0.408512,0.863414,0.296032, + 0.408570,0.863370,0.296080,0.408570,0.863370,0.296080,0.408570,0.863370,0.296080,0.408570,0.863370,0.296080, + -0.408581,-0.863355,-0.296108,-0.408581,-0.863355,-0.296108,-0.408581,-0.863355,-0.296108,-0.408581,-0.863355,-0.296108, + -0.408556,-0.863364,-0.296116,-0.408556,-0.863364,-0.296116,-0.408556,-0.863364,-0.296116,-0.408556,-0.863364,-0.296116, + 0.333658,-0.439519,-0.833964,0.333658,-0.439519,-0.833964,0.333658,-0.439519,-0.833964,0.333658,-0.439519,-0.833964, + 0.417663,-0.828133,0.373835,0.417663,-0.828133,0.373835,0.417663,-0.828133,0.373835,0.997116,-0.041724,0.063394, + 0.997116,-0.041724,0.063394,0.997116,-0.041724,0.063394,0.599675,0.638559,0.482320,0.599675,0.638559,0.482320, + 0.599675,0.638559,0.482320,0.366439,-0.063343,0.928283,0.366439,-0.063343,0.928283,0.366439,-0.063343,0.928283, + -0.000910,0.404561,0.914510,-0.000910,0.404561,0.914510,-0.000910,0.404561,0.914510,-0.000910,0.404561,0.914510, + -0.272687,0.852044,0.446836,-0.272687,0.852044,0.446836,-0.272687,0.852044,0.446836,-0.272687,0.852044,0.446836, + 0.928418,0.280123,-0.244070,0.928418,0.280123,-0.244070,0.928418,0.280123,-0.244070,0.928418,0.280123,-0.244070, + 0.665357,-0.166423,-0.727738,0.665357,-0.166423,-0.727738,0.665357,-0.166423,-0.727738,0.665357,-0.166423,-0.727738, + 0.797309,0.182060,-0.575459,0.797309,0.182060,-0.575459,0.797309,0.182060,-0.575459,0.797309,0.182060,-0.575459, + -0.052595,0.997409,-0.049089,-0.052595,0.997409,-0.049089,-0.052595,0.997409,-0.049089,-0.052595,0.997409,-0.049089, + -0.969648,-0.163563,0.181742,-0.969648,-0.163563,0.181742,-0.969648,-0.163563,0.181742,-0.969648,-0.163563,0.181742, + -0.308577,-0.080304,0.947803,-0.308577,-0.080304,0.947803,-0.308577,-0.080304,0.947803,0.198580,-0.574730,0.793884, + 0.198580,-0.574730,0.793884,0.198580,-0.574730,0.793884,0.731991,0.121489,0.670395,0.731991,0.121489,0.670395, + 0.731991,0.121489,0.670395,-0.082774,0.630333,0.771900,-0.082774,0.630333,0.771900,-0.082774,0.630333,0.771900, + 0.154126,0.614060,-0.774064,0.154126,0.614060,-0.774064,0.154126,0.614060,-0.774064,0.154126,0.614060,-0.774064, + -0.701812,-0.356011,0.617022,-0.701812,-0.356011,0.617022,-0.701812,-0.356011,0.617022,-0.701812,-0.356011,0.617022, + -0.935718,0.243873,-0.254866,-0.935718,0.243873,-0.254866,-0.935718,0.243873,-0.254866,-0.935718,0.243873,-0.254866, + 0.188952,-0.900957,0.390606,0.188952,-0.900957,0.390606,0.188952,-0.900957,0.390606,0.188952,-0.900957,0.390606, + -0.737872,0.205094,0.643025,-0.737872,0.205094,0.643025,-0.737872,0.205094,0.643025,-0.737872,0.205094,0.643025, + 0.433107,-0.893601,-0.117882,0.433107,-0.893601,-0.117882,0.433107,-0.893601,-0.117882,0.433107,-0.893601,-0.117882, + 0.068832,-0.130769,-0.989021,0.068832,-0.130769,-0.989021,0.068832,-0.130769,-0.989021,0.068832,-0.130769,-0.989021, + -0.126642,0.987337,-0.095533,-0.126642,0.987337,-0.095533,-0.126642,0.987337,-0.095533,-0.126642,0.987337,-0.095533, + -0.934836,-0.201742,0.292202,-0.934836,-0.201742,0.292202,-0.934836,-0.201742,0.292202,-0.934836,-0.201742,0.292202, + 0.346924,-0.932361,0.101715,0.346924,-0.932361,0.101715,0.346924,-0.932361,0.101715,0.346924,-0.932361,0.101715, + -0.989739,-0.141502,0.019844,-0.989739,-0.141502,0.019844,-0.989739,-0.141502,0.019844,-0.558389,-0.798530,-0.224836, + -0.558389,-0.798530,-0.224836,-0.558389,-0.798530,-0.224836,-0.115075,-0.297195,-0.947857,-0.115075,-0.297195,-0.947857, + -0.115075,-0.297195,-0.947857,-0.722117,0.272302,-0.635924,-0.722117,0.272302,-0.635924,-0.722117,0.272302,-0.635924, + -0.025176,0.984439,-0.173916,-0.025176,0.984439,-0.173916,-0.025176,0.984439,-0.173916,-0.025176,0.984439,-0.173916, + -0.634003,-0.000241,0.773331,-0.634003,-0.000241,0.773331,-0.634003,-0.000241,0.773331,-0.634003,-0.000241,0.773331, + 0.471283,-0.726006,0.500807,0.471283,-0.726006,0.500807,0.471283,-0.726006,0.500807,0.471283,-0.726006,0.500807, + 0.377849,0.151056,0.913462,0.377849,0.151056,0.913462,0.377849,0.151056,0.913462,-0.010119,0.998790,0.048123, + -0.010119,0.998790,0.048123,-0.010119,0.998790,0.048123,0.499074,-0.781207,0.375021,0.499074,-0.781207,0.375021, + 0.499074,-0.781207,0.375021,0.044999,-0.127073,-0.990872,0.044999,-0.127073,-0.990872,0.044999,-0.127073,-0.990872, + -0.459570,-0.850061,-0.257276,-0.459570,-0.850061,-0.257276,-0.459570,-0.850061,-0.257276,-0.459570,-0.850061,-0.257276, + -0.748939,-0.094631,0.655847,-0.748939,-0.094631,0.655847,-0.748939,-0.094631,0.655847,-0.748939,-0.094631,0.655847, + 0.322966,-0.059098,-0.944564,0.322966,-0.059098,-0.944564,0.322966,-0.059098,-0.944564,0.322966,-0.059098,-0.944564, + 0.009984,0.999950,-0.000380,0.009984,0.999950,-0.000380,0.009984,0.999950,-0.000380,0.009984,0.999950,-0.000380, + 0.445875,-0.452487,0.772302,0.445875,-0.452487,0.772302,0.445875,-0.452487,0.772302,0.445875,-0.452487,0.772302, + -0.032055,0.992205,0.120423,-0.032055,0.992205,0.120423,-0.032055,0.992205,0.120423,-0.032055,0.992205,0.120423, + 0.817653,0.564045,0.115308,0.817653,0.564045,0.115308,0.817653,0.564045,0.115308,0.817653,0.564045,0.115308, + 0.951670,-0.028970,-0.305753,0.951670,-0.028970,-0.305753,0.951670,-0.028970,-0.305753,0.951670,-0.028970,-0.305753, + -0.408081,0.364301,-0.837111,-0.408081,0.364301,-0.837111,-0.408081,0.364301,-0.837111,0.698283,-0.296166,0.651680, + 0.698283,-0.296166,0.651680,0.698283,-0.296166,0.651680,0.698283,-0.296166,0.651680,0.900809,-0.185487,-0.392603, + 0.900809,-0.185487,-0.392603,0.900809,-0.185487,-0.392603,0.143875,0.517980,0.843206,0.143875,0.517980,0.843206, + 0.143875,0.517980,0.843206,0.143875,0.517980,0.843206,-0.625081,0.725922,0.286898,-0.625081,0.725922,0.286898, + -0.625081,0.725922,0.286898,-0.625081,0.725922,0.286898,0.375141,-0.258581,-0.890171,0.375141,-0.258581,-0.890171, + 0.375141,-0.258581,-0.890171,0.754188,-0.523399,0.396553,0.754188,-0.523399,0.396553,0.754188,-0.523399,0.396553, + -0.325293,0.511589,0.795274,-0.325293,0.511589,0.795274,-0.325293,0.511589,0.795274,-0.325293,0.511589,0.795274, + 0.516227,0.118094,0.848271,0.516227,0.118094,0.848271,0.516227,0.118094,0.848271,0.516227,0.118094,0.848271, + 0.664369,-0.623685,0.411863,0.664369,-0.623685,0.411863,0.664369,-0.623685,0.411863,0.664369,-0.623685,0.411863, + -0.240331,-0.367245,0.898539,-0.240331,-0.367245,0.898539,-0.240331,-0.367245,0.898539,-0.524397,-0.119214,0.843087, + -0.524397,-0.119214,0.843087,-0.524397,-0.119214,0.843087,-0.118838,-0.702806,0.701386,-0.118838,-0.702806,0.701386, + -0.118838,-0.702806,0.701386,-0.045099,0.925316,0.376505,-0.045099,0.925316,0.376505,-0.045099,0.925316,0.376505, + -0.045099,0.925316,0.376505,0.635259,0.339460,0.693695,0.635259,0.339460,0.693695,0.635259,0.339460,0.693695, + 0.635259,0.339460,0.693695,0.219363,-0.790250,-0.572175,0.219363,-0.790250,-0.572175,0.219363,-0.790250,-0.572175, + 0.496150,0.501448,-0.708791,0.496150,0.501448,-0.708791,0.496150,0.501448,-0.708791,0.220597,-0.807262,-0.547416, + 0.220597,-0.807262,-0.547416,0.220597,-0.807262,-0.547416,-0.372554,-0.693542,-0.616606,-0.372554,-0.693542,-0.616606, + -0.372554,-0.693542,-0.616606,-0.372554,-0.693542,-0.616606,0.331603,-0.526845,0.782608,0.331603,-0.526845,0.782608, + 0.331603,-0.526845,0.782608,-0.432137,0.537952,-0.723785,-0.432137,0.537952,-0.723785,-0.432137,0.537952,-0.723785, + 0.736795,0.527135,-0.423392,0.736795,0.527135,-0.423392,0.736795,0.527135,-0.423392,0.736795,0.527135,-0.423392, + -0.919781,0.320885,-0.225911,-0.919781,0.320885,-0.225911,-0.919781,0.320885,-0.225911,-0.919781,0.320885,-0.225911, + -0.587759,-0.420237,0.691332,-0.587759,-0.420237,0.691332,-0.587759,-0.420237,0.691332,-0.587759,-0.420237,0.691332, + -0.497064,-0.370538,0.784620,-0.497064,-0.370538,0.784620,-0.497064,-0.370538,0.784620,-0.944274,0.290565,0.154656, + -0.944274,0.290565,0.154656,-0.944274,0.290565,0.154656,-0.944274,0.290565,0.154656,0.989669,0.143281,-0.005086, + 0.989669,0.143281,-0.005086,0.989669,0.143281,-0.005086,0.989669,0.143281,-0.005086,0.382731,-0.473721,0.793162, + 0.382731,-0.473721,0.793162,0.382731,-0.473721,0.793162,0.382731,-0.473721,0.793162,-0.177915,0.461830,-0.868941, + -0.177915,0.461830,-0.868941,-0.177915,0.461830,-0.868941,-0.177915,0.461830,-0.868941,0.098990,0.850153,-0.517146, + 0.098990,0.850153,-0.517146,0.098990,0.850153,-0.517146,0.627456,0.778572,0.011103,0.627456,0.778572,0.011103, + 0.627456,0.778572,0.011103,0.181878,0.972790,-0.143530,0.181878,0.972790,-0.143530,0.181878,0.972790,-0.143530, + 0.252893,0.960967,0.112191,0.252893,0.960967,0.112191,0.252893,0.960967,0.112191,-0.926950,-0.069688,0.368657, + -0.926950,-0.069688,0.368657,-0.926950,-0.069688,0.368657,-0.926950,-0.069688,0.368657,-0.242765,-0.179468,0.953340, + -0.242765,-0.179468,0.953340,-0.242765,-0.179468,0.953340,-0.242765,-0.179468,0.953340,-0.242765,-0.179468,0.953340, + 0.951785,0.282075,0.120576,0.951785,0.282075,0.120576,0.951785,0.282075,0.120576,0.951785,0.282075,0.120576, + -0.217443,-0.597403,0.771900,-0.217443,-0.597403,0.771900,-0.217443,-0.597403,0.771900,0.492586,-0.210216,0.844493, + 0.492586,-0.210216,0.844493,0.492586,-0.210216,0.844493,0.332407,-0.624481,0.706773,0.332407,-0.624481,0.706773, + 0.332407,-0.624481,0.706773,-0.261768,0.252115,-0.931620,-0.261768,0.252115,-0.931620,-0.261768,0.252115,-0.931620, + -0.261768,0.252115,-0.931620,0.510272,-0.340173,-0.789876,0.510272,-0.340173,-0.789876,0.510272,-0.340173,-0.789876, + 0.510272,-0.340173,-0.789876,0.549289,0.111544,0.828154,0.549289,0.111544,0.828154,0.549289,0.111544,0.828154, + 0.549289,0.111544,0.828154,-0.379542,0.632374,0.675316,-0.379542,0.632374,0.675316,-0.379542,0.632374,0.675316, + -0.379542,0.632374,0.675316,0.236203,0.971680,0.006720,0.236203,0.971680,0.006720,0.236203,0.971680,0.006720, + 0.236203,0.971680,0.006720,0.987946,0.151955,0.029538,0.987946,0.151955,0.029538,0.987946,0.151955,0.029538, + 0.987946,0.151955,0.029538,0.706322,-0.242981,0.664883,0.706322,-0.242981,0.664883,0.706322,-0.242981,0.664883, + 0.706322,-0.242981,0.664883,0.355048,-0.620734,-0.699021,0.355048,-0.620734,-0.699021,0.355048,-0.620734,-0.699021, + 0.355048,-0.620734,-0.699021,0.527727,-0.336071,0.780103,0.527727,-0.336071,0.780103,0.527727,-0.336071,0.780103, + 0.136951,0.508386,0.850169,0.136951,0.508386,0.850169,0.136951,0.508386,0.850169,0.136951,0.508386,0.850169, + -0.968015,0.076340,0.238998,-0.968015,0.076340,0.238998,-0.968015,0.076340,0.238998,0.586815,-0.715984,-0.378173, + 0.586815,-0.715984,-0.378173,0.586815,-0.715984,-0.378173,-0.075976,-0.691677,0.718199,-0.075976,-0.691677,0.718199, + -0.075976,-0.691677,0.718199,-0.075976,-0.691677,0.718199,-0.493084,-0.584578,0.644311,-0.493084,-0.584578,0.644311, + -0.493084,-0.584578,0.644311,-0.493084,-0.584578,0.644311,0.542383,-0.204955,0.814748,0.542383,-0.204955,0.814748, + 0.542383,-0.204955,0.814748,0.542383,-0.204955,0.814748,-0.712416,-0.204941,0.671165,-0.712416,-0.204941,0.671165, + -0.712416,-0.204941,0.671165,-0.712416,-0.204941,0.671165,0.745510,0.665210,-0.041371,0.745510,0.665210,-0.041371, + 0.745510,0.665210,-0.041371,0.918914,0.363974,-0.152051,0.918914,0.363974,-0.152051,0.918914,0.363974,-0.152051, + 0.918914,0.363974,-0.152051,0.443999,0.608422,-0.657790,0.443999,0.608422,-0.657790,0.443999,0.608422,-0.657790, + 0.443999,0.608422,-0.657790,-0.648979,0.645304,-0.403000,-0.648979,0.645304,-0.403000,-0.648979,0.645304,-0.403000, + 0.388336,0.882740,-0.264508,0.388336,0.882740,-0.264508,0.388336,0.882740,-0.264508,0.295761,0.895248,-0.333252, + 0.295761,0.895248,-0.333252,0.295761,0.895248,-0.333252,0.295761,0.895248,-0.333252,0.151825,0.924928,0.348508, + 0.151825,0.924928,0.348508,0.151825,0.924928,0.348508,-0.339688,0.860934,0.378688,-0.339688,0.860934,0.378688, + -0.339688,0.860934,0.378688,-0.090883,0.891325,0.444161,-0.090883,0.891325,0.444161,-0.090883,0.891325,0.444161, + -0.782475,0.361390,-0.507080,-0.782475,0.361390,-0.507080,-0.782475,0.361390,-0.507080,-0.782475,0.361390,-0.507080, + 0.682094,0.186996,0.706952,0.682094,0.186996,0.706952,0.682094,0.186996,0.706952,0.682094,0.186996,0.706952, + -0.987408,0.158139,0.004173,-0.987408,0.158139,0.004173,-0.987408,0.158139,0.004173,-0.987408,0.158139,0.004173, + -0.599557,0.555369,0.576278,-0.599557,0.555369,0.576278,-0.599557,0.555369,0.576278,-0.599557,0.555369,0.576278, + 0.358191,0.522926,0.773465,0.358191,0.522926,0.773465,0.358191,0.522926,0.773465,0.358191,0.522926,0.773465, + -0.393998,0.728343,-0.560608,-0.393998,0.728343,-0.560608,-0.393998,0.728343,-0.560608,-0.393998,0.728343,-0.560608, + 0.076506,-0.218634,0.972803,0.076506,-0.218634,0.972803,0.076506,-0.218634,0.972803,0.076506,-0.218634,0.972803, + -0.145090,-0.179275,0.973041,-0.145090,-0.179275,0.973041,-0.145090,-0.179275,0.973041,-0.145090,-0.179275,0.973041, + 0.627700,0.503864,-0.593393,0.627700,0.503864,-0.593393,0.627700,0.503864,-0.593393,0.627700,0.503864,-0.593393, + -0.498438,0.838400,0.220558,-0.498438,0.838400,0.220558,-0.498438,0.838400,0.220558,-0.498438,0.838400,0.220558, + 0.642888,0.748946,0.160546,0.642888,0.748946,0.160546,0.642888,0.748946,0.160546,0.642888,0.748946,0.160546, + -0.987302,0.124050,0.099224,-0.987302,0.124050,0.099224,-0.987302,0.124050,0.099224,-0.987302,0.124050,0.099224, + -0.873844,-0.379455,0.303990,-0.873844,-0.379455,0.303990,-0.873844,-0.379455,0.303990,0.792567,0.557338,-0.247411, + 0.792567,0.557338,-0.247411,0.792567,0.557338,-0.247411,-0.519861,0.853234,0.041681,-0.519861,0.853234,0.041681, + -0.519861,0.853234,0.041681,0.307193,0.733889,-0.605838,0.307193,0.733889,-0.605838,0.307193,0.733889,-0.605838, + 0.307193,0.733889,-0.605838,0.731019,-0.553790,-0.398658,0.731019,-0.553790,-0.398658,0.731019,-0.553790,-0.398658, + 0.319996,-0.946001,-0.051818,0.319996,-0.946001,-0.051818,0.319996,-0.946001,-0.051818,0.319996,-0.946001,-0.051818, + -0.815090,0.564891,0.128554,-0.815090,0.564891,0.128554,-0.815090,0.564891,0.128554,-0.815090,0.564891,0.128554, + -0.291837,-0.746800,-0.597595,-0.291837,-0.746800,-0.597595,-0.291837,-0.746800,-0.597595,-0.291837,-0.746800,-0.597595, + 0.755648,-0.591588,0.281104,0.755648,-0.591588,0.281104,0.755648,-0.591588,0.281104,0.755648,-0.591588,0.281104, + 0.935671,-0.192084,0.296012,0.935671,-0.192084,0.296012,0.935671,-0.192084,0.296012,0.021549,-0.650193,-0.759464, + 0.021549,-0.650193,-0.759464,0.021549,-0.650193,-0.759464,0.021549,-0.650193,-0.759464,0.779862,-0.148443,0.608096, + 0.779862,-0.148443,0.608096,0.779862,-0.148443,0.608096,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, + 0.000000,0.000000,1.000000,0.578641,-0.723206,-0.377025,0.578641,-0.723206,-0.377025,0.578641,-0.723206,-0.377025, + 0.757601,-0.524058,0.389107,0.757601,-0.524058,0.389107,0.757601,-0.524058,0.389107,-0.881116,0.174190,-0.439651, + -0.881116,0.174190,-0.439651,-0.881116,0.174190,-0.439651,-0.881116,0.174190,-0.439651,0.928548,-0.289301,-0.232604, + 0.928548,-0.289301,-0.232604,0.928548,-0.289301,-0.232604,0.268387,-0.004915,-0.963299,0.268387,-0.004915,-0.963299, + 0.268387,-0.004915,-0.963299,-0.446332,-0.493254,-0.746651,-0.446332,-0.493254,-0.746651,-0.446332,-0.493254,-0.746651, + 0.220285,-0.899558,-0.377186,0.220285,-0.899558,-0.377186,0.220285,-0.899558,-0.377186,0.933603,0.113931,0.339715, + 0.933603,0.113931,0.339715,0.933603,0.113931,0.339715,0.933603,0.113931,0.339715,0.736145,-0.655045,0.170315, + 0.736145,-0.655045,0.170315,0.736145,-0.655045,0.170315,0.736145,-0.655045,0.170315,0.935608,-0.335403,0.110195, + 0.935608,-0.335403,0.110195,0.935608,-0.335403,0.110195,0.935608,-0.335403,0.110195,0.190871,0.950967,-0.243372, + 0.190871,0.950967,-0.243372,0.190871,0.950967,-0.243372,0.190871,0.950967,-0.243372,0.927385,-0.350110,-0.131836, + 0.927385,-0.350110,-0.131836,0.927385,-0.350110,-0.131836,0.927385,-0.350110,-0.131836,-0.063323,-0.934141,-0.351241, + -0.063323,-0.934141,-0.351241,-0.063323,-0.934141,-0.351241,-0.063323,-0.934141,-0.351241,-0.889616,0.327582,-0.318234, + -0.889616,0.327582,-0.318234,-0.889616,0.327582,-0.318234,-0.889616,0.327582,-0.318234,-0.709190,0.027110,0.704496, + -0.709190,0.027110,0.704496,-0.709190,0.027110,0.704496,-0.197957,0.486683,0.850854,-0.197957,0.486683,0.850854, + -0.197957,0.486683,0.850854,0.327499,-0.222842,0.918197,0.327499,-0.222842,0.918197,0.327499,-0.222842,0.918197, + -0.434974,-0.691624,0.576588,-0.434974,-0.691624,0.576588,-0.434974,-0.691624,0.576588,-0.225893,0.967893,-0.110254, + -0.225893,0.967893,-0.110254,-0.225893,0.967893,-0.110254,-0.225893,0.967893,-0.110254,-0.312302,-0.936157,-0.161484, + -0.312302,-0.936157,-0.161484,-0.312302,-0.936157,-0.161484,-0.312302,-0.936157,-0.161484,-0.941939,-0.031416,-0.334311, + -0.941939,-0.031416,-0.334311,-0.941939,-0.031416,-0.334311,-0.941939,-0.031416,-0.334311,0.888437,-0.376563,0.262449, + 0.888437,-0.376563,0.262449,0.888437,-0.376563,0.262449,0.888437,-0.376563,0.262449,-0.387171,-0.893098,0.229074, + -0.387171,-0.893098,0.229074,-0.387171,-0.893098,0.229074,-0.387171,-0.893098,0.229074,0.459906,0.809065,0.365924, + 0.459906,0.809065,0.365924,0.459906,0.809065,0.365924,0.459906,0.809065,0.365924,0.383429,-0.003298,-0.923565, + 0.383429,-0.003298,-0.923565,0.383429,-0.003298,-0.923565,0.383429,-0.003298,-0.923565,-0.374510,-0.921869,-0.099496, + -0.374510,-0.921869,-0.099496,-0.374510,-0.921869,-0.099496,-0.374510,-0.921869,-0.099496,-0.878777,0.476962,-0.016067, + -0.878777,0.476962,-0.016067,-0.878777,0.476962,-0.016067,-0.878777,0.476962,-0.016067,0.557896,0.811400,0.174306, + 0.557896,0.811400,0.174306,0.557896,0.811400,0.174306,0.557896,0.811400,0.174306,-0.314195,-0.395397,0.863101, + -0.314195,-0.395397,0.863101,-0.314195,-0.395397,0.863101,0.356627,0.076827,0.931083,0.356627,0.076827,0.931083, + 0.356627,0.076827,0.931083,-0.089005,0.851589,0.516598,-0.089005,0.851589,0.516598,-0.089005,0.851589,0.516598, + -0.743607,0.258615,0.616576,-0.743607,0.258615,0.616576,-0.743607,0.258615,0.616576,-0.904364,-0.039879,-0.424894, + -0.904364,-0.039879,-0.424894,-0.904364,-0.039879,-0.424894,-0.904364,-0.039879,-0.424894,-0.032438,-0.967243,0.251772, + -0.032438,-0.967243,0.251772,-0.032438,-0.967243,0.251772,-0.032438,-0.967243,0.251772,0.969257,-0.210799,-0.126901, + 0.969257,-0.210799,-0.126901,0.969257,-0.210799,-0.126901,0.969257,-0.210799,-0.126901,0.039909,-0.138691,0.989531, + 0.039909,-0.138691,0.989531,0.039909,-0.138691,0.989531,-0.312489,-0.947089,0.073295,-0.312489,-0.947089,0.073295, + -0.312489,-0.947089,0.073295,0.574969,0.658046,0.486196,0.574969,0.658046,0.486196,0.574969,0.658046,0.486196, + 0.361349,-0.006557,-0.932407,0.361349,-0.006557,-0.932407,0.361349,-0.006557,-0.932407,0.757572,0.269742,0.594410, + 0.757572,0.269742,0.594410,0.757572,0.269742,0.594410,0.757572,0.269742,0.594410,-0.018441,-0.690761,0.722848, + -0.018441,-0.690761,0.722848,-0.018441,-0.690761,0.722848,-0.018441,-0.690761,0.722848,0.004026,0.955142,-0.296121, + 0.004026,0.955142,-0.296121,0.004026,0.955142,-0.296121,0.004026,0.955142,-0.296121,-0.958836,-0.119302,-0.257684, + -0.958836,-0.119302,-0.257684,-0.958836,-0.119302,-0.257684,-0.958836,-0.119302,-0.257684,0.716582,-0.680588,0.152676, + 0.716582,-0.680588,0.152676,0.716582,-0.680588,0.152676,0.716582,-0.680588,0.152676,-0.485262,0.801362,-0.349771, + -0.485262,0.801362,-0.349771,-0.485262,0.801362,-0.349771,-0.485262,0.801362,-0.349771,-0.224933,0.125011,-0.966321, + -0.224933,0.125011,-0.966321,-0.224933,0.125011,-0.966321,-0.224933,0.125011,-0.966321,0.399432,-0.261518,-0.878671, + 0.399432,-0.261518,-0.878671,0.399432,-0.261518,-0.878671,0.399432,-0.261518,-0.878671,-0.409130,0.572796,-0.710294, + -0.409130,0.572796,-0.710294,-0.409130,0.572796,-0.710294,0.393030,-0.890886,0.227705,0.393030,-0.890886,0.227705, + 0.393030,-0.890886,0.227705,0.393030,-0.890886,0.227705,0.925540,0.378027,-0.021729,0.925540,0.378027,-0.021729, + 0.925540,0.378027,-0.021729,-0.462266,-0.805657,-0.370441,-0.462266,-0.805657,-0.370441,-0.462266,-0.805657,-0.370441, + -0.462266,-0.805657,-0.370441,-0.926853,0.034475,-0.373837,-0.926853,0.034475,-0.373837,-0.926853,0.034475,-0.373837, + -0.926853,0.034475,-0.373837,0.389549,0.907355,-0.157984,0.389549,0.907355,-0.157984,0.389549,0.907355,-0.157984, + -0.084627,-0.876620,-0.473682,-0.084627,-0.876620,-0.473682,-0.084627,-0.876620,-0.473682,-0.959999,0.244311,0.136800, + -0.959999,0.244311,0.136800,-0.959999,0.244311,0.136800,-0.959999,0.244311,0.136800,-0.767035,-0.422284,-0.483046, + -0.767035,-0.422284,-0.483046,-0.767035,-0.422284,-0.483046,-0.767035,-0.422284,-0.483046,-0.071362,-0.933497,-0.351413, + -0.071362,-0.933497,-0.351413,-0.071362,-0.933497,-0.351413,-0.071362,-0.933497,-0.351413,-0.717086,-0.568009,0.403923, + -0.717086,-0.568009,0.403923,-0.717086,-0.568009,0.403923,-0.790683,-0.231351,0.566830,-0.790683,-0.231351,0.566830, + -0.790683,-0.231351,0.566830,-0.396514,-0.819716,0.413330,-0.396514,-0.819716,0.413330,-0.396514,-0.819716,0.413330, + -0.697518,0.650587,-0.300341,-0.697518,0.650587,-0.300341,-0.697518,0.650587,-0.300341,-0.697518,0.650587,-0.300341, + -0.694052,-0.220312,-0.685386,-0.694052,-0.220312,-0.685386,-0.694052,-0.220312,-0.685386,-0.694052,-0.220312,-0.685386, + 0.846809,-0.526031,0.078773,0.846809,-0.526031,0.078773,0.846809,-0.526031,0.078773,0.521013,0.511922,-0.682994, + 0.521013,0.511922,-0.682994,0.521013,0.511922,-0.682994,0.830518,-0.550416,0.085334,0.830518,-0.550416,0.085334, + 0.830518,-0.550416,0.085334,-0.345379,-0.766192,0.541907,-0.345379,-0.766192,0.541907,-0.345379,-0.766192,0.541907, + -0.345379,-0.766192,0.541907,0.521576,-0.833232,0.183532,0.521576,-0.833232,0.183532,0.521576,-0.833232,0.183532, + -0.952623,0.114273,0.281870,-0.952623,0.114273,0.281870,-0.952623,0.114273,0.281870,0.845269,-0.016566,-0.534084, + 0.845269,-0.016566,-0.534084,0.845269,-0.016566,-0.534084,0.845269,-0.016566,-0.534084,-0.897456,0.041074,-0.439187, + -0.897456,0.041074,-0.439187,-0.897456,0.041074,-0.439187,-0.897456,0.041074,-0.439187,-0.170010,-0.985429,0.005060, + -0.170010,-0.985429,0.005060,-0.170010,-0.985429,0.005060,-0.170010,-0.985429,0.005060,-0.347134,-0.937389,-0.028272, + -0.347134,-0.937389,-0.028272,-0.347134,-0.937389,-0.028272,-0.775193,-0.204224,-0.597804,-0.775193,-0.204224,-0.597804, + -0.775193,-0.204224,-0.597804,-0.775193,-0.204224,-0.597804,0.865341,0.453905,0.212497,0.865341,0.453905,0.212497, + 0.865341,0.453905,0.212497,0.865341,0.453905,0.212497,0.253185,0.963176,0.090490,0.253185,0.963176,0.090490, + 0.253185,0.963176,0.090490,0.253185,0.963176,0.090490,-0.282280,-0.934439,-0.217122,-0.282280,-0.934439,-0.217122, + -0.282280,-0.934439,-0.217122,-0.282280,-0.934439,-0.217122,0.228046,0.705741,-0.670764,0.228046,0.705741,-0.670764, + 0.228046,0.705741,-0.670764,0.364583,0.635578,-0.680529,0.364583,0.635578,-0.680529,0.364583,0.635578,-0.680529, + 0.181167,0.654346,-0.734172,0.181167,0.654346,-0.734172,0.181167,0.654346,-0.734172,0.273235,0.647553,-0.711349, + 0.273235,0.647553,-0.711349,0.273235,0.647553,-0.711349,-0.926263,-0.349133,0.141929,-0.926263,-0.349133,0.141929, + -0.926263,-0.349133,0.141929,-0.926263,-0.349133,0.141929,-0.194700,-0.549356,0.812589,-0.194700,-0.549356,0.812589, + -0.194700,-0.549356,0.812589,-0.194700,-0.549356,0.812589,-0.194700,-0.549356,0.812589,0.999547,-0.021438,-0.021129, + 0.999547,-0.021438,-0.021129,0.999547,-0.021438,-0.021129,0.999547,-0.021438,-0.021129,0.293280,-0.168063,0.941138, + 0.293280,-0.168063,0.941138,0.293280,-0.168063,0.941138,0.484057,-0.151974,0.861738,0.484057,-0.151974,0.861738, + 0.484057,-0.151974,0.861738,0.313295,-0.161151,0.935883,0.313295,-0.161151,0.935883,0.313295,-0.161151,0.935883, + 0.734058,0.671459,0.101497,0.734058,0.671459,0.101497,0.734058,0.671459,0.101497,0.734058,0.671459,0.101497, + 0.911786,-0.171098,-0.373326,0.911786,-0.171098,-0.373326,0.911786,-0.171098,-0.373326,0.911786,-0.171098,-0.373326, + -0.742346,-0.432358,-0.511849,-0.742346,-0.432358,-0.511849,-0.742346,-0.432358,-0.511849,-0.742346,-0.432358,-0.511849, + -0.900791,0.412887,0.134536,-0.900791,0.412887,0.134536,-0.900791,0.412887,0.134536,-0.900791,0.412887,0.134536, + 0.525795,-0.684010,-0.505638,0.525795,-0.684010,-0.505638,0.525795,-0.684010,-0.505638,0.525795,-0.684010,-0.505638, + 0.991432,-0.051763,-0.119926,0.991432,-0.051763,-0.119926,0.991432,-0.051763,-0.119926,0.991432,-0.051763,-0.119926, + 0.849505,-0.411950,0.329602,0.849505,-0.411950,0.329602,0.849505,-0.411950,0.329602,0.849505,-0.411950,0.329602, + 0.037364,-0.637290,0.769718,0.037364,-0.637290,0.769718,0.037364,-0.637290,0.769718,0.037364,-0.637290,0.769718, + 0.786432,-0.617409,0.018190,0.786432,-0.617409,0.018190,0.786432,-0.617409,0.018190,-0.957303,0.047638,-0.285135, + -0.957303,0.047638,-0.285135,-0.957303,0.047638,-0.285135,-0.957303,0.047638,-0.285135,-0.915006,-0.379957,0.135635, + -0.915006,-0.379957,0.135635,-0.915006,-0.379957,0.135635,0.560878,0.584308,0.586515,0.560878,0.584308,0.586515, + 0.560878,0.584308,0.586515,0.404870,-0.546950,0.732753,0.404870,-0.546950,0.732753,0.404870,-0.546950,0.732753, + 0.404870,-0.546950,0.732753,-0.430275,-0.558102,0.709496,-0.430275,-0.558102,0.709496,-0.430275,-0.558102,0.709496, + -0.430275,-0.558102,0.709496,0.565202,-0.349896,0.747074,0.565202,-0.349896,0.747074,0.565202,-0.349896,0.747074, + 0.565202,-0.349896,0.747074,-0.656611,-0.559836,0.505417,-0.656611,-0.559836,0.505417,-0.656611,-0.559836,0.505417, + -0.656611,-0.559836,0.505417,-0.992181,-0.119449,-0.036177,-0.992181,-0.119449,-0.036177,-0.992181,-0.119449,-0.036177, + 0.960693,0.009739,-0.277443,0.960693,0.009739,-0.277443,0.960693,0.009739,-0.277443,0.960693,0.009739,-0.277443, + 0.428196,0.601780,-0.674173,0.428196,0.601780,-0.674173,0.428196,0.601780,-0.674173,0.428196,0.601780,-0.674173, + -0.525692,0.361436,-0.770072,-0.525692,0.361436,-0.770072,-0.525692,0.361436,-0.770072,0.051435,-0.936418,-0.347096, + 0.051435,-0.936418,-0.347096,0.051435,-0.936418,-0.347096,0.471257,-0.220187,-0.854069,0.471257,-0.220187,-0.854069, + 0.471257,-0.220187,-0.854069,0.471257,-0.220187,-0.854069,0.237885,0.523772,-0.817969,0.237885,0.523772,-0.817969, + 0.237885,0.523772,-0.817969,0.309672,-0.638843,-0.704260,0.309672,-0.638843,-0.704260,0.309672,-0.638843,-0.704260, + -0.277839,-0.274137,-0.920681,-0.277839,-0.274137,-0.920681,-0.277839,-0.274137,-0.920681,0.376910,-0.597421,-0.707833, + 0.376910,-0.597421,-0.707833,0.376910,-0.597421,-0.707833,-0.719724,-0.037432,-0.693250,-0.719724,-0.037432,-0.693250, + -0.719724,-0.037432,-0.693250,-0.719724,-0.037432,-0.693250,0.933876,-0.195449,0.299459,0.933876,-0.195449,0.299459, + 0.933876,-0.195449,0.299459,0.933876,-0.195449,0.299459,-0.907518,-0.349565,-0.232842,-0.907518,-0.349565,-0.232842, + -0.907518,-0.349565,-0.232842,-0.907518,-0.349565,-0.232842,-0.366875,-0.923255,-0.114031,-0.366875,-0.923255,-0.114031, + -0.366875,-0.923255,-0.114031,-0.366875,-0.923255,-0.114031,0.567785,-0.809096,0.151604,0.567785,-0.809096,0.151604, + 0.567785,-0.809096,0.151604,0.567785,-0.809096,0.151604,-0.260143,-0.122397,-0.957781,-0.260143,-0.122397,-0.957781, + -0.260143,-0.122397,-0.957781,-0.260143,-0.122397,-0.957781,0.133093,-0.578268,0.804917,0.133093,-0.578268,0.804917, + 0.133093,-0.578268,0.804917,0.133093,-0.578268,0.804917,-0.069658,-0.658571,0.749288,-0.069658,-0.658571,0.749288, + -0.069658,-0.658571,0.749288,-0.069658,-0.658571,0.749288,0.660096,0.297777,-0.689639,0.660096,0.297777,-0.689639, + 0.660096,0.297777,-0.689639,0.660096,0.297777,-0.689639,-0.028229,-0.847604,-0.529878,-0.028229,-0.847604,-0.529878, + -0.028229,-0.847604,-0.529878,-0.028229,-0.847604,-0.529878,0.873066,0.019311,-0.487219,0.873066,0.019311,-0.487219, + 0.873066,0.019311,-0.487219,0.873066,0.019311,-0.487219,-0.946731,-0.285961,-0.148076,-0.946731,-0.285961,-0.148076, + -0.946731,-0.285961,-0.148076,-0.946731,-0.285961,-0.148076,-0.869080,0.483471,-0.104666,-0.869080,0.483471,-0.104666, + -0.869080,0.483471,-0.104666,0.760906,-0.648822,0.007168,0.760906,-0.648822,0.007168,0.760906,-0.648822,0.007168, + -0.961893,-0.020394,-0.272666,-0.961893,-0.020394,-0.272666,-0.961893,-0.020394,-0.272666,-0.474292,0.742489,-0.473030, + -0.474292,0.742489,-0.473030,-0.474292,0.742489,-0.473030,-0.474292,0.742489,-0.473030,0.755767,0.640886,-0.134466, + 0.755767,0.640886,-0.134466,0.755767,0.640886,-0.134466,0.156319,0.981784,0.108001,0.156319,0.981784,0.108001, + 0.156319,0.981784,0.108001,0.156319,0.981784,0.108001,-0.550891,-0.775357,-0.308774,-0.550891,-0.775357,-0.308774, + -0.550891,-0.775357,-0.308774,-0.550891,-0.775357,-0.308774,0.796432,-0.288527,0.531459,0.796432,-0.288527,0.531459, + 0.796432,-0.288527,0.531459,0.796432,-0.288527,0.531459,0.047316,-0.889849,-0.453796,0.047316,-0.889849,-0.453796, + 0.047316,-0.889849,-0.453796,0.047316,-0.889849,-0.453796,0.910583,-0.397232,0.114221,0.910583,-0.397232,0.114221, + 0.910583,-0.397232,0.114221,0.310104,-0.135903,0.940939,0.310104,-0.135903,0.940939,0.310104,-0.135903,0.940939, + 0.310104,-0.135903,0.940939,0.478637,-0.269316,0.835689,0.478637,-0.269316,0.835689,0.478637,-0.269316,0.835689, + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.316607,0.031096,0.948047, + 0.316607,0.031096,0.948047,0.316607,0.031096,0.948047,-0.077149,-0.875572,-0.476888,-0.077149,-0.875572,-0.476888, + -0.077149,-0.875572,-0.476888,-0.632119,0.582360,0.511158,-0.632119,0.582360,0.511158,-0.632119,0.582360,0.511158, + -0.632119,0.582360,0.511158,-0.312555,0.538966,0.782192,-0.312555,0.538966,0.782192,-0.312555,0.538966,0.782192, + -0.312555,0.538966,0.782192,0.547367,-0.795885,0.258759,0.547367,-0.795885,0.258759,0.547367,-0.795885,0.258759, + 0.547367,-0.795885,0.258759,-0.963982,0.088341,0.250866,-0.963982,0.088341,0.250866,-0.963982,0.088341,0.250866, + -0.963982,0.088341,0.250866,0.896432,0.276983,-0.345963,0.896432,0.276983,-0.345963,0.896432,0.276983,-0.345963, + 0.245736,0.358713,-0.900521,0.245736,0.358713,-0.900521,0.245736,0.358713,-0.900521,0.094634,0.215507,-0.971906, + 0.094634,0.215507,-0.971906,0.094634,0.215507,-0.971906,0.654782,0.423458,-0.626054,0.654782,0.423458,-0.626054, + 0.654782,0.423458,-0.626054,-0.873386,-0.486706,-0.017725,-0.873386,-0.486706,-0.017725,-0.873386,-0.486706,-0.017725, + -0.873386,-0.486706,-0.017725,0.020184,0.379485,-0.924977,0.020184,0.379485,-0.924977,0.020184,0.379485,-0.924977, + 0.430228,0.345792,-0.833866,0.430228,0.345792,-0.833866,0.430228,0.345792,-0.833866,0.556929,0.537463,-0.633217, + 0.556929,0.537463,-0.633217,0.556929,0.537463,-0.633217,-0.616242,-0.787026,-0.028898,-0.616242,-0.787026,-0.028898, + -0.616242,-0.787026,-0.028898,-0.616242,-0.787026,-0.028898,-0.203854,-0.351722,-0.913638,-0.203854,-0.351722,-0.913638, + -0.203854,-0.351722,-0.913638,-0.203854,-0.351722,-0.913638,0.659917,-0.313399,0.682854,0.659917,-0.313399,0.682854, + 0.659917,-0.313399,0.682854,0.375512,0.670401,0.639963,0.375512,0.670401,0.639963,0.375512,0.670401,0.639963, + -0.513053,0.590327,0.623130,-0.513053,0.590327,0.623130,-0.513053,0.590327,0.623130,-0.229721,-0.152209,0.961281, + -0.229721,-0.152209,0.961281,-0.229721,-0.152209,0.961281,0.475020,0.213786,0.853611,0.475020,0.213786,0.853611, + 0.475020,0.213786,0.853611,0.475020,0.213786,0.853611,-0.065612,0.762688,0.643430,-0.065612,0.762688,0.643430, + -0.065612,0.762688,0.643430,-0.065612,0.762688,0.643430,0.593781,0.613681,0.520403,0.593781,0.613681,0.520403, + 0.593781,0.613681,0.520403,0.593781,0.613681,0.520403,0.434975,0.649265,-0.623900,0.434975,0.649265,-0.623900, + 0.434975,0.649265,-0.623900,0.434975,0.649265,-0.623900,0.648811,0.615777,0.447061,0.648811,0.615777,0.447061, + 0.648811,0.615777,0.447061,0.648811,0.615777,0.447061,-0.387560,0.904386,-0.178557,-0.387560,0.904386,-0.178557, + -0.387560,0.904386,-0.178557,-0.387560,0.904386,-0.178557,-0.403210,-0.458884,-0.791737,-0.403210,-0.458884,-0.791737, + -0.403210,-0.458884,-0.791737,-0.403210,-0.458884,-0.791737,-0.826264,-0.458449,0.327281,-0.826264,-0.458449,0.327281, + -0.826264,-0.458449,0.327281,-0.268222,-0.703769,0.657850,-0.268222,-0.703769,0.657850,-0.268222,-0.703769,0.657850, + -0.181176,0.117788,0.976371,-0.181176,0.117788,0.976371,-0.181176,0.117788,0.976371,-0.874997,0.323462,0.360212, + -0.874997,0.323462,0.360212,-0.874997,0.323462,0.360212,-0.595835,-0.237123,-0.767303,-0.595835,-0.237123,-0.767303, + -0.595835,-0.237123,-0.767303,-0.595835,-0.237123,-0.767303,0.090558,0.255671,0.962513,0.090558,0.255671,0.962513, + 0.090558,0.255671,0.962513,0.090558,0.255671,0.962513,-0.942027,-0.267720,0.202266,-0.942027,-0.267720,0.202266, + -0.942027,-0.267720,0.202266,-0.942027,-0.267720,0.202266,0.176038,-0.883620,-0.433850,0.176038,-0.883620,-0.433850, + 0.176038,-0.883620,-0.433850,0.176038,-0.883620,-0.433850,-0.428272,-0.760604,0.487919,-0.428272,-0.760604,0.487919, + -0.428272,-0.760604,0.487919,-0.428272,-0.760604,0.487919,0.608938,-0.665532,0.431581,0.608938,-0.665532,0.431581, + 0.608938,-0.665532,0.431581,0.608938,-0.665532,0.431581,0.617576,0.115837,-0.777934,0.617576,0.115837,-0.777934, + 0.617576,0.115837,-0.777934,0.617576,0.115837,-0.777934,-0.495484,0.842302,-0.212187,-0.495484,0.842302,-0.212187, + -0.495484,0.842302,-0.212187,-0.495484,0.842302,-0.212187,-0.735722,-0.626600,-0.257072,-0.735722,-0.626600,-0.257072, + -0.735722,-0.626600,-0.257072,-0.735722,-0.626600,-0.257072,0.626909,-0.703483,0.334808,0.626909,-0.703483,0.334808, + 0.626909,-0.703483,0.334808,0.626909,-0.703483,0.334808,-0.923655,-0.383020,0.012556,-0.923655,-0.383020,0.012556, + -0.923655,-0.383020,0.012556,-0.559991,-0.399655,-0.725731,-0.559991,-0.399655,-0.725731,-0.559991,-0.399655,-0.725731, + -0.395304,0.571668,-0.718979,-0.395304,0.571668,-0.718979,-0.395304,0.571668,-0.718979,-0.899537,0.436845,0.000525, + -0.899537,0.436845,0.000525,-0.899537,0.436845,0.000525,-0.024866,0.600036,0.799586,-0.024866,0.600036,0.799586, + -0.024866,0.600036,0.799586,-0.024866,0.600036,0.799586,-0.361769,-0.779780,0.510947,-0.361769,-0.779780,0.510947, + -0.361769,-0.779780,0.510947,-0.361769,-0.779780,0.510947,0.621194,-0.676626,-0.395341,0.621194,-0.676626,-0.395341, + 0.621194,-0.676626,-0.395341,0.621194,-0.676626,-0.395341,-0.264041,0.102936,0.959003,-0.264041,0.102936,0.959003, + -0.264041,0.102936,0.959003,-0.489920,0.871278,-0.029215,-0.489920,0.871278,-0.029215,-0.489920,0.871278,-0.029215, + 0.527721,-0.562546,0.636437,0.527721,-0.562546,0.636437,0.527721,-0.562546,0.636437,0.599535,0.109606,-0.792808, + 0.599535,0.109606,-0.792808,0.599535,0.109606,-0.792808,0.700329,-0.666773,-0.254858,0.700329,-0.666773,-0.254858, + 0.700329,-0.666773,-0.254858,0.700329,-0.666773,-0.254858,-0.531226,-0.845959,0.046387,-0.531226,-0.845959,0.046387, + -0.531226,-0.845959,0.046387,-0.531226,-0.845959,0.046387,0.522754,0.655264,-0.545305,0.522754,0.655264,-0.545305, + 0.522754,0.655264,-0.545305,0.522754,0.655264,-0.545305,-0.852247,0.501710,-0.148196,-0.852247,0.501710,-0.148196, + -0.852247,0.501710,-0.148196,-0.852247,0.501710,-0.148196,0.734894,0.502862,0.455039,0.734894,0.502862,0.455039, + 0.734894,0.502862,0.455039,0.734894,0.502862,0.455039,-0.346483,-0.234640,-0.908236,-0.346483,-0.234640,-0.908236, + -0.346483,-0.234640,-0.908236,-0.346483,-0.234640,-0.908236,-0.433648,0.664302,-0.608813,-0.433648,0.664302,-0.608813, + -0.433648,0.664302,-0.608813,-0.433648,0.664302,-0.608813,0.076010,0.981320,-0.176729,0.076010,0.981320,-0.176729, + 0.076010,0.981320,-0.176729,0.076010,0.981320,-0.176729,0.347446,-0.680575,-0.645057,0.347446,-0.680575,-0.645057, + 0.347446,-0.680575,-0.645057,-0.411114,0.828860,0.379443,-0.411114,0.828860,0.379443,-0.411114,0.828860,0.379443, + -0.411114,0.828860,0.379443,0.352206,0.814390,-0.461216,0.352206,0.814390,-0.461216,0.352206,0.814390,-0.461216, + -0.977897,-0.051998,0.202519,-0.977897,-0.051998,0.202519,-0.977897,-0.051998,0.202519,-0.977897,-0.051998,0.202519, + -0.556831,-0.829749,0.038156,-0.556831,-0.829749,0.038156,-0.556831,-0.829749,0.038156,-0.556831,-0.829749,0.038156, + 0.781734,0.232207,-0.578768,0.781734,0.232207,-0.578768,0.781734,0.232207,-0.578768,-0.420624,0.748272,0.512996, + -0.420624,0.748272,0.512996,-0.420624,0.748272,0.512996,-0.798557,-0.557414,-0.227147,-0.798557,-0.557414,-0.227147, + -0.798557,-0.557414,-0.227147,-0.798557,-0.557414,-0.227147,-0.946976,0.316334,0.056292,-0.946976,0.316334,0.056292, + -0.946976,0.316334,0.056292,-0.946976,0.316334,0.056292,-0.390079,0.677002,0.624105,-0.390079,0.677002,0.624105, + -0.390079,0.677002,0.624105,-0.390079,0.677002,0.624105,-0.702511,-0.334654,0.628080,-0.702511,-0.334654,0.628080, + -0.702511,-0.334654,0.628080,-0.644936,-0.643509,0.412254,-0.644936,-0.643509,0.412254,-0.644936,-0.643509,0.412254, + -0.463434,-0.118989,0.878106,-0.463434,-0.118989,0.878106,-0.463434,-0.118989,0.878106,-0.568642,-0.283409,-0.772221, + -0.568642,-0.283409,-0.772221,-0.568642,-0.283409,-0.772221,-0.568642,-0.283409,-0.772221,-0.882342,0.420006,-0.212293, + -0.882342,0.420006,-0.212293,-0.882342,0.420006,-0.212293,-0.882342,0.420006,-0.212293,0.680190,0.463890,0.567581, + 0.680190,0.463890,0.567581,0.680190,0.463890,0.567581,0.432253,0.521190,-0.735879,0.432253,0.521190,-0.735879, + 0.432253,0.521190,-0.735879,0.660720,0.463501,0.590437,0.660720,0.463501,0.590437,0.660720,0.463501,0.590437, + 0.039597,-0.893064,0.448184,0.039597,-0.893064,0.448184,0.039597,-0.893064,0.448184,0.039597,-0.893064,0.448184, + 0.654154,0.361950,0.664134,0.654154,0.361950,0.664134,0.654154,0.361950,0.664134,-0.378521,-0.818006,0.433114, + -0.378521,-0.818006,0.433114,-0.378521,-0.818006,0.433114,0.404276,0.908089,-0.109245,0.404276,0.908089,-0.109245, + 0.404276,0.908089,-0.109245,0.404276,0.908089,-0.109245,-0.869243,-0.436673,0.231805,-0.869243,-0.436673,0.231805, + -0.869243,-0.436673,0.231805,-0.869243,-0.436673,0.231805,-0.139239,0.101787,0.985014,-0.139239,0.101787,0.985014, + -0.139239,0.101787,0.985014,-0.139239,0.101787,0.985014,-0.001042,0.430844,0.902426,-0.001042,0.430844,0.902426, + -0.001042,0.430844,0.902426,-0.912564,-0.343363,-0.222102,-0.912564,-0.343363,-0.222102,-0.912564,-0.343363,-0.222102, + -0.912564,-0.343363,-0.222102,0.692328,0.240179,-0.680438,0.692328,0.240179,-0.680438,0.692328,0.240179,-0.680438, + 0.692328,0.240179,-0.680438,0.748252,-0.640498,0.172860,0.748252,-0.640498,0.172860,0.748252,-0.640498,0.172860, + 0.748252,-0.640498,0.172860,-0.687783,0.665952,-0.288897,-0.687783,0.665952,-0.288897,-0.687783,0.665952,-0.288897, + -0.687783,0.665952,-0.288897,-0.298011,0.394765,-0.869109,-0.298011,0.394765,-0.869109,-0.298011,0.394765,-0.869109, + -0.167176,0.618221,-0.768021,-0.167176,0.618221,-0.768021,-0.167176,0.618221,-0.768021,-0.473382,0.513757,-0.715516, + -0.473382,0.513757,-0.715516,-0.473382,0.513757,-0.715516,-0.338266,0.875825,-0.344247,-0.338266,0.875825,-0.344247, + -0.338266,0.875825,-0.344247,-0.763768,-0.626551,0.155216,-0.763768,-0.626551,0.155216,-0.763768,-0.626551,0.155216, + -0.763768,-0.626551,0.155216,-0.231194,-0.252349,0.939611,-0.231194,-0.252349,0.939611,-0.231194,-0.252349,0.939611, + -0.231194,-0.252349,0.939611,-0.231194,-0.252349,0.939611,0.459280,0.888055,0.020477,0.459280,0.888055,0.020477, + 0.459280,0.888055,0.020477,0.459280,0.888055,0.020477,0.180702,-0.156685,0.970977,0.180702,-0.156685,0.970977, + 0.180702,-0.156685,0.970977,0.278199,-0.016659,0.960379,0.278199,-0.016659,0.960379,0.278199,-0.016659,0.960379, + 0.169506,-0.166065,0.971437,0.169506,-0.166065,0.971437,0.169506,-0.166065,0.971437,0.877229,-0.122576,-0.464160, + 0.877229,-0.122576,-0.464160,0.877229,-0.122576,-0.464160,0.877229,-0.122576,-0.464160,0.709334,0.703622,0.041968, + 0.709334,0.703622,0.041968,0.709334,0.703622,0.041968,0.709334,0.703622,0.041968,-0.934045,0.353230,0.052814, + -0.934045,0.353230,0.052814,-0.934045,0.353230,0.052814,-0.934045,0.353230,0.052814,-0.702257,-0.609128,-0.368507, + -0.702257,-0.609128,-0.368507,-0.702257,-0.609128,-0.368507,-0.702257,-0.609128,-0.368507,-0.423648,0.866248,-0.264832, + -0.423648,0.866248,-0.264832,-0.423648,0.866248,-0.264832,-0.423648,0.866248,-0.264832,0.408204,0.896716,0.171083, + 0.408204,0.896716,0.171083,0.408204,0.896716,0.171083,0.408204,0.896716,0.171083,0.254489,0.349697,0.901636, + 0.254489,0.349697,0.901636,0.254489,0.349697,0.901636,0.254489,0.349697,0.901636,0.398608,-0.610717,-0.684205, + 0.398608,-0.610717,-0.684205,0.398608,-0.610717,-0.684205,0.398608,-0.610717,-0.684205,0.731180,0.600451,0.323783, + 0.731180,0.600451,0.323783,0.731180,0.600451,0.323783,-0.955967,-0.121155,-0.267299,-0.955967,-0.121155,-0.267299, + -0.955967,-0.121155,-0.267299,-0.955967,-0.121155,-0.267299,-0.786462,-0.593303,-0.171665,-0.786462,-0.593303,-0.171665, + -0.786462,-0.593303,-0.171665,-0.226416,-0.972056,-0.061986,-0.226416,-0.972056,-0.061986,-0.226416,-0.972056,-0.061986, + 0.276105,-0.061087,0.959184,0.276105,-0.061087,0.959184,0.276105,-0.061087,0.959184,0.276105,-0.061087,0.959184, + -0.352090,-0.490881,0.796912,-0.352090,-0.490881,0.796912,-0.352090,-0.490881,0.796912,-0.352090,-0.490881,0.796912, + 0.070056,0.571734,0.817443,0.070056,0.571734,0.817443,0.070056,0.571734,0.817443,0.070056,0.571734,0.817443, + -0.732170,-0.372081,0.570512,-0.732170,-0.372081,0.570512,-0.732170,-0.372081,0.570512,-0.732170,-0.372081,0.570512, + -0.051779,0.996967,-0.058107,-0.051779,0.996967,-0.058107,-0.051779,0.996967,-0.058107,0.468040,0.879620,0.084893, + 0.468040,0.879620,0.084893,0.468040,0.879620,0.084893,0.468040,0.879620,0.084893,0.370239,0.441698,-0.817206, + 0.370239,0.441698,-0.817206,0.370239,0.441698,-0.817206,0.370239,0.441698,-0.817206,-0.675880,-0.000604,-0.737011, + -0.675880,-0.000604,-0.737011,-0.675880,-0.000604,-0.737011,-0.098233,0.947435,-0.304495,-0.098233,0.947435,-0.304495, + -0.098233,0.947435,-0.304495,-0.079894,0.615522,-0.784060,-0.079894,0.615522,-0.784060,-0.079894,0.615522,-0.784060, + -0.079894,0.615522,-0.784060,-0.483028,0.875321,-0.022317,-0.483028,0.875321,-0.022317,-0.483028,0.875321,-0.022317, + -0.695234,0.716816,0.053142,-0.695234,0.716816,0.053142,-0.695234,0.716816,0.053142,-0.707644,0.705026,0.046672, + -0.707644,0.705026,0.046672,-0.707644,0.705026,0.046672,-0.472609,-0.532071,-0.702525,-0.472609,-0.532071,-0.702525, + -0.472609,-0.532071,-0.702525,-0.472609,-0.532071,-0.702525,0.531070,0.553748,0.641348,0.531070,0.553748,0.641348, + 0.531070,0.553748,0.641348,0.531070,0.553748,0.641348,-0.770833,-0.604150,-0.202038,-0.770833,-0.604150,-0.202038, + -0.770833,-0.604150,-0.202038,-0.770833,-0.604150,-0.202038,-0.991635,0.124094,0.035500,-0.991635,0.124094,0.035500, + -0.991635,0.124094,0.035500,-0.991635,0.124094,0.035500,-0.407207,0.858393,0.311999,-0.407207,0.858393,0.311999, + -0.407207,0.858393,0.311999,-0.407207,0.858393,0.311999,-0.361037,-0.058843,-0.930693,-0.361037,-0.058843,-0.930693, + -0.361037,-0.058843,-0.930693,-0.361037,-0.058843,-0.930693,-0.327779,0.293409,0.898038,-0.327779,0.293409,0.898038, + -0.327779,0.293409,0.898038,-0.327779,0.293409,0.898038,-0.502395,0.159870,0.849730,-0.502395,0.159870,0.849730, + -0.502395,0.159870,0.849730,-0.502395,0.159870,0.849730,0.481887,0.519310,-0.705764,0.481887,0.519310,-0.705764, + 0.481887,0.519310,-0.705764,0.481887,0.519310,-0.705764,-0.902689,0.236568,-0.359428,-0.902689,0.236568,-0.359428, + -0.902689,0.236568,-0.359428,-0.902689,0.236568,-0.359428,0.311122,0.909927,-0.274292,0.311122,0.909927,-0.274292, + 0.311122,0.909927,-0.274292,0.311122,0.909927,-0.274292,-0.740305,-0.588912,-0.324239,-0.740305,-0.588912,-0.324239, + -0.740305,-0.588912,-0.324239,-0.740305,-0.588912,-0.324239,-0.395304,-0.803526,-0.445064,-0.395304,-0.803526,-0.445064, + -0.395304,-0.803526,-0.445064,0.263459,0.908546,0.324242,0.263459,0.908546,0.324242,0.263459,0.908546,0.324242, + -0.148912,0.895873,0.418613,-0.148912,0.895873,0.418613,-0.148912,0.895873,0.418613,0.015742,0.988291,0.151769, + 0.015742,0.988291,0.151769,0.015742,0.988291,0.151769,0.015742,0.988291,0.151769,0.570430,0.415461,-0.708521, + 0.570430,0.415461,-0.708521,0.570430,0.415461,-0.708521,0.507627,-0.848199,0.151237,0.507627,-0.848199,0.151237, + 0.507627,-0.848199,0.151237,0.507627,-0.848199,0.151237,-0.671126,0.533592,-0.514655,-0.671126,0.533592,-0.514655, + -0.671126,0.533592,-0.514655,-0.671126,0.533592,-0.514655,0.811380,-0.032493,0.583616,0.811380,-0.032493,0.583616, + 0.811380,-0.032493,0.583616,0.811380,-0.032493,0.583616,-0.295650,0.783921,0.545947,-0.295650,0.783921,0.545947, + -0.295650,0.783921,0.545947,-0.295650,0.783921,0.545947,0.889504,0.452771,0.061493,0.889504,0.452771,0.061493, + 0.889504,0.452771,0.061493,0.037462,-0.835579,-0.548091,0.037462,-0.835579,-0.548091,0.037462,-0.835579,-0.548091, + 0.037462,-0.835579,-0.548091,0.240200,0.763316,0.599710,0.240200,0.763316,0.599710,0.240200,0.763316,0.599710, + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.373719,-0.877766,-0.299769, + -0.373719,-0.877766,-0.299769,-0.373719,-0.877766,-0.299769,-0.414254,0.753094,0.511119,-0.414254,0.753094,0.511119, + -0.414254,0.753094,0.511119,-0.665818,-0.742119,-0.077106,-0.665818,-0.742119,-0.077106,-0.665818,-0.742119,-0.077106, + -0.665818,-0.742119,-0.077106,-0.540497,0.680809,0.494330,-0.540497,0.680809,0.494330,-0.540497,0.680809,0.494330, + 0.331794,0.943038,0.024335,0.331794,0.943038,0.024335,0.331794,0.943038,0.024335,0.887275,0.317438,0.334629, + 0.887275,0.317438,0.334629,0.887275,0.317438,0.334629,0.241293,0.344354,0.907303,0.241293,0.344354,0.907303, + 0.241293,0.344354,0.907303,0.573110,0.793249,-0.205672,0.573110,0.793249,-0.205672,0.573110,0.793249,-0.205672, + 0.573110,0.793249,-0.205672,0.969191,0.235913,0.070812,0.969191,0.235913,0.070812,0.969191,0.235913,0.070812, + 0.969191,0.235913,0.070812,0.522552,-0.287128,-0.802806,0.522552,-0.287128,-0.802806,0.522552,-0.287128,-0.802806, + 0.522552,-0.287128,-0.802806,0.078473,0.701439,-0.708396,0.078473,0.701439,-0.708396,0.078473,0.701439,-0.708396, + 0.078473,0.701439,-0.708396,0.401013,-0.436637,-0.805318,0.401013,-0.436637,-0.805318,0.401013,-0.436637,-0.805318, + 0.401013,-0.436637,-0.805318,0.525682,-0.775206,0.350306,0.525682,-0.775206,0.350306,0.525682,-0.775206,0.350306, + 0.525682,-0.775206,0.350306,-0.634169,0.054361,0.771281,-0.634169,0.054361,0.771281,-0.634169,0.054361,0.771281, + -0.634169,0.054361,0.771281,0.291836,0.726583,0.622020,0.291836,0.726583,0.622020,0.291836,0.726583,0.622020, + 0.110148,0.993914,-0.001588,0.110148,0.993914,-0.001588,0.110148,0.993914,-0.001588,0.787708,0.524610,-0.322956, + 0.787708,0.524610,-0.322956,0.787708,0.524610,-0.322956,0.816096,0.152254,0.557500,0.816096,0.152254,0.557500, + 0.816096,0.152254,0.557500,-0.212864,0.074000,-0.974276,-0.212864,0.074000,-0.974276,-0.212864,0.074000,-0.974276, + -0.212864,0.074000,-0.974276,0.397104,-0.609715,0.685971,0.397104,-0.609715,0.685971,0.397104,-0.609715,0.685971, + 0.397104,-0.609715,0.685971,0.179562,-0.829908,-0.528214,0.179562,-0.829908,-0.528214,0.179562,-0.829908,-0.528214, + 0.179562,-0.829908,-0.528214,-0.994207,-0.096529,0.047264,-0.994207,-0.096529,0.047264,-0.994207,-0.096529,0.047264, + -0.994207,-0.096529,0.047264,0.084338,-0.716675,0.692289,0.084338,-0.716675,0.692289,0.084338,-0.716675,0.692289, + 0.084338,-0.716675,0.692289,-0.325545,0.653739,-0.683114,-0.325545,0.653739,-0.683114,-0.325545,0.653739,-0.683114, + -0.325545,0.653739,-0.683114,-0.609621,-0.765746,-0.204928,-0.609621,-0.765746,-0.204928,-0.609621,-0.765746,-0.204928, + -0.609621,-0.765746,-0.204928,0.593781,-0.556657,0.580997,0.593781,-0.556657,0.580997,0.593781,-0.556657,0.580997, + 0.593781,-0.556657,0.580997,-0.402976,0.539600,0.739217,-0.402976,0.539600,0.739217,-0.402976,0.539600,0.739217, + -0.402976,0.539600,0.739217,-0.452087,0.488864,-0.746076,-0.452087,0.488864,-0.746076,-0.452087,0.488864,-0.746076, + -0.452087,0.488864,-0.746076,-0.011755,-0.998074,-0.060913,-0.011755,-0.998074,-0.060913,-0.011755,-0.998074,-0.060913, + -0.531742,-0.621060,-0.575790,-0.531742,-0.621060,-0.575790,-0.531742,-0.621060,-0.575790,0.185766,-0.079804,-0.979348, + 0.185766,-0.079804,-0.979348,0.185766,-0.079804,-0.979348,0.619556,-0.644807,-0.447632,0.619556,-0.644807,-0.447632, + 0.619556,-0.644807,-0.447632,0.934542,0.223268,0.277096,0.934542,0.223268,0.277096,0.934542,0.223268,0.277096, + 0.934542,0.223268,0.277096,-0.262166,-0.679566,0.685171,-0.262166,-0.679566,0.685171,-0.262166,-0.679566,0.685171, + -0.262166,-0.679566,0.685171,-0.948710,0.278679,0.149291,-0.948710,0.278679,0.149291,-0.948710,0.278679,0.149291, + -0.948710,0.278679,0.149291,0.772958,0.607709,-0.182279,0.772958,0.607709,-0.182279,0.772958,0.607709,-0.182279, + 0.731959,-0.466555,0.496550,0.731959,-0.466555,0.496550,0.731959,-0.466555,0.496550,-0.129189,0.608329,-0.783101, + -0.129189,0.608329,-0.783101,-0.129189,0.608329,-0.783101,-0.609147,-0.772300,-0.180257,-0.609147,-0.772300,-0.180257, + -0.609147,-0.772300,-0.180257,-0.997934,-0.040595,-0.049801,-0.997934,-0.040595,-0.049801,-0.997934,-0.040595,-0.049801, + -0.997934,-0.040595,-0.049801,-0.237283,-0.674569,0.699037,-0.237283,-0.674569,0.699037,-0.237283,-0.674569,0.699037, + -0.237283,-0.674569,0.699037,-0.051888,0.341112,-0.938589,-0.051888,0.341112,-0.938589,-0.051888,0.341112,-0.938589, + -0.051888,0.341112,-0.938589,0.933651,-0.334207,-0.128846,0.933651,-0.334207,-0.128846,0.933651,-0.334207,-0.128846, + 0.933651,-0.334207,-0.128846,0.245262,0.425967,0.870861,0.245262,0.425967,0.870861,0.245262,0.425967,0.870861, + 0.245262,0.425967,0.870861,0.247251,-0.548321,-0.798881,0.247251,-0.548321,-0.798881,0.247251,-0.548321,-0.798881, + 0.247251,-0.548321,-0.798881,0.932253,-0.057301,-0.357241,0.932253,-0.057301,-0.357241,0.932253,-0.057301,-0.357241, + 0.932253,-0.057301,-0.357241,0.799492,0.599100,-0.043498,0.799492,0.599100,-0.043498,0.799492,0.599100,-0.043498, + 0.799492,0.599100,-0.043498,0.002689,-0.721008,-0.692921,0.002689,-0.721008,-0.692921,0.002689,-0.721008,-0.692921, + 0.427836,0.727935,0.535786,0.427836,0.727935,0.535786,0.427836,0.727935,0.535786,0.427836,0.727935,0.535786, + -0.318426,0.779049,-0.540081,-0.318426,0.779049,-0.540081,-0.318426,0.779049,-0.540081,0.902115,-0.213967,0.374710, + 0.902115,-0.213967,0.374710,0.902115,-0.213967,0.374710,0.902115,-0.213967,0.374710,0.351692,-0.935122,0.043119, + 0.351692,-0.935122,0.043119,0.351692,-0.935122,0.043119,0.351692,-0.935122,0.043119,-0.639826,0.096207,-0.762474, + -0.639826,0.096207,-0.762474,-0.639826,0.096207,-0.762474,0.678309,0.167719,0.715379,0.678309,0.167719,0.715379, + 0.678309,0.167719,0.715379,0.032976,-0.996713,-0.074003,0.032976,-0.996713,-0.074003,0.032976,-0.996713,-0.074003, + 0.032976,-0.996713,-0.074003,0.734229,-0.571843,0.365928,0.734229,-0.571843,0.365928,0.734229,-0.571843,0.365928, + 0.734229,-0.571843,0.365928,0.573799,0.167786,0.801625,0.573799,0.167786,0.801625,0.573799,0.167786,0.801625, + 0.573799,0.167786,0.801625,-0.077931,-0.664630,0.743098,-0.077931,-0.664630,0.743098,-0.077931,-0.664630,0.743098, + -0.296062,-0.827826,0.476499,-0.296062,-0.827826,0.476499,-0.296062,-0.827826,0.476499,-0.099625,-0.311182,0.945114, + -0.099625,-0.311182,0.945114,-0.099625,-0.311182,0.945114,0.286097,-0.734968,-0.614793,0.286097,-0.734968,-0.614793, + 0.286097,-0.734968,-0.614793,0.286097,-0.734968,-0.614793,0.859180,-0.500045,0.108465,0.859180,-0.500045,0.108465, + 0.859180,-0.500045,0.108465,0.859180,-0.500045,0.108465,-0.141822,0.898167,0.416152,-0.141822,0.898167,0.416152, + -0.141822,0.898167,0.416152,0.399690,0.538387,-0.741881,0.399690,0.538387,-0.741881,0.399690,0.538387,-0.741881, + -0.138347,0.885637,0.443291,-0.138347,0.885637,0.443291,-0.138347,0.885637,0.443291,-0.236255,-0.662359,0.710960, + -0.236255,-0.662359,0.710960,-0.236255,-0.662359,0.710960,-0.236255,-0.662359,0.710960,0.179858,0.130632,0.974980, + 0.179858,0.130632,0.974980,0.179858,0.130632,0.974980,-0.501683,-0.795108,-0.340760,-0.501683,-0.795108,-0.340760, + -0.501683,-0.795108,-0.340760,0.856732,0.514008,0.042488,0.856732,0.514008,0.042488,0.856732,0.514008,0.042488, + 0.856732,0.514008,0.042488,0.265726,-0.789634,-0.553053,0.265726,-0.789634,-0.553053,0.265726,-0.789634,-0.553053, + 0.265726,-0.789634,-0.553053,0.298044,-0.570082,0.765622,0.298044,-0.570082,0.765622,0.298044,-0.570082,0.765622, + 0.298044,-0.570082,0.765622,0.287452,-0.710999,0.641756,0.287452,-0.710999,0.641756,0.287452,-0.710999,0.641756, + 0.247972,-0.764461,-0.595071,0.247972,-0.764461,-0.595071,0.247972,-0.764461,-0.595071,0.247972,-0.764461,-0.595071, + -0.135593,0.985058,0.106184,-0.135593,0.985058,0.106184,-0.135593,0.985058,0.106184,-0.135593,0.985058,0.106184, + -0.494663,0.739460,-0.456626,-0.494663,0.739460,-0.456626,-0.494663,0.739460,-0.456626,-0.494663,0.739460,-0.456626, + 0.428074,-0.833095,0.350293,0.428074,-0.833095,0.350293,0.428074,-0.833095,0.350293,0.428074,-0.833095,0.350293, + 0.424378,0.513653,-0.745697,0.424378,0.513653,-0.745697,0.424378,0.513653,-0.745697,0.475116,0.605817,-0.638162, + 0.475116,0.605817,-0.638162,0.475116,0.605817,-0.638162,0.492893,0.417575,-0.763339,0.492893,0.417575,-0.763339, + 0.492893,0.417575,-0.763339,0.482640,0.529201,-0.697857,0.482640,0.529201,-0.697857,0.482640,0.529201,-0.697857, + -0.428585,-0.896128,-0.115194,-0.428585,-0.896128,-0.115194,-0.428585,-0.896128,-0.115194,-0.428585,-0.896128,-0.115194, + -0.271356,-0.460347,0.845249,-0.271356,-0.460347,0.845249,-0.271356,-0.460347,0.845249,-0.271356,-0.460347,0.845249, + -0.271356,-0.460347,0.845249,0.718438,0.687618,0.105017,0.718438,0.687618,0.105017,0.718438,0.687618,0.105017, + 0.718438,0.687618,0.105017,-0.240311,0.161384,0.957186,-0.240311,0.161384,0.957186,-0.240311,0.161384,0.957186, + -0.084484,0.297935,0.950840,-0.084484,0.297935,0.950840,-0.084484,0.297935,0.950840,-0.228484,0.179732,0.956813, + -0.228484,0.179732,0.956813,-0.228484,0.179732,0.956813,-0.427404,0.566661,-0.704429,-0.427404,0.566661,-0.704429, + -0.427404,0.566661,-0.704429,-0.427404,0.566661,-0.704429,0.183312,0.981519,-0.054921,0.183312,0.981519,-0.054921, + 0.183312,0.981519,-0.054921,0.183312,0.981519,-0.054921,0.758132,-0.540742,0.364465,0.758132,-0.540742,0.364465, + 0.758132,-0.540742,0.364465,0.758132,-0.540742,0.364465,-0.019370,-0.969901,-0.242729,-0.019370,-0.969901,-0.242729, + -0.019370,-0.969901,-0.242729,-0.019370,-0.969901,-0.242729,0.996387,-0.084749,0.005478,0.996387,-0.084749,0.005478, + 0.996387,-0.084749,0.005478,0.996387,-0.084749,0.005478,0.840034,0.452525,0.299272,0.840034,0.452525,0.299272, + 0.840034,0.452525,0.299272,0.840034,0.452525,0.299272,0.530180,0.326401,0.782542,0.530180,0.326401,0.782542, + 0.530180,0.326401,0.782542,0.530180,0.326401,0.782542,-0.570516,-0.153072,0.806896,-0.570516,-0.153072,0.806896, + -0.570516,-0.153072,0.806896,-0.570516,-0.153072,0.806896,0.308146,0.496852,0.811285,0.308146,0.496852,0.811285, + 0.308146,0.496852,0.811285,0.477645,-0.878547,-0.003220,0.477645,-0.878547,-0.003220,0.477645,-0.878547,-0.003220, + 0.477645,-0.878547,-0.003220,-0.432327,-0.864455,0.256536,-0.432327,-0.864455,0.256536,-0.432327,-0.864455,0.256536, + -0.651848,0.757554,-0.034741,-0.651848,0.757554,-0.034741,-0.651848,0.757554,-0.034741,-0.064120,-0.030497,0.997476, + -0.064120,-0.030497,0.997476,-0.064120,-0.030497,0.997476,-0.064120,-0.030497,0.997476,-0.434361,-0.447425,0.781755, + -0.434361,-0.447425,0.781755,-0.434361,-0.447425,0.781755,-0.434361,-0.447425,0.781755,0.193743,0.475957,0.857863, + 0.193743,0.475957,0.857863,0.193743,0.475957,0.857863,0.193743,0.475957,0.857863,-0.429168,-0.606444,0.669358, + -0.429168,-0.606444,0.669358,-0.429168,-0.606444,0.669358,-0.429168,-0.606444,0.669358,-0.455900,-0.815135,-0.357365, + -0.455900,-0.815135,-0.357365,-0.455900,-0.815135,-0.357365,0.757784,0.638682,0.133596,0.757784,0.638682,0.133596, + 0.757784,0.638682,0.133596,0.757784,0.638682,0.133596,0.390972,0.430739,-0.813391,0.390972,0.430739,-0.813391, + 0.390972,0.430739,-0.813391,0.390972,0.430739,-0.813391,0.127024,-0.348561,-0.928639,0.127024,-0.348561,-0.928639, + 0.127024,-0.348561,-0.928639,0.937879,-0.050643,0.343248,0.937879,-0.050643,0.343248,0.937879,-0.050643,0.343248, + 0.872475,-0.121098,-0.473417,0.872475,-0.121098,-0.473417,0.872475,-0.121098,-0.473417,0.872475,-0.121098,-0.473417, + 0.304841,0.113405,-0.945627,0.304841,0.113405,-0.945627,0.304841,0.113405,-0.945627,0.996838,-0.077180,0.018894, + 0.996838,-0.077180,0.018894,0.996838,-0.077180,0.018894,0.894405,-0.346879,-0.282340,0.894405,-0.346879,-0.282340, + 0.894405,-0.346879,-0.282340,0.996686,-0.079079,0.019042,0.996686,-0.079079,0.019042,0.996686,-0.079079,0.019042, + -0.132058,-0.795434,-0.591477,-0.132058,-0.795434,-0.591477,-0.132058,-0.795434,-0.591477,-0.132058,-0.795434,-0.591477, + 0.807056,0.504376,0.307027,0.807056,0.504376,0.307027,0.807056,0.504376,0.307027,0.807056,0.504376,0.307027, + -0.337334,-0.939429,-0.060646,-0.337334,-0.939429,-0.060646,-0.337334,-0.939429,-0.060646,-0.337334,-0.939429,-0.060646, + 0.270866,-0.852382,0.447299,0.270866,-0.852382,0.447299,0.270866,-0.852382,0.447299,0.270866,-0.852382,0.447299, + 0.730108,-0.021246,0.683001,0.730108,-0.021246,0.683001,0.730108,-0.021246,0.683001,0.730108,-0.021246,0.683001, + 0.365406,-0.620660,-0.693729,0.365406,-0.620660,-0.693729,0.365406,-0.620660,-0.693729,0.365406,-0.620660,-0.693729, + -0.020662,0.055875,0.998224,-0.020662,0.055875,0.998224,-0.020662,0.055875,0.998224,-0.020662,0.055875,0.998224, + -0.093091,-0.156692,0.983251,-0.093091,-0.156692,0.983251,-0.093091,-0.156692,0.983251,-0.093091,-0.156692,0.983251, + 0.657828,0.383200,-0.648398,0.657828,0.383200,-0.648398,0.657828,0.383200,-0.648398,0.657828,0.383200,-0.648398, + 0.649863,-0.711176,-0.268156,0.649863,-0.711176,-0.268156,0.649863,-0.711176,-0.268156,0.649863,-0.711176,-0.268156, + 0.546362,0.833214,0.085107,0.546362,0.833214,0.085107,0.546362,0.833214,0.085107,0.546362,0.833214,0.085107, + -0.347761,-0.862645,-0.367295,-0.347761,-0.862645,-0.367295,-0.347761,-0.862645,-0.367295,-0.347761,-0.862645,-0.367295, + -0.536338,0.351809,0.767184,-0.536338,0.351809,0.767184,-0.536338,0.351809,0.767184,0.611071,-0.435941,-0.660718, + 0.611071,-0.435941,-0.660718,0.611071,-0.435941,-0.660718,0.999261,0.020537,0.032496,0.999261,0.020537,0.032496, + 0.999261,0.020537,0.032496,0.858334,0.416032,-0.300300,0.858334,0.416032,-0.300300,0.858334,0.416032,-0.300300, + 0.858334,0.416032,-0.300300,-0.880466,0.366908,-0.300264,-0.880466,0.366908,-0.300264,-0.880466,0.366908,-0.300264, + -0.656505,0.616035,-0.435319,-0.656505,0.616035,-0.435319,-0.656505,0.616035,-0.435319,-0.656505,0.616035,-0.435319, + 0.260778,-0.526727,0.809045,0.260778,-0.526727,0.809045,0.260778,-0.526727,0.809045,0.260778,-0.526727,0.809045, + -0.614379,0.720742,0.321046,-0.614379,0.720742,0.321046,-0.614379,0.720742,0.321046,-0.614379,0.720742,0.321046, + 0.632342,0.293671,0.716869,0.632342,0.293671,0.716869,0.632342,0.293671,0.716869,0.632342,0.293671,0.716869, + 0.216962,0.584711,0.781691,0.216962,0.584711,0.781691,0.216962,0.584711,0.781691,-0.650896,0.264778,0.711496, + -0.650896,0.264778,0.711496,-0.650896,0.264778,0.711496,-0.650896,0.264778,0.711496,0.230515,0.314605,0.920808, + 0.230515,0.314605,0.920808,0.230515,0.314605,0.920808,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, + 0.000000,0.000000,1.000000,-0.766522,-0.009444,0.642149,-0.766522,-0.009444,0.642149,-0.766522,-0.009444,0.642149, + 0.679359,0.175326,0.712553,0.679359,0.175326,0.712553,0.679359,0.175326,0.712553,-0.993777,0.103764,-0.040512, + -0.993777,0.103764,-0.040512,-0.993777,0.103764,-0.040512,-0.993777,0.103764,-0.040512,-0.473759,0.830738,0.292278, + -0.473759,0.830738,0.292278,-0.473759,0.830738,0.292278,-0.473759,0.830738,0.292278,0.896797,0.017288,0.442104, + 0.896797,0.017288,0.442104,0.896797,0.017288,0.442104,0.896797,0.017288,0.442104,-0.844025,-0.535146,0.035216, + -0.844025,-0.535146,0.035216,-0.844025,-0.535146,0.035216,-0.844025,-0.535146,0.035216,0.650547,0.362957,-0.667121, + 0.650547,0.362957,-0.667121,0.650547,0.362957,-0.667121,0.411581,0.021369,-0.911122,0.411581,0.021369,-0.911122, + 0.411581,0.021369,-0.911122,0.414427,0.084139,-0.906185,0.414427,0.084139,-0.906185,0.414427,0.084139,-0.906185, + 0.016810,0.397008,-0.917661,0.016810,0.397008,-0.917661,0.016810,0.397008,-0.917661,-0.358314,-0.912557,0.197106, + -0.358314,-0.912557,0.197106,-0.358314,-0.912557,0.197106,-0.358314,-0.912557,0.197106,-0.188975,-0.322305,-0.927582, + -0.188975,-0.322305,-0.927582,-0.188975,-0.322305,-0.927582,0.297935,0.110999,-0.948111,0.297935,0.110999,-0.948111, + 0.297935,0.110999,-0.948111,0.095544,0.315703,-0.944036,0.095544,0.315703,-0.944036,0.095544,0.315703,-0.944036, + -0.036469,-0.913453,0.405308,-0.036469,-0.913453,0.405308,-0.036469,-0.913453,0.405308,-0.036469,-0.913453,0.405308, + -0.218023,-0.329174,0.918755,-0.218023,-0.329174,0.918755,-0.218023,-0.329174,0.918755,-0.218023,-0.329174,0.918755, + -0.155431,-0.416913,0.895558,-0.155431,-0.416913,0.895558,-0.155431,-0.416913,0.895558,-0.155431,-0.416913,0.895558, + -0.211541,-0.331805,0.919324,-0.211541,-0.331805,0.919324,-0.211541,-0.331805,0.919324,-0.211541,-0.331805,0.919324, + -0.155439,-0.416917,0.895555,-0.155439,-0.416917,0.895555,-0.155439,-0.416917,0.895555,-0.155439,-0.416917,0.895555, + -0.218722,-0.338191,0.915307,-0.218722,-0.338191,0.915307,-0.218722,-0.338191,0.915307,-0.218722,-0.338191,0.915307, + -0.155433,-0.416934,0.895548,-0.155433,-0.416934,0.895548,-0.155433,-0.416934,0.895548,-0.155433,-0.416934,0.895548, + -0.218015,-0.329152,0.918764,-0.218015,-0.329152,0.918764,-0.218015,-0.329152,0.918764,-0.218015,-0.329152,0.918764, + -0.155445,-0.416938,0.895544,-0.155445,-0.416938,0.895544,-0.155445,-0.416938,0.895544,-0.155445,-0.416938,0.895544, + -0.955080,-0.169583,-0.243032,-0.955080,-0.169583,-0.243032,-0.955080,-0.169583,-0.243032,-0.955080,-0.169583,-0.243032, + 0.803787,-0.593027,0.047381,0.803787,-0.593027,0.047381,0.803787,-0.593027,0.047381,0.803787,-0.593027,0.047381, + -0.847908,0.526782,0.059597,-0.847908,0.526782,0.059597,-0.847908,0.526782,0.059597,-0.847908,0.526782,0.059597, + 0.934523,0.093135,0.343501,0.934523,0.093135,0.343501,0.934523,0.093135,0.343501,0.934523,0.093135,0.343501, + -0.252461,-0.349240,0.902383,-0.252461,-0.349240,0.902383,-0.252461,-0.349240,0.902383,0.267103,-0.885809,-0.379470, + 0.267103,-0.885809,-0.379470,0.267103,-0.885809,-0.379470,0.267103,-0.885809,-0.379470,0.545031,0.781142,0.304562, + 0.545031,0.781142,0.304562,0.545031,0.781142,0.304562,0.545031,0.781142,0.304562,-0.515214,-0.668576,-0.536247, + -0.515214,-0.668576,-0.536247,-0.515214,-0.668576,-0.536247,-0.515214,-0.668576,-0.536247,-0.900328,-0.054874,-0.431739, + -0.900328,-0.054874,-0.431739,-0.900328,-0.054874,-0.431739,-0.900328,-0.054874,-0.431739,0.955962,0.189822,0.223842, + 0.955962,0.189822,0.223842,0.955962,0.189822,0.223842,0.955962,0.189822,0.223842,-0.767247,0.625423,-0.142050, + -0.767247,0.625423,-0.142050,-0.767247,0.625423,-0.142050,-0.767247,0.625423,-0.142050,0.835057,-0.543518,-0.085252, + 0.835057,-0.543518,-0.085252,0.835057,-0.543518,-0.085252,0.835057,-0.543518,-0.085252,-0.220810,0.964520,0.144718, + -0.220810,0.964520,0.144718,-0.220810,0.964520,0.144718,-0.220810,0.964520,0.144718,-0.252475,-0.349250,0.902375, + -0.252475,-0.349250,0.902375,-0.252475,-0.349250,0.902375,-0.252472,-0.349251,0.902375,-0.252472,-0.349251,0.902375, + -0.252472,-0.349251,0.902375,0.542873,0.698910,0.465633,0.542873,0.698910,0.465633,0.542873,0.698910,0.465633, + 0.542873,0.698910,0.465633,-0.530418,-0.760944,-0.373659,-0.530418,-0.760944,-0.373659,-0.530418,-0.760944,-0.373659, + -0.530418,-0.760944,-0.373659,-0.254727,0.908345,0.331698,-0.254727,0.908345,0.331698,-0.254727,0.908345,0.331698, + -0.254727,0.908345,0.331698,0.250296,-0.939769,-0.232778,0.250296,-0.939769,-0.232778,0.250296,-0.939769,-0.232778, + 0.250296,-0.939769,-0.232778,-0.237237,0.956365,0.170544,-0.237237,0.956365,0.170544,-0.237237,0.956365,0.170544, + -0.237237,0.956365,0.170544,0.844140,-0.510939,-0.162386,0.844140,-0.510939,-0.162386,0.844140,-0.510939,-0.162386, + 0.844140,-0.510939,-0.162386,-0.787952,0.608751,-0.092494,-0.787952,0.608751,-0.092494,-0.787952,0.608751,-0.092494, + -0.787952,0.608751,-0.092494,0.202150,0.278241,-0.938998,0.202150,0.278241,-0.938998,0.202150,0.278241,-0.938998, + 0.227958,0.436060,-0.870567,0.227958,0.436060,-0.870567,0.227958,0.436060,-0.870567,0.275938,0.258274,-0.925826, + 0.275938,0.258274,-0.925826,0.275938,0.258274,-0.925826,0.174861,0.402093,-0.898746,0.174861,0.402093,-0.898746, + 0.174861,0.402093,-0.898746,0.328479,0.292830,-0.897971,0.328479,0.292830,-0.897971,0.328479,0.292830,-0.897971, + 0.161711,0.333227,-0.928875,0.161711,0.333227,-0.928875,0.161711,0.333227,-0.928875,0.340630,0.358158,-0.869307, + 0.340630,0.358158,-0.869307,0.340630,0.358158,-0.869307,0.303578,0.416175,-0.857111,0.303578,0.416175,-0.857111, + 0.303578,0.416175,-0.857111,0.962989,0.217627,0.159034,0.962989,0.217627,0.159034,0.962989,0.217627,0.159034, + 0.962989,0.217627,0.159034,-0.918673,-0.069389,-0.388876,-0.918673,-0.069389,-0.388876,-0.918673,-0.069389,-0.388876, + -0.918673,-0.069389,-0.388876,-0.520788,-0.669095,-0.530181,-0.520788,-0.669095,-0.530181,-0.520788,-0.669095,-0.530181, + -0.520788,-0.669095,-0.530181,0.539131,0.794053,0.280744,0.539131,0.794053,0.280744,0.539131,0.794053,0.280744, + 0.539131,0.794053,0.280744,0.275064,-0.861455,-0.426890,0.275064,-0.861455,-0.426890,0.275064,-0.861455,-0.426890, + 0.275064,-0.861455,-0.426890,0.924207,0.380436,-0.033316,0.924207,0.380436,-0.033316,0.924207,0.380436,-0.033316, + 0.924207,0.380436,-0.033316,0.298923,0.005625,0.954261,0.298923,0.005625,0.954261,0.298923,0.005625,0.954261, + 0.298923,0.005625,0.954261,-0.820077,-0.393943,0.415069,-0.820077,-0.393943,0.415069,-0.820077,-0.393943,0.415069, + -0.820077,-0.393943,0.415069,-0.273904,0.044818,-0.960712,-0.273904,0.044818,-0.960712,-0.273904,0.044818,-0.960712, + -0.273904,0.044818,-0.960712,0.929370,0.291104,0.227003,0.929370,0.291104,0.227003,0.929370,0.291104,0.227003, + 0.929370,0.291104,0.227003,0.098746,0.390728,-0.915194,0.098746,0.390728,-0.915194,0.098746,0.390728,-0.915194, + 0.098746,0.390728,-0.915194,-0.252467,-0.349254,0.902375,-0.252467,-0.349254,0.902375,-0.252467,-0.349254,0.902375, + -0.252476,-0.349243,0.902378,-0.252476,-0.349243,0.902378,-0.252476,-0.349243,0.902378,-0.252472,-0.349255,0.902374, + -0.252472,-0.349255,0.902374,-0.252472,-0.349255,0.902374,-0.252474,-0.349250,0.902375,-0.252474,-0.349250,0.902375, + -0.252474,-0.349250,0.902375,-0.252472,-0.349249,0.902376,-0.252472,-0.349249,0.902376,-0.252472,-0.349249,0.902376, + -0.227589,0.100407,-0.968567,-0.227589,0.100407,-0.968567,-0.227589,0.100407,-0.968567,-0.227589,0.100407,-0.968567, + 0.255818,-0.945068,-0.203479,0.255818,-0.945068,-0.203479,0.255818,-0.945068,-0.203479,0.255818,-0.945068,-0.203479, + 0.335043,-0.925838,-0.174842,0.335043,-0.925838,-0.174842,0.335043,-0.925838,-0.174842,0.335043,-0.925838,-0.174842, + -0.270185,0.204294,-0.940885,-0.270185,0.204294,-0.940885,-0.270185,0.204294,-0.940885,-0.270185,0.204294,-0.940885, + -0.732696,-0.375448,0.567623,-0.732696,-0.375448,0.567623,-0.732696,-0.375448,0.567623,-0.732696,-0.375448,0.567623, + 0.126301,-0.986674,0.102574,0.126301,-0.986674,0.102574,0.126301,-0.986674,0.102574,0.128341,-0.991251,0.030816, + 0.128341,-0.991251,0.030816,0.128341,-0.991251,0.030816,0.128341,-0.991251,0.030816,0.696741,-0.716457,0.035229, + 0.696741,-0.716457,0.035229,0.696741,-0.716457,0.035229,0.696741,-0.716457,0.035229,0.013151,-0.983422,0.180853, + 0.013151,-0.983422,0.180853,0.013151,-0.983422,0.180853,0.013151,-0.983422,0.180853,0.144437,0.874474,0.463069, + 0.144437,0.874474,0.463069,0.144437,0.874474,0.463069,0.144437,0.874474,0.463069,-0.594016,0.296760,0.747715, + -0.594016,0.296760,0.747715,-0.594016,0.296760,0.747715,-0.594016,0.296760,0.747715,-0.464812,0.550313,0.693617, + -0.464812,0.550313,0.693617,-0.464812,0.550313,0.693617,-0.464812,0.550313,0.693617,-0.310763,0.217202,-0.925337, + -0.310763,0.217202,-0.925337,-0.310763,0.217202,-0.925337,-0.310763,0.217202,-0.925337,-0.745594,-0.247162,0.618870, + -0.745594,-0.247162,0.618870,-0.745594,-0.247162,0.618870,-0.745594,-0.247162,0.618870,-0.083558,0.011643,-0.996435, + -0.083558,0.011643,-0.996435,-0.083558,0.011643,-0.996435,-0.083558,0.011643,-0.996435,0.905194,-0.390925,0.166738, + 0.905194,-0.390925,0.166738,0.905194,-0.390925,0.166738,0.905194,-0.390925,0.166738,0.497433,0.201068,-0.843879, + 0.497433,0.201068,-0.843879,0.497433,0.201068,-0.843879,0.497433,0.201068,-0.843879,-0.689746,-0.085000,-0.719045, + -0.689746,-0.085000,-0.719045,-0.689746,-0.085000,-0.719045,-0.689746,-0.085000,-0.719045,-0.785644,-0.230768,0.574030, + -0.785644,-0.230768,0.574030,-0.785644,-0.230768,0.574030,-0.785644,-0.230768,0.574030,0.726721,0.059614,0.684341, + 0.726721,0.059614,0.684341,0.726721,0.059614,0.684341,0.726721,0.059614,0.684341,0.242429,0.209723,-0.947230, + 0.242429,0.209723,-0.947230,0.242429,0.209723,-0.947230,0.242429,0.209723,-0.947230,-0.772814,-0.617597,0.146056, + -0.772814,-0.617597,0.146056,-0.772814,-0.617597,0.146056,-0.772814,-0.617597,0.146056,0.773944,0.041891,0.631867, + 0.773944,0.041891,0.631867,0.773944,0.041891,0.631867,0.773944,0.041891,0.631867,-0.196868,0.948609,0.247757, + -0.196868,0.948609,0.247757,-0.196868,0.948609,0.247757,-0.196868,0.948609,0.247757,-0.186646,0.968531,0.164658, + -0.186646,0.968531,0.164658,-0.186646,0.968531,0.164658,-0.186646,0.968531,0.164658,0.815735,0.006080,0.578394, + 0.815735,0.006080,0.578394,0.815735,0.006080,0.578394,0.815735,0.006080,0.578394,-0.875164,-0.237132,0.421730, + -0.875164,-0.237132,0.421730,-0.875164,-0.237132,0.421730,-0.875164,-0.237132,0.421730,-0.509733,0.834507,0.209212, + -0.509733,0.834507,0.209212,-0.509733,0.834507,0.209212,-0.451836,0.857700,0.245347,-0.451836,0.857700,0.245347, + -0.451836,0.857700,0.245347,-0.451836,0.857700,0.245347,-0.209162,0.966979,-0.145610,-0.209162,0.966979,-0.145610, + -0.209162,0.966979,-0.145610,-0.209162,0.966979,-0.145610,-0.717901,0.601413,0.350601,-0.717901,0.601413,0.350601, + -0.717901,0.601413,0.350601,-0.717901,0.601413,0.350601,0.104198,-0.633434,-0.766749,0.104198,-0.633434,-0.766749, + 0.104198,-0.633434,-0.766749,0.104198,-0.633434,-0.766749,-0.419907,-0.880212,-0.221147,-0.419907,-0.880212,-0.221147, + -0.419907,-0.880212,-0.221147,-0.419907,-0.880212,-0.221147,-0.174426,-0.823594,-0.539694,-0.174426,-0.823594,-0.539694, + -0.174426,-0.823594,-0.539694,-0.174426,-0.823594,-0.539694,0.468963,-0.262528,0.843299,0.468963,-0.262528,0.843299, + 0.468963,-0.262528,0.843299,0.468963,-0.262528,0.843299,0.274134,0.210817,-0.938300,0.274134,0.210817,-0.938300, + 0.274134,0.210817,-0.938300,0.274134,0.210817,-0.938300,0.477311,0.362213,0.800610,0.477311,0.362213,0.800610, + 0.477311,0.362213,0.800610,0.477311,0.362213,0.800610,-0.014947,0.724801,-0.688796,-0.014947,0.724801,-0.688796, + -0.014947,0.724801,-0.688796,-0.014947,0.724801,-0.688796,0.717156,0.278191,0.638981,0.717156,0.278191,0.638981, + 0.717156,0.278191,0.638981,0.717156,0.278191,0.638981,0.669347,0.003045,0.742944,0.669347,0.003045,0.742944, + 0.669347,0.003045,0.742944,0.669347,0.003045,0.742944,-0.520708,-0.669235,-0.530083,-0.520708,-0.669235,-0.530083, + -0.520708,-0.669235,-0.530083,-0.520708,-0.669235,-0.530083,-0.521418,-0.668636,-0.530141,-0.521418,-0.668636,-0.530141, + -0.521418,-0.668636,-0.530141,-0.521418,-0.668636,-0.530141,0.338382,0.408430,-0.847752,0.338382,0.408430,-0.847752, + 0.338382,0.408430,-0.847752,0.338382,0.408430,-0.847752,-0.325689,-0.418320,0.847900,-0.325689,-0.418320,0.847900, + -0.325689,-0.418320,0.847900,-0.325689,-0.418320,0.847900,0.823269,-0.558262,-0.102820,0.823269,-0.558262,-0.102820, + 0.823269,-0.558262,-0.102820,0.823269,-0.558262,-0.102820,-0.786320,0.617760,-0.008586,-0.786320,0.617760,-0.008586, + -0.786320,0.617760,-0.008586,-0.786320,0.617760,-0.008586,0.303219,0.435651,-0.847506,0.303219,0.435651,-0.847506, + 0.303219,0.435651,-0.847506,0.303219,0.435651,-0.847506,-0.280828,-0.452304,0.846497,-0.280828,-0.452304,0.846497, + -0.280828,-0.452304,0.846497,-0.280828,-0.452304,0.846497,0.800760,-0.598099,-0.032593,0.800760,-0.598099,-0.032593, + 0.800760,-0.598099,-0.032593,0.800760,-0.598099,-0.032593,-0.775970,0.629961,-0.031941,-0.775970,0.629961,-0.031941, + -0.775970,0.629961,-0.031941,-0.775970,0.629961,-0.031941,-0.781889,0.614272,-0.106392,-0.781889,0.614272,-0.106392, + -0.781889,0.614272,-0.106392,-0.781889,0.614272,-0.106392,0.542850,0.785267,0.297774,0.542850,0.785267,0.297774, + 0.542850,0.785267,0.297774,0.542850,0.785267,0.297774,0.192854,0.228266,-0.954307,0.192854,0.228266,-0.954307, + 0.192854,0.228266,-0.954307,0.192854,0.228266,-0.954307,-0.216942,-0.211082,0.953090,-0.216942,-0.211082,0.953090, + -0.216942,-0.211082,0.953090,-0.216942,-0.211082,0.953090,-0.817521,0.575389,-0.024230,-0.817521,0.575389,-0.024230, + -0.817521,0.575389,-0.024230,-0.817521,0.575389,-0.024230,0.829054,-0.557418,-0.044205,0.829054,-0.557418,-0.044205, + 0.829054,-0.557418,-0.044205,0.829054,-0.557418,-0.044205,0.349992,0.290922,-0.890432,0.349992,0.290922,-0.890432, + 0.349992,0.290922,-0.890432,0.349992,0.290922,-0.890432,-0.364308,-0.311266,0.877720,-0.364308,-0.311266,0.877720, + -0.364308,-0.311266,0.877720,-0.364308,-0.311266,0.877720,-0.512998,-0.730184,-0.451291,-0.512998,-0.730184,-0.451291, + -0.512998,-0.730184,-0.451291,-0.512998,-0.730184,-0.451291,0.538515,0.750752,0.382588,0.538515,0.750752,0.382588, + 0.538515,0.750752,0.382588,0.538515,0.750752,0.382588,0.550769,-0.809129,-0.204851,0.550769,-0.809129,-0.204851, + 0.550769,-0.809129,-0.204851,0.788217,0.287368,-0.544182,0.788217,0.287368,-0.544182,0.788217,0.287368,-0.544182, + -0.891837,-0.240323,0.383239,-0.891837,-0.240323,0.383239,-0.891837,-0.240323,0.383239,-0.307376,-0.941915,0.135339, + -0.307376,-0.941915,0.135339,-0.307376,-0.941915,0.135339,0.190717,0.926692,-0.323833,0.190717,0.926692,-0.323833, + 0.190717,0.926692,-0.323833,-0.862969,-0.194054,0.466505,-0.862969,-0.194054,0.466505,-0.862969,-0.194054,0.466505, + -0.862969,-0.194054,0.466505,-0.548476,0.809480,0.209563,-0.548476,0.809480,0.209563,-0.548476,0.809480,0.209563, + -0.798764,-0.173820,0.575988,-0.798764,-0.173820,0.575988,-0.798764,-0.173820,0.575988,0.838019,0.359859,-0.410152, + 0.838019,0.359859,-0.410152,0.838019,0.359859,-0.410152,0.044417,0.994568,0.094137,0.044417,0.994568,0.094137, + 0.044417,0.994568,0.094137,-0.321902,-0.902827,0.285102,-0.321902,-0.902827,0.285102,-0.321902,-0.902827,0.285102, + -0.382500,-0.909239,0.164249,-0.382500,-0.909239,0.164249,-0.382500,-0.909239,0.164249,-0.221529,0.969702,-0.102969, + -0.221529,0.969702,-0.102969,-0.221529,0.969702,-0.102969,0.763414,0.344822,-0.546166,0.763414,0.344822,-0.546166, + 0.763414,0.344822,-0.546166,-0.919978,-0.093719,0.380602,-0.919978,-0.093719,0.380602,-0.919978,-0.093719,0.380602, + 0.870164,0.156597,-0.467217,0.870164,0.156597,-0.467217,0.870164,0.156597,-0.467217,0.870164,0.156597,-0.467217, + 0.381760,-0.543670,0.747450,0.381760,-0.543670,0.747450,0.381760,-0.543670,0.747450,0.393301,0.681919,0.616686, + 0.393301,0.681919,0.616686,0.393301,0.681919,0.616686,0.949889,0.171246,0.261505,0.949889,0.171246,0.261505, + 0.949889,0.171246,0.261505,-0.244048,0.056919,0.968091,-0.244048,0.056919,0.968091,-0.244048,0.056919,0.968091, + 0.376277,-0.760756,-0.528834,0.376277,-0.760756,-0.528834,0.376277,-0.760756,-0.528834,0.376277,-0.760756,-0.528834, + 0.010700,-0.678904,0.734149,0.010700,-0.678904,0.734149,0.010700,-0.678904,0.734149,-0.567309,-0.817301,-0.100895, + -0.567309,-0.817301,-0.100895,-0.567309,-0.817301,-0.100895,0.028027,-0.663578,-0.747582,0.028027,-0.663578,-0.747582, + 0.028027,-0.663578,-0.747582,0.501270,-0.863644,-0.053363,0.501270,-0.863644,-0.053363,0.501270,-0.863644,-0.053363, + -0.800629,0.369751,0.471464,-0.800629,0.369751,0.471464,-0.800629,0.369751,0.471464,-0.800629,0.369751,0.471464, + -0.442068,0.564763,0.696863,-0.442068,0.564763,0.696863,-0.442068,0.564763,0.696863,-0.442068,0.564763,0.696863, + 0.019144,-0.957255,0.288611,0.019144,-0.957255,0.288611,0.019144,-0.957255,0.288611,0.019144,-0.957255,0.288611, + -0.998303,-0.009261,0.057494,-0.998303,-0.009261,0.057494,-0.998303,-0.009261,0.057494,-0.998303,-0.009261,0.057494, + 0.043430,-0.944133,0.326690,0.043430,-0.944133,0.326690,0.043430,-0.944133,0.326690,0.043430,-0.944133,0.326690, + 0.478808,0.187085,0.857754,0.478808,0.187085,0.857754,0.478808,0.187085,0.857754,0.478808,0.187085,0.857754, + 0.131831,0.958174,-0.254015,0.131831,0.958174,-0.254015,0.131831,0.958174,-0.254015,0.131831,0.958174,-0.254015, + -0.843359,0.457473,0.281893,-0.843359,0.457473,0.281893,-0.843359,0.457473,0.281893,-0.968129,0.183925,0.169994, + -0.968129,0.183925,0.169994,-0.968129,0.183925,0.169994,-0.900449,0.054493,0.431535,-0.900449,0.054493,0.431535, + -0.900449,0.054493,0.431535,-0.758478,0.321836,0.566685,-0.758478,0.321836,0.566685,-0.758478,0.321836,0.566685, + -0.587416,-0.231744,-0.775395,-0.587416,-0.231744,-0.775395,-0.587416,-0.231744,-0.775395,-0.587416,-0.231744,-0.775395, + 0.798114,0.523598,0.298092,0.798114,0.523598,0.298092,0.798114,0.523598,0.298092,0.798114,0.523598,0.298092, + 0.326433,0.604923,-0.726298,0.326433,0.604923,-0.726298,0.326433,0.604923,-0.726298,0.326433,0.604923,-0.726298, + 0.022682,-0.107562,0.993940,0.022682,-0.107562,0.993940,0.022682,-0.107562,0.993940,0.022682,-0.107562,0.993940, + 0.982061,0.140444,-0.125826,0.982061,0.140444,-0.125826,0.982061,0.140444,-0.125826,0.982061,0.140444,-0.125826, + -0.399486,-0.419991,-0.814873,-0.399486,-0.419991,-0.814873,-0.399486,-0.419991,-0.814873,-0.399486,-0.419991,-0.814873, + 0.771939,-0.620611,-0.137665,0.771939,-0.620611,-0.137665,0.771939,-0.620611,-0.137665,0.771939,-0.620611,-0.137665, + 0.304943,0.215247,0.927728,0.304943,0.215247,0.927728,0.304943,0.215247,0.927728,0.304943,0.215247,0.927728, + 0.087959,0.953111,-0.289557,0.087959,0.953111,-0.289557,0.087959,0.953111,-0.289557,0.087959,0.953111,-0.289557, + -0.647560,-0.218233,-0.730096,-0.647560,-0.218233,-0.730096,-0.647560,-0.218233,-0.730096,-0.647560,-0.218233,-0.730096, + 0.640750,0.767594,-0.015423,0.640750,0.767594,-0.015423,0.640750,0.767594,-0.015423,0.090686,0.797670,0.596238, + 0.090686,0.797670,0.596238,0.090686,0.797670,0.596238,-0.672605,0.739613,-0.023978,-0.672605,0.739613,-0.023978, + -0.672605,0.739613,-0.023978,0.030638,0.827611,-0.560466,0.030638,0.827611,-0.560466,0.030638,0.827611,-0.560466, + -0.015622,-0.203151,-0.979023,-0.015622,-0.203151,-0.979023,-0.015622,-0.203151,-0.979023,-0.015622,-0.203151,-0.979023, + 0.992696,0.012663,0.119978,0.992696,0.012663,0.119978,0.992696,0.012663,0.119978,0.992696,0.012663,0.119978, + 0.011687,-0.399291,0.916750,0.011687,-0.399291,0.916750,0.011687,-0.399291,0.916750,0.011687,-0.399291,0.916750, + -0.863565,0.497430,0.082579,-0.863565,0.497430,0.082579,-0.863565,0.497430,0.082579,0.111678,0.160289,0.980732, + 0.111678,0.160289,0.980732,0.111678,0.160289,0.980732,-0.830962,0.053981,-0.553705,-0.830962,0.053981,-0.553705, + -0.830962,0.053981,-0.553705,0.694272,-0.718348,-0.044296,0.694272,-0.718348,-0.044296,0.694272,-0.718348,-0.044296, + 0.037273,0.310289,0.949911,0.037273,0.310289,0.949911,0.037273,0.310289,0.949911,0.037273,0.310289,0.949911, + 0.975749,0.157895,0.151604,0.975749,0.157895,0.151604,0.975749,0.157895,0.151604,0.975749,0.157895,0.151604, + -0.949870,0.311678,0.024585,-0.949870,0.311678,0.024585,-0.949870,0.311678,0.024585,-0.949870,0.311678,0.024585, + 0.050208,0.098285,-0.993891,0.050208,0.098285,-0.993891,0.050208,0.098285,-0.993891,0.050208,0.098285,-0.993891, + 0.308991,-0.252711,0.916876,0.308991,-0.252711,0.916876,0.308991,-0.252711,0.916876,0.308991,-0.252711,0.916876, + -0.300288,-0.426744,-0.853063,-0.300288,-0.426744,-0.853063,-0.300288,-0.426744,-0.853063,-0.300288,-0.426744,-0.853063, + 0.201343,-0.936324,-0.287676,0.201343,-0.936324,-0.287676,0.201343,-0.936324,-0.287676,0.201343,-0.936324,-0.287676, + 0.209881,-0.827182,0.521268,0.209881,-0.827182,0.521268,0.209881,-0.827182,0.521268,0.209881,-0.827182,0.521268, + -0.151285,-0.288757,-0.945374,-0.151285,-0.288757,-0.945374,-0.151285,-0.288757,-0.945374,0.493584,-0.055045,0.867954, + 0.493584,-0.055045,0.867954,0.493584,-0.055045,0.867954,0.493584,-0.055045,0.867954,-0.494581,-0.518288,0.697687, + -0.494581,-0.518288,0.697687,-0.494581,-0.518288,0.697687,0.970271,-0.111642,-0.214735,0.970271,-0.111642,-0.214735, + 0.970271,-0.111642,-0.214735,0.970271,-0.111642,-0.214735,0.365136,-0.018788,-0.930765,0.365136,-0.018788,-0.930765, + 0.365136,-0.018788,-0.930765,0.365136,-0.018788,-0.930765,-0.938822,-0.342054,0.040162,-0.938822,-0.342054,0.040162, + -0.938822,-0.342054,0.040162,0.740074,-0.516649,-0.430539,0.740074,-0.516649,-0.430539,0.740074,-0.516649,-0.430539, + 0.740074,-0.516649,-0.430539,0.807579,-0.575160,0.130412,0.807579,-0.575160,0.130412,0.807579,-0.575160,0.130412, + 0.807579,-0.575160,0.130412,-0.318572,-0.647658,-0.692135,-0.318572,-0.647658,-0.692135,-0.318572,-0.647658,-0.692135, + -0.318572,-0.647658,-0.692135,0.727774,-0.424440,0.538698,0.727774,-0.424440,0.538698,0.727774,-0.424440,0.538698, + 0.727774,-0.424440,0.538698,0.509779,-0.751241,-0.419240,0.509779,-0.751241,-0.419240,0.509779,-0.751241,-0.419240, + 0.509779,-0.751241,-0.419240,0.834238,-0.296253,-0.465060,0.834238,-0.296253,-0.465060,0.834238,-0.296253,-0.465060, + 0.834238,-0.296253,-0.465060,0.898780,-0.164136,0.406516,0.898780,-0.164136,0.406516,0.898780,-0.164136,0.406516, + 0.898780,-0.164136,0.406516,0.724387,0.629511,-0.281033,0.724387,0.629511,-0.281033,0.724387,0.629511,-0.281033, + 0.724387,0.629511,-0.281033,0.468951,0.717600,-0.514913,0.468951,0.717600,-0.514913,0.468951,0.717600,-0.514913, + 0.810475,0.582152,0.065030,0.810475,0.582152,0.065030,0.810475,0.582152,0.065030,0.810475,0.582152,0.065030, + -0.136691,-0.306301,-0.942070,-0.136691,-0.306301,-0.942070,-0.136691,-0.306301,-0.942070,-0.136691,-0.306301,-0.942070, + 0.664365,-0.561292,-0.493528,0.664365,-0.561292,-0.493528,0.664365,-0.561292,-0.493528,0.664365,-0.561292,-0.493528, + 0.070748,-0.009706,0.997447,0.070748,-0.009706,0.997447,0.070748,-0.009706,0.997447,0.068880,-0.886834,0.456926, + 0.068880,-0.886834,0.456926,0.068880,-0.886834,0.456926,0.107889,0.038966,0.993399,0.107889,0.038966,0.993399, + 0.107889,0.038966,0.993399,0.464123,0.885718,-0.009666,0.464123,0.885718,-0.009666,0.464123,0.885718,-0.009666, + 0.464123,0.885718,-0.009666,0.428963,0.746028,0.509345,0.428963,0.746028,0.509345,0.428963,0.746028,0.509345, + 0.428963,0.746028,0.509345,0.190448,0.024977,-0.981380,0.190448,0.024977,-0.981380,0.190448,0.024977,-0.981380, + 0.190448,0.024977,-0.981380,0.447579,0.776285,0.443909,0.447579,0.776285,0.443909,0.447579,0.776285,0.443909, + 0.447579,0.776285,0.443909,-0.338289,0.938370,0.070865,-0.338289,0.938370,0.070865,-0.338289,0.938370,0.070865, + -0.338289,0.938370,0.070865,0.439932,0.004893,0.898018,0.439932,0.004893,0.898018,0.439932,0.004893,0.898018, + -0.191752,0.795947,-0.574195,-0.191752,0.795947,-0.574195,-0.191752,0.795947,-0.574195,0.401891,0.408563,-0.819488, + 0.401891,0.408563,-0.819488,0.401891,0.408563,-0.819488,0.401891,0.408563,-0.819488,0.726771,0.503259,0.467475, + 0.726771,0.503259,0.467475,0.726771,0.503259,0.467475,0.726771,0.503259,0.467475,0.704434,0.680077,0.203147, + 0.704434,0.680077,0.203147,0.704434,0.680077,0.203147,0.471571,0.193768,-0.860276,0.471571,0.193768,-0.860276, + 0.471571,0.193768,-0.860276,0.471571,0.193768,-0.860276,-0.545356,-0.760099,0.353323,-0.545356,-0.760099,0.353323, + -0.545356,-0.760099,0.353323,-0.545356,-0.760099,0.353323,-0.996009,-0.034871,-0.082159,-0.996009,-0.034871,-0.082159, + -0.996009,-0.034871,-0.082159,-0.996009,-0.034871,-0.082159,0.914444,0.126147,0.384550,0.914444,0.126147,0.384550, + 0.914444,0.126147,0.384550,0.914444,0.126147,0.384550,-0.015401,-0.827382,-0.561429,-0.015401,-0.827382,-0.561429, + -0.015401,-0.827382,-0.561429,0.015955,-0.880744,-0.473324,0.015955,-0.880744,-0.473324,0.015955,-0.880744,-0.473324, + 0.042510,-0.814384,-0.578767,0.042510,-0.814384,-0.578767,0.042510,-0.814384,-0.578767,0.558610,-0.829415,-0.005023, + 0.558610,-0.829415,-0.005023,0.558610,-0.829415,-0.005023,0.474832,0.540488,-0.694555,0.474832,0.540488,-0.694555, + 0.474832,0.540488,-0.694555,0.474832,0.540488,-0.694555,0.468638,0.878420,0.093577,0.468638,0.878420,0.093577, + 0.468638,0.878420,0.093577,0.468638,0.878420,0.093577,0.468638,0.878420,0.093577,0.427310,-0.126032,-0.895277, + 0.427310,-0.126032,-0.895277,0.427310,-0.126032,-0.895277,0.427310,-0.126032,-0.895277,-0.047731,-0.173113,0.983745, + -0.047731,-0.173113,0.983745,-0.047731,-0.173113,0.983745,-0.047731,-0.173113,0.983745,-0.050420,0.781267,0.622158, + -0.050420,0.781267,0.622158,-0.050420,0.781267,0.622158,-0.030830,0.806346,0.590640,-0.030830,0.806346,0.590640, + -0.030830,0.806346,0.590640,0.014628,0.830806,0.556369,0.014628,0.830806,0.556369,0.014628,0.830806,0.556369, + -0.878985,-0.415481,0.234012,-0.878985,-0.415481,0.234012,-0.878985,-0.415481,0.234012,-0.878985,-0.415481,0.234012, + -0.383745,-0.679570,0.625240,-0.383745,-0.679570,0.625240,-0.383745,-0.679570,0.625240,-0.383745,-0.679570,0.625240, + 0.835089,-0.355483,-0.419832,0.835089,-0.355483,-0.419832,0.835089,-0.355483,-0.419832,0.835089,-0.355483,-0.419832, + 0.087832,0.178567,-0.980000,0.087832,0.178567,-0.980000,0.087832,0.178567,-0.980000,0.087832,0.178567,-0.980000, + 0.631864,-0.702215,0.328090,0.631864,-0.702215,0.328090,0.631864,-0.702215,0.328090,0.631864,-0.702215,0.328090, + 0.076653,-0.097866,0.992243,0.076653,-0.097866,0.992243,0.076653,-0.097866,0.992243,0.076653,-0.097866,0.992243, + -0.538218,0.666810,0.515447,-0.538218,0.666810,0.515447,-0.538218,0.666810,0.515447,-0.538218,0.666810,0.515447, + 0.349607,-0.472197,0.809200,0.349607,-0.472197,0.809200,0.349607,-0.472197,0.809200,0.349607,-0.472197,0.809200, + -0.517095,0.347032,0.782420,-0.517095,0.347032,0.782420,-0.517095,0.347032,0.782420,-0.517095,0.347032,0.782420, + 0.495587,0.295679,-0.816680,0.495587,0.295679,-0.816680,0.495587,0.295679,-0.816680,-0.180381,-0.686929,0.703983, + -0.180381,-0.686929,0.703983,-0.180381,-0.686929,0.703983,0.395915,0.672624,0.625163,0.395915,0.672624,0.625163, + 0.395915,0.672624,0.625163,0.395915,0.672624,0.625163,0.253622,0.073132,0.964535,0.253622,0.073132,0.964535, + 0.253622,0.073132,0.964535,0.193625,0.685289,0.702060,0.193625,0.685289,0.702060,0.193625,0.685289,0.702060, + 0.193625,0.685289,0.702060,0.425876,0.343680,-0.836967,0.425876,0.343680,-0.836967,0.425876,0.343680,-0.836967, + 0.425876,0.343680,-0.836967,0.430206,-0.723367,0.540059,0.430206,-0.723367,0.540059,0.430206,-0.723367,0.540059, + -0.186839,-0.903861,0.384871,-0.186839,-0.903861,0.384871,-0.186839,-0.903861,0.384871,0.281723,-0.565256,-0.775318, + 0.281723,-0.565256,-0.775318,0.281723,-0.565256,-0.775318,0.983006,-0.103353,-0.151719,0.983006,-0.103353,-0.151719, + 0.983006,-0.103353,-0.151719,0.983006,-0.103353,-0.151719,0.446654,0.773746,0.449241,0.446654,0.773746,0.449241, + 0.446654,0.773746,0.449241,0.446654,0.773746,0.449241,-0.728545,0.344655,-0.591976,-0.728545,0.344655,-0.591976, + -0.728545,0.344655,-0.591976,-0.728545,0.344655,-0.591976,0.654283,-0.454865,0.604162,0.654283,-0.454865,0.604162, + 0.654283,-0.454865,0.604162,0.654283,-0.454865,0.604162,-0.887052,0.461528,-0.011486,-0.887052,0.461528,-0.011486, + -0.887052,0.461528,-0.011486,-0.887052,0.461528,-0.011486,-0.345246,-0.666006,-0.661242,-0.345246,-0.666006,-0.661242, + -0.345246,-0.666006,-0.661242,0.188911,-0.975769,-0.110400,0.188911,-0.975769,-0.110400,0.188911,-0.975769,-0.110400, + 0.322836,-0.767394,0.553971,0.322836,-0.767394,0.553971,0.322836,-0.767394,0.553971,0.322836,-0.767394,0.553971, + -0.328514,-0.814717,0.477822,-0.328514,-0.814717,0.477822,-0.328514,-0.814717,0.477822,-0.301663,-0.801501,0.516329, + -0.301663,-0.801501,0.516329,-0.301663,-0.801501,0.516329,-0.025554,-0.947469,0.318824,-0.025554,-0.947469,0.318824, + -0.025554,-0.947469,0.318824,0.802962,-0.589040,0.091012,0.802962,-0.589040,0.091012,0.802962,-0.589040,0.091012, + 0.827461,-0.486982,-0.279566,0.827461,-0.486982,-0.279566,0.827461,-0.486982,-0.279566,0.827575,-0.558264,0.058831, + 0.827575,-0.558264,0.058831,0.827575,-0.558264,0.058831,0.145401,-0.827508,-0.542299,0.145401,-0.827508,-0.542299, + 0.145401,-0.827508,-0.542299,0.145401,-0.827508,-0.542299,-0.148683,0.786562,0.599344,-0.148683,0.786562,0.599344, + -0.148683,0.786562,0.599344,-0.148683,0.786562,0.599344,0.352283,-0.356445,-0.865357,0.352283,-0.356445,-0.865357, + 0.352283,-0.356445,-0.865357,0.352283,-0.356445,-0.865357,0.939207,-0.129072,-0.318167,0.939207,-0.129072,-0.318167, + 0.939207,-0.129072,-0.318167,0.939207,-0.129072,-0.318167,0.761161,-0.004202,0.648549,0.761161,-0.004202,0.648549, + 0.761161,-0.004202,0.648549,0.761161,-0.004202,0.648549,0.366645,-0.879046,-0.304712,0.366645,-0.879046,-0.304712, + 0.366645,-0.879046,-0.304712,0.366645,-0.879046,-0.304712,0.715274,0.544046,0.438632,0.715274,0.544046,0.438632, + 0.715274,0.544046,0.438632,0.715274,0.544046,0.438632,0.697015,0.692560,-0.185823,0.697015,0.692560,-0.185823, + 0.697015,0.692560,-0.185823,0.697015,0.692560,-0.185823,-0.157054,-0.787887,0.595457,-0.157054,-0.787887,0.595457, + -0.157054,-0.787887,0.595457,-0.157054,-0.787887,0.595457,0.831582,-0.429465,-0.352181,0.831582,-0.429465,-0.352181, + 0.831582,-0.429465,-0.352181,0.831582,-0.429465,-0.352181,0.211219,-0.946236,0.244999,0.211219,-0.946236,0.244999, + 0.211219,-0.946236,0.244999,0.211219,-0.946236,0.244999,0.399883,0.057817,-0.914741,0.399883,0.057817,-0.914741, + 0.399883,0.057817,-0.914741,0.399883,0.057817,-0.914741,-0.008545,0.935010,-0.354520,-0.008545,0.935010,-0.354520, + -0.008545,0.935010,-0.354520,0.263891,-0.586958,0.765403,0.263891,-0.586958,0.765403,0.263891,-0.586958,0.765403, + 0.636512,0.125059,-0.761060,0.636512,0.125059,-0.761060,0.636512,0.125059,-0.761060,-0.546005,-0.125485,-0.828331, + -0.546005,-0.125485,-0.828331,-0.546005,-0.125485,-0.828331,-0.546005,-0.125485,-0.828331,-0.868717,-0.138791,0.475466, + -0.868717,-0.138791,0.475466,-0.868717,-0.138791,0.475466,-0.339731,-0.116570,-0.933271,-0.339731,-0.116570,-0.933271, + -0.339731,-0.116570,-0.933271,-0.339731,-0.116570,-0.933271,0.245901,0.958881,0.141707,0.245901,0.958881,0.141707, + 0.245901,0.958881,0.141707,0.245901,0.958881,0.141707,0.569480,-0.670553,-0.475449,0.569480,-0.670553,-0.475449, + 0.569480,-0.670553,-0.475449,0.569480,-0.670553,-0.475449,0.389273,-0.859754,0.330591,0.389273,-0.859754,0.330591, + 0.389273,-0.859754,0.330591,0.389273,-0.859754,0.330591,0.549024,-0.796604,-0.252973,0.549024,-0.796604,-0.252973, + 0.549024,-0.796604,-0.252973,0.549024,-0.796604,-0.252973,0.253181,0.284816,-0.924543,0.253181,0.284816,-0.924543, + 0.253181,0.284816,-0.924543,0.253181,0.284816,-0.924543,0.101670,0.470649,-0.876443,0.101670,0.470649,-0.876443, + 0.101670,0.470649,-0.876443,0.798745,0.590424,0.115780,0.798745,0.590424,0.115780,0.798745,0.590424,0.115780, + 0.735840,0.600252,-0.313427,0.735840,0.600252,-0.313427,0.735840,0.600252,-0.313427,0.289966,0.696278,-0.656595, + 0.289966,0.696278,-0.656595,0.289966,0.696278,-0.656595,0.289966,0.696278,-0.656595,0.563772,0.763281,-0.315537, + 0.563772,0.763281,-0.315537,0.563772,0.763281,-0.315537,-0.017937,0.317516,0.948083,-0.017937,0.317516,0.948083, + -0.017937,0.317516,0.948083,0.036184,-0.934921,-0.353006,0.036184,-0.934921,-0.353006,0.036184,-0.934921,-0.353006, + 0.036184,-0.934921,-0.353006,-0.078665,-0.972968,0.217130,-0.078665,-0.972968,0.217130,-0.078665,-0.972968,0.217130, + -0.304920,-0.623831,-0.719624,-0.304920,-0.623831,-0.719624,-0.304920,-0.623831,-0.719624,-0.851450,0.053197,-0.521732, + -0.851450,0.053197,-0.521732,-0.851450,0.053197,-0.521732,-0.871487,-0.458625,0.173703,-0.871487,-0.458625,0.173703, + -0.871487,-0.458625,0.173703,0.158878,0.834487,0.527625,0.158878,0.834487,0.527625,0.158878,0.834487,0.527625, + 0.158878,0.834487,0.527625,-0.590817,0.758529,0.274900,-0.590817,0.758529,0.274900,-0.590817,0.758529,0.274900, + -0.590817,0.758529,0.274900,-0.298735,0.219615,0.928723,-0.298735,0.219615,0.928723,-0.298735,0.219615,0.928723, + -0.298735,0.219615,0.928723,0.547208,-0.260616,-0.795389,0.547208,-0.260616,-0.795389,0.547208,-0.260616,-0.795389, + 0.547208,-0.260616,-0.795389,-0.396966,0.220398,0.890979,-0.396966,0.220398,0.890979,-0.396966,0.220398,0.890979, + -0.396966,0.220398,0.890979,-0.947394,0.027181,-0.318914,-0.947394,0.027181,-0.318914,-0.947394,0.027181,-0.318914, + -0.947394,0.027181,-0.318914,0.252250,-0.328426,-0.910223,0.252250,-0.328426,-0.910223,0.252250,-0.328426,-0.910223, + 0.252250,-0.328426,-0.910223,0.248648,0.835027,-0.490820,0.248648,0.835027,-0.490820,0.248648,0.835027,-0.490820, + 0.381046,0.900276,-0.210491,0.381046,0.900276,-0.210491,0.381046,0.900276,-0.210491,0.117413,0.986559,-0.113645, + 0.117413,0.986559,-0.113645,0.117413,0.986559,-0.113645,-0.047356,0.913553,-0.403953,-0.047356,0.913553,-0.403953, + -0.047356,0.913553,-0.403953,0.214809,-0.272252,-0.937943,0.214809,-0.272252,-0.937943,0.214809,-0.272252,-0.937943, + 0.214809,-0.272252,-0.937943,-0.024674,0.760052,0.649393,-0.024674,0.760052,0.649393,-0.024674,0.760052,0.649393, + -0.024674,0.760052,0.649393,0.420748,0.819926,-0.388192,0.420748,0.819926,-0.388192,0.420748,0.819926,-0.388192, + 0.420748,0.819926,-0.388192,0.320672,-0.679221,0.660173,0.320672,-0.679221,0.660173,0.320672,-0.679221,0.660173, + 0.320672,-0.679221,0.660173,-0.623383,0.682813,0.380999,-0.623383,0.682813,0.380999,-0.623383,0.682813,0.380999, + -0.623383,0.682813,0.380999,0.845566,-0.054514,0.531080,0.845566,-0.054514,0.531080,0.845566,-0.054514,0.531080, + 0.845566,-0.054514,0.531080,-0.037058,-0.939883,0.339479,-0.037058,-0.939883,0.339479,-0.037058,-0.939883,0.339479, + -0.037058,-0.939883,0.339479,-0.896836,0.103069,-0.430189,-0.896836,0.103069,-0.430189,-0.896836,0.103069,-0.430189, + -0.896836,0.103069,-0.430189,0.404311,-0.120078,-0.906705,0.404311,-0.120078,-0.906705,0.404311,-0.120078,-0.906705, + 0.404311,-0.120078,-0.906705,0.833677,0.257032,0.488792,0.833677,0.257032,0.488792,0.833677,0.257032,0.488792, + 0.833677,0.257032,0.488792,0.172224,0.684383,0.708490,0.172224,0.684383,0.708490,0.172224,0.684383,0.708490, + 0.800337,0.169353,0.575135,0.800337,0.169353,0.575135,0.800337,0.169353,0.575135,0.837510,0.387952,-0.384798, + 0.837510,0.387952,-0.384798,0.837510,0.387952,-0.384798,0.247722,0.967104,-0.057821,0.247722,0.967104,-0.057821, + 0.247722,0.967104,-0.057821,-0.639847,0.523259,-0.562846,-0.639847,0.523259,-0.562846,-0.639847,0.523259,-0.562846, + -0.639847,0.523259,-0.562846,-0.449269,0.140625,0.882259,-0.449269,0.140625,0.882259,-0.449269,0.140625,0.882259, + -0.449269,0.140625,0.882259,0.204231,-0.902207,0.379884,0.204231,-0.902207,0.379884,0.204231,-0.902207,0.379884, + 0.204231,-0.902207,0.379884,0.054371,0.957934,0.281791,0.054371,0.957934,0.281791,0.054371,0.957934,0.281791, + -0.856809,0.216978,-0.467760,-0.856809,0.216978,-0.467760,-0.856809,0.216978,-0.467760,0.466124,0.601103,0.649156, + 0.466124,0.601103,0.649156,0.466124,0.601103,0.649156,0.060299,-0.957132,0.283308,0.060299,-0.957132,0.283308, + 0.060299,-0.957132,0.283308,0.685322,-0.423934,0.592127,0.685322,-0.423934,0.592127,0.685322,-0.423934,0.592127, + 0.685322,-0.423934,0.592127,-0.326226,0.216766,0.920103,-0.326226,0.216766,0.920103,-0.326226,0.216766,0.920103, + -0.326226,0.216766,0.920103,0.720462,-0.003684,-0.693485,0.720462,-0.003684,-0.693485,0.720462,-0.003684,-0.693485, + 0.720462,-0.003684,-0.693485,-0.479396,0.758051,-0.442197,-0.479396,0.758051,-0.442197,-0.479396,0.758051,-0.442197, + -0.479396,0.758051,-0.442197,-0.488757,-0.225848,0.842680,-0.488757,-0.225848,0.842680,-0.488757,-0.225848,0.842680, + -0.488757,-0.225848,0.842680,-0.772392,-0.129960,-0.621708,-0.772392,-0.129960,-0.621708,-0.772392,-0.129960,-0.621708, + -0.772392,-0.129960,-0.621708,-0.946110,-0.048066,0.320260,-0.946110,-0.048066,0.320260,-0.946110,-0.048066,0.320260, + -0.946110,-0.048066,0.320260,-0.373365,-0.392317,0.840646,-0.373365,-0.392317,0.840646,-0.373365,-0.392317,0.840646, + -0.373365,-0.392317,0.840646,-0.253961,-0.235400,-0.938131,-0.253961,-0.235400,-0.938131,-0.253961,-0.235400,-0.938131, + -0.083789,0.169120,0.982027,-0.083789,0.169120,0.982027,-0.083789,0.169120,0.982027,-0.083789,0.169120,0.982027, + 0.087565,-0.804275,0.587771,0.087565,-0.804275,0.587771,0.087565,-0.804275,0.587771,-0.747732,0.635266,0.193220, + -0.747732,0.635266,0.193220,-0.747732,0.635266,0.193220,-0.747732,0.635266,0.193220,-0.483571,0.475920,-0.734616, + -0.483571,0.475920,-0.734616,-0.483571,0.475920,-0.734616,-0.483571,0.475920,-0.734616,0.342077,-0.932921,-0.112432, + 0.342077,-0.932921,-0.112432,0.342077,-0.932921,-0.112432,-0.659539,0.605434,0.445486,-0.659539,0.605434,0.445486, + -0.659539,0.605434,0.445486,-0.659539,0.605434,0.445486,-0.359407,0.360375,0.860788,-0.359407,0.360375,0.860788, + -0.359407,0.360375,0.860788,-0.359407,0.360375,0.860788,-0.941698,-0.148111,-0.302107,-0.941698,-0.148111,-0.302107, + -0.941698,-0.148111,-0.302107,-0.941698,-0.148111,-0.302107,-0.373656,-0.254706,0.891912,-0.373656,-0.254706,0.891912, + -0.373656,-0.254706,0.891912,-0.050010,0.174597,0.983369,-0.050010,0.174597,0.983369,-0.050010,0.174597,0.983369, + -0.050010,0.174597,0.983369,-0.841400,0.331964,0.426434,-0.841400,0.331964,0.426434,-0.841400,0.331964,0.426434, + -0.841400,0.331964,0.426434,-0.505495,0.777813,0.373473,-0.505495,0.777813,0.373473,-0.505495,0.777813,0.373473, + -0.505495,0.777813,0.373473,0.135971,0.447374,0.883950,0.135971,0.447374,0.883950,0.135971,0.447374,0.883950, + 0.135971,0.447374,0.883950,0.335466,0.941303,-0.037568,0.335466,0.941303,-0.037568,0.335466,0.941303,-0.037568, + 0.335466,0.941303,-0.037568,0.256695,0.887776,-0.382050,0.256695,0.887776,-0.382050,0.256695,0.887776,-0.382050, + 0.512532,0.821011,0.251498,0.512532,0.821011,0.251498,0.512532,0.821011,0.251498,0.512532,0.821011,0.251498, + -0.823358,0.244176,-0.512308,-0.823358,0.244176,-0.512308,-0.823358,0.244176,-0.512308,-0.823358,0.244176,-0.512308, + -0.734774,0.560392,0.382188,-0.734774,0.560392,0.382188,-0.734774,0.560392,0.382188,-0.734774,0.560392,0.382188, + 0.607264,-0.439831,0.661649,0.607264,-0.439831,0.661649,0.607264,-0.439831,0.661649,-0.416635,-0.497626,0.760779, + -0.416635,-0.497626,0.760779,-0.416635,-0.497626,0.760779,0.643769,-0.390627,0.658006,0.643769,-0.390627,0.658006, + 0.643769,-0.390627,0.658006,0.699945,0.696672,-0.157242,0.699945,0.696672,-0.157242,0.699945,0.696672,-0.157242, + 0.699945,0.696672,-0.157242,0.908578,0.361605,0.209114,0.908578,0.361605,0.209114,0.908578,0.361605,0.209114, + 0.908578,0.361605,0.209114,-0.580907,0.643390,-0.498594,-0.580907,0.643390,-0.498594,-0.580907,0.643390,-0.498594, + -0.580907,0.643390,-0.498594,0.892484,0.419652,0.165422,0.892484,0.419652,0.165422,0.892484,0.419652,0.165422, + 0.892484,0.419652,0.165422,0.953900,0.250549,0.165226,0.953900,0.250549,0.165226,0.953900,0.250549,0.165226, + 0.953900,0.250549,0.165226,-0.332365,0.146982,0.931628,-0.332365,0.146982,0.931628,-0.332365,0.146982,0.931628, + 0.838949,0.357553,-0.410269,0.838949,0.357553,-0.410269,0.838949,0.357553,-0.410269,0.264038,0.717106,-0.645014, + 0.264038,0.717106,-0.645014,0.264038,0.717106,-0.645014,0.264038,0.717106,-0.645014,-0.015202,0.772027,0.635408, + -0.015202,0.772027,0.635408,-0.015202,0.772027,0.635408,-0.015202,0.772027,0.635408,0.171592,0.903735,0.392199, + 0.171592,0.903735,0.392199,0.171592,0.903735,0.392199,0.170337,0.594503,-0.785844,0.170337,0.594503,-0.785844, + 0.170337,0.594503,-0.785844,0.170337,0.594503,-0.785844,-0.387954,-0.919779,-0.059150,-0.387954,-0.919779,-0.059150, + -0.387954,-0.919779,-0.059150,-0.387954,-0.919779,-0.059150,0.928455,-0.026121,0.370527,0.928455,-0.026121,0.370527, + 0.928455,-0.026121,0.370527,0.928455,-0.026121,0.370527,-0.928233,-0.135452,-0.346463,-0.928233,-0.135452,-0.346463, + -0.928233,-0.135452,-0.346463,-0.928233,-0.135452,-0.346463,-0.617396,-0.368999,-0.694739,-0.617396,-0.368999,-0.694739, + -0.617396,-0.368999,-0.694739,-0.672334,-0.391361,-0.628334,-0.672334,-0.391361,-0.628334,-0.672334,-0.391361,-0.628334, + -0.571667,-0.210244,-0.793091,-0.571667,-0.210244,-0.793091,-0.571667,-0.210244,-0.793091,-0.996389,-0.011582,-0.084112, + -0.996389,-0.011582,-0.084112,-0.996389,-0.011582,-0.084112,0.327543,0.654980,-0.680967,0.327543,0.654980,-0.680967, + 0.327543,0.654980,-0.680967,0.327543,0.654980,-0.680967,0.432465,0.863127,0.260740,0.432465,0.863127,0.260740, + 0.432465,0.863127,0.260740,0.432465,0.863127,0.260740,0.432465,0.863127,0.260740,-0.179619,-0.049346,-0.982498, + -0.179619,-0.049346,-0.982498,-0.179619,-0.049346,-0.982498,-0.179619,-0.049346,-0.982498,-0.354399,-0.003314,0.935088, + -0.354399,-0.003314,0.935088,-0.354399,-0.003314,0.935088,-0.354399,-0.003314,0.935088,0.413992,0.381577,0.826444, + 0.413992,0.381577,0.826444,0.413992,0.381577,0.826444,0.498417,0.566409,0.656324,0.498417,0.566409,0.656324, + 0.498417,0.566409,0.656324,0.442623,0.663092,0.603651,0.442623,0.663092,0.603651,0.442623,0.663092,0.603651, + -0.198353,-0.961147,-0.191969,-0.198353,-0.961147,-0.191969,-0.198353,-0.961147,-0.191969,-0.198353,-0.961147,-0.191969, + -0.157384,-0.861046,0.483560,-0.157384,-0.861046,0.483560,-0.157384,-0.861046,0.483560,-0.157384,-0.861046,0.483560, + -0.524337,0.734372,0.431008,-0.524337,0.734372,0.431008,-0.524337,0.734372,0.431008,-0.524337,0.734372,0.431008, + -0.460760,0.618380,-0.636636,-0.460760,0.618380,-0.636636,-0.460760,0.618380,-0.636636,-0.460760,0.618380,-0.636636, + -0.981300,0.173150,0.084074,-0.981300,0.173150,0.084074,-0.981300,0.173150,0.084074,-0.981300,0.173150,0.084074, + -0.253739,0.230036,0.939521,-0.253739,0.230036,0.939521,-0.253739,0.230036,0.939521,-0.253739,0.230036,0.939521, + 0.765416,-0.174469,0.619434,0.765416,-0.174469,0.619434,0.765416,-0.174469,0.619434,0.765416,-0.174469,0.619434, + -0.651312,-0.106268,0.751332,-0.651312,-0.106268,0.751332,-0.651312,-0.106268,0.751332,-0.651312,-0.106268,0.751332, + 0.318418,-0.420345,0.849659,0.318418,-0.420345,0.849659,0.318418,-0.420345,0.849659,0.318418,-0.420345,0.849659, + 0.317006,0.581907,-0.748927,0.317006,0.581907,-0.748927,0.317006,0.581907,-0.748927,-0.556204,-0.541068,0.630779, + -0.556204,-0.541068,0.630779,-0.556204,-0.541068,0.630779,0.275024,0.471700,0.837771,0.275024,0.471700,0.837771, + 0.275024,0.471700,0.837771,0.275024,0.471700,0.837771,-0.289856,0.135079,0.947490,-0.289856,0.135079,0.947490, + -0.289856,0.135079,0.947490,0.034951,0.756855,0.652648,0.034951,0.756855,0.652648,0.034951,0.756855,0.652648, + 0.034951,0.756855,0.652648,0.139660,0.487469,-0.861899,0.139660,0.487469,-0.861899,0.139660,0.487469,-0.861899, + 0.139660,0.487469,-0.861899,-0.938591,0.095226,0.331630,-0.938591,0.095226,0.331630,-0.938591,0.095226,0.331630, + -0.088955,-0.648619,0.755897,-0.088955,-0.648619,0.755897,-0.088955,-0.648619,0.755897,-0.419511,0.017204,-0.907587, + -0.419511,0.017204,-0.907587,-0.419511,0.017204,-0.907587,-0.713213,0.147972,-0.685151,-0.713213,0.147972,-0.685151, + -0.713213,0.147972,-0.685151,-0.713213,0.147972,-0.685151,-0.614672,0.775552,0.143865,-0.614672,0.775552,0.143865, + -0.614672,0.775552,0.143865,-0.614672,0.775552,0.143865,-0.104921,-0.155278,-0.982283,-0.104921,-0.155278,-0.982283, + -0.104921,-0.155278,-0.982283,-0.104921,-0.155278,-0.982283,0.024328,0.050160,0.998445,0.024328,0.050160,0.998445, + 0.024328,0.050160,0.998445,0.024328,0.050160,0.998445,0.341662,-0.523505,-0.780519,0.341662,-0.523505,-0.780519, + 0.341662,-0.523505,-0.780519,0.341662,-0.523505,-0.780519,-0.937585,-0.191105,-0.290538,-0.937585,-0.191105,-0.290538, + -0.937585,-0.191105,-0.290538,-0.814356,-0.389056,-0.430650,-0.814356,-0.389056,-0.430650,-0.814356,-0.389056,-0.430650, + -0.854012,-0.479734,0.201294,-0.854012,-0.479734,0.201294,-0.854012,-0.479734,0.201294,-0.854012,-0.479734,0.201294, + -0.115808,-0.851833,0.510852,-0.115808,-0.851833,0.510852,-0.115808,-0.851833,0.510852,-0.146756,-0.827007,0.542699, + -0.146756,-0.827007,0.542699,-0.146756,-0.827007,0.542699,-0.640902,-0.706022,-0.301292,-0.640902,-0.706022,-0.301292, + -0.640902,-0.706022,-0.301292,-0.939696,0.341406,0.020336,-0.939696,0.341406,0.020336,-0.939696,0.341406,0.020336, + -0.773012,0.522276,-0.360112,-0.773012,0.522276,-0.360112,-0.773012,0.522276,-0.360112,-0.852056,0.500882,-0.152043, + -0.852056,0.500882,-0.152043,-0.852056,0.500882,-0.152043,-0.499826,-0.746541,-0.439148,-0.499826,-0.746541,-0.439148, + -0.499826,-0.746541,-0.439148,-0.499826,-0.746541,-0.439148,0.271111,0.534708,0.800366,0.271111,0.534708,0.800366, + 0.271111,0.534708,0.800366,0.271111,0.534708,0.800366,-0.241160,-0.292833,-0.925252,-0.241160,-0.292833,-0.925252, + -0.241160,-0.292833,-0.925252,-0.241160,-0.292833,-0.925252,-0.626205,0.243985,-0.740499,-0.626205,0.243985,-0.740499, + -0.626205,0.243985,-0.740499,-0.626205,0.243985,-0.740499,-0.794329,0.490993,0.357725,-0.794329,0.490993,0.357725, + -0.794329,0.490993,0.357725,-0.794329,0.490993,0.357725,-0.548373,-0.760428,-0.347902,-0.548373,-0.760428,-0.347902, + -0.548373,-0.760428,-0.347902,-0.548373,-0.760428,-0.347902,-0.379700,0.897923,0.222626,-0.379700,0.897923,0.222626, + -0.379700,0.897923,0.222626,-0.379700,0.897923,0.222626,0.001511,0.886613,-0.462509,0.001511,0.886613,-0.462509, + 0.001511,0.886613,-0.462509,0.001511,0.886613,-0.462509,-0.507959,-0.635232,0.581771,-0.507959,-0.635232,0.581771, + -0.507959,-0.635232,0.581771,-0.507959,-0.635232,0.581771,-0.598529,0.263119,-0.756658,-0.598529,0.263119,-0.756658, + -0.598529,0.263119,-0.756658,-0.598529,0.263119,-0.756658,-0.971421,-0.216176,0.098028,-0.971421,-0.216176,0.098028, + -0.971421,-0.216176,0.098028,-0.971421,-0.216176,0.098028,0.073370,0.192765,-0.978498,0.073370,0.192765,-0.978498, + 0.073370,0.192765,-0.978498,0.073370,0.192765,-0.978498,0.456495,-0.351756,-0.817239,0.456495,-0.351756,-0.817239, + 0.456495,-0.351756,-0.817239,-0.708875,0.236548,0.664486,-0.708875,0.236548,0.664486,-0.708875,0.236548,0.664486, + -0.456865,0.763874,-0.455819,-0.456865,0.763874,-0.455819,-0.456865,0.763874,-0.455819,-0.005945,0.227215,-0.973826, + -0.005945,0.227215,-0.973826,-0.005945,0.227215,-0.973826,-0.005945,0.227215,-0.973826,0.503647,-0.801294,0.322906, + 0.503647,-0.801294,0.322906,0.503647,-0.801294,0.322906,0.947251,-0.236098,0.216732,0.947251,-0.236098,0.216732, + 0.947251,-0.236098,0.216732,0.947251,-0.236098,0.216732,-0.592923,-0.152191,-0.790747,-0.592923,-0.152191,-0.790747, + -0.592923,-0.152191,-0.790747,-0.592923,-0.152191,-0.790747,-0.811384,0.436454,0.388796,-0.811384,0.436454,0.388796, + -0.811384,0.436454,0.388796,-0.811384,0.436454,0.388796,-0.467612,-0.172778,0.866883,-0.467612,-0.172778,0.866883, + -0.467612,-0.172778,0.866883,-0.467612,-0.172778,0.866883,-0.774157,0.264168,0.575236,-0.774157,0.264168,0.575236, + -0.774157,0.264168,0.575236,-0.774157,0.264168,0.575236,-0.340104,0.760457,-0.553203,-0.340104,0.760457,-0.553203, + -0.340104,0.760457,-0.553203,-0.340104,0.760457,-0.553203,-0.166577,0.685704,-0.708563,-0.166577,0.685704,-0.708563, + -0.166577,0.685704,-0.708563,0.550137,0.789760,0.271347,0.550137,0.789760,0.271347,0.550137,0.789760,0.271347, + 0.292704,0.955521,-0.036107,0.292704,0.955521,-0.036107,0.292704,0.955521,-0.036107,0.149733,0.808736,-0.568793, + 0.149733,0.808736,-0.568793,0.149733,0.808736,-0.568793,0.149733,0.808736,-0.568793,0.416888,0.881013,-0.223654, + 0.416888,0.881013,-0.223654,0.416888,0.881013,-0.223654,-0.286461,0.133884,0.948691,-0.286461,0.133884,0.948691, + -0.286461,0.133884,0.948691,-0.490994,-0.243538,0.836430,-0.490994,-0.243538,0.836430,-0.490994,-0.243538,0.836430, + -0.490994,-0.243538,0.836430,-0.227991,-0.561365,0.795543,-0.227991,-0.561365,0.795543,-0.227991,-0.561365,0.795543, + -0.227991,-0.561365,0.795543,-0.536544,-0.297278,0.789776,-0.536544,-0.297278,0.789776,-0.536544,-0.297278,0.789776, + -0.536544,-0.297278,0.789776,-0.674925,-0.586432,0.447855,-0.674925,-0.586432,0.447855,-0.674925,-0.586432,0.447855, + -0.674925,-0.586432,0.447855,-0.457799,-0.886138,0.071974,-0.457799,-0.886138,0.071974,-0.457799,-0.886138,0.071974, + -0.428441,-0.361016,0.828315,-0.428441,-0.361016,0.828315,-0.428441,-0.361016,0.828315,-0.473397,-0.874767,0.103333, + -0.473397,-0.874767,0.103333,-0.473397,-0.874767,0.103333,-0.286006,-0.465150,0.837757,-0.286006,-0.465150,0.837757, + -0.286006,-0.465150,0.837757,-0.286006,-0.465150,0.837757,-0.291857,-0.865733,0.406603,-0.291857,-0.865733,0.406603, + -0.291857,-0.865733,0.406603,-0.291857,-0.865733,0.406603,0.061019,0.099093,-0.993206,0.061019,0.099093,-0.993206, + 0.061019,0.099093,-0.993206,0.061019,0.099093,-0.993206,-0.215016,-0.200704,0.955765,-0.215016,-0.200704,0.955765, + -0.215016,-0.200704,0.955765,-0.215016,-0.200704,0.955765,-0.339349,-0.210059,0.916906,-0.339349,-0.210059,0.916906, + -0.339349,-0.210059,0.916906,-0.339349,-0.210059,0.916906,-0.322195,-0.203948,0.924444,-0.322195,-0.203948,0.924444, + -0.322195,-0.203948,0.924444,-0.322195,-0.203948,0.924444,-0.515267,0.856453,0.031426,-0.515267,0.856453,0.031426, + -0.515267,0.856453,0.031426,-0.515267,0.856453,0.031426,-0.886619,-0.371560,-0.275409,-0.886619,-0.371560,-0.275409, + -0.886619,-0.371560,-0.275409,-0.886619,-0.371560,-0.275409,-0.865284,-0.414604,0.281758,-0.865284,-0.414604,0.281758, + -0.865284,-0.414604,0.281758,-0.865284,-0.414604,0.281758,-0.210671,-0.167483,0.963103,-0.210671,-0.167483,0.963103, + -0.210671,-0.167483,0.963103,-0.210671,-0.167483,0.963103,0.379775,-0.922010,-0.075290,0.379775,-0.922010,-0.075290, + 0.379775,-0.922010,-0.075290,0.379775,-0.922010,-0.075290,0.913558,0.324203,0.245571,0.913558,0.324203,0.245571, + 0.913558,0.324203,0.245571,0.913558,0.324203,0.245571,-0.717140,-0.284211,-0.636345,-0.717140,-0.284211,-0.636345, + -0.717140,-0.284211,-0.636345,-0.768617,-0.308546,-0.560382,-0.768617,-0.308546,-0.560382,-0.768617,-0.308546,-0.560382, + -0.309435,0.943918,0.115188,-0.309435,0.943918,0.115188,-0.309435,0.943918,0.115188,-0.309435,0.943918,0.115188, + -0.865654,-0.402824,-0.297283,-0.865654,-0.402824,-0.297283,-0.865654,-0.402824,-0.297283,-0.865654,-0.402824,-0.297283, + 0.201178,-0.967707,-0.151887,0.201178,-0.967707,-0.151887,0.201178,-0.967707,-0.151887,0.201178,-0.967707,-0.151887, + 0.873458,0.385309,0.297670,0.873458,0.385309,0.297670,0.873458,0.385309,0.297670,0.873458,0.385309,0.297670, + -0.478085,0.877190,0.044415,-0.478085,0.877190,0.044415,-0.478085,0.877190,0.044415,-0.478085,0.877190,0.044415, + -0.892597,-0.369539,-0.258286,-0.892597,-0.369539,-0.258286,-0.892597,-0.369539,-0.258286,-0.892597,-0.369539,-0.258286, + 0.389453,-0.918206,-0.072276,0.389453,-0.918206,-0.072276,0.389453,-0.918206,-0.072276,0.389453,-0.918206,-0.072276, + 0.925430,0.283285,0.251654,0.925430,0.283285,0.251654,0.925430,0.283285,0.251654,0.925430,0.283285,0.251654, + 0.893424,0.389731,0.223390,0.893424,0.389731,0.223390,0.893424,0.389731,0.223390,0.893424,0.389731,0.223390, + 0.908977,0.339988,0.241180,0.908977,0.339988,0.241180,0.908977,0.339988,0.241180,0.908977,0.339988,0.241180, + 0.431544,-0.897610,-0.089811,0.431544,-0.897610,-0.089811,0.431544,-0.897610,-0.089811,0.431544,-0.897610,-0.089811, + -0.885687,-0.373522,-0.275752,-0.885687,-0.373522,-0.275752,-0.885687,-0.373522,-0.275752,-0.885687,-0.373522,-0.275752, + 0.891605,0.382418,0.242481,0.891605,0.382418,0.242481,0.891605,0.382418,0.242481,0.891605,0.382418,0.242481, + -0.477341,-0.254662,0.841007,-0.477341,-0.254662,0.841007,-0.477341,-0.254662,0.841007,-0.477341,-0.254662,0.841007, + -0.583954,0.810903,0.037870,-0.583954,0.810903,0.037870,-0.583954,0.810903,0.037870,-0.583954,0.810903,0.037870, + -0.218327,-0.205324,0.954031,-0.218327,-0.205324,0.954031,-0.218327,-0.205324,0.954031,-0.218327,-0.205324,0.954031, + -0.534794,0.844657,0.023461,-0.534794,0.844657,0.023461,-0.534794,0.844657,0.023461,-0.534794,0.844657,0.023461, + -0.326928,-0.207215,0.922052,-0.326928,-0.207215,0.922052,-0.326928,-0.207215,0.922052,-0.326928,-0.207215,0.922052, + -0.334358,-0.221101,0.916143,-0.334358,-0.221101,0.916143,-0.334358,-0.221101,0.916143,-0.334358,-0.221101,0.916143, + 0.911677,0.322880,0.254152,0.911677,0.322880,0.254152,0.911677,0.322880,0.254152,0.911677,0.322880,0.254152, + 0.390133,-0.916830,-0.084963,0.390133,-0.916830,-0.084963,0.390133,-0.916830,-0.084963,0.390133,-0.916830,-0.084963, + -0.886607,-0.371631,-0.275351,-0.886607,-0.371631,-0.275351,-0.886607,-0.371631,-0.275351,-0.886607,-0.371631,-0.275351, + -0.538139,0.842095,0.035814,-0.538139,0.842095,0.035814,-0.538139,0.842095,0.035814,-0.538139,0.842095,0.035814, + -0.538112,0.842116,0.035719,-0.538112,0.842116,0.035719,-0.538112,0.842116,0.035719,-0.538112,0.842116,0.035719, + -0.886537,-0.371569,-0.275660,-0.886537,-0.371569,-0.275660,-0.886537,-0.371569,-0.275660,-0.886537,-0.371569,-0.275660, + 0.390124,-0.916840,-0.084896,0.390124,-0.916840,-0.084896,0.390124,-0.916840,-0.084896,0.390124,-0.916840,-0.084896, + 0.911499,0.322733,0.254978,0.911499,0.322733,0.254978,0.911499,0.322733,0.254978,0.911499,0.322733,0.254978, + -0.334363,-0.221099,0.916142,-0.334363,-0.221099,0.916142,-0.334363,-0.221099,0.916142,-0.334363,-0.221099,0.916142, + 0.911392,0.322441,0.255727,0.911392,0.322441,0.255727,0.911392,0.322441,0.255727,0.911392,0.322441,0.255727, + 0.386804,-0.919246,-0.073281,0.386804,-0.919246,-0.073281,0.386804,-0.919246,-0.073281,0.386804,-0.919246,-0.073281, + -0.886536,-0.371497,-0.275759,-0.886536,-0.371497,-0.275759,-0.886536,-0.371497,-0.275759,-0.886536,-0.371497,-0.275759, + -0.534950,0.844537,0.024188,-0.534950,0.844537,0.024188,-0.534950,0.844537,0.024188,-0.534950,0.844537,0.024188, + -0.886718,-0.371643,-0.274977,-0.886718,-0.371643,-0.274977,-0.886718,-0.371643,-0.274977,-0.886718,-0.371643,-0.274977, + 0.386648,-0.919376,-0.072467,0.386648,-0.919376,-0.072467,0.386648,-0.919376,-0.072467,0.386648,-0.919376,-0.072467, + 0.911831,0.322817,0.253679,0.911831,0.322817,0.253679,0.911831,0.322817,0.253679,0.911831,0.322817,0.253679, + 0.090433,0.079199,-0.992748,0.090433,0.079199,-0.992748,0.090433,0.079199,-0.992748,0.090433,0.079199,-0.992748, + -0.258697,-0.153963,0.953610,-0.258697,-0.153963,0.953610,-0.258697,-0.153963,0.953610,-0.258697,-0.153963,0.953610, + -0.382307,-0.142739,0.912944,-0.382307,-0.142739,0.912944,-0.382307,-0.142739,0.912944,-0.382307,-0.142739,0.912944, + -0.364490,-0.139516,0.920697,-0.364490,-0.139516,0.920697,-0.364490,-0.139516,0.920697,-0.364490,-0.139516,0.920697, + -0.365224,0.930734,0.018609,-0.365224,0.930734,0.018609,-0.365224,0.930734,0.018609,-0.365224,0.930734,0.018609, + -0.932368,-0.220508,-0.286473,-0.932368,-0.220508,-0.286473,-0.932368,-0.220508,-0.286473,-0.932368,-0.220508,-0.286473, + -0.926221,-0.261852,0.271198,-0.926221,-0.261852,0.271198,-0.926221,-0.261852,0.271198,-0.926221,-0.261852,0.271198, + -0.248971,-0.121879,0.960811,-0.248971,-0.121879,0.960811,-0.248971,-0.121879,0.960811,-0.248971,-0.121879,0.960811, + 0.221297,-0.973098,-0.064094,0.221297,-0.973098,-0.064094,0.221297,-0.973098,-0.064094,0.221297,-0.973098,-0.064094, + 0.951421,0.169074,0.257317,0.951421,0.169074,0.257317,0.951421,0.169074,0.257317,0.951421,0.169074,0.257317, + -0.745687,-0.165719,-0.645359,-0.745687,-0.165719,-0.645359,-0.745687,-0.165719,-0.645359,-0.801569,-0.180482,-0.570011, + -0.801569,-0.180482,-0.570011,-0.801569,-0.180482,-0.570011,-0.148828,0.983280,0.104936,-0.148828,0.983280,0.104936, + -0.148828,0.983280,0.104936,-0.148828,0.983280,0.104936,-0.916622,-0.255023,-0.307844,-0.916622,-0.255023,-0.307844, + -0.916622,-0.255023,-0.307844,-0.916622,-0.255023,-0.307844,0.038640,-0.988953,-0.143107,0.038640,-0.988953,-0.143107, + 0.038640,-0.988953,-0.143107,0.038640,-0.988953,-0.143107,0.921384,0.236456,0.308446,0.921384,0.236456,0.308446, + 0.921384,0.236456,0.308446,0.921384,0.236456,0.308446,-0.325293,0.945071,0.032033,-0.325293,0.945071,0.032033, + -0.325293,0.945071,0.032033,-0.325293,0.945071,0.032033,-0.938160,-0.217366,-0.269457,-0.938160,-0.217366,-0.269457, + -0.938160,-0.217366,-0.269457,-0.938160,-0.217366,-0.269457,0.231444,-0.970936,-0.060960,0.231444,-0.970936,-0.060960, + 0.231444,-0.970936,-0.060960,0.231444,-0.970936,-0.060960,0.956201,0.126801,0.263819,0.956201,0.126801,0.263819, + 0.956201,0.126801,0.263819,0.956201,0.126801,0.263819,0.942830,0.236845,0.234471,0.942830,0.236845,0.234471, + 0.942830,0.236845,0.234471,0.942830,0.236845,0.234471,0.949606,0.185357,0.252767,0.949606,0.185357,0.252767, + 0.949606,0.185357,0.252767,0.949606,0.185357,0.252767,0.276639,-0.957804,-0.077986,0.276639,-0.957804,-0.077986, + 0.276639,-0.957804,-0.077986,0.276639,-0.957804,-0.077986,-0.931774,-0.222600,-0.286787,-0.931774,-0.222600,-0.286787, + -0.931774,-0.222600,-0.286787,-0.931774,-0.222600,-0.286787,0.939546,0.230100,0.253589,0.939546,0.230100,0.253589, + 0.939546,0.230100,0.253589,0.939546,0.230100,0.253589,-0.524828,-0.164298,0.835202,-0.524828,-0.164298,0.835202, + -0.524828,-0.164298,0.835202,-0.524828,-0.164298,0.835202,-0.440644,0.897353,0.024281,-0.440644,0.897353,0.024281, + -0.440644,0.897353,0.024281,-0.440644,0.897353,0.024281,-0.262718,-0.157977,0.951852,-0.262718,-0.157977,0.951852, + -0.262718,-0.157977,0.951852,-0.262718,-0.157977,0.951852,-0.386333,0.922300,0.010422,-0.386333,0.922300,0.010422, + -0.386333,0.922300,0.010422,-0.386333,0.922300,0.010422,-0.369657,-0.141976,0.918257,-0.369657,-0.141976,0.918257, + -0.369657,-0.141976,0.918257,-0.369657,-0.141976,0.918257,-0.379228,-0.154470,0.912318,-0.379228,-0.154470,0.912318, + -0.379228,-0.154470,0.912318,-0.379228,-0.154470,0.912318,0.949228,0.168151,0.265878,0.949228,0.168151,0.265878, + 0.949228,0.168151,0.265878,0.949228,0.168151,0.265878,0.232530,-0.969798,-0.073635,0.232530,-0.969798,-0.073635, + 0.232530,-0.969798,-0.073635,0.232530,-0.969798,-0.073635,-0.932368,-0.220585,-0.286413,-0.932368,-0.220585,-0.286413, + -0.932368,-0.220585,-0.286413,-0.932368,-0.220585,-0.286413,-0.390242,0.920431,0.022735,-0.390242,0.920431,0.022735, + -0.390242,0.920431,0.022735,-0.390242,0.920431,0.022735,-0.390204,0.920450,0.022651,-0.390204,0.920450,0.022651, + -0.390204,0.920450,0.022651,-0.390204,0.920450,0.022651,-0.932288,-0.220524,-0.286720,-0.932288,-0.220524,-0.286720, + -0.932288,-0.220524,-0.286720,-0.932288,-0.220524,-0.286720,0.232503,-0.969808,-0.073581,0.232503,-0.969808,-0.073581, + 0.232503,-0.969808,-0.073581,0.232503,-0.969808,-0.073581,0.949017,0.168040,0.266700,0.949017,0.168040,0.266700, + 0.949017,0.168040,0.266700,0.949017,0.168040,0.266700,-0.379235,-0.154470,0.912316,-0.379235,-0.154470,0.912316, + -0.379235,-0.154470,0.912316,-0.379235,-0.154470,0.912316,0.948852,0.167776,0.267453,0.948852,0.167776,0.267453, + 0.948852,0.167776,0.267453,0.948852,0.167776,0.267453,0.228689,-0.971522,-0.062018,0.228689,-0.971522,-0.062018, + 0.228689,-0.971522,-0.062018,0.228689,-0.971522,-0.062018,-0.932275,-0.220462,-0.286809,-0.932275,-0.220462,-0.286809, + -0.932275,-0.220462,-0.286809,-0.932275,-0.220462,-0.286809,-0.386527,0.922211,0.011142,-0.386527,0.922211,0.011142, + -0.386527,0.922211,0.011142,-0.386527,0.922211,0.011142,-0.932487,-0.220564,-0.286043,-0.932487,-0.220564,-0.286043, + -0.932487,-0.220564,-0.286043,-0.932487,-0.220564,-0.286043,0.228481,-0.971623,-0.061205,0.228481,-0.971623,-0.061205, + 0.228481,-0.971623,-0.061205,0.228481,-0.971623,-0.061205,0.949373,0.168065,0.265413,0.949373,0.168065,0.265413, + 0.949373,0.168065,0.265413,0.949373,0.168065,0.265413,0.083185,0.162905,-0.983129,0.083185,0.162905,-0.983129, + 0.083185,0.162905,-0.983129,0.083185,0.162905,-0.983129,-0.267218,-0.135691,0.954035,-0.267218,-0.135691,0.954035, + -0.267218,-0.135691,0.954035,-0.267218,-0.135691,0.954035,-0.316925,-0.079739,0.945093,-0.316925,-0.079739,0.945093, + -0.316925,-0.079739,0.945093,-0.316925,-0.079739,0.945093,-0.368660,-0.057750,0.927769,-0.368660,-0.057750,0.927769, + -0.368660,-0.057750,0.927769,-0.368660,-0.057750,0.927769,0.145835,0.978634,0.144941,0.145835,0.978634,0.144941, + 0.145835,0.978634,0.144941,0.145835,0.978634,0.144941,-0.922449,0.325300,-0.208010,-0.922449,0.325300,-0.208010, + -0.922449,0.325300,-0.208010,-0.922449,0.325300,-0.208010,-0.918337,0.207830,0.336843,-0.918337,0.207830,0.336843, + -0.918337,0.207830,0.336843,-0.918337,0.207830,0.336843,-0.242068,-0.114358,0.963497,-0.242068,-0.114358,0.963497, + -0.242068,-0.114358,0.963497,-0.242068,-0.114358,0.963497,-0.308288,-0.933362,-0.183833,-0.308288,-0.933362,-0.183833, + -0.308288,-0.933362,-0.183833,-0.308288,-0.933362,-0.183833,0.909621,-0.375305,0.178148,0.909621,-0.375305,0.178148, + 0.909621,-0.375305,0.178148,0.909621,-0.375305,0.178148,-0.746569,0.328660,-0.578461,-0.746569,0.328660,-0.578461, + -0.746569,0.328660,-0.578461,-0.799335,0.333675,-0.499724,-0.799335,0.333675,-0.499724,-0.799335,0.333675,-0.499724, + 0.383411,0.896630,0.221475,0.383411,0.896630,0.221475,0.383411,0.896630,0.221475,0.383411,0.896630,0.221475, + -0.927031,0.291234,-0.236214,-0.927031,0.291234,-0.236214,-0.927031,0.291234,-0.236214,-0.927031,0.291234,-0.236214, + -0.482020,-0.840205,-0.248421,-0.482020,-0.840205,-0.248421,-0.482020,-0.840205,-0.248421,-0.482020,-0.840205,-0.248421, + 0.921554,-0.309522,0.234380,0.921554,-0.309522,0.234380,0.921554,-0.309522,0.234380,0.921554,-0.309522,0.234380, + 0.210087,0.963891,0.163640,0.210087,0.963891,0.163640,0.210087,0.963891,0.163640,0.210087,0.963891,0.163640, + -0.924698,0.328688,-0.192089,-0.924698,0.328688,-0.192089,-0.924698,0.328688,-0.192089,-0.924698,0.328688,-0.192089, + -0.304789,-0.934231,-0.185245,-0.304789,-0.934231,-0.185245,-0.304789,-0.934231,-0.185245,-0.304789,-0.934231,-0.185245, + 0.893231,-0.414042,0.175234,0.893231,-0.414042,0.175234,0.893231,-0.414042,0.175234,0.893231,-0.414042,0.175234, + 0.937505,-0.309507,0.159027,0.937505,-0.309507,0.159027,0.937505,-0.309507,0.159027,0.937505,-0.309507,0.159027, + 0.901569,-0.391516,0.184086,0.901569,-0.391516,0.184086,0.901569,-0.391516,0.184086,0.901569,-0.391516,0.184086, + -0.298638,-0.933717,-0.197452,-0.298638,-0.933717,-0.197452,-0.298638,-0.933717,-0.197452,-0.298638,-0.933717,-0.197452, + -0.920080,0.328044,-0.214103,-0.920080,0.328044,-0.214103,-0.920080,0.328044,-0.214103,-0.920080,0.328044,-0.214103, + 0.931893,-0.316305,0.177558,0.931893,-0.316305,0.177558,0.931893,-0.316305,0.177558,0.931893,-0.316305,0.177558, + -0.504514,0.007167,0.863374,-0.504514,0.007167,0.863374,-0.504514,0.007167,0.863374,-0.504514,0.007167,0.863374, + 0.170523,0.971259,0.166065,0.170523,0.971259,0.166065,0.170523,0.971259,0.166065,0.170523,0.971259,0.166065, + -0.382738,-0.105483,0.917815,-0.382738,-0.105483,0.917815,-0.382738,-0.105483,0.917815,-0.382738,-0.105483,0.917815, + 0.145343,0.978517,0.146216,0.145343,0.978517,0.146216,0.145343,0.978517,0.146216,0.145343,0.978517,0.146216, + -0.357237,-0.064264,0.931800,-0.357237,-0.064264,0.931800,-0.357237,-0.064264,0.931800,-0.357237,-0.064264,0.931800, + -0.372099,-0.069201,0.925610,-0.372099,-0.069201,0.925610,-0.372099,-0.069201,0.925610,-0.372099,-0.069201,0.925610, + 0.908659,-0.375642,0.182296,0.908659,-0.375642,0.182296,0.908659,-0.375642,0.182296,0.908659,-0.375642,0.182296, + -0.303732,-0.932003,-0.197783,-0.303732,-0.932003,-0.197783,-0.303732,-0.932003,-0.197783,-0.303732,-0.932003,-0.197783, + -0.921992,0.325445,-0.209802,-0.921992,0.325445,-0.209802,-0.921992,0.325445,-0.209802,-0.921992,0.325445,-0.209802, + 0.141447,0.977159,0.158599,0.141447,0.977159,0.158599,0.141447,0.977159,0.158599,0.141447,0.977159,0.158599, + 0.171976,0.970833,0.167057,0.171976,0.970833,0.167057,0.171976,0.970833,0.167057,0.171976,0.970833,0.167057, + -0.921910,0.325479,-0.210110,-0.921910,0.325479,-0.210110,-0.921910,0.325479,-0.210110,-0.921910,0.325479,-0.210110, + -0.368901,-0.904469,-0.214122,-0.368901,-0.904469,-0.214122,-0.368901,-0.904469,-0.214122,-0.368901,-0.904469,-0.214122, + 0.905718,-0.377056,0.193658,0.905718,-0.377056,0.193658,0.905718,-0.377056,0.193658,0.905718,-0.377056,0.193658, + -0.403535,-0.055400,0.913286,-0.403535,-0.055400,0.913286,-0.403535,-0.055400,0.913286,-0.403535,-0.055400,0.913286, + 0.915715,-0.371963,0.152017,0.915715,-0.371963,0.152017,0.915715,-0.371963,0.152017,0.915715,-0.371963,0.152017, + -0.354954,-0.913961,-0.196680,-0.354954,-0.913961,-0.196680,-0.354954,-0.913961,-0.196680,-0.354954,-0.913961,-0.196680, + -0.924720,0.324277,-0.199341,-0.924720,0.324277,-0.199341,-0.924720,0.324277,-0.199341,-0.924720,0.324277,-0.199341, + 0.217888,0.961521,0.167338,0.217888,0.961521,0.167338,0.217888,0.961521,0.167338,0.217888,0.961521,0.167338, + -0.922071,0.325460,-0.209428,-0.922071,0.325460,-0.209428,-0.922071,0.325460,-0.209428,-0.922071,0.325460,-0.209428, + -0.307660,-0.933294,-0.185221,-0.307660,-0.933294,-0.185221,-0.307660,-0.933294,-0.185221,-0.307660,-0.933294,-0.185221, + 0.908724,-0.375723,0.181805,0.908724,-0.375723,0.181805,0.908724,-0.375723,0.181805,0.908724,-0.375723,0.181805, + -0.555772,-0.827127,0.083533,-0.555772,-0.827127,0.083533,-0.555772,-0.827127,0.083533,-0.555772,-0.827127,0.083533, + 0.140417,0.960650,-0.239656,0.140417,0.960650,-0.239656,0.140417,0.960650,-0.239656,-0.804143,0.583935,-0.111235, + -0.804143,0.583935,-0.111235,-0.804143,0.583935,-0.111235,-0.717589,0.171187,0.675101,-0.717589,0.171187,0.675101, + -0.717589,0.171187,0.675101,-0.076941,0.750130,0.656800,-0.076941,0.750130,0.656800,-0.076941,0.750130,0.656800, + 0.786177,0.612291,-0.083821,0.786177,0.612291,-0.083821,0.786177,0.612291,-0.083821,0.786177,0.612291,-0.083821, + 0.110508,0.911598,-0.395951,0.110508,0.911598,-0.395951,0.110508,0.911598,-0.395951,0.110508,0.911598,-0.395951, + 0.666279,0.641746,-0.379782,0.666279,0.641746,-0.379782,0.666279,0.641746,-0.379782,0.666279,0.641746,-0.379782, + -0.486634,-0.469153,-0.736942,-0.486634,-0.469153,-0.736942,-0.486634,-0.469153,-0.736942,-0.486634,-0.469153,-0.736942, + 0.678513,0.674278,-0.291494,0.678513,0.674278,-0.291494,0.678513,0.674278,-0.291494,0.678513,0.674278,-0.291494, + -0.513609,0.539339,-0.667323,-0.513609,0.539339,-0.667323,-0.513609,0.539339,-0.667323,-0.513609,0.539339,-0.667323, + -0.498814,-0.832625,-0.240665,-0.498814,-0.832625,-0.240665,-0.498814,-0.832625,-0.240665,-0.498814,-0.832625,-0.240665, + -0.565303,0.130362,0.814517,-0.565303,0.130362,0.814517,-0.565303,0.130362,0.814517,0.052394,0.058950,0.996885, + 0.052394,0.058950,0.996885,0.052394,0.058950,0.996885,0.208508,0.807896,0.551206,0.208508,0.807896,0.551206, + 0.208508,0.807896,0.551206,-0.664825,0.703487,0.251224,-0.664825,0.703487,0.251224,-0.664825,0.703487,0.251224, + -0.905227,-0.371887,-0.205583,-0.905227,-0.371887,-0.205583,-0.905227,-0.371887,-0.205583,-0.905227,-0.371887,-0.205583, + 0.474183,0.823654,0.311037,0.474183,0.823654,0.311037,0.474183,0.823654,0.311037,0.474183,0.823654,0.311037, + -0.584178,0.745916,0.319914,-0.584178,0.745916,0.319914,-0.584178,0.745916,0.319914,-0.584178,0.745916,0.319914, + 0.912552,-0.135151,-0.385984,0.912552,-0.135151,-0.385984,0.912552,-0.135151,-0.385984,0.912552,-0.135151,-0.385984, + 0.426243,0.458800,0.779628,0.426243,0.458800,0.779628,0.426243,0.458800,0.779628,0.426243,0.458800,0.779628, + 0.774461,-0.188912,0.603757,0.774461,-0.188912,0.603757,0.774461,-0.188912,0.603757,0.774461,-0.188912,0.603757, + -0.100433,-0.789340,-0.605686,-0.100433,-0.789340,-0.605686,-0.100433,-0.789340,-0.605686,-0.100433,-0.789340,-0.605686, + -0.659832,0.539911,-0.522606,-0.659832,0.539911,-0.522606,-0.659832,0.539911,-0.522606,-0.659832,0.539911,-0.522606, + -0.578985,-0.129776,0.804944,-0.578985,-0.129776,0.804944,-0.578985,-0.129776,0.804944,-0.578985,-0.129776,0.804944, + 0.809451,-0.449846,0.377396,0.809451,-0.449846,0.377396,0.809451,-0.449846,0.377396,0.809451,-0.449846,0.377396, + 0.374286,-0.340170,0.862667,0.374286,-0.340170,0.862667,0.374286,-0.340170,0.862667,0.562160,-0.800758,0.206791, + 0.562160,-0.800758,0.206791,0.562160,-0.800758,0.206791,-0.384365,-0.922398,-0.038008,-0.384365,-0.922398,-0.038008, + -0.384365,-0.922398,-0.038008,-0.419847,-0.511745,0.749563,-0.419847,-0.511745,0.749563,-0.419847,-0.511745,0.749563, + -0.771138,0.548766,0.322804,-0.771138,0.548766,0.322804,-0.771138,0.548766,0.322804,-0.771138,0.548766,0.322804, + 0.639646,0.433834,0.634540,0.639646,0.433834,0.634540,0.639646,0.433834,0.634540,0.639646,0.433834,0.634540, + 0.747279,0.093104,-0.657956,0.747279,0.093104,-0.657956,0.747279,0.093104,-0.657956,0.747279,0.093104,-0.657956, + 0.433058,0.848822,0.303252,0.433058,0.848822,0.303252,0.433058,0.848822,0.303252,-0.538917,0.678383,-0.499365, + -0.538917,0.678383,-0.499365,-0.538917,0.678383,-0.499365,0.913149,-0.118523,0.390015,0.913149,-0.118523,0.390015, + 0.913149,-0.118523,0.390015,-0.122115,-0.793713,-0.595908,-0.122115,-0.793713,-0.595908,-0.122115,-0.793713,-0.595908, + 0.704230,0.248652,-0.665005,0.704230,0.248652,-0.665005,0.704230,0.248652,-0.665005,0.704230,0.248652,-0.665005, + 0.814169,-0.030360,0.579833,0.814169,-0.030360,0.579833,0.814169,-0.030360,0.579833,0.814169,-0.030360,0.579833, + -0.511397,-0.361928,-0.779411,-0.511397,-0.361928,-0.779411,-0.511397,-0.361928,-0.779411,-0.511397,-0.361928,-0.779411, + -0.448166,-0.631032,0.633203,-0.448166,-0.631032,0.633203,-0.448166,-0.631032,0.633203,-0.448166,-0.631032,0.633203, + 0.986201,-0.090162,-0.138850,0.986201,-0.090162,-0.138850,0.986201,-0.090162,-0.138850,0.986201,-0.090162,-0.138850, + -0.245203,-0.416889,-0.875260,-0.245203,-0.416889,-0.875260,-0.245203,-0.416889,-0.875260,-0.245203,-0.416889,-0.875260, + 0.208583,0.419382,-0.883523,0.208583,0.419382,-0.883523,0.208583,0.419382,-0.883523,0.208583,0.419382,-0.883523, + 0.714441,0.592290,-0.372514,0.714441,0.592290,-0.372514,0.714441,0.592290,-0.372514,0.714441,0.592290,-0.372514, + 0.213443,-0.972517,-0.093018,0.213443,-0.972517,-0.093018,0.213443,-0.972517,-0.093018,-0.082975,0.973959,-0.210994, + -0.082975,0.973959,-0.210994,-0.082975,0.973959,-0.210994,-0.082975,0.973959,-0.210994,0.553563,0.343342,-0.758739, + 0.553563,0.343342,-0.758739,0.553563,0.343342,-0.758739,-0.938552,0.318890,0.132018,-0.938552,0.318890,0.132018, + -0.938552,0.318890,0.132018,-0.938552,0.318890,0.132018,-0.795043,-0.365916,0.483748,-0.795043,-0.365916,0.483748, + -0.795043,-0.365916,0.483748,-0.795043,-0.365916,0.483748,0.836355,-0.278002,-0.472468,0.836355,-0.278002,-0.472468, + 0.836355,-0.278002,-0.472468,0.069443,0.994904,0.073096,0.069443,0.994904,0.073096,0.069443,0.994904,0.073096, + -0.912489,-0.106034,-0.395121,-0.912489,-0.106034,-0.395121,-0.912489,-0.106034,-0.395121,-0.912489,-0.106034,-0.395121, + -0.517755,0.735527,-0.436956,-0.517755,0.735527,-0.436956,-0.517755,0.735527,-0.436956,-0.517755,0.735527,-0.436956, + 0.026826,0.979274,0.200756,0.026826,0.979274,0.200756,0.026826,0.979274,0.200756,0.026826,0.979274,0.200756, + -0.852873,0.404426,0.330222,-0.852873,0.404426,0.330222,-0.852873,0.404426,0.330222,-0.967708,0.050620,0.246940, + -0.967708,0.050620,0.246940,-0.967708,0.050620,0.246940,-0.581431,0.556148,0.593833,-0.581431,0.556148,0.593833, + -0.581431,0.556148,0.593833,-0.467230,-0.276621,-0.839748,-0.467230,-0.276621,-0.839748,-0.467230,-0.276621,-0.839748, + -0.467230,-0.276621,-0.839748,-0.354791,0.653349,-0.668774,-0.354791,0.653349,-0.668774,-0.354791,0.653349,-0.668774, + -0.354791,0.653349,-0.668774,0.702772,0.256157,0.663698,0.702772,0.256157,0.663698,0.702772,0.256157,0.663698, + 0.788813,-0.182135,-0.587028,0.788813,-0.182135,-0.587028,0.788813,-0.182135,-0.587028,0.683821,0.276397,0.675273, + 0.683821,0.276397,0.675273,0.683821,0.276397,0.675273,-0.032310,-0.023445,0.999203,-0.032310,-0.023445,0.999203, + -0.032310,-0.023445,0.999203,-0.032310,-0.023445,0.999203,0.989034,0.120504,-0.085390,0.989034,0.120504,-0.085390, + 0.989034,0.120504,-0.085390,-0.865771,0.400919,-0.299507,-0.865771,0.400919,-0.299507,-0.865771,0.400919,-0.299507, + 0.041828,0.991825,-0.120556,0.041828,0.991825,-0.120556,0.041828,0.991825,-0.120556,0.041828,0.991825,-0.120556, + -0.831433,0.221310,0.509647,-0.831433,0.221310,0.509647,-0.831433,0.221310,0.509647,-0.831433,0.221310,0.509647, + 0.057804,0.936161,0.346787,0.057804,0.936161,0.346787,0.057804,0.936161,0.346787,0.057804,0.936161,0.346787, + 0.542910,0.630387,-0.554852,0.542910,0.630387,-0.554852,0.542910,0.630387,-0.554852,-0.909734,-0.378935,-0.169685, + -0.909734,-0.378935,-0.169685,-0.909734,-0.378935,-0.169685,-0.909734,-0.378935,-0.169685,0.219792,-0.844616,-0.488175, + 0.219792,-0.844616,-0.488175,0.219792,-0.844616,-0.488175,0.219792,-0.844616,-0.488175,0.853851,-0.433642,0.287910, + 0.853851,-0.433642,0.287910,0.853851,-0.433642,0.287910,0.853851,-0.433642,0.287910,-0.859162,0.342618,-0.380071, + -0.859162,0.342618,-0.380071,-0.859162,0.342618,-0.380071,-0.859162,0.342618,-0.380071,-0.246437,-0.513811,-0.821746, + -0.246437,-0.513811,-0.821746,-0.246437,-0.513811,-0.821746,-0.116468,-0.376429,-0.919095,-0.116468,-0.376429,-0.919095, + -0.116468,-0.376429,-0.919095,-0.590106,-0.063159,-0.804852,-0.590106,-0.063159,-0.804852,-0.590106,-0.063159,-0.804852, + -0.235757,0.315405,-0.919205,-0.235757,0.315405,-0.919205,-0.235757,0.315405,-0.919205,-0.801594,-0.214688,0.557993, + -0.801594,-0.214688,0.557993,-0.801594,-0.214688,0.557993,-0.801594,-0.214688,0.557993,-0.088758,0.634879,0.767496, + -0.088758,0.634879,0.767496,-0.088758,0.634879,0.767496,-0.088758,0.634879,0.767496,-0.088758,0.634879,0.767496, + 0.404465,0.715966,-0.569036,0.404465,0.715966,-0.569036,0.404465,0.715966,-0.569036,0.404465,0.715966,-0.569036, + -0.750027,-0.463780,0.471558,-0.750027,-0.463780,0.471558,-0.750027,-0.463780,0.471558,-0.047358,0.761544,0.646381, + -0.047358,0.761544,0.646381,-0.047358,0.761544,0.646381,-0.151078,0.643240,0.750611,-0.151078,0.643240,0.750611, + -0.151078,0.643240,0.750611,0.662643,-0.748926,0.003819,0.662643,-0.748926,0.003819,0.662643,-0.748926,0.003819, + 0.662643,-0.748926,0.003819,0.972293,0.171420,0.158941,0.972293,0.171420,0.158941,0.972293,0.171420,0.158941, + 0.972293,0.171420,0.158941,-0.483929,0.754184,-0.443869,-0.483929,0.754184,-0.443869,-0.483929,0.754184,-0.443869, + -0.483929,0.754184,-0.443869,-0.847825,-0.258040,-0.463258,-0.847825,-0.258040,-0.463258,-0.847825,-0.258040,-0.463258, + -0.847825,-0.258040,-0.463258,-0.368185,0.309584,-0.876697,-0.368185,0.309584,-0.876697,-0.368185,0.309584,-0.876697, + -0.368185,0.309584,-0.876697,0.164203,0.795984,-0.582621,0.164203,0.795984,-0.582621,0.164203,0.795984,-0.582621, + 0.164203,0.795984,-0.582621,-0.074767,0.947691,0.310309,-0.074767,0.947691,0.310309,-0.074767,0.947691,0.310309, + -0.074767,0.947691,0.310309,-0.147217,-0.880772,0.450076,-0.147217,-0.880772,0.450076,-0.147217,-0.880772,0.450076, + -0.147217,-0.880772,0.450076,0.978963,0.044845,-0.199046,0.978963,0.044845,-0.199046,0.978963,0.044845,-0.199046, + -0.744983,0.271940,-0.609137,-0.744983,0.271940,-0.609137,-0.744983,0.271940,-0.609137,-0.744983,0.271940,-0.609137, + -0.694734,-0.688805,0.207102,-0.694734,-0.688805,0.207102,-0.694734,-0.688805,0.207102,-0.992547,-0.117201,0.033378, + -0.992547,-0.117201,0.033378,-0.992547,-0.117201,0.033378,-0.048515,-0.767520,-0.639186,-0.048515,-0.767520,-0.639186, + -0.048515,-0.767520,-0.639186,-0.048515,-0.767520,-0.639186,-0.720488,0.191907,0.666385,-0.720488,0.191907,0.666385, + -0.720488,0.191907,0.666385,-0.720488,0.191907,0.666385,-0.161787,0.977365,0.136321,-0.161787,0.977365,0.136321, + -0.161787,0.977365,0.136321,-0.161787,0.977365,0.136321,-0.838133,-0.007686,0.545412,-0.838133,-0.007686,0.545412, + -0.838133,-0.007686,0.545412,-0.838133,-0.007686,0.545412,-0.126368,0.599350,-0.790449,-0.126368,0.599350,-0.790449, + -0.126368,0.599350,-0.790449,0.396901,0.757204,-0.518760,0.396901,0.757204,-0.518760,0.396901,0.757204,-0.518760, + 0.396901,0.757204,-0.518760,0.706388,-0.246227,-0.663617,0.706388,-0.246227,-0.663617,0.706388,-0.246227,-0.663617, + 0.706388,-0.246227,-0.663617,-0.652491,-0.485753,-0.581635,-0.652491,-0.485753,-0.581635,-0.652491,-0.485753,-0.581635, + -0.110553,0.864463,0.490390,-0.110553,0.864463,0.490390,-0.110553,0.864463,0.490390,0.098009,-0.147866,-0.984139, + 0.098009,-0.147866,-0.984139,0.098009,-0.147866,-0.984139,0.098009,-0.147866,-0.984139,-0.412333,0.579511,-0.702957, + -0.412333,0.579511,-0.702957,-0.412333,0.579511,-0.702957,-0.122140,0.872351,-0.473377,-0.122140,0.872351,-0.473377, + -0.122140,0.872351,-0.473377,-0.787567,0.387730,-0.478962,-0.787567,0.387730,-0.478962,-0.787567,0.387730,-0.478962, + -0.258032,-0.954815,-0.147468,-0.258032,-0.954815,-0.147468,-0.258032,-0.954815,-0.147468,-0.258032,-0.954815,-0.147468, + 0.340843,0.886427,-0.313167,0.340843,0.886427,-0.313167,0.340843,0.886427,-0.313167,0.340843,0.886427,-0.313167, + -0.670422,-0.715880,0.195063,-0.670422,-0.715880,0.195063,-0.670422,-0.715880,0.195063,-0.670422,-0.715880,0.195063, + -0.972212,-0.100139,-0.211605,-0.972212,-0.100139,-0.211605,-0.972212,-0.100139,-0.211605,-0.972212,-0.100139,-0.211605, + -0.505836,0.717105,-0.479468,-0.505836,0.717105,-0.479468,-0.505836,0.717105,-0.479468,-0.505836,0.717105,-0.479468, + -0.110482,-0.769214,-0.629368,-0.110482,-0.769214,-0.629368,-0.110482,-0.769214,-0.629368,-0.110482,-0.769214,-0.629368, + -0.555974,0.760337,0.335828,-0.555974,0.760337,0.335828,-0.555974,0.760337,0.335828,-0.555974,0.760337,0.335828, + -0.707356,0.598661,0.375836,-0.707356,0.598661,0.375836,-0.707356,0.598661,0.375836,-0.707356,0.598661,0.375836, + 0.624760,-0.039828,-0.779800,0.624760,-0.039828,-0.779800,0.624760,-0.039828,-0.779800,0.624760,-0.039828,-0.779800, + -0.788158,-0.308856,-0.532367,-0.788158,-0.308856,-0.532367,-0.788158,-0.308856,-0.532367,-0.788158,-0.308856,-0.532367, + 0.740228,0.152042,-0.654939,0.740228,0.152042,-0.654939,0.740228,0.152042,-0.654939,0.740228,0.152042,-0.654939, + -0.610525,-0.784735,0.107003,-0.610525,-0.784735,0.107003,-0.610525,-0.784735,0.107003,-0.610525,-0.784735,0.107003, + -0.421552,-0.762607,0.490637,-0.421552,-0.762607,0.490637,-0.421552,-0.762607,0.490637,0.233047,0.761233,-0.605155, + 0.233047,0.761233,-0.605155,0.233047,0.761233,-0.605155,-0.649628,0.411463,0.639282,-0.649628,0.411463,0.639282, + -0.649628,0.411463,0.639282,-0.978505,-0.022413,-0.205002,-0.978505,-0.022413,-0.205002,-0.978505,-0.022413,-0.205002, + -0.978505,-0.022413,-0.205002,-0.054561,-0.456430,-0.888085,-0.054561,-0.456430,-0.888085,-0.054561,-0.456430,-0.888085, + 0.631683,-0.542828,0.553457,0.631683,-0.542828,0.553457,0.631683,-0.542828,0.553457,0.631683,-0.542828,0.553457, + -0.895317,0.075440,-0.438994,-0.895317,0.075440,-0.438994,-0.895317,0.075440,-0.438994,-0.895317,0.075440,-0.438994, + 0.481608,-0.163383,0.861022,0.481608,-0.163383,0.861022,0.481608,-0.163383,0.861022,0.481608,-0.163383,0.861022, + 0.179890,0.972814,0.145851,0.179890,0.972814,0.145851,0.179890,0.972814,0.145851,0.179890,0.972814,0.145851, + -0.320590,-0.927757,0.191020,-0.320590,-0.927757,0.191020,-0.320590,-0.927757,0.191020,-0.527665,-0.827136,0.193432, + -0.527665,-0.827136,0.193432,-0.527665,-0.827136,0.193432,-0.527665,-0.827136,0.193432,-0.007294,0.945770,-0.324756, + -0.007294,0.945770,-0.324756,-0.007294,0.945770,-0.324756,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, + 0.000000,0.000000,1.000000,-0.865231,-0.168340,0.472268,-0.865231,-0.168340,0.472268,-0.865231,-0.168340,0.472268, + 0.077600,0.994311,0.072971,0.077600,0.994311,0.072971,0.077600,0.994311,0.072971,-0.769763,-0.580734,0.264977, + -0.769763,-0.580734,0.264977,-0.769763,-0.580734,0.264977,-0.769763,-0.580734,0.264977,0.067940,0.988722,0.133468, + 0.067940,0.988722,0.133468,0.067940,0.988722,0.133468,0.321963,0.338667,0.884107,0.321963,0.338667,0.884107, + 0.321963,0.338667,0.884107,-0.394264,-0.193343,0.898429,-0.394264,-0.193343,0.898429,-0.394264,-0.193343,0.898429, + -0.665916,0.534288,0.520665,-0.665916,0.534288,0.520665,-0.665916,0.534288,0.520665,0.609991,0.594488,-0.523923, + 0.609991,0.594488,-0.523923,0.609991,0.594488,-0.523923,0.609991,0.594488,-0.523923,0.992626,0.070616,-0.098521, + 0.992626,0.070616,-0.098521,0.992626,0.070616,-0.098521,0.992626,0.070616,-0.098521,0.558009,-0.338282,-0.757754, + 0.558009,-0.338282,-0.757754,0.558009,-0.338282,-0.757754,0.558009,-0.338282,-0.757754,0.827869,-0.012794,0.560775, + 0.827869,-0.012794,0.560775,0.827869,-0.012794,0.560775,0.827869,-0.012794,0.560775,0.432437,-0.445755,-0.783773, + 0.432437,-0.445755,-0.783773,0.432437,-0.445755,-0.783773,0.432437,-0.445755,-0.783773,0.318030,-0.885718,0.338173, + 0.318030,-0.885718,0.338173,0.318030,-0.885718,0.338173,0.318030,-0.885718,0.338173,-0.722852,0.119223,0.680640, + -0.722852,0.119223,0.680640,-0.722852,0.119223,0.680640,-0.722852,0.119223,0.680640,0.321123,0.608966,0.725286, + 0.321123,0.608966,0.725286,0.321123,0.608966,0.725286,0.286865,0.951281,0.113020,0.286865,0.951281,0.113020, + 0.286865,0.951281,0.113020,0.909072,0.384735,-0.159894,0.909072,0.384735,-0.159894,0.909072,0.384735,-0.159894, + 0.736599,-0.049550,0.674512,0.736599,-0.049550,0.674512,0.736599,-0.049550,0.674512,0.810259,-0.455415,-0.368888, + 0.810259,-0.455415,-0.368888,0.810259,-0.455415,-0.368888,0.810259,-0.455415,-0.368888,-0.598277,0.079448,0.797341, + -0.598277,0.079448,0.797341,-0.598277,0.079448,0.797341,-0.598277,0.079448,0.797341,0.044000,-0.699440,0.713335, + 0.044000,-0.699440,0.713335,0.044000,-0.699440,0.713335,0.044000,-0.699440,0.713335,-0.026346,0.865411,-0.500370, + -0.026346,0.865411,-0.500370,-0.026346,0.865411,-0.500370,-0.026346,0.865411,-0.500370,-0.851189,-0.227055,-0.473205, + -0.851189,-0.227055,-0.473205,-0.851189,-0.227055,-0.473205,-0.851189,-0.227055,-0.473205,-0.095271,0.752569,-0.651586, + -0.095271,0.752569,-0.651586,-0.095271,0.752569,-0.651586,-0.095271,0.752569,-0.651586,-0.694437,-0.623744,-0.358747, + -0.694437,-0.623744,-0.358747,-0.694437,-0.623744,-0.358747,-0.694437,-0.623744,-0.358747,0.388920,-0.701940,0.596676, + 0.388920,-0.701940,0.596676,0.388920,-0.701940,0.596676,0.388920,-0.701940,0.596676,-0.410057,0.552172,0.725920, + -0.410057,0.552172,0.725920,-0.410057,0.552172,0.725920,-0.410057,0.552172,0.725920,-0.239826,0.619997,-0.747052, + -0.239826,0.619997,-0.747052,-0.239826,0.619997,-0.747052,-0.239826,0.619997,-0.747052,-0.189346,-0.322614,-0.927399, + -0.189346,-0.322614,-0.927399,-0.189346,-0.322614,-0.927399,0.491694,0.134897,-0.860255,0.491694,0.134897,-0.860255, + 0.491694,0.134897,-0.860255,0.875353,-0.452985,-0.169001,0.875353,-0.452985,-0.169001,0.875353,-0.452985,-0.169001, + 0.147545,-0.887280,-0.436995,0.147545,-0.887280,-0.436995,0.147545,-0.887280,-0.436995,-0.359255,-0.773661,0.521904, + -0.359255,-0.773661,0.521904,-0.359255,-0.773661,0.521904,-0.359255,-0.773661,0.521904,-0.782499,0.188088,-0.593564, + -0.782499,0.188088,-0.593564,-0.782499,0.188088,-0.593564,-0.782499,0.188088,-0.593564,0.132613,0.991011,-0.017643, + 0.132613,0.991011,-0.017643,0.132613,0.991011,-0.017643,0.132613,0.991011,-0.017643,0.888431,0.458762,-0.015049, + 0.888431,0.458762,-0.015049,0.888431,0.458762,-0.015049,0.552209,-0.634294,0.541051,0.552209,-0.634294,0.541051, + 0.552209,-0.634294,0.541051,0.102458,0.677528,-0.728326,0.102458,0.677528,-0.728326,0.102458,0.677528,-0.728326, + -0.704367,-0.624715,-0.337044,-0.704367,-0.624715,-0.337044,-0.704367,-0.624715,-0.337044,0.319645,0.572611,-0.754946, + 0.319645,0.572611,-0.754946,0.319645,0.572611,-0.754946,0.319645,0.572611,-0.754946,-0.826556,0.144932,-0.543874, + -0.826556,0.144932,-0.543874,-0.826556,0.144932,-0.543874,-0.826556,0.144932,-0.543874,0.956106,-0.282307,0.078514, + 0.956106,-0.282307,0.078514,0.956106,-0.282307,0.078514,0.956106,-0.282307,0.078514,-0.327088,-0.840720,0.431512, + -0.327088,-0.840720,0.431512,-0.327088,-0.840720,0.431512,-0.327088,-0.840720,0.431512,-0.569781,0.821773,0.006280, + -0.569781,0.821773,0.006280,-0.569781,0.821773,0.006280,-0.569781,0.821773,0.006280,-0.020211,-0.894639,-0.446332, + -0.020211,-0.894639,-0.446332,-0.020211,-0.894639,-0.446332,-0.020211,-0.894639,-0.446332,0.726186,-0.679697,0.103272, + 0.726186,-0.679697,0.103272,0.726186,-0.679697,0.103272,0.726186,-0.679697,0.103272,0.988606,0.010121,0.150184, + 0.988606,0.010121,0.150184,0.988606,0.010121,0.150184,0.988606,0.010121,0.150184,-0.099038,-0.983790,-0.149495, + -0.099038,-0.983790,-0.149495,-0.099038,-0.983790,-0.149495,0.615928,0.762420,0.198367,0.615928,0.762420,0.198367, + 0.615928,0.762420,0.198367,0.615928,0.762420,0.198367,-0.149656,0.395835,-0.906045,-0.149656,0.395835,-0.906045, + -0.149656,0.395835,-0.906045,0.735294,-0.218574,0.641535,0.735294,-0.218574,0.641535,0.735294,-0.218574,0.641535, + 0.735294,-0.218574,0.641535,-0.054257,-0.798454,0.599606,-0.054257,-0.798454,0.599606,-0.054257,-0.798454,0.599606, + -0.054257,-0.798454,0.599606,-0.613292,-0.268907,-0.742672,-0.613292,-0.268907,-0.742672,-0.613292,-0.268907,-0.742672, + 0.485848,0.110640,0.867012,0.485848,0.110640,0.867012,0.485848,0.110640,0.867012,-0.597388,-0.775145,0.205615, + -0.597388,-0.775145,0.205615,-0.597388,-0.775145,0.205615,-0.597388,-0.775145,0.205615,0.119315,-0.617275,0.777648, + 0.119315,-0.617275,0.777648,0.119315,-0.617275,0.777648,0.119315,-0.617275,0.777648,0.392082,0.203672,0.897100, + 0.392082,0.203672,0.897100,0.392082,0.203672,0.897100,0.392082,0.203672,0.897100,-0.616187,-0.098175,0.781457, + -0.616187,-0.098175,0.781457,-0.616187,-0.098175,0.781457,-0.835506,-0.230099,0.498983,-0.835506,-0.230099,0.498983, + -0.835506,-0.230099,0.498983,-0.443572,0.263427,0.856650,-0.443572,0.263427,0.856650,-0.443572,0.263427,0.856650, + -0.143344,-0.964399,-0.222231,-0.143344,-0.964399,-0.222231,-0.143344,-0.964399,-0.222231,-0.143344,-0.964399,-0.222231, + 0.305144,-0.747994,0.589399,0.305144,-0.747994,0.589399,0.305144,-0.747994,0.589399,0.305144,-0.747994,0.589399, + 0.391275,0.917619,0.069858,0.391275,0.917619,0.069858,0.391275,0.917619,0.069858,0.776492,-0.155929,-0.610529, + 0.776492,-0.155929,-0.610529,0.776492,-0.155929,-0.610529,0.381005,0.919366,0.097987,0.381005,0.919366,0.097987, + 0.381005,0.919366,0.097987,0.548039,-0.267355,-0.792575,0.548039,-0.267355,-0.792575,0.548039,-0.267355,-0.792575, + 0.548039,-0.267355,-0.792575,-0.653332,0.757032,0.007743,-0.653332,0.757032,0.007743,-0.653332,0.757032,0.007743, + -0.477317,-0.638870,-0.603335,-0.477317,-0.638870,-0.603335,-0.477317,-0.638870,-0.603335,0.828674,0.334289,-0.448943, + 0.828674,0.334289,-0.448943,0.828674,0.334289,-0.448943,0.828674,0.334289,-0.448943,0.278433,-0.715448,0.640788, + 0.278433,-0.715448,0.640788,0.278433,-0.715448,0.640788,0.278433,-0.715448,0.640788,-0.768705,0.120636,0.628123, + -0.768705,0.120636,0.628123,-0.768705,0.120636,0.628123,-0.768705,0.120636,0.628123,-0.717283,-0.056996,0.694447, + -0.717283,-0.056996,0.694447,-0.717283,-0.056996,0.694447,0.381205,-0.798065,0.466663,0.381205,-0.798065,0.466663, + 0.381205,-0.798065,0.466663,0.381205,-0.798065,0.466663,0.344504,0.571515,-0.744773,0.344504,0.571515,-0.744773, + 0.344504,0.571515,-0.744773,0.344504,0.571515,-0.744773,-0.538937,0.565099,-0.624668,-0.538937,0.565099,-0.624668, + -0.538937,0.565099,-0.624668,-0.538937,0.565099,-0.624668,0.464186,-0.678963,0.568807,0.464186,-0.678963,0.568807, + 0.464186,-0.678963,0.568807,0.464186,-0.678963,0.568807,0.978815,0.204415,-0.011610,0.978815,0.204415,-0.011610, + 0.978815,0.204415,-0.011610,0.941203,0.337440,-0.016486,0.941203,0.337440,-0.016486,0.941203,0.337440,-0.016486, + 0.986233,0.118643,0.115186,0.986233,0.118643,0.115186,0.986233,0.118643,0.115186,0.981847,0.188391,-0.022010, + 0.981847,0.188391,-0.022010,0.981847,0.188391,-0.022010,-0.415110,-0.733337,0.538425,-0.415110,-0.733337,0.538425, + -0.415110,-0.733337,0.538425,-0.415110,-0.733337,0.538425,-0.459012,0.222186,0.860198,-0.459012,0.222186,0.860198, + -0.459012,0.222186,0.860198,-0.459012,0.222186,0.860198,-0.459012,0.222186,0.860198,0.641192,0.693564,-0.328394, + 0.641192,0.693564,-0.328394,0.641192,0.693564,-0.328394,0.641192,0.693564,-0.328394,-0.481337,0.730453,0.484514, + -0.481337,0.730453,0.484514,-0.481337,0.730453,0.484514,-0.334436,0.851873,0.403070,-0.334436,0.851873,0.403070, + -0.334436,0.851873,0.403070,-0.470551,0.745188,0.472523,-0.470551,0.745188,0.472523,-0.470551,0.745188,0.472523, + 0.168263,0.300874,-0.938703,0.168263,0.300874,-0.938703,0.168263,0.300874,-0.938703,0.168263,0.300874,-0.938703, + 0.772960,0.594689,-0.221085,0.772960,0.594689,-0.221085,0.772960,0.594689,-0.221085,0.772960,0.594689,-0.221085, + 0.157315,-0.607463,0.778615,0.157315,-0.607463,0.778615,0.157315,-0.607463,0.778615,0.157315,-0.607463,0.778615, + -0.589052,-0.807534,0.030105,-0.589052,-0.807534,0.030105,-0.589052,-0.807534,0.030105,-0.589052,-0.807534,0.030105, + 0.996430,-0.083662,0.011338,0.996430,-0.083662,0.011338,0.996430,-0.083662,0.011338,0.996430,-0.083662,0.011338, + 0.558398,0.826039,-0.076491,0.558398,0.826039,-0.076491,0.558398,0.826039,-0.076491,0.558398,0.826039,-0.076491, + 0.971719,0.225977,0.068533,0.971719,0.225977,0.068533,0.971719,0.225977,0.068533,0.971719,0.225977,0.068533, + 0.523323,-0.562243,-0.640324,0.523323,-0.562243,-0.640324,0.523323,-0.562243,-0.640324,0.523323,-0.562243,-0.640324, + -0.524859,0.850774,-0.026558,-0.524859,0.850774,-0.026558,-0.524859,0.850774,-0.026558,-0.201743,-0.881628,0.426652, + -0.201743,-0.881628,0.426652,-0.201743,-0.881628,0.426652,-0.201743,-0.881628,0.426652,-0.376426,-0.757055,0.534015, + -0.376426,-0.757055,0.534015,-0.376426,-0.757055,0.534015,-0.525599,0.029192,-0.850232,-0.525599,0.029192,-0.850232, + -0.525599,0.029192,-0.850232,0.985633,0.078056,0.149781,0.985633,0.078056,0.149781,0.985633,0.078056,0.149781, + 0.985633,0.078056,0.149781,-0.751601,0.258124,0.607016,-0.751601,0.258124,0.607016,-0.751601,0.258124,0.607016, + -0.751601,0.258124,0.607016,-0.048658,0.966681,0.251317,-0.048658,0.966681,0.251317,-0.048658,0.966681,0.251317, + -0.048658,0.966681,0.251317,-0.561334,-0.033862,0.826897,-0.561334,-0.033862,0.826897,-0.561334,-0.033862,0.826897, + -0.561334,-0.033862,0.826897,-0.388988,0.856672,-0.338823,-0.388988,0.856672,-0.338823,-0.388988,0.856672,-0.338823, + 0.673873,0.688590,-0.267843,0.673873,0.688590,-0.267843,0.673873,0.688590,-0.267843,0.673873,0.688590,-0.267843, + 0.714194,-0.262937,-0.648685,0.714194,-0.262937,-0.648685,0.714194,-0.262937,-0.648685,0.714194,-0.262937,-0.648685, + 0.583637,-0.808177,-0.078853,0.583637,-0.808177,-0.078853,0.583637,-0.808177,-0.078853,0.940795,0.242258,-0.237099, + 0.940795,0.242258,-0.237099,0.940795,0.242258,-0.237099,0.968061,-0.230078,-0.099614,0.968061,-0.230078,-0.099614, + 0.968061,-0.230078,-0.099614,0.968061,-0.230078,-0.099614,0.539723,-0.343093,-0.768756,0.539723,-0.343093,-0.768756, + 0.539723,-0.343093,-0.768756,0.781346,0.290970,0.552119,0.781346,0.290970,0.552119,0.781346,0.290970,0.552119, + 0.637398,0.109215,0.762755,0.637398,0.109215,0.762755,0.637398,0.109215,0.762755,0.647557,0.037637,0.761087, + 0.647557,0.037637,0.761087,0.647557,0.037637,0.761087,0.053147,-0.984230,0.168723,0.053147,-0.984230,0.168723, + 0.053147,-0.984230,0.168723,0.053147,-0.984230,0.168723,0.774417,0.620050,-0.125763,0.774417,0.620050,-0.125763, + 0.774417,0.620050,-0.125763,0.774417,0.620050,-0.125763,-0.274420,-0.753303,0.597686,-0.274420,-0.753303,0.597686, + -0.274420,-0.753303,0.597686,-0.274420,-0.753303,0.597686,0.181133,-0.209203,0.960950,0.181133,-0.209203,0.960950, + 0.181133,-0.209203,0.960950,0.181133,-0.209203,0.960950,0.533145,0.618895,0.576823,0.533145,0.618895,0.576823, + 0.533145,0.618895,0.576823,0.533145,0.618895,0.576823,0.553099,-0.831887,0.045224,0.553099,-0.831887,0.045224, + 0.553099,-0.831887,0.045224,0.553099,-0.831887,0.045224,-0.275430,0.733822,0.621002,-0.275430,0.733822,0.621002, + -0.275430,0.733822,0.621002,-0.275430,0.733822,0.621002,-0.333445,0.563392,0.755912,-0.333445,0.563392,0.755912, + -0.333445,0.563392,0.755912,-0.333445,0.563392,0.755912,0.785555,-0.054958,-0.616347,0.785555,-0.054958,-0.616347, + 0.785555,-0.054958,-0.616347,0.785555,-0.054958,-0.616347,0.633169,-0.686465,0.357579,0.633169,-0.686465,0.357579, + 0.633169,-0.686465,0.357579,0.633169,-0.686465,0.357579,0.477147,0.851885,-0.215924,0.477147,0.851885,-0.215924, + 0.477147,0.851885,-0.215924,0.477147,0.851885,-0.215924,-0.207973,-0.917508,0.339007,-0.207973,-0.917508,0.339007, + -0.207973,-0.917508,0.339007,-0.207973,-0.917508,0.339007,-0.596453,0.441458,0.670343,-0.596453,0.441458,0.670343, + -0.596453,0.441458,0.670343,0.618854,-0.563225,-0.547537,0.618854,-0.563225,-0.547537,0.618854,-0.563225,-0.547537, + -0.264677,-0.834745,0.482853,-0.264677,-0.834745,0.482853,-0.264677,-0.834745,0.482853,0.481896,-0.492643,0.724623, + 0.481896,-0.492643,0.724623,0.481896,-0.492643,0.724623,0.481896,-0.492643,0.724623,0.831870,0.503543,0.233317, + 0.831870,0.503543,0.233317,0.831870,0.503543,0.233317,-0.494775,0.769582,-0.403660,-0.494775,0.769582,-0.403660, + -0.494775,0.769582,-0.403660,-0.494775,0.769582,-0.403660,0.109854,-0.685414,0.719819,0.109854,-0.685414,0.719819, + 0.109854,-0.685414,0.719819,0.109854,-0.685414,0.719819,-0.058579,0.983879,-0.168969,-0.058579,0.983879,-0.168969, + -0.058579,0.983879,-0.168969,-0.058579,0.983879,-0.168969,0.531521,0.226067,0.816321,0.531521,0.226067,0.816321, + 0.531521,0.226067,0.816321,0.531521,0.226067,0.816321,-0.546035,0.835787,0.057495,-0.546035,0.835787,0.057495, + -0.546035,0.835787,0.057495,-0.460118,-0.355058,-0.813772,-0.460118,-0.355058,-0.813772,-0.460118,-0.355058,-0.813772, + -0.460118,-0.355058,-0.813772,-0.117631,0.853643,0.507403,-0.117631,0.853643,0.507403,-0.117631,0.853643,0.507403, + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.916262,-0.123380,-0.381106, + -0.916262,-0.123380,-0.381106,-0.916262,-0.123380,-0.381106,0.492029,0.114314,0.863041,0.492029,0.114314,0.863041, + 0.492029,0.114314,0.863041,-0.970017,-0.217516,-0.108419,-0.970017,-0.217516,-0.108419,-0.970017,-0.217516,-0.108419, + -0.970017,-0.217516,-0.108419,-0.545658,0.692673,-0.471658,-0.545658,0.692673,-0.471658,-0.545658,0.692673,-0.471658, + -0.545658,0.692673,-0.471658,0.922786,0.222379,0.314663,0.922786,0.222379,0.314663,0.922786,0.222379,0.314663, + 0.922786,0.222379,0.314663,-0.804082,-0.517900,0.291944,-0.804082,-0.517900,0.291944,-0.804082,-0.517900,0.291944, + -0.804082,-0.517900,0.291944,0.665106,-0.604111,-0.438958,0.665106,-0.604111,-0.438958,0.665106,-0.604111,-0.438958, + 0.765787,-0.323779,-0.555641,0.765787,-0.323779,-0.555641,0.765787,-0.323779,-0.555641,0.772358,-0.343385,-0.534368, + 0.772358,-0.343385,-0.534368,0.772358,-0.343385,-0.534368,-0.123515,-0.925125,-0.359011,-0.123515,-0.925125,-0.359011, + -0.123515,-0.925125,-0.359011,-0.356837,-0.560005,0.747704,-0.356837,-0.560005,0.747704,-0.356837,-0.560005,0.747704, + -0.356837,-0.560005,0.747704,-0.327499,-0.629573,-0.704544,-0.327499,-0.629573,-0.704544,-0.327499,-0.629573,-0.704544, + -0.619528,-0.716394,-0.320882,-0.619528,-0.716394,-0.320882,-0.619528,-0.716394,-0.320882,-0.387354,-0.738087,-0.552435, + -0.387354,-0.738087,-0.552435,-0.387354,-0.738087,-0.552435,0.422765,-0.218521,0.879499,0.422765,-0.218521,0.879499, + 0.422765,-0.218521,0.879499,0.422765,-0.218521,0.879499,0.964918,0.126153,0.230259,0.964918,0.126153,0.230259, + 0.964918,0.126153,0.230259,0.964918,0.126153,0.230259,0.254007,-0.963718,-0.082030,0.254007,-0.963718,-0.082030, + 0.254007,-0.963718,-0.082030,0.254007,-0.963718,-0.082030,0.228861,-0.971792,0.056953,0.228861,-0.971792,0.056953, + 0.228861,-0.971792,0.056953,0.228861,-0.971792,0.056953,-0.153983,0.980925,0.118641,-0.153983,0.980925,0.118641, + -0.153983,0.980925,0.118641,-0.153983,0.980925,0.118641,-0.200202,-0.029203,0.979319,-0.200202,-0.029203,0.979319, + -0.200202,-0.029203,0.979319,-0.200202,-0.029203,0.979319,0.951377,0.151079,0.268433,0.951377,0.151079,0.268433, + 0.951377,0.151079,0.268433,0.951377,0.151079,0.268433,0.184985,-0.982156,0.033918,0.184985,-0.982156,0.033918, + 0.184985,-0.982156,0.033918,0.184985,-0.982156,0.033918,-0.950219,-0.177336,-0.256195,-0.950219,-0.177336,-0.256195, + -0.950219,-0.177336,-0.256195,-0.950219,-0.177336,-0.256195,-0.129291,0.991392,0.020607,-0.129291,0.991392,0.020607, + -0.129291,0.991392,0.020607,-0.129291,0.991392,0.020607,0.098839,-0.992996,-0.064724,0.098839,-0.992996,-0.064724, + 0.098839,-0.992996,-0.064724,0.098839,-0.992996,-0.064724,-0.262486,-0.072914,0.962177,-0.262486,-0.072914,0.962177, + -0.262486,-0.072914,0.962177,-0.262486,-0.072914,0.962177,-0.970893,0.015730,-0.238997,-0.970893,0.015730,-0.238997, + -0.970893,0.015730,-0.238997,-0.970893,0.015730,-0.238997,-0.255907,-0.058789,0.964912,-0.255907,-0.058789,0.964912, + -0.255907,-0.058789,0.964912,-0.255907,-0.058789,0.964912,0.958584,0.124483,0.256163,0.958584,0.124483,0.256163, + 0.958584,0.124483,0.256163,0.958584,0.124483,0.256163,-0.936532,-0.127279,-0.326660,-0.936532,-0.127279,-0.326660, + -0.936532,-0.127279,-0.326660,-0.936532,-0.127279,-0.326660,0.959664,0.119218,0.254621,0.959664,0.119218,0.254621, + 0.959664,0.119218,0.254621,0.959664,0.119218,0.254621,0.960383,0.119421,0.251798,0.960383,0.119421,0.251798, + 0.960383,0.119421,0.251798,0.960383,0.119421,0.251798,0.140490,-0.987052,-0.077405,0.140490,-0.987052,-0.077405, + 0.140490,-0.987052,-0.077405,0.140490,-0.987052,-0.077405,0.901143,0.105930,0.420381,0.901143,0.105930,0.420381, + 0.901143,0.105930,0.420381,0.901143,0.105930,0.420381,0.127607,-0.991679,-0.017021,0.127607,-0.991679,-0.017021, + 0.127607,-0.991679,-0.017021,0.127607,-0.991679,-0.017021,-0.687153,0.693428,-0.216746,-0.687153,0.693428,-0.216746, + -0.687153,0.693428,-0.216746,-0.687153,0.693428,-0.216746,-0.707548,0.693203,-0.137281,-0.707548,0.693203,-0.137281, + -0.707548,0.693203,-0.137281,-0.707548,0.693203,-0.137281,0.132908,-0.990437,-0.037007,0.132908,-0.990437,-0.037007, + 0.132908,-0.990437,-0.037007,0.132908,-0.990437,-0.037007,-0.975226,-0.130649,-0.178506,-0.975226,-0.130649,-0.178506, + -0.975226,-0.130649,-0.178506,-0.975226,-0.130649,-0.178506,0.132253,-0.990614,-0.034534,0.132253,-0.990614,-0.034534, + 0.132253,-0.990614,-0.034534,0.132253,-0.990614,-0.034534,-0.967391,-0.121336,-0.222335,-0.967391,-0.121336,-0.222335, + -0.967391,-0.121336,-0.222335,-0.967391,-0.121336,-0.222335,0.501701,0.855088,0.130845,0.501701,0.855088,0.130845, + 0.501701,0.855088,0.130845,0.501701,0.855088,0.130845,0.493429,0.851903,0.175467,0.493429,0.851903,0.175467, + 0.493429,0.851903,0.175467,0.493429,0.851903,0.175467,-0.966213,-0.121004,-0.227576,-0.966213,-0.121004,-0.227576, + -0.966213,-0.121004,-0.227576,-0.966213,-0.121004,-0.227576,0.716431,-0.689385,0.107119,0.716431,-0.689385,0.107119, + 0.716431,-0.689385,0.107119,0.716431,-0.689385,0.107119,0.720005,-0.688640,0.085837,0.720005,-0.688640,0.085837, + 0.720005,-0.688640,0.085837,0.720005,-0.688640,0.085837,0.963989,-0.148807,0.220414,0.963989,-0.148807,0.220414, + 0.963989,-0.148807,0.220414,0.963989,-0.148807,0.220414,-0.473941,-0.845710,-0.245265,-0.473941,-0.845710,-0.245265, + -0.473941,-0.845710,-0.245265,-0.473941,-0.845710,-0.245265,-0.479190,-0.847640,-0.227777,-0.479190,-0.847640,-0.227777, + -0.479190,-0.847640,-0.227777,-0.479190,-0.847640,-0.227777,0.270901,0.041225,-0.961724,0.270901,0.041225,-0.961724, + 0.270901,0.041225,-0.961724,0.270901,0.041225,-0.961724,0.103563,-0.993790,-0.040702,0.103563,-0.993790,-0.040702, + 0.103563,-0.993790,-0.040702,0.103563,-0.993790,-0.040702,-0.262292,0.359969,0.895335,-0.262292,0.359969,0.895335, + -0.262292,0.359969,0.895335,-0.262292,0.359969,0.895335,0.243595,0.032437,-0.969334,0.243595,0.032437,-0.969334, + 0.243595,0.032437,-0.969334,0.243595,0.032437,-0.969334,-0.031396,0.587722,0.808454,-0.031396,0.587722,0.808454, + -0.031396,0.587722,0.808454,-0.031396,0.587722,0.808454,-0.512084,0.528120,0.677392,-0.512084,0.528120,0.677392, + -0.512084,0.528120,0.677392,-0.512084,0.528120,0.677392,-0.737673,0.430681,0.519955,-0.737673,0.430681,0.519955, + -0.737673,0.430681,0.519955,-0.737673,0.430681,0.519955,-0.346083,-0.724786,0.595745,-0.346083,-0.724786,0.595745, + -0.346083,-0.724786,0.595745,-0.346083,-0.724786,0.595745,0.121619,-0.666332,0.735670,0.121619,-0.666332,0.735670, + 0.121619,-0.666332,0.735670,0.121619,-0.666332,0.735670,0.486967,-0.496611,0.718499,0.486967,-0.496611,0.718499, + 0.486967,-0.496611,0.718499,0.486967,-0.496611,0.718499,-0.010778,0.097796,-0.995148,-0.010778,0.097796,-0.995148, + -0.010778,0.097796,-0.995148,-0.010778,0.097796,-0.995148,0.523472,0.178379,-0.833162,0.523472,0.178379,-0.833162, + 0.523472,0.178379,-0.833162,0.523472,0.178379,-0.833162,0.796436,0.208743,-0.567553,0.796436,0.208743,-0.567553, + 0.796436,0.208743,-0.567553,0.796436,0.208743,-0.567553,0.146830,-0.985186,-0.088600,0.146830,-0.985186,-0.088600, + 0.146830,-0.985186,-0.088600,0.146830,-0.985186,-0.088600,-0.146837,0.985185,0.088594,-0.146837,0.985185,0.088594, + -0.146837,0.985185,0.088594,-0.146837,0.985185,0.088594,-0.256977,-0.156315,0.953692,-0.256977,-0.156315,0.953692, + -0.256977,-0.156315,0.953692,-0.256977,-0.156315,0.953692,0.220978,0.151768,-0.963398,0.220978,0.151768,-0.963398, + 0.220978,0.151768,-0.963398,0.220978,0.151768,-0.963398,0.952397,0.116707,0.281637,0.952397,0.116707,0.281637, + 0.952397,0.116707,0.281637,0.952397,0.116707,0.281637,-0.973799,-0.131736,-0.185366,-0.973799,-0.131736,-0.185366, + -0.973799,-0.131736,-0.185366,-0.973799,-0.131736,-0.185366,0.179324,-0.975708,-0.125848,0.179324,-0.975708,-0.125848, + 0.179324,-0.975708,-0.125848,0.179324,-0.975708,-0.125848,-0.179323,0.975708,0.125848,-0.179323,0.975708,0.125848, + -0.179323,0.975708,0.125848,-0.179323,0.975708,0.125848,0.342560,0.203129,-0.917274,0.342560,0.203129,-0.917274, + 0.342560,0.203129,-0.917274,0.342560,0.203129,-0.917274,-0.307725,-0.198400,0.930561,-0.307725,-0.198400,0.930561, + -0.307725,-0.198400,0.930561,-0.307725,-0.198400,0.930561,-0.918639,-0.121316,-0.376013,-0.918639,-0.121316,-0.376013, + -0.918639,-0.121316,-0.376013,-0.918639,-0.121316,-0.376013,0.948711,0.140934,0.282994,0.948711,0.140934,0.282994, + 0.948711,0.140934,0.282994,0.948711,0.140934,0.282994,0.138598,-0.988044,-0.067519,0.138598,-0.988044,-0.067519, + 0.138598,-0.988044,-0.067519,0.138598,-0.988044,-0.067519,-0.138603,0.988044,0.067516,-0.138603,0.988044,0.067516, + -0.138603,0.988044,0.067516,-0.138603,0.988044,0.067516,0.240924,0.120259,-0.963065,0.240924,0.120259,-0.963065, + 0.240924,0.120259,-0.963065,0.240924,0.120259,-0.963065,-0.204623,-0.115864,0.971959,-0.204623,-0.115864,0.971959, + -0.204623,-0.115864,0.971959,-0.204623,-0.115864,0.971959,-0.958736,-0.114927,-0.260034,-0.958736,-0.114927,-0.260034, + -0.958736,-0.114927,-0.260034,-0.958736,-0.114927,-0.260034,0.978483,0.126405,0.163071,0.978483,0.126405,0.163071, + 0.978483,0.126405,0.163071,0.978483,0.126405,0.163071,-0.536541,-0.008839,-0.843828,-0.536541,-0.008839,-0.843828, + -0.536541,-0.008839,-0.843828,-0.536541,-0.008839,-0.843828,-0.558211,-0.690425,0.460123,-0.558211,-0.690425,0.460123, + -0.558211,-0.690425,0.460123,-0.558211,-0.690425,0.460123,0.279190,0.549645,0.787364,0.279190,0.549645,0.787364, + 0.279190,0.549645,0.787364,0.279190,0.549645,0.787364,0.131846,-0.990721,-0.033003,0.131846,-0.990721,-0.033003, + 0.131846,-0.990721,-0.033003,0.131846,-0.990721,-0.033003,0.800563,0.042565,-0.597735,0.800563,0.042565,-0.597735, + 0.800563,0.042565,-0.597735,0.800563,0.042565,-0.597735,0.140940,-0.983508,-0.113352,0.140940,-0.983508,-0.113352, + 0.140940,-0.983508,-0.113352,0.140940,-0.983508,-0.113352,0.124263,-0.992239,-0.004500,0.124263,-0.992239,-0.004500, + 0.124263,-0.992239,-0.004500,0.124263,-0.992239,-0.004500,0.123799,-0.992294,-0.005046,0.123799,-0.992294,-0.005046, + 0.123799,-0.992294,-0.005046,0.123799,-0.992294,-0.005046,0.959235,0.118955,0.256354,0.959235,0.118955,0.256354, + 0.959235,0.118955,0.256354,0.959235,0.118955,0.256354,0.955838,0.118129,0.269109,0.955838,0.118129,0.269109, + 0.955838,0.118129,0.269109,0.955838,0.118129,0.269109,-0.960315,-0.119225,-0.252153,-0.960315,-0.119225,-0.252153, + -0.960315,-0.119225,-0.252153,-0.960315,-0.119225,-0.252153,-0.956960,-0.118388,-0.264975,-0.956960,-0.118388,-0.264975, + -0.956960,-0.118388,-0.264975,-0.956960,-0.118388,-0.264975,0.149648,-0.983510,-0.101559,0.149648,-0.983510,-0.101559, + 0.149648,-0.983510,-0.101559,0.149648,-0.983510,-0.101559,0.948450,0.133709,-0.287340,0.948450,0.133709,-0.287340, + 0.948450,0.133709,-0.287340,0.948450,0.133709,-0.287340,-0.949900,-0.133754,0.282489,-0.949900,-0.133754,0.282489, + -0.949900,-0.133754,0.282489,-0.949900,-0.133754,0.282489,0.142145,-0.988360,-0.054214,0.142145,-0.988360,-0.054214, + 0.142145,-0.988360,-0.054214,0.142145,-0.988360,-0.054214,0.671698,0.066662,0.737820,0.671698,0.066662,0.737820, + 0.671698,0.066662,0.737820,0.671698,0.066662,0.737820,-0.660662,-0.064923,-0.747871,-0.660662,-0.064923,-0.747871, + -0.660662,-0.064923,-0.747871,-0.660662,-0.064923,-0.747871,0.117704,-0.992979,0.011782,0.117704,-0.992979,0.011782, + 0.117704,-0.992979,0.011782,0.117704,-0.992979,0.011782,-0.278151,0.415181,0.866174,-0.278151,0.415181,0.866174, + -0.278151,0.415181,0.866174,-0.278151,0.415181,0.866174,0.127545,-0.991244,-0.034167,0.127545,-0.991244,-0.034167, + 0.127545,-0.991244,-0.034167,0.127545,-0.991244,-0.034167,0.256683,0.004538,-0.966485,0.256683,0.004538,-0.966485, + 0.256683,0.004538,-0.966485,0.256683,0.004538,-0.966485,0.151270,-0.988104,-0.027694,0.151270,-0.988104,-0.027694, + 0.151270,-0.988104,-0.027694,0.151270,-0.988104,-0.027694,-0.288741,0.380648,0.878485,-0.288741,0.380648,0.878485, + -0.288741,0.380648,0.878485,-0.288741,0.380648,0.878485,0.124262,-0.992239,-0.004497,0.124262,-0.992239,-0.004497, + 0.124262,-0.992239,-0.004497,0.124262,-0.992239,-0.004497,0.123800,-0.992294,-0.005049,0.123800,-0.992294,-0.005049, + 0.123800,-0.992294,-0.005049,0.123800,-0.992294,-0.005049,0.959235,0.118956,0.256355,0.959235,0.118956,0.256355, + 0.959235,0.118956,0.256355,0.959235,0.118956,0.256355,0.955839,0.118115,0.269110,0.955839,0.118115,0.269110, + 0.955839,0.118115,0.269110,0.955839,0.118115,0.269110,-0.960314,-0.119225,-0.252154,-0.960314,-0.119225,-0.252154, + -0.960314,-0.119225,-0.252154,-0.960314,-0.119225,-0.252154,-0.956955,-0.118436,-0.264970,-0.956955,-0.118436,-0.264970, + -0.956955,-0.118436,-0.264970,-0.956955,-0.118436,-0.264970,0.143088,-0.986787,-0.076015,0.143088,-0.986787,-0.076015, + 0.143088,-0.986787,-0.076015,0.143088,-0.986787,-0.076015,0.949525,0.133756,-0.283745,0.949525,0.133756,-0.283745, + 0.949525,0.133756,-0.283745,0.949525,0.133756,-0.283745,-0.950952,-0.133784,0.278911,-0.950952,-0.133784,0.278911, + -0.950952,-0.133784,0.278911,-0.950952,-0.133784,0.278911,0.141677,-0.987395,-0.070553,0.141677,-0.987395,-0.070553, + 0.141677,-0.987395,-0.070553,0.141677,-0.987395,-0.070553,0.730795,0.076287,0.678321,0.730795,0.076287,0.678321, + 0.730795,0.076287,0.678321,0.730795,0.076287,0.678321,-0.727320,-0.075677,-0.682113,-0.727320,-0.075677,-0.682113, + -0.727320,-0.075677,-0.682113,-0.727320,-0.075677,-0.682113,0.255351,-0.001257,-0.966848,0.255351,-0.001257,-0.966848, + 0.255351,-0.001257,-0.966848,0.255351,-0.001257,-0.966848,0.242152,0.024103,-0.969939,0.242152,0.024103,-0.969939, + 0.242152,0.024103,-0.969939,0.242152,0.024103,-0.969939,-0.259174,0.369628,0.892303,-0.259174,0.369628,0.892303, + -0.259174,0.369628,0.892303,-0.259174,0.369628,0.892303,0.103562,-0.993791,-0.040680,0.103562,-0.993791,-0.040680, + 0.103562,-0.993791,-0.040680,0.103562,-0.993791,-0.040680,-0.274592,0.397456,0.875573,-0.274592,0.397456,0.875573, + -0.274592,0.397456,0.875573,-0.274592,0.397456,0.875573,0.127810,-0.991212,-0.034100,0.127810,-0.991212,-0.034100, + 0.127810,-0.991212,-0.034100,0.127810,-0.991212,-0.034100,0.248452,0.025809,-0.968300,0.248452,0.025809,-0.968300, + 0.248452,0.025809,-0.968300,0.248452,0.025809,-0.968300,-0.306284,0.346223,0.886747,-0.306284,0.346223,0.886747, + -0.306284,0.346223,0.886747,-0.306284,0.346223,0.886747,0.157052,-0.987245,-0.026110,0.157052,-0.987245,-0.026110, + 0.157052,-0.987245,-0.026110,0.157052,-0.987245,-0.026110,0.258558,0.068990,-0.963529,0.258558,0.068990,-0.963529, + 0.258558,0.068990,-0.963529,0.258558,0.068990,-0.963529,-0.283188,0.328688,0.900982,-0.283188,0.328688,0.900982, + -0.283188,0.328688,0.900982,-0.283188,0.328688,0.900982,0.115726,-0.992578,-0.037370,0.115726,-0.992578,-0.037370, + 0.115726,-0.992578,-0.037370,0.115726,-0.992578,-0.037370,-0.279115,0.174780,0.944218,-0.279115,0.174780,0.944218, + -0.279115,0.174780,0.944218,-0.279115,0.174780,0.944218,-0.215535,-0.302976,0.928305,-0.215535,-0.302976,0.928305, + -0.215535,-0.302976,0.928305,-0.215535,-0.302976,0.928305,0.131845,-0.990721,-0.032994,0.131845,-0.990721,-0.032994, + 0.131845,-0.990721,-0.032994,0.131845,-0.990721,-0.032994,0.131852,-0.990720,-0.032994,0.131852,-0.990720,-0.032994, + 0.131852,-0.990720,-0.032994,0.131852,-0.990720,-0.032994,0.964855,0.151595,0.214646,0.964855,0.151595,0.214646, + 0.964855,0.151595,0.214646,0.964855,0.151595,0.214646,-0.220363,-0.140308,0.965274,-0.220363,-0.140308,0.965274, + -0.220363,-0.140308,0.965274,-0.220363,-0.140308,0.965274,-0.240833,0.011730,0.970496,-0.240833,0.011730,0.970496, + -0.240833,0.011730,0.970496,-0.240833,0.011730,0.970496,-0.177723,0.960285,0.215097,-0.177723,0.960285,0.215097, + -0.177723,0.960285,0.215097,-0.177723,0.960285,0.215097,0.143528,-0.985838,-0.086742,0.143528,-0.985838,-0.086742, + 0.143528,-0.985838,-0.086742,0.143528,-0.985838,-0.086742,-0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725, + -0.254842,-0.066045,0.964725,-0.254842,-0.066045,0.964725,0.081084,-0.985249,0.150696,0.081084,-0.985249,0.150696, + 0.081084,-0.985249,0.150696,0.081084,-0.985249,0.150696,-0.117397,0.992729,-0.026607,-0.117397,0.992729,-0.026607, + -0.117397,0.992729,-0.026607,-0.117397,0.992729,-0.026607,-0.166183,0.967707,0.189542,-0.166183,0.967707,0.189542, + -0.166183,0.967707,0.189542,-0.166183,0.967707,0.189542,0.129695,-0.989999,-0.055510,0.129695,-0.989999,-0.055510, + 0.129695,-0.989999,-0.055510,0.129695,-0.989999,-0.055510,-0.203055,-0.058905,0.977394,-0.203055,-0.058905,0.977394, + -0.203055,-0.058905,0.977394,-0.203055,-0.058905,0.977394,0.092896,-0.987609,0.126489,0.092896,-0.987609,0.126489, + 0.092896,-0.987609,0.126489,0.092896,-0.987609,0.126489,-0.146133,0.988884,0.027459,-0.146133,0.988884,0.027459, + -0.146133,0.988884,0.027459,-0.146133,0.988884,0.027459,-0.279115,0.174783,0.944217,-0.279115,0.174783,0.944217, + -0.279115,0.174783,0.944217,-0.279115,0.174783,0.944217,-0.215535,-0.302973,0.928306,-0.215535,-0.302973,0.928306, + -0.215535,-0.302973,0.928306,-0.215535,-0.302973,0.928306,0.143497,-0.983833,-0.107149,0.143497,-0.983833,-0.107149, + 0.143497,-0.983833,-0.107149,0.143497,-0.983833,-0.107149,0.110691,-0.993569,0.023850,0.110691,-0.993569,0.023850, + 0.110691,-0.993569,0.023850,0.110691,-0.993569,0.023850,-0.177723,0.960283,0.215107,-0.177723,0.960283,0.215107, + -0.177723,0.960283,0.215107,-0.177723,0.960283,0.215107,0.147512,-0.983632,-0.103478,0.147512,-0.983632,-0.103478, + 0.147512,-0.983632,-0.103478,0.147512,-0.983632,-0.103478,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,0.081083,-0.985247,0.150711,0.081083,-0.985247,0.150711, + 0.081083,-0.985247,0.150711,0.081083,-0.985247,0.150711,-0.114542,0.992699,-0.037803,-0.114542,0.992699,-0.037803, + -0.114542,0.992699,-0.037803,-0.114542,0.992699,-0.037803,-0.401229,-0.105381,-0.909896,-0.401229,-0.105381,-0.909896, + -0.401229,-0.105381,-0.909896,-0.401229,-0.105381,-0.909896,-0.971989,-0.109554,-0.207929,-0.971989,-0.109554,-0.207929, + -0.971989,-0.109554,-0.207929,-0.971989,-0.109554,-0.207929,0.131846,-0.990721,-0.032992,0.131846,-0.990721,-0.032992, + 0.131846,-0.990721,-0.032992,0.131846,-0.990721,-0.032992,-0.049068,-0.074370,-0.996023,-0.049068,-0.074370,-0.996023, + -0.049068,-0.074370,-0.996023,-0.049068,-0.074370,-0.996023,0.556329,0.000700,-0.830962,0.556329,0.000700,-0.830962, + 0.556329,0.000700,-0.830962,0.556329,0.000700,-0.830962,-0.094922,0.020859,-0.995266,-0.094922,0.020859,-0.995266, + -0.094922,0.020859,-0.995266,-0.094922,0.020859,-0.995266,-0.518684,-0.040043,-0.854028,-0.518684,-0.040043,-0.854028, + -0.518684,-0.040043,-0.854028,-0.518684,-0.040043,-0.854028,0.572062,0.103432,-0.813662,0.572062,0.103432,-0.813662, + 0.572062,0.103432,-0.813662,0.572062,0.103432,-0.813662,0.144908,-0.984106,-0.102646,0.144908,-0.984106,-0.102646, + 0.144908,-0.984106,-0.102646,0.867520,0.143177,-0.476350,0.867520,0.143177,-0.476350,0.867520,0.143177,-0.476350, + 0.867520,0.143177,-0.476350,0.144907,-0.984106,-0.102653,0.144907,-0.984106,-0.102653,0.144907,-0.984106,-0.102653, + 0.144903,-0.984107,-0.102649,0.144903,-0.984107,-0.102649,0.144903,-0.984107,-0.102649,0.144907,-0.984106,-0.102654, + 0.144907,-0.984106,-0.102654,0.144907,-0.984106,-0.102654,-0.310259,-0.048880,0.949395,-0.310259,-0.048880,0.949395, + -0.310259,-0.048880,0.949395,-0.310259,-0.048880,0.949395,0.229935,-0.893099,-0.386659,0.229935,-0.893099,-0.386659, + 0.229935,-0.893099,-0.386659,0.229935,-0.893099,-0.386659,-0.947363,-0.134432,-0.290572,-0.947363,-0.134432,-0.290572, + -0.947363,-0.134432,-0.290572,-0.947363,-0.134432,-0.290572,0.989872,0.130816,0.055136,0.989872,0.130816,0.055136, + 0.989872,0.130816,0.055136,0.989872,0.130816,0.055136,0.237882,0.042196,-0.970377,0.237882,0.042196,-0.970377, + 0.237882,0.042196,-0.970377,0.237882,0.042196,-0.970377,0.305706,0.051278,-0.950744,0.305706,0.051278,-0.950744, + 0.305706,0.051278,-0.950744,0.305706,0.051278,-0.950744,-0.947361,-0.134431,-0.290577,-0.947361,-0.134431,-0.290577, + -0.947361,-0.134431,-0.290577,-0.947361,-0.134431,-0.290577,0.989872,0.130816,0.055140,0.989872,0.130816,0.055140, + 0.989872,0.130816,0.055140,0.989872,0.130816,0.055140,0.207632,-0.896856,-0.390562,0.207632,-0.896856,-0.390562, + 0.207632,-0.896856,-0.390562,0.207632,-0.896856,-0.390562,-0.258005,-0.041657,0.965245,-0.258005,-0.041657,0.965245, + -0.258005,-0.041657,0.965245,-0.258005,-0.041657,0.965245,0.015774,-0.999862,0.005200,0.015774,-0.999862,0.005200, + 0.015774,-0.999862,0.005200,0.015774,-0.999862,0.005200,0.051000,-0.988062,-0.145368,0.051000,-0.988062,-0.145368, + 0.051000,-0.988062,-0.145368,0.051000,-0.988062,-0.145368,0.938243,-0.053415,0.341828,0.938243,-0.053415,0.341828, + 0.938243,-0.053415,0.341828,0.938243,-0.053415,0.341828,-0.020352,-0.992569,-0.119966,-0.020352,-0.992569,-0.119966, + -0.020352,-0.992569,-0.119966,-0.020352,-0.992569,-0.119966,0.947227,-0.051738,0.316360,0.947227,-0.051738,0.316360, + 0.947227,-0.051738,0.316360,0.947227,-0.051738,0.316360,-0.041560,-0.998731,-0.028447,-0.041560,-0.998731,-0.028447, + -0.041560,-0.998731,-0.028447,-0.041560,-0.998731,-0.028447,-0.584609,0.803217,-0.114343,-0.584609,0.803217,-0.114343, + -0.584609,0.803217,-0.114343,-0.584609,0.803217,-0.114343,-0.562710,0.805583,-0.185453,-0.562710,0.805583,-0.185453, + -0.562710,0.805583,-0.185453,-0.562710,0.805583,-0.185453,-0.031941,-0.997368,-0.065089,-0.031941,-0.997368,-0.065089, + -0.031941,-0.997368,-0.065089,-0.031941,-0.997368,-0.065089,-0.980612,0.038319,-0.192176,-0.980612,0.038319,-0.192176, + -0.980612,0.038319,-0.192176,-0.980612,0.038319,-0.192176,-0.028680,-0.996583,-0.077456,-0.028680,-0.996583,-0.077456, + -0.028680,-0.996583,-0.077456,-0.028680,-0.996583,-0.077456,-0.979755,0.043476,-0.195425,-0.979755,0.043476,-0.195425, + -0.979755,0.043476,-0.195425,-0.979755,0.043476,-0.195425,0.630731,0.756493,0.172906,0.630731,0.756493,0.172906, + 0.630731,0.756493,0.172906,0.630731,0.756493,0.172906,0.630649,0.754709,0.180819,0.630649,0.754709,0.180819, + 0.630649,0.754709,0.180819,0.630649,0.754709,0.180819,0.266732,0.038869,-0.962987,0.266732,0.038869,-0.962987, + 0.266732,0.038869,-0.962987,0.266732,0.038869,-0.962987,-0.057552,-0.994859,-0.083327,-0.057552,-0.994859,-0.083327, + -0.057552,-0.994859,-0.083327,-0.057552,-0.994859,-0.083327,-0.189756,0.367422,0.910491,-0.189756,0.367422,0.910491, + -0.189756,0.367422,0.910491,-0.189756,0.367422,0.910491,0.235548,0.026939,-0.971489,0.235548,0.026939,-0.971489, + 0.235548,0.026939,-0.971489,0.235548,0.026939,-0.971489,0.252148,-0.004629,-0.967677,0.252148,-0.004629,-0.967677, + 0.252148,-0.004629,-0.967677,0.252148,-0.004629,-0.967677,-0.029082,-0.996691,-0.075907,-0.029082,-0.996691,-0.075907, + -0.029082,-0.996691,-0.075907,-0.029082,-0.996691,-0.075907,-0.209602,0.420506,0.882747,-0.209602,0.420506,0.882747, + -0.209602,0.420506,0.882747,-0.209602,0.420506,0.882747,-0.036605,-0.998205,-0.047397,-0.036605,-0.998205,-0.047397, + -0.036605,-0.998205,-0.047397,-0.036605,-0.998205,-0.047397,-0.037074,-0.998162,-0.047943,-0.037074,-0.998162,-0.047943, + -0.037074,-0.998162,-0.047943,-0.037074,-0.998162,-0.047943,0.967805,-0.047238,0.247230,0.967805,-0.047238,0.247230, + 0.967805,-0.047238,0.247230,0.967805,-0.047238,0.247230,0.964415,-0.048060,0.259987,0.964415,-0.048060,0.259987, + 0.964415,-0.048060,0.259987,0.964415,-0.048060,0.259987,-0.968877,0.046965,-0.243047,-0.968877,0.046965,-0.243047, + -0.968877,0.046965,-0.243047,-0.968877,0.046965,-0.243047,-0.965528,0.047795,-0.255875,-0.965528,0.047795,-0.255875, + -0.965528,0.047795,-0.255875,-0.965528,0.047795,-0.255875,-0.017678,-0.992749,-0.118901,-0.017678,-0.992749,-0.118901, + -0.017678,-0.992749,-0.118901,-0.017678,-0.992749,-0.118901,0.956514,-0.007752,-0.291583,0.956514,-0.007752,-0.291583, + 0.956514,-0.007752,-0.291583,0.956514,-0.007752,-0.291583,-0.957960,0.008147,0.286787,-0.957960,0.008147,0.286787, + -0.957960,0.008147,0.286787,-0.957960,0.008147,0.286787,-0.022531,-0.994667,-0.100649,-0.022531,-0.994667,-0.100649, + -0.022531,-0.994667,-0.100649,-0.022531,-0.994667,-0.100649,0.737181,-0.071113,0.671943,0.737181,-0.071113,0.671943, + 0.737181,-0.071113,0.671943,0.737181,-0.071113,0.671943,-0.733671,0.071279,-0.675756,-0.733671,0.071279,-0.675756, + -0.733671,0.071279,-0.675756,-0.733671,0.071279,-0.675756,-0.013828,-0.991229,-0.131432,-0.013828,-0.991229,-0.131432, + -0.013828,-0.991229,-0.131432,-0.013828,-0.991229,-0.131432,0.013822,0.991230,0.131426,0.013822,0.991230,0.131426, + 0.013822,0.991230,0.131426,0.013822,0.991230,0.131426,-0.271563,-0.154253,0.949979,-0.271563,-0.154253,0.949979, + -0.271563,-0.154253,0.949979,-0.271563,-0.154253,0.949979,0.235190,0.155956,-0.959356,0.235190,0.155956,-0.959356, + 0.235190,0.155956,-0.959356,0.235190,0.155956,-0.959356,0.960887,-0.049474,0.272487,0.960887,-0.049474,0.272487, + 0.960887,-0.049474,0.272487,0.960887,-0.049474,0.272487,-0.983690,0.033884,-0.176651,-0.983690,0.033884,-0.176651, + -0.983690,0.033884,-0.176651,-0.983690,0.033884,-0.176651,-0.014187,-0.993870,-0.109643,-0.014187,-0.993870,-0.109643, + -0.014187,-0.993870,-0.109643,-0.014187,-0.993870,-0.109643,0.014187,0.993872,0.109621,0.014187,0.993872,0.109621, + 0.014187,0.993872,0.109621,0.014187,0.993872,0.109621,0.336024,0.119726,-0.934213,0.336024,0.119726,-0.934213, + 0.336024,0.119726,-0.934213,0.336024,0.119726,-0.934213,-0.300294,-0.121473,0.946080,-0.300294,-0.121473,0.946080, + -0.300294,-0.121473,0.946080,-0.300294,-0.121473,0.946080,-0.939986,0.049743,-0.337569,-0.939986,0.049743,-0.337569, + -0.939986,0.049743,-0.337569,-0.939986,0.049743,-0.337569,0.969266,-0.037609,0.243122,0.969266,-0.037609,0.243122, + 0.969266,-0.037609,0.243122,0.969266,-0.037609,0.243122,-0.022254,-0.993640,-0.110385,-0.022254,-0.993640,-0.110385, + -0.022254,-0.993640,-0.110385,-0.022254,-0.993640,-0.110385,0.022254,0.993639,0.110388,0.022254,0.993639,0.110388, + 0.022254,0.993639,0.110388,0.022254,0.993639,0.110388,0.249802,0.121649,-0.960625,0.249802,0.121649,-0.960625, + 0.249802,0.121649,-0.960625,0.249802,0.121649,-0.960625,-0.213209,-0.123502,0.969169,-0.213209,-0.123502,0.969169, + -0.213209,-0.123502,0.969169,-0.213209,-0.123502,0.969169,-0.966679,0.051245,-0.250810,-0.966679,0.051245,-0.250810, + -0.966679,0.051245,-0.250810,-0.966679,0.051245,-0.250810,0.987294,-0.038923,0.154065,0.987294,-0.038923,0.154065, + 0.987294,-0.038923,0.154065,0.987294,-0.038923,0.154065,-0.007051,-0.992066,-0.125521,-0.007051,-0.992066,-0.125521, + -0.007051,-0.992066,-0.125521,-0.007051,-0.992066,-0.125521,0.008593,0.988203,0.152911,0.008593,0.988203,0.152911, + 0.008593,0.988203,0.152911,0.008593,0.988203,0.152911,0.978715,-0.043896,0.200475,0.978715,-0.043896,0.200475, + 0.978715,-0.043896,0.200475,0.978715,-0.043896,0.200475,0.054892,0.998234,-0.022722,0.054892,0.998234,-0.022722, + 0.054892,0.998234,-0.022722,0.054892,0.998234,-0.022722,0.950447,-0.051141,0.306652,0.950447,-0.051141,0.306652, + 0.950447,-0.051141,0.306652,0.950447,-0.051141,0.306652,-0.036597,-0.998205,-0.047397,-0.036597,-0.998205,-0.047397, + -0.036597,-0.998205,-0.047397,-0.036597,-0.998205,-0.047397,-0.037074,-0.998162,-0.047946,-0.037074,-0.998162,-0.047946, + -0.037074,-0.998162,-0.047946,-0.037074,-0.998162,-0.047946,0.967803,-0.047239,0.247235,0.967803,-0.047239,0.247235, + 0.967803,-0.047239,0.247235,0.967803,-0.047239,0.247235,0.964415,-0.048058,0.259990,0.964415,-0.048058,0.259990, + 0.964415,-0.048058,0.259990,0.964415,-0.048058,0.259990,-0.968878,0.046956,-0.243044,-0.968878,0.046956,-0.243044, + -0.968878,0.046956,-0.243044,-0.968878,0.046956,-0.243044,-0.965533,0.047790,-0.255856,-0.965533,0.047790,-0.255856, + -0.965533,0.047790,-0.255856,-0.965533,0.047790,-0.255856,-0.017678,-0.992749,-0.118897,-0.017678,-0.992749,-0.118897, + -0.017678,-0.992749,-0.118897,-0.017678,-0.992749,-0.118897,0.956510,-0.007755,-0.291597,0.956510,-0.007755,-0.291597, + 0.956510,-0.007755,-0.291597,0.956510,-0.007755,-0.291597,-0.957968,0.008157,0.286758,-0.957968,0.008157,0.286758, + -0.957968,0.008157,0.286758,-0.957968,0.008157,0.286758,-0.018700,-0.995091,-0.097182,-0.018700,-0.995091,-0.097182, + -0.018700,-0.995091,-0.097182,-0.018700,-0.995091,-0.097182,0.679231,-0.073599,0.730225,0.679231,-0.073599,0.730225, + 0.679231,-0.073599,0.730225,0.679231,-0.073599,0.730225,-0.668152,0.073998,-0.740336,-0.668152,0.073998,-0.740336, + -0.668152,0.073998,-0.740336,-0.668152,0.073998,-0.740336,-0.030281,-0.998941,-0.034636,-0.030281,-0.998941,-0.034636, + -0.030281,-0.998941,-0.034636,-0.030281,-0.998941,-0.034636,-0.209600,0.420502,0.882749,-0.209600,0.420502,0.882749, + -0.209600,0.420502,0.882749,-0.209600,0.420502,0.882749,-0.029082,-0.996689,-0.075929,-0.029082,-0.996689,-0.075929, + -0.029082,-0.996689,-0.075929,-0.029082,-0.996689,-0.075929,0.246778,0.005170,-0.969058,0.246778,0.005170,-0.969058, + 0.246778,0.005170,-0.969058,0.246778,0.005170,-0.969058,-0.009450,-0.997447,-0.070776,-0.009450,-0.997447,-0.070776, + -0.009450,-0.997447,-0.070776,-0.009450,-0.997447,-0.070776,-0.217279,0.383623,0.897565,-0.217279,0.383623,0.897565, + -0.217279,0.383623,0.897565,-0.217279,0.383623,0.897565,-0.036597,-0.998205,-0.047399,-0.036597,-0.998205,-0.047399, + -0.036597,-0.998205,-0.047399,-0.036597,-0.998205,-0.047399,-0.037074,-0.998161,-0.047950,-0.037074,-0.998161,-0.047950, + -0.037074,-0.998161,-0.047950,-0.037074,-0.998161,-0.047950,0.967805,-0.047241,0.247229,0.967805,-0.047241,0.247229, + 0.967805,-0.047241,0.247229,0.967805,-0.047241,0.247229,0.964414,-0.048064,0.259993,0.964414,-0.048064,0.259993, + 0.964414,-0.048064,0.259993,0.964414,-0.048064,0.259993,-0.968881,0.046958,-0.243031,-0.968881,0.046958,-0.243031, + -0.968881,0.046958,-0.243031,-0.968881,0.046958,-0.243031,-0.965533,0.047795,-0.255855,-0.965533,0.047795,-0.255855, + -0.965533,0.047795,-0.255855,-0.965533,0.047795,-0.255855,-0.017678,-0.992748,-0.118904,-0.017678,-0.992748,-0.118904, + -0.017678,-0.992748,-0.118904,-0.017678,-0.992748,-0.118904,0.956512,-0.007760,-0.291589,0.956512,-0.007760,-0.291589, + 0.956512,-0.007760,-0.291589,0.956512,-0.007760,-0.291589,-0.957964,0.008150,0.286774,-0.957964,0.008150,0.286774, + -0.957964,0.008150,0.286774,-0.957964,0.008150,0.286774,-0.019127,-0.993359,-0.113451,-0.019127,-0.993359,-0.113451, + -0.019127,-0.993359,-0.113451,-0.019127,-0.993359,-0.113451,0.738664,-0.071037,0.670320,0.738664,-0.071037,0.670320, + 0.738664,-0.071037,0.670320,0.738664,-0.071037,0.670320,-0.735177,0.071205,-0.674126,-0.735177,0.071205,-0.674126, + -0.735177,0.071205,-0.674126,-0.735177,0.071205,-0.674126,0.252147,-0.004629,-0.967678,0.252147,-0.004629,-0.967678, + 0.252147,-0.004629,-0.967678,0.252147,-0.004629,-0.967678,0.235547,0.026939,-0.971489,0.235547,0.026939,-0.971489, + 0.235547,0.026939,-0.971489,0.235547,0.026939,-0.971489,-0.189757,0.367425,0.910489,-0.189757,0.367425,0.910489, + -0.189757,0.367425,0.910489,-0.189757,0.367425,0.910489,-0.057555,-0.994860,-0.083309,-0.057555,-0.994860,-0.083309, + -0.057555,-0.994860,-0.083309,-0.057555,-0.994860,-0.083309,-0.199134,0.393224,0.897619,-0.199134,0.393224,0.897619, + -0.199134,0.393224,0.897619,-0.199134,0.393224,0.897619,-0.033496,-0.996462,-0.077076,-0.033496,-0.996462,-0.077076, + -0.033496,-0.996462,-0.077076,-0.033496,-0.996462,-0.077076,0.240225,0.032751,-0.970165,0.240225,0.032751,-0.970165, + 0.240225,0.032751,-0.970165,0.240225,0.032751,-0.970165,-0.240054,0.352125,0.904645,-0.240054,0.352125,0.904645, + -0.240054,0.352125,0.904645,-0.240054,0.352125,0.904645,-0.003600,-0.997593,-0.069243,-0.003600,-0.997593,-0.069243, + -0.003600,-0.997593,-0.069243,-0.003600,-0.997593,-0.069243,0.262051,0.071377,-0.962411,0.262051,0.071377,-0.962411, + 0.262051,0.071377,-0.962411,0.262051,0.071377,-0.962411,-0.230205,0.325322,0.917154,-0.230205,0.325322,0.917154, + -0.230205,0.325322,0.917154,-0.230205,0.325322,0.917154,-0.029082,-0.996690,-0.075915,-0.029082,-0.996690,-0.075915, + -0.029082,-0.996690,-0.075915,-0.029082,-0.996690,-0.075915,-0.240313,0.176222,0.954566,-0.240313,0.176222,0.954566, + -0.240313,0.176222,0.954566,-0.240313,0.176222,0.954566,-0.254338,-0.304415,0.917956,-0.254338,-0.304415,0.917956, + -0.254338,-0.304415,0.917956,-0.254338,-0.304415,0.917956,-0.018958,-0.993288,-0.114102,-0.018958,-0.993288,-0.114102, + -0.018958,-0.993288,-0.114102,-0.018958,-0.993288,-0.114102,-0.036618,-0.998209,-0.047314,-0.036618,-0.998209,-0.047314, + -0.036618,-0.998209,-0.047314,-0.036618,-0.998209,-0.047314,-0.233075,-0.142123,0.962017,-0.233075,-0.142123,0.962017, + -0.233075,-0.142123,0.962017,-0.233075,-0.142123,0.962017,-0.228489,0.008165,0.973512,-0.228489,0.008165,0.973512, + -0.228489,0.008165,0.973512,-0.228489,0.008165,0.973512,-0.019703,0.966147,0.257240,-0.019703,0.966147,0.257240, + -0.019703,0.966147,0.257240,-0.019703,0.966147,0.257240,-0.013416,-0.990772,-0.134876,-0.013416,-0.990772,-0.134876, + -0.013416,-0.990772,-0.134876,-0.013416,-0.990772,-0.134876,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.076923,-0.991109,0.108561,-0.076923,-0.991109,0.108561, + -0.076923,-0.991109,0.108561,-0.076923,-0.991109,0.108561,0.044643,0.998864,0.016666,0.044643,0.998864,0.016666, + 0.044643,0.998864,0.016666,0.044643,0.998864,0.016666,-0.007317,0.972723,0.231855,-0.007317,0.972723,0.231855, + -0.007317,0.972723,0.231855,-0.007317,0.972723,0.231855,-0.015568,-0.990650,-0.135537,-0.015568,-0.990650,-0.135537, + -0.015568,-0.990650,-0.135537,-0.015568,-0.990650,-0.135537,-0.202606,-0.068025,0.976895,-0.202606,-0.068025,0.976895, + -0.202606,-0.068025,0.976895,-0.202606,-0.068025,0.976895,-0.067062,-0.994399,0.081694,-0.067062,-0.994399,0.081694, + -0.067062,-0.994399,0.081694,-0.067062,-0.994399,0.081694,0.016296,0.997657,0.066451,0.016296,0.997657,0.066451, + 0.016296,0.997657,0.066451,0.016296,0.997657,0.066451,-0.240310,0.176218,0.954567,-0.240310,0.176218,0.954567, + -0.240310,0.176218,0.954567,-0.240310,0.176218,0.954567,-0.254337,-0.304413,0.917957,-0.254337,-0.304413,0.917957, + -0.254337,-0.304413,0.917957,-0.254337,-0.304413,0.917957,-0.018958,-0.993288,-0.114100,-0.018958,-0.993288,-0.114100, + -0.018958,-0.993288,-0.114100,-0.018958,-0.993288,-0.114100,-0.036618,-0.998209,-0.047314,-0.036618,-0.998209,-0.047314, + -0.036618,-0.998209,-0.047314,-0.036618,-0.998209,-0.047314,-0.019704,0.966148,0.257234,-0.019704,0.966148,0.257234, + -0.019704,0.966148,0.257234,-0.019704,0.966148,0.257234,-0.013416,-0.990771,-0.134879,-0.013416,-0.990771,-0.134879, + -0.013416,-0.990771,-0.134879,-0.013416,-0.990771,-0.134879,-0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724, + -0.254842,-0.066045,0.964724,-0.254842,-0.066045,0.964724,-0.076923,-0.991108,0.108569,-0.076923,-0.991108,0.108569, + -0.076923,-0.991108,0.108569,-0.076923,-0.991108,0.108569,0.044643,0.998864,0.016671,0.044643,0.998864,0.016671, + 0.044643,0.998864,0.016671,0.044643,0.998864,0.016671,0.006316,0.986870,0.161393,0.006316,0.986870,0.161393, + 0.006316,0.986870,0.161393,0.006316,0.986870,0.161393,-0.855092,0.467433,-0.224330,-0.855092,0.467433,-0.224330, + -0.855092,0.467433,-0.224330,-0.855092,0.467433,-0.224330,-0.194889,-0.039084,0.980046,-0.194889,-0.039084,0.980046, + -0.194889,-0.039084,0.980046,-0.194889,-0.039084,0.980046,0.965188,-0.035305,0.259163,0.965188,-0.035305,0.259163, + 0.965188,-0.035305,0.259163,0.965188,-0.035305,0.259163,0.025248,-0.999636,-0.009480,0.025248,-0.999636,-0.009480, + 0.025248,-0.999636,-0.009480,0.025248,-0.999636,-0.009480,-0.968270,-0.011788,-0.249629,-0.968270,-0.011788,-0.249629, + -0.968270,-0.011788,-0.249629,-0.968270,-0.011788,-0.249629,0.031624,0.997479,0.063531,0.031624,0.997479,0.063531, + 0.031624,0.997479,0.063531,0.031624,0.997479,0.063531,-0.062264,-0.992283,-0.107229,-0.062264,-0.992283,-0.107229, + -0.062264,-0.992283,-0.107229,-0.062264,-0.992283,-0.107229,-0.263510,-0.071487,0.962004,-0.263510,-0.071487,0.962004, + -0.263510,-0.071487,0.962004,-0.263510,-0.071487,0.962004,-0.957567,0.181171,-0.224149,-0.957567,0.181171,-0.224149, + -0.957567,0.181171,-0.224149,-0.957567,0.181171,-0.224149,-0.255218,-0.058825,0.965092,-0.255218,-0.058825,0.965092, + -0.255218,-0.058825,0.965092,-0.255218,-0.058825,0.965092,0.968046,-0.041672,0.247284,0.968046,-0.041672,0.247284, + 0.968046,-0.041672,0.247284,0.968046,-0.041672,0.247284,-0.947261,0.038433,-0.318150,-0.947261,0.038433,-0.318150, + -0.947261,0.038433,-0.318150,-0.947261,0.038433,-0.318150,0.968255,-0.046973,0.245512,0.968255,-0.046973,0.245512, + 0.968255,-0.046973,0.245512,0.968255,-0.046973,0.245512,0.989912,0.070859,0.122692,0.989912,0.070859,0.122692, + 0.989912,0.070859,0.122692,0.989912,0.070859,0.122692,0.057870,-0.992364,-0.108928,0.057870,-0.992364,-0.108928, + 0.057870,-0.992364,-0.108928,0.057870,-0.992364,-0.108928,-0.040726,0.998035,0.047625,-0.040726,0.998035,0.047625, + -0.040726,0.998035,0.047625,-0.040726,0.998035,0.047625,-0.009400,0.997944,-0.063398,-0.009400,0.997944,-0.063398, + -0.009400,0.997944,-0.063398,-0.009400,0.997944,-0.063398,-0.904991,-0.057701,-0.421500,-0.904991,-0.057701,-0.421500, + -0.904991,-0.057701,-0.421500,-0.904991,-0.057701,-0.421500,0.993929,-0.005051,0.109903,0.993929,-0.005051,0.109903, + 0.993929,-0.005051,0.109903,0.993929,-0.005051,0.109903,0.938328,0.066653,0.339260,0.938328,0.066653,0.339260, + 0.938328,0.066653,0.339260,0.938328,0.066653,0.339260,-0.913584,0.018378,-0.406234,-0.913584,0.018378,-0.406234, + -0.913584,0.018378,-0.406234,-0.913584,0.018378,-0.406234,0.059823,-0.991454,-0.115936,0.059823,-0.991454,-0.115936, + 0.059823,-0.991454,-0.115936,0.059823,-0.991454,-0.115936,0.943196,-0.019565,0.331659,0.943196,-0.019565,0.331659, + 0.943196,-0.019565,0.331659,0.943196,-0.019565,0.331659,-0.012151,0.998483,-0.053698,-0.012151,0.998483,-0.053698, + -0.012151,0.998483,-0.053698,-0.012151,0.998483,-0.053698,0.026218,-0.999648,0.004028,0.026218,-0.999648,0.004028, + 0.026218,-0.999648,0.004028,0.026218,-0.999648,0.004028,-0.979244,-0.073080,-0.189054,-0.979244,-0.073080,-0.189054, + -0.979244,-0.073080,-0.189054,-0.979244,-0.073080,-0.189054,-0.283853,-0.055530,0.957259,-0.283853,-0.055530,0.957259, + -0.283853,-0.055530,0.957259,-0.283853,-0.055530,0.957259,-0.283858,-0.055531,0.957257,-0.283858,-0.055531,0.957257, + -0.283858,-0.055531,0.957257,-0.283858,-0.055531,0.957257,-0.283857,-0.055533,0.957257,-0.283857,-0.055533,0.957257, + -0.283857,-0.055533,0.957257,-0.283857,-0.055533,0.957257,-0.283854,-0.055528,0.957258,-0.283854,-0.055528,0.957258, + -0.283854,-0.055528,0.957258,-0.283854,-0.055528,0.957258,-0.283855,-0.055531,0.957258,-0.283855,-0.055531,0.957258, + -0.283855,-0.055531,0.957258,-0.283855,-0.055531,0.957258,-0.283853,-0.055531,0.957258,-0.283853,-0.055531,0.957258, + -0.283853,-0.055531,0.957258,-0.283853,-0.055531,0.957258,-0.283852,-0.055529,0.957259,-0.283852,-0.055529,0.957259, + -0.283852,-0.055529,0.957259,-0.283852,-0.055529,0.957259,-0.283854,-0.055530,0.957258,-0.283854,-0.055530,0.957258, + -0.283854,-0.055530,0.957258,-0.283854,-0.055530,0.957258,-0.983157,0.012867,-0.182308,-0.983157,0.012867,-0.182308, + -0.983157,0.012867,-0.182308,-0.983157,0.012867,-0.182308,-0.014034,0.998514,-0.052649,-0.014034,0.998514,-0.052649, + -0.014034,0.998514,-0.052649,-0.014034,0.998514,-0.052649,-0.980260,-0.028004,-0.195719,-0.980260,-0.028004,-0.195719, + -0.980260,-0.028004,-0.195719,-0.980260,-0.028004,-0.195719,-0.043193,0.997239,0.060410,-0.043193,0.997239,0.060410, + -0.043193,0.997239,0.060410,-0.043193,0.997239,0.060410,-0.197453,-0.027746,0.979920,-0.197453,-0.027746,0.979920, + -0.197453,-0.027746,0.979920,-0.197453,-0.027746,0.979920,0.023076,-0.999553,0.019026,0.023076,-0.999553,0.019026, + 0.023076,-0.999553,0.019026,0.023076,-0.999553,0.019026,0.949260,0.022875,0.313658,0.949260,0.022875,0.313658, + 0.949260,0.022875,0.313658,0.949260,0.022875,0.313658,0.023366,-0.999673,0.010399,0.023366,-0.999673,0.010399, + 0.023366,-0.999673,0.010399,0.023366,-0.999673,0.010399,-0.314117,-0.031023,0.948877,-0.314117,-0.031023,0.948877, + -0.314117,-0.031023,0.948877,-0.314117,-0.031023,0.948877,-0.044742,0.997313,0.058009,-0.044742,0.997313,0.058009, + -0.044742,0.997313,0.058009,-0.044742,0.997313,0.058009,0.976449,0.027217,0.214023,0.976449,0.027217,0.214023, + 0.976449,0.027217,0.214023,0.976449,0.027217,0.214023,-0.030249,0.999509,0.008161,-0.030249,0.999509,0.008161, + -0.030249,0.999509,0.008161,-0.030249,0.999509,0.008161,-0.661971,-0.731401,-0.163849,-0.661971,-0.731401,-0.163849, + -0.661971,-0.731401,-0.163849,-0.661971,-0.731401,-0.163849,0.962350,0.026199,0.270549,0.962350,0.026199,0.270549, + 0.962350,0.026199,0.270549,0.962350,0.026199,0.270549,0.045841,-0.996453,-0.070566,0.045841,-0.996453,-0.070566, + 0.045841,-0.996453,-0.070566,0.045841,-0.996453,-0.070566,0.966525,0.027261,0.255120,0.966525,0.027261,0.255120, + 0.966525,0.027261,0.255120,0.966525,0.027261,0.255120,0.037162,-0.998722,-0.034259,0.037162,-0.998722,-0.034259, + 0.037162,-0.998722,-0.034259,0.037162,-0.998722,-0.034259,-0.718675,0.681187,-0.139610,-0.718675,0.681187,-0.139610, + -0.718675,0.681187,-0.139610,-0.718675,0.681187,-0.139610,-0.713515,0.682408,-0.158796,-0.713515,0.682408,-0.158796, + -0.713515,0.682408,-0.158796,-0.713515,0.682408,-0.158796,0.028455,-0.999594,-0.001452,0.028455,-0.999594,-0.001452, + 0.028455,-0.999594,-0.001452,0.028455,-0.999594,-0.001452,-0.952590,0.012877,-0.303983,-0.952590,0.012877,-0.303983, + -0.952590,0.012877,-0.303983,-0.952590,0.012877,-0.303983,0.053011,-0.994130,-0.094311,0.053011,-0.994130,-0.094311, + 0.053011,-0.994130,-0.094311,0.053011,-0.994130,-0.094311,-0.981653,0.014777,-0.190103,-0.981653,0.014777,-0.190103, + -0.981653,0.014777,-0.190103,-0.981653,0.014777,-0.190103,0.808679,0.461598,0.364646,0.808679,0.461598,0.364646, + 0.808679,0.461598,0.364646,0.808679,0.461598,0.364646,0.917714,0.350805,0.186380,0.917714,0.350805,0.186380, + 0.917714,0.350805,0.186380,0.917714,0.350805,0.186380,0.302148,0.061303,-0.951288,0.302148,0.061303,-0.951288, + 0.302148,0.061303,-0.951288,0.302148,0.061303,-0.951288,0.966954,-0.009620,0.254770,0.966954,-0.009620,0.254770, + 0.966954,-0.009620,0.254770,0.966954,-0.009620,0.254770,-0.583112,-0.041729,0.811319,-0.583112,-0.041729,0.811319, + -0.583112,-0.041729,0.811319,-0.583112,-0.041729,0.811319,0.286428,0.048412,-0.956878,0.286428,0.048412,-0.956878, + 0.286428,0.048412,-0.956878,0.286428,0.048412,-0.956878,0.964614,0.052436,0.258401,0.964614,0.052436,0.258401, + 0.964614,0.052436,0.258401,0.964614,0.052436,0.258401,-0.592948,-0.073400,0.801888,-0.592948,-0.073400,0.801888, + -0.592948,-0.073400,0.801888,-0.592948,-0.073400,0.801888,-0.966677,0.009670,-0.255817,-0.966677,0.009670,-0.255817, + -0.966677,0.009670,-0.255817,-0.966677,0.009670,-0.255817,0.133044,-0.044417,0.990114,0.133044,-0.044417,0.990114, + 0.133044,-0.044417,0.990114,0.133044,-0.044417,0.990114,0.253083,0.043657,-0.966459,0.253083,0.043657,-0.966459, + 0.253083,0.043657,-0.966459,0.253083,0.043657,-0.966459,0.164427,-0.043951,-0.985410,0.164427,-0.043951,-0.985410, + 0.164427,-0.043951,-0.985410,0.164427,-0.043951,-0.985410,-0.182152,0.484778,0.855459,-0.182152,0.484778,0.855459, + -0.182152,0.484778,0.855459,-0.182152,0.484778,0.855459,0.063249,-0.997771,-0.021288,0.063249,-0.997771,-0.021288, + 0.063249,-0.997771,-0.021288,0.063249,-0.997771,-0.021288,0.290793,-0.079715,-0.953459,0.290793,-0.079715,-0.953459, + 0.290793,-0.079715,-0.953459,0.290793,-0.079715,-0.953459,-0.258546,0.461432,0.848666,-0.258546,0.461432,0.848666, + -0.258546,0.461432,0.848666,-0.258546,0.461432,0.848666,0.004242,-0.998632,-0.052124,0.004242,-0.998632,-0.052124, + 0.004242,-0.998632,-0.052124,0.004242,-0.998632,-0.052124,0.265596,-0.024949,-0.963761,0.265596,-0.024949,-0.963761, + 0.265596,-0.024949,-0.963761,0.265596,-0.024949,-0.963761,0.223825,0.006042,-0.974611,0.223825,0.006042,-0.974611, + 0.223825,0.006042,-0.974611,0.223825,0.006042,-0.974611,-0.217894,0.462831,0.859250,-0.217894,0.462831,0.859250, + -0.217894,0.462831,0.859250,-0.217894,0.462831,0.859250,0.035039,-0.998331,-0.045901,0.035039,-0.998331,-0.045901, + 0.035039,-0.998331,-0.045901,0.035039,-0.998331,-0.045901,0.978726,0.030766,0.202851,0.978726,0.030766,0.202851, + 0.978726,0.030766,0.202851,0.978726,0.030766,0.202851,0.098521,0.883891,-0.457199,0.098521,0.883891,-0.457199, + 0.098521,0.883891,-0.457199,0.098521,0.883891,-0.457199,-0.097313,-0.886235,0.452900,-0.097313,-0.886235,0.452900, + -0.097313,-0.886235,0.452900,-0.097313,-0.886235,0.452900,0.973697,0.029232,0.225963,0.973697,0.029232,0.225963, + 0.973697,0.029232,0.225963,0.973697,0.029232,0.225963,-0.157949,0.852249,0.498723,-0.157949,0.852249,0.498723, + -0.157949,0.852249,0.498723,-0.157949,0.852249,0.498723,0.159018,-0.849545,-0.502978,0.159018,-0.849545,-0.502978, + 0.159018,-0.849545,-0.502978,0.159018,-0.849545,-0.502978,0.048406,0.988486,0.143363,0.048406,0.988486,0.143363, + 0.048406,0.988486,0.143363,0.794042,0.586404,0.160085,0.794042,0.586404,0.160085,0.794042,0.586404,0.160085, + 0.794042,0.586404,0.160085,-0.978764,-0.035483,-0.201898,-0.978764,-0.035483,-0.201898,-0.978764,-0.035483,-0.201898, + -0.978764,-0.035483,-0.201898,-0.950909,-0.028211,-0.308182,-0.950909,-0.028211,-0.308182,-0.950909,-0.028211,-0.308182, + -0.950909,-0.028211,-0.308182,0.048414,0.988485,0.143363,0.048414,0.988485,0.143363,0.048414,0.988485,0.143363, + -0.978764,-0.035479,-0.201897,-0.978764,-0.035479,-0.201897,-0.978764,-0.035479,-0.201897,-0.978764,-0.035479,-0.201897, + 0.155129,-0.971403,-0.179751,0.155129,-0.971403,-0.179751,0.155129,-0.971403,-0.179751,0.155129,-0.971403,-0.179751, + 0.825391,0.065380,-0.560763,0.825391,0.065380,-0.560763,0.825391,0.065380,-0.560763,0.825391,0.065380,-0.560763, + -0.827385,-0.065310,0.557824,-0.827385,-0.065310,0.557824,-0.827385,-0.065310,0.557824,-0.827385,-0.065310,0.557824, + -0.950911,-0.028200,-0.308177,-0.950911,-0.028200,-0.308177,-0.950911,-0.028200,-0.308177,-0.950911,-0.028200,-0.308177, + -0.034971,0.998424,0.043890,-0.034971,0.998424,0.043890,-0.034971,0.998424,0.043890,-0.034971,0.998424,0.043890, + -0.223296,-0.421964,0.878684,-0.223296,-0.421964,0.878684,-0.223296,-0.421964,0.878684,-0.223296,-0.421964,0.878684, + 0.090658,0.028874,0.995463,0.090658,0.028874,0.995463,0.090658,0.028874,0.995463,0.090658,0.028874,0.995463, + -0.964803,-0.052473,-0.257687,-0.964803,-0.052473,-0.257687,-0.964803,-0.052473,-0.257687,-0.964803,-0.052473,-0.257687, + 0.296699,-0.010082,-0.954918,0.296699,-0.010082,-0.954918,0.296699,-0.010082,-0.954918,0.296699,-0.010082,-0.954918, + -0.155547,-0.986769,-0.045740,-0.155547,-0.986769,-0.045740,-0.155547,-0.986769,-0.045740,-0.637725,0.746425,-0.190150, + -0.637725,0.746425,-0.190150,-0.637725,0.746425,-0.190150,-0.637725,0.746425,-0.190150,-0.793168,-0.509118,-0.334191, + -0.793168,-0.509118,-0.334191,-0.793168,-0.509118,-0.334191,-0.793168,-0.509118,-0.334191,-0.942515,-0.172478,-0.286211, + -0.942515,-0.172478,-0.286211,-0.942515,-0.172478,-0.286211,-0.942515,-0.172478,-0.286211,-0.016922,0.994079,0.107330, + -0.016922,0.994079,0.107330,-0.016922,0.994079,0.107330,0.955930,-0.049930,0.289316,0.955930,-0.049930,0.289316, + 0.955930,-0.049930,0.289316,0.955930,-0.049930,0.289316,0.974369,-0.039921,0.221385,0.974369,-0.039921,0.221385, + 0.974369,-0.039921,0.221385,0.974369,-0.039921,0.221385,0.005002,-0.999978,-0.004226,0.005002,-0.999978,-0.004226, + 0.005002,-0.999978,-0.004226,-0.801229,0.553980,-0.226137,-0.801229,0.553980,-0.226137,-0.801229,0.553980,-0.226137, + -0.801229,0.553980,-0.226137,0.985458,0.033926,0.166498,0.985458,0.033926,0.166498,0.985458,0.033926,0.166498, + 0.985458,0.033926,0.166498,-0.985458,-0.033927,-0.166495,-0.985458,-0.033927,-0.166495,-0.985458,-0.033927,-0.166495, + -0.985458,-0.033927,-0.166495,-0.199844,-0.080094,0.976549,-0.199844,-0.080094,0.976549,-0.199844,-0.080094,0.976549, + -0.199844,-0.080094,0.976549,0.201495,0.042488,-0.978568,0.201495,0.042488,-0.978568,0.201495,0.042488,-0.978568, + 0.201495,0.042488,-0.978568,-0.048152,0.995828,0.077505,-0.048152,0.995828,0.077505,-0.048152,0.995828,0.077505, + -0.048152,0.995828,0.077505,0.028075,-0.999409,0.019850,0.028075,-0.999409,0.019850,0.028075,-0.999409,0.019850, + 0.028075,-0.999409,0.019850,0.978864,0.040195,0.200521,0.978864,0.040195,0.200521,0.978864,0.040195,0.200521, + 0.978864,0.040195,0.200521,-0.978864,-0.040194,-0.200526,-0.978864,-0.040194,-0.200526,-0.978864,-0.040194,-0.200526, + -0.978864,-0.040194,-0.200526,0.215189,0.148265,-0.965252,0.215189,0.148265,-0.965252,0.215189,0.148265,-0.965252, + 0.215189,0.148265,-0.965252,-0.217545,-0.110932,0.969726,-0.217545,-0.110932,0.969726,-0.217545,-0.110932,0.969726, + -0.217545,-0.110932,0.969726,0.067811,-0.987484,-0.142398,0.067811,-0.987484,-0.142398,0.067811,-0.987484,-0.142398, + 0.067811,-0.987484,-0.142398,-0.046083,0.997888,0.045787,-0.046083,0.997888,0.045787,-0.046083,0.997888,0.045787, + -0.046083,0.997888,0.045787,0.979033,0.027245,0.201873,0.979033,0.027245,0.201873,0.979033,0.027245,0.201873, + 0.979033,0.027245,0.201873,-0.979033,-0.027249,-0.201870,-0.979033,-0.027249,-0.201870,-0.979033,-0.027249,-0.201870, + -0.979033,-0.027249,-0.201870,0.221534,0.058615,-0.973389,0.221534,0.058615,-0.973389,0.221534,0.058615,-0.973389, + 0.221534,0.058615,-0.973389,-0.222865,-0.020987,0.974623,-0.222865,-0.020987,0.974623,-0.222865,-0.020987,0.974623, + -0.222865,-0.020987,0.974623,0.040555,-0.997578,-0.056513,0.040555,-0.997578,-0.056513,0.040555,-0.997578,-0.056513, + 0.040555,-0.997578,-0.056513,-0.018307,0.999010,-0.040552,-0.018307,0.999010,-0.040552,-0.018307,0.999010,-0.040552, + -0.018307,0.999010,-0.040552,0.980408,0.027150,0.195098,0.980408,0.027150,0.195098,0.980408,0.027150,0.195098, + 0.980408,0.027150,0.195098,-0.014066,0.998520,-0.052540,-0.014066,0.998520,-0.052540,-0.014066,0.998520,-0.052540, + -0.014066,0.998520,-0.052540,-0.674754,-0.729778,-0.110139,-0.674754,-0.729778,-0.110139,-0.674754,-0.729778,-0.110139, + -0.674754,-0.729778,-0.110139,0.042638,-0.997614,-0.054299,0.042638,-0.997614,-0.054299,0.042638,-0.997614,-0.054299, + 0.042638,-0.997614,-0.054299,0.972975,0.029024,0.229077,0.972975,0.029024,0.229077,0.972975,0.029024,0.229077, + 0.972975,0.029024,0.229077,-0.719585,0.681021,-0.135678,-0.719585,0.681021,-0.135678,-0.719585,0.681021,-0.135678, + -0.719585,0.681021,-0.135678,-0.944462,-0.017264,-0.328167,-0.944462,-0.017264,-0.328167,-0.944462,-0.017264,-0.328167, + -0.944462,-0.017264,-0.328167,0.048005,-0.996005,-0.075301,0.048005,-0.996005,-0.075301,0.048005,-0.996005,-0.075301, + 0.048005,-0.996005,-0.075301,0.632999,0.724094,0.273860,0.632999,0.724094,0.273860,0.632999,0.724094,0.273860, + 0.632999,0.724094,0.273860,-0.014628,0.998621,-0.050428,-0.014628,0.998621,-0.050428,-0.014628,0.998621,-0.050428, + -0.014628,0.998621,-0.050428,-0.943031,-0.021860,-0.331985,-0.943031,-0.021860,-0.331985,-0.943031,-0.021860,-0.331985, + -0.943031,-0.021860,-0.331985,0.681069,-0.684233,0.260711,0.681069,-0.684233,0.260711,0.681069,-0.684233,0.260711, + 0.681069,-0.684233,0.260711,0.966953,-0.009620,0.254773,0.966953,-0.009620,0.254773,0.966953,-0.009620,0.254773, + 0.966953,-0.009620,0.254773,-0.102783,-0.783448,0.612899,-0.102783,-0.783448,0.612899,-0.102783,-0.783448,0.612899, + -0.102783,-0.783448,0.612899,0.964614,0.052437,0.258398,0.964614,0.052437,0.258398,0.964614,0.052437,0.258398, + 0.964614,0.052437,0.258398,-0.167374,0.800409,0.575613,-0.167374,0.800409,0.575613,-0.167374,0.800409,0.575613, + -0.966407,0.009740,-0.256832,-0.966407,0.009740,-0.256832,-0.966407,0.009740,-0.256832,-0.966407,0.009740,-0.256832, + -0.885113,-0.052829,0.462367,-0.885113,-0.052829,0.462367,-0.885113,-0.052829,0.462367,-0.885113,-0.052829,0.462367, + -0.132447,0.801062,0.583744,-0.132447,0.801062,0.583744,-0.132447,0.801062,0.583744,-0.964988,-0.052521,-0.256981, + -0.964988,-0.052521,-0.256981,-0.964988,-0.052521,-0.256981,-0.964988,-0.052521,-0.256981,-0.933521,-0.034490,0.356861, + -0.933521,-0.034490,0.356861,-0.933521,-0.034490,0.356861,0.670453,-0.046801,0.740474,0.670453,-0.046801,0.740474, + 0.670453,-0.046801,0.740474,0.669653,-0.003243,0.742667,0.669653,-0.003243,0.742667,0.669653,-0.003243,0.742667, + -0.006226,0.999308,0.036659,-0.006226,0.999308,0.036659,-0.006226,0.999308,0.036659,-0.006226,0.999308,0.036659, + -0.167387,-0.784304,0.597368,-0.167387,-0.784304,0.597368,-0.167387,-0.784304,0.597368,-0.167387,-0.784304,0.597368, + 0.156475,0.591903,-0.790674,0.156475,0.591903,-0.790674,0.156475,0.591903,-0.790674,0.055841,-0.998419,0.006476, + 0.055841,-0.998419,0.006476,0.055841,-0.998419,0.006476,0.055841,-0.998419,0.006476,0.000580,-0.999268,-0.038259, + 0.000580,-0.999268,-0.038259,0.000580,-0.999268,-0.038259,0.000580,-0.999268,-0.038259,-0.062439,0.996706,0.051757, + -0.062439,0.996706,0.051757,-0.062439,0.996706,0.051757,-0.062439,0.996706,0.051757,0.553333,-0.042602,0.831870, + 0.553333,-0.042602,0.831870,0.553333,-0.042602,0.831870,0.553333,-0.042602,0.831870,0.552340,-0.002425,0.833616, + 0.552340,-0.002425,0.833616,0.552340,-0.002425,0.833616,0.552340,-0.002425,0.833616,-0.932568,-0.060745,0.355847, + -0.932568,-0.060745,0.355847,-0.932568,-0.060745,0.355847,-0.885776,-0.029745,0.463159,-0.885776,-0.029745,0.463159, + -0.885776,-0.029745,0.463159,-0.885776,-0.029745,0.463159,-0.214239,0.717509,0.662784,-0.214239,0.717509,0.662784, + -0.214239,0.717509,0.662784,-0.214239,0.717509,0.662784,-0.183055,0.718896,0.670581,-0.183055,0.718896,0.670581, + -0.183055,0.718896,0.670581,-0.183055,0.718896,0.670581,-0.042630,-0.858462,0.511103,-0.042630,-0.858462,0.511103, + -0.042630,-0.858462,0.511103,-0.113513,-0.861457,0.494981,-0.113513,-0.861457,0.494981,-0.113513,-0.861457,0.494981, + 0.210637,0.593393,-0.776863,0.210637,0.593393,-0.776863,0.210637,0.593393,-0.776863,0.734577,0.045602,-0.676991, + 0.734577,0.045602,-0.676991,0.734577,0.045602,-0.676991,-0.292324,0.050579,-0.954981,-0.292324,0.050579,-0.954981, + -0.292324,0.050579,-0.954981,0.249302,-0.496856,-0.831254,0.249302,-0.496856,-0.831254,0.249302,-0.496856,-0.831254, + 0.734701,0.040694,-0.677170,0.734701,0.040694,-0.677170,0.734701,0.040694,-0.677170,0.232841,-0.497345,-0.835723, + 0.232841,-0.497345,-0.835723,0.232841,-0.497345,-0.835723,-0.291502,0.025913,-0.956219,-0.291502,0.025913,-0.956219, + -0.291502,0.025913,-0.956219,0.976616,0.042192,0.210812,0.976616,0.042192,0.210812,0.976616,0.042192,0.210812, + 0.976616,0.042192,0.210812,-0.216608,-0.469321,0.856048,-0.216608,-0.469321,0.856048,-0.216608,-0.469321,0.856048, + -0.216608,-0.469321,0.856048,0.971933,0.025312,0.233893,0.971933,0.025312,0.233893,0.971933,0.025312,0.233893, + 0.971933,0.025312,0.233893,0.413721,-0.358434,-0.836875,0.413721,-0.358434,-0.836875,0.413721,-0.358434,-0.836875, + 0.413721,-0.358434,-0.836875,0.982099,0.127083,-0.139035,0.982099,0.127083,-0.139035,0.982099,0.127083,-0.139035, + 0.982099,0.127083,-0.139035,-0.953597,-0.038253,-0.298648,-0.953597,-0.038253,-0.298648,-0.953597,-0.038253,-0.298648, + -0.953597,-0.038253,-0.298648,-0.289092,0.366190,0.884494,-0.289092,0.366190,0.884494,-0.289092,0.366190,0.884494, + -0.289092,0.366190,0.884494,0.647048,0.041149,-0.761338,0.647048,0.041149,-0.761338,0.647048,0.041149,-0.761338, + 0.647048,0.041149,-0.761338,-0.036563,0.998571,0.038988,-0.036563,0.998571,0.038988,-0.036563,0.998571,0.038988, + -0.036563,0.998571,0.038988,-0.781893,-0.075194,-0.618861,-0.781893,-0.075194,-0.618861,-0.781893,-0.075194,-0.618861, + -0.781893,-0.075194,-0.618861,0.207959,-0.886692,-0.412954,0.207959,-0.886692,-0.412954,0.207959,-0.886692,-0.412954, + 0.207959,-0.886692,-0.412954,-0.961041,-0.020664,-0.275633,-0.961041,-0.020664,-0.275633,-0.961041,-0.020664,-0.275633, + -0.961041,-0.020664,-0.275633,0.247665,0.468688,-0.847935,0.247665,0.468688,-0.847935,0.247665,0.468688,-0.847935, + 0.247665,0.468688,-0.847935,-0.007755,0.938587,-0.344955,-0.007755,0.938587,-0.344955,-0.007755,0.938587,-0.344955, + -0.007755,0.938587,-0.344955,0.181243,-0.003455,0.983432,0.181243,-0.003455,0.983432,0.181243,-0.003455,0.983432, + 0.181243,-0.003455,0.983432,-0.051857,0.998599,0.010537,-0.051857,0.998599,0.010537,-0.051857,0.998599,0.010537, + -0.051857,0.998599,0.010537,-0.173292,-0.129760,-0.976285,-0.173292,-0.129760,-0.976285,-0.173292,-0.129760,-0.976285, + -0.173292,-0.129760,-0.976285,0.052000,-0.995517,-0.079000,0.052000,-0.995517,-0.079000,0.052000,-0.995517,-0.079000, + 0.052000,-0.995517,-0.079000,-0.646131,-0.073288,0.759699,-0.646131,-0.073288,0.759699,-0.646131,-0.073288,0.759699, + -0.646131,-0.073288,0.759699,0.071805,-0.992465,-0.099286,0.071805,-0.992465,-0.099286,0.071805,-0.992465,-0.099286, + 0.071805,-0.992465,-0.099286,0.640842,0.747645,0.174208,0.640842,0.747645,0.174208,0.640842,0.747645,0.174208, + 0.640842,0.747645,0.174208,0.035365,-0.326178,0.944647,0.035365,-0.326178,0.944647,0.035365,-0.326178,0.944647, + 0.035365,-0.326178,0.944647,0.654528,0.730143,0.196175,0.654528,0.730143,0.196175,0.654528,0.730143,0.196175, + 0.654528,0.730143,0.196175,0.645441,-0.108834,-0.756017,0.645441,-0.108834,-0.756017,0.645441,-0.108834,-0.756017, + 0.645441,-0.108834,-0.756017,0.643571,0.742357,-0.186339,0.643571,0.742357,-0.186339,0.643571,0.742357,-0.186339, + 0.643571,0.742357,-0.186339,-0.622385,-0.739315,-0.257004,-0.622385,-0.739315,-0.257004,-0.622385,-0.739315,-0.257004, + -0.622385,-0.739315,-0.257004,-0.566991,0.208232,0.796970,-0.566991,0.208232,0.796970,-0.566991,0.208232,0.796970, + -0.566991,0.208232,0.796970,0.509043,0.316464,-0.800454,0.509043,0.316464,-0.800454,0.509043,0.316464,-0.800454, + 0.509043,0.316464,-0.800454,-0.718935,0.674546,-0.167688,-0.718935,0.674546,-0.167688,-0.718935,0.674546,-0.167688, + -0.718935,0.674546,-0.167688,-0.443360,-0.690473,-0.571558,-0.443360,-0.690473,-0.571558,-0.443360,-0.690473,-0.571558, + -0.443360,-0.690473,-0.571558,0.800530,-0.551944,-0.233472,0.800530,-0.551944,-0.233472,0.800530,-0.551944,-0.233472, + 0.800530,-0.551944,-0.233472,-0.637051,-0.731622,-0.242685,-0.637051,-0.731622,-0.242685,-0.637051,-0.731622,-0.242685, + -0.637051,-0.731622,-0.242685,-0.013401,0.348094,-0.937364,-0.013401,0.348094,-0.937364,-0.013401,0.348094,-0.937364, + -0.013401,0.348094,-0.937364,-0.600324,0.603827,-0.524408,-0.600324,0.603827,-0.524408,-0.600324,0.603827,-0.524408, + -0.600324,0.603827,-0.524408,-0.005657,0.256635,0.966492,-0.005657,0.256635,0.966492,-0.005657,0.256635,0.966492, + -0.005657,0.256635,0.966492,-0.673242,0.716465,-0.182819,-0.673242,0.716465,-0.182819,-0.673242,0.716465,-0.182819, + -0.673242,0.716465,-0.182819,0.097819,-0.350793,-0.931330,0.097819,-0.350793,-0.931330,0.097819,-0.350793,-0.931330, + 0.097819,-0.350793,-0.931330,0.680029,-0.723568,0.118362,0.680029,-0.723568,0.118362,0.680029,-0.723568,0.118362, + 0.680029,-0.723568,0.118362,-0.487258,-0.339394,0.804606,-0.487258,-0.339394,0.804606,-0.487258,-0.339394,0.804606, + -0.487258,-0.339394,0.804606,0.747092,-0.656245,0.105815,0.747092,-0.656245,0.105815,0.747092,-0.656245,0.105815, + 0.747092,-0.656245,0.105815,-0.932566,0.199746,-0.300703,-0.932566,0.199746,-0.300703,-0.932566,0.199746,-0.300703, + -0.932566,0.199746,-0.300703,-0.177292,0.982066,0.064141,-0.177292,0.982066,0.064141,-0.177292,0.982066,0.064141, + 0.947344,0.116136,0.298415,0.947344,0.116136,0.298415,0.947344,0.116136,0.298415,0.947344,0.116136,0.298415, + 0.025701,-0.999630,0.008911,0.025701,-0.999630,0.008911,0.025701,-0.999630,0.008911,0.025701,-0.999630,0.008911, + 0.967303,0.027334,0.252147,0.967303,0.027334,0.252147,0.967303,0.027334,0.252147,0.967303,0.027334,0.252147, + -0.968384,-0.027611,-0.247934,-0.968384,-0.027611,-0.247934,-0.968384,-0.027611,-0.247934,-0.968384,-0.027611,-0.247934, + -0.926292,-0.060113,-0.371980,-0.926292,-0.060113,-0.371980,-0.926292,-0.060113,-0.371980,-0.926292,-0.060113,-0.371980, + 0.187858,-0.615039,-0.765792,0.187858,-0.615039,-0.765792,0.187858,-0.615039,-0.765792,0.187858,-0.615039,-0.765792, + -0.187180,0.618165,0.763437,-0.187180,0.618165,0.763437,-0.187180,0.618165,0.763437,-0.187180,0.618165,0.763437, + 0.119462,-0.984673,-0.127072,0.119462,-0.984673,-0.127072,0.119462,-0.984673,-0.127072,0.119462,-0.984673,-0.127072, + -0.070496,0.988548,0.133429,-0.070496,0.988548,0.133429,-0.070496,0.988548,0.133429,-0.070496,0.988548,0.133429, + -0.267026,-0.151951,0.951634,-0.267026,-0.151951,0.951634,-0.267026,-0.151951,0.951634,-0.267026,-0.151951,0.951634, + 0.238048,0.146554,-0.960133,0.238048,0.146554,-0.960133,0.238048,0.146554,-0.960133,0.238048,0.146554,-0.960133, + 0.996148,0.053829,0.069226,0.996148,0.053829,0.069226,0.996148,0.053829,0.069226,0.996148,0.053829,0.069226, + -0.934108,-0.290927,-0.206892,-0.934108,-0.290927,-0.206892,-0.934108,-0.290927,-0.206892,-0.934108,-0.290927,-0.206892, + 0.051625,-0.993651,-0.099966,0.051625,-0.993651,-0.099966,0.051625,-0.993651,-0.099966,0.051625,-0.993651,-0.099966, + -0.051617,0.993651,0.099967,-0.051617,0.993651,0.099967,-0.051617,0.993651,0.099967,-0.051617,0.993651,0.099967, + 0.246420,0.110200,-0.962877,0.246420,0.110200,-0.962877,0.246420,0.110200,-0.962877,0.246420,0.110200,-0.962877, + -0.209808,-0.109198,0.971626,-0.209808,-0.109198,0.971626,-0.209808,-0.109198,0.971626,-0.209808,-0.109198,0.971626, + -0.966413,-0.024105,-0.255860,-0.966413,-0.024105,-0.255860,-0.966413,-0.024105,-0.255860,-0.966413,-0.024105,-0.255860, + 0.986665,0.034912,0.158973,0.986665,0.034912,0.158973,0.986665,0.034912,0.158973,0.986665,0.034912,0.158973, + 0.977763,0.029485,0.207628,0.977763,0.029485,0.207628,0.977763,0.029485,0.207628,0.977763,0.029485,0.207628, + -0.951085,-0.024595,-0.307950,-0.951085,-0.024595,-0.307950,-0.951085,-0.024595,-0.307950,-0.951085,-0.024595,-0.307950, + 0.028569,-0.999590,-0.001867,0.028569,-0.999590,-0.001867,0.028569,-0.999590,-0.001867,0.028569,-0.999590,-0.001867, + -0.040769,0.998026,0.047779,-0.040769,0.998026,0.047779,-0.040769,0.998026,0.047779,-0.040769,0.998026,0.047779, + -0.256251,-0.029438,0.966162,-0.256251,-0.029438,0.966162,-0.256251,-0.029438,0.966162,-0.256254,-0.029437,0.966161, + -0.256254,-0.029437,0.966161,-0.256254,-0.029437,0.966161,-0.256252,-0.029438,0.966161,-0.256252,-0.029438,0.966161, + -0.256252,-0.029438,0.966161,-0.256252,-0.029438,0.966161,-0.256254,-0.029438,0.966161,-0.256254,-0.029438,0.966161, + -0.256254,-0.029438,0.966161,-0.256254,-0.029437,0.966161,-0.256254,-0.029437,0.966161,-0.256254,-0.029437,0.966161, + -0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161, + -0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161,-0.256253,-0.029438,0.966161, + 0.027294,-0.999627,0.000204,0.027294,-0.999627,0.000204,0.027294,-0.999627,0.000204,0.027294,-0.999627,0.000204, + 0.982822,0.029307,0.182214,0.982822,0.029307,0.182214,0.982822,0.029307,0.182214,0.053326,-0.994001,-0.095490, + 0.053326,-0.994001,-0.095490,0.053326,-0.994001,-0.095490,-0.014032,0.998515,-0.052645,-0.014032,0.998515,-0.052645, + -0.014032,0.998515,-0.052645,-0.943529,-0.024794,-0.330360,-0.943529,-0.024794,-0.330360,-0.943529,-0.024794,-0.330360, + 0.982822,0.029307,0.182213,0.982822,0.029307,0.182213,0.982822,0.029307,0.182213,0.982822,0.029307,0.182214, + 0.982822,0.029307,0.182214,0.982822,0.029307,0.182214,0.982822,0.029307,0.182214,-0.943530,-0.024793,-0.330357, + -0.943530,-0.024793,-0.330357,-0.943530,-0.024793,-0.330357,-0.943529,-0.024793,-0.330360,-0.943529,-0.024793,-0.330360, + -0.943529,-0.024793,-0.330360,-0.943529,-0.024793,-0.330360,0.053327,-0.994000,-0.095496,0.053327,-0.994000,-0.095496, + 0.053327,-0.994000,-0.095496,0.053325,-0.994000,-0.095497,0.053325,-0.994000,-0.095497,0.053325,-0.994000,-0.095497, + 0.053325,-0.994000,-0.095497,-0.014032,0.998514,-0.052655,-0.014032,0.998514,-0.052655,-0.014032,0.998514,-0.052655, + 0.946833,0.026089,0.320665,0.946833,0.026089,0.320665,0.946833,0.026089,0.320665,0.946833,0.026089,0.320665, + -0.257826,0.030954,0.965695,-0.257826,0.030954,0.965695,-0.257826,0.030954,0.965695,-0.257826,0.030954,0.965695, + -0.253742,-0.089720,0.963102,-0.253742,-0.089720,0.963102,-0.253742,-0.089720,0.963102,-0.253742,-0.089720,0.963102, + -0.978839,-0.031095,-0.202254,-0.978839,-0.031095,-0.202254,-0.978839,-0.031095,-0.202254,-0.978839,-0.031095,-0.202254, + 0.056418,-0.992629,-0.107258,0.056418,-0.992629,-0.107258,0.056418,-0.992629,-0.107258,0.056418,-0.992629,-0.107258, + 0.949596,0.027985,0.312223,0.949596,0.027985,0.312223,0.949596,0.027985,0.312223,0.949596,0.027985,0.312223, + 0.055067,-0.994123,-0.093208,0.055067,-0.994123,-0.093208,0.055067,-0.994123,-0.093208,0.055067,-0.994123,-0.093208, + 0.974974,0.034364,0.219648,0.974974,0.034364,0.219648,0.974974,0.034364,0.219648,0.974974,0.034364,0.219648, + 0.033766,-0.999425,-0.003121,0.033766,-0.999425,-0.003121,0.033766,-0.999425,-0.003121,0.033766,-0.999425,-0.003121, + -0.656484,0.750788,-0.073113,-0.656484,0.750788,-0.073113,-0.656484,0.750788,-0.073113,-0.656484,0.750788,-0.073113, + -0.627447,0.756117,-0.186005,-0.627447,0.756117,-0.186005,-0.627447,0.756117,-0.186005,-0.627447,0.756117,-0.186005, + 0.029221,-0.999476,0.013919,0.029221,-0.999476,0.013919,0.029221,-0.999476,0.013919,0.029221,-0.999476,0.013919, + -0.978282,-0.035380,-0.204237,-0.978282,-0.035380,-0.204237,-0.978282,-0.035380,-0.204237,-0.978282,-0.035380,-0.204237, + 0.060144,-0.992866,-0.102959,0.060144,-0.992866,-0.102959,0.060144,-0.992866,-0.102959,0.060144,-0.992866,-0.102959, + -0.976583,-0.034847,-0.212298,-0.976583,-0.034847,-0.212298,-0.976583,-0.034847,-0.212298,-0.976583,-0.034847,-0.212298, + 0.561634,0.802645,0.200819,0.561634,0.802645,0.200819,0.561634,0.802645,0.200819,0.561634,0.802645,0.200819, + 0.578954,0.805104,0.128918,0.578954,0.805104,0.128918,0.578954,0.805104,0.128918,0.578954,0.805104,0.128918, + 0.325818,0.119164,-0.937893,0.325818,0.119164,-0.937893,0.325818,0.119164,-0.937893,0.325818,0.119164,-0.937893, + 0.067133,-0.996498,-0.049852,0.067133,-0.996498,-0.049852,0.067133,-0.996498,-0.049852,0.067133,-0.996498,-0.049852, + -0.326898,0.353189,0.876581,-0.326898,0.353189,0.876581,-0.326898,0.353189,0.876581,-0.326898,0.353189,0.876581, + 0.024855,-0.999233,0.030275,0.024855,-0.999233,0.030275,0.024855,-0.999233,0.030275,0.024855,-0.999233,0.030275, + 0.967680,0.032129,0.250125,0.967680,0.032129,0.250125,0.967680,0.032129,0.250125,0.967680,0.032129,0.250125, + -0.968728,-0.032415,-0.246001,-0.968728,-0.032415,-0.246001,-0.968728,-0.032415,-0.246001,-0.968728,-0.032415,-0.246001, + 0.103631,-0.984874,-0.138865,0.103631,-0.984874,-0.138865,0.103631,-0.984874,-0.138865,0.103631,-0.984874,-0.138865, + 0.834177,0.030460,-0.550656,0.834177,0.030460,-0.550656,0.834177,0.030460,-0.550656,0.834177,0.030460,-0.550656, + -0.836372,-0.030234,0.547328,-0.836372,-0.030234,0.547328,-0.836372,-0.030234,0.547328,-0.836372,-0.030234,0.547328, + 0.027136,-0.999395,0.021735,0.027136,-0.999395,0.021735,0.027136,-0.999395,0.021735,0.027136,-0.999395,0.021735, + 0.073398,-0.985398,-0.153636,0.073398,-0.985398,-0.153636,0.073398,-0.985398,-0.153636,0.073398,-0.985398,-0.153636, + 0.937324,0.253106,0.239503,0.937324,0.253106,0.239503,0.937324,0.253106,0.239503,0.937324,0.253106,0.239503, + 0.794042,0.586404,0.160085,0.794042,0.586404,0.160085,0.794042,0.586404,0.160085,0.794042,0.586404,0.160085, + -0.265994,0.468091,0.842696,-0.265994,0.468091,0.842696,-0.265994,0.468091,0.842696,-0.265994,0.468091,0.842696, + 0.024855,-0.999232,0.030281,0.024855,-0.999232,0.030281,0.024855,-0.999232,0.030281,0.024855,-0.999232,0.030281, + 0.967678,0.032109,0.250136,0.967678,0.032109,0.250136,0.967678,0.032109,0.250136,0.967678,0.032109,0.250136, + -0.968730,-0.032380,-0.245996,-0.968730,-0.032380,-0.245996,-0.968730,-0.032380,-0.245996,-0.968730,-0.032380,-0.245996, + 0.103527,-0.982544,-0.154562,0.103527,-0.982544,-0.154562,0.103527,-0.982544,-0.154562,0.103527,-0.982544,-0.154562, + 0.792371,0.034661,-0.609054,0.792371,0.034661,-0.609054,0.792371,0.034661,-0.609054,0.792371,0.034661,-0.609054, + -0.794551,-0.034434,0.606220,-0.794551,-0.034434,0.606220,-0.794551,-0.034434,0.606220,-0.794551,-0.034434,0.606220, + -0.268569,0.464435,0.843903,-0.268569,0.464435,0.843903,-0.268569,0.464435,0.843903,-0.268569,0.464435,0.843903, + 0.289252,0.011305,-0.957186,0.289252,0.011305,-0.957186,0.289252,0.011305,-0.957186,0.289252,0.011305,-0.957186, + 0.019450,-0.997756,-0.064063,0.019450,-0.997756,-0.064063,0.019450,-0.997756,-0.064063,0.019450,-0.997756,-0.064063, + -0.254142,0.398721,0.881155,-0.254142,0.398721,0.881155,-0.254142,0.398721,0.881155,-0.254142,0.398721,0.881155, + 0.276530,0.063308,-0.958918,0.276530,0.063308,-0.958918,0.276530,0.063308,-0.958918,0.276530,0.063308,-0.958918, + 0.072946,-0.996174,-0.048132,0.072946,-0.996174,-0.048132,0.072946,-0.996174,-0.048132,0.072946,-0.996174,-0.048132, + 0.046772,-0.997337,-0.055953,0.046772,-0.997337,-0.055953,0.046772,-0.997337,-0.055953,0.046772,-0.997337,-0.055953, + 0.024855,-0.999233,0.030271,0.024855,-0.999233,0.030271,0.024855,-0.999233,0.030271,0.024855,-0.999233,0.030271, + 0.967681,0.032135,0.250122,0.967681,0.032135,0.250122,0.967681,0.032135,0.250122,0.967681,0.032135,0.250122, + -0.968729,-0.032387,-0.246000,-0.968729,-0.032387,-0.246000,-0.968729,-0.032387,-0.246000,-0.968729,-0.032387,-0.246000, + 0.103632,-0.984875,-0.138858,0.103632,-0.984875,-0.138858,0.103632,-0.984875,-0.138858,0.103632,-0.984875,-0.138858, + 0.834171,0.030461,-0.550664,0.834171,0.030461,-0.550664,0.834171,0.030461,-0.550664,0.834171,0.030461,-0.550664, + -0.836390,-0.030231,0.547300,-0.836390,-0.030231,0.547300,-0.836390,-0.030231,0.547300,-0.836390,-0.030231,0.547300, + 0.043316,-0.997436,-0.056970,0.043316,-0.997436,-0.056970,0.043316,-0.997436,-0.056970,0.043316,-0.997436,-0.056970, + 0.289132,0.005276,-0.957274,0.289132,0.005276,-0.957274,0.289132,0.005276,-0.957274,0.289132,0.005276,-0.957274, + -0.228591,0.464639,0.855486,-0.228591,0.464639,0.855486,-0.228591,0.464639,0.855486,-0.228591,0.464639,0.855486, + 0.048283,-0.997291,-0.055490,0.048283,-0.997291,-0.055490,0.048283,-0.997291,-0.055490,0.048283,-0.997291,-0.055490, + 0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607, + -0.243838,0.403115,0.882067,-0.243838,0.403115,0.882067,-0.243838,0.403115,0.882067,-0.243838,0.403115,0.882067, + 0.240468,0.043055,-0.969702,0.240468,0.043055,-0.969702,0.240468,0.043055,-0.969702,0.240468,0.043055,-0.969702, + 0.276529,0.063307,-0.958918,0.276529,0.063307,-0.958918,0.276529,0.063307,-0.958918,0.276529,0.063307,-0.958918, + -0.254142,0.398723,0.881154,-0.254142,0.398723,0.881154,-0.254142,0.398723,0.881154,-0.254142,0.398723,0.881154, + 0.019449,-0.997757,-0.064055,0.019449,-0.997757,-0.064055,0.019449,-0.997757,-0.064055,0.019449,-0.997757,-0.064055, + 0.222373,0.265254,-0.938185,0.222373,0.265254,-0.938185,0.222373,0.265254,-0.938185,0.222373,0.265254,-0.938185, + -0.240739,0.216343,0.946172,-0.240739,0.216343,0.946172,-0.240739,0.216343,0.946172,-0.240739,0.216343,0.946172, + 0.047682,-0.997309,-0.055681,0.047682,-0.997309,-0.055681,0.047682,-0.997309,-0.055681,0.047682,-0.997309,-0.055681, + -0.235826,-0.304567,0.922835,-0.235826,-0.304567,0.922835,-0.235826,-0.304567,0.922835,-0.235826,-0.304567,0.922835, + -0.258826,0.176371,0.949685,-0.258826,0.176371,0.949685,-0.258826,0.176371,0.949685,-0.258826,0.176371,0.949685, + 0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581, + 0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405, + 0.081506,-0.990149,-0.113846,0.081506,-0.990149,-0.113846,0.081506,-0.990149,-0.113846,0.081506,-0.990149,-0.113846, + -0.280780,0.008598,0.959734,-0.280780,0.008598,0.959734,-0.280780,0.008598,0.959734,-0.280780,0.008598,0.959734, + -0.273787,-0.141801,0.951280,-0.273787,-0.141801,0.951280,-0.273787,-0.141801,0.951280,-0.273787,-0.141801,0.951280, + -0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032, + -0.031990,0.999482,-0.003533,-0.031990,0.999482,-0.003533,-0.031990,0.999482,-0.003533,-0.031990,0.999482,-0.003533, + -0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724,-0.254843,-0.066045,0.964724, + -0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768, + 0.063218,-0.991389,-0.114680,0.063218,-0.991389,-0.114680,0.063218,-0.991389,-0.114680,0.063218,-0.991389,-0.114680, + 0.026960,-0.999385,0.022404,0.026960,-0.999385,0.022404,0.026960,-0.999385,0.022404,0.026960,-0.999385,0.022404, + 0.000883,-0.995057,0.099304,0.000883,-0.995057,0.099304,0.000883,-0.995057,0.099304,0.000883,-0.995057,0.099304, + -0.029793,0.999551,-0.003041,-0.029793,0.999551,-0.003041,-0.029793,0.999551,-0.003041,-0.029793,0.999551,-0.003041, + -0.306268,-0.068126,0.949504,-0.306268,-0.068126,0.949504,-0.306268,-0.068126,0.949504,-0.306268,-0.068126,0.949504, + -0.091060,0.973436,0.210074,-0.091060,0.973436,0.210074,-0.091060,0.973436,0.210074,-0.091060,0.973436,0.210074, + 0.063487,-0.996319,-0.057595,0.063487,-0.996319,-0.057595,0.063487,-0.996319,-0.057595,0.063487,-0.996319,-0.057595, + -0.235824,-0.304563,0.922837,-0.235824,-0.304563,0.922837,-0.235824,-0.304563,0.922837,-0.235824,-0.304563,0.922837, + -0.258822,0.176370,0.949687,-0.258822,0.176370,0.949687,-0.258822,0.176370,0.949687,-0.258822,0.176370,0.949687, + 0.058206,-0.993719,-0.095580,0.058206,-0.993719,-0.095580,0.058206,-0.993719,-0.095580,0.058206,-0.993719,-0.095580, + 0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405, + -0.001431,-0.991769,0.128031,-0.001431,-0.991769,0.128031,-0.001431,-0.991769,0.128031,-0.001431,-0.991769,0.128031, + -0.031990,0.999482,-0.003531,-0.031990,0.999482,-0.003531,-0.031990,0.999482,-0.003531,-0.031990,0.999482,-0.003531, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768,-0.095194,0.966646,0.237768, + 0.063218,-0.991388,-0.114684,0.063218,-0.991388,-0.114684,0.063218,-0.991388,-0.114684,0.063218,-0.991388,-0.114684, + 0.024845,-0.999231,0.030322,0.024845,-0.999231,0.030322,0.024845,-0.999231,0.030322,0.024845,-0.999231,0.030322, + -0.311303,-0.097522,0.945294,-0.311303,-0.097522,0.945294,-0.311303,-0.097522,0.945294,-0.311303,-0.097522,0.945294, + -0.966738,-0.044765,-0.251819,-0.966738,-0.044765,-0.251819,-0.966738,-0.044765,-0.251819,-0.966738,-0.044765,-0.251819, + -0.127396,0.988092,0.086284,-0.127396,0.988092,0.086284,-0.127396,0.988092,0.086284,-0.127396,0.988092,0.086284, + 0.959592,0.090023,0.266608,0.959592,0.090023,0.266608,0.959592,0.090023,0.266608,0.959592,0.090023,0.266608, + 0.051592,-0.996371,-0.067692,0.051592,-0.996371,-0.067692,0.051592,-0.996371,-0.067692,0.051592,-0.996371,-0.067692, + -0.003220,0.998996,0.044694,-0.003220,0.998996,0.044694,-0.003220,0.998996,0.044694,-0.003220,0.998996,0.044694, + -0.246610,-0.059896,0.967262,-0.246610,-0.059896,0.967262,-0.246610,-0.059896,0.967262,-0.246610,-0.059896,0.967262, + 0.959190,-0.104855,0.262603,0.959190,-0.104855,0.262603,0.959190,-0.104855,0.262603,0.959190,-0.104855,0.262603, + -0.253899,-0.073218,0.964456,-0.253899,-0.073218,0.964456,-0.253899,-0.073218,0.964456,-0.253899,-0.073218,0.964456, + -0.964148,-0.036848,-0.262795,-0.964148,-0.036848,-0.262795,-0.964148,-0.036848,-0.262795,-0.964148,-0.036848,-0.262795, + 0.980185,0.049602,0.191773,0.980185,0.049602,0.191773,0.980185,0.049602,0.191773,0.980185,0.049602,0.191773, + -0.964052,-0.031351,-0.263859,-0.964052,-0.031351,-0.263859,-0.964052,-0.031351,-0.263859,-0.964052,-0.031351,-0.263859, + 0.040307,-0.978961,-0.200025,0.040307,-0.978961,-0.200025,0.040307,-0.978961,-0.200025,0.040307,-0.978961,-0.200025, + -0.951312,0.049943,-0.304158,-0.951312,0.049943,-0.304158,-0.951312,0.049943,-0.304158,-0.951312,0.049943,-0.304158, + 0.968946,-0.046745,0.242815,0.968946,-0.046745,0.242815,0.968946,-0.046745,0.242815,0.968946,-0.046745,0.242815, + 0.990726,-0.040491,0.129700,0.990726,-0.040491,0.129700,0.990726,-0.040491,0.129700,0.990726,-0.040491,0.129700, + 0.031443,0.994277,-0.102105,0.031443,0.994277,-0.102105,0.031443,0.994277,-0.102105,0.031443,0.994277,-0.102105, + -0.031578,-0.973318,-0.227279,-0.031578,-0.973318,-0.227279,-0.031578,-0.973318,-0.227279,-0.031578,-0.973318,-0.227279, + -0.006518,-0.999840,0.016655,-0.006518,-0.999840,0.016655,-0.006518,-0.999840,0.016655,-0.006518,-0.999840,0.016655, + 0.103026,0.992140,-0.071019,0.103026,0.992140,-0.071019,0.103026,0.992140,-0.071019,0.103026,0.992140,-0.071019, + -0.949038,0.050296,-0.311122,-0.949038,0.050296,-0.311122,-0.949038,0.050296,-0.311122,-0.949038,0.050296,-0.311122, + -0.089537,-0.995951,-0.007987,-0.089537,-0.995951,-0.007987,-0.089537,-0.995951,-0.007987,-0.089537,-0.995951,-0.007987, + 0.989344,-0.041062,0.139689,0.989344,-0.041062,0.139689,0.989344,-0.041062,0.139689,0.989344,-0.041062,0.139689, + -0.980700,0.043890,-0.190527,-0.980700,0.043890,-0.190527,-0.980700,0.043890,-0.190527,-0.980700,0.043890,-0.190527, + -0.029372,0.990454,0.134679,-0.029372,0.990454,0.134679,-0.029372,0.990454,0.134679,-0.029372,0.990454,0.134679, + -0.242916,-0.036988,0.969342,-0.242916,-0.036988,0.969342,-0.242916,-0.036988,0.969342,-0.242916,-0.036988,0.969342, + -0.242915,-0.036986,0.969342,-0.242915,-0.036986,0.969342,-0.242915,-0.036986,0.969342,-0.242915,-0.036986,0.969342, + -0.242917,-0.036986,0.969342,-0.242917,-0.036986,0.969342,-0.242917,-0.036986,0.969342,-0.242917,-0.036986,0.969342, + -0.242912,-0.036985,0.969343,-0.242912,-0.036985,0.969343,-0.242912,-0.036985,0.969343,-0.242912,-0.036985,0.969343, + -0.242919,-0.036986,0.969341,-0.242919,-0.036986,0.969341,-0.242919,-0.036986,0.969341,-0.242919,-0.036986,0.969341, + -0.242918,-0.036989,0.969341,-0.242918,-0.036989,0.969341,-0.242918,-0.036989,0.969341,-0.242918,-0.036989,0.969341, + -0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343, + -0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343,-0.242913,-0.036986,0.969343, + 0.053547,0.985960,0.158165,0.053547,0.985960,0.158165,0.053547,0.985960,0.158165,0.053547,0.985960,0.158165, + 0.989175,-0.039625,0.141286,0.989175,-0.039625,0.141286,0.989175,-0.039625,0.141286,0.989175,-0.039625,0.141286, + 0.016133,0.990409,0.137218,0.016133,0.990409,0.137218,0.016133,0.990409,0.137218,0.016133,0.990409,0.137218, + 0.965640,-0.048502,0.255318,0.965640,-0.048502,0.255318,0.965640,-0.048502,0.255318,0.965640,-0.048502,0.255318, + -0.220594,-0.127799,0.966957,-0.220594,-0.127799,0.966957,-0.220594,-0.127799,0.966957,-0.220594,-0.127799,0.966957, + -0.983568,0.042006,-0.175585,-0.983568,0.042006,-0.175585,-0.983568,0.042006,-0.175585,-0.983568,0.042006,-0.175585, + -0.044406,-0.998837,-0.018771,-0.044406,-0.998837,-0.018771,-0.044406,-0.998837,-0.018771,-0.044406,-0.998837,-0.018771, + -0.981975,0.044529,-0.183693,-0.981975,0.044529,-0.183693,-0.981975,0.044529,-0.183693,-0.981975,0.044529,-0.183693, + -0.217082,-0.007430,0.976125,-0.217082,-0.007430,0.976125,-0.217082,-0.007430,0.976125,-0.217082,-0.007430,0.976125, + 0.966196,-0.046255,0.253624,0.966196,-0.046255,0.253624,0.966196,-0.046255,0.253624,0.966196,-0.046255,0.253624, + 0.948813,-0.051425,0.311624,0.948813,-0.051425,0.311624,0.948813,-0.051425,0.311624,0.948813,-0.051425,0.311624, + -0.020523,-0.992664,-0.119156,-0.020523,-0.992664,-0.119156,-0.020523,-0.992664,-0.119156,-0.020523,-0.992664,-0.119156, + 0.978167,-0.044012,0.203105,0.978167,-0.044012,0.203105,0.978167,-0.044012,0.203105,0.978167,-0.044012,0.203105, + -0.042581,-0.998791,-0.024559,-0.042581,-0.998791,-0.024559,-0.042581,-0.998791,-0.024559,-0.042581,-0.998791,-0.024559, + -0.681144,0.728896,-0.068945,-0.681144,0.728896,-0.068945,-0.681144,0.728896,-0.068945,-0.681144,0.728896,-0.068945, + -0.649037,0.735266,-0.195281,-0.649037,0.735266,-0.195281,-0.649037,0.735266,-0.195281,-0.649037,0.735266,-0.195281, + -0.032659,-0.997518,-0.062379,-0.032659,-0.997518,-0.062379,-0.032659,-0.997518,-0.062379,-0.032659,-0.997518,-0.062379, + -0.962870,0.049206,-0.265443,-0.962870,0.049206,-0.265443,-0.962870,0.049206,-0.265443,-0.962870,0.049206,-0.265443, + -0.028578,-0.996557,-0.077835,-0.028578,-0.996557,-0.077835,-0.028578,-0.996557,-0.077835,-0.028578,-0.996557,-0.077835, + -0.972253,0.045845,-0.229394,-0.972253,0.045845,-0.229394,-0.972253,0.045845,-0.229394,-0.972253,0.045845,-0.229394, + 0.698826,0.675772,0.234466,0.698826,0.675772,0.234466,0.698826,0.675772,0.234466,0.698826,0.675772,0.234466, + 0.703802,0.677007,0.215233,0.703802,0.677007,0.215233,0.703802,0.677007,0.215233,0.703802,0.677007,0.215233, + 0.044191,0.998559,0.030435,0.044191,0.998559,0.030435,0.044191,0.998559,0.030435,0.044191,0.998559,0.030435, + -0.955920,0.049930,-0.289352,-0.955920,0.049930,-0.289352,-0.955920,0.049930,-0.289352,-0.955920,0.049930,-0.289352, + 0.652926,-0.736371,0.177326,0.652926,-0.736371,0.177326,0.652926,-0.736371,0.177326,0.652926,-0.736371,0.177326, + 0.978711,-0.043835,0.200510,0.978711,-0.043835,0.200510,0.978711,-0.043835,0.200510,0.978711,-0.043835,0.200510, + 0.044656,0.998864,0.016627,0.044656,0.998864,0.016627,0.044656,0.998864,0.016627,0.044656,0.998864,0.016627, + -0.716317,-0.679132,-0.160217,-0.716317,-0.679132,-0.160217,-0.716317,-0.679132,-0.160217,-0.716317,-0.679132,-0.160217, + 0.247299,0.017389,-0.968783,0.247299,0.017389,-0.968783,0.247299,0.017389,-0.968783,0.247299,0.017389,-0.968783, + -0.064659,-0.994268,-0.085154,-0.064659,-0.994268,-0.085154,-0.064659,-0.994268,-0.085154,-0.064659,-0.994268,-0.085154, + -0.198987,0.291610,0.935611,-0.198987,0.291610,0.935611,-0.198987,0.291610,0.935611,-0.198987,0.291610,0.935611, + 0.235849,0.034933,-0.971161,0.235849,0.034933,-0.971161,0.235849,0.034933,-0.971161,0.235849,0.034933,-0.971161, + -0.004544,-0.997573,-0.069484,-0.004544,-0.997573,-0.069484,-0.004544,-0.997573,-0.069484,-0.004544,-0.997573,-0.069484, + -0.228111,0.306154,0.924249,-0.228111,0.306154,0.924249,-0.228111,0.306154,0.924249,-0.228111,0.306154,0.924249, + -0.207602,-0.384458,0.899497,-0.207602,-0.384458,0.899497,-0.207602,-0.384458,0.899497,-0.207602,-0.384458,0.899497, + -0.575652,-0.033577,0.817005,-0.575652,-0.033577,0.817005,-0.575652,-0.033577,0.817005,-0.575652,-0.033577,0.817005, + 0.174370,0.064937,-0.982537,0.174370,0.064937,-0.982537,0.174370,0.064937,-0.982537,0.174370,0.064937,-0.982537, + 0.968838,-0.076834,0.235477,0.968838,-0.076834,0.235477,0.968838,-0.076834,0.235477,0.968838,-0.076834,0.235477, + 0.109573,0.038674,-0.993226,0.109573,0.038674,-0.993226,0.109573,0.038674,-0.993226,0.109573,0.038674,-0.993226, + 0.285184,-0.062012,0.956464,0.285184,-0.062012,0.956464,0.285184,-0.062012,0.956464,0.285184,-0.062012,0.956464, + -0.968460,0.082676,-0.235052,-0.968460,0.082676,-0.235052,-0.968460,0.082676,-0.235052,-0.968460,0.082676,-0.235052, + -0.672596,-0.050413,0.738291,-0.672596,-0.050413,0.738291,-0.672596,-0.050413,0.738291,-0.672596,-0.050413,0.738291, + 0.248978,0.058496,-0.966741,0.248978,0.058496,-0.966741,0.248978,0.058496,-0.966741,0.248978,0.058496,-0.966741, + 0.966934,-0.027482,0.253543,0.966934,-0.027482,0.253543,0.966934,-0.027482,0.253543,0.966934,-0.027482,0.253543, + 0.240472,0.039541,-0.969850,0.240472,0.039541,-0.969850,0.240472,0.039541,-0.969850,0.240472,0.039541,-0.969850, + -0.655151,-0.075718,0.751694,-0.655151,-0.075718,0.751694,-0.655151,-0.075718,0.751694,-0.655151,-0.075718,0.751694, + 0.271206,0.103456,-0.956945,0.271206,0.103456,-0.956945,0.271206,0.103456,-0.956945,0.271206,0.103456,-0.956945, + 0.970007,-0.034706,0.240588,0.970007,-0.034706,0.240588,0.970007,-0.034706,0.240588,0.970007,-0.034706,0.240588, + -0.034597,-0.996403,-0.077355,-0.034597,-0.996403,-0.077355,-0.034597,-0.996403,-0.077355,-0.034597,-0.996403,-0.077355, + -0.209717,0.314580,0.925775,-0.209717,0.314580,0.925775,-0.209717,0.314580,0.925775,-0.209717,0.314580,0.925775, + 0.151575,0.165758,-0.974448,0.151575,0.165758,-0.974448,0.151575,0.165758,-0.974448,0.151575,0.165758,-0.974448, + 0.034679,0.996412,0.077199,0.034679,0.996412,0.077199,0.034679,0.996412,0.077199,0.034679,0.996412,0.077199, + 0.204106,0.009047,-0.978907,0.204106,0.009047,-0.978907,0.204106,0.009047,-0.978907,0.204106,0.009047,-0.978907, + -0.681786,-0.037250,0.730602,-0.681786,-0.037250,0.730602,-0.681786,-0.037250,0.730602,-0.681786,-0.037250,0.730602, + 0.248764,0.057745,-0.966841,0.248764,0.057745,-0.966841,0.248764,0.057745,-0.966841,0.248764,0.057745,-0.966841, + 0.965733,-0.068097,0.250444,0.965733,-0.068097,0.250444,0.965733,-0.068097,0.250444,0.965733,-0.068097,0.250444, + -0.038468,-0.998448,-0.040269,-0.038468,-0.998448,-0.040269,-0.038468,-0.998448,-0.040269,-0.038468,-0.998448,-0.040269, + -0.039057,-0.998398,-0.040946,-0.039057,-0.998398,-0.040946,-0.039057,-0.998398,-0.040946,-0.039057,-0.998398,-0.040946, + 0.967802,-0.047212,0.247244,0.967802,-0.047212,0.247244,0.967802,-0.047212,0.247244,0.967802,-0.047212,0.247244, + 0.964415,-0.048036,0.259993,0.964415,-0.048036,0.259993,0.964415,-0.048036,0.259993,0.964415,-0.048036,0.259993, + -0.968876,0.046955,-0.243054,-0.968876,0.046955,-0.243054,-0.968876,0.046955,-0.243054,-0.968876,0.046955,-0.243054, + -0.965532,0.047789,-0.255860,-0.965532,0.047789,-0.255860,-0.965532,0.047789,-0.255860,-0.965532,0.047789,-0.255860, + -0.014827,-0.991457,-0.129590,-0.014827,-0.991457,-0.129590,-0.014827,-0.991457,-0.129590,-0.014827,-0.991457,-0.129590, + 0.956525,-0.007360,-0.291556,0.956525,-0.007360,-0.291556,0.956525,-0.007360,-0.291556,0.956525,-0.007360,-0.291556, + -0.957975,0.007741,0.286746,-0.957975,0.007741,0.286746,-0.957975,0.007741,0.286746,-0.957975,0.007741,0.286746, + -0.020899,-0.994057,-0.106836,-0.020899,-0.994057,-0.106836,-0.020899,-0.994057,-0.106836,-0.020899,-0.994057,-0.106836, + 0.737148,-0.071439,0.671944,0.737148,-0.071439,0.671944,0.737148,-0.071439,0.671944,0.737148,-0.071439,0.671944, + -0.733678,0.071582,-0.675716,-0.733678,0.071582,-0.675716,-0.733678,0.071582,-0.675716,-0.733678,0.071582,-0.675716, + 0.980457,-0.043231,0.191926,0.980457,-0.043231,0.191926,0.980457,-0.043231,0.191926,0.980457,-0.043231,0.191926, + 0.162392,0.877632,-0.450989,0.162392,0.877632,-0.450989,0.162392,0.877632,-0.450989,0.162392,0.877632,-0.450989, + -0.161429,-0.879860,0.446976,-0.161429,-0.879860,0.446976,-0.161429,-0.879860,0.446976,-0.161429,-0.879860,0.446976, + 0.977634,-0.044189,0.205618,0.977634,-0.044189,0.205618,0.977634,-0.044189,0.205618,0.977634,-0.044189,0.205618, + -0.109860,0.815094,0.568817,-0.109860,0.815094,0.568817,-0.109860,0.815094,0.568817,-0.109860,0.815094,0.568817, + 0.110916,-0.812485,-0.572334,0.110916,-0.812485,-0.572334,0.110916,-0.812485,-0.572334,0.110916,-0.812485,-0.572334, + -0.917192,-0.020486,-0.397919,-0.917192,-0.020486,-0.397919,-0.917192,-0.020486,-0.397919,-0.917192,-0.020486,-0.397919, + 0.171294,-0.602798,-0.779290,0.171294,-0.602798,-0.779290,0.171294,-0.602798,-0.779290,0.171294,-0.602798,-0.779290, + -0.170628,0.605631,0.777237,-0.170628,0.605631,0.777237,-0.170628,0.605631,0.777237,-0.170628,0.605631,0.777237, + -0.989335,0.038952,-0.140356,-0.989335,0.038952,-0.140356,-0.989335,0.038952,-0.140356,-0.989335,0.038952,-0.140356, + 0.989335,-0.038945,0.140352,0.989335,-0.038945,0.140352,0.989335,-0.038945,0.140352,0.989335,-0.038945,0.140352, + -0.141873,-0.055392,0.988334,-0.141873,-0.055392,0.988334,-0.141873,-0.055392,0.988334,-0.141873,-0.055392,0.988334, + 0.142913,0.092918,-0.985364,0.142913,0.092918,-0.985364,0.142913,0.092918,-0.985364,0.142913,0.092918,-0.985364, + -0.031112,-0.998014,-0.054768,-0.031112,-0.998014,-0.054768,-0.031112,-0.998014,-0.054768,-0.031112,-0.998014,-0.054768, + 0.016821,0.988108,0.152841,0.016821,0.988108,0.152841,0.016821,0.988108,0.152841,0.016821,0.988108,0.152841, + -0.992954,0.030474,-0.114513,-0.992954,0.030474,-0.114513,-0.992954,0.030474,-0.114513,-0.992954,0.030474,-0.114513, + 0.992954,-0.030473,0.114514,0.992954,-0.030473,0.114514,0.992954,-0.030473,0.114514,0.992954,-0.030473,0.114514, + 0.114731,-0.011614,-0.993329,0.114731,-0.011614,-0.993329,0.114731,-0.011614,-0.993329,0.114731,-0.011614,-0.993329, + -0.115844,-0.026020,0.992927,-0.115844,-0.026020,0.992927,-0.115844,-0.026020,0.992927,-0.115844,-0.026020,0.992927, + 0.032617,0.999376,-0.013540,0.032617,0.999376,-0.013540,0.032617,0.999376,-0.013540,0.032617,0.999376,-0.013540, + -0.021060,-0.996128,-0.085356,-0.021060,-0.996128,-0.085356,-0.021060,-0.996128,-0.085356,-0.021060,-0.996128,-0.085356, + -0.992876,0.040312,-0.112125,-0.992876,0.040312,-0.112125,-0.992876,0.040312,-0.112125,-0.992876,0.040312,-0.112125, + 0.992876,-0.040313,0.112128,0.992876,-0.040313,0.112128,0.992876,-0.040313,0.112128,0.992876,-0.040313,0.112128, + 0.115517,0.078544,-0.990195,0.115517,0.078544,-0.990195,0.115517,0.078544,-0.990195,0.115517,0.078544,-0.990195, + -0.116646,-0.115992,0.986377,-0.116646,-0.115992,0.986377,-0.116646,-0.115992,0.986377,-0.116646,-0.115992,0.986377, + 0.032150,0.996503,0.077118,0.032150,0.996503,0.077118,0.032150,0.996503,0.077118,0.032150,0.996503,0.077118, + -0.020509,-0.984296,-0.175329,-0.020509,-0.984296,-0.175329,-0.020509,-0.984296,-0.175329,-0.020509,-0.984296,-0.175329, + -0.004558,-0.986305,-0.164869,-0.004558,-0.986305,-0.164869,-0.004558,-0.986305,-0.164869,-0.004558,-0.986305,-0.164869, + 0.004561,0.986305,0.164870,0.004561,0.986305,0.164870,0.004561,0.986305,0.164870,0.004561,0.986305,0.164870, + -0.271240,-0.120803,0.954901,-0.271240,-0.120803,0.954901,-0.271240,-0.120803,0.954901,-0.271240,-0.120803,0.954901, + 0.234768,0.122534,-0.964297,0.234768,0.122534,-0.964297,0.234768,0.122534,-0.964297,0.234768,0.122534,-0.964297, + 0.960888,-0.049213,0.272529,0.960888,-0.049213,0.272529,0.960888,-0.049213,0.272529,0.960888,-0.049213,0.272529, + -0.983618,0.037007,-0.176428,-0.983618,0.037007,-0.176428,-0.983618,0.037007,-0.176428,-0.983618,0.037007,-0.176428, + -0.005126,-0.991496,-0.130034,-0.005126,-0.991496,-0.130034,-0.005126,-0.991496,-0.130034,-0.005126,-0.991496,-0.130034, + 0.005133,0.991495,0.130045,0.005133,0.991495,0.130045,0.005133,0.991495,0.130045,0.005133,0.991495,0.130045, + 0.335739,0.097909,-0.936853,0.335739,0.097909,-0.936853,0.335739,0.097909,-0.936853,0.335739,0.097909,-0.936853, + -0.300037,-0.099721,0.948701,-0.300037,-0.099721,0.948701,-0.300037,-0.099721,0.948701,-0.300037,-0.099721,0.948701, + -0.939937,0.051029,-0.337513,-0.939937,0.051029,-0.337513,-0.939937,0.051029,-0.337513,-0.939937,0.051029,-0.337513, + 0.969192,-0.041047,0.242863,0.969192,-0.041047,0.242863,0.969192,-0.041047,0.242863,0.969192,-0.041047,0.242863, + -0.018085,-0.991184,-0.131254,-0.018085,-0.991184,-0.131254,-0.018085,-0.991184,-0.131254,-0.018085,-0.991184,-0.131254, + 0.018092,0.991182,0.131264,0.018092,0.991182,0.131264,0.018092,0.991182,0.131264,0.018092,0.991182,0.131264, + 0.249445,0.100814,-0.963127,0.249445,0.100814,-0.963127,0.249445,0.100814,-0.963127,0.249445,0.100814,-0.963127, + -0.212803,-0.102595,0.971694,-0.212803,-0.102595,0.971694,-0.212803,-0.102595,0.971694,-0.212803,-0.102595,0.971694, + -0.966729,0.049722,-0.250924,-0.966729,0.049722,-0.250924,-0.966729,0.049722,-0.250924,-0.966729,0.049722,-0.250924, + 0.987276,-0.039474,0.154040,0.987276,-0.039474,0.154040,0.987276,-0.039474,0.154040,0.987276,-0.039474,0.154040, + -0.016852,-0.990290,-0.137989,-0.016852,-0.990290,-0.137989,-0.016852,-0.990290,-0.137989,-0.016852,-0.990290,-0.137989, + 0.989159,-0.039630,0.141400,0.989159,-0.039630,0.141400,0.989159,-0.039630,0.141400,0.989159,-0.039630,0.141400, + -0.690149,0.723518,-0.014716,-0.690149,0.723518,-0.014716,-0.690149,0.723518,-0.014716,-0.690149,0.723518,-0.014716, + -0.967219,0.047065,-0.249545,-0.967219,0.047065,-0.249545,-0.967219,0.047065,-0.249545,-0.967219,0.047065,-0.249545, + -0.021711,-0.994367,-0.103742,-0.021711,-0.994367,-0.103742,-0.021711,-0.994367,-0.103742,-0.021711,-0.994367,-0.103742, + 0.697886,0.675375,0.238376,0.697886,0.675375,0.238376,0.697886,0.675375,0.238376,0.697886,0.675375,0.238376, + 0.052758,0.998596,0.004808,0.052758,0.998596,0.004808,0.052758,0.998596,0.004808,0.052758,0.998596,0.004808, + -0.961503,0.048664,-0.270453,-0.961503,0.048664,-0.270453,-0.961503,0.048664,-0.270453,-0.961503,0.048664,-0.270453, + 0.652306,-0.736526,0.178962,0.652306,-0.736526,0.178962,0.652306,-0.736526,0.178962,0.652306,-0.736526,0.178962, + 0.988841,-0.039793,0.143561,0.988841,-0.039793,0.143561,0.988841,-0.039793,0.143561,0.988841,-0.039793,0.143561, + 0.049005,0.998798,-0.000056,0.049005,0.998798,-0.000056,0.049005,0.998798,-0.000056,0.049005,0.998798,-0.000056, + -0.725647,-0.679131,-0.110535,-0.725647,-0.679131,-0.110535,-0.725647,-0.679131,-0.110535,-0.725647,-0.679131,-0.110535, + -0.064655,-0.994266,-0.085175,-0.064655,-0.994266,-0.085175,-0.064655,-0.994266,-0.085175,-0.064655,-0.994266,-0.085175, + -0.888938,-0.045892,0.455723,-0.888938,-0.045892,0.455723,-0.888938,-0.045892,0.455723,-0.888938,-0.045892,0.455723, + -0.004540,-0.997571,-0.069511,-0.004540,-0.997571,-0.069511,-0.004540,-0.997571,-0.069511,-0.004540,-0.997571,-0.069511, + 0.671142,-0.083698,0.736589,0.671142,-0.083698,0.736589,0.671142,-0.083698,0.736589,0.065180,0.994408,0.083089, + 0.065180,0.994408,0.083089,0.065180,0.994408,0.083089,0.065180,0.994408,0.083089,-0.139188,0.690033,0.710269, + -0.139188,0.690033,0.710269,-0.139188,0.690033,0.710269,-0.139188,0.690033,0.710269,0.670000,-0.119338,0.732706, + 0.670000,-0.119338,0.732706,0.670000,-0.119338,0.732706,0.004182,0.997474,0.070903,0.004182,0.997474,0.070903, + 0.004182,0.997474,0.070903,0.004182,0.997474,0.070903,-0.100051,0.768482,0.632001,-0.100051,0.768482,0.632001, + -0.100051,0.768482,0.632001,-0.195996,-0.868475,0.455343,-0.195996,-0.868475,0.455343,-0.195996,-0.868475,0.455343, + -0.153736,-0.871475,0.465721,-0.153736,-0.871475,0.465721,-0.153736,-0.871475,0.465721,0.972201,-0.075860,0.221521, + 0.972201,-0.075860,0.221521,0.972201,-0.075860,0.221521,0.972201,-0.075860,0.221521,-0.886385,0.020163,0.462510, + -0.886385,0.020163,0.462510,-0.886385,0.020163,0.462510,-0.886385,0.020163,0.462510,0.736203,0.065960,-0.673539, + 0.736203,0.065960,-0.673539,0.736203,0.065960,-0.673539,-0.980122,0.015050,-0.197823,-0.980122,0.015050,-0.197823, + -0.980122,0.015050,-0.197823,-0.980122,0.015050,-0.197823,-0.971815,0.081701,-0.221134,-0.971815,0.081701,-0.221134, + -0.971815,0.081701,-0.221134,-0.971815,0.081701,-0.221134,0.966933,-0.027482,0.253546,0.966933,-0.027482,0.253546, + 0.966933,-0.027482,0.253546,0.966933,-0.027482,0.253546,-0.209439,-0.787700,0.579365,-0.209439,-0.787700,0.579365, + -0.209439,-0.787700,0.579365,-0.209439,-0.787700,0.579365,-0.170404,-0.790134,0.588771,-0.170404,-0.790134,0.588771, + -0.170404,-0.790134,0.588771,-0.170404,-0.790134,0.588771,-0.125588,0.769745,0.625876,-0.125588,0.769745,0.625876, + -0.125588,0.769745,0.625876,-0.116716,0.688790,0.715504,-0.116716,0.688790,0.715504,-0.116716,0.688790,0.715504, + -0.116716,0.688790,0.715504,0.572825,-0.061785,0.817345,0.572825,-0.061785,0.817345,0.572825,-0.061785,0.817345, + 0.572825,-0.061785,0.817345,0.572486,-0.093832,0.814527,0.572486,-0.093832,0.814527,0.572486,-0.093832,0.814527, + 0.572486,-0.093832,0.814527,-0.942562,-0.064586,0.327727,-0.942562,-0.064586,0.327727,-0.942562,-0.064586,0.327727, + -0.941955,0.007735,0.335651,-0.941955,0.007735,0.335651,-0.941955,0.007735,0.335651,0.734661,0.010275,-0.678357, + 0.734661,0.010275,-0.678357,0.734661,0.010275,-0.678357,0.175404,-0.478191,-0.860561,0.175404,-0.478191,-0.860561, + 0.175404,-0.478191,-0.860561,0.240409,0.580478,-0.777978,0.240409,0.580478,-0.777978,0.240409,0.580478,-0.777978, + -0.323317,0.067598,-0.943873,-0.323317,0.067598,-0.943873,-0.323317,0.067598,-0.943873,0.170629,-0.477907,-0.861679, + 0.170629,-0.477907,-0.861679,0.170629,-0.477907,-0.861679,-0.322828,0.084614,-0.942668,-0.322828,0.084614,-0.942668, + -0.322828,0.084614,-0.942668,0.216473,0.581830,-0.783973,0.216473,0.581830,-0.783973,0.216473,0.581830,-0.783973, + -0.005202,-0.992831,-0.119414,-0.005202,-0.992831,-0.119414,-0.005202,-0.992831,-0.119414,-0.005202,-0.992831,-0.119414, + -0.628728,-0.038860,0.776654,-0.628728,-0.038860,0.776654,-0.628728,-0.038860,0.776654,-0.628728,-0.038860,0.776654, + -0.026301,-0.994678,-0.099623,-0.026301,-0.994678,-0.099623,-0.026301,-0.994678,-0.099623,-0.026301,-0.994678,-0.099623, + -0.187331,-0.095474,-0.977646,-0.187331,-0.095474,-0.977646,-0.187331,-0.095474,-0.977646,-0.187331,-0.095474,-0.977646, + 0.147362,-0.891088,-0.429239,0.147362,-0.891088,-0.429239,0.147362,-0.891088,-0.429239,0.147362,-0.891088,-0.429239, + 0.026375,0.999164,0.031242,0.026375,0.999164,0.031242,0.026375,0.999164,0.031242,0.026375,0.999164,0.031242, + 0.184880,-0.038075,0.982023,0.184880,-0.038075,0.982023,0.184880,-0.038075,0.982023,0.184880,-0.038075,0.982023, + 0.188197,-0.368048,-0.910562,0.188197,-0.368048,-0.910562,0.188197,-0.368048,-0.910562,0.188197,-0.368048,-0.910562, + 0.971162,-0.047929,0.233554,0.971162,-0.047929,0.233554,0.971162,-0.047929,0.233554,0.971162,-0.047929,0.233554, + 0.052843,0.942970,-0.328655,0.052843,0.942970,-0.328655,0.052843,0.942970,-0.328655,0.052843,0.942970,-0.328655, + -0.788180,-0.001053,-0.615444,-0.788180,-0.001053,-0.615444,-0.788180,-0.001053,-0.615444,-0.788180,-0.001053,-0.615444, + 0.039083,0.997535,0.058273,0.039083,0.997535,0.058273,0.039083,0.997535,0.058273,0.039083,0.997535,0.058273, + 0.626350,0.006975,-0.779511,0.626350,0.006975,-0.779511,0.626350,0.006975,-0.779511,0.626350,0.006975,-0.779511, + 0.988386,0.052938,-0.142446,0.988386,0.052938,-0.142446,0.988386,0.052938,-0.142446,0.988386,0.052938,-0.142446, + -0.199326,-0.488101,0.849721,-0.199326,-0.488101,0.849721,-0.199326,-0.488101,0.849721,-0.199326,-0.488101,0.849721, + 0.976907,-0.024316,0.212275,0.976907,-0.024316,0.212275,0.976907,-0.024316,0.212275,0.976907,-0.024316,0.212275, + 0.067298,0.487608,-0.870465,0.067298,0.487608,-0.870465,0.067298,0.487608,-0.870465,0.067298,0.487608,-0.870465, + -0.960310,0.046048,-0.275107,-0.960310,0.046048,-0.275107,-0.960310,0.046048,-0.275107,-0.960310,0.046048,-0.275107, + -0.219372,0.369959,0.902777,-0.219372,0.369959,0.902777,-0.219372,0.369959,0.902777,-0.219372,0.369959,0.902777, + -0.953387,0.033686,-0.299865,-0.953387,0.033686,-0.299865,-0.953387,0.033686,-0.299865,-0.953387,0.033686,-0.299865, + 0.695118,-0.713426,0.088514,0.695118,-0.713426,0.088514,0.695118,-0.713426,0.088514,0.695118,-0.713426,0.088514, + -0.507228,-0.315306,0.802061,-0.507228,-0.315306,0.802061,-0.507228,-0.315306,0.802061,-0.507228,-0.315306,0.802061, + 0.673540,-0.732207,0.101082,0.673540,-0.732207,0.101082,0.673540,-0.732207,0.101082,0.673540,-0.732207,0.101082, + 0.040146,-0.357754,-0.932953,0.040146,-0.357754,-0.932953,0.040146,-0.357754,-0.932953,0.040146,-0.357754,-0.932953, + 0.761432,-0.599319,-0.247061,0.761432,-0.599319,-0.247061,0.761432,-0.599319,-0.247061,0.761432,-0.599319,-0.247061, + -0.670618,0.722132,-0.169696,-0.670618,0.722132,-0.169696,-0.670618,0.722132,-0.169696,-0.670618,0.722132,-0.169696, + 0.048771,0.263534,0.963416,0.048771,0.263534,0.963416,0.048771,0.263534,0.963416,0.048771,0.263534,0.963416, + 0.466464,-0.244420,-0.850100,0.466464,-0.244420,-0.850100,0.466464,-0.244420,-0.850100,0.466464,-0.244420,-0.850100, + 0.697887,0.685540,0.207335,0.697887,0.685540,0.207335,0.697887,0.685540,0.207335,0.697887,0.685540,0.207335, + -0.561220,0.651206,-0.510845,-0.561220,0.651206,-0.510845,-0.561220,0.651206,-0.510845,-0.561220,0.651206,-0.510845, + -0.498542,-0.641716,-0.582800,-0.498542,-0.641716,-0.582800,-0.498542,-0.641716,-0.582800,-0.498542,-0.641716,-0.582800, + -0.665850,0.730816,-0.150172,-0.665850,0.730816,-0.150172,-0.665850,0.730816,-0.150172,-0.665850,0.730816,-0.150172, + 0.527162,0.290691,-0.798498,0.527162,0.290691,-0.798498,0.527162,0.290691,-0.798498,0.527162,0.290691,-0.798498, + 0.698755,0.693603,-0.175090,0.698755,0.693603,-0.175090,0.698755,0.693603,-0.175090,0.698755,0.693603,-0.175090, + 0.059862,-0.324408,0.944021,0.059862,-0.324408,0.944021,0.059862,-0.324408,0.944021,0.059862,-0.324408,0.944021, + 0.741752,0.644356,0.186037,0.741752,0.644356,0.186037,0.741752,0.644356,0.186037,0.741752,0.644356,0.186037, + -0.159569,0.232653,-0.959380,-0.159569,0.232653,-0.959380,-0.159569,0.232653,-0.959380,-0.159569,0.232653,-0.959380, + -0.735961,-0.629469,-0.249258,-0.735961,-0.629469,-0.249258,-0.735961,-0.629469,-0.249258,-0.735961,-0.629469,-0.249258, + -0.489864,0.224124,0.842497,-0.489864,0.224124,0.842497,-0.489864,0.224124,0.842497,-0.489864,0.224124,0.842497, + -0.667815,-0.693439,-0.270491,-0.667815,-0.693439,-0.270491,-0.667815,-0.693439,-0.270491,-0.667815,-0.693439,-0.270491, + -0.974018,0.016973,-0.225835,-0.974018,0.016973,-0.225835,-0.974018,0.016973,-0.225835,-0.974018,0.016973,-0.225835, + 0.306350,-0.137947,0.941871,0.306350,-0.137947,0.941871,0.306350,-0.137947,0.941871,0.306350,-0.137947,0.941871, + -0.940476,-0.002878,-0.339847,-0.940476,-0.002878,-0.339847,-0.940476,-0.002878,-0.339847,-0.940476,-0.002878,-0.339847, + 0.942777,-0.045665,0.330283,0.942777,-0.045665,0.330283,0.942777,-0.045665,0.330283,0.942777,-0.045665,0.330283, + -0.336383,-0.044309,0.940682,-0.336383,-0.044309,0.940682,-0.336383,-0.044309,0.940682,-0.336383,-0.044309,0.940682, + 0.332920,0.074777,-0.939986,0.332920,0.074777,-0.939986,0.332920,0.074777,-0.939986,0.332920,0.074777,-0.939986, + 0.034219,-0.966403,-0.254742,0.034219,-0.966403,-0.254742,0.034219,-0.966403,-0.254742,0.034219,-0.966403,-0.254742, + -0.239586,0.968844,0.062772,-0.239586,0.968844,0.062772,-0.239586,0.968844,0.062772,-0.239586,0.968844,0.062772, + -0.954321,0.053031,-0.294039,-0.954321,0.053031,-0.294039,-0.954321,0.053031,-0.294039,-0.954321,0.053031,-0.294039, + 0.954320,-0.053046,0.294040,0.954320,-0.053046,0.294040,0.954320,-0.053046,0.294040,0.954320,-0.053046,0.294040, + 0.297774,0.070312,-0.952043,0.297774,0.070312,-0.952043,0.297774,0.070312,-0.952043,0.297774,0.070312,-0.952043, + -0.298710,-0.107768,0.948240,-0.298710,-0.107768,0.948240,-0.298710,-0.107768,0.948240,-0.298710,-0.107768,0.948240, + 0.031856,0.996468,0.077692,0.031856,0.996468,0.077692,0.031856,0.996468,0.077692,0.031856,0.996468,0.077692, + -0.002092,-0.985081,-0.172081,-0.002092,-0.985081,-0.172081,-0.002092,-0.985081,-0.172081,-0.002092,-0.985081,-0.172081, + -0.017033,-0.991999,-0.125089,-0.017033,-0.991999,-0.125089,-0.017033,-0.991999,-0.125089,-0.017033,-0.991999,-0.125089, + 0.041593,0.998838,0.024343,0.041593,0.998838,0.024343,0.041593,0.998838,0.024343,0.041593,0.998838,0.024343, + 0.968907,-0.046752,0.242969,0.968907,-0.046752,0.242969,0.968907,-0.046752,0.242969,0.968907,-0.046752,0.242969, + -0.219238,-0.067738,0.973317,-0.219238,-0.067738,0.973317,-0.219238,-0.067738,0.973317,-0.219243,-0.067740,0.973316, + -0.219243,-0.067740,0.973316,-0.219243,-0.067740,0.973316,-0.219241,-0.067740,0.973316,-0.219241,-0.067740,0.973316, + -0.219241,-0.067740,0.973316,-0.219241,-0.067740,0.973316,-0.219241,-0.067739,0.973316,-0.219241,-0.067739,0.973316, + -0.219241,-0.067739,0.973316,-0.219241,-0.067738,0.973316,-0.219241,-0.067738,0.973316,-0.219241,-0.067738,0.973316, + -0.219240,-0.067739,0.973317,-0.219240,-0.067739,0.973317,-0.219240,-0.067739,0.973317,-0.219240,-0.067739,0.973317, + -0.219241,-0.067738,0.973316,-0.219241,-0.067738,0.973316,-0.219241,-0.067738,0.973316,-0.219241,-0.067738,0.973316, + -0.979928,0.044102,-0.194414,-0.979928,0.044102,-0.194414,-0.979928,0.044102,-0.194414,-0.979928,0.044102,-0.194414, + -0.012191,-0.988563,-0.150313,-0.012191,-0.988563,-0.150313,-0.012191,-0.988563,-0.150313,-0.955559,0.050010,-0.290527, + -0.955559,0.050010,-0.290527,-0.955559,0.050010,-0.290527,0.989175,-0.039629,0.141288,0.989175,-0.039629,0.141288, + 0.989175,-0.039629,0.141288,0.045808,0.998950,0.001067,0.045808,0.998950,0.001067,0.045808,0.998950,0.001067, + -0.012191,-0.988564,-0.150309,-0.012191,-0.988564,-0.150309,-0.012191,-0.988564,-0.150309,-0.012190,-0.988563,-0.150313, + -0.012190,-0.988563,-0.150313,-0.012190,-0.988563,-0.150313,-0.012190,-0.988563,-0.150313,0.045808,0.998950,0.001072, + 0.045808,0.998950,0.001072,0.045808,0.998950,0.001072,0.045807,0.998950,0.001064,0.045807,0.998950,0.001064, + 0.045807,0.998950,0.001064,0.045807,0.998950,0.001064,-0.955558,0.050015,-0.290530,-0.955558,0.050015,-0.290530, + -0.955558,0.050015,-0.290530,-0.955558,0.050013,-0.290528,-0.955558,0.050013,-0.290528,-0.955558,0.050013,-0.290528, + -0.955558,0.050013,-0.290528,0.989175,-0.039628,0.141287,0.989175,-0.039628,0.141287,0.989175,-0.039628,0.141287, + -0.042629,-0.999032,-0.010893,-0.042629,-0.999032,-0.010893,-0.042629,-0.999032,-0.010893,-0.042629,-0.999032,-0.010893, + -0.159951,-0.070331,0.984616,-0.159951,-0.070331,0.984616,-0.159951,-0.070331,0.984616,-0.159951,-0.070331,0.984616, + -0.277730,-0.064900,0.958464,-0.277730,-0.064900,0.958464,-0.277730,-0.064900,0.958464,-0.277730,-0.064900,0.958464, + 0.014397,0.991393,0.130123,0.014397,0.991393,0.130123,0.014397,0.991393,0.130123,0.014397,0.991393,0.130123, + -0.038496,-0.998451,-0.040160,-0.038496,-0.998451,-0.040160,-0.038496,-0.998451,-0.040160,-0.038496,-0.998451,-0.040160, + -0.951896,0.050793,-0.302184,-0.951896,0.050793,-0.302184,-0.951896,0.050793,-0.302184,-0.951896,0.050793,-0.302184, + 0.979499,-0.043563,0.196680,0.979499,-0.043563,0.196680,0.979499,-0.043563,0.196680,0.979499,-0.043563,0.196680, + 0.949597,0.027970,0.312222,0.949597,0.027970,0.312222,0.949597,0.027970,0.312222,0.949597,0.027970,0.312222, + 0.055059,-0.994123,-0.093209,0.055059,-0.994123,-0.093209,0.055059,-0.994123,-0.093209,0.055059,-0.994123,-0.093209, + 0.974975,0.034354,0.219646,0.974975,0.034354,0.219646,0.974975,0.034354,0.219646,0.974975,0.034354,0.219646, + 0.033762,-0.999425,-0.003118,0.033762,-0.999425,-0.003118,0.033762,-0.999425,-0.003118,0.033762,-0.999425,-0.003118, + -0.656482,0.750790,-0.073113,-0.656482,0.750790,-0.073113,-0.656482,0.750790,-0.073113,-0.656482,0.750790,-0.073113, + -0.627442,0.756121,-0.186005,-0.627442,0.756121,-0.186005,-0.627442,0.756121,-0.186005,-0.627442,0.756121,-0.186005, + 0.029221,-0.999476,0.013915,0.029221,-0.999476,0.013915,0.029221,-0.999476,0.013915,0.029221,-0.999476,0.013915, + -0.978281,-0.035377,-0.204239,-0.978281,-0.035377,-0.204239,-0.978281,-0.035377,-0.204239,-0.978281,-0.035377,-0.204239, + 0.060143,-0.992866,-0.102958,0.060143,-0.992866,-0.102958,0.060143,-0.992866,-0.102958,0.060143,-0.992866,-0.102958, + -0.976583,-0.034860,-0.212297,-0.976583,-0.034860,-0.212297,-0.976583,-0.034860,-0.212297,-0.976583,-0.034860,-0.212297, + 0.561636,0.802644,0.200817,0.561636,0.802644,0.200817,0.561636,0.802644,0.200817,0.561636,0.802644,0.200817, + 0.578959,0.805100,0.128919,0.578959,0.805100,0.128919,0.578959,0.805100,0.128919,0.578959,0.805100,0.128919, + 0.325821,0.119164,-0.937891,0.325821,0.119164,-0.937891,0.325821,0.119164,-0.937891,0.325821,0.119164,-0.937891, + 0.067136,-0.996496,-0.049877,0.067136,-0.996496,-0.049877,0.067136,-0.996496,-0.049877,0.067136,-0.996496,-0.049877, + -0.326899,0.353191,0.876580,-0.326899,0.353191,0.876580,-0.326899,0.353191,0.876580,-0.326899,0.353191,0.876580, + 0.024855,-0.999232,0.030278,0.024855,-0.999232,0.030278,0.024855,-0.999232,0.030278,0.024855,-0.999232,0.030278, + 0.967678,0.032156,0.250130,0.967678,0.032156,0.250130,0.967678,0.032156,0.250130,0.967678,0.032156,0.250130, + -0.968726,-0.032425,-0.246006,-0.968726,-0.032425,-0.246006,-0.968726,-0.032425,-0.246006,-0.968726,-0.032425,-0.246006, + 0.103637,-0.984871,-0.138886,0.103637,-0.984871,-0.138886,0.103637,-0.984871,-0.138886,0.103637,-0.984871,-0.138886, + 0.834202,0.030444,-0.550619,0.834202,0.030444,-0.550619,0.834202,0.030444,-0.550619,0.834202,0.030444,-0.550619, + -0.836366,-0.030203,0.547338,-0.836366,-0.030203,0.547338,-0.836366,-0.030203,0.547338,-0.836366,-0.030203,0.547338, + 0.027136,-0.999395,0.021738,0.027136,-0.999395,0.021738,0.027136,-0.999395,0.021738,0.027136,-0.999395,0.021738, + 0.073399,-0.985399,-0.153630,0.073399,-0.985399,-0.153630,0.073399,-0.985399,-0.153630,0.073399,-0.985399,-0.153630, + 0.937324,0.253105,0.239502,0.937324,0.253105,0.239502,0.937324,0.253105,0.239502,0.937324,0.253105,0.239502, + -0.265995,0.468092,0.842696,-0.265995,0.468092,0.842696,-0.265995,0.468092,0.842696,-0.265995,0.468092,0.842696, + 0.024856,-0.999233,0.030272,0.024856,-0.999233,0.030272,0.024856,-0.999233,0.030272,0.024856,-0.999233,0.030272, + 0.967676,0.032146,0.250141,0.967676,0.032146,0.250141,0.967676,0.032146,0.250141,0.967676,0.032146,0.250141, + -0.968729,-0.032397,-0.245997,-0.968729,-0.032397,-0.245997,-0.968729,-0.032397,-0.245997,-0.968729,-0.032397,-0.245997, + 0.103526,-0.982544,-0.154562,0.103526,-0.982544,-0.154562,0.103526,-0.982544,-0.154562,0.103526,-0.982544,-0.154562, + 0.792383,0.034686,-0.609037,0.792383,0.034686,-0.609037,0.792383,0.034686,-0.609037,0.792383,0.034686,-0.609037, + -0.794556,-0.034479,0.606211,-0.794556,-0.034479,0.606211,-0.794556,-0.034479,0.606211,-0.794556,-0.034479,0.606211, + -0.268567,0.464434,0.843903,-0.268567,0.464434,0.843903,-0.268567,0.464434,0.843903,-0.268567,0.464434,0.843903, + 0.289254,0.011305,-0.957185,0.289254,0.011305,-0.957185,0.289254,0.011305,-0.957185,0.289254,0.011305,-0.957185, + 0.019451,-0.997755,-0.064075,0.019451,-0.997755,-0.064075,0.019451,-0.997755,-0.064075,0.019451,-0.997755,-0.064075, + -0.254141,0.398720,0.881155,-0.254141,0.398720,0.881155,-0.254141,0.398720,0.881155,-0.254141,0.398720,0.881155, + 0.276530,0.063307,-0.958918,0.276530,0.063307,-0.958918,0.276530,0.063307,-0.958918,0.276530,0.063307,-0.958918, + 0.072949,-0.996173,-0.048140,0.072949,-0.996173,-0.048140,0.072949,-0.996173,-0.048140,0.072949,-0.996173,-0.048140, + 0.046770,-0.997337,-0.055961,0.046770,-0.997337,-0.055961,0.046770,-0.997337,-0.055961,0.046770,-0.997337,-0.055961, + 0.024856,-0.999232,0.030278,0.024856,-0.999232,0.030278,0.024856,-0.999232,0.030278,0.024856,-0.999232,0.030278, + 0.967680,0.032098,0.250129,0.967680,0.032098,0.250129,0.967680,0.032098,0.250129,0.967680,0.032098,0.250129, + -0.968728,-0.032392,-0.246001,-0.968728,-0.032392,-0.246001,-0.968728,-0.032392,-0.246001,-0.968728,-0.032392,-0.246001, + 0.103638,-0.984873,-0.138870,0.103638,-0.984873,-0.138870,0.103638,-0.984873,-0.138870,0.103638,-0.984873,-0.138870, + 0.834186,0.030482,-0.550641,0.834186,0.030482,-0.550641,0.834186,0.030482,-0.550641,0.834186,0.030482,-0.550641, + -0.836378,-0.030275,0.547316,-0.836378,-0.030275,0.547316,-0.836378,-0.030275,0.547316,-0.836378,-0.030275,0.547316, + 0.043314,-0.997436,-0.056962,0.043314,-0.997436,-0.056962,0.043314,-0.997436,-0.056962,0.043314,-0.997436,-0.056962, + 0.289134,0.005279,-0.957274,0.289134,0.005279,-0.957274,0.289134,0.005279,-0.957274,0.289134,0.005279,-0.957274, + -0.228590,0.464641,0.855485,-0.228590,0.464641,0.855485,-0.228590,0.464641,0.855485,-0.228590,0.464641,0.855485, + 0.048280,-0.997291,-0.055493,0.048280,-0.997291,-0.055493,0.048280,-0.997291,-0.055493,0.048280,-0.997291,-0.055493, + 0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607,0.240421,0.010985,-0.970607, + -0.243840,0.403118,0.882065,-0.243840,0.403118,0.882065,-0.243840,0.403118,0.882065,-0.243840,0.403118,0.882065, + 0.240467,0.043051,-0.969702,0.240467,0.043051,-0.969702,0.240467,0.043051,-0.969702,0.240467,0.043051,-0.969702, + 0.276529,0.063304,-0.958918,0.276529,0.063304,-0.958918,0.276529,0.063304,-0.958918,0.276529,0.063304,-0.958918, + -0.254141,0.398725,0.881153,-0.254141,0.398725,0.881153,-0.254141,0.398725,0.881153,-0.254141,0.398725,0.881153, + 0.019451,-0.997755,-0.064078,0.019451,-0.997755,-0.064078,0.019451,-0.997755,-0.064078,0.019451,-0.997755,-0.064078, + 0.222374,0.265256,-0.938184,0.222374,0.265256,-0.938184,0.222374,0.265256,-0.938184,0.222374,0.265256,-0.938184, + -0.240740,0.216344,0.946171,-0.240740,0.216344,0.946171,-0.240740,0.216344,0.946171,-0.240740,0.216344,0.946171, + 0.047681,-0.997308,-0.055700,0.047681,-0.997308,-0.055700,0.047681,-0.997308,-0.055700,0.047681,-0.997308,-0.055700, + -0.235825,-0.304565,0.922836,-0.235825,-0.304565,0.922836,-0.235825,-0.304565,0.922836,-0.235825,-0.304565,0.922836, + -0.258825,0.176377,0.949685,-0.258825,0.176377,0.949685,-0.258825,0.176377,0.949685,-0.258825,0.176377,0.949685, + 0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581,0.058206,-0.993718,-0.095581, + 0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405,0.026959,-0.999385,0.022405, + 0.081506,-0.990149,-0.113849,0.081506,-0.990149,-0.113849,0.081506,-0.990149,-0.113849,0.081506,-0.990149,-0.113849, + -0.280782,0.008593,0.959733,-0.280782,0.008593,0.959733,-0.280782,0.008593,0.959733,-0.280782,0.008593,0.959733, + -0.273789,-0.141800,0.951279,-0.273789,-0.141800,0.951279,-0.273789,-0.141800,0.951279,-0.273789,-0.141800,0.951279, + -0.001432,-0.991769,0.128030,-0.001432,-0.991769,0.128030,-0.001432,-0.991769,0.128030,-0.001432,-0.991769,0.128030, + -0.031991,0.999482,-0.003530,-0.031991,0.999482,-0.003530,-0.031991,0.999482,-0.003530,-0.031991,0.999482,-0.003530, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.095193,0.966644,0.237775,-0.095193,0.966644,0.237775,-0.095193,0.966644,0.237775,-0.095193,0.966644,0.237775, + 0.063217,-0.991389,-0.114677,0.063217,-0.991389,-0.114677,0.063217,-0.991389,-0.114677,0.063217,-0.991389,-0.114677, + 0.026959,-0.999385,0.022406,0.026959,-0.999385,0.022406,0.026959,-0.999385,0.022406,0.026959,-0.999385,0.022406, + 0.000882,-0.995056,0.099309,0.000882,-0.995056,0.099309,0.000882,-0.995056,0.099309,0.000882,-0.995056,0.099309, + -0.029794,0.999551,-0.003037,-0.029794,0.999551,-0.003037,-0.029794,0.999551,-0.003037,-0.029794,0.999551,-0.003037, + -0.306268,-0.068127,0.949504,-0.306268,-0.068127,0.949504,-0.306268,-0.068127,0.949504,-0.306268,-0.068127,0.949504, + -0.091060,0.973435,0.210076,-0.091060,0.973435,0.210076,-0.091060,0.973435,0.210076,-0.091060,0.973435,0.210076, + 0.063486,-0.996320,-0.057591,0.063486,-0.996320,-0.057591,0.063486,-0.996320,-0.057591,0.063486,-0.996320,-0.057591, + -0.235824,-0.304570,0.922835,-0.235824,-0.304570,0.922835,-0.235824,-0.304570,0.922835,-0.235824,-0.304570,0.922835, + -0.258823,0.176370,0.949687,-0.258823,0.176370,0.949687,-0.258823,0.176370,0.949687,-0.258823,0.176370,0.949687, + 0.058207,-0.993718,-0.095580,0.058207,-0.993718,-0.095580,0.058207,-0.993718,-0.095580,0.058207,-0.993718,-0.095580, + 0.026960,-0.999385,0.022406,0.026960,-0.999385,0.022406,0.026960,-0.999385,0.022406,0.026960,-0.999385,0.022406, + -0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032,-0.001432,-0.991769,0.128032, + -0.031991,0.999482,-0.003534,-0.031991,0.999482,-0.003534,-0.031991,0.999482,-0.003534,-0.031991,0.999482,-0.003534, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724, + -0.095194,0.966649,0.237758,-0.095194,0.966649,0.237758,-0.095194,0.966649,0.237758,-0.095194,0.966649,0.237758, + 0.063218,-0.991389,-0.114677,0.063218,-0.991389,-0.114677,0.063218,-0.991389,-0.114677,0.063218,-0.991389,-0.114677, + 0.024845,-0.999231,0.030320,0.024845,-0.999231,0.030320,0.024845,-0.999231,0.030320,0.024845,-0.999231,0.030320, + -0.311305,-0.097520,0.945293,-0.311305,-0.097520,0.945293,-0.311305,-0.097520,0.945293,-0.311305,-0.097520,0.945293, + -0.966737,-0.044765,-0.251826,-0.966737,-0.044765,-0.251826,-0.966737,-0.044765,-0.251826,-0.966737,-0.044765,-0.251826, + -0.127398,0.988092,0.086278,-0.127398,0.988092,0.086278,-0.127398,0.988092,0.086278,-0.127398,0.988092,0.086278, + 0.959591,0.090031,0.266607,0.959591,0.090031,0.266607,0.959591,0.090031,0.266607,0.959591,0.090031,0.266607, + 0.051590,-0.996372,-0.067692,0.051590,-0.996372,-0.067692,0.051590,-0.996372,-0.067692,0.051590,-0.996372,-0.067692, + -0.003220,0.998995,0.044695,-0.003220,0.998995,0.044695,-0.003220,0.998995,0.044695,-0.003220,0.998995,0.044695, + -0.246604,-0.059894,0.967264,-0.246604,-0.059894,0.967264,-0.246604,-0.059894,0.967264,-0.246604,-0.059894,0.967264, + 0.959189,-0.104867,0.262600,0.959189,-0.104867,0.262600,0.959189,-0.104867,0.262600,0.959189,-0.104867,0.262600, + -0.253899,-0.073218,0.964455,-0.253899,-0.073218,0.964455,-0.253899,-0.073218,0.964455,-0.253899,-0.073218,0.964455, + -0.964147,-0.036856,-0.262795,-0.964147,-0.036856,-0.262795,-0.964147,-0.036856,-0.262795,-0.964147,-0.036856,-0.262795, + 0.980188,0.049601,0.191761,0.980188,0.049601,0.191761,0.980188,0.049601,0.191761,0.980188,0.049601,0.191761, + -0.964050,-0.031363,-0.263862,-0.964050,-0.031363,-0.263862,-0.964050,-0.031363,-0.263862,-0.964050,-0.031363,-0.263862, + -0.835274,0.436441,-0.334421,-0.835274,0.436441,-0.334421,-0.835274,0.436441,-0.334421,-0.835274,0.436441,-0.334421, + 0.445960,0.886668,0.122229,0.445960,0.886668,0.122229,0.445960,0.886668,0.122229,0.445960,0.886668,0.122229, + -0.431125,-0.883271,-0.184292,-0.431125,-0.883271,-0.184292,-0.431125,-0.883271,-0.184292,-0.431125,-0.883271,-0.184292, + -0.399920,-0.868014,-0.294306,-0.399920,-0.868014,-0.294306,-0.399920,-0.868014,-0.294306,-0.399920,-0.868014,-0.294306, + 0.912914,-0.406664,0.034827,0.912914,-0.406664,0.034827,0.912914,-0.406664,0.034827,0.912914,-0.406664,0.034827, + -0.798658,0.504035,-0.328775,-0.798658,0.504035,-0.328775,-0.798658,0.504035,-0.328775,-0.798658,0.504035,-0.328775, + -0.901373,0.415254,-0.122848,-0.901373,0.415254,-0.122848,-0.901373,0.415254,-0.122848,-0.901373,0.415254,-0.122848, + 0.878440,-0.476694,0.033255,0.878440,-0.476694,0.033255,0.878440,-0.476694,0.033255,0.878440,-0.476694,0.033255, + 0.447546,0.886827,0.115069,0.447546,0.886827,0.115069,0.447546,0.886827,0.115069,0.447546,0.886827,0.115069, + -0.863425,0.492217,-0.110542,-0.863425,0.492217,-0.110542,-0.863425,0.492217,-0.110542,-0.863425,0.492217,-0.110542, + -0.402869,-0.869814,-0.284817,-0.402869,-0.869814,-0.284817,-0.402869,-0.869814,-0.284817,-0.402869,-0.869814,-0.284817, + 0.417288,0.877639,0.235841,0.417288,0.877639,0.235841,0.417288,0.877639,0.235841,0.417288,0.877639,0.235841, + 0.860929,-0.429494,0.272645,0.860929,-0.429494,0.272645,0.860929,-0.429494,0.272645,0.860929,-0.429494,0.272645, + -0.233986,-0.089744,0.968089,-0.233986,-0.089744,0.968089,-0.233986,-0.089744,0.968089,-0.233986,-0.089744,0.968089, + -0.233984,-0.089743,0.968090,-0.233984,-0.089743,0.968090,-0.233984,-0.089743,0.968090,-0.233984,-0.089743,0.968090, + -0.233987,-0.089743,0.968089,-0.233987,-0.089743,0.968089,-0.233987,-0.089743,0.968089,-0.233987,-0.089743,0.968089, + -0.233988,-0.089745,0.968089,-0.233988,-0.089745,0.968089,-0.233988,-0.089745,0.968089,-0.233988,-0.089745,0.968089, + -0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089, + -0.233984,-0.089744,0.968090,-0.233984,-0.089744,0.968090,-0.233984,-0.089744,0.968090,-0.233984,-0.089744,0.968090, + -0.233983,-0.089743,0.968090,-0.233983,-0.089743,0.968090,-0.233983,-0.089743,0.968090,-0.233983,-0.089743,0.968090, + -0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089,-0.233985,-0.089745,0.968089, + 0.822805,-0.505749,0.259251,0.822805,-0.505749,0.259251,0.822805,-0.505749,0.259251,0.822805,-0.505749,0.259251, + -0.401987,-0.870780,-0.283106,-0.401987,-0.870780,-0.283106,-0.401987,-0.870780,-0.283106,-0.401987,-0.870780,-0.283106, + 0.845184,-0.469016,0.256298,0.845184,-0.469016,0.256298,0.845184,-0.469016,0.256298,0.845184,-0.469016,0.256298, + -0.435228,-0.883753,-0.171923,-0.435228,-0.883753,-0.171923,-0.435228,-0.883753,-0.171923,-0.435228,-0.883753,-0.171923, + -0.322263,-0.070270,0.944039,-0.322263,-0.070270,0.944039,-0.322263,-0.070270,0.944039,-0.322263,-0.070270,0.944039, + 0.412218,0.876049,0.250228,0.412218,0.876049,0.250228,0.412218,0.876049,0.250228,0.412218,0.876049,0.250228, + -0.877748,0.458474,-0.139140,-0.877748,0.458474,-0.139140,-0.877748,0.458474,-0.139140,-0.877748,0.458474,-0.139140, + 0.416299,0.876260,0.242618,0.416299,0.876260,0.242618,0.416299,0.876260,0.242618,0.416299,0.876260,0.242618, + -0.217878,-0.126178,0.967785,-0.217878,-0.126178,0.967785,-0.217878,-0.126178,0.967785,-0.217878,-0.126178,0.967785, + -0.432910,-0.884610,-0.173358,-0.432910,-0.884610,-0.173358,-0.432910,-0.884610,-0.173358,-0.432910,-0.884610,-0.173358, + -0.867802,0.461956,-0.183076,-0.867802,0.461956,-0.183076,-0.867802,0.461956,-0.183076,-0.867802,0.461956,-0.183076, + 0.437890,0.884356,0.161761,0.437890,0.884356,0.161761,0.437890,0.884356,0.161761,0.437890,0.884356,0.161761, + -0.863802,0.463062,-0.198546,-0.863802,0.463062,-0.198546,-0.863802,0.463062,-0.198546,-0.863802,0.463062,-0.198546, + 0.427520,0.882140,0.197623,0.427520,0.882140,0.197623,0.427520,0.882140,0.197623,0.427520,0.882140,0.197623, + 0.309591,-0.950653,0.020299,0.309591,-0.950653,0.020299,0.309591,-0.950653,0.020299,0.309591,-0.950653,0.020299, + 0.314629,-0.949214,0.001100,0.314629,-0.949214,0.001100,0.314629,-0.949214,0.001100,0.314629,-0.949214,0.001100, + 0.340630,0.917276,0.206340,0.340630,0.917276,0.206340,0.340630,0.917276,0.206340,0.340630,0.917276,0.206340, + 0.867188,-0.462766,0.183934,0.867188,-0.462766,0.183934,0.867188,-0.462766,0.183934,0.867188,-0.462766,0.183934, + 0.396321,0.907915,0.136456,0.396321,0.907915,0.136456,0.396321,0.907915,0.136456,0.396321,0.907915,0.136456, + 0.845002,-0.466346,0.261711,0.845002,-0.466346,0.261711,0.845002,-0.466346,0.261711,0.845002,-0.466346,0.261711, + -0.893149,-0.388764,-0.226158,-0.893149,-0.388764,-0.226158,-0.893149,-0.388764,-0.226158,-0.893149,-0.388764,-0.226158, + -0.829637,-0.451167,-0.328865,-0.829637,-0.451167,-0.328865,-0.829637,-0.451167,-0.328865,-0.829637,-0.451167,-0.328865, + 0.837916,-0.466990,0.282519,0.837916,-0.466990,0.282519,0.837916,-0.466990,0.282519,0.837916,-0.466990,0.282519, + -0.419476,-0.879179,-0.226021,-0.419476,-0.879179,-0.226021,-0.419476,-0.879179,-0.226021,-0.419476,-0.879179,-0.226021, + 0.878308,-0.458014,0.137107,0.878308,-0.458014,0.137107,0.878308,-0.458014,0.137107,0.878308,-0.458014,0.137107, + -0.447436,-0.886260,-0.119770,-0.447436,-0.886260,-0.119770,-0.447436,-0.886260,-0.119770,-0.447436,-0.886260,-0.119770, + -0.328354,0.943049,0.053320,-0.328354,0.943049,0.053320,-0.328354,0.943049,0.053320,-0.328354,0.943049,0.053320, + -0.285185,0.952430,-0.107453,-0.285185,0.952430,-0.107453,-0.285185,0.952430,-0.107453,-0.285185,0.952430,-0.107453, + 0.214766,0.093968,-0.972135,0.214766,0.093968,-0.972135,0.214766,0.093968,-0.972135,0.214766,0.093968,-0.972135, + -0.847758,0.495165,-0.190049,-0.847758,0.495165,-0.190049,-0.847758,0.495165,-0.190049,-0.847758,0.495165,-0.190049, + 0.056686,-0.252686,0.965886,0.056686,-0.252686,0.965886,0.056686,-0.252686,0.965886,0.056686,-0.252686,0.965886, + 0.234991,0.097194,-0.967126,0.234991,0.097194,-0.967126,0.234991,0.097194,-0.967126,0.234991,0.097194,-0.967126, + -0.875038,0.440344,-0.201011,-0.875038,0.440344,-0.201011,-0.875038,0.440344,-0.201011,-0.875038,0.440344,-0.201011, + 0.082627,-0.230284,0.969609,0.082627,-0.230284,0.969609,0.082627,-0.230284,0.969609,0.082627,-0.230284,0.969609, + 0.251996,0.152944,-0.955566,0.251996,0.152944,-0.955566,0.251996,0.152944,-0.955566,0.251996,0.152944,-0.955566, + 0.848045,-0.495072,0.189007,0.848045,-0.495072,0.189007,0.848045,-0.495072,0.189007,0.848045,-0.495072,0.189007, + -0.568262,0.110162,0.815440,-0.568262,0.110162,0.815440,-0.568262,0.110162,0.815440,-0.568262,0.110162,0.815440, + 0.266851,0.084513,-0.960025,0.266851,0.084513,-0.960025,0.266851,0.084513,-0.960025,0.266851,0.084513,-0.960025, + 0.874845,-0.440405,0.201716,0.874845,-0.440405,0.201716,0.874845,-0.440405,0.201716,0.874845,-0.440405,0.201716, + -0.571241,0.025526,0.820386,-0.571241,0.025526,0.820386,-0.571241,0.025526,0.820386,-0.571241,0.025526,0.820386, + 0.381262,0.115661,-0.917203,0.381262,0.115661,-0.917203,0.381262,0.115661,-0.917203,0.381262,0.115661,-0.917203, + -0.497498,-0.506416,0.704300,-0.497498,-0.506416,0.704300,-0.497498,-0.506416,0.704300,-0.497498,-0.506416,0.704300, + 0.401115,0.894483,0.197503,0.401115,0.894483,0.197503,0.401115,0.894483,0.197503,0.401115,0.894483,0.197503, + 0.286290,0.210201,-0.934801,0.286290,0.210201,-0.934801,0.286290,0.210201,-0.934801,0.286290,0.210201,-0.934801, + -0.426507,-0.524623,0.736792,-0.426507,-0.524623,0.736792,-0.426507,-0.524623,0.736792,-0.426507,-0.524623,0.736792, + 0.461016,0.865441,0.196155,0.461016,0.865441,0.196155,0.461016,0.865441,0.196155,0.461016,0.865441,0.196155, + 0.309366,0.102311,-0.945423,0.309366,0.102311,-0.945423,0.309366,0.102311,-0.945423,0.309366,0.102311,-0.945423, + -0.462876,-0.505372,0.728248,-0.462876,-0.505372,0.728248,-0.462876,-0.505372,0.728248,-0.462876,-0.505372,0.728248, + 0.434676,0.880680,0.188309,0.434676,0.880680,0.188309,0.434676,0.880680,0.188309,0.434676,0.880680,0.188309, + 0.398582,0.917028,0.013839,0.398582,0.917028,0.013839,0.398582,0.917028,0.013839,0.398582,0.917028,0.013839, + -0.372544,0.355161,-0.857364,-0.372544,0.355161,-0.857364,-0.372544,0.355161,-0.857364,-0.372544,0.355161,-0.857364, + 0.375463,-0.356223,0.855648,0.375463,-0.356223,0.855648,0.375463,-0.356223,0.855648,0.375463,-0.356223,0.855648, + -0.837291,0.466364,-0.285391,-0.837291,0.466364,-0.285391,-0.837291,0.466364,-0.285391,-0.837291,0.466364,-0.285391, + 0.837290,-0.466359,0.285401,0.837290,-0.466359,0.285401,0.837290,-0.466359,0.285401,0.837290,-0.466359,0.285401, + -0.295822,-0.026231,0.954883,-0.295822,-0.026231,0.954883,-0.295822,-0.026231,0.954883,-0.295822,-0.026231,0.954883, + 0.312100,0.059559,-0.948181,0.312100,0.059559,-0.948181,0.312100,0.059559,-0.948181,0.312100,0.059559,-0.948181, + -0.439296,-0.884949,-0.154545,-0.439296,-0.884949,-0.154545,-0.439296,-0.884949,-0.154545,-0.439296,-0.884949,-0.154545, + 0.407975,0.878443,0.248787,0.407975,0.878443,0.248787,0.407975,0.878443,0.248787,0.407975,0.878443,0.248787, + -0.851851,0.457803,-0.254493,-0.851851,0.457803,-0.254493,-0.851851,0.457803,-0.254493,-0.851851,0.457803,-0.254493, + 0.851852,-0.457805,0.254488,0.851852,-0.457805,0.254488,0.851852,-0.457805,0.254488,0.851852,-0.457805,0.254488, + 0.248779,-0.024958,-0.968239,0.248779,-0.024958,-0.968239,0.248779,-0.024958,-0.968239,0.248779,-0.024958,-0.968239, + -0.265613,-0.008468,0.964042,-0.265613,-0.008468,0.964042,-0.265613,-0.008468,0.964042,-0.265613,-0.008468,0.964042, + 0.452844,0.887272,0.087642,0.452844,0.887272,0.087642,0.452844,0.887272,0.087642,0.452844,0.887272,0.087642, + -0.426111,-0.885847,-0.183587,-0.426111,-0.885847,-0.183587,-0.426111,-0.885847,-0.183587,-0.426111,-0.885847,-0.183587, + -0.846958,0.469089,-0.250236,-0.846958,0.469089,-0.250236,-0.846958,0.469089,-0.250236,-0.846958,0.469089,-0.250236, + 0.846962,-0.469081,0.250236,0.846962,-0.469081,0.250236,0.846962,-0.469081,0.250236,0.846962,-0.469081,0.250236, + 0.287418,0.055705,-0.956184,0.287418,0.055705,-0.956184,0.287418,0.055705,-0.956184,0.287418,0.055705,-0.956184, + -0.303566,-0.088891,0.948655,-0.303566,-0.088891,0.948655,-0.303566,-0.088891,0.948655,-0.303566,-0.088891,0.948655, + 0.435443,0.882742,0.176511,0.435443,0.882742,0.176511,0.435443,0.882742,0.176511,0.435443,0.882742,0.176511, + -0.404974,-0.873290,-0.270851,-0.404974,-0.873290,-0.270851,-0.404974,-0.873290,-0.270851,-0.404974,-0.873290,-0.270851, + -0.844612,0.469831,-0.256691,-0.844612,0.469831,-0.256691,-0.844612,0.469831,-0.256691,-0.844612,0.469831,-0.256691, + -0.402023,-0.870798,-0.282997,-0.402023,-0.870798,-0.282997,-0.402023,-0.870798,-0.282997,-0.402023,-0.870798,-0.282997, + 0.881665,0.291680,0.370931,0.881665,0.291680,0.370931,0.881665,0.291680,0.370931,0.881665,0.291680,0.370931, + 0.432791,0.883833,0.177570,0.432791,0.883833,0.177570,0.432791,0.883833,0.177570,0.432791,0.883833,0.177570, + -0.856594,0.464642,-0.224398,-0.856594,0.464642,-0.224398,-0.856594,0.464642,-0.224398,-0.856594,0.464642,-0.224398, + 0.308412,-0.950946,0.024152,0.308412,-0.950946,0.024152,0.308412,-0.950946,0.024152,0.308412,-0.950946,0.024152, + 0.878825,-0.460992,0.123099,0.878825,-0.460992,0.123099,0.878825,-0.460992,0.123099,0.878825,-0.460992,0.123099, + 0.438401,0.885031,0.156602,0.438401,0.885031,0.156602,0.438401,0.885031,0.156602,0.438401,0.885031,0.156602, + -0.928458,-0.306921,-0.209201,-0.928458,-0.306921,-0.209201,-0.928458,-0.306921,-0.209201,-0.928458,-0.306921,-0.209201, + -0.402681,-0.871161,-0.280937,-0.402681,-0.871161,-0.280937,-0.402681,-0.871161,-0.280937,-0.402681,-0.871161,-0.280937, + 0.881653,-0.456312,0.120278,0.881653,-0.456312,0.120278,0.881653,-0.456312,0.120278,0.881653,-0.456312,0.120278, + -0.339667,0.935006,0.101929,-0.339667,0.935006,0.101929,-0.339667,0.935006,0.101929,-0.339667,0.935006,0.101929, + -0.847751,0.495167,-0.190072,-0.847751,0.495167,-0.190072,-0.847751,0.495167,-0.190072,-0.847751,0.495167,-0.190072, + 0.119282,0.628936,0.768252,0.119282,0.628936,0.768252,0.119282,0.628936,0.768252,0.119282,0.628936,0.768252, + -0.875038,0.440343,-0.201012,-0.875038,0.440343,-0.201012,-0.875038,0.440343,-0.201012,-0.875038,0.440343,-0.201012, + -0.509326,-0.773337,0.377540,-0.509326,-0.773337,0.377540,-0.509326,-0.773337,0.377540,0.848313,-0.494999,0.187991, + 0.848313,-0.494999,0.187991,0.848313,-0.494999,0.187991,0.848313,-0.494999,0.187991,0.460372,-0.396486,0.794265, + 0.460372,-0.396486,0.794265,0.460372,-0.396486,0.794265,0.460372,-0.396486,0.794265,-0.539858,-0.756321,0.369504, + -0.539858,-0.756321,0.369504,-0.539858,-0.756321,0.369504,0.874660,-0.440455,0.202411,0.874660,-0.440455,0.202411, + 0.874660,-0.440455,0.202411,0.874660,-0.440455,0.202411,0.540671,-0.437179,0.718713,0.540671,-0.437179,0.718713, + 0.540671,-0.437179,0.718713,-0.847972,0.380845,0.368647,-0.847972,0.380845,0.368647,-0.847972,0.380845,0.368647, + -0.867577,0.342795,0.360280,-0.867577,0.342795,0.360280,-0.867577,0.342795,0.360280,-0.452199,-0.867104,-0.208920, + -0.452199,-0.867104,-0.208920,-0.452199,-0.867104,-0.208920,-0.452199,-0.867104,-0.208920,0.175849,0.597157,0.782612, + 0.175849,0.597157,0.782612,0.175849,0.597157,0.782612,0.175849,0.597157,0.782612,0.012076,-0.437221,-0.899273, + 0.012076,-0.437221,-0.899273,0.012076,-0.437221,-0.899273,0.393284,0.891458,0.225013,0.393284,0.891458,0.225013, + 0.393284,0.891458,0.225013,0.393284,0.891458,0.225013,0.457212,0.864226,0.209931,0.457212,0.864226,0.209931, + 0.457212,0.864226,0.209931,0.457212,0.864226,0.209931,-0.416260,-0.893006,-0.171078,-0.416260,-0.893006,-0.171078, + -0.416260,-0.893006,-0.171078,-0.416260,-0.893006,-0.171078,-0.806854,0.318860,0.497308,-0.806854,0.318860,0.497308, + -0.806854,0.318860,0.497308,-0.806854,0.318860,0.497308,-0.824610,0.283626,0.489463,-0.824610,0.283626,0.489463, + -0.824610,0.283626,0.489463,-0.824610,0.283626,0.489463,0.551979,-0.414002,0.723824,0.551979,-0.414002,0.723824, + 0.551979,-0.414002,0.723824,0.450344,-0.416775,0.789613,0.450344,-0.416775,0.789613,0.450344,-0.416775,0.789613, + 0.450344,-0.416775,0.789613,-0.480661,-0.724745,0.493670,-0.480661,-0.724745,0.493670,-0.480661,-0.724745,0.493670, + -0.480661,-0.724745,0.493670,-0.508540,-0.710246,0.486762,-0.508540,-0.710246,0.486762,-0.508540,-0.710246,0.486762, + -0.508540,-0.710246,0.486762,0.157181,0.723502,0.672189,0.157181,0.723502,0.672189,0.157181,0.723502,0.672189, + 0.219693,0.690414,0.689249,0.219693,0.690414,0.689249,0.219693,0.690414,0.689249,-0.036072,-0.411241,-0.910813, + -0.036072,-0.411241,-0.910813,-0.036072,-0.411241,-0.910813,-0.238362,0.326070,-0.914802,-0.238362,0.326070,-0.914802, + -0.238362,0.326070,-0.914802,0.667913,-0.195301,-0.718157,0.667913,-0.195301,-0.718157,0.667913,-0.195301,-0.718157, + 0.440427,0.550701,-0.709050,0.440427,0.550701,-0.709050,0.440427,0.550701,-0.709050,-0.236213,0.330374,-0.913814, + -0.236213,0.330374,-0.913814,-0.236213,0.330374,-0.913814,0.455211,0.542834,-0.705772,0.455211,0.542834,-0.705772, + 0.455211,0.542834,-0.705772,0.678738,-0.173566,-0.713575,0.678738,-0.173566,-0.713575,0.678738,-0.173566,-0.713575, + -0.856111,0.454992,-0.245064,-0.856111,0.454992,-0.245064,-0.856111,0.454992,-0.245064,-0.856111,0.454992,-0.245064, + -0.052936,0.301345,0.952044,-0.052936,0.301345,0.952044,-0.052936,0.301345,0.952044,-0.052936,0.301345,0.952044, + -0.856556,0.467347,-0.218855,-0.856556,0.467347,-0.218855,-0.856556,0.467347,-0.218855,-0.856556,0.467347,-0.218855, + 0.258887,0.513540,-0.818080,0.258887,0.513540,-0.818080,0.258887,0.513540,-0.818080,0.258887,0.513540,-0.818080, + -0.725139,0.382595,-0.572533,-0.725139,0.382595,-0.572533,-0.725139,0.382595,-0.572533,-0.725139,0.382595,-0.572533, + 0.880362,-0.447280,0.157810,0.880362,-0.447280,0.157810,0.880362,-0.447280,0.157810,0.880362,-0.447280,0.157810, + -0.379385,-0.457424,0.804258,-0.379385,-0.457424,0.804258,-0.379385,-0.457424,0.804258,-0.379385,-0.457424,0.804258, + -0.129087,0.285545,-0.949632,-0.129087,0.285545,-0.949632,-0.129087,0.285545,-0.949632,-0.129087,0.285545,-0.949632, + -0.430239,-0.881684,-0.193724,-0.430239,-0.881684,-0.193724,-0.430239,-0.881684,-0.193724,-0.430239,-0.881684,-0.193724, + 0.925350,-0.330707,-0.185366,0.925350,-0.330707,-0.185366,0.925350,-0.330707,-0.185366,0.925350,-0.330707,-0.185366, + 0.436580,0.869149,-0.232333,0.436580,0.869149,-0.232333,0.436580,0.869149,-0.232333,0.436580,0.869149,-0.232333, + 0.866893,-0.466111,0.176739,0.866893,-0.466111,0.176739,0.866893,-0.466111,0.176739,0.866893,-0.466111,0.176739, + 0.025890,-0.285163,-0.958129,0.025890,-0.285163,-0.958129,0.025890,-0.285163,-0.958129,0.025890,-0.285163,-0.958129, + -0.236376,-0.817261,-0.525558,-0.236376,-0.817261,-0.525558,-0.236376,-0.817261,-0.525558,-0.236376,-0.817261,-0.525558, + -0.619169,0.098911,0.779004,-0.619169,0.098911,0.779004,-0.619169,0.098911,0.779004,-0.619169,0.098911,0.779004, + -0.404741,-0.889532,-0.211939,-0.404741,-0.889532,-0.211939,-0.404741,-0.889532,-0.211939,-0.404741,-0.889532,-0.211939, + 0.668173,0.020318,-0.743728,0.668173,0.020318,-0.743728,0.668173,0.020318,-0.743728,0.668173,0.020318,-0.743728, + 0.437010,0.886597,0.151553,0.437010,0.886597,0.151553,0.437010,0.886597,0.151553,0.437010,0.886597,0.151553, + 0.143322,-0.257300,0.955644,0.143322,-0.257300,0.955644,0.143322,-0.257300,0.955644,0.143322,-0.257300,0.955644, + 0.430784,0.893802,0.124672,0.430784,0.893802,0.124672,0.430784,0.893802,0.124672,0.430784,0.893802,0.124672, + -0.895594,-0.323851,-0.305013,-0.895594,-0.323851,-0.305013,-0.895594,-0.323851,-0.305013,-0.895594,-0.323851,-0.305013, + -0.348756,0.304539,0.886355,-0.348756,0.304539,0.886355,-0.348756,0.304539,0.886355,-0.348756,0.304539,0.886355, + -0.909012,-0.301732,-0.287496,-0.909012,-0.301732,-0.287496,-0.909012,-0.301732,-0.287496,-0.909012,-0.301732,-0.287496, + -0.064645,0.414463,-0.907767,-0.064645,0.414463,-0.907767,-0.064645,0.414463,-0.907767,-0.064645,0.414463,-0.907767, + -0.717683,-0.319704,-0.618644,-0.717683,-0.319704,-0.618644,-0.717683,-0.319704,-0.618644,-0.717683,-0.319704,-0.618644, + 0.918862,0.325500,0.223030,0.918862,0.325500,0.223030,0.918862,0.325500,0.223030,0.918862,0.325500,0.223030, + -0.058121,-0.460816,0.885590,-0.058121,-0.460816,0.885590,-0.058121,-0.460816,0.885590,-0.058121,-0.460816,0.885590, + -0.127032,-0.022031,-0.991654,-0.127032,-0.022031,-0.991654,-0.127032,-0.022031,-0.991654,-0.127032,-0.022031,-0.991654, + 0.326538,-0.945181,-0.002400,0.326538,-0.945181,-0.002400,0.326538,-0.945181,-0.002400,0.326538,-0.945181,-0.002400, + 0.917890,0.371597,-0.139259,0.917890,0.371597,-0.139259,0.917890,0.371597,-0.139259,0.917890,0.371597,-0.139259, + -0.244025,0.878126,-0.411518,-0.244025,0.878126,-0.411518,-0.244025,0.878126,-0.411518,-0.244025,0.878126,-0.411518, + 0.919447,0.311553,0.239900,0.919447,0.311553,0.239900,0.919447,0.311553,0.239900,0.919447,0.311553,0.239900, + 0.319034,-0.312424,-0.894767,0.319034,-0.312424,-0.894767,0.319034,-0.312424,-0.894767,0.319034,-0.312424,-0.894767, + 0.444227,-0.826237,-0.346402,0.444227,-0.826237,-0.346402,0.444227,-0.826237,-0.346402,0.444227,-0.826237,-0.346402, + -0.584621,-0.219939,0.780926,-0.584621,-0.219939,0.780926,-0.584621,-0.219939,0.780926,-0.584621,-0.219939,0.780926, + 0.281253,-0.958562,-0.045340,0.281253,-0.958562,-0.045340,0.281253,-0.958562,-0.045340,0.281253,-0.958562,-0.045340, + 0.539403,0.347820,-0.766854,0.539403,0.347820,-0.766854,0.539403,0.347820,-0.766854,0.539403,0.347820,-0.766854, + -0.251473,0.967791,-0.011927,-0.251473,0.967791,-0.011927,-0.251473,0.967791,-0.011927,-0.251473,0.967791,-0.011927, + 0.118690,0.052820,0.991525,0.118690,0.052820,0.991525,0.118690,0.052820,0.991525,0.118690,0.052820,0.991525, + -0.325244,0.943185,-0.067958,-0.325244,0.943185,-0.067958,-0.325244,0.943185,-0.067958,-0.325244,0.943185,-0.067958, + 0.415264,0.877383,0.240322,0.415264,0.877383,0.240322,0.415264,0.877383,0.240322,0.415264,0.877383,0.240322, + -0.862951,0.463375,-0.201493,-0.862951,0.463375,-0.201493,-0.862951,0.463375,-0.201493,-0.862951,0.463375,-0.201493, + 0.861815,-0.463652,0.205671,0.861815,-0.463652,0.205671,0.861815,-0.463652,0.205671,0.861815,-0.463652,0.205671, + 0.405249,0.910856,0.078196,0.405249,0.910856,0.078196,0.405249,0.910856,0.078196,0.405249,0.910856,0.078196, + -0.446869,-0.889586,-0.094579,-0.446869,-0.889586,-0.094579,-0.446869,-0.889586,-0.094579,-0.446869,-0.889586,-0.094579, + -0.201524,0.002074,0.979481,-0.201524,0.002074,0.979481,-0.201524,0.002074,0.979481,-0.201524,0.002074,0.979481, + 0.229828,-0.011981,-0.973158,0.229828,-0.011981,-0.973158,0.229828,-0.011981,-0.973158,0.229828,-0.011981,-0.973158, + -0.806144,0.454015,-0.379478,-0.806144,0.454015,-0.379478,-0.806144,0.454015,-0.379478,-0.806144,0.454015,-0.379478, + 0.931468,-0.218526,0.290885,0.931468,-0.218526,0.290885,0.931468,-0.218526,0.290885,0.931468,-0.218526,0.290885, + 0.446807,0.884687,0.133009,0.446807,0.884687,0.133009,0.446807,0.884687,0.133009,0.446807,0.884687,0.133009, + -0.446807,-0.884689,-0.133003,-0.446807,-0.884689,-0.133003,-0.446807,-0.884689,-0.133003,-0.446807,-0.884689,-0.133003, + 0.240875,0.023658,-0.970268,0.240875,0.023658,-0.970268,0.240875,0.023658,-0.970268,0.240875,0.023658,-0.970268, + -0.273112,-0.006077,0.961963,-0.273112,-0.006077,0.961963,-0.273112,-0.006077,0.961963,-0.273112,-0.006077,0.961963, + 0.862699,-0.465746,0.197056,0.862699,-0.465746,0.197056,0.862699,-0.465746,0.197056,0.862699,-0.465746,0.197056, + -0.834920,0.466077,-0.292712,-0.834920,0.466077,-0.292712,-0.834920,0.466077,-0.292712,-0.834920,0.466077,-0.292712, + 0.877061,-0.457873,0.145313,0.877061,-0.457873,0.145313,0.877061,-0.457873,0.145313,0.877061,-0.457873,0.145313, + 0.418397,0.878738,0.229703,0.418397,0.878738,0.229703,0.418397,0.878738,0.229703,0.418397,0.878738,0.229703, + -0.431163,-0.883283,-0.184144,-0.431163,-0.883283,-0.184144,-0.431163,-0.883283,-0.184144,-0.431163,-0.883283,-0.184144, + -0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270564,-0.098404,0.957659, + -0.270564,-0.098404,0.957659,-0.270564,-0.098404,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659, + -0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098404,0.957659,-0.270566,-0.098404,0.957659, + -0.270566,-0.098404,0.957659,-0.270565,-0.098403,0.957660,-0.270565,-0.098403,0.957660,-0.270565,-0.098403,0.957660, + -0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659, + -0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659,-0.270566,-0.098403,0.957659, + 0.418353,0.878140,0.232058,0.418353,0.878140,0.232058,0.418353,0.878140,0.232058,0.418353,0.878140,0.232058, + -0.841026,0.469107,-0.269469,-0.841026,0.469107,-0.269469,-0.841026,0.469107,-0.269469,0.443474,0.885869,0.136262, + 0.443474,0.885869,0.136262,0.443474,0.885869,0.136262,-0.401985,-0.870781,-0.283103,-0.401985,-0.870781,-0.283103, + -0.401985,-0.870781,-0.283103,0.882513,-0.454020,0.122628,0.882513,-0.454020,0.122628,0.882513,-0.454020,0.122628, + -0.841026,0.469108,-0.269468,-0.841026,0.469108,-0.269468,-0.841026,0.469108,-0.269468,-0.841026,0.469110,-0.269465, + -0.841026,0.469110,-0.269465,-0.841026,0.469110,-0.269465,-0.841026,0.469110,-0.269465,0.882514,-0.454017,0.122628, + 0.882514,-0.454017,0.122628,0.882514,-0.454017,0.122628,0.882513,-0.454021,0.122622,0.882513,-0.454021,0.122622, + 0.882513,-0.454021,0.122622,0.882513,-0.454021,0.122622,0.443473,0.885869,0.136265,0.443473,0.885869,0.136265, + 0.443473,0.885869,0.136265,0.443473,0.885869,0.136265,0.443473,0.885869,0.136265,0.443473,0.885869,0.136265, + 0.443473,0.885869,0.136265,-0.401985,-0.870781,-0.283104,-0.401985,-0.870781,-0.283104,-0.401985,-0.870781,-0.283104, + -0.880789,0.454509,-0.132788,-0.880789,0.454509,-0.132788,-0.880789,0.454509,-0.132788,-0.880789,0.454509,-0.132788, + -0.295672,-0.151416,0.943213,-0.295672,-0.151416,0.943213,-0.295672,-0.151416,0.943213,-0.295672,-0.151416,0.943213, + -0.244469,-0.045030,0.968611,-0.244469,-0.045030,0.968611,-0.244469,-0.045030,0.968611,-0.244469,-0.045030,0.968611, + 0.848692,-0.465668,0.250751,0.848692,-0.465668,0.250751,0.848692,-0.465668,0.250751,0.848692,-0.465668,0.250751, + -0.623409,0.122874,0.772181,-0.623409,0.122874,0.772181,-0.623409,0.122874,0.772181,-0.623409,0.122874,0.772181, + 0.834239,-0.467226,0.292823,0.834239,-0.467226,0.292823,0.834239,-0.467226,0.292823,0.834239,-0.467226,0.292823, + 0.446345,0.886177,0.124366,0.446345,0.886177,0.124366,0.446345,0.886177,0.124366,0.446345,0.886177,0.124366, + 0.702305,-0.711843,-0.006869,0.702305,-0.711843,-0.006869,0.702305,-0.711843,-0.006869,0.702305,-0.711843,-0.006869, + -0.701684,-0.652434,-0.286303,-0.701684,-0.652434,-0.286303,-0.701684,-0.652434,-0.286303,-0.701684,-0.652434,-0.286303, + 0.719607,0.656877,0.225119,0.719607,0.656877,0.225119,0.719607,0.656877,0.225119,0.719607,0.656877,0.225119, + 0.744492,0.658088,0.112480,0.744492,0.658088,0.112480,0.744492,0.658088,0.112480,0.744492,0.658088,0.112480, + -0.624889,0.723222,-0.294049,-0.624889,0.723222,-0.294049,-0.624889,0.723222,-0.294049,-0.624889,0.723222,-0.294049, + 0.648530,-0.760471,-0.033054,0.648530,-0.760471,-0.033054,0.648530,-0.760471,-0.033054,0.648530,-0.760471,-0.033054, + 0.656773,-0.724039,0.210754,0.656773,-0.724039,0.210754,0.656773,-0.724039,0.210754,0.656773,-0.724039,0.210754, + -0.574104,0.774791,-0.264770,-0.574104,0.774791,-0.264770,-0.574104,0.774791,-0.264770,-0.574104,0.774791,-0.264770, + -0.699440,-0.651756,-0.293255,-0.699440,-0.651756,-0.293255,-0.699440,-0.651756,-0.293255,-0.699440,-0.651756,-0.293255, + 0.595633,-0.781015,0.187714,0.595633,-0.781015,0.187714,0.595633,-0.781015,0.187714,0.595633,-0.781015,0.187714, + 0.742707,0.658331,0.122420,0.742707,0.658331,0.122420,0.742707,0.658331,0.122420,0.742707,0.658331,0.122420, + -0.732382,-0.658544,-0.173020,-0.732382,-0.658544,-0.173020,-0.732382,-0.658544,-0.173020,-0.732382,-0.658544,-0.173020, + -0.694376,0.717131,-0.059704,-0.694376,0.717131,-0.059704,-0.694376,0.717131,-0.059704,-0.694376,0.717131,-0.059704, + -0.265836,-0.036296,0.963335,-0.265836,-0.036296,0.963335,-0.265836,-0.036296,0.963335,-0.265836,-0.036296,0.963335, + -0.265837,-0.036292,0.963335,-0.265837,-0.036292,0.963335,-0.265837,-0.036292,0.963335,-0.265837,-0.036292,0.963335, + -0.265836,-0.036295,0.963335,-0.265836,-0.036295,0.963335,-0.265836,-0.036295,0.963335,-0.265836,-0.036295,0.963335, + -0.265834,-0.036290,0.963336,-0.265834,-0.036290,0.963336,-0.265834,-0.036290,0.963336,-0.265834,-0.036290,0.963336, + -0.265835,-0.036292,0.963335,-0.265835,-0.036292,0.963335,-0.265835,-0.036292,0.963335,-0.265835,-0.036292,0.963335, + -0.265836,-0.036294,0.963335,-0.265836,-0.036294,0.963335,-0.265836,-0.036294,0.963335,-0.265836,-0.036294,0.963335, + -0.265831,-0.036292,0.963336,-0.265831,-0.036292,0.963336,-0.265831,-0.036292,0.963336,-0.265831,-0.036292,0.963336, + -0.265837,-0.036293,0.963335,-0.265837,-0.036293,0.963335,-0.265837,-0.036293,0.963335,-0.265837,-0.036293,0.963335, + -0.632779,0.773415,-0.037687,-0.632779,0.773415,-0.037687,-0.632779,0.773415,-0.037687,-0.632779,0.773415,-0.037687, + 0.741447,0.659509,0.123709,0.741447,0.659509,0.123709,0.741447,0.659509,0.123709,0.741447,0.659509,0.123709, + -0.660998,0.748123,-0.058247,-0.660998,0.748123,-0.058247,-0.660998,0.748123,-0.058247,-0.660998,0.748123,-0.058247, + 0.716888,0.655381,0.237796,0.716888,0.655381,0.237796,0.716888,0.655381,0.237796,0.716888,0.655381,0.237796, + -0.188799,-0.087257,0.978132,-0.188799,-0.087257,0.978132,-0.188799,-0.087257,0.978132,-0.188799,-0.087257,0.978132, + -0.734966,-0.659455,-0.157936,-0.734966,-0.659455,-0.157936,-0.734966,-0.659455,-0.157936,-0.734966,-0.659455,-0.157936, + 0.632151,-0.754434,0.176678,0.632151,-0.754434,0.176678,0.632151,-0.754434,0.176678,0.632151,-0.754434,0.176678, + -0.734524,-0.657862,-0.166410,-0.734524,-0.657862,-0.166410,-0.734524,-0.657862,-0.166410,-0.734524,-0.657862,-0.166410, + -0.267130,0.003518,0.963654,-0.267130,0.003518,0.963654,-0.267130,0.003518,0.963654,-0.267130,0.003518,0.963654, + 0.716017,0.657092,0.235689,0.716017,0.657092,0.235689,0.716017,0.657092,0.235689,0.716017,0.657092,0.235689, + 0.699962,0.650873,0.293969,0.699962,0.650873,0.293969,0.699962,0.650873,0.293969,0.699962,0.650873,0.293969, + 0.657180,-0.749842,0.076490,0.657180,-0.749842,0.076490,0.657180,-0.749842,0.076490,0.657180,-0.749842,0.076490, + 0.729150,0.658752,0.185436,0.729150,0.658752,0.185436,0.729150,0.658752,0.185436,0.729150,0.658752,0.185436, + 0.634127,-0.754096,0.170946,0.634127,-0.754096,0.170946,0.634127,-0.754096,0.170946,0.634127,-0.754096,0.170946, + -0.979388,0.057211,-0.193714,-0.979388,0.057211,-0.193714,-0.979388,0.057211,-0.193714,-0.979388,0.057211,-0.193714, + -0.945439,0.063367,-0.319576,-0.945439,0.063367,-0.319576,-0.945439,0.063367,-0.319576,-0.945439,0.063367,-0.319576, + -0.730652,-0.658960,-0.178660,-0.730652,-0.658960,-0.178660,-0.730652,-0.658960,-0.178660,-0.730652,-0.658960,-0.178660, + -0.633459,0.755940,-0.165180,-0.633459,0.755940,-0.165180,-0.633459,0.755940,-0.165180,-0.633459,0.755940,-0.165180, + -0.706777,-0.653191,-0.271677,-0.706777,-0.653191,-0.271677,-0.706777,-0.653191,-0.271677,-0.706777,-0.653191,-0.271677, + -0.664397,0.745422,-0.054056,-0.664397,0.745422,-0.054056,-0.664397,0.745422,-0.054056,-0.664397,0.745422,-0.054056, + 0.951100,-0.064400,0.302094,0.951100,-0.064400,0.302094,0.951100,-0.064400,0.302094,0.951100,-0.064400,0.302094, + 0.983163,-0.053430,0.174743,0.983163,-0.053430,0.174743,0.983163,-0.053430,0.174743,0.983163,-0.053430,0.174743, + -0.668855,0.742673,-0.032697,-0.668855,0.742673,-0.032697,-0.668855,0.742673,-0.032697,-0.668855,0.742673,-0.032697, + 0.729735,0.658827,0.182847,0.729735,0.658827,0.182847,0.729735,0.658827,0.182847,0.729735,0.658827,0.182847, + -0.631731,0.754287,-0.178793,-0.631731,0.754287,-0.178793,-0.631731,0.754287,-0.178793,-0.631731,0.754287,-0.178793, + 0.701521,0.651417,0.289007,0.701521,0.651417,0.289007,0.701521,0.651417,0.289007,0.701521,0.651417,0.289007, + -0.060586,-0.998124,-0.008837,-0.060586,-0.998124,-0.008837,-0.060586,-0.998124,-0.008837,-0.060586,-0.998124,-0.008837, + -0.018166,-0.985350,-0.169575,-0.018166,-0.985350,-0.169575,-0.018166,-0.985350,-0.169575,-0.018166,-0.985350,-0.169575, + 0.282022,0.025176,-0.959078,0.282022,0.025176,-0.959078,0.282022,0.025176,-0.959078,0.282022,0.025176,-0.959078, + 0.621728,-0.775304,0.111164,0.621728,-0.775304,0.111164,0.621728,-0.775304,0.111164,0.621728,-0.775304,0.111164, + -0.447564,0.225295,0.865407,-0.447564,0.225295,0.865407,-0.447564,0.225295,0.865407,-0.447564,0.225295,0.865407, + 0.262183,0.029764,-0.964559,0.262183,0.029764,-0.964559,0.262183,0.029764,-0.964559,0.262183,0.029764,-0.964559, + 0.666576,-0.734748,0.125785,0.666576,-0.734748,0.125785,0.666576,-0.734748,0.125785,0.666576,-0.734748,0.125785, + -0.477446,0.214396,0.852103,-0.477446,0.214396,0.852103,-0.477446,0.214396,0.852103,-0.477446,0.214396,0.852103, + 0.225033,-0.015591,-0.974226,0.225033,-0.015591,-0.974226,0.225033,-0.015591,-0.974226,0.225033,-0.015591,-0.974226, + -0.621474,0.775358,-0.112208,-0.621474,0.775358,-0.112208,-0.621474,0.775358,-0.112208,-0.621474,0.775358,-0.112208, + 0.016618,-0.343911,0.938855,0.016618,-0.343911,0.938855,0.016618,-0.343911,0.938855,0.016618,-0.343911,0.938855, + 0.236959,0.053430,-0.970049,0.236959,0.053430,-0.970049,0.236959,0.053430,-0.970049,0.236959,0.053430,-0.970049, + -0.666757,0.734705,-0.125074,-0.666757,0.734705,-0.125074,-0.666757,0.734705,-0.125074,-0.666757,0.734705,-0.125074, + 0.043369,-0.267023,0.962714,0.043369,-0.267023,0.962714,0.043369,-0.267023,0.962714,0.043369,-0.267023,0.962714, + -0.496679,-0.281949,0.820863,-0.496679,-0.281949,0.820863,-0.496679,-0.281949,0.820863,-0.496679,-0.281949,0.820863, + 0.198118,0.008259,-0.980143,0.198118,0.008259,-0.980143,0.198118,0.008259,-0.980143,0.198118,0.008259,-0.980143, + 0.740332,0.633901,0.223784,0.740332,0.633901,0.223784,0.740332,0.633901,0.223784,0.740332,0.633901,0.223784, + -0.548184,-0.371848,0.749148,-0.548184,-0.371848,0.749148,-0.548184,-0.371848,0.749148,-0.548184,-0.371848,0.749148, + 0.255749,0.056324,-0.965101,0.255749,0.056324,-0.965101,0.255749,0.056324,-0.965101,0.255749,0.056324,-0.965101, + 0.704115,0.671138,0.231939,0.704115,0.671138,0.231939,0.704115,0.671138,0.231939,0.704115,0.671138,0.231939, + -0.520023,-0.376260,0.766814,-0.520023,-0.376260,0.766814,-0.520023,-0.376260,0.766814,-0.520023,-0.376260,0.766814, + 0.241225,0.105317,-0.964738,0.241225,0.105317,-0.964738,0.241225,0.105317,-0.964738,0.241225,0.105317,-0.964738, + 0.712657,0.665931,0.220580,0.712657,0.665931,0.220580,0.712657,0.665931,0.220580,0.712657,0.665931,0.220580, + 0.198533,0.081396,-0.976708,0.198533,0.081396,-0.976708,0.198533,0.081396,-0.976708,0.198533,0.081396,-0.976708, + -0.644446,0.755383,-0.118684,-0.644446,0.755383,-0.118684,-0.644446,0.755383,-0.118684,-0.644446,0.755383,-0.118684, + 0.078656,-0.375383,0.923526,0.078656,-0.375383,0.923526,0.078656,-0.375383,0.923526,0.078656,-0.375383,0.923526, + -0.562831,-0.369742,0.739265,-0.562831,-0.369742,0.739265,-0.562831,-0.369742,0.739265,-0.562831,-0.369742,0.739265, + 0.256097,0.055622,-0.965049,0.256097,0.055622,-0.965049,0.256097,0.055622,-0.965049,0.256097,0.055622,-0.965049, + 0.730533,0.640498,0.236821,0.730533,0.640498,0.236821,0.730533,0.640498,0.236821,0.730533,0.640498,0.236821, + 0.731601,0.659082,0.174273,0.731601,0.659082,0.174273,0.731601,0.659082,0.174273,0.731601,0.659082,0.174273, + -0.410809,0.671677,-0.616511,-0.410809,0.671677,-0.616511,-0.410809,0.671677,-0.616511,-0.410809,0.671677,-0.616511, + 0.413441,-0.673286,0.612986,0.413441,-0.673286,0.612986,0.413441,-0.673286,0.612986,0.413441,-0.673286,0.612986, + 0.728593,0.658657,0.187945,0.728593,0.658657,0.187945,0.728593,0.658657,0.187945,0.728593,0.658657,0.187945, + -0.687126,0.605216,0.401959,-0.687126,0.605216,0.401959,-0.687126,0.605216,0.401959,-0.687126,0.605216,0.401959, + 0.686588,-0.603165,-0.405942,0.686588,-0.603165,-0.405942,0.686588,-0.603165,-0.405942,0.686588,-0.603165,-0.405942, + -0.741210,-0.659971,-0.122663,-0.741210,-0.659971,-0.122663,-0.741210,-0.659971,-0.122663,-0.741210,-0.659971,-0.122663, + 0.741219,0.659961,0.122659,0.741219,0.659961,0.122659,0.741219,0.659961,0.122659,0.741219,0.659961,0.122659, + -0.181125,0.021414,0.983227,-0.181125,0.021414,0.983227,-0.181125,0.021414,0.983227,-0.181125,0.021414,0.983227, + 0.156656,0.006860,-0.987629,0.156656,0.006860,-0.987629,0.156656,0.006860,-0.987629,0.156656,0.006860,-0.987629, + 0.645520,-0.750627,0.140932,0.645520,-0.750627,0.140932,0.645520,-0.750627,0.140932,0.645520,-0.750627,0.140932, + -0.660714,0.749434,-0.042491,-0.660714,0.749434,-0.042491,-0.660714,0.749434,-0.042491,-0.660714,0.749434,-0.042491, + -0.741224,-0.664417,-0.095589,-0.741224,-0.664417,-0.095589,-0.741224,-0.664417,-0.095589,-0.741224,-0.664417,-0.095589, + 0.741226,0.664415,0.095585,0.741226,0.664415,0.095585,0.741226,0.664415,0.095585,0.741226,0.664415,0.095585, + 0.206061,-0.088903,-0.974492,0.206061,-0.088903,-0.974492,0.206061,-0.088903,-0.974492,0.206061,-0.088903,-0.974492, + -0.181868,0.060901,0.981435,-0.181868,0.060901,0.981435,-0.181868,0.060901,0.981435,-0.181868,0.060901,0.981435, + -0.637543,0.741751,-0.208193,-0.637543,0.741751,-0.208193,-0.637543,0.741751,-0.208193,-0.637543,0.741751,-0.208193, + 0.655191,-0.747362,0.110336,0.655191,-0.747362,0.110336,0.655191,-0.747362,0.110336,0.655191,-0.747362,0.110336, + -0.747971,-0.656873,-0.095164,-0.747971,-0.656873,-0.095164,-0.747971,-0.656873,-0.095164,-0.747971,-0.656873,-0.095164, + 0.747967,0.656879,0.095161,0.747967,0.656879,0.095161,0.747967,0.656879,0.095161,0.747967,0.656879,0.095161, + 0.146436,-0.022753,-0.988958,0.146436,-0.022753,-0.988958,0.146436,-0.022753,-0.988958,0.146436,-0.022753,-0.988958, + -0.122009,-0.005676,0.992513,-0.122009,-0.005676,0.992513,-0.122009,-0.005676,0.992513,-0.122009,-0.005676,0.992513, + -0.646308,0.753790,-0.118689,-0.646308,0.753790,-0.118689,-0.646308,0.753790,-0.118689,-0.646308,0.753790,-0.118689, + 0.658024,-0.752737,0.019786,0.658024,-0.752737,0.019786,0.658024,-0.752737,0.019786,0.658024,-0.752737,0.019786, + 0.669989,-0.741762,0.030065,0.669989,-0.741762,0.030065,0.669989,-0.741762,0.030065,0.669989,-0.741762,0.030065, + -0.669993,0.741759,-0.030059,-0.669993,0.741759,-0.030059,-0.669993,0.741759,-0.030059,-0.669993,0.741759,-0.030059, + -0.229498,-0.118161,0.966110,-0.229498,-0.118161,0.966110,-0.229498,-0.118161,0.966110,-0.229498,-0.118161,0.966110, + 0.202437,0.093394,-0.974832,0.202437,0.093394,-0.974832,0.202437,0.093394,-0.974832,0.202437,0.093394,-0.974832, + 0.711894,0.654385,0.254925,0.711894,0.654385,0.254925,0.711894,0.654385,0.254925,0.711894,0.654385,0.254925, + -0.731600,-0.663218,-0.157809,-0.731600,-0.663218,-0.157809,-0.731600,-0.663218,-0.157809,-0.731600,-0.663218,-0.157809, + 0.669026,-0.740370,0.065237,0.669026,-0.740370,0.065237,0.669026,-0.740370,0.065237,0.669026,-0.740370,0.065237, + -0.669026,0.740370,-0.065242,-0.669026,0.740370,-0.065242,-0.669026,0.740370,-0.065242,-0.669026,0.740370,-0.065242, + 0.290304,0.147915,-0.945434,0.290304,0.147915,-0.945434,0.290304,0.147915,-0.945434,0.290304,0.147915,-0.945434, + -0.264075,-0.123299,0.956589,-0.264075,-0.123299,0.956589,-0.264075,-0.123299,0.956589,-0.264075,-0.123299,0.956589, + -0.690217,-0.649255,-0.319481,-0.690217,-0.649255,-0.319481,-0.690217,-0.649255,-0.319481,-0.690217,-0.649255,-0.319481, + 0.716010,0.661157,0.224058,0.716010,0.661157,0.224058,0.716010,0.661157,0.224058,0.716010,0.661157,0.224058, + 0.659387,-0.749051,0.064282,0.659387,-0.749051,0.064282,0.659387,-0.749051,0.064282,0.659387,-0.749051,0.064282, + -0.659378,0.749058,-0.064287,-0.659378,0.749058,-0.064287,-0.659378,0.749058,-0.064287,-0.659378,0.749058,-0.064287, + 0.227613,0.087777,-0.969787,0.227613,0.087777,-0.969787,0.227613,0.087777,-0.969787,0.227613,0.087777,-0.969787, + -0.200297,-0.063034,0.977705,-0.200297,-0.063034,0.977705,-0.200297,-0.063034,0.977705,-0.200297,-0.063034,0.977705, + -0.719030,-0.654518,-0.233671,-0.719030,-0.654518,-0.233671,-0.719030,-0.654518,-0.233671,-0.719030,-0.654518,-0.233671, + 0.738511,0.660339,0.136215,0.738511,0.660339,0.136215,0.738511,0.660339,0.136215,0.738511,0.660339,0.136215, + 0.660475,-0.748645,0.057476,0.660475,-0.748645,0.057476,0.660475,-0.748645,0.057476,0.660475,-0.748645,0.057476, + 0.741429,0.659507,0.123825,0.741429,0.659507,0.123825,0.741429,0.659507,0.123825,0.741429,0.659507,0.123825, + -0.988675,0.055880,-0.139283,-0.988675,0.055880,-0.139283,-0.988675,0.055880,-0.139283,-0.988675,0.055880,-0.139283, + -0.717768,-0.656558,-0.231819,-0.717768,-0.656558,-0.231819,-0.717768,-0.656558,-0.231819,-0.717768,-0.656558,-0.231819, + 0.655668,-0.749427,0.091967,0.655668,-0.749427,0.091967,0.655668,-0.749427,0.091967,0.655668,-0.749427,0.091967, + 0.040520,0.995416,0.086634,0.040520,0.995416,0.086634,0.040520,0.995416,0.086634,0.040520,0.995416,0.086634, + -0.624220,0.757662,-0.190518,-0.624220,0.757662,-0.190518,-0.624220,0.757662,-0.190518,-0.624220,0.757662,-0.190518, + -0.712222,-0.654866,-0.252767,-0.712222,-0.654866,-0.252767,-0.712222,-0.654866,-0.252767,-0.712222,-0.654866,-0.252767, + 0.950557,-0.064665,0.303744,0.950557,-0.064665,0.303744,0.950557,-0.064665,0.303744,0.950557,-0.064665,0.303744, + 0.741046,0.659530,0.125977,0.741046,0.659530,0.125977,0.741046,0.659530,0.125977,0.741046,0.659530,0.125977, + -0.626568,0.754515,-0.195240,-0.626568,0.754515,-0.195240,-0.626568,0.754515,-0.195240,-0.626568,0.754515,-0.195240, + -0.073166,-0.996513,0.040096,-0.073166,-0.996513,0.040096,-0.073166,-0.996513,0.040096,-0.073166,-0.996513,0.040096, + 0.621729,-0.775305,0.111154,0.621729,-0.775305,0.111154,0.621729,-0.775305,0.111154,0.621729,-0.775305,0.111154, + -0.678826,-0.559041,0.476097,-0.678826,-0.559041,0.476097,-0.678826,-0.559041,0.476097,-0.678826,-0.559041,0.476097, + 0.666581,-0.734744,0.125780,0.666581,-0.734744,0.125780,0.666581,-0.734744,0.125780,0.666581,-0.734744,0.125780, + 0.467532,0.508157,0.723319,0.467532,0.508157,0.723319,0.467532,0.508157,0.723319,-0.621196,0.775433,-0.113219, + -0.621196,0.775433,-0.113219,-0.621196,0.775433,-0.113219,-0.621196,0.775433,-0.113219,-0.641990,0.517587,0.565643, + -0.641990,0.517587,0.565643,-0.641990,0.517587,0.565643,-0.641990,0.517587,0.565643,0.490779,0.481022,0.726467, + 0.490779,0.481022,0.726467,0.490779,0.481022,0.726467,-0.666945,0.734654,-0.124371,-0.666945,0.734654,-0.124371, + -0.666945,0.734654,-0.124371,-0.666945,0.734654,-0.124371,-0.656170,0.588174,0.472750,-0.656170,0.588174,0.472750, + -0.656170,0.588174,0.472750,0.379381,-0.686998,0.619761,0.379381,-0.686998,0.619761,0.379381,-0.686998,0.619761, + 0.411429,-0.659080,0.629555,0.411429,-0.659080,0.629555,0.411429,-0.659080,0.629555,0.743776,0.634649,0.209805, + 0.743776,0.634649,0.209805,0.743776,0.634649,0.209805,0.743776,0.634649,0.209805,-0.721548,-0.508529,0.469859, + -0.721548,-0.508529,0.469859,-0.721548,-0.508529,0.469859,-0.721548,-0.508529,0.469859,0.577487,0.436167,-0.690121, + 0.577487,0.436167,-0.690121,0.577487,0.436167,-0.690121,-0.711986,-0.680144,-0.174586,-0.711986,-0.680144,-0.174586, + -0.711986,-0.680144,-0.174586,-0.711986,-0.680144,-0.174586,-0.747405,-0.630106,-0.210600,-0.747405,-0.630106,-0.210600, + -0.747405,-0.630106,-0.210600,-0.747405,-0.630106,-0.210600,0.704112,0.671141,0.231940,0.704112,0.671141,0.231940, + 0.704112,0.671141,0.231940,0.704112,0.671141,0.231940,0.301663,-0.618003,0.725997,0.301663,-0.618003,0.725997, + 0.301663,-0.618003,0.725997,0.301663,-0.618003,0.725997,0.331062,-0.592001,0.734801,0.331062,-0.592001,0.734801, + 0.331062,-0.592001,0.734801,0.331062,-0.592001,0.734801,-0.675185,0.570930,0.467080,-0.675185,0.570930,0.467080, + -0.675185,0.570930,0.467080,-0.625151,0.532641,0.570508,-0.625151,0.532641,0.570508,-0.625151,0.532641,0.570508, + -0.625151,0.532641,0.570508,0.371071,0.470644,0.800500,0.371071,0.470644,0.800500,0.371071,0.470644,0.800500, + 0.371071,0.470644,0.800500,0.392411,0.446817,0.803970,0.392411,0.446817,0.803970,0.392411,0.446817,0.803970, + 0.392411,0.446817,0.803970,-0.691434,-0.628961,0.355425,-0.691434,-0.628961,0.355425,-0.691434,-0.628961,0.355425, + -0.739884,-0.575047,0.349132,-0.739884,-0.575047,0.349132,-0.739884,-0.575047,0.349132,0.613851,0.394136,-0.683991, + 0.613851,0.394136,-0.683991,0.613851,0.394136,-0.683991,0.545366,-0.364038,-0.755018,0.545366,-0.364038,-0.755018, + 0.545366,-0.364038,-0.755018,-0.118552,0.457614,-0.881212,-0.118552,0.457614,-0.881212,-0.118552,0.457614,-0.881212, + -0.176005,-0.318618,-0.931399,-0.176005,-0.318618,-0.931399,-0.176005,-0.318618,-0.931399,0.541774,-0.367227,-0.756059, + 0.541774,-0.367227,-0.756059,0.541774,-0.367227,-0.756059,-0.187072,-0.305803,-0.933535,-0.187072,-0.305803,-0.933535, + -0.187072,-0.305803,-0.933535,-0.136458,0.441529,-0.886810,-0.136458,0.441529,-0.886810,-0.136458,0.441529,-0.886810, + 0.668649,-0.739691,0.075932,0.668649,-0.739691,0.075932,0.668649,-0.739691,0.075932,0.668649,-0.739691,0.075932, + -0.527801,-0.327891,0.783527,-0.527801,-0.327891,0.783527,-0.527801,-0.327891,0.783527,-0.527801,-0.327891,0.783527, + 0.652014,-0.752083,0.096167,0.652014,-0.752083,0.096167,0.652014,-0.752083,0.096167,0.652014,-0.752083,0.096167, + 0.036608,-0.350269,-0.935934,0.036608,-0.350269,-0.935934,0.036608,-0.350269,-0.935934,0.036608,-0.350269,-0.935934, + 0.749327,-0.612715,-0.251175,0.749327,-0.612715,-0.251175,0.749327,-0.612715,-0.251175,0.749327,-0.612715,-0.251175, + -0.647122,0.744516,-0.164099,-0.647122,0.744516,-0.164099,-0.647122,0.744516,-0.164099,-0.647122,0.744516,-0.164099, + 0.049706,0.252837,0.966231,0.049706,0.252837,0.966231,0.049706,0.252837,0.966231,0.049706,0.252837,0.966231, + 0.487441,-0.283801,-0.825747,0.487441,-0.283801,-0.825747,0.487441,-0.283801,-0.825747,0.487441,-0.283801,-0.825747, + 0.723096,0.656038,0.216209,0.723096,0.656038,0.216209,0.723096,0.656038,0.216209,0.723096,0.656038,0.216209, + -0.549126,0.664594,-0.506730,-0.549126,0.664594,-0.506730,-0.549126,0.664594,-0.506730,-0.549126,0.664594,-0.506730, + -0.511658,-0.628914,-0.585383,-0.511658,-0.628914,-0.585383,-0.511658,-0.628914,-0.585383,-0.511658,-0.628914,-0.585383, + -0.639737,0.756181,-0.137575,-0.639737,0.756181,-0.137575,-0.639737,0.756181,-0.137575,-0.639737,0.756181,-0.137575, + 0.547529,0.302799,-0.780080,0.547529,0.302799,-0.780080,0.547529,0.302799,-0.780080,0.547529,0.302799,-0.780080, + 0.711857,0.680806,-0.172518,0.711857,0.680806,-0.172518,0.711857,0.680806,-0.172518,0.711857,0.680806,-0.172518, + 0.079425,-0.351835,0.932686,0.079425,-0.351835,0.932686,0.079425,-0.351835,0.932686,0.079425,-0.351835,0.932686, + 0.714103,0.673585,0.190631,0.714103,0.673585,0.190631,0.714103,0.673585,0.190631,0.714103,0.673585,0.190631, + -0.174332,0.259339,-0.949922,-0.174332,0.259339,-0.949922,-0.174332,0.259339,-0.949922,-0.174332,0.259339,-0.949922, + -0.709073,-0.656694,-0.256844,-0.709073,-0.656694,-0.256844,-0.709073,-0.656694,-0.256844,-0.709073,-0.656694,-0.256844, + -0.510869,0.262964,0.818451,-0.510869,0.262964,0.818451,-0.510869,0.262964,0.818451,-0.510869,0.262964,0.818451, + -0.692919,-0.664895,-0.278886,-0.692919,-0.664895,-0.278886,-0.692919,-0.664895,-0.278886,-0.692919,-0.664895,-0.278886, + 0.977217,-0.033519,0.209579,0.977217,-0.033519,0.209579,0.977217,-0.033519,0.209579,0.977217,-0.033519,0.209579, + -0.257423,-0.441797,0.859388,-0.257423,-0.441797,0.859388,-0.257423,-0.441797,0.859388,-0.257423,-0.441797,0.859388, + 0.972292,-0.059621,0.226039,0.972292,-0.059621,0.226039,0.972292,-0.059621,0.226039,0.972292,-0.059621,0.226039, + 0.373721,-0.379556,-0.846327,0.373721,-0.379556,-0.846327,0.373721,-0.379556,-0.846327,0.373721,-0.379556,-0.846327, + 0.988877,0.040254,-0.143188,0.988877,0.040254,-0.143188,0.988877,0.040254,-0.143188,0.988877,0.040254,-0.143188, + -0.955604,0.043414,-0.291439,-0.955604,0.043414,-0.291439,-0.955604,0.043414,-0.291439,-0.955604,0.043414,-0.291439, + -0.248934,0.376167,0.892485,-0.248934,0.376167,0.892485,-0.248934,0.376167,0.892485,-0.248934,0.376167,0.892485, + 0.604221,0.002369,-0.796813,0.604221,0.002369,-0.796813,0.604221,0.002369,-0.796813,0.604221,0.002369,-0.796813, + 0.037327,0.997831,0.054215,0.037327,0.997831,0.054215,0.037327,0.997831,0.054215,0.037327,0.997831,0.054215, + -0.788668,0.011644,-0.614709,-0.788668,0.011644,-0.614709,-0.788668,0.011644,-0.614709,-0.788668,0.011644,-0.614709, + 0.123885,-0.891625,-0.435497,0.123885,-0.891625,-0.435497,0.123885,-0.891625,-0.435497,0.123885,-0.891625,-0.435497, + -0.960072,0.055999,-0.274091,-0.960072,0.055999,-0.274091,-0.960072,0.055999,-0.274091,-0.960072,0.055999,-0.274091, + 0.288095,0.437990,-0.851567,0.288095,0.437990,-0.851567,0.288095,0.437990,-0.851567,0.288095,0.437990,-0.851567, + 0.076326,0.943514,-0.322422,0.076326,0.943514,-0.322422,0.076326,0.943514,-0.322422,0.076326,0.943514,-0.322422, + 0.151634,-0.044187,0.987448,0.151634,-0.044187,0.987448,0.151634,-0.044187,0.987448,0.151634,-0.044187,0.987448, + 0.099519,0.994218,0.040317,0.099519,0.994218,0.040317,0.099519,0.994218,0.040317,0.099519,0.994218,0.040317, + -0.162707,-0.091641,-0.982409,-0.162707,-0.091641,-0.982409,-0.162707,-0.091641,-0.982409,-0.162707,-0.091641,-0.982409, + -0.097891,-0.989606,-0.105345,-0.097891,-0.989606,-0.105345,-0.097891,-0.989606,-0.105345,-0.097891,-0.989606,-0.105345, + -0.607182,-0.034001,0.793835,-0.607182,-0.034001,0.793835,-0.607182,-0.034001,0.793835,-0.607182,-0.034001,0.793835, + -0.002636,-0.993326,-0.115307,-0.002636,-0.993326,-0.115307,-0.002636,-0.993326,-0.115307,-0.002636,-0.993326,-0.115307, + 0.692843,0.648209,0.315901,0.692843,0.648209,0.315901,0.692843,0.648209,0.315901,0.692843,0.648209,0.315901, + 0.694335,0.647051,0.314998,0.694335,0.647051,0.314998,0.694335,0.647051,0.314998,0.694335,0.647051,0.314998, + -0.647204,0.752054,-0.124669,-0.647204,0.752054,-0.124669,-0.647204,0.752054,-0.124669,-0.647204,0.752054,-0.124669, + -0.650597,0.751135,-0.111891,-0.650597,0.751135,-0.111891,-0.650597,0.751135,-0.111891,-0.650597,0.751135,-0.111891, + 0.646063,-0.752329,0.128859,0.646063,-0.752329,0.128859,0.646063,-0.752329,0.128859,0.646063,-0.752329,0.128859, + 0.649501,-0.751455,0.116037,0.649501,-0.751455,0.116037,0.649501,-0.751455,0.116037,0.649501,-0.751455,0.116037, + 0.861865,-0.467952,0.195471,0.861865,-0.467952,0.195471,0.861865,-0.467952,0.195471,0.861865,-0.467952,0.195471, + -0.634864,0.753428,-0.171153,-0.634864,0.753428,-0.171153,-0.634864,0.753428,-0.171153,-0.634864,0.753428,-0.171153, + 0.692650,0.648144,0.316457,0.692650,0.648144,0.316457,0.692650,0.648144,0.316457,0.692650,0.648144,0.316457, + 0.719567,0.656867,0.225275,0.719567,0.656867,0.225275,0.719567,0.656867,0.225275,0.719567,0.656867,0.225275, + -0.228380,-0.041944,0.972668,-0.228380,-0.041944,0.972668,-0.228380,-0.041944,0.972668,-0.228380,-0.041945,0.972668, + -0.228380,-0.041945,0.972668,-0.228380,-0.041945,0.972668,-0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668, + -0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668,-0.228378,-0.041943,0.972668,-0.228378,-0.041943,0.972668, + -0.228378,-0.041943,0.972668,-0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668, + -0.228381,-0.041943,0.972668,-0.228381,-0.041943,0.972668,-0.228381,-0.041943,0.972668,-0.228381,-0.041943,0.972668, + -0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668,-0.228380,-0.041946,0.972668, + -0.731509,-0.658486,-0.176891,-0.731509,-0.658486,-0.176891,-0.731509,-0.658486,-0.176891,-0.731509,-0.658486,-0.176891, + 0.664186,-0.746215,0.044954,0.664186,-0.746215,0.044954,0.664186,-0.746215,0.044954,-0.706428,-0.653079,-0.272851, + -0.706428,-0.653079,-0.272851,-0.706428,-0.653079,-0.272851,0.741442,0.659515,0.123710,0.741442,0.659515,0.123710, + 0.741442,0.659515,0.123710,-0.629163,0.752651,-0.194089,-0.629163,0.752651,-0.194089,-0.629163,0.752651,-0.194089, + 0.664184,-0.746216,0.044949,0.664184,-0.746216,0.044949,0.664184,-0.746216,0.044949,0.664181,-0.746219,0.044952, + 0.664181,-0.746219,0.044952,0.664181,-0.746219,0.044952,0.664181,-0.746219,0.044952,-0.629166,0.752647,-0.194095, + -0.629166,0.752647,-0.194095,-0.629166,0.752647,-0.194095,-0.629165,0.752649,-0.194092,-0.629165,0.752649,-0.194092, + -0.629165,0.752649,-0.194092,-0.629165,0.752649,-0.194092,-0.706429,-0.653078,-0.272849,-0.706429,-0.653078,-0.272849, + -0.706429,-0.653078,-0.272849,-0.706429,-0.653078,-0.272851,-0.706429,-0.653078,-0.272851,-0.706429,-0.653078,-0.272851, + -0.706429,-0.653078,-0.272851,0.741450,0.659505,0.123712,0.741450,0.659505,0.123712,0.741450,0.659505,0.123712, + 0.632686,-0.752133,0.184401,0.632686,-0.752133,0.184401,0.632686,-0.752133,0.184401,0.632686,-0.752133,0.184401, + -0.184115,-0.002122,0.982902,-0.184115,-0.002122,0.982902,-0.184115,-0.002122,0.982902,-0.184115,-0.002122,0.982902, + -0.271805,-0.081614,0.958885,-0.271805,-0.081614,0.958885,-0.271805,-0.081614,0.958885,-0.271805,-0.081614,0.958885, + -0.662117,0.746545,-0.065354,-0.662117,0.746545,-0.065354,-0.662117,0.746545,-0.065354,-0.662117,0.746545,-0.065354, + 0.311530,0.072294,-0.947482,0.311530,0.072294,-0.947482,0.311530,0.072294,-0.947482,0.311530,0.072294,-0.947482, + -0.670958,0.741167,-0.022064,-0.670958,0.741167,-0.022064,-0.670958,0.741167,-0.022064,-0.670958,0.741167,-0.022064, + 0.730574,0.658949,0.179017,0.730574,0.658949,0.179017,0.730574,0.658949,0.179017,0.730574,0.658949,0.179017, + 0.478123,0.836861,0.266575,0.478123,0.836861,0.266575,0.478123,0.836861,0.266575,0.478123,0.836861,0.266575, + 0.063032,0.116519,0.991186,0.063032,0.116519,0.991186,0.063032,0.116519,0.991186,0.063032,0.116519,0.991186, + -0.476579,0.195805,0.857049,-0.476579,0.195805,0.857049,-0.476579,0.195805,0.857049,-0.476579,0.195805,0.857049, + 0.839940,-0.526689,0.130764,0.839940,-0.526689,0.130764,0.839940,-0.526689,0.130764,0.839940,-0.526689,0.130764, + 0.523481,0.847193,0.090722,0.523481,0.847193,0.090722,0.523481,0.847193,0.090722,0.523481,0.847193,0.090722, + 0.475487,0.835643,0.274977,0.475487,0.835643,0.274977,0.475487,0.835643,0.274977,0.475487,0.835643,0.274977, + 0.516061,-0.852928,0.078702,0.516061,-0.852928,0.078702,0.516061,-0.852928,0.078702,0.516061,-0.852928,0.078702, + 0.297714,0.139482,-0.944411,0.297714,0.139482,-0.944411,0.297714,0.139482,-0.944411,0.297714,0.139482,-0.944411, + -0.606595,-0.780583,-0.150772,-0.606595,-0.780583,-0.150772,-0.606595,-0.780583,-0.150772,0.842021,-0.503059,0.194763, + 0.842021,-0.503059,0.194763,0.842021,-0.503059,0.194763,0.842021,-0.503059,0.194763,-0.940139,-0.025000,-0.339872, + -0.940139,-0.025000,-0.339872,-0.940139,-0.025000,-0.339872,-0.940139,-0.025000,-0.339872,-0.911176,0.332462,-0.243366, + -0.911176,0.332462,-0.243366,-0.911176,0.332462,-0.243366,-0.911176,0.332462,-0.243366,0.811707,-0.533836,0.236961, + 0.811707,-0.533836,0.236961,0.811707,-0.533836,0.236961,0.811707,-0.533836,0.236961,-0.527234,-0.821188,-0.218345, + -0.527234,-0.821188,-0.218345,-0.527234,-0.821188,-0.218345,-0.527234,-0.821188,-0.218345,-0.265052,-0.066337,0.961949, + -0.265052,-0.066337,0.961949,-0.265052,-0.066337,0.961949,-0.265052,-0.066337,0.961949,-0.756003,0.639525,-0.139526, + -0.756003,0.639525,-0.139526,-0.756003,0.639525,-0.139526,-0.756003,0.639525,-0.139526,-0.251255,-0.059787,0.966073, + -0.251255,-0.059787,0.966073,-0.251255,-0.059787,0.966073,-0.251255,-0.059787,0.966073,-0.814965,0.522791,-0.250043, + -0.814965,0.522791,-0.250043,-0.814965,0.522791,-0.250043,-0.814965,0.522791,-0.250043,0.829309,-0.530446,0.175709, + 0.829309,-0.530446,0.175709,0.829309,-0.530446,0.175709,0.829309,-0.530446,0.175709,0.830040,-0.530227,0.172893, + 0.830040,-0.530227,0.172893,0.830040,-0.530227,0.172893,0.830040,-0.530227,0.172893,0.772668,-0.534421,0.342606, + 0.772668,-0.534421,0.342606,0.772668,-0.534421,0.342606,0.772668,-0.534421,0.342606,-0.117810,0.991974,-0.045913, + -0.117810,0.991974,-0.045913,-0.117810,0.991974,-0.045913,-0.117810,0.991974,-0.045913,-0.135145,0.990233,0.034259, + -0.135145,0.990233,0.034259,-0.135145,0.990233,0.034259,-0.135145,0.990233,0.034259,-0.849615,0.517654,-0.100942, + -0.849615,0.517654,-0.100942,-0.849615,0.517654,-0.100942,-0.849615,0.517654,-0.100942,-0.837151,0.527815,-0.143492, + -0.837151,0.527815,-0.143492,-0.837151,0.527815,-0.143492,-0.837151,0.527815,-0.143492,0.917664,0.340109,0.205471, + 0.917664,0.340109,0.205471,0.917664,0.340109,0.205471,0.917664,0.340109,0.205471,0.908581,0.334832,0.249735, + 0.908581,0.334832,0.249735,0.908581,0.334832,0.249735,0.908581,0.334832,0.249735,-0.835941,0.528287,-0.148712, + -0.835941,0.528287,-0.148712,-0.835941,0.528287,-0.148712,-0.835941,0.528287,-0.148712,0.511624,0.845475,0.153014, + 0.511624,0.845475,0.153014,0.511624,0.845475,0.153014,0.511624,0.845475,0.153014,-0.847163,0.522804,-0.094822, + -0.847163,0.522804,-0.094822,-0.847163,0.522804,-0.094822,-0.847163,0.522804,-0.094822,0.485526,0.840017,0.242148, + 0.485526,0.840017,0.242148,0.485526,0.840017,0.242148,0.485526,0.840017,0.242148,0.144910,-0.987356,-0.064256, + 0.144910,-0.987356,-0.064256,0.144910,-0.987356,-0.064256,0.144910,-0.987356,-0.064256,0.148474,-0.985218,-0.085441, + 0.148474,-0.985218,-0.085441,0.148474,-0.985218,-0.085441,0.148474,-0.985218,-0.085441,0.481245,0.838244,0.256419, + 0.481245,0.838244,0.256419,0.481245,0.838244,0.256419,0.481245,0.838244,0.256419,0.698817,-0.646846,0.305359, + 0.698817,-0.646846,0.305359,0.698817,-0.646846,0.305359,0.698817,-0.646846,0.305359,0.510780,0.846940,0.147635, + 0.510780,0.846940,0.147635,0.510780,0.846940,0.147635,0.510780,0.846940,0.147635,0.669516,-0.735699,0.102443, + 0.669516,-0.735699,0.102443,0.669516,-0.735699,0.102443,0.669516,-0.735699,0.102443,-0.888447,-0.329589,-0.319426, + -0.888447,-0.329589,-0.319426,-0.888447,-0.329589,-0.319426,-0.888447,-0.329589,-0.319426,-0.894014,-0.330972,-0.301987, + -0.894014,-0.330972,-0.301987,-0.894014,-0.330972,-0.301987,-0.894014,-0.330972,-0.301987,0.149220,0.010778,-0.988745, + 0.149220,0.010778,-0.988745,0.149220,0.010778,-0.988745,0.149220,0.010778,-0.988745,0.483074,0.855424,0.186784, + 0.483074,0.855424,0.186784,0.483074,0.855424,0.186784,0.483074,0.855424,0.186784,-0.367197,-0.409800,0.835003, + -0.367197,-0.409800,0.835003,-0.367197,-0.409800,0.835003,-0.367197,-0.409800,0.835003,0.323354,0.335299,0.884882, + 0.323354,0.335299,0.884882,0.323354,0.335299,0.884882,0.323354,0.335299,0.884882,-0.091928,0.601693,0.793420, + -0.091928,0.601693,0.793420,-0.091928,0.601693,0.793420,-0.091928,0.601693,0.793420,-0.327968,0.689391,0.645893, + -0.327968,0.689391,0.645893,-0.327968,0.689391,0.645893,-0.327968,0.689391,0.645893,-0.724464,-0.459338,0.513966, + -0.724464,-0.459338,0.513966,-0.724464,-0.459338,0.513966,-0.724464,-0.459338,0.513966,-0.320287,-0.720347,0.615238, + -0.320287,-0.720347,0.615238,-0.320287,-0.720347,0.615238,-0.320287,-0.720347,0.615238,0.072865,-0.805601,0.587961, + 0.072865,-0.805601,0.587961,0.072865,-0.805601,0.587961,0.072865,-0.805601,0.587961,0.475524,0.860138,0.184499, + 0.475524,0.860138,0.184499,0.475524,0.860138,0.184499,0.475524,0.860138,0.184499,0.523350,0.829499,0.195032, + 0.523350,0.829499,0.195032,0.523350,0.829499,0.195032,0.523350,0.829499,0.195032,0.525260,0.828193,0.195444, + 0.525260,0.828193,0.195444,0.525260,0.828193,0.195444,0.525260,0.828193,0.195444,0.064305,0.256269,-0.964464, + 0.064305,0.256269,-0.964464,0.064305,0.256269,-0.964464,0.064305,0.256269,-0.964464,0.534403,-0.031498,-0.844643, + 0.534403,-0.031498,-0.844643,0.534403,-0.031498,-0.844643,0.534403,-0.031498,-0.844643,0.765580,-0.218846,-0.604974, + 0.765580,-0.218846,-0.604974,0.765580,-0.218846,-0.604974,0.765580,-0.218846,-0.604974,-0.419106,0.463970,-0.780437, + -0.419106,0.463970,-0.780437,-0.419106,0.463970,-0.780437,-0.419106,0.463970,-0.780437,0.523185,0.829609,0.195007, + 0.523185,0.829609,0.195007,0.523185,0.829609,0.195007,0.523185,0.829609,0.195007,-0.869658,-0.280993,0.405879, + -0.869658,-0.280993,0.405879,-0.869658,-0.280993,0.405879,-0.869658,-0.280993,0.405879,0.546309,0.122020,0.828648, + 0.546309,0.122020,0.828648,0.546309,0.122020,0.828648,0.546309,0.122020,0.828648,0.667767,-0.345415,-0.659375, + 0.667767,-0.345415,-0.659375,0.667767,-0.345415,-0.659375,0.667767,-0.345415,-0.659375,-0.465588,-0.517396,0.718004, + -0.465588,-0.517396,0.718004,-0.465588,-0.517396,0.718004,-0.465588,-0.517396,0.718004,0.475510,0.835644,0.274936, + 0.475510,0.835644,0.274936,0.475510,0.835644,0.274936,0.475510,0.835644,0.274936,-0.825600,0.531523,-0.189387, + -0.825600,0.531523,-0.189387,-0.825600,0.531523,-0.189387,-0.825600,0.531523,-0.189387,0.824482,-0.531770,0.193518, + 0.824482,-0.531770,0.193518,0.824482,-0.531770,0.193518,0.824482,-0.531770,0.193518,0.495979,0.863875,0.087888, + 0.495979,0.863875,0.087888,0.495979,0.863875,0.087888,0.495979,0.863875,0.087888,-0.310145,0.420823,-0.852477, + -0.310145,0.420823,-0.852477,-0.310145,0.420823,-0.852477,-0.310145,0.420823,-0.852477,0.313018,-0.422302,0.850694, + 0.313018,-0.422302,0.850694,0.313018,-0.422302,0.850694,0.313018,-0.422302,0.850694,-0.461597,-0.500790,0.732214, + -0.461597,-0.500790,0.732214,-0.461597,-0.500790,0.732214,-0.461597,-0.500790,0.732214,0.258522,0.113085,-0.959363, + 0.258522,0.113085,-0.959363,0.258522,0.113085,-0.959363,0.258522,0.113085,-0.959363,0.524504,0.828914,0.194414, + 0.524504,0.828914,0.194414,0.524504,0.828914,0.194414,0.524504,0.828914,0.194414,-0.450907,-0.449537,0.771103, + -0.450907,-0.449537,0.771103,-0.450907,-0.449537,0.771103,-0.450907,-0.449537,0.771103,0.237998,0.080805,-0.967899, + 0.237998,0.080805,-0.967899,0.237998,0.080805,-0.967899,0.237998,0.080805,-0.967899,0.477938,0.858515,0.185815, + 0.477938,0.858515,0.185815,0.477938,0.858515,0.185815,0.477938,0.858515,0.185815,0.500679,0.844511,0.190056, + 0.500679,0.844511,0.190056,0.500679,0.844511,0.190056,0.500679,0.844511,0.190056,0.475501,0.835650,0.274932, + 0.475501,0.835650,0.274932,0.475501,0.835650,0.274932,0.475501,0.835650,0.274932,-0.825611,0.531502,-0.189401, + -0.825611,0.531502,-0.189401,-0.825611,0.531502,-0.189401,-0.825611,0.531502,-0.189401,0.824459,-0.531809,0.193510, + 0.824459,-0.531809,0.193510,0.824459,-0.531809,0.193510,0.824459,-0.531809,0.193510,0.494547,0.864376,0.090982, + 0.494547,0.864376,0.090982,0.494547,0.864376,0.090982,0.494547,0.864376,0.090982,-0.340218,0.436114,-0.833100, + -0.340218,0.436114,-0.833100,-0.340218,0.436114,-0.833100,-0.340218,0.436114,-0.833100,0.343251,-0.437619,0.831065, + 0.343251,-0.437619,0.831065,0.343251,-0.437619,0.831065,0.343251,-0.437619,0.831065,0.503628,0.842618,0.190668, + 0.503628,0.842618,0.190668,0.503628,0.842618,0.190668,0.503628,0.842618,0.190668,0.269255,0.143455,-0.952325, + 0.269255,0.143455,-0.952325,0.269255,0.143455,-0.952325,0.269255,0.143455,-0.952325,-0.460903,-0.447248,0.766510, + -0.460903,-0.447248,0.766510,-0.460903,-0.447248,0.766510,-0.460903,-0.447248,0.766510,0.279166,0.076608,-0.957182, + 0.279166,0.076608,-0.957182,0.279166,0.076608,-0.957182,0.279166,0.076608,-0.957182,0.237999,0.080804,-0.967898, + 0.237999,0.080804,-0.967898,0.237999,0.080804,-0.967898,0.237999,0.080804,-0.967898,-0.450904,-0.449533,0.771106, + -0.450904,-0.449533,0.771106,-0.450904,-0.449533,0.771106,-0.450904,-0.449533,0.771106,0.524504,0.828916,0.194405, + 0.524504,0.828916,0.194405,0.524504,0.828916,0.194405,0.524504,0.828916,0.194405,0.162266,-0.117064,-0.979779, + 0.162266,-0.117064,-0.979779,0.162266,-0.117064,-0.979779,0.162266,-0.117064,-0.979779,-0.398233,-0.288898,0.870602, + -0.398233,-0.288898,0.870602,-0.398233,-0.288898,0.870602,-0.398233,-0.288898,0.870602,0.500127,0.844864,0.189940, + 0.500127,0.844864,0.189940,0.500127,0.844864,0.189940,0.500127,0.844864,0.189940,-0.126736,0.139614,0.982062, + -0.126736,0.139614,0.982062,-0.126736,0.139614,0.982062,-0.126736,0.139614,0.982062,-0.367909,-0.267803,0.890463, + -0.367909,-0.267803,0.890463,-0.367909,-0.267803,0.890463,-0.367909,-0.267803,0.890463,0.853718,-0.501401,0.140583, + 0.853718,-0.501401,0.140583,0.853718,-0.501401,0.140583,0.853718,-0.501401,0.140583,0.504901,0.857459,0.099195, + 0.504901,0.857459,0.099195,0.504901,0.857459,0.099195,0.504901,0.857459,0.099195,-0.272894,-0.144738,0.951094, + -0.272894,-0.144738,0.951094,-0.272894,-0.144738,0.951094,-0.272894,-0.144738,0.951094,-0.196333,-0.014967,0.980423, + -0.196333,-0.014967,0.980423,-0.196333,-0.014967,0.980423,-0.196333,-0.014967,0.980423,0.442816,0.817065,0.369213, + 0.442816,0.817065,0.369213,0.442816,0.817065,0.369213,0.442816,0.817065,0.369213,-0.487189,-0.838726,-0.243280, + -0.487189,-0.838726,-0.243280,-0.487189,-0.838726,-0.243280,-0.487189,-0.838726,-0.243280,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.539404,-0.842040,-0.003399, + -0.539404,-0.842040,-0.003399,-0.539404,-0.842040,-0.003399,-0.539404,-0.842040,-0.003399,0.513581,0.848110,0.130172, + 0.513581,0.848110,0.130172,0.513581,0.848110,0.130172,0.513581,0.848110,0.130172,0.470237,0.835732,0.283601, + 0.470237,0.835732,0.283601,0.470237,0.835732,0.283601,0.470237,0.835732,0.283601,0.456821,0.820341,0.344028, + 0.456821,0.820341,0.344028,0.456821,0.820341,0.344028,0.456821,0.820341,0.344028,-0.501092,-0.839073,-0.211808, + -0.501092,-0.839073,-0.211808,-0.501092,-0.839073,-0.211808,-0.501092,-0.839073,-0.211808,-0.209643,-0.093934,0.973256, + -0.209643,-0.093934,0.973256,-0.209643,-0.093934,0.973256,-0.209643,-0.093934,0.973256,-0.531172,-0.846776,-0.028734, + -0.531172,-0.846776,-0.028734,-0.531172,-0.846776,-0.028734,-0.531172,-0.846776,-0.028734,0.487767,0.853014,0.185609, + 0.487767,0.853014,0.185609,0.487767,0.853014,0.185609,0.487767,0.853014,0.185609,-0.126736,0.139613,0.982062, + -0.126736,0.139613,0.982062,-0.126736,0.139613,0.982062,-0.126736,0.139613,0.982062,-0.367908,-0.267802,0.890464, + -0.367908,-0.267802,0.890464,-0.367908,-0.267802,0.890464,-0.367908,-0.267802,0.890464,0.513282,0.849110,0.124718, + 0.513282,0.849110,0.124718,0.513282,0.849110,0.124718,0.513282,0.849110,0.124718,0.469216,0.834743,0.288168, + 0.469216,0.834743,0.288168,0.469216,0.834743,0.288168,0.469216,0.834743,0.288168,0.442815,0.817063,0.369220, + 0.442815,0.817063,0.369220,0.442815,0.817063,0.369220,0.442815,0.817063,0.369220,-0.482464,-0.836493,-0.259821, + -0.482464,-0.836493,-0.259821,-0.482464,-0.836493,-0.259821,-0.482464,-0.836493,-0.259821,-0.254843,-0.066046,0.964724, + -0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.254843,-0.066046,0.964724,-0.539404,-0.842040,-0.003403, + -0.539404,-0.842040,-0.003403,-0.539404,-0.842040,-0.003403,-0.539404,-0.842040,-0.003403,0.515971,0.848318,0.118867, + 0.515971,0.848318,0.118867,0.515971,0.848318,0.118867,0.515971,0.848318,0.118867,-0.370044,0.318749,-0.872620, + -0.370044,0.318749,-0.872620,-0.370044,0.318749,-0.872620,-0.370044,0.318749,-0.872620,-0.833784,0.537252,-0.127141, + -0.833784,0.537252,-0.127141,-0.833784,0.537252,-0.127141,-0.833784,0.537252,-0.127141,-0.071119,0.145516,-0.986796, + -0.071119,0.145516,-0.986796,-0.071119,0.145516,-0.986796,-0.071119,0.145516,-0.986796,0.451895,-0.189994,-0.871604, + 0.451895,-0.189994,-0.871604,0.451895,-0.189994,-0.871604,0.451895,-0.189994,-0.871604,-0.049294,0.247159,-0.967720, + -0.049294,0.247159,-0.967720,-0.049294,0.247159,-0.967720,-0.049294,0.247159,-0.967720,-0.423884,0.430697,-0.796758, + -0.423884,0.430697,-0.796758,-0.423884,0.430697,-0.796758,-0.423884,0.430697,-0.796758,0.526858,-0.122542,-0.841073, + 0.526858,-0.122542,-0.841073,0.526858,-0.122542,-0.841073,0.526858,-0.122542,-0.841073,0.513282,0.849110,0.124718, + 0.513282,0.849110,0.124718,0.513282,0.849110,0.124718,0.513281,0.849110,0.124717,0.513281,0.849110,0.124717, + 0.513281,0.849110,0.124717,0.780622,-0.328667,-0.531608,0.780622,-0.328667,-0.531608,0.780622,-0.328667,-0.531608, + 0.780622,-0.328667,-0.531608,0.513281,0.849110,0.124719,0.513281,0.849110,0.124719,0.513281,0.849110,0.124719, + 0.513282,0.849109,0.124718,0.513282,0.849109,0.124718,0.513282,0.849109,0.124718,-0.288039,-0.016586,0.957475, + -0.288039,-0.016586,0.957475,-0.288039,-0.016586,0.957475,-0.288039,-0.016586,0.957475,-0.828386,0.517457,-0.214511, + -0.828386,0.517457,-0.214511,-0.828386,0.517457,-0.214511,-0.828386,0.517457,-0.214511,0.862943,-0.504826,-0.021907, + 0.862943,-0.504826,-0.021907,0.862943,-0.504826,-0.021907,0.862943,-0.504826,-0.021907,0.226923,0.058701,-0.972142, + 0.226923,0.058701,-0.972142,0.226923,0.058701,-0.972142,0.226923,0.058701,-0.972142,0.581341,0.799423,-0.151543, + 0.581341,0.799423,-0.151543,0.581341,0.799423,-0.151543,0.581341,0.799423,-0.151543,0.285910,0.021435,-0.958017, + 0.285910,0.021435,-0.958017,0.285910,0.021435,-0.958017,0.285910,0.021435,-0.958017,-0.828386,0.517457,-0.214512, + -0.828386,0.517457,-0.214512,-0.828386,0.517457,-0.214512,-0.828386,0.517457,-0.214512,0.562497,0.812281,-0.154259, + 0.562497,0.812281,-0.154259,0.562497,0.812281,-0.154259,0.562497,0.812281,-0.154259,0.862942,-0.504828,-0.021908, + 0.862942,-0.504828,-0.021908,0.862942,-0.504828,-0.021908,0.862942,-0.504828,-0.021908,-0.242460,-0.045246,0.969106, + -0.242460,-0.045246,0.969106,-0.242460,-0.045246,0.969106,-0.242460,-0.045246,0.969106,-0.483959,0.848673,-0.213398, + -0.483959,0.848673,-0.213398,-0.483959,0.848673,-0.213398,-0.483959,0.848673,-0.213398,0.842600,0.499814,0.200524, + 0.842600,0.499814,0.200524,0.842600,0.499814,0.200524,0.842600,0.499814,0.200524,-0.827981,-0.495476,-0.262583, + -0.827981,-0.495476,-0.262583,-0.827981,-0.495476,-0.262583,-0.827981,-0.495476,-0.262583,-0.793063,-0.482537,-0.371765, + -0.793063,-0.482537,-0.371765,-0.793063,-0.482537,-0.371765,-0.793063,-0.482537,-0.371765,0.566653,-0.819570,-0.084908, + 0.566653,-0.819570,-0.084908,0.566653,-0.819570,-0.084908,0.566653,-0.819570,-0.084908,-0.417480,0.885964,-0.201935, + -0.417480,0.885964,-0.201935,-0.417480,0.885964,-0.201935,-0.417480,0.885964,-0.201935,-0.552055,0.833805,-0.001919, + -0.552055,0.833805,-0.001919,-0.552055,0.833805,-0.001919,-0.552055,0.833805,-0.001919,0.500715,-0.860622,-0.092807, + 0.500715,-0.860622,-0.092807,0.500715,-0.860622,-0.092807,0.500715,-0.860622,-0.092807,0.844060,0.500182,0.193343, + 0.844060,0.500182,0.193343,0.844060,0.500182,0.193343,0.844060,0.500182,0.193343,-0.479569,0.877335,0.017220, + -0.479569,0.877335,0.017220,-0.479569,0.877335,0.017220,-0.479569,0.877335,0.017220,-0.796544,-0.483931,-0.362393, + -0.796544,-0.483931,-0.362393,-0.796544,-0.483931,-0.362393,-0.796544,-0.483931,-0.362393,0.813078,0.490287,0.313882, + 0.813078,0.490287,0.313882,0.813078,0.490287,0.313882,0.813078,0.490287,0.313882,0.509663,-0.846971,0.151274, + 0.509663,-0.846971,0.151274,0.509663,-0.846971,0.151274,0.509663,-0.846971,0.151274,-0.249418,-0.097299,0.963495, + -0.249418,-0.097299,0.963495,-0.249418,-0.097299,0.963495,-0.249418,-0.097299,0.963495,-0.249424,-0.097304,0.963493, + -0.249424,-0.097304,0.963493,-0.249424,-0.097304,0.963493,-0.249424,-0.097304,0.963493,-0.249418,-0.097302,0.963495, + -0.249418,-0.097302,0.963495,-0.249418,-0.097302,0.963495,-0.249418,-0.097302,0.963495,-0.249418,-0.097307,0.963495, + -0.249418,-0.097307,0.963495,-0.249418,-0.097307,0.963495,-0.249418,-0.097307,0.963495,-0.249423,-0.097301,0.963494, + -0.249423,-0.097301,0.963494,-0.249423,-0.097301,0.963494,-0.249423,-0.097301,0.963494,-0.249417,-0.097310,0.963495, + -0.249417,-0.097310,0.963495,-0.249417,-0.097310,0.963495,-0.249417,-0.097310,0.963495,-0.249421,-0.097303,0.963494, + -0.249421,-0.097303,0.963494,-0.249421,-0.097303,0.963494,-0.249421,-0.097303,0.963494,-0.249421,-0.097305,0.963494, + -0.249421,-0.097305,0.963494,-0.249421,-0.097305,0.963494,-0.249421,-0.097305,0.963494,0.437404,-0.889649,0.131162, + 0.437404,-0.889649,0.131162,0.437404,-0.889649,0.131162,0.437404,-0.889649,0.131162,-0.796302,-0.485450,-0.360889, + -0.796302,-0.485450,-0.360889,-0.796302,-0.485450,-0.360889,-0.796302,-0.485450,-0.360889,0.475665,-0.869779,0.131253, + 0.475665,-0.869779,0.131253,0.475665,-0.869779,0.131253,0.475665,-0.869779,0.131253,-0.831770,-0.495591,-0.250096, + -0.831770,-0.495591,-0.250096,-0.831770,-0.495591,-0.250096,-0.831770,-0.495591,-0.250096,-0.314505,-0.031756,0.948724, + -0.314505,-0.031756,0.948724,-0.314505,-0.031756,0.948724,-0.314505,-0.031756,0.948724,0.807886,0.489441,0.328280, + 0.807886,0.489441,0.328280,0.807886,0.489441,0.328280,0.807886,0.489441,0.328280,-0.509305,0.860467,-0.014292, + -0.509305,0.860467,-0.014292,-0.509305,0.860467,-0.014292,-0.509305,0.860467,-0.014292,0.811494,0.488645,0.320473, + 0.811494,0.488645,0.320473,0.811494,0.488645,0.320473,0.811494,0.488645,0.320473,-0.254684,-0.136306,0.957370, + -0.254684,-0.136306,0.957370,-0.254684,-0.136306,0.957370,-0.254684,-0.136306,0.957370,-0.830237,-0.497293,-0.251806, + -0.830237,-0.497293,-0.251806,-0.830237,-0.497293,-0.251806,-0.830237,-0.497293,-0.251806,-0.481269,0.869206,-0.113405, + -0.481269,0.869206,-0.113405,-0.481269,0.869206,-0.113405,-0.481269,0.869206,-0.113405,-0.508179,0.861014,-0.020234, + -0.508179,0.861014,-0.020234,-0.508179,0.861014,-0.020234,-0.508179,0.861014,-0.020234,0.922312,-0.258778,0.287009, + 0.922312,-0.258778,0.287009,0.922312,-0.258778,0.287009,0.922312,-0.258778,0.287009,0.955346,-0.247617,0.161245, + 0.955346,-0.247617,0.161245,0.955346,-0.247617,0.161245,0.955346,-0.247617,0.161245,-0.498864,0.864735,-0.058043, + -0.498864,0.864735,-0.058043,-0.498864,0.864735,-0.058043,-0.498864,0.864735,-0.058043,0.834384,0.496224,0.239926, + 0.834384,0.496224,0.239926,0.834384,0.496224,0.239926,0.834384,0.496224,0.239926,-0.494835,0.865873,-0.073503, + -0.494835,0.865873,-0.073503,-0.494835,0.865873,-0.073503,-0.494835,0.865873,-0.073503,0.824272,0.494431,0.275887, + 0.824272,0.494431,0.275887,0.824272,0.494431,0.275887,0.824272,0.494431,0.275887,-0.231793,-0.964870,-0.123686, + -0.231793,-0.964870,-0.123686,-0.231793,-0.964870,-0.123686,-0.231793,-0.964870,-0.123686,-0.226681,-0.963434,-0.142867, + -0.226681,-0.963434,-0.142867,-0.226681,-0.963434,-0.142867,-0.226681,-0.963434,-0.142867,0.814488,0.491509,0.308266, + 0.814488,0.491509,0.308266,0.814488,0.491509,0.308266,0.814488,0.491509,0.308266,0.504437,-0.863099,0.024568, + 0.504437,-0.863099,0.024568,0.504437,-0.863099,0.024568,0.504437,-0.863099,0.024568,0.839748,0.498299,0.215687, + 0.839748,0.498299,0.215687,0.839748,0.498299,0.215687,0.839748,0.498299,0.215687,0.476884,-0.868231,0.136955, + 0.476884,-0.868231,0.136955,0.476884,-0.868231,0.136955,0.476884,-0.868231,0.136955,-0.951270,0.251206,-0.178831, + -0.951270,0.251206,-0.178831,-0.951270,0.251206,-0.178831,-0.951270,0.251206,-0.178831,-0.916637,0.257378,-0.305833, + -0.916637,0.257378,-0.305833,-0.916637,0.257378,-0.305833,-0.916637,0.257378,-0.305833,0.470435,-0.868178,0.157979, + 0.470435,-0.868178,0.157979,0.470435,-0.868178,0.157979,0.470435,-0.868178,0.157979,0.510035,-0.860065,0.012299, + 0.510035,-0.860065,0.012299,0.510035,-0.860065,0.012299,0.510035,-0.860065,0.012299,0.211591,0.957312,0.196931, + 0.211591,0.957312,0.196931,0.211591,0.957312,0.196931,0.211591,0.957312,0.196931,0.253811,0.966587,0.035900, + 0.253811,0.966587,0.035900,0.253811,0.966587,0.035900,0.253811,0.966587,0.035900,0.235237,0.111386,-0.965535, + 0.235237,0.111386,-0.965535,0.235237,0.111386,-0.965535,0.235237,0.111386,-0.965535,-0.464425,0.883425,-0.062203, + -0.464425,0.883425,-0.062203,-0.464425,0.883425,-0.062203,-0.464425,0.883425,-0.062203,-0.086412,-0.384526,0.919061, + -0.086412,-0.384526,0.919061,-0.086412,-0.384526,0.919061,-0.086412,-0.384526,0.919061,0.254160,0.102930,-0.961669, + 0.254160,0.102930,-0.961669,0.254160,0.102930,-0.961669,0.254160,0.102930,-0.961669,-0.516258,0.852874,-0.077991, + -0.516258,0.852874,-0.077991,-0.516258,0.852874,-0.077991,-0.516258,0.852874,-0.077991,-0.052604,-0.379571,0.923666, + -0.052604,-0.379571,0.923666,-0.052604,-0.379571,0.923666,-0.052604,-0.379571,0.923666,0.464718,-0.883343,0.061168, + 0.464718,-0.883343,0.061168,0.464718,-0.883343,0.061168,0.464718,-0.883343,0.061168,-0.429875,0.266400,0.862693, + -0.429875,0.266400,0.862693,-0.429875,0.266400,0.862693,-0.429875,0.266400,0.862693,0.274705,0.074734,-0.958620, + 0.274705,0.074734,-0.958620,0.274705,0.074734,-0.958620,0.274705,0.074734,-0.958620,0.388434,0.035641,-0.920787, + 0.388434,0.035641,-0.920787,0.388434,0.035641,-0.920787,0.388434,0.035641,-0.920787,-0.690770,-0.273979,0.669158, + -0.690770,-0.273979,0.669158,-0.690770,-0.273979,0.669158,-0.690770,-0.273979,0.669158,0.808186,0.518489,0.279292, + 0.808186,0.518489,0.279292,0.808186,0.518489,0.279292,0.808186,0.518489,0.279292,0.356775,0.167026,-0.919138, + 0.356775,0.167026,-0.919138,0.356775,0.167026,-0.919138,0.356775,0.167026,-0.919138,-0.639801,-0.330768,0.693720, + -0.639801,-0.330768,0.693720,-0.639801,-0.330768,0.693720,-0.639801,-0.330768,0.693720,0.844147,0.463257,0.269830, + 0.844147,0.463257,0.269830,0.844147,0.463257,0.269830,0.844147,0.463257,0.269830,0.252804,0.096492,-0.962694, + 0.252804,0.096492,-0.962694,0.252804,0.096492,-0.962694,0.252804,0.096492,-0.962694,0.320218,0.065649,-0.945066, + 0.320218,0.065649,-0.945066,0.320218,0.065649,-0.945066,0.320218,0.065649,-0.945066,-0.660762,-0.294492,0.690411, + -0.660762,-0.294492,0.690411,-0.660762,-0.294492,0.690411,-0.660762,-0.294492,0.690411,0.829645,0.490867,0.265968, + 0.829645,0.490867,0.265968,0.829645,0.490867,0.265968,0.829645,0.490867,0.265968,-0.490597,0.868560,-0.070131, + -0.490597,0.868560,-0.070131,-0.490597,0.868560,-0.070131,-0.490597,0.868560,-0.070131,-0.061911,-0.395969,0.916174, + -0.061911,-0.395969,0.916174,-0.061911,-0.395969,0.916174,-0.061911,-0.395969,0.916174,0.306417,0.039509,-0.951077, + 0.306417,0.039509,-0.951077,0.306417,0.039509,-0.951077,0.306417,0.039509,-0.951077,0.490632,-0.868551,0.069994, + 0.490632,-0.868551,0.069994,0.490632,-0.868551,0.069994,0.490632,-0.868551,0.069994,-0.470164,0.311964,0.825606, + -0.470164,0.311964,0.825606,-0.470164,0.311964,0.825606,-0.470164,0.311964,0.825606,-0.480359,0.868082,-0.125255, + -0.480359,0.868082,-0.125255,-0.480359,0.868082,-0.125255,-0.480359,0.868082,-0.125255,-0.574170,-0.386335,-0.721855, + -0.574170,-0.386335,-0.721855,-0.574170,-0.386335,-0.721855,-0.574170,-0.386335,-0.721855,0.577452,0.387939,0.718368, + 0.577452,0.387939,0.718368,0.577452,0.387939,0.718368,0.577452,0.387939,0.718368,-0.486911,0.867418,-0.102490, + -0.486911,0.867418,-0.102490,-0.486911,0.867418,-0.102490,-0.486911,0.867418,-0.102490,-0.853087,-0.471001,0.224501, + -0.853087,-0.471001,0.224501,-0.853087,-0.471001,0.224501,-0.853087,-0.471001,0.224501,0.852238,0.470127,-0.229503, + 0.852238,0.470127,-0.229503,0.852238,0.470127,-0.229503,0.852238,0.470127,-0.229503,0.818346,0.565839,0.100680, + 0.818346,0.565839,0.100680,0.818346,0.565839,0.100680,0.818346,0.565839,0.100680,-0.129978,0.618081,-0.775294, + -0.129978,0.618081,-0.775294,-0.129978,0.618081,-0.775294,-0.129978,0.618081,-0.775294,0.131884,-0.620267,0.773224, + 0.131884,-0.620267,0.773224,0.131884,-0.620267,0.773224,0.131884,-0.620267,0.773224,-0.470217,0.867749,-0.160959, + -0.470217,0.867749,-0.160959,-0.470217,0.867749,-0.160959,-0.470217,0.867749,-0.160959,0.470229,-0.867743,0.160954, + 0.470229,-0.867743,0.160954,0.470229,-0.867743,0.160954,0.470229,-0.867743,0.160954,-0.269003,-0.009860,0.963089, + -0.269003,-0.009860,0.963089,-0.269003,-0.009860,0.963089,-0.269003,-0.009860,0.963089,0.300259,0.028558,-0.953430, + 0.300259,0.028558,-0.953430,0.300259,0.028558,-0.953430,0.300259,0.028558,-0.953430,-0.835879,-0.497118,-0.232765, + -0.835879,-0.497118,-0.232765,-0.835879,-0.497118,-0.232765,-0.835879,-0.497118,-0.232765,0.805494,0.493899,0.327479, + 0.805494,0.493899,0.327479,0.805494,0.493899,0.327479,0.805494,0.493899,0.327479,-0.487211,0.863494,-0.130396, + -0.487211,0.863494,-0.130396,-0.487211,0.863494,-0.130396,-0.487211,0.863494,-0.130396,0.487207,-0.863496,0.130395, + 0.487207,-0.863496,0.130395,0.487207,-0.863496,0.130395,0.487207,-0.863496,0.130395,0.202216,-0.007081,-0.979315, + 0.202216,-0.007081,-0.979315,0.202216,-0.007081,-0.979315,0.202216,-0.007081,-0.979315,-0.234003,-0.011820,0.972164, + -0.234003,-0.011820,0.972164,-0.234003,-0.011820,0.972164,-0.234003,-0.011820,0.972164,0.848896,0.501849,0.165905, + 0.848896,0.501849,0.165905,0.848896,0.501849,0.165905,0.848896,0.501849,0.165905,-0.825042,-0.500366,-0.262562, + -0.825042,-0.500366,-0.262562,-0.825042,-0.500366,-0.262562,-0.825042,-0.500366,-0.262562,-0.477160,0.869865,-0.125112, + -0.477160,0.869865,-0.125112,-0.477160,0.869865,-0.125112,-0.477160,0.869865,-0.125112,0.477159,-0.869868,0.125099, + 0.477159,-0.869868,0.125099,0.477159,-0.869868,0.125099,0.477159,-0.869868,0.125099,0.277204,0.039239,-0.960010, + 0.277204,0.039239,-0.960010,0.277204,0.039239,-0.960010,0.277204,0.039239,-0.960010,-0.308259,-0.057851,0.949542, + -0.308259,-0.057851,0.949542,-0.308259,-0.057851,0.949542,-0.308259,-0.057851,0.949542,0.831443,0.493891,0.254508, + 0.831443,0.493891,0.254508,0.831443,0.493891,0.254508,0.831443,0.493891,0.254508,-0.800169,-0.487886,-0.348851, + -0.800169,-0.487886,-0.348851,-0.800169,-0.487886,-0.348851,-0.800169,-0.487886,-0.348851,-0.474752,0.870229,-0.131578, + -0.474752,0.870229,-0.131578,-0.474752,0.870229,-0.131578,-0.474752,0.870229,-0.131578,-0.796343,-0.485465,-0.360778, + -0.796343,-0.485465,-0.360778,-0.796343,-0.485465,-0.360778,-0.796343,-0.485465,-0.360778,0.903224,-0.263695,0.338603, + 0.903224,-0.263695,0.338603,0.903224,-0.263695,0.338603,0.903224,-0.263695,0.338603,0.829723,0.496070,0.255877, + 0.829723,0.496070,0.255877,0.829723,0.496070,0.255877,0.829723,0.496070,0.255877,-0.487771,0.867294,-0.099406, + -0.487771,0.867294,-0.099406,-0.487771,0.867294,-0.099406,-0.487771,0.867294,-0.099406,-0.232966,-0.965074,-0.119825, + -0.232966,-0.965074,-0.119825,-0.232966,-0.965074,-0.119825,-0.232966,-0.965074,-0.119825,0.508962,-0.860787,-0.001975, + 0.508962,-0.860787,-0.001975,0.508962,-0.860787,-0.001975,0.508962,-0.860787,-0.001975,0.835191,0.497282,0.234875, + 0.835191,0.497282,0.234875,0.835191,0.497282,0.234875,0.835191,0.497282,0.234875,-0.951592,0.251210,-0.177102, + -0.951592,0.251210,-0.177102,-0.951592,0.251210,-0.177102,-0.951592,0.251210,-0.177102,-0.797095,-0.485738,-0.358744, + -0.797095,-0.485738,-0.358744,-0.797095,-0.485738,-0.358744,-0.797095,-0.485738,-0.358744,0.513824,-0.857885,-0.004380, + 0.513824,-0.857885,-0.004380,0.513824,-0.857885,-0.004380,0.513824,-0.857885,-0.004380,0.197599,0.949218,0.244826, + 0.197599,0.949218,0.244826,0.197599,0.949218,0.244826,0.197599,0.949218,0.244826,-0.464424,0.883426,-0.062201, + -0.464424,0.883426,-0.062201,-0.464424,0.883426,-0.062201,-0.464424,0.883426,-0.062201,0.427465,0.356017,0.830979, + 0.427465,0.356017,0.830979,0.427465,0.356017,0.830979,0.427465,0.356017,0.830979,-0.516255,0.852876,-0.077997, + -0.516255,0.852876,-0.077997,-0.516255,0.852876,-0.077997,-0.516255,0.852876,-0.077997,-0.839088,-0.444993,0.312909, + -0.839088,-0.444993,0.312909,-0.839088,-0.444993,0.312909,0.464987,-0.883272,0.060147,0.464987,-0.883272,0.060147, + 0.464987,-0.883272,0.060147,0.464987,-0.883272,0.060147,0.183530,-0.689034,0.701105,0.183530,-0.689034,0.701105, + 0.183530,-0.689034,0.701105,0.183530,-0.689034,0.701105,-0.856239,-0.413686,0.309385,-0.856239,-0.413686,0.309385, + -0.856239,-0.413686,0.309385,0.515873,-0.852978,0.079401,0.515873,-0.852978,0.079401,0.515873,-0.852978,0.079401, + 0.515873,-0.852978,0.079401,0.231042,-0.753713,0.615252,0.231042,-0.753713,0.615252,0.231042,-0.753713,0.615252, + -0.525955,0.704907,0.475897,-0.525955,0.704907,0.475897,-0.525955,0.704907,0.475897,-0.562504,0.684157,0.464240, + -0.562504,0.684157,0.464240,-0.562504,0.684157,0.464240,-0.837453,-0.467337,-0.283316,-0.837453,-0.467337,-0.283316, + -0.837453,-0.467337,-0.283316,-0.837453,-0.467337,-0.283316,0.459106,0.297890,0.836949,0.459106,0.297890,0.836949, + 0.459106,0.297890,0.836949,0.459106,0.297890,0.836949,-0.214991,-0.242826,-0.945947,-0.214991,-0.242826,-0.945947, + -0.214991,-0.242826,-0.945947,0.799849,0.515936,0.306679,0.799849,0.515936,0.306679,0.799849,0.515936,0.306679, + 0.799849,0.515936,0.306679,0.840224,0.462163,0.283599,0.840224,0.462163,0.283599,0.840224,0.462163,0.283599, + 0.840224,0.462163,0.283599,-0.820417,-0.513310,-0.251852,-0.820417,-0.513310,-0.251852,-0.820417,-0.513310,-0.251852, + -0.820417,-0.513310,-0.251852,-0.523601,0.612458,0.592231,-0.523601,0.612458,0.592231,-0.523601,0.612458,0.592231, + -0.523601,0.612458,0.592231,-0.557104,0.593054,0.581310,-0.557104,0.593054,0.581310,-0.557104,0.593054,0.581310, + -0.557104,0.593054,0.581310,0.252766,-0.740751,0.622413,0.252766,-0.740751,0.622413,0.252766,-0.740751,0.622413, + 0.164402,-0.700291,0.694669,0.164402,-0.700291,0.694669,0.164402,-0.700291,0.694669,0.164402,-0.700291,0.694669, + -0.789642,-0.435883,0.431824,-0.789642,-0.435883,0.431824,-0.789642,-0.435883,0.431824,-0.789642,-0.435883,0.431824, + -0.805843,-0.408241,0.428901,-0.805843,-0.408241,0.428901,-0.805843,-0.408241,0.428901,-0.805843,-0.408241,0.428901, + 0.509422,0.430365,0.745168,0.509422,0.430365,0.745168,0.509422,0.430365,0.745168,0.545446,0.367663,0.753202, + 0.545446,0.367663,0.753202,0.545446,0.367663,0.753202,-0.242485,-0.194351,-0.950489,-0.242485,-0.194351,-0.950489, + -0.242485,-0.194351,-0.950489,-0.030472,0.532728,-0.845738,-0.030472,0.532728,-0.845738,-0.030472,0.532728,-0.845738, + 0.470186,-0.403991,-0.784676,0.470186,-0.403991,-0.784676,0.470186,-0.403991,-0.784676,0.665195,0.341506,-0.663995, + 0.665195,0.341506,-0.663995,0.665195,0.341506,-0.663995,-0.026395,0.535104,-0.844374,-0.026395,0.535104,-0.844374, + -0.026395,0.535104,-0.844374,0.673696,0.326752,-0.662848,0.673696,0.326752,-0.662848,0.673696,0.326752,-0.662848, + 0.490747,-0.391915,-0.778183,0.490747,-0.391915,-0.778183,0.490747,-0.391915,-0.778183,-0.492333,0.861940,-0.121107, + -0.492333,0.861940,-0.121107,-0.492333,0.861940,-0.121107,-0.492333,0.861940,-0.121107,0.109094,0.141525,0.983905, + 0.109094,0.141525,0.983905,0.109094,0.141525,0.983905,0.109094,0.141525,0.983905,-0.486340,0.868742,-0.093592, + -0.486340,0.868742,-0.093592,-0.486340,0.868742,-0.093592,-0.486340,0.868742,-0.093592,0.491262,0.419919,-0.763105, + 0.491262,0.419919,-0.763105,0.491262,0.419919,-0.763105,0.491262,0.419919,-0.763105,-0.417350,0.781406,-0.463922, + -0.417350,0.781406,-0.463922,-0.417350,0.781406,-0.463922,-0.417350,0.781406,-0.463922,0.517319,-0.855118,0.033982, + 0.517319,-0.855118,0.033982,0.517319,-0.855118,0.033982,0.517319,-0.855118,0.033982,-0.564757,-0.308325,0.765497, + -0.564757,-0.308325,0.765497,-0.564757,-0.308325,0.765497,-0.564757,-0.308325,0.765497,0.041722,0.447244,-0.893438, + 0.041722,0.447244,-0.893438,0.041722,0.447244,-0.893438,0.041722,0.447244,-0.893438,-0.826366,-0.493214,-0.271769, + -0.826366,-0.493214,-0.271769,-0.826366,-0.493214,-0.271769,-0.826366,-0.493214,-0.271769,0.617568,-0.729511,-0.293976, + 0.617568,-0.729511,-0.293976,0.617568,-0.729511,-0.293976,0.617568,-0.729511,-0.293976,0.826544,0.542037,-0.151725, + 0.826544,0.542037,-0.151725,0.826544,0.542037,-0.151725,0.826544,0.542037,-0.151725,0.495942,-0.866838,0.051312, + 0.495942,-0.866838,0.051312,0.495942,-0.866838,0.051312,0.495942,-0.866838,0.051312,-0.123713,-0.113013,-0.985862, + -0.123713,-0.113013,-0.985862,-0.123713,-0.113013,-0.985862,-0.123713,-0.113013,-0.985862,-0.626352,-0.490141,-0.606172, + -0.626352,-0.490141,-0.606172,-0.626352,-0.490141,-0.606172,-0.626352,-0.490141,-0.606172,-0.479068,0.288548,0.828996, + -0.479068,0.288548,0.828996,-0.479068,0.288548,0.828996,-0.479068,0.288548,0.828996,-0.808654,-0.510314,-0.292675, + -0.808654,-0.510314,-0.292675,-0.808654,-0.510314,-0.292675,-0.808654,-0.510314,-0.292675,0.582958,-0.218452,-0.782585, + 0.582958,-0.218452,-0.782585,0.582958,-0.218452,-0.782585,0.582958,-0.218452,-0.782585,0.834835,0.500066,0.230183, + 0.834835,0.500066,0.230183,0.834835,0.500066,0.230183,0.834835,0.500066,0.230183,-0.014872,-0.431645,0.901921, + -0.014872,-0.431645,0.901921,-0.014872,-0.431645,0.901921,-0.014872,-0.431645,0.901921,0.833371,0.513308,0.204958, + 0.833371,0.513308,0.204958,0.833371,0.513308,0.204958,0.833371,0.513308,0.204958,-0.932087,0.234057,-0.276461, + -0.932087,0.234057,-0.276461,-0.932087,0.234057,-0.276461,-0.932087,0.234057,-0.276461,-0.141427,0.306621,0.941266, + -0.141427,0.306621,0.941266,-0.141427,0.306621,0.941266,-0.141427,0.306621,0.941266,-0.932050,0.257074,-0.255335, + -0.932050,0.257074,-0.255335,-0.932050,0.257074,-0.255335,-0.932050,0.257074,-0.255335,0.163821,0.516578,-0.840422, + 0.163821,0.516578,-0.840422,0.163821,0.516578,-0.840422,0.163821,0.516578,-0.840422,-0.777174,0.191838,-0.599333, + -0.777174,0.191838,-0.599333,-0.777174,0.191838,-0.599333,-0.777174,0.191838,-0.599333,0.953049,-0.232627,0.193859, + 0.953049,-0.232627,0.193859,0.953049,-0.232627,0.193859,0.953049,-0.232627,0.193859,-0.292680,-0.489031,0.821698, + -0.292680,-0.489031,0.821698,-0.292680,-0.489031,0.821698,-0.292680,-0.489031,0.821698,-0.116824,0.192868,-0.974245, + -0.116824,0.192868,-0.974245,-0.116824,0.192868,-0.974245,-0.116824,0.192868,-0.974245,-0.214412,-0.965663,-0.146706, + -0.214412,-0.965663,-0.146706,-0.214412,-0.965663,-0.146706,-0.214412,-0.965663,-0.146706,0.977381,-0.139953,-0.158553, + 0.977381,-0.139953,-0.158553,0.977381,-0.139953,-0.158553,0.977381,-0.139953,-0.158553,0.251111,0.927375,-0.277342, + 0.251111,0.927375,-0.277342,0.251111,0.927375,-0.277342,0.251111,0.927375,-0.277342,0.946226,-0.247172,0.208717, + 0.946226,-0.247172,0.208717,0.946226,-0.247172,0.208717,0.946226,-0.247172,0.208717,0.111985,-0.296696,-0.948383, + 0.111985,-0.296696,-0.948383,0.111985,-0.296696,-0.948383,0.111985,-0.296696,-0.948383,-0.050909,-0.875487,-0.480552, + -0.050909,-0.875487,-0.480552,-0.050909,-0.875487,-0.480552,-0.050909,-0.875487,-0.480552,-0.615907,0.001436,0.787818, + -0.615907,0.001436,0.787818,-0.615907,0.001436,0.787818,-0.615907,0.001436,0.787818,-0.259893,-0.947253,-0.187529, + -0.259893,-0.947253,-0.187529,-0.259893,-0.947253,-0.187529,-0.259893,-0.947253,-0.187529,0.643993,0.127745,-0.754290, + 0.643993,0.127745,-0.754290,0.643993,0.127745,-0.754290,0.643993,0.127745,-0.754290,0.290296,0.948087,0.129840, + 0.290296,0.948087,0.129840,0.290296,0.948087,0.129840,0.290296,0.948087,0.129840,0.125768,-0.162566,0.978649, + 0.125768,-0.162566,0.978649,0.125768,-0.162566,0.978649,0.125768,-0.162566,0.978649,0.214691,0.973661,0.076762, + 0.214691,0.973661,0.076762,0.214691,0.973661,0.076762,0.214691,0.973661,0.076762,0.811200,0.490471,0.318423, + 0.811200,0.490471,0.318423,0.811200,0.490471,0.318423,0.811200,0.490471,0.318423,-0.493922,0.866140,-0.076435, + -0.493922,0.866140,-0.076435,-0.493922,0.866140,-0.076435,-0.493922,0.866140,-0.076435,0.492774,-0.866415,0.080618, + 0.492774,-0.866415,0.080618,0.492774,-0.866415,0.080618,0.492774,-0.866415,0.080618,0.820626,0.547710,0.163050, + 0.820626,0.547710,0.163050,0.820626,0.547710,0.163050,0.820626,0.547710,0.163050,-0.844980,-0.505880,-0.173477, + -0.844980,-0.505880,-0.173477,-0.844980,-0.505880,-0.173477,-0.844980,-0.505880,-0.173477,-0.173840,-0.038277,0.984030, + -0.173840,-0.038277,0.984030,-0.173840,-0.038277,0.984030,-0.173840,-0.038277,0.984030,0.192847,0.014368,-0.981124, + 0.192847,0.014368,-0.981124,0.192847,0.014368,-0.981124,0.192847,0.014368,-0.981124,-0.449760,0.855119,-0.257853, + -0.449760,0.855119,-0.257853,-0.449760,0.855119,-0.257853,-0.449760,0.855119,-0.257853,0.679849,-0.708074,0.190881, + 0.679849,-0.708074,0.190881,0.679849,-0.708074,0.190881,0.679849,-0.708074,0.190881,0.842260,0.496117,0.210871, + 0.842260,0.496117,0.210871,0.842260,0.496117,0.210871,0.842260,0.496117,0.210871,-0.842263,-0.496116,-0.210861, + -0.842263,-0.496116,-0.210861,-0.842263,-0.496116,-0.210861,-0.842263,-0.496116,-0.210861,0.220896,0.038300,-0.974545, + 0.220896,0.038300,-0.974545,0.220896,0.038300,-0.974545,0.220896,0.038300,-0.974545,-0.239126,-0.005604,0.970972, + -0.239126,-0.005604,0.970972,-0.239126,-0.005604,0.970972,-0.239126,-0.005604,0.970972,0.492535,-0.867327,0.071787, + 0.492535,-0.867327,0.071787,0.492535,-0.867327,0.071787,0.492535,-0.867327,0.071787,-0.468322,0.867358,-0.168417, + -0.468322,0.867358,-0.168417,-0.468322,0.867358,-0.168417,-0.468322,0.867358,-0.168417,-0.480947,0.868462,-0.120269, + -0.480947,0.868462,-0.120269,-0.480947,0.868462,-0.120269,-0.480947,0.868462,-0.120269,0.509013,-0.860514,0.020524, + 0.509013,-0.860514,0.020524,0.509013,-0.860514,0.020524,0.509013,-0.860514,0.020524,0.814618,0.491546,0.307862, + 0.814618,0.491546,0.307862,0.814618,0.491546,0.307862,0.814618,0.491546,0.307862,-0.828022,-0.495490,-0.262430, + -0.828022,-0.495490,-0.262430,-0.828022,-0.495490,-0.262430,-0.828022,-0.495490,-0.262430,-0.285115,-0.084185,0.954789, + -0.285115,-0.084185,0.954789,-0.285115,-0.084185,0.954789,-0.285117,-0.084185,0.954789,-0.285117,-0.084185,0.954789, + -0.285117,-0.084185,0.954789,-0.285114,-0.084188,0.954789,-0.285114,-0.084188,0.954789,-0.285114,-0.084188,0.954789, + -0.285114,-0.084188,0.954789,-0.285115,-0.084187,0.954789,-0.285115,-0.084187,0.954789,-0.285115,-0.084187,0.954789, + -0.285113,-0.084189,0.954789,-0.285113,-0.084189,0.954789,-0.285113,-0.084189,0.954789,-0.285113,-0.084187,0.954790, + -0.285113,-0.084187,0.954790,-0.285113,-0.084187,0.954790,-0.285113,-0.084187,0.954790,-0.285115,-0.084186,0.954789, + -0.285115,-0.084186,0.954789,-0.285115,-0.084186,0.954789,-0.285115,-0.084186,0.954789,0.814263,0.490718,0.310116, + 0.814263,0.490718,0.310116,0.814263,0.490718,0.310116,0.814263,0.490718,0.310116,-0.472028,0.869649,-0.144571, + -0.472028,0.869649,-0.144571,-0.472028,0.869649,-0.144571,0.840019,0.498362,0.214483,0.840019,0.498362,0.214483, + 0.840019,0.498362,0.214483,-0.796300,-0.485454,-0.360888,-0.796300,-0.485454,-0.360888,-0.796300,-0.485454,-0.360888, + 0.515744,-0.856741,-0.001830,0.515744,-0.856741,-0.001830,0.515744,-0.856741,-0.001830,-0.472028,0.869649,-0.144570, + -0.472028,0.869649,-0.144570,-0.472028,0.869649,-0.144570,-0.472026,0.869650,-0.144570,-0.472026,0.869650,-0.144570, + -0.472026,0.869650,-0.144570,-0.472026,0.869650,-0.144570,0.515746,-0.856740,-0.001832,0.515746,-0.856740,-0.001832, + 0.515746,-0.856740,-0.001832,0.515744,-0.856741,-0.001831,0.515744,-0.856741,-0.001831,0.515744,-0.856741,-0.001831, + 0.515744,-0.856741,-0.001831,0.840019,0.498362,0.214486,0.840019,0.498362,0.214486,0.840019,0.498362,0.214486, + 0.840021,0.498358,0.214487,0.840021,0.498358,0.214487,0.840021,0.498358,0.214487,0.840021,0.498358,0.214487, + -0.796299,-0.485454,-0.360890,-0.796299,-0.485454,-0.360890,-0.796299,-0.485454,-0.360890,-0.513994,0.857754,-0.008291, + -0.513994,0.857754,-0.008291,-0.513994,0.857754,-0.008291,-0.513994,0.857754,-0.008291,-0.334143,-0.113824,0.935624, + -0.334143,-0.113824,0.935624,-0.334143,-0.113824,0.935624,-0.334143,-0.113824,0.935624,-0.235039,-0.054243,0.970471, + -0.235039,-0.054243,0.970471,-0.235039,-0.054243,0.970471,-0.235039,-0.054243,0.970471,0.480423,-0.867948,0.125937, + 0.480423,-0.867948,0.125937,0.480423,-0.867948,0.125937,0.480423,-0.867948,0.125937,-0.504434,0.862706,-0.035829, + -0.504434,0.862706,-0.035829,-0.504434,0.862706,-0.035829,-0.504434,0.862706,-0.035829,0.467146,-0.867992,0.168414, + 0.467146,-0.867992,0.168414,0.467146,-0.867992,0.168414,0.467146,-0.867992,0.168414,0.842667,0.498886,0.202546, + 0.842667,0.498886,0.202546,0.842667,0.498886,0.202546,0.842667,0.498886,0.202546,-0.034921,-0.998191,0.048951, + -0.034921,-0.998191,0.048951,-0.034921,-0.998191,0.048951,-0.034921,-0.998191,0.048951,0.284363,0.066788,-0.956387, + 0.284363,0.066788,-0.956387,0.284363,0.066788,-0.956387,0.982185,-0.028612,0.185725,0.982185,-0.028612,0.185725, + 0.982185,-0.028612,0.185725,0.999244,0.020994,0.032710,0.999244,0.020994,0.032710,0.999244,0.020994,0.032710, + -0.917046,-0.067252,-0.393070,-0.917046,-0.067252,-0.393070,-0.917046,-0.067252,-0.393070,0.383593,0.015120,-0.923378, + 0.383593,0.015120,-0.923378,0.383593,0.015120,-0.923378,-0.260879,-0.003326,0.965366,-0.260879,-0.003326,0.965366, + -0.260879,-0.003326,0.965366,-0.260876,-0.003326,0.965367,-0.260876,-0.003326,0.965367,-0.260876,-0.003326,0.965367, + -0.965185,-0.018803,-0.260893,-0.965185,-0.018803,-0.260893,-0.965185,-0.018803,-0.260893,-0.113807,0.992863,-0.035642, + -0.113807,0.992863,-0.035642,-0.113807,0.992863,-0.035642,-0.113807,0.992863,-0.035642,0.258801,-0.956754,0.132828, + 0.258801,-0.956754,0.132828,0.258801,-0.956754,0.132828,0.258801,-0.956754,0.132828,0.295898,0.076844,-0.952124, + 0.295898,0.076844,-0.952124,0.295898,0.076844,-0.952124,0.937255,0.279044,0.209016,0.937255,0.279044,0.209016, + 0.937255,0.279044,0.209016,0.945978,0.319912,0.052742,0.945978,0.319912,0.052742,0.945978,0.319912,0.052742, + -0.837234,-0.366363,-0.405977,-0.837234,-0.366363,-0.405977,-0.837234,-0.366363,-0.405977,0.404305,0.059672,-0.912675, + 0.404305,0.059672,-0.912675,0.404305,0.059672,-0.912675,-0.292615,-0.008781,0.956190,-0.292615,-0.008781,0.956190, + -0.292615,-0.008781,0.956190,-0.292605,-0.008781,0.956193,-0.292605,-0.008781,0.956193,-0.292605,-0.008781,0.956193, + -0.903570,-0.324720,-0.279495,-0.903570,-0.324720,-0.279495,-0.903570,-0.324720,-0.279495,-0.399790,0.908396,-0.122410, + -0.399790,0.908396,-0.122410,-0.399790,0.908396,-0.122410,-0.399790,0.908396,-0.122410,-0.023443,0.982885,0.182723, + -0.023443,0.982885,0.182723,-0.023443,0.982885,0.182723,-0.023443,0.982885,0.182723,0.210785,0.060842,-0.975637, + 0.210785,0.060842,-0.975637,0.210785,0.060842,-0.975637,-0.951460,0.037503,-0.305479,-0.951460,0.037503,-0.305479, + -0.951460,0.037503,-0.305479,-0.891596,0.007707,-0.452767,-0.891596,0.007707,-0.452767,-0.891596,0.007707,-0.452767, + 0.990712,0.085246,0.105935,0.990712,0.085246,0.105935,0.990712,0.085246,0.105935,0.106341,0.111257,-0.988086, + 0.106341,0.111257,-0.988086,0.106341,0.111257,-0.988086,-0.233743,-0.124131,0.964342,-0.233743,-0.124131,0.964342, + -0.233743,-0.124131,0.964342,-0.233743,-0.124129,0.964342,-0.233743,-0.124129,0.964342,-0.233743,-0.124129,0.964342, + 0.971104,0.019341,0.237872,0.971104,0.019341,0.237872,0.971104,0.019341,0.237872,0.147384,-0.984084,-0.099280, + 0.147384,-0.984084,-0.099280,0.147384,-0.984084,-0.099280,0.147384,-0.984084,-0.099280,0.000736,0.992431,0.122804, + 0.000736,0.992431,0.122804,0.000736,0.992431,0.122804,0.000736,0.992431,0.122804,0.197656,-0.003200,-0.980266, + 0.197656,-0.003200,-0.980266,0.197656,-0.003200,-0.980266,-0.954812,0.040516,-0.294434,-0.954812,0.040516,-0.294434, + -0.954812,0.040516,-0.294434,-0.897792,0.000501,-0.440420,-0.897792,0.000501,-0.440420,-0.897792,0.000501,-0.440420, + 0.993793,0.068983,0.087273,0.993793,0.068983,0.087273,0.993793,0.068983,0.087273,0.094173,0.048728,-0.994363, + 0.094173,0.048728,-0.994363,0.094173,0.048728,-0.994363,-0.222155,-0.060118,0.973156,-0.222155,-0.060118,0.973156, + -0.222155,-0.060118,0.973156,-0.222154,-0.060119,0.973156,-0.222154,-0.060119,0.973156,-0.222154,-0.060119,0.973156, + 0.974696,0.011661,0.223231,0.974696,0.011661,0.223231,0.974696,0.011661,0.223231,0.124365,-0.991384,-0.041119, + 0.124365,-0.991384,-0.041119,0.124365,-0.991384,-0.041119,0.124365,-0.991384,-0.041119,-0.871892,0.472772,-0.127635, + -0.871892,0.472772,-0.127635,-0.871892,0.472772,-0.127635,-0.871892,0.472772,-0.127635,0.267709,-0.027349,-0.963112, + 0.267709,-0.027349,-0.963112,0.267709,-0.027349,-0.963112,-0.446634,-0.871389,-0.202976,-0.446634,-0.871389,-0.202976, + -0.446634,-0.871389,-0.202976,-0.359484,-0.869298,-0.339252,-0.359484,-0.869298,-0.339252,-0.359484,-0.869298,-0.339252, + 0.407363,0.912849,-0.027600,0.407363,0.912849,-0.027600,0.407363,0.912849,-0.027600,0.175454,-0.096772,-0.979720, + 0.175454,-0.096772,-0.979720,0.175454,-0.096772,-0.979720,-0.224053,-0.023930,0.974283,-0.224053,-0.023930,0.974283, + -0.224053,-0.023930,0.974283,-0.224044,-0.023930,0.974285,-0.224044,-0.023930,0.974285,-0.224044,-0.023930,0.974285, + 0.423807,0.897834,0.119502,0.423807,0.897834,0.119502,0.423807,0.897834,0.119502,0.917517,-0.347041,0.194228, + 0.917517,-0.347041,0.194228,0.917517,-0.347041,0.194228,0.917517,-0.347041,0.194228,-0.313244,0.948221,0.052480, + -0.313244,0.948221,0.052480,-0.313244,0.948221,0.052480,-0.313244,0.948221,0.052480,0.200626,-0.009647,-0.979620, + 0.200626,-0.009647,-0.979620,0.200626,-0.009647,-0.979620,-0.915333,-0.282981,-0.286508,-0.915333,-0.282981,-0.286508, + -0.915333,-0.282981,-0.286508,-0.846820,-0.313160,-0.429915,-0.846820,-0.313160,-0.429915,-0.846820,-0.313160,-0.429915, + 0.920393,0.384356,0.071749,0.920393,0.384356,0.071749,0.920393,0.384356,0.071749,0.086242,0.005928,-0.996257, + 0.086242,0.005928,-0.996257,0.086242,0.005928,-0.996257,-0.203853,-0.058498,0.977252,-0.203853,-0.058498,0.977252, + -0.203853,-0.058498,0.977252,-0.203860,-0.058499,0.977251,-0.203860,-0.058499,0.977251,-0.203860,-0.058499,0.977251, + 0.918648,0.333628,0.211607,0.918648,0.333628,0.211607,0.918648,0.333628,0.211607,0.430637,-0.902103,0.027620, + 0.430637,-0.902103,0.027620,0.430637,-0.902103,0.027620,0.430637,-0.902103,0.027620,0.000736,0.992428,0.122824, + 0.000736,0.992428,0.122824,0.000736,0.992428,0.122824,0.000736,0.992428,0.122824,0.197661,-0.003199,-0.980265, + 0.197661,-0.003199,-0.980265,0.197661,-0.003199,-0.980265,-0.954813,0.040521,-0.294434,-0.954813,0.040521,-0.294434, + -0.954813,0.040521,-0.294434,-0.897787,0.000501,-0.440429,-0.897787,0.000501,-0.440429,-0.897787,0.000501,-0.440429, + 0.993793,0.068991,0.087267,0.993793,0.068991,0.087267,0.993793,0.068991,0.087267,0.094169,0.048727,-0.994363, + 0.094169,0.048727,-0.994363,0.094169,0.048727,-0.994363,-0.222159,-0.060120,0.973155,-0.222159,-0.060120,0.973155, + -0.222159,-0.060120,0.973155,-0.222158,-0.060118,0.973156,-0.222158,-0.060118,0.973156,-0.222158,-0.060118,0.973156, + 0.974696,0.011661,0.223231,0.974696,0.011661,0.223231,0.974696,0.011661,0.223231,0.124364,-0.991385,-0.041109, + 0.124364,-0.991385,-0.041109,0.124364,-0.991385,-0.041109,0.124364,-0.991385,-0.041109,-0.430867,0.895277,0.113284, + -0.430867,0.895277,0.113284,-0.430867,0.895277,0.113284,-0.430867,0.895277,0.113284,-0.828545,-0.389860,-0.401899, + -0.828545,-0.389860,-0.401899,-0.828545,-0.389860,-0.401899,-0.828545,-0.389860,-0.401899,-0.168244,-0.281809,0.944604, + -0.168244,-0.281809,0.944604,-0.168244,-0.281809,0.944604,0.287694,0.319366,-0.902905,0.287694,0.319366,-0.902905, + 0.287694,0.319366,-0.902905,0.287694,0.319366,-0.902905,0.817839,0.338453,0.465392,0.817839,0.338453,0.465392, + 0.817839,0.338453,0.465392,0.775109,0.238399,0.585125,0.775109,0.238399,0.585125,0.775109,0.238399,0.585125, + -0.181203,-0.502629,0.845298,-0.181203,-0.502629,0.845298,-0.181203,-0.502629,0.845298,-0.936581,-0.258733,-0.236375, + -0.936581,-0.258733,-0.236375,-0.936581,-0.258733,-0.236375,-0.846053,-0.303788,-0.438073,-0.846053,-0.303788,-0.438073, + -0.846053,-0.303788,-0.438073,-0.169470,-0.283307,0.943937,-0.169470,-0.283307,0.943937,-0.169470,-0.283307,0.943937, + 0.323669,-0.921658,-0.213973,0.323669,-0.921658,-0.213973,0.323669,-0.921658,-0.213973,0.323669,-0.921658,-0.213973, + 0.287695,0.319372,-0.902903,0.287695,0.319372,-0.902903,0.287695,0.319372,-0.902903,-0.062790,0.997975,-0.010134, + -0.062790,0.997975,-0.010134,-0.062790,0.997975,-0.010134,-0.062790,0.997975,-0.010134,-0.960194,-0.100714,-0.260544, + -0.960194,-0.100714,-0.260544,-0.960194,-0.100714,-0.260544,-0.960194,-0.100714,-0.260544,-0.125314,-0.070791,0.989588, + -0.125314,-0.070791,0.989588,-0.125314,-0.070791,0.989588,0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725, + 0.254841,0.066045,-0.964725,0.254841,0.066045,-0.964725,0.940737,0.065923,0.332667,0.940737,0.065923,0.332667, + 0.940737,0.065923,0.332667,0.882120,0.005918,0.470988,0.882120,0.005918,0.470988,0.882120,0.005918,0.470988, + -0.229857,-0.281729,0.931555,-0.229857,-0.281729,0.931555,-0.229857,-0.281729,0.931555,-0.990291,0.081974,-0.112268, + -0.990291,0.081974,-0.112268,-0.990291,0.081974,-0.112268,-0.950649,-0.019934,-0.309626,-0.950649,-0.019934,-0.309626, + -0.950649,-0.019934,-0.309626,-0.127087,-0.071789,0.989290,-0.127087,-0.071789,0.989290,-0.127087,-0.071789,0.989290, + -0.059589,-0.995359,-0.075560,-0.059589,-0.995359,-0.075560,-0.059589,-0.995359,-0.075560,-0.059589,-0.995359,-0.075560, + 0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,0.254844,0.066045,-0.964724,-0.062790,0.997975,-0.010144, + -0.062790,0.997975,-0.010144,-0.062790,0.997975,-0.010144,-0.062790,0.997975,-0.010144,-0.960194,-0.100714,-0.260546, + -0.960194,-0.100714,-0.260546,-0.960194,-0.100714,-0.260546,-0.960194,-0.100714,-0.260546,-0.125318,-0.070790,0.989588, + -0.125318,-0.070790,0.989588,-0.125318,-0.070790,0.989588,0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725, + 0.254842,0.066045,-0.964725,0.254842,0.066045,-0.964725,0.940736,0.065923,0.332670,0.940736,0.065923,0.332670, + 0.940736,0.065923,0.332670,0.882123,0.005920,0.470982,0.882123,0.005920,0.470982,0.882123,0.005920,0.470982, + -0.229856,-0.281728,0.931555,-0.229856,-0.281728,0.931555,-0.229856,-0.281728,0.931555,-0.990291,0.081978,-0.112269, + -0.990291,0.081978,-0.112269,-0.990291,0.081978,-0.112269,-0.950649,-0.019934,-0.309628,-0.950649,-0.019934,-0.309628, + -0.950649,-0.019934,-0.309628,-0.127081,-0.071790,0.989291,-0.127081,-0.071790,0.989291,-0.127081,-0.071790,0.989291, + -0.059588,-0.995358,-0.075570,-0.059588,-0.995358,-0.075570,-0.059588,-0.995358,-0.075570,-0.059588,-0.995358,-0.075570, + 0.254846,0.066046,-0.964723,0.254846,0.066046,-0.964723,0.254846,0.066046,-0.964723,-0.060387,-0.993951,-0.091726, + -0.060387,-0.993951,-0.091726,-0.060387,-0.993951,-0.091726,-0.060387,-0.993951,-0.091726,-0.953764,0.202596,-0.222010, + -0.953764,0.202596,-0.222010,-0.953764,0.202596,-0.222010,0.141880,0.079068,-0.986721,0.141880,0.079068,-0.986721, + 0.141880,0.079068,-0.986721,-0.005281,0.146190,-0.989242,-0.005281,0.146190,-0.989242,-0.005281,0.146190,-0.989242, + -0.360995,-0.143505,0.921460,-0.360995,-0.143505,0.921460,-0.360995,-0.143505,0.921460,-0.930683,0.160990,-0.328500, + -0.930683,0.160990,-0.328500,-0.930683,0.160990,-0.328500,0.968759,-0.137922,0.206118,0.968759,-0.137922,0.206118, + 0.968759,-0.137922,0.206118,0.968759,-0.137922,0.206117,0.968759,-0.137922,0.206117,0.968759,-0.137922,0.206117, + -0.222457,-0.115767,0.968045,-0.222457,-0.115767,0.968045,-0.222457,-0.115767,0.968045,0.078962,0.968120,0.237715, + 0.078962,0.968120,0.237715,0.078962,0.968120,0.237715,0.078962,0.968120,0.237715,-0.486848,-0.851526,-0.194633, + -0.486848,-0.851526,-0.194633,-0.486848,-0.851526,-0.194633,-0.486848,-0.851526,-0.194633,-0.771587,0.619295,-0.145355, + -0.771587,0.619295,-0.145355,-0.771587,0.619295,-0.145355,0.158692,0.129068,-0.978856,0.158692,0.129068,-0.978856, + 0.158692,0.129068,-0.978856,0.055358,0.252837,-0.965924,0.055358,0.252837,-0.965924,0.055358,0.252837,-0.965924, + -0.384256,-0.084287,0.919371,-0.384256,-0.084287,0.919371,-0.384256,-0.084287,0.919371,-0.769257,0.585049,-0.256830, + -0.769257,0.585049,-0.256830,-0.769257,0.585049,-0.256830,0.813150,-0.566013,0.135706,0.813150,-0.566013,0.135706, + 0.813150,-0.566013,0.135706,0.813153,-0.566010,0.135704,0.813153,-0.566010,0.135704,0.813153,-0.566010,0.135704, + -0.247298,-0.124870,0.960860,-0.247298,-0.124870,0.960860,-0.247298,-0.124870,0.960860,0.492854,0.802736,0.335722, + 0.492854,0.802736,0.335722,0.492854,0.802736,0.335722,0.492854,0.802736,0.335722,-0.279102,0.929968,0.239296, + -0.279102,0.929968,0.239296,-0.279102,0.929968,0.239296,-0.279102,0.929968,0.239296,-0.938457,-0.224471,-0.262509, + -0.938457,-0.224471,-0.262509,-0.938457,-0.224471,-0.262509,-0.938457,-0.224471,-0.262509,-0.190419,-0.297847,0.935429, + -0.190419,-0.297847,0.935429,-0.190419,-0.297847,0.935429,-0.190419,-0.297847,0.935429,0.937876,0.226336,0.262984, + 0.937876,0.226336,0.262984,0.937876,0.226336,0.262984,0.937876,0.226336,0.262984,0.194019,0.298568,-0.934459, + 0.194019,0.298568,-0.934459,0.194019,0.298568,-0.934459,0.194019,0.298568,-0.934459,0.928138,0.197158,0.315736, + 0.928138,0.197158,0.315736,0.928138,0.197158,0.315736,0.928138,0.197158,0.315736,0.188840,0.360529,-0.913432, + 0.188840,0.360529,-0.913432,0.188840,0.360529,-0.913432,0.188840,0.360529,-0.913432,-0.237777,-0.342620,0.908886, + -0.237777,-0.342620,0.908886,-0.237777,-0.342620,0.908886,-0.237777,-0.342620,0.908886,-0.196373,0.943027,0.268585, + -0.196373,0.943027,0.268585,-0.196373,0.943027,0.268585,-0.898912,-0.163801,-0.406358,-0.898912,-0.163801,-0.406358, + -0.898912,-0.163801,-0.406358,-0.898912,-0.163801,-0.406358,0.911097,0.172399,0.374407,0.911097,0.172399,0.374407, + 0.911097,0.172399,0.374407,0.911097,0.172399,0.374407,-0.089171,0.908867,0.407442,-0.089171,0.908867,0.407442, + -0.089171,0.908867,0.407442,0.364562,-0.899455,-0.240987,0.364562,-0.899455,-0.240987,0.364562,-0.899455,-0.240987, + 0.459135,-0.855396,-0.239775,0.459135,-0.855396,-0.239775,0.459135,-0.855396,-0.239775,-0.108345,0.943439,0.313344, + -0.108345,0.943439,0.313344,-0.108345,0.943439,0.313344,0.360702,-0.896147,-0.258486,0.360702,-0.896147,-0.258486, + 0.360702,-0.896147,-0.258486,-0.899883,-0.174698,-0.399615,-0.899883,-0.174698,-0.399615,-0.899883,-0.174698,-0.399615, + -0.899883,-0.174698,-0.399615,-0.179536,0.922734,0.341071,-0.179536,0.922734,0.341071,-0.179536,0.922734,0.341071, + 0.461601,-0.856956,-0.229238,0.461601,-0.856956,-0.229238,0.461601,-0.856956,-0.229238,-0.949438,-0.245447,-0.195760, + -0.949438,-0.245447,-0.195760,-0.949438,-0.245447,-0.195760,-0.949438,-0.245447,-0.195760,0.926108,0.192706,0.324326, + 0.926108,0.192706,0.324326,0.926108,0.192706,0.324326,0.926108,0.192706,0.324326,-0.248286,-0.278465,0.927799, + -0.248286,-0.278465,0.927799,-0.248286,-0.278465,0.927799,-0.248286,-0.278465,0.927799,0.186609,0.357593,-0.915043, + 0.186609,0.357593,-0.915043,0.186609,0.357593,-0.915043,0.186609,0.357593,-0.915043,-0.238543,-0.345293,0.907673, + -0.238543,-0.345293,0.907673,-0.238543,-0.345293,0.907673,-0.238543,-0.345293,0.907673,0.230325,-0.939821,-0.252362, + 0.230325,-0.939821,-0.252362,0.230325,-0.939821,-0.252362,0.230325,-0.939821,-0.252362,-0.180059,-0.364108,0.913786, + -0.180059,-0.364108,0.913786,-0.180059,-0.364108,0.913786,-0.180059,-0.364108,0.913786,-0.169610,0.932925,0.317621, + -0.169610,0.932925,0.317621,-0.169610,0.932925,0.317621,0.409262,-0.890081,-0.200652,0.409262,-0.890081,-0.200652, + 0.409262,-0.890081,-0.200652,-0.188076,0.955712,0.226366,-0.188076,0.955712,0.226366,-0.188076,0.955712,0.226366, + 0.415922,-0.893426,-0.169704,0.415922,-0.893426,-0.169704,0.415922,-0.893426,-0.169704,-0.941000,-0.216152,-0.260379, + -0.941000,-0.216152,-0.260379,-0.941000,-0.216152,-0.260379,-0.941000,-0.216152,-0.260379,0.937050,0.228961,0.263654, + 0.937050,0.228961,0.263654,0.937050,0.228961,0.263654,0.937050,0.228961,0.263654,-0.909589,-0.173996,-0.377325, + -0.909589,-0.173996,-0.377325,-0.909589,-0.173996,-0.377325,-0.909589,-0.173996,-0.377325,0.406599,-0.896698,-0.174959, + 0.406599,-0.896698,-0.174959,0.406599,-0.896698,-0.174959,-0.271588,-0.343612,0.898983,-0.271588,-0.343612,0.898983, + -0.271588,-0.343612,0.898983,-0.271588,-0.343612,0.898983,-0.271959,-0.316047,0.908929,-0.271959,-0.316047,0.908929, + -0.271959,-0.316047,0.908929,-0.271959,-0.316047,0.908929,-0.196112,0.953884,0.227257,-0.196112,0.953884,0.227257, + -0.196112,0.953884,0.227257,0.400380,-0.893468,-0.203495,0.400380,-0.893468,-0.203495,0.400380,-0.893468,-0.203495, + 0.918050,0.229644,0.323183,0.918050,0.229644,0.323183,0.918050,0.229644,0.323183,0.918050,0.229644,0.323183, + 0.196381,0.291011,-0.936348,0.196381,0.291011,-0.936348,0.196381,0.291011,-0.936348,0.196381,0.291011,-0.936348, + -0.888269,-0.191590,-0.417458,-0.888269,-0.191590,-0.417458,-0.888269,-0.191590,-0.417458,-0.888269,-0.191590,-0.417458, + -0.179087,0.933187,0.311592,-0.179087,0.933187,0.311592,-0.179087,0.933187,0.311592,-0.891201,-0.201352,-0.406470, + -0.891201,-0.201352,-0.406470,-0.891201,-0.201352,-0.406470,-0.891201,-0.201352,-0.406470,-0.248164,-0.278733,0.927751, + -0.248164,-0.278733,0.927751,-0.248164,-0.278733,0.927751,-0.248164,-0.278733,0.927751,0.158140,0.276536,-0.947903, + 0.158140,0.276536,-0.947903,0.158140,0.276536,-0.947903,0.158140,0.276536,-0.947903,-0.169762,0.956255,0.238237, + -0.169762,0.956255,0.238237,-0.169762,0.956255,0.238237,0.317860,-0.920239,-0.228308,0.317860,-0.920239,-0.228308, + 0.317860,-0.920239,-0.228308,0.940201,0.189005,0.283372,0.940201,0.189005,0.283372,0.940201,0.189005,0.283372, + 0.940201,0.189005,0.283372,-0.187577,0.965435,0.180970,-0.187577,0.965435,0.180970,-0.187577,0.965435,0.180970, + -0.274456,0.934188,0.227961,-0.274456,0.934188,0.227961,-0.274456,0.934188,0.227961,0.208727,0.266458,-0.940975, + 0.208727,0.266458,-0.940975,0.208727,0.266458,-0.940975,0.208727,0.266458,-0.940975,0.921139,0.247894,0.300085, + 0.921139,0.247894,0.300085,0.921139,0.247894,0.300085,0.921139,0.247894,0.300085,0.160958,-0.939632,-0.301968, + 0.160958,-0.939632,-0.301968,0.160958,-0.939632,-0.301968,-0.301240,0.947192,0.109918,-0.301240,0.947192,0.109918, + -0.301240,0.947192,0.109918,0.148072,-0.906238,-0.395989,0.148072,-0.906238,-0.395989,0.148072,-0.906238,-0.395989, + 0.317865,-0.920242,-0.228288,0.317865,-0.920242,-0.228288,0.317865,-0.920242,-0.228288,-0.190419,-0.297848,0.935429, + -0.190419,-0.297848,0.935429,-0.190419,-0.297848,0.935429,-0.190419,-0.297848,0.935429,-0.921651,-0.181170,-0.343127, + -0.921651,-0.181170,-0.343127,-0.921651,-0.181170,-0.343127,-0.921651,-0.181170,-0.343127,-0.462470,0.849716,0.253187, + -0.462470,0.849716,0.253187,-0.462470,0.849716,0.253187,0.170073,0.307193,-0.936327,0.170073,0.307193,-0.936327, + 0.170073,0.307193,-0.936327,0.170073,0.307193,-0.936327,0.905371,0.283292,0.316306,0.905371,0.283292,0.316306, + 0.905371,0.283292,0.316306,0.905371,0.283292,0.316306,0.301115,-0.852876,-0.426536,0.301115,-0.852876,-0.426536, + 0.301115,-0.852876,-0.426536,-0.468182,0.855792,0.220057,-0.468182,0.855792,0.220057,-0.468182,0.855792,0.220057, + 0.278958,-0.804072,-0.525025,0.278958,-0.804072,-0.525025,0.278958,-0.804072,-0.525025,-0.279107,0.929966,0.239295, + -0.279107,0.929966,0.239295,-0.279107,0.929966,0.239295,-0.279107,0.929966,0.239295,-0.937418,-0.227796,-0.263356, + -0.937418,-0.227796,-0.263356,-0.937418,-0.227796,-0.263356,-0.937418,-0.227796,-0.263356,-0.190422,-0.297850,0.935427, + -0.190422,-0.297850,0.935427,-0.190422,-0.297850,0.935427,-0.190422,-0.297850,0.935427,0.937619,0.227157,0.263194, + 0.937619,0.227157,0.263194,0.937619,0.227157,0.263194,0.937619,0.227157,0.263194,0.194002,0.298621,-0.934446, + 0.194002,0.298621,-0.934446,0.194002,0.298621,-0.934446,0.194002,0.298621,-0.934446,0.926769,0.201671,0.316902, + 0.926769,0.201671,0.316902,0.926769,0.201671,0.316902,0.926769,0.201671,0.316902,0.188831,0.360528,-0.913434, + 0.188831,0.360528,-0.913434,0.188831,0.360528,-0.913434,0.188831,0.360528,-0.913434,-0.237776,-0.342613,0.908889, + -0.237776,-0.342613,0.908889,-0.237776,-0.342613,0.908889,-0.237776,-0.342613,0.908889,-0.196364,0.943014,0.268636, + -0.196364,0.943014,0.268636,-0.196364,0.943014,0.268636,-0.898911,-0.163800,-0.406360,-0.898911,-0.163800,-0.406360, + -0.898911,-0.163800,-0.406360,-0.898911,-0.163800,-0.406360,0.911095,0.172398,0.374412,0.911095,0.172398,0.374412, + 0.911095,0.172398,0.374412,0.911095,0.172398,0.374412,-0.089173,0.908867,0.407443,-0.089173,0.908867,0.407443, + -0.089173,0.908867,0.407443,0.364559,-0.899435,-0.241068,0.364559,-0.899435,-0.241068,0.364559,-0.899435,-0.241068, + 0.459134,-0.855400,-0.239762,0.459134,-0.855400,-0.239762,0.459134,-0.855400,-0.239762,-0.108346,0.943439,0.313344, + -0.108346,0.943439,0.313344,-0.108346,0.943439,0.313344,0.360706,-0.896152,-0.258464,0.360706,-0.896152,-0.258464, + 0.360706,-0.896152,-0.258464,-0.899267,-0.176675,-0.400130,-0.899267,-0.176675,-0.400130,-0.899267,-0.176675,-0.400130, + -0.899267,-0.176675,-0.400130,-0.179533,0.922742,0.341050,-0.179533,0.922742,0.341050,-0.179533,0.922742,0.341050, + 0.461594,-0.856949,-0.229281,0.461594,-0.856949,-0.229281,0.461594,-0.856949,-0.229281,-0.949439,-0.245448,-0.195757, + -0.949439,-0.245448,-0.195757,-0.949439,-0.245448,-0.195757,-0.949439,-0.245448,-0.195757,0.926110,0.192705,0.324323, + 0.926110,0.192705,0.324323,0.926110,0.192705,0.324323,0.926110,0.192705,0.324323,-0.244731,-0.290156,0.925158, + -0.244731,-0.290156,0.925158,-0.244731,-0.290156,0.925158,-0.244731,-0.290156,0.925158,0.186609,0.357592,-0.915044, + 0.186609,0.357592,-0.915044,0.186609,0.357592,-0.915044,0.186609,0.357592,-0.915044,-0.238550,-0.345292,0.907671, + -0.238550,-0.345292,0.907671,-0.238550,-0.345292,0.907671,-0.238550,-0.345292,0.907671,0.230314,-0.939823,-0.252364, + 0.230314,-0.939823,-0.252364,0.230314,-0.939823,-0.252364,0.230314,-0.939823,-0.252364,-0.179215,-0.369200,0.911906, + -0.179215,-0.369200,0.911906,-0.179215,-0.369200,0.911906,-0.179215,-0.369200,0.911906,-0.095846,0.926891,0.362887, + -0.095846,0.926891,0.362887,-0.095846,0.926891,0.362887,0.476615,-0.860906,-0.177983,0.476615,-0.860906,-0.177983, + 0.476615,-0.860906,-0.177983,-0.125166,0.967578,0.219375,-0.125166,0.967578,0.219375,-0.125166,0.967578,0.219375, + 0.485895,-0.864487,-0.128721,0.485895,-0.864487,-0.128721,0.485895,-0.864487,-0.128721,-0.940984,-0.216205,-0.260392, + -0.940984,-0.216205,-0.260392,-0.940984,-0.216205,-0.260392,-0.940984,-0.216205,-0.260392,0.935861,0.232703,0.264602, + 0.935861,0.232703,0.264602,0.935861,0.232703,0.264602,0.935861,0.232703,0.264602,-0.906871,-0.179566,-0.381237, + -0.906871,-0.179566,-0.381237,-0.906871,-0.179566,-0.381237,-0.906871,-0.179566,-0.381237,0.485888,-0.864494,-0.128698, + 0.485888,-0.864494,-0.128698,0.485888,-0.864494,-0.128698,-0.279655,-0.307013,0.909690,-0.279655,-0.307013,0.909690, + -0.279655,-0.307013,0.909690,-0.279655,-0.307013,0.909690,-0.232077,-0.400380,0.886474,-0.232077,-0.400380,0.886474, + -0.232077,-0.400380,0.886474,-0.232077,-0.400380,0.886474,-0.125162,0.967585,0.219349,-0.125162,0.967585,0.219349, + -0.125162,0.967585,0.219349,0.476611,-0.860904,-0.178004,0.476611,-0.860904,-0.178004,0.476611,-0.860904,-0.178004, + 0.926772,0.201668,0.316897,0.926772,0.201668,0.316897,0.926772,0.201668,0.316897,0.926772,0.201668,0.316897, + 0.194001,0.298619,-0.934446,0.194001,0.298619,-0.934446,0.194001,0.298619,-0.934446,0.194001,0.298619,-0.934446, + -0.892693,-0.176646,-0.414603,-0.892693,-0.176646,-0.414603,-0.892693,-0.176646,-0.414603,-0.892693,-0.176646,-0.414603, + -0.095846,0.926882,0.362909,-0.095846,0.926882,0.362909,-0.095846,0.926882,0.362909,-0.899273,-0.176674,-0.400118, + -0.899273,-0.176674,-0.400118,-0.899273,-0.176674,-0.400118,-0.899273,-0.176674,-0.400118,-0.244735,-0.290159,0.925156, + -0.244735,-0.290159,0.925156,-0.244735,-0.290159,0.925156,-0.244735,-0.290159,0.925156,0.155982,0.276458,-0.948283, + 0.155982,0.276458,-0.948283,0.155982,0.276458,-0.948283,0.155982,0.276458,-0.948283,-0.180564,0.958071,0.222476, + -0.180564,0.958071,0.222476,-0.180564,0.958071,0.222476,-0.000951,-0.951816,-0.306668,-0.000951,-0.951816,-0.306668, + -0.000951,-0.951816,-0.306668,0.938358,0.197920,0.283392,0.938358,0.197920,0.283392,0.938358,0.197920,0.283392, + 0.938358,0.197920,0.283392,-0.189133,0.963191,0.191029,-0.189133,0.963191,0.191029,-0.189133,0.963191,0.191029, + -0.286855,0.903268,0.319094,-0.286855,0.903268,0.319094,-0.286855,0.903268,0.319094,0.155673,0.348437,-0.924315, + 0.155673,0.348437,-0.924315,0.155673,0.348437,-0.924315,0.155673,0.348437,-0.924315,0.921494,0.244073,0.302121, + 0.921494,0.244073,0.302121,0.921494,0.244073,0.302121,0.921494,0.244073,0.302121,0.151972,-0.906411,-0.394110, + 0.151972,-0.906411,-0.394110,0.151972,-0.906411,-0.394110,-0.327444,0.923695,0.198918,-0.327444,0.923695,0.198918, + -0.327444,0.923695,0.198918,0.128324,-0.862825,-0.488945,0.128324,-0.862825,-0.488945,0.128324,-0.862825,-0.488945, + -0.001790,-0.951026,-0.309104,-0.001790,-0.951026,-0.309104,-0.001790,-0.951026,-0.309104,-0.078819,-0.195388,0.977554, + -0.078819,-0.195388,0.977554,-0.078819,-0.195388,0.977554,-0.078819,-0.195388,0.977554,-0.922442,-0.195140,-0.333198, + -0.922442,-0.195140,-0.333198,-0.922442,-0.195140,-0.333198,-0.922442,-0.195140,-0.333198,-0.476296,0.870212,0.125988, + -0.476296,0.870212,0.125988,-0.476296,0.870212,0.125988,0.203871,0.194596,-0.959463,0.203871,0.194596,-0.959463, + 0.203871,0.194596,-0.959463,0.203871,0.194596,-0.959463,0.908520,0.273883,0.315563,0.908520,0.273883,0.315563, + 0.908520,0.273883,0.315563,0.908520,0.273883,0.315563,0.267525,-0.852150,-0.449745,0.267525,-0.852150,-0.449745, + 0.267525,-0.852150,-0.449745,-0.478283,0.870331,0.117343,-0.478283,0.870331,0.117343,-0.478283,0.870331,0.117343, + 0.260642,-0.837499,-0.480271,0.260642,-0.837499,-0.480271,0.260642,-0.837499,-0.480271,-0.234385,0.971126,0.044482, + -0.234385,0.971126,0.044482,-0.234385,0.971126,0.044482,-0.234385,0.971126,0.044482,-0.937442,-0.227819,-0.263253, + -0.937442,-0.227819,-0.263253,-0.937442,-0.227819,-0.263253,-0.937442,-0.227819,-0.263253,-0.245544,-0.103414,0.963853, + -0.245544,-0.103414,0.963853,-0.245544,-0.103414,0.963853,-0.245544,-0.103414,0.963853,0.937611,0.227151,0.263225, + 0.937611,0.227151,0.263225,0.937611,0.227151,0.263225,0.937611,0.227151,0.263225,0.249120,0.104185,-0.962852, + 0.249120,0.104185,-0.962852,0.249120,0.104185,-0.962852,0.249120,0.104185,-0.962852,0.923115,0.212986,0.320150, + 0.923115,0.212986,0.320150,0.923115,0.212986,0.320150,0.923115,0.212986,0.320150,0.246683,0.169147,-0.954221, + 0.246683,0.169147,-0.954221,0.246683,0.169147,-0.954221,0.246683,0.169147,-0.954221,-0.294279,-0.150061,0.943865, + -0.294279,-0.150061,0.943865,-0.294279,-0.150061,0.943865,-0.294279,-0.150061,0.943865,-0.152306,0.985481,0.075036, + -0.152306,0.985481,0.075036,-0.152306,0.985481,0.075036,-0.889465,-0.194370,-0.413608,-0.889465,-0.194370,-0.413608, + -0.889465,-0.194370,-0.413608,-0.889465,-0.194370,-0.413608,0.903428,0.196084,0.381272,0.903428,0.196084,0.381272, + 0.903428,0.196084,0.381272,0.903428,0.196084,0.381272,-0.053055,0.973349,0.223106,-0.053055,0.973349,0.223106, + -0.053055,0.973349,0.223106,0.321466,-0.945727,-0.047535,0.321466,-0.945727,-0.047535,0.321466,-0.945727,-0.047535, + 0.418309,-0.906940,-0.049775,0.418309,-0.906940,-0.049775,0.418309,-0.906940,-0.049775,-0.066321,0.990152,0.123294, + -0.066321,0.990152,0.123294,-0.066321,0.990152,0.123294,0.318529,-0.945646,-0.065523,0.318529,-0.945646,-0.065523, + 0.318529,-0.945646,-0.065523,-0.890824,-0.205779,-0.405078,-0.890824,-0.205779,-0.405078,-0.890824,-0.205779,-0.405078, + -0.890824,-0.205779,-0.405078,-0.139663,0.978660,0.150727,-0.139663,0.978660,0.150727,-0.139663,0.978660,0.150727, + 0.420235,-0.906571,-0.039127,0.420235,-0.906571,-0.039127,0.420235,-0.906571,-0.039127,-0.953228,-0.231579,-0.194236, + -0.953228,-0.231579,-0.194236,-0.953228,-0.231579,-0.194236,-0.953228,-0.231579,-0.194236,0.921627,0.205657,0.329104, + 0.921627,0.205657,0.329104,0.921627,0.205657,0.329104,0.921627,0.205657,0.329104,-0.298848,-0.095182,0.949542, + -0.298848,-0.095182,0.949542,-0.298848,-0.095182,0.949542,-0.298848,-0.095182,0.949542,0.244359,0.166068,-0.955359, + 0.244359,0.166068,-0.955359,0.244359,0.166068,-0.955359,0.244359,0.166068,-0.955359,-0.295147,-0.152880,0.943141, + -0.295147,-0.152880,0.943141,-0.295147,-0.152880,0.943141,-0.295147,-0.152880,0.943141,0.185687,-0.980899,-0.057942, + 0.185687,-0.980899,-0.057942,0.185687,-0.980899,-0.057942,0.185687,-0.980899,-0.057942,-0.237529,-0.178412,0.954855, + -0.237529,-0.178412,0.954855,-0.237529,-0.178412,0.954855,-0.237529,-0.178412,0.954855,-0.056834,0.982807,0.175670, + -0.056834,0.982807,0.175670,-0.056834,0.982807,0.175670,0.432885,-0.901360,0.012695,0.432885,-0.901360,0.012695, + 0.432885,-0.901360,0.012695,-0.077840,0.996635,0.025665,-0.077840,0.996635,0.025665,-0.077840,0.996635,0.025665, + 0.439912,-0.895885,0.062184,0.439912,-0.895885,0.062184,0.439912,-0.895885,0.062184,-0.940450,-0.215712,-0.262720, + -0.940450,-0.215712,-0.262720,-0.940450,-0.215712,-0.262720,-0.940450,-0.215712,-0.262720,0.936122,0.232942,0.263465, + 0.936122,0.232942,0.263465,0.936122,0.232942,0.263465,0.936122,0.232942,0.263465,-0.899348,-0.204623,-0.386398, + -0.899348,-0.204623,-0.386398,-0.899348,-0.204623,-0.386398,-0.899348,-0.204623,-0.386398,0.439912,-0.895885,0.062184, + 0.439912,-0.895885,0.062184,0.439912,-0.895885,0.062184,-0.334022,-0.112959,0.935772,-0.334022,-0.112959,0.935772, + -0.334022,-0.112959,0.935772,-0.334022,-0.112959,0.935772,-0.291014,-0.211258,0.933103,-0.291014,-0.211258,0.933103, + -0.291014,-0.211258,0.933103,-0.291014,-0.211258,0.933103,-0.077840,0.996634,0.025718,-0.077840,0.996634,0.025718, + -0.077840,0.996634,0.025718,0.432886,-0.901360,0.012674,0.432886,-0.901360,0.012674,0.432886,-0.901360,0.012674, + 0.923114,0.212986,0.320153,0.923114,0.212986,0.320153,0.923114,0.212986,0.320153,0.923114,0.212986,0.320153, + 0.249120,0.104185,-0.962852,0.249120,0.104185,-0.962852,0.249120,0.104185,-0.962852,0.249120,0.104185,-0.962852, + -0.883668,-0.208847,-0.418943,-0.883668,-0.208847,-0.418943,-0.883668,-0.208847,-0.418943,-0.883668,-0.208847,-0.418943, + -0.056834,0.982799,0.175714,-0.056834,0.982799,0.175714,-0.056834,0.982799,0.175714,-0.890825,-0.205779,-0.405075, + -0.890825,-0.205779,-0.405075,-0.890825,-0.205779,-0.405075,-0.890825,-0.205779,-0.405075,-0.298850,-0.095183,0.949541, + -0.298850,-0.095183,0.949541,-0.298850,-0.095183,0.949541,-0.298850,-0.095183,0.949541,0.210481,0.081673,-0.974180, + 0.210481,0.081673,-0.974180,0.210481,0.081673,-0.974180,0.210481,0.081673,-0.974180,-0.133775,0.990623,0.027762, + -0.133775,0.990623,0.027762,-0.133775,0.990623,0.027762,-0.043466,-0.991733,-0.120736,-0.043466,-0.991733,-0.120736, + -0.043466,-0.991733,-0.120736,0.935829,0.202326,0.288598,0.935829,0.202326,0.288598,0.935829,0.202326,0.288598, + 0.935829,0.202326,0.288598,-0.140740,0.990036,-0.004535,-0.140740,0.990036,-0.004535,-0.140740,0.990036,-0.004535, + -0.246938,0.960623,0.127380,-0.246938,0.960623,0.127380,-0.246938,0.960623,0.127380,0.213356,0.156838,-0.964303, + 0.213356,0.156838,-0.964303,0.213356,0.156838,-0.964303,0.213356,0.156838,-0.964303,0.920907,0.251982,0.297379, + 0.920907,0.251982,0.297379,0.920907,0.251982,0.297379,0.920907,0.251982,0.297379,0.115292,-0.971467,-0.207268, + 0.115292,-0.971467,-0.207268,0.115292,-0.971467,-0.207268,-0.281310,0.959610,0.003595,-0.281310,0.959610,0.003595, + -0.281310,0.959610,0.003595,0.098108,-0.945725,-0.309805,0.098108,-0.945725,-0.309805,0.098108,-0.945725,-0.309805, + -0.044155,-0.991370,-0.123432,-0.044155,-0.991370,-0.123432,-0.044155,-0.991370,-0.123432,-0.130013,-0.000375,0.991512, + -0.130013,-0.000375,0.991512,-0.130013,-0.000375,0.991512,-0.130013,-0.000375,0.991512,-0.917748,-0.209922,-0.337151, + -0.917748,-0.209922,-0.337151,-0.917748,-0.209922,-0.337151,-0.917748,-0.209922,-0.337151,-0.429903,0.900503,-0.065399, + -0.429903,0.900503,-0.065399,-0.429903,0.900503,-0.065399,0.253966,-0.003064,-0.967208,0.253966,-0.003064,-0.967208, + 0.253966,-0.003064,-0.967208,0.253966,-0.003064,-0.967208,0.909142,0.284411,0.304254,0.909142,0.284411,0.304254, + 0.909142,0.284411,0.304254,0.909142,0.284411,0.304254,0.235954,-0.934603,-0.266165,0.235954,-0.934603,-0.266165, + 0.235954,-0.934603,-0.266165,-0.431511,0.899063,-0.074051,-0.431511,0.899063,-0.074051,-0.431511,0.899063,-0.074051, + 0.231200,-0.925739,-0.299256,0.231200,-0.925739,-0.299256,0.231200,-0.925739,-0.299256,-0.078178,0.993114,0.087253, + -0.078178,0.993114,0.087253,-0.078178,0.993114,0.087253,-0.078178,0.993114,0.087253,-0.963563,-0.066413,-0.259104, + -0.963563,-0.066413,-0.259104,-0.963563,-0.066413,-0.259104,-0.963563,-0.066413,-0.259104,-0.251547,-0.104340,0.962204, + -0.251547,-0.104340,0.962204,-0.251547,-0.104340,0.962204,-0.251547,-0.104340,0.962204,0.963626,0.065730,0.259046, + 0.963626,0.065730,0.259046,0.963626,0.065730,0.259046,0.963626,0.065730,0.259046,0.255209,0.104495,-0.961223, + 0.255209,0.104495,-0.961223,0.255209,0.104495,-0.961223,0.255209,0.104495,-0.961223,0.947505,0.051619,0.315547, + 0.947505,0.051619,0.315547,0.947505,0.051619,0.315547,0.947505,0.051619,0.315547,0.263104,0.168610,-0.949920, + 0.263104,0.168610,-0.949920,0.263104,0.168610,-0.949920,0.263104,0.168610,-0.949920,-0.307176,-0.141866,0.941019, + -0.307176,-0.141866,0.941019,-0.307176,-0.141866,0.941019,-0.307176,-0.141866,0.941019,0.005358,0.993094,0.117199, + 0.005358,0.993094,0.117199,0.005358,0.993094,0.117199,-0.912044,-0.034572,-0.408632,-0.912044,-0.034572,-0.408632, + -0.912044,-0.034572,-0.408632,-0.912044,-0.034572,-0.408632,0.925859,0.035439,0.376205,0.925859,0.035439,0.376205, + 0.925859,0.035439,0.376205,0.925859,0.035439,0.376205,0.102570,0.959271,0.263208,0.102570,0.959271,0.263208, + 0.102570,0.959271,0.263208,0.168149,-0.981598,-0.090512,0.168149,-0.981598,-0.090512,0.168149,-0.981598,-0.090512, + 0.269875,-0.958437,-0.092552,0.269875,-0.958437,-0.092552,0.269875,-0.958437,-0.092552,0.091372,0.982145,0.164444, + 0.091372,0.982145,0.164444,0.091372,0.982145,0.164444,0.165126,-0.980296,-0.108411,0.165126,-0.980296,-0.108411, + 0.165126,-0.980296,-0.108411,-0.915119,-0.045975,-0.400553,-0.915119,-0.045975,-0.400553,-0.915119,-0.045975,-0.400553, + -0.915119,-0.045975,-0.400553,0.017333,0.981156,0.192436,0.017333,0.981156,0.192436,0.017333,0.981156,0.192436, + 0.271923,-0.958834,-0.081825,0.271923,-0.958834,-0.081825,0.271923,-0.958834,-0.081825,-0.979228,-0.070574,-0.190086, + -0.979228,-0.070574,-0.190086,-0.979228,-0.070574,-0.190086,-0.979228,-0.070574,-0.190086,0.944949,0.044241,0.324214, + 0.944949,0.044241,0.324214,0.944949,0.044241,0.324214,0.944949,0.044241,0.324214,-0.302999,-0.087240,0.948989, + -0.302999,-0.087240,0.948989,-0.302999,-0.087240,0.948989,-0.302999,-0.087240,0.948989,0.260306,0.165984,-0.951152, + 0.260306,0.165984,-0.951152,0.260306,0.165984,-0.951152,0.260306,0.165984,-0.951152,-0.308482,-0.144480,0.940194, + -0.308482,-0.144480,0.940194,-0.308482,-0.144480,0.940194,-0.308482,-0.144480,0.940194,0.028463,-0.994539,-0.100410, + 0.028463,-0.994539,-0.100410,0.028463,-0.994539,-0.100410,0.028463,-0.994539,-0.100410,-0.255512,-0.179217,0.950050, + -0.255512,-0.179217,0.950050,-0.255512,-0.179217,0.950050,-0.255512,-0.179217,0.950050,0.099969,0.971198,0.216290, + 0.099969,0.971198,0.216290,0.099969,0.971198,0.216290,0.285615,-0.957872,-0.030087,0.285615,-0.957872,-0.030087, + 0.285615,-0.957872,-0.030087,0.080287,0.994493,0.067357,0.080287,0.994493,0.067357,0.080287,0.994493,0.067357, + 0.293780,-0.955673,0.019537,0.293780,-0.955673,0.019537,0.293780,-0.955673,0.019537,-0.964624,-0.054020,-0.258037, + -0.964624,-0.054020,-0.258037,-0.964624,-0.054020,-0.258037,-0.964624,-0.054020,-0.258037,0.963068,0.071670,0.259544, + 0.963068,0.071670,0.259544,0.963068,0.071670,0.259544,0.963068,0.071670,0.259544,-0.923212,-0.044290,-0.381730, + -0.923212,-0.044290,-0.381730,-0.923212,-0.044290,-0.381730,-0.923212,-0.044290,-0.381730,0.293786,-0.955674,0.019446, + 0.293786,-0.955674,0.019446,0.293786,-0.955674,0.019446,-0.340638,-0.098672,0.935003,-0.340638,-0.098672,0.935003, + -0.340638,-0.098672,0.935003,-0.340638,-0.098672,0.935003,-0.313663,-0.202301,0.927734,-0.313663,-0.202301,0.927734, + -0.313663,-0.202301,0.927734,-0.313663,-0.202301,0.927734,0.080277,0.994494,0.067357,0.080277,0.994494,0.067357, + 0.080277,0.994494,0.067357,0.285614,-0.957874,-0.030045,0.285614,-0.957874,-0.030045,0.285614,-0.957874,-0.030045, + 0.947504,0.051618,0.315550,0.947504,0.051618,0.315550,0.947504,0.051618,0.315550,0.947504,0.051618,0.315550, + 0.255208,0.104497,-0.961223,0.255208,0.104497,-0.961223,0.255208,0.104497,-0.961223,0.255208,0.104497,-0.961223, + -0.908638,-0.049541,-0.414635,-0.908638,-0.049541,-0.414635,-0.908638,-0.049541,-0.414635,-0.908638,-0.049541,-0.414635, + 0.099963,0.971190,0.216326,0.099963,0.971190,0.216326,0.099963,0.971190,0.216326,-0.915120,-0.045978,-0.400551, + -0.915120,-0.045978,-0.400551,-0.915120,-0.045978,-0.400551,-0.915120,-0.045978,-0.400551,-0.302996,-0.087239,0.948990, + -0.302996,-0.087239,0.948990,-0.302996,-0.087239,0.948990,-0.302996,-0.087239,0.948990,0.213421,0.088831,-0.972913, + 0.213421,0.088831,-0.972913,0.213421,0.088831,-0.972913,0.213421,0.088831,-0.972913,0.024109,0.997260,0.069936, + 0.024109,0.997260,0.069936,0.024109,0.997260,0.069936,-0.200011,-0.966581,-0.160362,-0.200011,-0.966581,-0.160362, + -0.200011,-0.966581,-0.160362,0.958145,0.040439,0.283413,0.958145,0.040439,0.283413,0.958145,0.040439,0.283413, + 0.958145,0.040439,0.283413,0.016893,0.999145,0.037736,0.016893,0.999145,0.037736,0.016893,0.999145,0.037736, + -0.091615,0.981192,0.169906,-0.091615,0.981192,0.169906,-0.091615,0.981192,0.169906,0.228172,0.162127,-0.960027, + 0.228172,0.162127,-0.960027,0.228172,0.162127,-0.960027,0.228172,0.162127,-0.960027,0.951298,0.091405,0.294411, + 0.951298,0.091405,0.294411,0.951298,0.091405,0.294411,0.951298,0.091405,0.294411,-0.040693,-0.967849,-0.248218, + -0.040693,-0.967849,-0.248218,-0.040693,-0.967849,-0.248218,-0.126646,0.990857,0.046506,-0.126646,0.990857,0.046506, + -0.126646,0.990857,0.046506,-0.054370,-0.935408,-0.349364,-0.054370,-0.935408,-0.349364,-0.054370,-0.935408,-0.349364, + -0.200658,-0.966007,-0.162992,-0.200658,-0.966007,-0.162992,-0.200658,-0.966007,-0.162992,-0.121039,-0.021988,0.992404, + -0.121039,-0.021988,0.992404,-0.121039,-0.021988,0.992404,-0.121039,-0.021988,0.992404,-0.941849,-0.048716,-0.332487, + -0.941849,-0.048716,-0.332487,-0.941849,-0.048716,-0.332487,-0.941849,-0.048716,-0.332487,-0.283198,0.958794,-0.022641, + -0.283198,0.958794,-0.022641,-0.283198,0.958794,-0.022641,0.243076,-0.001900,-0.970005,0.243076,-0.001900,-0.970005, + 0.243076,-0.001900,-0.970005,0.243076,-0.001900,-0.970005,0.944840,0.124958,0.302758,0.944840,0.124958,0.302758, + 0.944840,0.124958,0.302758,0.944840,0.124958,0.302758,0.083832,-0.947921,-0.307275,0.083832,-0.947921,-0.307275, + 0.083832,-0.947921,-0.307275,-0.285086,0.957993,-0.031237,-0.285086,0.957993,-0.031237,-0.285086,0.957993,-0.031237, + 0.080284,-0.937055,-0.339826,0.080284,-0.937055,-0.339826,0.080284,-0.937055,-0.339826,-0.127367,0.951268,0.280833, + -0.127367,0.951268,0.280833,-0.127367,0.951268,0.280833,-0.127367,0.951268,0.280833,-0.963537,-0.066392,-0.259207, + -0.963537,-0.066392,-0.259207,-0.963537,-0.066392,-0.259207,-0.963537,-0.066392,-0.259207,-0.227951,-0.303635,0.925118, + -0.227951,-0.303635,0.925118,-0.227951,-0.303635,0.925118,-0.227951,-0.303635,0.925118,0.963634,0.065737,0.259016, + 0.963634,0.065737,0.259016,0.963634,0.065737,0.259016,0.963634,0.065737,0.259016,0.231617,0.303792,-0.924156, + 0.231617,0.303792,-0.924156,0.231617,0.303792,-0.924156,0.231617,0.303792,-0.924156,0.949309,0.040012,0.311788, + 0.949309,0.040012,0.311788,0.949309,0.040012,0.311788,0.949309,0.040012,0.311788,0.236418,0.364795,-0.900572, + 0.236418,0.364795,-0.900572,0.236418,0.364795,-0.900572,0.236418,0.364795,-0.900572,-0.281966,-0.339243,0.897446, + -0.281966,-0.339243,0.897446,-0.281966,-0.339243,0.897446,-0.281966,-0.339243,0.897446,-0.043392,0.949911,0.309493, + -0.043392,0.949911,0.309493,-0.043392,0.949911,0.309493,-0.916506,-0.003235,-0.400009,-0.916506,-0.003235,-0.400009, + -0.916506,-0.003235,-0.400009,-0.916506,-0.003235,-0.400009,0.929653,0.011156,0.368267,0.929653,0.011156,0.368267, + 0.929653,0.011156,0.368267,0.929653,0.011156,0.368267,0.058122,0.893488,0.445310,0.058122,0.893488,0.445310, + 0.058122,0.893488,0.445310,0.216551,-0.934506,-0.282496,0.216551,-0.934506,-0.282496,0.216551,-0.934506,-0.282496, + 0.316897,-0.905936,-0.280814,0.316897,-0.905936,-0.280814,0.316897,-0.905936,-0.280814,0.043934,0.934600,0.352977, + 0.043934,0.934600,0.352977,0.043934,0.934600,0.352977,0.213132,-0.929895,-0.299783,0.213132,-0.929895,-0.299783, + 0.213132,-0.929895,-0.299783,-0.918841,-0.016144,-0.394298,-0.918841,-0.016144,-0.394298,-0.918841,-0.016144,-0.394298, + -0.918841,-0.016144,-0.394298,-0.029422,0.924182,0.380818,-0.029422,0.924182,0.380818,-0.029422,0.924182,0.380818, + 0.319158,-0.908311,-0.270386,0.319158,-0.908311,-0.270386,0.319158,-0.908311,-0.270386,-0.977682,-0.084790,-0.192221, + -0.977682,-0.084790,-0.192221,-0.977682,-0.084790,-0.192221,-0.977682,-0.084790,-0.192221,0.947298,0.030959,0.318855, + 0.947298,0.030959,0.318855,0.947298,0.030959,0.318855,0.947298,0.030959,0.318855,-0.280449,-0.287081,0.915933, + -0.280449,-0.287081,0.915933,-0.280449,-0.287081,0.915933,-0.280449,-0.287081,0.915933,0.233747,0.362318,-0.902268, + 0.233747,0.362318,-0.902268,0.233747,0.362318,-0.902268,0.233747,0.362318,-0.902268,-0.283150,-0.341712,0.896136, + -0.283150,-0.341712,0.896136,-0.283150,-0.341712,0.896136,-0.283150,-0.341712,0.896136,0.077546,-0.952776,-0.293606, + 0.077546,-0.952776,-0.293606,0.077546,-0.952776,-0.293606,0.077546,-0.952776,-0.293606,-0.228296,-0.374801,0.898557, + -0.228296,-0.374801,0.898557,-0.228296,-0.374801,0.898557,-0.228296,-0.374801,0.898557,0.054037,0.914202,0.401640, + 0.054037,0.914202,0.401640,0.054037,0.914202,0.401640,0.333746,-0.916742,-0.219539,0.333746,-0.916742,-0.219539, + 0.333746,-0.916742,-0.219539,0.030424,0.965050,0.260296,0.030424,0.965050,0.260296,0.030424,0.965050,0.260296, + 0.342712,-0.923820,-0.170604,0.342712,-0.923820,-0.170604,0.342712,-0.923820,-0.170604,-0.965212,-0.054521,-0.255723, + -0.965212,-0.054521,-0.255723,-0.965212,-0.054521,-0.255723,-0.965212,-0.054521,-0.255723,0.962781,0.071425,0.260673, + 0.962781,0.071425,0.260673,0.962781,0.071425,0.260673,0.962781,0.071425,0.260673,-0.926657,-0.018603,-0.375448, + -0.926657,-0.018603,-0.375448,-0.926657,-0.018603,-0.375448,-0.926657,-0.018603,-0.375448,0.342713,-0.923822,-0.170591, + 0.342713,-0.923822,-0.170591,0.342713,-0.923822,-0.170591,-0.317702,-0.297577,0.900285,-0.317702,-0.297577,0.900285, + -0.317702,-0.297577,0.900285,-0.317702,-0.297577,0.900285,-0.285595,-0.396185,0.872624,-0.285595,-0.396185,0.872624, + -0.285595,-0.396185,0.872624,-0.285595,-0.396185,0.872624,0.030424,0.965043,0.260320,0.030424,0.965043,0.260320, + 0.030424,0.965043,0.260320,0.333740,-0.916730,-0.219598,0.333740,-0.916730,-0.219598,0.333740,-0.916730,-0.219598, + 0.949309,0.040016,0.311788,0.949309,0.040016,0.311788,0.949309,0.040016,0.311788,0.949309,0.040016,0.311788, + 0.231619,0.303793,-0.924155,0.231619,0.303793,-0.924155,0.231619,0.303793,-0.924155,0.231619,0.303793,-0.924155, + -0.912447,-0.016536,-0.408861,-0.912447,-0.016536,-0.408861,-0.912447,-0.016536,-0.408861,-0.912447,-0.016536,-0.408861, + 0.054035,0.914208,0.401627,0.054035,0.914208,0.401627,0.054035,0.914208,0.401627,-0.918841,-0.016144,-0.394298, + -0.918841,-0.016144,-0.394298,-0.918841,-0.016144,-0.394298,-0.918841,-0.016144,-0.394298,-0.280447,-0.287081,0.915933, + -0.280447,-0.287081,0.915933,-0.280447,-0.287081,0.915933,-0.280447,-0.287081,0.915933,0.190481,0.288485,-0.938346, + 0.190481,0.288485,-0.938346,0.190481,0.288485,-0.938346,0.190481,0.288485,-0.938346,-0.025760,0.964233,0.263803, + -0.025760,0.964233,0.263803,-0.025760,0.964233,0.263803,-0.153131,-0.926008,-0.345052,-0.153131,-0.926008,-0.345052, + -0.153131,-0.926008,-0.345052,0.959911,0.035918,0.277996,0.959911,0.035918,0.277996,0.959911,0.035918,0.277996, + 0.959911,0.035918,0.277996,-0.033658,0.971977,0.232652,-0.033658,0.971977,0.232652,-0.033658,0.971977,0.232652, + -0.138631,0.922759,0.359580,-0.138631,0.922759,0.359580,-0.138631,0.922759,0.359580,0.201688,0.358541,-0.911466, + 0.201688,0.358541,-0.911466,0.201688,0.358541,-0.911466,0.201688,0.358541,-0.911466,0.950663,0.083306,0.298831, + 0.950663,0.083306,0.298831,0.950663,0.083306,0.298831,0.950663,0.083306,0.298831,0.004375,-0.901488,-0.432782, + 0.004375,-0.901488,-0.432782,0.004375,-0.901488,-0.432782,-0.176391,0.954384,0.240910,-0.176391,0.954384,0.240910, + -0.176391,0.954384,0.240910,-0.012824,-0.850746,-0.525421,-0.012824,-0.850746,-0.525421,-0.012824,-0.850746,-0.525421, + -0.153849,-0.924948,-0.347566,-0.153849,-0.924948,-0.347566,-0.153849,-0.924948,-0.347566,-0.101298,-0.221853,0.969804, + -0.101298,-0.221853,0.969804,-0.101298,-0.221853,0.969804,-0.101298,-0.221853,0.969804,-0.944126,-0.033560,-0.327871, + -0.944126,-0.033560,-0.327871,-0.944126,-0.033560,-0.327871,-0.944126,-0.033560,-0.327871,-0.332366,0.928071,0.167981, + -0.332366,0.928071,0.167981,-0.332366,0.928071,0.167981,0.224791,0.200664,-0.953521,0.224791,0.200664,-0.953521, + 0.224791,0.200664,-0.953521,0.224791,0.200664,-0.953521,0.942653,0.114188,0.313635,0.942653,0.114188,0.313635, + 0.942653,0.114188,0.313635,0.942653,0.114188,0.313635,0.126601,-0.863734,-0.487787,0.126601,-0.863734,-0.487787, + 0.126601,-0.863734,-0.487787,-0.334355,0.928864,0.159435,-0.334355,0.928864,0.159435,-0.334355,0.928864,0.159435, + 0.121901,-0.846943,-0.517520,0.121901,-0.846943,-0.517520,0.121901,-0.846943,-0.517520,-0.127359,0.951268,0.280835, + -0.127359,0.951268,0.280835,-0.127359,0.951268,0.280835,-0.127359,0.951268,0.280835,-0.964033,-0.062983,-0.258210, + -0.964033,-0.062983,-0.258210,-0.964033,-0.062983,-0.258210,-0.964033,-0.062983,-0.258210,-0.227948,-0.303636,0.925119, + -0.227948,-0.303636,0.925119,-0.227948,-0.303636,0.925119,-0.227948,-0.303636,0.925119,0.963757,0.064895,0.258770, + 0.963757,0.064895,0.258770,0.963757,0.064895,0.258770,0.963757,0.064895,0.258770,0.231628,0.303738,-0.924171, + 0.231628,0.303738,-0.924171,0.231628,0.303738,-0.924171,0.231628,0.303738,-0.924171,0.949939,0.035399,0.310423, + 0.949939,0.035399,0.310423,0.949939,0.035399,0.310423,0.949939,0.035399,0.310423,0.236422,0.364799,-0.900570, + 0.236422,0.364799,-0.900570,0.236422,0.364799,-0.900570,0.236422,0.364799,-0.900570,-0.281965,-0.339244,0.897446, + -0.281965,-0.339244,0.897446,-0.281965,-0.339244,0.897446,-0.281965,-0.339244,0.897446,-0.043401,0.949911,0.309491, + -0.043401,0.949911,0.309491,-0.043401,0.949911,0.309491,-0.916505,-0.003233,-0.400011,-0.916505,-0.003233,-0.400011, + -0.916505,-0.003233,-0.400011,-0.916505,-0.003233,-0.400011,0.929651,0.011157,0.368273,0.929651,0.011157,0.368273, + 0.929651,0.011157,0.368273,0.929651,0.011157,0.368273,0.058125,0.893514,0.445258,0.058125,0.893514,0.445258, + 0.058125,0.893514,0.445258,0.216553,-0.934501,-0.282511,0.216553,-0.934501,-0.282511,0.216553,-0.934501,-0.282511, + 0.316892,-0.905942,-0.280799,0.316892,-0.905942,-0.280799,0.316892,-0.905942,-0.280799,0.043934,0.934591,0.353000, + 0.043934,0.934591,0.353000,0.043934,0.934591,0.353000,0.213130,-0.929896,-0.299782,0.213130,-0.929896,-0.299782, + 0.213130,-0.929896,-0.299782,-0.919131,-0.014124,-0.393699,-0.919131,-0.014124,-0.393699,-0.919131,-0.014124,-0.393699, + -0.919131,-0.014124,-0.393699,-0.029431,0.924179,0.380825,-0.029431,0.924179,0.380825,-0.029431,0.924179,0.380825, + 0.319151,-0.908313,-0.270388,0.319151,-0.908313,-0.270388,0.319151,-0.908313,-0.270388,-0.977683,-0.084789,-0.192218, + -0.977683,-0.084789,-0.192218,-0.977683,-0.084789,-0.192218,-0.977683,-0.084789,-0.192218,0.947298,0.030959,0.318855, + 0.947298,0.030959,0.318855,0.947298,0.030959,0.318855,0.947298,0.030959,0.318855,-0.282100,-0.275102,0.919097, + -0.282100,-0.275102,0.919097,-0.282100,-0.275102,0.919097,-0.282100,-0.275102,0.919097,0.233745,0.362319,-0.902269, + 0.233745,0.362319,-0.902269,0.233745,0.362319,-0.902269,0.233745,0.362319,-0.902269,-0.283152,-0.341716,0.896133, + -0.283152,-0.341716,0.896133,-0.283152,-0.341716,0.896133,-0.283152,-0.341716,0.896133,0.077546,-0.952775,-0.293608, + 0.077546,-0.952775,-0.293608,0.077546,-0.952775,-0.293608,0.077546,-0.952775,-0.293608,-0.228318,-0.369722,0.900653, + -0.228318,-0.369722,0.900653,-0.228318,-0.369722,0.900653,-0.228318,-0.369722,0.900653,-0.018190,0.933663,0.357690, + -0.018190,0.933663,0.357690,-0.018190,0.933663,0.357690,0.262468,-0.933991,-0.242429,0.262468,-0.933991,-0.242429, + 0.262468,-0.933991,-0.242429,-0.033517,0.962909,0.267736,-0.033517,0.962909,0.267736,-0.033517,0.962909,0.267736, + 0.268742,-0.939652,-0.211737,0.268742,-0.939652,-0.211737,0.268742,-0.939652,-0.211737,-0.965219,-0.054468,-0.255707, + -0.965219,-0.054468,-0.255707,-0.965219,-0.054468,-0.255707,-0.965219,-0.054468,-0.255707,0.963360,0.067586,0.259555, + 0.963360,0.067586,0.259555,0.963360,0.067586,0.259555,0.963360,0.067586,0.259555,-0.928435,-0.012845,-0.371274, + -0.928435,-0.012845,-0.371274,-0.928435,-0.012845,-0.371274,-0.928435,-0.012845,-0.371274,0.258987,-0.941189,-0.216999, + 0.258987,-0.941189,-0.216999,0.258987,-0.941189,-0.216999,-0.315578,-0.334500,0.887987,-0.315578,-0.334500,0.887987, + -0.315578,-0.334500,0.887987,-0.315578,-0.334500,0.887987,-0.311533,-0.307663,0.899050,-0.311533,-0.307663,0.899050, + -0.311533,-0.307663,0.899050,-0.311533,-0.307663,0.899050,-0.041740,0.962351,0.268586,-0.041740,0.962351,0.268586, + -0.041740,0.962351,0.268586,0.253139,-0.935814,-0.245302,0.253139,-0.935814,-0.245302,0.253139,-0.935814,-0.245302, + 0.945148,0.068721,0.319330,0.945148,0.068721,0.319330,0.945148,0.068721,0.319330,0.945148,0.068721,0.319330, + 0.232754,0.295995,-0.926398,0.232754,0.295995,-0.926398,0.232754,0.295995,-0.926398,0.232754,0.295995,-0.926398, + -0.910453,-0.031855,-0.412384,-0.910453,-0.031855,-0.412384,-0.910453,-0.031855,-0.412384,-0.910453,-0.031855,-0.412384, + -0.027555,0.935667,0.351807,-0.027555,0.935667,0.351807,-0.027555,0.935667,0.351807,-0.914805,-0.041489,-0.401759, + -0.914805,-0.041489,-0.401759,-0.914805,-0.041489,-0.401759,-0.914805,-0.041489,-0.401759,-0.282021,-0.275382,0.919037, + -0.282021,-0.275382,0.919037,-0.282021,-0.275382,0.919037,-0.282021,-0.275382,0.919037,0.192625,0.288204,-0.937995, + 0.192625,0.288204,-0.937995,0.192625,0.288204,-0.937995,0.192625,0.288204,-0.937995,-0.015268,0.960086,0.279288, + -0.015268,0.960086,0.279288,-0.015268,0.960086,0.279288,0.167259,-0.948226,-0.269985,0.167259,-0.948226,-0.269985, + 0.167259,-0.948226,-0.269985,0.960326,0.026835,0.277584,0.960326,0.026835,0.277584,0.960326,0.026835,0.277584, + 0.960326,0.026835,0.277584,-0.031842,0.974358,0.222739,-0.031842,0.974358,0.222739,-0.031842,0.974358,0.222739, + -0.122206,0.955170,0.269658,-0.122206,0.955170,0.269658,-0.122206,0.955170,0.269658,0.241044,0.270024,-0.932194, + 0.241044,0.270024,-0.932194,0.241044,0.270024,-0.932194,0.241044,0.270024,-0.932194,0.950900,0.087219,0.296954, + 0.950900,0.087219,0.296954,0.950900,0.087219,0.296954,0.950900,0.087219,0.296954,0.008709,-0.939600,-0.342164, + 0.008709,-0.939600,-0.342164,0.008709,-0.939600,-0.342164,-0.147496,0.977226,0.152561,-0.147496,0.977226,0.152561, + -0.147496,0.977226,0.152561,0.000541,-0.900641,-0.434563,0.000541,-0.900641,-0.434563,0.000541,-0.900641,-0.434563, + 0.167251,-0.948226,-0.269990,0.167251,-0.948226,-0.269990,0.167251,-0.948226,-0.269990,-0.227945,-0.303632,0.925121, + -0.227945,-0.303632,0.925121,-0.227945,-0.303632,0.925121,-0.227945,-0.303632,0.925121,-0.941221,-0.019487,-0.337229, + -0.941221,-0.019487,-0.337229,-0.941221,-0.019487,-0.337229,-0.941221,-0.019487,-0.337229,-0.320969,0.900284,0.294052, + -0.320969,0.900284,0.294052,-0.320969,0.900284,0.294052,0.209327,0.316092,-0.925348,0.209327,0.316092,-0.925348, + 0.209327,0.316092,-0.925348,0.209327,0.316092,-0.925348,0.941029,0.123938,0.314808,0.941029,0.123938,0.314808, + 0.941029,0.123938,0.314808,0.941029,0.123938,0.314808,0.159835,-0.870690,-0.465136,0.159835,-0.870690,-0.465136, + 0.159835,-0.870690,-0.465136,-0.325912,0.908601,0.261199,-0.325912,0.908601,0.261199,-0.325912,0.908601,0.261199, + 0.144914,-0.814910,-0.561179,0.144914,-0.814910,-0.561179,0.144914,-0.814910,-0.561179,-0.297694,0.954644,-0.005714, + -0.297694,0.954644,-0.005714,-0.297694,0.954644,-0.005714,-0.297694,0.954644,-0.005714,-0.925755,-0.303892,-0.225006, + -0.925755,-0.303892,-0.225006,-0.925755,-0.303892,-0.225006,-0.925755,-0.303892,-0.225006,-0.216555,-0.061699,0.974319, + -0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,0.925969,0.303236,0.225012, + 0.925969,0.303236,0.225012,0.925969,0.303236,0.225012,0.925969,0.303236,0.225012,0.220098,0.062761,-0.973457, + 0.220098,0.062761,-0.973457,0.220098,0.062761,-0.973457,0.220098,0.062761,-0.973457,0.913720,0.291569,0.283025, + 0.913720,0.291569,0.283025,0.913720,0.291569,0.283025,0.913720,0.291569,0.283025,0.213522,0.127822,-0.968540, + 0.213522,0.127822,-0.968540,0.213522,0.127822,-0.968540,0.213522,0.127822,-0.968540,-0.262504,-0.112541,0.958346, + -0.262504,-0.112541,0.958346,-0.262504,-0.112541,0.958346,-0.262504,-0.112541,0.958346,-0.216101,0.976128,0.021779, + -0.216101,0.976128,0.021779,-0.216101,0.976128,0.021779,-0.883481,-0.276387,-0.378248,-0.883481,-0.276387,-0.378248, + -0.883481,-0.276387,-0.378248,-0.883481,-0.276387,-0.378248,0.896573,0.277078,0.345520,0.896573,0.277078,0.345520, + 0.896573,0.277078,0.345520,0.896573,0.277078,0.345520,-0.112983,0.979344,0.167691,-0.112983,0.979344,0.167691, + -0.112983,0.979344,0.167691,0.382797,-0.923832,-0.001099,0.382797,-0.923832,-0.001099,0.382797,-0.923832,-0.001099, + 0.476754,-0.878999,-0.008123,0.476754,-0.878999,-0.008123,0.476754,-0.878999,-0.008123,-0.129559,0.989274,0.067462, + -0.129559,0.989274,0.067462,-0.129559,0.989274,0.067462,0.379459,-0.925015,-0.018947,0.379459,-0.925015,-0.018947, + 0.379459,-0.925015,-0.018947,-0.883886,-0.287331,-0.369034,-0.883886,-0.287331,-0.369034,-0.883886,-0.287331,-0.369034, + -0.883886,-0.287331,-0.369034,-0.201345,0.974662,0.097432,-0.201345,0.974662,0.097432,-0.201345,0.974662,0.097432, + 0.478892,-0.877870,0.002493,0.478892,-0.877870,0.002493,0.478892,-0.877870,0.002493,-0.939713,-0.304561,-0.155505, + -0.939713,-0.304561,-0.155505,-0.939713,-0.304561,-0.155505,-0.939713,-0.304561,-0.155505,0.912928,0.284701,0.292416, + 0.912928,0.284701,0.292416,0.912928,0.284701,0.292416,0.912928,0.284701,0.292416,-0.270600,-0.057837,0.960953, + -0.270600,-0.057837,0.960953,-0.270600,-0.057837,0.960953,-0.270600,-0.057837,0.960953,0.211382,0.124537,-0.969437, + 0.211382,0.124537,-0.969437,0.211382,0.124537,-0.969437,0.211382,0.124537,-0.969437,-0.263200,-0.115450,0.957809, + -0.263200,-0.115450,0.957809,-0.263200,-0.115450,0.957809,-0.263200,-0.115450,0.957809,0.249480,-0.968362,-0.005871, + 0.249480,-0.968362,-0.005871,0.249480,-0.968362,-0.005871,0.249480,-0.968362,-0.005871,-0.203751,-0.136416,0.969472, + -0.203751,-0.136416,0.969472,-0.203751,-0.136416,0.969472,-0.203751,-0.136416,0.969472,-0.118448,0.985697,0.119883, + -0.118448,0.985697,0.119883,-0.118448,0.985697,0.119883,0.492312,-0.868770,0.053541,0.492312,-0.868770,0.053541, + 0.492312,-0.868770,0.053541,-0.143663,0.989172,-0.030005,-0.143663,0.989172,-0.030005,-0.143663,0.989172,-0.030005, + 0.500062,-0.859910,0.102434,0.500062,-0.859910,0.102434,0.500062,-0.859910,0.102434,-0.929553,-0.291998,-0.225097, + -0.929553,-0.291998,-0.225097,-0.929553,-0.291998,-0.225097,-0.929553,-0.291998,-0.225097,0.924100,0.308922,0.224957, + 0.924100,0.308922,0.224957,0.924100,0.308922,0.224957,0.924100,0.308922,0.224957,-0.892046,-0.285624,-0.350247, + -0.892046,-0.285624,-0.350247,-0.892046,-0.285624,-0.350247,-0.892046,-0.285624,-0.350247,0.500060,-0.859911,0.102432, + 0.500060,-0.859911,0.102432,0.500060,-0.859911,0.102432,-0.304806,-0.078663,0.949161,-0.304806,-0.078663,0.949161, + -0.304806,-0.078663,0.949161,-0.304806,-0.078663,0.949161,-0.255399,-0.173925,0.951063,-0.255399,-0.173925,0.951063, + -0.255399,-0.173925,0.951063,-0.255399,-0.173925,0.951063,-0.143659,0.989172,-0.030004,-0.143659,0.989172,-0.030004, + -0.143659,0.989172,-0.030004,0.492317,-0.868768,0.053541,0.492317,-0.868768,0.053541,0.492317,-0.868768,0.053541, + 0.913721,0.291567,0.283024,0.913721,0.291567,0.283024,0.913721,0.291567,0.283024,0.913721,0.291567,0.283024, + 0.220098,0.062760,-0.973457,0.220098,0.062760,-0.973457,0.220098,0.062760,-0.973457,0.220098,0.062760,-0.973457, + -0.876849,-0.290744,-0.382889,-0.876849,-0.290744,-0.382889,-0.876849,-0.290744,-0.382889,-0.876849,-0.290744,-0.382889, + -0.118447,0.985696,0.119893,-0.118447,0.985696,0.119893,-0.118447,0.985696,0.119893,-0.883886,-0.287330,-0.369035, + -0.883886,-0.287330,-0.369035,-0.883886,-0.287330,-0.369035,-0.883886,-0.287330,-0.369035,-0.270601,-0.057837,0.960953, + -0.270601,-0.057837,0.960953,-0.270601,-0.057837,0.960953,-0.270601,-0.057837,0.960953,0.182804,0.037135,-0.982448, + 0.182804,0.037135,-0.982448,0.182804,0.037135,-0.982448,0.182804,0.037135,-0.982448,-0.199015,0.979647,-0.026180, + -0.199015,0.979647,-0.026180,-0.199015,0.979647,-0.026180,0.020210,-0.997876,-0.061929,0.020210,-0.997876,-0.061929, + 0.020210,-0.997876,-0.061929,0.926414,0.279900,0.251819,0.926414,0.279900,0.251819,0.926414,0.279900,0.251819, + 0.926414,0.279900,0.251819,-0.206645,0.976684,-0.058189,-0.206645,0.976684,-0.058189,-0.206645,0.976684,-0.058189, + -0.307665,0.948294,0.077979,-0.307665,0.948294,0.077979,-0.307665,0.948294,0.077979,0.180870,0.112783,-0.977019, + 0.180870,0.112783,-0.977019,0.180870,0.112783,-0.977019,0.180870,0.112783,-0.977019,0.908409,0.328910,0.258092, + 0.908409,0.328910,0.258092,0.908409,0.328910,0.258092,0.908409,0.328910,0.258092,0.175293,-0.972459,-0.153608, + 0.175293,-0.972459,-0.153608,0.175293,-0.972459,-0.153608,-0.344646,0.937671,-0.044635,-0.344646,0.937671,-0.044635, + -0.344646,0.937671,-0.044635,0.154157,-0.954060,-0.256915,0.154157,-0.954060,-0.256915,0.154157,-0.954060,-0.256915, + 0.019442,-0.997723,-0.064576,0.019442,-0.997723,-0.064576,0.019442,-0.997723,-0.064576,-0.107589,0.050135,0.992931, + -0.107589,0.050135,0.992931,-0.107589,0.050135,0.992931,-0.107589,0.050135,0.992931,-0.908952,-0.289176,-0.300307, + -0.908952,-0.289176,-0.300307,-0.908952,-0.289176,-0.300307,-0.908952,-0.289176,-0.300307,-0.490452,0.864971,-0.106212, + -0.490452,0.864971,-0.106212,-0.490452,0.864971,-0.106212,0.232001,-0.044009,-0.971719,0.232001,-0.044009,-0.971719, + 0.232001,-0.044009,-0.971719,0.232001,-0.044009,-0.971719,0.894659,0.360852,0.263383,0.894659,0.360852,0.263383, + 0.894659,0.360852,0.263383,0.894659,0.360852,0.263383,0.291885,-0.931345,-0.217715,0.291885,-0.931345,-0.217715, + 0.291885,-0.931345,-0.217715,-0.492165,0.862916,-0.114671,-0.492165,0.862916,-0.114671,-0.492165,0.862916,-0.114671, + 0.285821,-0.924818,-0.251035,0.285821,-0.924818,-0.251035,0.285821,-0.924818,-0.251035,-0.297694,0.954644,-0.005714, + -0.297694,0.954644,-0.005714,-0.297694,0.954644,-0.005714,-0.297694,0.954644,-0.005714,-0.926861,-0.300480,-0.225036, + -0.926861,-0.300480,-0.225036,-0.926861,-0.300480,-0.225036,-0.926861,-0.300480,-0.225036,-0.216555,-0.061699,0.974319, + -0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,0.926242,0.302394,0.225019, + 0.926242,0.302394,0.225019,0.926242,0.302394,0.225019,0.926242,0.302394,0.225019,0.220119,0.062706,-0.973456, + 0.220119,0.062706,-0.973456,0.220119,0.062706,-0.973456,0.220119,0.062706,-0.973456,0.915177,0.286940,0.283048, + 0.915177,0.286940,0.283048,0.915177,0.286940,0.283048,0.915177,0.286940,0.283048,0.213520,0.127821,-0.968541, + 0.213520,0.127821,-0.968541,0.213520,0.127821,-0.968541,0.213520,0.127821,-0.968541,-0.262504,-0.112540,0.958346, + -0.262504,-0.112540,0.958346,-0.262504,-0.112540,0.958346,-0.262504,-0.112540,0.958346,-0.216102,0.976128,0.021793, + -0.216102,0.976128,0.021793,-0.216102,0.976128,0.021793,-0.883483,-0.276387,-0.378243,-0.883483,-0.276387,-0.378243, + -0.883483,-0.276387,-0.378243,-0.883483,-0.276387,-0.378243,0.896574,0.277079,0.345518,0.896574,0.277079,0.345518, + 0.896574,0.277079,0.345518,0.896574,0.277079,0.345518,-0.112983,0.979344,0.167688,-0.112983,0.979344,0.167688, + -0.112983,0.979344,0.167688,0.382795,-0.923833,-0.001105,0.382795,-0.923833,-0.001105,0.382795,-0.923833,-0.001105, + 0.476748,-0.879002,-0.008113,0.476748,-0.879002,-0.008113,0.476748,-0.879002,-0.008113,-0.129561,0.989274,0.067463, + -0.129561,0.989274,0.067463,-0.129561,0.989274,0.067463,0.379457,-0.925016,-0.018936,0.379457,-0.925016,-0.018936, + 0.379457,-0.925016,-0.018936,-0.884537,-0.285299,-0.369050,-0.884537,-0.285299,-0.369050,-0.884537,-0.285299,-0.369050, + -0.884537,-0.285299,-0.369050,-0.201349,0.974663,0.097416,-0.201349,0.974663,0.097416,-0.201349,0.974663,0.097416, + 0.478889,-0.877872,0.002488,0.478889,-0.877872,0.002488,0.478889,-0.877872,0.002488,-0.939714,-0.304559,-0.155505, + -0.939714,-0.304559,-0.155505,-0.939714,-0.304559,-0.155505,-0.939714,-0.304559,-0.155505,0.912928,0.284699,0.292417, + 0.912928,0.284699,0.292417,0.912928,0.284699,0.292417,0.912928,0.284699,0.292417,-0.274380,-0.045927,0.960524, + -0.274380,-0.045927,0.960524,-0.274380,-0.045927,0.960524,-0.274380,-0.045927,0.960524,0.211384,0.124537,-0.969437, + 0.211384,0.124537,-0.969437,0.211384,0.124537,-0.969437,0.211384,0.124537,-0.969437,-0.263199,-0.115449,0.957809, + -0.263199,-0.115449,0.957809,-0.263199,-0.115449,0.957809,-0.263199,-0.115449,0.957809,0.249478,-0.968363,-0.005872, + 0.249478,-0.968363,-0.005872,0.249478,-0.968363,-0.005872,0.249478,-0.968363,-0.005872,-0.204719,-0.131035,0.970010, + -0.204719,-0.131035,0.970010,-0.204719,-0.131035,0.970010,-0.204719,-0.131035,0.970010,-0.190796,0.978948,0.072508, + -0.190796,0.978948,0.072508,-0.190796,0.978948,0.072508,0.426072,-0.903936,0.036911,0.426072,-0.903936,0.036911, + 0.426072,-0.903936,0.036911,-0.206611,0.978175,-0.022030,-0.206611,0.978175,-0.022030,-0.206611,0.978175,-0.022030, + 0.431772,-0.899424,0.067896,0.431772,-0.899424,0.067896,0.431772,-0.899424,0.067896,-0.929569,-0.291945,-0.225097, + -0.929569,-0.291945,-0.225097,-0.929569,-0.291945,-0.225097,-0.929569,-0.291945,-0.225097,0.925365,0.305085,0.224994, + 0.925365,0.305085,0.224994,0.925365,0.305085,0.224994,0.925365,0.305085,0.224994,-0.894953,-0.279317,-0.347909, + -0.894953,-0.279317,-0.347909,-0.894953,-0.279317,-0.347909,-0.894953,-0.279317,-0.347909,0.422673,-0.904064,0.063378, + 0.422673,-0.904064,0.063378,0.422673,-0.904064,0.063378,-0.295968,-0.116608,0.948054,-0.295968,-0.116608,0.948054, + -0.295968,-0.116608,0.948054,-0.295968,-0.116608,0.948054,-0.296986,-0.087452,0.950869,-0.296986,-0.087452,0.950869, + -0.296986,-0.087452,0.950869,-0.296986,-0.087452,0.950869,-0.214658,0.976463,-0.021000,-0.214658,0.976463,-0.021000, + -0.214658,0.976463,-0.021000,0.417324,-0.908093,0.034746,0.417324,-0.908093,0.034746,0.417324,-0.908093,0.034746, + 0.904467,0.320056,0.281963,0.904467,0.320056,0.281963,0.904467,0.320056,0.281963,0.904467,0.320056,0.281963, + 0.222626,0.054967,-0.973353,0.222626,0.054967,-0.973353,0.222626,0.054967,-0.973353,0.222626,0.054967,-0.973353, + -0.872155,-0.305842,-0.381846,-0.872155,-0.305842,-0.381846,-0.872155,-0.305842,-0.381846,-0.872155,-0.305842,-0.381846, + -0.200086,0.977531,0.066324,-0.200086,0.977531,0.066324,-0.200086,0.977531,0.066324,-0.875324,-0.312647,-0.368862, + -0.875324,-0.312647,-0.368862,-0.875324,-0.312647,-0.368862,-0.875324,-0.312647,-0.368862,-0.274252,-0.046197,0.960547, + -0.274252,-0.046197,0.960547,-0.274252,-0.046197,0.960547,-0.274252,-0.046197,0.960547,0.184948,0.037346,-0.982038, + 0.184948,0.037346,-0.982038,0.184948,0.037346,-0.982038,0.184948,0.037346,-0.982038,-0.188702,0.981982,-0.010192, + -0.188702,0.981982,-0.010192,-0.188702,0.981982,-0.010192,0.335965,-0.941754,0.015038,0.335965,-0.941754,0.015038, + 0.335965,-0.941754,0.015038,0.928362,0.271296,0.254052,0.928362,0.271296,0.254052,0.928362,0.271296,0.254052, + 0.928362,0.271296,0.254052,-0.204798,0.976413,-0.068383,-0.204798,0.976413,-0.068383,-0.204798,0.976413,-0.068383, + -0.292746,0.956028,-0.017585,-0.292746,0.956028,-0.017585,-0.292746,0.956028,-0.017585,0.235404,0.030274,-0.971426, + 0.235404,0.030274,-0.971426,0.235404,0.030274,-0.971426,0.235404,0.030274,-0.971426,0.908074,0.332102,0.255168, + 0.908074,0.332102,0.255168,0.908074,0.332102,0.255168,0.908074,0.332102,0.255168,0.181730,-0.981759,-0.055895, + 0.181730,-0.981759,-0.055895,0.181730,-0.981759,-0.055895,-0.315911,0.939002,-0.135920,-0.315911,0.939002,-0.135920, + -0.315911,0.939002,-0.135920,0.171449,-0.972832,-0.155571,0.171449,-0.972832,-0.155571,0.171449,-0.972832,-0.155571, + 0.335969,-0.941753,0.015033,0.335969,-0.941753,0.015033,0.335969,-0.941753,0.015033,-0.216556,-0.061699,0.974319, + -0.216556,-0.061699,0.974319,-0.216556,-0.061699,0.974319,-0.216556,-0.061699,0.974319,-0.908011,-0.278073,-0.313356, + -0.908011,-0.278073,-0.313356,-0.908011,-0.278073,-0.313356,-0.908011,-0.278073,-0.313356,-0.480431,0.876743,0.022515, + -0.480431,0.876743,0.022515,-0.480431,0.876743,0.022515,0.196143,0.070139,-0.978064,0.196143,0.070139,-0.978064, + 0.196143,0.070139,-0.978064,0.196143,0.070139,-0.978064,0.891377,0.370094,0.261682,0.891377,0.370094,0.261682, + 0.891377,0.370094,0.261682,0.891377,0.370094,0.261682,0.324733,-0.925668,-0.194134,0.324733,-0.925668,-0.194134, + 0.324733,-0.925668,-0.194134,-0.485170,0.874346,-0.011368,-0.485170,0.874346,-0.011368,-0.485170,0.874346,-0.011368, + 0.305151,-0.903098,-0.302155,0.305151,-0.903098,-0.302155,0.305151,-0.903098,-0.302155,-0.298068,0.954535,-0.004309, + -0.298068,0.954535,-0.004309,-0.298068,0.954535,-0.004309,-0.298068,0.954535,-0.004309,-0.925647,-0.303871,-0.225479, + -0.925647,-0.303871,-0.225479,-0.925647,-0.303871,-0.225479,-0.925647,-0.303871,-0.225479,-0.216555,-0.061699,0.974319, + -0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,-0.216555,-0.061699,0.974319,0.925871,0.303190,0.225473, + 0.925871,0.303190,0.225473,0.925871,0.303190,0.225473,0.925871,0.303190,0.225473,0.220098,0.062761,-0.973457, + 0.220098,0.062761,-0.973457,0.220098,0.062761,-0.973457,0.220098,0.062761,-0.973457,0.913721,0.291569,0.283022, + 0.913721,0.291569,0.283022,0.913721,0.291569,0.283022,0.913721,0.291569,0.283022,0.213520,0.127822,-0.968540, + 0.213520,0.127822,-0.968540,0.213520,0.127822,-0.968540,0.213520,0.127822,-0.968540,-0.262504,-0.112540,0.958346, + -0.262504,-0.112540,0.958346,-0.262504,-0.112540,0.958346,-0.262504,-0.112540,0.958346,-0.216100,0.976129,0.021764, + -0.216100,0.976129,0.021764,-0.216100,0.976129,0.021764,-0.883481,-0.276388,-0.378248,-0.883481,-0.276388,-0.378248, + -0.883481,-0.276388,-0.378248,-0.883481,-0.276388,-0.378248,0.896573,0.277079,0.345521,0.896573,0.277079,0.345521, + 0.896573,0.277079,0.345521,0.896573,0.277079,0.345521,-0.112983,0.979344,0.167688,-0.112983,0.979344,0.167688, + -0.112983,0.979344,0.167688,0.382797,-0.923832,-0.001084,0.382797,-0.923832,-0.001084,0.382797,-0.923832,-0.001084, + 0.476754,-0.878999,-0.008112,0.476754,-0.878999,-0.008112,0.476754,-0.878999,-0.008112,-0.129561,0.989273,0.067476, + -0.129561,0.989273,0.067476,-0.129561,0.989273,0.067476,0.379458,-0.925015,-0.018952,0.379458,-0.925015,-0.018952, + 0.379458,-0.925015,-0.018952,-0.883885,-0.287331,-0.369036,-0.883885,-0.287331,-0.369036,-0.883885,-0.287331,-0.369036, + -0.883885,-0.287331,-0.369036,-0.201347,0.974662,0.097432,-0.201347,0.974662,0.097432,-0.201347,0.974662,0.097432, + 0.478893,-0.877870,0.002493,0.478893,-0.877870,0.002493,0.478893,-0.877870,0.002493,-0.939713,-0.304561,-0.155503, + -0.939713,-0.304561,-0.155503,-0.939713,-0.304561,-0.155503,-0.939713,-0.304561,-0.155503,0.912928,0.284699,0.292417, + 0.912928,0.284699,0.292417,0.912928,0.284699,0.292417,0.912928,0.284699,0.292417,-0.270600,-0.057837,0.960953, + -0.270600,-0.057837,0.960953,-0.270600,-0.057837,0.960953,-0.270600,-0.057837,0.960953,0.211382,0.124536,-0.969437, + 0.211382,0.124536,-0.969437,0.211382,0.124536,-0.969437,0.211382,0.124536,-0.969437,-0.263200,-0.115449,0.957809, + -0.263200,-0.115449,0.957809,-0.263200,-0.115449,0.957809,-0.263200,-0.115449,0.957809,0.249870,-0.968251,-0.007398, + 0.249870,-0.968251,-0.007398,0.249870,-0.968251,-0.007398,0.249870,-0.968251,-0.007398,-0.203749,-0.136416,0.969473, + -0.203749,-0.136416,0.969473,-0.203749,-0.136416,0.969473,-0.203749,-0.136416,0.969473,-0.118447,0.985698,0.119877, + -0.118447,0.985698,0.119877,-0.118447,0.985698,0.119877,0.492313,-0.868769,0.053551,0.492313,-0.868769,0.053551, + 0.492313,-0.868769,0.053551,-0.143663,0.989172,-0.030004,-0.143663,0.989172,-0.030004,-0.143663,0.989172,-0.030004, + 0.500060,-0.859911,0.102435,0.500060,-0.859911,0.102435,0.500060,-0.859911,0.102435,-0.929460,-0.291953,-0.225537, + -0.929460,-0.291953,-0.225537,-0.929460,-0.291953,-0.225537,-0.929460,-0.291953,-0.225537,0.923989,0.308900,0.225442, + 0.923989,0.308900,0.225442,0.923989,0.308900,0.225442,0.923989,0.308900,0.225442,-0.892046,-0.285623,-0.350246, + -0.892046,-0.285623,-0.350246,-0.892046,-0.285623,-0.350246,-0.892046,-0.285623,-0.350246,0.500060,-0.859911,0.102439, + 0.500060,-0.859911,0.102439,0.500060,-0.859911,0.102439,-0.304805,-0.078663,0.949161,-0.304805,-0.078663,0.949161, + -0.304805,-0.078663,0.949161,-0.304805,-0.078663,0.949161,-0.255400,-0.173925,0.951063,-0.255400,-0.173925,0.951063, + -0.255400,-0.173925,0.951063,-0.255400,-0.173925,0.951063,-0.143660,0.989172,-0.030018,-0.143660,0.989172,-0.030018, + -0.143660,0.989172,-0.030018,0.492313,-0.868770,0.053541,0.492313,-0.868770,0.053541,0.492313,-0.868770,0.053541, + 0.913721,0.291568,0.283022,0.913721,0.291568,0.283022,0.913721,0.291568,0.283022,0.913721,0.291568,0.283022, + 0.220096,0.062760,-0.973457,0.220096,0.062760,-0.973457,0.220096,0.062760,-0.973457,0.220096,0.062760,-0.973457, + -0.876848,-0.290746,-0.382888,-0.876848,-0.290746,-0.382888,-0.876848,-0.290746,-0.382888,-0.876848,-0.290746,-0.382888, + -0.118446,0.985695,0.119899,-0.118446,0.985695,0.119899,-0.118446,0.985695,0.119899,-0.883886,-0.287329,-0.369035, + -0.883886,-0.287329,-0.369035,-0.883886,-0.287329,-0.369035,-0.883886,-0.287329,-0.369035,-0.270601,-0.057837,0.960953, + -0.270601,-0.057837,0.960953,-0.270601,-0.057837,0.960953,-0.270601,-0.057837,0.960953,0.182804,0.037135,-0.982448, + 0.182804,0.037135,-0.982448,0.182804,0.037135,-0.982448,0.182804,0.037135,-0.982448,-0.199015,0.979646,-0.026184, + -0.199015,0.979646,-0.026184,-0.199015,0.979646,-0.026184,0.020210,-0.997876,-0.061929,0.020210,-0.997876,-0.061929, + 0.020210,-0.997876,-0.061929,0.926414,0.279900,0.251818,0.926414,0.279900,0.251818,0.926414,0.279900,0.251818, + 0.926414,0.279900,0.251818,-0.206646,0.976684,-0.058183,-0.206646,0.976684,-0.058183,-0.206646,0.976684,-0.058183, + -0.307663,0.948294,0.077986,-0.307663,0.948294,0.077986,-0.307663,0.948294,0.077986,0.180871,0.112783,-0.977019, + 0.180871,0.112783,-0.977019,0.180871,0.112783,-0.977019,0.180871,0.112783,-0.977019,0.908409,0.328910,0.258092, + 0.908409,0.328910,0.258092,0.908409,0.328910,0.258092,0.908409,0.328910,0.258092,0.175293,-0.972457,-0.153620, + 0.175293,-0.972457,-0.153620,0.175293,-0.972457,-0.153620,-0.344644,0.937671,-0.044641,-0.344644,0.937671,-0.044641, + -0.344644,0.937671,-0.044641,0.154156,-0.954062,-0.256906,0.154156,-0.954062,-0.256906,0.154156,-0.954062,-0.256906, + 0.019442,-0.997724,-0.064574,0.019442,-0.997724,-0.064574,0.019442,-0.997724,-0.064574,-0.107588,0.050135,0.992931, + -0.107588,0.050135,0.992931,-0.107588,0.050135,0.992931,-0.107588,0.050135,0.992931,-0.908951,-0.289177,-0.300308, + -0.908951,-0.289177,-0.300308,-0.908951,-0.289177,-0.300308,-0.908951,-0.289177,-0.300308,-0.490454,0.864972,-0.106203, + -0.490454,0.864972,-0.106203,-0.490454,0.864972,-0.106203,0.232002,-0.044009,-0.971719,0.232002,-0.044009,-0.971719, + 0.232002,-0.044009,-0.971719,0.232002,-0.044009,-0.971719,0.894660,0.360851,0.263383,0.894660,0.360851,0.263383, + 0.894660,0.360851,0.263383,0.894660,0.360851,0.263383,0.291884,-0.931345,-0.217715,0.291884,-0.931345,-0.217715, + 0.291884,-0.931345,-0.217715,-0.492161,0.862918,-0.114671,-0.492161,0.862918,-0.114671,-0.492161,0.862918,-0.114671, + 0.285824,-0.924820,-0.251023,0.285824,-0.924820,-0.251023,0.285824,-0.924820,-0.251023,0.293972,-0.955609,0.019805, + 0.293972,-0.955609,0.019805,0.293972,-0.955609,0.019805,0.293972,-0.955609,0.019805,0.905035,0.319186,0.281126, + 0.905035,0.319186,0.281126,0.905035,0.319186,0.281126,0.905035,0.319186,0.281126,-0.292728,-0.070288,0.953609, + -0.292728,-0.070288,0.953609,-0.292728,-0.070288,0.953609,-0.292728,-0.070288,0.953609,-0.906127,-0.298095,-0.300123, + -0.906127,-0.298095,-0.300123,-0.906127,-0.298095,-0.300123,-0.906127,-0.298095,-0.300123,0.289258,0.069245,-0.954743, + 0.289258,0.069245,-0.954743,0.289258,0.069245,-0.954743,0.289258,0.069245,-0.954743,-0.924387,-0.294335,-0.242643, + -0.924387,-0.294335,-0.242643,-0.924387,-0.294335,-0.242643,-0.924387,-0.294335,-0.242643,0.294753,0.003904,-0.955566, + 0.294753,0.003904,-0.955566,0.294753,0.003904,-0.955566,0.294753,0.003904,-0.955566,-0.246606,-0.019401,0.968922, + -0.246606,-0.019401,0.968922,-0.246606,-0.019401,0.968922,-0.246606,-0.019401,0.968922,0.210182,-0.977662,0.000641, + 0.210182,-0.977662,0.000641,0.210182,-0.977662,0.000641,0.945409,0.292437,0.143817,0.945409,0.292437,0.143817, + 0.945409,0.292437,0.143817,0.945409,0.292437,0.143817,-0.940684,-0.288514,-0.178528,-0.940684,-0.288514,-0.178528, + -0.940684,-0.288514,-0.178528,-0.940684,-0.288514,-0.178528,0.048823,-0.995973,0.075198,0.048823,-0.995973,0.075198, + 0.048823,-0.995973,0.075198,-0.363634,0.928798,-0.071452,-0.363634,0.928798,-0.071452,-0.363634,0.928798,-0.071452, + -0.440419,0.888417,-0.129410,-0.440419,0.888417,-0.129410,-0.440419,0.888417,-0.129410,0.112863,-0.993602,-0.004246, + 0.112863,-0.993602,-0.004246,0.112863,-0.993602,-0.004246,-0.351995,0.932132,-0.085024,-0.351995,0.932132,-0.085024, + -0.351995,0.932132,-0.085024,0.940863,0.302098,0.153344,0.940863,0.302098,0.153344,0.940863,0.302098,0.153344, + 0.940863,0.302098,0.153344,0.160097,-0.985353,0.058720,0.160097,-0.985353,0.058720,0.160097,-0.985353,0.058720, + -0.447468,0.886012,-0.121470,-0.447468,0.886012,-0.121470,-0.447468,0.886012,-0.121470,0.883865,0.290088,0.366921, + 0.883865,0.290088,0.366921,0.883865,0.290088,0.366921,0.883865,0.290088,0.366921,-0.928548,-0.288748,-0.233287, + -0.928548,-0.288748,-0.233287,-0.928548,-0.288748,-0.233287,-0.928548,-0.288748,-0.233287,-0.239002,-0.074232,0.968177, + -0.239002,-0.074232,0.968177,-0.239002,-0.074232,0.968177,-0.239002,-0.074232,0.968177,0.296945,0.007202,-0.954867, + 0.296945,0.007202,-0.954867,0.296945,0.007202,-0.954867,0.296945,0.007202,-0.954867,-0.245832,-0.016473,0.969172, + -0.245832,-0.016473,0.969172,-0.245832,-0.016473,0.969172,-0.245832,-0.016473,0.969172,-0.246678,0.969086,-0.004712, + -0.246678,0.969086,-0.004712,-0.246678,0.969086,-0.004712,-0.246678,0.969086,-0.004712,-0.304000,0.004826,0.952660, + -0.304000,0.004826,0.952660,-0.304000,0.004826,0.952660,-0.304000,0.004826,0.952660,0.077294,-0.996362,0.035902, + 0.077294,-0.996362,0.035902,0.077294,-0.996362,0.035902,-0.483941,0.870939,-0.085246,-0.483941,0.870939,-0.085246, + -0.483941,0.870939,-0.085246,0.173055,-0.981556,-0.081241,0.173055,-0.981556,-0.081241,0.173055,-0.981556,-0.081241, + -0.514426,0.856186,-0.048081,-0.514426,0.856186,-0.048081,-0.514426,0.856186,-0.048081,0.909666,0.286846,0.300380, + 0.909666,0.286846,0.300380,0.909666,0.286846,0.300380,0.909666,0.286846,0.300380,-0.903102,-0.324926,-0.280767, + -0.903102,-0.324926,-0.280767,-0.903102,-0.324926,-0.280767,-0.903102,-0.324926,-0.280767,0.938782,0.297737,0.173323, + 0.938782,0.297737,0.173323,0.938782,0.297737,0.173323,0.938782,0.297737,0.173323,-0.514426,0.856187,-0.048064, + -0.514426,0.856187,-0.048064,-0.514426,0.856187,-0.048064,-0.204139,-0.053236,0.977493,-0.204139,-0.053236,0.977493, + -0.204139,-0.053236,0.977493,-0.204139,-0.053236,0.977493,-0.251271,0.042614,0.966978,-0.251271,0.042614,0.966978, + -0.251271,0.042614,0.966978,-0.251271,0.042614,0.966978,0.173055,-0.981555,-0.081254,0.173055,-0.981555,-0.081254, + 0.173055,-0.981555,-0.081254,-0.483945,0.870937,-0.085247,-0.483945,0.870937,-0.085247,-0.483945,0.870937,-0.085247, + -0.924388,-0.294332,-0.242642,-0.924388,-0.294332,-0.242642,-0.924388,-0.294332,-0.242642,-0.924388,-0.294332,-0.242642, + 0.289258,0.069245,-0.954743,0.289258,0.069245,-0.954743,0.289258,0.069245,-0.954743,0.289258,0.069245,-0.954743, + 0.941436,0.307486,0.138384,0.941436,0.307486,0.138384,0.941436,0.307486,0.138384,0.941436,0.307486,0.138384, + 0.077294,-0.996362,0.035906,0.077294,-0.996362,0.035906,0.077294,-0.996362,0.035906,0.940862,0.302100,0.153343, + 0.940862,0.302100,0.153343,0.940862,0.302100,0.153343,0.940862,0.302100,0.153343,-0.238999,-0.074232,0.968178, + -0.238999,-0.074232,0.968178,-0.238999,-0.074232,0.968178,-0.238999,-0.074232,0.968178,0.325265,0.094537,-0.940885, + 0.325265,0.094537,-0.940885,0.325265,0.094537,-0.940885,0.325265,0.094537,-0.940885,0.219019,-0.974463,-0.049530, + 0.219019,-0.974463,-0.049530,0.219019,-0.974463,-0.049530,-0.020729,0.997742,0.063890,-0.020729,0.997742,0.063890, + -0.020729,0.997742,0.063890,-0.920480,-0.278363,-0.274280,-0.920480,-0.278363,-0.274280,-0.920480,-0.278363,-0.274280, + -0.920480,-0.278363,-0.274280,0.241291,-0.967705,-0.072980,0.241291,-0.967705,-0.072980,0.241291,-0.967705,-0.072980, + 0.261282,-0.960314,0.097613,0.261282,-0.960314,0.097613,0.261282,-0.960314,0.097613,0.326824,0.018792,-0.944898, + 0.326824,0.018792,-0.944898,0.326824,0.018792,-0.944898,0.326824,0.018792,-0.944898,-0.906251,-0.328350,-0.266261, + -0.906251,-0.328350,-0.266261,-0.906251,-0.328350,-0.266261,-0.906251,-0.328350,-0.266261,-0.109727,0.989449,-0.094608, + -0.109727,0.989449,-0.094608,-0.109727,0.989449,-0.094608,0.353394,-0.935403,0.011525,0.353394,-0.935403,0.011525, + 0.353394,-0.935403,0.011525,-0.039924,0.983667,-0.175514,-0.039924,0.983667,-0.175514,-0.039924,0.983667,-0.175514, + -0.018748,0.997903,0.061948,-0.018748,0.997903,0.061948,-0.018748,0.997903,0.061948,-0.392927,-0.179850,0.901810, + -0.392927,-0.179850,0.901810,-0.392927,-0.179850,0.901810,-0.392927,-0.179850,0.901810,0.928816,0.294326,0.225106, + 0.928816,0.294326,0.225106,0.928816,0.294326,0.225106,0.928816,0.294326,0.225106,0.508089,-0.860400,0.039452, + 0.508089,-0.860400,0.039452,0.508089,-0.860400,0.039452,0.274451,0.175262,-0.945494,0.274451,0.175262,-0.945494, + 0.274451,0.175262,-0.945494,0.274451,0.175262,-0.945494,-0.895811,-0.361153,-0.259021,-0.895811,-0.361153,-0.259021, + -0.895811,-0.361153,-0.259021,-0.895811,-0.361153,-0.259021,-0.178269,0.960789,-0.212380,-0.178269,0.960789,-0.212380, + -0.178269,0.960789,-0.212380,0.513666,-0.857345,0.033275,0.513666,-0.857345,0.033275,0.513666,-0.857345,0.033275, + -0.156396,0.958362,-0.238920,-0.156396,0.958362,-0.238920,-0.156396,0.958362,-0.238920,0.935831,-0.259468,0.238530, + 0.935831,-0.259468,0.238530,0.935831,-0.259468,0.238530,0.935831,-0.259468,0.238530,0.211901,0.963804,0.161801, + 0.211901,0.963804,0.161801,0.211901,0.963804,0.161801,0.211901,0.963804,0.161801,-0.270640,-0.101710,0.957293, + -0.270640,-0.101710,0.957293,-0.270640,-0.101710,0.957293,-0.270640,-0.101710,0.957293,-0.212570,-0.963626,-0.161985, + -0.212570,-0.963626,-0.161985,-0.212570,-0.963626,-0.161985,-0.212570,-0.963626,-0.161985,0.269744,0.098074,-0.957925, + 0.269744,0.098074,-0.957925,0.269744,0.098074,-0.957925,0.269744,0.098074,-0.957925,-0.235571,-0.965985,-0.106670, + -0.235571,-0.965985,-0.106670,-0.235571,-0.965985,-0.106670,-0.235571,-0.965985,-0.106670,0.325982,0.067849,-0.942938, + 0.325982,0.067849,-0.942938,0.325982,0.067849,-0.942938,0.325982,0.067849,-0.942938,-0.288817,-0.033734,0.956790, + -0.288817,-0.033734,0.956790,-0.288817,-0.033734,0.956790,-0.288817,-0.033734,0.956790,0.910624,-0.343954,0.229041, + 0.910624,-0.343954,0.229041,0.910624,-0.343954,0.229041,0.265868,0.963955,0.010279,0.265868,0.963955,0.010279, + 0.265868,0.963955,0.010279,0.265868,0.963955,0.010279,-0.260436,-0.964436,-0.045126,-0.260436,-0.964436,-0.045126, + -0.260436,-0.964436,-0.045126,-0.260436,-0.964436,-0.045126,0.822534,-0.473270,0.315362,0.822534,-0.473270,0.315362, + 0.822534,-0.473270,0.315362,-0.944467,0.177910,-0.276278,-0.944467,0.177910,-0.276278,-0.944467,0.177910,-0.276278, + -0.944595,0.082179,-0.317785,-0.944595,0.082179,-0.317785,-0.944595,0.082179,-0.317785,0.870046,-0.433843,0.234095, + 0.870046,-0.433843,0.234095,0.870046,-0.433843,0.234095,-0.938329,0.186789,-0.290946,-0.938329,0.186789,-0.290946, + -0.938329,0.186789,-0.290946,0.253849,0.967087,0.017392,0.253849,0.967087,0.017392,0.253849,0.967087,0.017392, + 0.253849,0.967087,0.017392,0.878888,-0.378656,0.290130,0.878888,-0.378656,0.290130,0.878888,-0.378656,0.290130, + -0.947950,0.076557,-0.309079,-0.947950,0.076557,-0.309079,-0.947950,0.076557,-0.309079,0.194988,0.953372,0.230353, + 0.194988,0.953372,0.230353,0.194988,0.953372,0.230353,0.194988,0.953372,0.230353,-0.244039,-0.964724,-0.098754, + -0.244039,-0.964724,-0.098754,-0.244039,-0.964724,-0.098754,-0.244039,-0.964724,-0.098754,-0.239949,-0.056632,0.969132, + -0.239949,-0.056632,0.969132,-0.239949,-0.056632,0.969132,-0.239949,-0.056632,0.969132,0.324407,0.071540,-0.943209, + 0.324407,0.071540,-0.943209,0.324407,0.071540,-0.943209,0.324407,0.071540,-0.943209,-0.290804,-0.031499,0.956264, + -0.290804,-0.031499,0.956264,-0.290804,-0.031499,0.956264,-0.290804,-0.031499,0.956264,-0.923030,0.308541,-0.229819, + -0.923030,0.308541,-0.229819,-0.923030,0.308541,-0.229819,-0.923030,0.308541,-0.229819,-0.337726,-0.071415,0.938531, + -0.337726,-0.071415,0.938531,-0.337726,-0.071415,0.938531,-0.337726,-0.071415,0.938531,0.845512,-0.457241,0.275755, + 0.845512,-0.457241,0.275755,0.845512,-0.457241,0.275755,-0.962321,0.045146,-0.268142,-0.962321,0.045146,-0.268142, + -0.962321,0.045146,-0.268142,0.907145,-0.392009,0.153025,0.907145,-0.392009,0.153025,0.907145,-0.392009,0.153025, + -0.973771,0.019045,-0.226730,-0.973771,0.019045,-0.226730,-0.973771,0.019045,-0.226730,0.223623,0.960640,0.164816, + 0.223623,0.960640,0.164816,0.223623,0.960640,0.164816,0.223623,0.960640,0.164816,-0.206927,-0.965098,-0.160520, + -0.206927,-0.965098,-0.160520,-0.206927,-0.965098,-0.160520,-0.206927,-0.965098,-0.160520,0.252784,0.966779,0.037925, + 0.252784,0.966779,0.037925,0.252784,0.966779,0.037925,0.252784,0.966779,0.037925,-0.973773,0.019024,-0.226725, + -0.973773,0.019024,-0.226725,-0.973773,0.019024,-0.226725,-0.239122,-0.014928,0.970875,-0.239122,-0.014928,0.970875, + -0.239122,-0.014928,0.970875,-0.239122,-0.014928,0.970875,-0.341413,-0.005102,0.939900,-0.341413,-0.005102,0.939900, + -0.341413,-0.005102,0.939900,-0.341413,-0.005102,0.939900,0.907139,-0.392024,0.153022,0.907139,-0.392024,0.153022, + 0.907139,-0.392024,0.153022,-0.962319,0.045145,-0.268151,-0.962319,0.045145,-0.268151,-0.962319,0.045145,-0.268151, + -0.235571,-0.965984,-0.106683,-0.235571,-0.965984,-0.106683,-0.235571,-0.965984,-0.106683,-0.235571,-0.965984,-0.106683, + 0.269747,0.098075,-0.957924,0.269747,0.098075,-0.957924,0.269747,0.098075,-0.957924,0.269747,0.098075,-0.957924, + 0.252373,0.967629,0.001557,0.252373,0.967629,0.001557,0.252373,0.967629,0.001557,0.252373,0.967629,0.001557, + 0.845514,-0.457243,0.275744,0.845514,-0.457243,0.275744,0.845514,-0.457243,0.275744,0.253850,0.967087,0.017384, + 0.253850,0.967087,0.017384,0.253850,0.967087,0.017384,0.253850,0.967087,0.017384,-0.239946,-0.056631,0.969133, + -0.239946,-0.056631,0.969133,-0.239946,-0.056631,0.969133,-0.239946,-0.056631,0.969133,0.266943,0.143848,-0.952916, + 0.266943,0.143848,-0.952916,0.266943,0.143848,-0.952916,0.266943,0.143848,-0.952916,0.921598,-0.344307,0.179190, + 0.921598,-0.344307,0.179190,0.921598,-0.344307,0.179190,-0.832229,0.523374,-0.182961,-0.832229,0.523374,-0.182961, + -0.832229,0.523374,-0.182961,-0.240901,-0.960189,-0.141437,-0.240901,-0.960189,-0.141437,-0.240901,-0.960189,-0.141437, + -0.240901,-0.960189,-0.141437,0.932589,-0.326660,0.153527,0.932589,-0.326660,0.153527,0.932589,-0.326660,0.153527, + 0.908377,-0.274414,0.315512,0.908377,-0.274414,0.315512,0.908377,-0.274414,0.315512,0.329970,0.104262,-0.938216, + 0.329970,0.104262,-0.938216,0.329970,0.104262,-0.938216,0.329970,0.104262,-0.938216,-0.193772,-0.973405,-0.122208, + -0.193772,-0.973405,-0.122208,-0.193772,-0.973405,-0.122208,-0.193772,-0.973405,-0.122208,-0.847911,0.415814,-0.328854, + -0.847911,0.415814,-0.328854,-0.847911,0.415814,-0.328854,0.954425,-0.201053,0.220568,0.954425,-0.201053,0.220568, + 0.954425,-0.201053,0.220568,-0.790303,0.455409,-0.409908,-0.790303,0.455409,-0.409908,-0.790303,0.455409,-0.409908, + -0.830923,0.524739,-0.184977,-0.830923,0.524739,-0.184977,-0.830923,0.524739,-0.184977,-0.228769,-0.252317,0.940213, + -0.228769,-0.252317,0.940213,-0.228769,-0.252317,0.940213,-0.228769,-0.252317,0.940213,0.241074,0.966378,0.089429, + 0.241074,0.966378,0.089429,0.241074,0.966378,0.089429,0.241074,0.966378,0.089429,0.975138,-0.028125,0.219806, + 0.975138,-0.028125,0.219806,0.975138,-0.028125,0.219806,0.173853,0.143719,-0.974228,0.173853,0.143719,-0.974228, + 0.173853,0.143719,-0.974228,0.173853,0.143719,-0.974228,-0.162572,-0.980797,-0.107739,-0.162572,-0.980797,-0.107739, + -0.162572,-0.980797,-0.107739,-0.162572,-0.980797,-0.107739,-0.842649,0.321961,-0.431607,-0.842649,0.321961,-0.431607, + -0.842649,0.321961,-0.431607,0.976839,-0.023029,0.212734,0.976839,-0.023029,0.212734,0.976839,-0.023029,0.212734, + -0.823885,0.333826,-0.458011,-0.823885,0.333826,-0.458011,-0.823885,0.333826,-0.458011,-0.968446,0.044582,-0.245204, + -0.968446,0.044582,-0.245204,-0.968446,0.044582,-0.245204,-0.968446,0.044582,-0.245204,-0.023645,-0.999132,-0.034300, + -0.023645,-0.999132,-0.034300,-0.023645,-0.999132,-0.034300,-0.023645,-0.999132,-0.034300,-0.246542,-0.027425,0.968744, + -0.246542,-0.027425,0.968744,-0.246542,-0.027425,0.968744,-0.246542,-0.027425,0.968744,0.024312,0.999110,0.034469, + 0.024312,0.999110,0.034469,0.024312,0.999110,0.034469,0.024312,0.999110,0.034469,0.246724,0.031212,-0.968583, + 0.246724,0.031212,-0.968583,0.246724,0.031212,-0.968583,0.246724,0.031212,-0.968583,0.017059,0.995393,0.094351, + 0.017059,0.995393,0.094351,0.017059,0.995393,0.094351,0.017059,0.995393,0.094351,0.184667,0.047929,-0.981632, + 0.184667,0.047929,-0.981632,0.184667,0.047929,-0.981632,0.184667,0.047929,-0.981632,-0.214491,-0.089947,0.972576, + -0.214491,-0.089947,0.972576,-0.214491,-0.089947,0.972576,-0.214491,-0.089947,0.972576,-0.963333,0.132378,-0.233378, + -0.963333,0.132378,-0.233378,-0.963333,0.132378,-0.233378,0.002219,-0.981284,-0.192552,0.002219,-0.981284,-0.192552, + 0.002219,-0.981284,-0.192552,0.002219,-0.981284,-0.192552,0.009486,0.987104,0.159799,0.009486,0.987104,0.159799, + 0.009486,0.987104,0.159799,0.009486,0.987104,0.159799,-0.960542,0.257297,-0.105632,-0.960542,0.257297,-0.105632, + -0.960542,0.257297,-0.105632,0.974260,0.042795,0.221327,0.974260,0.042795,0.221327,0.974260,0.042795,0.221327, + 0.970852,0.142971,0.192368,0.970852,0.142971,0.192368,0.970852,0.142971,0.192368,-0.952993,0.225536,-0.202333, + -0.952993,0.225536,-0.202333,-0.952993,0.225536,-0.202333,0.978113,0.035792,0.204974,0.978113,0.035792,0.204974, + 0.978113,0.035792,0.204974,0.009815,-0.983504,-0.180618,0.009815,-0.983504,-0.180618,0.009815,-0.983504,-0.180618, + 0.009815,-0.983504,-0.180618,-0.973608,0.160440,-0.162314,-0.973608,0.160440,-0.162314,-0.973608,0.160440,-0.162314, + 0.968235,0.147435,0.201952,0.968235,0.147435,0.201952,0.968235,0.147435,0.201952,-0.044024,-0.998465,0.033598, + -0.044024,-0.998465,0.033598,-0.044024,-0.998465,0.033598,-0.044024,-0.998465,0.033598,0.020807,0.994219,0.105338, + 0.020807,0.994219,0.105338,0.020807,0.994219,0.105338,0.020807,0.994219,0.105338,-0.267285,-0.078558,0.960410, + -0.267285,-0.078558,0.960410,-0.267285,-0.078558,0.960410,-0.267285,-0.078558,0.960410,0.187020,0.044679,-0.981339, + 0.187020,0.044679,-0.981339,0.187020,0.044679,-0.981339,0.187020,0.044679,-0.981339,-0.212017,-0.091669,0.972957, + -0.212017,-0.091669,0.972957,-0.212017,-0.091669,0.972957,-0.212017,-0.091669,0.972957,0.965290,-0.095878,0.242947, + 0.965290,-0.095878,0.242947,0.965290,-0.095878,0.242947,0.965290,-0.095878,0.242947,-0.173487,-0.041624,0.983956, + -0.173487,-0.041624,0.983956,-0.173487,-0.041624,0.983956,-0.173487,-0.041624,0.983956,-0.957469,0.244960,-0.152471, + -0.957469,0.244960,-0.152471,-0.957469,0.244960,-0.152471,0.953534,0.172953,0.246699,0.953534,0.172953,0.246699, + 0.953534,0.172953,0.246699,-0.936124,0.193225,-0.293830,-0.936124,0.193225,-0.293830,-0.936124,0.193225,-0.293830, + 0.937415,0.192701,0.290035,0.937415,0.192701,0.290035,0.937415,0.192701,0.290035,-0.035739,-0.998662,-0.037365, + -0.035739,-0.998662,-0.037365,-0.035739,-0.998662,-0.037365,-0.035739,-0.998662,-0.037365,0.018513,0.999284,0.033000, + 0.018513,0.999284,0.033000,0.018513,0.999284,0.033000,0.018513,0.999284,0.033000,0.000964,-0.986733,-0.162346, + 0.000964,-0.986733,-0.162346,0.000964,-0.986733,-0.162346,0.000964,-0.986733,-0.162346,0.937413,0.192729,0.290021, + 0.937413,0.192729,0.290021,0.937413,0.192729,0.290021,-0.258744,-0.119377,0.958541,-0.258744,-0.119377,0.958541, + -0.258744,-0.119377,0.958541,-0.258744,-0.119377,0.958541,-0.155008,-0.105416,0.982273,-0.155008,-0.105416,0.982273, + -0.155008,-0.105416,0.982273,-0.155008,-0.105416,0.982273,-0.936120,0.193237,-0.293834,-0.936120,0.193237,-0.293834, + -0.936120,0.193237,-0.293834,0.953535,0.172949,0.246696,0.953535,0.172949,0.246696,0.953535,0.172949,0.246696, + 0.017059,0.995393,0.094346,0.017059,0.995393,0.094346,0.017059,0.995393,0.094346,0.017059,0.995393,0.094346, + 0.246724,0.031212,-0.968583,0.246724,0.031212,-0.968583,0.246724,0.031212,-0.968583,0.246724,0.031212,-0.968583, + 0.018665,-0.980908,-0.193575,0.018665,-0.980908,-0.193575,0.018665,-0.980908,-0.193575,0.018665,-0.980908,-0.193575, + -0.957476,0.244936,-0.152464,-0.957476,0.244936,-0.152464,-0.957476,0.244936,-0.152464,0.009815,-0.983506,-0.180611, + 0.009815,-0.983506,-0.180611,0.009815,-0.983506,-0.180611,0.009815,-0.983506,-0.180611,-0.267284,-0.078556,0.960410, + -0.267284,-0.078556,0.960410,-0.267284,-0.078556,0.960410,-0.267284,-0.078556,0.960410,0.257779,-0.013508,-0.966110, + 0.257779,-0.013508,-0.966110,0.257779,-0.013508,-0.966110,0.257779,-0.013508,-0.966110,-0.949215,0.139813,-0.281857, + -0.949215,0.139813,-0.281857,-0.949215,0.139813,-0.281857,0.918400,-0.328056,0.221181,0.918400,-0.328056,0.221181, + 0.918400,-0.328056,0.221181,0.039378,0.997002,0.066602,0.039378,0.997002,0.066602,0.039378,0.997002,0.066602, + 0.039378,0.997002,0.066602,-0.942175,0.125461,-0.310750,-0.942175,0.125461,-0.310750,-0.942175,0.125461,-0.310750, + -0.985439,0.049832,-0.162564,-0.985439,0.049832,-0.162564,-0.985439,0.049832,-0.162564,0.187841,0.011135,-0.982136, + 0.187841,0.011135,-0.982136,0.187841,0.011135,-0.982136,0.187841,0.011135,-0.982136,-0.012847,0.998083,0.060543, + -0.012847,0.998083,0.060543,-0.012847,0.998083,0.060543,-0.012847,0.998083,0.060543,0.974564,-0.194819,0.110773, + 0.974564,-0.194819,0.110773,0.974564,-0.194819,0.110773,-0.962009,-0.012071,-0.272749,-0.962009,-0.012071,-0.272749, + -0.962009,-0.012071,-0.272749,0.973486,-0.228562,0.009183,0.973486,-0.228562,0.009183,0.973486,-0.228562,0.009183, + 0.918567,-0.329235,0.218720,0.918567,-0.329235,0.218720,0.918567,-0.329235,0.218720,-0.310333,0.114116,0.943754, + -0.310333,0.114116,0.943754,-0.310333,0.114116,0.943754,-0.310333,0.114116,0.943754,-0.013507,-0.993618,-0.111988, + -0.013507,-0.993618,-0.111988,-0.013507,-0.993618,-0.111988,-0.013507,-0.993618,-0.111988,-0.937499,-0.182917,-0.296035, + -0.937499,-0.182917,-0.296035,-0.937499,-0.182917,-0.296035,0.346752,0.006737,-0.937933,0.346752,0.006737,-0.937933, + 0.346752,0.006737,-0.937933,0.346752,0.006737,-0.937933,-0.047914,0.997170,0.057933,-0.047914,0.997170,0.057933, + -0.047914,0.997170,0.057933,-0.047914,0.997170,0.057933,0.995925,-0.086320,0.026108,0.995925,-0.086320,0.026108, + 0.995925,-0.086320,0.026108,-0.934382,-0.186846,-0.303346,-0.934382,-0.186846,-0.303346,-0.934382,-0.186846,-0.303346, + 0.995329,-0.096298,-0.006897,0.995329,-0.096298,-0.006897,0.995329,-0.096298,-0.006897,-0.868959,-0.426410,-0.251167, + -0.868959,-0.426410,-0.251167,-0.868959,-0.426410,-0.251167,-0.868959,-0.426410,-0.251167,0.429411,-0.898383,0.092276, + 0.429411,-0.898383,0.092276,0.429411,-0.898383,0.092276,0.429411,-0.898383,0.092276,-0.265014,-0.027674,0.963847, + -0.265014,-0.027674,0.963847,-0.265014,-0.027674,0.963847,-0.265014,-0.027674,0.963847,-0.428817,0.898684,-0.092104, + -0.428817,0.898684,-0.092104,-0.428817,0.898684,-0.092104,-0.428817,0.898684,-0.092104,0.263468,0.031123,-0.964166, + 0.263468,0.031123,-0.964166,0.263468,0.031123,-0.964166,0.263468,0.031123,-0.964166,-0.437167,0.898801,-0.032260, + -0.437167,0.898801,-0.032260,-0.437167,0.898801,-0.032260,-0.437167,0.898801,-0.032260,0.201406,0.016362,-0.979371, + 0.201406,0.016362,-0.979371,0.201406,0.016362,-0.979371,0.201406,0.016362,-0.979371,-0.208601,-0.068044,0.975631, + -0.208601,-0.068044,0.975631,-0.208601,-0.068044,0.975631,-0.208601,-0.068044,0.975631,-0.904506,-0.345126,-0.250515, + -0.904506,-0.345126,-0.250515,-0.904506,-0.345126,-0.250515,0.453862,-0.888559,-0.066876,0.453862,-0.888559,-0.066876, + 0.453862,-0.888559,-0.066876,0.453862,-0.888559,-0.066876,-0.444085,0.895351,0.033701,-0.444085,0.895351,0.033701, + -0.444085,0.895351,0.033701,-0.444085,0.895351,0.033701,-0.965672,-0.219061,-0.139606,-0.965672,-0.219061,-0.139606, + -0.965672,-0.219061,-0.139606,0.836333,0.503691,0.216431,0.836333,0.503691,0.216431,0.836333,0.503691,0.216431, + 0.790052,0.587515,0.175055,0.790052,0.587515,0.175055,0.790052,0.587515,0.175055,-0.938945,-0.254554,-0.231486, + -0.938945,-0.254554,-0.231486,-0.938945,-0.254554,-0.231486,0.843881,0.497405,0.201132,0.843881,0.497405,0.201132, + 0.843881,0.497405,0.201132,0.460916,-0.885753,-0.054764,0.460916,-0.885753,-0.054764,0.460916,-0.885753,-0.054764, + 0.460916,-0.885753,-0.054764,-0.930490,-0.316985,-0.183598,-0.930490,-0.316985,-0.183598,-0.930490,-0.316985,-0.183598, + 0.785152,0.591351,0.183957,0.785152,0.591351,0.183957,0.785152,0.591351,0.183957,0.406908,-0.899437,0.159496, + 0.406908,-0.899437,0.159496,0.406908,-0.899437,0.159496,0.406908,-0.899437,0.159496,-0.433954,0.900686,-0.021202, + -0.433954,0.900686,-0.021202,-0.433954,0.900686,-0.021202,-0.433954,0.900686,-0.021202,-0.260060,-0.083229,0.961999, + -0.260060,-0.083229,0.961999,-0.260060,-0.083229,0.961999,-0.260060,-0.083229,0.961999,0.204945,0.014585,-0.978665, + 0.204945,0.014585,-0.978665,0.204945,0.014585,-0.978665,0.204945,0.014585,-0.978665,-0.205644,-0.068401,0.976233, + -0.205644,-0.068401,0.976233,-0.205644,-0.068401,0.976233,-0.205644,-0.068401,0.976233,0.889303,0.379352,0.255406, + 0.889303,0.379352,0.255406,0.889303,0.379352,0.255406,0.889303,0.379352,0.255406,-0.194410,-0.005462,0.980905, + -0.194410,-0.005462,0.980905,-0.194410,-0.005462,0.980905,-0.194410,-0.005462,0.980905,-0.954613,-0.233837,-0.184485, + -0.954613,-0.233837,-0.184485,-0.954613,-0.233837,-0.184485,0.757937,0.612258,0.225104,0.757937,0.612258,0.225104, + 0.757937,0.612258,0.225104,-0.903971,-0.285707,-0.318132,-0.903971,-0.285707,-0.318132,-0.903971,-0.285707,-0.318132, + 0.732120,0.627278,0.265562,0.732120,0.627278,0.265562,0.732120,0.627278,0.265562,0.418599,-0.903785,0.089149, + 0.418599,-0.903785,0.089149,0.418599,-0.903785,0.089149,0.418599,-0.903785,0.089149,-0.433977,0.896049,-0.093600, + -0.433977,0.896049,-0.093600,-0.433977,0.896049,-0.093600,-0.433977,0.896049,-0.093600,0.453390,-0.890574,-0.036260, + 0.453390,-0.890574,-0.036260,0.453390,-0.890574,-0.036260,0.453390,-0.890574,-0.036260,0.732117,0.627293,0.265534, + 0.732117,0.627293,0.265534,0.732117,0.627293,0.265534,-0.234018,-0.115682,0.965326,-0.234018,-0.115682,0.965326, + -0.234018,-0.115682,0.965326,-0.234018,-0.115682,0.965326,-0.149197,-0.053711,0.987348,-0.149197,-0.053711,0.987348, + -0.149197,-0.053711,0.987348,-0.149197,-0.053711,0.987348,-0.903975,-0.285704,-0.318124,-0.903975,-0.285704,-0.318124, + -0.903975,-0.285704,-0.318124,0.757940,0.612248,0.225120,0.757940,0.612248,0.225120,0.757940,0.612248,0.225120, + -0.437170,0.898800,-0.032247,-0.437170,0.898800,-0.032247,-0.437170,0.898800,-0.032247,-0.437170,0.898800,-0.032247, + 0.263465,0.031124,-0.964167,0.263465,0.031124,-0.964167,0.263465,0.031124,-0.964167,0.263465,0.031124,-0.964167, + 0.468417,-0.880893,-0.067925,0.468417,-0.880893,-0.067925,0.468417,-0.880893,-0.067925,0.468417,-0.880893,-0.067925, + -0.954609,-0.233848,-0.184490,-0.954609,-0.233848,-0.184490,-0.954609,-0.233848,-0.184490,0.460918,-0.885751,-0.054763, + 0.460918,-0.885751,-0.054763,0.460918,-0.885751,-0.054763,0.460918,-0.885751,-0.054763,-0.260065,-0.083226,0.961998, + -0.260065,-0.083226,0.961998,-0.260065,-0.083226,0.961998,-0.260065,-0.083226,0.961998,0.293252,-0.003153,-0.956030, + 0.293252,-0.003153,-0.956030,0.293252,-0.003153,-0.956030,0.293252,-0.003153,-0.956030,-0.892376,-0.337569,-0.299520, + -0.892376,-0.337569,-0.299520,-0.892376,-0.337569,-0.299520,0.952996,0.150307,0.263071,0.952996,0.150307,0.263071, + 0.952996,0.150307,0.263071,-0.416343,0.907230,-0.059939,-0.416343,0.907230,-0.059939,-0.416343,0.907230,-0.059939, + -0.416343,0.907230,-0.059939,-0.877942,-0.350298,-0.326357,-0.877942,-0.350298,-0.326357,-0.877942,-0.350298,-0.326357, + -0.891361,-0.420252,-0.169891,-0.891361,-0.420252,-0.169891,-0.891361,-0.420252,-0.169891,0.220779,-0.014807,-0.975212, + 0.220779,-0.014807,-0.975212,0.220779,-0.014807,-0.975212,0.220779,-0.014807,-0.975212,-0.463035,0.883865,-0.066194, + -0.463035,0.883865,-0.066194,-0.463035,0.883865,-0.066194,-0.463035,0.883865,-0.066194,0.949824,0.281273,0.136821, + 0.949824,0.281273,0.136821,0.949824,0.281273,0.136821,-0.836165,-0.476683,-0.271296,-0.836165,-0.476683,-0.271296, + -0.836165,-0.476683,-0.271296,0.970039,0.239577,0.040324,0.970039,0.239577,0.040324,0.970039,0.239577,0.040324, + 0.953827,0.149064,0.260756,0.953827,0.149064,0.260756,0.953827,0.149064,0.260756,-0.383941,0.065862,0.921006, + -0.383941,0.065862,0.921006,-0.383941,0.065862,0.921006,-0.383941,0.065862,0.921006,0.440587,-0.897592,0.014557, + 0.440587,-0.897592,0.014557,0.440587,-0.897592,0.014557,0.440587,-0.897592,0.014557,-0.736221,-0.619339,-0.272759, + -0.736221,-0.619339,-0.272759,-0.736221,-0.619339,-0.272759,0.361825,0.058187,-0.930428,0.361825,0.058187,-0.930428, + 0.361825,0.058187,-0.930428,0.361825,0.058187,-0.930428,-0.493738,0.866887,-0.068771,-0.493738,0.866887,-0.068771, + -0.493738,0.866887,-0.068771,-0.493738,0.866887,-0.068771,0.925196,0.377466,0.039149,0.925196,0.377466,0.039149, + 0.925196,0.377466,0.039149,-0.731270,-0.622199,-0.279486,-0.731270,-0.622199,-0.279486,-0.731270,-0.622199,-0.279486, + 0.931107,0.364665,0.007704,0.931107,0.364665,0.007704,0.931107,0.364665,0.007704,-0.940830,-0.221871,-0.256148, + -0.940830,-0.221871,-0.256148,-0.940830,-0.221871,-0.256148,-0.940830,-0.221871,-0.256148,0.230177,-0.972534,0.034596, + 0.230177,-0.972534,0.034596,0.230177,-0.972534,0.034596,0.230177,-0.972534,0.034596,-0.256804,-0.026407,0.966103, + -0.256804,-0.026407,0.966103,-0.256804,-0.026407,0.966103,-0.256804,-0.026407,0.966103,-0.232063,0.972067,-0.035113, + -0.232063,0.972067,-0.035113,-0.232063,0.972067,-0.035113,-0.232063,0.972067,-0.035113,0.256063,0.030132,-0.966190, + 0.256063,0.030132,-0.966190,0.256063,0.030132,-0.966190,0.256063,0.030132,-0.966190,-0.235965,0.971418,0.025844, + -0.235965,0.971418,0.025844,-0.235965,0.971418,0.025844,-0.235965,0.971418,0.025844,0.192100,0.029441,-0.980934, + 0.192100,0.029441,-0.980934,0.192100,0.029441,-0.980934,0.192100,0.029441,-0.980934,-0.209940,-0.078210,0.974581, + -0.209940,-0.078210,0.974581,-0.209940,-0.078210,0.974581,-0.209940,-0.078210,0.974581,-0.958650,-0.135144,-0.250452, + -0.958650,-0.135144,-0.250452,-0.958650,-0.135144,-0.250452,0.258149,-0.958197,-0.123358,0.258149,-0.958197,-0.123358, + 0.258149,-0.958197,-0.123358,0.258149,-0.958197,-0.123358,-0.247455,0.964674,0.090385,-0.247455,0.964674,0.090385, + -0.247455,0.964674,0.090385,-0.247455,0.964674,0.090385,-0.991266,-0.005599,-0.131759,-0.991266,-0.005599,-0.131759, + -0.991266,-0.005599,-0.131759,0.924738,0.306042,0.226271,0.924738,0.306042,0.226271,0.924738,0.306042,0.226271, + 0.896591,0.399862,0.190354,0.896591,0.399862,0.190354,0.896591,0.399862,0.190354,-0.973300,-0.040594,-0.225917, + -0.973300,-0.040594,-0.225917,-0.973300,-0.040594,-0.225917,0.930689,0.299195,0.210474,0.930689,0.299195,0.210474, + 0.930689,0.299195,0.210474,0.263734,-0.958097,-0.111776,0.263734,-0.958097,-0.111776,0.263734,-0.958097,-0.111776, + 0.263734,-0.958097,-0.111776,-0.977634,-0.106044,-0.181621,-0.977634,-0.106044,-0.181621,-0.977634,-0.106044,-0.181621, + 0.892675,0.404110,0.199565,0.892675,0.404110,0.199565,0.892675,0.404110,0.199565,0.211880,-0.971850,0.103030, + 0.211880,-0.971850,0.103030,0.211880,-0.971850,0.103030,0.211880,-0.971850,0.103030,-0.236902,0.970879,0.035656, + -0.236902,0.970879,0.035656,-0.236902,0.970879,0.035656,-0.236902,0.970879,0.035656,-0.275199,-0.084488,0.957668, + -0.275199,-0.084488,0.957668,-0.275199,-0.084488,0.957668,-0.275199,-0.084488,0.957668,0.195200,0.026935,-0.980394, + 0.195200,0.026935,-0.980394,0.195200,0.026935,-0.980394,0.195200,0.026935,-0.980394,-0.207121,-0.079209,0.975103, + -0.207121,-0.079209,0.975103,-0.207121,-0.079209,0.975103,-0.207121,-0.079209,0.975103,0.950958,0.171441,0.257462, + 0.950958,0.171441,0.257462,0.950958,0.171441,0.257462,0.950958,0.171441,0.257462,-0.188350,-0.020784,0.981882, + -0.188350,-0.020784,0.981882,-0.188350,-0.020784,0.981882,-0.188350,-0.020784,0.981882,-0.972978,-0.100270,-0.207991, + -0.972978,-0.100270,-0.207991,-0.972978,-0.100270,-0.207991,0.900333,0.357257,0.248532,0.900333,0.357257,0.248532, + 0.900333,0.357257,0.248532,-0.946447,-0.134245,-0.293626,-0.946447,-0.134245,-0.293626,-0.946447,-0.134245,-0.293626, + 0.887671,0.369211,0.275179,0.887671,0.369211,0.275179,0.887671,0.369211,0.275179,0.221761,-0.974566,0.032306, + 0.221761,-0.974566,0.032306,0.221761,-0.974566,0.032306,0.221761,-0.974566,0.032306,-0.234717,0.971403,-0.035838, + -0.234717,0.971403,-0.035838,-0.234717,0.971403,-0.035838,-0.234717,0.971403,-0.035838,0.250495,-0.963716,-0.092218, + 0.250495,-0.963716,-0.092218,0.250495,-0.963716,-0.092218,0.250495,-0.963716,-0.092218,0.892220,0.359069,0.273883, + 0.892220,0.359069,0.273883,0.892220,0.359069,0.273883,-0.207414,-0.113244,0.971676,-0.207414,-0.113244,0.971676, + -0.207414,-0.113244,0.971676,-0.207414,-0.113244,0.971676,-0.235976,-0.111543,0.965336,-0.235976,-0.111543,0.965336, + -0.235976,-0.111543,0.965336,-0.235976,-0.111543,0.965336,-0.946173,-0.142033,-0.290831,-0.946173,-0.142033,-0.290831, + -0.946173,-0.142033,-0.290831,0.903770,0.347970,0.249234,0.903770,0.347970,0.249234,0.903770,0.347970,0.249234, + -0.268389,0.963175,0.016169,-0.268389,0.963175,0.016169,-0.268389,0.963175,0.016169,-0.268389,0.963175,0.016169, + 0.263682,0.032040,-0.964077,0.263682,0.032040,-0.964077,0.263682,0.032040,-0.964077,0.263682,0.032040,-0.964077, + 0.288565,-0.949994,-0.119340,0.288565,-0.949994,-0.119340,0.288565,-0.949994,-0.119340,0.288565,-0.949994,-0.119340, + -0.971022,-0.110662,-0.211828,-0.971022,-0.110662,-0.211828,-0.971022,-0.110662,-0.211828,0.290772,-0.951068,-0.104505, + 0.290772,-0.951068,-0.104505,0.290772,-0.951068,-0.104505,0.290772,-0.951068,-0.104505,-0.274928,-0.084381,0.957755, + -0.274928,-0.084381,0.957755,-0.274928,-0.084381,0.957755,-0.274928,-0.084381,0.957755,0.278022,-0.007806,-0.960543, + 0.278022,-0.007806,-0.960543,0.278022,-0.007806,-0.960543,0.278022,-0.007806,-0.960543,-0.951215,-0.114129,-0.286645, + -0.951215,-0.114129,-0.286645,-0.951215,-0.114129,-0.286645,0.930849,0.262087,0.254618,0.930849,0.262087,0.254618, + 0.930849,0.262087,0.254618,-0.210901,0.977506,0.001450,-0.210901,0.977506,0.001450,-0.210901,0.977506,0.001450, + -0.210901,0.977506,0.001450,-0.930890,-0.141611,-0.336733,-0.930890,-0.141611,-0.336733,-0.930890,-0.141611,-0.336733, + -0.938003,-0.219235,-0.268490,-0.938003,-0.219235,-0.268490,-0.938003,-0.219235,-0.268490,0.288151,0.043087,-0.956615, + 0.288151,0.043087,-0.956615,0.288151,0.043087,-0.956615,0.288151,0.043087,-0.956615,-0.271436,0.962365,-0.013275, + -0.271436,0.962365,-0.013275,-0.271436,0.962365,-0.013275,-0.271436,0.962365,-0.013275,0.969564,0.094449,0.225886, + 0.969564,0.094449,0.225886,0.969564,0.094449,0.225886,-0.890046,-0.266204,-0.370074,-0.890046,-0.266204,-0.370074, + -0.890046,-0.266204,-0.370074,0.989138,0.065623,0.131530,0.989138,0.065623,0.131530,0.989138,0.065623,0.131530, + 0.930867,0.262054,0.254588,0.930867,0.262054,0.254588,0.930867,0.262054,0.254588,-0.256805,-0.026406,0.966102, + -0.256805,-0.026406,0.966102,-0.256805,-0.026406,0.966102,-0.256805,-0.026406,0.966102,0.237439,-0.969662,-0.058128, + 0.237439,-0.969662,-0.058128,0.237439,-0.969662,-0.058128,0.237439,-0.969662,-0.058128,-0.899179,-0.400824,-0.175547, + -0.899179,-0.400824,-0.175547,-0.899179,-0.400824,-0.175547,0.247263,0.006336,-0.968928,0.247263,0.006336,-0.968928, + 0.247263,0.006336,-0.968928,0.247263,0.006336,-0.968928,-0.311505,0.950104,-0.016356,-0.311505,0.950104,-0.016356, + -0.311505,0.950104,-0.016356,-0.311505,0.950104,-0.016356,0.975791,0.211492,0.055699,0.975791,0.211492,0.055699, + 0.975791,0.211492,0.055699,-0.887530,-0.412259,-0.205750,-0.887530,-0.412259,-0.205750,-0.887530,-0.412259,-0.205750, + 0.983699,0.172952,-0.049233,0.983699,0.172952,-0.049233,0.983699,0.172952,-0.049233,0.722220,0.647687,0.242693, + 0.722220,0.647687,0.242693,0.722220,0.647687,0.242693,0.722220,0.647687,0.242693,-0.657485,0.748989,-0.082030, + -0.657485,0.748989,-0.082030,-0.657485,0.748989,-0.082030,-0.657485,0.748989,-0.082030,-0.234917,-0.100327,0.966824, + -0.234917,-0.100327,0.966824,-0.234917,-0.100327,0.966824,-0.234917,-0.100327,0.966824,0.658924,-0.747670,0.082516, + 0.658924,-0.747670,0.082516,0.658924,-0.747670,0.082516,0.658924,-0.747670,0.082516,0.237313,0.097397,-0.966538, + 0.237313,0.097397,-0.966538,0.237313,0.097397,-0.966538,0.237313,0.097397,-0.966538,0.635214,-0.760010,0.137430, + 0.635214,-0.760010,0.137430,0.635214,-0.760010,0.137430,0.635214,-0.760010,0.137430,0.292154,0.128154,-0.947746, + 0.292154,0.128154,-0.947746,0.292154,0.128154,-0.947746,0.292154,0.128154,-0.947746,-0.299204,-0.076434,0.951123, + -0.299204,-0.076434,0.951123,-0.299204,-0.076434,0.951123,-0.299204,-0.076434,0.951123,0.774994,0.577667,0.256290, + 0.774994,0.577667,0.256290,0.774994,0.577667,0.256290,-0.603579,0.762443,-0.233180,-0.603579,0.762443,-0.233180, + -0.603579,0.762443,-0.233180,-0.603579,0.762443,-0.233180,0.612803,-0.764709,0.199231,0.612803,-0.764709,0.199231, + 0.612803,-0.764709,0.199231,0.612803,-0.764709,0.199231,0.810692,0.449290,0.375389,0.810692,0.449290,0.375389, + 0.810692,0.449290,0.375389,-0.656585,-0.707708,-0.260853,-0.656585,-0.707708,-0.260853,-0.656585,-0.707708,-0.260853, + -0.574511,-0.769710,-0.278358,-0.574511,-0.769710,-0.278358,-0.574511,-0.769710,-0.278358,0.820915,0.495010,0.284716, + 0.820915,0.495010,0.284716,0.820915,0.495010,0.284716,-0.657581,-0.700410,-0.277512,-0.657581,-0.700410,-0.277512, + -0.657581,-0.700410,-0.277512,-0.612802,0.757259,-0.225904,-0.612802,0.757259,-0.225904,-0.612802,0.757259,-0.225904, + -0.612802,0.757259,-0.225904,0.773644,0.543640,0.325470,0.773644,0.543640,0.325470,0.773644,0.543640,0.325470, + -0.573481,-0.774015,-0.268367,-0.573481,-0.774015,-0.268367,-0.573481,-0.774015,-0.268367,-0.672814,0.739688,-0.013506, + -0.672814,0.739688,-0.013506,-0.672814,0.739688,-0.013506,-0.672814,0.739688,-0.013506,0.631413,-0.761496,0.146430, + 0.631413,-0.761496,0.146430,0.631413,-0.761496,0.146430,0.631413,-0.761496,0.146430,-0.245122,-0.039706,0.968679, + -0.245122,-0.039706,0.968679,-0.245122,-0.039706,0.968679,-0.245122,-0.039706,0.968679,0.288357,0.128940,-0.948802, + 0.288357,0.128940,-0.948802,0.288357,0.128940,-0.948802,0.288357,0.128940,-0.948802,-0.302069,-0.076849,0.950184, + -0.302069,-0.076849,0.950184,-0.302069,-0.076849,0.950184,-0.302069,-0.076849,0.950184,-0.754721,-0.607988,-0.246470, + -0.754721,-0.607988,-0.246470,-0.754721,-0.607988,-0.246470,-0.754721,-0.607988,-0.246470,-0.291272,-0.137544,0.946701, + -0.291272,-0.137544,0.946701,-0.291272,-0.137544,0.946701,-0.291272,-0.137544,0.946701,0.784283,0.542922,0.300225, + 0.784283,0.542922,0.300225,0.784283,0.542922,0.300225,-0.623021,-0.747760,-0.229566,-0.623021,-0.747760,-0.229566, + -0.623021,-0.747760,-0.229566,0.784798,0.582094,0.212741,0.784798,0.582094,0.212741,0.784798,0.582094,0.212741, + -0.619170,-0.759332,-0.200107,-0.619170,-0.759332,-0.200107,-0.619170,-0.759332,-0.200107,-0.651048,0.754823,-0.079861, + -0.651048,0.754823,-0.079861,-0.651048,0.754823,-0.079861,-0.651048,0.754823,-0.079861,0.660945,-0.745808,0.083200, + 0.660945,-0.745808,0.083200,0.660945,-0.745808,0.083200,0.660945,-0.745808,0.083200,-0.613875,0.763041,-0.202299, + -0.613875,0.763041,-0.202299,-0.613875,0.763041,-0.202299,-0.613875,0.763041,-0.202299,-0.626942,-0.752021,-0.203489, + -0.626942,-0.752021,-0.203489,-0.626942,-0.752021,-0.203489,-0.316699,-0.046060,0.947407,-0.316699,-0.046060,0.947407, + -0.316699,-0.046060,0.947407,-0.316699,-0.046060,0.947407,-0.291352,-0.034139,0.956007,-0.291352,-0.034139,0.956007, + -0.291352,-0.034139,0.956007,-0.291352,-0.034139,0.956007,0.779635,0.588148,0.215059,0.779635,0.588148,0.215059, + 0.779635,0.588148,0.215059,-0.630419,-0.741218,-0.230582,-0.630419,-0.741218,-0.230582,-0.630419,-0.741218,-0.230582, + 0.660180,-0.736967,0.145059,0.660180,-0.736967,0.145059,0.660180,-0.736967,0.145059,0.660180,-0.736967,0.145059, + 0.231496,0.092042,-0.968472,0.231496,0.092042,-0.968472,0.231496,0.092042,-0.968472,0.231496,0.092042,-0.968472, + -0.624594,0.741613,-0.244730,-0.624594,0.741613,-0.244730,-0.624594,0.741613,-0.244730,-0.624594,0.741613,-0.244730, + 0.779447,0.552160,0.295941,0.779447,0.552160,0.295941,0.779447,0.552160,0.295941,-0.633196,0.738103,-0.232953, + -0.633196,0.738103,-0.232953,-0.633196,0.738103,-0.232953,-0.633196,0.738103,-0.232953,-0.245302,-0.039930,0.968624, + -0.245302,-0.039930,0.968624,-0.245302,-0.039930,0.968624,-0.245302,-0.039930,0.968624,0.199894,0.120174,-0.972420, + 0.199894,0.120174,-0.972420,0.199894,0.120174,-0.972420,0.199894,0.120174,-0.972420,0.795065,0.564781,0.221119, + 0.795065,0.564781,0.221119,0.795065,0.564781,0.221119,-0.694636,-0.678433,-0.239187,-0.694636,-0.678433,-0.239187, + -0.694636,-0.678433,-0.239187,0.629560,-0.769982,0.103839,0.629560,-0.769982,0.103839,0.629560,-0.769982,0.103839, + 0.629560,-0.769982,0.103839,0.788039,0.592373,0.167596,0.788039,0.592373,0.167596,0.788039,0.592373,0.167596, + 0.726675,0.647141,0.230549,0.726675,0.647141,0.230549,0.726675,0.647141,0.230549,0.214894,0.070373,-0.974099, + 0.214894,0.070373,-0.974099,0.214894,0.070373,-0.974099,0.214894,0.070373,-0.974099,0.674858,-0.727963,0.120983, + 0.674858,-0.727963,0.120983,0.674858,-0.727963,0.120983,0.674858,-0.727963,0.120983,-0.792215,-0.540661,-0.282988, + -0.792215,-0.540661,-0.282988,-0.792215,-0.540661,-0.282988,0.711486,0.692614,0.118631,0.711486,0.692614,0.118631, + 0.711486,0.692614,0.118631,-0.780156,-0.501027,-0.374605,-0.780156,-0.501027,-0.374605,-0.780156,-0.501027,-0.374605, + -0.694642,-0.678430,-0.239176,-0.694642,-0.678430,-0.239176,-0.694642,-0.678430,-0.239176,-0.234916,-0.100330,0.966824, + -0.234916,-0.100330,0.966824,-0.234916,-0.100330,0.966824,-0.234916,-0.100330,0.966824,-0.621518,0.765565,-0.166211, + -0.621518,0.765565,-0.166211,-0.621518,0.765565,-0.166211,-0.621518,0.765565,-0.166211,0.569634,0.768083,0.292516, + 0.569634,0.768083,0.292516,0.569634,0.768083,0.292516,0.233783,0.122589,-0.964530,0.233783,0.122589,-0.964530, + 0.233783,0.122589,-0.964530,0.233783,0.122589,-0.964530,0.700871,-0.699783,0.138141,0.700871,-0.699783,0.138141, + 0.700871,-0.699783,0.138141,0.700871,-0.699783,0.138141,-0.667129,-0.605344,-0.434163,-0.667129,-0.605344,-0.434163, + -0.667129,-0.605344,-0.434163,0.568332,0.780481,0.260476,0.568332,0.780481,0.260476,0.568332,0.780481,0.260476, + -0.646247,-0.549772,-0.529259,-0.646247,-0.549772,-0.529259,-0.646247,-0.549772,-0.529259,0.567016,0.795998,0.211850, + 0.567016,0.795998,0.211850,0.567016,0.795998,0.211850,0.567016,0.795998,0.211850,-0.798871,0.587178,-0.130485, + -0.798871,0.587178,-0.130485,-0.798871,0.587178,-0.130485,-0.798871,0.587178,-0.130485,-0.228279,-0.095260,0.968924, + -0.228279,-0.095260,0.968924,-0.228279,-0.095260,0.968924,-0.228279,-0.095260,0.968924,0.798488,-0.587731,0.130342, + 0.798488,-0.587731,0.130342,0.798488,-0.587731,0.130342,0.798488,-0.587731,0.130342,0.231254,0.092952,-0.968443, + 0.231254,0.092952,-0.968443,0.231254,0.092952,-0.968443,0.231254,0.092952,-0.968443,0.779014,-0.598627,0.186501, + 0.779014,-0.598627,0.186501,0.779014,-0.598627,0.186501,0.779014,-0.598627,0.186501,0.278103,0.135388,-0.950962, + 0.278103,0.135388,-0.950962,0.278103,0.135388,-0.950962,0.278103,0.135388,-0.950962,-0.295802,-0.086162,0.951356, + -0.295802,-0.086162,0.951356,-0.295802,-0.086162,0.951356,-0.295802,-0.086162,0.951356,0.632906,0.739328,0.229837, + 0.632906,0.739328,0.229837,0.632906,0.739328,0.229837,-0.743914,0.606348,-0.280951,-0.743914,0.606348,-0.280951, + -0.743914,0.606348,-0.280951,-0.743914,0.606348,-0.280951,0.754086,-0.608456,0.247255,0.754086,-0.608456,0.247255, + 0.754086,-0.608456,0.247255,0.754086,-0.608456,0.247255,0.692077,0.627771,0.356277,0.692077,0.627771,0.356277, + 0.692077,0.627771,0.356277,-0.490028,-0.841884,-0.226061,-0.490028,-0.841884,-0.226061,-0.490028,-0.841884,-0.226061, + -0.396519,-0.886292,-0.239291,-0.396519,-0.886292,-0.239291,-0.396519,-0.886292,-0.239291,0.694420,0.669689,0.263245, + 0.694420,0.669689,0.263245,0.694420,0.669689,0.263245,-0.492156,-0.835873,-0.243104,-0.492156,-0.835873,-0.243104, + -0.492156,-0.835873,-0.243104,-0.753203,0.598051,-0.273898,-0.753203,0.598051,-0.273898,-0.753203,0.598051,-0.273898, + -0.753203,0.598051,-0.273898,0.637262,0.709521,0.300795,0.637262,0.709521,0.300795,0.637262,0.709521,0.300795, + -0.394826,-0.889727,-0.229125,-0.394826,-0.889727,-0.229125,-0.394826,-0.889727,-0.229125,-0.811304,0.581441,-0.060927, + -0.811304,0.581441,-0.060927,-0.811304,0.581441,-0.060927,-0.811304,0.581441,-0.060927,0.772681,-0.604260,0.194506, + 0.772681,-0.604260,0.194506,0.772681,-0.604260,0.194506,0.772681,-0.604260,0.194506,-0.257929,-0.048149,0.964963, + -0.257929,-0.048149,0.964963,-0.257929,-0.048149,0.964963,-0.257929,-0.048149,0.964963,0.274237,0.135303,-0.952096, + 0.274237,0.135303,-0.952096,0.274237,0.135303,-0.952096,0.274237,0.135303,-0.952096,-0.298497,-0.087217,0.950417, + -0.298497,-0.087217,0.950417,-0.298497,-0.087217,0.950417,-0.298497,-0.087217,0.950417,-0.606981,-0.764193,-0.218138, + -0.606981,-0.764193,-0.218138,-0.606981,-0.764193,-0.218138,-0.606981,-0.764193,-0.218138,-0.278878,-0.148228,0.948818, + -0.278878,-0.148228,0.948818,-0.278878,-0.148228,0.948818,-0.278878,-0.148228,0.948818,0.695957,0.646850,0.311816, + 0.695957,0.646850,0.311816,0.695957,0.646850,0.311816,-0.381821,-0.906545,-0.179972,-0.381821,-0.906545,-0.179972, + -0.381821,-0.906545,-0.179972,0.690287,0.703109,0.170708,0.690287,0.703109,0.170708,0.690287,0.703109,0.170708, + -0.372412,-0.918624,-0.132060,-0.372412,-0.918624,-0.132060,-0.372412,-0.918624,-0.132060,-0.791860,0.597170,-0.127851, + -0.791860,0.597170,-0.127851,-0.791860,0.597170,-0.127851,-0.791860,0.597170,-0.127851,0.801807,-0.582914,0.131595, + 0.801807,-0.582914,0.131595,0.801807,-0.582914,0.131595,0.801807,-0.582914,0.131595,-0.757785,0.600999,-0.254089, + -0.757785,0.600999,-0.254089,-0.757785,0.600999,-0.254089,-0.757785,0.600999,-0.254089,-0.372406,-0.918624,-0.132077, + -0.372406,-0.918624,-0.132077,-0.372406,-0.918624,-0.132077,-0.294820,-0.031325,0.955039,-0.294820,-0.031325,0.955039, + -0.294820,-0.031325,0.955039,-0.294820,-0.031325,0.955039,-0.339321,-0.126276,0.932157,-0.339321,-0.126276,0.932157, + -0.339321,-0.126276,0.932157,-0.339321,-0.126276,0.932157,0.690287,0.703109,0.170708,0.690287,0.703109,0.170708, + 0.690287,0.703109,0.170708,-0.381820,-0.906553,-0.179929,-0.381820,-0.906553,-0.179929,-0.381820,-0.906553,-0.179929, + 0.779017,-0.598626,0.186495,0.779017,-0.598626,0.186495,0.779017,-0.598626,0.186495,0.779017,-0.598626,0.186495, + 0.231261,0.092952,-0.968441,0.231261,0.092952,-0.968441,0.231261,0.092952,-0.968441,0.231261,0.092952,-0.968441, + -0.750895,0.593805,-0.289054,-0.750895,0.593805,-0.289054,-0.750895,0.593805,-0.289054,-0.750895,0.593805,-0.289054, + 0.695966,0.646835,0.311827,0.695966,0.646835,0.311827,0.695966,0.646835,0.311827,-0.753201,0.598053,-0.273900, + -0.753201,0.598053,-0.273900,-0.753201,0.598053,-0.273900,-0.753201,0.598053,-0.273900,-0.257927,-0.048146,0.964964, + -0.257927,-0.048146,0.964964,-0.257927,-0.048146,0.964964,-0.257927,-0.048146,0.964964,0.188553,0.108673,-0.976032, + 0.188553,0.108673,-0.976032,0.188553,0.108673,-0.976032,0.188553,0.108673,-0.976032,0.648485,0.739343,0.181216, + 0.648485,0.739343,0.181216,0.648485,0.739343,0.181216,-0.768861,-0.591624,-0.242558,-0.768861,-0.591624,-0.242558, + -0.768861,-0.591624,-0.242558,0.779150,-0.608097,0.152126,0.779150,-0.608097,0.152126,0.779150,-0.608097,0.152126, + 0.779150,-0.608097,0.152126,0.642970,0.750901,0.150791,0.642970,0.750901,0.150791,0.642970,0.750901,0.150791, + 0.551916,0.780512,0.293581,0.551916,0.780512,0.293581,0.551916,0.780512,0.293581,0.246555,0.153665,-0.956869, + 0.246555,0.153665,-0.956869,0.246555,0.153665,-0.956869,0.246555,0.153665,-0.956869,0.806263,-0.566659,0.169816, + 0.806263,-0.566659,0.169816,0.806263,-0.566659,0.169816,0.806263,-0.566659,0.169816,-0.648916,-0.675072,-0.350979, + -0.648916,-0.675072,-0.350979,-0.648916,-0.675072,-0.350979,0.526586,0.831234,0.178202,0.526586,0.831234,0.178202, + 0.526586,0.831234,0.178202,-0.642581,-0.623902,-0.444787,-0.642581,-0.623902,-0.444787,-0.642581,-0.623902,-0.444787, + -0.769089,-0.590323,-0.244992,-0.769089,-0.590323,-0.244992,-0.769089,-0.590323,-0.244992,-0.074095,-0.117547,0.990299, + -0.074095,-0.117547,0.990299,-0.074095,-0.117547,0.990299,-0.074095,-0.117547,0.990299,-0.773372,0.600370,-0.203597, + -0.773372,0.600370,-0.203597,-0.773372,0.600370,-0.203597,-0.773372,0.600370,-0.203597,0.382474,0.915083,0.127813, + 0.382474,0.915083,0.127813,0.382474,0.915083,0.127813,0.154602,0.020188,-0.987771,0.154602,0.020188,-0.987771, + 0.154602,0.020188,-0.987771,0.154602,0.020188,-0.987771,0.822645,-0.538370,0.182792,0.822645,-0.538370,0.182792, + 0.822645,-0.538370,0.182792,0.822645,-0.538370,0.182792,-0.541665,-0.725907,-0.423861,-0.541665,-0.725907,-0.423861, + -0.541665,-0.725907,-0.423861,0.380221,0.917144,0.119499,0.380221,0.917144,0.119499,0.380221,0.917144,0.119499, + -0.538708,-0.709644,-0.454091,-0.538708,-0.709644,-0.454091,-0.538708,-0.709644,-0.454091,-0.823204,0.521022,-0.225547, + -0.823204,0.521022,-0.225547,-0.823204,0.521022,-0.225547,-0.823204,0.521022,-0.225547,-0.181806,-0.100659,0.978169, + -0.181806,-0.100659,0.978169,-0.181806,-0.100659,0.978169,0.456600,0.846444,0.273951,0.456600,0.846444,0.273951, + 0.456600,0.846444,0.273951,0.447836,0.787087,0.424189,0.447836,0.787087,0.424189,0.447836,0.787087,0.424189, + -0.585947,-0.806511,-0.078783,-0.585947,-0.806511,-0.078783,-0.585947,-0.806511,-0.078783,-0.170780,0.015242,0.985191, + -0.170780,0.015242,0.985191,-0.170780,0.015242,0.985191,0.247552,0.087971,-0.964873,0.247552,0.087971,-0.964873, + 0.247552,0.087971,-0.964873,0.247550,0.087973,-0.964873,0.247550,0.087973,-0.964873,0.247550,0.087973,-0.964873, + -0.516749,-0.830415,-0.208284,-0.516749,-0.830415,-0.208284,-0.516749,-0.830415,-0.208284,0.761483,-0.631501,0.146119, + 0.761483,-0.631501,0.146119,0.761483,-0.631501,0.146119,0.761483,-0.631501,0.146119,0.026161,-0.994136,-0.104923, + 0.026161,-0.994136,-0.104923,0.026161,-0.994136,-0.104923,0.026161,-0.994136,-0.104923,-0.263623,0.015416,0.964503, + -0.263623,0.015416,0.964503,-0.263623,0.015416,0.964503,-0.986073,-0.011816,-0.165890,-0.986073,-0.011816,-0.165890, + -0.986073,-0.011816,-0.165890,-0.999519,0.029326,-0.010034,-0.999519,0.029326,-0.010034,-0.999519,0.029326,-0.010034, + 0.924581,-0.094989,0.368954,0.924581,-0.094989,0.368954,0.924581,-0.094989,0.368954,-0.363913,-0.033689,0.930823, + -0.363913,-0.033689,0.930823,-0.363913,-0.033689,0.930823,0.240440,0.048602,-0.969446,0.240440,0.048602,-0.969446, + 0.240440,0.048602,-0.969446,0.240441,0.048603,-0.969446,0.240441,0.048603,-0.969446,0.240441,0.048603,-0.969446, + 0.970294,-0.039591,0.238667,0.970294,-0.039591,0.238667,0.970294,-0.039591,0.238667,0.122211,0.988581,0.088160, + 0.122211,0.988581,0.088160,0.122211,0.988581,0.088160,0.122211,0.988581,0.088160,-0.837725,0.473958,-0.271257, + -0.837725,0.473958,-0.271257,-0.837725,0.473958,-0.271257,-0.837725,0.473958,-0.271257,-0.212508,-0.078549,0.973997, + -0.212508,-0.078549,0.973997,-0.212508,-0.078549,0.973997,0.406506,0.875360,0.261721,0.406506,0.875360,0.261721, + 0.406506,0.875360,0.261721,0.395049,0.820385,0.413407,0.395049,0.820385,0.413407,0.395049,0.820385,0.413407, + -0.544609,-0.835543,-0.072588,-0.544609,-0.835543,-0.072588,-0.544609,-0.835543,-0.072588,-0.207139,0.037914,0.977577, + -0.207139,0.037914,0.977577,-0.207139,0.037914,0.977577,0.278238,0.069422,-0.958000,0.278238,0.069422,-0.958000, + 0.278238,0.069422,-0.958000,0.278238,0.069425,-0.958000,0.278238,0.069425,-0.958000,0.278238,0.069425,-0.958000, + -0.469695,-0.860165,-0.198754,-0.469695,-0.860165,-0.198754,-0.469695,-0.860165,-0.198754,0.784142,-0.589677,0.193394, + 0.784142,-0.589677,0.193394,0.784142,-0.589677,0.193394,0.784142,-0.589677,0.193394,0.680997,-0.724934,0.103510, + 0.680997,-0.724934,0.103510,0.680997,-0.724934,0.103510,0.680997,-0.724934,0.103510,0.633064,0.772347,0.052055, + 0.633064,0.772347,0.052055,0.633064,0.772347,0.052055,-0.042749,0.097197,0.994347,-0.042749,0.097197,0.994347, + -0.042749,0.097197,0.994347,0.028687,0.240318,0.970270,0.028687,0.240318,0.970270,0.028687,0.240318,0.970270, + 0.259503,-0.004349,-0.965733,0.259503,-0.004349,-0.965733,0.259503,-0.004349,-0.965733,0.653924,0.739043,0.161862, + 0.653924,0.739043,0.161862,0.653924,0.739043,0.161862,-0.683312,-0.729269,-0.035373,-0.683312,-0.729269,-0.035373, + -0.683312,-0.729269,-0.035373,-0.683311,-0.729271,-0.035370,-0.683311,-0.729271,-0.035370,-0.683311,-0.729271,-0.035370, + 0.129981,-0.073837,-0.988763,0.129981,-0.073837,-0.988763,0.129981,-0.073837,-0.988763,-0.696250,0.675210,-0.243573, + -0.696250,0.675210,-0.243573,-0.696250,0.675210,-0.243573,-0.696250,0.675210,-0.243573,-0.452991,0.886245,-0.096795, + -0.452991,0.886245,-0.096795,-0.452991,0.886245,-0.096795,-0.452991,0.886245,-0.096795,-0.788583,-0.568043,-0.235507, + -0.788583,-0.568043,-0.235507,-0.788583,-0.568043,-0.235507,-0.351800,-0.074117,0.933136,-0.351800,-0.074117,0.933136, + -0.351800,-0.074117,0.933136,-0.444656,-0.192961,0.874669,-0.444656,-0.192961,0.874669,-0.444656,-0.192961,0.874669, + 0.123359,0.044948,-0.991344,0.123359,0.044948,-0.991344,0.123359,0.044948,-0.991344,-0.838574,-0.526890,-0.138494, + -0.838574,-0.526890,-0.138494,-0.838574,-0.526890,-0.138494,0.815869,0.513412,0.266018,0.815869,0.513412,0.266018, + 0.815869,0.513412,0.266018,0.815866,0.513416,0.266019,0.815866,0.513416,0.266019,0.815866,0.513416,0.266019, + 0.265750,0.075664,-0.961068,0.265750,0.075664,-0.961068,0.265750,0.075664,-0.961068,0.531085,-0.846968,-0.024380, + 0.531085,-0.846968,-0.024380,0.531085,-0.846968,-0.024380,0.531085,-0.846968,-0.024380,0.713694,0.672261,0.196740, + 0.713694,0.672261,0.196740,0.713694,0.672261,0.196740,0.713694,0.672261,0.196740,-0.746539,0.650231,-0.140996, + -0.746539,0.650231,-0.140996,-0.746539,0.650231,-0.140996,-0.287887,0.030471,0.957180,-0.287887,0.030471,0.957180, + -0.287887,0.030471,0.957180,-0.421245,0.102795,0.901103,-0.421245,0.102795,0.901103,-0.421245,0.102795,0.901103, + 0.198495,0.189571,-0.961594,0.198495,0.189571,-0.961594,0.198495,0.189571,-0.961594,-0.734284,0.678247,-0.028438, + -0.734284,0.678247,-0.028438,-0.734284,0.678247,-0.028438,0.699410,-0.698308,0.152289,0.699410,-0.698308,0.152289, + 0.699410,-0.698308,0.152289,0.699412,-0.698303,0.152305,0.699412,-0.698303,0.152305,0.699412,-0.698303,0.152305, + 0.266789,0.057388,-0.962045,0.266789,0.057388,-0.962045,0.266789,0.057388,-0.962045,-0.638496,-0.698485,-0.323175, + -0.638496,-0.698485,-0.323175,-0.638496,-0.698485,-0.323175,-0.638496,-0.698485,-0.323175,0.411515,-0.911193,0.019569, + 0.411515,-0.911193,0.019569,0.411515,-0.911193,0.019569,0.411515,-0.911193,0.019569,0.848768,0.520735,0.091808, + 0.848768,0.520735,0.091808,0.848768,0.520735,0.091808,-0.001198,0.017259,0.999850,-0.001198,0.017259,0.999850, + -0.001198,0.017259,0.999850,0.112389,0.131450,0.984931,0.112389,0.131450,0.984931,0.112389,0.131450,0.984931, + 0.236535,-0.001745,-0.971621,0.236535,-0.001745,-0.971621,0.236535,-0.001745,-0.971621,0.858647,0.472894,0.197727, + 0.858647,0.472894,0.197727,0.858647,0.472894,0.197727,-0.882301,-0.465470,-0.069879,-0.882301,-0.465470,-0.069879, + -0.882301,-0.465470,-0.069879,-0.882303,-0.465466,-0.069880,-0.882303,-0.465466,-0.069880,-0.882303,-0.465466,-0.069880, + 0.091346,-0.023704,-0.995537,0.091346,-0.023704,-0.995537,0.091346,-0.023704,-0.995537,-0.443110,0.881601,-0.162584, + -0.443110,0.881601,-0.162584,-0.443110,0.881601,-0.162584,-0.443110,0.881601,-0.162584,-0.695285,-0.667239,-0.267155, + -0.695285,-0.667239,-0.267155,-0.695285,-0.667239,-0.267155,-0.695285,-0.667239,-0.267155,0.740617,-0.651928,0.162711, + 0.740617,-0.651928,0.162711,0.740617,-0.651928,0.162711,-0.219168,-0.161881,0.962164,-0.219168,-0.161881,0.962164, + -0.219168,-0.161881,0.962164,-0.073120,-0.230956,0.970213,-0.073120,-0.230956,0.970213,-0.073120,-0.230956,0.970213, + 0.306452,-0.058711,-0.950074,0.306452,-0.058711,-0.950074,0.306452,-0.058711,-0.950074,0.675541,-0.693621,0.250067, + 0.675541,-0.693621,0.250067,0.675541,-0.693621,0.250067,-0.706774,0.696546,-0.123670,-0.706774,0.696546,-0.123670, + -0.706774,0.696546,-0.123670,-0.706770,0.696549,-0.123674,-0.706770,0.696549,-0.123674,-0.706770,0.696549,-0.123674, + 0.242837,0.074690,-0.967188,0.242837,0.074690,-0.967188,0.242837,0.074690,-0.967188,0.691146,0.711890,0.124620, + 0.691146,0.711890,0.124620,0.691146,0.711890,0.124620,0.691146,0.711890,0.124620,0.681960,-0.725494,0.092675, + 0.681960,-0.725494,0.092675,0.681960,-0.725494,0.092675,0.681960,-0.725494,0.092675,0.603199,0.765653,0.223443, + 0.603199,0.765653,0.223443,0.603199,0.765653,0.223443,-0.161455,-0.030383,0.986412,-0.161455,-0.030383,0.986412, + -0.161455,-0.030383,0.986412,-0.091278,0.115330,0.989125,-0.091278,0.115330,0.989125,-0.091278,0.115330,0.989125, + 0.370995,0.120965,-0.920723,0.370995,0.120965,-0.920723,0.370995,0.120965,-0.920723,0.611861,0.718861,0.329946, + 0.611861,0.718861,0.329946,0.611861,0.718861,0.329946,-0.656111,-0.725537,-0.207642,-0.656111,-0.725537,-0.207642, + -0.656111,-0.725537,-0.207642,-0.656114,-0.725535,-0.207638,-0.656114,-0.725535,-0.207638,-0.656114,-0.725535,-0.207638, + 0.246826,0.053698,-0.967571,0.246826,0.053698,-0.967571,0.246826,0.053698,-0.967571,-0.679449,0.693817,-0.238676, + -0.679449,0.693817,-0.238676,-0.679449,0.693817,-0.238676,-0.679449,0.693817,-0.238676,-0.569030,0.811561,-0.132565, + -0.569030,0.811561,-0.132565,-0.569030,0.811561,-0.132565,-0.569030,0.811561,-0.132565,-0.700402,-0.679059,-0.219809, + -0.700402,-0.679059,-0.219809,-0.700402,-0.679059,-0.219809,-0.349396,-0.088486,0.932788,-0.349396,-0.088486,0.932788, + -0.349396,-0.088486,0.932788,-0.424377,-0.220968,0.878110,-0.424377,-0.220968,0.878110,-0.424377,-0.220968,0.878110, + 0.127813,0.026144,-0.991454,0.127813,0.026144,-0.991454,0.127813,0.026144,-0.991454,-0.756713,-0.641739,-0.124726, + -0.756713,-0.641739,-0.124726,-0.756713,-0.641739,-0.124726,0.734554,0.629819,0.252506,0.734554,0.629819,0.252506, + 0.734554,0.629819,0.252506,0.734555,0.629820,0.252499,0.734555,0.629820,0.252499,0.734555,0.629820,0.252499, + 0.264285,0.077196,-0.961350,0.264285,0.077196,-0.961350,0.264285,0.077196,-0.961350,0.642441,-0.766263,0.010563, + 0.642441,-0.766263,0.010563,0.642441,-0.766263,0.010563,0.642441,-0.766263,0.010563,0.973164,-0.027973,0.228405, + 0.973164,-0.027973,0.228405,0.973164,-0.027973,0.228405,0.973164,-0.027973,0.228405,-0.070449,0.990406,-0.118880, + -0.070449,0.990406,-0.118880,-0.070449,0.990406,-0.118880,-0.215139,0.200143,0.955855,-0.215139,0.200143,0.955855, + -0.215139,0.200143,0.955855,-0.257475,0.346665,0.901959,-0.257475,0.346665,0.901959,-0.257475,0.346665,0.901959, + 0.306069,0.019273,-0.951814,0.306069,0.019273,-0.951814,0.306069,0.019273,-0.951814,-0.045788,0.998938,-0.005168, + -0.045788,0.998938,-0.005168,-0.045788,0.998938,-0.005168,0.002800,-0.991785,0.127889,0.002800,-0.991785,0.127889, + 0.002800,-0.991785,0.127889,0.002801,-0.991781,0.127914,0.002801,-0.991781,0.127914,0.002801,-0.991781,0.127914, + 0.261941,-0.122705,-0.957251,0.261941,-0.122705,-0.957251,0.261941,-0.122705,-0.957251,-0.933869,-0.040359,-0.355332, + -0.933869,-0.040359,-0.355332,-0.933869,-0.040359,-0.355332,-0.933869,-0.040359,-0.355332,-0.939071,0.210874,-0.271436, + -0.939071,0.210874,-0.271436,-0.939071,0.210874,-0.271436,-0.939071,0.210874,-0.271436,-0.070279,-0.994706,-0.074969, + -0.070279,-0.994706,-0.074969,-0.070279,-0.994706,-0.074969,-0.308622,-0.149289,0.939396,-0.308622,-0.149289,0.939396, + -0.308622,-0.149289,0.939396,-0.274322,-0.304975,0.911997,-0.274322,-0.304975,0.911997,-0.274322,-0.304975,0.911997, + 0.187119,-0.050528,-0.981037,0.187119,-0.050528,-0.981037,0.187119,-0.050528,-0.981037,-0.147239,-0.989022,0.012495, + -0.147239,-0.989022,0.012495,-0.147239,-0.989022,0.012495,0.124313,0.985480,0.115650,0.124313,0.985480,0.115650, + 0.124313,0.985480,0.115650,0.124311,0.985480,0.115653,0.124311,0.985480,0.115653,0.124311,0.985480,0.115653, + 0.254458,0.080994,-0.963686,0.254458,0.080994,-0.963686,0.254458,0.080994,-0.963686,0.978745,-0.148245,0.141708, + 0.978745,-0.148245,0.141708,0.978745,-0.148245,0.141708,0.978745,-0.148245,0.141708,0.973165,-0.027969,0.228404, + 0.973165,-0.027969,0.228404,0.973165,-0.027969,0.228404,0.973165,-0.027969,0.228404,-0.070450,0.990410,-0.118850, + -0.070450,0.990410,-0.118850,-0.070450,0.990410,-0.118850,-0.215140,0.200148,0.955853,-0.215140,0.200148,0.955853, + -0.215140,0.200148,0.955853,-0.257472,0.346663,0.901960,-0.257472,0.346663,0.901960,-0.257472,0.346663,0.901960, + 0.306070,0.019278,-0.951814,0.306070,0.019278,-0.951814,0.306070,0.019278,-0.951814,-0.045788,0.998938,-0.005186, + -0.045788,0.998938,-0.005186,-0.045788,0.998938,-0.005186,0.002800,-0.991782,0.127911,0.002800,-0.991782,0.127911, + 0.002800,-0.991782,0.127911,0.002802,-0.991783,0.127901,0.002802,-0.991783,0.127901,0.002802,-0.991783,0.127901, + 0.261939,-0.122706,-0.957252,0.261939,-0.122706,-0.957252,0.261939,-0.122706,-0.957252,-0.933868,-0.040357,-0.355333, + -0.933868,-0.040357,-0.355333,-0.933868,-0.040357,-0.355333,-0.933868,-0.040357,-0.355333,-0.954321,0.027316,-0.297532, + -0.954321,0.027316,-0.297532,-0.954321,0.027316,-0.297532,-0.954321,0.027316,-0.297532,0.062864,-0.990509,0.122232, + 0.062864,-0.990509,0.122232,0.062864,-0.990509,0.122232,-0.300900,-0.002146,0.953653,-0.300900,-0.002146,0.953653, + -0.300900,-0.002146,0.953653,-0.245916,-0.154234,0.956942,-0.245916,-0.154234,0.956942,-0.245916,-0.154234,0.956942, + 0.207517,-0.216267,-0.954026,0.207517,-0.216267,-0.954026,0.207517,-0.216267,-0.954026,-0.015532,-0.978073,0.207684, + -0.015532,-0.978073,0.207684,-0.015532,-0.978073,0.207684,-0.008730,0.996668,-0.081101,-0.008730,0.996668,-0.081101, + -0.008730,0.996668,-0.081101,-0.008734,0.996668,-0.081091,-0.008734,0.996668,-0.081091,-0.008734,0.996668,-0.081091, + 0.256615,-0.076154,-0.963509,0.256615,-0.076154,-0.963509,0.256615,-0.076154,-0.963509,0.987406,0.013420,0.157638, + 0.987406,0.013420,0.157638,0.987406,0.013420,0.157638,0.987406,0.013420,0.157638,-0.155131,-0.987790,0.014298, + -0.155131,-0.987790,0.014298,-0.155131,-0.987790,0.014298,-0.155131,-0.987790,0.014298,0.952521,-0.020257,0.303798, + 0.952521,-0.020257,0.303798,0.952521,-0.020257,0.303798,-0.206137,0.043131,0.977572,-0.206137,0.043131,0.977572, + -0.206137,0.043131,0.977572,-0.049029,0.077034,0.995822,-0.049029,0.077034,0.995822,-0.049029,0.077034,0.995822, + 0.400721,-0.156902,-0.902665,0.400721,-0.156902,-0.902665,0.400721,-0.156902,-0.902665,0.912301,-0.062818,0.404675, + 0.912301,-0.062818,0.404675,0.912301,-0.062818,0.404675,-0.955076,0.085465,-0.283771,-0.955076,0.085465,-0.283771, + -0.955076,0.085465,-0.283771,-0.955076,0.085463,-0.283769,-0.955076,0.085463,-0.283769,-0.955076,0.085463,-0.283769, + 0.275461,-0.097298,-0.956376,0.275461,-0.097298,-0.956376,0.275461,-0.097298,-0.956376,0.144141,0.976067,-0.162840, + 0.144141,0.976067,-0.162840,0.144141,0.976067,-0.162840,0.144141,0.976067,-0.162840,-0.345163,-0.929703,-0.128511, + -0.345163,-0.929703,-0.128511,-0.345163,-0.929703,-0.128511,-0.345163,-0.929703,-0.128511,0.876892,0.415540,0.241632, + 0.876892,0.415540,0.241632,0.876892,0.415540,0.241632,0.876892,0.415540,0.241632,-0.206635,-0.001421,0.978417, + -0.206635,-0.001421,0.978417,-0.206635,-0.001421,0.978417,-0.249071,0.022796,0.968217,-0.249071,0.022796,0.968217, + -0.249071,0.022796,0.968217,-0.979135,0.014599,-0.202688,-0.979135,0.014599,-0.202688,-0.979135,0.014599,-0.202688, + -0.979135,0.014599,-0.202688,-0.021889,0.996880,0.075841,-0.021889,0.996880,0.075841,-0.021889,0.996880,0.075841, + -0.021889,0.996880,0.075841,-0.220973,-0.039099,0.974496,-0.220973,-0.039099,0.974496,-0.220973,-0.039099,0.974496, + 0.743980,-0.648427,0.161358,0.743980,-0.648427,0.161358,0.743980,-0.648427,0.161358,0.743980,-0.648427,0.161358, + -0.784961,0.617042,-0.055630,-0.784961,0.617042,-0.055630,-0.784961,0.617042,-0.055630,-0.784961,0.617042,-0.055630, + -0.268028,-0.064113,0.961276,-0.268028,-0.064113,0.961276,-0.268028,-0.064113,0.961276,0.004004,-0.993966,-0.109614, + 0.004004,-0.993966,-0.109614,0.004004,-0.993966,-0.109614,0.004004,-0.993966,-0.109614,0.685833,0.680357,0.258357, + 0.685833,0.680357,0.258357,0.685833,0.680357,0.258357,0.685833,0.680357,0.258357,-0.239776,-0.079160,0.967595, + -0.239776,-0.079160,0.967595,-0.239776,-0.079160,0.967595,-0.251202,-0.072910,0.965185,-0.251202,-0.072910,0.965185, + -0.251202,-0.072910,0.965185,-0.848780,-0.474252,-0.233792,-0.848780,-0.474252,-0.233792,-0.848780,-0.474252,-0.233792, + -0.848780,-0.474252,-0.233792,0.130584,0.979739,0.151856,0.130584,0.979739,0.151856,0.130584,0.979739,0.151856, + 0.130584,0.979739,0.151856,-0.236812,-0.110825,0.965214,-0.236812,-0.110825,0.965214,-0.236812,-0.110825,0.965214, + 0.816817,-0.555505,0.155643,0.816817,-0.555505,0.155643,0.816817,-0.555505,0.155643,0.816817,-0.555505,0.155643, + -0.898802,0.433388,-0.065798,-0.898802,0.433388,-0.065798,-0.898802,0.433388,-0.065798,-0.898802,0.433388,-0.065798, + -0.271373,-0.134259,0.953064,-0.271373,-0.134259,0.953064,-0.271373,-0.134259,0.953064,0.762767,-0.642278,-0.075273, + 0.762767,-0.642278,-0.075273,0.762767,-0.642278,-0.075273,0.762767,-0.642278,-0.075273,-0.115274,0.908822,0.400943, + -0.115274,0.908822,0.400943,-0.115274,0.908822,0.400943,-0.115274,0.908822,0.400943,-0.277192,-0.388082,0.878952, + -0.277192,-0.388082,0.878952,-0.277192,-0.388082,0.878952,-0.288706,-0.391805,0.873578,-0.288706,-0.391805,0.873578, + -0.288706,-0.391805,0.873578,-0.147164,-0.893588,-0.424080,-0.147164,-0.893588,-0.424080,-0.147164,-0.893588,-0.424080, + -0.147164,-0.893588,-0.424080,-0.673874,0.723419,0.150193,-0.673874,0.723419,0.150193,-0.673874,0.723419,0.150193, + -0.673874,0.723419,0.150193,-0.251282,-0.406677,0.878334,-0.251282,-0.406677,0.878334,-0.251282,-0.406677,0.878334, + 0.907557,0.196074,0.371343,0.907557,0.196074,0.371343,0.907557,0.196074,0.371343,0.907557,0.196074,0.371343, + -0.886187,-0.352063,-0.301204,-0.886187,-0.352063,-0.301204,-0.886187,-0.352063,-0.301204,-0.886187,-0.352063,-0.301204, + -0.253711,-0.445376,0.858645,-0.253711,-0.445376,0.858645,-0.253711,-0.445376,0.858645,-0.341707,0.939448,-0.025956, + -0.341707,0.939448,-0.025956,-0.341707,0.939448,-0.025956,-0.341707,0.939448,-0.025956,-0.404592,-0.898858,-0.168404, + -0.404592,-0.898858,-0.168404,-0.404592,-0.898858,-0.168404,-0.404592,-0.898858,-0.168404,-0.260017,-0.098188,0.960599, + -0.260017,-0.098188,0.960599,-0.260017,-0.098188,0.960599,-0.247280,-0.099848,0.963786,-0.247280,-0.099848,0.963786, + -0.247280,-0.099848,0.963786,0.606056,0.752943,0.256461,0.606056,0.752943,0.256461,0.606056,0.752943,0.256461, + 0.606056,0.752943,0.256461,0.208567,-0.978000,-0.003865,0.208567,-0.978000,-0.003865,0.208567,-0.978000,-0.003865, + 0.208567,-0.978000,-0.003865,-0.273688,-0.069402,0.959311,-0.273688,-0.069402,0.959311,-0.273688,-0.069402,0.959311, + -0.946275,0.222393,-0.234745,-0.946275,0.222393,-0.234745,-0.946275,0.222393,-0.234745,-0.946275,0.222393,-0.234745, + 0.925928,-0.107901,0.361959,0.925928,-0.107901,0.361959,0.925928,-0.107901,0.361959,0.925928,-0.107901,0.361959, + -0.249471,-0.034291,0.967775,-0.249471,-0.034291,0.967775,-0.249471,-0.034291,0.967775,-0.501748,-0.843818,-0.190318, + -0.501748,-0.843818,-0.190318,-0.501748,-0.843818,-0.190318,-0.501748,-0.843818,-0.190318,0.940984,0.212853,0.263141, + 0.940984,0.212853,0.263141,0.940984,0.212853,0.263141,0.940984,0.212853,0.263141,-0.226797,-0.050938,0.972609, + -0.226797,-0.050938,0.972609,-0.226797,-0.050938,0.972609,-0.233529,-0.039586,0.971544,-0.233529,-0.039586,0.971544, + -0.233529,-0.039586,0.971544,-0.976699,0.043198,-0.210220,-0.976699,0.043198,-0.210220,-0.976699,0.043198,-0.210220, + -0.976699,0.043198,-0.210220,0.611475,0.759625,0.221513,0.611475,0.759625,0.221513,0.611475,0.759625,0.221513, + 0.611475,0.759625,0.221513,-0.240319,-0.079364,0.967444,-0.240319,-0.079364,0.967444,-0.240319,-0.079364,0.967444, + 0.426483,-0.903067,0.050821,0.426483,-0.903067,0.050821,0.426483,-0.903067,0.050821,0.426483,-0.903067,0.050821, + -0.557111,0.829725,0.034404,-0.557111,0.829725,0.034404,-0.557111,0.829725,0.034404,-0.557111,0.829725,0.034404, + -0.282221,-0.080868,0.955935,-0.282221,-0.080868,0.955935,-0.282221,-0.080868,0.955935,0.551971,-0.829095,0.089052, + 0.551971,-0.829095,0.089052,0.551971,-0.829095,0.089052,0.551971,-0.829095,0.089052,0.153504,0.982252,0.107788, + 0.153504,0.982252,0.107788,0.153504,0.982252,0.107788,0.153504,0.982252,0.107788,-0.264957,-0.008799,0.964220, + -0.264957,-0.008799,0.964220,-0.264957,-0.008799,0.964220,-0.307773,-0.030799,0.950961,-0.307773,-0.030799,0.950961, + -0.307773,-0.030799,0.950961,-0.560741,-0.812898,-0.157372,-0.560741,-0.812898,-0.157372,-0.560741,-0.812898,-0.157372, + -0.560741,-0.812898,-0.157372,-0.814538,0.563332,-0.138509,-0.814538,0.563332,-0.138509,-0.814538,0.563332,-0.138509, + -0.814538,0.563332,-0.138509,-0.242996,-0.042467,0.969097,-0.242996,-0.042467,0.969097,-0.242996,-0.042467,0.969097, + 0.930345,0.255269,0.263240,0.930345,0.255269,0.263240,0.930345,0.255269,0.263240,0.930345,0.255269,0.263240, + -0.945239,-0.289070,-0.151530,-0.945239,-0.289070,-0.151530,-0.945239,-0.289070,-0.151530,-0.945239,-0.289070,-0.151530, + -0.249045,-0.096762,0.963646,-0.249045,-0.096762,0.963646,-0.249045,-0.096762,0.963646,-0.405495,-0.766374,-0.498242, + -0.405495,-0.766374,-0.498242,-0.405495,-0.766374,-0.498242,-0.405495,-0.766374,-0.498242,0.798736,0.108374,0.591841, + 0.798736,0.108374,0.591841,0.798736,0.108374,0.591841,0.798736,0.108374,0.591841,-0.537182,-0.209928,0.816925, + -0.537182,-0.209928,0.816925,-0.537182,-0.209928,0.816925,-0.543232,-0.198210,0.815850,-0.543232,-0.198210,0.815850, + -0.543232,-0.198210,0.815850,-0.851341,0.135806,-0.506730,-0.851341,0.135806,-0.506730,-0.851341,0.135806,-0.506730, + -0.851341,0.135806,-0.506730,0.499020,0.671830,0.547380,0.499020,0.671830,0.547380,0.499020,0.671830,0.547380, + 0.499020,0.671830,0.547380,-0.548062,-0.236146,0.802411,-0.548062,-0.236146,0.802411,-0.548062,-0.236146,0.802411, + 0.389935,-0.920662,0.018244,0.389935,-0.920662,0.018244,0.389935,-0.920662,0.018244,0.389935,-0.920662,0.018244, + -0.541094,0.840952,0.004186,-0.541094,0.840952,0.004186,-0.541094,0.840952,0.004186,-0.541094,0.840952,0.004186, + -0.583735,-0.233189,0.777738,-0.583735,-0.233189,0.777738,-0.583735,-0.233189,0.777738,-0.485050,0.871803,-0.068449, + -0.485050,0.871803,-0.068449,-0.485050,0.871803,-0.068449,-0.485050,0.871803,-0.068449,-0.159202,-0.981185,-0.109226, + -0.159202,-0.981185,-0.109226,-0.159202,-0.981185,-0.109226,-0.159202,-0.981185,-0.109226,-0.259064,-0.094183,0.961257, + -0.259064,-0.094183,0.961257,-0.259064,-0.094183,0.961257,-0.211568,-0.073376,0.974605,-0.211568,-0.073376,0.974605, + -0.211568,-0.073376,0.974605,0.862738,0.393367,0.317721,0.862738,0.393367,0.317721,0.862738,0.393367,0.317721, + 0.862738,0.393367,0.317721,0.934464,-0.208882,0.288349,0.934464,-0.208882,0.288349,0.934464,-0.208882,0.288349, + 0.934464,-0.208882,0.288349,-0.264505,-0.088748,0.960292,-0.264505,-0.088748,0.960292,-0.264505,-0.088748,0.960292, + -0.951452,-0.160966,-0.262354,-0.951452,-0.160966,-0.262354,-0.951452,-0.160966,-0.262354,-0.951452,-0.160966,-0.262354, + 0.739304,0.571429,0.356228,0.739304,0.571429,0.356228,0.739304,0.571429,0.356228,0.739304,0.571429,0.356228, + -0.251747,-0.046223,0.966689,-0.251747,-0.046223,0.966689,-0.251747,-0.046223,0.966689,-0.333869,-0.929023,-0.159524, + -0.333869,-0.929023,-0.159524,-0.333869,-0.929023,-0.159524,-0.333869,-0.929023,-0.159524,-0.862333,0.473530,-0.179308, + -0.862333,0.473530,-0.179308,-0.862333,0.473530,-0.179308,0.149697,0.111291,-0.982449,0.149697,0.111291,-0.982449, + 0.149697,0.111291,-0.982449,0.026863,0.216323,-0.975952,0.026863,0.216323,-0.975952,0.026863,0.216323,-0.975952, + -0.378651,-0.107786,0.919242,-0.378651,-0.107786,0.919242,-0.378651,-0.107786,0.919242,-0.852581,0.435355,-0.289087, + -0.852581,0.435355,-0.289087,-0.852581,0.435355,-0.289087,0.894500,-0.414476,0.167569,0.894500,-0.414476,0.167569, + 0.894500,-0.414476,0.167569,0.894499,-0.414477,0.167570,0.894499,-0.414477,0.167570,0.894499,-0.414477,0.167570, + -0.237451,-0.122867,0.963598,-0.237451,-0.122867,0.963598,-0.237451,-0.122867,0.963598,0.345824,0.888120,0.302734, + 0.345824,0.888120,0.302734,0.345824,0.888120,0.302734,0.345824,0.888120,0.302734,0.366964,-0.927067,0.076702, + 0.366964,-0.927067,0.076702,0.366964,-0.927067,0.076702,0.366964,-0.927067,0.076702,0.256697,0.155822,-0.953848, + 0.256697,0.155822,-0.953848,0.256697,0.155822,-0.953848,0.906503,0.371758,0.200123,0.906503,0.371758,0.200123, + 0.906503,0.371758,0.200123,0.905930,0.420921,0.045997,0.905930,0.420921,0.045997,0.905930,0.420921,0.045997, + -0.803427,-0.437622,-0.403722,-0.803427,-0.437622,-0.403722,-0.803427,-0.437622,-0.403722,0.367492,0.149001,-0.918013, + 0.367492,0.149001,-0.918013,0.367492,0.149001,-0.918013,-0.260848,-0.088101,0.961351,-0.260848,-0.088101,0.961351, + -0.260848,-0.088101,0.961351,-0.260846,-0.088100,0.961352,-0.260846,-0.088100,0.961352,-0.260846,-0.088100,0.961352, + -0.870119,-0.409889,-0.273649,-0.870119,-0.409889,-0.273649,-0.870119,-0.409889,-0.273649,-0.501360,0.862769,-0.065326, + -0.501360,0.862769,-0.065326,-0.501360,0.862769,-0.065326,-0.501360,0.862769,-0.065326,0.980755,-0.096409,0.169781, + 0.980755,-0.096409,0.169781,0.980755,-0.096409,0.169781,0.980755,-0.096409,0.169781,-0.296192,-0.061191,0.953166, + -0.296192,-0.061191,0.953166,-0.296192,-0.061191,0.953166,-0.094877,-0.995488,0.001210,-0.094877,-0.995488,0.001210, + -0.094877,-0.995488,0.001210,-0.075290,-0.996654,-0.031825,-0.075290,-0.996654,-0.031825,-0.075290,-0.996654,-0.031825, + 0.136455,0.963462,0.230481,0.136455,0.963462,0.230481,0.136455,0.963462,0.230481,-0.256378,-0.156657,0.953797, + -0.256378,-0.156657,0.953797,-0.256378,-0.156657,0.953797,0.229880,0.054334,-0.971701,0.229880,0.054334,-0.971701, + 0.229880,0.054334,-0.971701,0.233541,0.046542,-0.971232,0.233541,0.046542,-0.971232,0.233541,0.046542,-0.971232, + 0.123262,0.988773,0.084463,0.123262,0.988773,0.084463,0.123262,0.988773,0.084463,-0.951981,0.224001,-0.208700, + -0.951981,0.224001,-0.208700,-0.951981,0.224001,-0.208700,-0.951981,0.224001,-0.208700,-0.759512,0.623726,-0.184681, + -0.759512,0.623726,-0.184681,-0.759512,0.623726,-0.184681,-0.759512,0.623726,-0.184681,-0.437905,-0.831969,-0.340685, + -0.437905,-0.831969,-0.340685,-0.437905,-0.831969,-0.340685,-0.423708,-0.253050,0.869734,-0.423708,-0.253050,0.869734, + -0.423708,-0.253050,0.869734,-0.449193,-0.396960,0.800405,-0.449193,-0.396960,0.800405,-0.449193,-0.396960,0.800405, + 0.239292,0.134794,-0.961546,0.239292,0.134794,-0.961546,0.239292,0.134794,-0.961546,-0.514228,-0.819361,-0.253413, + -0.514228,-0.819361,-0.253413,-0.514228,-0.819361,-0.253413,0.480498,0.792200,0.376219,0.480498,0.792200,0.376219, + 0.480498,0.792200,0.376219,0.480504,0.792198,0.376214,0.480504,0.792198,0.376214,0.480504,0.792198,0.376214, + 0.349937,0.220168,-0.910533,0.349937,0.220168,-0.910533,0.349937,0.220168,-0.910533,0.831357,-0.550511,0.076044, + 0.831357,-0.550511,0.076044,0.831357,-0.550511,0.076044,0.831357,-0.550511,0.076044,-0.101925,-0.981371,-0.162858, + -0.101925,-0.981371,-0.162858,-0.101925,-0.981371,-0.162858,-0.101925,-0.981371,-0.162858,0.948794,-0.025038,0.314902, + 0.948794,-0.025038,0.314902,0.948794,-0.025038,0.314902,-0.219022,-0.140895,0.965494,-0.219022,-0.140895,0.965494, + -0.219022,-0.140895,0.965494,-0.064170,-0.102785,0.992632,-0.064170,-0.102785,0.992632,-0.064170,-0.102785,0.992632, + 0.418612,0.025746,-0.907800,0.418612,0.025746,-0.907800,0.418612,0.025746,-0.907800,0.909798,-0.086762,0.405881, + 0.909798,-0.086762,0.405881,0.909798,-0.086762,0.405881,-0.955075,0.085468,-0.283773,-0.955075,0.085468,-0.283773, + -0.955075,0.085468,-0.283773,-0.955077,0.085461,-0.283769,-0.955077,0.085461,-0.283769,-0.955077,0.085461,-0.283769, + 0.290904,0.087439,-0.952748,0.290904,0.087439,-0.952748,0.290904,0.087439,-0.952748,0.093227,0.995541,0.014375, + 0.093227,0.995541,0.014375,0.093227,0.995541,0.014375,0.093227,0.995541,0.014375,0.549467,0.095321,-0.830060, + 0.549467,0.095321,-0.830060,0.549467,0.095321,-0.830060,0.549467,0.095321,-0.830060,-0.955670,-0.107316,-0.274187, + -0.955670,-0.107316,-0.274187,-0.955670,-0.107316,-0.274187,-0.955670,-0.107316,-0.274187,0.146200,-0.988699,-0.033157, + 0.146200,-0.988699,-0.033157,0.146200,-0.988699,-0.033157,0.146200,-0.988699,-0.033157,0.251320,0.074176,-0.965058, + 0.251320,0.074176,-0.965058,0.251320,0.074176,-0.965058,0.251320,0.074176,-0.965058,0.145687,-0.988838,-0.031215, + 0.145687,-0.988838,-0.031215,0.145687,-0.988838,-0.031215,0.145687,-0.988838,-0.031215,-0.258460,-0.012890,0.965936, + -0.258460,-0.012890,0.965936,-0.258460,-0.012890,0.965936,-0.258460,-0.012890,0.965936,-0.624118,-0.029533,-0.780772, + -0.624118,-0.029533,-0.780772,-0.624118,-0.029533,-0.780772,-0.624118,-0.029533,-0.780772,0.143899,-0.989112,-0.030828, + 0.143899,-0.989112,-0.030828,0.143899,-0.989112,-0.030828,0.143899,-0.989112,-0.030828,0.156395,-0.987347,-0.026190, + 0.156395,-0.987347,-0.026190,0.156395,-0.987347,-0.026190,0.156395,-0.987347,-0.026190,0.020814,-0.997926,-0.060921, + 0.020814,-0.997926,-0.060921,0.020814,-0.997926,-0.060921,0.020814,-0.997926,-0.060921,0.944218,0.191960,0.267590, + 0.944218,0.191960,0.267590,0.944218,0.191960,0.267590,0.944218,0.191960,0.267590,0.143783,-0.989171,-0.029447, + 0.143783,-0.989171,-0.029447,0.143783,-0.989171,-0.029447,0.143783,-0.989171,-0.029447,-0.954703,-0.122604,-0.271128, + -0.954703,-0.122604,-0.271128,-0.954703,-0.122604,-0.271128,-0.954703,-0.122604,-0.271128,-0.258464,-0.012894,0.965935, + -0.258464,-0.012894,0.965935,-0.258464,-0.012894,0.965935,-0.258464,-0.012894,0.965935,0.943313,0.191733,0.270924, + 0.943313,0.191733,0.270924,0.943313,0.191733,0.270924,0.943313,0.191733,0.270924,0.251323,0.074174,-0.965057, + 0.251323,0.074174,-0.965057,0.251323,0.074174,-0.965057,0.251323,0.074174,-0.965057,0.949131,0.155786,0.273645, + 0.949131,0.155786,0.273645,0.949131,0.155786,0.273645,0.949131,0.155786,0.273645,0.145688,-0.988838,-0.031210, + 0.145688,-0.988838,-0.031210,0.145688,-0.988838,-0.031210,0.145688,-0.988838,-0.031210,0.144223,-0.989085,-0.030170, + 0.144223,-0.989085,-0.030170,0.144223,-0.989085,-0.030170,0.144223,-0.989085,-0.030170,-0.258463,-0.012890,0.965935, + -0.258463,-0.012890,0.965935,-0.258463,-0.012890,0.965935,-0.258463,-0.012890,0.965935,0.145687,-0.988839,-0.031198, + 0.145687,-0.988839,-0.031198,0.145687,-0.988839,-0.031198,0.145687,-0.988839,-0.031198,0.251323,0.074172,-0.965057, + 0.251323,0.074172,-0.965057,0.251323,0.074172,-0.965057,0.251323,0.074172,-0.965057,0.143708,-0.989159,-0.030195, + 0.143708,-0.989159,-0.030195,0.143708,-0.989159,-0.030195,0.143708,-0.989159,-0.030195,-0.956227,-0.107459,-0.272182, + -0.956227,-0.107459,-0.272182,-0.956227,-0.107459,-0.272182,-0.956227,-0.107459,-0.272182,0.949603,0.155904,0.271935, + 0.949603,0.155904,0.271935,0.949603,0.155904,0.271935,0.949603,0.155904,0.271935,-0.258456,-0.012889,0.965937, + -0.258456,-0.012889,0.965937,-0.258456,-0.012889,0.965937,-0.258456,-0.012889,0.965937,0.143249,-0.989218,-0.030450, + 0.143249,-0.989218,-0.030450,0.143249,-0.989218,-0.030450,0.143249,-0.989218,-0.030450,0.157722,-0.986831,-0.035892, + 0.157722,-0.986831,-0.035892,0.157722,-0.986831,-0.035892,0.157722,-0.986831,-0.035892,0.163175,-0.985665,-0.042879, + 0.163175,-0.985665,-0.042879,0.163175,-0.985665,-0.042879,0.163175,-0.985665,-0.042879,0.158633,-0.985107,-0.066328, + 0.158633,-0.985107,-0.066328,0.158633,-0.985107,-0.066328,0.158633,-0.985107,-0.066328,0.135825,-0.986604,-0.090354, + 0.135825,-0.986604,-0.090354,0.135825,-0.986604,-0.090354,0.135825,-0.986604,-0.090354,0.097914,-0.990515,-0.096403, + 0.097914,-0.990515,-0.096403,0.097914,-0.990515,-0.096403,0.097914,-0.990515,-0.096403,0.068156,-0.993396,-0.092302, + 0.068156,-0.993396,-0.092302,0.068156,-0.993396,-0.092302,0.068156,-0.993396,-0.092302,-0.553715,-0.056860,-0.830762, + -0.553715,-0.056860,-0.830762,-0.553715,-0.056860,-0.830762,-0.553715,-0.056860,-0.830762,0.958359,0.148203,-0.244099, + 0.958359,0.148203,-0.244099,0.958359,0.148203,-0.244099,0.958359,0.148203,-0.244099,-0.959462,-0.133798,-0.248053, + -0.959462,-0.133798,-0.248053,-0.959462,-0.133798,-0.248053,-0.959462,-0.133798,-0.248053,-0.054080,0.021597,-0.998303, + -0.054080,0.021597,-0.998303,-0.054080,0.021597,-0.998303,-0.054080,0.021597,-0.998303,-0.672904,-0.077209,-0.735690, + -0.672904,-0.077209,-0.735690,-0.672904,-0.077209,-0.735690,-0.672904,-0.077209,-0.735690,0.500723,0.099113,-0.859915, + 0.500723,0.099113,-0.859915,0.500723,0.099113,-0.859915,0.500723,0.099113,-0.859915,0.954578,0.132522,0.266867, + 0.954578,0.132522,0.266867,0.954578,0.132522,0.266867,0.954578,0.132522,0.266867,0.897798,0.144385,-0.416068, + 0.897798,0.144385,-0.416068,0.897798,0.144385,-0.416068,0.897798,0.144385,-0.416068,0.146471,-0.988723,-0.031210, + 0.146471,-0.988723,-0.031210,0.146471,-0.988723,-0.031210,0.146471,-0.988723,-0.031210,0.916472,0.118476,-0.382156, + 0.916472,0.118476,-0.382156,0.916472,0.118476,-0.382156,0.916472,0.118476,-0.382156,0.148218,-0.988484,-0.030528, + 0.148218,-0.988484,-0.030528,0.148218,-0.988484,-0.030528,0.148218,-0.988484,-0.030528,-0.955817,-0.122890,-0.267043, + -0.955817,-0.122890,-0.267043,-0.955817,-0.122890,-0.267043,-0.955817,-0.122890,-0.267043,-0.065635,0.041028,-0.997000, + -0.065635,0.041028,-0.997000,-0.065635,0.041028,-0.997000,-0.065635,0.041028,-0.997000,0.145131,-0.988922,-0.031151, + 0.145131,-0.988922,-0.031151,0.145131,-0.988922,-0.031151,0.145131,-0.988922,-0.031151,0.143816,-0.989163,-0.029563, + 0.143816,-0.989163,-0.029563,0.143816,-0.989163,-0.029563,0.143816,-0.989163,-0.029563,0.944243,0.191964,0.267496, + 0.944243,0.191964,0.267496,0.944243,0.191964,0.267496,0.944243,0.191964,0.267496,-0.955846,-0.122893,-0.266937, + -0.955846,-0.122893,-0.266937,-0.955846,-0.122893,-0.266937,-0.955846,-0.122893,-0.266937,0.143816,-0.989163,-0.029562, + 0.143816,-0.989163,-0.029562,0.143816,-0.989163,-0.029562,0.143816,-0.989163,-0.029562,-0.010934,0.253517,-0.967269, + -0.010934,0.253517,-0.967269,-0.010934,0.253517,-0.967269,-0.010934,0.253517,-0.967269,0.793081,-0.589123,0.154781, + 0.793081,-0.589123,0.154781,0.793081,-0.589123,0.154781,0.793081,-0.589123,0.154781,0.539598,0.819142,0.194528, + 0.539598,0.819142,0.194528,0.539598,0.819142,0.194528,0.539598,0.819142,0.194528,0.252143,0.057692,-0.965969, + 0.252143,0.057692,-0.965969,0.252143,0.057692,-0.965969,0.252143,0.057692,-0.965969,0.539080,0.819015,0.196486, + 0.539080,0.819015,0.196486,0.539080,0.819015,0.196486,0.539080,0.819015,0.196486,-0.286229,-0.107229,0.952142, + -0.286229,-0.107229,0.952142,-0.286229,-0.107229,0.952142,-0.286229,-0.107229,0.952142,0.776566,-0.451286,-0.439644, + 0.776566,-0.451286,-0.439644,0.776566,-0.451286,-0.439644,0.776566,-0.451286,-0.439644,0.540185,0.818024,0.197578, + 0.540185,0.818024,0.197578,0.540185,0.818024,0.197578,0.540185,0.818024,0.197578,0.529106,0.825519,0.196379, + 0.529106,0.825519,0.196379,0.529106,0.825519,0.196379,0.529106,0.825519,0.196379,0.636756,0.738810,0.220682, + 0.636756,0.738810,0.220682,0.636756,0.738810,0.220682,0.636756,0.738810,0.220682,-0.835495,0.519131,-0.180141, + -0.835495,0.519131,-0.180141,-0.835495,0.519131,-0.180141,-0.835495,0.519131,-0.180141,0.539652,0.818066,0.198854, + 0.539652,0.818066,0.198854,0.539652,0.818066,0.198854,0.539652,0.818066,0.198854,0.800551,-0.577115,0.161421, + 0.800551,-0.577115,0.161421,0.800551,-0.577115,0.161421,0.800551,-0.577115,0.161421,-0.286233,-0.107233,0.952141, + -0.286233,-0.107233,0.952141,-0.286233,-0.107233,0.952141,-0.286233,-0.107233,0.952141,-0.836353,0.518899,-0.176796, + -0.836353,0.518899,-0.176796,-0.836353,0.518899,-0.176796,-0.836353,0.518899,-0.176796,0.252137,0.057695,-0.965970, + 0.252137,0.057695,-0.965970,0.252137,0.057695,-0.965970,0.252137,0.057695,-0.965970,-0.818903,0.549261,-0.166466, + -0.818903,0.549261,-0.166466,-0.818903,0.549261,-0.166466,-0.818903,0.549261,-0.166466,0.539084,0.819014,0.196481, + 0.539084,0.819014,0.196481,0.539084,0.819014,0.196481,0.539084,0.819014,0.196481,0.539665,0.818260,0.198022, + 0.539665,0.818260,0.198022,0.539665,0.818260,0.198022,0.539665,0.818260,0.198022,-0.286233,-0.107229,0.952141, + -0.286233,-0.107229,0.952141,-0.286233,-0.107229,0.952141,-0.286233,-0.107229,0.952141,0.539084,0.819014,0.196479, + 0.539084,0.819014,0.196479,0.539084,0.819014,0.196479,0.539084,0.819014,0.196479,0.252142,0.057692,-0.965969, + 0.252142,0.057692,-0.965969,0.252142,0.057692,-0.965969,0.252142,0.057692,-0.965969,0.540038,0.817966,0.198218, + 0.540038,0.817966,0.198218,0.540038,0.817966,0.198218,0.540038,0.817966,0.198218,0.792570,-0.589277,0.156797, + 0.792570,-0.589277,0.156797,0.792570,-0.589277,0.156797,0.792570,-0.589277,0.156797,-0.818465,0.549390,-0.168180, + -0.818465,0.549390,-0.168180,-0.818465,0.549390,-0.168180,-0.818465,0.549390,-0.168180,-0.286234,-0.107231,0.952140, + -0.286234,-0.107231,0.952140,-0.286234,-0.107231,0.952140,-0.286234,-0.107231,0.952140,0.540487,0.817677,0.198186, + 0.540487,0.817677,0.198186,0.540487,0.817677,0.198186,0.540487,0.817677,0.198186,0.532528,0.825455,0.187187, + 0.532528,0.825455,0.187187,0.532528,0.825455,0.187187,0.532528,0.825455,0.187187,0.531692,0.827888,0.178620, + 0.531692,0.827888,0.178620,0.531692,0.827888,0.178620,0.531692,0.827888,0.178620,0.545245,0.822947,0.159580, + 0.545245,0.822947,0.159580,0.545245,0.822947,0.159580,0.545245,0.822947,0.159580,0.571759,0.807036,0.147595, + 0.571759,0.807036,0.147595,0.571759,0.807036,0.147595,0.571759,0.807036,0.147595,0.600725,0.783711,0.157882, + 0.600725,0.783711,0.157882,0.600725,0.783711,0.157882,0.600725,0.783711,0.157882,0.619169,0.765806,0.173695, + 0.619169,0.765806,0.173695,0.619169,0.765806,0.173695,0.619169,0.765806,0.173695,0.773182,-0.386484,-0.502812, + 0.773182,-0.386484,-0.502812,0.773182,-0.386484,-0.502812,0.773182,-0.386484,-0.502812,-0.575695,0.529282,-0.623246, + -0.575695,0.529282,-0.623246,-0.575695,0.529282,-0.623246,-0.575695,0.529282,-0.623246,0.799598,-0.570773,0.186708, + 0.799598,-0.570773,0.186708,0.799598,-0.570773,0.186708,0.799598,-0.570773,0.186708,0.491305,-0.113885,-0.863510, + 0.491305,-0.113885,-0.863510,0.491305,-0.113885,-0.863510,0.491305,-0.113885,-0.863510,0.815440,-0.446932,-0.367844, + 0.815440,-0.446932,-0.367844,0.815440,-0.446932,-0.367844,0.815440,-0.446932,-0.367844,0.031232,0.215740,-0.975951, + 0.031232,0.215740,-0.975951,0.031232,0.215740,-0.975951,0.031232,0.215740,-0.975951,-0.804629,0.569537,-0.167929, + -0.804629,0.569537,-0.167929,-0.804629,0.569537,-0.167929,-0.804629,0.569537,-0.167929,-0.454355,0.480280,-0.750262, + -0.454355,0.480280,-0.750262,-0.454355,0.480280,-0.750262,-0.454355,0.480280,-0.750262,0.538522,0.819461,0.196155, + 0.538522,0.819461,0.196155,0.538522,0.819461,0.196155,0.538522,0.819461,0.196155,-0.465899,0.513985,-0.720249, + -0.465899,0.513985,-0.720249,-0.465899,0.513985,-0.720249,-0.465899,0.513985,-0.720249,0.536969,0.820512,0.196022, + 0.536969,0.820512,0.196022,0.536969,0.820512,0.196022,0.536969,0.820512,0.196022,0.799494,-0.577419,0.165518, + 0.799494,-0.577419,0.165518,0.799494,-0.577419,0.165518,0.799494,-0.577419,0.165518,0.485816,-0.135859,-0.863438, + 0.485816,-0.135859,-0.863438,0.485816,-0.135859,-0.863438,0.485816,-0.135859,-0.863438,0.539451,0.818702,0.196774, + 0.539451,0.818702,0.196774,0.539451,0.818702,0.196774,0.539451,0.818702,0.196774,0.539676,0.818080,0.198736, + 0.539676,0.818080,0.198736,0.539676,0.818080,0.198736,0.539676,0.818080,0.198736,-0.835475,0.519131,-0.180236, + -0.835475,0.519131,-0.180236,-0.835475,0.519131,-0.180236,-0.835475,0.519131,-0.180236,0.799469,-0.577422,0.165630, + 0.799469,-0.577422,0.165630,0.799469,-0.577422,0.165630,0.799469,-0.577422,0.165630,0.539687,0.818072,0.198738, + 0.539687,0.818072,0.198738,0.539687,0.818072,0.198738,0.539687,0.818072,0.198738,-0.990761,0.099420,-0.092244, + -0.990761,0.099420,-0.092244,-0.990761,0.099420,-0.092244,-0.990761,0.099420,-0.092244,0.098512,0.995032,0.014357, + 0.098512,0.995032,0.014357,0.098512,0.995032,0.014357,0.098512,0.995032,0.014357,0.990761,-0.099429,0.092230, + 0.990761,-0.099429,0.092230,0.990761,-0.099429,0.092230,0.990761,-0.099429,0.092230,-0.098520,-0.995032,-0.014357, + -0.098520,-0.995032,-0.014357,-0.098520,-0.995032,-0.014357,-0.098520,-0.995032,-0.014357,0.093212,0.005141,-0.995633, + 0.093212,0.005141,-0.995633,0.093212,0.005141,-0.995633,0.093212,0.005141,-0.995633,-0.058951,0.296873,0.953096, + -0.058951,0.296873,0.953096,-0.058951,0.296873,0.953096,-0.975695,0.093744,0.198067,-0.975695,0.093744,0.198067, + -0.975695,0.093744,0.198067,-0.975695,0.093744,0.198067,0.067542,0.951495,0.300158,0.067542,0.951495,0.300158, + 0.067542,0.951495,0.300158,0.067542,0.951495,0.300158,0.922069,-0.096702,0.374751,0.922069,-0.096702,0.374751, + 0.922069,-0.096702,0.374751,0.922069,-0.096702,0.374751,-0.121160,-0.954457,0.272640,-0.121160,-0.954457,0.272640, + -0.121160,-0.954457,0.272640,-0.121160,-0.954457,0.272640,-0.654395,0.053902,0.754229,-0.654395,0.053902,0.754229, + -0.654395,0.053902,0.754229,-0.654395,0.053902,0.754229,-0.018109,0.577049,0.816508,-0.018109,0.577049,0.816508, + -0.018109,0.577049,0.816508,-0.018109,0.577049,0.816508,0.503089,-0.062249,0.861990,0.503089,-0.062249,0.861990, + 0.503089,-0.062249,0.861990,0.503089,-0.062249,0.861990,-0.133200,-0.585405,0.799724,-0.133200,-0.585405,0.799724, + -0.133200,-0.585405,0.799724,-0.133200,-0.585405,0.799724,-0.675283,0.077446,-0.733481,-0.675283,0.077446,-0.733481, + -0.675283,0.077446,-0.733481,-0.675283,0.077446,-0.733481,0.135576,0.744141,-0.654121,0.135576,0.744141,-0.654121, + 0.135576,0.744141,-0.654121,0.135576,0.744141,-0.654121,0.799764,-0.070578,-0.596151,0.799764,-0.070578,-0.596151, + 0.799764,-0.070578,-0.596151,0.799764,-0.070578,-0.596151,-0.011098,-0.737282,-0.675494,-0.011098,-0.737282,-0.675494, + -0.011098,-0.737282,-0.675494,-0.011098,-0.737282,-0.675494,-0.094267,-0.993802,-0.058913,-0.094267,-0.993802,-0.058913, + -0.094267,-0.993802,-0.058913,-0.094267,-0.993802,-0.058913,0.993874,-0.099050,0.049020,0.993874,-0.099050,0.049020, + 0.993874,-0.099050,0.049020,0.993874,-0.099050,0.049020,0.095066,0.994176,0.050754,0.095066,0.994176,0.050754, + 0.095066,0.994176,0.050754,0.095066,0.994176,0.050754,-0.993422,0.099179,-0.057232,-0.993422,0.099179,-0.057232, + -0.993422,0.099179,-0.057232,-0.993422,0.099179,-0.057232,-0.986243,0.099551,-0.131963,-0.986243,0.099551,-0.131963, + -0.986243,0.099551,-0.131963,-0.986243,0.099551,-0.131963,0.102185,0.994434,-0.025666,0.102185,0.994434,-0.025666, + 0.102185,0.994434,-0.025666,0.102185,0.994434,-0.025666,0.993728,-0.099135,0.051736,0.993728,-0.099135,0.051736, + 0.993728,-0.099135,0.051736,0.993728,-0.099135,0.051736,-0.094669,-0.994013,-0.054553,-0.094669,-0.994013,-0.054553, + -0.094669,-0.994013,-0.054553,-0.094669,-0.994013,-0.054553,-0.118694,-0.306664,0.944388,-0.118694,-0.306664,0.944388, + -0.118694,-0.306664,0.944388,0.211640,-0.035053,0.976719,0.211640,-0.035053,0.976719,0.211640,-0.035053,0.976719, + -0.389300,0.025251,0.920765,-0.389300,0.025251,0.920765,-0.389300,0.025251,0.920765,0.038637,0.998680,-0.033846, + 0.038637,0.998680,-0.033846,0.038637,0.998680,-0.033846,0.038637,0.998680,-0.033846,-0.989492,0.035454,-0.140173, + -0.989492,0.035454,-0.140173,-0.989492,0.035454,-0.140173,-0.989492,0.035454,-0.140173,-0.037851,-0.998951,0.025762, + -0.037851,-0.998951,0.025762,-0.037851,-0.998951,0.025762,-0.037851,-0.998951,0.025762,0.990601,-0.035481,0.132104, + 0.990601,-0.035481,0.132104,0.990601,-0.035481,0.132104,0.990601,-0.035481,0.132104,0.994919,-0.093461,0.037434, + 0.994919,-0.093461,0.037434,0.994919,-0.093461,0.037434,0.994919,-0.093461,0.037434,0.097814,0.994444,-0.038894, + 0.097814,0.994444,-0.038894,0.097814,0.994444,-0.038894,0.097814,0.994444,-0.038894,-0.994468,0.093583,-0.047701, + -0.994468,0.093583,-0.047701,-0.994468,0.093583,-0.047701,-0.994468,0.093583,-0.047701,-0.096943,-0.994877,0.028658, + -0.096943,-0.994877,0.028658,-0.096943,-0.994877,0.028658,-0.096943,-0.994877,0.028658,-0.983170,0.109399,-0.146319, + -0.983170,0.109399,-0.146319,-0.983170,0.109399,-0.146319,-0.983170,0.109399,-0.146319,-0.103137,-0.992347,-0.067902, + -0.103137,-0.992347,-0.067902,-0.103137,-0.992347,-0.067902,-0.103137,-0.992347,-0.067902,0.984638,-0.109288,0.136177, + 0.984638,-0.109288,0.136177,0.984638,-0.109288,0.136177,0.984638,-0.109288,0.136177,0.104180,0.992883,0.057705, + 0.104180,0.992883,0.057705,0.104180,0.992883,0.057705,0.104180,0.992883,0.057705,-0.084918,-0.985087,-0.149639, + -0.084918,-0.985087,-0.149639,-0.084918,-0.985087,-0.149639,-0.084918,-0.985087,-0.149639,0.994325,-0.097901,-0.041620, + 0.994325,-0.097901,-0.041620,0.994325,-0.097901,-0.041620,0.994325,-0.097901,-0.041620,0.087901,0.988673,0.121654, + 0.087901,0.988673,0.121654,0.087901,0.988673,0.121654,0.087901,0.988673,0.121654,-0.995067,0.098311,0.013255, + -0.995067,0.098311,0.013255,-0.995067,0.098311,0.013255,-0.995067,0.098311,0.013255,-0.966522,0.108797,-0.232376, + -0.966522,0.108797,-0.232376,-0.966522,0.108797,-0.232376,-0.966522,0.108797,-0.232376,-0.094181,-0.983563,-0.154055, + -0.094181,-0.983563,-0.154055,-0.094181,-0.983563,-0.154055,-0.094181,-0.983563,-0.154055,0.973015,-0.109130,0.203305, + 0.973015,-0.109130,0.203305,0.973015,-0.109130,0.203305,0.973015,-0.109130,0.203305,0.097340,0.987410,0.124685, + 0.097340,0.987410,0.124685,0.097340,0.987410,0.124685,0.097340,0.987410,0.124685,0.994497,-0.092297,-0.049567, + 0.994497,-0.092297,-0.049567,0.994497,-0.092297,-0.049567,0.994497,-0.092297,-0.049567,0.105158,0.986533,-0.125276, + 0.105158,0.986533,-0.125276,0.105158,0.986533,-0.125276,0.105158,0.986533,-0.125276,-0.995495,0.092727,0.019795, + -0.995495,0.092727,0.019795,-0.995495,0.092727,0.019795,-0.995495,0.092727,0.019795,-0.102715,-0.990087,0.095794, + -0.102715,-0.990087,0.095794,-0.102715,-0.990087,0.095794,-0.102715,-0.990087,0.095794,0.047174,0.990616,-0.128276, + 0.047174,0.990616,-0.128276,0.047174,0.990616,-0.128276,0.047174,0.990616,-0.128276,-0.974401,0.035668,-0.221971, + -0.974401,0.035668,-0.221971,-0.974401,0.035668,-0.221971,-0.974401,0.035668,-0.221971,-0.044643,-0.993957,0.100281, + -0.044643,-0.993957,0.100281,-0.044643,-0.993957,0.100281,-0.044643,-0.993957,0.100281,0.980309,-0.035681,0.194221, + 0.980309,-0.035681,0.194221,0.980309,-0.035681,0.194221,0.980309,-0.035681,0.194221,-0.971446,0.099291,-0.215487, + -0.971446,0.099291,-0.215487,-0.971446,0.099291,-0.215487,-0.971446,0.099291,-0.215487,0.109342,0.987952,-0.109522, + 0.109342,0.987952,-0.109522,0.109342,0.987952,-0.109522,0.109342,0.987952,-0.109522,0.994674,-0.098017,-0.031884, + 0.994674,-0.098017,-0.031884,0.994674,-0.098017,-0.031884,0.994674,-0.098017,-0.031884,-0.086179,-0.986695,-0.137863, + -0.086179,-0.986695,-0.137863,-0.086179,-0.986695,-0.137863,-0.086179,-0.986695,-0.137863,0.945708,-0.089921,0.312331, + 0.945708,-0.089921,0.312331,0.945708,-0.089921,0.312331,0.945708,-0.089921,0.312331,0.006820,0.931653,-0.363285, + 0.006820,0.931653,-0.363285,0.006820,0.931653,-0.363285,0.006820,0.931653,-0.363285,-0.954479,0.101808,-0.280367, + -0.954479,0.101808,-0.280367,-0.954479,0.101808,-0.280367,-0.954479,0.101808,-0.280367,-0.000692,-0.934798,0.355180, + -0.000692,-0.934798,0.355180,-0.000692,-0.934798,0.355180,-0.000692,-0.934798,0.355180,0.513094,0.341612,0.787423, + 0.513094,0.341612,0.787423,0.513094,0.341612,0.787423,0.513094,0.341612,0.787423,0.437863,0.676823,-0.591766, + 0.437863,0.676823,-0.591766,0.437863,0.676823,-0.591766,0.437863,0.676823,-0.591766,-0.496214,-0.355180,-0.792224, + -0.496214,-0.355180,-0.792224,-0.496214,-0.355180,-0.792224,-0.496214,-0.355180,-0.792224,-0.401834,-0.698250,0.592433, + -0.401834,-0.698250,0.592433,-0.401834,-0.698250,0.592433,-0.401834,-0.698250,0.592433,-0.155146,-0.620485,-0.768719, + -0.155146,-0.620485,-0.768719,-0.155146,-0.620485,-0.768719,-0.155146,-0.620485,-0.768719,0.619978,0.342638,-0.705851, + 0.619978,0.342638,-0.705851,0.619978,0.342638,-0.705851,0.619978,0.342638,-0.705851,0.132736,0.650772,0.747581, + 0.132736,0.650772,0.747581,0.132736,0.650772,0.747581,0.132736,0.650772,0.747581,-0.651224,-0.324599,0.685961, + -0.651224,-0.324599,0.685961,-0.651224,-0.324599,0.685961,-0.651224,-0.324599,0.685961,0.028979,-0.962851,0.268475, + 0.028979,-0.962851,0.268475,0.028979,-0.962851,0.268475,0.028979,-0.962851,0.268475,0.891227,-0.194071,0.409941, + 0.891227,-0.194071,0.409941,0.891227,-0.194071,0.409941,0.891227,-0.194071,0.409941,-0.027974,0.963535,-0.266115, + -0.027974,0.963535,-0.266115,-0.027974,0.963535,-0.266115,-0.027974,0.963535,-0.266115,-0.875262,0.197270,-0.441589, + -0.875262,0.197270,-0.441589,-0.875262,0.197270,-0.441589,-0.875262,0.197270,-0.441589,-0.933423,0.336772,0.123719, + -0.933423,0.336772,0.123719,-0.933423,0.336772,0.123719,-0.933423,0.336772,0.123719,0.357467,0.843472,0.400965, + 0.357467,0.843472,0.400965,0.357467,0.843472,0.400965,0.357467,0.843472,0.400965,0.933422,-0.336774,-0.123722, + 0.933422,-0.336774,-0.123722,0.933422,-0.336774,-0.123722,0.933422,-0.336774,-0.123722,-0.357467,-0.843467,-0.400974, + -0.357467,-0.843467,-0.400974,-0.357467,-0.843467,-0.400974,-0.357467,-0.843467,-0.400974,0.030682,0.418501,-0.907698, + 0.030682,0.418501,-0.907698,0.030682,0.418501,-0.907698,0.030682,0.418501,-0.907698,0.079175,-0.142987,0.986553, + 0.079175,-0.142987,0.986553,0.079175,-0.142987,0.986553,-0.902794,0.202152,0.379601,-0.902794,0.202152,0.379601, + -0.902794,0.202152,0.379601,-0.902794,0.202152,0.379601,0.333529,0.687430,0.645135,0.333529,0.687430,0.645135, + 0.333529,0.687430,0.645135,0.333529,0.687430,0.645135,0.885142,-0.442926,0.142620,0.885142,-0.442926,0.142620, + 0.885142,-0.442926,0.142620,0.885142,-0.442926,0.142620,-0.351183,-0.928205,-0.122909,-0.351183,-0.928205,-0.122909, + -0.351183,-0.928205,-0.122909,-0.351183,-0.928205,-0.122909,-0.570145,-0.142959,0.809010,-0.570145,-0.142959,0.809010, + -0.570145,-0.142959,0.809010,-0.570145,-0.142959,0.809010,0.183905,0.153019,0.970960,0.183905,0.153019,0.970960, + 0.183905,0.153019,0.970960,0.183905,0.153019,0.970960,0.520341,-0.536399,0.664471,0.520341,-0.536399,0.664471, + 0.520341,-0.536399,0.664471,0.520341,-0.536399,0.664471,-0.233710,-0.832378,0.502520,-0.233710,-0.832378,0.502520, + -0.233710,-0.832378,0.502520,-0.233710,-0.832378,0.502520,-0.674357,0.530141,-0.513997,-0.674357,0.530141,-0.513997, + -0.674357,0.530141,-0.513997,-0.674357,0.530141,-0.513997,0.286586,0.907328,-0.307611,0.286586,0.907328,-0.307611, + 0.286586,0.907328,-0.307611,0.286586,0.907328,-0.307611,0.715330,0.028750,-0.698195,0.715330,0.028750,-0.698195, + 0.715330,0.028750,-0.698195,0.715330,0.028750,-0.698195,-0.245613,-0.348439,-0.904580,-0.245613,-0.348439,-0.904580, + -0.245613,-0.348439,-0.904580,-0.245613,-0.348439,-0.904580,-0.355737,-0.823889,-0.441200,-0.355737,-0.823889,-0.441200, + -0.355737,-0.823889,-0.441200,-0.355737,-0.823889,-0.441200,0.933874,-0.318329,-0.162927,0.933874,-0.318329,-0.162927, + 0.933874,-0.318329,-0.162927,0.933874,-0.318329,-0.162927,0.356106,0.827610,0.433879,0.356106,0.827610,0.433879, + 0.356106,0.827610,0.433879,0.356106,0.827610,0.433879,-0.933924,0.321870,0.155514,-0.933924,0.321870,0.155514, + -0.933924,0.321870,0.155514,-0.933924,0.321870,0.155514,-0.931450,0.353229,0.087345,-0.931450,0.353229,0.087345, + -0.931450,0.353229,0.087345,-0.931450,0.353229,0.087345,0.358410,0.859607,0.364168,0.358410,0.859607,0.364168, + 0.358410,0.859607,0.364168,0.358410,0.859607,0.364168,0.933898,-0.319501,-0.160478,0.933898,-0.319501,-0.160478, + 0.933898,-0.319501,-0.160478,0.933898,-0.319501,-0.160478,-0.355936,-0.825881,-0.437299,-0.355936,-0.825881,-0.437299, + -0.355936,-0.825881,-0.437299,-0.355936,-0.825881,-0.437299,-0.137647,-0.654594,0.743344,-0.137647,-0.654594,0.743344, + -0.137647,-0.654594,0.743344,0.253847,-0.500926,0.827427,0.253847,-0.500926,0.827427,0.253847,-0.500926,0.827427, + -0.312321,-0.296654,0.902470,-0.312321,-0.296654,0.902470,-0.312321,-0.296654,0.902470,0.297810,0.880343,0.369197, + 0.297810,0.880343,0.369197,0.297810,0.880343,0.369197,0.297810,0.880343,0.369197,-0.951918,0.301470,0.054473, + -0.951918,0.301470,0.054473,-0.951918,0.301470,0.054473,-0.951918,0.301470,0.054473,-0.297658,-0.877202,-0.376718, + -0.297658,-0.877202,-0.376718,-0.297658,-0.877202,-0.376718,-0.297658,-0.877202,-0.376718,0.952504,-0.298168,-0.061893, + 0.952504,-0.298168,-0.061893,0.952504,-0.298168,-0.061893,0.952504,-0.298168,-0.061893,0.935655,-0.308594,-0.171229, + 0.935655,-0.308594,-0.171229,0.935655,-0.308594,-0.171229,0.935655,-0.308594,-0.171229,0.353436,0.866293,0.353014, + 0.353436,0.866293,0.353014,0.353436,0.866293,0.353014,0.353436,0.866293,0.353014,-0.935819,0.313061,0.161977, + -0.935819,0.313061,0.161977,-0.935819,0.313061,0.161977,-0.935819,0.313061,0.161977,-0.353291,-0.862415,-0.362528, + -0.353291,-0.862415,-0.362528,-0.353291,-0.862415,-0.362528,-0.353291,-0.862415,-0.362528,-0.926805,0.367375,0.077900, + -0.926805,0.367375,0.077900,-0.926805,0.367375,0.077900,-0.926805,0.367375,0.077900,-0.364476,-0.816810,-0.447190, + -0.364476,-0.816810,-0.447190,-0.364476,-0.816810,-0.447190,-0.364476,-0.816810,-0.447190,0.927592,-0.363259,-0.087267, + 0.927592,-0.363259,-0.087267,0.927592,-0.363259,-0.087267,0.927592,-0.363259,-0.087267,0.364972,0.821511,0.438081, + 0.364972,0.821511,0.438081,0.364972,0.821511,0.438081,0.364972,0.821511,0.438081,-0.349977,-0.778714,-0.520692, + -0.349977,-0.778714,-0.520692,-0.349977,-0.778714,-0.520692,-0.349977,-0.778714,-0.520692,0.929152,-0.277832,-0.243897, + 0.929152,-0.277832,-0.243897,0.929152,-0.277832,-0.243897,0.929152,-0.277832,-0.243897,0.352074,0.793414,0.496526, + 0.352074,0.793414,0.496526,0.352074,0.793414,0.496526,0.352074,0.793414,0.496526,-0.931455,0.290764,0.218743, + -0.931455,0.290764,0.218743,-0.931455,0.290764,0.218743,-0.931455,0.290764,0.218743,-0.916116,0.400905,-0.002368, + -0.916116,0.400905,-0.002368,-0.916116,0.400905,-0.002368,-0.916116,0.400905,-0.002368,-0.358746,-0.773502,-0.522490, + -0.358746,-0.773502,-0.522490,-0.358746,-0.773502,-0.522490,-0.358746,-0.773502,-0.522490,0.920541,-0.389850,-0.024921, + 0.920541,-0.389850,-0.024921,0.920541,-0.389850,-0.024921,0.920541,-0.389850,-0.024921,0.361015,0.788999,0.497141, + 0.361015,0.788999,0.497141,0.361015,0.788999,0.497141,0.361015,0.788999,0.497141,0.930306,-0.269516,-0.248781, + 0.930306,-0.269516,-0.248781,0.930306,-0.269516,-0.248781,0.930306,-0.269516,-0.248781,0.353138,0.895464,0.270995, + 0.353138,0.895464,0.270995,0.353138,0.895464,0.270995,0.353138,0.895464,0.270995,-0.932933,0.283137,0.222418, + -0.932933,0.283137,0.222418,-0.932933,0.283137,0.222418,-0.932933,0.283137,0.222418,-0.353541,-0.886232,-0.299335, + -0.353541,-0.886232,-0.299335,-0.353541,-0.886232,-0.299335,-0.353541,-0.886232,-0.299335,0.298181,0.912618,0.279672, + 0.298181,0.912618,0.279672,0.298181,0.912618,0.279672,0.298181,0.912618,0.279672,-0.942309,0.334056,-0.021450, + -0.942309,0.334056,-0.021450,-0.942309,0.334056,-0.021450,-0.942309,0.334056,-0.021450,-0.298353,-0.903870,-0.306602, + -0.298353,-0.903870,-0.306602,-0.298353,-0.903870,-0.306602,-0.298353,-0.903870,-0.306602,0.946321,-0.323196,-0.004445, + 0.946321,-0.323196,-0.004445,0.946321,-0.323196,-0.004445,0.946321,-0.323196,-0.004445,-0.922339,0.386259,0.009743, + -0.922339,0.386259,0.009743,-0.922339,0.386259,0.009743,-0.922339,0.386259,0.009743,0.358507,0.888953,0.285019, + 0.358507,0.888953,0.285019,0.358507,0.888953,0.285019,0.358507,0.888953,0.285019,0.930026,-0.282301,-0.235280, + 0.930026,-0.282301,-0.235280,0.930026,-0.282301,-0.235280,0.930026,-0.282301,-0.235280,-0.350891,-0.784989,-0.510557, + -0.350891,-0.784989,-0.510557,-0.350891,-0.784989,-0.510557,-0.350891,-0.784989,-0.510557,0.905889,-0.414832,0.085327, + 0.905889,-0.414832,0.085327,0.905889,-0.414832,0.085327,0.905889,-0.414832,0.085327,0.229591,0.971927,0.051446, + 0.229591,0.971927,0.051446,0.229591,0.971927,0.051446,0.229591,0.971927,0.051446,-0.909276,0.413137,-0.050351, + -0.909276,0.413137,-0.050351,-0.909276,0.413137,-0.050351,-0.909276,0.413137,-0.050351,-0.225019,-0.972443,-0.060994, + -0.225019,-0.972443,-0.060994,-0.225019,-0.972443,-0.060994,-0.225019,-0.972443,-0.060994,0.631698,-0.152675,0.760032, + 0.631698,-0.152675,0.760032,0.631698,-0.152675,0.760032,0.631698,-0.152675,0.760032,0.563717,0.757322,-0.329677, + 0.563717,0.757322,-0.329677,0.563717,0.757322,-0.329677,0.563717,0.757322,-0.329677,-0.619283,0.139357,-0.772702, + -0.619283,0.139357,-0.772702,-0.619283,0.139357,-0.772702,-0.619283,0.139357,-0.772702,-0.534616,-0.783980,0.315534, + -0.534616,-0.783980,0.315534,-0.534616,-0.783980,0.315534,-0.534616,-0.783980,0.315534,-0.359232,-0.175158,-0.916663, + -0.359232,-0.175158,-0.916663,-0.359232,-0.175158,-0.916663,-0.359232,-0.175158,-0.916663,0.644253,0.476108,-0.598547, + 0.644253,0.476108,-0.598547,0.644253,0.476108,-0.598547,0.644253,0.476108,-0.598547,0.344358,0.215642,0.913737, + 0.344358,0.215642,0.913737,0.344358,0.215642,0.913737,0.344358,0.215642,0.913737,-0.670797,-0.445038,0.593273, + -0.670797,-0.445038,0.593273,-0.670797,-0.445038,0.593273,-0.670797,-0.445038,0.593273,-0.209106,-0.965492,-0.155239, + -0.209106,-0.965492,-0.155239,-0.209106,-0.965492,-0.155239,-0.209106,-0.965492,-0.155239,0.831970,-0.536919,0.139798, + 0.831970,-0.536919,0.139798,0.831970,-0.536919,0.139798,0.831970,-0.536919,0.139798,0.210378,0.964848,0.157510, + 0.210378,0.964848,0.157510,0.210378,0.964848,0.157510,0.210378,0.964848,0.157510,-0.817684,0.550105,-0.169639, + -0.817684,0.550105,-0.169639,-0.817684,0.550105,-0.169639,-0.817684,0.550105,-0.169639,-0.564880,-0.637949,-0.523386, + -0.564880,-0.637949,-0.523386,-0.564880,-0.637949,-0.523386,-0.564880,-0.637949,-0.523386,-0.644572,-0.618236,-0.449790, + -0.644572,-0.618236,-0.449790,-0.644572,-0.618236,-0.449790,-0.644572,-0.618236,-0.449790,-0.570529,-0.633986,-0.522071, + -0.570529,-0.633986,-0.522071,-0.570529,-0.633986,-0.522071,-0.570529,-0.633986,-0.522071,-0.644604,-0.618204,-0.449789, + -0.644604,-0.618204,-0.449789,-0.644604,-0.618204,-0.449789,-0.644604,-0.618204,-0.449789,-0.568484,-0.641477,-0.515105, + -0.568484,-0.641477,-0.515105,-0.568484,-0.641477,-0.515105,-0.568484,-0.641477,-0.515105,-0.644582,-0.618215,-0.449805, + -0.644582,-0.618215,-0.449805,-0.644582,-0.618215,-0.449805,-0.644582,-0.618215,-0.449805,-0.564866,-0.637955,-0.523392, + -0.564866,-0.637955,-0.523392,-0.564866,-0.637955,-0.523392,-0.564866,-0.637955,-0.523392,-0.644573,-0.618216,-0.449816, + -0.644573,-0.618216,-0.449816,-0.644573,-0.618216,-0.449816,-0.644573,-0.618216,-0.449816,0.575989,-0.761819,0.296428, + 0.575989,-0.761819,0.296428,0.575989,-0.761819,0.296428,0.575989,-0.761819,0.296428,-0.849590,0.391739,0.353183, + -0.849590,0.391739,0.353183,-0.849590,0.391739,0.353183,-0.849590,0.391739,0.353183,0.807729,-0.458886,-0.370133, + 0.807729,-0.458886,-0.370133,0.807729,-0.458886,-0.370133,0.807729,-0.458886,-0.370133,-0.635763,0.710045,-0.302723, + -0.635763,0.710045,-0.302723,-0.635763,0.710045,-0.302723,-0.635763,0.710045,-0.302723,-0.549897,-0.669968,-0.498755, + -0.549897,-0.669968,-0.498755,-0.549897,-0.669968,-0.498755,-0.523654,-0.053193,0.850269,-0.523654,-0.053193,0.850269, + -0.523654,-0.053193,0.850269,-0.523654,-0.053193,0.850269,0.037285,0.701545,-0.711649,0.037285,0.701545,-0.711649, + 0.037285,0.701545,-0.711649,0.037285,0.701545,-0.711649,0.138355,-0.548062,0.824916,0.138355,-0.548062,0.824916, + 0.138355,-0.548062,0.824916,0.138355,-0.548062,0.824916,0.696021,-0.623160,0.356687,0.696021,-0.623160,0.356687, + 0.696021,-0.623160,0.356687,0.696021,-0.623160,0.356687,-0.532865,0.800106,-0.275473,-0.532865,0.800106,-0.275473, + -0.532865,0.800106,-0.275473,-0.532865,0.800106,-0.275473,0.908404,-0.302455,-0.288658,0.908404,-0.302455,-0.288658, + 0.908404,-0.302455,-0.288658,0.908404,-0.302455,-0.288658,-0.776173,0.471945,0.418119,-0.776173,0.471945,0.418119, + -0.776173,0.471945,0.418119,-0.776173,0.471945,0.418119,0.669816,0.205975,-0.713387,0.669816,0.205975,-0.713387, + 0.669816,0.205975,-0.713387,0.669816,0.205975,-0.713387,-0.549886,-0.669972,-0.498761,-0.549886,-0.669972,-0.498761, + -0.549886,-0.669972,-0.498761,-0.549876,-0.669987,-0.498752,-0.549876,-0.669987,-0.498752,-0.549876,-0.669987,-0.498752, + -0.088887,0.619403,-0.780025,-0.088887,0.619403,-0.780025,-0.088887,0.619403,-0.780025,-0.088887,0.619403,-0.780025, + 0.019158,-0.640910,0.767377,0.019158,-0.640910,0.767377,0.019158,-0.640910,0.767377,0.019158,-0.640910,0.767377, + 0.567298,0.102526,-0.817105,0.567298,0.102526,-0.817105,0.567298,0.102526,-0.817105,0.567298,0.102526,-0.817105, + -0.612874,-0.126836,0.779935,-0.612874,-0.126836,0.779935,-0.612874,-0.126836,0.779935,-0.612874,-0.126836,0.779935, + 0.660455,0.180040,-0.728961,0.660455,0.180040,-0.728961,0.660455,0.180040,-0.728961,0.660455,0.180040,-0.728961, + -0.720368,0.520136,0.458834,-0.720368,0.520136,0.458834,-0.720368,0.520136,0.458834,-0.720368,0.520136,0.458834, + 0.883679,-0.343753,-0.317718,0.883679,-0.343753,-0.317718,0.883679,-0.343753,-0.317718,0.883679,-0.343753,-0.317718, + 0.551572,0.608574,0.570444,0.551572,0.608574,0.570444,0.551572,0.608574,0.570444,0.603043,0.678363,0.419717, + 0.603043,0.678363,0.419717,0.603043,0.678363,0.419717,0.490272,0.656025,0.573815,0.490272,0.656025,0.573815, + 0.490272,0.656025,0.573815,0.625744,0.628634,0.461804,0.625744,0.628634,0.461804,0.625744,0.628634,0.461804, + 0.468465,0.705698,0.531536,0.468465,0.705698,0.531536,0.468465,0.705698,0.531536,0.604465,0.596673,0.527828, + 0.604465,0.596673,0.527828,0.604465,0.596673,0.527828,0.488758,0.735710,0.468878,0.488758,0.735710,0.468878, + 0.488758,0.735710,0.468878,0.540654,0.727277,0.422802,0.540654,0.727277,0.422802,0.540654,0.727277,0.422802, + -0.485361,0.840287,-0.241541,-0.485361,0.840287,-0.241541,-0.485361,0.840287,-0.241541,-0.485361,0.840287,-0.241541, + 0.674818,-0.659292,0.331595,0.674818,-0.659292,0.331595,0.674818,-0.659292,0.331595,0.674818,-0.659292,0.331595, + 0.138021,-0.554944,0.820358,0.138021,-0.554944,0.820358,0.138021,-0.554944,0.820358,0.138021,-0.554944,0.820358, + 0.061249,0.710537,-0.700989,0.061249,0.710537,-0.700989,0.061249,0.710537,-0.700989,0.061249,0.710537,-0.700989, + -0.487901,-0.019647,0.872678,-0.487901,-0.019647,0.872678,-0.487901,-0.019647,0.872678,-0.487901,-0.019647,0.872678, + -0.259130,0.946702,-0.191329,-0.259130,0.946702,-0.191329,-0.259130,0.946702,-0.191329,-0.259130,0.946702,-0.191329, + -0.659385,-0.071396,-0.748408,-0.659385,-0.071396,-0.748408,-0.659385,-0.071396,-0.748408,-0.659385,-0.071396,-0.748408, + -0.006116,-0.995117,-0.098510,-0.006116,-0.995117,-0.098510,-0.006116,-0.995117,-0.098510,-0.006116,-0.995117,-0.098510, + 0.681102,0.117062,0.722770,0.681102,0.117062,0.722770,0.681102,0.117062,0.722770,0.681102,0.117062,0.722770, + -0.454371,0.822937,-0.341058,-0.454371,0.822937,-0.341058,-0.454371,0.822937,-0.341058,-0.454371,0.822937,-0.341058, + 0.669911,0.566131,0.480328,0.669911,0.566131,0.480328,0.669911,0.566131,0.480328,0.669911,0.566131,0.480328, + -0.549883,-0.669961,-0.498779,-0.549883,-0.669961,-0.498779,-0.549883,-0.669961,-0.498779,-0.549879,-0.669966,-0.498777, + -0.549879,-0.669966,-0.498777,-0.549879,-0.669966,-0.498777,-0.549889,-0.669993,-0.498730,-0.549889,-0.669993,-0.498730, + -0.549889,-0.669993,-0.498730,-0.549871,-0.669977,-0.498770,-0.549871,-0.669977,-0.498770,-0.549871,-0.669977,-0.498770, + -0.549877,-0.669976,-0.498766,-0.549877,-0.669976,-0.498766,-0.549877,-0.669976,-0.498766,0.694783,0.183107,0.695520, + 0.694783,0.183107,0.695520,0.694783,0.183107,0.695520,0.694783,0.183107,0.695520,-0.646647,-0.148673,0.748160, + -0.646647,-0.148673,0.748160,-0.646647,-0.148673,0.748160,-0.646647,-0.148673,0.748160,-0.693941,-0.084043,0.715111, + -0.693941,-0.084043,0.715111,-0.693941,-0.084043,0.715111,-0.693941,-0.084043,0.715111,0.771274,0.185746,0.608798, + 0.771274,0.185746,0.608798,0.771274,0.185746,0.608798,0.771274,0.185746,0.608798,-0.122557,-0.965849,-0.228288, + -0.122557,-0.965849,-0.228288,-0.122557,-0.965849,-0.228288,-0.122557,-0.965849,-0.228288,-0.759056,-0.377289,0.530553, + -0.759056,-0.377289,0.530553,-0.759056,-0.377289,0.530553,-0.726085,-0.353453,0.589806,-0.726085,-0.353453,0.589806, + -0.726085,-0.353453,0.589806,-0.726085,-0.353453,0.589806,-0.871869,0.238891,0.427522,-0.871869,0.238891,0.427522, + -0.871869,0.238891,0.427522,-0.871869,0.238891,0.427522,-0.733592,-0.495437,0.465172,-0.733592,-0.495437,0.465172, + -0.733592,-0.495437,0.465172,-0.733592,-0.495437,0.465172,0.241064,0.359821,-0.901342,0.241064,0.359821,-0.901342, + 0.241064,0.359821,-0.901342,0.241064,0.359821,-0.901342,0.138385,-0.607390,-0.782257,0.138385,-0.607390,-0.782257, + 0.138385,-0.607390,-0.782257,0.138385,-0.607390,-0.782257,0.256558,-0.367649,-0.893875,0.256558,-0.367649,-0.893875, + 0.256558,-0.367649,-0.893875,0.256558,-0.367649,-0.893875,0.794356,0.152844,0.587909,0.794356,0.152844,0.587909, + 0.794356,0.152844,0.587909,0.794356,0.152844,0.587909,-0.059289,-0.935550,-0.348183,-0.059289,-0.935550,-0.348183, + -0.059289,-0.935550,-0.348183,-0.059289,-0.935550,-0.348183,0.570955,0.271190,0.774898,0.570955,0.271190,0.774898, + 0.570955,0.271190,0.774898,0.570955,0.271190,0.774898,-0.848171,0.514261,0.127049,-0.848171,0.514261,0.127049, + -0.848171,0.514261,0.127049,-0.848171,0.514261,0.127049,0.286158,0.785471,0.548770,0.286158,0.785471,0.548770, + 0.286158,0.785471,0.548770,0.286158,0.785471,0.548770,0.706715,-0.366386,0.605240,0.706715,-0.366386,0.605240, + 0.706715,-0.366386,0.605240,0.706715,-0.366386,0.605240,-0.002961,-0.946186,-0.323610,-0.002961,-0.946186,-0.323610, + -0.002961,-0.946186,-0.323610,-0.002961,-0.946186,-0.323610,-0.725974,0.397050,-0.561528,-0.725974,0.397050,-0.561528, + -0.725974,0.397050,-0.561528,-0.725974,0.397050,-0.561528,0.489036,0.613512,0.620038,0.489036,0.613512,0.620038, + 0.489036,0.613512,0.620038,0.489036,0.613512,0.620038,-0.037241,-0.966996,0.252054,-0.037241,-0.966996,0.252054, + -0.037241,-0.966996,0.252054,-0.037241,-0.966996,0.252054,-0.736777,0.445692,-0.508447,-0.736777,0.445692,-0.508447, + -0.736777,0.445692,-0.508447,-0.736777,0.445692,-0.508447,0.592640,0.183900,-0.784193,0.592640,0.183900,-0.784193, + 0.592640,0.183900,-0.784193,0.592640,0.183900,-0.784193,0.643062,0.229529,-0.730608,0.643062,0.229529,-0.730608, + 0.643062,0.229529,-0.730608,0.643062,0.229529,-0.730608,-0.755723,0.481942,-0.443412,-0.755723,0.481942,-0.443412, + -0.755723,0.481942,-0.443412,-0.755723,0.481942,-0.443412,0.122293,-0.971823,-0.201503,0.122293,-0.971823,-0.201503, + 0.122293,-0.971823,-0.201503,0.122293,-0.971823,-0.201503,0.715941,-0.113083,-0.688942,0.715941,-0.113083,-0.688942, + 0.715941,-0.113083,-0.688942,0.678637,-0.066959,-0.731415,0.678637,-0.066959,-0.731415,0.678637,-0.066959,-0.731415, + 0.678637,-0.066959,-0.731415,0.815207,0.314322,-0.486456,0.815207,0.314322,-0.486456,0.815207,0.314322,-0.486456, + 0.815207,0.314322,-0.486456,0.609783,-0.438139,-0.660454,0.609783,-0.438139,-0.660454,0.609783,-0.438139,-0.660454, + 0.609783,-0.438139,-0.660454,-0.068777,0.056792,0.996014,-0.068777,0.056792,0.996014,-0.068777,0.056792,0.996014, + -0.068777,0.056792,0.996014,-0.214760,-0.671141,0.709540,-0.214760,-0.671141,0.709540,-0.214760,-0.671141,0.709540, + -0.214760,-0.671141,0.709540,-0.151631,-0.335717,0.929678,-0.151631,-0.335717,0.929678,-0.151631,-0.335717,0.929678, + -0.151631,-0.335717,0.929678,-0.870222,-0.015123,-0.492427,-0.870222,-0.015123,-0.492427,-0.870222,-0.015123,-0.492427, + -0.870222,-0.015123,-0.492427,0.467201,0.637189,0.612955,0.467201,0.637189,0.612955,0.467201,0.637189,0.612955, + 0.467201,0.637189,0.612955,-0.450996,0.289136,-0.844395,-0.450996,0.289136,-0.844395,-0.450996,0.289136,-0.844395, + -0.450996,0.289136,-0.844395,0.831488,0.547521,0.094066,0.831488,0.547521,0.094066,0.831488,0.547521,0.094066, + 0.831488,0.547521,0.094066,-0.556453,0.503523,-0.660927,-0.556453,0.503523,-0.660927,-0.556453,0.503523,-0.660927, + -0.556453,0.503523,-0.660927,-0.760569,0.304537,-0.573404,-0.760569,0.304537,-0.573404,-0.760569,0.304537,-0.573404, + -0.760569,0.304537,-0.573404,0.137835,-0.554960,0.820379,0.137835,-0.554960,0.820379,0.137835,-0.554960,0.820379, + 0.137835,-0.554960,0.820379,0.138662,-0.555261,0.820035,0.138662,-0.555261,0.820035,0.138662,-0.555261,0.820035, + 0.138662,-0.555261,0.820035,0.511179,0.749347,0.420921,0.511179,0.749347,0.420921,0.511179,0.749347,0.420921, + 0.511179,0.749347,0.420921,-0.524757,-0.743379,-0.414750,-0.524757,-0.743379,-0.414750,-0.524757,-0.743379,-0.414750, + -0.524757,-0.743379,-0.414750,-0.769897,0.461442,0.440828,-0.769897,0.461442,0.440828,-0.769897,0.461442,0.440828, + -0.769897,0.461442,0.440828,0.845068,-0.366540,-0.389241,0.845068,-0.366540,-0.389241,0.845068,-0.366540,-0.389241, + 0.845068,-0.366540,-0.389241,0.548377,0.732622,0.403173,0.548377,0.732622,0.403173,0.548377,0.732622,0.403173, + 0.548377,0.732622,0.403173,-0.571216,-0.721316,-0.391683,-0.571216,-0.721316,-0.391683,-0.571216,-0.721316,-0.391683, + -0.571216,-0.721316,-0.391683,-0.819200,0.401195,0.409823,-0.819200,0.401195,0.409823,-0.819200,0.401195,0.409823, + -0.819200,0.401195,0.409823,0.859153,-0.344604,-0.378291,0.859153,-0.344604,-0.378291,0.859153,-0.344604,-0.378291, + 0.859153,-0.344604,-0.378291,0.891015,-0.331585,-0.310070,0.891015,-0.331585,-0.310070,0.891015,-0.331585,-0.310070, + 0.891015,-0.331585,-0.310070,0.044685,0.703893,-0.708899,0.044685,0.703893,-0.708899,0.044685,0.703893,-0.708899, + 0.044685,0.703893,-0.708899,0.532587,0.583420,0.613166,0.532587,0.583420,0.613166,0.532587,0.583420,0.613166, + 0.532587,0.583420,0.613166,-0.507391,-0.595178,-0.623151,-0.507391,-0.595178,-0.623151,-0.507391,-0.595178,-0.623151, + -0.507391,-0.595178,-0.623151,0.843523,-0.406247,-0.351330,0.843523,-0.406247,-0.351330,0.843523,-0.406247,-0.351330, + 0.843523,-0.406247,-0.351330,-0.803019,0.446900,0.394260,-0.803019,0.446900,0.394260,-0.803019,0.446900,0.394260, + -0.803019,0.446900,0.394260,0.451213,0.720065,0.527175,0.451213,0.720065,0.527175,0.451213,0.720065,0.527175, + 0.451213,0.720065,0.527175,-0.449666,-0.736808,-0.504890,-0.449666,-0.736808,-0.504890,-0.449666,-0.736808,-0.504890, + -0.449666,-0.736808,-0.504890,0.053443,-0.602727,0.796156,0.053443,-0.602727,0.796156,0.053443,-0.602727,0.796156, + 0.053443,-0.602727,0.796156,-0.019008,0.656165,-0.754378,-0.019008,0.656165,-0.754378,-0.019008,0.656165,-0.754378, + -0.019008,0.656165,-0.754378,-0.893945,-0.212906,-0.394377,-0.893945,-0.212906,-0.394377,-0.893945,-0.212906,-0.394377, + -0.893945,-0.212906,-0.394377,-0.187236,0.981559,-0.038542,-0.187236,0.981559,-0.038542,-0.187236,0.981559,-0.038542, + -0.187236,0.981559,-0.038542,0.202900,-0.978921,-0.023361,0.202900,-0.978921,-0.023361,0.202900,-0.978921,-0.023361, + 0.202900,-0.978921,-0.023361,0.229047,-0.964045,-0.134737,0.229047,-0.964045,-0.134737,0.229047,-0.964045,-0.134737, + 0.229047,-0.964045,-0.134737,0.966349,0.239757,0.093197,0.966349,0.239757,0.093197,0.966349,0.239757,0.093197, + 0.966349,0.239757,0.093197,-0.905790,-0.137021,-0.400961,-0.905790,-0.137021,-0.400961,-0.905790,-0.137021,-0.400961, + -0.905790,-0.137021,-0.400961,-0.953951,-0.238811,-0.181516,-0.953951,-0.238811,-0.181516,-0.953951,-0.238811,-0.181516, + -0.953951,-0.238811,-0.181516,0.980966,0.163858,0.104193,0.980966,0.163858,0.104193,0.980966,0.163858,0.104193, + 0.980966,0.163858,0.104193,-0.185391,0.981604,-0.045642,-0.185391,0.981604,-0.045642,-0.185391,0.981604,-0.045642, + -0.185391,0.981604,-0.045642,-0.970970,-0.153825,-0.183179,-0.970970,-0.153825,-0.183179,-0.970970,-0.153825,-0.183179, + -0.970970,-0.153825,-0.183179,0.226876,-0.965864,-0.125034,0.226876,-0.965864,-0.125034,0.226876,-0.965864,-0.125034, + 0.226876,-0.965864,-0.125034,-0.215433,0.973613,0.075275,-0.215433,0.973613,0.075275,-0.215433,0.973613,0.075275, + -0.215433,0.973613,0.075275,0.916068,0.224911,0.332016,0.916068,0.224911,0.332016,0.916068,0.224911,0.332016, + 0.916068,0.224911,0.332016,-0.224390,-0.071469,0.971875,-0.224390,-0.071469,0.971875,-0.224390,-0.071469,0.971875, + -0.224390,-0.071469,0.971875,-0.224386,-0.071463,0.971877,-0.224386,-0.071463,0.971877,-0.224386,-0.071463,0.971877, + -0.224386,-0.071463,0.971877,-0.224391,-0.071465,0.971875,-0.224391,-0.071465,0.971875,-0.224391,-0.071465,0.971875, + -0.224391,-0.071465,0.971875,-0.224391,-0.071470,0.971875,-0.224391,-0.071470,0.971875,-0.224391,-0.071470,0.971875, + -0.224391,-0.071470,0.971875,-0.224389,-0.071468,0.971875,-0.224389,-0.071468,0.971875,-0.224389,-0.071468,0.971875, + -0.224389,-0.071468,0.971875,-0.224386,-0.071469,0.971876,-0.224386,-0.071469,0.971876,-0.224386,-0.071469,0.971876, + -0.224386,-0.071469,0.971876,-0.224388,-0.071470,0.971876,-0.224388,-0.071470,0.971876,-0.224388,-0.071470,0.971876, + -0.224388,-0.071470,0.971876,-0.224389,-0.071470,0.971875,-0.224389,-0.071470,0.971875,-0.224389,-0.071470,0.971875, + -0.224389,-0.071470,0.971875,0.932628,0.140214,0.332484,0.932628,0.140214,0.332484,0.932628,0.140214,0.332484, + 0.932628,0.140214,0.332484,0.227993,-0.965837,-0.123195,0.227993,-0.965837,-0.123195,0.227993,-0.965837,-0.123195, + 0.227993,-0.965837,-0.123195,0.928735,0.182091,0.322947,0.928735,0.182091,0.322947,0.928735,0.182091,0.322947, + 0.928735,0.182091,0.322947,0.198748,-0.979988,-0.011038,0.198748,-0.979988,-0.011038,0.198748,-0.979988,-0.011038, + 0.198748,-0.979988,-0.011038,-0.303992,-0.113184,0.945927,-0.303992,-0.113184,0.945927,-0.303992,-0.113184,0.945927, + -0.303992,-0.113184,0.945927,-0.219885,0.971386,0.089771,-0.219885,0.971386,0.089771,-0.219885,0.971386,0.089771, + -0.219885,0.971386,0.089771,-0.959460,-0.193070,-0.205332,-0.959460,-0.193070,-0.205332,-0.959460,-0.193070,-0.205332, + -0.959460,-0.193070,-0.205332,-0.216036,0.972919,0.082200,-0.216036,0.972919,0.082200,-0.216036,0.972919,0.082200, + -0.216036,0.972919,0.082200,-0.189746,-0.090264,0.977675,-0.189746,-0.090264,0.977675,-0.189746,-0.090264,0.977675, + -0.189746,-0.090264,0.977675,0.201251,-0.979462,-0.012336,0.201251,-0.979462,-0.012336,0.201251,-0.979462,-0.012336, + 0.201251,-0.979462,-0.012336,0.184194,-0.981815,0.045949,0.184194,-0.981815,0.045949,0.184194,-0.981815,0.045949, + 0.184194,-0.981815,0.045949,-0.934360,-0.183931,-0.305190,-0.934360,-0.183931,-0.305190,-0.934360,-0.183931,-0.305190, + -0.934360,-0.183931,-0.305190,0.213043,-0.975026,-0.062748,0.213043,-0.975026,-0.062748,0.213043,-0.975026,-0.062748, + 0.213043,-0.975026,-0.062748,-0.958186,-0.192995,-0.211266,-0.958186,-0.192995,-0.211266,-0.958186,-0.192995,-0.211266, + -0.958186,-0.192995,-0.211266,0.506154,0.825027,0.251274,0.506154,0.825027,0.251274,0.506154,0.825027,0.251274, + 0.506154,0.825027,0.251274,0.537009,0.834293,0.124803,0.537009,0.834293,0.124803,0.537009,0.834293,0.124803, + 0.537009,0.834293,0.124803,0.957695,0.189738,0.216378,0.957695,0.189738,0.216378,0.957695,0.189738,0.216378, + 0.957695,0.189738,0.216378,-0.190389,0.981431,-0.023361,-0.190389,0.981431,-0.023361,-0.190389,0.981431,-0.023361, + -0.190389,0.981431,-0.023361,-0.534725,-0.832837,-0.143010,-0.534725,-0.832837,-0.143010,-0.534725,-0.832837,-0.143010, + -0.534725,-0.832837,-0.143010,0.929940,0.112984,0.349924,0.929940,0.112984,0.349924,0.929940,0.112984,0.349924, + 0.929940,0.112984,0.349924,0.213683,-0.974718,-0.065307,0.213683,-0.974718,-0.065307,0.213683,-0.974718,-0.065307, + 0.213683,-0.974718,-0.065307,0.966482,0.152542,0.206502,0.966482,0.152542,0.206502,0.966482,0.152542,0.206502, + 0.966482,0.152542,0.206502,0.185582,-0.981777,0.040909,0.185582,-0.981777,0.040909,0.185582,-0.981777,0.040909, + 0.185582,-0.981777,0.040909,-0.859076,0.500814,-0.105711,-0.859076,0.500814,-0.105711,-0.859076,0.500814,-0.105711, + -0.859076,0.500814,-0.105711,-0.831394,0.476356,-0.286127,-0.831394,0.476356,-0.286127,-0.831394,0.476356,-0.286127, + -0.831394,0.476356,-0.286127,-0.952719,-0.153573,-0.262187,-0.952719,-0.153573,-0.262187,-0.952719,-0.153573,-0.262187, + -0.952719,-0.153573,-0.262187,0.104575,-0.023239,0.994245,0.104575,-0.023239,0.994245,0.104575,-0.023239,0.994245, + 0.104575,-0.023239,0.994245,0.220640,0.078046,-0.972228,0.220640,0.078046,-0.972228,0.220640,0.078046,-0.972228, + 0.220640,0.078046,-0.972228,0.199720,0.133642,-0.970697,0.199720,0.133642,-0.970697,0.199720,0.133642,-0.970697, + 0.199720,0.133642,-0.970697,0.952989,0.153664,0.261149,0.952989,0.153664,0.261149,0.952989,0.153664,0.261149, + 0.952989,0.153664,0.261149,-0.595465,-0.139652,0.791150,-0.595465,-0.139652,0.791150,-0.595465,-0.139652,0.791150, + -0.595465,-0.139652,0.791150,0.252903,0.088449,-0.963440,0.252903,0.088449,-0.963440,0.252903,0.088449,-0.963440, + 0.252903,0.088449,-0.963440,0.940401,0.214515,0.263873,0.940401,0.214515,0.263873,0.940401,0.214515,0.263873, + 0.940401,0.214515,0.263873,-0.547666,-0.206960,0.810697,-0.547666,-0.206960,0.810697,-0.547666,-0.206960,0.810697, + -0.547666,-0.206960,0.810697,-0.297561,0.282091,0.912076,-0.297561,0.282091,0.912076,-0.297561,0.282091,0.912076, + -0.297561,0.282091,0.912076,0.232959,0.145449,-0.961548,0.232959,0.145449,-0.961548,0.232959,0.145449,-0.961548, + 0.232959,0.145449,-0.961548,0.175183,-0.983867,-0.036275,0.175183,-0.983867,-0.036275,0.175183,-0.983867,-0.036275, + 0.175183,-0.983867,-0.036275,0.321235,0.188321,-0.928086,0.321235,0.188321,-0.928086,0.321235,0.188321,-0.928086, + 0.321235,0.188321,-0.928086,-0.159730,-0.595337,0.787439,-0.159730,-0.595337,0.787439,-0.159730,-0.595337,0.787439, + -0.159730,-0.595337,0.787439,-0.234743,0.971435,0.034794,-0.234743,0.971435,0.034794,-0.234743,0.971435,0.034794, + -0.234743,0.971435,0.034794,-0.331579,0.390990,0.858593,-0.331579,0.390990,0.858593,-0.331579,0.390990,0.858593, + -0.331579,0.390990,0.858593,0.246239,0.070254,-0.966659,0.246239,0.070254,-0.966659,0.246239,0.070254,-0.966659, + 0.246239,0.070254,-0.966659,0.219301,-0.975617,-0.008869,0.219301,-0.975617,-0.008869,0.219301,-0.975617,-0.008869, + 0.219301,-0.975617,-0.008869,0.215809,-0.973646,-0.073750,0.215809,-0.973646,-0.073750,0.215809,-0.973646,-0.073750, + 0.215809,-0.973646,-0.073750,0.936082,0.194069,-0.293407,0.936082,0.194069,-0.293407,0.936082,0.194069,-0.293407, + 0.936082,0.194069,-0.293407,-0.937425,-0.194316,0.288922,-0.937425,-0.194316,0.288922,-0.937425,-0.194316,0.288922, + -0.937425,-0.194316,0.288922,0.212410,-0.975320,-0.060273,0.212410,-0.975320,-0.060273,0.212410,-0.975320,-0.060273, + 0.212410,-0.975320,-0.060273,0.672791,0.128630,0.728565,0.672791,0.128630,0.728565,0.672791,0.128630,0.728565, + 0.672791,0.128630,0.728565,-0.669576,-0.127958,-0.731638,-0.669576,-0.127958,-0.731638,-0.669576,-0.127958,-0.731638, + -0.669576,-0.127958,-0.731638,-0.228806,0.965546,0.123971,-0.228806,0.965546,0.123971,-0.228806,0.965546,0.123971, + -0.228806,0.965546,0.123971,0.228803,-0.965546,-0.123976,0.228803,-0.965546,-0.123976,0.228803,-0.965546,-0.123976, + 0.228803,-0.965546,-0.123976,-0.215314,-0.174928,0.960750,-0.215314,-0.174928,0.960750,-0.215314,-0.174928,0.960750, + -0.215314,-0.174928,0.960750,0.250915,0.182086,-0.950729,0.250915,0.182086,-0.950729,0.250915,0.182086,-0.950729, + 0.250915,0.182086,-0.950729,-0.950443,-0.194442,-0.242592,-0.950443,-0.194442,-0.242592,-0.950443,-0.194442,-0.242592, + -0.950443,-0.194442,-0.242592,0.924833,0.176179,0.337111,0.924833,0.176179,0.337111,0.924833,0.176179,0.337111, + 0.924833,0.176179,0.337111,-0.241077,0.959201,0.147701,-0.241077,0.959201,0.147701,-0.241077,0.959201,0.147701, + -0.241077,0.959201,0.147701,0.241077,-0.959201,-0.147698,0.241077,-0.959201,-0.147698,0.241077,-0.959201,-0.147698, + 0.241077,-0.959201,-0.147698,0.144484,0.185439,-0.971976,0.144484,0.185439,-0.971976,0.144484,0.185439,-0.971976, + 0.144484,0.185439,-0.971976,-0.180516,-0.193313,0.964388,-0.180516,-0.193313,0.964388,-0.180516,-0.193313,0.964388, + -0.180516,-0.193313,0.964388,0.960588,0.213675,0.177799,0.960588,0.213675,0.177799,0.960588,0.213675,0.177799, + 0.960588,0.213675,0.177799,-0.942000,-0.194204,-0.273718,-0.942000,-0.194204,-0.273718,-0.942000,-0.194204,-0.273718, + -0.942000,-0.194204,-0.273718,-0.232006,0.960784,0.151881,-0.232006,0.960784,0.151881,-0.232006,0.960784,0.151881, + -0.232006,0.960784,0.151881,0.232000,-0.960787,-0.151868,0.232000,-0.960787,-0.151868,0.232000,-0.960787,-0.151868, + 0.232000,-0.960787,-0.151868,0.229974,0.205366,-0.951282,0.229974,0.205366,-0.951282,0.229974,0.205366,-0.951282, + 0.229974,0.205366,-0.951282,-0.265438,-0.212229,0.940479,-0.265438,-0.212229,0.940479,-0.265438,-0.212229,0.940479, + -0.265438,-0.212229,0.940479,0.946506,0.186597,0.263266,0.946506,0.186597,0.263266,0.946506,0.186597,0.263266, + 0.946506,0.186597,0.263266,-0.919479,-0.165196,-0.356747,-0.919479,-0.165196,-0.356747,-0.919479,-0.165196,-0.356747, + -0.919479,-0.165196,-0.356747,-0.928729,-0.181182,-0.323476,-0.928729,-0.181182,-0.323476,-0.928729,-0.181182,-0.323476, + -0.928729,-0.181182,-0.323476,0.227970,-0.965857,-0.123087,0.227970,-0.965857,-0.123087,0.227970,-0.965857,-0.123087, + 0.227970,-0.965857,-0.123087,0.491777,0.815992,0.303831,0.491777,0.815992,0.303831,0.491777,0.815992,0.303831, + 0.491777,0.815992,0.303831,-0.201278,0.979393,0.016612,-0.201278,0.979393,0.016612,-0.201278,0.979393,0.016612, + -0.201278,0.979393,0.016612,-0.938228,-0.187791,-0.290625,-0.938228,-0.187791,-0.290625,-0.938228,-0.187791,-0.290625, + -0.938228,-0.187791,-0.290625,0.812020,-0.553739,0.184380,0.812020,-0.553739,0.184380,0.812020,-0.553739,0.184380, + 0.812020,-0.553739,0.184380,0.963351,0.189399,0.189955,0.963351,0.189399,0.189955,0.963351,0.189399,0.189955, + 0.963351,0.189399,0.189955,-0.195532,0.980688,-0.004309,-0.195532,0.980688,-0.004309,-0.195532,0.980688,-0.004309, + -0.195532,0.980688,-0.004309,-0.535250,-0.832786,-0.141332,-0.535250,-0.832786,-0.141332,-0.535250,-0.832786,-0.141332, + -0.535250,-0.832786,-0.141332,0.227454,-0.966243,-0.120991,0.227454,-0.966243,-0.120991,0.227454,-0.966243,-0.120991, + 0.227454,-0.966243,-0.120991,0.963065,0.194386,0.186332,0.963065,0.194386,0.186332,0.963065,0.194386,0.186332, + 0.963065,0.194386,0.186332,-0.839314,0.540645,-0.057058,-0.839314,0.540645,-0.057058,-0.839314,0.540645,-0.057058, + -0.839314,0.540645,-0.057058,-0.952720,-0.153571,-0.262184,-0.952720,-0.153571,-0.262184,-0.952720,-0.153571,-0.262184, + -0.952720,-0.153571,-0.262184,-0.354300,0.675790,0.646359,-0.354300,0.675790,0.646359,-0.354300,0.675790,0.646359, + -0.354300,0.675790,0.646359,-0.940586,-0.214573,-0.263165,-0.940586,-0.214573,-0.263165,-0.940586,-0.214573,-0.263165, + -0.940586,-0.214573,-0.263165,0.021571,-0.858751,0.511938,0.021571,-0.858751,0.511938,0.021571,-0.858751,0.511938, + 0.953261,0.153732,0.260117,0.953261,0.153732,0.260117,0.953261,0.153732,0.260117,0.953261,0.153732,0.260117, + 0.528094,0.083830,0.845038,0.528094,0.083830,0.845038,0.528094,0.083830,0.845038,0.528094,0.083830,0.845038, + -0.012139,-0.865095,0.501462,-0.012139,-0.865095,0.501462,-0.012139,-0.865095,0.501462,0.940219,0.214470,0.264560, + 0.940219,0.214470,0.264560,0.940219,0.214470,0.264560,0.940219,0.214470,0.264560,0.623499,0.089656,0.776666, + 0.623499,0.089656,0.776666,0.623499,0.089656,0.776666,-0.937539,-0.162093,0.307810,-0.937539,-0.162093,0.307810, + -0.937539,-0.162093,0.307810,-0.929575,-0.204949,0.306407,-0.929575,-0.204949,0.306407,-0.929575,-0.204949,0.306407, + 0.178802,-0.982606,-0.050157,0.178802,-0.982606,-0.050157,0.178802,-0.982606,-0.050157,0.178802,-0.982606,-0.050157, + -0.291644,0.687266,0.665289,-0.291644,0.687266,0.665289,-0.291644,0.687266,0.665289,-0.291644,0.687266,0.665289, + 0.356558,-0.465245,-0.810194,0.356558,-0.465245,-0.810194,0.356558,-0.465245,-0.810194,-0.241771,0.968317,0.062521, + -0.241771,0.968317,0.062521,-0.241771,0.968317,0.062521,-0.241771,0.968317,0.062521,-0.173185,0.983539,0.051561, + -0.173185,0.983539,0.051561,-0.173185,0.983539,0.051561,-0.173185,0.983539,0.051561,0.219301,-0.975617,-0.008846, + 0.219301,-0.975617,-0.008846,0.219301,-0.975617,-0.008846,0.219301,-0.975617,-0.008846,-0.879953,-0.167016,0.444734, + -0.879953,-0.167016,0.444734,-0.879953,-0.167016,0.444734,-0.879953,-0.167016,0.444734,-0.872257,-0.206475,0.443325, + -0.872257,-0.206475,0.443325,-0.872257,-0.206475,0.443325,-0.872257,-0.206475,0.443325,0.618150,0.115389,0.777545, + 0.618150,0.115389,0.777545,0.618150,0.115389,0.777545,0.532695,0.061209,0.844091,0.532695,0.061209,0.844091, + 0.532695,0.061209,0.844091,0.532695,0.061209,0.844091,0.004283,-0.786526,0.617542,0.004283,-0.786526,0.617542, + 0.004283,-0.786526,0.617542,0.004283,-0.786526,0.617542,-0.025918,-0.793067,0.608583,-0.025918,-0.793067,0.608583, + -0.025918,-0.793067,0.608583,-0.025918,-0.793067,0.608583,-0.371601,0.758798,0.534918,-0.371601,0.758798,0.534918, + -0.371601,0.758798,0.534918,-0.303688,0.773244,0.556657,-0.303688,0.773244,0.556657,-0.303688,0.773244,0.556657, + 0.303802,-0.475752,-0.825448,0.303802,-0.475752,-0.825448,0.303802,-0.475752,-0.825448,-0.297879,-0.021961,-0.954351, + -0.297879,-0.021961,-0.954351,-0.297879,-0.021961,-0.954351,0.716450,0.147505,-0.681867,0.716450,0.147505,-0.681867, + 0.716450,0.147505,-0.681867,0.088276,0.594735,-0.799061,0.088276,0.594735,-0.799061,0.088276,0.594735,-0.799061, + -0.298839,-0.017147,-0.954149,-0.298839,-0.017147,-0.954149,-0.298839,-0.017147,-0.954149,0.104435,0.598013,-0.794653, + 0.104435,0.598013,-0.794653,0.104435,0.598013,-0.794653,0.711624,0.171726,-0.681249,0.711624,0.171726,-0.681249, + 0.711624,0.171726,-0.681249,-0.930109,-0.198044,-0.309315,-0.930109,-0.198044,-0.309315,-0.930109,-0.198044,-0.309315, + -0.930109,-0.198044,-0.309315,-0.312788,0.341846,0.886174,-0.312788,0.341846,0.886174,-0.312788,0.341846,0.886174, + -0.312788,0.341846,0.886174,-0.940343,-0.184835,-0.285641,-0.940343,-0.184835,-0.285641,-0.940343,-0.184835,-0.285641, + -0.940343,-0.184835,-0.285641,-0.023585,0.439897,-0.897739,-0.023585,0.439897,-0.897739,-0.023585,0.439897,-0.897739, + -0.023585,0.439897,-0.897739,-0.751507,-0.222892,-0.620932,-0.751507,-0.222892,-0.620932,-0.751507,-0.222892,-0.620932, + -0.751507,-0.222892,-0.620932,0.953073,0.206107,0.221746,0.953073,0.206107,0.221746,0.953073,0.206107,0.221746, + 0.953073,0.206107,0.221746,-0.104557,-0.470973,0.875929,-0.104557,-0.470973,0.875929,-0.104557,-0.470973,0.875929, + -0.104557,-0.470973,0.875929,-0.183388,0.007462,-0.983012,-0.183388,0.007462,-0.983012,-0.183388,0.007462,-0.983012, + -0.183388,0.007462,-0.983012,0.203553,-0.978510,-0.032936,0.203553,-0.978510,-0.032936,0.203553,-0.978510,-0.032936, + 0.203553,-0.978510,-0.032936,0.951705,0.274776,-0.136950,0.951705,0.274776,-0.136950,0.951705,0.274776,-0.136950, + 0.951705,0.274776,-0.136950,-0.150553,0.910728,-0.384589,-0.150553,0.910728,-0.384589,-0.150553,0.910728,-0.384589, + -0.150553,0.910728,-0.384589,0.951826,0.185958,0.243816,0.951826,0.185958,0.243816,0.951826,0.185958,0.243816, + 0.951826,0.185958,0.243816,0.282160,-0.346450,-0.894627,0.282160,-0.346450,-0.894627,0.282160,-0.346450,-0.894627, + 0.282160,-0.346450,-0.894627,0.350764,-0.858838,-0.373312,0.350764,-0.858838,-0.373312,0.350764,-0.858838,-0.373312, + 0.350764,-0.858838,-0.373312,-0.625773,-0.184557,0.757857,-0.625773,-0.184557,0.757857,-0.625773,-0.184557,0.757857, + -0.625773,-0.184557,0.757857,0.230265,-0.971851,-0.049836,0.230265,-0.971851,-0.049836,0.230265,-0.971851,-0.049836, + 0.230265,-0.971851,-0.049836,0.590085,0.312657,-0.744342,0.590085,0.312657,-0.744342,0.590085,0.312657,-0.744342, + 0.590085,0.312657,-0.744342,-0.197100,0.980337,-0.009546,-0.197100,0.980337,-0.009546,-0.197100,0.980337,-0.009546, + -0.197100,0.980337,-0.009546,0.177239,0.024131,0.983872,0.177239,0.024131,0.983872,0.177239,0.024131,0.983872, + 0.177239,0.024131,0.983872,-0.203812,0.978304,-0.037187,-0.203812,0.978304,-0.037187,-0.203812,0.978304,-0.037187, + -0.203812,0.978304,-0.037187,-0.489878,-0.840028,-0.233181,-0.489878,-0.840028,-0.233181,-0.489878,-0.840028,-0.233181, + -0.489878,-0.840028,-0.233181,-0.543832,0.155655,0.824632,-0.543832,0.155655,0.824632,-0.543832,0.155655,0.824632, + -0.543832,0.155655,0.824632,-0.515448,-0.828310,-0.219580,-0.515448,-0.828310,-0.219580,-0.515448,-0.828310,-0.219580, + -0.515448,-0.828310,-0.219580,-0.213212,0.153427,-0.964884,-0.213212,0.153427,-0.964884,-0.213212,0.153427,-0.964884, + -0.213212,0.153427,-0.964884,-0.321027,-0.774541,-0.545002,-0.321027,-0.774541,-0.545002,-0.321027,-0.774541,-0.545002, + -0.321027,-0.774541,-0.545002,0.515185,0.843519,0.151856,0.515185,0.843519,0.151856,0.515185,0.843519,0.151856, + 0.515185,0.843519,0.151856,0.145368,-0.267268,0.952594,0.145368,-0.267268,0.952594,0.145368,-0.267268,0.952594, + 0.145368,-0.267268,0.952594,0.006253,-0.238047,-0.971234,0.006253,-0.238047,-0.971234,0.006253,-0.238047,-0.971234, + 0.006253,-0.238047,-0.971234,0.825511,-0.542112,0.156993,0.825511,-0.542112,0.156993,0.825511,-0.542112,0.156993, + 0.825511,-0.542112,0.156993,0.521243,0.826427,-0.212895,0.521243,0.826427,-0.212895,0.521243,0.826427,-0.212895, + 0.521243,0.826427,-0.212895,-0.680448,0.479566,-0.554082,-0.680448,0.479566,-0.554082,-0.680448,0.479566,-0.554082, + -0.680448,0.479566,-0.554082,0.522396,0.835404,0.170886,0.522396,0.835404,0.170886,0.522396,0.835404,0.170886, + 0.522396,0.835404,0.170886,0.525700,-0.181043,-0.831182,0.525700,-0.181043,-0.831182,0.525700,-0.181043,-0.831182, + 0.525700,-0.181043,-0.831182,0.880641,-0.427705,-0.203811,0.880641,-0.427705,-0.203811,0.880641,-0.427705,-0.203811, + 0.880641,-0.427705,-0.203811,-0.407710,-0.412842,0.814453,-0.407710,-0.412842,0.814453,-0.407710,-0.412842,0.814453, + -0.407710,-0.412842,0.814453,0.801564,-0.586234,0.117576,0.801564,-0.586234,0.117576,0.801564,-0.586234,0.117576, + 0.801564,-0.586234,0.117576,0.293889,0.487554,-0.822144,0.293889,0.487554,-0.822144,0.293889,0.487554,-0.822144, + 0.293889,0.487554,-0.822144,-0.777954,0.603182,-0.175950,-0.777954,0.603182,-0.175950,-0.777954,0.603182,-0.175950, + -0.777954,0.603182,-0.175950,-0.031300,0.257063,0.965888,-0.031300,0.257063,0.965888,-0.031300,0.257063,0.965888, + -0.031300,0.257063,0.965888,-0.816605,0.531132,-0.225955,-0.816605,0.531132,-0.225955,-0.816605,0.531132,-0.225955, + -0.816605,0.531132,-0.225955,0.177954,-0.981665,0.068310,0.177954,-0.981665,0.068310,0.177954,-0.981665,0.068310, + 0.177954,-0.981665,0.068310,0.176623,-0.982016,0.066707,0.176623,-0.982016,0.066707,0.176623,-0.982016,0.066707, + 0.176623,-0.982016,0.066707,0.947265,0.190001,0.258046,0.947265,0.190001,0.258046,0.947265,0.190001,0.258046, + 0.947265,0.190001,0.258046,0.943860,0.189164,0.270822,0.943860,0.189164,0.270822,0.943860,0.189164,0.270822, + 0.943860,0.189164,0.270822,-0.948345,-0.190278,-0.253844,-0.948345,-0.190278,-0.253844,-0.948345,-0.190278,-0.253844, + -0.948345,-0.190278,-0.253844,-0.944995,-0.189373,-0.266688,-0.944995,-0.189373,-0.266688,-0.944995,-0.189373,-0.266688, + -0.944995,-0.189373,-0.266688,0.960503,0.236436,0.146738,0.960503,0.236436,0.146738,0.960503,0.236436,0.146738, + 0.960503,0.236436,0.146738,0.087110,0.706919,-0.701909,0.087110,0.706919,-0.701909,0.087110,0.706919,-0.701909, + 0.087110,0.706919,-0.701909,-0.085975,-0.709684,0.699255,-0.085975,-0.709684,0.699255,-0.085975,-0.709684,0.699255, + -0.085975,-0.709684,0.699255,0.957971,0.194004,0.211314,0.957971,0.194004,0.211314,0.957971,0.194004,0.211314, + 0.957971,0.194004,0.211314,0.177791,-0.981655,0.068874,0.177791,-0.981655,0.068874,0.177791,-0.981655,0.068874, + 0.177791,-0.981655,0.068874,0.202862,-0.978932,-0.023204,0.202862,-0.978932,-0.023204,0.202862,-0.978932,-0.023204, + 0.202862,-0.978932,-0.023204,-0.247324,-0.101910,0.963558,-0.247324,-0.101910,0.963558,-0.247324,-0.101910,0.963558, + -0.247325,-0.101909,0.963558,-0.247325,-0.101909,0.963558,-0.247325,-0.101909,0.963558,-0.247324,-0.101910,0.963559, + -0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559,-0.247325,-0.101913,0.963558, + -0.247325,-0.101913,0.963558,-0.247325,-0.101913,0.963558,-0.247324,-0.101909,0.963559,-0.247324,-0.101909,0.963559, + -0.247324,-0.101909,0.963559,-0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559, + -0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559,-0.247324,-0.101910,0.963559, + -0.247324,-0.101910,0.963559,-0.214527,0.974102,0.071441,-0.214527,0.974102,0.071441,-0.214527,0.974102,0.071441, + -0.214527,0.974102,0.071441,-0.924235,-0.181405,-0.335979,-0.924235,-0.181405,-0.335979,-0.924235,-0.181405,-0.335979, + -0.190070,0.981463,-0.024548,-0.190070,0.981463,-0.024548,-0.190070,0.981463,-0.024548,0.227994,-0.965837,-0.123198, + 0.227994,-0.965837,-0.123198,0.227994,-0.965837,-0.123198,0.962159,0.197023,0.188234,0.962159,0.197023,0.188234, + 0.962159,0.197023,0.188234,-0.924236,-0.181400,-0.335979,-0.924236,-0.181400,-0.335979,-0.924236,-0.181400,-0.335979, + -0.924235,-0.181402,-0.335980,-0.924235,-0.181402,-0.335980,-0.924235,-0.181402,-0.335980,-0.924235,-0.181402,-0.335980, + 0.962159,0.197024,0.188231,0.962159,0.197024,0.188231,0.962159,0.197024,0.188231,0.962157,0.197031,0.188235, + 0.962157,0.197031,0.188235,0.962157,0.197031,0.188235,0.962157,0.197031,0.188235,-0.190070,0.981463,-0.024553, + -0.190070,0.981463,-0.024553,-0.190070,0.981463,-0.024553,-0.190071,0.981463,-0.024549,-0.190071,0.981463,-0.024549, + -0.190071,0.981463,-0.024549,-0.190071,0.981463,-0.024549,0.227993,-0.965837,-0.123198,0.227993,-0.965837,-0.123198, + 0.227993,-0.965837,-0.123198,-0.960112,-0.197080,-0.198353,-0.960112,-0.197080,-0.198353,-0.960112,-0.197080,-0.198353, + -0.960112,-0.197080,-0.198353,-0.234213,-0.160693,0.958813,-0.234213,-0.160693,0.958813,-0.234213,-0.160693,0.958813, + -0.234213,-0.160693,0.958813,-0.259534,-0.042761,0.964787,-0.259534,-0.042761,0.964787,-0.259534,-0.042761,0.964787, + -0.259534,-0.042761,0.964787,0.930048,0.186026,0.316867,0.930048,0.186026,0.316867,0.930048,0.186026,0.316867, + 0.930048,0.186026,0.316867,0.214641,-0.974247,-0.069081,0.214641,-0.974247,-0.069081,0.214641,-0.974247,-0.069081, + 0.214641,-0.974247,-0.069081,-0.019453,-0.976280,-0.215638,-0.019453,-0.976280,-0.215638,-0.019453,-0.976280,-0.215638, + -0.019453,-0.976280,-0.215638,-0.947678,0.111951,-0.298954,-0.947678,0.111951,-0.298954,-0.947678,0.111951,-0.298954, + -0.947678,0.111951,-0.298954,0.965250,-0.108836,0.237588,0.965250,-0.108836,0.237588,0.965250,-0.108836,0.237588, + 0.965250,-0.108836,0.237588,0.986955,-0.102094,0.124489,0.986955,-0.102094,0.124489,0.986955,-0.102094,0.124489, + 0.986955,-0.102094,0.124489,0.090896,0.992091,-0.086560,0.090896,0.992091,-0.086560,0.090896,0.992091,-0.086560, + 0.090896,0.992091,-0.086560,-0.090965,-0.965888,-0.242459,-0.090965,-0.965888,-0.242459,-0.090965,-0.965888,-0.242459, + -0.090965,-0.965888,-0.242459,-0.066663,-0.997775,0.000914,-0.066663,-0.997775,0.000914,-0.066663,-0.997775,0.000914, + -0.066663,-0.997775,0.000914,0.162331,0.985155,-0.055837,0.162331,0.985155,-0.055837,0.162331,0.985155,-0.055837, + 0.162331,0.985155,-0.055837,-0.945413,0.112280,-0.305920,-0.945413,0.112280,-0.305920,-0.945413,0.112280,-0.305920, + -0.945413,0.112280,-0.305920,-0.149387,-0.988505,-0.023287,-0.149387,-0.988505,-0.023287,-0.149387,-0.988505,-0.023287, + -0.149387,-0.988505,-0.023287,0.985577,-0.102740,0.134472,0.985577,-0.102740,0.134472,0.985577,-0.102740,0.134472, + 0.985577,-0.102740,0.134472,-0.976964,0.105859,-0.185298,-0.976964,0.105859,-0.185298,-0.976964,0.105859,-0.185298, + -0.976964,0.105859,-0.185298,0.030823,0.988141,0.150423,0.030823,0.988141,0.150423,0.030823,0.988141,0.150423, + 0.030823,0.988141,0.150423,-0.241170,-0.037837,0.969745,-0.241170,-0.037837,0.969745,-0.241170,-0.037837,0.969745, + -0.241170,-0.037837,0.969745,-0.241171,-0.037835,0.969745,-0.241171,-0.037835,0.969745,-0.241171,-0.037835,0.969745, + -0.241171,-0.037835,0.969745,-0.241170,-0.037834,0.969745,-0.241170,-0.037834,0.969745,-0.241170,-0.037834,0.969745, + -0.241170,-0.037834,0.969745,-0.241169,-0.037834,0.969745,-0.241169,-0.037834,0.969745,-0.241169,-0.037834,0.969745, + -0.241169,-0.037834,0.969745,-0.241168,-0.037835,0.969746,-0.241168,-0.037835,0.969746,-0.241168,-0.037835,0.969746, + -0.241168,-0.037835,0.969746,-0.241170,-0.037835,0.969745,-0.241170,-0.037835,0.969745,-0.241170,-0.037835,0.969745, + -0.241170,-0.037835,0.969745,-0.241170,-0.037835,0.969745,-0.241170,-0.037835,0.969745,-0.241170,-0.037835,0.969745, + -0.241170,-0.037835,0.969745,-0.241173,-0.037834,0.969744,-0.241173,-0.037834,0.969744,-0.241173,-0.037834,0.969744, + -0.241173,-0.037834,0.969744,0.113406,0.978290,0.173458,0.113406,0.978290,0.173458,0.113406,0.978290,0.173458, + 0.113406,0.978290,0.173458,0.985501,-0.101323,0.136091,0.985501,-0.101323,0.136091,0.985501,-0.101323,0.136091, + 0.985501,-0.101323,0.136091,0.076246,0.985322,0.152734,0.076246,0.985322,0.152734,0.076246,0.985322,0.152734, + 0.076246,0.985322,0.152734,0.961891,-0.110583,0.250074,0.961891,-0.110583,0.250074,0.961891,-0.110583,0.250074, + 0.961891,-0.110583,0.250074,-0.224367,-0.129775,0.965825,-0.224367,-0.129775,0.965825,-0.224367,-0.129775,0.965825, + -0.224367,-0.129775,0.965825,-0.979885,0.103915,-0.170374,-0.979885,0.103915,-0.170374,-0.979885,0.103915,-0.170374, + -0.979885,0.103915,-0.170374,-0.104545,-0.993928,-0.034315,-0.104545,-0.993928,-0.034315,-0.104545,-0.993928,-0.034315, + -0.104545,-0.993928,-0.034315,-0.978173,0.106459,-0.178448,-0.978173,0.106459,-0.178448,-0.978173,0.106459,-0.178448, + -0.978173,0.106459,-0.178448,-0.213581,-0.009997,0.976874,-0.213581,-0.009997,0.976874,-0.213581,-0.009997,0.976874, + -0.213581,-0.009997,0.976874,0.962575,-0.108352,0.248412,0.962575,-0.108352,0.248412,0.962575,-0.108352,0.248412, + 0.962575,-0.108352,0.248412,0.945122,-0.113396,0.306408,0.945122,-0.113396,0.306408,0.945122,-0.113396,0.306408, + 0.945122,-0.113396,0.306408,-0.080695,-0.987595,-0.134705,-0.080695,-0.987595,-0.134705,-0.080695,-0.987595,-0.134705, + -0.080695,-0.987595,-0.134705,0.974474,-0.106031,0.197882,0.974474,-0.106031,0.197882,0.974474,-0.106031,0.197882, + 0.974474,-0.106031,0.197882,-0.102747,-0.993898,-0.040125,-0.102747,-0.993898,-0.040125,-0.102747,-0.993898,-0.040125, + -0.102747,-0.993898,-0.040125,-0.636256,0.769565,-0.054302,-0.636256,0.769565,-0.054302,-0.636256,0.769565,-0.054302, + -0.636256,0.769565,-0.054302,-0.604282,0.776017,-0.180667,-0.604282,0.776017,-0.180667,-0.604282,0.776017,-0.180667, + -0.604282,0.776017,-0.180667,-0.092895,-0.992619,-0.077956,-0.092895,-0.992619,-0.077956,-0.092895,-0.992619,-0.077956, + -0.092895,-0.992619,-0.077956,-0.959119,0.111290,-0.260203,-0.959119,0.111290,-0.260203,-0.959119,0.111290,-0.260203, + -0.959119,0.111290,-0.260203,-0.088822,-0.991657,-0.093417,-0.088822,-0.991657,-0.093417,-0.088822,-0.991657,-0.093417, + -0.088822,-0.991657,-0.093417,-0.968557,0.107921,-0.224166,-0.968557,0.107921,-0.224166,-0.968557,0.107921,-0.224166, + -0.968557,0.107921,-0.224166,0.739107,0.628660,0.241884,0.739107,0.628660,0.241884,0.739107,0.628660,0.241884, + 0.739107,0.628660,0.241884,0.744078,0.629901,0.222648,0.744078,0.629901,0.222648,0.744078,0.629901,0.222648, + 0.744078,0.629901,0.222648,0.104357,0.993476,0.045983,0.104357,0.993476,0.045983,0.104357,0.993476,0.045983, + 0.104357,0.993476,0.045983,-0.952224,0.111984,-0.284130,-0.952224,0.111984,-0.284130,-0.952224,0.111984,-0.284130, + -0.952224,0.111984,-0.284130,0.608033,-0.777066,0.162680,0.608033,-0.777066,0.162680,0.608033,-0.777066,0.162680, + 0.608033,-0.777066,0.162680,0.975018,-0.105843,0.195287,0.975018,-0.105843,0.195287,0.975018,-0.105843,0.195287, + 0.975018,-0.105843,0.195287,0.946752,-0.113089,0.301450,0.946752,-0.113089,0.301450,0.946752,-0.113089,0.301450, + 0.946752,-0.113089,0.301450,-0.756496,-0.632154,-0.167613,-0.756496,-0.632154,-0.167613,-0.756496,-0.632154,-0.167613, + -0.756496,-0.632154,-0.167613,-0.712797,-0.619920,-0.328054,-0.712797,-0.619920,-0.328054,-0.712797,-0.619920,-0.328054, + -0.712797,-0.619920,-0.328054,0.244369,0.018002,-0.969515,0.244369,0.018002,-0.969515,0.244369,0.018002,-0.969515, + 0.244369,0.018002,-0.969515,-0.124731,-0.987084,-0.100530,-0.124731,-0.987084,-0.100530,-0.124731,-0.987084,-0.100530, + -0.124731,-0.987084,-0.100530,-0.177655,0.288022,0.941000,-0.177655,0.288022,0.941000,-0.177655,0.288022,0.941000, + -0.177655,0.288022,0.941000,0.233987,0.036239,-0.971564,0.233987,0.036239,-0.971564,0.233987,0.036239,-0.971564, + 0.233987,0.036239,-0.971564,-0.064867,-0.994250,-0.085204,-0.064867,-0.994250,-0.085204,-0.064867,-0.994250,-0.085204, + -0.064867,-0.994250,-0.085204,-0.205892,0.304472,0.930003,-0.205892,0.304472,0.930003,-0.205892,0.304472,0.930003, + -0.205892,0.304472,0.930003,0.175901,0.033693,-0.983831,0.175901,0.033693,-0.983831,0.175901,0.033693,-0.983831, + 0.175901,0.033693,-0.983831,0.124985,0.987159,0.099481,0.124985,0.987159,0.099481,0.124985,0.987159,0.099481, + 0.124985,0.987159,0.099481,-0.263590,-0.440409,0.858231,-0.263590,-0.440409,0.858231,-0.263590,-0.440409,0.858231, + -0.263590,-0.440409,0.858231,0.233498,0.071207,-0.969747,0.233498,0.071207,-0.969747,0.233498,0.071207,-0.969747, + 0.233498,0.071207,-0.969747,0.064692,0.994198,0.085933,0.064692,0.994198,0.085933,0.064692,0.994198,0.085933, + 0.064692,0.994198,0.085933,-0.190627,-0.412115,0.890967,-0.190627,-0.412115,0.890967,-0.190627,-0.412115,0.890967, + -0.190627,-0.412115,0.890967,-0.573652,-0.011975,0.819012,-0.573652,-0.011975,0.819012,-0.573652,-0.011975,0.819012, + -0.573652,-0.011975,0.819012,0.174387,0.070066,-0.982181,0.174387,0.070066,-0.982181,0.174387,0.070066,-0.982181, + 0.174387,0.070066,-0.982181,0.963301,-0.138745,0.229785,0.963301,-0.138745,0.229785,0.963301,-0.138745,0.229785, + 0.963301,-0.138745,0.229785,0.157733,0.171934,-0.972399,0.157733,0.171934,-0.972399,0.157733,0.171934,-0.972399, + 0.157733,0.171934,-0.972399,0.300914,-0.171204,0.938158,0.300914,-0.171204,0.938158,0.300914,-0.171204,0.938158, + 0.300914,-0.171204,0.938158,-0.972044,0.079156,-0.221054,-0.972044,0.079156,-0.221054,-0.972044,0.079156,-0.221054, + -0.972044,0.079156,-0.221054,0.108084,0.047924,-0.992986,0.108084,0.047924,-0.992986,0.108084,0.047924,-0.992986, + 0.108084,0.047924,-0.992986,0.284413,-0.094376,0.954045,0.284413,-0.094376,0.954045,0.284413,-0.094376,0.954045, + 0.284413,-0.094376,0.954045,-0.962573,0.144547,-0.229257,-0.962573,0.144547,-0.229257,-0.962573,0.144547,-0.229257, + -0.962573,0.144547,-0.229257,-0.671718,-0.021682,0.740490,-0.671718,-0.021682,0.740490,-0.671718,-0.021682,0.740490, + -0.671718,-0.021682,0.740490,0.248527,0.058895,-0.966833,0.248527,0.058895,-0.966833,0.248527,0.058895,-0.966833, + 0.248527,0.058895,-0.966833,0.964441,-0.089664,0.248626,0.964441,-0.089664,0.248626,0.964441,-0.089664,0.248626, + 0.964441,-0.089664,0.248626,0.238884,0.040539,-0.970202,0.238884,0.040539,-0.970202,0.238884,0.040539,-0.970202, + 0.238884,0.040539,-0.970202,-0.655782,-0.048204,0.753410,-0.655782,-0.048204,0.753410,-0.655782,-0.048204,0.753410, + -0.655782,-0.048204,0.753410,0.273457,0.102274,-0.956432,0.273457,0.102274,-0.956432,0.273457,0.102274,-0.956432, + 0.273457,0.102274,-0.956432,0.967025,-0.096852,0.235549,0.967025,-0.096852,0.235549,0.967025,-0.096852,0.235549, + 0.967025,-0.096852,0.235549,0.200415,0.106213,-0.973937,0.200415,0.106213,-0.973937,0.200415,0.106213,-0.973937, + 0.200415,0.106213,-0.973937,0.280961,-0.136069,0.950024,0.280961,-0.136069,0.950024,0.280961,-0.136069,0.950024, + 0.280961,-0.136069,0.950024,-0.965552,0.113641,-0.234084,-0.965552,0.113641,-0.234084,-0.965552,0.113641,-0.234084, + -0.965552,0.113641,-0.234084,-0.094829,-0.991150,-0.092898,-0.094829,-0.991150,-0.092898,-0.094829,-0.991150,-0.092898, + -0.094829,-0.991150,-0.092898,-0.187017,0.311751,0.931577,-0.187017,0.311751,0.931577,-0.187017,0.311751,0.931577, + -0.187017,0.311751,0.931577,-0.680126,-0.007868,0.733053,-0.680126,-0.007868,0.733053,-0.680126,-0.007868,0.733053, + -0.680126,-0.007868,0.733053,0.248267,0.058160,-0.966944,0.248267,0.058160,-0.966944,0.248267,0.058160,-0.966944, + 0.248267,0.058160,-0.966944,0.960783,-0.130078,0.244898,0.960783,-0.130078,0.244898,0.960783,-0.130078,0.244898, + 0.960783,-0.130078,0.244898,-0.098680,-0.993551,-0.055840,-0.098680,-0.993551,-0.055840,-0.098680,-0.993551,-0.055840, + -0.098680,-0.993551,-0.055840,-0.099266,-0.993455,-0.056518,-0.099266,-0.993455,-0.056518,-0.099266,-0.993455,-0.056518, + -0.099266,-0.993455,-0.056518,0.964097,-0.109295,0.242017,0.964097,-0.109295,0.242017,0.964097,-0.109295,0.242017, + 0.964097,-0.109295,0.242017,0.960706,-0.110139,0.254780,0.960706,-0.110139,0.254780,0.960706,-0.110139,0.254780, + 0.960706,-0.110139,0.254780,-0.965174,0.109014,-0.237813,-0.965174,0.109014,-0.237813,-0.965174,0.109014,-0.237813, + -0.965174,0.109014,-0.237813,-0.961829,0.109857,-0.250633,-0.961829,0.109857,-0.250633,-0.961829,0.109857,-0.250633, + -0.961829,0.109857,-0.250633,-0.074984,-0.986565,-0.145147,-0.074984,-0.986565,-0.145147,-0.074984,-0.986565,-0.145147, + -0.074984,-0.986565,-0.145147,0.953280,-0.060205,-0.296029,0.953280,-0.060205,-0.296029,0.953280,-0.060205,-0.296029, + 0.953280,-0.060205,-0.296029,-0.954723,0.060776,0.291223,-0.954723,0.060776,0.291223,-0.954723,0.060776,0.291223, + -0.954723,0.060776,0.291223,-0.081113,-0.989161,-0.122394,-0.081113,-0.989161,-0.122394,-0.081113,-0.989161,-0.122394, + -0.081113,-0.989161,-0.122394,0.733965,-0.126405,0.667320,0.733965,-0.126405,0.667320,0.733965,-0.126405,0.667320, + 0.733965,-0.126405,0.667320,-0.730486,0.126423,-0.671124,-0.730486,0.126423,-0.671124,-0.730486,0.126423,-0.671124, + -0.730486,0.126423,-0.671124,0.976764,-0.105211,0.186714,0.976764,-0.105211,0.186714,0.976764,-0.105211,0.186714, + 0.976764,-0.105211,0.186714,0.213308,0.873386,-0.437832,0.213308,0.873386,-0.437832,0.213308,0.873386,-0.437832, + 0.213308,0.873386,-0.437832,-0.212497,-0.875604,0.433777,-0.212497,-0.875604,0.433777,-0.212497,-0.875604,0.433777, + -0.212497,-0.875604,0.433777,0.973940,-0.106216,0.200398,0.973940,-0.106216,0.200398,0.973940,-0.106216,0.200398, + 0.973940,-0.106216,0.200398,-0.058513,0.811008,0.582101,-0.058513,0.811008,0.582101,-0.058513,0.811008,0.582101, + -0.058513,0.811008,0.582101,0.059690,-0.808404,-0.585594,0.059690,-0.808404,-0.585594,0.059690,-0.808404,-0.585594, + 0.059690,-0.808404,-0.585594,-0.918205,0.041112,-0.393966,-0.918205,0.041112,-0.393966,-0.918205,0.041112,-0.393966, + -0.918205,0.041112,-0.393966,0.131846,-0.599451,-0.789478,0.131846,-0.599451,-0.789478,0.131846,-0.599451,-0.789478, + 0.131846,-0.599451,-0.789478,-0.131008,0.602262,0.787476,-0.131008,0.602262,0.787476,-0.131008,0.602262,0.787476, + -0.131008,0.602262,0.787476,-0.985698,0.100640,-0.135173,-0.985698,0.100640,-0.135173,-0.985698,0.100640,-0.135173, + -0.985698,0.100640,-0.135173,0.985698,-0.100637,0.135174,0.985698,-0.100637,0.135174,0.985698,-0.100637,0.135174, + 0.985698,-0.100637,0.135174,-0.141367,-0.062585,0.987977,-0.141367,-0.062585,0.987977,-0.141367,-0.062585,0.987977, + -0.141367,-0.062585,0.987977,0.144660,0.099927,-0.984423,0.144660,0.099927,-0.984423,0.144660,0.099927,-0.984423, + 0.144660,0.099927,-0.984423,-0.091364,-0.993330,-0.070345,-0.091364,-0.993330,-0.070345,-0.091364,-0.993330,-0.070345, + -0.091364,-0.993330,-0.070345,0.076898,0.982723,0.168353,0.076898,0.982723,0.168353,0.076898,0.982723,0.168353, + 0.076898,0.982723,0.168353,-0.989727,0.091984,-0.109450,-0.989727,0.091984,-0.109450,-0.989727,0.091984,-0.109450, + -0.989727,0.091984,-0.109450,0.989727,-0.091982,0.109447,0.989727,-0.091982,0.109447,0.989727,-0.091982,0.109447, + 0.989727,-0.091982,0.109447,0.110196,-0.002573,-0.993907,0.110196,-0.002573,-0.993907,0.110196,-0.002573,-0.993907, + 0.110196,-0.002573,-0.993907,-0.113579,-0.034916,0.992915,-0.113579,-0.034916,0.992915,-0.113579,-0.034916,0.992915, + -0.113579,-0.034916,0.992915,0.092678,0.995694,0.002084,0.092678,0.995694,0.002084,0.092678,0.995694,0.002084, + 0.092678,0.995694,0.002084,-0.081344,-0.991561,-0.100946,-0.081344,-0.991561,-0.100946,-0.081344,-0.991561,-0.100946, + -0.081344,-0.991561,-0.100946,-0.989048,0.101763,-0.106907,-0.989048,0.101763,-0.106907,-0.989048,0.101763,-0.106907, + -0.989048,0.101763,-0.106907,0.989047,-0.101765,0.106909,0.989047,-0.101765,0.106909,0.989047,-0.101765,0.106909, + 0.989047,-0.101765,0.106909,0.116440,0.087304,-0.989353,0.116440,0.087304,-0.989353,0.116440,0.087304,-0.989353, + 0.116440,0.087304,-0.989353,-0.119820,-0.124551,0.984952,-0.119820,-0.124551,0.984952,-0.119820,-0.124551,0.984952, + -0.119820,-0.124551,0.984952,0.092382,0.991397,0.092727,0.092382,0.991397,0.092727,0.092382,0.991397,0.092727, + 0.092382,0.991397,0.092727,-0.080345,-0.978348,-0.190737,-0.080345,-0.978348,-0.190737,-0.080345,-0.978348,-0.190737, + -0.080345,-0.978348,-0.190737,-0.064553,-0.981473,-0.180396,-0.064553,-0.981473,-0.180396,-0.064553,-0.981473,-0.180396, + -0.064553,-0.981473,-0.180396,0.064550,0.981477,0.180377,0.064550,0.981477,0.180377,0.064550,0.981477,0.180377, + 0.064550,0.981477,0.180377,-0.274507,-0.119529,0.954127,-0.274507,-0.119529,0.954127,-0.274507,-0.119529,0.954127, + -0.274507,-0.119529,0.954127,0.238193,0.123624,-0.963318,0.238193,0.123624,-0.963318,0.238193,0.123624,-0.963318, + 0.238193,0.123624,-0.963318,0.957169,-0.111290,0.267285,0.957169,-0.111290,0.267285,0.957169,-0.111290,0.267285, + 0.957169,-0.111290,0.267285,-0.980241,0.098916,-0.171301,-0.980241,0.098916,-0.171301,-0.980241,0.098916,-0.171301, + -0.980241,0.098916,-0.171301,-0.065311,-0.987180,-0.145636,-0.065311,-0.987180,-0.145636,-0.065311,-0.987180,-0.145636, + -0.065311,-0.987180,-0.145636,0.065313,0.987178,0.145653,0.065313,0.987178,0.145653,0.065313,0.987178,0.145653, + 0.065313,0.987178,0.145653,0.337595,0.092520,-0.936733,0.337595,0.092520,-0.936733,0.337595,0.092520,-0.936733, + 0.337595,0.092520,-0.936733,-0.302004,-0.096693,0.948390,-0.302004,-0.096693,0.948390,-0.302004,-0.096693,0.948390, + -0.302004,-0.096693,0.948390,-0.936391,0.112863,-0.332315,-0.936391,0.112863,-0.332315,-0.936391,0.112863,-0.332315, + -0.936391,0.112863,-0.332315,0.965837,-0.103196,0.237716,0.965837,-0.103196,0.237716,0.965837,-0.103196,0.237716, + 0.965837,-0.103196,0.237716,-0.078232,-0.986069,-0.146794,-0.078232,-0.986069,-0.146794,-0.078232,-0.986069,-0.146794, + -0.078232,-0.986069,-0.146794,0.078239,0.986069,0.146787,0.078239,0.986069,0.146787,0.078239,0.986069,0.146787, + 0.078239,0.986069,0.146787,0.251547,0.101031,-0.962557,0.251547,0.101031,-0.962557,0.251547,0.101031,-0.962557, + 0.251547,0.101031,-0.962557,-0.215048,-0.105164,0.970925,-0.215048,-0.105164,0.970925,-0.215048,-0.105164,0.970925, + -0.215048,-0.105164,0.970925,-0.962885,0.111848,-0.245648,-0.962885,0.111848,-0.245648,-0.962885,0.111848,-0.245648, + -0.962885,0.111848,-0.245648,0.983660,-0.101314,0.148822,0.983660,-0.101314,0.148822,0.983660,-0.101314,0.148822, + 0.983660,-0.101314,0.148822,-0.076959,-0.985145,-0.153517,-0.076959,-0.985145,-0.153517,-0.076959,-0.985145,-0.153517, + -0.076959,-0.985145,-0.153517,0.985485,-0.101327,0.136209,0.985485,-0.101327,0.136209,0.985485,-0.101327,0.136209, + 0.985485,-0.101327,0.136209,-0.645371,0.763869,-0.000126,-0.645371,0.763869,-0.000126,-0.645371,0.763869,-0.000126, + -0.645371,0.763869,-0.000126,-0.963532,0.109158,-0.244318,-0.963532,0.109158,-0.244318,-0.963532,0.109158,-0.244318, + -0.963532,0.109158,-0.244318,-0.081942,-0.989470,-0.119313,-0.081942,-0.989470,-0.119313,-0.081942,-0.989470,-0.119313, + -0.081942,-0.989470,-0.119313,0.738160,0.628259,0.245787,0.738160,0.628259,0.245787,0.738160,0.628259,0.245787, + 0.738160,0.628259,0.245787,0.112821,0.993408,0.020317,0.112821,0.993408,0.020317,0.112821,0.993408,0.020317, + 0.112821,0.993408,0.020317,-0.957805,0.110740,-0.265227,-0.957805,0.110740,-0.265227,-0.957805,0.110740,-0.265227, + -0.957805,0.110740,-0.265227,0.607410,-0.777208,0.164320,0.607410,-0.777208,0.164320,0.607410,-0.777208,0.164320, + 0.607410,-0.777208,0.164320,0.985166,-0.101504,0.138365,0.985166,-0.101504,0.138365,0.985166,-0.101504,0.138365, + 0.985166,-0.101504,0.138365,0.109064,0.993914,0.015476,0.109064,0.993914,0.015476,0.109064,0.993914,0.015476, + 0.109064,0.993914,0.015476,-0.765628,-0.632387,-0.117900,-0.765628,-0.632387,-0.117900,-0.765628,-0.632387,-0.117900, + -0.765628,-0.632387,-0.117900,-0.124727,-0.987081,-0.100569,-0.124727,-0.987081,-0.100569,-0.124727,-0.987081,-0.100569, + -0.124727,-0.987081,-0.100569,-0.888423,0.000374,0.459026,-0.888423,0.000374,0.459026,-0.888423,0.000374,0.459026, + -0.888423,0.000374,0.459026,-0.064869,-0.994253,-0.085167,-0.064869,-0.994253,-0.085167,-0.064869,-0.994253,-0.085167, + -0.064869,-0.994253,-0.085167,0.667564,-0.135718,0.732079,0.667564,-0.135718,0.732079,0.667564,-0.135718,0.732079, + 0.125255,0.987226,0.098472,0.125255,0.987226,0.098472,0.125255,0.987226,0.098472,0.125255,0.987226,0.098472, + -0.094789,0.685686,0.721699,-0.094789,0.685686,0.721699,-0.094789,0.685686,0.721699,-0.094789,0.685686,0.721699, + 0.664258,-0.171156,0.727644,0.664258,-0.171156,0.727644,0.664258,-0.171156,0.727644,0.064506,0.994149,0.086640, + 0.064506,0.994149,0.086640,0.064506,0.994149,0.086640,0.064506,0.994149,0.086640,-0.051286,0.762881,0.644501, + -0.051286,0.762881,0.644501,-0.051286,0.762881,0.644501,-0.246286,-0.862297,0.442478,-0.246286,-0.862297,0.442478, + -0.246286,-0.862297,0.442478,-0.204243,-0.868000,0.452615,-0.204243,-0.868000,0.452615,-0.204243,-0.868000,0.452615, + 0.966671,-0.137749,0.215806,0.966671,-0.137749,0.215806,0.966671,-0.137749,0.215806,0.966671,-0.137749,0.215806, + -0.881871,0.066038,0.466843,-0.881871,0.066038,0.466843,-0.881871,0.066038,0.466843,-0.881871,0.066038,0.466843, + 0.736381,0.032334,-0.675794,0.736381,0.032334,-0.675794,0.736381,0.032334,-0.675794,-0.978152,0.077158,-0.193041, + -0.978152,0.077158,-0.193041,-0.978152,0.077158,-0.193041,-0.978152,0.077158,-0.193041,-0.965931,0.143553,-0.215334, + -0.965931,0.143553,-0.215334,-0.965931,0.143553,-0.215334,-0.965931,0.143553,-0.215334,0.964440,-0.089664,0.248627, + 0.964440,-0.089664,0.248627,0.964440,-0.089664,0.248627,0.964440,-0.089664,0.248627,-0.254388,-0.782855,0.567824, + -0.254388,-0.782855,0.567824,-0.254388,-0.782855,0.567824,-0.254388,-0.782855,0.567824,-0.215535,-0.787787,0.577007, + -0.215535,-0.787787,0.577007,-0.215535,-0.787787,0.577007,-0.215535,-0.787787,0.577007,-0.076720,0.765779,0.638512, + -0.076720,0.765779,0.638512,-0.076720,0.765779,0.638512,-0.072416,0.683007,0.726813,-0.072416,0.683007,0.726813, + -0.072416,0.683007,0.726813,-0.072416,0.683007,0.726813,0.571037,-0.109224,0.813626,0.571037,-0.109224,0.813626, + 0.571037,-0.109224,0.813626,0.571037,-0.109224,0.813626,0.568759,-0.141145,0.810303,0.568759,-0.141145,0.810303, + 0.568759,-0.141145,0.810303,0.568759,-0.141145,0.810303,-0.943542,-0.013007,0.330999,-0.943542,-0.013007,0.330999, + -0.943542,-0.013007,0.330999,-0.938550,0.059009,0.340061,-0.938550,0.059009,0.340061,-0.938550,0.059009,0.340061, + 0.731468,-0.023073,-0.681485,0.731468,-0.023073,-0.681485,0.731468,-0.023073,-0.681485,0.143152,-0.474026,-0.868796, + 0.143152,-0.474026,-0.868796,0.143152,-0.474026,-0.868796,0.272096,0.577356,-0.769821,0.272096,0.577356,-0.769821, + 0.272096,0.577356,-0.769821,-0.322094,0.102043,-0.941192,-0.322094,0.102043,-0.941192,-0.322094,0.102043,-0.941192, + 0.138398,-0.473437,-0.869887,0.138398,-0.473437,-0.869887,0.138398,-0.473437,-0.869887,-0.320576,0.118977,-0.939721, + -0.320576,0.118977,-0.939721,-0.320576,0.118977,-0.939721,0.248267,0.580240,-0.775684,0.248267,0.580240,-0.775684, + 0.248267,0.580240,-0.775684,-0.065422,-0.988678,-0.135041,-0.065422,-0.988678,-0.135041,-0.065422,-0.988678,-0.135041, + -0.065422,-0.988678,-0.135041,-0.627097,-0.013407,0.778826,-0.627097,-0.013407,0.778826,-0.627097,-0.013407,0.778826, + -0.627097,-0.013407,0.778826,-0.086523,-0.989567,-0.115201,-0.086523,-0.989567,-0.115201,-0.086523,-0.989567,-0.115201, + -0.086523,-0.989567,-0.115201,-0.196300,-0.068355,-0.978158,-0.196300,-0.068355,-0.978158,-0.196300,-0.068355,-0.978158, + -0.196300,-0.068355,-0.978158,0.091862,-0.891342,-0.443926,0.091862,-0.891342,-0.443926,0.091862,-0.891342,-0.443926, + 0.091862,-0.891342,-0.443926,0.086616,0.995138,0.046888,0.086616,0.995138,0.046888,0.086616,0.995138,0.046888, + 0.086616,0.995138,0.046888,0.185825,-0.064860,0.980440,0.185825,-0.064860,0.980440,0.185825,-0.064860,0.980440, + 0.185825,-0.064860,0.980440,0.162366,-0.364063,-0.917113,0.162366,-0.364063,-0.917113,0.162366,-0.364063,-0.917113, + 0.162366,-0.364063,-0.917113,0.967358,-0.110004,0.228295,0.967358,-0.110004,0.228295,0.967358,-0.110004,0.228295, + 0.967358,-0.110004,0.228295,0.108345,0.943232,-0.313966,0.108345,0.943232,-0.313966,0.108345,0.943232,-0.313966, + 0.108345,0.943232,-0.313966,-0.789049,0.056230,-0.611751,-0.789049,0.056230,-0.611751,-0.789049,0.056230,-0.611751, + -0.789049,0.056230,-0.611751,0.099303,0.992315,0.073826,0.099303,0.992315,0.073826,0.099303,0.992315,0.073826, + 0.099303,0.992315,0.073826,0.622787,-0.018227,-0.782179,0.622787,-0.018227,-0.782179,0.622787,-0.018227,-0.782179, + 0.622787,-0.018227,-0.782179,0.989254,-0.004345,-0.146142,0.989254,-0.004345,-0.146142,0.989254,-0.004345,-0.146142, + 0.989254,-0.004345,-0.146142,-0.225267,-0.488777,0.842824,-0.225267,-0.488777,0.842824,-0.225267,-0.488777,0.842824, + -0.225267,-0.488777,0.842824,0.974437,-0.086440,0.207365,0.974437,-0.086440,0.207365,0.974437,-0.086440,0.207365, + 0.974437,-0.086440,0.207365,0.093373,0.496563,-0.862964,0.093373,0.496563,-0.862964,0.093373,0.496563,-0.862964, + 0.093373,0.496563,-0.862964,-0.956788,0.108142,-0.269929,-0.956788,0.108142,-0.269929,-0.956788,0.108142,-0.269929, + -0.956788,0.108142,-0.269929,-0.193404,0.367971,0.909501,-0.193404,0.367971,0.909501,-0.193404,0.367971,0.909501, + -0.193404,0.367971,0.909501,-0.950715,0.095781,-0.294903,-0.950715,0.095781,-0.294903,-0.950715,0.095781,-0.294903, + -0.950715,0.095781,-0.294903,0.651207,-0.755278,0.074058,0.651207,-0.755278,0.074058,0.651207,-0.755278,0.074058, + 0.651207,-0.755278,0.074058,-0.522374,-0.297036,0.799309,-0.522374,-0.297036,0.799309,-0.522374,-0.297036,0.799309, + -0.522374,-0.297036,0.799309,0.628582,-0.772927,0.086414,0.628582,-0.772927,0.086414,0.628582,-0.772927,0.086414, + 0.628582,-0.772927,0.086414,0.015128,-0.344526,-0.938655,0.015128,-0.344526,-0.938655,0.015128,-0.344526,-0.938655, + 0.015128,-0.344526,-0.938655,0.723050,-0.640008,-0.259978,0.723050,-0.640008,-0.259978,0.723050,-0.640008,-0.259978, + 0.723050,-0.640008,-0.259978,-0.626525,0.763793,-0.155198,-0.626525,0.763793,-0.155198,-0.626525,0.763793,-0.155198, + -0.626525,0.763793,-0.155198,0.068065,0.244648,0.967220,0.068065,0.244648,0.967220,0.068065,0.244648,0.967220, + 0.068065,0.244648,0.967220,0.447799,-0.258386,-0.855986,0.447799,-0.258386,-0.855986,0.447799,-0.258386,-0.855986, + 0.447799,-0.258386,-0.855986,0.738658,0.638903,0.214910,0.738658,0.638903,0.214910,0.738658,0.638903,0.214910, + 0.738658,0.638903,0.214910,-0.522843,0.691888,-0.497921,-0.522843,0.691888,-0.497921,-0.522843,0.691888,-0.497921, + -0.522843,0.691888,-0.497921,-0.538409,-0.601142,-0.590546,-0.538409,-0.601142,-0.590546,-0.538409,-0.601142,-0.590546, + -0.538409,-0.601142,-0.590546,-0.621163,0.771866,-0.135568,-0.621163,0.771866,-0.135568,-0.621163,0.771866,-0.135568, + -0.621163,0.771866,-0.135568,0.540797,0.271212,-0.796230,0.540797,0.271212,-0.796230,0.540797,0.271212,-0.796230, + 0.540797,0.271212,-0.796230,0.738620,0.653025,-0.167330,0.738620,0.653025,-0.167330,0.738620,0.653025,-0.167330, + 0.738620,0.653025,-0.167330,0.043651,-0.342511,0.938499,0.043651,-0.342511,0.938499,0.043651,-0.342511,0.938499, + 0.043651,-0.342511,0.938499,0.779885,0.595501,0.192764,0.779885,0.595501,0.192764,0.779885,0.595501,0.192764, + 0.779885,0.595501,0.192764,-0.148763,0.257179,-0.954845,-0.148763,0.257179,-0.954845,-0.148763,0.257179,-0.954845, + -0.148763,0.257179,-0.954845,-0.773440,-0.579979,-0.255764,-0.773440,-0.579979,-0.255764,-0.773440,-0.579979,-0.255764, + -0.773440,-0.579979,-0.255764,-0.472410,0.239655,0.848171,-0.472410,0.239655,0.848171,-0.472410,0.239655,0.848171, + -0.472410,0.239655,0.848171,-0.709347,-0.647582,-0.278325,-0.709347,-0.647582,-0.278325,-0.709347,-0.647582,-0.278325, + -0.709347,-0.647582,-0.278325,0.937571,-0.114743,0.328320,0.937571,-0.114743,0.328320,0.937571,-0.114743,0.328320, + 0.937571,-0.114743,0.328320,0.937811,-0.116392,0.327052,0.937811,-0.116392,0.327052,0.937811,-0.116392,0.327052, + 0.937811,-0.116392,0.327052,0.090733,0.992094,0.086704,0.090733,0.992094,0.086704,0.090733,0.992094,0.086704, + 0.090733,0.992094,0.086704,0.087317,0.991202,0.099471,0.087317,0.991202,0.099471,0.087317,0.991202,0.099471, + 0.087317,0.991202,0.099471,-0.091836,-0.992351,-0.082497,-0.091836,-0.992351,-0.082497,-0.091836,-0.992351,-0.082497, + -0.091836,-0.992351,-0.082497,-0.088426,-0.991511,-0.095328,-0.088426,-0.991511,-0.095328,-0.088426,-0.991511,-0.095328, + -0.088426,-0.991511,-0.095328,-0.940173,0.059150,-0.335523,-0.940173,0.059150,-0.335523,-0.940173,0.059150,-0.335523, + -0.940173,0.059150,-0.335523,0.939513,-0.107584,0.325178,0.939513,-0.107584,0.325178,0.939513,-0.107584,0.325178, + 0.939513,-0.107584,0.325178,-0.335021,-0.039065,0.941400,-0.335021,-0.039065,0.941400,-0.335021,-0.039065,0.941400, + -0.335021,-0.039065,0.941400,0.333392,0.069672,-0.940210,0.333392,0.069672,-0.940210,0.333392,0.069672,-0.940210, + 0.333392,0.069672,-0.940210,-0.024962,-0.962520,-0.270058,-0.024962,-0.962520,-0.270058,-0.024962,-0.962520,-0.270058, + -0.024962,-0.962520,-0.270058,-0.180573,0.980368,0.079191,-0.180573,0.980368,0.079191,-0.180573,0.980368,0.079191, + -0.180573,0.980368,0.079191,-0.950459,0.115063,-0.288770,-0.950459,0.115063,-0.288770,-0.950459,0.115063,-0.288770, + -0.950459,0.115063,-0.288770,0.950458,-0.115064,0.288773,0.950458,-0.115064,0.288773,0.950458,-0.115064,0.288773, + 0.950458,-0.115064,0.288773,0.298008,0.067518,-0.952173,0.298008,0.067518,-0.952173,0.298008,0.067518,-0.952173, + 0.298008,0.067518,-0.952173,-0.301223,-0.104784,0.947779,-0.301223,-0.104784,0.947779,-0.301223,-0.104784,0.947779, + -0.301223,-0.104784,0.947779,0.092102,0.991376,0.093231,0.092102,0.991376,0.093231,0.092102,0.991376,0.093231, + 0.092102,0.991376,0.093231,-0.062052,-0.980292,-0.187556,-0.062052,-0.980292,-0.187556,-0.062052,-0.980292,-0.187556, + -0.062052,-0.980292,-0.187556,-0.077201,-0.987046,-0.140644,-0.077201,-0.987046,-0.140644,-0.077201,-0.987046,-0.140644, + -0.077201,-0.987046,-0.140644,-0.975796,0.105562,-0.191519,-0.975796,0.105562,-0.191519,-0.975796,0.105562,-0.191519, + -0.975796,0.105562,-0.191519,0.937374,-0.114773,0.328874,0.937374,-0.114773,0.328874,0.937374,-0.114773,0.328874, + 0.937374,-0.114773,0.328874,0.965210,-0.108845,0.237742,0.965210,-0.108845,0.237742,0.965210,-0.108845,0.237742, + 0.965210,-0.108845,0.237742,-0.219378,-0.070016,0.973124,-0.219378,-0.070016,0.973124,-0.219378,-0.070016,0.973124, + -0.219377,-0.070016,0.973125,-0.219377,-0.070016,0.973125,-0.219377,-0.070016,0.973125,-0.219377,-0.070015,0.973125, + -0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125, + -0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125,-0.219378,-0.070015,0.973125,-0.219378,-0.070015,0.973125, + -0.219378,-0.070015,0.973125,-0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125,-0.219377,-0.070015,0.973125, + -0.219377,-0.070015,0.973125,-0.219375,-0.070015,0.973125,-0.219375,-0.070015,0.973125,-0.219375,-0.070015,0.973125, + -0.219375,-0.070015,0.973125,-0.976194,0.106088,-0.189183,-0.976194,0.106088,-0.189183,-0.976194,0.106088,-0.189183, + -0.976194,0.106088,-0.189183,-0.072253,-0.983505,-0.165825,-0.072253,-0.983505,-0.165825,-0.072253,-0.983505,-0.165825, + -0.951864,0.112058,-0.285304,-0.951864,0.112058,-0.285304,-0.951864,0.112058,-0.285304,0.985501,-0.101324,0.136092, + 0.985501,-0.101324,0.136092,0.985501,-0.101324,0.136092,0.105893,0.994239,0.016622,0.105893,0.994239,0.016622, + 0.105893,0.994239,0.016622,-0.072252,-0.983503,-0.165834,-0.072252,-0.983503,-0.165834,-0.072252,-0.983503,-0.165834, + -0.072253,-0.983503,-0.165837,-0.072253,-0.983503,-0.165837,-0.072253,-0.983503,-0.165837,-0.072253,-0.983503,-0.165837, + 0.105890,0.994239,0.016617,0.105890,0.994239,0.016617,0.105890,0.994239,0.016617,0.105890,0.994239,0.016622, + 0.105890,0.994239,0.016622,0.105890,0.994239,0.016622,0.105890,0.994239,0.016622,-0.951863,0.112059,-0.285305, + -0.951863,0.112059,-0.285305,-0.951863,0.112059,-0.285305,-0.951864,0.112058,-0.285305,-0.951864,0.112058,-0.285305, + -0.951864,0.112058,-0.285305,-0.951864,0.112058,-0.285305,0.985501,-0.101323,0.136092,0.985501,-0.101323,0.136092, + 0.985501,-0.101323,0.136092,-0.102757,-0.994355,-0.026447,-0.102757,-0.994355,-0.026447,-0.102757,-0.994355,-0.026447, + -0.102757,-0.994355,-0.026447,-0.160309,-0.076349,0.984110,-0.160309,-0.076349,0.984110,-0.160309,-0.076349,0.984110, + -0.160309,-0.076349,0.984110,-0.277642,-0.063426,0.958589,-0.277642,-0.063426,0.958589,-0.277642,-0.063426,0.958589, + -0.277642,-0.063426,0.958589,0.074552,0.986520,0.145674,0.074552,0.986520,0.145674,0.074552,0.986520,0.145674, + 0.074552,0.986520,0.145674,-0.098705,-0.993555,-0.055729,-0.098705,-0.993555,-0.055729,-0.098705,-0.993555,-0.055729, + -0.098705,-0.993555,-0.055729,-0.948203,0.112804,-0.296962,-0.948203,0.112804,-0.296962,-0.948203,0.112804,-0.296962, + -0.948203,0.112804,-0.296962,0.975807,-0.105558,0.191461,0.975807,-0.105558,0.191461,0.975807,-0.105558,0.191461, + 0.975807,-0.105558,0.191461,0.051630,0.994891,-0.086753,0.051630,0.994891,-0.086753,0.051630,0.994891,-0.086753, + 0.051630,0.994891,-0.086753,0.989285,-0.137148,0.050067,0.989285,-0.137148,0.050067,0.989285,-0.137148,0.050067, + 0.177434,0.627259,-0.758329,0.177434,0.627259,-0.758329,0.177434,0.627259,-0.758329,-0.336691,-0.873088,-0.352642, + -0.336691,-0.873088,-0.352642,-0.336691,-0.873088,-0.352642,-0.998686,0.032181,-0.039878,-0.998686,0.032181,-0.039878, + -0.998686,0.032181,-0.039878,-0.792556,-0.473677,-0.384037,-0.792556,-0.473677,-0.384037,-0.792556,-0.473677,-0.384037, + -0.792556,-0.473677,-0.384037,0.986521,-0.027133,0.161367,0.986521,-0.027133,0.161367,0.986521,-0.027133,0.161367, + -0.808564,-0.495810,0.316855,-0.808564,-0.495810,0.316855,-0.808564,-0.495810,0.316855,-0.156031,0.815797,0.556892, + -0.156031,0.815797,0.556892,-0.156031,0.815797,0.556892,-0.883012,-0.452997,0.122816,-0.883012,-0.452997,0.122816, + -0.883012,-0.452997,0.122816,-0.892189,0.311519,0.327040,-0.892189,0.311519,0.327040,-0.892189,0.311519,0.327040, + -0.227644,-0.956159,0.184222,-0.227644,-0.956159,0.184222,-0.227644,-0.956159,0.184222,0.898909,-0.254396,0.356714, + 0.898909,-0.254396,0.356714,0.898909,-0.254396,0.356714,-0.081378,0.987233,0.136925,-0.081378,0.987233,0.136925, + -0.081378,0.987233,0.136925,-0.114620,0.986168,0.119730,-0.114620,0.986168,0.119730,-0.114620,0.986168,0.119730, + 0.932149,-0.010550,0.361920,0.932149,-0.010550,0.361920,0.932149,-0.010550,0.361920,0.989789,0.053968,0.131926, + 0.989789,0.053968,0.131926,0.989789,0.053968,0.131926,-0.347268,0.927327,-0.139534,-0.347268,0.927327,-0.139534, + -0.347268,0.927327,-0.139534,-0.040234,-0.457818,-0.888135,-0.040234,-0.457818,-0.888135,-0.040234,-0.457818,-0.888135, + -0.986952,0.088097,-0.134778,-0.986952,0.088097,-0.134778,-0.986952,0.088097,-0.134778,0.280308,-0.790593,-0.544417, + 0.280308,-0.790593,-0.544417,0.280308,-0.790593,-0.544417,-0.930177,-0.210603,0.300694,-0.930177,-0.210603,0.300694, + -0.930177,-0.210603,0.300694,0.821361,0.395658,-0.410878,0.821361,0.395658,-0.410878,0.821361,0.395658,-0.410878, + 0.743308,0.475702,0.470320,0.743308,0.475702,0.470320,0.743308,0.475702,0.470320,0.216119,-0.975580,0.039210, + 0.216119,-0.975580,0.039210,0.216119,-0.975580,0.039210,-0.214349,0.829561,0.515638,-0.214349,0.829561,0.515638, + -0.214349,0.829561,0.515638,0.771511,0.219596,0.597117,0.771511,0.219596,0.597117,0.771511,0.219596,0.597117, + -0.016032,-0.772403,0.634931,-0.016032,-0.772403,0.634931,-0.016032,-0.772403,0.634931,-0.720473,-0.373721,-0.584168, + -0.720473,-0.373721,-0.584168,-0.720473,-0.373721,-0.584168,-0.933039,-0.198036,0.300368,-0.933039,-0.198036,0.300368, + -0.933039,-0.198036,0.300368,-0.337087,-0.862921,-0.376484,-0.337087,-0.862921,-0.376484,-0.337087,-0.862921,-0.376484, + 0.957107,0.286457,-0.043461,0.957107,0.286457,-0.043461,0.957107,0.286457,-0.043461,0.471304,0.672255,-0.570916, + 0.471304,0.672255,-0.570916,0.471304,0.672255,-0.570916,0.478691,0.448844,0.754582,0.478691,0.448844,0.754582, + 0.478691,0.448844,0.754582,0.792933,-0.559095,-0.242219,0.792933,-0.559095,-0.242219,0.792933,-0.559095,-0.242219, + 0.457293,-0.470544,0.754634,0.457293,-0.470544,0.754634,0.457293,-0.470544,0.754634,-0.099329,-0.797976,0.594447, + -0.099329,-0.797976,0.594447,-0.099329,-0.797976,0.594447,-0.857031,0.469954,-0.211286,-0.857031,0.469954,-0.211286, + -0.857031,0.469954,-0.211286,-0.200643,-0.051353,-0.978318,-0.200643,-0.051353,-0.978318,-0.200643,-0.051353,-0.978318, + 0.868000,0.123739,-0.480900,0.868000,0.123739,-0.480900,0.868000,0.123739,-0.480900,-0.193098,0.981109,-0.011720, + -0.193098,0.981109,-0.011720,-0.193098,0.981109,-0.011720,-0.965519,0.003760,-0.260303,-0.965519,0.003760,-0.260303, + -0.965519,0.003760,-0.260303,-0.965519,0.003760,-0.260303,0.676398,0.719151,0.159082,0.676398,0.719151,0.159082, + 0.676398,0.719151,0.159082,-0.169242,0.167876,-0.971172,-0.169242,0.167876,-0.971172,-0.169242,0.167876,-0.971172, + 0.854387,-0.455047,-0.250909,0.854387,-0.455047,-0.250909,0.854387,-0.455047,-0.250909,-0.086639,-0.986791,0.136888, + -0.086639,-0.986791,0.136888,-0.086639,-0.986791,0.136888,0.455498,-0.888255,0.059377,0.455498,-0.888255,0.059377, + 0.455498,-0.888255,0.059377,0.455498,-0.888255,0.059377,0.042007,0.998949,-0.018365,0.042007,0.998949,-0.018365, + 0.042007,0.998949,-0.018365,0.253694,-0.495970,0.830454,0.253694,-0.495970,0.830454,0.253694,-0.495970,0.830454, + -0.598136,-0.335048,0.727994,-0.598136,-0.335048,0.727994,-0.598136,-0.335048,0.727994,0.296185,-0.894983,0.333586, + 0.296185,-0.894983,0.333586,0.296185,-0.894983,0.333586,0.428542,-0.199803,-0.881153,0.428542,-0.199803,-0.881153, + 0.428542,-0.199803,-0.881153,0.904832,-0.188383,0.381826,0.904832,-0.188383,0.381826,0.904832,-0.188383,0.381826, + 0.233979,0.805682,0.544179,0.233979,0.805682,0.544179,0.233979,0.805682,0.544179,0.239573,0.837023,0.491932, + 0.239573,0.837023,0.491932,0.239573,0.837023,0.491932,-0.066615,-0.841493,0.536146,-0.066615,-0.841493,0.536146, + -0.066615,-0.841493,0.536146,-0.839294,0.010692,-0.543573,-0.839294,0.010692,-0.543573,-0.839294,0.010692,-0.543573, + -0.859313,0.224956,-0.459320,-0.859313,0.224956,-0.459320,-0.859313,0.224956,-0.459320,-0.970420,0.098433,-0.220443, + -0.970420,0.098433,-0.220443,-0.970420,0.098433,-0.220443,-0.078446,0.976472,0.200867,-0.078446,0.976472,0.200867, + -0.078446,0.976472,0.200867,0.001486,0.999069,-0.043109,0.001486,0.999069,-0.043109,0.001486,0.999069,-0.043109, + -0.853469,0.082597,-0.514556,-0.853469,0.082597,-0.514556,-0.853469,0.082597,-0.514556,0.774808,-0.614527,-0.148424, + 0.774808,-0.614527,-0.148424,0.774808,-0.614527,-0.148424,-0.158785,-0.984764,-0.070900,-0.158785,-0.984764,-0.070900, + -0.158785,-0.984764,-0.070900,0.656777,0.558771,-0.506378,0.656777,0.558771,-0.506378,0.656777,0.558771,-0.506378, + 0.106169,-0.874169,0.473874,0.106169,-0.874169,0.473874,0.106169,-0.874169,0.473874,0.252055,0.214929,-0.943543, + 0.252055,0.214929,-0.943543,0.252055,0.214929,-0.943543,-0.838327,0.544170,-0.032962,-0.838327,0.544170,-0.032962, + -0.838327,0.544170,-0.032962,0.922859,0.299088,0.242645,0.922859,0.299088,0.242645,0.922859,0.299088,0.242645, + -0.876604,0.478847,-0.047654,-0.876604,0.478847,-0.047654,-0.876604,0.478847,-0.047654,0.411875,0.702715,0.580129, + 0.411875,0.702715,0.580129,0.411875,0.702715,0.580129,0.696482,0.270116,0.664793,0.696482,0.270116,0.664793, + 0.696482,0.270116,0.664793,0.376074,-0.758014,-0.532900,0.376074,-0.758014,-0.532900,0.376074,-0.758014,-0.532900, + -0.006485,-0.896534,0.442928,-0.006485,-0.896534,0.442928,-0.006485,-0.896534,0.442928,0.845836,-0.458455,-0.272727, + 0.845836,-0.458455,-0.272727,0.845836,-0.458455,-0.272727,0.111987,0.925577,-0.361615,0.111987,0.925577,-0.361615, + 0.111987,0.925577,-0.361615,-0.237493,-0.050493,-0.970076,-0.237493,-0.050493,-0.970076,-0.237493,-0.050493,-0.970076, + -0.855583,0.517663,0.001830,-0.855583,0.517663,0.001830,-0.855583,0.517663,0.001830,0.965891,0.131094,-0.223315, + 0.965891,0.131094,-0.223315,0.965891,0.131094,-0.223315,-0.842738,0.538241,-0.009469,-0.842738,0.538241,-0.009469, + -0.842738,0.538241,-0.009469,0.180029,0.958588,0.220679,0.180029,0.958588,0.220679,0.180029,0.958588,0.220679, + 0.738321,0.387718,0.551867,0.738321,0.387718,0.551867,0.738321,0.387718,0.551867,0.375150,-0.926962,-0.002104, + 0.375150,-0.926962,-0.002104,0.375150,-0.926962,-0.002104,0.167818,-0.508828,0.844353,0.167818,-0.508828,0.844353, + 0.167818,-0.508828,0.844353,0.817572,-0.567835,-0.095605,0.817572,-0.567835,-0.095605,0.817572,-0.567835,-0.095605, + -0.156216,0.498942,-0.852440,-0.156216,0.498942,-0.852440,-0.156216,0.498942,-0.852440,-0.703985,-0.112016,-0.701326, + -0.703985,-0.112016,-0.701326,-0.703985,-0.112016,-0.701326,-0.840005,0.507213,-0.192682,-0.840005,0.507213,-0.192682, + -0.840005,0.507213,-0.192682,-0.840005,0.507213,-0.192682,0.941809,0.271256,0.198534,0.941809,0.271256,0.198534, + 0.941809,0.271256,0.198534,-0.065104,0.360526,-0.930474,-0.065104,0.360526,-0.930474,-0.065104,0.360526,-0.930474, + 0.522329,-0.772849,-0.360383,0.522329,-0.772849,-0.360383,0.522329,-0.772849,-0.360383,-0.558655,-0.829081,0.022999, + -0.558655,-0.829081,0.022999,-0.558655,-0.829081,0.022999,-0.037654,-0.996219,-0.078293,-0.037654,-0.996219,-0.078293, + -0.037654,-0.996219,-0.078293,-0.037654,-0.996219,-0.078293,0.525645,0.844941,0.098852,0.525645,0.844941,0.098852, + 0.525645,0.844941,0.098852,-0.021816,-0.665514,0.746067,-0.021816,-0.665514,0.746067,-0.021816,-0.665514,0.746067, + -0.685820,-0.099373,0.720955,-0.685820,-0.099373,0.720955,-0.685820,-0.099373,0.720955,-0.179953,-0.962459,0.203199, + -0.179953,-0.962459,0.203199,-0.179953,-0.962459,0.203199,0.276154,-0.259279,-0.925480,0.276154,-0.259279,-0.925480, + 0.276154,-0.259279,-0.925480,0.696656,-0.653966,0.294955,0.696656,-0.653966,0.294955,0.696656,-0.653966,0.294955, + 0.598249,0.507599,0.620034,0.598249,0.507599,0.620034,0.598249,0.507599,0.620034,0.618499,0.539170,0.571625, + 0.618499,0.539170,0.571625,0.618499,0.539170,0.571625,-0.470188,-0.768172,0.434553,-0.470188,-0.768172,0.434553, + -0.470188,-0.768172,0.434553,-0.726475,0.490905,-0.480881,-0.726475,0.490905,-0.480881,-0.726475,0.490905,-0.480881, + -0.639050,0.674109,-0.370394,-0.639050,0.674109,-0.370394,-0.639050,0.674109,-0.370394,-0.797936,0.585897,-0.141505, + -0.797936,0.585897,-0.141505,-0.797936,0.585897,-0.141505,0.409550,0.853803,0.321387,0.409550,0.853803,0.321387, + 0.409550,0.853803,0.321387,0.490377,0.868096,0.077067,0.490377,0.868096,0.077067,0.490377,0.868096,0.077067, + -0.703621,0.555921,-0.442571,-0.703621,0.555921,-0.442571,-0.703621,0.555921,-0.442571,0.374836,-0.886086,-0.272671, + 0.374836,-0.886086,-0.272671,0.374836,-0.886086,-0.272671,-0.620510,-0.763791,-0.177739,-0.620510,-0.763791,-0.177739, + -0.620510,-0.763791,-0.177739,0.846383,0.233730,-0.478546,0.846383,0.233730,-0.478546,0.846383,0.233730,-0.478546, + -0.335498,-0.871622,0.357375,-0.335498,-0.871622,0.357375,-0.335498,-0.871622,0.357375,0.325289,0.193076,-0.925694, + 0.325289,0.193076,-0.925694,0.325289,0.193076,-0.925694,-0.464613,0.881048,0.088822,-0.464613,0.881048,0.088822, + -0.464613,0.881048,0.088822,0.951061,-0.222537,0.214384,0.951061,-0.222537,0.214384,0.951061,-0.222537,0.214384, + -0.529962,0.845209,0.068998,-0.529962,0.845209,0.068998,-0.529962,0.845209,0.068998,0.702974,0.327476,0.631338, + 0.702974,0.327476,0.631338,0.702974,0.327476,0.631338,0.739349,-0.195805,0.644223,0.739349,-0.195805,0.644223, + 0.739349,-0.195805,0.644223,-0.042977,-0.763827,-0.643988,-0.042977,-0.763827,-0.643988,-0.042977,-0.763827,-0.643988, + -0.444668,-0.832058,0.331588,-0.444668,-0.832058,0.331588,-0.444668,-0.832058,0.331588,0.513214,-0.768652,-0.381819, + 0.513214,-0.768652,-0.381819,0.513214,-0.768652,-0.381819,0.550858,0.794806,-0.254637,0.550858,0.794806,-0.254637, + 0.550858,0.794806,-0.254637,-0.231514,0.204871,-0.951015,-0.231514,0.204871,-0.951015,-0.231514,0.204871,-0.951015, + -0.492641,0.861742,0.121264,-0.492641,0.861742,0.121264,-0.492641,0.861742,0.121264,0.906485,-0.324466,-0.270199, + 0.906485,-0.324466,-0.270199,0.906485,-0.324466,-0.270199,-0.471373,0.874835,0.111672,-0.471373,0.874835,0.111672, + -0.471373,0.874835,0.111672,0.626168,0.710298,0.321544,0.626168,0.710298,0.321544,0.626168,0.710298,0.321544, + 0.833445,-0.098994,0.543663,0.833445,-0.098994,0.543663,0.833445,-0.098994,0.543663,-0.126645,-0.982242,-0.138428, + -0.126645,-0.982242,-0.138428,-0.126645,-0.982242,-0.138428,-0.103016,-0.636882,0.764048,-0.103016,-0.636882,0.764048, + -0.103016,-0.636882,0.764048,0.434967,-0.873753,-0.217622,0.434967,-0.873753,-0.217622,0.434967,-0.873753,-0.217622, + 0.108293,0.623839,-0.774014,0.108293,0.623839,-0.774014,0.108293,0.623839,-0.774014,-0.668481,0.341009,-0.660943, + -0.668481,0.341009,-0.660943,-0.668481,0.341009,-0.660943,0.532078,0.846164,0.029979,0.532078,0.846164,0.029979, + 0.532078,0.846164,0.029979,0.532078,0.846164,0.029979,0.795497,-0.605049,-0.033159,0.795497,-0.605049,-0.033159, + 0.795497,-0.605049,-0.033159,0.462012,0.559931,-0.687766,0.462012,0.559931,-0.687766,0.462012,0.559931,-0.687766, + -0.720887,-0.542350,-0.431485,-0.720887,-0.542350,-0.431485,-0.720887,-0.542350,-0.431485,-0.855075,0.517560,0.031287, + -0.855075,0.517560,0.031287,-0.855075,0.517560,0.031287,-0.922859,0.028004,-0.384117,-0.922859,0.028004,-0.384117, + -0.922859,0.028004,-0.384117,-0.922859,0.028004,-0.384117,0.846899,-0.524001,0.090470,0.846899,-0.524001,0.090470, + 0.846899,-0.524001,0.090470,-0.947865,-0.079680,0.308549,-0.947865,-0.079680,0.308549,-0.947865,-0.079680,0.308549, + 0.263136,0.703727,0.659945,0.263136,0.703727,0.659945,0.263136,0.703727,0.659945,-0.991767,0.020064,0.126473, + -0.991767,0.020064,0.126473,-0.991767,0.020064,0.126473,-0.625587,0.656747,0.421100,-0.625587,0.656747,0.421100, + -0.625587,0.656747,0.421100,-0.666624,-0.740759,0.083002,-0.666624,-0.740759,0.083002,-0.666624,-0.740759,0.083002, + 0.659184,-0.704655,0.262559,0.659184,-0.704655,0.262559,0.659184,-0.704655,0.262559,0.412265,0.873318,0.259524, + 0.412265,0.873318,0.259524,0.412265,0.873318,0.259524,0.382774,0.890874,0.244598,0.382774,0.890874,0.244598, + 0.382774,0.890874,0.244598,0.807551,-0.510861,0.294760,0.807551,-0.510861,0.294760,0.807551,-0.510861,0.294760, + 0.889467,-0.451478,0.070820,0.889467,-0.451478,0.070820,0.889467,-0.451478,0.070820,0.151184,0.988499,-0.003680, + 0.151184,0.988499,-0.003680,0.151184,0.988499,-0.003680,-0.258930,-0.253849,-0.931942,-0.258930,-0.253849,-0.931942, + -0.258930,-0.253849,-0.931942,-0.817441,0.573206,-0.056789,-0.817441,0.573206,-0.056789,-0.817441,0.573206,-0.056789, + -0.142430,-0.743944,-0.652886,-0.142430,-0.743944,-0.652886,-0.142430,-0.743944,-0.652886,-0.914290,0.227845,0.334904, + -0.914290,0.227845,0.334904,-0.914290,0.227845,0.334904,0.910028,-0.000101,-0.414547,0.910028,-0.000101,-0.414547, + 0.910028,-0.000101,-0.414547,0.880881,-0.014224,0.473124,0.880881,-0.014224,0.473124,0.880881,-0.014224,0.473124, + -0.289134,-0.952790,-0.092696,-0.289134,-0.952790,-0.092696,-0.289134,-0.952790,-0.092696,0.219031,0.749564,0.624643, + 0.219031,0.749564,0.624643,0.219031,0.749564,0.624643,0.780066,-0.266525,0.566093,0.780066,-0.266525,0.566093, + 0.780066,-0.266525,0.566093,-0.392285,-0.746602,0.537307,-0.392285,-0.746602,0.537307,-0.392285,-0.746602,0.537307, + -0.811013,0.106879,-0.575183,-0.811013,0.106879,-0.575183,-0.811013,0.106879,-0.575183,-0.910633,0.240127,0.336284, + -0.910633,0.240127,0.336284,-0.910633,0.240127,0.336284,-0.716246,-0.530095,-0.453862,-0.716246,-0.530095,-0.453862, + -0.716246,-0.530095,-0.453862,0.974826,-0.210740,-0.072818,0.974826,-0.210740,-0.072818,0.974826,-0.210740,-0.072818, + 0.740232,0.430537,-0.516425,0.740232,0.430537,-0.516425,0.740232,0.430537,-0.516425,0.636901,0.051835,0.769201, + 0.636901,0.051835,0.769201,0.636901,0.051835,0.769201,0.417805,-0.834110,-0.360137,0.417805,-0.834110,-0.360137, + 0.417805,-0.834110,-0.360137,0.168183,-0.731868,0.660366,0.168183,-0.731868,0.660366,0.168183,-0.731868,0.660366, + -0.477424,-0.722739,0.499715,-0.477424,-0.722739,0.499715,-0.477424,-0.722739,0.499715,-0.517190,0.850530,-0.095460, + -0.517190,0.850530,-0.095460,-0.517190,0.850530,-0.095460,-0.199804,0.187393,-0.961750,-0.199804,0.187393,-0.961750, + -0.199804,0.187393,-0.961750,0.817605,-0.247951,-0.519656,0.817605,-0.247951,-0.519656,0.817605,-0.247951,-0.519656, + 0.311911,0.942625,0.119041,0.311911,0.942625,0.119041,0.311911,0.942625,0.119041,-0.862611,-0.287726,-0.416072, + -0.862611,-0.287726,-0.416072,-0.862611,-0.287726,-0.416072,-0.862611,-0.287726,-0.416072,-0.138517,0.975366,-0.171678, + -0.138517,0.975366,-0.171678,-0.138517,0.975366,-0.171678,-0.305210,-0.155865,-0.939443,-0.305210,-0.155865,-0.939443, + -0.305210,-0.155865,-0.939443,0.994867,-0.086223,0.052974,0.994867,-0.086223,0.052974,0.994867,-0.086223,0.052974, + 0.230080,-0.948537,0.217579,0.230080,-0.948537,0.217579,0.230080,-0.948537,0.217579,0.763256,-0.645919,0.015150, + 0.763256,-0.645919,0.015150,0.763256,-0.645919,0.015150,0.763256,-0.645919,0.015150,-0.278894,0.954486,-0.105710, + -0.278894,0.954486,-0.105710,-0.278894,0.954486,-0.105710,0.513963,-0.544453,0.662882,0.513963,-0.544453,0.662882, + 0.513963,-0.544453,0.662882,-0.903525,-0.323143,0.281461,-0.903525,-0.323143,0.281461,-0.903525,-0.323143,0.281461, + 0.569596,-0.658031,0.492499,0.569596,-0.658031,0.492499,0.569596,-0.658031,0.492499,-0.186826,-0.882496,0.431621, + -0.186826,-0.882496,0.431621,-0.186826,-0.882496,0.431621,0.833119,0.126125,0.538521,0.833119,0.126125,0.538521, + 0.833119,0.126125,0.538521,-0.131713,0.976820,0.168745,-0.131713,0.976820,0.168745,-0.131713,0.976820,0.168745, + -0.910513,-0.374467,-0.175330,-0.910513,-0.374467,-0.175330,-0.910513,-0.374467,-0.175330,-0.894774,-0.407838,-0.181790, + -0.894774,-0.407838,-0.181790,-0.894774,-0.407838,-0.181790,-0.358481,0.929626,0.085361,-0.358481,0.929626,0.085361, + -0.358481,0.929626,0.085361,-0.340286,0.926667,-0.159670,-0.340286,0.926667,-0.159670,-0.340286,0.926667,-0.159670, + -0.684926,-0.646270,-0.336467,-0.684926,-0.646270,-0.336467,-0.684926,-0.646270,-0.336467,0.762247,-0.027608,-0.646697, + 0.762247,-0.027608,-0.646697,0.762247,-0.027608,-0.646697,0.214492,-0.970497,0.110128,0.214492,-0.970497,0.110128, + 0.214492,-0.970497,0.110128,0.846023,0.432884,-0.311217,0.846023,0.432884,-0.311217,0.846023,0.432884,-0.311217, + 0.296503,-0.752862,0.587610,0.296503,-0.752862,0.587610,0.296503,-0.752862,0.587610,-0.391509,0.574192,-0.719044, + -0.391509,0.574192,-0.719044,-0.391509,0.574192,-0.719044,-0.786653,0.612755,0.075548,-0.786653,0.612755,0.075548, + -0.786653,0.612755,0.075548,0.798782,0.523891,0.295780,0.798782,0.523891,0.295780,0.798782,0.523891,0.295780, + -0.885494,-0.388451,0.254964,-0.885494,-0.388451,0.254964,-0.885494,-0.388451,0.254964,-0.615365,0.741819,0.266518, + -0.615365,0.741819,0.266518,-0.615365,0.741819,0.266518,0.442898,0.334276,0.831926,0.442898,0.334276,0.831926, + 0.442898,0.334276,0.831926,0.734815,-0.642239,-0.218120,0.734815,-0.642239,-0.218120,0.734815,-0.642239,-0.218120, + 0.286157,-0.759658,0.583981,0.286157,-0.759658,0.583981,0.286157,-0.759658,0.583981,0.995212,-0.093607,0.028121, + 0.995212,-0.093607,0.028121,0.995212,-0.093607,0.028121,-0.470578,0.793501,-0.385891,-0.470578,0.793501,-0.385891, + -0.470578,0.793501,-0.385891,-0.489695,0.132977,-0.861694,-0.489695,0.132977,-0.861694,-0.489695,0.132977,-0.861694, + -0.809025,0.418851,0.412362,-0.809025,0.418851,0.412362,-0.809025,0.418851,0.412362,0.397921,0.883316,-0.247815, + 0.397921,0.883316,-0.247815,0.397921,0.883316,-0.247815,0.012905,0.696792,0.717157,0.012905,0.696792,0.717157, + 0.012905,0.696792,0.717157,0.501658,0.258525,0.825533,0.501658,0.258525,0.825533,0.501658,0.258525,0.825533, + -0.126578,-0.984919,-0.117949,-0.126578,-0.984919,-0.117949,-0.126578,-0.984919,-0.117949,0.475326,-0.323058,-0.818351, + 0.475326,-0.323058,-0.818351,0.475326,-0.323058,-0.818351,-0.134048,0.694903,-0.706499,-0.134048,0.694903,-0.706499, + -0.134048,0.694903,-0.706499,-0.819995,-0.499917,-0.278730,-0.819995,-0.499917,-0.278730,-0.819995,-0.499917,-0.278730, + 0.333067,-0.942733,0.017927,0.333067,-0.942733,0.017927,0.333067,-0.942733,0.017927,0.333067,-0.942733,0.017927, + -0.865469,0.422932,-0.268501,-0.865469,0.422932,-0.268501,-0.865469,0.422932,-0.268501,0.270146,-0.363671,-0.891495, + 0.270146,-0.363671,-0.891495,0.270146,-0.363671,-0.891495,0.293906,0.905590,-0.305819,0.293906,0.905590,-0.305819, + 0.293906,0.905590,-0.305819,0.844424,0.260241,0.468213,0.844424,0.260241,0.468213,0.844424,0.260241,0.468213, + 0.655075,0.722110,0.222337,0.655075,0.722110,0.222337,0.655075,0.722110,0.222337,0.655075,0.722110,0.222337, + -0.890501,-0.287352,-0.352756,-0.890501,-0.287352,-0.352756,-0.890501,-0.287352,-0.352756,0.055535,0.526859,0.848136, + 0.055535,0.526859,0.848136,0.055535,0.526859,0.848136,0.159874,-0.336101,0.928158,0.159874,-0.336101,0.928158, + 0.159874,-0.336101,0.928158,0.593089,0.618359,0.515632,0.593089,0.618359,0.515632,0.593089,0.618359,0.515632, + 0.416195,0.327285,-0.848332,0.416195,0.327285,-0.848332,0.416195,0.327285,-0.848332,-0.201567,0.964870,0.168510, + -0.201567,0.964870,0.168510,-0.201567,0.964870,0.168510,-0.984542,0.042089,0.170014,-0.984542,0.042089,0.170014, + -0.984542,0.042089,0.170014,-0.993408,0.029003,0.110906,-0.993408,0.029003,0.110906,-0.993408,0.029003,0.110906, + 0.555061,0.294056,0.778100,0.555061,0.294056,0.778100,0.555061,0.294056,0.778100,0.406441,-0.871354,-0.274859, + 0.406441,-0.871354,-0.274859,0.406441,-0.871354,-0.274859,0.188213,-0.946311,-0.262815,0.188213,-0.946311,-0.262815, + 0.188213,-0.946311,-0.262815,0.234631,-0.971773,0.024620,0.234631,-0.971773,0.024620,0.234631,-0.971773,0.024620, + -0.926550,-0.358308,-0.114542,-0.926550,-0.358308,-0.114542,-0.926550,-0.358308,-0.114542,-0.871106,-0.329069,-0.364538, + -0.871106,-0.329069,-0.364538,-0.871106,-0.329069,-0.364538,0.334726,-0.903348,-0.268180,0.334726,-0.903348,-0.268180, + 0.334726,-0.903348,-0.268180,0.415063,0.898981,-0.139844,0.415063,0.898981,-0.139844,0.415063,0.898981,-0.139844, + 0.941079,0.159881,0.298008,0.941079,0.159881,0.298008,0.941079,0.159881,0.298008,-0.459164,0.352869,-0.815262, + -0.459164,0.352869,-0.815262,-0.459164,0.352869,-0.815262,0.566253,0.456181,0.686481,0.566253,0.456181,0.686481, + 0.566253,0.456181,0.686481,0.115017,0.018502,-0.993191,0.115017,0.018502,-0.993191,0.115017,0.018502,-0.993191, + -0.266482,-0.963725,0.014868,-0.266482,-0.963725,0.014868,-0.266482,-0.963725,0.014868,-0.584844,0.802040,-0.121200, + -0.584844,0.802040,-0.121200,-0.584844,0.802040,-0.121200,-0.193412,-0.980566,0.032909,-0.193412,-0.980566,0.032909, + -0.193412,-0.980566,0.032909,-0.950381,0.247028,0.189083,-0.950381,0.247028,0.189083,-0.950381,0.247028,0.189083, + -0.668323,0.665987,0.331368,-0.668323,0.665987,0.331368,-0.668323,0.665987,0.331368,0.789280,0.513492,-0.336694, + 0.789280,0.513492,-0.336694,0.789280,0.513492,-0.336694,0.625592,0.353485,0.695473,0.625592,0.353485,0.695473, + 0.625592,0.353485,0.695473,0.307504,0.895322,-0.322241,0.307504,0.895322,-0.322241,0.307504,0.895322,-0.322241, + -0.708735,-0.251771,-0.659019,-0.708735,-0.251771,-0.659019,-0.708735,-0.251771,-0.659019,0.480320,-0.356433,-0.801404, + 0.480320,-0.356433,-0.801404,0.480320,-0.356433,-0.801404,-0.252278,-0.965816,0.059626,-0.252278,-0.965816,0.059626, + -0.252278,-0.965816,0.059626,-0.264678,0.824013,-0.500947,-0.264678,0.824013,-0.500947,-0.264678,0.824013,-0.500947, + -0.269279,-0.962261,0.039290,-0.269279,-0.962261,0.039290,-0.269279,-0.962261,0.039290,-0.981309,-0.108211,-0.159130, + -0.981309,-0.108211,-0.159130,-0.981309,-0.108211,-0.159130,-0.739023,0.649323,0.179511,-0.739023,0.649323,0.179511, + -0.739023,0.649323,0.179511,0.732963,0.650083,0.200394,0.732963,0.650083,0.200394,0.732963,0.650083,0.200394, + 0.082458,0.453059,0.887659,0.082458,0.453059,0.887659,0.082458,0.453059,0.887659,0.342602,0.931990,-0.118403, + 0.342602,0.931990,-0.118403,0.342602,0.931990,-0.118403,-0.073366,-0.440293,-0.894851,-0.073366,-0.440293,-0.894851, + -0.073366,-0.440293,-0.894851,0.543936,-0.729899,-0.413981,0.543936,-0.729899,-0.413981,0.543936,-0.729899,-0.413981, + 0.333069,-0.942732,0.017922,0.333069,-0.942732,0.017922,0.333069,-0.942732,0.017922,0.333069,-0.942732,0.017922, + -0.865468,0.422933,-0.268500,-0.865468,0.422933,-0.268500,-0.865468,0.422933,-0.268500,0.270139,-0.363668,-0.891499, + 0.270139,-0.363668,-0.891499,0.270139,-0.363668,-0.891499,0.293907,0.905593,-0.305810,0.293907,0.905593,-0.305810, + 0.293907,0.905593,-0.305810,0.844420,0.260237,0.468222,0.844420,0.260237,0.468222,0.844420,0.260237,0.468222, + 0.655079,0.722109,0.222330,0.655079,0.722109,0.222330,0.655079,0.722109,0.222330,0.655079,0.722109,0.222330, + -0.890498,-0.287361,-0.352756,-0.890498,-0.287361,-0.352756,-0.890498,-0.287361,-0.352756,0.055536,0.526841,0.848147, + 0.055536,0.526841,0.848147,0.055536,0.526841,0.848147,0.159885,-0.336116,0.928150,0.159885,-0.336116,0.928150, + 0.159885,-0.336116,0.928150,0.593090,0.618358,0.515633,0.593090,0.618358,0.515633,0.593090,0.618358,0.515633, + 0.416182,0.327297,-0.848334,0.416182,0.327297,-0.848334,0.416182,0.327297,-0.848334,-0.201579,0.964871,0.168490, + -0.201579,0.964871,0.168490,-0.201579,0.964871,0.168490,-0.984538,0.042080,0.170039,-0.984538,0.042080,0.170039, + -0.984538,0.042080,0.170039,-0.993409,0.028987,0.110894,-0.993409,0.028987,0.110894,-0.993409,0.028987,0.110894, + 0.555067,0.294076,0.778087,0.555067,0.294076,0.778087,0.555067,0.294076,0.778087,0.406443,-0.871349,-0.274873, + 0.406443,-0.871349,-0.274873,0.406443,-0.871349,-0.274873,0.188222,-0.946313,-0.262801,0.188222,-0.946313,-0.262801, + 0.188222,-0.946313,-0.262801,0.234636,-0.971770,0.024659,0.234636,-0.971770,0.024659,0.234636,-0.971770,0.024659, + -0.926552,-0.358306,-0.114534,-0.926552,-0.358306,-0.114534,-0.926552,-0.358306,-0.114534,-0.871107,-0.329073,-0.364533, + -0.871107,-0.329073,-0.364533,-0.871107,-0.329073,-0.364533,0.334725,-0.903349,-0.268179,0.334725,-0.903349,-0.268179, + 0.334725,-0.903349,-0.268179,0.415059,0.898983,-0.139840,0.415059,0.898983,-0.139840,0.415059,0.898983,-0.139840, + 0.941080,0.159880,0.298004,0.941080,0.159880,0.298004,0.941080,0.159880,0.298004,-0.459145,0.352855,-0.815279, + -0.459145,0.352855,-0.815279,-0.459145,0.352855,-0.815279,0.566250,0.456180,0.686484,0.566250,0.456180,0.686484, + 0.566250,0.456180,0.686484,0.115014,0.018502,-0.993192,0.115014,0.018502,-0.993192,0.115014,0.018502,-0.993192, + -0.266478,-0.963726,0.014866,-0.266478,-0.963726,0.014866,-0.266478,-0.963726,0.014866,-0.584844,0.802041,-0.121195, + -0.584844,0.802041,-0.121195,-0.584844,0.802041,-0.121195,-0.193410,-0.980566,0.032907,-0.193410,-0.980566,0.032907, + -0.193410,-0.980566,0.032907,-0.950378,0.247042,0.189082,-0.950378,0.247042,0.189082,-0.950378,0.247042,0.189082, + -0.668327,0.665983,0.331369,-0.668327,0.665983,0.331369,-0.668327,0.665983,0.331369,0.789282,0.513487,-0.336696, + 0.789282,0.513487,-0.336696,0.789282,0.513487,-0.336696,0.625592,0.353483,0.695475,0.625592,0.353483,0.695475, + 0.625592,0.353483,0.695475,0.307506,0.895320,-0.322244,0.307506,0.895320,-0.322244,0.307506,0.895320,-0.322244, + -0.708733,-0.251772,-0.659021,-0.708733,-0.251772,-0.659021,-0.708733,-0.251772,-0.659021,0.480315,-0.356429,-0.801408, + 0.480315,-0.356429,-0.801408,0.480315,-0.356429,-0.801408,-0.252280,-0.965815,0.059627,-0.252280,-0.965815,0.059627, + -0.252280,-0.965815,0.059627,-0.264680,0.824021,-0.500933,-0.264680,0.824021,-0.500933,-0.264680,0.824021,-0.500933, + -0.269283,-0.962259,0.039314,-0.269283,-0.962259,0.039314,-0.269283,-0.962259,0.039314,-0.981310,-0.108225,-0.159118, + -0.981310,-0.108225,-0.159118,-0.981310,-0.108225,-0.159118,-0.739026,0.649317,0.179520,-0.739026,0.649317,0.179520, + -0.739026,0.649317,0.179520,0.732951,0.650090,0.200413,0.732951,0.650090,0.200413,0.732951,0.650090,0.200413, + 0.082464,0.453077,0.887649,0.082464,0.453077,0.887649,0.082464,0.453077,0.887649,0.342603,0.931991,-0.118389, + 0.342603,0.931991,-0.118389,0.342603,0.931991,-0.118389,-0.073361,-0.440292,-0.894853,-0.073361,-0.440292,-0.894853, + -0.073361,-0.440292,-0.894853,0.543934,-0.729888,-0.414005,0.543934,-0.729888,-0.414005,0.543934,-0.729888,-0.414005, + -0.862615,-0.287708,-0.416077,-0.862615,-0.287708,-0.416077,-0.862615,-0.287708,-0.416077,-0.862615,-0.287708,-0.416077, + -0.138521,0.975368,-0.171667,-0.138521,0.975368,-0.171667,-0.138521,0.975368,-0.171667,-0.305214,-0.155865,-0.939442, + -0.305214,-0.155865,-0.939442,-0.305214,-0.155865,-0.939442,0.994866,-0.086223,0.052975,0.994866,-0.086223,0.052975, + 0.994866,-0.086223,0.052975,0.230088,-0.948535,0.217579,0.230088,-0.948535,0.217579,0.230088,-0.948535,0.217579, + 0.763249,-0.645927,0.015155,0.763249,-0.645927,0.015155,0.763249,-0.645927,0.015155,0.763249,-0.645927,0.015155, + -0.278896,0.954487,-0.105696,-0.278896,0.954487,-0.105696,-0.278896,0.954487,-0.105696,0.513965,-0.544447,0.662885, + 0.513965,-0.544447,0.662885,0.513965,-0.544447,0.662885,-0.903525,-0.323143,0.281463,-0.903525,-0.323143,0.281463, + -0.903525,-0.323143,0.281463,0.569601,-0.658030,0.492495,0.569601,-0.658030,0.492495,0.569601,-0.658030,0.492495, + -0.186837,-0.882499,0.431610,-0.186837,-0.882499,0.431610,-0.186837,-0.882499,0.431610,0.833117,0.126114,0.538527, + 0.833117,0.126114,0.538527,0.833117,0.126114,0.538527,-0.131710,0.976821,0.168740,-0.131710,0.976821,0.168740, + -0.131710,0.976821,0.168740,-0.910496,-0.374503,-0.175338,-0.910496,-0.374503,-0.175338,-0.910496,-0.374503,-0.175338, + -0.894777,-0.407837,-0.181780,-0.894777,-0.407837,-0.181780,-0.894777,-0.407837,-0.181780,-0.358468,0.929631,0.085360, + -0.358468,0.929631,0.085360,-0.358468,0.929631,0.085360,-0.340279,0.926669,-0.159670,-0.340279,0.926669,-0.159670, + -0.340279,0.926669,-0.159670,-0.684929,-0.646275,-0.336455,-0.684929,-0.646275,-0.336455,-0.684929,-0.646275,-0.336455, + 0.762243,-0.027614,-0.646702,0.762243,-0.027614,-0.646702,0.762243,-0.027614,-0.646702,0.214496,-0.970497,0.110121, + 0.214496,-0.970497,0.110121,0.214496,-0.970497,0.110121,0.846021,0.432891,-0.311213,0.846021,0.432891,-0.311213, + 0.846021,0.432891,-0.311213,0.296498,-0.752858,0.587617,0.296498,-0.752858,0.587617,0.296498,-0.752858,0.587617, + -0.391510,0.574192,-0.719043,-0.391510,0.574192,-0.719043,-0.391510,0.574192,-0.719043,-0.786653,0.612756,0.075547, + -0.786653,0.612756,0.075547,-0.786653,0.612756,0.075547,0.798783,0.523890,0.295779,0.798783,0.523890,0.295779, + 0.798783,0.523890,0.295779,-0.885494,-0.388451,0.254964,-0.885494,-0.388451,0.254964,-0.885494,-0.388451,0.254964, + -0.615361,0.741827,0.266504,-0.615361,0.741827,0.266504,-0.615361,0.741827,0.266504,0.442902,0.334277,0.831924, + 0.442902,0.334277,0.831924,0.442902,0.334277,0.831924,0.734820,-0.642236,-0.218111,0.734820,-0.642236,-0.218111, + 0.734820,-0.642236,-0.218111,0.286159,-0.759658,0.583980,0.286159,-0.759658,0.583980,0.286159,-0.759658,0.583980, + 0.995212,-0.093607,0.028121,0.995212,-0.093607,0.028121,0.995212,-0.093607,0.028121,-0.470579,0.793502,-0.385888, + -0.470579,0.793502,-0.385888,-0.470579,0.793502,-0.385888,-0.489686,0.132970,-0.861700,-0.489686,0.132970,-0.861700, + -0.489686,0.132970,-0.861700,-0.809026,0.418848,0.412364,-0.809026,0.418848,0.412364,-0.809026,0.418848,0.412364, + 0.397910,0.883326,-0.247796,0.397910,0.883326,-0.247796,0.397910,0.883326,-0.247796,0.012909,0.696795,0.717154, + 0.012909,0.696795,0.717154,0.012909,0.696795,0.717154,0.501652,0.258534,0.825533,0.501652,0.258534,0.825533, + 0.501652,0.258534,0.825533,-0.126587,-0.984926,-0.117882,-0.126587,-0.984926,-0.117882,-0.126587,-0.984926,-0.117882, + 0.475313,-0.323056,-0.818359,0.475313,-0.323056,-0.818359,0.475313,-0.323056,-0.818359,-0.134040,0.694904,-0.706500, + -0.134040,0.694904,-0.706500,-0.134040,0.694904,-0.706500,-0.820000,-0.499915,-0.278721,-0.820000,-0.499915,-0.278721, + -0.820000,-0.499915,-0.278721,0.965481,0.059439,0.253603,0.965481,0.059439,0.253603,0.965481,0.059439,0.253603, + 0.965481,0.059439,0.253603,-0.597156,-0.752381,-0.278078,-0.597156,-0.752381,-0.278078,-0.597156,-0.752381,-0.278078, + 0.635778,-0.022413,-0.771546,0.635778,-0.022413,-0.771546,0.635778,-0.022413,-0.771546,-0.662422,0.463250,-0.588725, + -0.662422,0.463250,-0.588725,-0.662422,0.463250,-0.588725,-0.084252,0.958962,0.270727,-0.084252,0.958962,0.270727, + -0.084252,0.958962,0.270727,-0.507953,0.858062,-0.075586,-0.507953,0.858062,-0.075586,-0.507953,0.858062,-0.075586, + -0.507953,0.858062,-0.075586,0.066422,-0.986776,-0.147858,0.066422,-0.986776,-0.147858,0.066422,-0.986776,-0.147858, + -0.671422,0.364901,0.645012,-0.671422,0.364901,0.645012,-0.671422,0.364901,0.645012,0.133254,0.243206,0.960778, + 0.133254,0.243206,0.960778,0.133254,0.243206,0.960778,-0.503829,0.829696,0.240336,-0.503829,0.829696,0.240336, + -0.503829,0.829696,0.240336,0.038312,0.312427,-0.949169,0.038312,0.312427,-0.949169,0.038312,0.312427,-0.949169, + -0.989341,0.107441,-0.098292,-0.989341,0.107441,-0.098292,-0.989341,0.107441,-0.098292,-0.392455,-0.881293,0.263253, + -0.392455,-0.881293,0.263253,-0.392455,-0.881293,0.263253,-0.368912,-0.904981,0.211928,-0.368912,-0.904981,0.211928, + -0.368912,-0.904981,0.211928,-0.282448,0.757490,0.588584,-0.282448,0.757490,0.588584,-0.282448,0.757490,0.588584, + 0.994511,0.089791,-0.053723,0.994511,0.089791,-0.053723,0.994511,0.089791,-0.053723,0.991008,-0.133711,0.004897, + 0.991008,-0.133711,0.004897,0.991008,-0.133711,0.004897,0.959224,-0.039810,0.279829,0.959224,-0.039810,0.279829, + 0.959224,-0.039810,0.279829,0.062103,-0.992721,0.103194,0.062103,-0.992721,0.103194,0.062103,-0.992721,0.103194, + 0.113669,-0.982264,-0.149119,0.113669,-0.982264,-0.149119,0.113669,-0.982264,-0.149119,0.999447,0.014865,-0.029729, + 0.999447,0.014865,-0.029729,0.999447,0.014865,-0.029729,-0.658241,0.608481,-0.443250,-0.658241,0.608481,-0.443250, + -0.658241,0.608481,-0.443250,0.079790,0.988659,0.127229,0.079790,0.988659,0.127229,0.079790,0.988659,0.127229, + -0.271059,-0.497851,-0.823815,-0.271059,-0.497851,-0.823815,-0.271059,-0.497851,-0.823815,-0.405213,0.794102,0.452995, + -0.405213,0.794102,0.452995,-0.405213,0.794102,0.452995,0.260949,-0.084207,-0.961673,0.260949,-0.084207,-0.961673, + 0.260949,-0.084207,-0.961673,0.795131,-0.511182,0.326282,0.795131,-0.511182,0.326282,0.795131,-0.511182,0.326282, + -0.891356,-0.355382,-0.281404,-0.891356,-0.355382,-0.281404,-0.891356,-0.355382,-0.281404,0.829378,-0.443426,0.339862, + 0.829378,-0.443426,0.339862,0.829378,-0.443426,0.339862,-0.574107,-0.789357,0.217523,-0.574107,-0.789357,0.217523, + -0.574107,-0.789357,0.217523,-0.903146,-0.381132,0.197652,-0.903146,-0.381132,0.197652,-0.903146,-0.381132,0.197652, + -0.138257,0.816194,-0.560992,-0.138257,0.816194,-0.560992,-0.138257,0.816194,-0.560992,-0.294426,0.823680,0.484629, + -0.294426,0.823680,0.484629,-0.294426,0.823680,0.484629,-0.644697,0.469975,-0.602901,-0.644697,0.469975,-0.602901, + -0.644697,0.469975,-0.602901,0.165947,-0.866888,-0.470071,0.165947,-0.866888,-0.470071,0.165947,-0.866888,-0.470071, + 0.673971,0.195292,-0.712477,0.673971,0.195292,-0.712477,0.673971,0.195292,-0.712477,0.790671,-0.489483,0.367758, + 0.790671,-0.489483,0.367758,0.790671,-0.489483,0.367758,-0.717554,-0.123580,-0.685452,-0.717554,-0.123580,-0.685452, + -0.717554,-0.123580,-0.685452,0.786961,-0.508558,0.349371,0.786961,-0.508558,0.349371,0.786961,-0.508558,0.349371, + -0.173658,-0.984789,-0.005790,-0.173658,-0.984789,-0.005790,-0.173658,-0.984789,-0.005790,-0.873404,-0.482430,0.066535, + -0.873404,-0.482430,0.066535,-0.873404,-0.482430,0.066535,-0.411894,0.907313,-0.084419,-0.411894,0.907313,-0.084419, + -0.411894,0.907313,-0.084419,-0.604838,0.377931,0.700956,-0.604838,0.377931,0.700956,-0.604838,0.377931,0.700956, + -0.716710,0.553566,-0.424136,-0.716710,0.553566,-0.424136,-0.716710,0.553566,-0.424136,0.597769,-0.367309,-0.712570, + 0.597769,-0.367309,-0.712570,0.597769,-0.367309,-0.712570,0.942323,0.230158,-0.243013,0.942323,0.230158,-0.243013, + 0.942323,0.230158,-0.243013,-0.212683,-0.968700,-0.128011,-0.212683,-0.968700,-0.128011,-0.212683,-0.968700,-0.128011, + -0.212683,-0.968700,-0.128011,-0.512656,0.846032,-0.146332,-0.512656,0.846032,-0.146332,-0.512656,0.846032,-0.146332, + 0.041561,-0.314088,-0.948484,0.041561,-0.314088,-0.948484,0.041561,-0.314088,-0.948484,0.727375,0.653782,-0.208552, + 0.727375,0.653782,-0.208552,0.727375,0.653782,-0.208552,0.853415,-0.290318,0.432895,0.853415,-0.290318,0.432895, + 0.853415,-0.290318,0.432895,0.936184,0.233089,0.263113,0.936184,0.233089,0.263113,0.936184,0.233089,0.263113, + 0.936184,0.233089,0.263113,-0.907265,0.274372,-0.318731,-0.907265,0.274372,-0.318731,-0.907265,0.274372,-0.318731, + 0.321409,0.288175,0.902026,0.321409,0.288175,0.902026,0.321409,0.288175,0.902026,-0.044067,-0.503601,0.862812, + -0.044067,-0.503601,0.862812,-0.044067,-0.503601,0.862812,0.827870,0.134606,0.544530,0.827870,0.134606,0.544530, + 0.827870,0.134606,0.544530,0.529072,0.184430,-0.828293,0.529072,0.184430,-0.828293,0.529072,0.184430,-0.828293, + 0.335514,0.891178,0.305338,0.335514,0.891178,0.305338,0.335514,0.891178,0.305338,-0.815781,0.522715,0.247528, + -0.815781,0.522715,0.247528,-0.815781,0.522715,0.247528,-0.829996,0.525120,0.188032,-0.829996,0.525120,0.188032, + -0.829996,0.525120,0.188032,0.624027,-0.157220,0.765423,0.624027,-0.157220,0.765423,0.624027,-0.157220,0.765423, + -0.111703,-0.903430,-0.413929,-0.111703,-0.903430,-0.413929,-0.111703,-0.903430,-0.413929,-0.336796,-0.854621,-0.395212, + -0.336796,-0.854621,-0.395212,-0.336796,-0.854621,-0.395212,-0.311704,-0.942859,-0.117722,-0.311704,-0.942859,-0.117722, + -0.311704,-0.942859,-0.117722,-0.976077,0.198138,-0.089525,-0.976077,0.198138,-0.089525,-0.976077,0.198138,-0.089525, + -0.912672,0.230959,-0.337177,-0.912672,0.230959,-0.337177,-0.912672,0.230959,-0.337177,-0.189559,-0.893980,-0.406038, + -0.189559,-0.893980,-0.406038,-0.189559,-0.893980,-0.406038,0.826358,0.560515,-0.054362,0.826358,0.560515,-0.054362, + 0.826358,0.560515,-0.054362,0.883419,-0.399761,0.244462,0.883419,-0.399761,0.244462,0.883419,-0.399761,0.244462, + -0.202049,0.656746,-0.726540,-0.202049,0.656746,-0.726540,-0.202049,0.656746,-0.726540,0.719141,-0.013151,0.694740, + 0.719141,-0.013151,0.694740,0.719141,-0.013151,0.694740,0.111013,0.103095,-0.988457,0.111013,0.103095,-0.988457, + 0.111013,0.103095,-0.988457,-0.733615,-0.673755,-0.088681,-0.733615,-0.673755,-0.088681,-0.733615,-0.673755,-0.088681, + -0.075088,0.996817,0.026793,-0.075088,0.996817,0.026793,-0.075088,0.996817,0.026793,-0.680392,-0.728634,-0.078485, + -0.680392,-0.728634,-0.078485,-0.680392,-0.728634,-0.078485,-0.678984,0.674434,0.290032,-0.678984,0.674434,0.290032, + -0.678984,0.674434,0.290032,-0.219236,0.858712,0.463196,-0.219236,0.858712,0.463196,-0.219236,0.858712,0.463196, + 0.942536,0.070787,-0.326519,0.942536,0.070787,-0.326519,0.942536,0.070787,-0.326519,0.715558,-0.131725,0.686021, + 0.715558,-0.131725,0.686021,0.715558,-0.131725,0.686021,0.733596,0.640505,-0.227133,0.733596,0.640505,-0.227133, + 0.733596,0.640505,-0.227133,-0.732896,0.255115,-0.630698,-0.732896,0.255115,-0.630698,-0.732896,0.255115,-0.630698, + 0.223807,-0.430800,-0.874255,0.223807,-0.430800,-0.874255,0.223807,-0.430800,-0.874255,-0.722790,-0.689553,-0.045735, + -0.722790,-0.689553,-0.045735,-0.722790,-0.689553,-0.045735,0.210079,0.904972,-0.369989,0.210079,0.904972,-0.369989, + 0.210079,0.904972,-0.369989,-0.735310,-0.674690,-0.064130,-0.735310,-0.674690,-0.064130,-0.735310,-0.674690,-0.064130, + -0.890947,0.443521,-0.097485,-0.890947,0.443521,-0.097485,-0.890947,0.443521,-0.097485,-0.287601,0.904048,0.316200, + -0.287601,0.904048,0.316200,-0.287601,0.904048,0.316200,0.964612,0.135248,0.226346,0.964612,0.135248,0.226346, + 0.964612,0.135248,0.226346,0.305349,0.206240,0.929638,0.305349,0.206240,0.929638,0.305349,0.206240,0.929638, + 0.782021,0.622809,-0.023488,0.782021,0.622809,-0.023488,0.782021,0.622809,-0.023488,-0.290867,-0.199176,-0.935802, + -0.290867,-0.199176,-0.935802,-0.290867,-0.199176,-0.935802,0.080108,-0.835430,-0.543728,0.080108,-0.835430,-0.543728, + 0.080108,-0.835430,-0.543728,0.051630,0.994891,-0.086755,0.051630,0.994891,-0.086755,0.051630,0.994891,-0.086755, + 0.051630,0.994891,-0.086755,0.989286,-0.137135,0.050067,0.989286,-0.137135,0.050067,0.989286,-0.137135,0.050067, + 0.177438,0.627252,-0.758334,0.177438,0.627252,-0.758334,0.177438,0.627252,-0.758334,-0.336691,-0.873089,-0.352640, + -0.336691,-0.873089,-0.352640,-0.336691,-0.873089,-0.352640,-0.998686,0.032185,-0.039879,-0.998686,0.032185,-0.039879, + -0.998686,0.032185,-0.039879,-0.792556,-0.473676,-0.384039,-0.792556,-0.473676,-0.384039,-0.792556,-0.473676,-0.384039, + -0.792556,-0.473676,-0.384039,0.986521,-0.027137,0.161369,0.986521,-0.027137,0.161369,0.986521,-0.027137,0.161369, + -0.808561,-0.495813,0.316859,-0.808561,-0.495813,0.316859,-0.808561,-0.495813,0.316859,-0.156029,0.815799,0.556891, + -0.156029,0.815799,0.556891,-0.156029,0.815799,0.556891,-0.883003,-0.453014,0.122814,-0.883003,-0.453014,0.122814, + -0.883003,-0.453014,0.122814,-0.892192,0.311512,0.327038,-0.892192,0.311512,0.327038,-0.892192,0.311512,0.327038, + -0.227648,-0.956159,0.184219,-0.227648,-0.956159,0.184219,-0.227648,-0.956159,0.184219,0.898906,-0.254418,0.356707, + 0.898906,-0.254418,0.356707,0.898906,-0.254418,0.356707,-0.081394,0.987234,0.136910,-0.081394,0.987234,0.136910, + -0.081394,0.987234,0.136910,-0.114618,0.986168,0.119732,-0.114618,0.986168,0.119732,-0.114618,0.986168,0.119732, + 0.932148,-0.010541,0.361925,0.932148,-0.010541,0.361925,0.932148,-0.010541,0.361925,0.989788,0.053993,0.131924, + 0.989788,0.053993,0.131924,0.989788,0.053993,0.131924,-0.347267,0.927326,-0.139540,-0.347267,0.927326,-0.139540, + -0.347267,0.927326,-0.139540,-0.040234,-0.457814,-0.888137,-0.040234,-0.457814,-0.888137,-0.040234,-0.457814,-0.888137, + -0.986951,0.088099,-0.134781,-0.986951,0.088099,-0.134781,-0.986951,0.088099,-0.134781,0.280306,-0.790597,-0.544412, + 0.280306,-0.790597,-0.544412,0.280306,-0.790597,-0.544412,-0.930177,-0.210607,0.300693,-0.930177,-0.210607,0.300693, + -0.930177,-0.210607,0.300693,0.821363,0.395656,-0.410876,0.821363,0.395656,-0.410876,0.821363,0.395656,-0.410876, + 0.743309,0.475698,0.470322,0.743309,0.475698,0.470322,0.743309,0.475698,0.470322,0.216120,-0.975579,0.039210, + 0.216120,-0.975579,0.039210,0.216120,-0.975579,0.039210,-0.214346,0.829562,0.515638,-0.214346,0.829562,0.515638, + -0.214346,0.829562,0.515638,0.771514,0.219587,0.597116,0.771514,0.219587,0.597116,0.771514,0.219587,0.597116, + -0.016031,-0.772402,0.634932,-0.016031,-0.772402,0.634932,-0.016031,-0.772402,0.634932,-0.720474,-0.373720,-0.584167, + -0.720474,-0.373720,-0.584167,-0.720474,-0.373720,-0.584167,-0.933038,-0.198037,0.300368,-0.933038,-0.198037,0.300368, + -0.933038,-0.198037,0.300368,-0.337087,-0.862920,-0.376487,-0.337087,-0.862920,-0.376487,-0.337087,-0.862920,-0.376487, + 0.957107,0.286458,-0.043461,0.957107,0.286458,-0.043461,0.957107,0.286458,-0.043461,0.471303,0.672256,-0.570916, + 0.471303,0.672256,-0.570916,0.471303,0.672256,-0.570916,0.478689,0.448840,0.754586,0.478689,0.448840,0.754586, + 0.478689,0.448840,0.754586,0.792933,-0.559095,-0.242217,0.792933,-0.559095,-0.242217,0.792933,-0.559095,-0.242217, + 0.457297,-0.470550,0.754627,0.457297,-0.470550,0.754627,0.457297,-0.470550,0.754627,-0.099326,-0.797975,0.594449, + -0.099326,-0.797975,0.594449,-0.099326,-0.797975,0.594449,-0.857029,0.469957,-0.211285,-0.857029,0.469957,-0.211285, + -0.857029,0.469957,-0.211285,-0.200644,-0.051352,-0.978317,-0.200644,-0.051352,-0.978317,-0.200644,-0.051352,-0.978317, + 0.868000,0.123743,-0.480899,0.868000,0.123743,-0.480899,0.868000,0.123743,-0.480899,-0.193096,0.981110,-0.011730, + -0.193096,0.981110,-0.011730,-0.193096,0.981110,-0.011730,-0.640545,0.711463,-0.289003,-0.640545,0.711463,-0.289003, + -0.640545,0.711463,-0.289003,-0.640545,0.711463,-0.289003,0.792736,0.607583,0.049130,0.792736,0.607583,0.049130, + 0.792736,0.607583,0.049130,-0.213834,0.434577,-0.874882,-0.213834,0.434577,-0.874882,-0.213834,0.434577,-0.874882, + 0.407703,-0.899376,-0.157800,0.407703,-0.899376,-0.157800,0.407703,-0.899376,-0.157800,-0.728095,-0.685252,-0.017515, + -0.728095,-0.685252,-0.017515,-0.728095,-0.685252,-0.017515,-0.189069,-0.947717,-0.257072,-0.189069,-0.947717,-0.257072, + -0.189069,-0.947717,-0.257072,-0.189069,-0.947717,-0.257072,0.700948,0.700180,0.135722,0.700948,0.700180,0.135722, + 0.700948,0.700180,0.135722,-0.271716,-0.859062,0.433801,-0.271716,-0.859062,0.433801,-0.271716,-0.859062,0.433801, + -0.743979,0.547402,0.383205,-0.743979,0.547402,0.383205,-0.743979,0.547402,0.383205,-0.330342,-0.913550,0.237278, + -0.330342,-0.913550,0.237278,-0.330342,-0.913550,0.237278,-0.890790,-0.356587,0.281671,-0.890790,-0.356587,0.281671, + -0.890790,-0.356587,0.281671,0.476453,-0.792145,0.381443,0.476453,-0.792145,0.381443,0.476453,-0.792145,0.381443, + 0.771631,0.513304,0.375638,0.771631,0.513304,0.375638,0.771631,0.513304,0.375638,-0.757551,0.649551,-0.064815, + -0.757551,0.649551,-0.064815,-0.757551,0.649551,-0.064815,-0.778316,0.622693,-0.080485,-0.778316,0.622693,-0.080485, + -0.778316,0.622693,-0.080485,0.626009,0.706481,0.330147,0.626009,0.706481,0.330147,0.626009,0.706481,0.330147, + 0.650823,0.753841,0.090301,0.650823,0.753841,0.090301,0.650823,0.753841,0.090301,-0.871201,0.375965,-0.315688, + -0.871201,0.375965,-0.315688,-0.871201,0.375965,-0.315688,0.397648,-0.491533,-0.774772,0.397648,-0.491533,-0.774772, + 0.397648,-0.491533,-0.774772,-0.746697,-0.653860,-0.122108,-0.746697,-0.653860,-0.122108,-0.746697,-0.653860,-0.122108, + 0.813460,-0.440652,-0.379617,0.813460,-0.440652,-0.379617,0.813460,-0.440652,-0.379617,-0.553503,-0.749428,0.363306, + -0.553503,-0.749428,0.363306,-0.553503,-0.749428,0.363306,0.361695,0.783181,-0.505771,0.361695,0.783181,-0.505771, + 0.361695,0.783181,-0.505771,0.141966,0.928735,0.342487,0.141966,0.928735,0.342487,0.141966,0.928735,0.342487, + 0.823623,-0.517954,0.231017,0.823623,-0.517954,0.231017,0.823623,-0.517954,0.231017,-0.789906,0.509226,0.341668, + -0.789906,0.509226,0.341668,-0.789906,0.509226,0.341668,0.323487,0.791887,0.517948,0.323487,0.791887,0.517948, + 0.323487,0.791887,0.517948,0.444324,-0.442159,0.779148,0.444324,-0.442159,0.779148,0.444324,-0.442159,0.779148, + -0.182177,-0.860750,-0.475312,-0.182177,-0.860750,-0.475312,-0.182177,-0.860750,-0.475312,-0.564194,-0.742777,0.360510, + -0.564194,-0.742777,0.360510,-0.564194,-0.742777,0.360510,0.403334,-0.896527,-0.183199,0.403334,-0.896527,-0.183199, + 0.403334,-0.896527,-0.183199,0.488447,0.863187,-0.127779,0.488447,0.863187,-0.127779,0.488447,0.863187,-0.127779, + -0.058954,0.702843,-0.708898,-0.058954,0.702843,-0.708898,-0.058954,0.702843,-0.708898,-0.062898,0.771114,0.633583, + -0.062898,0.771114,0.633583,-0.062898,0.771114,0.633583,0.980883,0.129286,-0.145441,0.980883,0.129286,-0.145441, + 0.980883,0.129286,-0.145441,0.557669,0.118945,0.821497,0.557669,0.118945,0.821497,0.557669,0.118945,0.821497, + 0.407727,-0.525007,0.747078,0.407727,-0.525007,0.747078,0.407727,-0.525007,0.747078,-0.908848,-0.310612,-0.278417, + -0.908848,-0.310612,-0.278417,-0.908848,-0.310612,-0.278417,0.013535,-0.337260,-0.941314,0.013535,-0.337260,-0.941314, + 0.013535,-0.337260,-0.941314,0.591577,0.615957,-0.520224,0.591577,0.615957,-0.520224,0.591577,0.615957,-0.520224, + -0.814455,0.542465,-0.205897,-0.814455,0.542465,-0.205897,-0.814455,0.542465,-0.205897,0.978083,-0.193606,0.076612, + 0.978083,-0.193606,0.076612,0.978083,-0.193606,0.076612,0.978083,-0.193606,0.076612,-0.246357,-0.911499,-0.329359, + -0.246357,-0.911499,-0.329359,-0.246357,-0.911499,-0.329359,0.760095,-0.027395,-0.649234,0.760095,-0.027395,-0.649234, + 0.760095,-0.027395,-0.649234,-0.731702,0.580359,-0.357484,-0.731702,0.580359,-0.357484,-0.731702,0.580359,-0.357484, + 0.143340,0.935265,0.323624,0.143340,0.935265,0.323624,0.143340,0.935265,0.323624,-0.290566,0.944323,-0.154356, + -0.290566,0.944323,-0.154356,-0.290566,0.944323,-0.154356,-0.290566,0.944323,-0.154356,-0.164549,-0.964433,-0.206865, + -0.164549,-0.964433,-0.206865,-0.164549,-0.964433,-0.206865,-0.468150,0.734666,0.491020,-0.468150,0.734666,0.491020, + -0.468150,0.734666,0.491020,0.681124,-0.179108,0.709923,0.681124,-0.179108,0.709923,0.681124,-0.179108,0.709923, + -0.375292,0.859587,0.346793,-0.375292,0.859587,0.346793,-0.375292,0.859587,0.346793,0.320364,0.667924,0.671747, + 0.320364,0.667924,0.671747,0.320364,0.667924,0.671747,-0.944316,0.318614,0.082178,-0.944316,0.318614,0.082178, + -0.944316,0.318614,0.082178,-0.419649,-0.906961,-0.036282,-0.419649,-0.906961,-0.036282,-0.419649,-0.906961,-0.036282, + 0.934053,-0.141560,0.327881,0.934053,-0.141560,0.327881,0.934053,-0.141560,0.327881,0.940322,-0.104918,0.323709, + 0.940322,-0.104918,0.323709,0.940322,-0.104918,0.323709,-0.188005,-0.982168,-0.000497,-0.188005,-0.982168,-0.000497, + -0.188005,-0.982168,-0.000497,-0.079680,-0.972051,-0.220833,-0.079680,-0.972051,-0.220833,-0.079680,-0.972051,-0.220833, + 0.965721,0.206020,0.157920,0.965721,0.206020,0.157920,0.965721,0.206020,0.157920,-0.239448,0.406821,-0.881568, + -0.239448,0.406821,-0.881568,-0.239448,0.406821,-0.881568,0.217670,0.945511,0.242133,0.217670,0.945511,0.242133, + 0.217670,0.945511,0.242133,-0.672357,0.055168,-0.738168,-0.672357,0.055168,-0.738168,-0.672357,0.055168,-0.738168, + -0.175628,0.803072,0.569412,-0.175628,0.803072,0.569412,-0.175628,0.803072,0.569412,0.390964,-0.698412,-0.599472, + 0.390964,-0.698412,-0.599472,0.390964,-0.698412,-0.599472,0.278193,-0.927036,0.251423,0.278193,-0.927036,0.251423, + 0.278193,-0.927036,0.251423,-0.976333,-0.043047,-0.211947,-0.976333,-0.043047,-0.211947,-0.976333,-0.043047,-0.211947, + 0.709770,-0.113884,0.695167,0.709770,-0.113884,0.695167,0.709770,-0.113884,0.695167,-0.001391,-0.949788,0.312892, + -0.001391,-0.949788,0.312892,-0.001391,-0.949788,0.312892,-0.889615,-0.056990,0.453142,-0.889615,-0.056990,0.453142, + -0.889615,-0.056990,0.453142,-0.156121,0.925090,-0.346171,-0.156121,0.925090,-0.346171,-0.156121,0.925090,-0.346171, + -0.163082,0.803639,0.572336,-0.163082,0.803639,0.572336,-0.163082,0.803639,0.572336,-0.716441,0.586720,-0.377455, + -0.716441,0.586720,-0.377455,-0.716441,0.586720,-0.377455,0.188423,-0.925176,-0.329462,0.188423,-0.925176,-0.329462, + 0.188423,-0.925176,-0.329462,0.731136,-0.369371,-0.573590,0.731136,-0.369371,-0.573590,0.731136,-0.369371,-0.573590, + 0.215517,-0.769109,0.601684,0.215517,-0.769109,0.601684,0.215517,-0.769109,0.601684,-0.569068,-0.560063,-0.602072, + -0.569068,-0.560063,-0.602072,-0.569068,-0.560063,-0.602072,-0.673018,-0.588538,0.447962,-0.673018,-0.588538,0.447962, + -0.673018,-0.588538,0.447962,-0.896672,0.038077,0.441054,-0.896672,0.038077,0.441054,-0.896672,0.038077,0.441054, + 0.591426,0.782979,0.192767,0.591426,0.782979,0.192767,0.591426,0.782979,0.192767,0.191224,0.514196,-0.836084, + 0.191224,0.514196,-0.836084,0.191224,0.514196,-0.836084,0.138465,-0.671394,-0.728050,0.138465,-0.671394,-0.728050, + 0.138465,-0.671394,-0.728050,0.973126,0.011732,0.229976,0.973126,0.011732,0.229976,0.973126,0.011732,0.229976, + 0.978083,-0.193606,0.076612,0.978083,-0.193606,0.076612,0.978083,-0.193606,0.076612,0.978083,-0.193606,0.076612, + -0.246357,-0.911499,-0.329359,-0.246357,-0.911499,-0.329359,-0.246357,-0.911499,-0.329359,0.760095,-0.027395,-0.649234, + 0.760095,-0.027395,-0.649234,0.760095,-0.027395,-0.649234,-0.731703,0.580358,-0.357484,-0.731703,0.580358,-0.357484, + -0.731703,0.580358,-0.357484,0.143341,0.935264,0.323627,0.143341,0.935264,0.323627,0.143341,0.935264,0.323627, + -0.290565,0.944323,-0.154356,-0.290565,0.944323,-0.154356,-0.290565,0.944323,-0.154356,-0.290565,0.944323,-0.154356, + -0.164549,-0.964433,-0.206866,-0.164549,-0.964433,-0.206866,-0.164549,-0.964433,-0.206866,-0.468150,0.734668,0.491018, + -0.468150,0.734668,0.491018,-0.468150,0.734668,0.491018,0.681123,-0.179107,0.709924,0.681123,-0.179107,0.709924, + 0.681123,-0.179107,0.709924,-0.375293,0.859587,0.346792,-0.375293,0.859587,0.346792,-0.375293,0.859587,0.346792, + 0.320365,0.667920,0.671750,0.320365,0.667920,0.671750,0.320365,0.667920,0.671750,-0.944315,0.318616,0.082178, + -0.944315,0.318616,0.082178,-0.944315,0.318616,0.082178,-0.419652,-0.906960,-0.036281,-0.419652,-0.906960,-0.036281, + -0.419652,-0.906960,-0.036281,0.934054,-0.141561,0.327876,0.934054,-0.141561,0.327876,0.934054,-0.141561,0.327876, + 0.940323,-0.104896,0.323712,0.940323,-0.104896,0.323712,0.940323,-0.104896,0.323712,-0.188001,-0.982169,-0.000494, + -0.188001,-0.982169,-0.000494,-0.188001,-0.982169,-0.000494,-0.079679,-0.972052,-0.220830,-0.079679,-0.972052,-0.220830, + -0.079679,-0.972052,-0.220830,0.965721,0.206020,0.157920,0.965721,0.206020,0.157920,0.965721,0.206020,0.157920, + -0.239448,0.406820,-0.881568,-0.239448,0.406820,-0.881568,-0.239448,0.406820,-0.881568,0.217669,0.945512,0.242132, + 0.217669,0.945512,0.242132,0.217669,0.945512,0.242132,-0.672357,0.055170,-0.738168,-0.672357,0.055170,-0.738168, + -0.672357,0.055170,-0.738168,-0.175628,0.803072,0.569412,-0.175628,0.803072,0.569412,-0.175628,0.803072,0.569412, + 0.390963,-0.698414,-0.599471,0.390963,-0.698414,-0.599471,0.390963,-0.698414,-0.599471,0.278192,-0.927036,0.251423, + 0.278192,-0.927036,0.251423,0.278192,-0.927036,0.251423,-0.976333,-0.043047,-0.211947,-0.976333,-0.043047,-0.211947, + -0.976333,-0.043047,-0.211947,0.709770,-0.113883,0.695167,0.709770,-0.113883,0.695167,0.709770,-0.113883,0.695167, + -0.001391,-0.949787,0.312894,-0.001391,-0.949787,0.312894,-0.001391,-0.949787,0.312894,-0.889615,-0.056993,0.453141, + -0.889615,-0.056993,0.453141,-0.889615,-0.056993,0.453141,-0.156121,0.925091,-0.346168,-0.156121,0.925091,-0.346168, + -0.156121,0.925091,-0.346168,-0.163082,0.803639,0.572336,-0.163082,0.803639,0.572336,-0.163082,0.803639,0.572336, + -0.716442,0.586717,-0.377456,-0.716442,0.586717,-0.377456,-0.716442,0.586717,-0.377456,0.188424,-0.925176,-0.329464, + 0.188424,-0.925176,-0.329464,0.188424,-0.925176,-0.329464,0.731138,-0.369367,-0.573590,0.731138,-0.369367,-0.573590, + 0.731138,-0.369367,-0.573590,0.215517,-0.769110,0.601683,0.215517,-0.769110,0.601683,0.215517,-0.769110,0.601683, + -0.569070,-0.560062,-0.602071,-0.569070,-0.560062,-0.602071,-0.569070,-0.560062,-0.602071,-0.673019,-0.588537,0.447962, + -0.673019,-0.588537,0.447962,-0.673019,-0.588537,0.447962,-0.896672,0.038077,0.441056,-0.896672,0.038077,0.441056, + -0.896672,0.038077,0.441056,0.591426,0.782979,0.192767,0.591426,0.782979,0.192767,0.591426,0.782979,0.192767, + 0.191224,0.514196,-0.836084,0.191224,0.514196,-0.836084,0.191224,0.514196,-0.836084,0.138465,-0.671398,-0.728047, + 0.138465,-0.671398,-0.728047,0.138465,-0.671398,-0.728047,0.973126,0.011728,0.229976,0.973126,0.011728,0.229976, + 0.973126,0.011728,0.229976,0.978082,-0.193614,0.076612,0.978082,-0.193614,0.076612,0.978082,-0.193614,0.076612, + 0.978082,-0.193614,0.076612,-0.246353,-0.911502,-0.329355,-0.246353,-0.911502,-0.329355,-0.246353,-0.911502,-0.329355, + 0.760095,-0.027393,-0.649235,0.760095,-0.027393,-0.649235,0.760095,-0.027393,-0.649235,-0.731703,0.580359,-0.357484, + -0.731703,0.580359,-0.357484,-0.731703,0.580359,-0.357484,0.143340,0.935264,0.323627,0.143340,0.935264,0.323627, + 0.143340,0.935264,0.323627,-0.290568,0.944322,-0.154356,-0.290568,0.944322,-0.154356,-0.290568,0.944322,-0.154356, + -0.290568,0.944322,-0.154356,-0.164550,-0.964432,-0.206866,-0.164550,-0.964432,-0.206866,-0.164550,-0.964432,-0.206866, + -0.468150,0.734667,0.491019,-0.468150,0.734667,0.491019,-0.468150,0.734667,0.491019,0.681124,-0.179108,0.709923, + 0.681124,-0.179108,0.709923,0.681124,-0.179108,0.709923,-0.375296,0.859586,0.346793,-0.375296,0.859586,0.346793, + -0.375296,0.859586,0.346793,0.320365,0.667923,0.671747,0.320365,0.667923,0.671747,0.320365,0.667923,0.671747, + -0.944313,0.318621,0.082177,-0.944313,0.318621,0.082177,-0.944313,0.318621,0.082177,-0.419657,-0.906957,-0.036282, + -0.419657,-0.906957,-0.036282,-0.419657,-0.906957,-0.036282,0.934053,-0.141570,0.327875,0.934053,-0.141570,0.327875, + 0.934053,-0.141570,0.327875,0.940322,-0.104917,0.323708,0.940322,-0.104917,0.323708,0.940322,-0.104917,0.323708, + -0.188005,-0.982168,-0.000494,-0.188005,-0.982168,-0.000494,-0.188005,-0.982168,-0.000494,-0.079678,-0.972052,-0.220830, + -0.079678,-0.972052,-0.220830,-0.079678,-0.972052,-0.220830,0.965721,0.206019,0.157921,0.965721,0.206019,0.157921, + 0.965721,0.206019,0.157921,-0.239446,0.406822,-0.881567,-0.239446,0.406822,-0.881567,-0.239446,0.406822,-0.881567, + 0.217670,0.945512,0.242131,0.217670,0.945512,0.242131,0.217670,0.945512,0.242131,-0.672357,0.055166,-0.738169, + -0.672357,0.055166,-0.738169,-0.672357,0.055166,-0.738169,-0.175628,0.803073,0.569411,-0.175628,0.803073,0.569411, + -0.175628,0.803073,0.569411,0.390964,-0.698414,-0.599470,0.390964,-0.698414,-0.599470,0.390964,-0.698414,-0.599470, + 0.278193,-0.927036,0.251423,0.278193,-0.927036,0.251423,0.278193,-0.927036,0.251423,-0.976333,-0.043041,-0.211947, + -0.976333,-0.043041,-0.211947,-0.976333,-0.043041,-0.211947,0.709770,-0.113887,0.695166,0.709770,-0.113887,0.695166, + 0.709770,-0.113887,0.695166,-0.001392,-0.949788,0.312891,-0.001392,-0.949788,0.312891,-0.001392,-0.949788,0.312891, + -0.889615,-0.056986,0.453143,-0.889615,-0.056986,0.453143,-0.889615,-0.056986,0.453143,-0.156120,0.925091,-0.346168, + -0.156120,0.925091,-0.346168,-0.156120,0.925091,-0.346168,-0.163082,0.803639,0.572336,-0.163082,0.803639,0.572336, + -0.163082,0.803639,0.572336,-0.716442,0.586719,-0.377455,-0.716442,0.586719,-0.377455,-0.716442,0.586719,-0.377455, + 0.188424,-0.925176,-0.329464,0.188424,-0.925176,-0.329464,0.188424,-0.925176,-0.329464,0.731136,-0.369367,-0.573592, + 0.731136,-0.369367,-0.573592,0.731136,-0.369367,-0.573592,0.215518,-0.769109,0.601684,0.215518,-0.769109,0.601684, + 0.215518,-0.769109,0.601684,-0.569069,-0.560064,-0.602070,-0.569069,-0.560064,-0.602070,-0.569069,-0.560064,-0.602070, + -0.673022,-0.588533,0.447963,-0.673022,-0.588533,0.447963,-0.673022,-0.588533,0.447963,-0.896673,0.038065,0.441054, + -0.896673,0.038065,0.441054,-0.896673,0.038065,0.441054,0.591426,0.782979,0.192771,0.591426,0.782979,0.192771, + 0.591426,0.782979,0.192771,0.191222,0.514195,-0.836085,0.191222,0.514195,-0.836085,0.191222,0.514195,-0.836085, + 0.138463,-0.671396,-0.728049,0.138463,-0.671396,-0.728049,0.138463,-0.671396,-0.728049,0.973125,0.011727,0.229977, + 0.973125,0.011727,0.229977,0.973125,0.011727,0.229977,-0.640547,0.711460,-0.289004,-0.640547,0.711460,-0.289004, + -0.640547,0.711460,-0.289004,-0.640547,0.711460,-0.289004,0.792734,0.607585,0.049130,0.792734,0.607585,0.049130, + 0.792734,0.607585,0.049130,-0.213834,0.434577,-0.874882,-0.213834,0.434577,-0.874882,-0.213834,0.434577,-0.874882, + 0.407702,-0.899376,-0.157800,0.407702,-0.899376,-0.157800,0.407702,-0.899376,-0.157800,-0.728096,-0.685251,-0.017515, + -0.728096,-0.685251,-0.017515,-0.728096,-0.685251,-0.017515,-0.189070,-0.947716,-0.257075,-0.189070,-0.947716,-0.257075, + -0.189070,-0.947716,-0.257075,-0.189070,-0.947716,-0.257075,0.700948,0.700179,0.135723,0.700948,0.700179,0.135723, + 0.700948,0.700179,0.135723,-0.271717,-0.859060,0.433804,-0.271717,-0.859060,0.433804,-0.271717,-0.859060,0.433804, + -0.743979,0.547403,0.383204,-0.743979,0.547403,0.383204,-0.743979,0.547403,0.383204,-0.330342,-0.913550,0.237279, + -0.330342,-0.913550,0.237279,-0.330342,-0.913550,0.237279,-0.890788,-0.356593,0.281670,-0.890788,-0.356593,0.281670, + -0.890788,-0.356593,0.281670,0.476453,-0.792145,0.381444,0.476453,-0.792145,0.381444,0.476453,-0.792145,0.381444, + 0.771635,0.513294,0.375644,0.771635,0.513294,0.375644,0.771635,0.513294,0.375644,-0.757546,0.649556,-0.064814, + -0.757546,0.649556,-0.064814,-0.757546,0.649556,-0.064814,-0.778333,0.622672,-0.080484,-0.778333,0.622672,-0.080484, + -0.778333,0.622672,-0.080484,0.626005,0.706487,0.330142,0.626005,0.706487,0.330142,0.626005,0.706487,0.330142, + 0.650823,0.753841,0.090298,0.650823,0.753841,0.090298,0.650823,0.753841,0.090298,-0.871201,0.375965,-0.315688, + -0.871201,0.375965,-0.315688,-0.871201,0.375965,-0.315688,0.397648,-0.491532,-0.774773,0.397648,-0.491532,-0.774773, + 0.397648,-0.491532,-0.774773,-0.746697,-0.653861,-0.122108,-0.746697,-0.653861,-0.122108,-0.746697,-0.653861,-0.122108, + 0.813460,-0.440652,-0.379617,0.813460,-0.440652,-0.379617,0.813460,-0.440652,-0.379617,-0.553504,-0.749428,0.363307, + -0.553504,-0.749428,0.363307,-0.553504,-0.749428,0.363307,0.361696,0.783181,-0.505771,0.361696,0.783181,-0.505771, + 0.361696,0.783181,-0.505771,0.141965,0.928735,0.342486,0.141965,0.928735,0.342486,0.141965,0.928735,0.342486, + 0.823623,-0.517954,0.231018,0.823623,-0.517954,0.231018,0.823623,-0.517954,0.231018,-0.789907,0.509224,0.341669, + -0.789907,0.509224,0.341669,-0.789907,0.509224,0.341669,0.323487,0.791891,0.517943,0.323487,0.791891,0.517943, + 0.323487,0.791891,0.517943,0.444323,-0.442160,0.779148,0.444323,-0.442160,0.779148,0.444323,-0.442160,0.779148, + -0.182178,-0.860749,-0.475313,-0.182178,-0.860749,-0.475313,-0.182178,-0.860749,-0.475313,-0.564193,-0.742778,0.360509, + -0.564193,-0.742778,0.360509,-0.564193,-0.742778,0.360509,0.403334,-0.896527,-0.183199,0.403334,-0.896527,-0.183199, + 0.403334,-0.896527,-0.183199,0.488447,0.863187,-0.127779,0.488447,0.863187,-0.127779,0.488447,0.863187,-0.127779, + -0.058955,0.702844,-0.708897,-0.058955,0.702844,-0.708897,-0.058955,0.702844,-0.708897,-0.062898,0.771115,0.633582, + -0.062898,0.771115,0.633582,-0.062898,0.771115,0.633582,0.980883,0.129287,-0.145442,0.980883,0.129287,-0.145442, + 0.980883,0.129287,-0.145442,0.557668,0.118946,0.821497,0.557668,0.118946,0.821497,0.557668,0.118946,0.821497, + 0.407727,-0.525006,0.747079,0.407727,-0.525006,0.747079,0.407727,-0.525006,0.747079,-0.908849,-0.310611,-0.278415, + -0.908849,-0.310611,-0.278415,-0.908849,-0.310611,-0.278415,0.013539,-0.337263,-0.941313,0.013539,-0.337263,-0.941313, + 0.013539,-0.337263,-0.941313,0.591578,0.615958,-0.520222,0.591578,0.615958,-0.520222,0.591578,0.615958,-0.520222, + -0.814455,0.542467,-0.205897,-0.814455,0.542467,-0.205897,-0.814455,0.542467,-0.205897,0.051630,0.994891,-0.086754, + 0.051630,0.994891,-0.086754,0.051630,0.994891,-0.086754,0.051630,0.994891,-0.086754,0.989285,-0.137141,0.050067, + 0.989285,-0.137141,0.050067,0.989285,-0.137141,0.050067,0.177437,0.627255,-0.758332,0.177437,0.627255,-0.758332, + 0.177437,0.627255,-0.758332,-0.336691,-0.873089,-0.352639,-0.336691,-0.873089,-0.352639,-0.336691,-0.873089,-0.352639, + -0.998686,0.032180,-0.039879,-0.998686,0.032180,-0.039879,-0.998686,0.032180,-0.039879,-0.792556,-0.473676,-0.384039, + -0.792556,-0.473676,-0.384039,-0.792556,-0.473676,-0.384039,-0.792556,-0.473676,-0.384039,0.986521,-0.027138,0.161368, + 0.986521,-0.027138,0.161368,0.986521,-0.027138,0.161368,-0.808563,-0.495811,0.316857,-0.808563,-0.495811,0.316857, + -0.808563,-0.495811,0.316857,-0.156030,0.815797,0.556893,-0.156030,0.815797,0.556893,-0.156030,0.815797,0.556893, + -0.883012,-0.452997,0.122816,-0.883012,-0.452997,0.122816,-0.883012,-0.452997,0.122816,-0.892191,0.311515,0.327039, + -0.892191,0.311515,0.327039,-0.892191,0.311515,0.327039,-0.227649,-0.956159,0.184220,-0.227649,-0.956159,0.184220, + -0.227649,-0.956159,0.184220,0.898910,-0.254407,0.356705,0.898910,-0.254407,0.356705,0.898910,-0.254407,0.356705, + -0.081396,0.987233,0.136916,-0.081396,0.987233,0.136916,-0.081396,0.987233,0.136916,-0.114615,0.986169,0.119727, + -0.114615,0.986169,0.119727,-0.114615,0.986169,0.119727,0.932147,-0.010543,0.361926,0.932147,-0.010543,0.361926, + 0.932147,-0.010543,0.361926,0.989789,0.053972,0.131924,0.989789,0.053972,0.131924,0.989789,0.053972,0.131924, + -0.347267,0.927326,-0.139539,-0.347267,0.927326,-0.139539,-0.347267,0.927326,-0.139539,-0.040236,-0.457816,-0.888136, + -0.040236,-0.457816,-0.888136,-0.040236,-0.457816,-0.888136,-0.986951,0.088101,-0.134779,-0.986951,0.088101,-0.134779, + -0.986951,0.088101,-0.134779,0.280307,-0.790598,-0.544410,0.280307,-0.790598,-0.544410,0.280307,-0.790598,-0.544410, + -0.930177,-0.210605,0.300692,-0.930177,-0.210605,0.300692,-0.930177,-0.210605,0.300692,0.821362,0.395659,-0.410875, + 0.821362,0.395659,-0.410875,0.821362,0.395659,-0.410875,0.743308,0.475700,0.470321,0.743308,0.475700,0.470321, + 0.743308,0.475700,0.470321,0.216120,-0.975579,0.039210,0.216120,-0.975579,0.039210,0.216120,-0.975579,0.039210, + -0.214347,0.829561,0.515640,-0.214347,0.829561,0.515640,-0.214347,0.829561,0.515640,0.771513,0.219591,0.597116, + 0.771513,0.219591,0.597116,0.771513,0.219591,0.597116,-0.016031,-0.772401,0.634933,-0.016031,-0.772401,0.634933, + -0.016031,-0.772401,0.634933,-0.720475,-0.373719,-0.584166,-0.720475,-0.373719,-0.584166,-0.720475,-0.373719,-0.584166, + -0.933039,-0.198034,0.300368,-0.933039,-0.198034,0.300368,-0.933039,-0.198034,0.300368,-0.337086,-0.862919,-0.376488, + -0.337086,-0.862919,-0.376488,-0.337086,-0.862919,-0.376488,0.957107,0.286457,-0.043460,0.957107,0.286457,-0.043460, + 0.957107,0.286457,-0.043460,0.471304,0.672254,-0.570918,0.471304,0.672254,-0.570918,0.471304,0.672254,-0.570918, + 0.478690,0.448841,0.754584,0.478690,0.448841,0.754584,0.478690,0.448841,0.754584,0.792934,-0.559095,-0.242217, + 0.792934,-0.559095,-0.242217,0.792934,-0.559095,-0.242217,0.457299,-0.470551,0.754625,0.457299,-0.470551,0.754625, + 0.457299,-0.470551,0.754625,-0.099325,-0.797976,0.594448,-0.099325,-0.797976,0.594448,-0.099325,-0.797976,0.594448, + -0.857031,0.469954,-0.211286,-0.857031,0.469954,-0.211286,-0.857031,0.469954,-0.211286,-0.200641,-0.051353,-0.978318, + -0.200641,-0.051353,-0.978318,-0.200641,-0.051353,-0.978318,0.868001,0.123742,-0.480897,0.868001,0.123742,-0.480897, + 0.868001,0.123742,-0.480897,-0.193098,0.981109,-0.011730,-0.193098,0.981109,-0.011730,-0.193098,0.981109,-0.011730, + -0.641170,-0.664768,-0.383385,-0.641170,-0.664768,-0.383385,-0.641170,-0.664768,-0.383385,-0.641170,-0.664768,-0.383385, + -0.522731,0.803463,-0.284954,-0.522731,0.803463,-0.284954,-0.522731,0.803463,-0.284954,-0.162450,-0.366451,-0.916146, + -0.162450,-0.366451,-0.916146,-0.162450,-0.366451,-0.916146,0.936105,0.345280,0.066993,0.936105,0.345280,0.066993, + 0.936105,0.345280,0.066993,0.592247,-0.736068,0.327790,0.592247,-0.736068,0.327790,0.592247,-0.736068,0.327790, + 0.960905,-0.260526,0.093749,0.960905,-0.260526,0.093749,0.960905,-0.260526,0.093749,0.960905,-0.260526,0.093749, + -0.644946,0.732598,-0.217590,-0.644946,0.732598,-0.217590,-0.644946,0.732598,-0.217590,0.658121,-0.206202,0.724125, + 0.658121,-0.206202,0.724125,0.658121,-0.206202,0.724125,-0.700450,-0.641244,0.313329,-0.700450,-0.641244,0.313329, + -0.700450,-0.641244,0.313329,0.764919,-0.303014,0.568402,0.764919,-0.303014,0.568402,0.764919,-0.303014,0.568402, + 0.175009,-0.829195,0.530856,0.175009,-0.829195,0.530856,0.175009,-0.829195,0.530856,0.675205,0.519420,0.523738, + 0.675205,0.519420,0.523738,0.675205,0.519420,0.523738,-0.535165,0.843083,0.053014,-0.535165,0.843083,0.053014, + -0.535165,0.843083,0.053014,-0.661241,-0.738041,-0.134369,-0.661241,-0.738041,-0.134369,-0.661241,-0.738041,-0.134369, + -0.632742,-0.762178,-0.136832,-0.632742,-0.762178,-0.136832,-0.632742,-0.762178,-0.136832,-0.716936,0.696681,-0.025281, + -0.716936,0.696681,-0.025281,-0.716936,0.696681,-0.025281,-0.686226,0.676130,-0.268220,-0.686226,0.676130,-0.268220, + -0.686226,0.676130,-0.268220,-0.334819,-0.905211,-0.261706,-0.334819,-0.905211,-0.261706,-0.334819,-0.905211,-0.261706, + 0.737566,0.227651,-0.635745,0.737566,0.227651,-0.635745,0.737566,0.227651,-0.635745,0.592922,-0.773603,0.223569, + 0.592922,-0.773603,0.223569,0.592922,-0.773603,0.223569,0.604137,0.712973,-0.355934,0.604137,0.712973,-0.355934, + 0.604137,0.712973,-0.355934,0.551491,-0.493227,0.672744,0.551491,-0.493227,0.672744,0.551491,-0.493227,0.672744, + -0.556387,0.278564,-0.782838,-0.556387,0.278564,-0.782838,-0.556387,0.278564,-0.782838,-0.973132,0.230248,0.000102, + -0.973132,0.230248,0.000102,-0.973132,0.230248,0.000102,0.491261,0.838409,0.236078,0.491261,0.838409,0.236078, + 0.491261,0.838409,0.236078,-0.655491,-0.695324,0.294713,-0.655491,-0.695324,0.294713,-0.655491,-0.695324,0.294713, + -0.881495,0.438394,0.175436,-0.881495,0.438394,0.175436,-0.881495,0.438394,0.175436,0.218827,0.573909,0.789141, + 0.218827,0.573909,0.789141,0.218827,0.573909,0.789141,0.945898,-0.293429,-0.138480,0.945898,-0.293429,-0.138480, + 0.945898,-0.293429,-0.138480,0.545124,-0.504072,0.669889,0.545124,-0.504072,0.669889,0.545124,-0.504072,0.669889, + 0.940807,0.336181,0.043171,0.940807,0.336181,0.043171,0.940807,0.336181,0.043171,-0.737087,0.477822,-0.477900, + -0.737087,0.477822,-0.477900,-0.737087,0.477822,-0.477900,-0.454264,-0.175334,-0.873443,-0.454264,-0.175334,-0.873443, + -0.454264,-0.175334,-0.873443,-0.930521,0.081078,0.357151,-0.930521,0.081078,0.357151,-0.930521,0.081078,0.357151, + 0.006523,0.937662,-0.347487,0.006523,0.937662,-0.347487,0.006523,0.937662,-0.347487,-0.316320,0.708384,0.630978, + -0.316320,0.708384,0.630978,-0.316320,0.708384,0.630978,0.304034,0.529604,0.791886,0.304034,0.529604,0.791886, + 0.304034,0.529604,0.791886,0.301412,-0.953490,-0.002722,0.301412,-0.953490,-0.002722,0.301412,-0.953490,-0.002722, + 0.609221,-0.177036,-0.772987,0.609221,-0.177036,-0.772987,0.609221,-0.177036,-0.772987,-0.373619,0.496767,-0.783346, + -0.373619,0.496767,-0.783346,-0.373619,0.496767,-0.783346,-0.521402,-0.823920,-0.222029,-0.521402,-0.823920,-0.222029, + -0.521402,-0.823920,-0.222029,0.939232,-0.259403,0.224839,0.939232,-0.259403,0.224839,0.939232,-0.259403,0.224839, + 0.939232,-0.259403,0.224839,-0.801426,-0.508219,-0.315326,-0.801426,-0.508219,-0.315326,-0.801426,-0.508219,-0.315326, + 0.591864,-0.150298,-0.791901,0.591864,-0.150298,-0.791901,0.591864,-0.150298,-0.791901,-0.493232,0.690994,-0.528441, + -0.493232,0.690994,-0.528441,-0.493232,0.690994,-0.528441,0.216193,0.912637,0.346922,0.216193,0.912637,0.346922, + 0.216193,0.912637,0.346922,-0.220877,0.975267,0.008272,-0.220877,0.975267,0.008272,-0.220877,0.975267,0.008272, + -0.220877,0.975267,0.008272,-0.240680,-0.943915,-0.226049,-0.240680,-0.943915,-0.226049,-0.240680,-0.943915,-0.226049, + -0.521781,0.496701,0.693565,-0.521781,0.496701,0.693565,-0.521781,0.496701,0.693565,0.209354,0.109280,0.971714, + 0.209354,0.109280,0.971714,0.209354,0.109280,0.971714,-0.223041,0.920536,0.320728,-0.223041,0.920536,0.320728, + -0.223041,0.920536,0.320728,0.124458,0.364501,-0.922848,0.124458,0.364501,-0.922848,0.124458,0.364501,-0.922848, + -0.909466,0.411942,-0.056348,-0.909466,0.411942,-0.056348,-0.909466,0.411942,-0.056348,-0.641677,-0.738465,0.207174, + -0.641677,-0.738465,0.207174,-0.641677,-0.738465,0.207174,-0.626948,-0.763803,0.153430,-0.626948,-0.763803,0.153430, + -0.626948,-0.763803,0.153430,-0.031613,0.755232,0.654694,-0.031613,0.755232,0.654694,-0.031613,0.755232,0.654694, + 0.973632,-0.213636,-0.080009,0.973632,-0.213636,-0.080009,0.973632,-0.213636,-0.080009,0.902228,-0.429510,-0.038805, + 0.902228,-0.429510,-0.038805,0.902228,-0.429510,-0.038805,0.903048,-0.353859,0.243491,0.903048,-0.353859,0.243491, + 0.903048,-0.353859,0.243491,-0.244543,-0.969347,0.023791,-0.244543,-0.969347,0.023791,-0.244543,-0.969347,0.023791, + -0.194340,-0.953939,-0.228543,-0.194340,-0.953939,-0.228543,-0.194340,-0.953939,-0.228543,0.955547,-0.288230,-0.062075, + 0.955547,-0.288230,-0.062075,0.955547,-0.288230,-0.062075,-0.443509,0.815254,-0.372373,-0.443509,0.815254,-0.372373, + -0.443509,0.815254,-0.372373,0.380247,0.902842,0.200718,0.380247,0.902842,0.200718,0.380247,0.902842,0.200718, + -0.417493,-0.320341,-0.850342,-0.417493,-0.320341,-0.850342,-0.417493,-0.320341,-0.850342,-0.138346,0.838811,0.526552, + -0.138346,0.838811,0.526552,-0.138346,0.838811,0.526552,0.214591,-0.078609,-0.973535,0.214591,-0.078609,-0.973535, + 0.214591,-0.078609,-0.973535,0.602670,-0.754872,0.258760,0.602670,-0.754872,0.258760,0.602670,-0.754872,0.258760, + -0.959688,-0.041601,-0.277974,-0.959688,-0.041601,-0.277974,-0.959688,-0.041601,-0.277974,0.656161,-0.702183,0.276391, + 0.656161,-0.702183,0.276391,0.656161,-0.702183,0.276391,-0.786739,-0.592000,0.174867,-0.786739,-0.592000,0.174867, + -0.786739,-0.592000,0.174867,-0.974852,-0.102715,0.197770,-0.974852,-0.102715,0.197770,-0.974852,-0.102715,0.197770, + 0.114137,0.863609,-0.491073,0.114137,0.863609,-0.491073,0.114137,0.863609,-0.491073,-0.023573,0.830419,0.556640, + -0.023573,0.830419,0.556640,-0.023573,0.830419,0.556640,-0.474418,0.693159,-0.542640,-0.474418,0.693159,-0.542640, + -0.474418,0.693159,-0.542640,-0.111843,-0.833446,-0.541164,-0.111843,-0.833446,-0.541164,-0.111843,-0.833446,-0.541164, + 0.695480,0.039612,-0.717453,0.695480,0.039612,-0.717453,0.695480,0.039612,-0.717453,0.605425,-0.736414,0.301919, + 0.605425,-0.736414,0.301919,0.605425,-0.736414,0.301919,-0.726504,0.159265,-0.668451,-0.726504,0.159265,-0.668451, + -0.726504,0.159265,-0.668451,0.595891,-0.751835,0.282239,0.595891,-0.751835,0.282239,0.595891,-0.751835,0.282239, + -0.467397,-0.880752,-0.076261,-0.467397,-0.880752,-0.076261,-0.467397,-0.880752,-0.076261,-0.978700,-0.196851,0.058268, + -0.978700,-0.196851,0.058268,-0.978700,-0.196851,0.058268,-0.114417,0.993433,0.000056,-0.114417,0.993433,0.000056, + -0.114417,0.993433,0.000056,-0.453949,0.484052,0.748081,-0.453949,0.484052,0.748081,-0.453949,0.484052,0.748081, + -0.515837,0.779391,-0.355615,-0.515837,0.779391,-0.355615,-0.515837,0.779391,-0.355615,0.450387,-0.470842,-0.758590, + 0.450387,-0.470842,-0.758590,0.450387,-0.470842,-0.758590,0.965456,-0.048637,-0.255987,0.965456,-0.048637,-0.255987, + 0.965456,-0.048637,-0.255987,0.693565,-0.719566,-0.034550,0.693565,-0.719566,-0.034550,0.693565,-0.719566,-0.034550, + 0.693565,-0.719566,-0.034550,-0.718538,-0.547298,-0.429148,-0.718538,-0.547298,-0.429148,-0.718538,-0.547298,-0.429148, + 0.614662,-0.344903,-0.709389,0.614662,-0.344903,-0.709389,0.614662,-0.344903,-0.709389,-0.268688,0.939932,-0.210557, + -0.268688,0.939932,-0.210557,-0.268688,0.939932,-0.210557,0.647388,0.625439,0.435563,0.647388,0.625439,0.435563, + 0.647388,0.625439,0.435563,0.299528,0.954085,0.002192,0.299528,0.954085,0.002192,0.299528,0.954085,0.002192, + 0.299528,0.954085,0.002192,-0.682353,-0.656021,-0.322537,-0.682353,-0.656021,-0.322537,-0.682353,-0.656021,-0.322537, + 0.029066,0.779724,0.625449,0.029066,0.779724,0.625449,0.029066,0.779724,0.625449,0.452562,-0.643064,0.617784, + 0.452562,-0.643064,0.617784,0.452562,-0.643064,0.617784,0.177645,0.852078,0.492346,0.177645,0.852078,0.492346, + 0.177645,0.852078,0.492346,0.638090,0.252850,0.727261,0.638090,0.252850,0.727261,0.638090,0.252850,0.727261, + -0.595942,0.776280,0.205532,-0.595942,0.776280,0.205532,-0.595942,0.776280,0.205532,-0.860808,-0.493465,-0.124510, + -0.860808,-0.493465,-0.124510,-0.860808,-0.493465,-0.124510,0.684955,-0.693196,0.224312,0.684955,-0.693196,0.224312, + 0.684955,-0.693196,0.224312,0.711008,-0.666317,0.224699,0.711008,-0.666317,0.224699,0.711008,-0.666317,0.224699, + -0.713378,-0.690548,-0.119311,-0.713378,-0.690548,-0.119311,-0.713378,-0.690548,-0.119311,-0.616781,-0.707689,-0.344612, + -0.616781,-0.707689,-0.344612,-0.616781,-0.707689,-0.344612,0.910113,-0.401705,0.101626,0.910113,-0.401705,0.101626, + 0.910113,-0.401705,0.101626,0.041576,0.606981,-0.793628,0.041576,0.606981,-0.793628,0.041576,0.606981,-0.793628, + 0.714991,0.605102,0.350200,0.714991,0.605102,0.350200,0.714991,0.605102,0.350200,-0.515639,0.542195,-0.663431, + -0.515639,0.542195,-0.663431,-0.515639,0.542195,-0.663431,0.307912,0.657977,0.687209,0.307912,0.657977,0.687209, + 0.307912,0.657977,0.687209,-0.071049,-0.689390,-0.720898,-0.071049,-0.689390,-0.720898,-0.071049,-0.689390,-0.720898, + -0.300643,-0.948788,0.097029,-0.300643,-0.948788,0.097029,-0.300643,-0.948788,0.097029,-0.825687,0.548552,-0.131651, + -0.825687,0.548552,-0.131651,-0.825687,0.548552,-0.131651,0.513342,-0.603910,0.609732,0.513342,-0.603910,0.609732, + 0.513342,-0.603910,0.609732,-0.543997,-0.819892,0.178450,-0.543997,-0.819892,0.178450,-0.543997,-0.819892,0.178450, + -0.767614,0.381021,0.515356,-0.767614,0.381021,0.515356,-0.767614,0.381021,0.515356,0.400678,0.893850,-0.201219, + 0.400678,0.893850,-0.201219,0.400678,0.893850,-0.201219,0.318533,0.650905,0.689101,0.318533,0.650905,0.689101, + 0.318533,0.650905,0.689101,-0.252358,0.939732,-0.230695,-0.252358,0.939732,-0.230695,-0.252358,0.939732,-0.230695, + -0.368772,-0.802941,-0.468288,-0.368772,-0.802941,-0.468288,-0.368772,-0.802941,-0.468288,0.395688,-0.618122,-0.679232, + 0.395688,-0.618122,-0.679232,0.395688,-0.618122,-0.679232,-0.265134,-0.842061,0.469721,-0.265134,-0.842061,0.469721, + -0.265134,-0.842061,0.469721,-0.781805,-0.036743,-0.622439,-0.781805,-0.036743,-0.622439,-0.781805,-0.036743,-0.622439, + -0.891865,-0.170982,0.418739,-0.891865,-0.170982,0.418739,-0.891865,-0.170982,0.418739,-0.719243,0.464017,0.517086, + -0.719243,0.464017,0.517086,-0.719243,0.464017,0.517086,0.930277,0.271041,0.247227,0.930277,0.271041,0.247227, + 0.930277,0.271041,0.247227,0.456462,0.444432,-0.770794,0.456462,0.444432,-0.770794,0.456462,0.444432,-0.770794, + -0.262296,-0.504672,-0.822500,-0.262296,-0.504672,-0.822500,-0.262296,-0.504672,-0.822500,0.805088,-0.575052,0.145421, + 0.805088,-0.575052,0.145421,0.805088,-0.575052,0.145421,0.690636,0.687636,0.224007,0.690636,0.687636,0.224007, + 0.690636,0.687636,0.224007,0.690636,0.687636,0.224007,0.027232,-0.991206,-0.129495,0.027232,-0.991206,-0.129495, + 0.027232,-0.991206,-0.129495,0.587134,0.265588,-0.764681,0.587134,0.265588,-0.764681,0.587134,0.265588,-0.764681, + -0.743646,-0.147862,-0.652018,-0.743646,-0.147862,-0.652018,-0.743646,-0.147862,-0.652018,-0.685493,0.721766,0.095666, + -0.685493,0.721766,0.095666,-0.685493,0.721766,0.095666,-0.918731,0.327649,-0.220408,-0.918731,0.327649,-0.220408, + -0.918731,0.327649,-0.220408,-0.918731,0.327649,-0.220408,0.676429,-0.735878,0.030456,0.676429,-0.735878,0.030456, + 0.676429,-0.735878,0.030456,-0.813853,-0.044609,0.579355,-0.813853,-0.044609,0.579355,-0.813853,-0.044609,0.579355, + -0.142920,0.413000,0.899447,-0.142920,0.413000,0.899447,-0.142920,0.413000,0.899447,-0.929729,0.355678,0.095377, + -0.929729,0.355678,0.095377,-0.929729,0.355678,0.095377,-0.067821,0.121452,-0.990278,-0.067821,0.121452,-0.990278, + -0.067821,0.121452,-0.990278,-0.827977,-0.551631,-0.100787,-0.827977,-0.551631,-0.100787,-0.827977,-0.551631,-0.100787, + 0.212124,-0.880973,0.422955,0.212124,-0.880973,0.422955,0.212124,-0.880973,0.422955,0.250267,-0.892023,0.376380, + 0.250267,-0.892023,0.376380,0.250267,-0.892023,0.376380,-0.747470,0.490949,0.447503,-0.747470,0.490949,0.447503, + -0.747470,0.490949,0.447503,0.725410,0.683149,-0.084187,0.725410,0.683149,-0.084187,0.725410,0.683149,-0.084187, + 0.854896,0.518621,0.013600,0.854896,0.518621,0.013600,0.854896,0.518621,0.013600,0.744462,0.611649,0.267697, + 0.744462,0.611649,0.267697,0.744462,0.611649,0.267697,0.651512,-0.705653,0.278544,0.651512,-0.705653,0.278544, + 0.651512,-0.705653,0.278544,0.710611,-0.703040,0.027686,0.710611,-0.703040,0.027686,0.710611,-0.703040,0.027686, + 0.773141,0.632473,-0.047226,0.773141,0.632473,-0.047226,0.773141,0.632473,-0.047226,-0.844748,-0.012358,-0.535021, + -0.844748,-0.012358,-0.535021,-0.844748,-0.012358,-0.535021,-0.561509,0.825750,-0.053332,-0.561509,0.825750,-0.053332, + -0.561509,0.825750,-0.053332,0.179071,-0.673730,-0.716953,0.179071,-0.673730,-0.716953,0.179071,-0.673730,-0.716953, + -0.852205,0.421895,0.309436,-0.852205,0.421895,0.309436,-0.852205,0.421895,0.309436,0.352146,-0.044695,-0.934877, + 0.352146,-0.044695,-0.934877,0.352146,-0.044695,-0.934877,0.903118,0.155052,0.400421,0.903118,0.155052,0.400421, + 0.903118,0.155052,0.400421,-0.447171,-0.871932,-0.199432,-0.447171,-0.871932,-0.199432,-0.447171,-0.871932,-0.199432, + 0.886588,0.230384,0.401104,0.886588,0.230384,0.401104,0.886588,0.230384,0.401104,0.018257,-0.931102,0.364301, + 0.018257,-0.931102,0.364301,0.018257,-0.931102,0.364301,-0.488586,-0.827511,0.276604,-0.488586,-0.827511,0.276604, + -0.488586,-0.827511,0.276604,-0.555804,0.454523,-0.696053,-0.555804,0.454523,-0.696053,-0.555804,0.454523,-0.696053, + -0.787275,0.518595,0.333553,-0.787275,0.518595,0.333553,-0.787275,0.518595,0.333553,-0.732557,-0.133738,-0.667439, + -0.732557,-0.133738,-0.667439,-0.732557,-0.133738,-0.667439,0.712329,-0.629911,-0.309516,0.712329,-0.629911,-0.309516, + 0.712329,-0.629911,-0.309516,0.476450,0.464963,-0.746193,0.476450,0.464963,-0.746193,0.476450,0.464963,-0.746193, + 0.882065,0.175067,0.437394,0.882065,0.175067,0.437394,0.882065,0.175067,0.437394,-0.414291,-0.646026,-0.641103, + -0.414291,-0.646026,-0.641103,-0.414291,-0.646026,-0.641103,0.892809,0.155393,0.422782,0.892809,0.155393,0.422782, + 0.892809,0.155393,0.422782,0.473720,-0.863408,0.173537,0.473720,-0.863408,0.173537,0.473720,-0.863408,0.173537, + -0.389626,-0.906014,0.165319,-0.389626,-0.906014,0.165319,-0.389626,-0.906014,0.165319,-0.873374,0.424148,-0.239408, + -0.873374,0.424148,-0.239408,-0.873374,0.424148,-0.239408,-0.775611,0.015384,0.631024,-0.775611,0.015384,0.631024, + -0.775611,0.015384,0.631024,-0.858327,-0.088127,-0.505479,-0.858327,-0.088127,-0.505479,-0.858327,-0.088127,-0.505479, + 0.764705,-0.013413,-0.644240,0.764705,-0.013413,-0.644240,0.764705,-0.013413,-0.644240,0.616981,0.729690,-0.294767, + 0.616981,0.729690,-0.294767,0.616981,0.729690,-0.294767,0.513281,0.849110,0.124718,0.513281,0.849110,0.124718, + 0.513281,0.849110,0.124718,0.144907,-0.984107,-0.102642,0.144907,-0.984107,-0.102642,0.144907,-0.984107,-0.102642 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.295593,0.547706,0.340962,0.568798,0.326162,0.676003,0.313919,0.589437,0.415100,0.791809,0.927452,0.886387, + 0.961600,0.903978,0.912702,0.809292,0.787604,0.790390,0.939221,0.923815,0.302120,0.738793,0.445511,0.557455, + 0.268152,0.566473,0.454679,0.919670,0.278283,0.524733,0.836745,0.814218,0.914835,0.923320,0.278742,0.554245, + 0.813972,0.948169,0.293854,0.588029,0.927922,0.927806,0.676786,0.930915,0.693358,0.908087,0.333082,0.937976, + 0.980736,0.792218,0.278376,0.577778,0.267517,0.580833,0.296987,0.520773,0.444666,0.814059,0.287857,0.581656, + 0.474443,0.839495,0.434031,0.792464,0.418269,0.796540,0.427232,0.934233,0.309420,0.564628,0.699557,0.946296, + 0.822415,0.804989,0.971384,0.728688,0.443932,0.809347,0.806659,0.935708,0.319121,0.580762,0.826916,0.940202, + 0.439670,0.838853,0.412829,0.795117,0.773644,0.810332,0.413505,0.929437,0.294143,0.536175,0.985137,0.705855, + 0.931940,0.898241,0.432853,0.557828,0.365017,0.581931,0.284948,0.573871,0.298138,0.582511,0.292137,0.537941, + 0.289126,0.536500,0.303390,0.564385,0.297939,0.612483,0.987128,0.810329,0.936163,0.921224,0.907903,0.908757, + 0.907988,0.920734,0.948518,0.889926,0.394968,0.793740,0.419021,0.775387,0.274532,0.567653,0.436044,0.570194, + 0.950348,0.834951,0.339397,0.590398,0.338864,0.584099,0.308177,0.599651,0.323158,0.937131,0.336901,0.572274, + 0.278607,0.555623,0.293916,0.544378,0.304565,0.665388,0.275707,0.567641,0.272629,0.932983,0.337492,0.894305, + 0.302944,0.565169,0.288973,0.578514,0.317204,0.552087,0.906021,0.664841,0.436430,0.558285,0.391166,0.591809, + 0.973053,0.730455,0.957136,0.717523,0.322908,0.694722,0.303521,0.598774,0.319026,0.566534,0.784371,0.794054, + 0.171481,0.455993,0.270943,0.542260,0.451749,0.844112,0.257922,0.583920,0.437293,0.779496,0.334882,0.671658, + 0.445375,0.814739,0.207082,0.700658,0.310626,0.533706,0.076372,0.726108,0.025085,0.678986,0.066041,0.439268, + 0.051665,0.694932,0.936782,0.946023,0.986348,0.810533,0.048379,0.449813,0.288999,0.559072,0.900256,0.918484, + 0.317389,0.581306,0.317609,0.568042,0.330590,0.559517,0.687554,0.948501,0.293149,0.566355,0.046188,0.278031, + 0.319408,0.566344,0.439295,0.840611,0.337825,0.436597,0.078401,0.577145,0.306073,0.545081,0.281275,0.678632, + 0.471959,0.833247,0.287534,0.536667,0.025456,0.589866,0.337664,0.962016,0.991263,0.405521,0.407824,0.781105, + 0.352930,0.440357,0.638868,0.777070,0.338900,0.937915,0.770833,0.939027,0.710906,0.922706,0.426027,0.942435, + 0.828397,0.804960,0.268924,0.730960,0.427573,0.955428,0.033183,0.394636,0.322430,0.542652,0.274994,0.724731, + 0.278214,0.567605,0.939781,0.917331,0.606725,0.534742,0.272673,0.576454,0.301060,0.559390,0.927407,0.928291, + 0.907238,0.920644,0.196216,0.694764,0.423302,0.571738,0.281752,0.565238,0.916286,0.906866,0.688701,0.931840, + 0.941270,0.697045,0.303521,0.575000,0.299481,0.956051,0.353327,0.565432,0.450202,0.819410,0.347276,0.592621, + 0.451472,0.810576,0.308466,0.930243,0.300939,0.586915,0.310040,0.684140,0.087967,0.562021,0.324005,0.527879, + 0.317320,0.559449,0.809820,0.951015,0.804158,0.900579,0.943699,0.731667,0.185739,0.323805,0.274607,0.564173, + 0.943163,0.731862,0.974387,0.692951,0.910193,0.977277,0.285109,0.532411,0.360864,0.579546,0.314492,0.590972, + 0.332639,0.582283,0.439449,0.781607,0.293893,0.690313,0.433115,0.573623,0.266635,0.580609,0.192042,0.718616, + 0.228344,0.329413,0.078871,0.322156,0.090422,0.411662,0.020646,0.188900,0.203672,0.278020,0.220008,0.309323, + 0.188408,0.338947,0.192843,0.670526,0.903216,0.817789,0.915924,0.918621,0.694584,0.942705,0.328127,0.550061, + 0.938125,0.930931,0.294554,0.554318,0.779708,0.705709,0.975770,0.837586,0.953391,0.780414,0.415474,0.787990, + 0.156385,0.459242,0.991263,0.042910,0.347657,0.562782,0.304517,0.546537,0.907979,0.706612,0.305913,0.600116, + 0.348910,0.898856,0.931781,0.724234,0.912748,0.667304,0.907381,0.658844,0.910548,0.660711,0.906624,0.664222, + 0.915163,0.655319,0.314047,0.944023,0.782821,0.807411,0.971410,0.729336,0.278637,0.593505,0.032517,0.342491, + 0.362172,0.582049,0.336681,0.548062,0.276070,0.580377,0.315101,0.573220,0.306079,0.533399,0.051485,0.560510, + 0.944909,0.673038,0.774660,0.820296,0.918138,0.682426,0.043946,0.304954,0.439562,0.921337,0.476120,0.660842, + 0.603766,0.645527,0.924575,0.909688,0.916171,0.919053,0.428179,0.940139,0.258645,0.584132,0.839691,0.684039, + 0.058742,0.307455,0.451582,0.815705,0.271295,0.582432,0.346213,0.553479,0.058319,0.581901,0.407943,0.712182, + 0.337860,0.666766,0.300062,0.708544,0.285981,0.577748,0.282644,0.554081,0.695229,0.929884,0.804272,0.865760, + 0.918238,0.664220,0.900000,0.683591,0.792661,0.811997,0.946386,0.673618,0.974295,0.696107,0.288758,0.558226, + 0.314152,0.592986,0.316832,0.585779,0.312430,0.562099,0.316826,0.660278,0.274774,0.583259,0.278930,0.560951, + 0.320283,0.605852,0.298654,0.584082,0.039005,0.318412,0.364879,0.579963,0.083934,0.568937,0.060056,0.301149, + 0.060056,0.347953,0.097172,0.347671,0.328278,0.584826,0.199109,0.286938,0.465396,0.938840,0.457630,0.932873, + 0.986880,0.808634,0.922283,0.926389,0.277997,0.578196,0.279851,0.697259,0.903089,0.913415,0.067694,0.463789, + 0.299811,0.532248,0.307959,0.599723,0.345297,0.538161,0.340804,0.675338,0.291792,0.725878,0.300850,0.517366, + 0.314648,0.532820,0.313495,0.599562,0.290332,0.608626,0.171895,0.667389,0.319631,0.594016,0.429870,0.939958, + 0.801305,0.703106,0.805266,0.906976,0.930705,0.723472,0.823616,0.814048,0.658188,0.850532,0.696711,0.931231, + 0.315250,0.925466,0.328314,0.587142,0.797723,0.798059,0.767906,0.657609,0.278941,0.567667,0.063872,0.443409, + 0.333871,0.547376,0.291946,0.970080,0.453795,0.800926,0.272673,0.579057,0.928772,0.886114,0.927633,0.886373, + 0.909549,0.793398,0.923172,0.930706,0.928700,0.887070,0.816545,0.802130,0.279829,0.945918,0.830529,0.854594, + 0.443855,0.932961,0.314444,0.580173,0.095413,0.302843,0.333477,0.550638,0.289515,0.551669,0.330771,0.968650, + 0.272167,0.551740,0.296679,0.532817,0.912538,0.708949,0.288384,0.583546,0.973183,0.697974,0.959080,0.681062, + 0.423640,0.820793,0.692847,0.933238,0.914365,0.655907,0.787529,0.814000,0.270748,0.656374,0.949411,0.688463, + 0.991263,0.201559,0.065997,0.439164,0.317356,0.573127,0.331480,0.556391,0.280899,0.567671,0.279748,0.567660, + 0.033116,0.549417,0.339797,0.572099,0.443333,0.813642,0.418946,0.978977,0.416553,0.575145,0.060812,0.553387, + 0.069641,0.571139,0.296682,0.587354,0.086360,0.411481,0.318619,0.590252,0.060056,0.282086,0.314160,0.571947, + 0.265869,0.580709,0.798896,0.960526,0.656090,0.944759,0.437909,0.911132,0.287672,0.565281,0.314073,0.590221, + 0.971219,0.801736,0.272673,0.558226,0.916744,0.906344,0.986540,0.812100,0.935986,0.813483,0.674904,0.817836, + 0.325185,0.580352,0.337875,0.958990,0.923131,0.890818,0.945556,0.931098,0.343975,0.565310,0.338846,0.551790, + 0.346495,0.553766,0.287986,0.574854,0.317979,0.578346,0.041800,0.435534,0.419955,0.799241,0.301777,0.548049, + 0.424036,0.964502,0.288917,0.592694,0.991263,0.487995,0.921726,0.713661,0.914904,0.676122,0.810461,0.776056, + 0.286688,0.547836,0.678444,0.947191,0.688704,0.935052,0.287246,0.612770,0.907678,0.659063,0.274938,0.580305, + 0.283669,0.546176,0.086478,0.963709,0.352800,0.565643,0.352277,0.567254,0.263083,0.608879,0.309526,0.544632, + 0.312733,0.519572,0.962334,0.776179,0.939290,0.917792,0.967514,0.796104,0.033462,0.406689,0.078882,0.440172, + 0.958854,0.782695,0.918362,0.805249,0.954353,0.841440,0.273444,0.953942,0.274607,0.574589,0.316639,0.905538, + 0.436730,0.781658,0.259824,0.583838,0.272647,0.592076,0.321208,0.579351,0.347222,0.562086,0.321937,0.579173, + 0.295909,0.587441,0.432396,0.577251,0.303625,0.587197,0.397536,0.931854,0.603767,0.606674,0.270618,0.593527, + 0.838735,0.791696,0.436300,0.948149,0.044105,0.439847,0.273079,0.571208,0.424127,0.563737,0.968254,0.695424, + 0.437163,0.784979,0.426850,0.810256,0.901229,0.684121,0.931706,0.898420,0.381506,0.063089,0.991263,0.374565, + 0.294365,0.592958,0.292437,0.560783,0.309863,0.535123,0.317320,0.545433,0.314987,0.525939,0.315133,0.588666, + 0.422691,0.812461,0.908893,0.921434,0.065810,0.538885,0.910018,0.945313,0.976967,0.837719,0.273073,0.565077, + 0.847292,0.802164,0.016962,0.224443,0.343312,0.521007,0.431530,0.553894,0.789617,0.844960,0.271826,0.932853, + 0.437062,0.783309,0.292571,0.553624,0.420798,0.949160,0.330832,0.585908,0.331760,0.571759,0.331771,0.576594, + 0.297001,0.582014,0.317843,0.575538,0.362841,0.581798,0.279212,0.556092,0.909401,0.712590,0.687737,0.812382, + 0.823611,0.952869,0.944021,0.727691,0.337818,0.990801,0.814245,0.791586,0.815076,0.801177,0.943239,0.694605, + 0.781268,0.797465,0.314047,0.938728,0.466213,0.562093,0.354781,0.566997,0.343125,0.559071,0.342619,0.558094, + 0.313732,0.430603,0.314927,0.523720,0.287733,0.595706,0.342269,0.555085,0.330601,0.585980,0.313961,0.594384, + 0.955917,0.907159,0.189879,0.303696,0.090616,0.464472,0.939624,0.934673,0.763239,0.843429,0.940723,0.687793, + 0.337913,0.463840,0.910667,0.793875,0.978825,0.794089,0.899802,0.918851,0.728703,0.825966,0.326175,0.932468, + 0.338455,0.553312,0.277394,0.553963,0.280256,0.545003,0.351404,0.564264,0.348881,0.911317,0.314731,0.671715, + 0.468082,0.574079,0.381506,0.207102,0.186236,0.704889,0.314130,0.571103,0.679943,0.839987,0.312112,0.921035, + 0.038699,0.572388,0.970420,0.728878,0.303390,0.574801,0.302096,0.576320,0.270575,0.582178,0.166972,0.553559, + 0.980224,0.785699,0.915707,0.709441,0.446428,0.812076,0.041116,0.414342,0.464029,0.971605,0.279429,0.575419, + 0.353589,0.565900,0.311467,0.548248,0.329836,0.552753,0.311744,0.561802,0.410944,0.912072,0.161788,0.711452, + 0.140942,0.707506,0.077665,0.330733,0.169014,0.331778,0.064475,0.318047,0.164122,0.670928,0.954441,0.893307, + 0.187956,0.811736,0.314927,0.546258,0.205472,0.656417,0.330004,0.576195,0.264269,0.593636,0.940744,0.934994, + 0.409621,0.951114,0.291338,0.558214,0.351843,0.523543,0.938405,0.930690,0.930738,0.942751,0.659130,0.952096, + 0.279283,0.577436,0.932429,0.900773,0.289260,0.558956,0.310653,0.552508,0.285264,0.580799,0.332332,0.959717, + 0.296648,0.566224,0.433880,0.802161,0.289884,0.587951,0.306243,0.937593,0.433536,0.807970,0.410683,0.794202, + 0.303390,0.569593,0.303447,0.581619,0.304887,0.593636,0.437006,0.947619,0.916492,0.662476,0.197873,0.159040, + 0.781741,0.529434,0.169674,0.554730,0.287805,0.912981,0.317463,0.572125,0.204702,0.322775,0.417973,0.908970, + 0.023740,0.341264,0.039005,0.543705,0.059866,0.310797,0.057693,0.317875,0.925721,0.950976,0.471986,0.821426, + 0.045998,0.437656,0.943409,0.907481,0.419444,0.917905,0.937191,0.941904,0.278703,0.559447,0.304371,0.581656, + 0.521031,0.735321,0.972076,0.909929,0.323127,0.585411,0.330782,0.946469,0.062630,0.326705,0.362969,0.581912, + 0.341756,0.549273,0.303798,0.925728,0.274339,0.561048,0.322901,0.543327,0.328946,0.565633,0.426505,0.813403, + 0.442742,0.796169,0.307876,0.533801,0.286690,0.562725,0.336711,0.550192,0.458653,0.964607,0.405921,0.792333, + 0.335964,0.599294,0.312613,0.547580,0.917919,0.665079,0.325186,0.932767,0.670585,0.837036,0.916401,0.676728, + 0.898906,0.690695,0.900494,0.683046,0.284922,0.586213,0.280642,0.662364,0.413624,0.922986,0.300278,0.546723, + 0.282587,0.576229,0.313780,0.677784,0.041913,0.430033,0.293124,0.559628,0.324213,0.584210,0.342189,0.539865, + 0.317095,0.555313,0.394629,0.554289,0.106239,0.569599,0.061597,0.477072,0.070776,0.950416,0.098603,0.344341, + 0.105369,0.343938,0.894729,0.936689,0.732637,0.817182,0.678281,0.938398,0.697673,0.940472,0.933919,0.931823, + 0.931480,0.915070,0.798081,0.834362,0.542737,0.168474,0.965080,0.914567,0.270426,0.530004,0.955290,0.922036, + 0.473077,0.838461,0.949961,0.693654,0.307096,0.530976,0.415805,0.578998,0.037883,0.406026,0.828205,0.935127, + 0.315164,0.570365,0.357597,0.921773,0.315811,0.568067,0.318281,0.590746,0.791142,0.801890,0.271239,0.551405, + 0.846855,0.832699,0.929672,0.698583,0.901620,0.682375,0.334225,0.527859,0.323395,0.590332,0.933292,0.795542, + 0.425074,0.802243,0.273234,0.542344,0.307696,0.599259,0.290159,0.542396,0.306396,0.543073,0.516527,0.609221, + 0.666113,0.849305,0.732387,0.965491,0.805556,0.966238,0.796105,0.957894,0.072290,0.310593,0.337548,0.552880, + 0.912634,0.776236,0.949128,0.835906,0.934396,0.793220,0.925219,0.950059,0.268324,0.933561,0.409590,0.773983, + 0.306043,0.612564,0.053664,0.457857,0.052022,0.463917,0.272789,0.604398,0.331033,0.959828,0.333987,0.938457, + 0.931794,0.897913,0.972312,0.708459,0.420714,0.798149,0.144571,0.576042,0.684941,0.935512,0.832847,0.949414, + 0.300580,0.558957,0.833297,0.781966,0.181792,0.285995,0.838824,0.407190,0.083499,0.456725,0.428774,0.811846, + 0.452779,0.583098,0.310082,0.570428,0.308051,0.544205,0.436962,0.781639,0.313139,0.941379,0.788258,0.785442, + 0.974755,0.694958,0.818996,0.837639,0.326435,0.724092,0.288681,0.580219,0.304208,0.737279,0.770823,0.808720, + 0.327683,0.947764,0.460480,0.945482,0.445511,0.564211,0.414305,0.774685,0.599825,0.643275,0.358837,0.939445, + 0.261099,0.584476,0.319657,0.555853,0.427535,0.805244,0.048938,0.306094,0.273079,0.576416,0.928738,0.912065, + 0.046995,0.441976,0.703485,0.938795,0.341763,0.522490,0.075165,0.964176,0.287313,0.563711,0.283991,0.551850, + 0.440810,0.784088,0.815725,0.786961,0.668504,0.838535,0.342450,0.562523,0.849164,0.801518,0.792753,0.902637, + 0.916908,0.692244,0.785910,0.949336,0.062497,0.474360,0.928572,0.664730,0.895468,0.703806,0.478641,0.576766, + 0.484286,0.583430,0.421081,0.800038,0.322899,0.961346,0.304083,0.514158,0.336075,0.557712,0.313736,0.574135, + 0.342794,0.561429,0.294617,0.521398,0.330977,0.583034,0.908608,0.658161,0.810946,0.679405,0.057413,0.560006, + 0.436044,0.576950,0.934515,0.829899,0.930823,0.899428,0.184612,0.705896,0.304844,0.568642,0.924660,0.908725, + 0.910464,0.922349,0.916605,0.918268,0.921427,0.936073,0.838824,0.201871,0.935369,0.894199,0.320805,0.558235, + 0.302802,0.587039,0.329389,0.566586,0.185861,0.454997,0.419757,0.946883,0.435633,0.937867,0.909094,0.843462, + 0.325824,0.671479,0.931415,0.648675,0.283412,0.561609,0.951732,0.711814,0.787384,0.788523,0.703321,0.939631, + 0.285459,0.680672,0.309028,0.560296,0.297929,0.439332,0.406945,0.904390,0.332678,0.532670,0.285226,0.559412, + 0.307071,0.532668,0.267699,0.938746,0.431346,0.806688,0.931107,0.915053,0.091736,0.422527,0.098329,0.144843, + 0.045522,0.656101,0.066613,0.680332,0.073387,0.687896,0.072118,0.696730,0.095959,0.704520,0.785311,0.797888, + 0.436270,0.949886,0.293849,0.698338,0.403212,0.520605,0.271483,0.937900,0.307147,0.575251,0.955191,0.840941, + 0.418433,0.940333,0.970498,0.820511,0.913851,0.910830,0.939095,0.632813,0.355852,0.572740,0.311778,0.671432, + 0.309309,0.575373,0.301656,0.560313,0.188819,0.409604,0.270571,0.576227,0.464621,0.526604,0.289152,0.552835, + 0.287331,0.574393,0.932254,0.939576,0.292847,0.586537,0.020053,0.316768,0.903411,0.900751,0.092277,0.435534, + 0.701529,0.906618,0.309459,0.935454,0.814106,0.826272,0.043402,0.594933,0.930293,0.695242,0.906872,0.686664, + 0.991263,0.154599,0.930937,0.664093,0.699737,0.960064,0.320042,0.531859,0.400028,0.577396,0.290806,0.559111, + 0.360864,0.586879,0.274665,0.560866,0.306548,0.533623,0.310928,0.554097,0.361880,0.578643,0.430765,0.797723, + 0.313850,0.588794,0.295551,0.699790,0.289837,0.577905,0.292451,0.707673,0.966390,0.914563,0.911144,0.945887, + 0.444242,0.566289,0.948442,0.851123,0.606018,0.517175,0.980570,0.784916,0.921076,0.926106,0.788806,0.791405, + 0.935640,0.674527,0.401907,0.929352,0.356275,0.457049,0.431263,0.557553,0.287596,0.574894,0.339527,0.663970, + 0.824471,0.809971,0.439790,0.782227,0.788356,0.820220,0.303534,0.936909,0.314198,0.570020,0.943640,0.729434, + 0.838789,0.779321,0.430487,0.806354,0.308268,0.592587,0.599262,0.517175,0.913639,0.676354,0.354415,0.572046, + 0.427187,0.798747,0.292489,0.559466,0.362606,0.579782,0.312947,0.587717,0.440300,0.783158,0.448721,0.909926, + 0.322819,0.901928,0.188408,0.286590,0.207632,0.774400,0.064542,0.448579,0.188408,0.297933,0.444307,0.810080, + 0.277967,0.696909,0.310473,0.563012,0.070755,0.348059,0.420461,0.798513,0.381506,0.220544,0.660591,0.930406, + 0.644633,0.816983,0.034401,0.340739,0.958193,0.783416,0.359678,0.939684,0.321933,0.586136,0.277138,0.536544, + 0.312504,0.538090,0.318128,0.582179,0.458974,0.559491,0.273335,0.593546,0.432274,0.806136,0.302792,0.585363, + 0.598612,0.724623,0.706823,0.967575,0.333898,0.556042,0.406729,0.954390,0.303853,0.692282,0.709700,0.905148, + 0.323311,0.568985,0.327436,0.693825,0.073956,0.341826,0.273648,0.586090,0.919732,0.679401,0.306069,0.556303, + 0.454386,0.579965,0.057429,0.448361,0.310216,0.571748,0.346493,0.554060,0.328785,0.555146,0.323398,0.588413, + 0.059744,0.310863,0.049467,0.307730,0.059683,0.310797,0.426659,0.799621,0.336590,0.670088,0.303297,0.584257, + 0.309564,0.589960,0.311756,0.571990,0.785968,0.947790,0.315016,0.929703,0.381506,0.140285,0.971347,0.909432, + 0.931573,0.908020,0.927619,0.886731,0.331794,0.574479,0.270943,0.577014,0.025105,0.576398,0.293461,0.569960, + 0.305159,0.937765,0.294839,0.544739,0.300101,0.607151,0.288053,0.556838,0.335994,0.567438,0.403233,0.949135, + 0.287699,0.568503,0.329927,0.566025,0.293167,0.561653,0.316936,0.431018,0.909524,0.713448,0.933715,0.674510, + 0.533946,0.330567,0.694135,0.936298,0.906224,0.663884,0.776979,0.907941,0.302171,0.558456,0.417646,0.532416, + 0.298389,0.523408,0.403440,0.718937,0.701700,0.965528,0.295514,0.521902,0.324822,0.665407,0.464248,0.585470, + 0.100203,0.311488,0.342062,0.571228,0.341242,0.567415,0.313082,0.580097,0.265390,0.947407,0.269406,0.559108, + 0.106836,0.329947,0.060056,0.326724,0.102058,0.347044,0.055534,0.313471,0.101412,0.307326,0.092459,0.347547, + 0.838703,0.956499,0.909094,0.792212,0.839339,0.706003,0.284132,0.664088,0.835065,0.665589,0.948614,0.887726, + 0.915227,0.923271,0.942550,0.732534,0.272807,0.550877,0.310676,0.553880,0.049491,0.578867,0.423403,0.820627, + 0.440559,0.783076,0.779349,0.805324,0.302408,0.573331,0.294683,0.522996,0.317046,0.543822,0.308947,0.600722, + 0.296825,0.517309,0.285806,0.584974,0.434660,0.801127,0.285276,0.534059,0.285457,0.545515,0.941106,0.935827, + 0.777700,0.814598,0.709890,0.946637,0.838824,0.415792,0.522719,0.640166,0.311175,0.527748,0.329555,0.554690, + 0.068169,0.312322,0.303771,0.531530,0.790892,0.797540,0.700485,0.828803,0.301904,0.574952,0.309020,0.563964, + 0.266375,0.947475,0.974935,0.695875,0.278709,0.562975,0.458785,0.596907,0.927775,0.798837,0.777964,0.815847, + 0.103119,0.459500,0.697590,0.894585,0.312387,0.549483,0.944451,0.907058,0.298459,0.548781,0.398702,0.557613, + 0.785107,0.687303,0.900859,0.917864,0.352058,0.953312,0.914486,0.910139,0.415474,0.768606,0.436928,0.781082, + 0.274756,0.588513,0.943394,0.906515,0.902754,0.911893,0.928708,0.923441,0.274532,0.565049,0.293770,0.567344, + 0.280992,0.595719,0.305848,0.595844,0.353363,0.571611,0.362519,0.568492,0.991263,0.346364,0.094828,0.934417, + 0.350665,0.565141,0.419256,0.920293,0.285993,0.556121,0.705141,0.911117,0.905772,0.664248,0.838824,0.329808, + 0.901725,0.683580,0.226991,0.831687,0.381506,0.156091,0.335274,0.722656,0.296836,0.708398,0.313412,0.589462, + 0.098837,0.544072,0.443195,0.805531,0.289967,0.558832,0.315595,0.659781,0.468180,0.567356,0.030183,0.577844, + 0.299882,0.587406,0.339987,0.584048,0.232321,0.443906,0.055111,0.300931,0.224577,0.442608,0.050977,0.315758, + 0.305494,0.595771,0.318133,0.583016,0.063852,0.964643,0.450330,0.596510,0.661900,0.811391,0.443667,0.809097, + 0.912807,0.787761,0.819551,0.791352,0.270575,0.574532,0.924116,0.904869,0.830375,0.845065,0.768178,0.832924, + 0.955811,0.891883,0.975035,0.789359,0.164166,0.593416,0.447813,0.944544,0.333354,0.590077,0.424091,0.809520, + 0.055602,0.439291,0.431450,0.935181,0.074238,0.426373,0.209560,0.466092,0.312920,0.590666,0.303091,0.587577, + 0.344750,0.565720,0.286251,0.453776,0.276863,0.590851,0.799034,0.801678,0.434865,0.958447,0.797543,0.818116, + 0.448393,0.533372,0.341606,0.580254,0.443777,0.809581,0.313240,0.567381,0.971936,0.726918,0.603766,0.517175, + 0.906787,0.663221,0.986318,0.704221,0.338437,0.552519,0.437991,0.916625,0.315689,0.532805,0.278974,0.577601, + 0.175355,0.336147,0.145605,0.299560,0.473642,0.905812,0.334865,0.561739,0.051799,0.562790,0.439659,0.781580, + 0.933168,0.823536,0.310453,0.595195,0.333233,0.914879,0.973777,0.799078,0.489964,0.806852,0.449861,0.818168, + 0.304583,0.572809,0.860603,0.944704,0.769573,0.825396,0.940802,0.893922,0.935031,0.675305,0.336486,0.562029, + 0.414975,0.796033,0.425338,0.801806,0.340907,0.583842,0.345440,0.933533,0.300389,0.941460,0.266820,0.579700, + 0.351134,0.588007,0.293093,0.686303,0.307705,0.532834,0.350428,0.565736,0.370600,0.915318,0.293051,0.425941, + 0.289500,0.455348,0.933130,0.827710,0.786560,0.808295,0.438887,0.779750,0.439042,0.779607,0.991263,0.424087, + 0.071334,0.426953,0.972536,0.728059,0.816051,0.796307,0.799680,0.964900,0.970319,0.669951,0.969316,0.821652, + 0.169620,0.297679,0.309243,0.570795,0.296134,0.567090,0.292685,0.559706,0.303316,0.565261,0.929833,0.666415, + 0.081951,0.333974,0.301028,0.583577,0.429074,0.798234,0.448393,0.526617,0.916594,0.900014,0.940486,0.904856, + 0.920807,0.926387,0.949878,0.906612,0.275985,0.715457,0.349029,0.543246,0.788718,0.792862,0.601065,0.735027, + 0.957410,0.905718,0.934570,0.895287,0.284240,0.546319,0.276838,0.586521,0.311610,0.561931,0.433857,0.803391, + 0.151383,0.342529,0.426487,0.940319,0.950692,0.780819,0.811222,0.947486,0.937039,0.942415,0.273561,0.694378, + 0.900878,0.678749,0.813000,0.529434,0.087128,0.429168,0.340041,0.937640,0.268555,0.579637,0.445539,0.814536, + 0.275746,0.572019,0.280235,0.568466,0.313522,0.657792,0.016481,0.315537,0.307492,0.945174,0.348681,0.655822, + 0.331682,0.582237,0.961625,0.696866,0.304271,0.572262,0.437234,0.552410,0.442840,0.956892,0.917926,0.697235, + 0.952383,0.710398,0.681363,0.836226,0.325930,0.563290,0.298968,0.586766,0.658391,0.850174,0.734169,0.804085, + 0.811665,0.942425,0.664571,0.774677,0.300933,0.937975,0.436928,0.786083,0.358859,0.962923,0.830220,0.944230, + 0.695176,0.954907,0.973401,0.716811,0.301395,0.558155,0.281302,0.535667,0.173921,0.696771,0.203427,0.667571, + 0.703496,0.928741,0.940509,0.729335,0.459584,0.826753,0.043021,0.579518,0.262417,0.598958,0.053970,0.420320, + 0.332536,0.686239,0.437096,0.783865,0.290167,0.520683,0.296124,0.561193,0.294925,0.592556,0.312606,0.573478, + 0.259348,0.584027,0.323739,0.573956,0.825126,0.806187,0.732603,0.950212,0.208234,0.329561,0.986001,0.683953, + 0.426395,0.800058,0.324150,0.595866,0.901022,0.916864,0.348740,0.972266,0.940328,0.918285,0.916428,0.918779, + 0.950279,0.779483,0.441638,0.944049,0.950412,0.834871,0.815427,0.799937,0.267670,0.579407,0.290471,0.568632, + 0.362048,0.568514,0.310884,0.587684,0.281639,0.951520,0.297178,0.540477,0.367109,0.647745,0.929138,0.930200, + 0.778538,0.805141,0.917161,0.816037,0.958823,0.907548,0.346112,0.526636,0.300020,0.558221,0.792703,0.803988, + 0.339959,0.409176,0.811472,0.790997,0.422983,0.796389,0.431947,0.943273,0.434472,0.931117,0.258207,0.585342, + 0.934899,0.720100,0.061120,0.437135,0.292783,0.551364,0.262679,0.936710,0.069978,0.379324,0.432367,0.848283, + 0.307484,0.524067,0.294134,0.583933,0.445666,0.814896,0.306592,0.580606,0.321965,0.585110,0.271126,0.582587, + 0.309952,0.571210,0.092537,0.400182,0.078601,0.408344,0.063859,0.964913,0.076992,0.447494,0.916355,0.900896, + 0.355937,0.559451,0.296271,0.568216,0.053758,0.188313,0.953381,0.783453,0.416472,0.928254,0.318319,0.596297, + 0.315984,0.562873,0.265808,0.551995,0.915535,0.922608,0.931158,0.930963,0.923102,0.926555,0.679300,0.974781, + 0.827905,0.823085,0.979413,0.775007,0.931749,0.779146,0.919939,0.678705,0.288516,0.552602,0.337272,0.572339, + 0.275859,0.564058,0.302952,0.700417,0.363360,0.419089,0.991263,0.106708,0.331110,0.576447,0.285569,0.572493, + 0.678833,0.843334,0.309975,0.584394,0.956487,0.922622,0.190553,0.649488,0.672304,0.832861,0.781741,0.558883, + 0.938902,0.802863,0.447676,0.954250,0.315518,0.702241,0.693910,0.934898,0.297793,0.926240,0.777344,0.807820, + 0.792065,0.790910,0.427507,0.945454,0.272092,0.693534,0.800199,0.638636,0.475549,0.909819,0.798308,0.828358, + 0.431877,0.762751,0.278703,0.524042,0.925154,0.826955,0.268386,0.531276,0.577358,0.543270,0.302268,0.587421, + 0.296916,0.597474,0.665296,0.913558,0.949201,0.725944,0.426171,0.576011,0.353549,0.945964,0.777447,0.907141, + 0.420477,0.531548,0.395075,0.762751,0.913770,0.901661,0.921085,0.929051,0.706367,0.907956,0.339629,0.938639, + 0.429012,0.942857,0.655415,0.801924,0.444460,0.786466,0.922690,0.926536,0.971195,0.800093,0.829548,0.663831, + 0.334989,0.547529,0.278536,0.578361,0.087664,0.577980,0.315796,0.579417,0.289701,0.555205,0.345273,0.565871, + 0.074092,0.562318,0.430478,0.833208,0.280162,0.564627,0.065184,0.562188,0.335547,0.533869,0.912991,0.709869, + 0.796745,0.680350,0.774494,0.820275,0.916342,0.915840,0.780891,0.801566,0.886956,0.697659,0.270943,0.559637, + 0.448398,0.916472,0.000000,0.000000,0.825636,0.950820,0.286158,0.573769,0.463716,0.543049,0.294794,0.555163, + 0.311436,0.561917,0.939736,0.935761,0.294026,0.584425,0.427308,0.816648,0.203124,0.466235,0.294862,0.583403, + 0.316761,0.526637,0.305487,0.680088,0.306625,0.589141,0.306189,0.596649,0.289836,0.555364,0.279628,0.694741, + 0.058574,0.439268,0.070138,0.317442,0.051014,0.322979,0.098124,0.345682,0.093537,0.938949,0.032620,0.289838, + 0.082380,0.290787,0.096938,0.347185,0.427192,0.814965,0.813134,0.800539,0.809801,0.957951,0.940278,0.892615, + 0.302861,0.574198,0.429004,0.797986,0.980435,0.791831,0.343925,0.527307,0.297951,0.562583,0.058084,0.425392, + 0.450451,0.574499,0.935355,0.895385,0.900835,0.814381,0.381506,0.139182,0.338547,0.554726,0.830304,0.765136, + 0.200153,0.444783,0.434626,0.962967,0.968747,0.714607,0.606019,0.608926,0.346297,0.536705,0.314209,0.527043, + 0.350322,0.602287,0.454354,0.779737,0.327981,0.521623,0.941019,0.928806,0.915613,0.899586,0.523282,0.609221, + 0.447539,0.963955,0.830126,0.943262,0.960810,0.681613,0.437263,0.786649,0.429024,0.940048,0.671501,0.829616, + 0.309077,0.575989,0.471457,0.834630,0.306083,0.712641,0.973920,0.716100,0.667147,0.842451,0.971622,0.708961, + 0.336629,0.545433,0.924653,0.935053,0.291225,0.604413,0.313822,0.904542,0.963187,0.829852,0.184770,0.705662, + 0.067588,0.435534,0.334262,0.937681,0.455033,0.952299,0.257620,0.583765,0.295363,0.703806,0.038784,0.575188, + 0.360864,0.571895,0.350379,0.931935,0.055761,0.318967,0.831992,0.937385,0.213629,0.571827,0.355937,0.545434, + 0.689568,0.929878,0.454056,0.821440,0.914957,0.709452,0.811410,0.943271,0.678922,0.942171,0.307131,0.535568, + 0.930260,0.929625,0.696921,0.929703,0.329643,0.552352,0.340521,0.548386,0.928356,0.923380,0.285976,0.556409, + 0.307429,0.590769,0.296969,0.582929,0.313628,0.579192,0.320015,0.566012,0.258299,0.584270,0.319012,0.568521, + 0.337901,0.561414,0.430619,0.806862,0.074030,0.609131,0.078103,0.471536,0.842353,0.833509,0.381506,0.423949, + 0.928884,0.928222,0.798714,0.677910,0.940286,0.890914,0.802531,0.959668,0.990289,0.698352,0.351140,0.566950, + 0.443699,0.922421,0.454935,0.606898,0.091153,0.464379,0.361997,0.448590,0.606018,0.519427,0.067892,0.443487, + 0.931798,0.723784,0.296815,0.587694,0.310018,0.544875,0.346975,0.579162,0.072456,0.579680,0.266461,0.558116, + 0.286914,0.579492,0.326898,0.573485,0.330218,0.578617,0.940275,0.708176,0.153401,0.347748,0.991263,0.422457, + 0.274532,0.570257,0.064778,0.393872,0.355744,0.569163,0.305250,0.571208,0.950591,0.775163,0.808216,0.714135, + 0.521031,0.609221,0.793003,0.800106,0.932904,0.931060,0.257058,0.585649,0.268045,0.930835,0.300558,0.591184, + 0.788499,0.717294,0.438110,0.913666,0.950745,0.835720,0.426816,0.964047,0.937241,0.930053,0.928714,0.924547, + 0.351300,0.572712,0.308376,0.533145,0.074155,0.559242,0.280490,0.577568,0.525488,0.599227,0.403212,0.586384, + 0.694072,0.936008,0.674998,0.856293,0.353800,0.732454,0.335197,0.584850,0.436995,0.782195,0.339514,0.568913, + 0.281383,0.568481,0.323157,0.585066,0.303003,0.547749,0.312737,0.511894,0.317612,0.575904,0.068785,0.341890, + 0.933448,0.901629,0.828089,0.839664,0.334276,0.939784,0.910551,0.944815,0.339133,0.958881,0.603766,0.514923, + 0.916429,0.895039,0.941646,0.935379,0.941288,0.893172,0.266032,0.551948,0.319953,0.945143,0.435781,0.918042, + 0.287173,0.556894,0.302616,0.953415,0.968083,0.663956,0.310935,0.592353,0.293387,0.584600,0.990131,0.697237, + 0.425999,0.800714,0.699461,0.930901,0.280443,0.591707,0.933677,0.901448,0.940529,0.929776,0.279199,0.559668, + 0.310710,0.584051,0.271210,0.510351,0.472072,0.784170,0.470460,0.653283,0.055122,0.702559,0.026901,0.708734, + 0.980133,0.789028,0.304155,0.583016,0.918345,0.895024,0.432411,0.941156,0.330092,0.549390,0.714726,0.943995, + 0.778373,0.775763,0.937174,0.803637,0.340865,0.521929,0.860822,0.945853,0.922023,0.926217,0.554435,0.587160, + 0.288548,0.561333,0.337377,0.561254,0.316076,0.579736,0.281997,0.563170,0.312404,0.548663,0.331492,0.532210, + 0.326994,0.584273,0.055111,0.331669,0.272823,0.713599,0.899648,0.697059,0.828750,0.831108,0.909877,0.674443, + 0.683341,0.951633,0.282093,0.576917,0.959805,0.725143,0.983492,0.682214,0.414636,0.941550,0.944360,0.722248, + 0.435385,0.570764,0.324767,0.541053,0.276398,0.536197,0.322726,0.585254,0.303625,0.507053,0.331638,0.533296, + 0.991263,0.220138,0.934101,0.931458,0.285284,0.586642,0.936962,0.930296,0.977256,0.787972,0.961486,0.903024, + 0.934245,0.943669,0.922844,0.913786,0.916768,0.806924,0.272673,0.568642,0.058837,0.436130,0.952431,0.834509, + 0.815139,0.816770,0.276080,0.570755,0.312119,0.588687,0.047807,0.421033,0.455710,0.962275,0.336246,0.558816, + 0.288263,0.581618,0.303435,0.519619,0.287070,0.553478,0.277524,0.562170,0.315250,0.920171,0.444791,0.814426, + 0.955094,0.908724,0.955590,0.714503,0.302595,0.576271,0.393002,0.784232,0.440130,0.782848,0.913275,0.678126, + 0.317321,0.524045,0.806479,0.809188,0.306211,0.679217,0.302169,0.534122,0.273207,0.582596,0.335102,0.574479, + 0.334223,0.547974,0.261402,0.599818,0.277759,0.570396,0.285826,0.580581,0.311903,0.588784,0.058925,0.571605, + 0.454456,0.848788,0.281181,0.535325,0.065890,0.404066,0.220259,0.318440,0.185324,0.700742,0.062855,0.302687, + 0.950327,0.896968,0.981466,0.786379,0.311172,0.932180,0.264654,0.553545,0.275456,0.542559,0.681446,0.777213, + 0.400040,0.554432,0.916733,0.807253,0.935185,0.793802,0.350909,0.590656,0.276974,0.556327,0.061408,0.936400, + 0.317661,0.575418,0.459411,0.942888,0.216523,0.326094,0.957446,0.718103,0.677244,0.890535,0.436854,0.784424, + 0.313083,0.576432,0.732900,0.929260,0.312999,0.592366,0.399024,0.585049,0.306548,0.572493,0.177351,0.841394, + 0.309031,0.577973,0.021089,0.410177,0.318281,0.587258,0.313511,0.576929,0.272039,0.593622,0.305322,0.689067, + 0.050227,0.275768,0.060724,0.916477,0.330057,0.552976,0.294852,0.543757,0.313508,0.588056,0.313052,0.588903, + 0.432838,0.929044,0.554572,0.528595,0.274603,0.579796,0.278709,0.565579,0.977027,0.788158,0.934914,0.895980, + 0.912814,0.916609,0.917018,0.894348,0.909094,0.805800,0.164113,0.334839,0.443374,0.930929,0.770587,0.831254, + 0.464183,0.917289,0.266155,0.941309,0.381506,0.107141,0.321550,0.584898,0.308125,0.598966,0.344660,0.584008, + 0.313096,0.588647,0.420840,0.851389,0.281202,0.563442,0.276544,0.572107,0.707464,0.963151,0.473162,0.735027, + 0.303316,0.575677,0.305250,0.573812,0.838460,0.811107,0.286950,0.580762,0.418022,0.796867,0.449540,0.917953, + 0.917445,0.691749,0.444790,0.952456,0.309796,0.581967,0.341838,0.945803,0.083513,0.393418,0.341550,0.556295, + 0.341284,0.571887,0.176855,0.293993,0.072617,0.968012,0.065014,0.471375,0.077381,0.318253,0.106908,0.345087, + 0.108371,0.328602,0.067093,0.928328,0.102418,0.348590,0.054621,0.280229,0.606019,0.611178,0.991263,0.205862, + 0.403439,0.660038,0.315967,0.568043,0.533946,0.407825,0.603767,0.737279,0.950501,0.836432,0.901859,0.912174, + 0.937719,0.939368,0.264287,0.552147,0.949709,0.780341,0.033462,0.464379,0.312970,0.589131,0.442458,0.813172, + 0.329700,0.557148,0.165082,0.685214,0.338212,0.572353,0.703552,0.933383,0.285523,0.556693,0.770535,0.828050, + 0.905086,0.686283,0.332111,0.583016,0.432068,0.553858,0.803132,0.851122,0.331022,0.949824,0.813275,0.792671, + 0.320826,0.696221,0.312878,0.564971,0.282700,0.924410,0.307237,0.535536,0.440696,0.821765,0.027411,0.938185, + 0.297232,0.541977,0.287163,0.574309,0.313006,0.573546,0.047889,0.346023,0.082815,0.435534,0.271673,0.601028, + 0.040113,0.335363,0.438875,0.576081,0.288435,0.928804,0.980063,0.784734,0.352906,0.923814,0.947082,0.914227, + 0.184528,0.702525,0.955842,0.839525,0.419763,0.799448,0.914732,0.923790,0.309790,0.526027,0.169555,0.433949, + 0.036809,0.305655,0.334468,0.571039,0.333013,0.588899,0.933064,0.722235,0.312112,0.671072,0.313184,0.947251, + 0.911097,0.659557,0.905274,0.688416,0.268965,0.597714,0.280232,0.574166,0.286603,0.585125,0.285498,0.542427, + 0.312966,0.588731,0.348825,0.935561,0.351299,0.657060,0.360864,0.579227,0.838824,0.424394,0.271979,0.561188, + 0.293963,0.592406,0.345086,0.553725,0.314848,0.573242,0.273529,0.539908,0.284317,0.573701,0.338569,0.572394, + 0.813490,0.765609,0.801581,0.679307,0.302867,0.586359,0.303515,0.566656,0.702215,0.947629,0.934203,0.901764, + 0.592058,0.590584,0.928088,0.923637,0.919648,0.931488,0.948969,0.903468,0.343539,0.567692,0.340272,0.596277, + 0.351874,0.605422,0.343811,0.559945,0.429461,0.954591,0.290291,0.573483,0.311593,0.553970,0.424580,0.848788, + 0.324397,0.724991,0.789882,0.822206,0.838824,0.346737,0.913626,0.666971,0.913003,0.667002,0.201574,0.855202, + 0.975046,0.715969,0.900636,0.690325,0.806596,0.795998,0.943027,0.726992,0.517090,0.735321,0.073956,0.321049, + 0.308098,0.949220,0.342224,0.539820,0.276879,0.570849,0.367256,0.930569,0.322143,0.427101,0.463634,0.588328, + 0.357837,0.541818,0.284054,0.589037,0.038627,0.576328,0.316201,0.589089,0.302146,0.583670,0.799989,0.941350, + 0.935367,0.937587,0.445103,0.810828,0.937966,0.911167,0.937023,0.911746,0.938490,0.804432,0.975240,0.789876, + 0.957017,0.892580,0.307112,0.599616,0.053400,0.320329,0.297310,0.557503,0.067617,0.587838,0.271733,0.582007, + 0.312442,0.562337,0.270475,0.581883,0.295510,0.726481,0.283646,0.550453,0.070432,0.558463,0.915782,0.691670, + 0.431483,0.945390,0.443502,0.813424,0.651757,0.787092,0.288917,0.596182,0.969686,0.716714,0.445524,0.810848, + 0.579148,0.719041,0.160476,0.350963,0.670451,0.788140,0.297750,0.682407,0.313627,0.576496,0.291686,0.587363, + 0.309357,0.535223,0.337346,0.681114,0.425867,0.800932,0.329728,0.569888,0.071782,0.527410,0.093190,0.947513, + 0.103673,0.927706,0.783175,0.783581,0.270954,0.581342,0.030768,0.592418,0.264257,0.931455,0.900460,0.917526, + 0.936328,0.917359,0.932957,0.777786,0.906802,0.651786,0.306532,0.950169,0.529428,0.683851,0.971078,0.756744, + 0.320965,0.579618,0.305787,0.611693,0.341478,0.577725,0.430744,0.809137,0.324101,0.533901,0.918104,0.696564, + 0.303381,0.555236,0.447116,0.812349,0.324519,0.524835,0.303390,0.566989,0.916103,0.708032,0.956845,0.715351, + 0.907225,0.689124,0.896282,0.687217,0.916191,0.706034,0.475809,0.840530,0.331237,0.530602,0.135666,0.419452, + 0.086572,0.963979,0.313336,0.574068,0.302111,0.548530,0.278591,0.915594,0.302798,0.532285,0.823871,0.843502, + 0.306090,0.505986,0.921886,0.925775,0.734155,0.804208,0.940897,0.935316,0.902353,0.911584,0.934804,0.895109, + 0.301591,0.582606,0.306243,0.942887,0.914038,0.788454,0.529540,0.590584,0.399234,0.811741,0.326548,0.562805, + 0.274096,0.561572,0.323640,0.542317,0.073988,0.308439,0.679630,0.939465,0.823911,0.843314,0.675909,0.851331, + 0.322218,0.568498,0.986091,0.705191,0.932338,0.723775,0.603766,0.643275,0.941311,0.731975,0.436477,0.943636, + 0.810472,0.803164,0.381506,0.407039,0.068802,0.964710,0.533946,0.425009,0.287961,0.561119,0.314429,0.591184, + 0.271971,0.575840,0.329475,0.583842,0.298719,0.906473,0.320320,0.680471,0.315242,0.969882,0.285816,0.560053, + 0.075309,0.328468,0.067803,0.469585,0.078136,0.935295,0.201527,0.713171,0.819435,0.842519,0.923554,0.908193, + 0.949050,0.834344,0.895961,0.937223,0.901328,0.917306,0.417528,0.797521,0.909322,0.908010,0.327157,0.531180, + 0.944472,0.908024,0.463711,0.913703,0.318039,0.704783,0.991263,0.415479,0.341941,0.570448,0.308193,0.535986, + 0.280345,0.568733,0.282136,0.563820,0.285521,0.596431,0.446223,0.832939,0.271055,0.575582,0.356570,0.945772, + 0.680835,0.936535,0.330497,0.927360,0.421425,0.555811,0.300454,0.558909,0.038280,0.309261,0.418619,0.602423, + 0.062307,0.405565,0.303390,0.572197,0.692616,0.934296,0.168850,0.452119,0.312712,0.589930,0.309370,0.573506, + 0.310711,0.934296,0.271499,0.591855,0.062816,0.379695,0.305864,0.597909,0.319565,0.938319,0.265471,0.550994, + 0.301490,0.586817,0.059984,0.310733,0.059623,0.310731,0.301591,0.580008,0.348776,0.956757,0.105691,0.152407, + 0.901311,0.815664,0.915767,0.924233,0.900794,0.917355,0.694557,0.935200,0.714863,0.934290,0.436706,0.781105, + 0.455783,0.818810,0.181591,0.567942,0.287425,0.564206,0.345915,0.583830,0.347723,0.602386,0.450633,0.915414, + 0.037453,0.320838,0.428426,0.969369,0.320098,0.894008,0.289096,0.555842,0.271150,0.581232,0.330078,0.554576, + 0.310109,0.529426,0.027204,0.343264,0.060440,0.320338,0.057513,0.314180,0.059536,0.316315,0.026697,0.345570, + 0.062307,0.440814,0.059748,0.310862,0.059369,0.330819,0.062307,0.430253,0.057027,0.435534,0.277742,0.590073, + 0.277532,0.594411,0.294547,0.570320,0.440379,0.782777,0.188169,0.290925,0.315154,0.944811,0.298129,0.566368, + 0.812431,0.640132,0.931837,0.685022,0.421796,0.942107,0.282690,0.546479,0.304611,0.704788,0.895368,0.703527, + 0.938264,0.922429,0.365533,0.647476,0.349832,0.655303,0.346244,0.562971,0.335638,0.549867,0.338256,0.950171, + 0.302137,0.579883,0.053724,0.579933,0.063976,0.586454,0.036003,0.337990,0.051014,0.304894,0.908241,0.920449, + 0.312343,0.544409,0.436300,0.932473,0.277896,0.731579,0.807948,0.958985,0.302731,0.594219,0.765396,0.837050, + 0.970790,0.820500,0.929451,0.899411,0.940148,0.929581,0.936059,0.812959,0.300539,0.934905,0.288606,0.581094, + 0.311459,0.566359,0.940904,0.929416,0.933339,0.780354,0.464028,0.898021,0.272926,0.560137,0.286271,0.564139, + 0.456335,0.920961,0.306717,0.962278,0.282953,0.544979,0.303072,0.580324,0.336033,0.700938,0.790102,0.799463, + 0.780235,0.774185,0.930688,0.652088,0.274607,0.571985,0.920667,0.712804,0.921012,0.714813,0.263176,0.551171, + 0.435429,0.800153,0.289774,0.724350,0.279614,0.593565,0.338379,0.570543,0.358011,0.576364,0.278819,0.553435, + 0.317864,0.572200,0.423740,0.800142,0.732698,0.943494,0.165541,0.437875,0.083046,0.332763,0.934147,0.781215, + 0.966642,0.796790,0.314557,0.539619,0.975816,0.792558,0.933802,0.943754,0.687781,0.932702,0.435022,0.553542, + 0.266295,0.579712,0.290867,0.568606,0.290872,0.559170,0.293892,0.575989,0.341185,0.538500,0.049519,0.229090, + 0.287153,0.582045,0.280236,0.563752,0.792998,0.937941,0.694815,0.922816,0.732662,0.946080,0.467615,0.834323, + 0.335667,0.581182,0.273074,0.529672,0.310997,0.557856,0.951547,0.710903,0.952220,0.775485,0.323863,0.565096, + 0.033194,0.346213,0.435732,0.800205,0.296124,0.564681,0.340832,0.570754,0.297868,0.586486,0.445898,0.811577, + 0.342895,0.420950,0.326873,0.427929,0.313395,0.682206,0.308641,0.928446,0.776043,0.768307,0.679538,0.837213, + 0.290379,0.663333,0.931057,0.700772,0.827484,0.937966,0.279259,0.549760,0.083375,0.434746,0.274532,0.578069, + 0.301517,0.583479,0.928367,0.928704,0.182644,0.323218,0.280197,0.551230,0.292114,0.546925,0.437358,0.929933, + 0.064168,0.577582,0.925254,0.931622,0.940615,0.693685,0.926476,0.887625,0.955171,0.909676,0.903846,0.900192, + 0.318066,0.543810,0.312834,0.589882,0.337050,0.964874,0.277915,0.569610,0.305707,0.418792,0.188497,0.456635, + 0.288416,0.584256,0.296050,0.565615,0.352713,0.927014,0.287314,0.578531,0.355877,0.552285,0.686385,0.330187, + 0.734966,0.797270,0.427245,0.572118,0.935444,0.673736,0.521030,0.645233,0.229685,0.801737,0.815112,0.798298, + 0.777175,0.809603,0.275003,0.580705,0.303534,0.931614,0.323162,0.562180,0.443793,0.813583,0.299097,0.546282, + 0.310037,0.553774,0.279583,0.564796,0.322422,0.588131,0.336629,0.536806,0.936999,0.900832,0.924742,0.795839, + 0.937609,0.672087,0.825353,0.804857,0.950963,0.904601,0.915650,0.918167,0.446163,0.811827,0.448496,0.602423, + 0.072290,0.329624,0.953042,0.899742,0.580606,0.566933,0.336900,0.551887,0.342182,0.670641,0.061968,0.408415, + 0.155772,0.276072,0.425410,0.608301,0.291444,0.584907,0.286045,0.572451,0.314182,0.579253,0.275144,0.563753, + 0.079993,0.585262,0.399024,0.578294,0.533946,0.193904,0.355938,0.524047,0.812666,0.799558,0.941659,0.730708, + 0.915638,0.705250,0.285205,0.586477,0.932185,0.723174,0.899163,0.697215,0.306461,0.719488,0.327087,0.536426, + 0.138709,0.421827,0.086360,0.459587,0.330056,0.595756,0.326354,0.561784,0.280339,0.574942,0.327663,0.551628, + 0.348415,0.579370,0.924787,0.914917,0.046495,0.726108,0.074458,0.941667,0.096157,0.678350,0.907623,0.658532, + 0.935531,0.937454,0.353093,0.576432,0.037177,0.587125,0.937073,0.762747,0.270978,0.610220,0.270571,0.583873, + 0.060191,0.316093,0.911661,0.921853,0.444728,0.810098,0.307504,0.955938,0.177522,0.339653,0.320745,0.584738, + 0.282896,0.563606,0.450815,0.935776,0.322373,0.659684,0.437530,0.956876,0.357048,0.726057,0.981322,0.794298, + 0.942038,0.904480,0.062307,0.456041,0.438055,0.935387,0.320525,0.659173,0.326294,0.595249,0.933389,0.649802, + 0.955529,0.716443,0.908276,0.658561,0.794635,0.955616,0.455915,0.928190,0.446850,0.812099,0.804619,0.779216, + 0.957698,0.778010,0.953892,0.898937,0.430047,0.564440,0.338948,0.563082,0.291118,0.699143,0.279965,0.559879, + 0.312156,0.611858,0.440811,0.790818,0.446585,0.811849,0.451346,0.967134,0.347967,0.529520,0.915388,0.900467, + 0.922948,0.642300,0.329762,0.950011,0.946962,0.915296,0.316849,0.454383,0.350308,0.542437,0.915456,0.924366, + 0.828134,0.841654,0.448112,0.848014,0.276003,0.542854,0.274975,0.670340,0.341227,0.556470,0.438696,0.544489, + 0.311971,0.563190,0.264282,0.572498,0.457343,0.510655,0.287552,0.574271,0.307323,0.612985,0.789521,0.822413, + 0.318917,0.579479,0.210130,0.685455,0.667469,0.845259,0.294388,0.552597,0.791889,0.951600,0.465957,0.718937, + 0.597409,0.699711,0.825915,0.934191,0.823198,0.835462,0.813000,0.558883,0.047490,0.587956,0.343301,0.541831, + 0.306880,0.595282,0.476881,0.839141,0.321167,0.584865,0.277792,0.592887,0.441900,0.916228,0.293391,0.579553, + 0.425127,0.804906,0.086052,0.966167,0.202909,0.303939,0.063389,0.330897,0.092245,0.943481,0.305250,0.579020, + 0.309663,0.567266,0.937228,0.900648,0.947394,0.850611,0.835398,0.951607,0.521030,0.647484,0.929043,0.899751, + 0.923929,0.938571,0.689102,0.946500,0.439839,0.781879,0.954165,0.909149,0.912431,0.674304,0.306496,0.562572, + 0.330656,0.595815,0.655434,0.792232,0.308543,0.599368,0.422618,0.592305,0.318154,0.578939,0.437414,0.810257, + 0.072487,0.549214,0.381506,0.347856,0.285478,0.551344,0.347669,0.553294,0.296272,0.558017,0.296198,0.556701, + 0.771407,0.821824,0.190170,0.720324,0.279479,0.661789,0.972040,0.688075,0.308945,0.562236,0.419752,0.794577, + 0.309020,0.561360,0.919946,0.713951,0.984689,0.707421,0.021687,0.424500,0.047772,0.342529,0.819087,0.829524, + 0.826255,0.933722,0.280650,0.587366,0.351486,0.907789,0.419893,0.818343,0.415019,0.552259,0.417228,0.940288, + 0.312343,0.561630,0.402000,0.786489,0.059748,0.310862,0.554667,0.554070,0.686385,0.220341,0.310607,0.427803, + 0.819702,0.844538,0.278302,0.552597,0.352160,0.594487,0.593980,0.677480,0.291649,0.523794,0.991263,0.137664, + 0.960580,0.903416,0.979622,0.789480,0.944068,0.730404,0.682041,0.844247,0.278505,0.574708,0.945044,0.932119, + 0.444993,0.810348,0.297882,0.576817,0.297193,0.562306,0.303510,0.675986,0.439571,0.806448,0.337288,0.558403, + 0.341153,0.558426,0.338407,0.918617,0.304129,0.601318,0.592058,0.551952,0.783056,0.797213,0.686218,0.847275, + 0.316945,0.434095,0.437029,0.782752,0.038255,0.459587,0.795472,0.806284,0.305849,0.679652,0.298581,0.580696, + 0.974727,0.697023,0.931463,0.650485,0.428261,0.906221,0.038096,0.558871,0.392827,0.783964,0.275749,0.536757, + 0.343290,0.559773,0.290245,0.681036,0.093559,0.345913,0.100860,0.308325,0.094139,0.342422,0.037534,0.336458, + 0.038373,0.951520,0.295996,0.429969,0.069098,0.304894,0.818877,0.837041,0.693538,0.930064,0.768426,0.931383, + 0.263352,0.931282,0.972573,0.800893,0.796484,0.965643,0.323001,0.651454,0.941469,0.905334,0.332293,0.678960, + 0.439794,0.806250,0.828099,0.841511,0.902364,0.819822,0.283951,0.534410,0.932478,0.909523,0.301681,0.924811, + 0.276990,0.550013,0.287309,0.568528,0.335858,0.552165,0.295030,0.522150,0.278703,0.545431,0.929620,0.912485, + 0.827663,0.822911,0.446182,0.532098,0.777227,0.815480,0.969255,0.669454,0.678519,0.896505,0.808749,0.804584, + 0.290755,0.672964,0.324545,0.556122,0.289165,0.560793,0.305250,0.576416,0.972534,0.728130,0.933821,0.931720, + 0.798225,0.714496,0.304794,0.507733,0.436903,0.785530,0.947653,0.903877,0.381506,0.202808,0.424959,0.967232, + 0.445071,0.935788,0.330842,0.962059,0.274179,0.542232,0.311920,0.534554,0.440406,0.527996,0.031871,0.578626, + 0.333913,0.533813,0.316955,0.437172,0.789290,0.819986,0.926075,0.787095,0.310880,0.565579,0.286747,0.552252, + 0.085305,0.558666,0.554515,0.722055,0.381506,0.157459,0.933751,0.824369,0.273079,0.579020,0.925625,0.931801, + 0.434479,0.916872,0.725262,0.974941,0.455480,0.574820,0.309450,0.511244,0.306775,0.679818,0.348216,0.663167, + 0.365251,0.582058,0.289645,0.562968,0.321739,0.659680,0.331351,0.576864,0.336226,0.549756,0.981299,0.785413, + 0.313139,0.936084,0.665401,0.918443,0.918902,0.663457,0.844259,0.529434,0.656377,0.895100,0.820625,0.960026, + 0.686673,0.929347,0.322806,0.588471,0.444170,0.788505,0.944844,0.672132,0.972301,0.689843,0.817979,0.708811, + 0.020657,0.581846,0.342411,0.520434,0.278802,0.555486,0.353185,0.566915,0.311357,0.555074,0.280905,0.575584, + 0.273669,0.580485,0.349044,0.603000,0.306752,0.519978,0.350424,0.603002,0.311186,0.589252,0.357201,0.544081, + 0.265295,0.600116,0.358011,0.584016,0.064090,0.163938,0.309372,0.572108,0.331814,0.575625,0.311879,0.538944, + 0.288258,0.561211,0.278420,0.529381,0.703307,0.776254,0.449033,0.925760,0.340564,0.405182,0.835707,0.936614, + 0.436780,0.782765,0.355938,0.536807,0.225393,0.445658,0.927532,0.885432,0.907284,0.909486,0.104301,0.396365, + 0.285661,0.562485,0.285691,0.587778,0.058908,0.913502,0.453071,0.931792,0.301569,0.559142,0.331208,0.595739, + 0.322899,0.956051,0.413153,0.966300,0.182781,0.550158,0.827060,0.939632,0.665717,0.847096,0.848057,0.833556, + 0.272016,0.579172,0.273073,0.576431,0.346165,0.653063,0.443402,0.808847,0.424256,0.561698,0.338252,0.944424, + 0.929980,0.929441,0.337240,0.551968,0.308874,0.574709,0.031767,0.586074,0.334516,0.552394,0.177403,0.675121, + 0.032338,0.435534,0.082168,0.443323,0.341813,0.559568,0.311141,0.552332,0.320608,0.579734,0.055329,0.559023, + 0.326494,0.710609,0.838824,0.206172,0.452274,0.541641,0.438360,0.795585,0.306853,0.970196,0.569370,0.596424, + 0.301517,0.580880,0.533946,0.406659,0.917686,0.906793,0.434124,0.802451,0.419887,0.948862,0.529540,0.531686, + 0.292865,0.941826,0.315027,0.594017,0.315535,0.554899,0.056565,0.300931,0.335827,0.553548,0.926561,0.795046, + 0.918161,0.915289,0.803570,0.968147,0.173187,0.332642,0.817143,0.788822,0.688620,0.935230,0.987241,0.706035, + 0.929122,0.665090,0.441465,0.812312,0.807905,0.963980,0.417391,0.792975,0.300493,0.589815,0.292539,0.566301, + 0.266399,0.936219,0.438120,0.795486,0.284889,0.601898,0.093904,0.170194,0.443737,0.943616,0.280762,0.733286, + 0.991263,0.329428,0.424954,0.818279,0.298963,0.518165,0.344810,0.583854,0.272876,0.559509,0.273078,0.581618, + 0.939159,0.904993,0.076073,0.579104,0.839613,0.686592,0.974073,0.680525,0.427227,0.804384,0.272654,0.530362, + 0.935121,0.895563,0.418619,0.595667,0.961963,0.826363,0.206277,0.325340,0.284240,0.533600,0.962103,0.847429, + 0.273342,0.589709,0.315610,0.914377,0.278591,0.891988,0.347133,0.579590,0.436187,0.803653,0.415101,0.795801, + 0.093907,0.394891,0.290923,0.585320,0.284838,0.586522,0.309872,0.543353,0.304496,0.580478,0.020788,0.318392, + 0.311134,0.682217,0.465561,0.912592,0.924659,0.950520,0.951567,0.701120,0.294710,0.673132,0.307382,0.918694, + 0.931486,0.697334,0.294323,0.523055,0.142756,0.546293,0.955369,0.922988,0.349343,0.566622,0.444197,0.809597, + 0.354093,0.948713,0.296815,0.584207,0.895808,0.685933,0.916983,0.709550,0.207017,0.323798,0.287591,0.557117, + 0.979243,0.848418,0.976541,0.791898,0.288425,0.585271,0.430154,0.921769,0.285519,0.559579,0.434076,0.568628, + 0.294069,0.558254,0.297759,0.582144,0.832851,0.656756,0.296199,0.966844,0.888595,0.706764,0.953035,0.780076, + 0.923398,0.937468,0.310473,0.552597,0.298127,0.542673,0.916316,0.691172,0.733214,0.812252,0.301670,0.569661, + 0.306270,0.934373,0.947819,0.851375,0.276049,0.610794,0.438737,0.549891,0.592058,0.610851,0.267342,0.936374, + 0.951261,0.779965,0.310376,0.683308,0.828422,0.935448,0.533946,0.347483,0.935295,0.814149,0.069819,0.530917, + 0.283950,0.586020,0.278333,0.580593,0.296476,0.587550,0.333486,0.548058,0.424334,0.798802,0.063368,0.326394, + 0.298167,0.539806,0.292224,0.558544,0.322819,0.907223,0.076002,0.585695,0.767931,0.833052,0.558295,0.215434, + 0.281947,0.976027,0.989153,0.697663,0.984350,0.681620,0.943315,0.721739,0.783750,0.784883,0.901200,0.683835, + 0.329584,0.705177,0.358674,0.583126,0.910149,0.672670,0.908209,0.664143,0.257340,0.585592,0.463967,0.768205, + 0.334024,0.529848,0.468745,0.832375,0.274532,0.575465,0.320560,0.931394,0.472096,0.774136,0.307600,0.598819, + 0.210930,0.340962,0.140942,0.709117,0.230402,0.310796,0.148611,0.793980,0.167901,0.318440,0.686385,0.204386, + 0.156557,0.318440,0.067434,0.448918,0.167722,0.850896,0.919110,0.934699,0.982575,0.714551,0.267298,0.569677, + 0.442338,0.812788,0.076808,0.421033,0.932239,0.939120,0.426889,0.917937,0.285109,0.540928,0.679069,0.959005, + 0.317464,0.580430,0.471988,0.820759,0.947707,0.914799,0.931482,0.942510,0.298363,0.582039,0.309090,0.578569, + 0.065958,0.410525,0.929210,0.929114,0.300725,0.548573,0.474241,0.801030,0.339426,0.580175,0.192433,0.783198, + 0.951348,0.896623,0.824182,0.817965,0.457258,0.939795,0.464513,0.938567,0.694018,0.951534,0.402634,0.802990, + 0.968408,0.670506,0.477386,0.937207,0.703351,0.937894,0.426395,0.800058,0.969880,0.715401,0.941135,0.730834, + 0.303316,0.570469,0.274607,0.566777,0.799127,0.803354,0.288432,0.586107,0.163193,0.523409,0.529562,0.647804, + 0.180916,0.395292,0.287877,0.563524,0.311091,0.588997,0.415825,0.794930,0.460725,0.923065,0.297375,0.583056, + 0.285502,0.586060,0.828587,0.935355,0.306254,0.943465,0.053580,0.312802,0.059566,0.332342,0.904855,0.900674, + 0.174246,0.545755,0.937007,0.916723,0.784098,0.780091,0.970622,0.911117,0.421536,0.823107,0.838186,0.830518, + 0.284891,0.560962,0.680556,0.919182,0.292401,0.961371,0.447073,0.572177,0.328992,0.928795,0.272673,0.563434, + 0.086665,0.588634,0.316803,0.720919,0.441756,0.812471,0.676593,0.977007,0.800532,0.794888,0.428699,0.548007, + 0.468281,0.554664,0.308671,0.573428,0.425291,0.915190,0.271910,0.581428,0.421598,0.823324,0.659782,0.938370, + 0.023423,0.409910,0.024208,0.409820,0.661729,0.811470,0.428701,0.931018,0.415589,0.964724,0.779465,0.805407, + 0.325658,0.925590,0.324848,0.538453,0.415330,0.951734,0.827560,0.937665,0.932267,0.651353,0.268326,0.577335, + 0.279816,0.598398,0.291106,0.534678,0.664546,0.851026,0.083499,0.414342,0.308439,0.931574,0.360605,0.578848, + 0.908854,0.659772,0.529540,0.610851,0.272298,0.938005,0.288231,0.579808,0.313892,0.588000,0.319240,0.565994, + 0.320186,0.969334,0.302870,0.567547,0.276507,0.570406,0.289312,0.576394,0.292369,0.585085,0.973585,0.786370, + 0.333956,0.572930,0.177178,0.703198,0.063668,0.262540,0.105517,0.345879,0.935625,0.932207,0.304617,0.536100, + 0.978311,0.794426,0.080607,0.954660,0.940006,0.928770,0.976045,0.792252,0.780138,0.659105,0.831093,0.939405, + 0.302627,0.598572,0.674826,0.818278,0.176552,0.697429,0.969224,0.819927,0.917228,0.907313,0.932732,0.796055, + 0.958644,0.718302,0.918367,0.663473,0.914947,0.902240,0.420259,0.844650,0.446759,0.947735,0.319995,0.688978, + 0.339084,0.583419,0.357144,0.542380,0.074600,0.583178,0.958039,0.717712,0.320443,0.585341,0.655183,0.929885, + 0.335181,0.529041,0.944237,0.729957,0.840875,0.950137,0.310473,0.560409,0.147190,0.324609,0.282018,0.536906, + 0.401235,0.790256,0.281175,0.591711,0.291409,0.556899,0.276270,0.580528,0.048825,0.552345,0.990470,0.704954, + 0.806347,0.936457,0.776010,0.770833,0.361592,0.733007,0.333160,0.700131,0.943494,0.726961,0.422187,0.943172, + 0.812574,0.789439,0.936565,0.944559,0.669030,0.840872,0.951019,0.905553,0.726938,0.919779,0.897762,0.696328, + 0.889772,0.708145,0.307592,0.597382,0.025743,0.434673,0.278709,0.555163,0.955005,0.840030,0.954548,0.782739, + 0.917083,0.914798,0.314327,0.570064,0.439960,0.782537,0.339757,0.552231,0.305827,0.608268,0.282711,0.551848, + 0.211100,0.448400,0.339553,0.567628,0.315111,0.586455,0.299514,0.702548,0.057992,0.458174,0.029022,0.928185, + 0.058869,0.317789,0.675033,0.921419,0.843245,0.813212,0.351220,0.982444,0.343352,0.548112,0.286486,0.586616, + 0.407317,0.788782,0.689238,0.932918,0.808527,0.830966,0.654262,0.801958,0.420993,0.799976,0.941554,0.934929, + 0.711187,0.930119,0.077674,0.317774,0.311979,0.603078,0.278302,0.560409,0.905567,0.665209,0.430087,0.810103, + 0.826894,0.833533,0.282852,0.536121,0.799799,0.948246,0.354720,0.544068,0.328482,0.583528,0.381506,0.330946, + 0.273963,0.583896,0.330002,0.901643,0.444463,0.809847,0.958511,0.921039,0.931879,0.723307,0.732902,0.929105, + 0.366373,0.930280,0.324519,0.521347,0.932048,0.696875,0.901425,0.679438,0.409966,0.921281,0.397209,0.555300, + 0.434406,0.966414,0.789319,0.815058,0.081084,0.556327,0.298598,0.521491,0.308400,0.542917,0.337078,0.574173, + 0.312842,0.570643,0.277124,0.653705,0.479588,0.579926,0.307976,0.547623,0.414431,0.609438,0.332131,0.560445, + 0.288924,0.559947,0.295112,0.911026,0.271037,0.603233,0.062497,0.346008,0.953642,0.785255,0.431715,0.944331, + 0.301681,0.559052,0.299812,0.553576,0.681452,0.931277,0.325100,0.552632,0.397333,0.553270,0.917943,0.806073, + 0.957739,0.778533,0.704774,0.925471,0.317051,0.567254,0.305812,0.953796,0.925150,0.899463,0.289853,0.579552, + 0.940576,0.694143,0.270722,0.531542,0.351522,0.690830,0.038900,0.553727,0.420215,0.950349,0.300999,0.515069, + 0.313173,0.602189,0.273073,0.583074,0.682030,0.940050,0.804070,0.798037,0.931345,0.899234,0.698765,0.934076, + 0.771800,0.808506,0.095416,0.442538,0.295778,0.544124,0.443916,0.813955,0.331417,0.532690,0.166764,0.398715, + 0.444042,0.809830,0.296165,0.651763,0.301094,0.587494,0.533946,0.416417,0.937307,0.911802,0.928752,0.702140, + 0.969881,0.820389,0.909094,0.792821,0.276441,0.562122,0.915660,0.814114,0.975274,0.789249,0.767698,0.932723, + 0.283567,0.662439,0.930048,0.928353,0.327803,0.956511,0.844022,0.701317,0.274177,0.560344,0.311351,0.561781, + 0.343928,0.581101,0.345374,0.554301,0.331833,0.585766,0.331272,0.528380,0.949873,0.888453,0.054918,0.331922, + 0.323557,0.898620,0.603767,0.735027,0.442792,0.789502,0.952500,0.679364,0.448496,0.595667,0.318848,0.524102, + 0.344130,0.589191,0.913642,0.776715,0.347888,0.602467,0.336638,0.670151,0.404985,0.831414,0.305869,0.558427, + 0.686385,0.424701,0.046737,0.328110,0.052003,0.687423,0.915974,0.900045,0.936669,0.903161,0.963189,0.775372, + 0.324520,0.594931,0.960471,0.902463,0.940160,0.934220,0.440470,0.783468,0.314709,0.570201,0.926187,0.786893, + 0.934922,0.779612,0.908639,0.921717,0.358009,0.574749,0.355886,0.581042,0.337035,0.950342,0.319273,0.430652, + 0.918579,0.662967,0.062307,0.394741,0.330315,0.590074,0.309417,0.591337,0.310976,0.592618,0.684047,0.944818, + 0.813308,0.805452,0.282704,0.447358,0.668302,0.934594,0.295913,0.611195,0.316281,0.566825,0.430586,0.799806, + 0.214110,0.820127,0.354083,0.545224,0.316579,0.597821,0.310105,0.597857,0.187416,0.471382,0.940539,0.935754, + 0.961498,0.846839,0.288889,0.556874,0.310075,0.563425,0.940284,0.891858,0.916347,0.918557,0.305047,0.559509, + 0.834219,0.849663,0.306965,0.670314,0.273698,0.956904,0.326997,0.442303,0.073689,0.423269,0.070270,0.546865, + 0.436457,0.806391,0.686385,0.139650,0.282541,0.592859,0.927492,0.666926,0.953416,0.651940,0.446959,0.812575, + 0.303217,0.586124,0.953612,0.678974,0.888383,0.695792,0.187024,0.305410,0.930423,0.696878,0.275029,0.729873, + 0.328897,0.951366,0.800153,0.827621,0.315285,0.573273,0.436977,0.787189,0.445368,0.811078,0.430344,0.912265, + 0.440199,0.782478,0.342120,0.471183,0.433301,0.947857,0.285641,0.659017,0.310060,0.572349,0.066830,0.314363, + 0.079477,0.406388,0.076291,0.518747,0.073746,0.964507,0.066271,0.964543,0.162442,0.306388,0.176053,0.690860, + 0.196398,0.697284,0.193013,0.311472,0.215074,0.674715,0.699982,0.939636,0.915353,0.915395,0.274528,0.583267, + 0.783729,0.793760,0.264946,0.551540,0.472072,0.784208,0.936078,0.945013,0.969228,0.778784,0.953114,0.781780, + 0.830356,0.861934,0.814177,0.826712,0.030735,0.558670,0.167272,0.314157,0.332544,0.978906,0.291847,0.585495, + 0.309898,0.551522,0.334290,0.946255,0.327557,0.711479,0.313668,0.884284,0.310548,0.588914,0.521031,0.737573, + 0.789273,0.845125,0.932309,0.723739,0.928290,0.650019,0.823131,0.835632,0.514275,0.735321,0.427245,0.578874, + 0.605456,0.732212,0.972816,0.709092,0.401159,0.790465,0.340080,0.567767,0.303102,0.590308,0.339253,0.585176, + 0.928694,0.721290,0.787932,0.677672,0.267065,0.565863,0.962700,0.847040,0.974094,0.785901,0.812802,0.660161, + 0.412810,0.790642,0.441280,0.784274,0.413785,0.946790,0.647542,0.838143,0.297125,0.910025,0.339827,0.533041, + 0.300025,0.612363,0.271915,0.593449,0.306933,0.569845,0.442005,0.823315,0.321709,0.599756,0.216453,0.687452, + 0.311264,0.588443,0.312171,0.588841,0.328578,0.533711,0.315373,0.659535,0.269661,0.711740,0.808854,0.966942, + 0.321082,0.588847,0.779104,0.803163,0.523282,0.519132,0.932600,0.683832,0.430564,0.808919,0.958637,0.725198, + 0.184621,0.703725,0.660752,0.925238,0.424127,0.556982,0.895689,0.703171,0.436324,0.960881,0.322768,0.584541, + 0.291223,0.560194,0.275905,0.563941,0.468108,0.568120,0.291715,0.559450,0.442193,0.537831,0.282613,0.658340, + 0.352716,0.961230,0.288693,0.559260,0.075346,0.933282,0.106181,0.919203,0.074620,0.387427,0.082925,0.289786, + 0.072843,0.313937,0.060056,0.283967,0.341061,0.567080,0.975317,0.792916,0.471595,0.905118,0.271765,0.565596, + 0.979102,0.789763,0.288097,0.582500,0.923700,0.930808,0.523282,0.516880,0.932149,0.914416,0.932581,0.794217, + 0.952380,0.780817,0.917315,0.691101,0.274235,0.562108,0.105341,0.450753,0.307945,0.601321,0.352055,0.565840, + 0.297384,0.566349,0.470438,0.534073,0.262257,0.947218,0.325090,0.576630,0.929447,0.700087,0.934141,0.672944, + 0.339452,0.446148,0.303316,0.578281,0.090616,0.336120,0.345988,0.930732,0.931116,0.722416,0.826136,0.920465, + 0.310516,0.588007,0.436952,0.786636,0.316629,0.935135,0.297231,0.556177,0.315180,0.590533,0.274977,0.560609, + 0.276342,0.571046,0.286120,0.580981,0.193634,0.199817,0.302402,0.574894,0.286464,0.565121,0.960537,0.826838, + 0.694354,0.962594,0.291880,0.460320,0.283026,0.576572,0.927711,0.885422,0.929031,0.641525,0.299182,0.725433, + 0.184284,0.547639,0.291888,0.537016,0.043341,0.572316,0.317198,0.567461,0.328625,0.550081,0.443625,0.813799, + 0.422977,0.812513,0.272953,0.588184,0.271843,0.604004,0.268331,0.930382,0.337451,0.574235,0.155914,0.805045, + 0.316173,0.574711,0.317897,0.567567,0.840168,0.825766,0.189129,0.472205,0.907242,0.687216,0.337341,0.966803, + 0.912423,0.677541,0.397203,0.958392,0.801108,0.800341,0.300153,0.580347,0.931261,0.795469,0.349092,0.602382, + 0.307871,0.535131,0.313273,0.590071,0.290205,0.556647,0.295660,0.930975,0.310042,0.579408,0.299376,0.580118, + 0.343296,0.539302,0.346568,0.538658,0.441100,0.783974,0.277801,0.562250,0.276622,0.564245,0.173681,0.410587, + 0.381506,0.044402,0.101359,0.313048,0.293726,0.574272,0.272673,0.581656,0.987889,0.811142,0.300545,0.587589, + 0.643837,0.794313,0.340575,0.880593,0.294075,0.540914,0.683516,0.900777,0.334350,0.947333,0.902444,0.917785, + 0.425603,0.801369,0.277350,0.562357,0.318709,0.579002,0.283896,0.575563,0.316424,0.587794,0.335772,0.552347, + 0.320899,0.642850,0.285374,0.555437,0.413462,0.944007,0.841590,0.702742,0.929709,0.694409,0.987561,0.705136, + 0.289310,0.554358,0.319191,0.592585,0.292311,0.551668,0.898536,0.688985,0.698533,0.935135,0.915364,0.691205, + 0.094256,0.582294,0.686385,0.407507,0.280301,0.576140,0.308546,0.599051,0.287632,0.556614,0.329753,0.586110, + 0.047807,0.450034,0.283875,0.551043,0.303069,0.564629,0.069271,0.310877,0.047561,0.955255,0.299267,0.534641, + 0.903518,0.667571,0.803850,0.802922,0.455747,0.941652,0.710054,0.942678,0.939794,0.893367,0.354127,0.526355, + 0.557939,0.182384,0.445633,0.811328,0.288705,0.704426,0.401856,0.584181,0.279560,0.568203,0.072390,0.436787, + 0.277252,0.555347,0.169936,0.710784,0.089968,0.914537,0.991332,0.704783,0.913358,0.767355,0.037631,0.578416, + 0.278302,0.573428,0.961092,0.826299,0.954811,0.781369,0.274374,0.543587,0.844259,0.558883,0.423794,0.930389, + 0.313680,0.444897,0.810855,0.789466,0.831060,0.839968,0.516526,0.516880,0.932192,0.722149,0.800613,0.787844, + 0.381506,0.488401,0.663932,0.925603,0.599263,0.608926,0.806752,0.798823,0.828282,0.934221,0.911520,0.922799, + 0.425602,0.801369,0.991263,0.078507,0.348006,0.555034,0.081628,0.921906,0.358857,0.568975,0.059245,0.382024, + 0.355627,0.695992,0.433549,0.807651,0.936947,0.902933,0.094023,0.939212,0.424454,0.940291,0.712675,0.963387, + 0.888649,0.683111,0.072290,0.411924,0.988545,0.811057,0.924127,0.915568,0.937260,0.918911,0.919860,0.805855, + 0.295908,0.521298,0.919809,0.679592,0.313565,0.558874,0.326566,0.403541,0.292343,0.575666,0.434542,0.821000, + 0.421093,0.797604,0.303316,0.567865,0.381506,0.408142,0.983283,0.681109,0.415474,0.789652,0.029209,0.596035, + 0.928014,0.720969,0.300415,0.688438,0.932624,0.931323,0.054666,0.572465,0.272602,0.575183,0.266613,0.551235, + 0.353164,0.544885,0.297898,0.919194,0.338331,0.562745,0.312795,0.547359,0.309491,0.516665,0.325781,0.564642, + 0.909359,0.659996,0.057276,0.589848,0.963736,0.791030,0.198349,0.266884,0.911735,0.787689,0.697730,0.805312, + 0.048255,0.310544,0.286151,0.532879,0.417646,0.525660,0.289712,0.555809,0.294241,0.556954,0.423607,0.778781, + 0.449203,0.913430,0.437196,0.785535,0.334054,0.523672,0.290442,0.598557,0.806030,0.805242,0.681932,0.942077, + 0.940238,0.708805,0.438737,0.556647,0.986232,0.706650,0.227995,0.423507,0.353093,0.583074,0.929576,0.716767, + 0.958177,0.725806,0.420470,0.572606,0.422327,0.797579,0.268642,0.581427,0.343727,0.584004,0.439179,0.838658, + 0.293457,0.664289,0.440987,0.790965,0.089924,0.448847,0.225034,0.688179,0.931295,0.900188,0.908733,0.817543, + 0.991263,0.156229,0.953111,0.900694,0.970600,0.822235,0.913137,0.917099,0.908117,0.920313,0.918823,0.807743, + 0.273079,0.573812,0.980498,0.792409,0.310931,0.571708,0.480676,0.572167,0.358312,0.544507,0.991263,0.061571, + 0.337112,0.557293,0.295369,0.567484,0.331300,0.677719,0.311571,0.549123,0.284033,0.595318,0.327737,0.553180, + 0.471313,0.939858,0.651223,0.919750,0.939740,0.934823,0.947714,0.913932,0.927673,0.665740,0.306166,0.568926, + 0.437202,0.573567,0.916924,0.692533,0.940605,0.730023,0.829359,0.701247,0.323978,0.598935,0.335882,0.561701, + 0.779960,0.811129,0.764037,0.843354,0.714630,0.932927,0.061443,0.936173,0.340666,0.946028,0.280815,0.583451, + 0.068978,0.430637,0.323147,0.541941,0.273170,0.583718,0.314953,0.589606,0.332696,0.547669,0.341275,0.583859, + 0.407943,0.653283,0.457923,0.887386,0.284123,0.947728,0.055111,0.333872,0.914419,0.923924,0.068312,0.454393, + 0.971001,0.910215,0.926914,0.886361,0.924092,0.794351,0.304844,0.558226,0.517089,0.642981,0.307382,0.923989, + 0.920801,0.926286,0.332777,0.582525,0.339961,0.552234,0.281045,0.545414,0.067696,0.445817,0.306704,0.535906, + 0.442750,0.813328,0.285439,0.563891,0.045881,0.560685,0.098064,0.347148,0.068932,0.288710,0.049302,0.686252, + 0.082578,0.291415,0.091688,0.894175,0.098599,0.296016,0.099075,0.397785,0.076612,0.952665,0.066331,0.964812, + 0.091906,0.313937,0.285943,0.602330,0.426037,0.955413,0.288509,0.577576,0.412936,0.794889,0.802904,0.805498, + 0.838208,0.937557,0.303447,0.584217,0.973058,0.696936,0.060701,0.916307,0.772699,0.809207,0.930551,0.693681, + 0.313532,0.589388,0.355133,0.545357,0.312562,0.548214,0.325450,0.576681,0.392825,0.569790,0.054255,0.282306, + 0.036003,0.289884,0.090025,0.313937,0.363200,0.905189,0.914079,0.776158,0.957060,0.778723,0.446320,0.811598, + 0.320102,0.940334,0.911516,0.809708,0.935869,0.937668,0.267122,0.941413,0.794789,0.946862,0.436777,0.941765, + 0.028292,0.435534,0.316238,0.568466,0.316687,0.524432,0.310898,0.589113,0.305211,0.529125,0.051948,0.579322, + 0.282552,0.536980,0.292647,0.611579,0.294495,0.584472,0.076808,0.450034,0.274607,0.558965,0.603767,0.608926, + 0.329043,0.702447,0.426448,0.915336,0.437234,0.559165,0.193790,0.429353,0.052710,0.307024,0.944983,0.721996, + 0.345866,0.566313,0.075274,0.915597,0.361207,0.569359,0.321337,0.579555,0.310811,0.562004,0.361345,0.582312, + 0.426982,0.802927,0.930926,0.908679,0.924394,0.938202,0.929234,0.799428,0.899740,0.816344,0.332959,0.934290, + 0.921205,0.930097,0.432687,0.970319,0.915400,0.923631,0.821470,0.797081,0.281740,0.601947,0.324694,0.925925, + 0.341647,0.598250,0.293417,0.577537,0.336938,0.552478,0.282097,0.543635,0.306053,0.570098,0.700080,0.842662, + 0.470802,0.958840,0.956681,0.684796,0.020326,0.600244,0.838824,0.405900,0.473162,0.643275,0.906888,0.664723, + 0.286570,0.577226,0.327254,0.673463,0.409736,0.941170,0.299288,0.522582,0.192766,0.410527,0.290167,0.524171, + 0.262870,0.553187,0.440981,0.784398,0.963915,0.991328,0.827205,0.939062,0.925385,0.807066,0.297370,0.582288, + 0.302872,0.571771,0.437297,0.787205,0.329980,0.582713,0.790399,0.807997,0.297225,0.545781,0.686385,0.156844, + 0.704065,0.937370,0.282561,0.535731,0.283490,0.559439,0.917098,0.805481,0.934413,0.943537,0.773098,0.817355, + 0.941522,0.960236,0.942119,0.959820,0.284938,0.529703,0.522720,0.732507,0.341596,0.943902,0.052912,0.552925, + 0.280954,0.575068,0.279222,0.574377,0.287072,0.563383,0.310758,0.589721,0.296610,0.582836,0.309365,0.571050, + 0.686568,0.937129,0.302763,0.559279,0.678082,0.841044,0.278358,0.541851,0.447381,0.812599,0.437202,0.580322, + 0.451327,0.601555,0.960424,0.682196,0.928388,0.666097,0.931651,0.665420,0.311684,0.538750,0.783607,0.781470, + 0.306972,0.644340,0.298616,0.582822,0.290623,0.560108,0.275985,0.567238,0.320612,0.606728,0.331055,0.535645, + 0.929558,0.646990,0.282790,0.571924,0.452541,0.519880,0.533946,0.202496,0.329265,0.546784,0.055463,0.302376, + 0.970499,0.819800,0.792270,0.798157,0.317397,0.712185,0.269153,0.595503,0.332684,0.953701,0.970840,0.909249, + 0.342668,0.549725,0.933706,0.648269,0.440532,0.571877,0.284455,0.552018,0.921543,0.929784,0.310880,0.562975, + 0.933291,0.683162,0.803916,0.858980,0.411838,0.961911,0.532703,0.569026,0.291435,0.562214,0.305467,0.578529, + 0.276942,0.568954,0.991263,0.310767,0.332058,0.576042,0.293404,0.592811,0.278201,0.569682,0.278119,0.571348, + 0.443042,0.813485,0.316810,0.568350,0.297595,0.537374,0.788444,0.816473,0.061596,0.977121,0.069705,0.599376, + 0.048347,0.696291,0.063920,0.700635,0.302998,0.581200,0.933017,0.776117,0.353093,0.565121,0.825795,0.952765, + 0.341642,0.581193,0.693077,0.932180,0.936992,0.939462,0.350308,0.551064,0.811945,0.762754,0.937162,0.901172, + 0.936750,0.812289,0.161186,0.338005,0.266022,0.581486,0.353509,0.566944,0.313383,0.591859,0.285368,0.586537, + 0.334530,0.549240,0.091521,0.574038,0.305861,0.589575,0.076907,0.572403,0.304407,0.607355,0.016868,0.302866, + 0.340261,0.407179,0.177855,0.699365,0.037829,0.422410,0.812799,0.801864,0.213828,0.545657,0.331571,0.934284, + 0.791256,0.788637,0.971140,0.689288,0.283542,0.576546,0.821029,0.783032,0.424810,0.802680,0.298129,0.562881, + 0.970749,0.727589,0.782039,0.798085,0.714056,0.933811,0.789779,0.945477,0.289864,0.938401,0.277006,0.543700, + 0.306673,0.516491,0.459760,0.914774,0.457790,0.963932,0.287274,0.572904,0.421920,0.919022,0.436371,0.953503, + 0.307494,0.608525,0.796923,0.818018,0.793482,0.794553,0.931821,0.777476,0.301681,0.930106,0.303879,0.572558, + 0.928005,0.923761,0.899267,0.815060,0.686385,0.202183,0.269898,0.588007,0.916106,0.909676,0.932905,0.829214, + 0.932027,0.897735,0.335535,0.558848,0.325086,0.543055,0.294888,0.584140,0.219775,0.683861,0.314588,0.558255, + 0.275424,0.540411,0.087157,0.167473,0.340949,0.571529,0.289936,0.565724,0.285765,0.560039,0.286577,0.672532, + 0.312921,0.589292,0.397209,0.548545,0.784568,0.789018,0.689578,0.950461,0.278376,0.558074,0.325187,0.581310, + 0.369761,0.914990,0.437118,0.779251,0.946314,0.672713,0.974297,0.712682,0.306755,0.596061,0.776895,0.773261, + 0.907798,0.707775,0.951589,0.776216,0.361501,0.581764,0.278085,0.551116,0.334047,0.954047,0.295139,0.557582, + 0.313297,0.570806,0.282545,0.535009,0.338750,0.588188,0.337247,0.581524,0.181366,0.716173,0.086389,0.453361, + 0.157517,0.330645,0.169298,0.331588,0.181940,0.299702,0.420714,0.798149,0.309663,0.530541,0.915666,0.918911, + 0.955466,0.813276,0.900008,0.917890,0.959894,0.783790,0.425796,0.943493,0.455622,0.819048,0.946774,0.850866, + 0.274782,0.589873,0.912154,0.810994,0.950444,0.901969,0.679200,0.844248,0.327548,0.939845,0.440033,0.579454, + 0.916264,0.923716,0.533946,0.157152,0.298972,0.657644,0.285384,0.555481,0.439619,0.781917,0.442047,0.812629, + 0.313407,0.597106,0.329879,0.587315,0.299151,0.546250,0.603766,0.647779,0.280215,0.576704,0.311542,0.594487, + 0.985050,0.707098,0.475525,0.838013,0.283593,0.602710,0.830572,0.807370,0.285284,0.591784,0.297605,0.581898, + 0.333294,0.578175,0.280162,0.554212,0.301352,0.559253,0.308808,0.600107,0.390426,0.642981,0.316643,0.935722, + 0.061313,0.304909,0.289052,0.560547,0.175106,0.412787,0.276932,0.590550,0.444569,0.949599,0.314072,0.922145, + 0.890332,0.704561,0.971409,0.819913,0.294628,0.553442,0.929143,0.912973,0.940525,0.935057,0.796425,0.825296, + 0.826894,0.833395,0.680513,0.933753,0.190450,0.700064,0.308945,0.564840,0.806396,0.806628,0.966312,0.798763, + 0.967466,0.796955,0.346274,0.409564,0.829485,0.851547,0.065919,0.381885,0.337003,0.585098,0.275099,0.600944, + 0.333976,0.960639,0.102243,0.414981,0.428140,0.573570,0.281957,0.563225,0.327967,0.725184,0.677017,0.911026, + 0.979277,0.833736,0.422517,0.940133,0.945158,0.845490,0.800383,0.807732,0.468082,0.580834,0.778023,0.771209, + 0.852192,0.826082,0.816924,0.790391,0.533946,0.206792,0.697233,0.945364,0.083046,0.301003,0.443163,0.826687, + 0.308644,0.571328,0.214175,0.795228,0.031434,0.918078,0.340878,0.539374,0.086206,0.579494,0.272858,0.588314, + 0.313197,0.542708,0.309939,0.521989,0.054738,0.281014,0.067727,0.259979,0.060056,0.343906,0.025249,0.424039, + 0.105991,0.956619,0.073528,0.964243,0.267731,0.580563,0.060056,0.345787,0.800668,0.846668,0.912473,0.917863, + 0.353005,0.956472,0.915953,0.923849,0.843944,0.813159,0.550735,0.225932,0.174120,0.459877,0.923462,0.909156, + 0.957800,0.920419,0.328565,0.551064,0.223185,0.461539,0.917041,0.813751,0.950025,0.769406,0.955350,0.814965, + 0.359093,0.936403,0.422309,0.795711,0.264269,0.578228,0.415474,0.829256,0.357064,0.923320,0.442692,0.789358, + 0.440919,0.783675,0.296959,0.582159,0.167906,0.783237,0.110673,0.582586,0.049923,0.406869,0.296702,0.518554, + 0.353020,0.541990,0.910978,0.673986,0.406575,0.925670,0.288023,0.580774,0.313949,0.698461,0.801482,0.767838, + 0.194042,0.593416,0.780861,0.775746,0.040113,0.463715,0.415101,0.795801,0.675620,0.907000,0.937623,0.831936, + 0.273074,0.542433,0.422706,0.663709,0.258477,0.583559,0.169336,0.562240,0.297601,0.581908,0.308071,0.693230, + 0.483555,0.564901,0.443004,0.952933,0.293475,0.577633,0.381506,0.312259,0.403169,0.801666,0.338407,0.923912, + 0.285489,0.585050,0.447224,0.812825,0.061445,0.540079,0.056993,0.262678,0.922013,0.926668,0.339845,0.522608, + 0.668953,0.911328,0.345808,0.530243,0.450638,0.938864,0.295582,0.926459,0.324520,0.598419,0.430558,0.797461, + 0.931221,0.942284,0.830868,0.807955,0.925967,0.931511,0.273073,0.565121,0.914914,0.923404,0.711841,0.942202, + 0.656998,0.959634,0.031622,0.918236,0.286847,0.553736,0.356733,0.541377,0.418223,0.923997,0.339027,0.583277, + 0.305891,0.615413,0.936934,0.901356,0.332265,0.697674,0.420470,0.565851,0.296750,0.576979,0.826980,0.927667, + 0.825970,0.934523,0.914812,0.903198,0.181241,0.447720,0.776528,0.774143,0.443246,0.809082,0.830307,0.805748, + 0.929445,0.695968,0.343399,0.534802,0.335600,0.574963,0.151508,0.308314,0.820068,0.848727,0.684433,0.939206, + 0.397677,0.544986,0.284765,0.551343,0.315609,0.579371,0.317320,0.536805,0.354062,0.567390,0.307339,0.599447, + 0.284557,0.574948,0.293000,0.558441,0.287873,0.560963,0.440019,0.782179,0.273113,0.543270,0.296340,0.538333, + 0.327543,0.534324,0.286800,0.560405,0.437638,0.939555,0.346824,0.555497,0.283309,0.551635,0.292613,0.576529, + 0.328846,0.554480,0.331442,0.927052,0.951342,0.835305,0.941558,0.933842,0.922077,0.892060,0.948440,0.930034, + 0.936112,0.923011,0.944649,0.931917,0.845488,0.822143,0.921123,0.670913,0.435979,0.801782,0.949134,0.902366, + 0.421450,0.601555,0.310664,0.610268,0.306411,0.576881,0.317869,0.647997,0.291668,0.587567,0.349257,0.956619, + 0.316402,0.567808,0.297160,0.587014,0.435723,0.801813,0.295117,0.589780,0.307666,0.554869,0.935932,0.763637, + 0.198213,0.405793,0.309020,0.553548,0.280264,0.566143,0.727498,0.916938,0.786834,0.800257,0.419637,0.821975, + 0.283485,0.565595,0.916025,0.664080,0.816566,0.792569,0.270112,0.602855,0.315701,0.559954,0.656350,0.930855, + 0.810552,0.800100,0.991263,0.337896,0.426131,0.800495,0.686385,0.206482,0.314644,0.604571,0.358009,0.582401, + 0.332719,0.531199,0.311946,0.561392,0.349244,0.568621,0.024334,0.326658,0.053922,0.563778,0.304171,0.585299, + 0.298567,0.567470,0.182663,0.712860,0.319324,0.582045,0.146250,0.828343,0.268850,0.562076,0.301594,0.725272, + 0.457557,0.526254,0.293632,0.566621,0.321743,0.530358,0.045875,0.393418,0.784280,0.790661,0.928050,0.716250, + 0.426431,0.818971,0.314530,0.669182,0.284490,0.586597,0.341114,0.540384,0.278591,0.929649,0.335314,0.555022, + 0.799038,0.789606,0.864197,0.843191,0.305835,0.572247,0.280190,0.537556,0.302375,0.566773,0.968444,0.658007, + 0.296755,0.554389,0.432083,0.808616,0.915829,0.914874,0.794340,0.813778,0.683120,0.800344,0.989334,0.704049, + 0.286338,0.564706,0.313678,0.570941,0.840643,0.825812,0.980596,0.794940,0.939228,0.922872,0.297264,0.522561, + 0.424973,0.967222,0.310962,0.561187,0.273079,0.566000,0.324695,0.705530,0.547231,0.664577,0.934959,0.894540, + 0.410772,0.793977,0.654411,0.774207,0.933256,0.936569,0.909094,0.768139,0.894236,0.937233,0.302318,0.577151, + 0.302926,0.597228,0.690394,0.926442,0.708678,0.933794,0.901914,0.912705,0.977557,0.788179,0.422351,0.899595, + 0.939127,0.891220,0.915771,0.689781,0.677262,0.847491,0.693082,0.949204,0.558083,0.605709,0.268501,0.938843, + 0.816687,0.809661,0.310773,0.572698,0.309526,0.517469,0.304913,0.505290,0.299355,0.580922,0.041887,0.563787, + 0.169435,0.415218,0.289887,0.557125,0.282700,0.919115,0.340109,0.524575,0.942958,0.640036,0.282442,0.558335, + 0.016378,0.314817,0.021239,0.316107,0.273074,0.551060,0.068215,0.950226,0.073808,0.954928,0.271115,0.532046, + 0.269829,0.581751,0.044336,0.577848,0.935425,0.923635,0.815204,0.788181,0.415474,0.798931,0.592058,0.531686, + 0.974041,0.697126,0.276193,0.551521,0.326133,0.549502,0.428699,0.554762,0.518328,0.642981,0.153440,0.455215, + 0.903140,0.889064,0.363159,0.582187,0.310112,0.583829,0.381506,0.374998,0.067508,0.579725,0.035292,0.585365, + 0.303485,0.582491,0.423071,0.780105,0.055172,0.291312,0.278552,0.696545,0.928942,0.711236,0.291074,0.586641, + 0.780123,0.811375,0.276014,0.577590,0.089874,0.953002,0.825669,0.817513,0.972714,0.798581,0.347018,0.526594, + 0.798861,0.665969,0.274528,0.580668,0.921968,0.893018,0.179747,0.342506,0.279572,0.577907,0.191990,0.318497, + 0.900326,0.917914,0.195348,0.715598,0.263303,0.941134,0.217913,0.443023,0.062307,0.469550,0.271804,0.559508, + 0.346685,0.563659,0.474043,0.827200,0.417238,0.571969,0.424897,0.797463,0.444375,0.813900,0.557111,0.556419, + 0.709762,0.920373,0.798221,0.678841,0.959472,0.680483,0.986229,0.705617,0.927215,0.720492,0.381506,0.416729, + 0.987481,0.706536,0.665075,0.854498,0.360674,0.441654,0.216543,0.461838,0.709543,0.832971,0.070755,0.476412, + 0.445083,0.814582,0.972243,0.910894,0.174763,0.768550,0.318613,0.933282,0.344400,0.558752,0.468608,0.931218, + 0.304559,0.529084,0.284495,0.597418,0.973652,0.694870,0.909092,0.673778,0.171975,0.307850,0.049272,0.481206, + 0.201024,0.314010,0.140942,0.705635,0.286607,0.716740,0.426983,0.814773,0.319342,0.972624,0.907563,0.910570, + 0.597011,0.643275,0.412374,0.949817,0.940549,0.934669,0.909178,0.712513,0.338252,0.939129,0.444300,0.788595, + 0.937944,0.918278,0.034497,0.566249,0.349159,0.605660,0.307751,0.535086,0.287673,0.567922,0.286686,0.580766, + 0.297907,0.431697,0.313552,0.538295,0.918047,0.916244,0.421789,0.945381,0.940206,0.935445,0.436804,0.783318, + 0.189865,0.700799,0.797872,0.973626,0.891187,0.707298,0.956062,0.839302,0.419981,0.560614,0.285920,0.561321, + 0.299948,0.559160,0.313382,0.548580,0.888817,0.707120,0.676721,0.844760,0.444299,0.929005,0.444229,0.582752, + 0.521030,0.514628,0.948743,0.915375,0.645057,0.958289,0.092839,0.456251,0.922791,0.925480,0.468281,0.547909, + 0.673871,0.838853,0.317877,0.419752,0.067144,0.568893,0.303069,0.673386,0.072009,0.573566,0.345695,0.579386, + 0.429028,0.834255,0.468410,0.957388,0.684801,0.816014,0.057828,0.331349,0.350367,0.575996,0.599826,0.735027, + 0.937189,0.942352,0.407405,0.788566,0.357702,0.959976,0.312726,0.964208,0.940624,0.929655,0.918654,0.935109, + 0.313274,0.424941,0.409506,0.961058,0.334549,0.553851,0.295840,0.553058,0.928820,0.716525,0.640733,0.797270, + 0.726255,0.929249,0.470346,0.836392,0.928440,0.923712,0.550208,0.177089,0.182626,0.739960,0.812139,0.678460, + 0.686894,0.929650,0.291794,0.585951,0.342426,0.684079,0.285397,0.890736,0.264679,0.551761,0.440739,0.783376, + 0.280037,0.577689,0.279518,0.554976,0.297613,0.585452,0.287359,0.553578,0.291304,0.569232,0.044664,0.588711, + 0.425450,0.924217,0.017262,0.303329,0.015442,0.302693,0.026040,0.313937,0.030087,0.313937,0.020380,0.317603, + 0.019226,0.318524,0.015185,0.316325,0.031242,0.288443,0.028205,0.313937,0.023130,0.321727,0.412852,0.791547, + 0.973884,0.717942,0.911754,0.816316,0.444242,0.573045,0.901707,0.677803,0.800804,0.838827,0.846137,0.822131, + 0.951931,0.691213,0.825415,0.931185,0.063847,0.481527,0.280138,0.557457,0.435895,0.803814,0.909853,0.658859, + 0.921531,0.670590,0.954108,0.814317,0.910611,0.921402,0.296739,0.575830,0.444572,0.810329,0.312348,0.552581, + 0.701252,0.921381,0.189788,0.564038,0.084109,0.337990,0.180885,0.702741,0.975090,0.786965,0.334581,0.431351, + 0.328566,0.594414,0.051134,0.568030,0.336844,0.583317,0.279698,0.561156,0.433206,0.825239,0.317424,0.578281, + 0.280248,0.576209,0.420144,0.818420,0.270924,0.594487,0.047268,0.313937,0.267505,0.703162,0.267230,0.729945, + 0.797358,0.789213,0.951217,0.774430,0.535234,0.545718,0.186822,0.455624,0.439479,0.781281,0.154752,0.684134, + 0.059059,0.577041,0.296438,0.520661,0.068690,0.964443,0.278180,0.963049,0.965206,0.915527,0.343315,0.550883, + 0.278505,0.553880,0.303530,0.591133,0.698997,0.933018,0.279598,0.564221,0.065406,0.579201,0.264221,0.516700, + 0.288263,0.584217,0.314464,0.591392,0.290908,0.569260,0.327637,0.706867,0.285676,0.561725,0.940284,0.928529, + 0.338254,0.553309,0.298541,0.677071,0.686385,0.338648,0.781741,0.588333,0.913239,0.710541,0.726056,0.955419, + 0.928362,0.648349,0.303390,0.577405,0.262355,0.941033,0.826285,0.936416,0.311627,0.531765,0.392362,0.787066, + 0.256278,0.585208,0.323854,0.563048,0.287941,0.605410,0.573392,0.200139,0.020490,0.395855,0.315273,0.590598, + 0.343854,0.910619,0.048012,0.453520,0.061595,0.362182,0.927736,0.924033,0.911662,0.917151,0.936843,0.762215, + 0.991263,0.406872,0.304844,0.566038,0.054918,0.460274,0.332914,0.540061,0.589062,0.597639,0.310058,0.962185, + 0.444697,0.803012,0.311880,0.546558,0.322015,0.586720,0.345505,0.593636,0.601064,0.643275,0.963462,0.810441, + 0.435810,0.941676,0.325180,0.587214,0.048785,0.350736,0.330012,0.588897,0.166096,0.448066,0.693374,0.968588, + 0.943936,0.721484,0.282560,0.602268,0.284346,0.924511,0.969469,0.670999,0.172792,0.569866,0.776648,0.789768, + 0.905944,0.687997,0.958581,0.919973,0.330301,0.657251,0.263614,0.438814,0.280070,0.581217,0.346531,0.600117, + 0.842902,0.833574,0.314875,0.665470,0.035527,0.572305,0.968690,0.779366,0.419955,0.799241,0.338843,0.724197, + 0.267488,0.556712,0.830531,0.955396,0.290074,0.550148,0.280463,0.590857,0.521030,0.516880,0.903591,0.819486, + 0.919776,0.931411,0.958374,0.777825,0.935700,0.763110,0.954236,0.812629,0.285693,0.586369,0.807499,0.830556, + 0.284128,0.560859,0.334622,0.687611,0.359129,0.571738,0.296065,0.675955,0.281588,0.596154,0.986296,0.705206, + 0.938534,0.855138,0.297531,0.440848,0.291994,0.604000,0.891734,0.704994,0.682307,0.938601,0.681991,0.831780, + 0.260733,0.600984,0.347512,0.590215,0.443211,0.813265,0.304904,0.577952,0.566183,0.206190,0.267631,0.599502, + 0.327795,0.905148,0.075038,0.450063,0.921584,0.935933,0.773972,0.697643,0.204651,0.448599,0.923326,0.930563, + 0.166017,0.563599,0.971867,0.799633,0.281130,0.576353,0.968011,0.796350,0.901994,0.818112,0.065417,0.586379, + 0.056516,0.598586,0.296506,0.602320,0.278672,0.576195,0.326077,0.532760,0.270083,0.721815,0.313039,0.589007, + 0.424116,0.947801,0.310369,0.546324,0.931826,0.910178,0.278286,0.554728,0.067694,0.335436,0.331794,0.582130, + 0.289394,0.584066,0.974525,0.716678,0.973241,0.713269,0.446537,0.930722,0.309048,0.423349,0.442650,0.915403, + 0.931266,0.699268,0.342614,0.535706,0.359502,0.582203,0.416447,0.561855,0.196120,0.270722,0.305402,0.432894, + 0.065079,0.704007,0.066041,0.431800,0.065111,0.682851,0.312483,0.518583,0.949153,0.929457,0.814471,0.965660, + 0.193940,0.524365,0.321606,0.600312,0.782592,0.798665,0.288424,0.557152,0.263602,0.936856,0.415474,0.787614, + 0.934725,0.828395,0.336189,0.738500,0.042186,0.341467,0.326525,0.551308,0.299337,0.587501,0.346650,0.414403, + 0.282552,0.533987,0.300863,0.443265,0.177649,0.335623,0.284372,0.714556,0.412709,0.790862,0.052084,0.587241, + 0.086937,0.428433,0.274603,0.582394,0.273079,0.568604,0.603767,0.739530,0.974258,0.697733,0.280236,0.561148, + 0.212005,0.333299,0.355557,0.527339,0.826127,0.954096,0.280480,0.536463,0.950273,0.896026,0.910331,0.815791, + 0.313608,0.590222,0.286100,0.558175,0.315883,0.968012,0.302743,0.560534,0.442920,0.813106,0.947824,0.913728, + 0.930538,0.899646,0.304844,0.576454,0.422749,0.937924,0.293500,0.521265,0.280527,0.585877,0.847518,0.832723, + 0.304463,0.597623,0.323838,0.564772,0.289729,0.612906,0.331728,0.586966,0.316238,0.564978,0.298226,0.541315, + 0.278471,0.575155,0.273497,0.560817,0.360209,0.581946,0.155914,0.829507,0.346462,0.411984,0.320560,0.926099, + 0.320415,0.579802,0.086279,0.439735,0.761740,0.696148,0.732936,0.926669,0.949566,0.687898,0.696075,0.929793, + 0.318435,0.706991,0.445259,0.810598,0.826213,0.826015,0.298106,0.538864,0.839618,0.907640,0.338906,0.561943, + 0.309212,0.553792,0.361669,0.569346,0.312725,0.554393,0.272653,0.590402,0.436367,0.820013,0.292411,0.604543, + 0.312795,0.567163,0.305306,0.597982,0.079477,0.305058,0.176023,0.321300,0.533946,0.139967,0.202909,0.332941, + 0.165886,0.295918,0.205065,0.312015,0.695208,0.933750,0.272673,0.573850,0.311633,0.930064,0.900923,0.919326, + 0.947750,0.914883,0.924485,0.898155,0.937272,0.945571,0.308425,0.545449,0.034020,0.567753,0.278132,0.529975, + 0.294907,0.612833,0.444084,0.813741,0.950895,0.712313,0.944724,0.655331,0.827132,0.798574,0.917427,0.663508, + 0.889770,0.706869,0.337906,0.666830,0.796469,0.919575,0.291535,0.552545,0.676556,0.950803,0.287390,0.557267, + 0.987683,0.809575,0.090648,0.451479,0.331760,0.579410,0.342973,0.565603,0.338382,0.561784,0.317070,0.564459, + 0.312987,0.562118,0.323391,0.961323,0.442167,0.813015,0.352809,0.938978,0.460828,0.824584,0.311186,0.614818, + 0.954463,0.783966,0.917085,0.796098,0.936362,0.912385,0.930436,0.915711,0.981687,0.796063,0.979615,0.789308, + 0.924786,0.934978,0.953478,0.832331,0.416823,0.911383,0.308536,0.537782,0.707185,0.883984,0.322319,0.585978, + 0.313083,0.565121,0.533946,0.339025,0.287162,0.559431,0.285886,0.532462,0.335875,0.586127,0.401926,0.786703, + 0.973508,0.708592,0.732696,0.943654,0.457943,0.900036,0.182749,0.571315,0.310951,0.589280,0.264282,0.580143, + 0.264765,0.551684,0.297216,0.523163,0.079813,0.441058,0.313038,0.557735,0.428404,0.800453,0.304458,0.578799, + 0.334564,0.658086,0.101347,0.349104,0.060056,0.279921,0.073377,0.935722,0.044539,0.912981,0.074620,0.286096, + 0.037534,0.291415,0.094072,0.313937,0.082578,0.336458,0.069098,0.322979,0.682101,0.938322,0.441151,0.784708, + 0.419431,0.822084,0.309952,0.572420,0.331771,0.584245,0.906939,0.911299,0.924832,0.934541,0.938769,0.905355, + 0.982417,0.795423,0.925912,0.793559,0.299376,0.537921,0.341725,0.565165,0.309809,0.536222,0.284084,0.559263, + 0.413476,0.762751,0.279264,0.935768,0.680061,0.942491,0.932099,0.681326,0.786007,0.934532,0.529540,0.551952, + 0.915075,0.705414,0.335858,0.558209,0.689799,0.927669,0.295458,0.703850,0.934880,0.706817,0.206227,0.716777, + 0.908295,0.687189,0.048549,0.301865,0.344599,0.560769,0.264581,0.600424,0.297981,0.547817,0.277773,0.959946, + 0.307857,0.599877,0.328764,0.601560,0.901914,0.917834,0.910684,0.818251,0.303042,0.579057,0.466949,0.554238, + 0.916121,0.899655,0.952278,0.780289,0.299536,0.551761,0.924911,0.931928,0.436829,0.783871,0.274532,0.572861, + 0.309968,0.614847,0.336964,0.553095,0.351440,0.564484,0.323777,0.584706,0.318634,0.566327,0.283966,0.586581, + 0.286015,0.555700,0.310186,0.936912,0.335866,0.552387,0.426860,0.945153,0.305250,0.568604,0.887268,0.696109, + 0.929252,0.920353,0.907738,0.664698,0.351036,0.568977,0.339641,0.528518,0.284498,0.590611,0.338266,0.560201, + 0.955644,0.893994,0.291264,0.917593,0.310790,0.552755,0.357982,0.544214,0.048904,0.547671,0.279929,0.567975, + 0.429026,0.931316,0.341979,0.581284,0.341185,0.562676,0.319251,0.415924,0.062307,0.401518,0.444276,0.786573, + 0.076705,0.565738,0.312922,0.690523,0.161486,0.706801,0.295032,0.566211,0.179639,0.445198,0.328948,0.531102, + 0.288604,0.704383,0.299137,0.578252,0.303042,0.581656,0.272673,0.571246,0.082987,0.593931,0.810253,0.770574, + 0.663316,0.933740,0.903584,0.912277,0.920748,0.929365,0.321353,0.698558,0.491453,0.582554,0.340117,0.539032, + 0.188588,0.433459,0.317749,0.566608,0.484180,0.545227,0.421753,0.939120,0.315964,0.528358,0.068785,0.443221, + 0.291014,0.604968,0.788138,0.812785,0.445248,0.814377,0.416549,0.794058,0.064825,0.459061,0.970427,0.697794, + 0.928488,0.702712,0.786420,0.801988,0.909057,0.711656,0.280236,0.553336,0.336923,0.955137,0.287208,0.546837, + 0.316955,0.573055,0.219775,0.701364,0.425391,0.804837,0.324029,0.606322,0.309550,0.540812,0.906688,0.665684, + 0.917340,0.795798,0.976274,0.838219,0.597011,0.735027,0.649736,0.774254,0.446055,0.811348,0.940820,0.917827, + 0.949086,0.927674,0.947262,0.889208,0.935109,0.794547,0.514275,0.642981,0.732446,0.961309,0.290626,0.605917, + 0.323592,0.584569,0.315436,0.587502,0.287535,0.605210,0.336006,0.581688,0.326781,0.597365,0.906380,0.685502, + 0.043942,0.438568,0.312424,0.979541,0.940250,0.731288,0.282697,0.926357,0.774351,0.812304,0.428154,0.945755, + 0.719912,0.850916,0.329452,0.529243,0.291146,0.584341,0.287282,0.548842,0.270617,0.731975,0.310043,0.589016, + 0.057302,0.327125,0.069819,0.578704,0.922833,0.926817,0.529563,0.724869,0.523282,0.611473,0.769774,0.831146, + 0.819009,0.829257,0.437230,0.786092,0.951408,0.897566,0.272673,0.566038,0.928982,0.924291,0.921293,0.926044, + 0.436878,0.784977,0.305544,0.433436,0.191521,0.679579,0.290262,0.558821,0.444208,0.814112,0.292778,0.651066, + 0.337237,0.583065,0.276462,0.730726,0.290396,0.604252,0.298176,0.545462,0.303566,0.597416,0.313869,0.569899, + 0.598611,0.648050,0.267406,0.930194,0.306025,0.538632,0.309922,0.954266,0.685219,0.953458,0.810205,0.801505, + 0.286999,0.583002,0.330375,0.566977,0.287510,0.603169,0.314541,0.533999,0.042338,0.450817,0.323393,0.543986, + 0.272506,0.561016,0.283323,0.574188,0.360677,0.582256,0.309229,0.571486,0.298577,0.544877,0.966299,0.797141, + 0.453453,0.948948,0.941125,0.959467,0.783130,0.805217,0.979845,0.786602,0.945162,0.930895,0.303390,0.559178, + 0.303316,0.560053,0.420696,0.933646,0.336329,0.938543,0.439279,0.781297,0.293007,0.576483,0.296363,0.950819, + 0.296783,0.566509,0.310755,0.682762,0.448823,0.978977,0.342798,0.591364,0.810782,0.802094,0.973130,0.712865, + 0.899757,0.688661,0.273535,0.584255,0.335671,0.562482,0.776990,0.771345,0.301997,0.606214,0.795984,0.712640, + 0.825086,0.776905,0.078407,0.935507,0.908171,0.659281,0.284214,0.540682,0.338455,0.571665,0.327485,0.549777, + 0.278409,0.569870,0.257399,0.583857,0.307148,0.588868,0.294881,0.930915,0.339050,0.551793,0.279038,0.578279, + 0.272336,0.576866,0.173907,0.303939,0.207376,0.310396,0.202327,0.353485,0.165886,0.340962,0.102844,0.194441, + 0.070898,0.470171,0.035506,0.408523,0.177131,0.311246,0.208915,0.318440,0.188408,0.350291,0.937492,0.939064, + 0.276604,0.569072,0.356184,0.449813,0.970464,0.910156,0.900821,0.917821,0.273079,0.560792,0.932121,0.794661, + 0.425602,0.801369,0.268694,0.532825,0.425867,0.800932,0.173376,0.304462,0.339621,0.584031,0.079320,0.300931, + 0.188568,0.263424,0.425490,0.806578,0.975634,0.693580,0.417255,0.782509,0.732598,0.950570,0.281891,0.560735, + 0.349152,0.460498,0.324174,0.534913,0.303316,0.573073,0.464473,0.590712,0.970750,0.728179,0.381506,0.425316, + 0.288435,0.678842,0.553310,0.537609,0.161606,0.322955,0.281256,0.566459,0.462222,0.966148,0.332909,0.533274, + 0.023740,0.442595,0.039438,0.325978,0.037011,0.144906,0.934627,0.896200,0.676671,0.940859,0.940530,0.959884, + 0.441568,0.555779,0.960905,0.847230,0.938252,0.923372,0.304844,0.571246,0.521030,0.642981,0.930212,0.930559, + 0.911978,0.787377,0.904815,0.912969,0.184829,0.812539,0.454285,0.821252,0.299512,0.586665,0.289238,0.575875, + 0.313692,0.576968,0.042658,0.310676,0.295117,0.586293,0.272610,0.560743,0.280019,0.569911,0.279879,0.564376, + 0.042676,0.477012,0.049146,0.934156,0.053350,0.319946,0.056652,0.563478,0.055761,0.447319,0.057992,0.329821, + 0.046738,0.166033,0.026929,0.466998,0.052555,0.559319,0.058563,0.949697,0.949616,0.708664,0.433767,0.792325, + 0.837050,0.954053,0.802853,0.963849,0.304844,0.563434,0.331728,0.579315,0.448201,0.907358,0.402075,0.947178, + 0.778805,0.817405,0.332540,0.934013,0.235007,0.421340,0.289918,0.605494,0.433649,0.801447,0.081247,0.335128, + 0.081247,0.292745,0.063049,0.138411,0.058427,0.313810,0.098464,0.295297,0.082419,0.291404,0.063745,0.319819, + 0.096345,0.348627,0.904265,0.914125,0.173806,0.693414,0.820151,0.848929,0.409956,0.914483,0.686546,0.950795, + 0.967185,0.796183,0.705318,0.913569,0.949829,0.905659,0.712865,0.925971,0.285237,0.587199,0.305330,0.934091, + 0.325650,0.563235,0.329077,0.554684,0.442629,0.812947,0.181205,0.704526,0.310830,0.538729,0.295772,0.606183, + 0.971411,0.728482,0.777020,0.809597,0.688794,0.933983,0.444500,0.814269,0.900340,0.681618,0.315607,0.614214, + 0.062307,0.465503,0.138350,0.443085,0.334760,0.573121,0.283196,0.683719,0.297335,0.548322,0.298719,0.901178, + 0.661217,0.793904,0.464210,0.954526,0.980734,0.785878,0.816238,0.956431,0.304761,0.602673,0.421743,0.944238, + 0.940769,0.687103,0.948379,0.928253,0.332128,0.549166,0.974577,0.787432,0.318132,0.542763,0.358529,0.936267, + 0.297730,0.582383,0.285494,0.559004,0.281156,0.568839,0.290128,0.557967,0.444476,0.851916,0.470461,0.712182, + 0.060232,0.565220,0.325839,0.607684,0.390426,0.735321,0.683646,0.805250,0.319792,0.702945,0.932528,0.684356, + 0.834541,0.849781,0.826734,0.929110,0.062197,0.430465,0.266229,0.568997,0.283531,0.542961,0.799520,0.827647, + 0.696123,0.947805,0.347459,0.663283,0.828549,0.931098,0.349447,0.919203,0.041116,0.456725,0.288116,0.548204, + 0.353035,0.567538,0.306109,0.598640,0.444837,0.810579,0.319565,0.933024,0.308640,0.979228,0.414991,0.792025, + 0.991269,0.697930,0.831102,0.810065,0.327320,0.713979,0.072867,0.589990,0.441583,0.812701,0.931753,0.647146, + 0.297933,0.568241,0.427680,0.944576,0.335504,0.946014,0.280162,0.562023,0.280158,0.575039,0.834936,0.956696, + 0.441292,0.812545,0.674558,0.902642,0.986274,0.684648,0.300209,0.576901,0.274058,0.585179,0.915336,0.900691, + 0.901123,0.918366,0.784271,0.793077,0.325050,0.533390,0.077457,0.593103,0.307988,0.922388,0.261046,0.599032, + 0.314072,0.927440,0.029799,0.444846,0.325461,0.562218,0.273805,0.582707,0.341320,0.558198,0.043709,0.601940, + 0.921241,0.722619,0.284123,0.942433,0.385724,0.596756,0.777032,0.811162,0.292733,0.673048,0.669949,0.834492, + 0.076992,0.319142,0.521031,0.606969,0.932581,0.721882,0.971581,0.698618,0.812599,0.798625,0.266754,0.713991, + 0.336629,0.559450,0.424550,0.802864,0.355561,0.544625,0.431991,0.808401,0.318970,0.543164,0.455575,0.552249, + 0.337132,0.582690,0.027238,0.332677,0.024077,0.334038,0.778094,0.789065,0.339154,0.578835,0.817876,0.819210, + 0.180248,0.702473,0.800673,0.771403,0.954093,0.908197,0.203283,0.450223,0.920913,0.936114,0.957316,0.908980, + 0.726749,0.957195,0.971510,0.910394,0.572322,0.661507,0.889070,0.682416,0.470914,0.579966,0.907518,0.677857, + 0.290589,0.553512,0.290762,0.559034,0.309377,0.584174,0.275147,0.542832,0.773308,0.817256,0.320491,0.735349, + 0.458261,0.913609,0.315066,0.591868,0.681763,0.945831,0.824390,0.963397,0.273810,0.590630,0.474169,0.836885, + 0.991263,0.139015,0.973434,0.696013,0.910030,0.660482,0.041146,0.965848,0.315334,0.566058,0.285858,0.562470, + 0.303798,0.931023,0.310587,0.536890,0.533946,0.220442,0.288063,0.567899,0.324633,0.689072,0.056575,0.678447, + 0.067263,0.160759,0.075216,0.964446,0.089661,0.952545,0.076270,0.657057,0.332956,0.679011,0.827144,0.819725, + 0.978586,0.794275,0.271681,0.574921,0.920895,0.925348,0.346968,0.568811,0.304256,0.574730,0.274003,0.734005, + 0.790986,0.788245,0.953966,0.899888,0.919620,0.931934,0.933620,0.793089,0.287770,0.531943,0.972610,0.802539, + 0.310879,0.555163,0.290880,0.606724,0.089825,0.914718,0.295620,0.583613,0.025456,0.528091,0.020104,0.315910, + 0.024257,0.320636,0.075334,0.915422,0.421472,0.797058,0.471112,0.553796,0.210191,0.333783,0.990191,0.703872, + 0.973511,0.694330,0.914112,0.655492,0.952472,0.678400,0.702860,0.931421,0.135261,0.441065,0.909091,0.708111, + 0.283814,0.586377,0.961710,0.697537,0.451225,0.532504,0.327524,0.603227,0.273073,0.596706,0.042589,0.276083, + 0.325028,0.543115,0.296910,0.585982,0.297254,0.587462,0.181317,0.159333,0.327718,0.548435,0.906585,0.664179, + 0.115066,0.954339,0.347464,0.590409,0.915470,0.910362,0.933750,0.936162,0.323727,0.722044,0.966257,0.913603, + 0.921025,0.926309,0.917686,0.935405,0.925758,0.898805,0.804912,0.669732,0.930652,0.711053,0.826369,0.931251, + 0.340644,0.544037,0.680617,0.919254,0.261462,0.584340,0.301788,0.582757,0.422889,0.796336,0.269114,0.933682, + 0.351538,0.459287,0.293370,0.575829,0.293652,0.575145,0.696104,0.933858,0.642101,0.804186,0.789409,0.814369, + 0.448088,0.925133,0.828052,0.935729,0.900132,0.690359,0.317557,0.930901,0.276834,0.592836,0.303994,0.586484, + 0.497862,0.824504,0.968546,0.715917,0.933975,0.901946,0.328634,0.534102,0.916451,0.707707,0.447106,0.963995, + 0.296442,0.562994,0.284295,0.586267,0.295290,0.566017,0.275390,0.582692,0.159283,0.309068,0.210930,0.295918, + 0.185180,0.274710,0.209614,0.307850,0.146591,0.310287,0.024852,0.424090,0.207595,0.715220,0.268446,0.720843, + 0.979687,0.785640,0.308945,0.554424,0.804149,0.797419,0.921797,0.926711,0.903149,0.668257,0.831077,0.809563, + 0.521031,0.739825,0.916249,0.898937,0.957727,0.921481,0.941056,0.903998,0.288779,0.583856,0.350709,0.565352, + 0.157412,0.317067,0.095406,0.934615,0.314210,0.590085,0.341938,0.555275,0.444957,0.814218,0.211643,0.700060, + 0.406003,0.792117,0.959228,0.784509,0.319406,0.554406,0.300933,0.932680,0.770888,0.822488,0.930984,0.696417, + 0.426308,0.918342,0.331155,0.701020,0.844259,0.588333,0.327419,0.562233,0.278322,0.548289,0.048785,0.479089, + 0.304574,0.582121,0.297684,0.559097,0.289222,0.955543,0.194545,0.295855,0.926284,0.950518,0.323369,0.582927, + 0.309642,0.589952,0.429750,0.817612,0.309983,0.552292,0.314525,0.591075,0.342479,0.567871,0.322002,0.585724, + 0.337346,0.552877,0.450931,0.540596,0.940639,0.928610,0.465957,0.660038,0.935481,0.921849,0.344267,0.548573, + 0.305250,0.560793,0.931964,0.942046,0.818432,0.958228,0.934271,0.795627,0.293441,0.673471,0.440413,0.973406, + 0.286512,0.563572,0.304374,0.547700,0.331080,0.595695,0.434247,0.895156,0.312495,0.551628,0.429676,0.897357, + 0.417274,0.793187,0.809269,0.962668,0.285117,0.529111,0.675315,0.849180,0.683036,0.933249,0.942714,0.839978, + 0.813000,0.588333,0.275030,0.695222,0.796246,0.798276,0.895058,0.704235,0.274607,0.569381,0.285815,0.543298, + 0.909265,0.706951,0.931202,0.930029,0.329199,0.665104,0.427386,0.808932,0.332617,0.737035,0.276528,0.537063, + 0.176439,0.330705,0.464883,0.832254,0.339765,0.415510,0.100645,0.308977,0.093546,0.345479,0.106563,0.328701, + 0.076832,0.894008,0.097844,0.194606,0.032427,0.288908,0.038864,0.335128,0.038864,0.292745,0.098479,0.347270, + 0.084109,0.289884,0.296058,0.523696,0.071573,0.556232,0.911680,0.945392,0.927708,0.928993,0.268447,0.557910, + 0.426958,0.562869,0.278302,0.563012,0.286978,0.555417,0.305250,0.566000,0.928807,0.716493,0.961406,0.826900, + 0.440640,0.783778,0.310079,0.528070,0.668297,0.930043,0.953026,0.665047,0.341524,0.944665,0.293444,0.669433, + 0.028058,0.937929,0.433523,0.558605,0.343880,0.558574,0.334829,0.914808,0.199149,0.700839,0.327084,0.921033, + 0.916963,0.915753,0.963048,0.855057,0.282716,0.586382,0.287327,0.563664,0.392152,0.787197,0.788786,0.803334, + 0.793349,0.801878,0.286728,0.535992,0.534082,0.708252,0.051802,0.339763,0.264018,0.417200,0.930081,0.711362, + 0.959343,0.725749,0.038255,0.411481,0.441460,0.784573,0.805940,0.793218,0.422230,0.795967,0.437241,0.554588, + 0.289143,0.557593,0.325536,0.578214,0.443512,0.809331,0.439064,0.933201,0.060565,0.260350,0.952560,0.784745, + 0.929192,0.928923,0.937600,0.802072,0.822464,0.917142,0.428968,0.812051,0.928755,0.920838,0.287857,0.579057, + 0.803645,0.768213,0.468067,0.950584,0.283479,0.675531,0.320175,0.962156,0.274024,0.576095,0.813587,0.807999, + 0.982765,0.677134,0.700547,0.826120,0.904384,0.926313,0.289969,0.701728,0.324949,0.522179,0.258387,0.583729, + 0.317074,0.566473,0.346390,0.566463,0.313277,0.598540,0.950511,0.768657,0.427226,0.798446,0.914556,0.788684, + 0.772992,0.806399,0.181714,0.692648,0.317098,0.555444,0.429626,0.534297,0.285098,0.956132,0.316868,0.708712, + 0.325559,0.963151,0.815513,0.788578,0.686385,0.416104,0.914484,0.676946,0.929881,0.651227,0.077714,0.308511, + 0.350308,0.529676,0.343423,0.546875,0.971251,0.727180,0.912785,0.709619,0.941724,0.731350,0.838824,0.338272, + 0.445830,0.814695,0.304882,0.664270,0.325019,0.674522,0.057860,0.589868,0.283104,0.551554,0.306118,0.563821, + 0.322053,0.589123,0.275983,0.567788,0.361663,0.582391,0.025529,0.570632,0.291895,0.605578,0.021514,0.435534, + 0.339439,0.572057,0.353232,0.544357,0.336629,0.524046,0.202184,0.841498,0.307976,0.550118,0.274532,0.559841, + 0.280794,0.588656,0.918143,0.934993,0.923862,0.937070,0.912067,0.787288,0.958299,0.781299,0.438752,0.901486, + 0.318119,0.581673,0.915881,0.806668,0.322286,0.542547,0.972928,0.800126,0.921918,0.927271,0.934010,0.822808, + 0.916758,0.705872,0.308992,0.670351,0.054173,0.478145,0.103101,0.435534,0.343868,0.569368,0.674172,0.852923, + 0.918541,0.815657,0.805717,0.961205,0.424971,0.797504,0.289565,0.578150,0.271873,0.550537,0.838648,0.932290, + 0.102569,0.439025,0.331867,0.581689,0.043682,0.564823,0.786152,0.803145,0.444136,0.940373,0.076013,0.563514, + 0.956571,0.923573,0.935726,0.780480,0.313300,0.935501,0.272431,0.559055,0.277794,0.591983,0.983548,0.706590, + 0.972877,0.696289,0.294651,0.950803,0.915087,0.654368,0.721259,0.777024,0.706470,0.977007,0.426620,0.570379, + 0.967765,0.778983,0.926670,0.701973,0.916820,0.915321,0.466033,0.830119,0.429636,0.800025,0.828882,0.927196, + 0.256560,0.583413,0.952525,0.833024,0.911137,0.793319,0.923028,0.891774,0.280581,0.533437,0.322668,0.608054, + 0.276291,0.578125,0.925699,0.904128,0.686385,0.406280,0.292975,0.575873,0.316093,0.586750,0.329190,0.937213, + 0.289301,0.586745,0.430076,0.578006,0.799611,0.793496,0.684240,0.942012,0.965581,0.767308,0.450058,0.817973, + 0.914697,0.924342,0.329325,0.523543,0.313949,0.948423,0.929498,0.648659,0.897376,0.685254,0.982426,0.681707, + 0.692010,0.956977,0.979328,0.811712,0.307358,0.537222,0.307195,0.539178,0.062307,0.415026,0.325174,0.578166, + 0.437129,0.784422,0.265545,0.552406,0.288097,0.586941,0.313167,0.561801,0.381506,0.339401,0.278591,0.967310, + 0.293173,0.557634,0.440065,0.558297,0.187261,0.457202,0.037519,0.431294,0.802667,0.856817,0.841780,0.665326, + 0.472027,0.803692,0.284971,0.552078,0.923497,0.913129,0.279927,0.571801,0.271242,0.712669,0.279116,0.568758, + 0.679399,0.937151,0.328186,0.565492,0.300543,0.569742,0.293487,0.573428,0.934199,0.931577,0.566010,0.190132, + 0.286746,0.579479,0.339806,0.539902,0.040566,0.440067,0.338986,0.568778,0.310981,0.562993,0.062307,0.476327, + 0.437562,0.935719,0.327279,0.527284,0.018457,0.319423,0.024350,0.318109,0.024269,0.318197,0.944492,0.727663, + 0.773146,0.771285,0.448342,0.563342,0.661707,0.793818,0.695274,0.922734,0.436755,0.782211,0.777582,0.814495, + 0.605455,0.640461,0.335116,0.550578,0.341832,0.543777,0.943652,0.730633,0.771083,0.822419,0.470125,0.785000, + 0.177356,0.197493,0.485443,0.586377,0.354641,0.544279,0.281630,0.587311,0.073956,0.317472,0.041226,0.965576, + 0.286886,0.566278,0.276871,0.571353,0.923879,0.898818,0.917753,0.895711,0.417640,0.537232,0.932384,0.939052, + 0.407281,0.935216,0.292922,0.584552,0.928226,0.928507,0.303955,0.657554,0.307762,0.561007,0.264269,0.585874, + 0.322071,0.937893,0.325701,0.599557,0.653248,0.952514,0.863784,0.853915,0.326196,0.959644,0.330404,0.698730, + 0.913627,0.902619,0.192144,0.280824,0.347712,0.955292,0.349187,0.566062,0.308321,0.552568,0.284901,0.552078, + 0.270772,0.581834,0.155418,0.352966,0.260347,0.608146,0.325335,0.570745,0.288036,0.546189,0.774217,0.789770, + 0.326420,0.529785,0.301361,0.931418,0.652225,0.786972,0.335420,0.528581,0.940899,0.936253,0.441875,0.812858, + 0.436773,0.924156,0.430545,0.803568,0.350011,0.726659,0.302832,0.579479,0.437507,0.809981,0.770754,0.827984, + 0.451423,0.815936,0.303691,0.576232,0.318771,0.526759,0.834450,0.657450,0.928263,0.912554,0.307780,0.598897, + 0.438766,0.722525,0.335077,0.891156,0.332236,0.595679,0.140942,0.703418,0.092640,0.943808,0.198338,0.712868, + 0.087337,0.935513,0.190878,0.308304,0.173907,0.332941,0.063192,0.333227,0.069185,0.310679,0.092537,0.298851, + 0.058287,0.445330,0.898242,0.696167,0.437158,0.919735,0.938217,0.938973,0.681948,0.934675,0.796843,0.918965, + 0.411043,0.942795,0.319470,0.700137,0.474847,0.837449,0.932904,0.825095,0.279307,0.543427,0.289969,0.951690, + 0.345757,0.946353,0.187634,0.703018,0.323380,0.954144,0.426395,0.800058,0.824914,0.928180,0.337049,0.551843, + 0.021896,0.592686,0.279531,0.552915,0.289998,0.555383,0.289450,0.565747,0.291857,0.575720,0.296050,0.566385, + 0.715138,0.914879,0.399352,0.961603,0.312683,0.544961,0.310340,0.566113,0.317481,0.469954,0.413735,0.925624, + 0.287819,0.542780,0.350308,0.565080,0.273078,0.584217,0.953391,0.833818,0.935381,0.720580,0.900591,0.680383, + 0.422427,0.937231,0.920496,0.670148,0.333934,0.921871,0.906265,0.712843,0.695204,0.935501,0.929511,0.710926, + 0.830497,0.806424,0.968086,0.663487,0.888081,0.697332,0.897852,0.686537,0.959241,0.717913,0.310921,0.426372, + 0.948702,0.914424,0.392133,0.838706,0.288097,0.579902,0.278708,0.575989,0.681908,0.797033,0.932473,0.899819, + 0.473760,0.838978,0.352350,0.573136,0.083127,0.533725,0.284745,0.555220,0.345034,0.536196,0.311123,0.590141, + 0.300151,0.575751,0.062498,0.301670,0.041495,0.325066,0.303238,0.582045,0.927835,0.920423,0.289185,0.563682, + 0.974977,0.903840,0.064069,0.444932,0.979384,0.787516,0.648803,0.792956,0.664990,0.795955,0.296783,0.568168, + 0.421799,0.798864,0.304542,0.576992,0.297197,0.563268,0.988286,0.809363,0.557478,0.578003,0.313083,0.583074, + 0.282101,0.656164,0.295684,0.568186,0.344031,0.661189,0.417930,0.900510,0.291161,0.603836,0.096323,0.435534, + 0.313636,0.580155,0.333385,0.552859,0.317749,0.563121,0.270616,0.583081,0.353093,0.596706,0.967540,0.797725, + 0.811357,0.793650,0.422960,0.801370,0.543437,0.233319,0.271093,0.921532,0.889544,0.707785,0.342956,0.686200, + 0.908348,0.909135,0.289128,0.578189,0.698790,0.817139,0.281763,0.586185,0.423789,0.571247,0.772218,0.811205, + 0.927897,0.720815,0.274594,0.592085,0.808533,0.958251,0.518328,0.735321,0.426923,0.799184,0.425566,0.944551, + 0.307221,0.574378,0.424393,0.809560,0.779239,0.816864,0.821875,0.963971,0.350167,0.573350,0.949754,0.835369, + 0.714589,0.953701,0.772664,0.817996,0.316201,0.585601,0.283978,0.586340,0.299481,0.961346,0.436996,0.815567, + 0.291265,0.566500,0.431770,0.793740,0.686385,0.347110,0.288023,0.583373,0.342464,0.558323,0.446693,0.812326, + 0.275017,0.531331,0.304844,0.573850,0.732451,0.960944,0.300466,0.545394,0.278703,0.536803,0.348235,0.527581, + 0.066584,0.963373,0.951621,0.781035,0.058574,0.431800,0.809535,0.960310,0.297282,0.659973,0.289415,0.579583, + 0.465805,0.926030,0.935906,0.931964,0.932806,0.935572,0.770945,0.937711,0.312165,0.432257,0.913342,0.810585, + 0.928672,0.929405,0.772008,0.818138,0.968301,0.778399,0.328232,0.709018,0.341835,0.596039,0.926832,0.887313, + 0.271720,0.722787,0.274568,0.592465,0.427187,0.798747,0.281805,0.662938,0.340835,0.571942,0.310553,0.547457, + 0.208829,0.658501,0.975081,0.838088,0.263499,0.599691,0.953578,0.677395,0.681880,0.810291,0.303425,0.589763, + 0.415446,0.930273,0.297417,0.568287,0.423789,0.564491,0.809821,0.794964,0.680477,0.927031,0.317881,0.544216, + 0.415474,0.788480,0.301870,0.584017,0.425809,0.806607,0.973204,0.688633,0.899907,0.683076,0.307792,0.595504, + 0.782955,0.778278,0.436446,0.938996,0.445789,0.811098,0.423028,0.801418,0.272673,0.585235,0.426923,0.799184, + 0.326594,0.557375,0.296202,0.582708,0.276008,0.560222,0.336112,0.552426,0.381506,0.079999,0.288879,0.551432, + 0.445838,0.940764,0.280369,0.568311,0.911576,0.787069,0.274607,0.577193,0.272648,0.590423,0.903327,0.927420, + 0.928330,0.919935,0.563446,0.683862,0.413427,0.937286,0.925615,0.787177,0.191058,0.555203,0.272119,0.934159, + 0.345799,0.968148,0.933298,0.935165,0.091153,0.406689,0.808976,0.681845,0.915906,0.917891,0.308399,0.534765, + 0.301007,0.594838,0.054029,0.591841,0.445472,0.955454,0.157613,0.298620,0.313083,0.596706,0.286646,0.565202, + 0.939136,0.890276,0.313586,0.591071,0.282899,0.594682,0.302033,0.408335,0.807720,0.778178,0.941062,0.934607, + 0.421425,0.562567,0.261295,0.947151 + UVIndex: 3336,1954,2094,1737,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,1752,225,4406,215,225,699,2314,4406,5075,1650,225,1752,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,1994,1995,3957,4993,2633,574,1993,1997, + 574,1994,4993,1993,314,3211,2633,1996,3211,936,574,2633,3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416, + 628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1996,2633,1997,4994,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,4837,4579,1035,3484,1986,4837,3484, + 1037,3249,978,3744,1619,183,1256,2081,439,5208,166,166,5208,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,609,5342,1443,4782,609,4849,1695,5342,4842,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,5458,2857,2068,1128,4799,3784,5303,1904,1619,3744,3575,2529,1904,5303,2857, + 5458,1926,517,5517,2277,564,4928,299,1926,181,517,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,1995,1996,4994,3957,1954,1752,215,2094,699,3336,1737,2314,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5124,4800,184,267,5254, + 5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,1471,1616,3826,3969,4732,5520,855,4285,2000,2277,5517,2716,602,1373,4928,564,4819,5582,2000,4161,4416,2923,2110,3632,602,5415,5587,3424,2665,855,5432,4686,5520,2067,4897,5068, + 1751,2998,1348,1059,3189,3969,3826,4783,1693,1122,2166,1250,3010,1616,3021,1693,674,5163,4784,1122,1693,3021,1805,884,1555,2202,1986,1037,3411,865,1805,2202,234,978,1805,978,3249,4783,1193,3632,3520,3351,4862,3936,4800,674,2166,674,1693,2166,5727,1081,2166,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245, + 2129,2838,1081,5727,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,1690,1250,1616,1471,3632,1193,1373,602,2574,2483,3769,182,113,1954,3336,1650,699,225,936,1994,574,936,314,1995,1994,314,1996,1995,113,5075, + 1752,1954,1650,113,3336,699,166,475,475,166,3702,518,518,3702,518,5208,5208,518,3362,4357,4782,1443,475,2114,166,3702,518,1665,518,5208,1665,166,2114,3703,5208,5208,3703,1665,4969,5432,5520,3336,1737,2094,1954,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,1752,215,4406,225,225,4406,2314, + 699,5075,1752,225,1650,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,1994,4993,3957,1995,2633,1997,1993,574,574,1993,4993,1994,314,1996,2633,3211,3211,2633,574,936,3836,105,662,5159,416,1582,3413,661,4654,3413,1582, + 889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1996,4994,1997, + 2633,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,4837,3484,1035,4579,1986,1037,3484,4837,3249,1619,3744,978,2313,2828,3797,183,439,2081,1256,5208,5208,166,166,4649,1695,1443,3362,4818,4849,1695, + 4649,1695,5342,609,1443,1443,609,4782,4849,4842,5342,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,5458,1128,2068,2857,4799,1904,5303,3784,1619,2529,3575,3744,1904,5458,2857,5303,1926,2277,5517,517,564,299,4928,1926,517,181,1116,3402,4538,2110,4928,299,1457,3402,3402, + 1457,4538,3010,1116,2110,4416,1995,3957,4994,1996,1954,2094,215,1752,699,2314,1737,3336,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5124,267,184,4800,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519, + 766,3435,3124,3301,1058,3036,1249,766,1471,3969,3826,1616,4732,4285,855,5520,2000,2716,5517,2277,602,564,4928,1373,4819,4161,2000,5582,4416,2110,2923,3632,5415,602,5587,855,2665,3424,5432,5520,4686,2067,1751,5068,4897,2998,3189,1059,1348,3969,4783,3826,1693,2166,1122,1250,1616,3010,3021,5163,674,1693,4784,3021, + 1693,1122,1805,2202,1555,884,1986,865,3411,1037,1805,978,234,2202,1805,3249,978,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,674,2166,1693,5727,2166,1081,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,1081,5142,3057,5727,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862, + 1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,1690,1471,1616,1250,3632,602,1373,1193,2574,182,3769,2483,113,3336,1954,1650,225,699,936,574,1994,936,1994,1995,314,314,1995,1996,113,1954,1752,5075,1650,699,3336,113,166,166,475,475,3702,3702,518,518,518,518,5208,5208,3362,1443, + 4782,4357,475,166,2114,3702,1665,518,518,1665,5208,166,5208,3703,2114,5208,1665,3703,4969,5520,5432,135,4282,2743,4783,4282,135,4783,2742,2828,5415,3632,3797,2743,3797,3632,4783,1645,2742,2313,1645,4282,2742,1645,2313,3797,5127,3632,5415,2828,2742,4783,3632,5127,5278,842,2090,3981,757,3612,842,5278,3981,2090, + 5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2112,3047,4417,1896,4634,3445,2112,1896,3213,4634,1896,4417,5552,3213,4417,3047,3445,5552,3047,2112,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352, + 2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334, + 2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600, + 899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789, + 1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,1493,776,5464,4082,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,790,4809,1374,5173,4082,5464,1724,831,5464,2395,2075,1724,5173,1374,82,5261, + 4145,4082,831,5239,5464,3572,2395,1041,4082,4145,1453,1493,4082,1041,776,2252,3572,5464,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,3641,1197,4838,2593,4838,373,2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196, + 373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872, + 1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902, + 2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295, + 1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902, + 2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770, + 1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952, + 4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988, + 3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251,4310,401,4310,2008,3153,401,1757,5718,4687,4251,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013, + 3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545, + 3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546, + 3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792, + 5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612, + 842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278, + 2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5309,3949,2550,1019,1706,3314,1915,2521,2931,4091,3314,1706,5410,4525,924,2867,5309,3949,2550,1019,4525,4268,2135,924,675,3241,5384,3513,974,5300,3241,675,2299,2625,4525,5410,4525,4268,2135,924,675,3241,5384,3513,974, + 5300,3241,675,2931,4091,3314,1706,5309,3949,2550,1019,2931,4091,3314,1706,4525,4268,2135,924,675,3241,5384,3513,974,5300,3241,675,3241,1706,2521,5384,5300,2931,1706,3241,5410,4525,924,2867,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,3241,1706,2521,5384,5300,2931,1706,3241,1706,3314,1915,2521,4268, + 5309,1019,2135,4290,675,3513,124,1941,974,675,4290,3241,1706,2521,5384,5300,2931,1706,3241,1796,1012,3949,5309,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,1706,3314,1915,2521,5410,4525,924,2867,1796,1012,3949,5309,2625,5642,4268,4525,2625,5642,4268,4525,1796,1012,3949,5309,2625,5642,4268,4525,2299, + 2625,4525,5410,5642,1796,5309,4268,5642,1796,5309,4268,5642,1796,5309,4268,2299,2625,4525,5410,1917,4811,4091,2931,1768,2964,5300,974,1768,2964,5300,974,1917,4811,4091,2931,1917,4811,4091,2931,1768,2964,5300,974,2964,1917,2931,5300,1115,1768,974,1941,2964,1917,2931,5300,1115,1768,974,1941,2964,1917,2931,5300,1115, + 1768,974,1941,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4694,842,2090,0,5487,3612,842,4694,0,2090,5450,1937,757, + 5278,3981,4395,842,3612,5450,2090,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,5278,4694,0,3981,757,5487,4694,5278,3981,0,1937,4395,1937,5487,757,4395,5450,3612,5487,1937,4589, + 2516,2516,4589,4589,2516,2516,4589,2516,4138,4138,2516,1566,4589,4589,1566,1566,4589,4589,1566,4138,1566,1566,4138,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647, + 2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561, + 2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428, + 141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537, + 4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857, + 3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651, + 3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,2893,5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658, + 1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2009,2096,3933,1459,3933,1839,3862,633,1459,3933,633,1815,3469,4645,2096,2009,4645,1874,3521,2096,2096,3521,1839,3933,633,3862,1874,4645,1815,633,4645, + 3469,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,570,4828,1911,2953,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,647,3279,843, + 3284,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981, + 4395,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770, + 872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987, + 2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430, + 4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122, + 4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694, + 2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123, + 5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546, + 5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3210,1670,1275,199,5704,3289,3377,424,2426,3366,1572,862,5022,904,1377,2333,3366,2426,904,5022,804,3366,5022,2333,2426,1022,1377, + 904,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,1631,5143,1884,1251,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013, + 5143,4813,140,2519,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5143,1631,3447,3266,5278,842,2090,3981,842,3612,5450,2090, + 757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395, + 3981,2090,5450,4395,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,1476,4330,1073,3479,3981,2090,5450,4395,2561,2561,2561,2561,757,5278,3981,4395,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981, + 2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757, + 3612,842,5278,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450, + 2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278, + 842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090, + 3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,3610,3867,5074,5608,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2112,3047,4417,1896,4634,3445,2112,1896,3213,4634,1896,4417,5552,3213,4417,3047,3445,5552,3047,2112,659,125,62,1309,125,4803,5641, + 62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089, + 5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701, + 64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164, + 5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167, + 1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962,2251,448,908,1046,4502,172,3953, + 4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,122,5056,559, + 1814,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,5576,4636,4699,3011,1814,559,4850,1084,559,434,2513,4850,3011,4699,4845,731,2024,1814,1084,3958,559,1852,434,3605,1814,2024,1442,122,1814,3605,5056,3037,1852,559,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867, + 3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555, + 303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690, + 2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3065, + 2139,228,1707,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1391,3135,824,1383,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5136,2284,3729,4419,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3065,2139,228,1707,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1391,3135,824,1383,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922, + 3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987, + 1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83, + 2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167, + 987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305, + 83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615, + 5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462, + 3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251,4310,401,4310,2008,3153,401,1757,5718,4687,4251,1631, + 5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370, + 4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798, + 1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122, + 3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3849,4053,425,3595,2299,1012,2550,2867,4811,1115,374,3282,4290,3314,1915,124,1115,4811,3314,4290,1469,1115,4290,124,4811,1445,1915,3314,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447, + 1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,1938,4706,2688,993,4706,1620,4426,2688,565,3420,5042,1003,3420,5133,1891,5042,993,2688,4426,1003,2683,4118,3915,2941,229,3003,1448,737,3003,4014,5730,1448, + 3809,738,4220,1931,738,3287,2203,4220,737,1448,5730,1931,5081,81,926,1074,4481,308,304,4962,308,5,2481,304,5,483,3709,2481,2860,4667,3515,1018,4962,304,2481,3709,2502,4791,1208,2941,4147,6,1577,5568,6,2334,2971,1577,4826,4829,1428,2016,4829,1263,5203,1428,5568,1577,2971,3387,2999,2855,3915,4118, + 5494,4099,571,1893,1621,504,1743,2441,3414,1345,3386,3581,1345,5494,1893,3386,1893,571,3581,3386,1223,2999,4118,2683,2161,4790,905,2227,305,5669,3415,3171,5047,305,3171,2227,4743,4904,825,5130,3367,2721,4790,2161,4880,621,5087,2156,5379,4070,3916,362,2823,5379,362,2156,4252,820,5087,621,1135,4252,621,4880, + 4481,483,5,308,1223,2502,2855,2999,222,3690,202,2451,229,3809,4014,3003,1938,565,1620,4706,4147,4482,2334,6,5494,1345,3414,4099,391,2969,4904,4743,306,481,2959,654,249,222,2451,3686,1976,4074,796,2123,3368,3302,5595,781,3302,57,270,5595,1121,655,1932,2787,655,1708,1214,1932,781,5595,270,2787, + 4586,1976,2123,2717,481,5378,3459,2959,5069,249,3686,5202,718,5199,2015,3111,5202,3686,2451,202,3690,5069,5202,202,2358,5023,4106,985,205,2358,985,2180,3280,5451,2336,1755,375,1394,4088,2055,2311,2056,375,2055,323,2311,2055,4088,3559,323,4088,1394,2056,3559,1394,375,5023,290,3154,4106,290,205,2180,3154, + 2180,985,4106,3154,168,165,2336,5451,1840,4092,3233,2698,4092,4089,1075,3233,5113,4688,3392,1382,4688,1912,2177,3392,2698,3233,1075,1382,1458,168,5451,3280,3446,47,4343,250,3369,1662,4590,1132,3019,3560,717,5679,3350,3732,322,4420,5308,84,1117,2803,5346,2789,3495,3813,3813,3495,988,2937,213,2699,839,5306, + 594,1336,4607,3237,1117,2312,5363,5306,4331,5346,3813,188,188,3813,2937,4366,3196,1225,2937,988,84,2537,2312,1117,2803,1117,5306,839,1909,213,5306,5363,3368,1121,57,3302,3412,2243,2788,148,3868,3412,148,356,3805,3868,356,2522,2243,3805,2522,2788,143,2113,3753,5506,20,143,5506,701,1446,20,701,2393, + 2113,1446,2393,3753,477,3754,1210,392,2972,477,392,139,5735,2972,139,4673,3754,5735,4673,1210,5176,4909,4674,58,4115,4557,2482,59,3918,4115,59,58,3917,4396,4674,4909,4040,3917,4909,5176,1745,3810,4315,4433,2967,4961,1390,5137,2678,2967,5137,4433,5138,2871,4315,3810,2240,5138,3810,1745,206,1797,2221,207, + 1798,206,207,2195,3370,144,1709,1004,4513,4668,4830,3334,1134,3856,3004,3707,826,1134,3707,189,271,826,189,739,3856,271,739,3004,3320,2405,4178,4287,1478,3320,4287,3660,1573,1478,3660,1005,2405,1573,1005,4178,5659,5428,4265,2041,2776,5659,2041,4168,617,2776,4168,2780,5428,617,2780,4265,1264,4709,1432,4708, + 4700,1264,4708,1487,5088,4700,1487,1783,4709,5088,1783,1432,433,2027,5722,1211,2977,433,1211,230,60,2977,230,2157,2027,60,2157,5722,208,1758,729,4766,5024,208,4766,382,4831,4873,4011,1894,5291,1898,5708,5331,2339,363,1389,1528,3919,2339,1528,2036,4744,3919,2036,5174,363,4744,5174,1389,3715,5663,2903,1627, + 3463,3715,1627,5335,3192,1601,246,4493,2404,4810,4757,3687,4810,37,4382,4757,37,2404,3687,4382,5663,7,3537,2903,1601,5301,2444,246,844,3192,4493,2982,357,3214,4500,104,3761,357,104,4739,5609,1861,3609,393,4361,3134,4358,5002,740,3134,307,5002,1578,3464,1818,2073,4558,4332,1784,4558,1784,5048,1405,2196, + 3464,3538,2073,3304,4122,1820,2932,2719,1860,4514,1821,1860,3304,2932,4514,618,3136,2386,4376,765,4515,3493,906,4515,618,4376,3493,2719,3136,618,1860,1860,618,4515,3304,3304,4515,765,4122,1820,906,3493,2932,2932,3493,4376,4514,4514,4376,2386,1821,3303,2191,5090,2908,5420,1579,5462,4483,1579,3303,2908,5462,5084, + 3664,1538,5463,999,782,1512,1663,782,5084,5463,1512,5420,3664,5084,1579,1579,5084,782,3303,3303,782,999,2191,2191,5420,4483,5090,999,3664,5420,2191,1663,1538,3664,999,4122,2719,1821,1820,765,3136,2719,4122,906,2386,3136,765,1820,1821,2386,906,4591,5653,1474,4243,3138,2609,2092,3691,2609,4591,4243,2092,396, + 866,3460,2226,5149,3710,4333,2904,3710,396,2226,4333,3138,866,396,2609,2609,396,3710,4591,4591,3710,5149,5653,1474,2904,4333,4243,4243,4333,2226,2092,2092,2226,3460,3691,3923,2409,4675,953,1785,3716,2950,61,3716,3923,953,2950,1140,474,521,1050,5003,1226,1824,4614,1226,1140,1050,1824,1785,474,1140,3716,3716, + 1140,1226,3923,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,533,4307,5103,1303,4307,5004,2824,5103,5004,925,991,2824,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,4454,4763,1447,297,4763,3393,1319,1447,3393,1332,1293,1319,1332, + 4454,297,1293,4454,4763,1447,297,1332,3393,4763,4454,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4359,1475,730,2782,4568,4148,3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,1475,3231,5417,730,5721, + 4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,533,4307,5103,1303,4307,5004,2824,5103,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,533,4307,5103,1303,4307,5004,2824,5103,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,533,4307,5103,1303,4307,5004,2824,5103,925,533,1303,991,1303, + 5103,2824,991,925,5004,4307,533,4148,1265,2918,3385,1265,3299,4881,2918,4568,4148,3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,4359,1475,730,2782,1475,3231,5417,730,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4559,2285,4434,2968,2968,4434,734,3296,4821,1661,734,4434,4001,4821,4434,2285,3296, + 1661,4821,2968,2968,4821,4001,4559,3617,48,423,3877,3877,423,666,2152,2152,666,3666,2281,1375,1781,5114,2562,2562,5114,1506,1141,1141,1506,1527,1895,2771,4911,3132,2335,2335,3132,3993,4516,4516,3993,2072,3129,3129,2072,4911,2771,4228,4517,3132,4911,3082,1536,4517,4228,2771,2335,1536,3082,2781,4560,4516,3129,2599, + 2213,4560,2781,2072,3993,2213,2599,4560,2213,4517,1536,4516,4560,1536,2335,2213,3993,3132,4517,2599,2781,3082,4228,2072,2599,4228,4911,2781,3129,2771,3082,5653,3138,3691,1474,5149,866,3138,5653,2904,3460,866,5149,1474,3691,3460,2904,5133,1938,993,1891,1620,565,1003,4426,1891,993,1003,5042,5133,3420,565,1938,3287, + 229,737,2203,4014,3809,1931,5730,2203,737,1931,4220,3287,738,3809,229,1708,3368,781,1214,57,1121,2787,270,1214,781,2787,1932,1708,655,1121,3368,1912,1840,2698,2177,4089,5113,1382,1075,2177,2698,1382,3392,2015,1876,5116,3111,5199,505,1876,2015,3388,5066,5679,717,4420,3019,5679,250,805,2538,5302,2359,1127, + 3561,2752,2053,2531,4561,656,4676,2825,2181,422,247,4142,2608,2825,5521,1557,5521,595,1020,2181,1557,1020,422,5614,2826,1557,2181,2826,4142,5521,1557,5521,2825,247,595,2608,5614,2181,2825,4142,2826,5614,2608,2538,1127,2053,5302,3416,2153,641,3137,2153,2531,4676,641,3561,805,2359,2752,4561,3416,3137,656,2531, + 2153,3416,4561,1876,3280,4982,5116,505,1458,3280,1876,1912,4688,5113,1840,1840,5113,4089,4092,3371,5181,1628,3305,5181,4793,5049,1628,1759,4494,3750,803,4494,4136,4347,3750,3305,1628,5049,397,3371,1580,4793,5181,4136,1878,4578,4347,1580,3365,4427,397,4347,4578,803,3750,4136,4494,1759,1878,3020,4607,1336,5564,2384, + 1225,5346,4331,1225,2384,4366,2937,5564,5108,4758,3020,3020,4758,3237,4607,1336,594,5108,5564,5301,844,2982,2444,7,3463,5335,3537,5663,3715,3463,7,1879,5565,3190,4314,2594,1879,4314,1722,1722,4314,1559,4107,5565,5398,4685,3190,4314,3190,3829,1559,4685,1722,4107,2648,3190,4685,2648,3829,5398,2594,1722,4685,1974, + 3496,3661,1376,4587,3371,3305,4207,4578,593,376,803,4587,3365,1580,3371,4793,1580,397,5049,205,290,5023,2358,323,3559,2056,2311,1910,85,1877,5554,2220,2872,1236,1597,1877,4983,4655,1597,85,4044,4983,1877,5554,1877,1597,1236,5364,2220,1597,4655,4490,499,3642,2091,779,398,2626,358,2091,3642,1072,1170,4890, + 753,1170,1072,4490,753,4890,499,2091,1170,3588,3105,1747,779,358,3618,398,2830,2037,2626,3105,3588,4925,2011,5066,3446,250,5679,3350,4420,250,4343,3639,8,1855,3616,36,248,8,3639,834,3655,248,36,4065,3755,3655,834,5039,1295,3755,4065,4460,619,1295,5039,1558,4210,619,4460,1507,3802,4210,1558,1390, + 1745,4433,5137,2871,2678,4433,4315,4961,2240,1745,1390,1859,2683,2941,1208,2855,2502,2941,3915,107,1223,2683,1859,107,4791,2502,1223,2482,5176,58,59,4396,3918,58,4674,4557,4040,5176,2482,3916,4880,2156,362,820,2823,2156,5087,4070,1135,4880,3916,3415,2161,2227,3171,5005,5047,2227,905,5669,3367,2161,3415,5669, + 305,5047,3367,1048,1725,3802,1507,3764,5416,1725,1048,311,3589,5416,3764,3054,245,3589,311,3066,2255,1094,2033,5554,1236,2872,1910,718,3111,5116,2595,3067,2595,5116,4982,1755,961,3048,3643,5152,2638,2033,1094,2638,1721,4703,478,3069,2315,685,2244,1889,4875,4926,3069,2862,1266,2315,2244,4926,4320,3397,2304,1795, + 442,2747,89,1224,2142,972,989,4062,1049,5452,2304,3397,5014,1224,5635,5452,1049,3397,1667,5501,1906,3892,1930,2383,3006,3892,1906,2264,4704,2394,3756,2334,4482,3387,2971,478,3397,442,3066,2396,989,1667,4703,821,5223,3720,1975,2638,1049,5501,1721,961,2747,2142,4891,562,5164,5268,5664,4875,3892,3006,4926,532, + 2679,4004,5660,103,3051,2679,532,4703,1667,3397,478,1509,435,1749,954,5447,972,2747,961,1710,3614,3051,103,5152,5452,1049,2638,247,422,4609,209,4926,3006,636,4439,5660,4004,3614,1710,4572,1880,714,1835,5307,320,4572,2178,5340,2178,2613,1686,1880,5340,1686,714,1331,4270,5340,1880,4270,5307,2178,5340,2178, + 4572,1835,2613,320,1331,1880,4572,4119,922,454,4658,4119,4658,320,5307,454,922,4270,1331,922,4119,5307,4270,4658,454,1331,320,4060,5255,2586,3022,4174,3971,4060,5561,5092,5561,5153,2876,5255,5092,2876,2586,5230,3353,5092,5255,3353,4174,5561,5092,5561,4060,3022,5153,3971,5230,5255,4060,3318,3078,5622,4090,3318, + 4090,3971,4174,5622,3078,3353,5230,3078,3318,4174,3353,4090,5622,5230,3971,3713,2617,1484,5633,5063,3267,2813,3989,823,2282,66,3914,2617,823,3914,1484,3989,2813,1450,2641,3267,5063,1523,4944,2282,3713,5633,66,2813,3267,4944,1450,5063,3989,2641,1523,1523,2641,5399,3315,1450,4944,2642,1563,4944,1523,3315,2642,2641, + 1450,1563,5399,2818,1803,2643,4308,457,5441,3485,1565,5441,2818,4308,3485,1803,457,1565,2643,2818,5441,457,1803,4802,684,5064,169,169,5064,3637,2307,684,4802,5691,2452,5064,684,2452,3637,4802,169,2307,5691,5691,2307,2397,1120,3637,2452,4311,2694,2452,5691,1120,4311,2307,3637,2694,2397,3081,3000,3271,2564,4825, + 2567,5231,3167,3000,4825,3167,3271,2567,3081,2564,5231,5256,1562,5566,2790,3107,3354,1635,2799,3354,5256,2790,1635,1562,3107,2799,5566,5256,3354,3107,1562,4381,1183,1401,1800,1800,1401,667,4530,1183,4381,3073,1403,1401,1183,1403,667,4381,1800,4530,3073,4669,436,3751,2034,195,5677,2934,3576,5677,4669,2034,2934,436, + 195,3576,3751,5085,4787,3614,4004,5719,5523,4787,5085,5660,1710,5523,5719,3864,4484,103,532,5179,2821,4484,3864,2679,3051,2821,5179,4484,2821,4787,5523,103,4484,5523,1710,2821,3051,3614,4787,5179,3864,5719,5085,2679,5179,5085,4004,3864,532,5660,5719,5089,4169,3498,4640,2286,2610,4169,5089,2429,4593,2610,2286,4640, + 3498,4593,2429,3586,2119,4593,3498,1311,3866,2119,3586,4640,2429,3866,1311,5329,3494,2286,5089,2667,5330,3494,5329,4169,2610,5330,2667,3494,5330,2119,3866,2286,3494,3866,2429,5330,2610,4593,2119,2667,5329,1311,3586,4169,2667,3586,3498,5329,5089,4640,1311,2862,2244,4320,3992,1266,2862,3992,3756,2394,3188,2264,2373,4704, + 1889,3069,685,2328,4875,1889,2328,2264,1906,1930,2373,478,3066,2033,2638,478,2033,2255,5665,1094,5665,5152,1094,2304,5635,1795,5452,5635,2304,5501,1667,223,2747,972,4062,4400,89,2747,4400,2396,5447,3396,5447,961,3643,3396,4703,1721,1333,3992,4211,3806,1266,961,4891,1224,3048,1333,5447,2396,4703,3539,5152,5665, + 1224,3188,2394,2846,3920,2142,1224,5014,223,1667,989,972,2383,1444,3006,4891,2142,223,1333,1333,223,972,5447,1933,613,1934,3221,3539,5014,5452,5152,1721,5501,5014,3539,613,4006,997,1934,4926,4439,4320,1263,4829,4826,9,5203,3994,2016,1428,3006,1444,636,1263,9,3994,5203,2383,3756,3188,1444,223,2142,5014, + 5014,5501,223,4891,1333,3539,1224,4891,3539,1721,3539,1333,5048,4332,4558,4518,4358,3134,740,5002,307,4361,1405,5048,4518,567,5465,2672,567,2672,793,1150,793,5465,567,4164,3538,3464,1578,2073,1818,2196,1150,793,4164,5040,4012,1660,2778,1576,4012,482,2778,1370,2938,1051,1370,1051,1823,3373,1823,2938,1370,24, + 482,4012,5040,2778,1660,1576,3373,1823,24,4961,2967,2678,2240,2240,2678,2871,5138,4070,5379,2823,1135,1135,2823,820,4252,4557,4115,3918,4040,4040,3918,4396,3917,4614,521,474,5003,61,4675,2409,1785,1785,2409,5003,474,3923,1226,5003,2409,3048,89,4400,3643,3643,4400,4062,3396,3396,4062,989,2396,3066,442,1795, + 2255,4211,3920,2846,3806,4741,4823,4132,527,422,1020,2649,4609,3540,3541,1513,971,657,2582,5224,5468,2582,562,5664,5224,1835,714,4218,5557,4823,3540,971,4132,3541,4741,527,1513,5164,657,5468,5268,5223,1509,954,3720,5199,718,505,1458,505,2595,168,1458,165,1458,2595,3067,165,1458,3067,505,718,2595,165, + 3067,1755,2336,4982,3280,1755,5069,3690,222,249,1910,2872,2220,85,85,2220,5364,4044,5346,1225,3196,2789,5308,2699,213,84,84,213,1909,2537,3446,5066,2955,322,1559,3829,210,326,3019,2955,3015,3560,4420,322,2955,3019,4107,1559,326,5065,47,3446,322,3732,5066,3388,3015,2955,2069,5359,2199,3935,2042,2069, + 3935,4334,1662,4288,2237,4590,3829,2648,5366,210,5383,1047,2121,907,4288,3803,1253,2237,3803,3369,1132,1253,5282,5711,5616,1936,5359,2976,4289,2199,2315,4704,2373,685,685,2373,1930,2328,2328,1930,3892,4875,3681,3644,2287,2675,3681,2287,1560,5095,2990,5234,2845,3283,863,3947,3858,2990,5474,2741,4638,2990,4638,5234, + 5474,2675,615,3947,2287,3644,1017,4182,3644,5095,2398,1017,2741,5474,3947,863,2675,1560,5524,615,5095,2845,4957,2398,5234,4638,3283,3858,2689,291,438,800,4997,291,2689,5299,3277,2919,3253,5390,2225,3577,5198,3253,1065,2355,2420,3253,2919,1065,2420,3577,2988,800,291,3501,840,438,438,840,1776,5299,2355,5198, + 3577,2420,800,2988,309,4997,5299,1776,4637,3277,2919,2225,5390,1065,4492,15,5039,712,438,5299,709,836,2420,800,3055,15,1048,1507,15,3764,1048,2934,2034,3762,2070,5039,4065,4492,4492,4065,834,3751,3576,4878,4365,4492,36,3639,311,15,3054,4764,4492,3639,3576,2934,2070,4878,2034,3751,4365,3762,15,1558, + 4460,1379,4764,3639,311,3764,15,15,1507,1558,2285,4559,2556,2035,4001,2285,2035,742,3639,3616,1379,4559,4001,742,2556,15,4460,5039,4492,834,36,4763,3393,1319,1447,3393,1332,1293,1319,1332,4454,297,1293,1332,3393,4763,4454,4512,2896,5267,1257,1257,5267,1712,1212,2896,4512,2622,1148,5267,2896,1148,1712,4512, + 1257,1212,2622,2214,5139,1367,1514,1133,2380,1095,3256,1148,2622,5289,3814,5139,1133,3256,1367,1089,4066,5666,3052,4363,5337,4323,5370,4066,4363,5370,5666,5337,1089,3052,4323,3815,5051,2377,3708,5051,354,1318,2377,4219,3665,1111,4335,3148,2107,4386,637,3708,2377,1318,4335,3815,4219,354,5051,733,3815,3708,4404,354, + 4219,4335,1318,4404,3708,4335,1111,733,3665,4219,3815,1822,2831,3272,1284,2831,3053,196,3272,923,3239,4015,3149,3239,3391,3139,4015,1284,3272,196,5269,1822,1543,3053,2831,3391,1096,2138,3139,3053,1543,5269,196,3139,2138,3149,4015,3391,3239,923,1096,590,2219,3583,2791,2219,751,4949,3583,3943,5692,4894,550,5692, + 2645,638,4894,2791,3583,4949,550,590,3943,751,2219,2645,590,2791,638,751,3943,550,4949,638,2791,550,4894,2645,5692,3943,590,5397,3068,4272,3570,4739,104,4500,393,3761,5609,3214,357,1268,3761,4739,3657,3214,5609,393,4500,3657,4739,393,3609,1268,1861,5609,3761,1583,5553,4519,5377,5529,1583,5377,1086,802, + 2877,4209,3449,2877,5555,1152,4209,1086,5377,4519,5339,5529,2427,5553,1583,5555,3888,3232,1152,5553,2427,5339,4519,1152,3232,3449,4209,5555,2877,802,3888,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5643,3047,4417,3133,4634,3445,2112,1896,29,4634,1896,3133,5552,3213,4417,3047,4260,5552,3047,5643,659,125,62, + 1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,937,1827,3159,1942,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4695,4884,4970,4661,4884,1901,2187,4970,1901,4937,5488,2187,4937,4695,4661,5488,4661,4970,2187, + 5488,1833,2044,811,2300,1734,1589,724,1221,1589,2345,3378,724,2345,4445,2634,3378,4445,1734,1221,2634,1221,724,3378,2634,2561,2561,2561,2561,4733,3909,366,3403,3909,3290,2301,366,5076,3198,1106,1567,3198,3425,812,1106,3403,366,2301,1567,3674,937,1942,2097,5262,3930,2992,1989,3930,3177,5286,2992,4027,4189,5539, + 1354,4189,2456,2063,5539,1989,2992,5286,1354,2561,2561,2561,2561,3379,2469,1123,5120,2469,890,679,1123,1124,4839,5361,2131,4839,1769,4079,5361,5120,1123,679,2131,3910,4734,2044,1833,5728,5074,2917,5597,2561,2561,2561,2561,1638,2197,3352,5597,2561,2561,2561,2561,2302,3674,2097,2303,813,2148,5168,537,2303,2097,1942, + 3159,1827,2302,2303,3159,4523,572,3113,1246,4370,4523,1246,4446,4733,5076,3290,3909,2188,1606,4971,3546,5729,1276,2470,1982,352,5460,5729,1982,3596,352,1982,2470,2439,3596,2470,1276,5460,2439,1276,5729,572,509,3547,3113,509,4370,4446,3547,4446,1246,3113,3547,3404,2868,4971,1606,3931,5169,5144,5077,5169,4283,3405, + 5144,2098,236,1990,4190,236,5607,1831,1990,5077,5144,3405,4190,3242,3404,1606,2188,2207,3199,353,1671,3898,2457,386,510,1607,3898,510,4898,5731,4261,353,3199,1247,3142,3899,256,938,387,5481,4563,4563,5481,1107,4503,965,1829,5121,1672,2189,2471,4129,3178,3899,1060,4428,1672,4407,938,4563,4769,4769,4563,4503, + 3178,3621,5170,4503,1107,3142,173,1060,3899,256,3899,1672,5121,3160,965,1672,4428,5035,1884,385,705,4765,5143,1884,5035,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,705,385,1013,1928,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,1053,1392,1836,1233,3910,5483,1902, + 4734,3379,1124,890,2469,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,578,3161,869,5207,4447,578,5207,2363,3161,2944,1568,869,2944,4447,2363,1568,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4524,3610,2197,1638,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3831,4069,1658,5570,4588,547,2520,1971,5273,4588,1971,5570,2555,303,1658,4069,1590,2555,4069,3831,3831,4069,1658,5570,4588,547,2520,1971,5273,4588,1971,5570,2555,303,1658,4069,1590,2555,4069, + 3831,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2019,4080,4972,2346,406,2019,2346,5644,5644,2346,3406,300,277,2294,410,1061,644,1825,1301,744,1825,277,1061,1301,4080,200,467,4972,2346,4972,2631,3406,467,5644,300,1608,426,1198,2770,3059,1770,3597,2575,2168,3597,426,3059,2575,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,4191,3872,2472,1548,1918,3872,1592,1548,2127,3223,1593,4770,4915,5540,1324,4915,1324,3339,761,3207,3223,3598,4770, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5287,3486,5240,4102,1062,1325,1789,2364,1325,5287,4102,1789,3075,2839,4504,4463,5433,1499,1440,1549,1499,3075,4463,1440,1062,2839,3075,1325,1325,3075,1499,5287,5287,1499,5433,3486,5240,1549,1440,4102,4102,1440,4463,1789,1789,4463,4504,2364,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872, + 1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902, + 2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770, + 1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295, + 2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952, + 3462,3120,4114,5296,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251,4310,401,4310,2008,3153,401,1757,5718,4687,4251,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,3266,5054,1013,5143,5459,385,1013,4735,2437,5541,1277,4545,2370,4546,5214,1277,5541,3675,2169,5542,3310,3675,5541,2370,1694,3122,4546,3505, + 5542,5541,2437,2169,3310,5542,1277,1277,5542,3505,4735,1694,3798,3123,3122,4545,2370,4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2253,2077,1217,1735,1735,1217,4262,832,832,4262,4192,367,4750,918,2389,3911,3911,2389,4126,5385,5385,4126,5031,5101,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546, + 3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545, + 2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370, + 1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,555,4662,1885,1199,1199,1885,1436,939,939,1436,4235,2296,2296,4235,4662,555,332,725,1885,4662,2064,1736,725,332,555,1199,1736,2064,3224,5604,939,2296,368,2170,5604,3224,4235,1436,2170,368,5604,2170,725,1736,939,5604,1736,1199,2170, + 1436,1885,725,368,3224,2064,332,4235,368,332,4662,3224,2296,555,2064,3486,1062,2364,5240,5433,2839,1062,3486,1549,4504,2839,5433,5240,2364,4504,1549,5025,1251,1040,5459,1733,1631,1251,5025,4765,1631,3447,5059,5059,3447,1651,3487,5459,1040,3399,5238,3487,1651,3399,1928,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,3425,4733,3403,812,3290,5076,1567,2301,812,3403,1567,1106,3425,3198,5076,4733,1769,3379,5120,4079,890,1124,2131,679,4079,5120,2131,5361,1769,4839,1124,3379,5607, + 3931,5077,1831,4283,2098,4190,3405,1831,5077,4190,1990,5168,847,603,537,2148,427,847,5168,386,2772,4898,510,868,1607,4898,1671,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612, + 842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278, + 2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,1251,5035,705,1040,4765,5035,4035,705,1928,610,5143,4765,5059,3266,3266,5059,3487,5054,5054,3487,1928,1013,4598,489,237,891,1014,5141,2947,1771,3488,1218,4598,5141,4297,5675,1731,5723,4616,3060,4297,3327,511,3327,1848, + 1943,5675,511,1943,1731,5482,4464,511,5675,4464,4616,3327,511,3327,4297,5723,1848,3060,5482,5675,4297,4616,4464,5482,3060,489,1014,1771,237,1011,4465,1014,489,4465,3488,5141,1014,5141,4598,891,2947,1218,1011,489,4598,3488,4465,1011,1218,847,2188,3546,603,427,3242,2188,847,5054,5238,1013,5607,236,2098,3931, + 3931,2098,4283,5169,726,4938,3143,2510,4938,465,153,3143,333,4466,5188,1991,4466,2458,2511,5188,2510,3143,153,466,726,4580,465,4938,2458,1716,892,2511,4580,333,1991,466,2511,892,1991,5188,2458,4466,333,1716,870,4129,2471,4888,2189,5170,938,4407,5170,2189,3178,4503,4888,4407,4769,870,870,4769,3178,4129, + 2471,2189,4407,4888,4972,467,1608,2631,200,406,5644,467,4080,2019,406,200,1691,2248,4885,3912,471,1691,3912,512,512,3912,136,1903,2248,5145,1652,4885,3912,4885,579,136,1652,512,1903,3668,4885,1652,3668,579,5145,471,512,1652,2248,1691,471,5145,1716,726,2510,892,892,2510,466,1991,1716,333,4580,726, + 465,4580,466,153,3399,1040,610,1040,705,610,1928,3399,610,1251,1631,4035,1631,4765,4035,5035,1251,4035,4370,509,572,4523,3596,2439,5460,352,4236,3622,1960,3225,1919,2459,3900,3450,1960,2800,2270,3450,3622,5171,2800,1960,3225,1960,3450,3900,1569,1919,3450,2270,4681,4584,2657,2840,3226,4681,745,4729,2840,2657, + 3243,5386,3741,3226,5386,3243,4681,3226,3741,4584,2840,5386,919,580,5386,3226,4729,919,4681,2840,580,745,580,919,4729,745,2772,2207,1671,4898,4261,868,1671,353,806,1977,1287,5400,1396,1234,287,2182,3578,4946,2731,1495,4093,2756,5345,2514,5297,4458,5667,1907,648,2494,5193,4263,1940,4924,2646,4016,2258,1402, + 4143,3480,5527,4641,5155,1278,2822,710,3554,5477,1728,86,3878,496,592,4979,2105,3311,2551,1347,4468,1171,1282,1397,4349,5639,581,582,302,3717,1282,4979,592,4349,5618,4096,2351,2351,1171,4349,2351,496,2105,1171,2351,1278,3554,496,2351,4016,4143,1278,1907,5193,4016,2351,5345,1907,2351,1495,981,455,1397,1282, + 3717,785,2841,4240,328,3717,592,710,2822,3717,2822,1402,2258,3717,2258,2494,648,4093,3717,648,2756,455,981,981,455,583,1833,2300,428,4125,3910,1833,583,4125,4564,5483,3910,5608,5728,5597,3352,2497,1638,5597,2917,3867,4524,1638,2497,2520,3831,5570,1971,303,5273,5570,1658,547,1590,3831,2520,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5106,1053,1233,1539,2520,3831,5570,1971,303,5273,5570,1658,547,1590,3831,2520,2112,5643,3133,1896,3213,29,3133,4417,3445,4260,5643,2112,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4822,4498,1905,2063,1989,1354,5539, + 3177,4027,1354,5286,2456,5262,1989,2063,819,4112,4985,4240,1286,819,4240,2841,2381,1286,2841,785,3578,2182,4112,2411,4171,5627,4605,5400,1287,1958,4498,881,798,4879,3711,5627,4131,3499,2411,4605,1291,5183,3499,1291,4691,5154,231,4747,5549,5154,2430,1396,231,3225,3900,2459,4236,813,537,603,920,2868,920,603, + 3546,4971,4907,3711,4131,4436,45,5549,4747,45,5714,3518,2878,5695,1539,2216,5356,312,5106,1053,5695,4302,1233,1539,5356,1053,1213,415,774,1836,2897,774,1168,1392,1836,1168,3847,1285,1392,1678,5560,1977,806,3773,4009,244,22,22,244,4457,798,4892,325,3613,2851,1950,4822,1905,2725,4574,4009,3773,1422,3613, + 2374,4574,2725,3773,21,5686,130,5544,4086,2856,1978,5544,130,1188,1525,4256,5067,2696,2921,3238,755,755,3238,5634,973,973,5634,1541,3255,3255,1541,3869,1958,1958,1287,1287,3773,3773,22,22,4822,4822,21,21,1287,1287,1977,1977,3238,3238,2921,2921,4457,4457,244,244,2725,2725,5686,5686,4892,4892,2851,2851, + 244,244,2374,2374,5544,5544,1978,1978,798,798,881,881,1678,1678,806,806,1944,3262,257,1529,1158,1585,3262,1944,21,21,3773,3773,2921,2921,4256,4256,1977,1977,5560,5560,1950,1950,4892,4892,2171,1272,1585,1158,4574,4574,2725,2725,22,22,798,798,325,325,1958,1958,4256,4256,1525,1525,806,806,5400,5400, + 4498,4498,4822,4822,1978,1978,1541,1541,5400,5400,4498,4498,1529,257,1272,2171,1429,1429,4457,4457,1541,1541,5634,5634,3340,5412,73,1653,1125,2635,3340,3695,2604,3695,2924,913,5412,2604,913,73,5011,3114,2604,5412,3114,1125,3695,2604,3695,3340,1653,2924,2635,5011,5412,3340,3566,3745,3121,4713,3566,4713,2635,1125, + 3121,3745,3114,5011,3745,3566,1125,3114,4713,3121,5011,2635,3771,1676,5314,3247,1500,334,3771,2208,1945,2208,3895,707,1676,1945,707,5314,335,1159,1945,1676,1159,1500,2208,1945,2208,3771,3247,3895,334,335,1676,3771,3599,5461,2768,1610,3599,1610,334,1500,2768,5461,1159,335,5461,3599,1500,1159,1610,2768,335,334, + 2561,2561,2561,2561,1612,2464,3064,3096,2561,2561,2561,2561,2561,2561,2561,2561,3096,3064,5012,4052,2464,1612,1530,1279,2561,2561,2561,2561,3064,2464,1279,5012,1612,3096,4052,1530,1530,4052,3551,1248,5012,1279,4737,3786,1279,1530,1248,4737,4052,5012,3786,3551,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,4599,1501,4680,604,604,4680,405,407,1501,4599,3489,2512,4680,1501,2512,405,4599,604,407,3489,3489,407,1437,114,405,2512,4600,2765,2512,3489,114,4600,407,405,2765,1437,3163,4127,2707,706,1611,538,5184,3548,4127,1611,3548,2707,538,3163,706,5184,4601,2576,3163,538, + 3623,3974,1611,4127,3974,4601,538,1611,2576,3623,4127,3163,4601,3974,3623,2576,408,2630,5078,343,343,5078,2680,2605,2630,408,450,3844,5078,2630,3844,2680,408,343,2605,450,450,2605,4752,5543,2680,3844,540,3144,3844,450,5543,540,2605,2680,3144,4752,4233,3208,1272,257,2231,3115,3208,4233,1529,2171,3115,2231, + 4916,1677,1158,1944,5707,1808,1677,4916,3262,1585,1808,5707,1677,1808,3208,3115,1158,1677,3115,2171,1808,1585,1272,3208,5707,4916,2231,4233,3262,5707,4233,257,4916,1944,1529,2231,2078,1028,1270,5705,3427,5027,1028,2078,5577,3723,5027,3427,5705,1270,3723,5577,791,4602,3723,1270,316,3229,4602,791,5705,5577,3229,316, + 3117,2045,3427,2078,809,584,2045,3117,1028,5027,584,809,2045,584,4602,3229,3427,2045,3229,5577,584,5027,3723,4602,809,3117,316,791,1028,809,791,1270,3117,2078,5705,316,4302,5356,1213,1913,1233,4302,1913,5067,4256,1719,1188,2905,1525,4457,1429,4224,1396,2430,226,1234,312,5695,2216,4144,2430,4385,226,5106, + 312,4144,1188,130,4086,2905,798,4457,4224,4879,2878,5154,5549,45,2878,5549,231,1147,4747,1147,4436,4747,4009,2374,244,4574,2374,4009,5686,21,2900,748,5189,1987,4498,1958,2536,1905,4892,1950,1905,2536,1958,325,2536,325,4892,2536,528,3086,4117,4171,528,4117,3086,4907,4131,4117,5627,4171,4117,4131,2690,2043, + 5189,3518,5714,1564,1913,549,2897,1233,4907,2819,131,3711,3230,3086,528,3518,3775,4436,1147,131,1719,4256,2921,3534,2851,3613,149,3757,21,4822,1950,2856,4010,1978,2851,2851,3757,3757,3757,3757,1950,1950,3613,325,325,1422,1422,4574,4574,5686,5686,1422,1422,2374,2374,3613,1053,1285,1213,1285,3847,1687,1687,549, + 1913,3847,549,1687,1978,3869,1541,2696,3255,3869,4010,1719,3534,2856,5067,1719,4010,3757,2851,149,1422,5686,2900,2819,1564,2012,131,2819,2012,5714,2012,1564,3339,5540,4915,2602,2472,3872,1918,1548,1592,4191,761,3339,2602,3567,4841,4257,3567,4257,2149,75,2149,4841,3567,5317,3598,3223,2127,4770,1593,3207,75,2149, + 5317,3896,1772,219,1550,3026,1772,1323,1550,1846,451,1632,1846,1632,1504,1647,1504,451,1846,4836,1323,1772,3896,1550,219,3026,1647,1504,4836,131,1314,4691,5627,3518,2878,1147,131,2878,4385,287,1147,5183,4171,5627,4691,4171,3518,131,5627,1147,287,1314,131,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450, + 4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2112,3047,4417,1896,4634,3445,2112,1896,3213,4634,1896,4417,5552,3213,4417,3047,3445,5552,3047,2112,659, + 125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2926,4917,3200,1882,4917,529,2810,3200,529,4817,3954,2810,4817,2926,1882,3954,1882,3200,2810,3954,2797,3827,727,2865,278, + 787,2898,5578,787,4431,3553,2898,4431,3205,1384,3553,3205,278,5578,1384,5578,2898,3553,1384,2561,2561,2561,2561,2390,5434,3997,2020,5434,2250,3955,3997,3506,3376,1812,585,3376,2465,3873,1812,2020,3997,3955,585,430,3264,487,469,3264,72,17,487,72,1350,3470,17,1350,430,469,3470,469,487,17,3470,2561, + 2561,2561,2561,643,3522,2057,1773,3522,1623,3049,2057,5013,2883,2552,3672,2883,4249,966,2552,1773,2057,3049,3672,4617,27,3827,2797,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,3516,3638,1774,792,2629,3516,792,1321,2650,1479,4771,1413,1321,792,1774,5382,4278,1235,3842,5376,218, + 4278,5376,5382,2390,3506,2250,5434,3852,1654,2764,967,1025,3,2764,1654,3077,2436,261,2796,2436,575,848,261,3766,3471,1219,4232,3471,1714,849,1219,2796,261,848,4232,1574,1025,1654,3852,2629,218,3638,3516,4480,903,5360,1962,4373,1788,1386,431,4124,2708,1674,2960,1386,3491,4388,2960,1788,50,3491,1386,431, + 1386,2960,1674,452,4124,2960,4388,3323,1261,5484,2739,157,2103,4480,1622,2893,4356,903,4480,1088,3580,3158,5109,5298,5365,1962,5360,4167,5365,2205,430,1350,72,3264,816,1764,2322,5409,1764,3097,1144,2322,3097,1655,254,1144,1655,816,5409,254,2561,2561,2561,2561,4617,3451,963,27,2561,2561,2561,2561,2561,2561, + 2561,2561,337,5322,2163,2503,1718,1775,5703,3227,1775,337,2503,5703,216,4736,3324,5456,4051,216,5456,4988,4736,5318,2995,3324,5318,4051,4988,2995,643,5013,1623,3522,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2179,4336,3001,4401,5119,5070,1518,3244,5070,2179,4401,1518,3215,2930,2488,142,1032,4408,4140,1953,4408,3215,142,4140,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1461,4157,5431,3789,2571,2190,605,3975,2190,1461,3789,605,680,2884,1320,3624,2577,389,2440,217,389,680,3624,2440,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3905,4461,5221,2587,4461,4562, + 3995,5221,4562,3602,933,3995,3602,3905,2587,933,25,4072,2807,4425,1491,534,1185,2863,534,25,4425,1185,258,3952,723,3648,914,2836,1591,281,2836,258,3648,1591,1200,403,1515,5407,93,1200,5407,1711,403,5285,4536,1515,5285,93,1711,4536,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303, + 1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,5110,214,1561,3730,2060,2271,4364,3170,2271,5110,3730,4364,2463,3197,2553,1983,1984,2461,1673,3358,2461,2463,1983,1673,413,1648,2143,2460,873,3091,383,2811,3091,413,2460,383,5510,5186,472,2948,2186,2489,447,3245,2489,5510,2948,447,1856,4038,4186,1967,2739,1856,1967,3323,4038,5484, + 1261,4186,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5625,4048,4300,1139,3641,1197,4838,2593,4838,373, + 2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742, + 3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3951,3782,3573,3662,2663,1703,2515,741,330,3951,3782,3573,3662,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 4767,384,1615,4410,2674,4767,4410,2385,384,1142,3535,1615,272,4775,3273,3904,4188,1079,2414,1624,1079,272,3904,2414,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842, + 2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5625,4048,4300,1139,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987, + 2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770, + 872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987, + 2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114, + 5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120, + 1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251, + 4310,401,4310,2008,3153,401,1757,5718,4687,4251,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,1788,4124,452,50,4373,2708,4124,1788,4403,197,1000,1000,42,3359, + 3819,3819,915,5096,232,1433,3776,1298,4344,5418,5418,563,2677,190,3168,3168,190,877,2431,2431,932,1298,749,4344,3268,2975,5392,1865,5195,3839,1298,2421,5332,5392,2975,4301,1408,2598,3774,3526,5715,4005,949,278,3205,4431,787,2926,4817,529,4917,4942,5411,5365,625,2668,1304,1424,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2465,2390,2020,3873,2250,3506,585,3955,3873,2020,585,1812,2465,3376,3506,2390,4249,643, + 1773,966,1623,5013,3672,3049,966,1773,3672,2552,4249,2883,5013,643,1714,3077,2796,849,575,3766,4232,848,849,2796,4232,1219,4771,3852,967,1413,1479,1574,3852,4771,979,1888,2391,3306,220,762,3519,930,762,979,3306,3519,3692,4448,4643,2080,2759,814,3204,1807,814,3692,2080,3204,2506,5605,4964,4371,2530,4597, + 3098,3906,4597,2506,4371,3098,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,158,1968,4506,1830,4834,1173,3490,2945,1173,158,1830,3490,696,5096,915,2597,232,1438,1720,1433,1438,696, + 2597,1720,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757, + 3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5410,4525,924,2867,5309,3949,2550,1019,2299,2625,4525,5410,4525,4268,2135,924,675,3241,5384,3513,974,5300,3241,675,2931,4091,3314,1706,5309,3949,2550,1019,2931,4091,3314,1706,4525,4268,2135,924,675,3241, + 5384,3513,974,5300,3241,675,3241,1706,2521,5384,5300,2931,1706,3241,1706,3314,1915,2521,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,3241,1706,2521,5384,5300,2931,1706,3241,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,1706,3314,1915,2521,5410,4525,924,2867,1796,1012,3949,5309,2625,5642, + 4268,4525,1796,1012,3949,5309,2625,5642,4268,4525,5642,1796,5309,4268,5642,1796,5309,4268,2299,2625,4525,5410,1768,2964,5300,974,1917,4811,4091,2931,1917,4811,4091,2931,1768,2964,5300,974,2964,1917,2931,5300,1115,1768,974,1941,2964,1917,2931,5300,1115,1768,974,1941,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,3921,4212,5280,3016,625,1424,3921,3016,1304,2668,5280,4212,1424,1304,4212,3921,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4694,842,2090,0,5487,3612,842,4694,0,2090,5450,1937,757,5278,3981,4395,842,3612,5450,2090,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,5278,4694,0,3981,757,5487,4694,5278,3981,0,1937,4395,1937,5487,757,4395,5450,3612,5487,1937,4589,2516,2516,4589,2516,4138,4138,2516,1566,4589,4589,1566,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2677,563,120,120,2656,2656,3050,1532,1574,1479,2650,4882,1025,1574,4882,3,967,4882,2650,1413,2764,3,4882,967,2515,3951,3662,741,3782,493,2410,3573,1703,2515,741,330,3025,4337, + 2852,3025,1682,414,414,1682,3777,3025,3777,3939,5445,2085,3939,2085,190,190,2085,1714,3471,3766,3077,3077,3766,575,2436,5186,2186,3245,472,3197,1984,3358,2553,4588,303,2555,547,4588,303,2555,547,5411,3976,4773,5365,1765,3497,1088,3819,3819,4042,4042,1532,3050,5418,5418,2885,3184,5263,5405,3332,4301,5401,749, + 1298,3526,1664,71,3147,3453,1271,950,2558,5505,288,2734,3777,3777,3184,2885,71,1271,2723,1682,1682,2723,5405,5263,3453,3147,4337,3278,2852,288,5505,1777,2885,5405,3147,71,5245,4137,3839,5195,4005,5715,2975,3268,5715,2421,2975,3359,42,42,3359,3168,877,932,3168,673,3281,673,3359,42,42,3359,3058,4167, + 2205,5298,1765,1972,1209,3497,1924,4942,5365,1267,3332,5401,5588,204,490,1765,1088,3407,1100,5322,337,4798,1033,1775,1718,1033,3407,337,1775,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3001,4336,5119,3244,3976,1887,4773,5401,4301,3774,1664,3526,2935,4042,4042,5688,3316,723,3952,914,281,2143,1648, + 873,2811,214,3182,663,2060,3945,2894,663,3182,413,3091,873,1648,3273,4775,4188,1624,2807,4072,1491,2863,5431,4157,2571,3975,1235,2629,1321,3842,3842,1321,5382,5376,3638,218,5382,1774,1235,4278,218,2629,3945,3182,214,5110,663,2894,2271,2060,2894,3945,5110,2271,1561,214,2060,3170,1461,2190,2571,4157,4964,5605, + 2530,3906,1886,2684,1888,979,1502,5185,762,220,5185,1886,979,762,1886,5185,1502,2684,2684,1502,220,1888,1320,2884,2577,217,1320,217,2440,3624,384,4767,2674,1142,2385,3535,1142,2674,3532,4738,5649,2147,3532,2147,4461,3905,2147,5649,4562,4461,5649,4738,3602,4562,4738,3532,3905,3602,4678,5648,649,649,5648,4804, + 2086,649,1203,4678,649,2086,4804,1203,2086,2086,2066,1639,4455,2086,1639,2873,4455,4455,2103,3325,2893,4480,5445,2085,2085,3325,1288,4773,2893,1102,912,1962,5365,912,4883,1622,1962,5134,886,1169,3300,3252,5007,1871,1269,5134,3252,1269,886,2120,2933,1467,3348,2910,329,5071,886,1269,4908,479,4656,2910,3348,1269, + 1871,2933,2120,4908,479,4908,2120,2910,1169,886,479,2910,4656,329,4456,5563,1520,2910,2120,4456,329,2120,1467,1165,4456,4456,1165,1205,5563,5071,329,1520,4958,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2515,741,3662,3951,2561,2561,2561,2561,3951,3662,3573,3782,3782,493,2410,3573,1703,2515,741, + 330,3951,3782,3573,3662,1703,330,741,2515,3782,3573,2410,493,2515,3951,3662,741,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3782,493,2410,3573,2515,3951,3662,741,2561,2561,2561,3662,3573,2174,625,2668,1304,1424,3921,4212,5280,3016,625, + 1424,3921,3016,1304,2668,5280,4212,1424,1304,4212,3921,625,2668,1304,1424,3921,4212,5280,3016,625,1424,3921,3016,1304,2668,5280,4212,1424,1304,4212,3921,625,2668,1304,1424,3921,4212,5280,3016,625,1424,3921,3016,1304,2668,5280,4212,1424,1304,4212,3921,625,2668,1304,1424,3921,4212,5280,3016,1304,2668,5280,4212,1424, + 1304,4212,3921,2561,2561,2561,2561,2561,2561,2926,4917,3200,1882,529,4817,3954,2810,2926,4817,529,4917,2926,4917,3200,1882,529,4817,3954,2810,2926,4817,529,4917,2926,4917,3200,1882,529,4817,3954,2810,2926,4817,529,4917,3088,5509,4356,4185,3217,5509,3088,2570,4185,2893,1887,2570,2893,4773,2561,2561,2561,2561,5605, + 3395,3326,2530,3326,2229,4597,2530,4768,2061,3395,1097,3395,5605,2506,2229,1097,2506,4597,3395,5674,3326,4773,1288,3201,2873,4531,2086,4455,4531,2066,2086,2086,157,1622,5491,2038,1102,5365,4773,1288,5491,3201,1288,157,5491,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,693,659,1309,4566,2561,2561,2561,2561,1540,2236,1227,3574,5227,859,983,2083,859,2422,3759,983,2422,1659,1328,3759,1659,5227,2083,1328,2083,983,3759,1328,3897,5650,1297,1602,5499,2256,2676,2049,2256,3962,108,2676,5583,2082,2039,3608,2082,5430,687, + 2039,2049,2676,108,3608,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,4795,2911,622,1299,2859,2805,2310,4421,2805,3587,2308,2310,3587,986,4953,2308,986,2859,4421,4953,4421,2310,2308,4953,14,14,14,14,2259,2611,3937,3752,2611,5052,5131, + 3937,1343,2829,3739,193,2829,2329,4659,3739,3752,3937,5131,193,429,2392,5650,3897,5608,5074,2917,3352,14,14,14,14,2497,2197,3352,2917,14,14,14,14,3811,4795,1299,5080,3956,4610,1451,2590,1368,3956,2590,3528,5080,1299,622,3574,2236,3859,1371,1227,4423,5651,4067,3257,1054,4423,3257,1754,3528,2590,1451, + 1166,2669,4929,3080,12,5044,2669,12,1166,14,14,14,14,5580,5192,2473,4221,1481,4255,5681,2542,3880,1481,2542,4221,3542,4487,2473,5192,4959,3542,5192,5580,5651,2984,4305,4067,2984,1054,1754,4305,1754,3257,4067,4305,3156,1104,5083,5579,1104,2330,155,5083,3731,4238,5623,1521,4238,3663,3714,5623,5579,5083,155, + 1521,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,1368,5044,4610,3956,3172,5009,3307,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908, + 1046,908,449,789,1767,4857,449,2062,3038,1884,385,3799,3038,4064,1884,1631,1733,3788,3447,3447,3788,3871,1651,5387,4603,3063,77,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,310,4660,4748,4689,3063,4583,310,4689,4929,1368,3528,3080,4603,2640,4583,3063,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,4321,4321,4321,4321,429,162,568,2392,4321,4321,4321,4321,4321,4321,4321,4321,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4254,957,2611,2329,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,3585,2837,4930,1763,5419,2423,5550,5201,2423,3585,1763,5550,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5102,4954,1761,3212,2737,1398,778,5628,5427,2737,5628,3212,5571,3270,1761,4954,2079,5571,4954,5102,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,14,14,14,14,14,14,14,14,14,14,14,14,2218,3094,3394,4230,3094,2218,3423,4045,3394,3094,4045,3693,4230,3394,3693,2048,2218,4230,2048,3423,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,14, + 14,14,14,14,14,14,14,14,14,14,14,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2986,2985,3659,1092,1640,252,1642,3980,252,2986,1092,1642,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2849,2712,2543,3967,321,4380,2005,911,4380,2849,3967,2005,1816,1129,5426,2615,1778, + 5111,1779,3982,5111,1816,2615,1779,2744,1042,1315,2853,4509,3816,3820,2132,2543,3982,1779,3967,3967,1779,2615,2005,2005,2615,5426,911,5617,982,3165,5349,5349,3165,1598,2909,2909,1598,501,5657,5467,1255,5591,1522,1522,5591,4950,3476,3476,4950,5683,1346,2009,2096,3933,1459,3933,1839,3862,633,1459,3933,633,1815,3469, + 4645,2096,2009,4645,1874,3521,2096,2096,3521,1839,3933,633,3862,1874,4645,1815,633,4645,3469,1804,3418,694,4163,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3543,975,5448,3072,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2134,5251,5251,5251,5395,5251,5251,5251,1137,5251,5251,5251,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251, + 5251,5251,5251,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4701,2705,4722,876,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748, + 748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,3070,4677,4116,4670,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3543,975,5448,3072,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295, + 1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902, + 1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295, + 1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83, + 83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554, + 4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1631,5143,1884,1251,1013,5054,3447,1631,5143,1013,385,1884,3266,5054,1013,5143,2017,3119,3033,1222,3119,2017,1163,2106,2106,1163,1766,3360, + 2230,817,1766,1163,4413,2230,1163,2017,3360,817,2230,2106,2106,2230,4413,3119,4545,2370,4546,5214,5276,240,898,119,3039,4250,2278,1360,3260,255,1029,4632,4632,1029,2217,1414,1414,2217,2438,4575,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546, + 1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122, + 4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370, + 4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,63,693,4566,1296,3533,3366,2326,3366, + 1572,2326,3721,2426,904,4474,3366,3533,3013,5022,3721,3533,2326,5030,5025,1251,1040,5459,1733,1631,1251,5143,1631,3447,3266,3266,3447,1651,5054,1040,3399,5238,5054,1651,3399,1013,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,5143,1631,3447,3266,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,2329,2259,3752,4659,5052,1343,193,5131,4659,3752,193,3739,2829,5052,957,4254,3663,3156,5579,3714,2330,3731,1521,155,3714,5579,1521,5623,3018,2703,2600,875,4759,2130,2600,4960,2293,4003,4671,5589,5532,4509,2132,1101,867,695,2874,1809,3816,1809,1108,1809,2874,3684,1108,695, + 4913,2874,2744,292,1174,1042,3816,867,1809,5589,4671,127,1042,5590,2293,1315,5590,1177,4003,2293,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,2561,2561,2561,2561, + 2561,2561,2561,2561,3543,975,5448,3072,3981,2090,5450,4395,2561,2561,2561,2561,757,5278,3981,4395,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842, + 3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,757,3612,842,5278,3981, + 2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450, + 4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757, + 5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981, + 4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,3610,3867,5074,5608,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1916,3038,3799,4250,385,1013,1013,385,1251,1631,3436,3399,1040,4036,5025,1733,1251,5459,1040,5238,4583,3191,4660,310,5467,1346,5683,1255,4509,5532,5480,1306,5467,1522,3476,1346,5617,5657,501,982,5617,5349,2909,5657,2543,2712,321,911,5426, + 1129,1778,3982,2543,911,5426,3982,1816,5111,1778,1129,2849,4380,321,2712,3734,4309,5619,5246,2546,3439,596,2628,3439,3734,5246,596,3734,3439,2546,4309,4309,2546,2628,5619,4805,5619,2628,4338,3080,3528,1166,12,4610,5044,1166,1451,4929,2669,5044,1368,4030,3307,4569,4030,4569,3511,4569,5371,4852,3511,5371,4974,955, + 2014,5015,3173,159,4339,3062,2014,3228,4339,159,3228,159,1845,3564,1845,756,1845,1845,756,756,3173,3173,2014,2014,5015,5015,3173,3173,159,159,1845,1845,2014,2014,159,159,4660,5532,1101,4748,3191,5480,5532,4660,3191,2847,5480,1636,4348,3109,2446,1683,40,2256,5430,2504,2338,5571,1398,778,5102,3212,5628,3270, + 5427,3212,1761,1398,2079,5102,778,2737,3270,2338,2504,5430,5499,2049,687,3962,5583,3608,108,687,2049,3608,2039,2082,3962,40,1683,2151,3897,1602,5324,1404,429,3897,2151,1404,4986,162,429,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,14,14,14,14,14,14,14,14,5681,5580,4221,2542,4487,3880,4221,2473,4255,4959,5580,5681,4255,1481,3880,4959,2911,1540,3574,622,3859,3811,5080,1371,1371,5080,3574,1227,3859,2236,1540,3811,3033,3360,1766,1222,1766,817,4413,2017,3260,4575,2438,255,3437,1916,4250,3039,3360, + 3119,4413,817,5276,4495,240,119,898,2961,5276,119,2961,4495,1013,5054,5054,1013,4064,5036,385,1884,3799,385,5036,3297,5512,1916,3437,4250,3799,2278,4064,3038,1916,3297,1360,2278,5512,385,1013,1631,1251,5246,5619,4805,752,2628,596,4264,4338,596,5246,752,4264,2837,4805,4338,5419,1042,1174,2337,5680,1177,5590, + 5572,1625,5590,1042,5680,5572,3659,2985,1640,3980,5661,129,2939,2375,902,715,129,5661,1393,902,5661,1176,715,1181,1425,129,1340,3611,715,902,1093,1340,902,1393,3611,1545,1181,715,2939,2814,4496,927,1176,5661,2375,39,129,1425,2814,2939,5525,1307,927,4496,2375,2939,927,1307,39,2375,1307,5525,4321,4321, + 4321,4321,4321,4321,4321,4321,4321,4321,4321,4321,3524,170,4050,5586,2318,5387,77,5367,2474,5281,484,5444,5492,1844,4902,5444,2785,359,3458,2318,77,1838,5492,5444,4902,4522,3398,4932,1636,1636,4932,4348,5572,5281,2474,1625,2337,5281,5572,5680,5450,3612,757,4395,3889,5251,5251,5251,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,530,5251,5251,2134,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,5251,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2479,2151,5324,2175,1421,1404,2151,2479,1421,1254,4986,1404,568,162,1602,1297,162,4986,5324,1602,4986,1254, + 2175,5324,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3533,3721,4474,3013,2426,3721,5030,862,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,4181,233,2943,4087,2406,1482,3083,952,233,4181,996,4068,4087,194,4087,4181,2453,2406,4068,3083,4181,4087,194,4087,1482,2453,4181,2943,2606,2606,952,3083,3079,5091,4068,996,5091,2606,3083,4068,1054,2984,5651,4423,3542,4959,3880,4487,1801,4576,2154,1862,4576,419, + 3983,2154,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419,4576,1801,1801,4576,2154,1862,2583,419,3983,5235,419,828,783,3983,224,1801,1862,2238,2238,5235,3983,783,224,2583,4576,1801,4576,2583,5235,2154,828,224,2238,783,1862,2154,5235,2238,828,419,2583,224,5559,1189,461,2290,1189,4206, + 2559,461,4206,150,4491,2559,150,5559,2290,4491,2290,461,2559,4491,150,4206,1189,5559,1801,4576,2154,1862,4576,419,3983,2154,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419,4576,1801,1801,4576,2154,1862,1801,4576,2154,1862,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419, + 4576,1801,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419,4576,1801,1801,4576,2154,1862,1801,4576,2154,1862,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419,4576,1801,419,828,783,3983,828,1801,1862,783,1862,2154,3983,783,828,419,4576,1801,671,4462,289,1149,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3039,1360,1013,4036,1251,3437,3039,1040,3436,3437,1251,5143,1013,1360,3297,5143,3297,3437,3436,1631,5143,3436,1040,3039,4036,1013,3399,4036,3216,5589, + 127,3820,3816,1108,752,4805,2837,3585,4338,4264,2423,5419,4264,752,3585,2423,4930,2837,5419,5201,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1481,4255,5681,2542,3880,1481,2542,4221,5681,5580,4221,2542,4255,4959,5580,5681,4255,1481,3880,4959,1481,4255,5681,2542,3880,1481,2542,4221,5681,5580,4221,2542, + 4255,4959,5580,5681,4255,1481,3880,4959,1481,4255,5681,2542,259,1481,2542,3565,5097,5580,4221,3565,5689,4959,5580,5097,5689,259,3880,4959,3880,259,3565,4221,5681,5097,3565,2542,4255,5689,5097,5681,4255,1481,259,5689,1481,4255,5681,2542,259,1481,2542,3565,5681,5097,3565,2542,4255,5689,5097,5681,4255,1481,259,5689, + 2785,5444,1844,2561,2561,2561,2561,2291,5470,4772,3626,3626,4772,69,5470,1344,4534,4772,3002,2291,3626,900,4354,5429,4281,4354,4281,5429,626,2777,3472,1242,2777,3562,4276,3472,3562,4731,1385,4276,4731,626,1242,1385,2415,1489,626,4731,1489,1427,2777,626,1427,5029,3562,2777,2415,4731,3562,1427,1489,5470,2291,4354, + 5429,4281,2291,5470,4772,3626,2639,3258,5429,4354,3807,4179,3258,2639,5612,620,4179,3807,900,3626,69,3626,4772,69,5029,1427,2291,3002,5470,1344,4534,4772,3002,2291,3626,900,1489,2415,1344,5470,4772,4534,69,4354,4281,5429,2639,4354,5429,3258,3807,2639,3258,4179,5612,3807,4179,620,2344,2539,5500,4324,5190,5260, + 3821,4625,2450,3180,959,4237,3442,4414,4943,5148,4529,2850,4529,4277,1599,3017,5310,1157,5393,3712,4833,1190,5373,5209,3733,1881,30,4237,2722,3941,3529,3821,2233,681,4749,175,1001,1113,4749,4987,4664,2274,3074,5148,587,1748,2573,4324,2274,5690,4801,2297,3295,5500,1869,4989,3985,5248,2808,3074,3685,1001,1979,1091, + 5310,5393,5258,4625,4553,324,2722,959,4121,3821,2450,4,5190,4943,3985,3295,544,3685,1113,94,1316,2450,4625,2740,3941,2722,3922,4216,3932,324,4113,1364,3817,5672,5260,4165,4414,2850,5290,1130,5672,235,3712,5502,3027,31,4853,545,3442,43,1369,815,1130,2382,3886,2344,1055,5690,5629,2362,4529,1599,2095,3932, + 2058,2319,3941,4554,4570,4213,2084,713,5270,4570,3705,2573,2709,4247,3041,1186,3444,2477,5351,3444,2804,2783,2783,2477,3444,2539,5264,2732,5264,3725,2732,3725,2928,2670,2928,4886,2670,4886,4222,4432,4222,4352,4432,4352,1819,1837,1819,2146,1837,2146,3259,4489,3259,4084,4489,4084,2158,28,2158,5146,28,5146,5645,4652, + 5645,1157,4652,1873,3017,5645,3461,2158,2099,4672,2099,3259,1841,3259,3028,1841,3028,1819,4459,1819,4940,2870,4222,857,1715,4432,3426,2870,857,2928,2591,2928,1070,4948,2732,3725,2499,5264,3886,5495,3725,2670,3600,4352,1837,338,1837,2146,3179,4489,2925,2925,4489,4084,4714,4084,28,1595,4652,4098,4098,4652,1157,96, + 1157,5310,3556,3853,3017,2234,5645,506,4956,2732,4948,4893,28,5146,3426,4432,4352,4508,2670,4886,38,1070,5264,2340,4940,4222,2234,506,2158,4864,2993,2993,764,3295,4989,5374,5672,1130,541,2058,3932,2560,5690,4664,541,4216,1145,874,4216,3295,5374,815,2993,4864,815,2058,3492,4664,3640,4540,3640,5672,1441,4989, + 3106,698,3106,5690,5497,5374,2993,541,4864,4864,698,1441,1441,5374,2993,5374,4540,5374,4540,1441,764,764,874,1145,1145,764,874,874,3492,4540,3492,1145,541,541,3492,2560,2560,2560,698,698,3529,3523,4553,3523,4705,708,4705,5232,708,5232,420,2973,2973,5406,850,850,1195,1600,1600,444,2834,444,835,2834, + 2353,3724,835,1498,175,3724,1637,420,4710,2288,835,3724,3822,708,5232,1979,1001,681,3085,4553,3523,1114,4749,1113,3157,3529,3027,1179,4705,1395,2408,4705,1179,4710,420,3343,4594,1195,5406,4133,1195,4594,2478,2353,444,5446,2353,2478,402,681,1498,1085,175,4749,2288,3724,175,3030,2834,835,3030,1600,2834,960, + 850,1600,960,2973,850,3822,5232,2973,3085,3523,708,3288,3640,3640,3640,3640,3640,3640,3640,3640,5672,5535,5535,5672,5535,5535,5672,5672,5672,846,5672,5672,3640,3640,3640,5672,5626,5626,642,3640,3640,5672,5672,5672,3640,3640,3640,846,5672,5672,5535,5592,3356,3288,2632,5535,5611,3640,3640,5098,846,1232,2854,3640, + 3640,1099,668,3222,5672,5260,5260,3640,4324,3640,5060,5190,5260,4653,5060,4653,2623,2356,4753,3312,3705,3312,2709,3705,3705,2580,2356,1604,5060,3312,5060,3837,721,2854,3288,4324,3705,3356,2709,4653,2065,4653,2632,4083,846,5348,3837,5697,5611,5190,5348,5190,5190,1232,5190,3408,4919,239,4043,1899,2525,4571,2620,2761, + 2525,1782,1899,2525,1782,1899,5175,931,1704,4043,1899,2525,4043,1899,2525,4043,1899,2525,2525,1782,1899,2525,1782,1899,2265,3274,5156,2445,3274,2265,1283,5196,4269,552,1153,2265,1153,2445,2265,1283,552,2265,2653,4177,2087,5209,2653,2087,4833,4510,1190,5310,5502,5393,1091,4833,1423,235,3853,3556,2309,5260,2309,668, + 1684,32,370,1935,4324,5536,5270,3155,4327,4955,2447,3881,3155,5375,5655,2447,5191,456,4424,4905,4424,456,41,5655,2031,1366,4905,4327,5180,1366,5180,5655,5180,4327,2447,3295,2344,5500,2297,2539,4956,2382,4216,2572,4853,815,3863,5629,4113,3180,1364,677,5271,2319,3180,4237,432,5629,3180,5690,677,5629,5271,3106, + 1869,5672,4324,5260,4987,4324,3640,3817,5190,2541,2573,4943,5190,3084,4943,4414,43,2573,1098,4002,2850,4414,587,4002,545,2323,2850,4529,2507,4247,520,163,1366,5624,18,456,4905,2783,41,3525,2283,2783,2804,2447,4955,5019,163,4905,1366,456,18,41,948,2283,2804,4955,4854,948,1817,4275,41,2378,1119,4135, + 1817,2084,2263,41,3882,2493,650,3101,2533,4570,3466,3645,4540,5374,5497,1441,5497,764,5497,541,1145,5497,1145,874,2560,3492,5497,3492,4540,5497,764,5497,874,698,2560,5497,541,5497,4864,4864,5497,2993,1441,698,5497,5511,1186,4628,5513,4075,3961,2545,31,3529,2517,2058,2545,3361,3821,2954,2058,31,2545,5535, + 5535,5535,897,1206,1206,3222,3222,3222,5626,5626,5626,642,642,642,1206,2697,2697,642,3640,3640,5672,5672,5672,3950,3950,3950,5626,5699,5626,642,642,642,3950,1850,1850,642,3640,3640,3640,3640,3640,897,897,897,5626,5626,5626,5672,5672,5672,642,642,642,1099,1099,1099,5672,5699,5699,3640,3640,3640,3222,1099, + 1099,1850,4796,4796,5626,5672,5626,4794,3640,3640,4794,3288,3288,4794,3288,3288,4794,3640,3640,5535,5535,5535,3640,3640,3640,5672,5535,5535,3288,4794,4794,5535,5535,5535,3288,3640,3640,5672,5535,5535,3288,4794,4794,5672,5672,5672,5535,5535,5535,4628,1186,3631,3041,3631,1186,2507,5293,3041,3042,5513,494,4628,494,5513, + 2257,97,3042,2447,5019,5631,4628,4111,5511,4628,3961,3265,614,4692,3509,2659,3700,2305,179,2305,3700,516,515,2659,4160,3509,4152,4160,614,3509,2136,614,3988,3988,864,4175,3988,614,4160,4177,5021,624,5574,3733,30,624,5528,5574,2136,614,614,2305,2659,2659,2136,614,614,4692,614,4692,614,4692,4692,3288, + 3705,3312,1524,3312,5060,5672,5535,5060,515,2305,2659,516,515,2659,4160,4152,864,4160,614,3509,1175,614,3335,5104,4160,864,3335,4160,4923,2136,1892,1175,2305,2659,2659,2136,2614,1892,614,614,4692,4692,614,4692,179,2305,3700,614,614,4692,1892,614,614,3988,3335,4923,3988,5104,4175,2136,3335,3988,614,1892, + 614,4832,5325,1643,3787,4832,2687,4832,4449,3185,3824,4832,3185,4712,2257,3042,5293,494,3631,2136,614,614,614,4692,614,2136,614,2136,2136,614,2136,4692,614,614,2136,614,2136,4692,614,614,2136,614,2136,4692,614,614,614,2136,2136,614,4692,614,614,614,2136,614,4692,4692,614,614,2136,614,2136,2136, + 614,4692,614,4692,614,4692,614,4692,4692,614,4692,4692,614,4692,4692,614,614,4692,2136,614,2136,2136,614,2136,5293,4712,3042,864,4160,4152,3087,864,4152,5191,2447,5631,5191,5631,4397,2316,2108,2493,2624,5107,629,5536,3881,4927,3881,4934,4927,1717,145,1618,3670,145,1187,3882,2316,2493,4134,5533,3108,5624, + 1366,2031,1746,4134,3108,2533,1119,650,2783,5107,2624,5347,5191,4855,1419,2783,2713,5093,5536,4927,4663,5128,1929,2316,4213,5536,3466,2864,349,3466,2222,2260,2540,4397,650,3286,629,5093,1929,5128,4577,1746,3108,4887,4998,4887,2773,1119,2540,650,2786,2773,4874,3108,5533,1409,4887,3108,735,1449,163,5624,2344,3886, + 2539,4324,2573,5190,3821,4553,4625,3180,4113,959,3442,4002,4414,5148,2808,4529,4529,2808,4277,3017,3853,5310,5393,5502,3712,1190,4510,5373,3733,2269,1881,4237,959,2722,3529,4553,3821,681,1001,4749,1001,94,1113,4987,3640,4664,3074,2808,5148,1748,1098,2573,2274,4664,5690,2297,544,3295,1869,3106,4989,5248,4277,2808, + 3685,94,1001,1091,1244,5310,5258,1316,4625,324,2740,2722,4121,2954,3821,4,2541,5190,3985,4989,3295,3685,1114,1113,1316,4121,2450,2740,4554,3941,3922,2572,4216,324,959,4113,3817,5290,5672,4165,3084,4414,5290,1369,1130,235,1980,3712,3027,3529,31,545,4002,3442,1369,3863,815,2382,2499,3886,1055,4801,5690,2362, + 2323,4529,2095,3922,3932,2319,4237,3941,4570,5536,4213,5536,4570,5270,713,164,5270,3705,4324,2573,2783,1419,2477,2539,3886,5264,5264,1070,3725,3725,1070,2928,2928,857,4886,4886,857,4222,4222,4940,4352,4352,4940,1819,1819,3028,2146,2146,3028,3259,3259,2099,4084,4084,2099,2158,2158,506,5146,5146,506,5645,5645,3017, + 1157,1841,5696,3259,2870,2204,4222,1715,4886,4432,2499,1043,5264,3179,2146,4489,1595,5146,4652,2234,2224,5645,4956,2539,2732,4864,4864,2993,764,874,3295,5374,4540,5672,541,4864,2058,2560,698,5690,541,3932,4216,874,1145,4216,5374,1130,815,4864,2993,815,3492,2560,4664,4540,3492,3640,1441,764,4989,698,1441,3106, + 541,541,4864,698,698,1441,5374,2993,2993,4540,5374,5374,1441,1441,764,874,874,1145,764,764,874,3492,4540,4540,1145,1145,541,3492,3492,2560,2560,2560,698,3529,1395,3523,3523,1395,4705,4705,3343,5232,5232,3343,420,2973,420,5406,850,5406,1195,1600,1195,444,444,2353,835,2353,1498,3724,1498,681,175,1637, + 5406,420,2288,3903,835,3822,3206,708,3085,5258,4553,1114,4246,4749,3157,1395,3529,2408,3343,4705,4133,444,1195,5446,1498,2353,3030,2006,1600,960,4187,2973,3288,3288,3640,3640,3640,3640,3640,3640,3640,5672,5672,5535,5672,5672,5535,5672,5672,5672,846,846,5672,3640,3640,3640,5672,5672,5626,642,642,3640,5672,5672, + 5672,3640,3640,3640,846,846,5672,5535,3288,5592,3288,2065,2632,5611,5697,3640,5098,5672,846,2854,721,3640,1099,861,668,5672,5672,5260,3640,370,4324,5060,4653,5190,4653,5060,5060,2623,1351,2356,3312,3705,3705,2709,2709,3705,2580,4753,2356,5060,3312,3312,3837,3837,721,3356,5592,2709,2065,2709,4653,4083,5672,846, + 3837,3837,5697,5190,4083,5348,5190,5098,1232,3408,1533,4919,4043,1782,1899,4571,2349,2620,2525,4043,1782,2525,4043,1782,5175,2261,931,4043,1782,1899,4043,1782,1899,4043,1782,1899,2525,4043,1782,2525,4043,1782,2653,1399,4177,5209,5373,2653,4833,3712,4510,5310,3853,5502,1091,5393,4833,235,5502,3853,2309,5260,5260,668, + 861,1684,370,1935,1935,3881,5536,3155,5655,5180,2447,5655,5347,2031,4905,4424,4327,1366,4905,5180,3295,4216,2344,2297,5500,2539,2382,2344,4216,4853,31,815,5629,677,4113,1364,4113,677,2319,432,3180,432,1055,5629,5690,3106,677,5271,677,3106,5672,3640,4324,4987,1748,4324,3817,5260,5190,2573,3442,4943,3084,4, + 4943,43,3442,2573,4002,5148,2850,587,5148,4002,2323,4165,2850,2507,3041,4247,2283,41,2783,4955,4327,4854,1817,2263,4275,650,4397,3101,5511,4247,1186,2517,2095,2058,3361,2233,3821,2058,815,31,5535,5535,5535,897,897,1206,3222,3222,3222,5626,5626,5626,642,642,642,1206,1206,2697,642,642,3640,5672,5672,5672, + 3950,3950,3950,5626,5699,5699,642,642,642,3950,3950,1850,642,642,3640,3640,3640,3640,897,897,897,5626,5626,5626,5672,5672,5672,642,642,642,1099,1099,1099,5672,5672,5699,3640,3640,3640,3222,3222,1099,1850,1850,4796,5626,5672,5672,4794,4794,3640,4794,4794,3288,4794,4794,3288,4794,4794,3640,5535,5535,5535,3640, + 3640,3640,5672,5672,5535,3288,3288,4794,5535,5535,5535,3288,3288,3640,5672,5672,5535,3288,3288,4794,5672,5672,5672,5535,5535,5535,3041,5293,3631,2507,4712,5293,3042,97,5513,4628,3631,494,2257,3095,97,4628,3265,4111,4628,5513,3961,2659,515,3700,3988,4160,864,4177,1399,5021,5574,5528,3733,624,5021,5528,2136,2136, + 614,2305,2305,2659,2136,2136,614,4692,614,614,614,614,4692,515,3700,2305,3087,864,4152,4160,3509,4152,5104,4923,4160,3335,614,4160,2136,2136,1892,2305,2305,2659,2136,2136,2614,1892,2614,614,3988,4923,5104,2136,1175,3335,614,1175,1892,4832,2994,5325,3787,2994,4832,4832,1643,4449,3824,2687,4832,5293,3042,494, + 2136,2136,614,614,4692,4692,2136,614,614,2136,614,614,4692,4692,614,2136,614,614,4692,4692,614,2136,614,614,4692,4692,614,614,614,2136,614,4692,4692,614,614,2136,614,4692,4692,4692,614,614,614,614,4692,2316,2751,2108,3881,5375,4934,1717,1187,145,3670,4663,145,3882,4213,2316,1746,3758,4134,2783, + 3525,5107,5347,5655,5191,1929,1618,145,145,4663,1929,2260,3645,3466,3466,349,651,651,2222,3466,2540,5191,4397,5093,4927,4934,4934,3286,5093,4998,4227,4887,2786,4998,2773,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,125,4803,5641,62,4803, + 63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106, + 4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038, + 5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810, + 4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,2893, + 5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658, + 1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2009,2096,3933,1459,3933,1839,3862,633,1459,3933,633,1815,3469,4645,2096,2009,4645,1874,3521,2096,2096,3521,1839,3933,633,3862,1874,4645,1815,633,4645,3469,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,570,4828,1911,2953,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,647,3279,843,3284,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770, + 872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305, + 5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770, + 872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120, + 4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1631,5143, + 1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546, + 5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694, + 2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123, + 5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3210,1670,1275,199,5704,3289,3377,424,2426,3366,1572,862,5022,904,1377,2333,3366,2426,904,5022,804,3366,5022,2333,2426,1022,1377,904,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399, + 5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038, + 3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,1631,5143,1884,1251,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,4813,140,2519,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5143,1631,3447,3266,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090, + 757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,1476,4330,1073,3479, + 3981,2090,5450,4395,2561,2561,2561,2561,757,5278,3981,4395,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981, + 2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842, + 3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450, + 2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278, + 842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090, + 3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,3610,3867,5074,5608,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981, + 4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2112,3047,4417,1896,4634,3445,2112,1896,3213,4634,1896,4417,5552,3213,4417,3047,3445,5552,3047,2112,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,2279,2428,2111, + 3151,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680, + 2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327, + 2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259, + 4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760, + 4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379, + 502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,1493,776,5464,4082,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013, + 5143,790,4809,1374,5173,4082,5464,1724,831,5464,2395,2075,1724,5173,1374,82,5261,4145,4082,831,5239,5464,3572,2395,1041,4082,4145,1453,1493,4082,1041,776,2252,3572,5464,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555, + 303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,3641,1197,4838,2593,4838, + 373,2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922, + 3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,2561, + 2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514, + 1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295, + 872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770, + 2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872, + 3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902, + 5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744, + 2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114, + 5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251,4310,401,4310,2008,3153,401,1757,5718,4687,4251,1631,5143,1884, + 1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546,5214, + 4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370, + 4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214, + 4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266, + 3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5309,3949,2550,1019,1706,3314,1915,2521,2931,4091,3314,1706,5410,4525,924,2867,5309,3949,2550,1019,4525,4268,2135,924,675,3241,5384,3513, + 974,5300,3241,675,2299,2625,4525,5410,4525,4268,2135,924,675,3241,5384,3513,974,5300,3241,675,2931,4091,3314,1706,5309,3949,2550,1019,2931,4091,3314,1706,4525,4268,2135,924,675,3241,5384,3513,974,5300,3241,675,3241,1706,2521,5384,5300,2931,1706,3241,5410,4525,924,2867,4268,5309,1019,2135,4290,675,3513,124, + 1941,974,675,4290,3241,1706,2521,5384,5300,2931,1706,3241,1706,3314,1915,2521,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,3241,1706,2521,5384,5300,2931,1706,3241,1796,1012,3949,5309,4268,5309,1019,2135,4290,675,3513,124,1941,974,675,4290,1706,3314,1915,2521,5410,4525,924,2867,1796,1012,3949,5309, + 2625,5642,4268,4525,2625,5642,4268,4525,1796,1012,3949,5309,2625,5642,4268,4525,2299,2625,4525,5410,5642,1796,5309,4268,5642,1796,5309,4268,5642,1796,5309,4268,2299,2625,4525,5410,1917,4811,4091,2931,1768,2964,5300,974,1768,2964,5300,974,1917,4811,4091,2931,1917,4811,4091,2931,1768,2964,5300,974,2964,1917,2931,5300, + 1115,1768,974,1941,2964,1917,2931,5300,1115,1768,974,1941,2964,1917,2931,5300,1115,1768,974,1941,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,4694,842,2090,0,5487,3612,842,4694,0,2090,5450,1937,757,5278,3981,4395,842,3612,5450,2090,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,5278,4694,0,3981, + 757,5487,4694,5278,3981,0,1937,4395,1937,5487,757,4395,5450,3612,5487,1937,4589,2516,2516,4589,4589,2516,2516,4589,2516,4138,4138,2516,1566,4589,4589,1566,1566,4589,4589,1566,4138,1566,1566,4138,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901, + 3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161, + 5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882, + 5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786, + 1497,2088,3235,1259,525,1497,1259,253,253,3235,2088,525,784,1472,2088,1497,1786,784,1497,525,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,4633,3235,253,151,151,253,1259,3737,3737,1259,3235,4633,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3706,4172,977,2071,2071,977,5449,976, + 976,5449,4172,3706,2899,2116,3140,5247,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786,784,1472,2088,1497,1786,784,1497,525,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706, + 3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328, + 4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,2239,664,361,2980,1726,2021,1510,539,361,664,539,1510,2239,2980,2021,1726,664,2239,1726,539,2980,361,1510,2021,3400,128,23,3061,1689,4952,1411,1155,23,128,1155,1411,3400,3061,4952,1689,128,3400,1689,1155, + 3061,23,1411,4952,3635,1951,3503,591,4861,485,2748,3913,3503,1951,3913,2748,3635,591,485,4861,1951,3635,4861,3913,591,3503,2748,485,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465, + 5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399, + 345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699, + 2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505, + 1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399, + 345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186, + 345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116,3131,3140,2116,4328, + 4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,763,658,443,777,4019,2762,76,5099, + 443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1057,3275,2914,1790,2046,1633,2209,3342,2746,1485,2738,514,4816,2235,4532,3130,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876, + 3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,759,4013,3996,2491,1985,5117,586,2581,5726,1412,2487,2412, + 33,2321,3652,3029,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700,417,1581,5200,1470, + 5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701,4291,4606,3313,1875, + 4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709,4259,4259,4259,4259, + 4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957,4635,4827,1957,2054, + 5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259,4480,903,5360,1962, + 2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651, + 5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,2893,5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005,3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2009,2096,3933,1459,3933,1839,3862,633,1459,3933,633,1815,3469,4645,2096,2009,4645,1874, + 3521,2096,2096,3521,1839,3933,633,3862,1874,4645,1815,633,4645,3469,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,570,4828,1911,2953,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742, + 3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,647,3279,843,3284,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,2561,2561,2561,2561,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650, + 508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83, + 2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902, + 3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83, + 2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167, + 987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743, + 1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370, + 4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694, + 3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798, + 3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3210,1670,1275,199,5704,3289,3377,424,2426,3366,1572,862,5022,904, + 1377,2333,3366,2426,904,5022,804,3366,5022,2333,2426,1022,1377,904,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,1631,5143,1884,1251,5143,1013, + 385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,4813,140,2519,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,5143,1631,3447,3266,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842, + 5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,1476,4330,1073,3479,3981,2090,5450,4395,2561,2561,2561,2561,757,5278,3981,4395,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090, + 5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981, + 842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561, + 2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561, + 3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090, + 5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395, + 757,5278,3981,4395,842,3612,5450,2090,3610,3867,5074,5608,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457, + 5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146, + 984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055, + 1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277, + 2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753, + 4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51, + 51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593, + 1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940, + 984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177, + 440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272, + 2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162, + 3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430, + 1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679,4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320,4863,5320,5320,4863,5320,4679,4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847, + 4679,5320,5166,2527,4939,2032,3601,3187,4990,5687,5687,964,1705,3601,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239, + 4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845, + 3422,486,486,653,1488,5575,845,1010,4774,3422,4629,1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,665,70,5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863, + 4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640,4280,4679,1847,5388,909,2618,2200,5320,4863,4061,794,794,4061,112,4629,4863,4863,4280,4280,2527,5017,1353,4939,2032,1353,5017,5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725, + 5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246,4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162,1069,3890,3890,1868,5632,1692,3292,5632,4162,4280,5388,4863,4280,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,909,2618,2200,1870, + 4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239, + 2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714, + 2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51, + 3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946, + 4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069, + 2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679, + 4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320,4863,5320,5320,4863,5320,4679,4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847,4679,5320,5166,2527,4939,2032,3601,3187,4990,5687,5687,964,1705,3601,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495, + 3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443, + 658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,4629,1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320,2341,4541,3928,5140,4541,5593,4183,3928,5140, + 4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,665,70,5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863,4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640,4280,4679,1847,5388,909,2618,2200,5320,4863, + 4061,794,794,4061,112,4629,4863,4863,4280,4280,2527,5017,1353,4939,2032,1353,5017,5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725,5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246,4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162,1069,3890,3890,1868,5632,1692,3292,5632,4162, + 4280,5388,4863,4280,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78, + 3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076, + 940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582, + 5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518, + 2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470, + 5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076, + 1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679,4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320,4863,5320,5320,4863,5320,4679,4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847,4679,5320,5166,2527,4939,2032, + 5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,4629,1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320, + 2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,665,70,5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863,4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640, + 4280,4679,1847,5388,909,2618,2200,5320,4863,4061,794,794,4061,112,4629,4863,4863,4280,4280,2527,5017,1353,4939,2032,1353,5017,5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725,5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246,4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162, + 1069,3890,3890,1868,5632,1692,3292,5632,4162,4280,5388,4863,4280,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076, + 1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076, + 3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184, + 928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047, + 5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434, + 3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162, + 1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,626,2777,3472,1242,2777,3562,4276,3472,3562,4731,1385,4276,4731,626,1242,1385,2415,1489,626,4731,1489,1427,2777,626,1427,5029,3562,2777,2415,4731,3562,1427,1489,5470,2291,4354,5429,4281,2291, + 5470,4772,3626,2639,3258,5429,4354,3807,4179,3258,2639,5612,620,4179,3807,900,3626,69,3626,4772,69,5029,1427,2291,3002,5470,1344,4534,4772,3002,2291,3626,900,1489,2415,1344,5470,4772,4534,69,4354,4281,5429,2639,4354,5429,3258,3807,2639,3258,4179,5612,3807,4179,620,2291,5470,4772,3626,3626,4772,69,5470,1344, + 4534,4772,3002,2291,3626,900,4354,5429,4281,4354,4281,5429,1938,4706,2688,993,4706,1620,4426,2688,565,3420,5042,1003,3420,5133,1891,5042,993,2688,4426,1003,2683,4118,3915,2941,229,3003,1448,737,3003,4014,5730,1448,3809,738,4220,1931,738,3287,2203,4220,737,1448,5730,1931,5081,81,926,1074,4481,308,304,4962, + 308,5,2481,304,5,483,3709,2481,2860,4667,3515,1018,4962,304,2481,3709,2502,4791,1208,2941,4147,6,1577,5568,6,2334,2971,1577,4826,4829,1428,2016,4829,1263,5203,1428,5568,1577,2971,3387,2999,2855,3915,4118,5494,4099,571,1893,1621,504,1743,2441,3414,1345,3386,3581,1345,5494,1893,3386,1893,571,3581,3386, + 1223,2999,4118,2683,2161,4790,905,2227,305,5669,3415,3171,5047,305,3171,2227,4743,4904,825,5130,3367,2721,4790,2161,4880,621,5087,2156,5379,4070,3916,362,2823,5379,362,2156,4252,820,5087,621,1135,4252,621,4880,4481,483,5,308,1223,2502,2855,2999,222,3690,202,2451,229,3809,4014,3003,1938,565,1620,4706, + 4147,4482,2334,6,5494,1345,3414,4099,391,2969,4904,4743,306,481,2959,654,249,222,2451,3686,1976,4074,796,2123,3368,3302,5595,781,3302,57,270,5595,1121,655,1932,2787,655,1708,1214,1932,781,5595,270,2787,4586,1976,2123,2717,481,5378,3459,2959,5069,249,3686,5202,718,5199,2015,3111,5202,3686,2451,202, + 3690,5069,5202,202,2358,5023,4106,985,205,2358,985,2180,3280,5451,2336,1755,375,1394,4088,2055,2311,2056,375,2055,323,2311,2055,4088,3559,323,4088,1394,2056,3559,1394,375,5023,290,3154,4106,290,205,2180,3154,2180,985,4106,3154,168,165,2336,5451,1840,4092,3233,2698,4092,4089,1075,3233,5113,4688,3392,1382, + 4688,1912,2177,3392,2698,3233,1075,1382,1458,168,5451,3280,3446,47,4343,250,3369,1662,4590,1132,3019,3560,717,5679,3350,3732,322,4420,5308,84,1117,2803,5346,2789,3495,3813,3813,3495,988,2937,213,2699,839,5306,594,1336,4607,3237,1117,2312,5363,5306,4331,5346,3813,188,188,3813,2937,4366,3196,1225,2937,988, + 84,2537,2312,1117,2803,1117,5306,839,1909,213,5306,5363,3368,1121,57,3302,3412,2243,2788,148,3868,3412,148,356,3805,3868,356,2522,2243,3805,2522,2788,143,2113,3753,5506,20,143,5506,701,1446,20,701,2393,2113,1446,2393,3753,477,3754,1210,392,2972,477,392,139,5735,2972,139,4673,3754,5735,4673,1210, + 5176,4909,4674,58,4115,4557,2482,59,3918,4115,59,58,3917,4396,4674,4909,4040,3917,4909,5176,1745,3810,4315,4433,2967,4961,1390,5137,2678,2967,5137,4433,5138,2871,4315,3810,2240,5138,3810,1745,206,1797,2221,207,1798,206,207,2195,3370,144,1709,1004,4513,4668,4830,3334,1134,3856,3004,3707,826,1134,3707,189, + 271,826,189,739,3856,271,739,3004,3320,2405,4178,4287,1478,3320,4287,3660,1573,1478,3660,1005,2405,1573,1005,4178,5659,5428,4265,2041,2776,5659,2041,4168,617,2776,4168,2780,5428,617,2780,4265,1264,4709,1432,4708,4700,1264,4708,1487,5088,4700,1487,1783,4709,5088,1783,1432,433,2027,5722,1211,2977,433,1211,230, + 60,2977,230,2157,2027,60,2157,5722,208,1758,729,4766,5024,208,4766,382,4831,4873,4011,1894,5291,1898,5708,5331,2339,363,1389,1528,3919,2339,1528,2036,4744,3919,2036,5174,363,4744,5174,1389,3715,5663,2903,1627,3463,3715,1627,5335,3192,1601,246,4493,2404,4810,4757,3687,4810,37,4382,4757,37,2404,3687,4382, + 5663,7,3537,2903,1601,5301,2444,246,844,3192,4493,2982,357,3214,4500,104,3761,357,104,4739,5609,1861,3609,393,4361,3134,4358,5002,740,3134,307,5002,1578,3464,1818,2073,4558,4332,1784,4558,1784,5048,1405,2196,3464,3538,2073,3304,4122,1820,2932,2719,1860,4514,1821,1860,3304,2932,4514,618,3136,2386,4376,765, + 4515,3493,906,4515,618,4376,3493,2719,3136,618,1860,1860,618,4515,3304,3304,4515,765,4122,1820,906,3493,2932,2932,3493,4376,4514,4514,4376,2386,1821,3303,2191,5090,2908,5420,1579,5462,4483,1579,3303,2908,5462,5084,3664,1538,5463,999,782,1512,1663,782,5084,5463,1512,5420,3664,5084,1579,1579,5084,782,3303,3303, + 782,999,2191,2191,5420,4483,5090,999,3664,5420,2191,1663,1538,3664,999,4122,2719,1821,1820,765,3136,2719,4122,906,2386,3136,765,1820,1821,2386,906,4591,5653,1474,4243,3138,2609,2092,3691,2609,4591,4243,2092,396,866,3460,2226,5149,3710,4333,2904,3710,396,2226,4333,3138,866,396,2609,2609,396,3710,4591,4591, + 3710,5149,5653,1474,2904,4333,4243,4243,4333,2226,2092,2092,2226,3460,3691,3923,2409,4675,953,1785,3716,2950,61,3716,3923,953,2950,1140,474,521,1050,5003,1226,1824,4614,1226,1140,1050,1824,1785,474,1140,3716,3716,1140,1226,3923,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721,4359,2782,2010,2782, + 730,5417,2010,5721,3231,1475,4359,533,4307,5103,1303,4307,5004,2824,5103,5004,925,991,2824,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,4454,4763,1447,297,4763,3393,1319,1447,3393,1332,1293,1319,1332,4454,297,1293,4454,4763,1447,297,1332,3393,4763,4454,4359,1475,730,2782,1475,3231,5417,730,3231, + 5721,2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4359,1475,730,2782,4568,4148,3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,1475,3231,5417,730,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,533,4307,5103,1303,4307,5004,2824,5103,925, + 533,1303,991,1303,5103,2824,991,925,5004,4307,533,533,4307,5103,1303,4307,5004,2824,5103,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,533,4307,5103,1303,4307,5004,2824,5103,925,533,1303,991,1303,5103,2824,991,925,5004,4307,533,4148,1265,2918,3385,1265,3299,4881,2918,4568,4148,3385,3219,3385, + 2918,4881,3219,4568,3299,1265,4148,4359,1475,730,2782,1475,3231,5417,730,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4559,2285,4434,2968,2968,4434,734,3296,4821,1661,734,4434,4001,4821,4434,2285,3296,1661,4821,2968,2968,4821,4001,4559,3617,48,423,3877,3877,423,666,2152,2152,666,3666,2281,1375, + 1781,5114,2562,2562,5114,1506,1141,1141,1506,1527,1895,2771,4911,3132,2335,2335,3132,3993,4516,4516,3993,2072,3129,3129,2072,4911,2771,4228,4517,3132,4911,3082,1536,4517,4228,2771,2335,1536,3082,2781,4560,4516,3129,2599,2213,4560,2781,2072,3993,2213,2599,4560,2213,4517,1536,4516,4560,1536,2335,2213,3993,3132,4517,2599, + 2781,3082,4228,2072,2599,4228,4911,2781,3129,2771,3082,5653,3138,3691,1474,5149,866,3138,5653,2904,3460,866,5149,1474,3691,3460,2904,5133,1938,993,1891,1620,565,1003,4426,1891,993,1003,5042,5133,3420,565,1938,3287,229,737,2203,4014,3809,1931,5730,2203,737,1931,4220,3287,738,3809,229,1708,3368,781,1214,57, + 1121,2787,270,1214,781,2787,1932,1708,655,1121,3368,1912,1840,2698,2177,4089,5113,1382,1075,2177,2698,1382,3392,2015,1876,5116,3111,5199,505,1876,2015,3388,5066,5679,717,4420,3019,5679,250,805,2538,5302,2359,1127,3561,2752,2053,2531,4561,656,4676,2825,2181,422,247,4142,2608,2825,5521,1557,5521,595,1020,2181, + 1557,1020,422,5614,2826,1557,2181,2826,4142,5521,1557,5521,2825,247,595,2608,5614,2181,2825,4142,2826,5614,2608,2538,1127,2053,5302,3416,2153,641,3137,2153,2531,4676,641,3561,805,2359,2752,4561,3416,3137,656,2531,2153,3416,4561,1876,3280,4982,5116,505,1458,3280,1876,1912,4688,5113,1840,1840,5113,4089,4092,3371, + 5181,1628,3305,5181,4793,5049,1628,1759,4494,3750,803,4494,4136,4347,3750,3305,1628,5049,397,3371,1580,4793,5181,4136,1878,4578,4347,1580,3365,4427,397,4347,4578,803,3750,4136,4494,1759,1878,3020,4607,1336,5564,2384,1225,5346,4331,1225,2384,4366,2937,5564,5108,4758,3020,3020,4758,3237,4607,1336,594,5108,5564,5301, + 844,2982,2444,7,3463,5335,3537,5663,3715,3463,7,1879,5565,3190,4314,2594,1879,4314,1722,1722,4314,1559,4107,5565,5398,4685,3190,4314,3190,3829,1559,4685,1722,4107,2648,3190,4685,2648,3829,5398,2594,1722,4685,1974,3496,3661,1376,4587,3371,3305,4207,4578,593,376,803,4587,3365,1580,3371,4793,1580,397,5049,205, + 290,5023,2358,323,3559,2056,2311,1910,85,1877,5554,2220,2872,1236,1597,1877,4983,4655,1597,85,4044,4983,1877,5554,1877,1597,1236,5364,2220,1597,4655,4490,499,3642,2091,779,398,2626,358,2091,3642,1072,1170,4890,753,1170,1072,4490,753,4890,499,2091,1170,3588,3105,1747,779,358,3618,398,2830,2037,2626,3105, + 3588,4925,2011,5066,3446,250,5679,3350,4420,250,4343,3639,8,1855,3616,36,248,8,3639,834,3655,248,36,4065,3755,3655,834,5039,1295,3755,4065,4460,619,1295,5039,1558,4210,619,4460,1507,3802,4210,1558,1390,1745,4433,5137,2871,2678,4433,4315,4961,2240,1745,1390,1859,2683,2941,1208,2855,2502,2941,3915,107, + 1223,2683,1859,107,4791,2502,1223,2482,5176,58,59,4396,3918,58,4674,4557,4040,5176,2482,3916,4880,2156,362,820,2823,2156,5087,4070,1135,4880,3916,3415,2161,2227,3171,5005,5047,2227,905,5669,3367,2161,3415,5669,305,5047,3367,1048,1725,3802,1507,3764,5416,1725,1048,311,3589,5416,3764,3054,245,3589,311,3066, + 2255,1094,2033,5554,1236,2872,1910,718,3111,5116,2595,3067,2595,5116,4982,1755,961,3048,3643,5152,2638,2033,1094,2638,1721,4703,478,3069,2315,685,2244,1889,4875,4926,3069,2862,1266,2315,2244,4926,4320,3397,2304,1795,442,2747,89,1224,2142,972,989,4062,1049,5452,2304,3397,5014,1224,5635,5452,1049,3397,1667,5501, + 1906,3892,1930,2383,3006,3892,1906,2264,4704,2394,3756,2334,4482,3387,2971,478,3397,442,3066,2396,989,1667,4703,821,5223,3720,1975,2638,1049,5501,1721,961,2747,2142,4891,562,5164,5268,5664,4875,3892,3006,4926,532,2679,4004,5660,103,3051,2679,532,4703,1667,3397,478,1509,435,1749,954,5447,972,2747,961,1710, + 3614,3051,103,5152,5452,1049,2638,247,422,4609,209,4926,3006,636,4439,5660,4004,3614,1710,4572,1880,714,1835,5307,320,4572,2178,5340,2178,2613,1686,1880,5340,1686,714,1331,4270,5340,1880,4270,5307,2178,5340,2178,4572,1835,2613,320,1331,1880,4572,4119,922,454,4658,4119,4658,320,5307,454,922,4270,1331,922, + 4119,5307,4270,4658,454,1331,320,4060,5255,2586,3022,4174,3971,4060,5561,5092,5561,5153,2876,5255,5092,2876,2586,5230,3353,5092,5255,3353,4174,5561,5092,5561,4060,3022,5153,3971,5230,5255,4060,3318,3078,5622,4090,3318,4090,3971,4174,5622,3078,3353,5230,3078,3318,4174,3353,4090,5622,5230,3971,3713,2617,1484,5633,5063, + 3267,2813,3989,823,2282,66,3914,2617,823,3914,1484,3989,2813,1450,2641,3267,5063,1523,4944,2282,3713,5633,66,2813,3267,4944,1450,5063,3989,2641,1523,1523,2641,5399,3315,1450,4944,2642,1563,4944,1523,3315,2642,2641,1450,1563,5399,2818,1803,2643,4308,457,5441,3485,1565,5441,2818,4308,3485,1803,457,1565,2643,2818, + 5441,457,1803,4802,684,5064,169,169,5064,3637,2307,684,4802,5691,2452,5064,684,2452,3637,4802,169,2307,5691,5691,2307,2397,1120,3637,2452,4311,2694,2452,5691,1120,4311,2307,3637,2694,2397,3081,3000,3271,2564,4825,2567,5231,3167,3000,4825,3167,3271,2567,3081,2564,5231,5256,1562,5566,2790,3107,3354,1635,2799,3354, + 5256,2790,1635,1562,3107,2799,5566,5256,3354,3107,1562,4381,1183,1401,1800,1800,1401,667,4530,1183,4381,3073,1403,1401,1183,1403,667,4381,1800,4530,3073,4669,436,3751,2034,195,5677,2934,3576,5677,4669,2034,2934,436,195,3576,3751,5085,4787,3614,4004,5719,5523,4787,5085,5660,1710,5523,5719,3864,4484,103,532,5179, + 2821,4484,3864,2679,3051,2821,5179,4484,2821,4787,5523,103,4484,5523,1710,2821,3051,3614,4787,5179,3864,5719,5085,2679,5179,5085,4004,3864,532,5660,5719,5089,4169,3498,4640,2286,2610,4169,5089,2429,4593,2610,2286,4640,3498,4593,2429,3586,2119,4593,3498,1311,3866,2119,3586,4640,2429,3866,1311,5329,3494,2286,5089,2667, + 5330,3494,5329,4169,2610,5330,2667,3494,5330,2119,3866,2286,3494,3866,2429,5330,2610,4593,2119,2667,5329,1311,3586,4169,2667,3586,3498,5329,5089,4640,1311,2862,2244,4320,3992,1266,2862,3992,3756,2394,3188,2264,2373,4704,1889,3069,685,2328,4875,1889,2328,2264,1906,1930,2373,478,3066,2033,2638,478,2033,2255,5665,1094, + 5665,5152,1094,2304,5635,1795,5452,5635,2304,5501,1667,223,2747,972,4062,4400,89,2747,4400,2396,5447,3396,5447,961,3643,3396,4703,1721,1333,3992,4211,3806,1266,961,4891,1224,3048,1333,5447,2396,4703,3539,5152,5665,1224,3188,2394,2846,3920,2142,1224,5014,223,1667,989,972,2383,1444,3006,4891,2142,223,1333,1333, + 223,972,5447,1933,613,1934,3221,3539,5014,5452,5152,1721,5501,5014,3539,613,4006,997,1934,4926,4439,4320,1263,4829,4826,9,5203,3994,2016,1428,3006,1444,636,1263,9,3994,5203,2383,3756,3188,1444,223,2142,5014,5014,5501,223,4891,1333,3539,1224,4891,3539,1721,3539,1333,5048,4332,4558,4518,4358,3134,740,5002, + 307,4361,1405,5048,4518,567,5465,2672,567,2672,793,1150,793,5465,567,4164,3538,3464,1578,2073,1818,2196,1150,793,4164,5040,4012,1660,2778,1576,4012,482,2778,1370,2938,1051,1370,1051,1823,3373,1823,2938,1370,24,482,4012,5040,2778,1660,1576,3373,1823,24,4961,2967,2678,2240,2240,2678,2871,5138,4070,5379,2823, + 1135,1135,2823,820,4252,4557,4115,3918,4040,4040,3918,4396,3917,4614,521,474,5003,61,4675,2409,1785,1785,2409,5003,474,3923,1226,5003,2409,3048,89,4400,3643,3643,4400,4062,3396,3396,4062,989,2396,3066,442,1795,2255,4211,3920,2846,3806,4741,4823,4132,527,422,1020,2649,4609,3540,3541,1513,971,657,2582,5224, + 5468,2582,562,5664,5224,1835,714,4218,5557,4823,3540,971,4132,3541,4741,527,1513,5164,657,5468,5268,5223,1509,954,3720,5199,718,505,1458,505,2595,168,1458,165,1458,2595,3067,165,1458,3067,505,718,2595,165,3067,1755,2336,4982,3280,1755,5069,3690,222,249,1910,2872,2220,85,85,2220,5364,4044,5346,1225, + 3196,2789,5308,2699,213,84,84,213,1909,2537,3446,5066,2955,322,1559,3829,210,326,3019,2955,3015,3560,4420,322,2955,3019,4107,1559,326,5065,47,3446,322,3732,5066,3388,3015,2955,2069,5359,2199,3935,2042,2069,3935,4334,1662,4288,2237,4590,3829,2648,5366,210,5383,1047,2121,907,4288,3803,1253,2237,3803,3369, + 1132,1253,5282,5711,5616,1936,5359,2976,4289,2199,2315,4704,2373,685,685,2373,1930,2328,2328,1930,3892,4875,3681,3644,2287,2675,3681,2287,1560,5095,2990,5234,2845,3283,863,3947,3858,2990,5474,2741,4638,2990,4638,5234,5474,2675,615,3947,2287,3644,1017,4182,3644,5095,2398,1017,2741,5474,3947,863,2675,1560,5524,615, + 5095,2845,4957,2398,5234,4638,3283,3858,2689,291,438,800,4997,291,2689,5299,3277,2919,3253,5390,2225,3577,5198,3253,1065,2355,2420,3253,2919,1065,2420,3577,2988,800,291,3501,840,438,438,840,1776,5299,2355,5198,3577,2420,800,2988,309,4997,5299,1776,4637,3277,2919,2225,5390,1065,4492,15,5039,712,438,5299, + 709,836,2420,800,3055,15,1048,1507,15,3764,1048,2934,2034,3762,2070,5039,4065,4492,4492,4065,834,3751,3576,4878,4365,4492,36,3639,311,15,3054,4764,4492,3639,3576,2934,2070,4878,2034,3751,4365,3762,15,1558,4460,1379,4764,3639,311,3764,15,15,1507,1558,2285,4559,2556,2035,4001,2285,2035,742,3639,3616, + 1379,4559,4001,742,2556,15,4460,5039,4492,834,36,4763,3393,1319,1447,3393,1332,1293,1319,1332,4454,297,1293,1332,3393,4763,4454,4512,2896,5267,1257,1257,5267,1712,1212,2896,4512,2622,1148,5267,2896,1148,1712,4512,1257,1212,2622,2214,5139,1367,1514,1133,2380,1095,3256,1148,2622,5289,3814,5139,1133,3256,1367,1089, + 4066,5666,3052,4363,5337,4323,5370,4066,4363,5370,5666,5337,1089,3052,4323,3815,5051,2377,3708,5051,354,1318,2377,4219,3665,1111,4335,3148,2107,4386,637,3708,2377,1318,4335,3815,4219,354,5051,733,3815,3708,4404,354,4219,4335,1318,4404,3708,4335,1111,733,3665,4219,3815,1822,2831,3272,1284,2831,3053,196,3272,923, + 3239,4015,3149,3239,3391,3139,4015,1284,3272,196,5269,1822,1543,3053,2831,3391,1096,2138,3139,3053,1543,5269,196,3139,2138,3149,4015,3391,3239,923,1096,590,2219,3583,2791,2219,751,4949,3583,3943,5692,4894,550,5692,2645,638,4894,2791,3583,4949,550,590,3943,751,2219,2645,590,2791,638,751,3943,550,4949,638, + 2791,550,4894,2645,5692,3943,590,5397,3068,4272,3570,4739,104,4500,393,3761,5609,3214,357,1268,3761,4739,3657,3214,5609,393,4500,3657,4739,393,3609,1268,1861,5609,3761,1583,5553,4519,5377,5529,1583,5377,1086,802,2877,4209,3449,2877,5555,1152,4209,1086,5377,4519,5339,5529,2427,5553,1583,5555,3888,3232,1152,5553, + 2427,5339,4519,1152,3232,3449,4209,5555,2877,802,3888,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679,4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320,4863,5320,5320,4863,5320,4679,4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847,4679,5320,5166,2527,4939,2032,3601,3187,4990,5687,5687, + 964,1705,3601,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669, + 4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,4629, + 1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,665,70,5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863,4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863, + 5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640,4280,4679,1847,5388,909,2618,2200,5320,4863,4061,794,794,4061,112,4629,4863,4863,4280,4280,2527,5017,1353,4939,2032,1353,5017,5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725,5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246, + 4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162,1069,3890,3890,1868,5632,1692,3292,5632,4162,4280,5388,4863,4280,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946, + 3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621, + 2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740, + 5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650, + 2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371, + 201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527, + 5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679,4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320, + 4863,5320,5320,4863,5320,4679,4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847,4679,5320,5166,2527,4939,2032,3601,3187,4990,5687,5687,964,1705,3601,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376, + 3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099, + 777,443,76,2762,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,4629,1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730, + 4939,1353,4650,5053,665,70,5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863,4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640,4280,4679,1847,5388,909,2618,2200,5320,4863,4061,794,794,4061,112,4629,4863,4863,4280,4280,2527, + 5017,1353,4939,2032,1353,5017,5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725,5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246,4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162,1069,3890,3890,1868,5632,1692,3292,5632,4162,4280,5388,4863,4280,5320,4061,794,794,4061,112,4629, + 4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,4726,1182,5368,2733,1780,703,4176,4271,293,2448,3838,1312,5424,379,3870,2801,35,2692,4017,3783,379,4726,2733,3870,703,293,1312,4176,2074,4478,1494,380,1182,1780,4271,5368,2448,5424,2801,3838,4552,2074,380,3893,5018,4552,3893,2987,4877,2692, + 1182,4726,35,3045,703,1780,4478,2074,2448,293,4552,5018,379,5424,5018,4877,4726,379,3045,4478,293,703,2692,35,1780,1182,2074,4552,5424,2448,522,1021,1799,2666,2661,522,2666,3963,854,2140,1021,522,4100,854,522,2661,3045,35,3783,616,4478,3045,616,1494,2692,4877,111,4017,4877,5018,2987,111,841,421, + 2693,4205,4205,4057,4057,4205,4057,2523,2523,4057,421,2693,2693,421,841,421,421,841,2523,841,4205,4057,2693,4205,4205,2693,2523,841,841,2523,841,421,2693,4205,4205,4057,4057,4205,4057,2523,2523,4057,421,2693,2693,421,841,421,421,841,2523,841,4205,4057,2693,4205,4205,2693,2523,841,841,2523,421,2693, + 2693,421,841,421,2693,4205,4205,4057,4057,4205,4057,2523,2523,4057,421,2693,2693,421,841,421,421,841,2523,841,4205,4057,2693,4205,4205,2693,2523,841,841,2523,421,2693,2693,421,841,421,2693,4205,4205,4057,4057,4205,4057,2523,2523,4057,421,2693,2693,421,841,421,421,841,2523,841,4205,4057,2693,4205, + 4205,2693,2523,841,841,2523,841,421,2693,4205,421,2693,2693,421,2693,4205,4205,2693,841,421,2693,4205,4205,4057,4057,4205,4057,2523,2523,4057,421,2693,2693,421,841,421,421,841,2523,841,4205,4057,2693,4205,4205,2693,2523,841,841,2523,115,1241,2793,1327,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793, + 2245,4918,2793,1327,1947,115,1327,1732,115,1241,2793,1327,1732,92,92,1732,2245,2245,92,1947,115,1327,1732,92,2245,1327,1732,92,2245,1327,1732,2245,4918,2793,1327,2245,2245,92,1947,92,92,1947,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732, + 92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,1732,1327,1241,2793,2793,1241,4918,4918,2245,1327,1327,2793,2245,2245,92,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327, + 2793,2245,2245,92,2245,2245,92,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,1732,1327,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1947,92,92,1947,1327,1327,2793,4918,4918,2245,1241,2793,2793,1241,1732,1732,1327,1732,1732,1327,1732,92, + 92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,92,2245,1327,1732,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,92,2245,1327,1732,1732,92, + 92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,1241,115,92,2245,115,1947,1732,1947,1947,1732,4918,1241,1241,4918,2245,4918,2793,1327,2245,4918,2793,1327,92,2245, + 1327,1732,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,92,2245,1327,1732,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918, + 2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,92,2245,1327,1732,92,2245,1327,1732,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245, + 2245,92,2245,4918,1241,115,92,2245,115,1947,1732,1947,1947,1732,4918,1241,1241,4918,841,421,2693,4205,4057,2523,2523,4057,841,421,421,841,2693,4205,4205,2693,841,421,2693,4205,4057,2523,2523,4057,841,421,421,841,2693,4205,4205,2693,4057,2523,2523,4057,841,421,421,841,4312,4533,3834,1052,2718,503, + 2588,2704,3843,4362,503,2492,3174,5716,4533,4225,1420,3834,5716,3174,4398,3634,553,503,2718,503,4362,669,2588,4225,5716,3634,1420,1981,4533,4312,2137,3390,2956,2563,2735,1952,3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952,3879,2173,3679,822,11,4151,492,65, + 3390,2137,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,2137,3390,2956,2563,2735,1952,3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952, + 3879,2173,3679,822,11,4151,492,65,3390,2137,4312,4533,3834,1052,2718,503,2588,2704,3843,4362,503,2492,3174,5716,4533,4225,1420,3834,5716,3174,4398,3634,553,503,2718,503,4362,669,2588,4225,5716,3634,1420,1981,4533,4312,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159, + 692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,2137,3390,2956,2563,2735,1952,3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952,3879,2173,3679,822,11,4151,492,65,3390,2137,4312,4533,3834,1052,2718,503,2588,2704,3843,4362, + 503,2492,3174,5716,4533,4225,1420,3834,5716,3174,4398,3634,553,503,2718,503,4362,669,2588,4225,5716,3634,1420,1981,4533,4312,2137,3390,2956,2563,2735,1952,3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952,3879,2173,3679,822,11,4151,492,65,3390,2137,3071,3557, + 2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208, + 692,2736,3778,732,3557,3071,4312,4533,3834,1052,2718,503,2588,2704,3843,4362,503,2492,3174,5716,4533,4225,1420,3834,5716,3174,4398,3634,553,503,2718,503,4362,669,2588,4225,5716,3634,1420,1981,4533,4312,4312,4533,3834,1052,2718,503,2588,2704,3843,4362,503,2492,3174,5716,4533,4225,1420,3834,5716,3174,4398,3634, + 553,503,2718,503,4362,669,2588,4225,5716,3634,1420,1981,4533,4312,5389,3719,3558,3924,441,2500,1626,1308,5369,146,2500,5413,4824,5443,3719,2727,5008,3558,5443,4824,5072,5061,5226,2500,441,2500,146,3261,1626,2727,5443,5061,5008,1741,3719,5389,4234,3785,1614,1793,968,5205,3850,3341,5167,3972,5205,1027,4296,156, + 3785,154,4081,1614,156,4296,1387,2685,2861,5205,968,5205,3972,2962,3850,154,156,2685,4081,3093,3785,4234,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,2137,3390,2956,2563,2735,1952, + 3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952,3879,2173,3679,822,11,4151,492,65,3390,2137,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732, + 3557,3071,3071,3557,2159,1955,4047,5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2112,3047,4417,1896,4634,3445,2112,1896,3213,4634,1896,4417,5552,3213,4417,3047, + 3445,5552,3047,2112,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1581,736,546,5200,736,1473,2700,546,1473,417,1470,2700, + 417,1581,5200,1470,5200,546,2700,1470,2242,3840,2089,5304,4479,5647,500,400,5647,2403,1680,500,2403,700,2654,1680,700,4479,400,2654,400,500,1680,2654,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,4273,4707,4291,1875,2701, + 4291,4606,3313,1875,4606,4418,64,3313,4418,4707,2701,64,2701,1875,3313,64,2561,2561,2561,2561,251,3417,4745,106,3417,5178,4746,4745,2402,4792,5327,2892,4792,355,3478,5327,106,4745,4746,2892,3615,4034,3840,2242,5608,5074,2917,3352,2561,2561,2561,2561,2497,2197,3352,2917,2561,2561,2561,2561,141,4435,4273,5709, + 4259,4259,4259,4259,4259,4259,4259,4259,3421,1723,1164,5353,5709,4273,3151,2111,2428,141,5709,2111,4856,5229,1126,55,2729,4856,55,167,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,2054,1957,4808,4595,3372,4635,2054,4595,1681,3372,4595,4808,4827,1681,4808,1957, + 4635,4827,1957,2054,5229,3998,1006,1126,3998,2729,167,1006,167,55,1126,1006,1537,4056,569,5160,548,4299,5668,1038,4299,4319,3504,5668,203,2466,1760,4471,2466,526,3579,1760,1038,5668,3504,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4259,4259,4259,4259, + 4480,903,5360,1962,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4857,3818,789,449,4443,5471,2201,4556,908,2978,2062,449,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1046,908,449,789,1767,4857,449,2062,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447, + 3447,3788,3871,1651,5143,1013,385,1884,122,5056,559,1814,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,5576,4636,4699,3011,1814,559,4850,1084,559,434,2513,4850,3011,4699,4845,731,2024,1814,1084,3958,559,1852,434,3605,1814,2024,1442,122,1814,3605,5056,3037, + 1852,559,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2554,3005, + 3417,355,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2520,4069, + 1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2520,4069,1658,1971,4588,547,2520,1971,303,4588,1971,1658,2555,303,1658,4069,547,2555,4069,2520,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742, + 3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,3908,748,1381,3112,1381,1987, + 508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189,1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742, + 3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3065,2139,228,1707,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1391,3135,824,1383,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5136,2284,3729,4419,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3065,2139,228,1707,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1391,3135,824,1383,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3908,748,1381,3112,1381,1987,508,3650,3112,1381,3650,1588,3254,2690,748,3908,2690,2043,5189,748,748,5189, + 1987,1381,3650,508,2043,2690,1588,3650,2690,3254,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987, + 2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,987,1305,5295,872,1305,83, + 2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,83,2167,3770,2902,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770, + 872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987, + 2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,83,2167,3770,2902,2167,987,872,3770,1305,83,2902,5295,2902,3770,872,5295,1305,987,2167,83,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114, + 5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120,1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,5296,4114,5472,4615,4114,3120, + 1744,5472,3462,5296,4615,2952,4615,5472,1744,2952,3462,3120,4114,5296,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,1220,4430,4101,554,4430,3929,4935,4101,3743,1220,554,1988,554,4101,4935,1988,3743,3929,4430,1220,4251,4687,2008,4310,4687,5718,3153,2008,1757,4251, + 4310,401,4310,2008,3153,401,1757,5718,4687,4251,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5459,385,1013,5238,5054,3871,5238,1013,3266,5054,1013,5143,3841,227,5508,2561,2561,2561,2561,4545,2370,4546,5214,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,1694,3798,3123,3122,4545,2370,4546,5214,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546, + 5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122, + 4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123,3122,4545,3798,1694,2370,4546,3122,3123,5214,4545,2370,4546,5214,2370,1694,3122,4546,1694,3798,3123, + 3122,4545,3798,1694,2370,4546,3122,3123,5214,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3849,4053,425,3595,2299,1012,2550,2867,4811,1115,374,3282,4290,3314,1915,124,1115,4811,3314,4290,1469,1115,4290,124,4811,1445,1915,3314,5025,1251,1040, + 5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,1733,1631,1251,5025,5143,1631,3447,3266,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,5178,2402,2892,4746,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,3579,1038,4471,1760,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981, + 4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842, + 3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450, + 2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408, + 470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274, + 1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672, + 2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630,495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353, + 4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413,829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946, + 2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017,266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457, + 2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631,760,4629,1007,1847,794,794,1847,4679,5320,4863,5320,5320,4863,4679,4280,4280,4679,4679,4280,4280,4679,5320,4679,4679,5320,4863,5320,5320,4863,5320,4679, + 4679,5320,5320,4863,4061,794,4280,4863,4863,4280,794,1847,4679,5320,5166,2527,4939,2032,3601,3187,4990,5687,5687,964,1705,3601,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544, + 2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1921,728, + 2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,4629,1007,1847,794,4280,4679,1847,5388,5388,1847,1007,5640,794,1847,4679,5320,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,665,70, + 5534,3694,5601,5187,1517,1015,3694,5534,4507,3768,4280,4863,4863,4280,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,4629,1007,1847,794,794,4061,112,4629,5388,1847,1007,5640,4280,4679,1847,5388,909,2618,2200,5320,4863,4061,794,794,4061,112,4629,4863,4863,4280,4280,2527,5017,1353,4939,2032,1353,5017, + 5166,1378,1076,4279,2093,4162,5632,1868,1069,70,799,4725,5534,5187,3409,3649,1517,5534,4725,4295,4507,91,2246,4063,909,1260,4279,1076,1430,3828,1076,1378,1430,1378,2093,1260,1692,4162,1069,3890,3890,1868,5632,1692,3292,5632,4162,4280,5388,4863,4280,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679, + 1847,5388,1847,1007,5640,4863,4280,4280,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151, + 2561,2561,2561,2561,2242,3840,2089,5304,2561,2561,2561,2561,2561,2561,2561,2561,3615,4034,3840,2242,5608,5074,2917,3352,2497,2197,3352,2917,2561,2561,2561,2561,3421,1723,1164,5353,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,1681,3372,4595,4808,5229,3998,1006,1126,167,55,1126,1006,1537,4056,569,5160, + 203,2466,1760,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4443,5471,2201,4556,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1251,1884,385,1040,1631,5143,1884,1251, + 1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,5298,5365,1962,5360,2893,5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561, + 2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,3641,1197,4838,2593,4838,373,2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196,373,4838,1646,2970, + 2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090, + 757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2428,5709,2111,2561,2561,2561,2561,5709,4273,3151,2111,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,2561,2561,2561,2561,5143,1631,3447,3266,1631,5143,1884,1251,2561,2561,2561,2561,1381,1987,508,2893,4356,903,4480,5365,2893,4480, + 1962,2561,2561,2561,2561,4480,903,5360,1962,3998,167,1006,2561,2561,2561,2561,4827,1681,4808,2561,2561,2561,2561,3372,2054,4595,2054,1957,4808,4595,2561,2561,2561,2561,4856,5229,1126,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,1088,3580,3158,5109,1631,1733,3788, + 3447,5459,385,1013,5238,5054,3871,5238,1013,3841,227,5508,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,1733,1631,1251,5025,2561,2561,2561,2561, + 1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278, + 3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090, + 5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,748,5189,1987,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3417,4746,4745,4792,355,3478,4259,4259,4259, + 4259,4259,4259,4259,4259,4259,4259,548,4299,5668,1038,4299,4319,5668,2466,526,1760,4259,4259,4259,4259,908,2978,2062,449,1046,908,449,789,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2242,3840,2089,5304,2561,2561,2561,2561,2561,2561,2561,2561,3615,4034,3840,2242,5608,5074,2917,3352,2497,2197,3352, + 2917,2561,2561,2561,2561,3421,1723,1164,5353,4259,4259,4259,4259,2561,2561,2561,2561,871,5160,569,5334,1681,3372,4595,4808,5229,3998,1006,1126,167,55,1126,1006,1537,4056,569,5160,203,2466,1760,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,2251,448,908, + 1046,4502,172,3953,4379,4379,3953,2467,4556,4443,5471,2201,4556,4535,4502,4379,502,502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025, + 5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,5298,5365,1962,5360,2893,5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,3641,1197,4838,2593,4838,373,2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,757,5278,3981,4395,3981, + 2090,5450,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2428,5709,2111,2561,2561,2561,2561,5709,4273,3151,2111, + 2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,2561,2561,2561,2561,5143,1631,3447,3266,1631,5143,1884,1251,2561,2561,2561,2561,1381,1987,508,2893,4356,903,4480,5365,2893,4480,1962,2561,2561,2561,2561,4480,903,5360,1962,3998,167,1006,2561,2561,2561,2561,4827,1681,4808,2561,2561,2561,2561,3372,2054,4595,2054, + 1957,4808,4595,2561,2561,2561,2561,4856,5229,1126,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,1088,3580,3158,5109,1631,1733,3788,3447,5459,385,1013,5238,5054,3871,5238,1013,3841,227,5508,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,1733,1631,1251,5025,2561,2561,2561,2561,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,748,5189,1987,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3417,4746,4745,4792,355,3478,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,548,4299,5668,1038,4299,4319,5668,2466,526,1760,4259,4259,4259,4259,908,2978,2062,449,1046,908, + 449,789,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,3478,106, + 2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,2561,2561,2561,2561,4629,1007,1847,794,794,1847,4679,5320,1406,4346,4914,1435,1435,5701,4718,1406,4346,5602,3823,4914,87,4440,52,2711,2711,3550,2784,87,4440,4720,3527,52,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032, + 4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,4280,4863,4863,4280,5320,4679,4679,5320,4863,5320,5320,4863,5558,5243,3718,1508,1939,1294,2695,268,1508,3718,690,3220,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,91,2246,5702,1337,3071,3557,2159,1955,4047, + 5736,2879,929,5620,3355,5736,3482,3349,692,3557,4208,3778,2159,692,3349,1068,2736,418,5736,4047,5736,3355,1641,2879,4208,692,2736,3778,732,3557,3071,2137,3390,2956,2563,2735,1952,3679,3338,5684,3879,1952,1167,2619,11,3390,822,492,2956,11,2619,1131,4151,3110,1952,2735,1952,3879,2173,3679,822,11,4151,492, + 65,3390,2137,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2561,2561,2561,2561,5608,5074,2917,3352,2497,2197,3352,2917,3421,1723,1164,5353,4259,4259,4259,4259,2561, + 2561,2561,2561,871,5160,569,5334,1681,3372,4595,4808,5229,3998,1006,1126,167,55,1126,1006,1537,4056,569,5160,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,4502,172,3953,4379,4379,3953,2467,4556,4443,5471,2201,4556,4535,4502,4379,502,502,4379,4556,2201,810, + 4443,4556,2467,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,204,1209,3580,1088,5298,5365,1962,5360,3058,5365,5298,458,5411,5365,3058,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2428,5709,2111,5709,4273,3151,2111,4435,2279,3151, + 5143,1631,3447,3266,1631,5143,1884,1251,2893,4356,903,4480,3998,167,1006,4827,1681,4808,3372,2054,4595,2054,1957,4808,4595,4856,5229,1126,1088,3580,3158,5109,1631,1733,3788,3447,5459,385,1013,5238,5054,3871,5238,1013,3841,227,5508,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,1733,1631,1251,5025,2561,2561,2561,2561,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,3417,4746,4745,4792,355,3478,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,355,251,106,3478,3478,106,2892,5327,4792,5178,3005,2554,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2242,3840,2089,5304,2561,2561,2561,2561,2561,2561,2561,2561,3615,4034,3840,2242, + 2561,2561,2561,2561,871,5160,569,5334,167,55,1126,1006,1537,4056,569,5160,1039,1537,5160,871,2703,885,4960,2600,5698,4759,4960,885,2251,448,908,1046,448,1416,2978,908,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,3266,5054,1013,5143, + 5298,5365,1962,5360,2893,5509,4356,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3641,1197,4838,2593,4838,373,2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606, + 2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922, + 3742,3514,1679,842,3612,5450,2090,757,5278,3981,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,5278,842,2090,3981,2428,5709,2111,2561,2561,2561,2561,5709,4273,3151,2111, + 2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,2561,2561,2561,2561,5143,1631,3447,3266,5365,2893,4480,1962,3998,167,1006,4827,1681,4808,3372,2054,4595,2054,1957,4808,4595,4856,5229,1126,1631,1733,3788,3447,5459,385,1013,5238,3841,227,5508,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,2561,2561,2561,2561,1164,871,5334,5353,1723,1039,871,1164,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,3981,2090, + 5450,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,757,5278,3981,4395,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4792,355,3478,548,4299,5668,1038,4299,4319,5668,2466,526,1760,908, + 2978,2062,449,1046,908,449,789,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,526,548,1038,3579,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,659,125,62,1309,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,2242,3840,2089,5304,2561,2561,2561,2561,3615,4034,3840,2242,2561,2561,2561,2561,1681,3372,4595,4808,5229,3998,1006,1126,167,55,1126,1006,203,2466,1760,4471,2703,885,4960,2600,2130,899,875,2600,5698, + 4759,4960,885,2251,448,908,1046,448,1416,2978,908,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,1040,385,1013,3399,3266,5054,1013,5143,204,1209,3580,1088,2893,5509,4356,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4838,373,2970,1646,5606,2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5709,4273,3151,2111,2561,2561,2561,2561, + 2561,2561,2561,2561,4435,2279,3151,2893,4356,903,4480,5365,2893,4480,1962,4480,903,5360,1962,4827,1681,4808,2054,1957,4808,4595,4856,5229,1126,5143,1631,3447,3266,3266,3447,1651,5054,5459,1040,3399,5238,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4792,355,3478,4259,4259,4259,548,4299, + 5668,1038,4299,4319,5668,2466,526,1760,908,2978,2062,449,1046,908,449,789,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,3478,106,2892,5327, + 526,548,1038,3579,4319,203,4471,3504,2561,2561,2561,2561,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406, + 4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408, + 470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342, + 2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51, + 5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017, + 2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,2795,4627,2102,1923,5556,2117,3467,2524,691,5275,3510,4903,1849,4184,279,95,2117,3860,4740,3467,4859,5526,879,3193,1105,4899,3677,4341,4627,1649,2434,2102,5682,4194,5556,5526,3308,3946,632,1071,4573,110, + 191,4910,4497,3984,2612,3218,5161,1228,3960,5599,882,3186,697,4046,345,1087,3186,882,345,882,360,4399,882,4046,5157,360,360,3186,1087,4399,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046, + 5157,360,1497,2088,3235,1259,784,1472,2088,1497,5449,1472,784,4172,976,5449,4172,3706,3131,3140,2116,4328,3131,3140,2116,4328,3131,3140,2116,4328,3131,3140,2116,4328,1853,2779,2193,3131,3140,2116,4328,976,5449,4172,3706,784,1472,2088,1497,1726,2021,1510,539,1689,4952,1411,1155,4861,485,2748,3913,345,1087,3186, + 882,345,882,360,4399,360,3186,1087,4399,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,2193,5652,4851,345,1087,3186,882,345,1866,640,4399,1866,882,360,640,345,1087,3186,882,345,1866,640,4399,345,1087,3186,882,3131,3140,2116,4328,3131,3140,2116,4328,5082,2275,2779,1853,5652,3604,3250,4851, + 3131,3140,2116,4328,5038,2050,883,750,4325,3772,4542,2435,4184,1194,3380,279,1077,2117,5556,2691,5275,691,2475,3860,2117,2475,269,691,3860,5682,5526,4859,2013,378,3536,3682,3517,5086,1023,2164,880,775,4267,3007,345,1866,640,4399,640,360,3186,345,1866,640,4399,640,360,3186,345,1087,3186,882,345,1866, + 640,4399,640,360,3186,640,360,3186,640,360,3186,2750,4859,3193,3590,2795,4627,2102,1923,5556,2117,3467,2524,691,5275,3510,4903,1066,3440,372,2880,1849,4184,279,95,2117,3860,4740,3467,491,2,934,3099,4859,5526,879,3193,1105,4899,3677,4341,4627,1649,2434,2102,5682,4194,5556,5526,3308,3946,632,1071,4573, + 110,191,4910,4497,3984,2612,3218,5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,345,1087,3186,882,345,882,360,4399,882,4046,5157,360,360,3186,1087,4399,5157,697,3186,360,345,882,360,4399,882, + 4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,4328,2116,976,3706,3131,3140,2116,4328,1497,2088,3235,1259,784,1472,2088,1497,5449,1472,784,4172,976,5449,4172,3706,3131,3140,2116,4328,3131,3140,2116,4328,3131,3140,2116,4328,3131, + 3140,2116,4328,3131,3140,2116,4328,1853,2779,2193,3131,3140,2116,4328,976,5449,4172,3706,784,1472,2088,1497,1726,2021,1510,539,1689,4952,1411,1155,4861,485,2748,3913,763,658,443,777,345,1087,3186,882,345,882,360,4399,345,882,360,4399,360,3186,1087,4399,2193,5652,4851,345,1087,3186,882,345,1866,640, + 4399,1866,882,360,640,345,1087,3186,882,345,1866,640,4399,345,1087,3186,882,1866,882,360,640,3131,3140,2116,4328,3131,3140,2116,4328,5082,2275,2779,1853,5652,3604,3250,4851,3131,3140,2116,4328,3845,3319,1024,1400,5038,2050,883,750,4325,3772,4542,2435,4184,1194,3380,279,5466,4859,2750,1077,2117,5556,2691, + 5275,691,4951,3440,1066,4951,780,2750,3440,2475,3860,2117,2475,269,691,3860,5682,5526,4859,3329,5425,5700,2401,2013,378,3536,3682,2940,3722,3965,2059,3517,5086,1023,2164,880,775,4267,3007,345,1866,640,4399,345,1866,640,4399,640,360,3186,345,1087,3186,882,345,1866,640,4399,640,360,3186,640,360,3186, + 1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582, + 5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1, + 2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992, + 3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457, + 4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792, + 1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,909,2618,2200,1870,4631,315,3383,3383,315,916,1851,2485,5457,4342,1946,3593,3202,3549,1352,5637,5408,470,3382,5457,5637,3382,4342,1245,2022,3076,1434,2022,3593,1352,3076,2022,1245,34,78,3549,1434,3076,1352,78,5315,3593,2022,5316,893,630,495,495,3696,3102, + 5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099, + 76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2714,2526,2726,2047,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,3582,5177,440,704,704,1544,576,3582,5177,2848,2455,440,893,2150,2833,630,495,3696,3102,5316,5316,893,630, + 495,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4541,5593,4183,3928,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,5277,2047,2518,2766,1516,2714,2047,5277,3874,2272,2548,747,2047,2726,301,2518,2413,5277,2766,317,2272,1082,3384,2548,1531,2246,91,573,1516,5277,2413, + 829,3874,747,917,91,2246,4063,909,2946,4716,174,2686,470,1946,4342,3382,1851,916,2686,174,1753,1851,174,4716,371,201,5315,78,916,1,2946,2686,1,1753,4716,2946,3549,3202,1245,1434,3292,5632,4162,3890,1868,5632,1692,1946,470,5408,2485,3828,1076,1378,78,34,2889,371,34,5315,201,2889,5166,5017, + 266,3683,3202,3593,5315,34,1378,1076,4279,2093,4162,5632,1868,1069,2341,4541,3928,5140,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,5457,2485,1791,51,51,1791,536,4565,1692,4162,1069,3890,1430,1378,2093,1260,1260,4279,1076,1430,1851,4604,3383,3383,4604,1571,1870,1,916,315,5537,5537,315,4631, + 760,2750,4859,3193,3590,2795,4627,2102,1923,5556,2117,3467,2524,1066,3440,372,2880,1849,4184,279,95,491,2,934,3099,4859,5526,879,3193,2343,491,3099,5311,1105,4899,3677,4341,5150,5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632, + 3508,5326,3984,4497,4485,4627,1649,2434,2102,5682,4194,5556,5526,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360, + 4399,882,4046,5157,360,882,3186,697,4046,345,1087,3186,882,345,882,360,4399,882,4046,5157,360,360,3186,1087,4399,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,4328,2116,976,3706,3131,3140,2116,4328,5449,1472,784,4172,976,5449,4172,3706,3131,3140,2116,4328,3131,3140,2116,4328,3131,3140,2116, + 4328,3131,3140,2116,4328,1853,2779,2193,3131,3140,2116,4328,976,5449,4172,3706,1726,2021,1510,539,1689,4952,1411,1155,4861,485,2748,3913,5737,4274,1669,940,763,658,443,777,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,882,360,4399,360,3186,1087,4399, + 345,1087,3186,882,345,882,360,4399,1866,882,360,640,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,1866,882,360,640,345,1087,3186,882,1866,882,360,640,1866,882,360,640,1866,882,360,640,345,1866,640,4399,1866,882,360,640,345,1087,3186,882,1866,882,360,640,3131,3140,2116,4328, + 3131,3140,2116,4328,2116,3140,4505,5449,976,4505,4505,2088,1472,5082,2275,2779,1853,3433,1854,5514,3291,4505,4633,3235,3291,5514,2193,3845,3319,1024,1400,4325,3772,4542,2435,4184,1194,3380,279,5312,95,279,5311,3099,934,3973,934,95,5312,2434,1923,2102,3677,4155,4341,4341,4155,601,2434,4155,3973,5312,601,4899, + 2365,5237,3677,5466,4859,2750,1077,2117,5556,4951,3440,1066,4951,780,2750,3440,5682,5526,4859,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,2940,3722,3965,2059,880,775,4267,3007,345,1087,3186,882,345,1866,640,4399,640,360,3186,640,360,3186,345,1866,640,4399,640,360,3186, + 345,1087,3186,882,345,1866,640,4399,640,360,3186,640,360,3186,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928, + 3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352, + 5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637, + 3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429, + 3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295, + 266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,1792,5503,2915,1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202, + 3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704,1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916, + 2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162,5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,1792,5503,2915, + 1870,4631,315,3383,3383,315,916,1851,5457,5637,3382,4342,2022,3593,1352,3076,78,5315,3593,2022,4021,901,4141,992,3601,3187,4990,5687,3688,5693,2974,3991,5316,893,630,495,3202,3593,5315,34,3669,5055,1372,5594,4024,3195,928,3740,1406,4346,4914,1435,87,4440,52,2711,878,3977,5493,2652,3582,5177,440,704, + 1921,728,2835,4266,5575,845,3422,486,4565,4429,3651,51,5408,5637,3651,1791,1791,3651,4429,536,51,3651,5637,5457,4716,174,2686,91,2246,4063,909,4383,1656,3032,2794,1851,916,2686,174,371,201,5315,78,3593,3202,3549,1352,5637,5408,470,3382,1,916,315,5537,34,5315,201,2889,916,1,2946,2686,4162, + 5632,1868,1069,1434,3076,1352,1946,4342,3382,295,266,5017,2527,5537,315,4631,760,1586,4906,5503,1503,1792,2915,1792,1586,5503,4812,1756,3832,5283,4541,5593,4183,3928,2683,4118,3915,2941,3003,4014,5730,1448,5244,738,4220,2832,738,3287,2203,4220,5573,1448,5730,2920,5081,81,926,1074,3883,308,304,2792,308,5, + 2481,304,5478,483,3709,1310,2860,4667,3515,1018,2792,304,2481,1310,3500,4791,1208,1262,2122,6,1577,1596,6,2334,2971,1577,4826,4829,1428,2016,4829,1263,5203,1428,1596,1577,2971,5000,2999,2855,3915,4118,5358,4099,571,1280,1621,504,1743,2441,2589,1345,3386,623,1345,5494,1893,3386,1280,571,3581,623,1223,2999, + 4118,2683,2161,4790,905,2227,305,5669,3415,3171,5047,305,3171,2227,4743,4904,825,5130,3367,2721,4790,2161,4880,621,5087,2156,5379,4070,3916,362,2823,5379,362,2156,4252,820,5087,621,1135,4252,621,4880,3883,5478,5,308,1223,2502,2855,2999,222,3690,202,2451,2122,2289,2334,6,5358,2589,3414,4099,391,2969, + 4904,4743,306,481,2959,654,249,222,2451,3686,1976,4074,796,2123,3368,3302,5595,781,3302,57,270,5595,1121,655,1932,2787,655,1708,1214,1932,781,5595,270,2787,4586,1976,2123,2717,481,5378,3459,2959,5069,249,3686,5202,718,5199,2015,3111,5202,3686,2451,202,3690,5069,5202,202,2358,5023,4106,985,205,2358, + 985,2180,3280,5451,2336,1755,375,1394,4088,2055,2311,2056,375,2055,323,2311,2055,4088,3559,323,4088,1394,2056,3559,1394,375,5023,290,3154,4106,290,205,2180,3154,2180,985,4106,3154,168,165,2336,5451,1840,4092,3233,2698,4092,4089,1075,3233,5113,4688,3392,1382,4688,1912,2177,3392,2698,3233,1075,1382,1458,168, + 5451,3280,3446,47,4343,250,3369,1662,4590,1132,3019,3560,717,5679,3350,3732,322,4420,5308,84,1117,2803,5346,2789,3495,3813,3813,3495,988,2937,213,2699,839,5306,594,1336,4607,3237,1117,2312,5363,5306,4331,5346,3813,188,188,3813,2937,4366,3196,1225,2937,988,84,2537,2312,1117,2803,1117,5306,839,1909,213, + 5306,5363,3368,1121,57,3302,3046,1334,2788,148,3986,3046,148,356,5372,3986,356,2522,1334,5372,2522,2788,5584,5272,3753,5506,5712,5584,5506,701,4608,5712,701,2393,5272,4608,2393,3753,477,3754,1210,392,2972,477,392,139,5735,2972,139,4673,3754,5735,4673,1210,5176,4909,4674,58,4115,4557,2482,59,3918,4115, + 59,58,3917,4396,4674,4909,4040,3917,4909,5176,1745,3810,4315,4433,2967,4961,1390,5137,2678,2967,5137,4433,5138,2871,4315,3810,2240,5138,3810,1745,4668,4830,3334,3370,144,1709,1004,271,739,3004,271,826,189,739,3320,2405,4178,4287,1478,3320,4287,3660,1573,1478,3660,1005,2405,1573,1005,4178,531,1486,4265,2041, + 1264,4709,1432,4708,4700,1264,4708,1487,5088,4700,1487,1783,4709,5088,1783,1432,433,2027,5722,1211,2977,433,1211,230,60,2977,230,2157,2027,60,2157,5722,208,4217,3330,4639,274,4011,1894,2339,363,1389,1528,3919,2339,1528,2036,4744,3919,2036,5174,363,4744,5174,1389,3715,5663,2903,1627,3463,3715,1627,5335,3192, + 1601,246,4493,2404,4810,4757,3687,4810,37,4382,4757,37,2404,3687,4382,5663,7,3537,2903,1601,5301,2444,246,844,3192,4493,2982,357,3214,4500,104,3761,357,104,4739,5609,1861,3609,393,4361,3134,4358,5002,740,3134,307,5002,1578,3464,1818,2073,4558,4332,1784,4558,1784,5048,1405,2196,3464,3538,2073,3304,4122, + 1820,2932,2719,1860,4514,1821,1860,3304,2932,4514,618,3136,2386,4376,765,4515,3493,906,4515,618,4376,3493,2719,3136,618,1860,1860,618,4515,3304,3304,4515,765,4122,1820,906,3493,2932,2932,3493,4376,4514,4514,4376,2386,1821,3303,2191,5090,2908,5420,1579,5462,4483,1579,3303,2908,5462,5084,3664,1538,5463,999,782, + 1512,1663,782,5084,5463,1512,5420,3664,5084,1579,1579,5084,782,3303,3303,782,999,2191,2191,5420,4483,5090,999,3664,5420,2191,1663,1538,3664,999,4122,2719,1821,1820,765,3136,2719,4122,906,2386,3136,765,1820,1821,2386,906,4591,5653,1474,4243,3138,2609,2092,3691,2609,4591,4243,2092,396,866,3460,2226,5149,3710, + 4333,2904,3710,396,2226,4333,3138,866,396,2609,2609,396,3710,4591,4591,3710,5149,5653,1474,2904,4333,4243,4243,4333,2226,2092,2092,2226,3460,3691,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4359,1475,730,2782,1475,3231,5417,730,3231,5721, + 2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4359,1475,730,2782,4568,4148,3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,1475,3231,5417,730,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4568,4148, + 3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,1134,3707,189,1134,3856,3004,3707,4559,2285,4434,2968,2968,4434,734,3296,4821,1661,734,4434,4001,4821,4434,2285,3296,1661,4821,2968,2968,4821,4001,4559,3617,48,423,3877,3877,423,666,2152,2152,666,3666,2281,1375,1781,5114,2562,2562,5114,1506,1141,1141,1506,1527, + 1895,2771,4911,3132,2335,2335,3132,3993,4516,4516,3993,2072,3129,3129,2072,4911,2771,4228,4517,3132,4911,3082,1536,4517,4228,2771,2335,1536,3082,2781,4560,4516,3129,2599,2213,4560,2781,2072,3993,2213,2599,4560,2213,4517,1536,4516,4560,1536,2335,2213,3993,3132,4517,2599,2781,3082,4228,2072,2599,4228,4911,2781,3129,2771, + 3082,5653,3138,3691,1474,5149,866,3138,5653,2904,3460,866,5149,1474,3691,3460,2904,1708,3368,781,1214,57,1121,2787,270,1214,781,2787,1932,1708,655,1121,3368,1912,1840,2698,2177,4089,5113,1382,1075,2177,2698,1382,3392,2015,1876,5116,3111,5199,505,1876,2015,3388,5066,5679,717,4420,3019,5679,250,805,2538,5302, + 2359,1127,3561,2752,2053,2531,4561,656,4676,2825,2181,422,247,4142,2608,2825,5521,1557,5521,595,1020,2181,1557,1020,422,5614,2826,1557,2181,2826,4142,5521,1557,5521,2825,247,595,2608,5614,2181,2825,4142,2826,5614,2608,2538,1127,2053,5302,3416,2153,641,3137,2153,2531,4676,641,3561,805,2359,2752,4561,3416,3137, + 656,2531,2153,3416,4561,1876,3280,4982,5116,505,1458,3280,1876,1912,4688,5113,1840,1840,5113,4089,4092,3371,5181,1628,3305,5181,4793,5049,1628,1759,4494,3750,803,4494,4136,4347,3750,3305,1628,5049,397,3371,1580,4793,5181,4136,1878,4578,4347,1580,3365,4427,397,4347,4578,803,3750,4136,4494,1759,1878,3020,4607,1336, + 5564,2384,1225,5346,4331,1225,2384,4366,2937,5564,5108,4758,3020,3020,4758,3237,4607,1336,594,5108,5564,5301,844,2982,2444,7,3463,5335,3537,5663,3715,3463,7,1879,5565,3190,4314,2594,1879,4314,1722,1722,4314,1559,4107,5565,5398,4685,3190,4314,3190,3829,1559,4685,1722,4107,2648,3190,4685,2648,3829,5398,2594,1722, + 4685,1974,3496,3661,1376,4587,3371,3305,4207,4578,593,376,803,4587,3365,1580,3371,4793,1580,397,5049,205,290,5023,2358,323,3559,2056,2311,1910,85,1877,5554,2220,2872,1236,1597,1877,4983,4655,1597,85,4044,4983,1877,5554,1877,1597,1236,5364,2220,1597,4655,4490,499,3642,2091,779,398,2626,358,2091,3642,1072, + 1170,4890,753,1170,1072,4490,753,4890,499,2091,1170,3588,3105,1747,779,358,3618,398,2830,2037,2626,3105,3588,4925,2011,5066,3446,250,5679,3350,4420,250,4343,3639,8,1855,3616,36,248,8,3639,834,3655,248,36,4065,3755,3655,834,5039,1295,3755,4065,4460,619,1295,5039,1558,4210,619,4460,1507,3802,4210, + 1558,1390,1745,4433,5137,2871,2678,4433,4315,4961,2240,1745,1390,1546,2683,2941,4150,2855,2502,2941,3915,5338,1223,2683,1546,5338,1317,2502,1223,2482,5176,58,59,4396,3918,58,4674,4557,4040,5176,2482,3916,4880,2156,362,820,2823,2156,5087,4070,1135,4880,3916,3415,2161,2227,3171,5005,5047,2227,905,5669,3367,2161, + 3415,5669,305,5047,3367,1048,1725,3802,1507,3764,5416,1725,1048,311,3589,5416,3764,3054,245,3589,311,5554,1236,2872,1910,718,3111,5116,2595,3067,2595,5116,4982,1755,3069,2315,685,2244,1889,4875,4926,3069,2862,1266,2315,2244,4926,4320,1906,3892,1930,2383,3006,3892,1906,2264,4704,2394,3756,2289,4482,3387,5000,821, + 5223,3720,1975,562,5164,5268,5664,4875,3892,3006,4926,532,2679,4004,5660,103,3051,2679,532,1509,435,1749,954,1710,3614,3051,103,247,422,4609,209,4926,3006,636,4439,5660,4004,3614,1710,4119,922,454,4658,4060,5255,2586,3022,4174,3971,4060,5561,5092,5561,5153,2876,5255,5092,2876,2586,5230,3353,5092,5255,3353, + 4174,5561,5092,5561,4060,3022,5153,3971,5230,5255,4060,3318,3078,5622,4090,3318,4090,3971,4174,5622,3078,3353,5230,3078,3318,4174,3353,4090,5622,5230,3971,5063,3267,2813,3989,3989,2813,1450,2641,3267,5063,1523,4944,2813,3267,4944,1450,5063,3989,2641,1523,1523,2641,5399,3315,1450,4944,2642,1563,4944,1523,3315,2642,2641, + 1450,1563,5399,4802,684,5064,169,169,5064,3637,2307,684,4802,5691,2452,5064,684,2452,3637,4802,169,2307,5691,5691,2307,2397,1120,3637,2452,4311,2694,2452,5691,1120,4311,2307,3637,2694,2397,3081,3000,3271,2564,4825,2567,5231,3167,3000,4825,3167,3271,2567,3081,2564,5231,5256,1562,5566,2790,3107,3354,1635,2799,3354, + 5256,2790,1635,1562,3107,2799,5566,5256,3354,3107,1562,85,2220,5364,4044,5085,4787,3614,4004,5719,5523,4787,5085,5660,1710,5523,5719,3864,4484,103,532,5179,2821,4484,3864,2679,3051,2821,5179,4484,2821,4787,5523,103,4484,5523,1710,2821,3051,3614,4787,5179,3864,5719,5085,2679,5179,5085,4004,3864,532,5660,5719,5089, + 4169,3498,4640,2286,2610,4169,5089,2429,4593,2610,2286,4640,3498,4593,2429,3586,2119,4593,3498,1311,3866,2119,3586,4640,2429,3866,1311,5329,3494,2286,5089,2667,5330,3494,5329,4169,2610,5330,2667,3494,5330,2119,3866,2286,3494,3866,2429,5330,2610,4593,2119,2667,5329,1311,3586,4169,2667,3586,3498,5329,5089,4640,1311,2862, + 2244,4320,3992,1266,2862,3992,3756,2394,3188,2264,2373,4704,1889,3069,685,2328,4875,1889,2328,2264,1906,1930,2373,3287,738,5244,4130,3992,4211,3806,1266,2203,2532,2832,4220,3287,4130,2532,2203,3188,2394,2846,3920,2502,1317,4150,2941,5394,3500,1317,5338,2383,1444,3006,5394,5338,1546,16,16,1546,4150,1262,1933,613, + 1934,3221,107,4791,3500,5394,107,5394,16,1859,613,4006,997,1934,4926,4439,4320,1263,4829,4826,9,5203,3994,2016,1428,3006,1444,636,1263,9,3994,5203,2383,3756,3188,1444,1859,16,1262,1208,1317,3500,1262,4150,5048,4332,4558,4518,4358,3134,740,5002,307,4361,1405,5048,4518,567,5465,2672,567,2672,793,1150, + 793,5465,567,4164,3538,3464,1578,2073,1818,2196,1150,793,4164,5040,4012,1660,2778,1576,4012,482,2778,1370,2938,1051,1370,1051,1823,3373,1823,2938,1370,24,482,4012,5040,2778,1660,1576,3373,1823,24,4961,2967,2678,2240,2240,2678,2871,5138,4070,5379,2823,1135,1135,2823,820,4252,4557,4115,3918,4040,4040,3918,4396, + 3917,2113,1446,4608,5272,1446,20,5712,4608,20,143,5584,5712,4211,3920,2846,3806,1910,2872,2220,85,422,1020,2649,4609,5554,1236,2872,1910,657,2582,5224,5468,2582,562,5664,5224,1835,714,4218,5557,5364,2220,1597,4655,5554,1877,1597,1236,5164,657,5468,5268,5223,1509,954,3720,5199,718,505,1458,505,2595,168, + 1458,165,1458,2595,3067,165,1458,3067,505,718,2595,165,3067,1755,2336,4982,3280,1755,5069,3690,222,249,1910,2872,2220,85,85,2220,5364,4044,5346,1225,3196,2789,5308,2699,213,84,84,213,1909,2537,3446,5066,2955,322,1559,3829,210,326,3019,2955,3015,3560,4420,322,2955,3019,4107,1559,326,5065,47,3446, + 322,3732,5066,3388,3015,2955,2069,5359,2199,3935,2042,2069,3935,4334,1662,4288,2237,4590,3829,2648,5366,210,5383,1047,2121,907,4288,3803,1253,2237,3803,3369,1132,1253,5282,5711,5616,1936,5359,2976,4289,2199,2315,4704,2373,685,685,2373,1930,2328,2328,1930,3892,4875,5095,2990,5234,2845,3283,863,3947,3858,2990,5474, + 2741,4638,2990,4638,5234,5474,2675,615,3947,3644,5095,2398,1017,2741,5474,3947,863,5095,2845,4957,2398,5234,4638,3283,3858,5299,3277,2919,3253,5390,2225,3577,5198,3253,1065,2355,2420,3253,2919,1065,2420,3577,2988,800,291,3501,840,438,438,840,1776,5299,2355,5198,3577,2420,800,2988,309,4997,5299,1776,4637,3277, + 2919,2225,5390,1065,4492,15,5039,712,438,5299,709,836,2420,800,3055,15,1048,1507,15,3764,1048,85,4044,4983,1877,5039,4065,4492,4492,4065,834,1877,4983,4655,1597,4492,36,3639,311,15,3054,4764,4492,3639,2220,2872,1236,1597,1910,85,1877,5554,15,1558,4460,1379,4764,3639,311,3764,15,15,1507,1558, + 2285,4559,2556,2035,4001,2285,2035,742,3639,3616,1379,4559,4001,742,2556,15,4460,5039,4492,834,36,4512,2896,5267,1257,1257,5267,1712,1212,2896,4512,2622,1148,5267,2896,1148,1712,4512,1257,1212,2622,2214,5139,1367,1514,1133,2380,1095,3256,1148,2622,5289,3814,5139,1133,3256,1367,1089,4066,5666,3052,4363,5337,4323, + 5370,4066,4363,5370,5666,5337,1089,3052,4323,3815,5051,2377,3708,5051,354,1318,2377,4219,3665,1111,4335,3148,2107,4386,637,143,2113,5272,5584,3815,4219,354,5051,733,3815,3708,4404,354,4219,4335,1318,4404,3708,4335,1111,733,3665,4219,3815,1822,2831,3272,1284,2831,3053,196,3272,923,3239,4015,3149,3239,3391,3139, + 4015,1284,3272,196,5269,1822,1543,3053,2831,3391,1096,2138,3139,3053,1543,5269,196,3139,2138,3149,4015,3391,3239,923,1096,590,2219,3583,2791,2219,751,4949,3583,3943,5692,4894,550,5692,2645,638,4894,2791,3583,4949,550,590,3943,751,2219,2645,590,2791,638,751,3943,550,4949,638,2791,550,4894,2645,5692,3943, + 590,5397,3068,4272,3570,535,3003,1448,5573,3761,5609,3214,357,1268,3761,4739,3657,3214,5609,393,4500,3657,4739,393,3609,1268,1861,5609,3761,1583,5553,4519,5377,5529,1583,5377,1086,802,2877,4209,3449,2877,5555,1152,4209,1086,5377,4519,5339,5529,2427,5553,1583,5555,3888,3232,1152,5553,2427,5339,4519,1152,3232,3449, + 4209,5555,2877,802,3888,4147,2122,1596,5568,5568,1596,5000,3387,4147,4482,2289,2122,2334,2289,5000,2971,4014,3364,2920,5730,4481,3883,2792,4962,5,5478,1310,2481,4962,2792,1310,3709,4481,483,5478,3883,5494,5358,1280,1893,3414,2589,623,3581,1893,1280,623,3386,5494,1345,2589,5358,1575,192,4168,2780,1486,1575,2780, + 4265,2243,3805,5372,1334,3805,3868,3986,5372,192,531,2041,4168,3868,3412,3046,3986,5659,5428,1486,531,3412,2243,1334,3046,2760,3330,4766,382,3330,4217,729,4766,206,207,2195,1044,5708,5331,206,1797,2221,207,535,3364,4014,3003,4130,229,737,2532,2532,737,1931,2832,4130,5244,3809,229,4572,1880,714,1835,5340, + 2178,2613,1686,1880,5340,1686,714,2178,4572,1835,2613,4119,4658,320,5307,454,922,4270,1331,922,4119,5307,4270,4658,454,1331,320,3809,5244,2832,1931,2683,4118,3915,2941,3003,4014,5730,1448,5244,738,4220,2832,738,3287,2203,4220,5573,1448,5730,2920,5081,81,926,1074,3883,308,304,2792,308,5,2481,304,5478, + 483,3709,1310,2860,4667,3515,1018,2792,304,2481,1310,3500,4791,1208,1262,2122,6,1577,1596,6,2334,2971,1577,4826,4829,1428,2016,4829,1263,5203,1428,1596,1577,2971,5000,2999,2855,3915,4118,5358,4099,571,1280,1621,504,1743,2441,2589,1345,3386,623,1345,5494,1893,3386,1280,571,3581,623,1223,2999,4118,2683,2161, + 4790,905,2227,305,5669,3415,3171,5047,305,3171,2227,4743,4904,825,5130,3367,2721,4790,2161,4880,621,5087,2156,5379,4070,3916,362,2823,5379,362,2156,4252,820,5087,621,1135,4252,621,4880,3883,5478,5,308,1223,2502,2855,2999,222,3690,202,2451,2122,2289,2334,6,5358,2589,3414,4099,391,2969,4904,4743,306, + 481,2959,654,249,222,2451,3686,1976,4074,796,2123,3368,3302,5595,781,3302,57,270,5595,1121,655,1932,2787,655,1708,1214,1932,781,5595,270,2787,4586,1976,2123,2717,481,5378,3459,2959,5069,249,3686,5202,718,5199,2015,3111,5202,3686,2451,202,3690,5069,5202,202,2358,5023,4106,985,205,2358,985,2180,3280, + 5451,2336,1755,375,1394,4088,2055,2311,2056,375,2055,323,2311,2055,4088,3559,323,4088,1394,2056,3559,1394,375,5023,290,3154,4106,290,205,2180,3154,2180,985,4106,3154,168,165,2336,5451,1840,4092,3233,2698,4092,4089,1075,3233,5113,4688,3392,1382,4688,1912,2177,3392,2698,3233,1075,1382,1458,168,5451,3280,3446, + 47,4343,250,3369,1662,4590,1132,3019,3560,717,5679,3350,3732,322,4420,5308,84,1117,2803,5346,2789,3495,3813,3813,3495,988,2937,213,2699,839,5306,594,1336,4607,3237,1117,2312,5363,5306,4331,5346,3813,188,188,3813,2937,4366,3196,1225,2937,988,84,2537,2312,1117,2803,1117,5306,839,1909,213,5306,5363,3368, + 1121,57,3302,3046,1334,2788,148,3986,3046,148,356,5372,3986,356,2522,1334,5372,2522,2788,5584,5272,3753,5506,5712,5584,5506,701,4608,5712,701,2393,5272,4608,2393,3753,477,3754,1210,392,2972,477,392,139,5735,2972,139,4673,3754,5735,4673,1210,5176,4909,4674,58,4115,4557,2482,59,3918,4115,59,58,3917, + 4396,4674,4909,4040,3917,4909,5176,1745,3810,4315,4433,2967,4961,1390,5137,2678,2967,5137,4433,5138,2871,4315,3810,2240,5138,3810,1745,4668,4830,3334,3370,144,1709,1004,271,739,3004,271,826,189,739,3320,2405,4178,4287,1478,3320,4287,3660,1573,1478,3660,1005,2405,1573,1005,4178,531,1486,4265,2041,1264,4709,1432, + 4708,4700,1264,4708,1487,5088,4700,1487,1783,4709,5088,1783,1432,433,2027,5722,1211,2977,433,1211,230,60,2977,230,2157,2027,60,2157,5722,208,4217,3330,4639,274,4011,1894,2339,363,1389,1528,3919,2339,1528,2036,4744,3919,2036,5174,363,4744,5174,1389,3715,5663,2903,1627,3463,3715,1627,5335,3192,1601,246,4493, + 2404,4810,4757,3687,4810,37,4382,4757,37,2404,3687,4382,5663,7,3537,2903,1601,5301,2444,246,844,3192,4493,2982,357,3214,4500,104,3761,357,104,4739,5609,1861,3609,393,4361,3134,4358,5002,740,3134,307,5002,1578,3464,1818,2073,4558,4332,1784,4558,1784,5048,1405,2196,3464,3538,2073,3304,4122,1820,2932,2719, + 1860,4514,1821,1860,3304,2932,4514,618,3136,2386,4376,765,4515,3493,906,4515,618,4376,3493,2719,3136,618,1860,1860,618,4515,3304,3304,4515,765,4122,1820,906,3493,2932,2932,3493,4376,4514,4514,4376,2386,1821,3303,2191,5090,2908,5420,1579,5462,4483,1579,3303,2908,5462,5084,3664,1538,5463,999,782,1512,1663,782, + 5084,5463,1512,5420,3664,5084,1579,1579,5084,782,3303,3303,782,999,2191,2191,5420,4483,5090,999,3664,5420,2191,1663,1538,3664,999,4122,2719,1821,1820,765,3136,2719,4122,906,2386,3136,765,1820,1821,2386,906,4591,5653,1474,4243,3138,2609,2092,3691,2609,4591,4243,2092,396,866,3460,2226,5149,3710,4333,2904,3710, + 396,2226,4333,3138,866,396,2609,2609,396,3710,4591,4591,3710,5149,5653,1474,2904,4333,4243,4243,4333,2226,2092,2092,2226,3460,3691,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4359,1475,730,2782,1475,3231,5417,730,3231,5721,2010,5417,5721, + 4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4359,1475,730,2782,4568,4148,3385,3219,3385,2918,4881,3219,4568,3299,1265,4148,1475,3231,5417,730,5721,4359,2782,2010,2782,730,5417,2010,5721,3231,1475,4359,4148,1265,2918,3385,1265,3299,4881,2918,4568,4148,3385,3219,3385, + 2918,4881,3219,4568,3299,1265,4148,1134,3707,189,1134,3856,3004,3707,4559,2285,4434,2968,2968,4434,734,3296,4821,1661,734,4434,4001,4821,4434,2285,3296,1661,4821,2968,2968,4821,4001,4559,3617,48,423,3877,3877,423,666,2152,2152,666,3666,2281,1375,1781,5114,2562,2562,5114,1506,1141,1141,1506,1527,1895,2771,4911, + 3132,2335,2335,3132,3993,4516,4516,3993,2072,3129,3129,2072,4911,2771,4228,4517,3132,4911,3082,1536,4517,4228,2771,2335,1536,3082,2781,4560,4516,3129,2599,2213,4560,2781,2072,3993,2213,2599,4560,2213,4517,1536,4516,4560,1536,2335,2213,3993,3132,4517,2599,2781,3082,4228,2072,2599,4228,4911,2781,3129,2771,3082,5653,3138, + 3691,1474,5149,866,3138,5653,2904,3460,866,5149,1474,3691,3460,2904,1708,3368,781,1214,57,1121,2787,270,1214,781,2787,1932,1708,655,1121,3368,1912,1840,2698,2177,4089,5113,1382,1075,2177,2698,1382,3392,2015,1876,5116,3111,5199,505,1876,2015,3388,5066,5679,717,4420,3019,5679,250,805,2538,5302,2359,1127,3561, + 2752,2053,2531,4561,656,4676,2825,2181,422,247,4142,2608,2825,5521,1557,5521,595,1020,2181,1557,1020,422,5614,2826,1557,2181,2826,4142,5521,1557,5521,2825,247,595,2608,5614,2181,2825,4142,2826,5614,2608,2538,1127,2053,5302,3416,2153,641,3137,2153,2531,4676,641,3561,805,2359,2752,4561,3416,3137,656,2531,2153, + 3416,4561,1876,3280,4982,5116,505,1458,3280,1876,1912,4688,5113,1840,1840,5113,4089,4092,3371,5181,1628,3305,5181,4793,5049,1628,1759,4494,3750,803,4494,4136,4347,3750,3305,1628,5049,397,3371,1580,4793,5181,4136,1878,4578,4347,1580,3365,4427,397,4347,4578,803,3750,4136,4494,1759,1878,3020,4607,1336,5564,2384,1225, + 5346,4331,1225,2384,4366,2937,5564,5108,4758,3020,3020,4758,3237,4607,1336,594,5108,5564,5301,844,2982,2444,7,3463,5335,3537,5663,3715,3463,7,1879,5565,3190,4314,2594,1879,4314,1722,1722,4314,1559,4107,5565,5398,4685,3190,4314,3190,3829,1559,4685,1722,4107,2648,3190,4685,2648,3829,5398,2594,1722,4685,1974,3496, + 3661,1376,4587,3371,3305,4207,4578,593,376,803,4587,3365,1580,3371,4793,1580,397,5049,205,290,5023,2358,323,3559,2056,2311,1910,85,1877,5554,2220,2872,1236,1597,1877,4983,4655,1597,85,4044,4983,1877,5554,1877,1597,1236,5364,2220,1597,4655,4490,499,3642,2091,779,398,2626,358,2091,3642,1072,1170,4890,753, + 1170,1072,4490,753,4890,499,2091,1170,3588,3105,1747,779,358,3618,398,2830,2037,2626,3105,3588,4925,2011,5066,3446,250,5679,3350,4420,250,4343,3639,8,1855,3616,36,248,8,3639,834,3655,248,36,4065,3755,3655,834,5039,1295,3755,4065,4460,619,1295,5039,1558,4210,619,4460,1507,3802,4210,1558,1390,1745, + 4433,5137,2871,2678,4433,4315,4961,2240,1745,1390,1546,2683,2941,4150,2855,2502,2941,3915,5338,1223,2683,1546,5338,1317,2502,1223,2482,5176,58,59,4396,3918,58,4674,4557,4040,5176,2482,3916,4880,2156,362,820,2823,2156,5087,4070,1135,4880,3916,3415,2161,2227,3171,5005,5047,2227,905,5669,3367,2161,3415,5669,305, + 5047,3367,1048,1725,3802,1507,3764,5416,1725,1048,311,3589,5416,3764,3054,245,3589,311,5554,1236,2872,1910,718,3111,5116,2595,3067,2595,5116,4982,1755,3069,2315,685,2244,1889,4875,4926,3069,2862,1266,2315,2244,4926,4320,1906,3892,1930,2383,3006,3892,1906,2264,4704,2394,3756,2289,4482,3387,5000,821,5223,3720,1975, + 562,5164,5268,5664,4875,3892,3006,4926,532,2679,4004,5660,103,3051,2679,532,1509,435,1749,954,1710,3614,3051,103,247,422,4609,209,4926,3006,636,4439,5660,4004,3614,1710,4119,922,454,4658,4060,5255,2586,3022,4174,3971,4060,5561,5092,5561,5153,2876,5255,5092,2876,2586,5230,3353,5092,5255,3353,4174,5561,5092, + 5561,4060,3022,5153,3971,5230,5255,4060,3318,3078,5622,4090,3318,4090,3971,4174,5622,3078,3353,5230,3078,3318,4174,3353,4090,5622,5230,3971,5063,3267,2813,3989,3989,2813,1450,2641,3267,5063,1523,4944,2813,3267,4944,1450,5063,3989,2641,1523,1523,2641,5399,3315,1450,4944,2642,1563,4944,1523,3315,2642,2641,1450,1563,5399, + 4802,684,5064,169,169,5064,3637,2307,684,4802,5691,2452,5064,684,2452,3637,4802,169,2307,5691,5691,2307,2397,1120,3637,2452,4311,2694,2452,5691,1120,4311,2307,3637,2694,2397,3081,3000,3271,2564,4825,2567,5231,3167,3000,4825,3167,3271,2567,3081,2564,5231,5256,1562,5566,2790,3107,3354,1635,2799,3354,5256,2790,1635, + 1562,3107,2799,5566,5256,3354,3107,1562,85,2220,5364,4044,5085,4787,3614,4004,5719,5523,4787,5085,5660,1710,5523,5719,3864,4484,103,532,5179,2821,4484,3864,2679,3051,2821,5179,4484,2821,4787,5523,103,4484,5523,1710,2821,3051,3614,4787,5179,3864,5719,5085,2679,5179,5085,4004,3864,532,5660,5719,5089,4169,3498,4640, + 2286,2610,4169,5089,2429,4593,2610,2286,4640,3498,4593,2429,3586,2119,4593,3498,1311,3866,2119,3586,4640,2429,3866,1311,5329,3494,2286,5089,2667,5330,3494,5329,4169,2610,5330,2667,3494,5330,2119,3866,2286,3494,3866,2429,5330,2610,4593,2119,2667,5329,1311,3586,4169,2667,3586,3498,5329,5089,4640,1311,2862,2244,4320,3992, + 1266,2862,3992,3756,2394,3188,2264,2373,4704,1889,3069,685,2328,4875,1889,2328,2264,1906,1930,2373,3287,738,5244,4130,3992,4211,3806,1266,2203,2532,2832,4220,3287,4130,2532,2203,3188,2394,2846,3920,2502,1317,4150,2941,5394,3500,1317,5338,2383,1444,3006,5394,5338,1546,16,16,1546,4150,1262,1933,613,1934,3221,107, + 4791,3500,5394,107,5394,16,1859,613,4006,997,1934,4926,4439,4320,1263,4829,4826,9,5203,3994,2016,1428,3006,1444,636,1263,9,3994,5203,2383,3756,3188,1444,1859,16,1262,1208,1317,3500,1262,4150,5048,4332,4558,4518,4358,3134,740,5002,307,4361,1405,5048,4518,567,5465,2672,567,2672,793,1150,793,5465,567, + 4164,3538,3464,1578,2073,1818,2196,1150,793,4164,5040,4012,1660,2778,1576,4012,482,2778,1370,2938,1051,1370,1051,1823,3373,1823,2938,1370,24,482,4012,5040,2778,1660,1576,3373,1823,24,4961,2967,2678,2240,2240,2678,2871,5138,4070,5379,2823,1135,1135,2823,820,4252,4557,4115,3918,4040,4040,3918,4396,3917,2113,1446, + 4608,5272,1446,20,5712,4608,20,143,5584,5712,4211,3920,2846,3806,1910,2872,2220,85,422,1020,2649,4609,5554,1236,2872,1910,657,2582,5224,5468,2582,562,5664,5224,1835,714,4218,5557,5364,2220,1597,4655,5554,1877,1597,1236,5164,657,5468,5268,5223,1509,954,3720,5199,718,505,1458,505,2595,168,1458,165,1458, + 2595,3067,165,1458,3067,505,718,2595,165,3067,1755,2336,4982,3280,1755,5069,3690,222,249,1910,2872,2220,85,85,2220,5364,4044,5346,1225,3196,2789,5308,2699,213,84,84,213,1909,2537,3446,5066,2955,322,1559,3829,210,326,3019,2955,3015,3560,4420,322,2955,3019,4107,1559,326,5065,47,3446,322,3732,5066, + 3388,3015,2955,2069,5359,2199,3935,2042,2069,3935,4334,1662,4288,2237,4590,3829,2648,5366,210,5383,1047,2121,907,4288,3803,1253,2237,3803,3369,1132,1253,5282,5711,5616,1936,5359,2976,4289,2199,2315,4704,2373,685,685,2373,1930,2328,2328,1930,3892,4875,5095,2990,5234,2845,3283,863,3947,3858,2990,5474,2741,4638,2990, + 4638,5234,5474,2675,615,3947,3644,5095,2398,1017,2741,5474,3947,863,5095,2845,4957,2398,5234,4638,3283,3858,5299,3277,2919,3253,5390,2225,3577,5198,3253,1065,2355,2420,3253,2919,1065,2420,3577,2988,800,291,3501,840,438,438,840,1776,5299,2355,5198,3577,2420,800,2988,309,4997,5299,1776,4637,3277,2919,2225,5390, + 1065,4492,15,5039,712,438,5299,709,836,2420,800,3055,15,1048,1507,15,3764,1048,85,4044,4983,1877,5039,4065,4492,4492,4065,834,1877,4983,4655,1597,4492,36,3639,311,15,3054,4764,4492,3639,2220,2872,1236,1597,1910,85,1877,5554,15,1558,4460,1379,4764,3639,311,3764,15,15,1507,1558,2285,4559,2556, + 2035,4001,2285,2035,742,3639,3616,1379,4559,4001,742,2556,15,4460,5039,4492,834,36,4512,2896,5267,1257,1257,5267,1712,1212,2896,4512,2622,1148,5267,2896,1148,1712,4512,1257,1212,2622,2214,5139,1367,1514,1133,2380,1095,3256,1148,2622,5289,3814,5139,1133,3256,1367,1089,4066,5666,3052,4363,5337,4323,5370,4066,4363, + 5370,5666,5337,1089,3052,4323,3815,5051,2377,3708,5051,354,1318,2377,4219,3665,1111,4335,3148,2107,4386,637,143,2113,5272,5584,3815,4219,354,5051,733,3815,3708,4404,354,4219,4335,1318,4404,3708,4335,1111,733,3665,4219,3815,1822,2831,3272,1284,2831,3053,196,3272,923,3239,4015,3149,3239,3391,3139,4015,1284,3272, + 196,5269,1822,1543,3053,2831,3391,1096,2138,3139,3053,1543,5269,196,3139,2138,3149,4015,3391,3239,923,1096,590,2219,3583,2791,2219,751,4949,3583,3943,5692,4894,550,5692,2645,638,4894,2791,3583,4949,550,590,3943,751,2219,2645,590,2791,638,751,3943,550,4949,638,2791,550,4894,2645,5692,3943,590,5397,3068, + 4272,3570,535,3003,1448,5573,3761,5609,3214,357,1268,3761,4739,3657,3214,5609,393,4500,3657,4739,393,3609,1268,1861,5609,3761,1583,5553,4519,5377,5529,1583,5377,1086,802,2877,4209,3449,2877,5555,1152,4209,1086,5377,4519,5339,5529,2427,5553,1583,5555,3888,3232,1152,5553,2427,5339,4519,1152,3232,3449,4209,5555,2877, + 802,3888,4147,2122,1596,5568,5568,1596,5000,3387,4147,4482,2289,2122,2334,2289,5000,2971,4014,3364,2920,5730,4481,3883,2792,4962,5,5478,1310,2481,4962,2792,1310,3709,4481,483,5478,3883,5494,5358,1280,1893,3414,2589,623,3581,1893,1280,623,3386,5494,1345,2589,5358,1575,192,4168,2780,1486,1575,2780,4265,2243,3805, + 5372,1334,3805,3868,3986,5372,192,531,2041,4168,3868,3412,3046,3986,5659,5428,1486,531,3412,2243,1334,3046,2760,3330,4766,382,3330,4217,729,4766,206,207,2195,1044,5708,5331,206,1797,2221,207,535,3364,4014,3003,4130,229,737,2532,2532,737,1931,2832,4130,5244,3809,229,4572,1880,714,1835,5340,2178,2613,1686, + 1880,5340,1686,714,2178,4572,1835,2613,4119,4658,320,5307,454,922,4270,1331,922,4119,5307,4270,4658,454,1331,320,3809,5244,2832,1931,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,659,125,62,1309, + 125,4803,5641,62,4803,63,1296,5641,63,659,1309,1296,2561,2561,2561,2561,2279,2428,2111,3151,2561,2561,2561,2561,2242,3840,2089,5304,2561,2561,2561,2561,2561,2561,2561,2561,3615,4034,3840,2242,5608,5074,2917,3352,2497,2197,3352,2917,2561,2561,2561,2561,3421,1723,1164,5353,4259,4259,4259,4259,2561,2561,2561,2561, + 871,5160,569,5334,1681,3372,4595,4808,5229,3998,1006,1126,167,55,1126,1006,1537,4056,569,5160,203,2466,1760,4471,1039,1537,5160,871,2703,885,4960,2600,899,3959,3018,875,2130,899,875,2600,5698,4759,4960,885,2251,448,908,1046,4502,172,3953,4379,4379,3953,2467,4556,4443,5471,2201,4556,4535,4502,4379,502, + 502,4379,4556,2201,810,4443,4556,2467,448,1416,2978,908,1251,1884,385,1040,1631,5143,1884,1251,1631,1733,3788,3447,3447,3788,3871,1651,5143,1013,385,1884,5411,2570,2893,5365,1040,385,1013,3399,1651,3871,5238,3399,5238,1733,5025,5459,1733,5238,3871,3788,3266,5054,1013,5143,204,1209,3580,1088,5298,5365,1962,5360, + 2893,5509,4356,3058,5365,5298,458,5411,5365,3058,2570,3217,5509,2893,2561,2561,2561,2561,2561,2561,2561,2561,3615,5551,437,4034,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3867,3610,2197,2497,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4702,3104,1456,1702,3641,1197,4838,2593,4838,373, + 2970,1646,2593,4838,1646,5636,4444,5606,1197,3641,5606,2875,1196,1197,1197,1196,373,4838,1646,2970,2875,5606,5636,1646,5606,4444,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4981,4146,1511,412,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,842,3612,5450,2090,757,5278,3981,4395,3981,2090,5450,4395,757,3612,842,5278,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2428,5709,2111,2561,2561,2561,2561,5709,4273,3151,2111,2561,2561,2561,2561,2561,2561,2561,2561,4435,2279,3151,2561,2561,2561,2561,5143,1631, + 3447,3266,1631,5143,1884,1251,2561,2561,2561,2561,1381,1987,508,2893,4356,903,4480,5365,2893,4480,1962,2561,2561,2561,2561,4480,903,5360,1962,3998,167,1006,2561,2561,2561,2561,4827,1681,4808,2561,2561,2561,2561,3372,2054,4595,2054,1957,4808,4595,2561,2561,2561,2561,4856,5229,1126,2561,2561,2561,2561,2561,2561,2561, + 2561,4922,3742,3514,1679,2561,2561,2561,2561,2561,2561,2561,2561,1088,3580,3158,5109,1631,1733,3788,3447,5459,385,1013,5238,5054,3871,5238,1013,3841,227,5508,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5025,1251,1040,5459,1733,1631,1251,5025,5143,1631,3447,3266, + 3266,3447,1651,5054,5459,1040,3399,5238,5054,1651,3399,1013,1733,1631,1251,5025,2561,2561,2561,2561,1164,871,5334,5353,1723,1039,871,1164,3018,2703,2600,875,4759,2130,2600,4960,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090, + 5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,757,3612,842,5278,3981,2090,5450,4395,757,5278,3981,4395,842,3612,5450,2090,5278,842,2090,3981,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,757,3612,842,5278,2561,2561,2561,2561,2561,2561,2561,3981,2090,5450,4395, + 757,5278,3981,4395,842,3612,5450,2090,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,748,5189,1987,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,3417,4746,4745,4792,355,3478,4259,4259,4259,4259,4259,4259,4259,4259,4259,4259,548,4299,5668,1038,4299,4319,5668,2466,526,1760,4259,4259,4259,4259,908,2978,2062,449,1046,908,449,789,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561, + 2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,2561,355,251,106,3478,3478,106,2892,5327,4792,5178,3005,2554,526,548,1038,3579,4319,203,4471,3504,2561,2561,2561, + 2561,4629,1007,1847,794,794,1847,4679,5320,1406,4346,4914,1435,1435,5701,4718,1406,4346,5602,3823,4914,87,4440,52,2711,2711,3550,2784,87,4440,4720,3527,52,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,4280,4863,4863,4280,5320,4679,4679, + 5320,4863,5320,5320,4863,5558,5243,3718,1508,1939,1294,2695,268,1508,3718,690,3220,5320,4061,794,794,4061,112,4629,4679,4280,4280,4679,4280,4679,1847,5388,1847,1007,5640,4863,4280,4280,91,2246,5702,1337,4241,280,1832,3023,2212,2816,1496,5498,5045,4241,3023,2549,10,5045,2549,688,686,2212,5498,1794,4405,10, + 688,5206,280,686,1794,1832,2816,4405,5206,1496,1794,5498,5600,2210,5206,688,74,5204,1832,1794,2210,5656,688,2549,951,74,5713,1842,2425,176,1292,2887,2929,3294,2912,2498,2018,1292,858,5598,2887,858,1273,5469,5598,2912,5032,2379,2498,1273,2817,4316,5469,5032,176,2929,2379,2817,3294,2018,4316,5713,2262,1842, + 5713,2331,2262,2549,3023,2306,951,5498,1496,4933,5600,3023,1832,5656,2306,1496,5206,5204,4933,4405,2816,3294,2817,686,280,176,5032,10,4405,2817,1273,2018,2498,1160,2929,2887,1160,4316,2018,1160,2379,2929,1160,5469,4316,1160,2498,2379,1160,5598,5469,1160,2887,5598,1160,2212,686,5032,2912,5045,10,1273,858,4241, + 5045,858,1292,2816,2212,2912,3294,280,4241,1292,176,5439,5440,4033,5057,5440,5058,2579,4033,5058,4204,5438,2579,4204,5439,5057,5438,795,4199,1161,4032,4870,5211,946,3125,5713,2425,5252,5713,5252,1864,5713,1864,4000,5713,4000,5006,5713,5006,2331,4200,795,4032,4201,4199,795,5057,4033,795,4200,5438,5057,4201,4032, + 4195,4196,4199,4200,4201,1161,4199,4033,2579,4200,4199,2579,5438,3629,4196,4202,5216,1161,4201,4196,3629,4032,1161,3629,4195,1361,5216,3794,3455,4195,3629,5216,1361,4196,4195,1361,4202,3794,1362,4870,3455,4202,1361,3455,1701,5216,4202,1701,3794,2368,2366,1363,611,2366,947,4872,1363,947,5212,5219,4872,5212,2368,611, + 5219,1359,265,4543,944,1362,2367,5211,4870,3429,1359,944,1700,265,1359,611,1363,1359,3429,5219,611,1700,944,612,1697,265,3429,1700,4543,265,1363,4872,3429,265,4872,5219,2775,1697,1698,942,4543,1700,1697,2775,944,4543,2775,612,5213,942,5211,2367,612,2775,942,5213,1697,612,5213,1698,3455,4870,3125,1701, + 1698,5213,2367,946,942,1698,946,5211,3125,946,2367,1362,1701,3125,1362,3794,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,5724,5507,513,2963,5724,5507,513,2963, + 513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,4241,280,1832,3023,2212,2816,1496,5498,5045,4241,3023,2549,10,5045,2549,688,686,2212,5498,1794,4405,10,688,5206,280,686,1794,1832,2816,4405,5206,1496, + 1794,5498,5600,2210,5206,688,74,5204,1832,1794,2210,5656,688,2549,951,74,5341,3999,241,176,1292,2887,2929,3294,2912,2498,2018,1292,858,5598,2887,858,1273,5469,5598,2912,5032,2379,2498,1273,2817,4316,5469,5032,176,2929,2379,2817,3294,2018,4316,5341,5615,3999,5341,833,5615,2549,3023,2306,951,5498,1496,4933, + 5600,3023,1832,5656,2306,1496,5206,5204,4933,4405,2816,3294,2817,686,280,176,5032,10,4405,2817,1273,2018,2498,1160,2929,2887,1160,4316,2018,1160,2379,2929,1160,5469,4316,1160,2498,2379,1160,5598,5469,1160,2887,5598,1160,2212,686,5032,2912,5045,10,1273,858,4241,5045,858,1292,2816,2212,2912,3294,280,4241,1292, + 176,5439,5440,4033,5057,5440,5058,2579,4033,5058,4204,5438,2579,4204,5439,5057,5438,795,4199,1161,4032,4870,5211,946,3125,5341,241,1355,5341,1355,2247,5341,2247,4715,5341,4715,3927,5341,3927,833,4200,795,4032,4201,4199,795,5057,4033,795,4200,5438,5057,4201,4032,4195,4196,4199,4200,4201,1161,4199,4033,2579,4200, + 4199,2579,5438,3629,4196,4202,5216,1161,4201,4196,3629,4032,1161,3629,4195,1361,5216,3794,3455,4195,3629,5216,1361,4196,4195,1361,4202,3794,1362,4870,3455,4202,1361,3455,1701,5216,4202,1701,3794,2368,2366,1363,611,2366,947,4872,1363,947,5212,5219,4872,5212,2368,611,5219,1359,265,4543,944,1362,2367,5211,4870,3429, + 1359,944,1700,265,1359,611,1363,1359,3429,5219,611,1700,944,612,1697,265,3429,1700,4543,265,1363,4872,3429,265,4872,5219,2775,1697,1698,942,4543,1700,1697,2775,944,4543,2775,612,5213,942,5211,2367,612,2775,942,5213,1697,612,5213,1698,3455,4870,3125,1701,1698,5213,2367,946,942,1698,946,5211,3125,946, + 2367,1362,1701,3125,1362,3794,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724, + 5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,5720,5343,5603,344,5435,1713,2354,4078,2983,5720,344,4624,394,2983,4624,5257,1454,5435,4078,2185,5321,394,5257,3468,5343,1454,2185,5603,1713,5321,3468,2354,4226,264,3801,4550,4197,3456,4548,4203,4549,4226, + 4550,3438,2025,4197,4203,2369,5220,4549,3438,3432,264,2025,2369,3801,4544,5220,3432,346,3456,4544,346,4548,1617,2658,4475,4785,4780,2664,2662,5516,5123,1617,4785,2276,4786,4780,5516,186,853,5123,2276,856,4476,853,856,4777,2658,4786,186,4475,2664,4476,4777,2662,1356,2002,5654,2001,4393,1410,101,1998,5343,5720, + 2757,797,1713,5435,4896,4936,5720,2983,1956,2757,2983,394,507,1956,5435,1454,676,4896,394,5321,2508,507,1454,5343,797,676,5321,1713,4936,2508,4866,3127,263,2372,3127,5218,2026,263,3796,4865,4551,943,5218,4198,4239,2026,4865,3457,3126,4551,4198,5217,1358,4239,3457,4866,2372,3126,5217,3796,943,1358,1358,943, + 4551,3126,2372,263,2026,4239,1356,1998,2215,3246,2002,1356,3246,369,5654,2002,369,1587,2001,5654,1587,5404,4393,2001,5404,2671,1410,4393,2671,1738,101,1410,1738,3477,1998,101,3477,2215,2927,3746,788,2706,3276,468,2371,4411,2128,4623,2981,4711,2101,468,3276,3009,2101,3009,116,2100,5210,2100,116,4229,2981,4623, + 5210,4229,746,5414,5001,2371,1109,758,4411,1959,4306,4049,2128,4711,758,1109,2844,1357,4286,4871,4844,4286,3263,331,4214,1339,1339,1339,1339,1056,1237,4214,2774,3855,4844,4871,4630,3884,1380,5266,3795,1357,2844,3884,746,5001,1380,90,1959,4049,198,3808,90,198,1959,90,3746,2927,90,746,788,3746,746,3884, + 2706,788,3884,1959,2927,2706,3293,1964,1237,1056,1240,3765,331,3263,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,3808,5414,746,90,4630,4306,1959,3884,2927,3746,788,2706,3276,468,2371,4411,2128,4623,2981,4711,2101,468,3276,3009,2101,3009, + 116,2100,5210,2100,116,4229,2981,4623,5210,4229,746,5414,5001,2371,1109,758,4411,1959,4306,4049,2128,4711,758,1109,2844,1357,4286,4871,4844,4286,3263,331,4214,1339,1339,1339,1339,1056,1237,4214,2774,3855,4844,4871,4630,3884,1380,5266,3795,1357,2844,3884,746,5001,1380,90,1959,4049,198,3808,90,198,1959,90, + 3746,2927,90,746,788,3746,746,3884,2706,788,3884,1959,2927,2706,3293,1964,1237,1056,1240,3765,331,3263,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,3808,5414,746,90,4630,4306,1959,3884,2927,3746,788,2706,3276,468,2371,4411,2128,4623, + 2981,4711,2101,468,3276,3009,2101,3009,116,2100,5210,2100,116,4229,2981,4623,5210,4229,746,5414,5001,2371,1109,758,4411,1959,4306,4049,2128,4711,758,1109,2844,1357,4286,4871,4844,4286,3263,331,4214,1339,1339,1339,1339,1056,1237,4214,2774,3855,4844,4871,4630,3884,1380,5266,3795,1357,2844,3884,746,5001,1380,90, + 1959,4049,198,3808,90,198,1959,90,3746,2927,90,746,788,3746,746,3884,2706,788,3884,1959,2927,2706,3293,1964,1237,1056,1240,3765,331,3263,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,3808,5414,746,90,4630,4306,1959,3884,2815,1542, + 2104,2104,4761,5442,3835,2104,1542,5274,4999,5734,5442,3689,3885,2104,3779,4761,5442,3885,2815,4995,4313,773,4313,4995,5489,5734,5610,1727,1727,3944,5274,2720,3636,754,754,3680,2644,377,2535,4041,4041,2820,377,4313,5489,2350,3978,4242,1802,5734,3833,377,1802,4242,5259,3970,3680,754,827,754,3636,1290,3656,1138, + 827,1138,4963,4657,3940,2051,634,2051,1477,634,5250,1229,5249,5355,4657,459,1231,2820,459,4041,2535,3781,3944,1727,459,1727,5610,4727,3948,4984,1365,4984,2141,1215,460,3633,1365,3633,1914,683,1290,3636,5734,377,2820,1231,5610,5734,1802,1914,3633,3633,460,1802,5274,3944,3781,5274,3781,2535,4995,1477,2051,4995, + 2051,3940,773,2350,5355,5249,1229,773,5259,5685,2141,4984,3948,5259,5685,1802,460,1215,2141,5685,4995,3940,4657,2350,4657,5355,1542,2052,2644,3970,4963,2644,773,1229,5250,4995,5250,1477,5259,3948,4727,5259,4727,1914,1118,1727,5610,1118,2176,3948,4984,2141,1118,980,296,3656,980,1138,4963,980,462,3940,980,2051, + 1477,2702,1477,5250,5250,1229,1603,1603,3443,2702,5046,3636,1290,5046,1290,3656,296,1477,2702,1603,3760,3443,1603,4727,3948,2176,5610,4756,3285,4756,5610,1231,2820,3285,4020,1584,3531,1584,5105,3531,3987,1584,5279,3987,1603,1229,5279,1914,1603,1202,2141,1215,1202,1215,460,1045,2535,3781,1045,3781,3944,1118,132,1045, + 2155,1202,1584,1584,4020,2155,3970,3680,1335,212,5355,4657,4657,3940,212,212,3940,462,3103,1335,5292,4690,5621,5630,3531,1335,4020,212,5249,5355,3987,1229,5249,5046,1335,3680,754,3636,5046,5132,4020,1335,4690,5630,212,44,5105,212,5630,5279,3633,1914,1202,460,3633,1045,4041,2535,3865,3979,2495,5135,5135,2495, + 4945,5562,3979,3865,3735,3780,3887,5475,3780,2495,1289,1067,327,3603,4931,2881,3285,5046,3194,1045,3285,2820,1045,4020,5132,1542,2815,3885,3978,5685,5259,5685,3978,1802,3689,5442,4761,5442,2815,2104,5274,3833,4999,5259,4242,3978,1542,2644,3563,1138,2644,4963,5274,5734,1727,773,4313,2350,3833,5274,377,5734,4999,3833, + 2350,5489,4995,827,3970,754,1290,827,3636,827,1290,1138,3970,827,4963,634,4657,2051,5250,634,1477,5249,634,1229,634,5249,4657,4041,459,2820,3781,459,2535,459,3781,1727,1231,459,5610,1365,4727,4984,1215,1365,2141,1365,1215,3633,4727,1365,1914,2720,683,3636,1231,5734,2820,377,5274,2535,5249,773,5355,4984, + 5259,2141,1215,5685,460,2350,4995,4657,3970,2644,3680,4995,773,5250,1802,5259,1914,1727,1118,3944,2176,1118,5610,4984,1118,3948,1138,980,3656,462,980,4963,2051,980,3940,296,980,1477,1603,2702,5250,4727,1603,1914,1231,3285,5610,1045,5132,3285,3285,5132,5046,3987,5279,1603,1202,1118,2141,1118,1202,132,1118,1045, + 3944,1584,1202,5279,1045,2155,4020,1045,132,2155,44,212,3448,2922,3103,5292,689,3603,5105,4931,4651,5105,3603,327,4651,1067,1112,4742,1112,1067,1584,3987,5105,212,3987,5249,754,5046,3680,5046,5132,1335,212,5105,3987,1289,4742,1067,5105,5630,2881,5279,1202,3633,4945,3735,1202,5562,132,3887,3780,5475,3979,2495, + 3979,5475,4977,3603,4860,4041,1045,2820,5292,1335,4742,1289,1289,327,3603,4977,1335,3531,1112,4742,1067,4651,327,5105,4651,1112,3531,1202,3735,3887,132,132,5562,3865,2155,3979,5562,3887,3780,2155,3865,5135,2155,5135,4945,1202,2495,3780,3735,4945,5292,5630,5621,3103,2922,3448,212,689,5292,5621,1542,3563,2720,2644, + 683,3563,1138,3656,683,5694,2644,2052,3689,1542,3885,2052,4761,3779,2052,3779,2104,2104,2720,5694,683,2720,3563,683,3656,1290,296,3194,5046,296,3443,3194,3346,3760,2399,3346,3194,3443,1603,2399,3760,4756,2399,1603,4756,3948,2176,3285,2399,4756,3103,212,462,3346,2399,3285,3835,1542,2720,2104,3835,2720,2644,1138, + 683,5694,2720,754,5694,754,2644,2052,3689,4761,1542,3689,2052,2052,2104,5694,296,5046,3656,296,2702,3443,3346,3443,3760,4756,1603,3948,3970,462,4963,462,3970,1335,3103,462,1335,2922,689,3448,3346,3285,3194,4690,689,5621,4690,44,3448,689,5630,4860,2881,5292,4977,4860,5630,5292,1289,4977,4931,5105,2881,4860, + 3603,2881,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717, + 4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670, + 1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717, + 4059,273,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133, + 4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5422,1556,5197,1151,4696,133,4717,2030,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059,597,5673,5670,137,1136,1556,4372,5670,1556,5422,5129,4372,5422,3100,273,4059, + 597,5673,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273, + 4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273, + 4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673, + 4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696, + 5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696, + 5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133, + 4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129, + 2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670, + 4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030, + 4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137, + 1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696, + 5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696, + 5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273, + 4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129, + 2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422, + 4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696, + 5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133, + 4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133, + 4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556, + 4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273, + 4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273, + 273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045, + 137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696, + 5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100, + 4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030, + 4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670, + 133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696, + 5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133, + 4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133, + 4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129, + 2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030, + 2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273, + 273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045, + 137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133, + 4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133, + 4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372, + 4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372, + 4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030, + 4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717, + 4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045, + 137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,2419,5662,1063,3169,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,4391,4345, + 3031,4806,4384,921,1110,2989,3630,2476,4384,2327,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,4412,2534,1146,3619,2206,4071,1843,5485,4071,4412,3619,1843,1204,5062,2206,1080,5062,4422,4071,2206,3836,5159,662,105,416,661, + 3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476, + 990,4453,1080,2206,5485,1468,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,1256,2081,439,3362,4357,1927,1443,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,4109,1443,1927,4109,4849,1695,4109,766, + 1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,1926,517,5517,2277,564,4928,299,1926,181,517,1645,4783,3632,2313,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,2534,1080,1468,1146,4170,4391,4806,4789,5567,4153,1455,830,3035,519,560,519,561,2324,561, + 2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,5515,4073,4473,4108,2313,3632,5415,2828,4732,5520,855,4285,2000,2277,5517,2716,1373,4928,564,551,3164, + 3164,551,4416,2923,2110,3632,602,5415,5587,3424,2665,855,3164,5454,5454,3164,2067,4897,5068,1751,2998,1348,1059,3189,4108,4473,4814,5126,5122,4814,2806,5079,551,551,5079,1250,3010,1616,4783,1193,3632,3520,3351,4862,3936,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,3891,3040,3057,5142,3150,2241, + 5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,5125,556,4073,5515,3632,1193,1373,602,185,2660,180,1634,1230,5662,2419,3763,921,4384,2596,4412,4071,2596,2565,2534,4412,1204,1080,2534,1230,3630,2327,5662,4450,4409,2419,2352,5454,5079, + 5079,5454,5079,551,3164,5454,602,1373,564,5582,2000,4161,2965,4732,702,5520,4969,702,4732,4819,5582,2965,183,1256,439,2419,3169,1063,5662,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,4391,4806,3031,4345,4384,2989,1110,921,3630,2327,4384,2476,4846,395,1252,2842,4292,889,105,3836,716,4654,889, + 4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,4412,3619,1146,2534,2206,5485,1843,4071,4071,1843,3619,4412,1204,1080,2206,5062,5062,2206,4071,4422,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160, + 860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1080,1468,5485,2206,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034, + 4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,1256,439,2081,3362,1443,1927,4357,4649,1695,1443,3362,4818,4849,1695,4649,1695,4109,1443,1443,4109,1927,4849,4109,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,1926,2277,5517,517,564, + 299,4928,1926,517,181,1645,2313,3632,4783,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,2534,1146,1468,1080,4170,4789,4806,4391,5567,830,1455,4153,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5254,4317,4128,5733,945,4698,4868, + 4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,5515,4108,4473,4073,2313,2828,5415,3632,4732,4285,855,5520,2000,2716,5517,2277,1373,564,4928,551,551,3164,3164,4416,2110,2923,3632,5415,602,5587,855,2665,3424,3164,3164,5454,5454,2067,1751,5068,4897,2998, + 3189,1059,1348,4108,4814,4473,5126,2806,4814,5122,5079,5079,551,551,1250,1616,3010,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,3891,5142,3057,3040,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644, + 4095,3812,1034,2480,2184,1883,3209,4026,5125,5515,4073,556,3632,602,1373,1193,185,1634,180,2660,1230,2419,5662,3763,4384,921,2596,4071,4412,2596,4412,2534,2565,1204,2534,1080,1230,5662,2327,3630,4450,2352,2419,4409,5454,5454,5079,5079,5079,5454,3164,551,602,564,1373,5582,2965,4161,2000,4732,5520,702,4969,4732, + 702,4819,2965,5582,183,439,1256,3021,3704,2007,5163,4784,4797,3704,3021,4784,3021,3704,4797,5479,4390,184,267,1693,1122,2166,4800,674,2166,674,1693,2166,5727,1081,2166,5479,267,184,4390,1693,2166,1122,674,2166,1693,5727,2166,1081,3021,5163,2007,3704,3336,1954,2094,1737,3141,1154,5352,1154,4453,5352,4453,990, + 5352,990,3141,5352,1752,225,4406,215,225,699,2314,4406,5075,1650,225,1752,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,1994,1995,3957,4993,2633,574,1993,1997,574,1994,4993,1993,314,3211,2633,1996,3211,936,574,2633, + 3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990, + 395,1252,4453,1154,1252,476,990,4453,1996,2633,1997,4994,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,4837,4579,1035,3484,1986,4837,3484,1037,3249,978,3744,1619,183,1256,2081,439,5208,166,166, + 5208,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,609,5342,1443,4782,609,4849,1695,5342,4842,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,5458,2857,2068,1128,4799,3784,5303,1904,1619,3744,3575,2529,1904,5303,2857,5458,1926,517,5517,2277,564,4928,299,1926,181,517,1116, + 2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,1995,1996,4994,3957,1954,1752,215,2094,699,3336,1737,2314,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5124,4800,184,267,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698, + 4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,1471,1616,3826,3969,4732,5520,855,4285,2000,2277,5517,2716,602,1373,4928,564,4819,5582,2000,4161,4416,2923,2110,3632,602,5415,5587,3424,2665,855,5432,4686,5520,2067,4897,5068,1751,2998,1348,1059,3189,3969,3826,4783,1693,1122,2166,1250, + 3010,1616,3021,1693,674,5163,4784,1122,1693,3021,1805,884,1555,2202,1986,1037,3411,865,1805,2202,234,978,1805,978,3249,4783,1193,3632,3520,3351,4862,3936,4800,674,2166,674,1693,2166,5727,1081,2166,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,1081,5727,3057,5142,3150,2241,5548,480,4094,1274, + 126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,1690,1250,1616,1471,3632,1193,1373,602,2574,2483,3769,182,113,1954,3336,1650,699,225,936,1994,574,936,314,1995,1994,314,1996,1995,113,5075,1752,1954,1650,113,3336,699,166,475,475,166,3702,518, + 518,3702,518,5208,5208,518,3362,4357,4782,1443,475,2114,166,3702,518,1665,518,5208,1665,166,2114,3703,5208,5208,3703,1665,4969,5432,5520,3336,1737,2094,1954,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,1752,215,4406,225,225,4406,2314,699,5075,1752,225,1650,4846,395,1252,2842,4292,889,105, + 3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,1994,4993,3957,1995,2633,1997,1993,574,574,1993,4993,1994,314,1996,2633,3211,3211,2633,574,936,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847, + 2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1996,4994,1997,2633,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256, + 2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,4837,3484,1035,4579,1986,1037,3484,4837,3249,1619,3744,978,2313,2828,3797,183,439,2081,1256,5208,5208,166,166,4649,1695,1443,3362,4818,4849,1695,4649,1695,5342,609,1443,1443,609,4782,4849,4842,5342,1695, + 766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,5458,1128,2068,2857,4799,1904,5303,3784,1619,2529,3575,3744,1904,5458,2857,5303,1926,2277,5517,517,564,299,4928,1926,517,181,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,1995,3957,4994,1996,1954,2094, + 215,1752,699,2314,1737,3336,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5124,267,184,4800,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,1471,3969,3826,1616, + 4732,4285,855,5520,2000,2716,5517,2277,602,564,4928,1373,4819,4161,2000,5582,4416,2110,2923,3632,5415,602,5587,855,2665,3424,5432,5520,4686,2067,1751,5068,4897,2998,3189,1059,1348,3969,4783,3826,1693,2166,1122,1250,1616,3010,3021,5163,674,1693,4784,3021,1693,1122,1805,2202,1555,884,1986,865,3411,1037,1805,978, + 234,2202,1805,3249,978,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,674,2166,1693,5727,2166,1081,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,1081,5142,3057,5727,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883, + 3209,4026,1690,1471,1616,1250,3632,602,1373,1193,2574,182,3769,2483,113,3336,1954,1650,225,699,936,574,1994,936,1994,1995,314,314,1995,1996,113,1954,1752,5075,1650,699,3336,113,166,166,475,475,3702,3702,518,518,518,518,5208,5208,3362,1443,4782,4357,475,166,2114,3702,1665,518,518,1665,5208,166, + 5208,3703,2114,5208,1665,3703,4969,5520,5432,135,4282,2743,4783,4282,135,4783,2742,2828,5415,3632,3797,2743,3797,3632,4783,1645,2742,2313,1645,4282,2742,1645,2313,3797,5127,3632,5415,2828,2742,4783,3632,5127,3336,1954,2094,1737,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,1752,225,4406,215,225,699, + 2314,4406,5075,1650,225,1752,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,1994,1995,3957,4993,2633,574,1993,1997,574,1994,4993,1993,314,3211,2633,1996,3211,936,574,2633,3836,5159,662,105,416,661,3413,1582,4654,889, + 1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1996,2633, + 1997,4994,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,4837,4579,1035,3484,1986,4837,3484,1037,3249,978,3744,1619,183,1256,2081,439,5208,166,166,5208,4649,3362,1443,1695,4818,4649,1695,4849,1695, + 1443,609,5342,1443,4782,609,4849,1695,5342,4842,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,5458,2857,2068,1128,4799,3784,5303,1904,1619,3744,3575,2529,1904,5303,2857,5458,1926,517,5517,2277,564,4928,299,1926,181,517,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457, + 3010,4416,2110,1116,1995,1996,4994,3957,1954,1752,215,2094,699,3336,1737,2314,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5124,4800,184,267,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301, + 3124,3435,1058,766,1249,3036,1471,1616,3826,3969,4732,5520,855,4285,2000,2277,5517,2716,602,1373,4928,564,4819,5582,2000,4161,4416,2923,2110,3632,602,5415,5587,3424,2665,855,5432,4686,5520,2067,4897,5068,1751,2998,1348,1059,3189,3969,3826,4783,1693,1122,2166,1250,3010,1616,3021,1693,674,5163,4784,1122,1693,3021, + 1805,884,1555,2202,1986,1037,3411,865,1805,2202,234,978,1805,978,3249,4783,1193,3632,3520,3351,4862,3936,4800,674,2166,674,1693,2166,5727,1081,2166,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,1081,5727,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862, + 2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,1690,1250,1616,1471,3632,1193,1373,602,2574,2483,3769,182,113,1954,3336,1650,699,225,936,1994,574,936,314,1995,1994,314,1996,1995,113,5075,1752,1954,1650,113,3336,699,166,475,475,166,3702,518,518,3702,518,5208,5208,518,3362,4357,4782,1443, + 475,2114,166,3702,518,1665,518,5208,1665,166,2114,3703,5208,5208,3703,1665,4969,5432,5520,3336,1737,2094,1954,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,1752,215,4406,225,225,4406,2314,699,5075,1752,225,1650,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253, + 2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,1994,4993,3957,1995,2633,1997,1993,574,574,1993,4993,1994,314,1996,2633,3211,3211,2633,574,936,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847, + 4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1996,4994,1997,2633,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973, + 5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,4837,3484,1035,4579,1986,1037,3484,4837,3249,1619,3744,978,2313,2828,3797,183,439,2081,1256,5208,5208,166,166,4649,1695,1443,3362,4818,4849,1695,4649,1695,5342,609,1443,1443,609,4782,4849,4842,5342,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826, + 652,1505,1826,558,652,1826,1505,5458,1128,2068,2857,4799,1904,5303,3784,1619,2529,3575,3744,1904,5458,2857,5303,1926,2277,5517,517,564,299,4928,1926,517,181,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,1995,3957,4994,1996,1954,2094,215,1752,699,2314,1737,3336,3035,560,519,519, + 2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5124,267,184,4800,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,1471,3969,3826,1616,4732,4285,855,5520,2000,2716,5517,2277,602,564, + 4928,1373,4819,4161,2000,5582,4416,2110,2923,3632,5415,602,5587,855,2665,3424,5432,5520,4686,2067,1751,5068,4897,2998,3189,1059,1348,3969,4783,3826,1693,2166,1122,1250,1616,3010,3021,5163,674,1693,4784,3021,1693,1122,1805,2202,1555,884,1986,865,3411,1037,1805,978,234,2202,1805,3249,978,4783,3632,1193,3520,3936, + 4862,3351,4800,2166,674,674,2166,1693,5727,2166,1081,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,1081,5142,3057,5727,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,1690,1471,1616,1250,3632,602,1373,1193, + 2574,182,3769,2483,113,3336,1954,1650,225,699,936,574,1994,936,1994,1995,314,314,1995,1996,113,1954,1752,5075,1650,699,3336,113,166,166,475,475,3702,3702,518,518,518,518,5208,5208,3362,1443,4782,4357,475,166,2114,3702,1665,518,518,1665,5208,166,5208,3703,2114,5208,1665,3703,4969,5520,5432,135, + 4282,2743,4783,4282,135,4783,2742,2828,5415,3632,3797,2743,3797,3632,4783,1645,2742,2313,1645,4282,2742,1645,2313,3797,5127,3632,5415,2828,2742,4783,3632,5127,3336,1954,2094,1737,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,1752,225,4406,215,225,699,2314,4406,5075,1650,225,1752,4846,2842,1252,395, + 4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,1994,1995,3957,4993,2633,574,1993,1997,574,1994,4993,1993,314,3211,2633,1996,3211,936,574,2633,3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416, + 2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1996,2633,1997,4994,3673,2547,5215,4781,2468,3673,4781,1256, + 4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,4837,4579,1035,3484,1986,4837,3484,1037,3249,978,3744,1619,183,1256,2081,439,5208,166,166,5208,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,609,5342,1443,4782,609,4849,1695,5342,4842, + 766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,5458,2857,2068,1128,4799,3784,5303,1904,1619,3744,3575,2529,1904,5303,2857,5458,1926,517,5517,2277,564,4928,299,1926,181,517,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,1995,1996,4994,3957,1954,1752, + 215,2094,699,3336,1737,2314,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5124,4800,184,267,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,1471,1616,3826,3969, + 4732,5520,855,4285,2000,2277,5517,2716,602,1373,4928,564,4819,5582,2000,4161,4416,2923,2110,3632,602,5415,5587,3424,2665,855,5432,4686,5520,2067,4897,5068,1751,2998,1348,1059,3189,3969,3826,4783,1693,1122,2166,1250,3010,1616,3021,1693,674,5163,4784,1122,1693,3021,1805,884,1555,2202,1986,1037,3411,865,1805,2202, + 234,978,1805,978,3249,4783,1193,3632,3520,3351,4862,3936,4800,674,2166,674,1693,2166,5727,1081,2166,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,1081,5727,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026, + 3209,1883,1690,1250,1616,1471,3632,1193,1373,602,2574,2483,3769,182,113,1954,3336,1650,699,225,936,1994,574,936,314,1995,1994,314,1996,1995,113,5075,1752,1954,1650,113,3336,699,166,475,475,166,3702,518,518,3702,518,5208,5208,518,3362,4357,4782,1443,475,2114,166,3702,518,1665,518,5208,1665,166, + 2114,3703,5208,5208,3703,1665,4969,5432,5520,3336,1737,2094,1954,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,1752,215,4406,225,225,4406,2314,699,5075,1752,225,1650,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740, + 4304,1994,4993,3957,1995,2633,1997,1993,574,574,1993,4993,1994,314,1996,2633,3211,3211,2633,574,936,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395, + 4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1996,4994,1997,2633,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867, + 767,5034,4837,3484,1035,4579,1986,1037,3484,4837,3249,1619,3744,978,2313,2828,3797,183,439,2081,1256,5208,5208,166,166,4649,1695,1443,3362,4818,4849,1695,4649,1695,5342,609,1443,1443,609,4782,4849,4842,5342,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,5458,1128,2068, + 2857,4799,1904,5303,3784,1619,2529,3575,3744,1904,5458,2857,5303,1926,2277,5517,517,564,299,4928,1926,517,181,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,1995,3957,4994,1996,1954,2094,215,1752,699,2314,1737,3336,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509, + 4501,2923,2509,3424,2665,3701,4501,5124,267,184,4800,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,1471,3969,3826,1616,4732,4285,855,5520,2000,2716,5517,2277,602,564,4928,1373,4819,4161,2000,5582,4416,2110,2923,3632, + 5415,602,5587,855,2665,3424,5432,5520,4686,2067,1751,5068,4897,2998,3189,1059,1348,3969,4783,3826,1693,2166,1122,1250,1616,3010,3021,5163,674,1693,4784,3021,1693,1122,1805,2202,1555,884,1986,865,3411,1037,1805,978,234,2202,1805,3249,978,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,674,2166,1693,5727,2166, + 1081,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,1081,5142,3057,5727,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,1690,1471,1616,1250,3632,602,1373,1193,2574,182,3769,2483,113,3336,1954,1650,225,699, + 936,574,1994,936,1994,1995,314,314,1995,1996,113,1954,1752,5075,1650,699,3336,113,166,166,475,475,3702,3702,518,518,518,518,5208,5208,3362,1443,4782,4357,475,166,2114,3702,1665,518,518,1665,5208,166,5208,3703,2114,5208,1665,3703,4969,5520,5432,135,4282,2743,4783,4282,135,4783,2742,2828,5415,3632, + 3797,2743,3797,3632,4783,1645,2742,2313,1645,4282,2742,1645,2313,3797,5127,3632,5415,2828,2742,4783,3632,5127,5720,5343,5603,344,5435,1713,2354,4078,2983,5720,344,4624,394,2983,4624,5257,1454,5435,4078,2185,5321,394,5257,3468,5343,1454,2185,5603,1713,5321,3468,2354,4226,264,3801,4550,4197,3456,4548,4203,4549,4226, + 4550,3438,2025,4197,4203,2369,5220,4549,3438,3432,264,2025,2369,3801,4544,5220,3432,346,3456,4544,346,4548,1617,2658,4475,4785,4780,2664,2662,5516,5123,1617,4785,2276,4786,4780,5516,186,853,5123,2276,856,4476,853,856,4777,2658,4786,186,4475,2664,4476,4777,2662,1356,2002,5654,2001,4393,1410,101,1998,5343,5720, + 2757,797,1713,5435,4896,4936,5720,2983,1956,2757,2983,394,507,1956,5435,1454,676,4896,394,5321,2508,507,1454,5343,797,676,5321,1713,4936,2508,4866,3127,263,2372,3127,5218,2026,263,3796,4865,4551,943,5218,4198,4239,2026,4865,3457,3126,4551,4198,5217,1358,4239,3457,4866,2372,3126,5217,3796,943,1358,1358,943, + 4551,3126,2372,263,2026,4239,1356,1998,2215,3246,2002,1356,3246,369,5654,2002,369,1587,2001,5654,1587,5404,4393,2001,5404,2671,1410,4393,2671,1738,101,1410,1738,3477,1998,101,3477,2215,2419,5662,1063,3169,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,4391,4345,3031,4806,4384,921,1110,2989,3630,2476, + 4384,2327,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,4412,2534,1146,3619,2206,4071,1843,5485,4071,4412,3619,1843,1204,5062,2206,1080,5062,4422,4071,2206,3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654, + 3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1080,2206,5485,1468,3673,2547, + 5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,1256,2081,439,3362,4357,1927,1443,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,4109,1443,1927,4109,4849,1695,4109,766,1058,4357,3362,3301,766,3362,4649,4547, + 652,1826,1505,558,1826,652,1505,1826,1926,517,5517,2277,564,4928,299,1926,181,517,1645,4783,3632,2313,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,2534,1080,1468,1146,4170,4391,4806,4789,5567,4153,1455,830,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501, + 2509,2509,4501,3701,2665,3424,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,5515,4073,4473,4108,2313,3632,5415,2828,4732,5520,855,4285,2000,2277,5517,2716,1373,4928,564,551,3164,3164,551,4416,2923,2110,3632,602,5415, + 5587,3424,2665,855,3164,5454,5454,3164,2067,4897,5068,1751,2998,1348,1059,3189,4108,4473,4814,5126,5122,4814,2806,5079,551,551,5079,1250,3010,1616,4783,1193,3632,3520,3351,4862,3936,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,3891,3040,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309, + 1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,5125,556,4073,5515,3632,1193,1373,602,185,2660,180,1634,1230,5662,2419,3763,921,4384,2596,4412,4071,2596,2565,2534,4412,1204,1080,2534,1230,3630,2327,5662,4450,4409,2419,2352,5454,5079,5079,5454,5079,551,3164,5454,602,1373, + 564,5582,2000,4161,2965,4732,702,5520,4969,702,4732,4819,5582,2965,183,1256,439,2419,3169,1063,5662,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,4391,4806,3031,4345,4384,2989,1110,921,3630,2327,4384,2476,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740, + 5253,2895,2951,5253,4304,2895,5253,1740,4304,4412,3619,1146,2534,2206,5485,1843,4071,4071,1843,3619,4412,1204,1080,2206,5062,5062,2206,4071,4422,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152, + 860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1080,1468,5485,2206,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867, + 2468,3673,767,767,3673,2547,1973,4867,767,5034,1256,439,2081,3362,1443,1927,4357,4649,1695,1443,3362,4818,4849,1695,4649,1695,4109,1443,1443,4109,1927,4849,4109,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,1926,2277,5517,517,564,299,4928,1926,517,181,1645,2313,3632, + 4783,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,2534,1146,1468,1080,4170,4789,4806,4391,5567,830,1455,4153,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434, + 1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,5515,4108,4473,4073,2313,2828,5415,3632,4732,4285,855,5520,2000,2716,5517,2277,1373,564,4928,551,551,3164,3164,4416,2110,2923,3632,5415,602,5587,855,2665,3424,3164,3164,5454,5454,2067,1751,5068,4897,2998,3189,1059,1348,4108,4814,4473,5126,2806, + 4814,5122,5079,5079,551,551,1250,1616,3010,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,3891,5142,3057,3040,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026, + 5125,5515,4073,556,3632,602,1373,1193,185,1634,180,2660,1230,2419,5662,3763,4384,921,2596,4071,4412,2596,4412,2534,2565,1204,2534,1080,1230,5662,2327,3630,4450,2352,2419,4409,5454,5454,5079,5079,5079,5454,3164,551,602,564,1373,5582,2965,4161,2000,4732,5520,702,4969,4732,702,4819,2965,5582,183,439,1256,3021, + 3704,2007,5163,4784,4797,3704,3021,4784,3021,3704,4797,5479,4390,184,267,1693,1122,2166,4800,674,2166,674,1693,2166,5727,1081,2166,5479,267,184,4390,1693,2166,1122,674,2166,1693,5727,2166,1081,3021,5163,2007,3704,2927,3746,788,2706,3276,468,2371,4411,2128,4623,2981,4711,2101,468,3276,3009,2101,3009,116,2100, + 5210,2100,116,4229,2981,4623,5210,4229,746,5414,5001,2371,1109,758,4411,1959,4306,4049,2128,4711,758,1109,2844,1357,4286,4871,4844,4286,3263,331,4214,1339,1339,1339,1339,1056,1237,4214,2774,3855,4844,4871,4630,3884,1380,5266,3795,1357,2844,3884,746,5001,1380,90,1959,4049,198,3808,90,198,1959,90,3746,2927, + 90,746,788,3746,746,3884,2706,788,3884,1959,2927,2706,3293,1964,1237,1056,1240,3765,331,3263,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,1339,3808,5414,746,90,4630,4306,1959,3884,2419,5662,1063,3169,3141,1154,5352,1154,4453,5352,4453,990, + 5352,990,3141,5352,4391,4345,3031,4806,4384,921,1110,2989,3630,2476,4384,2327,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,4412,2534,1146,3619,2206,4071,1843,5485,4071,4412,3619,1843,1204,5062,2206,1080,5062,4422,4071,2206, + 3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990, + 395,1252,4453,1154,1252,476,990,4453,1080,2206,5485,1468,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,1256,2081,439,3362,4357,1927,1443,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,4109,1443, + 1927,4109,4849,1695,4109,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,1926,517,5517,2277,564,4928,299,1926,181,517,1645,4783,3632,2313,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,2534,1080,1468,1146,4170,4391,4806,4789,5567,4153,1455,830,3035, + 519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,5515,4073,4473,4108,2313,3632,5415,2828,4732,5520,855,4285,2000,2277,5517, + 2716,1373,4928,564,551,3164,3164,551,4416,2923,2110,3632,602,5415,5587,3424,2665,855,3164,5454,5454,3164,2067,4897,5068,1751,2998,1348,1059,3189,4108,4473,4814,5126,5122,4814,2806,5079,551,551,5079,1250,3010,1616,4783,1193,3632,3520,3351,4862,3936,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838, + 3891,3040,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,5125,556,4073,5515,3632,1193,1373,602,185,2660,180,1634,1230,5662,2419,3763,921,4384,2596,4412,4071,2596,2565,2534,4412,1204,1080,2534,1230,3630,2327,5662, + 4450,4409,2419,2352,5454,5079,5079,5454,5079,551,3164,5454,602,1373,564,5582,2000,4161,2965,4732,702,5520,4969,702,4732,4819,5582,2965,183,1256,439,2419,3169,1063,5662,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,4391,4806,3031,4345,4384,2989,1110,921,3630,2327,4384,2476,4846,395,1252,2842,4292, + 889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,4412,3619,1146,2534,2206,5485,1843,4071,4071,1843,3619,4412,1204,1080,2206,5062,5062,2206,4071,4422,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160, + 1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1080,1468,5485,2206,3673,4781,5215,2547,2468,1256,4781,3673,4848, + 183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,1256,439,2081,3362,1443,1927,4357,4649,1695,1443,3362,4818,4849,1695,4649,1695,4109,1443,1443,4109,1927,4849,4109,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826, + 1505,1926,2277,5517,517,564,299,4928,1926,517,181,1645,2313,3632,4783,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,2534,1146,1468,1080,4170,4789,4806,4391,5567,830,1455,4153,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5254, + 4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,5515,4108,4473,4073,2313,2828,5415,3632,4732,4285,855,5520,2000,2716,5517,2277,1373,564,4928,551,551,3164,3164,4416,2110,2923,3632,5415,602,5587,855,2665,3424,3164,3164,5454, + 5454,2067,1751,5068,4897,2998,3189,1059,1348,4108,4814,4473,5126,2806,4814,5122,5079,5079,551,551,1250,1616,3010,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,3891,5142,3057,3040,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862, + 1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,5125,5515,4073,556,3632,602,1373,1193,185,1634,180,2660,1230,2419,5662,3763,4384,921,2596,4071,4412,2596,4412,2534,2565,1204,2534,1080,1230,5662,2327,3630,4450,2352,2419,4409,5454,5454,5079,5079,5079,5454,3164,551,602,564,1373,5582,2965,4161, + 2000,4732,5520,702,4969,4732,702,4819,2965,5582,183,439,1256,3021,3704,2007,5163,4784,4797,3704,3021,4784,3021,3704,4797,5479,4390,184,267,1693,1122,2166,4800,674,2166,674,1693,2166,5727,1081,2166,5479,267,184,4390,1693,2166,1122,674,2166,1693,5727,2166,1081,3021,5163,2007,3704,2419,5662,1063,3169,3141,1154, + 5352,1154,4453,5352,4453,990,5352,990,3141,5352,4391,4345,3031,4806,4384,921,1110,2989,3630,2476,4384,2327,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,4412,2534,1146,3619,2206,4071,1843,5485,4071,4412,3619,1843,1204,5062, + 2206,1080,5062,4422,4071,2206,3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395, + 1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1080,2206,5485,1468,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,1256,2081,439,3362,4357,1927,1443,4649,3362,1443,1695,4818,4649, + 1695,4849,1695,1443,4109,1443,1927,4109,4849,1695,4109,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,1926,517,5517,2277,564,4928,299,1926,181,517,1645,4783,3632,2313,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,2534,1080,1468,1146,4170,4391,4806, + 4789,5567,4153,1455,830,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,5515,4073,4473,4108,2313,3632,5415,2828,4732, + 5520,855,4285,2000,2277,5517,2716,1373,4928,564,551,3164,3164,551,4416,2923,2110,3632,602,5415,5587,3424,2665,855,3164,5454,5454,3164,2067,4897,5068,1751,2998,1348,1059,3189,4108,4473,4814,5126,5122,4814,2806,5079,551,551,5079,1250,3010,1616,4783,1193,3632,3520,3351,4862,3936,5581,5518,1999,2715,895,896,895, + 5581,1970,4360,4245,2129,2838,3891,3040,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,5125,556,4073,5515,3632,1193,1373,602,185,2660,180,1634,1230,5662,2419,3763,921,4384,2596,4412,4071,2596,2565,2534,4412,1204, + 1080,2534,1230,3630,2327,5662,4450,4409,2419,2352,5454,5079,5079,5454,5079,551,3164,5454,602,1373,564,5582,2000,4161,2965,4732,702,5520,4969,702,4732,4819,5582,2965,183,1256,439,2419,3169,1063,5662,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,4391,4806,3031,4345,4384,2989,1110,921,3630,2327,4384, + 2476,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,4412,3619,1146,2534,2206,5485,1843,4071,4071,1843,3619,4412,1204,1080,2206,5062,5062,2206,4071,4422,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413, + 4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1080,1468,5485,2206,3673,4781,5215, + 2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,1256,439,2081,3362,1443,1927,4357,4649,1695,1443,3362,4818,4849,1695,4649,1695,4109,1443,1443,4109,1927,4849,4109,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826, + 652,1505,1826,558,652,1826,1505,1926,2277,5517,517,564,299,4928,1926,517,181,1645,2313,3632,4783,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,2534,1146,1468,1080,4170,4789,4806,4391,5567,830,1455,4153,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923, + 2509,3424,2665,3701,4501,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,5515,4108,4473,4073,2313,2828,5415,3632,4732,4285,855,5520,2000,2716,5517,2277,1373,564,4928,551,551,3164,3164,4416,2110,2923,3632,5415,602,5587, + 855,2665,3424,3164,3164,5454,5454,2067,1751,5068,4897,2998,3189,1059,1348,4108,4814,4473,5126,2806,4814,5122,5079,5079,551,551,1250,1616,3010,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,3891,5142,3057,3040,3150,480,5548,2241,4094,5100,126,1274, + 1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,5125,5515,4073,556,3632,602,1373,1193,185,1634,180,2660,1230,2419,5662,3763,4384,921,2596,4071,4412,2596,4412,2534,2565,1204,2534,1080,1230,5662,2327,3630,4450,2352,2419,4409,5454,5454,5079,5079,5079,5454,3164,551, + 602,564,1373,5582,2965,4161,2000,4732,5520,702,4969,4732,702,4819,2965,5582,183,439,1256,3021,3704,2007,5163,4784,4797,3704,3021,4784,3021,3704,4797,5479,4390,184,267,1693,1122,2166,4800,674,2166,674,1693,2166,5727,1081,2166,5479,267,184,4390,1693,2166,1122,674,2166,1693,5727,2166,1081,3021,5163,2007,3704, + 4241,280,1832,3023,2212,2816,1496,5498,5045,4241,3023,2549,10,5045,2549,688,686,2212,5498,1794,4405,10,688,5206,280,686,1794,1832,2816,4405,5206,1496,1794,5498,5600,2210,5206,688,74,5204,1832,1794,2210,5656,688,2549,951,74,5713,1842,2425,176,1292,2887,2929,3294,2912,2498,2018,1292,858,5598,2887,858, + 1273,5469,5598,2912,5032,2379,2498,1273,2817,4316,5469,5032,176,2929,2379,2817,3294,2018,4316,5713,2262,1842,5713,2331,2262,2549,3023,2306,951,5498,1496,4933,5600,3023,1832,5656,2306,1496,5206,5204,4933,4405,2816,3294,2817,686,280,176,5032,10,4405,2817,1273,2018,2498,1160,2929,2887,1160,4316,2018,1160,2379,2929, + 1160,5469,4316,1160,2498,2379,1160,5598,5469,1160,2887,5598,1160,2212,686,5032,2912,5045,10,1273,858,4241,5045,858,1292,2816,2212,2912,3294,280,4241,1292,176,5439,5440,4033,5057,5440,5058,2579,4033,5058,4204,5438,2579,4204,5439,5057,5438,795,4199,1161,4032,4870,5211,946,3125,5713,2425,5252,5713,5252,1864,5713, + 1864,4000,5713,4000,5006,5713,5006,2331,4200,795,4032,4201,4199,795,5057,4033,795,4200,5438,5057,4201,4032,4195,4196,4199,4200,4201,1161,4199,4033,2579,4200,4199,2579,5438,3629,4196,4202,5216,1161,4201,4196,3629,4032,1161,3629,4195,1361,5216,3794,3455,4195,3629,5216,1361,4196,4195,1361,4202,3794,1362,4870,3455,4202, + 1361,3455,1701,5216,4202,1701,3794,2368,2366,1363,611,2366,947,4872,1363,947,5212,5219,4872,5212,2368,611,5219,1359,265,4543,944,1362,2367,5211,4870,3429,1359,944,1700,265,1359,611,1363,1359,3429,5219,611,1700,944,612,1697,265,3429,1700,4543,265,1363,4872,3429,265,4872,5219,2775,1697,1698,942,4543,1700, + 1697,2775,944,4543,2775,612,5213,942,5211,2367,612,2775,942,5213,1697,612,5213,1698,3455,4870,3125,1701,1698,5213,2367,946,942,1698,946,5211,3125,946,2367,1362,1701,3125,1362,3794,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963, + 2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,746,3884,788,2844,1357,4286,4871,4844,4286,3263, + 331,4214,1056,1237,4214,90,746,788,3746,90,3746,2927,3333,4778,4477,3333,3043,4110,3333,4110,4778,3333,4477,3043,3043,4477,4779,4778,4110,4779,4110,3043,4779,4477,4778,4779,3884,1959,2927,2706,4058,4844,4871,3430,1357,2844,2165,1237,1056,2682,331,3263,3336,1954,2094,1737,3141,1154,5352,1154,4453,5352,4453,990, + 5352,990,3141,5352,1752,225,4406,215,225,699,2314,4406,5075,1650,225,1752,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654,5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,1994,1995,3957,4993,2633,574,1993,1997,574,1994,4993,1993,314,3211,2633,1996,3211,936,574,2633, + 3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378,860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990, + 395,1252,4453,1154,1252,476,990,4453,1996,2633,1997,4994,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820,4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,4837,4579,1035,3484,1986,4837,3484,1037,3249,978,3744,1619,183,1256,2081,439,5208,166,166, + 5208,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,609,5342,1443,4782,609,4849,1695,5342,4842,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,5458,2857,2068,1128,4799,3784,5303,1904,1619,3744,3575,2529,1904,5303,2857,5458,1926,517,5517,2277,564,4928,299,1926,181,517,1116, + 2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,1995,1996,4994,3957,1954,1752,215,2094,699,3336,1737,2314,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5124,4800,184,267,5254,5733,4128,4317,945,4868,4698,4868,1696,4698,260,945,4698, + 4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,1471,1616,3826,3969,4732,5520,855,4285,2000,2277,5517,2716,602,1373,4928,564,4819,5582,2000,4161,4416,2923,2110,3632,602,5415,5587,3424,2665,855,5432,4686,5520,2067,4897,5068,1751,2998,1348,1059,3189,3969,3826,4783,1693,1122,2166,1250, + 3010,1616,3021,1693,674,5163,4784,1122,1693,3021,1805,884,1555,2202,1986,1037,3411,865,1805,2202,234,978,1805,978,3249,4783,1193,3632,3520,3351,4862,3936,4800,674,2166,674,1693,2166,5727,1081,2166,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,1081,5727,3057,5142,3150,2241,5548,480,4094,1274, + 126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812,2184,4026,3209,1883,1690,1250,1616,1471,3632,1193,1373,602,2574,2483,3769,182,113,1954,3336,1650,699,225,936,1994,574,936,314,1995,1994,314,1996,1995,113,5075,1752,1954,1650,113,3336,699,166,475,475,166,3702,518, + 518,3702,518,5208,5208,518,3362,4357,4782,1443,475,2114,166,3702,518,1665,518,5208,1665,166,2114,3703,5208,5208,3703,1665,4969,5432,5520,3336,1737,2094,1954,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,1752,215,4406,225,225,4406,2314,699,5075,1752,225,1650,4846,395,1252,2842,4292,889,105, + 3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,1994,4993,3957,1995,2633,1997,1993,574,574,1993,4993,1994,314,1996,2633,3211,3211,2633,574,936,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847, + 2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628,889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1996,4994,1997,2633,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256, + 2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,4837,3484,1035,4579,1986,1037,3484,4837,3249,1619,3744,978,2313,2828,3797,183,439,2081,1256,5208,5208,166,166,4649,1695,1443,3362,4818,4849,1695,4649,1695,5342,609,1443,1443,609,4782,4849,4842,5342,1695, + 766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,5458,1128,2068,2857,4799,1904,5303,3784,1619,2529,3575,3744,1904,5458,2857,5303,1926,2277,5517,517,564,299,4928,1926,517,181,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116,2110,4416,1995,3957,4994,1996,1954,2094, + 215,1752,699,2314,1737,3336,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5124,267,184,4800,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766,1471,3969,3826,1616, + 4732,4285,855,5520,2000,2716,5517,2277,602,564,4928,1373,4819,4161,2000,5582,4416,2110,2923,3632,5415,602,5587,855,2665,3424,5432,5520,4686,2067,1751,5068,4897,2998,3189,1059,1348,3969,4783,3826,1693,2166,1122,1250,1616,3010,3021,5163,674,1693,4784,3021,1693,1122,1805,2202,1555,884,1986,865,3411,1037,1805,978, + 234,2202,1805,3249,978,4783,3632,1193,3520,3936,4862,3351,4800,2166,674,674,2166,1693,5727,2166,1081,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,1081,5142,3057,5727,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883, + 3209,4026,1690,1471,1616,1250,3632,602,1373,1193,2574,182,3769,2483,113,3336,1954,1650,225,699,936,574,1994,936,1994,1995,314,314,1995,1996,113,1954,1752,5075,1650,699,3336,113,166,166,475,475,3702,3702,518,518,518,518,5208,5208,3362,1443,4782,4357,475,166,2114,3702,1665,518,518,1665,5208,166, + 5208,3703,2114,5208,1665,3703,4969,5520,5432,135,4282,2743,4783,4282,135,4783,2742,2828,5415,3632,3797,2743,3797,3632,4783,1645,2742,2313,1645,4282,2742,1645,2313,3797,5127,3632,5415,2828,2742,4783,3632,5127,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696, + 5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273, + 4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129, + 2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422, + 4696,133,4717,2030,4241,133,4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696, + 5670,4372,5670,137,1136,1556,4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133, + 4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,273,4059,597,5673,4696,133,4717,2030,4696,133,4717,2030,4696,133,4717,2030,4696,5045,137,5670,133,4696,5670,4372,4372,5670,1556,5422,4696,133,4717,2030,4241,133, + 4372,5129,2030,4717,4059,273,273,4059,5673,4372,5422,3100,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,5670,137,1136,1556,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,5670,137,1136,1556, + 4372,5670,1556,5422,4696,5045,137,5670,4696,133,4717,2030,4696,5045,137,5670,4696,133,4717,2030,4696,133,4717,2030,2030,4717,4059,273,4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,4696,133,4717,2030,2030,4717,4059,273, + 4241,133,4372,5129,133,4696,5670,4372,4696,5045,137,5670,133,4696,5670,4372,4241,133,4372,5129,2030,4717,4059,273,2419,5662,1063,3169,3141,1154,5352,1154,4453,5352,4453,990,5352,990,3141,5352,4391,4345,3031,4806,4384,921,1110,2989,3630,2476,4384,2327,4846,2842,1252,395,4292,3836,105,889,716,4292,889,4654, + 5159,716,4654,662,5253,1740,2951,5253,2951,2895,5253,2895,4304,5253,4304,1740,4412,2534,1146,3619,2206,4071,1843,5485,4071,4412,3619,1843,1204,5062,2206,1080,5062,4422,4071,2206,3836,5159,662,105,416,661,3413,1582,4654,889,1582,3413,662,4654,3413,661,105,662,661,416,2160,4847,1418,2160,860,4847,2160,4378, + 860,2160,1418,4378,4847,860,3152,4980,4097,275,4149,476,275,4846,395,4149,889,105,628,1582,889,628,105,416,628,416,1582,628,4149,395,1154,3141,476,4149,3141,990,395,1252,4453,1154,1252,476,990,4453,1080,2206,5485,1468,3673,2547,5215,4781,2468,3673,4781,1256,4848,2468,1256,183,4820,5034,4867,4820, + 4867,2468,4848,767,5034,1973,4867,767,3673,2468,767,1973,2547,3673,4867,5034,767,1256,2081,439,3362,4357,1927,1443,4649,3362,1443,1695,4818,4649,1695,4849,1695,1443,4109,1443,1927,4109,4849,1695,4109,766,1058,4357,3362,3301,766,3362,4649,4547,652,1826,1505,558,1826,652,1505,1826,1926,517,5517,2277,564,4928, + 299,1926,181,517,1645,4783,3632,2313,1116,2110,4538,3402,4928,3402,1457,299,3402,4538,1457,3010,4416,2110,1116,2534,1080,1468,1146,4170,4391,4806,4789,5567,4153,1455,830,3035,519,560,519,561,2324,561,2715,894,5518,3035,1969,2110,2923,4501,2509,2509,4501,3701,2665,3424,5254,5733,4128,4317,945,4868,4698,4868, + 1696,4698,260,945,4698,4869,4547,1826,3434,4472,5519,3434,1826,766,3301,3124,3435,1058,766,1249,3036,5515,4073,4473,4108,2313,3632,5415,2828,4732,5520,855,4285,2000,2277,5517,2716,1373,4928,564,551,3164,3164,551,4416,2923,2110,3632,602,5415,5587,3424,2665,855,3164,5454,5454,3164,2067,4897,5068,1751,2998,1348, + 1059,3189,4108,4473,4814,5126,5122,4814,2806,5079,551,551,5079,1250,3010,1616,4783,1193,3632,3520,3351,4862,3936,5581,5518,1999,2715,895,896,895,5581,1970,4360,4245,2129,2838,3891,3040,3057,5142,3150,2241,5548,480,4094,1274,126,5100,1810,3309,1274,4094,3351,4077,1036,4862,2480,4644,3483,1034,4095,2480,1034,3812, + 2184,4026,3209,1883,5125,556,4073,5515,3632,1193,1373,602,185,2660,180,1634,1230,5662,2419,3763,921,4384,2596,4412,4071,2596,2565,2534,4412,1204,1080,2534,1230,3630,2327,5662,4450,4409,2419,2352,5454,5079,5079,5454,5079,551,3164,5454,602,1373,564,5582,2000,4161,2965,4732,702,5520,4969,702,4732,4819,5582,2965, + 183,1256,439,2419,3169,1063,5662,3141,5352,1154,1154,5352,4453,4453,5352,990,990,5352,3141,4391,4806,3031,4345,4384,2989,1110,921,3630,2327,4384,2476,4846,395,1252,2842,4292,889,105,3836,716,4654,889,4292,5159,662,4654,716,5253,2951,1740,5253,2895,2951,5253,4304,2895,5253,1740,4304,4412,3619,1146,2534,2206, + 5485,1843,4071,4071,1843,3619,4412,1204,1080,2206,5062,5062,2206,4071,4422,3836,105,662,5159,416,1582,3413,661,4654,3413,1582,889,662,661,3413,4654,105,416,661,662,2160,1418,4847,2160,4847,860,2160,860,4378,2160,4378,1418,4847,4980,3152,860,4097,476,4149,275,275,4149,395,4846,889,628,105,1582,628, + 889,105,628,416,416,628,1582,4149,3141,1154,395,476,990,3141,4149,395,1154,4453,1252,1252,4453,990,476,1080,1468,5485,2206,3673,4781,5215,2547,2468,1256,4781,3673,4848,183,1256,2468,4820,4867,5034,4820,4848,2468,4867,767,1973,5034,4867,2468,3673,767,767,3673,2547,1973,4867,767,5034,1256,439,2081,3362, + 1443,1927,4357,4649,1695,1443,3362,4818,4849,1695,4649,1695,4109,1443,1443,4109,1927,4849,4109,1695,766,3362,4357,1058,3301,4649,3362,766,4547,1826,652,1505,1826,558,652,1826,1505,1926,2277,5517,517,564,299,4928,1926,517,181,1645,2313,3632,4783,1116,3402,4538,2110,4928,299,1457,3402,3402,1457,4538,3010,1116, + 2110,4416,2534,1146,1468,1080,4170,4789,4806,4391,5567,830,1455,4153,3035,560,519,519,2324,561,561,894,2715,5518,1969,3035,2110,2509,4501,2923,2509,3424,2665,3701,4501,5254,4317,4128,5733,945,4698,4868,4868,4698,1696,260,4698,945,4869,3434,1826,4547,4472,1826,3434,5519,766,3435,3124,3301,1058,3036,1249,766, + 5515,4108,4473,4073,2313,2828,5415,3632,4732,4285,855,5520,2000,2716,5517,2277,1373,564,4928,551,551,3164,3164,4416,2110,2923,3632,5415,602,5587,855,2665,3424,3164,3164,5454,5454,2067,1751,5068,4897,2998,3189,1059,1348,4108,4814,4473,5126,2806,4814,5122,5079,5079,551,551,1250,1616,3010,4783,3632,1193,3520,3936, + 4862,3351,4800,2166,674,5581,1999,5518,2715,896,895,895,1970,5581,4360,2838,2129,4245,3891,5142,3057,3040,3150,480,5548,2241,4094,5100,126,1274,1810,4094,1274,3309,3351,4862,1036,4077,2480,1034,3483,4644,4095,3812,1034,2480,2184,1883,3209,4026,5125,5515,4073,556,3632,602,1373,1193,185,1634,180,2660,1230,2419, + 5662,3763,4384,921,2596,4071,4412,2596,4412,2534,2565,1204,2534,1080,1230,5662,2327,3630,4450,2352,2419,4409,5454,5454,5079,5079,5079,5454,3164,551,602,564,1373,5582,2965,4161,2000,4732,5520,702,4969,4732,702,4819,2965,5582,183,439,1256,3021,3704,2007,5163,4784,4797,3704,3021,4784,3021,3704,4797,5479,4390,184, + 267,1693,1122,2166,4800,674,2166,674,1693,2166,5727,1081,2166,5479,267,184,4390,1693,2166,1122,674,2166,1693,5727,2166,1081,3021,5163,2007,3704,4280,4679,1847,5388,794,1847,4679,5320,4629,1007,1847,794,1609,1192,1192,1609,4280,4863,4863,4280,5182,2400,2400,5182,5320,4679,4679,5320,4863,5320,5320,4863,4280,4863, + 4863,4280,5678,4581,4581,5678,5678,4581,4581,5678,1192,5678,5678,1192,2400,4978,4978,2400,4679,4280,4280,4679,4978,2584,2584,4978,4581,1609,1609,4581,4007,4353,887,1872,3926,4353,1965,2827,4008,1965,4353,4007,3934,887,4353,3926,2827,4008,4007,3926,3926,4007,1872,3934,4441,1172,2183,2749,2145,1172,4303,4298,2449,4303, + 1172,4441,4807,2183,1172,2145,4298,2449,4441,2145,2145,4441,2749,4807,4173,3236,4437,4537,2133,3848,4173,5010,5010,4173,4537,2332,488,3647,3594,4840,3747,1002,138,4840,4840,138,3555,488,5166,5017,266,3683,2527,5017,1353,4939,5166,2527,4939,2032,2032,1353,5017,5166,3092,347,786,962,2040,1439,347,3092,1260,2093, + 1439,2040,3901,4526,445,4592,3166,147,4526,3901,5421,3162,147,3166,3901,4499,1551,3166,4592,1238,4499,3901,118,4719,1238,4592,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940, + 984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,3166,1551,4788,5421,4592,445,4582,118,962,786,4541,2341,786,1961,5593,4541,2040,88,4279,1260,2812,2627,1834,4039,3669,5055,1372,5594,4024,3195, + 928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,1406,4346,4914,1435,1435,5701,4718,1406,4346,5602,3823,4914,87,4440,52,2711,2711,3550,2784,87,4440,4720,3527,52,497,4284,5236,5396,2267,5323,2093,1260,5323,3828,4279,2093,3890,1868,3292,5043,4340,3292,1868,1069,5043,4340, + 1069,3890,878,3977,5493,2652,3582,5177,440,704,4328,4328,3131,3131,704,1544,576,3582,3140,3140,2116,2116,5177,2848,2455,440,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,1260,4279,3828,2267,3683,266,1868,3890,3890,1069,295,3683,1069,1868, + 266,295,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,3628,4762,1207,4684,542,19,3767,1739,1439,88,838,347,2093,4279,88,1439,1742,3861,4751,5531,1739,3767,388,5486,4442,381,4762,3628,1863,1162, + 2942,5476,2505,4039,4193,3317,998,2942,1162,1313,1313,3544,3804,998,2798,3331,4368,4965,1480,5613,1162,1863,4039,1834,4156,4193,1313,1162,5613,1407,1407,2569,3544,1313,608,2798,4965,3825,4684,1207,2979,2647,109,1908,19,542,910,4486,2505,5538,5717,1742,5531,399,5476,2942,123,2126,5538,2505,3317,3512,4166,123, + 2942,998,998,3804,1180,4166,3331,801,4973,4368,2341,5593,1961,962,4966,497,5396,1806,347,838,1961,786,962,1961,838,3092,3092,838,88,2040,342,5354,498,2118,1490,2812,5354,342,2118,498,4322,4248,498,5354,4039,4248,4322,4486,3321,4486,4322,2505,5354,2812,4039,498,4039,2505,4377,1630,2388,5158,4840,5423, + 453,4215,453,4377,5158,2109,2115,2388,1630,4215,4215,453,2109,2115,4215,453,2109,2115,453,4377,5158,2109,2115,2388,1630,4215,4840,5423,453,4215,4377,1630,2388,5158,4629,1007,1847,794,794,1847,4679,5320,4007,4353,887,1872,3926,4353,1965,2827,4008,1965,4353,4007,3934,887,4353,3926,2827,4008,4007,3926,3926,4007, + 1872,3934,4441,1172,2183,2749,2145,1172,4303,4298,2449,4303,1172,4441,4807,2183,1172,2145,4298,2449,4441,2145,2145,4441,2749,4807,5166,5017,266,3683,2527,5017,1353,4939,5166,2527,4939,2032,2032,1353,5017,5166,2341,5593,4279,1260,2093,4279,5593,4541,1260,2093,4541,2341,4021,901,4141,992,3601,3187,4990,5687,992,3381, + 4555,4021,5687,964,1705,3601,901,3374,3452,4141,3187,2906,4912,4990,3688,5693,2974,3991,3991,2886,1009,3688,5693,2268,4721,2974,5316,893,630,495,495,3696,3102,5316,893,2150,2833,630,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274, + 1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,221,2361,3269,3473,1103,348,1463,4326,3357,348,1609,4581,1192,1609,348,1103,941,1463, + 348,3357,3669,5055,1372,5594,4024,3195,928,3740,5594,5118,1243,3669,3740,672,2357,4024,5055,1349,2342,1372,3195,3203,1184,928,1406,4346,4914,1435,1435,5701,4718,1406,4346,5602,3823,4914,87,4440,52,2711,2711,3550,2784,87,4440,4720,3527,52,2249,3145,3116,3584,2267,5323,2093,1260,5323,3828,4279,2093,3890,1868, + 3292,5043,4340,3292,1868,1069,5043,4340,1069,3890,878,3977,5493,2652,3582,5177,440,704,4328,4328,3131,3131,704,1544,576,3582,3140,3140,2116,2116,5177,2848,2455,440,1921,728,2835,4266,4266,5172,2866,1921,728,3530,365,2835,5575,845,3422,486,486,653,1488,5575,845,1010,4774,3422,1260,4279,3828,2267,3683,266, + 1868,3890,3890,1069,295,3683,1069,1868,266,295,2341,4541,3928,5140,4541,5593,4183,3928,5140,4183,5593,2341,3683,295,2527,5166,295,266,5017,2527,1353,2032,4730,4650,2032,4939,5053,4730,4939,1353,4650,5053,3628,4762,1207,4684,542,19,3767,1739,1329,221,3473,4258,2320,2249,3584,340,1739,3767,388,5486,4442,381, + 4762,3628,177,2603,888,678,4258,3473,4415,4367,719,888,2603,464,464,1030,2888,719,2023,1462,4947,5725,607,3894,2603,177,3473,3269,2198,4415,464,2603,3894,2416,2416,3118,1030,464,2417,2023,5725,1857,4684,1207,2979,2647,109,1908,19,542,5357,1329,4258,2557,995,2320,340,808,678,888,935,1811,2557,4258, + 4367,2637,720,935,888,719,719,2888,5455,720,1462,3790,2730,4947,1609,1192,1192,1609,5320,4863,4061,794,4280,4863,4863,4280,5182,2400,2400,5182,5320,4679,4679,5320,4863,5320,5320,4863,4280,4863,4863,4280,5678,4581,4581,5678,5678,4581,4581,5678,1192,5678,5678,1192,2400,4978,4978,2400,4679,4280,4280,4679,4978,2584, + 2584,4978,4581,1609,1609,4581,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901,3329,4760, + 711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228, + 3960,5599,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,2899,2116, + 3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,1497,2088,3235,1259,525,1497,1259,253,253,3235,2088,525,4633,3235,253,151,151,253,1259,3737,3737,1259,3235,4633,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,2071,977,5449,976,3140,4633, + 151,5247,5247,151,3737,3131,3131,3737,4633,3140,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4581,5678,3357,3800,1103,4326,5225,941,1463,348,3357,3357,348,1609,4581,4581,5678,3357,941,1463,348,3357,3131,3140,2116,4328,4328,4328,3131,3131, + 3140,3140,2116,2116,3357,348,1609,4581,976,5449,4172,3706,3706,4172,977,2071,1786,784,1497,525,784,1472,2088,1497,525,2088,1472,1786,4581,5678,3357,794,4061,112,4629,3800,1103,4326,5225,5678,1192,1103,3800,4863,4280,4061,5388,1847,1007,5640,4280,4679,1847,5388,4581,5678,3357,794,4061,112,4629,4723,2544,1239, + 2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019, + 5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116, + 4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843, + 4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087, + 4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640, + 4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087, + 4399,345,1087,3186,882,5320,4863,4061,794,4863,4280,4061,5388,1847,1007,5640,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858, + 763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1057,3275,2914,1790,2046,1633,2209,3342,2746,1485,2738,514,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522, + 3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,5726,1412,2487,2412,4173,3236,4437,4537, + 5010,3236,2769,2133,3848,2769,3236,4173,2332,4437,3236,5010,2133,3848,4173,5010,5010,4173,4537,2332,138,3594,3647,3555,4840,3594,2568,3747,1002,2568,3594,138,488,3647,3594,4840,3747,1002,138,4840,4840,138,3555,488,1762,3401,3181,5328,5710,3181,3401,4438,5328,5710,4438,1762,3676,2724,2566,171,171,3337,3907,3676, + 2724,4139,969,2566,3441,1464,298,3938,3938,4815,818,3441,1464,2763,4619,298,1103,348,1463,4326,1192,1609,348,1103,5678,1192,1103,3800,3800,1103,4326,5225,2496,3620,3162,5421,5041,1948,635,5350,5350,956,3322,5041,1948,1920,318,635,4467,1963,178,1216,1216,1156,5020,4467,1963,404,26,178,118,4582,5504,3968, + 3968,2957,4719,118,2767,3248,80,606,2280,2767,606,743,743,80,3248,2280,79,4835,3248,2767,4582,4719,2957,5504,5402,4724,1570,4023,4023,1890,4521,5402,4724,5403,2407,1570,2528,4539,4900,3728,3728,599,5294,2528,4539,3671,994,4900,3620,2076,4788,3162,5421,4788,2076,2496,5421,3162,4582,118,3162,4788,4719,4582, + 118,4719,4788,5421,2273,79,2767,2280,2280,3248,4835,2273,2273,4835,3401,1762,1762,4438,79,2273,4438,3401,4835,79,5328,3181,4967,4355,5710,5328,4355,4350,3181,5710,4350,4967,3628,4762,1207,4684,542,19,3767,1739,5222,1462,2023,3545,49,409,2432,4991,3545,2023,2417,336,1739,3767,388,5486,4442,381,4762,3628, + 177,2603,888,678,4258,3473,4415,4367,719,888,2603,464,464,1030,2888,719,2023,1462,4947,5725,4991,2432,3375,4646,607,3894,2603,177,3473,3269,2198,4415,464,2603,3894,2416,2416,3118,1030,464,2417,2023,5725,1857,4684,1207,2979,2647,109,1908,19,542,2424,3790,1462,5222,4389,627,409,49,678,888,935,1811, + 2557,4258,4367,2637,720,935,888,719,719,2888,5455,720,1462,3790,2730,4947,1609,1192,1192,1609,4280,4863,4863,4280,5182,2400,2400,5182,5320,4679,4679,5320,4863,5320,5320,4863,4280,4863,4863,4280,5678,4581,4581,5678,5678,4581,4581,5678,1192,5678,5678,1192,2400,4978,4978,2400,4679,4280,4280,4679,4978,2584,2584,4978, + 4581,1609,1609,4581,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901,3329,4760,711,5425, + 3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599, + 882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399, + 345,1087,3186,882,345,882,360,4399,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,1786,784,1497,525,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3706,4172,977,2071, + 2071,977,5449,976,976,5449,4172,3706,2899,2116,3140,5247,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,3131,3140,2116,4328,5247,3131,4328,2899,4633,3235,253,151,784,1472,2088,1497,525,2088,1472,1786,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706,3131,3140,2116,4328,3131,3140,2116,4328, + 4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116, + 3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,2239,664,361,2980,1726,2021,1510,539,361,664,539,1510,2239,2980,2021,1726,664,2239,1726,539,2980,361,1510,2021,3400,128,23,3061,1689,4952,1411,1155,23,128,1155,1411,3400,3061,4952,1689,128,3400,1689,1155,3061,23,1411,4952,3635,1951,3503,591, + 4861,485,2748,3913,3503,1951,3913,2748,3635,591,485,4861,1951,3635,4861,3913,591,3503,2748,485,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076, + 940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399, + 360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259, + 3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882, + 360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640, + 345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640, + 360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3737,1259,3235,4633,151,253,1259,3737,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,763,658,443,777, + 4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1057,3275,2914,1790,2046,1633,2209,3342,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876,3056,5319,1415,1613, + 238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,759,4013,3996,2491,5726,1412,2487,2412,33,2321,3652,3029,4173,3236,4437,4537, + 5010,3236,2769,2133,3848,2769,3236,4173,2332,4437,3236,5010,2133,3848,4173,5010,5010,4173,4537,2332,138,3594,3647,3555,4840,3594,2568,3747,1002,2568,3594,138,488,3647,3594,4840,3747,1002,138,4840,4840,138,3555,488,1762,3401,3181,5328,5710,3181,3401,4438,5328,5710,4438,1762,3676,2724,2566,171,171,3337,3907,3676, + 2724,4139,969,2566,3441,1464,298,3938,3938,4815,818,3441,1464,2763,4619,298,1103,348,1463,4326,1192,1609,348,1103,5678,1192,1103,3800,2496,3620,3162,5421,5041,1948,635,5350,5350,956,3322,5041,1948,1920,318,635,4467,1963,178,1216,1216,1156,5020,4467,1963,404,26,178,118,4582,5504,3968,3968,2957,4719,118, + 2767,3248,80,606,2280,2767,606,743,743,80,3248,2280,79,4835,3248,2767,4582,4719,2957,5504,5402,4724,1570,4023,4023,1890,4521,5402,4724,5403,2407,1570,2528,4539,4900,3728,3728,599,5294,2528,4539,3671,994,4900,3620,2076,4788,3162,5421,4788,2076,2496,5421,3162,4582,118,3162,4788,4719,4582,118,4719,4788,5421, + 2273,79,2767,2280,2280,3248,4835,2273,2273,4835,3401,1762,1762,4438,79,2273,4438,3401,4835,79,5328,3181,4967,4355,5710,5328,4355,4350,3181,5710,4350,4967,3628,4762,1207,4684,542,19,3767,1739,5222,1462,2023,3545,49,409,2432,4991,3545,2023,2417,336,1739,3767,388,5486,4442,381,4762,3628,177,2603,888,678, + 4258,3473,4415,4367,719,888,2603,464,464,1030,2888,719,2023,1462,4947,5725,4991,2432,3375,4646,607,3894,2603,177,3473,3269,2198,4415,464,2603,3894,2416,2416,3118,1030,464,2417,2023,5725,1857,4684,1207,2979,2647,109,1908,19,542,2424,3790,1462,5222,4389,627,409,49,678,888,935,1811,2557,4258,4367,2637, + 720,935,888,719,719,2888,5455,720,1462,3790,2730,4947,1609,1192,1192,1609,4280,4863,4863,4280,5182,2400,2400,5182,5320,4679,4679,5320,4863,5320,5320,4863,4280,4863,4863,4280,5678,4581,4581,5678,5678,4581,4581,5678,1192,5678,5678,1192,2400,4978,4978,2400,4679,4280,4280,4679,4978,2584,2584,4978,4581,1609,1609,4581, + 1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682, + 3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599,882,3186,697,4046, + 360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399, + 882,4046,5157,360,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786,1497,2088,3235,1259,525,1497,1259,253,253,3235,2088,525,784,1472,2088,1497,1786,784,1497,525,4633,3235,253,151,151,253,1259,3737,3737,1259,3235,4633, + 3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940, + 3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882, + 345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193, + 3291,5514,2193,5449,1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505, + 5449,976,4505,2088,4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640, + 360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399, + 360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621, + 1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,2046,1633,2209,3342,2746,1485,2738,514,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452, + 5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013, + 2013,378,3536,3682,1786,784,1497,525,1985,5117,586,2581,5726,1412,2487,2412,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360, + 1258,3830,4876,566,5150,5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218, + 3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046, + 360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786,1497,2088,3235,1259,525,1497,1259,253,253,3235,2088,525,784,1472,2088,1497, + 1786,784,1497,525,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,525,2088,1472,1786,784,1472,2088,1497,1786,784,1497,525,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706, + 3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,2239,664,361,2980,1726,2021,1510,539,361,664,539,1510,2239,2980,2021,1726,664,2239,1726,539,2980,361,1510,2021,3400,128,23,3061,1689,4952,1411,1155,23,128,1155,1411,3400,3061,4952,1689, + 128,3400,1689,1155,3061,23,1411,4952,3635,1951,3503,591,4861,485,2748,3913,3503,1951,3913,2748,3635,591,485,4861,1951,3635,4861,3913,591,3503,2748,485,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076, + 1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399, + 360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449, + 1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088, + 4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186, + 360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186, + 360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116, + 784,1472,2088,1497,2046,1633,2209,3342,4816,2235,4532,3130,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298, + 1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,525,2088,1472,1786,1985,5117,586,2581,33,2321,3652,3029,1103,348,1463,4326,3706,4172,977,2071,1786,784,1497,525,3357,348,1609,4581,1192,1609,348,1103, + 1609,1192,1192,1609,784,1472,2088,1497,525,2088,1472,1786,4581,5678,3357,5182,2400,2400,5182,3800,1103,4326,5225,5678,1192,1103,3800,941,1463,348,3357,5678,4581,4581,5678,5678,4581,4581,5678,1192,5678,5678,1192,2400,4978,4978,2400,4978,2584,2584,4978,4581,1609,1609,4581,4007,4353,887,1872,4008,1965,4353,4007,2827, + 4008,4007,3926,3926,4007,1872,3934,2145,1172,4303,4298,4807,2183,1172,2145,4298,2449,4441,2145,2145,4441,2749,4807,4173,3236,4437,4537,5010,3236,2769,2133,3848,2769,3236,4173,2332,4437,3236,5010,2133,3848,4173,5010,5010,4173,4537,2332,138,3594,3647,3555,4840,3594,2568,3747,1002,2568,3594,138,488,3647,3594,4840,3747, + 1002,138,4840,4840,138,3555,488,1762,3401,3181,5328,5710,3181,3401,4438,5328,5710,4438,1762,3092,347,786,962,2040,1439,347,3092,1260,2093,1439,2040,3901,4526,445,4592,3166,147,4526,3901,5421,3162,147,3166,4526,4499,1238,445,147,1551,4499,4526,3162,4788,1551,147,3901,4499,1551,3166,4592,1238,4499,3901,118, + 4719,1238,4592,3166,1551,4788,5421,445,1238,4719,4582,4592,445,4582,118,962,786,4541,2341,2040,88,4279,1260,2496,3620,3162,5421,5041,1948,635,5350,5350,956,3322,5041,1948,1920,318,635,4467,1963,178,1216,1216,1156,5020,4467,1963,404,26,178,118,4582,5504,3968,3968,2957,4719,118,2767,3248,80,606,2280, + 2767,606,743,743,80,3248,2280,79,4835,3248,2767,4582,4719,2957,5504,5402,4724,1570,4023,4023,1890,4521,5402,4724,5403,2407,1570,2528,4539,4900,3728,3728,599,5294,2528,4539,3671,994,4900,3620,2076,4788,3162,5421,4788,2076,2496,2273,79,2767,2280,2280,3248,4835,2273,2273,4835,3401,1762,1762,4438,79,2273,4438, + 3401,4835,79,5328,3181,4967,4355,5710,5328,4355,4350,3181,5710,4350,4967,3628,4762,1207,4684,542,19,3767,1739,1742,3861,4751,5531,1490,2798,608,1026,1739,3767,388,5486,4442,381,4762,3628,1863,1162,2942,5476,2505,4039,4193,3317,998,2942,1162,1313,1313,3544,3804,998,2798,3331,4368,4965,2728,3024,2592,631,1480, + 5613,1162,1863,4039,1834,4156,4193,1313,1162,5613,1407,1407,2569,3544,1313,608,2798,4965,3825,4684,1207,2979,2647,109,1908,19,542,1191,801,3331,3321,3646,5162,2907,2616,5476,2942,123,2126,5538,2505,3317,3512,4166,123,2942,998,998,3804,1180,4166,3331,801,4973,4368,2341,5593,1961,962,4966,497,5396,1806,962, + 1961,838,3092,3092,838,88,2040,342,5354,498,2118,1490,2812,5354,342,2118,498,4322,4248,4248,3321,3331,1490,342,2798,4248,4322,4486,3321,2118,4248,3331,342,2118,2798,4377,1630,2388,5158,453,4377,5158,2109,2115,2388,1630,4215,4215,453,2109,2115,2115,2109,5530,488,4215,453,2109,2115,453,4377,5158,2109,2115, + 2109,5530,488,2115,2388,1630,4215,4377,1630,2388,5158,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150, + 5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228, + 3234,1228,5161,5161,1228,3960,5599,360,3186,1087,4399,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345, + 882,360,4399,882,4046,5157,360,882,3186,697,4046,345,1087,3186,882,345,882,360,4399,882,4046,5157,360,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,1497,2088,3235,1259,525,1497,1259,253,253,3235,2088,525,4633,3235,253,151,151, + 253,1259,3737,3737,1259,3235,4633,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,2899,2116,3140,5247,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786,784,1472,2088,1497,1786,784,1497,525,3131,3140,2116,4328,4328,4328,3131,3131,3140, + 3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737, + 940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345, + 1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699,2486, + 3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854,5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505,1472, + 2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345, + 1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345, + 1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544, + 4723,3183,2621,2376,1239,4402,1858,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1057,3275,2914,1790,2046,1633,2209,3342,2746,1485,2738,514,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566, + 3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,759, + 4013,3996,2491,1985,5117,586,2581,5726,1412,2487,2412,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846, + 3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,5569,1675,4158,1900,5112,5569,3012,1675,5112,1090,4158,1675,1090,3012,5569,1900,5112,1675,5569,4158,1090, + 1900,1090,2651,1900,2651,3012,1900,5112,5453,2651,1090,5569,1675,4158,1900,5112,5569,3012,1675,5112,1090,4158,1675,1090,3012,5569,1900,5112,1675,5569,4158,1090,1900,1090,2651,1900,2651,3012,1900,5112,5453,2651,1090,5569,1675,4158,1900,5112,5569,3012,1675,5112,1090,4158,1675,1090,3012,5569,1900,5112,1675,5569,4158,1090, + 1900,1090,2651,1900,2651,3012,1900,5112,5453,2651,1090,5569,1675,4158,1900,5112,5569,3012,1675,5112,1090,4158,1675,1090,3012,5569,1900,5112,1675,5569,4158,1090,1900,1090,2651,1900,2651,3012,1900,5112,5453,2651,1090,5569,1675,4158,1900,5453,3012,2651,2651,5112,5569,3012,1090,2651,2651,1900,1675,5112,1090,4158,1675,1090, + 5112,3012,5453,3012,5569,1900,2651,3012,1900,5112,1675,5569,5112,5453,2651,1090,4158,1090,1900,5569,1675,4158,1900,5453,3012,2651,2651,5112,5569,3012,1090,2651,2651,1900,1675,5112,1090,4158,1675,1090,5112,3012,5453,3012,5569,1900,2651,3012,1900,5112,1675,5569,5112,5453,2651,1090,4158,1090,1900,5569,1675,4158,1900,5453, + 3012,2651,2651,5112,5569,3012,1090,2651,2651,1900,1675,5112,1090,4158,1675,1090,5112,3012,5453,3012,5569,1900,2651,3012,1900,5112,1675,5569,5112,5453,2651,1090,4158,1090,1900,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245, + 4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552, + 3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245, + 4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918, + 2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918, + 2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245, + 2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918, + 2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918, + 2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245, + 4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732, + 1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92, + 92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92, + 2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552, + 670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327, + 1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347, + 4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245, + 4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918, + 1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92, + 2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793, + 2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793, + 2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918, + 2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194, + 5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92, + 2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327, + 2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92, + 2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327, + 1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732, + 1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732, + 92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793, + 2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327, + 1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918, + 2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918, + 4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732, + 92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448, + 5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92, + 2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793, + 2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327, + 1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92, + 2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732, + 92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732, + 92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732, + 92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732, + 92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732, + 1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732, + 1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424, + 1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793, + 4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670, + 4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918, + 2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245, + 4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245, + 4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426,379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245, + 1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327,4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918, + 2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918,2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327, + 1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,1426, + 379,3870,350,5194,5424,2801,2443,670,4552,5424,5194,3347,4552,3893,5391,1732,92,92,1732,4918,2793,2793,4918,1732,92,92,1732,2245,4918,2793,1327,1327,1327,2793,92,2245,1327,1732,4918,2793,2793,4918,1732,1732,1327,2245,2245,92,2245,2245,92,1327,1327,2793,4918,4918,2245,92,2245,1327,1732,1732,1732,1327, + 4918,4918,2245,92,2245,1327,1732,4918,2793,2793,4918,2245,4918,2793,1327,1732,92,92,1732,2245,4918,2793,1327,2448,5194,2443,3838,4552,3347,1426,5424,1732,1732,1327,4918,4918,2245,1327,1327,2793,2245,2245,92,5424,1426,350,2801,4552,670,3552,3893,92,2245,1327,1732,2245,2245,92,2245,4918,2793,1327,2245,4918, + 2793,1327,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,92,92,1732,92,2245,1327,1732,1732,1732,1327,92,2245,1327,1732,2245,4918,2793,1327,1732,92,92,1732,1327,1327,2793,4918,4918,2245,4918,2793,2793,4918,1732,1732,1327,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327, + 2793,2245,2245,92,2245,2245,92,2245,4918,2793,1327,92,2245,1327,1732,1732,1732,1327,1732,92,92,1732,4918,2793,2793,4918,4918,4918,2245,1327,1327,2793,2245,2245,92,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642,1342,3966,3846,4976,2890,2295,3454,4642,4976,2228,2890,4642,3846,2295,2890,3846,2228,4976,3454,4642,2890,4976,2295,3846,3454,3846,3966,3454,3966,2228,3454,4642, + 1342,3966,3846,1897,211,722,5638,3419,3658,1730,1922,837,1178,3658,4968,294,2655,211,1966,2501,722,2655,294,2636,3851,5028,3658,3419,3658,1178,3410,1730,1966,2655,3851,2501,682,211,1897,1534,4392,99,2192,5033,3431,100,768,102,3606,3431,4394,769,770,4392,771,772,99,770,769,5037,2194,2966,3431,5033, + 3431,3606,1535,100,771,770,2194,772,3607,4392,1534,1534,4392,99,2192,5033,3431,100,768,102,3606,3431,4394,769,770,4392,771,772,99,770,769,5037,2194,2966,3431,5033,3431,3606,1535,100,771,770,2194,772,3607,4392,1534,1534,4392,99,2192,5033,3431,100,768,102,3606,3431,4394,769,770,4392,771,772, + 99,770,769,5037,2194,2966,3431,5033,3431,3606,1535,100,771,770,2194,772,3607,4392,1534,1534,4392,99,2192,5033,3431,100,768,102,3606,3431,4394,769,770,4392,771,772,99,770,769,5037,2194,2966,3431,5033,3431,3606,1535,100,771,770,2194,772,3607,4392,1534,1897,211,722,5638,3419,3658,1730,1922,837, + 1178,3658,4968,294,2655,211,1966,2501,722,2655,294,2636,3851,5028,3658,3419,3658,1178,3410,1730,1966,2655,3851,2501,682,211,1897,134,2211,4754,339,4620,4647,411,557,4374,446,4647,5436,5265,5706,2211,3748,4159,4754,5706,5265,851,4103,3298,4647,4620,4647,446,5545,411,3748,5706,4103,4159,3653,2211,134,543, + 463,2490,152,2585,2387,4028,4901,2144,5151,2387,3749,1594,4451,463,4941,4120,2490,4451,1594,852,2347,577,2387,2585,2387,5151,4975,4028,4941,4451,2347,4120,2442,463,543,3008,2607,1519,4567,1949,3008,2758,2607,1949,1417,1519,2607,1417,2758,3008,4567,1949,2607,3008,1519,1417,4567,1417,2869,4567,2869,2758,4567,1949, + 5241,2869,1417,3008,2607,1519,4567,1949,3008,2758,2607,1949,1417,1519,2607,1417,2758,3008,4567,1949,2607,3008,1519,1417,4567,1417,2869,4567,2869,2758,4567,1949,5241,2869,1417,3008,2607,1519,4567,1949,3008,2758,2607,1949,1417,1519,2607,1417,2758,3008,4567,1949,2607,3008,1519,1417,4567,1417,2869,4567,2869,2758,4567,1949, + 5241,2869,1417,3008,2607,1519,4567,1949,3008,2758,2607,1949,1417,1519,2607,1417,2758,3008,4567,1949,2607,3008,1519,1417,4567,1417,2869,4567,2869,2758,4567,1949,5241,2869,1417,3008,2607,1519,4567,1949,3008,2758,2607,1949,1417,1519,2607,1417,2758,3008,4567,1949,2607,3008,1519,1417,4567,1417,2869,4567,2869,2758,4567,1949, + 5241,2869,1417,4469,4889,3925,3654,2292,588,4611,3344,3507,3697,4029,3089,243,1016,5305,5094,4031,243,5094,1431,1925,4031,1431,4253,5473,4585,4621,4996,5073,5473,4996,3875,4776,2753,4037,5646,1465,1201,5284,1388,4921,4665,5437,4693,2232,660,1992,4648,660,4596,282,1992,970,3507,3089,4387,4895,2232,4648,807,2003, + 2809,68,4683,4682,3502,4527,3175,2004,2003,4683,4528,3502,1064,5380,4527,242,600,3128,5344,600,3571,4622,3128,3571,1341,364,4622,1867,3090,4104,5233,3090,3876,98,4104,4511,1867,5233,1078,1008,2004,4528,3698,4992,2292,3344,3857,2753,4776,1143,3791,3791,1143,5732,2754,2754,5732,1302,4369,4369,1302,2125,473,473, + 2125,4452,5165,1465,5165,4452,1201,2125,286,1554,4452,4776,4318,4612,1143,1201,1466,2949,5284,1302,2348,286,2125,4452,1554,1466,1201,5732,3345,2348,1302,5646,3474,4318,4776,1143,4612,3345,5732,284,4469,3654,2254,2317,1813,4889,4469,1526,2317,4469,284,3568,5381,5490,161,3654,3925,4585,5473,2254,3654,5473,5073,4665, + 3568,161,5437,56,2991,276,1605,3475,4488,3251,319,2991,3475,319,276,4469,4889,3925,3654,2292,588,4611,3344,3507,3697,4029,3089,243,1016,5305,5094,4031,243,5094,1431,1925,4031,1431,4253,5473,4585,4621,4996,5073,5473,4996,3875,4776,2753,4037,5646,1465,1201,5284,1388,4921,4665,5437,4693,2232,660,1992,4648,660, + 4596,282,1992,970,3507,3089,4387,4895,2232,4648,807,2003,2809,68,4683,4682,3502,4527,3175,2004,2003,4683,4528,3502,1064,5380,4527,242,600,3128,5344,600,3571,4622,3128,3571,1341,364,4622,1867,3090,4104,5233,3090,3876,98,4104,4511,1867,5233,1078,1008,2004,4528,3698,4992,2292,3344,3857,2753,4776,1143,3791,3791, + 1143,5732,2754,2754,5732,1302,4369,4369,1302,2125,473,473,2125,4452,5165,1465,5165,4452,1201,2125,286,1554,4452,4776,4318,4612,1143,1201,1466,2949,5284,1302,2348,286,2125,4452,1554,1466,1201,5732,3345,2348,1302,5646,3474,4318,4776,1143,4612,3345,5732,284,4469,3654,2254,2317,1813,4889,4469,1526,2317,4469,284,3568, + 5381,5490,161,3654,3925,4585,5473,2254,3654,5473,5073,4665,3568,161,5437,56,2991,276,1605,3475,4488,3251,319,2991,3475,319,276,121,1552,2028,5050,1552,1330,2802,2028,1330,3328,2433,2802,3328,121,5050,2433,5050,2028,2802,2433,1787,2916,2858,645,4223,1552,121,4223,4293,1330,1552,4293,1750,3328,1330,1750,645, + 121,3328,4105,2916,283,5671,2916,1787,1629,283,1787,4697,1644,1629,4697,4105,5671,1644,5671,283,3678,4728,283,1629,3699,3678,1629,1644,3034,3699,1644,5671,4728,3034,4666,646,2462,4022,3792,4666,4022,390,1460,3792,390,3793,646,1460,3793,2462,3591,5596,4085,4244,5596,2162,1300,4085,2162,2325,1657,1300,2325,3591, + 4244,1657,4105,4697,2858,4697,1787,2858,2916,4105,2858,4470,5026,523,589,5547,4470,589,4375,1729,5547,4375,5546,5026,1729,5546,523,4613,3667,1553,2418,1083,4613,2418,3569,2891,1083,3569,5115,3667,2891,5115,1553,2484,5585,53,54,3902,2484,54,2755,3592,3902,2755,46,5585,3592,46,53,2681,2578,646,4666,313, + 2681,4666,3792,1688,313,3792,1460,2578,1688,1460,646,5362,3014,5585,2484,4329,5362,2484,3902,3736,4329,3902,3592,3014,3736,3592,5585,4351,2958,3667,4613,4755,4351,4613,1083,67,4755,1083,2891,2958,67,2891,3667,5288,2996,5026,4470,2997,5288,4470,5547,3726,2997,5547,1729,2996,3726,1729,5026,1492,4018,5596,3591,4018, + 4294,2162,5596,4294,1547,2325,2162,1547,1492,3591,2325,4613,3667,1553,2418,1083,4613,2418,3569,2891,1083,3569,5115,3667,2891,5115,1553,4351,2958,3667,4613,4755,4351,4613,1083,67,4755,1083,2891,2958,67,2891,3667,4755,67,67,4755,4351,4755,4755,4351,2958,4351,4351,2958,67,2958,2958,67,4755,67,67,4755,4351, + 4755,4755,4351,2958,4351,4351,2958,67,2958,2958,67,121,1552,2028,5050,1552,1330,2802,2028,1330,3328,2433,2802,3328,121,5050,2433,5050,2028,2802,2433,1787,2916,2858,645,4223,1552,121,4223,4293,1330,1552,4293,1750,3328,1330,1750,645,121,3328,4105,2916,283,5671,2916,1787,1629,283,1787,4697,1644,1629,4697,4105, + 5671,1644,5671,283,3678,4728,283,1629,3699,3678,1629,1644,3034,3699,1644,5671,4728,3034,4666,646,2462,4022,3792,4666,4022,390,1460,3792,390,3793,646,1460,3793,2462,3591,5596,4085,4244,5596,2162,1300,4085,2162,2325,1657,1300,2325,3591,4244,1657,4105,4697,2858,4697,1787,2858,2916,4105,2858,4470,5026,523,589,5547, + 4470,589,4375,1729,5547,4375,5546,5026,1729,5546,523,4613,3667,1553,2418,1083,4613,2418,3569,2891,1083,3569,5115,3667,2891,5115,1553,2484,5585,53,54,3902,2484,54,2755,3592,3902,2755,46,5585,3592,46,53,2681,2578,646,4666,313,2681,4666,3792,1688,313,3792,1460,2578,1688,1460,646,5362,3014,5585,2484,4329, + 5362,2484,3902,3736,4329,3902,3592,3014,3736,3592,5585,4351,2958,3667,4613,4755,4351,4613,1083,67,4755,1083,2891,2958,67,2891,3667,5288,2996,5026,4470,2997,5288,4470,5547,3726,2997,5547,1729,2996,3726,1729,5026,1492,4018,5596,3591,4018,4294,2162,5596,4294,1547,2325,2162,1547,1492,3591,2325,4613,3667,1553,2418,1083, + 4613,2418,3569,2891,1083,3569,5115,3667,2891,5115,1553,4351,2958,3667,4613,4755,4351,4613,1083,67,4755,1083,2891,2958,67,2891,3667,4755,67,67,4755,4351,4755,4755,4351,2958,4351,4351,2958,67,2958,2958,67,4755,67,67,4755,4351,4755,4755,4351,2958,4351,4351,2958,67,2958,2958,67,4241,280,1832,3023,2212, + 2816,1496,5498,5045,4241,3023,2549,10,5045,2549,688,686,2212,5498,1794,4405,10,688,5206,280,686,1794,1832,2816,4405,5206,1496,1794,5498,5600,2210,5206,688,74,5204,1832,1794,2210,5656,688,2549,951,74,5341,3999,241,176,1292,2887,2929,3294,2912,2498,2018,1292,858,5598,2887,858,1273,5469,5598,2912,5032, + 2379,2498,1273,2817,4316,5469,5032,176,2929,2379,2817,3294,2018,4316,5341,5615,3999,5341,833,5615,2549,3023,2306,951,5498,1496,4933,5600,3023,1832,5656,2306,1496,5206,5204,4933,4405,2816,3294,2817,686,280,176,5032,10,4405,2817,1273,2018,2498,1160,2929,2887,1160,4316,2018,1160,2379,2929,1160,5469,4316,1160,2498, + 2379,1160,5598,5469,1160,2887,5598,1160,2212,686,5032,2912,5045,10,1273,858,4241,5045,858,1292,2816,2212,2912,3294,280,4241,1292,176,5439,5440,4033,5057,5440,5058,2579,4033,5058,4204,5438,2579,4204,5439,5057,5438,795,4199,1161,4032,4870,5211,946,3125,5341,241,1355,5341,1355,2247,5341,2247,4715,5341,4715,3927, + 5341,3927,833,4200,795,4032,4201,4199,795,5057,4033,795,4200,5438,5057,4201,4032,4195,4196,4199,4200,4201,1161,4199,4033,2579,4200,4199,2579,5438,3629,4196,4202,5216,1161,4201,4196,3629,4032,1161,3629,4195,1361,5216,3794,3455,4195,3629,5216,1361,4196,4195,1361,4202,3794,1362,4870,3455,4202,1361,3455,1701,5216,4202, + 1701,3794,2368,2366,1363,611,2366,947,4872,1363,947,5212,5219,4872,5212,2368,611,5219,1359,265,4543,944,1362,2367,5211,4870,3429,1359,944,1700,265,1359,611,1363,1359,3429,5219,611,1700,944,612,1697,265,3429,1700,4543,265,1363,4872,3429,265,4872,5219,2775,1697,1698,942,4543,1700,1697,2775,944,4543,2775, + 612,5213,942,5211,2367,612,2775,942,5213,1697,612,5213,1698,3455,4870,3125,1701,1698,5213,2367,946,942,1698,946,5211,3125,946,2367,1362,1701,3125,1362,3794,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507, + 5724,2963,5724,5724,2963,5507,513,513,5507,5724,5507,513,2963,5724,5507,513,2963,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,513,2963,2963,513,5724,5507,5507,5724,2963,5724,5724,2963,5507,513,513,5507,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920, + 3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031,2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632, + 3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150,2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360, + 4399,882,4046,5157,360,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,525,2088,1472,1786,1497,2088,3235,1259,525,1497,1259, + 253,253,3235,2088,525,784,1472,2088,1497,1786,784,1497,525,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,4633,3235,253,151,151,253,1259,3737,3737,1259,3235,4633,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116, + 4328,4328,4328,3131,3131,3140,3140,2116,2116,2239,664,361,2980,1726,2021,1510,539,361,664,539,1510,2239,2980,2021,1726,664,2239,1726,539,2980,361,1510,2021,3400,128,23,3061,1689,4952,1411,1155,23,128,1155,1411,3400,3061,4952,1689,128,3400,1689,1155,3061,23,1411,4952,3635,1951,3503,591,4861,485,2748, + 3913,3503,1951,3913,2748,3635,591,485,4861,1951,3635,4861,3913,591,3503,2748,485,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360, + 4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854, + 5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360, + 640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186, + 882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186, + 882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,2046,1633,2209,3342,4816,2235,4532,3130,5658,2223,13, + 1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338,5522,3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123, + 5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,33,2321,3652,3029,1415,5319,2454,4055,4054,238,5313,1828,1666,2029,5496,1452,3428,341,4920,3176,262,3625,3240,1322,238,958,2266,5313,2710,5658,1668,5016,341,1326,3627,4920,3625,117,2172,3240,1483,1685,4858,5333,5319,4123,1031, + 2454,2673,1483,5333,2360,1258,3830,4876,566,5150,5326,4485,2901,3329,4760,711,5425,3536,2936,3964,3682,3960,3389,3508,5599,4760,110,4573,711,2936,3990,3942,3964,3389,1071,632,3508,5326,3984,4497,4485,2029,2745,2601,5496,2913,4618,3428,4123,3308,3946,632,1071,4573,110,191,4910,4910,191,2124,5336,5336,2124,5150, + 2901,4497,3984,2612,3218,3942,3990,3234,5228,5228,3234,1228,5161,5161,1228,3960,5599,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,882,3186,697,4046,360,3186,1087,4399,345,1087,3186,882,5157,697,3186,360,345,882,360,4399,882,4046,5157, + 360,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,5157,697,3186,360,345,882,360,4399,882,4046,5157,360,2899,2116,3140,5247,4328,2116,976,3706,2899,4328,3706,2071,2071,976,2116,2899,3131,3140,2116,4328,5247,3131,4328,2899,525,2088,1472,1786,1497,2088,3235,1259,525,1497,1259, + 253,253,3235,2088,525,784,1472,2088,1497,1786,784,1497,525,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,4633,3235,253,151,151,253,1259,3737,3737,1259,3235,4633,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706,2899,2116,3140, + 5247,4172,784,1786,977,977,1786,1472,5449,5449,1472,784,4172,3140,4633,151,5247,5247,151,3737,3131,3131,3737,4633,3140,3131,3140,2116,4328,5247,3131,4328,2899,3706,4172,977,2071,2071,977,5449,976,976,5449,4172,3706,3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116, + 2116,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116,2116,3131,3140,2116,4328,4328,4328,3131,3131,3140,3140,2116, + 2116,2239,664,361,2980,1726,2021,1510,539,361,664,539,1510,2239,2980,2021,1726,664,2239,1726,539,2980,361,1510,2021,3400,128,23,3061,1689,4952,1411,1155,23,128,1155,1411,3400,3061,4952,1689,128,3400,1689,1155,3061,23,1411,4952,3635,1951,3503,591,4861,485,2748,3913,3503,1951,3913,2748,3635,591,485, + 4861,1951,3635,4861,3913,591,3503,2748,485,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402,1858,5737,4274,1669,940,3146,984,3465,4076,1669,4274,4076,3465,5737,940,984,3146,4274,5737,3146,4076,940,1669,3465,984,763,658,443,777,4019,2762,76, + 5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360,4399,360,3186,1087,4399,345,1087,3186,882,345,882,360, + 4399,4328,2116,976,3706,4843,2843,2486,1699,3131,3140,2116,4328,1853,2779,2193,1497,2088,3235,1259,5652,3604,3250,4851,2779,5652,2193,784,1472,2088,1497,4843,2193,4851,5514,1853,2193,3291,5514,2193,5449,1472,784,4172,1699,2486,3433,3291,4505,4633,3235,3737,1259,3235,4633,3131,3737,4633,3140,976,5449,4172,3706,1854, + 5082,1853,5514,3433,1854,5514,3291,2193,5652,4851,2843,4843,4851,3250,5082,2275,2779,1853,2275,3604,5652,2779,2193,4843,1699,2193,1699,3291,3140,4633,4505,4505,2088,1472,976,2116,4505,5449,976,4505,2088,4505,3235,5449,4505,1472,2116,3140,4505,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360, + 640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186,882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186, + 882,345,1087,3186,882,360,3186,1087,4399,345,1866,640,4399,1866,882,360,640,360,640,360,3186,345,1087,3186,882,360,3186,1087,4399,1866,882,360,640,345,1866,640,4399,360,640,360,3186,360,640,360,3186,345,1866,640,4399,1866,882,360,640,360,640,360,3186,360,3186,1087,4399,345,1087,3186, + 882,1866,882,360,640,345,1866,640,4399,360,3186,1087,4399,345,1087,3186,882,3131,3140,2116,4328,3131,3140,2116,4328,4328,4328,3131,3131,4328,4328,3131,3131,3140,3140,2116,2116,3140,3140,2116,2116,4723,2544,1239,2376,3183,1858,4402,2621,1239,2544,2621,4402,4723,2376,1858,3183,2544,4723,3183,2621,2376,1239,4402, + 1858,763,658,443,777,4019,2762,76,5099,443,658,5099,76,763,777,2762,4019,658,763,4019,5099,777,443,76,2762,1057,3275,2914,1790,2746,1485,2738,514,4816,2235,4532,3130,5658,2223,13,1668,1338,5016,1668,2360,5333,4858,351,4858,5016,1338,2601,1452,5496,4876,3481,566,566,3481,5522,2601,3481,351,1338, + 5522,3830,598,4520,4876,3056,5319,1415,1613,238,4054,3854,341,3428,160,3625,262,4231,958,238,4231,4025,1415,958,2298,1326,341,2298,2882,262,1326,4626,117,3625,4626,4154,4054,117,2913,4123,5319,3329,5425,5700,2401,2401,5700,3946,3308,3218,2612,378,2013,2013,378,3536,3682,759,4013,3996,2491,5726,1412,2487, + 2412,33,2321,3652,3029,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044, + 285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281, + 187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738, + 187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676, + 1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727, + 3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147, + 3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388, + 1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242, + 187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452, + 3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147, + 3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452, + 285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281, + 187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284, + 286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676, + 1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201, + 1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180, + 3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738, + 3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180, + 187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363, + 5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363, + 4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187, + 524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147, + 3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639, + 2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363, + 4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147, + 3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187, + 3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187, + 3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242, + 187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363, + 5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147, + 3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466, + 2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180, + 187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452, + 1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180, + 5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201, + 1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180, + 3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738, + 3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147,3363,3044,4180, + 187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363, + 5676,3044,1466,2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,4180,187,285,1201,1466,5284,4180,285,5676,1201,5284,1388,1465,5165,4452,3738,1466,3727,3738,3727,5165,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187,3044,524,5242,187,4180,5147, + 3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,5147,5242,4180,3363,5147,5676,1281,524,3044,5676,524,3044,187,5242,1281,187,524,3738,639,2949,1466,5147,3044,5242,187,3044,524,3363,5676,3044,1466, + 2949,5284,4452,1554,1466,1201,1388,639,3738,3363,4180,5676,5165,3727,473,1201,1466,5284,286,1554,4452,1201,5284,1388,2125,4452,5165,1465,5165,4452,285,1281,5676,3738,1466,3727,3738,3727,5165,187,1281,285,1465,3738,5165,1465,1388,3738,187,1281,285,3363,5676,3044,285,1281,5676,5147,3044,5242,3363,4180,5676,187, + 3044,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,5242,187,4180,5147,3363,3044,4180,187,285,4180,5147,5242,4180,3363,5147,5676,1281,524,4180,285,5676,3044,5676,524,3044,187,5242,1281,187,524,2798,2118, + 3331,4322,498,2505 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_016", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.093529850244522,-0.651377379894257,0.173784136772156 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-70.118578585277589 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.711857676506042,0.711857676506042,0.488800197839737 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.116449,0.019933,0.180929,0.057926,0.018639,0.366637,-0.048488,0.034916,-0.066429,-0.003402,0.073897,0.141972, + 0.018409,-0.175846,0.280250,-0.120506,0.075301,0.304169,-0.122416,-0.058539,0.112098 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.907275,-0.310384,0.283751, + 0.907275,-0.310384,0.283751,0.907275,-0.310384,0.283751,0.465293,0.846422,-0.258984,0.465293,0.846422,-0.258984, + 0.465293,0.846422,-0.258984,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172, + -0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.399213,-0.303223,0.865266, + -0.399213,-0.303223,0.865266,-0.399213,-0.303223,0.865266,0.664217,-0.574975,-0.477724,0.664217,-0.574975,-0.477724, + 0.664217,-0.574975,-0.477724,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238, + -0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.119443,-0.858430,-0.498830, + -0.119443,-0.858430,-0.498830,-0.119443,-0.858430,-0.498830 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_027", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.151617929339409,-0.777113676071167,0.093608140945435 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443355534918460,19.353269296217039 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520822525,0.000042378902435 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.131868,0.361597,-0.013825,-0.092362,0.289083,0.010320,0.117515,0.119051,0.289291,-0.061584,0.063564,-0.166309, + 0.329795,0.067775,0.157881,-0.177022,0.027135,0.055578,-0.059461,-0.179707,0.142234,0.167589,-0.082004,0.224622 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.647879,0.328162,0.687432, + -0.647879,0.328162,0.687432,-0.647879,0.328162,0.687432,-0.268214,0.571054,-0.775860,-0.268214,0.571054,-0.775860, + -0.268214,0.571054,-0.775860,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296, + 0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,-0.880842,0.211503,-0.423538, + -0.880842,0.211503,-0.423538,-0.880842,0.211503,-0.423538,0.490349,-0.682742,-0.541683,0.490349,-0.682742,-0.541683, + 0.490349,-0.682742,-0.541683,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737, + -0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.617331,-0.021403,0.786412, + -0.617331,-0.021403,0.786412,-0.617331,-0.021403,0.786412,0.493276,-0.152601,0.856383,0.493276,-0.152601,0.856383, + 0.493276,-0.152601,0.856383,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_015", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.022989705204964,-0.049740925431252,0.568086028099060 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,69.452225329852098 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.468522131443024,0.455245703458786,0.350107729434967 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.049947,-0.118097,0.222133,0.037686,-0.082524,0.060494,-0.081575,0.037910,0.349788,-0.070438,-0.052701,0.219703, + 0.127280,0.041203,0.100548,-0.120340,0.034496,0.054455,-0.018865,0.162644,0.165294 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,0.823475,-0.537767,-0.180818, + 0.823475,-0.537767,-0.180818,0.823475,-0.537767,-0.180818,-0.422891,-0.760156,0.493282,-0.422891,-0.760156,0.493282, + -0.422891,-0.760156,0.493282,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252, + -0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,0.174916,0.186317,-0.966794, + 0.174916,0.186317,-0.966794,0.174916,0.186317,-0.966794,0.760311,0.118373,0.638682,0.760311,0.118373,0.638682, + 0.760311,0.118373,0.638682,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224, + 0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.661757,0.497232,0.561104, + 0.661757,0.497232,0.561104,0.661757,0.497232,0.561104 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_026", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061444193124771,-0.085806384682655,1.647282004356384 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-72.051993403441145,52.793445170633710,-52.386130254575171 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.079128116369247,0.093488983809948,0.093488991260529 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.129857,0.116238,0.294183,-0.100319,0.129520,0.277965,-0.022718,-0.129470,0.205490,0.054150,0.126394,0.035127, + 0.235879,-0.018302,0.130319,-0.208845,0.004139,0.091617,-0.084219,-0.121029,-0.056360,0.131030,-0.134353,-0.040216 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.665539,-0.379295,0.642801, + -0.665539,-0.379295,0.642801,-0.665539,-0.379295,0.642801,0.055993,0.998172,0.022770,0.055993,0.998172,0.022770, + 0.055993,0.998172,0.022770,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525, + 0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,-0.454346,0.838860,-0.299805, + -0.454346,0.838860,-0.299805,-0.454346,0.838860,-0.299805,0.089829,0.300827,-0.949439,0.089829,0.300827,-0.949439, + 0.089829,0.300827,-0.949439,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975, + -0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.627124,-0.769226,0.122500, + -0.627124,-0.769226,0.122500,-0.627124,-0.769226,0.122500,0.448746,-0.842670,0.297547,0.448746,-0.842670,0.297547, + 0.448746,-0.842670,0.297547,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_025", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210775494576,0.013481646776199,0.645346045494080 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802662010048856,-5.132534552741306,26.220143412252060 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.156420111656189,0.156420096755028,0.156420141458511 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_024", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.039614126086235,-0.016423404216766,0.692347168922424 + Property: "Lcl Rotation", "Lcl Rotation", "A+",33.480955518856170,-31.734865468869113,0.259470749038346 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.162417262792587,0.162417247891426,0.162417247891426 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.171897,0.194513,0.161268,0.012049,-0.007738,0.273636,-0.012164,-0.003714,-0.079644, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.111705,-0.130215,0.082390,0.145211,-0.128661,0.053508 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,-0.566149,-0.058075,0.822255, + -0.566149,-0.058075,0.822255,-0.566149,-0.058075,0.822255,-0.136913,0.718470,-0.681950,-0.136913,0.718470,-0.681950, + -0.136913,0.718470,-0.681950,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,-0.691519,0.261249,-0.673461, + -0.691519,0.261249,-0.673461,-0.691519,0.261249,-0.673461,-0.067238,-0.765994,-0.639321,-0.067238,-0.765994,-0.639321, + -0.067238,-0.765994,-0.639321,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283, + -0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.433282,-0.605122,0.667903, + -0.433282,-0.605122,0.667903,-0.433282,-0.605122,0.667903,0.450416,-0.639030,0.623511,0.450416,-0.639030,0.623511, + 0.450416,-0.639030,0.623511,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_023", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792789101601,-0.355304032564163,0.093608140945435 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443357242465751,-30.971082980028118 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520822525,0.000042378902435 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_014", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.002640515565872,0.045357242226601,0.075794577598572 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-4.750567322466293,-1.754852969248763,79.850983435506464 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.585514724254608,0.600598454475403,0.769067645072937 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_013", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.133239403367043,-0.011686757206917,-0.064099311828613 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.767727494239807,0.760925471782684,0.691547691822052 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.148567,0.030545,0.072931, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933,-0.163511,0.038009,0.249371 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,3,2,-8,4,1,-6,2,0,-5,7,2,-7,4,5,-7,2,4,-7,5,7, + -7,5,3,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.612667,-0.667107,-0.423802,-0.612667,-0.667107,-0.423802, + -0.612667,-0.667107,-0.423802,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768, + -0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439,-0.373827,0.583864,0.720663,-0.373827,0.583864,0.720663, + -0.373827,0.583864,0.720663,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.127623,0.634397,0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,4,5,6,0,1,3,5,2,0,6,5,7,0,3,7,5,0,7,3,6,7,3,4,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_012", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.032781809568405,-0.028244912624359,0.007775902748108 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,5.000000281426099 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.691212713718414,0.691212713718414,0.325813740491867 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.082365,-0.071902,0.254244,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.770110,-0.575921,-0.274310,-0.770110,-0.575921,-0.274310, + -0.770110,-0.575921,-0.274310,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.155954,-0.987750,-0.005323,0.155954,-0.987750,-0.005323, + 0.155954,-0.987750,-0.005323,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.245345,-0.918695,0.309524, + 0.245345,-0.918695,0.309524,0.245345,-0.918695,0.309524 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_011", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.041167005896568,-0.406847596168518,0.280233979225159 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-93.865124593383470 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.783353924751282,0.783353924751282,0.398512482643127 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.091614,-0.069370,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.072874,0.122445,0.342037,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.793637,-0.511669,-0.329144,-0.793637,-0.511669,-0.329144, + -0.793637,-0.511669,-0.329144,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370, + -0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,0.654813,0.747511,0.111564, + 0.654813,0.747511,0.111564,0.654813,0.747511,0.111564,0.141777,-0.989882,0.005662,0.141777,-0.989882,0.005662, + 0.141777,-0.989882,0.005662,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371, + 0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.193302,-0.940913,0.278059, + 0.193302,-0.940913,0.278059,0.193302,-0.940913,0.278059 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_010", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.125109538435936,-0.148038491606712,0.479514479637146 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-1.077437155245399,-2.888270354931506,35.454419151218048 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.419885277748108,0.418916225433350,0.338582783937454 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_009", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.006819382309914,-0.000000447034836,0.007775902748108 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-0.000002354814088 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.362565219402313,0.362565219402313,0.370854884386063 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireA_001", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.122707366943359,-0.377202928066254,0.000000119209290 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.046253204345703,1.046253204345703,1.009258031845093 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.011301,-0.096530,0.011386,0.083857,0.028139,0.011386,-0.124122,-0.079814,0.089982,-0.065903,0.067710,0.042039, + 0.189676,-0.015879,0.136371,-0.019867,0.144991,0.198293,0.012337,-0.010398,0.291546,0.022821,-0.198875,0.068756, + 0.080593,0.161792,0.080790,0.085952,-0.094594,0.024925,0.007216,0.148281,0.051837,0.019715,-0.159642,0.151437 + PolygonVertexIndex: 0,3,-2,1,4,-10,3,0,-3,3,5,-11,5,3,-3,10,5,-9,9,4,-8,5,2,-7,8,5,-7,4,6,-12,2,7, + -12,2,0,-8,4,8,-7,4,1,-9,0,9,-8,0,1,-10,1,10,-9,1,3,-11,7,4,-12,6,2,-12 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,0.751378,-0.059669,-0.657169, + 0.751378,-0.059669,-0.657169,0.751378,-0.059669,-0.657169,-0.575032,-0.038653,-0.817217,-0.575032,-0.038653,-0.817217, + -0.575032,-0.038653,-0.817217,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449, + -0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.177024,0.984149,-0.010627, + -0.177024,0.984149,-0.010627,-0.177024,0.984149,-0.010627,0.757875,-0.582393,-0.294013,0.757875,-0.582393,-0.294013, + 0.757875,-0.582393,-0.294013,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957, + 0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.533501,-0.564736,0.629643, + 0.533501,-0.564736,0.629643,0.533501,-0.564736,0.629643,-0.562855,-0.754740,0.336990,-0.562855,-0.754740,0.336990, + -0.562855,-0.754740,0.336990,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801, + 0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.777120,0.304883,-0.550573, + 0.777120,0.304883,-0.550573,0.777120,0.304883,-0.550573,0.131872,-0.450884,-0.882787,0.131872,-0.450884,-0.882787, + 0.131872,-0.450884,-0.882787,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553, + 0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,-0.133866,0.238466,-0.961880, + -0.133866,0.238466,-0.961880,-0.133866,0.238466,-0.961880,0.621962,-0.698137,0.354637,0.621962,-0.698137,0.354637, + 0.621962,-0.698137,0.354637,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.357210,0.096021,0.333917,0.038974,0.196110,0.029763,0.108207,0.253444,0.269919,0.120247,0.242787,0.048960, + 0.336724,0.278011,0.335521,0.175513,0.452382,0.240289,0.054659,0.170602,0.122843,0.283027,0.272390,0.529610 + UVIndex: 2,4,1,1,0,5,4,2,3,4,6,7,6,4,3,7,6,8,5,0,9,6,3,11,8,6,11,0,11,10,3,9,10,3,2,9,0,8,11,0,1,8,2,5,9,2,1,5,1,7,8,1,4,7,9,0,10,11,3,10 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::navigation", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -19.005625,-2.774347,-5.730103,-19.174398,12.511639,-5.730103,9.534038,14.349810,-5.730103,16.158325,10.732151,-5.730102, + -19.005625,-2.774347,13.697206,-19.174398,12.511639,13.697206,9.534038,14.349810,13.697206,16.158325,10.732151,13.697207, + -16.290670,-8.825330,-5.730103,17.971874,5.820992,-5.730102,-16.290670,-8.825330,13.697206,17.971874,5.820992,13.697207, + -15.527863,-14.726271,-5.730103,17.829910,-0.323789,-5.730103,-15.527863,-14.726271,13.697206,17.829910,-0.323789,13.697206, + 1.819232,14.425041,13.697206,-1.830434,-2.871135,13.697208,-3.771632,13.571872,13.697206,-13.970167,-16.766111,-5.730102, + 18.568689,-6.280777,-5.730103,-13.970167,-16.766111,13.697207,18.568689,-6.280777,13.697206,16.464460,-11.503504,13.697207, + 16.464458,-11.503504,-5.730103,11.490147,-14.622630,13.697207,11.490146,-14.622630,-5.730103,-9.451150,-21.340425,-5.730100, + -9.451150,-21.340425,13.697209,6.990268,-19.853657,13.697208,6.990268,-19.853657,-5.730102,-3.086437,-25.251436,-5.730100, + -3.086437,-25.251436,13.697209,3.898104,-24.424219,13.697208,3.898104,-24.424219,-5.730102,9.310135,12.540980,13.697207, + 9.310135,12.540980,-5.730103,11.497335,12.441986,13.697207,1.819232,14.425041,-5.730103,11.497335,12.441986,-5.730103, + 11.687645,14.210909,13.697207,11.687645,14.210909,-5.730103,-3.771631,13.571872,-5.730103 + PolygonVertexIndex: 4,0,1,-6,40,41,3,-8,4,10,8,-1,3,9,11,-8,9,13,15,-12,10,14,12,-9,14,21,19,-13,22,20,24,-24, + 23,24,26,-26,13,20,22,-16,30,34,33,-30,21,28,27,-20,26,30,29,-26,25,29,28,-22,33,34,31,-33,29,33,32,-29, + 28,32,31,-28,17,10,-5,17,4,5,-19,15,22,23,-18,17,14,-11,7,11,-18,11,15,-18,17,23,-26,17,25,21,-15,6, + 2,36,-36,35,36,39,-38,17,18,-17,37,39,41,-41,18,42,38,-17,37,17,-36,35,17,16,-7,5,1,42,-19,16,38,2, + -7,40,7,-38,7,17,-38 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.999939,0.011040,0.000000,0.999939,0.011040,0.000000,0.999939,0.011040,0.000000,0.999939,0.011040,0.000000, + -0.614112,-0.789218,0.000000,-0.614112,-0.789218,0.000000,-0.614112,-0.789218,0.000000,-0.614112,-0.789218,0.000000, + 0.912372,0.409363,0.000000,0.912372,0.409363,0.000000,0.912372,0.409363,0.000000,0.912372,0.409363,0.000000, + -0.938084,-0.346407,0.000000,-0.938084,-0.346407,0.000000,-0.938084,-0.346407,0.000000,-0.938084,-0.346407,0.000000, + -0.999733,0.023097,0.000000,-0.999733,0.023097,0.000000,-0.999733,0.023097,0.000000,-0.999733,0.023097,0.000000, + 0.991748,0.128202,0.000000,0.991748,0.128202,0.000000,0.991748,0.128202,0.000000,0.991748,0.128202,0.000000, + 0.794768,0.606914,0.000000,0.794768,0.606914,0.000000,0.794768,0.606914,0.000000,0.794768,0.606914,0.000000, + -0.927547,0.373707,0.000000,-0.927547,0.373707,0.000000,-0.927547,0.373707,0.000000,-0.927547,0.373707,0.000000, + -0.531245,0.847218,-0.000000,-0.531245,0.847218,-0.000000,-0.531245,0.847218,-0.000000,-0.531245,0.847218,-0.000000, + -0.992397,-0.123076,0.000000,-0.992397,-0.123076,0.000000,-0.992397,-0.123076,0.000000,-0.992397,-0.123076,0.000000, + -0.828257,0.560348,0.000000,-0.828257,0.560348,0.000000,-0.828257,0.560348,0.000000,-0.828257,0.560348,0.000000, + 0.711394,0.702794,0.000000,0.711394,0.702794,0.000000,0.711394,0.702794,0.000000,0.711394,0.702794,0.000000, + -0.758100,0.652139,0.000000,-0.758100,0.652139,0.000000,-0.758100,0.652139,0.000000,-0.758100,0.652139,0.000000, + 0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000, + -0.117613,0.993059,0.000000,-0.117613,0.993059,0.000000,-0.117613,0.993059,0.000000,-0.117613,0.993059,0.000000, + -0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000, + 0.523540,0.852001,0.000000,0.523540,0.852001,0.000000,0.523540,0.852001,0.000000,0.523540,0.852001,0.000000, + 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,-0.000000,-1.000000, + 0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000, + -0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000000,0.000000,-1.000000, + 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000, + -0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, + 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, + 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.992426,0.122846,0.000000, + -0.992426,0.122846,0.000000,-0.992426,0.122846,0.000000,-0.992426,0.122846,0.000000,-0.045214,-0.998977,0.000000, + -0.045214,-0.998977,0.000000,-0.045214,-0.998977,0.000000,-0.045214,-0.998977,0.000000,-0.000000,-0.000000,-1.000000, + -0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.994262,-0.106968,0.000000,0.994262,-0.106968,0.000000, + 0.994262,-0.106968,0.000000,0.994262,-0.106968,0.000000,0.150854,-0.988556,-0.000000,0.150854,-0.988556,-0.000000, + 0.150854,-0.988556,-0.000000,0.150854,-0.988556,-0.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000, + 0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000, + 0.000000,-0.000000,-1.000000,0.068671,-0.997639,0.000000,0.068671,-0.997639,0.000000,0.068671,-0.997639,0.000000, + 0.068671,-0.997639,0.000000,-0.009751,-0.999952,0.000000,-0.009751,-0.999952,0.000000,-0.009751,-0.999952,0.000000, + -0.009751,-0.999952,0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, + 0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireA_003", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.014073014259338,0.000000119209290,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.046253204345703,1.046253204345703,1.009258031845093 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.011301,-0.096530,0.011386,0.083857,0.028139,0.011386,-0.124122,-0.079814,0.089982,-0.065903,0.067710,0.042039, + 0.189676,-0.015879,0.136371,-0.019867,0.144991,0.198293,0.012337,-0.010398,0.291546,0.022821,-0.198875,0.068756, + 0.080593,0.161792,0.080790,0.085952,-0.094594,0.024925,0.007216,0.148281,0.051837,0.019715,-0.159642,0.151437 + PolygonVertexIndex: 0,3,-2,1,4,-10,3,0,-3,3,5,-11,5,3,-3,10,5,-9,9,4,-8,5,2,-7,8,5,-7,4,6,-12,2,7, + -12,2,0,-8,4,8,-7,4,1,-9,0,9,-8,0,1,-10,1,10,-9,1,3,-11,7,4,-12,6,2,-12 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,0.751378,-0.059669,-0.657169, + 0.751378,-0.059669,-0.657169,0.751378,-0.059669,-0.657169,-0.575032,-0.038653,-0.817217,-0.575032,-0.038653,-0.817217, + -0.575032,-0.038653,-0.817217,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449, + -0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.177024,0.984149,-0.010627, + -0.177024,0.984149,-0.010627,-0.177024,0.984149,-0.010627,0.757875,-0.582393,-0.294013,0.757875,-0.582393,-0.294013, + 0.757875,-0.582393,-0.294013,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957, + 0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.533501,-0.564736,0.629643, + 0.533501,-0.564736,0.629643,0.533501,-0.564736,0.629643,-0.562855,-0.754740,0.336990,-0.562855,-0.754740,0.336990, + -0.562855,-0.754740,0.336990,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801, + 0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.777120,0.304883,-0.550573, + 0.777120,0.304883,-0.550573,0.777120,0.304883,-0.550573,0.131872,-0.450884,-0.882787,0.131872,-0.450884,-0.882787, + 0.131872,-0.450884,-0.882787,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553, + 0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,-0.133866,0.238466,-0.961880, + -0.133866,0.238466,-0.961880,-0.133866,0.238466,-0.961880,0.621962,-0.698137,0.354637,0.621962,-0.698137,0.354637, + 0.621962,-0.698137,0.354637,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.357210,0.096021,0.333917,0.038974,0.196110,0.029763,0.108207,0.253444,0.269919,0.120247,0.242787,0.048960, + 0.336724,0.278011,0.335521,0.175513,0.452382,0.240289,0.054659,0.170602,0.122843,0.283027,0.272390,0.529610 + UVIndex: 2,4,1,1,0,5,4,2,3,4,6,7,6,4,3,7,6,8,5,0,9,6,3,11,8,6,11,0,11,10,3,9,10,3,2,9,0,8,11,0,1,8,2,5,9,2,1,5,1,7,8,1,4,7,9,0,10,11,3,10 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_032", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.006819307804108,-0.000000059604645,0.007775664329529 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-0.000002354814088 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.362565219402313,0.362565219402313,0.370854884386063 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_031", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.125109851360321,-0.148038327693939,0.479514241218567 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-1.077437155245399,-2.888270354931506,35.454419151218048 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.419885277748108,0.418916225433350,0.338582783937454 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_030", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.041166722774506,-0.110080897808075,0.280233860015869 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-93.865124593383470 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.783353924751282,0.783353924751282,0.398512482643127 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.091614,-0.069370,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.072874,0.122445,0.342037,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.793637,-0.511669,-0.329144,-0.793637,-0.511669,-0.329144, + -0.793637,-0.511669,-0.329144,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370, + -0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,0.654813,0.747511,0.111564, + 0.654813,0.747511,0.111564,0.654813,0.747511,0.111564,0.141777,-0.989882,0.005662,0.141777,-0.989882,0.005662, + 0.141777,-0.989882,0.005662,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371, + 0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.193302,-0.940913,0.278059, + 0.193302,-0.940913,0.278059,0.193302,-0.940913,0.278059 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_029", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.032782137393951,-0.028244495391846,0.007775664329529 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,5.000000281426099 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.691212713718414,0.691212713718414,0.325813740491867 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.082365,-0.071902,0.254244,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.770110,-0.575921,-0.274310,-0.770110,-0.575921,-0.274310, + -0.770110,-0.575921,-0.274310,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.155954,-0.987750,-0.005323,0.155954,-0.987750,-0.005323, + 0.155954,-0.987750,-0.005323,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.245345,-0.918695,0.309524, + 0.245345,-0.918695,0.309524,0.245345,-0.918695,0.309524 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_028", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.018570125102997,-0.011686325073242,0.129028439521790 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.767727494239807,0.760925471782684,0.691547691822052 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.148567,0.030545,0.072931, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933,-0.163511,0.038009,0.249371 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,3,2,-8,4,1,-6,2,0,-5,7,2,-7,4,5,-7,2,4,-7,5,7, + -7,5,3,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.612667,-0.667107,-0.423802,-0.612667,-0.667107,-0.423802, + -0.612667,-0.667107,-0.423802,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768, + -0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439,-0.373827,0.583864,0.720663,-0.373827,0.583864,0.720663, + -0.373827,0.583864,0.720663,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.127623,0.634397,0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,4,5,6,0,1,3,5,2,0,6,5,7,0,3,7,5,0,7,3,6,7,3,4,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_027", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.002640783786774,0.097223699092865,0.075794339179993 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-4.750567322466293,-1.754852969248763,79.850983435506464 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.585514724254608,0.600598454475403,0.769067645072937 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_037", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793072223663,-0.058537185192108,0.093608140945435 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443357242465751,-30.971082980028118 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520822525,0.000042378902435 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_036", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.039614200592041,-0.016423046588898,0.692347049713135 + Property: "Lcl Rotation", "Lcl Rotation", "A+",33.480955518856170,-31.734865468869113,0.259470749038346 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.162417262792587,0.162417247891426,0.162417247891426 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.171897,0.194513,0.161268,0.012049,-0.007738,0.273636,-0.012164,-0.003714,-0.079644, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.111705,-0.130215,0.082390,0.145211,-0.128661,0.053508 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,-0.566149,-0.058075,0.822255, + -0.566149,-0.058075,0.822255,-0.566149,-0.058075,0.822255,-0.136913,0.718470,-0.681950,-0.136913,0.718470,-0.681950, + -0.136913,0.718470,-0.681950,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,-0.691519,0.261249,-0.673461, + -0.691519,0.261249,-0.673461,-0.691519,0.261249,-0.673461,-0.067238,-0.765994,-0.639321,-0.067238,-0.765994,-0.639321, + -0.067238,-0.765994,-0.639321,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283, + -0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.433282,-0.605122,0.667903, + -0.433282,-0.605122,0.667903,-0.433282,-0.605122,0.667903,0.450416,-0.639030,0.623511,0.450416,-0.639030,0.623511, + 0.450416,-0.639030,0.623511,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_035", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210760593414,0.013481914997101,0.645345807075500 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802662010048856,-5.132534552741306,26.220143412252060 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.156420111656189,0.156420096755028,0.156420141458511 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_034", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061443865299225,-0.085805892944336,1.647282004356384 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-72.051993403441145,52.793445170633710,-52.386130254575171 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.079128116369247,0.093488983809948,0.093488991260529 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.129857,0.116238,0.294183,-0.100319,0.129520,0.277965,-0.022718,-0.129470,0.205490,0.054150,0.126394,0.035127, + 0.235879,-0.018302,0.130319,-0.208845,0.004139,0.091617,-0.084219,-0.121029,-0.056360,0.131030,-0.134353,-0.040216 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.665539,-0.379295,0.642801, + -0.665539,-0.379295,0.642801,-0.665539,-0.379295,0.642801,0.055993,0.998172,0.022770,0.055993,0.998172,0.022770, + 0.055993,0.998172,0.022770,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525, + 0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,-0.454346,0.838860,-0.299805, + -0.454346,0.838860,-0.299805,-0.454346,0.838860,-0.299805,0.089829,0.300827,-0.949439,0.089829,0.300827,-0.949439, + 0.089829,0.300827,-0.949439,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975, + -0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.627124,-0.769226,0.122500, + -0.627124,-0.769226,0.122500,-0.627124,-0.769226,0.122500,0.448746,-0.842670,0.297547,0.448746,-0.842670,0.297547, + 0.448746,-0.842670,0.297547,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_026", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.022989749908447,-0.049740493297577,0.568085908889771 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,69.452225329852098 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.468522131443024,0.455245703458786,0.350107729434967 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.049947,-0.118097,0.222133,0.037686,-0.082524,0.060494,-0.081575,0.037910,0.349788,-0.070438,-0.052701,0.219703, + 0.127280,0.041203,0.100548,-0.120340,0.034496,0.054455,-0.018865,0.162644,0.165294 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,0.823475,-0.537767,-0.180818, + 0.823475,-0.537767,-0.180818,0.823475,-0.537767,-0.180818,-0.422891,-0.760156,0.493282,-0.422891,-0.760156,0.493282, + -0.422891,-0.760156,0.493282,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252, + -0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,0.174916,0.186317,-0.966794, + 0.174916,0.186317,-0.966794,0.174916,0.186317,-0.966794,0.760311,0.118373,0.638682,0.760311,0.118373,0.638682, + 0.760311,0.118373,0.638682,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224, + 0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.661757,0.497232,0.561104, + 0.661757,0.497232,0.561104,0.661757,0.497232,0.561104 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_033", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.151618242263794,-0.236506462097168,0.093608140945435 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443355534918460,19.353269296217039 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520822525,0.000042378902435 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.131868,0.361597,-0.013825,-0.092362,0.289083,0.010320,0.117515,0.119051,0.289291,-0.061584,0.063564,-0.166309, + 0.329795,0.067775,0.157881,-0.177022,0.027135,0.055578,-0.059461,-0.179707,0.142234,0.167589,-0.082004,0.224622 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.647879,0.328162,0.687432, + -0.647879,0.328162,0.687432,-0.647879,0.328162,0.687432,-0.268214,0.571054,-0.775860,-0.268214,0.571054,-0.775860, + -0.268214,0.571054,-0.775860,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296, + 0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,-0.880842,0.211503,-0.423538, + -0.880842,0.211503,-0.423538,-0.880842,0.211503,-0.423538,0.490349,-0.682742,-0.541683,0.490349,-0.682742,-0.541683, + 0.490349,-0.682742,-0.541683,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737, + -0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.617331,-0.021403,0.786412, + -0.617331,-0.021403,0.786412,-0.617331,-0.021403,0.786412,0.493276,-0.152601,0.856383,0.493276,-0.152601,0.856383, + 0.493276,-0.152601,0.856383,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_025", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.093530118465424,-0.110770165920258,0.173783898353577 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-70.118578585277589 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.711857676506042,0.711857676506042,0.488800197839737 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.116449,0.019933,0.180929,0.057926,0.018639,0.366637,-0.048488,0.034916,-0.066429,-0.003402,0.073897,0.141972, + 0.018409,-0.175846,0.280250,-0.120506,0.075301,0.304169,-0.122416,-0.058539,0.112098 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.907275,-0.310384,0.283751, + 0.907275,-0.310384,0.283751,0.907275,-0.310384,0.283751,0.465293,0.846422,-0.258984,0.465293,0.846422,-0.258984, + 0.465293,0.846422,-0.258984,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172, + -0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.399213,-0.303223,0.865266, + -0.399213,-0.303223,0.865266,-0.399213,-0.303223,0.865266,0.664217,-0.574975,-0.477724,0.664217,-0.574975,-0.477724, + 0.664217,-0.574975,-0.477724,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238, + -0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.119443,-0.858430,-0.498830, + -0.119443,-0.858430,-0.498830,-0.119443,-0.858430,-0.498830 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_056", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.093530058860779,-0.110770463943481,0.173783957958221 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-70.118571755088411 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.711857616901398,0.711857616901398,0.488800168037415 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.116449,0.019933,0.180929,0.057926,0.018639,0.366637,-0.048488,0.034916,-0.066429,-0.003402,0.073897,0.141972, + 0.018409,-0.175846,0.280250,-0.120506,0.075301,0.304169,-0.122416,-0.058539,0.112098 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.907275,-0.310384,0.283751, + 0.907275,-0.310384,0.283751,0.907275,-0.310384,0.283751,0.465293,0.846422,-0.258984,0.465293,0.846422,-0.258984, + 0.465293,0.846422,-0.258984,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172,0.244382,0.954985,0.168172, + -0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.184879,0.972463,-0.141899,-0.399213,-0.303223,0.865266, + -0.399213,-0.303223,0.865266,-0.399213,-0.303223,0.865266,0.664217,-0.574975,-0.477724,0.664217,-0.574975,-0.477724, + 0.664217,-0.574975,-0.477724,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238,-0.922664,0.320615,-0.214238, + -0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.808051,-0.479541,0.342190,-0.119443,-0.858430,-0.498830, + -0.119443,-0.858430,-0.498830,-0.119443,-0.858430,-0.498830 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_092", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.151618003845215,-0.236506700515747,0.093608081340790 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443355534918460,19.353269296217039 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520822525,0.000042378898797 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.131868,0.361597,-0.013825,-0.092362,0.289083,0.010320,0.117515,0.119051,0.289291,-0.061584,0.063564,-0.166309, + 0.329795,0.067775,0.157881,-0.177022,0.027135,0.055578,-0.059461,-0.179707,0.142234,0.167589,-0.082004,0.224622 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.647879,0.328162,0.687432, + -0.647879,0.328162,0.687432,-0.647879,0.328162,0.687432,-0.268214,0.571054,-0.775860,-0.268214,0.571054,-0.775860, + -0.268214,0.571054,-0.775860,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296, + 0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,-0.880842,0.211503,-0.423538, + -0.880842,0.211503,-0.423538,-0.880842,0.211503,-0.423538,0.490349,-0.682742,-0.541683,0.490349,-0.682742,-0.541683, + 0.490349,-0.682742,-0.541683,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737, + -0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.617331,-0.021403,0.786412, + -0.617331,-0.021403,0.786412,-0.617331,-0.021403,0.786412,0.493276,-0.152601,0.856383,0.493276,-0.152601,0.856383, + 0.493276,-0.152601,0.856383,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_055", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.022989749908447,-0.049740672111511,0.568085908889771 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,69.452225329852098 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.468522101640701,0.455245733261108,0.350107699632645 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.049947,-0.118097,0.222133,0.037686,-0.082524,0.060494,-0.081575,0.037910,0.349788,-0.070438,-0.052701,0.219703, + 0.127280,0.041203,0.100548,-0.120340,0.034496,0.054455,-0.018865,0.162644,0.165294 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,0.823475,-0.537767,-0.180818, + 0.823475,-0.537767,-0.180818,0.823475,-0.537767,-0.180818,-0.422891,-0.760156,0.493282,-0.422891,-0.760156,0.493282, + -0.422891,-0.760156,0.493282,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252, + -0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572,0.174916,0.186317,-0.966794, + 0.174916,0.186317,-0.966794,0.174916,0.186317,-0.966794,0.760311,0.118373,0.638682,0.760311,0.118373,0.638682, + 0.760311,0.118373,0.638682,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224,-0.820698,0.562324,0.101224, + 0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.132907,0.586078,-0.799280,0.661757,0.497232,0.561104, + 0.661757,0.497232,0.561104,0.661757,0.497232,0.561104 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_091", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061444044113159,-0.085805892944336,1.647281885147095 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-72.051979743062802,52.793448585728292,-52.386113179102246 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.079128108918667,0.093488983809948,0.093488991260529 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.129857,0.116238,0.294183,-0.100319,0.129520,0.277965,-0.022718,-0.129470,0.205490,0.054150,0.126394,0.035127, + 0.235879,-0.018302,0.130319,-0.208845,0.004139,0.091617,-0.084219,-0.121029,-0.056360,0.131030,-0.134353,-0.040216 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.665539,-0.379295,0.642801, + -0.665539,-0.379295,0.642801,-0.665539,-0.379295,0.642801,0.055993,0.998172,0.022770,0.055993,0.998172,0.022770, + 0.055993,0.998172,0.022770,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525, + 0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,-0.454346,0.838860,-0.299805, + -0.454346,0.838860,-0.299805,-0.454346,0.838860,-0.299805,0.089829,0.300827,-0.949439,0.089829,0.300827,-0.949439, + 0.089829,0.300827,-0.949439,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975,-0.060428,-0.998011,-0.017975, + -0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444,-0.627124,-0.769226,0.122500, + -0.627124,-0.769226,0.122500,-0.627124,-0.769226,0.122500,0.448746,-0.842670,0.297547,0.448746,-0.842670,0.297547, + 0.448746,-0.842670,0.297547,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484,0.648711,0.381540,-0.658484 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_090", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013481736183167,0.645345807075500 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802662010048856,-5.132533698967659,26.220143412252060 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.156420111656189,0.156420111656189,0.156420126557350 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_089", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.039614200592041,-0.016423225402832,0.692347049713135 + Property: "Lcl Rotation", "Lcl Rotation", "A+",33.480952103761588,-31.734865468869113,0.259469681821288 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.162417262792587,0.162417262792587,0.162417232990265 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.171897,0.194513,0.161268,0.012049,-0.007738,0.273636,-0.012164,-0.003714,-0.079644, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.111705,-0.130215,0.082390,0.145211,-0.128661,0.053508 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,0.098281,0.550122,0.829281,-0.566149,-0.058075,0.822255, + -0.566149,-0.058075,0.822255,-0.566149,-0.058075,0.822255,-0.136913,0.718470,-0.681950,-0.136913,0.718470,-0.681950, + -0.136913,0.718470,-0.681950,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,0.587883,0.290005,-0.755176,-0.691519,0.261249,-0.673461, + -0.691519,0.261249,-0.673461,-0.691519,0.261249,-0.673461,-0.067238,-0.765994,-0.639321,-0.067238,-0.765994,-0.639321, + -0.067238,-0.765994,-0.639321,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283, + -0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.433282,-0.605122,0.667903, + -0.433282,-0.605122,0.667903,-0.433282,-0.605122,0.667903,0.450416,-0.639030,0.623511,0.450416,-0.639030,0.623511, + 0.450416,-0.639030,0.623511,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013,0.613383,-0.066116,-0.787013 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_088", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.058537244796753,0.093608081340790 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443355534918460,-30.971086395122704 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941898523,0.000028520820706,0.000042378902435 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_054", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.002640604972839,0.097223520278931,0.075794339179993 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-4.750567749353116,-1.754853396135586,79.850983435506464 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.585514664649963,0.600598514080048,0.769067585468292 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_053", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.018570065498352,-0.011686563491821,0.129028439521790 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.767727494239807,0.760925412178040,0.691547632217407 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.148567,0.030545,0.072931, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933,-0.163511,0.038009,0.249371 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,3,2,-8,4,1,-6,2,0,-5,7,2,-7,4,5,-7,2,4,-7,5,7, + -7,5,3,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,-0.149438,0.460506,-0.874987,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.612667,-0.667107,-0.423802,-0.612667,-0.667107,-0.423802, + -0.612667,-0.667107,-0.423802,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768,-0.136276,0.874350,-0.465768, + -0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,-0.979453,-0.187194,-0.075036,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439,-0.373827,0.583864,0.720663,-0.373827,0.583864,0.720663, + -0.373827,0.583864,0.720663,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214,-0.634123,0.768411,-0.086214 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.127623,0.634397,0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,4,5,6,0,1,3,5,2,0,6,5,7,0,3,7,5,0,7,3,6,7,3,4,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_052", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.032782196998596,-0.028244614601135,0.007775783538818 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,5.000001135199746 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.691212713718414,0.691212713718414,0.325813710689545 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.082365,-0.071902,0.254244,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.770110,-0.575921,-0.274310,-0.770110,-0.575921,-0.274310, + -0.770110,-0.575921,-0.274310,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,-0.971856,0.180723,0.151116,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.155954,-0.987750,-0.005323,0.155954,-0.987750,-0.005323, + 0.155954,-0.987750,-0.005323,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483,-0.832044,0.194524,0.519483, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.245345,-0.918695,0.309524, + 0.245345,-0.918695,0.309524,0.245345,-0.918695,0.309524 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_051", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.041166663169861,-0.110080957412720,0.280233860015869 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-93.865110933005141 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.783353805541992,0.783353805541992,0.398512482643127 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.091614,-0.069370,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.072874,0.122445,0.342037,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.793637,-0.511669,-0.329144,-0.793637,-0.511669,-0.329144, + -0.793637,-0.511669,-0.329144,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370, + -0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,0.654813,0.747511,0.111564, + 0.654813,0.747511,0.111564,0.654813,0.747511,0.111564,0.141777,-0.989882,0.005662,0.141777,-0.989882,0.005662, + 0.141777,-0.989882,0.005662,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371, + 0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.193302,-0.940913,0.278059, + 0.193302,-0.940913,0.278059,0.193302,-0.940913,0.278059 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_050", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.125109910964966,-0.148038387298584,0.479514360427856 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-1.077437048523693,-2.888270354931506,35.454419151218048 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.419885247945786,0.418916225433350,0.338582754135132 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_049", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.006819367408752,-0.000000119209290,0.007775783538818 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.362565189599991,0.362565189599991,0.370854854583740 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireA_006", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.014073014259338,-0.000000119209290,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.046253323554993,1.046253323554993,1.009258031845093 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.011301,-0.096530,0.011386,0.083857,0.028139,0.011386,-0.124122,-0.079814,0.089982,-0.065903,0.067710,0.042039, + 0.189676,-0.015879,0.136371,-0.019867,0.144991,0.198293,0.012337,-0.010398,0.291546,0.022821,-0.198875,0.068756, + 0.080593,0.161792,0.080790,0.085952,-0.094594,0.024925,0.007216,0.148281,0.051837,0.019715,-0.159642,0.151437 + PolygonVertexIndex: 0,3,-2,1,4,-10,3,0,-3,3,5,-11,5,3,-3,10,5,-9,9,4,-8,5,2,-7,8,5,-7,4,6,-12,2,7, + -12,2,0,-8,4,8,-7,4,1,-9,0,9,-8,0,1,-10,1,10,-9,1,3,-11,7,4,-12,6,2,-12 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,0.751378,-0.059669,-0.657169, + 0.751378,-0.059669,-0.657169,0.751378,-0.059669,-0.657169,-0.575032,-0.038653,-0.817217,-0.575032,-0.038653,-0.817217, + -0.575032,-0.038653,-0.817217,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449, + -0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.918309,0.387969,0.078672,-0.177024,0.984149,-0.010627, + -0.177024,0.984149,-0.010627,-0.177024,0.984149,-0.010627,0.757875,-0.582393,-0.294013,0.757875,-0.582393,-0.294013, + 0.757875,-0.582393,-0.294013,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957,-0.841600,0.138819,0.521957, + 0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.625347,0.492742,0.605100,0.533501,-0.564736,0.629643, + 0.533501,-0.564736,0.629643,0.533501,-0.564736,0.629643,-0.562855,-0.754740,0.336990,-0.562855,-0.754740,0.336990, + -0.562855,-0.754740,0.336990,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801,-0.532973,-0.541939,-0.649801, + 0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.563180,0.541132,0.624503,0.777120,0.304883,-0.550573, + 0.777120,0.304883,-0.550573,0.777120,0.304883,-0.550573,0.131872,-0.450884,-0.882787,0.131872,-0.450884,-0.882787, + 0.131872,-0.450884,-0.882787,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553, + 0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,0.254660,0.450550,-0.855660,-0.133866,0.238466,-0.961880, + -0.133866,0.238466,-0.961880,-0.133866,0.238466,-0.961880,0.621962,-0.698137,0.354637,0.621962,-0.698137,0.354637, + 0.621962,-0.698137,0.354637,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721,-0.570120,-0.577117,0.584721 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.357210,0.096021,0.333917,0.038974,0.196110,0.029763,0.108207,0.253444,0.269919,0.120247,0.242787,0.048960, + 0.336724,0.278011,0.335521,0.175513,0.452382,0.240289,0.054659,0.170602,0.122843,0.283027,0.272390,0.529610 + UVIndex: 2,4,1,1,0,5,4,2,3,4,6,7,6,4,3,7,6,8,5,0,9,6,3,11,8,6,11,0,11,10,3,9,10,3,2,9,0,8,11,0,1,8,2,5,9,2,1,5,1,7,8,1,4,7,9,0,10,11,3,10 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_082", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418658256531,-0.031902551651001,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756969213197664,-132.125201040531152,39.466943552730505 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699957847595,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_081", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418658256531,-0.031902551651001,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817949473515462,-21.887855167009455 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699957847595,0.768024981021881,0.768024921417236 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_080", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061574220657349,-0.085611820220947,0.265304565429688 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748306114964716,90.777100446976775,7.475379084285169 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708719253540,0.554708719253540 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_079", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792774200439,-0.055171966552734,1.117323160171509 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868542723652975,-23.861071205013918 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822906672955,0.068325690925121,0.084446899592876 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_078", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013481914997101,-0.026323318481445 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802668840238027,-5.132534552741306,33.449813271335543 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663404881954,0.043663404881954,0.043663401156664 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_077", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210820198059,0.076616942882538,0.772127389907837 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834452877610914,-18.164630257981646,18.793738491863106 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081025600433,0.586175858974457,0.773758828639984 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_076", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792893409729,-0.074788451194763,0.150350332260132 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317543326442149,-26.769551876256049,-18.811531134650963 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681288242340,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_075", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275409698486,-0.087339997291565,1.108861207962036 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722447018767088,91.946053172476923,-2.784490966578601 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678494989871979,0.745757162570953,0.745757400989532 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_074", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275290489197,-0.087339878082275,1.108861327171326 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722412867821237,91.946066832855266,-2.784524904081039 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678495049476624,0.745757281780243,0.745757400989532 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_073", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.074788331985474,0.150350213050842 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317543326442149,-26.769550168708758,-18.811527719556377 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681347846985,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_072", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210700988770,0.076617062091827,0.772127509117126 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834452877610914,-18.164631965528937,18.793738491863106 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081085205078,0.586175918579102,0.773758828639984 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_071", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210879802704,0.013481974601746,-0.026323318481445 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802672255332610,-5.132534125854483,33.449809856240961 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663408607244,0.043663404881954,0.043663408607244 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_070", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793191432953,-0.055172204971313,1.117323279380798 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868544431200270,-23.861074620108500 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822906672955,0.068325698375702,0.084446907043457 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_069", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061574459075928,-0.085611820220947,0.265304446220398 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748200247032582,90.777107277165939,7.475286022957729 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708778858185,0.554708778858185 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_068", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902432441711,0.055432200431824 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817949473515462,-21.887858582104041 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024921417236 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_067", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902432441711,0.055432200431824 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756982873576007,-132.125201040531152,39.466882081027975 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341700017452240,0.768025040626526,0.768025040626526 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_061", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902611255646,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756969213197664,-132.125214700909481,39.466929892352162 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699957847595,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_060", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902611255646,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817949473515462,-21.887860289651332 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_059", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061574459075928,-0.085611641407013,0.265304684638977 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748289039491794,90.777107277165939,7.475373107869646 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708719253540,0.554708778858185 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_058", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792774200439,-0.055172145366669,1.117323160171509 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868542723652975,-23.861074620108500 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822906672955,0.068325690925121,0.084446899592876 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_057", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013481676578522,-0.026323199272156 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802668840238027,-5.132534125854483,33.449809856240961 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663408607244,0.043663401156664,0.043663401156664 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_056", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014211058616638,0.076617181301117,0.772127628326416 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834452877610914,-18.164631965528937,18.793738491863106 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081085205078,0.586175858974457,0.773758769035339 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_055", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.074788630008698,0.150350213050842 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317543326442149,-26.769551876256049,-18.811531134650963 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681318044662,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_054", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275648117065,-0.087339818477631,1.108861207962036 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722556301793809,91.946053172476923,-2.784463432378509 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678494989871979,0.745757281780243,0.745757400989532 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_053", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275946140289,-0.087339758872986,1.108861684799194 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722556301793809,91.946053172476923,-2.784463432378509 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678495049476624,0.745757281780243,0.745757400989532 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_052", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792118549347,-0.074788093566895,0.150350332260132 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317546741536731,-26.769551876256049,-18.811532842198254 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681318044662,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_051", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014211356639862,0.076617240905762,0.772127866744995 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834452877610914,-18.164630257981646,18.793736784315811 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081085205078,0.586175918579102,0.773758769035339 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_050", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014211714267731,0.013481974601746,-0.026323080062866 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802668840238027,-5.132535406514952,33.449809856240961 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663404881954,0.043663404881954,0.043663408607244 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_049", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016791820526123,-0.055172085762024,1.117323398590088 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868544431200270,-23.861074620108500 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822906672955,0.068325698375702,0.084446907043457 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_048", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061575233936310,-0.085611820220947,0.265304803848267 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748200247032582,90.777107277165939,7.475286022957729 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708719253540,0.554708778858185 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_047", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005417823791504,-0.031902313232422,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817952888610051,-21.887858582104041 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341700017452240,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_046", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005417823791504,-0.031902313232422,0.055432319641113 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756962383008499,-132.125187380152795,39.466892326311729 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_045", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902790069580,0.055432558059692 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756955552819335,-132.125242021666168,39.466902571595483 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_044", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902790069580,0.055432558059692 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817949473515462,-21.887861997198627 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024921417236 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_043", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061574935913086,-0.085612773895264,0.265304565429688 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748213907410921,90.777100446976775,7.475291145599606 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708719253540,0.554708778858185 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_042", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792297363281,-0.055172920227051,1.117323398590088 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868539308558393,-23.861076327655795 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822899222374,0.068325698375702,0.084446899592876 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_041", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013481140136719,-0.026323318481445 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802668840238027,-5.132534125854483,33.449809856240961 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663408607244,0.043663404881954,0.043663408607244 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_040", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210700988770,0.076616287231445,0.772127628326416 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834459707800093,-18.164631965528937,18.793738491863106 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081085205078,0.586175918579102,0.773758828639984 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_039", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.074789047241211,0.150350332260132 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317546741536731,-26.769551876256049,-18.811532842198254 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681318044662,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_038", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275409698486,-0.087340354919434,1.108861446380615 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722556301793809,91.946053172476923,-2.784463432378509 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678495049476624,0.745757281780243,0.745757341384888 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_024", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.093530118465424,-0.110770314931870,0.173784136772156 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-70.118564924899246 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.711857676506042,0.711857676506042,0.488800227642059 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.116449,0.019933,0.180929,0.057926,0.018639,0.366637,-0.003402,0.073897,0.141972,-0.039563,0.057261,0.318373, + 0.010312,-0.044541,0.303970 + PolygonVertexIndex: 0,2,-2,1,2,-4,0,1,-5,2,0,-5,3,2,-5,4,1,-4 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.373562,0.919263,0.124124,0.298991,0.942367,0.150162, + 0.298991,0.942367,0.150162,0.298991,0.942367,0.150162,0.671771,-0.711323,0.206744,0.671771,-0.711323,0.206744, + 0.671771,-0.711323,0.206744,-0.175295,-0.801774,-0.571341,-0.175295,-0.801774,-0.571341,-0.175295,-0.801774,-0.571341, + -0.887938,-0.403878,-0.220109,-0.887938,-0.403878,-0.220109,-0.887938,-0.403878,-0.220109,-0.525305,-0.366045,0.768157, + -0.525305,-0.366045,0.768157,-0.525305,-0.366045,0.768157 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.242507,0.626494,0.365318,0.262800,0.260875,0.123718,0.048619,0.639831,0.156661,0.386417,0.468972,0.528999 + UVIndex: 2,4,1,1,4,0,2,1,5,4,2,3,0,4,3,5,1,0 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_032", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.151618093252182,-0.236506327986717,0.093608260154724 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443355534918460,19.353269296217039 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941902161,0.000028520824344,0.000042378906073 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.131868,0.361597,-0.013825,-0.092362,0.289083,0.010320,0.117515,0.119051,0.289291,-0.061584,0.063564,-0.166309, + 0.329795,0.067775,0.157881,-0.177022,0.027135,0.055578,-0.059461,-0.179707,0.142234,0.167589,-0.082004,0.224622 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.184006,0.771701,0.608785,-0.647879,0.328162,0.687432, + -0.647879,0.328162,0.687432,-0.647879,0.328162,0.687432,-0.268214,0.571054,-0.775860,-0.268214,0.571054,-0.775860, + -0.268214,0.571054,-0.775860,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296,0.503262,0.662935,0.554296, + 0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,0.637905,-0.020180,-0.769851,-0.880842,0.211503,-0.423538, + -0.880842,0.211503,-0.423538,-0.880842,0.211503,-0.423538,0.490349,-0.682742,-0.541683,0.490349,-0.682742,-0.541683, + 0.490349,-0.682742,-0.541683,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737,-0.186656,-0.342641,0.920737, + -0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.682447,-0.576260,-0.449656,-0.617331,-0.021403,0.786412, + -0.617331,-0.021403,0.786412,-0.617331,-0.021403,0.786412,0.493276,-0.152601,0.856383,0.493276,-0.152601,0.856383, + 0.493276,-0.152601,0.856383,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296,0.447010,-0.720395,-0.530296 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_023", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.022989720106125,-0.049740396440029,0.568086266517639 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,69.452225329852098 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.468522161245346,0.455245763063431,0.350107759237289 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.049947,-0.118097,0.222133,0.037686,-0.082524,0.060494,-0.070438,-0.052701,0.219703,0.127280,0.041203,0.100548, + -0.120340,0.034496,0.054455,-0.081575,0.037910,0.349788 + PolygonVertexIndex: 0,2,-2,0,1,-4,1,2,-5,3,1,-5,3,4,-6,2,0,-6,4,2,-6,5,0,-4 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,-0.469088,-0.869312,-0.155733,0.823475,-0.537767,-0.180818, + 0.823475,-0.537767,-0.180818,0.823475,-0.537767,-0.180818,-0.571562,-0.784292,-0.241252,-0.571562,-0.784292,-0.241252, + -0.571562,-0.784292,-0.241252,0.174916,0.186317,-0.966794,0.174916,0.186317,-0.966794,0.174916,0.186317,-0.966794, + -0.025550,0.999640,-0.008199,-0.025550,0.999640,-0.008199,-0.025550,0.999640,-0.008199,-0.422891,-0.760156,0.493282, + -0.422891,-0.760156,0.493282,-0.422891,-0.760156,0.493282,-0.945569,-0.299373,0.127572,-0.945569,-0.299373,0.127572, + -0.945569,-0.299373,0.127572,0.760311,0.118373,0.638682,0.760311,0.118373,0.638682,0.760311,0.118373,0.638682 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.285887,0.942247,0.156661,0.386417,0.242507,0.626494, + 0.048619,0.639831 + UVIndex: 2,4,1,2,1,0,1,4,5,0,1,5,0,5,3,4,2,6,5,4,6,6,2,0 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_031", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061597675085068,-0.085911668837070,1.647282242774963 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-72.052007063819488,52.793448585728292,-52.386143914953507 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.079128116369247,0.093488998711109,0.093488998711109 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.129857,0.116238,0.294183,-0.100319,0.129520,0.277965,-0.022718,-0.129470,0.205490,0.054150,0.126394,0.035127, + 0.235879,-0.018302,0.130319,-0.208845,0.004139,0.091617,-0.084219,-0.121029,-0.056360 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,5,3,-7,2,5,-7,4,6,-4,2,6,-5 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.083970,-0.291785,0.952791,-0.665539,-0.379295,0.642801, + -0.665539,-0.379295,0.642801,-0.665539,-0.379295,0.642801,0.055993,0.998172,0.022770,0.055993,0.998172,0.022770, + 0.055993,0.998172,0.022770,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525,0.439460,-0.533698,0.722525, + 0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,0.666027,0.727192,-0.166132,-0.454346,0.838860,-0.299805, + -0.454346,0.838860,-0.299805,-0.454346,0.838860,-0.299805,-0.399435,0.506040,-0.764444,-0.399435,0.506040,-0.764444, + -0.399435,0.506040,-0.764444,-0.627124,-0.769226,0.122500,-0.627124,-0.769226,0.122500,-0.627124,-0.769226,0.122500, + 0.492135,0.046206,-0.869292,0.492135,0.046206,-0.869292,0.492135,0.046206,-0.869292,0.363844,-0.924303,-0.115249, + 0.363844,-0.924303,-0.115249,0.363844,-0.924303,-0.115249 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.677610,0.940988,0.842135,0.946673 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,0,5,6,4,0,6,7,6,5,4,6,7 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_030", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013482071459293,0.659661889076233 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802672255332610,-5.132534979628129,26.220150242441232 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.156420111656189,0.156420126557350,0.156420156359673 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_029", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.039614260196686,-0.016422979533672,0.708879113197327 + Property: "Lcl Rotation", "Lcl Rotation", "A+",33.480955518856170,-31.734865468869113,0.244862548548870 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.172301873564720,0.162417277693748,0.162417247891426 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.171897,0.194513,0.161268,0.012049,-0.007738,0.273636,-0.012164,-0.003714,-0.079644,0.124914,0.051267,0.127864, + -0.211276,-0.018381,0.119118,-0.111705,-0.130215,0.082390,0.145211,-0.128661,0.053508 + PolygonVertexIndex: 0,4,-2,0,2,-5,6,5,-3,1,5,-7,4,2,-6,1,4,-6,3,1,-7,2,3,-7,1,3,-1,3,2,-1 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.566149,-0.058075,0.822255,-0.566149,-0.058075,0.822255,-0.566149,-0.058075,0.822255,-0.691519,0.261249,-0.673461, + -0.691519,0.261249,-0.673461,-0.691519,0.261249,-0.673461,-0.067238,-0.765994,-0.639321,-0.067238,-0.765994,-0.639321, + -0.067238,-0.765994,-0.639321,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283,0.062443,-0.858331,0.509283, + -0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.647309,-0.354775,-0.674630,-0.433282,-0.605122,0.667903, + -0.433282,-0.605122,0.667903,-0.433282,-0.605122,0.667903,0.809805,-0.143716,0.568825,0.809805,-0.143716,0.568825, + 0.809805,-0.143716,0.568825,0.747662,0.323915,-0.579724,0.747662,0.323915,-0.579724,0.747662,0.323915,-0.579724, + 0.402933,0.696403,0.593859,0.402933,0.696403,0.593859,0.402933,0.696403,0.593859,0.347278,0.823976,-0.447729, + 0.347278,0.823976,-0.447729,0.347278,0.823976,-0.447729 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.740207,0.470959,0.764951,0.508832,0.673081,0.078403,0.677610,0.940988,0.591637,0.531107,0.842135,0.946673, + 0.924807,0.500004,0.841801,0.055779 + UVIndex: 2,4,1,2,0,4,5,3,0,1,3,5,4,0,3,1,4,3,6,1,5,0,6,5,1,6,7,6,0,7 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_028", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016792863607407,-0.058537334203720,0.093608260154724 + Property: "Lcl Rotation", "Lcl Rotation", "A+",59.792780560337185,-20.443357242465751,-30.971082980028118 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.000044941905799,0.000028520824344,0.000042378906073 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_022", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.002640694379807,0.097223505377769,0.075794458389282 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-4.750567749353116,-1.754853182692175,79.850976605317300 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.585514783859253,0.600598454475403,0.769067704677582 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_021", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.073279023170471,0.000000402331352,0.216550946235657 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,25.435352969071431 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.634765207767487,0.506082653999329,0.737656235694885 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.071619,0.021280,0.109846,-0.139843,-0.079451,0.233464,-0.102425,0.078641,0.209103, + 0.092006,-0.068318,0.233896,-0.025156,0.057415,0.303207,0.008144,-0.007068,0.374933,-0.086750,0.017851,0.305520 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,3,2,-8,4,1,-6,2,0,-5,7,2,-7,4,5,-7,2,4,-7,5,7, + -7,5,3,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.051643,0.822761,-0.566037,-0.051643,0.822761,-0.566037,-0.051643,0.822761,-0.566037,0.874302,-0.313782,-0.370320, + 0.874302,-0.313782,-0.370320,0.874302,-0.313782,-0.370320,-0.859067,0.126915,-0.495880,-0.859067,0.126915,-0.495880, + -0.859067,0.126915,-0.495880,0.297781,0.954185,-0.029284,0.297781,0.954185,-0.029284,0.297781,0.954185,-0.029284, + -0.911612,0.264278,0.314835,-0.911612,0.264278,0.314835,-0.911612,0.264278,0.314835,0.774490,0.566361,0.281780, + 0.774490,0.566361,0.281780,0.774490,0.566361,0.281780,0.047987,-0.996799,-0.063942,0.047987,-0.996799,-0.063942, + 0.047987,-0.996799,-0.063942,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988,-0.613084,-0.226047,0.756988, + 0.768533,0.610348,0.191915,0.768533,0.610348,0.191915,0.768533,0.610348,0.191915,0.042766,-0.906858,0.419260, + 0.042766,-0.906858,0.419260,0.042766,-0.906858,0.419260,-0.361190,0.603854,0.710564,-0.361190,0.603854,0.710564, + -0.361190,0.603854,0.710564,-0.444733,0.723257,0.528310,-0.444733,0.723257,0.528310,-0.444733,0.723257,0.528310 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.127623,0.634397,0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,4,5,6,0,1,3,5,2,0,6,5,7,0,3,7,5,0,7,3,6,7,3,4,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_020", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.032782137393951,-0.028244383633137,0.007775783538818 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,5.000001562086569 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.691212713718414,0.691212713718414,0.325813770294189 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.053452,-0.063508,0.283818,0.014995,-0.003350,0.624882,0.023645,-0.026611,-0.189778,0.016344,-0.074631,0.067625, + -0.049563,0.061066,0.347228,0.112376,-0.023302,0.259082,-0.022135,0.072007,0.052606 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.230326,-0.965179,0.124017,0.230326,-0.965179,0.124017,0.230326,-0.965179,0.124017,-0.974947,-0.075977,0.209058, + -0.974947,-0.075977,0.209058,-0.974947,-0.075977,0.209058,-0.620416,-0.767612,-0.160800,-0.620416,-0.767612,-0.160800, + -0.620416,-0.767612,-0.160800,0.265935,-0.956119,0.122944,0.265935,-0.956119,0.122944,0.265935,-0.956119,0.122944, + 0.646247,-0.753282,-0.122196,0.646247,-0.753282,-0.122196,0.646247,-0.753282,-0.122196,0.496377,0.863934,0.085022, + 0.496377,0.863934,0.085022,0.496377,0.863934,0.085022,-0.982552,0.107814,-0.151551,-0.982552,0.107814,-0.151551, + -0.982552,0.107814,-0.151551,0.710988,0.687961,-0.145621,0.710988,0.687961,-0.145621,0.710988,0.687961,-0.145621, + 0.493747,0.866089,0.078127,0.493747,0.866089,0.078127,0.493747,0.866089,0.078127,-0.972775,-0.209846,-0.098353, + -0.972775,-0.209846,-0.098353,-0.972775,-0.209846,-0.098353 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_019", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.041166692972183,-0.110080763697624,0.280233979225159 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-93.865110933005141 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.783353984355927,0.783353924751282,0.398512512445450 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.091614,-0.069370,0.233464,-0.089928,0.005423,0.113130, + 0.136019,-0.037046,0.184596,-0.072874,0.122445,0.342037,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,0,1,-5,3,0,-3,1,3,-6,5,3,-3,4,1,-6,2,0,-5,5,2,-7,4,5,-7,2,4,-7 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,0.789098,-0.223044,-0.572342, + 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,-0.793637,-0.511669,-0.329144,-0.793637,-0.511669,-0.329144, + -0.793637,-0.511669,-0.329144,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370,-0.411503,0.823575,-0.390370, + -0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,-0.996370,0.077853,0.034433,0.654813,0.747511,0.111564, + 0.654813,0.747511,0.111564,0.654813,0.747511,0.111564,0.141777,-0.989882,0.005662,0.141777,-0.989882,0.005662, + 0.141777,-0.989882,0.005662,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371,-0.718119,-0.288350,0.633371, + 0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.727395,0.556873,0.400985,0.193302,-0.940913,0.278059, + 0.193302,-0.940913,0.278059,0.193302,-0.940913,0.278059 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.468972,0.528999,0.365318,0.262800,0.260875,0.123718,0.242507,0.626494,0.156661,0.386417,0.048619,0.639831, + 0.285887,0.942247 + UVIndex: 2,4,1,2,1,0,4,2,5,1,4,3,3,4,5,0,1,3,5,2,0,3,5,6,0,3,6,5,0,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_018", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.125109821557999,-0.148038297891617,0.479514479637146 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-1.077437048523693,-2.888269714601271,35.454419151218048 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.419885277748108,0.418916255235672,0.338582813739777 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,-0.089928,0.005423,0.113130, + -0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,3,-2,3,0,-3,1,3,-5,4,3,-3,4,2,-6,0,1,-6,5,1,-5,2,0,-6 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.463942,0.564609,-0.682624,-0.826492,-0.237539,-0.510378, + -0.826492,-0.237539,-0.510378,-0.826492,-0.237539,-0.510378,-0.449873,0.690126,-0.566869,-0.449873,0.690126,-0.566869, + -0.449873,0.690126,-0.566869,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787,-0.912227,0.397844,-0.097787, + -0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,0.851121,-0.522910,0.046463, + 0.851121,-0.522910,0.046463,0.851121,-0.522910,0.046463,0.803558,0.551489,0.223952,0.803558,0.551489,0.223952, + 0.803558,0.551489,0.223952,0.343908,-0.931692,0.116950,0.343908,-0.931692,0.116950,0.343908,-0.931692,0.116950 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.048619,0.639831,0.365318,0.262800,0.260875,0.123718,0.285887,0.942247,0.156661,0.386417,0.242507,0.626494, + 0.468972,0.528999 + UVIndex: 2,4,1,4,2,0,1,4,5,5,4,0,5,0,3,2,1,6,6,1,5,0,2,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireB_017", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.006819307804108,0.000000365078449,0.007775783538818 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.362565249204636,0.362565249204636,0.370854914188385 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.002738,-0.057967,0.001441,0.060742,0.049415,0.047115,-0.139843,-0.079451,0.233464,0.136019,-0.037046,0.184596, + -0.047721,0.131779,0.233464,0.008144,-0.007068,0.374933 + PolygonVertexIndex: 0,1,-4,3,1,-5,2,0,-4,4,2,-6,3,4,-6,2,3,-6,0,2,-2,1,2,-5 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,0.789098,-0.223044,-0.572342,0.685823,0.723421,0.079434, + 0.685823,0.723421,0.079434,0.685823,0.723421,0.079434,0.151598,-0.988440,-0.001943,0.151598,-0.988440,-0.001943, + 0.151598,-0.988440,-0.001943,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202,-0.731778,0.319146,0.602202, + 0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.681662,0.638428,0.357415,0.193924,-0.940673,0.278439, + 0.193924,-0.940673,0.278439,0.193924,-0.940673,0.278439,-0.721100,0.584503,-0.371984,-0.721100,0.584503,-0.371984, + -0.721100,0.584503,-0.371984,-0.747327,0.325927,-0.579028,-0.747327,0.325927,-0.579028,-0.747327,0.325927,-0.579028 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.242507,0.626494,0.468972,0.528999,0.260875,0.123718,0.285887,0.942247,0.365318,0.262800,0.048619,0.639831, + 0.156661,0.386417 + UVIndex: 2,4,1,1,4,0,5,2,1,0,5,3,1,0,3,5,1,3,2,6,4,4,6,0 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::fireA_002", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.014073014259338,0.000000122934580,0.000000119209290 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,-0.000000612535037 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.045377254486084,1.045377254486084,1.358466625213623 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.011301,-0.096530,0.011386,0.083857,0.028139,0.011386,-0.152953,-0.087902,0.099711,-0.065903,0.067710,0.042039, + 0.189676,-0.015879,0.136371,-0.019867,0.144991,0.198293,0.040822,-0.052470,0.303018,0.056034,-0.206108,0.084017, + 0.094358,0.190990,0.074150,0.085952,-0.094594,0.024925,0.007216,0.148281,0.051837,0.019715,-0.159642,0.151437 + PolygonVertexIndex: 0,3,-2,1,4,-10,3,0,-3,3,5,-11,5,3,-3,10,5,-9,9,4,-8,5,2,-7,8,5,-7,4,6,-12,2,7, + -12,2,0,-8,4,8,-7,4,1,-9,0,9,-8,0,1,-10,1,10,-9,1,3,-11,7,4,-12,6,2,-12 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: -0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,-0.166545,0.127122,-0.977805,0.751378,-0.059669,-0.657169, + 0.751378,-0.059669,-0.657169,0.751378,-0.059669,-0.657169,-0.529805,-0.017885,-0.847931,-0.529805,-0.017885,-0.847931, + -0.529805,-0.017885,-0.847931,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449,-0.727945,0.675150,-0.119449, + -0.870559,0.491887,0.013208,-0.870559,0.491887,0.013208,-0.870559,0.491887,0.013208,-0.427173,0.902261,-0.058726, + -0.427173,0.902261,-0.058726,-0.427173,0.902261,-0.058726,0.791085,-0.438333,-0.426672,0.791085,-0.438333,-0.426672, + 0.791085,-0.438333,-0.426672,-0.728923,0.132213,0.671707,-0.728923,0.132213,0.671707,-0.728923,0.132213,0.671707, + 0.524436,0.519121,0.674893,0.524436,0.519121,0.674893,0.524436,0.519121,0.674893,0.612884,-0.682913,0.397495, + 0.612884,-0.682913,0.397495,0.612884,-0.682913,0.397495,-0.445131,-0.831214,0.333079,-0.445131,-0.831214,0.333079, + -0.445131,-0.831214,0.333079,-0.423172,-0.666705,-0.613539,-0.423172,-0.666705,-0.613539,-0.423172,-0.666705,-0.613539, + 0.603730,0.471512,0.642796,0.603730,0.471512,0.642796,0.603730,0.471512,0.642796,0.781089,0.180064,-0.597893, + 0.781089,0.180064,-0.597893,0.781089,0.180064,-0.597893,0.129688,-0.491216,-0.861329,0.129688,-0.491216,-0.861329, + 0.129688,-0.491216,-0.861329,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553,0.139178,-0.106233,-0.984553, + 0.064669,0.355235,-0.932537,0.064669,0.355235,-0.932537,0.064669,0.355235,-0.932537,-0.133866,0.238466,-0.961880, + -0.133866,0.238466,-0.961880,-0.133866,0.238466,-0.961880,0.520167,-0.546145,0.656621,0.520167,-0.546145,0.656621, + 0.520167,-0.546145,0.656621,-0.455456,-0.695794,0.555364,-0.455456,-0.695794,0.555364,-0.455456,-0.695794,0.555364 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.357210,0.096021,0.333917,0.038974,0.196110,0.029763,0.108207,0.253444,0.269919,0.120247,0.242787,0.048960, + 0.336724,0.278011,0.335521,0.175513,0.452382,0.240289,0.054659,0.170602,0.122843,0.283027,0.272390,0.529610 + UVIndex: 2,4,1,1,0,5,4,2,3,4,6,7,6,4,3,7,6,8,5,0,9,6,3,11,8,6,11,0,11,10,3,9,10,3,2,9,0,8,11,0,1,8,2,5,9,2,1,5,1,7,8,1,4,7,9,0,10,11,3,10 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_022", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.062275409698486,-0.087339162826538,1.108861327171326 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.722556301793809,91.946053172476923,-2.784463432378509 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.678495049476624,0.745757281780243,0.745757341384888 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_021", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.074787855148315,0.150350332260132 + Property: "Lcl Rotation", "Lcl Rotation", "A+",36.317546741536731,-26.769551876256049,-18.811532842198254 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.305681318044662,0.304874986410141,0.305735558271408 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_020", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.076617479324341,0.772127747535706 + Property: "Lcl Rotation", "Lcl Rotation", "A+",66.834452877610914,-18.164630257981646,18.793736784315811 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.776081085205078,0.586175918579102,0.773758828639984 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_019", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.014210939407349,0.013482332229614,-0.026323080062866 + Property: "Lcl Rotation", "Lcl Rotation", "A+",34.802668840238027,-5.132534552741306,33.449809856240961 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.043663404881954,0.043663404881954,0.043663408607244 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_018", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.016793012619019,-0.055171489715576,1.117323517799377 + Property: "Lcl Rotation", "Lcl Rotation", "A+",62.650770765687362,-18.868542723652975,-23.861074620108500 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.087822906672955,0.068325698375702,0.084446907043457 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_017", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.061574459075928,-0.085611343383789,0.265304803848267 + Property: "Lcl Rotation", "Lcl Rotation", "A+",30.748381247045590,90.777107277165939,7.475460192781563 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.542207062244415,0.554708719253540,0.554708778858185 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.133367,0.209138,0.115389,-0.098817,0.205350,0.118360,0.012049,-0.007738,0.273636,0.019625,0.007710,-0.037612, + 0.237830,-0.003229,0.115156,-0.211276,-0.018381,0.119118,-0.087753,-0.212513,0.118930,0.129669,-0.208725,0.117444 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,0.000728,0.589170,0.808009,-0.554993,0.281621,0.782734, + -0.554993,0.281621,0.782734,-0.554993,0.281621,0.782734,-0.020102,0.611922,-0.790663,-0.020102,0.611922,-0.790663, + -0.020102,0.611922,-0.790663,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731,0.549647,0.269503,0.790731, + 0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,0.560424,0.276526,-0.780678,-0.560680,0.279189,-0.779545, + -0.560680,0.279189,-0.779545,-0.560680,0.279189,-0.779545,0.004558,-0.580842,-0.814004,0.004558,-0.580842,-0.814004, + 0.004558,-0.580842,-0.814004,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020,0.016013,-0.607681,0.794020, + -0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.506635,-0.321590,-0.799938,-0.525263,-0.334973,0.782235, + -0.525263,-0.334973,0.782235,-0.525263,-0.334973,0.782235,0.554765,-0.283283,0.782295,0.554765,-0.283283,0.782295, + 0.554765,-0.283283,0.782295,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238,0.538602,-0.292287,-0.790238 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_016", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902074813843,0.055432438850403 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756996533954350,-47.817949473515462,-21.887860289651332 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341700017452240,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::smoke_015", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.005418539047241,-0.031902074813843,0.055432438850403 + Property: "Lcl Rotation", "Lcl Rotation", "A+",76.756982873576007,-132.125187380152795,39.466888911217140 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.341699987649918,0.768024981021881,0.768024981021881 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.061896,0.128272,0.087622,-0.079023,0.155896,0.100179,0.007183,-0.022206,0.282582,0.007055,-0.017471,-0.062249, + 0.192523,-0.033864,0.079536,-0.185867,0.026237,0.150426,-0.035849,-0.187036,0.155764,0.107061,-0.171378,0.128342 + PolygonVertexIndex: 1,2,-1,1,5,-3,1,0,-4,2,4,-1,4,3,-1,1,3,-6,7,6,-4,2,6,-8,5,3,-7,2,5,-7,4,2, + -8,3,4,-8 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: 0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,0.202831,0.746817,0.633344,-0.356980,0.578413,0.733487, + -0.356980,0.578413,0.733487,-0.356980,0.578413,0.733487,0.074270,0.701211,-0.709075,0.074270,0.701211,-0.709075, + 0.074270,0.701211,-0.709075,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544,0.654233,0.498736,0.568544, + 0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,0.558230,0.483379,-0.674332,-0.676408,0.296024,-0.674420, + -0.676408,0.296024,-0.674420,-0.676408,0.296024,-0.674420,-0.032401,-0.785839,-0.617582,-0.032401,-0.785839,-0.617582, + -0.032401,-0.785839,-0.617582,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911,0.212353,-0.630103,0.746911, + -0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.690492,-0.498806,-0.523845,-0.584512,-0.393389,0.709642, + -0.584512,-0.393389,0.709642,-0.584512,-0.393389,0.709642,0.716291,-0.208844,0.665816,0.716291,-0.208844,0.665816, + 0.716291,-0.208844,0.665816,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740,0.479322,-0.542687,-0.689740 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.591637,0.531107,0.841801,0.055779,0.673081,0.078403,0.924807,0.500004,0.764951,0.508832,0.740207,0.470959, + 0.842135,0.946673,0.677610,0.940988 + UVIndex: 2,4,1,2,0,4,2,1,5,4,3,1,3,5,1,2,5,0,6,7,5,4,7,6,0,5,7,4,0,7,3,4,6,5,3,6 + } + LayerElementTexture: 0 { + Version: 101 + Name: "" + MappingInformationType: "NoMappingInformation" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Material: "Material::fire", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.5000 + Property: "ShininessExponent", "double", "",12.3 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",12.3 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Material: "Material::texture01", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.5000 + Property: "ShininessExponent", "double", "",12.3 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",12.3 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Material: "Material::trans", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.5000 + Property: "ShininessExponent", "double", "",12.3 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",12.3 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 116 + PoseNode: { + Node: "Model::gt_fire_1_003" + Matrix: 1.597589015960693,0.000000000000000,1.854980230331421,0.000000000000000,1.854980230331421,0.000000000000000,-1.597589015960693,0.000000000000000,0.000000000000000,2.448109626770020,0.000000000000000,0.000000000000000,0.544200599193573,4.196186542510986,-14.220603942871094,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_fire_1_002" + Matrix: 1.597589015960693,0.000000000000000,1.854980230331421,0.000000000000000,1.854980230331421,0.000000000000000,-1.597589015960693,0.000000000000000,0.000000000000000,2.448109626770020,0.000000000000000,0.000000000000000,-2.597117662429810,2.685384750366211,7.254366397857666,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_fire_1_001" + Matrix: 2.904528617858887,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-2.904528617858887,0.000000000000000,0.000000000000000,2.904528617858887,0.000000000000000,0.000000000000000,5.515228271484375,2.202894210815430,-4.253108978271484,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_006" + Matrix: 1.348025083541870,0.000000000000000,0.862985849380493,0.000000000000000,0.862985849380493,0.000000000000000,-1.348025083541870,0.000000000000000,0.000000000000000,1.600598692893982,0.000000000000000,0.000000000000000,-2.954452276229858,4.319375514984131,8.154943466186523,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_005" + Matrix: 1.456757545471191,0.000000000000000,2.022715330123901,0.000000000000000,2.022715330123901,0.000000000000000,-1.456757545471191,0.000000000000000,0.000000000000000,2.492693185806274,0.000000000000000,0.000000000000000,-3.166412353515625,4.319375514984131,8.486035346984863,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_004" + Matrix: -1.275364398956299,0.000000000000000,1.311802864074707,0.000000000000000,1.311802864074707,0.000000000000000,1.275364398956299,0.000000000000000,0.000000000000000,1.829584956169128,0.000000000000000,0.000000000000000,5.948089599609375,1.959203004837036,-3.643865108489990,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_003" + Matrix: -0.230052068829536,0.000000000000000,1.255943775177002,0.000000000000000,1.255943775177002,0.000000000000000,0.230052068829536,0.000000000000000,0.000000000000000,1.276839375495911,0.000000000000000,0.000000000000000,5.043613910675049,3.468612670898438,-11.242835044860840,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_002" + Matrix: 0.854735851287842,0.000000000000000,1.186805009841919,0.000000000000000,1.186805009841919,0.000000000000000,-0.854735851287842,0.000000000000000,0.000000000000000,1.462559223175049,0.000000000000000,0.000000000000000,9.313110351562500,5.581695079803467,-11.004759788513184,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_fire_2_002" + Matrix: 2.798634529113770,0.000000000000000,-0.403658956289291,0.000000000000000,-0.318601071834564,0.000000000000000,-2.208914041519165,0.000000000000000,0.000000000000000,2.231772661209106,0.000000000000000,0.000000000000000,0.901066601276398,4.174376964569092,-13.516775131225586,1.000000000000000 + } + PoseNode: { + Node: "Model::gt_smoke_1_001" + Matrix: 2.608999729156494,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-2.608999729156494,0.000000000000000,0.000000000000000,2.608999729156494,0.000000000000000,0.000000000000000,5.988043785095215,3.293737173080444,-10.272465705871582,1.000000000000000 + } + PoseNode: { + Node: "Model::scene" + Matrix: -0.047404427081347,-0.066045410931110,-0.996689915657043,0.000000000000000,-0.966545164585114,0.254842311143875,0.029083626344800,0.000000000000000,0.252077907323837,0.964724540710449,-0.075916521251202,0.000000000000000,7.142735481262207,6.162922382354736,9.080159187316895,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_016" + Matrix: 1.518536210060120,0.000000000000000,0.855026960372925,0.000000000000000,0.855026960372925,0.000000000000000,-1.518536210060120,0.000000000000000,0.000000000000000,1.196636438369751,0.000000000000000,0.000000000000000,-0.514668285846710,4.621628761291504,-13.006474494934082,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_027" + Matrix: -0.000000751726986,0.000056540655351,-0.000040959923354,0.000000000000000,-0.000089361994469,-0.000038428857806,-0.000051406761486,0.000000000000000,-0.000060512204072,0.000048911133490,0.000068626999564,0.000000000000000,-0.655105888843536,4.425349235534668,-12.697847366333008,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_015" + Matrix: -0.384624987840652,0.000000000000000,-1.046018719673157,0.000000000000000,-1.076523900032043,0.000000000000000,0.395841926336288,0.000000000000000,0.000000000000000,0.857102096080780,0.000000000000000,0.000000000000000,0.488660991191864,5.586923122406006,-14.098493576049805,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_026" + Matrix: 0.104092210531235,-0.131661400198936,-0.155602574348450,0.000000000000000,0.023653175681829,0.154285833239555,-0.114724203944206,0.000000000000000,0.201905727386475,0.042647335678339,0.098981678485870,0.000000000000000,0.286869972944260,8.228913307189941,-14.197498321533203,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_025" + Matrix: 0.105086766183376,0.217683687806129,-0.296999573707581,0.000000000000000,-0.350965917110443,-0.034257169812918,-0.149290144443512,0.000000000000000,-0.111435502767563,0.313174724578857,0.190110221505165,0.000000000000000,0.546505987644196,5.776063919067383,-14.268503189086914,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_024" + Matrix: 0.174619883298874,0.186553835868835,-0.304636627435684,0.000000000000000,-0.221840217709541,-0.209141328930855,-0.255234718322754,0.000000000000000,-0.279987037181854,0.282055765390396,0.012235194444656,0.000000000000000,0.577023267745972,5.891128063201904,-14.120882987976074,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_023" + Matrix: 0.000031045732612,0.000056540655351,-0.000026729063393,0.000000000000000,-0.000017486041543,-0.000038428857806,-0.000101599507616,0.000000000000000,-0.000091453672212,0.000048911133490,-0.000002760225470,0.000000000000000,-0.088052868843079,4.425349235534668,-13.621824264526367,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_014" + Matrix: -0.742401123046875,-0.121712870895863,-1.263289451599121,0.000000000000000,-1.233372807502747,-0.043895419687033,0.729049086570740,0.000000000000000,-0.128806725144386,1.875414013862610,-0.104992404580116,0.000000000000000,0.632556736469269,4.381739616394043,-14.288167953491211,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_013" + Matrix: 1.411501884460449,0.000000000000000,-1.215646028518677,0.000000000000000,-1.226512908935547,0.000000000000000,-1.424119472503662,0.000000000000000,0.000000000000000,1.692984580993652,0.000000000000000,0.000000000000000,0.735384821891785,4.039264202117920,-13.954776763916016,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_012" + Matrix: 1.181063055992126,0.000000000000000,-1.211821436882019,0.000000000000000,-1.211821436882019,0.000000000000000,-1.181063055992126,0.000000000000000,0.000000000000000,0.797627747058868,0.000000000000000,0.000000000000000,0.544179797172546,4.215222358703613,-14.114670753479004,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_011" + Matrix: 1.150680184364319,0.000000000000000,1.534160494804382,0.000000000000000,1.534160494804382,0.000000000000000,-1.150680184364319,0.000000000000000,0.000000000000000,0.975602269172668,0.000000000000000,0.000000000000000,-0.276260972023010,4.882229804992676,-13.646992683410645,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_010" + Matrix: 0.245687857270241,-0.019259706139565,-0.995502710342407,0.000000000000000,-0.996946454048157,-0.051795583218336,-0.245042100548744,0.000000000000000,-0.036831781268120,0.827688455581665,-0.025103062391281,0.000000000000000,0.469466596841812,5.370090007781982,-13.752023696899414,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_009" + Matrix: 0.672551393508911,0.000000000000000,-0.579230129718781,0.000000000000000,-0.579230129718781,0.000000000000000,-0.672551393508911,0.000000000000000,0.000000000000000,0.907893419265747,0.000000000000000,0.000000000000000,0.533306062221527,4.215222358703613,-14.233253479003906,1.000000000000000 + } + PoseNode: { + Node: "Model::fireA_001" + Matrix: 1.940779328346252,0.000000000000000,-1.671482682228088,0.000000000000000,-1.671482682228088,0.000000000000000,-1.940779328346252,0.000000000000000,0.000000000000000,2.470774412155151,0.000000000000000,0.000000000000000,0.040532886981964,4.196186542510986,-13.390369415283203,1.000000000000000 + } + PoseNode: { + Node: "Model::navigation" + Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::fireA_003" + Matrix: 1.940779328346252,0.000000000000000,-1.671482682228088,0.000000000000000,-1.671482682228088,0.000000000000000,-1.940779328346252,0.000000000000000,0.000000000000000,2.470774412155151,0.000000000000000,0.000000000000000,-2.574634790420532,2.685384750366211,7.280471324920654,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_032" + Matrix: 0.672551393508911,0.000000000000000,-0.579230129718781,0.000000000000000,-0.579230129718781,0.000000000000000,-0.672551393508911,0.000000000000000,0.000000000000000,0.907893419265747,0.000000000000000,0.000000000000000,-2.608012199401855,2.704420566558838,7.241716861724854,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_031" + Matrix: 0.245687857270241,-0.019259706139565,-0.995502710342407,0.000000000000000,-0.996946454048157,-0.051795583218336,-0.245042100548744,0.000000000000000,-0.036831781268120,0.827688455581665,-0.025103062391281,0.000000000000000,-2.671851634979248,3.859288215637207,7.722947120666504,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_030" + Matrix: 1.150680184364319,0.000000000000000,1.534160494804382,0.000000000000000,1.534160494804382,0.000000000000000,-1.150680184364319,0.000000000000000,0.000000000000000,0.975602269172668,0.000000000000000,0.000000000000000,-2.867083072662354,3.371428012847900,7.353867053985596,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_029" + Matrix: 1.181063055992126,0.000000000000000,-1.211821436882019,0.000000000000000,-1.211821436882019,0.000000000000000,-1.181063055992126,0.000000000000000,0.000000000000000,0.797627747058868,0.000000000000000,0.000000000000000,-2.597138404846191,2.704420566558838,7.360299587249756,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_028" + Matrix: 1.411501884460449,0.000000000000000,-1.215646028518677,0.000000000000000,-1.226512908935547,0.000000000000000,-1.424119472503662,0.000000000000000,0.000000000000000,1.692984580993652,0.000000000000000,0.000000000000000,-2.589128494262695,3.001260519027710,7.307483673095703,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_027" + Matrix: -0.742401123046875,-0.121712870895863,-1.263289451599121,0.000000000000000,-1.233372807502747,-0.043895419687033,0.729049086570740,0.000000000000000,-0.128806725144386,1.875414013862610,-0.104992404580116,0.000000000000000,-2.412550926208496,2.870937585830688,7.103941440582275,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_037" + Matrix: 0.000031045732612,0.000056540655351,-0.000026729063393,0.000000000000000,-0.000017486041543,-0.000038428857806,-0.000101599507616,0.000000000000000,-0.000091453672212,0.000048911133490,-0.000002760225470,0.000000000000000,-2.678874969482422,2.914547681808472,7.379035472869873,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_036" + Matrix: 0.174619883298874,0.186553835868835,-0.304636627435684,0.000000000000000,-0.221840217709541,-0.209141328930855,-0.255234718322754,0.000000000000000,-0.279987037181854,0.282055765390396,0.012235194444656,0.000000000000000,-2.564295053482056,4.380326271057129,7.354087352752686,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_035" + Matrix: 0.105086766183376,0.217683687806129,-0.296999573707581,0.000000000000000,-0.350965917110443,-0.034257169812918,-0.149290144443512,0.000000000000000,-0.111435502767563,0.313174724578857,0.190110221505165,0.000000000000000,-2.594812393188477,4.265262126922607,7.206467151641846,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_034" + Matrix: 0.104092210531235,-0.131661400198936,-0.155602574348450,0.000000000000000,0.023653175681829,0.154285833239555,-0.114724203944206,0.000000000000000,0.201905727386475,0.042647335678339,0.098981678485870,0.000000000000000,-2.854448318481445,6.718111515045166,7.277471542358398,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_026" + Matrix: -0.384624987840652,0.000000000000000,-1.046018719673157,0.000000000000000,-1.076523900032043,0.000000000000000,0.395841926336288,0.000000000000000,0.000000000000000,0.857102096080780,0.000000000000000,0.000000000000000,-2.652657270431519,4.076121330261230,7.376476764678955,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_033" + Matrix: -0.000000751726986,0.000056540655351,-0.000040959923354,0.000000000000000,-0.000089361994469,-0.000038428857806,-0.000051406761486,0.000000000000000,-0.000060512204072,0.000048911133490,0.000068626999564,0.000000000000000,-2.793609380722046,2.914547681808472,7.913455486297607,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_025" + Matrix: 1.518536210060120,0.000000000000000,0.855026960372925,0.000000000000000,0.855026960372925,0.000000000000000,-1.518536210060120,0.000000000000000,0.000000000000000,1.196636438369751,0.000000000000000,0.000000000000000,-2.653171777725220,3.110826969146729,7.604828357696533,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_056" + Matrix: 1.944377899169922,0.000000000000000,-0.703142344951630,0.000000000000000,-0.703142344951630,0.000000000000000,-1.944377899169922,0.000000000000000,0.000000000000000,1.419734120368958,0.000000000000000,0.000000000000000,5.786889076232910,2.707654714584351,-3.931373357772827,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_092" + Matrix: -0.000037404432078,0.000067081942689,-0.000031037259760,0.000000000000000,-0.000115402130177,-0.000045593435061,0.000040533741412,0.000000000000000,0.000014843416466,0.000058029992942,0.000107533815026,0.000000000000000,5.955607414245605,2.474781513214111,-3.566168546676636,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_055" + Matrix: -1.238150954246521,0.000000000000000,-0.464103013277054,0.000000000000000,-0.477637708187103,0.000000000000000,1.274259328842163,0.000000000000000,0.000000000000000,1.016897916793823,0.000000000000000,0.000000000000000,5.582002639770508,3.852916240692139,-4.108635902404785,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_091" + Matrix: -0.059291638433933,-0.156207993626595,-0.214052125811577,0.000000000000000,-0.084822118282318,0.183050468564034,-0.110088616609573,0.000000000000000,0.245307847857475,0.050598390400410,-0.104874335229397,0.000000000000000,5.336762428283691,6.987471580505371,-4.003883361816406,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_090" + Matrix: -0.185635581612587,0.258268058300018,-0.324422270059586,0.000000000000000,-0.405943691730499,-0.040643982589245,0.199926316738129,0.000000000000000,0.084628030657768,0.371562182903290,0.247371047735214,0.000000000000000,5.473952293395996,4.077319622039795,-4.292267322540283,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_089" + Matrix: -0.138665452599525,0.221334427595139,-0.392844557762146,0.000000000000000,-0.401211380958557,-0.248133078217506,0.001816917909309,0.000000000000000,-0.205779537558556,0.334641486406326,0.261177569627762,0.000000000000000,5.630289077758789,4.213836193084717,-4.205407619476318,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_088" + Matrix: 0.000000007967616,0.000067081942689,-0.000048604557378,0.000000000000000,-0.000104875063698,-0.000045593435061,-0.000062943290686,0.000000000000000,-0.000073289025750,0.000058029992942,0.000080078512838,0.000000000000000,5.564003944396973,2.474781513214111,-4.083086013793945,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_054" + Matrix: -1.710481166839600,-0.144404694437981,-0.310688138008118,0.000000000000000,-0.299528628587723,-0.052079163491726,1.673248648643494,0.000000000000000,-0.194114819169044,2.225061178207397,0.034505560994148,0.000000000000000,5.522898197174072,2.423041105270386,-4.535497665405273,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_053" + Matrix: 0.000000168351747,0.000000000000000,-2.210129737854004,0.000000000000000,-2.229886531829834,0.000000000000000,-0.000000166860161,0.000000000000000,0.000000000000000,2.008620023727417,0.000000000000000,0.000000000000000,5.569165706634521,2.577661037445068,-4.219165325164795,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_052" + Matrix: -0.174977868795395,0.000000000000000,-2.000007390975952,0.000000000000000,-2.000007390975952,0.000000000000000,0.174977868795395,0.000000000000000,0.000000000000000,0.946335315704346,0.000000000000000,0.000000000000000,5.610445022583008,2.225479125976562,-4.171072006225586,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_051" + Matrix: 2.270098686218262,0.000000000000000,0.153371557593346,0.000000000000000,0.153371557593346,0.000000000000000,-2.270098686218262,0.000000000000000,0.000000000000000,1.157490968704224,0.000000000000000,0.000000000000000,5.395658493041992,3.016841411590576,-3.933375835418701,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_050" + Matrix: -0.704720497131348,-0.022850435227156,-0.991633832454681,0.000000000000000,-0.992171108722687,-0.061452209949493,0.706518411636353,0.000000000000000,-0.051084164530039,0.982000470161438,0.013675328344107,0.000000000000000,5.878613471984863,3.595657348632812,-3.823127508163452,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_049" + Matrix: 0.000000079505405,0.000000000000000,-1.053081035614014,0.000000000000000,-1.053081035614014,0.000000000000000,-0.000000079505405,0.000000000000000,0.000000000000000,1.077158570289612,0.000000000000000,0.000000000000000,5.495421409606934,2.225479125976562,-4.253108978271484,1.000000000000000 + } + PoseNode: { + Node: "Model::fireA_006" + Matrix: 0.000000229428508,0.000000000000000,-3.038872718811035,0.000000000000000,-3.038872718811035,0.000000000000000,-0.000000229428508,0.000000000000000,0.000000000000000,2.931418895721436,0.000000000000000,0.000000000000000,5.556103706359863,2.202894210815430,-4.253108978271484,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_082" + Matrix: -0.914724647998810,-0.802629292011261,-0.173904955387115,0.000000000000000,0.364240169525146,-0.405643463134766,-0.043691679835320,0.000000000000000,-0.064863026142120,-0.188890770077705,1.212967872619629,0.000000000000000,-2.974679470062256,4.408100605010986,8.202625274658203,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_081" + Matrix: -0.285423219203949,0.803509414196014,-0.885485291481018,0.000000000000000,-0.213188871741295,-0.405279248952866,-0.299041301012039,0.000000000000000,-1.095491647720337,0.189097881317139,0.524707436561584,0.000000000000000,-2.974679470062256,4.408100605010986,8.202625274658203,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_080" + Matrix: 0.735167503356934,-0.006156623829156,-0.497792065143585,0.000000000000000,0.010654349811375,0.867776155471802,0.005002404097468,0.000000000000000,0.497710824012756,-0.010348785668612,0.735175490379333,0.000000000000000,-3.111337900161743,4.744021892547607,8.217212677001953,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_079" + Matrix: 0.024546284228563,0.091917954385281,-0.053931634873152,0.000000000000000,-0.073439687490463,-0.045459788292646,-0.110904157161713,0.000000000000000,-0.111187465488911,0.058759931474924,0.049541499465704,0.000000000000000,-2.979427814483643,6.107761859893799,8.243808746337891,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_078" + Matrix: -0.004392344970256,0.039728533476591,-0.057329103350639,0.000000000000000,-0.069600187242031,-0.006252130959183,0.000999844982289,0.000000000000000,-0.004560276865959,0.057156190276146,0.039958093315363,0.000000000000000,-2.961974382400513,4.277242660522461,8.124505996704102,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_077" + Matrix: -0.172862917184830,0.819597482681274,-0.422679990530014,0.000000000000000,-1.146056771278381,-0.387252062559128,-0.282199382781982,0.000000000000000,-0.419716596603394,0.462923645973206,1.069282889366150,0.000000000000000,-2.907489538192749,5.555242061614990,8.039398193359375,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_076" + Matrix: 0.226306602358818,0.258037686347961,-0.346884429454803,0.000000000000000,-0.272304356098175,-0.220370143651962,-0.341577976942062,0.000000000000000,-0.337332129478455,0.352041274309158,0.041799023747444,0.000000000000000,-2.996356487274170,4.560026168823242,8.270252227783203,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_075" + Matrix: 1.091305255889893,-0.020708616822958,-0.483159989118576,0.000000000000000,0.030056901276112,1.085371971130371,0.021369086578488,0.000000000000000,0.482473820447922,-0.034845814108849,1.091249227523804,0.000000000000000,-3.113774299621582,6.094217777252197,8.218936920166016,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_074" + Matrix: 1.857207298278809,-0.032250571995974,-0.073582172393799,0.000000000000000,0.031261209398508,1.690304636955261,0.048180229961872,0.000000000000000,0.072620928287506,-0.054267149418592,1.856732606887817,0.000000000000000,-3.433796405792236,7.083426952362061,8.487302780151367,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_073" + Matrix: 0.526634573936462,0.401855111122131,-0.372434347867966,0.000000000000000,-0.198332786560059,-0.343193531036377,-0.650753557682037,0.000000000000000,-0.512388706207275,0.548251628875732,-0.132973462343216,0.000000000000000,-3.293224811553955,4.694152832031250,8.628951072692871,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_072" + Matrix: -0.007834590040147,1.276400566101074,-0.711139380931854,0.000000000000000,-1.497471809387207,-0.603087186813354,-1.065963625907898,0.000000000000000,-1.221033334732056,0.720934331417084,1.307433485984802,0.000000000000000,-3.032139539718628,6.244052886962891,8.345678329467773,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_071" + Matrix: 0.026524312794209,0.061871249228716,-0.085524506866932,0.000000000000000,-0.101345509290695,-0.009736758656800,-0.038474883884192,0.000000000000000,-0.029522564262152,0.089012227952480,0.055238336324692,0.000000000000000,-3.159844160079956,4.253759860992432,8.437650680541992,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_070" + Matrix: 0.066474892199039,0.143148466944695,-0.064006268978119,0.000000000000000,-0.042716685682535,-0.070796832442284,-0.202699586749077,0.000000000000000,-0.189401835203171,0.091509804129601,0.007952719926834,0.000000000000000,-3.253546714782715,7.104519844055176,8.600375175476074,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_069" + Matrix: 1.349959254264832,-0.009588021785021,-0.299047350883484,0.000000000000000,0.012556738220155,1.351431608200073,0.013354142196476,0.000000000000000,0.298925131559372,-0.016116686165333,1.349924087524414,0.000000000000000,-3.429279804229736,4.980698585510254,8.486203193664551,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_068" + Matrix: 0.094656951725483,1.251345753669739,-1.445785284042358,0.000000000000000,-0.137140214443207,-0.631161808967590,-0.555257499217987,0.000000000000000,-1.887100100517273,0.294491678476334,0.131336152553558,0.000000000000000,-3.223048686981201,4.457551479339600,8.543469429016113,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_067" + Matrix: -1.224650382995605,-1.249975323677063,-0.776475906372070,0.000000000000000,0.552433669567108,-0.631729066371918,0.145667552947998,0.000000000000000,-0.789669096469879,-0.294169157743454,1.719013929367065,0.000000000000000,-3.223048686981201,4.457551479339600,8.543469429016113,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_061" + Matrix: 0.404389917850494,-0.917455792427063,-0.984498798847198,0.000000000000000,-0.034550651907921,-0.463675975799561,0.417908281087875,0.000000000000000,-1.343477606773376,-0.215914040803909,-0.350632429122925,0.000000000000000,5.899329185485840,2.060621261596680,-3.677444458007812,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_060" + Matrix: 1.057026743888855,0.918461799621582,-0.116690441966057,0.000000000000000,0.383741706609726,-0.463259667158127,-0.170203655958176,0.000000000000000,-0.336522579193115,0.216150775551796,-1.347043275833130,0.000000000000000,5.899329185485840,2.060621261596680,-3.677444458007812,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_059" + Matrix: 0.388962686061859,-0.007037408184260,0.937365174293518,0.000000000000000,-0.008043778128922,0.991922736167908,0.010784802027047,0.000000000000000,-0.937355518341064,-0.011829311959445,0.388869851827621,0.000000000000000,5.914313793182373,2.444600582122803,-3.833824872970581,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_058" + Matrix: 0.054769728332758,0.105068005621433,0.039848569780588,0.000000000000000,0.141027495265007,-0.051963400095701,-0.056823797523975,0.000000000000000,-0.029996462166309,0.067166298627853,-0.135867625474930,0.000000000000000,5.854297637939453,4.003440856933594,-3.692200660705566,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_057" + Matrix: 0.065206721425056,0.045412208884954,0.008220270276070,0.000000000000000,0.014831726439297,-0.007146578747779,-0.078170999884605,0.000000000000000,-0.043701961636543,0.065333120524883,-0.014264675788581,0.000000000000000,5.983899116516113,1.911042571067810,-3.645312786102295,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_056" + Matrix: 0.512956440448761,0.936851501464844,-0.096708327531815,0.000000000000000,0.578681707382202,-0.442653477191925,-1.218736767768860,0.000000000000000,-1.101244211196899,0.529150843620300,-0.715084969997406,0.000000000000000,6.066720485687256,3.371876239776611,-3.564792394638062,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_055" + Matrix: 0.336592555046082,0.294953316450119,0.332930833101273,0.000000000000000,0.444924890995026,-0.251896917819977,-0.226655364036560,0.000000000000000,0.030503183603287,0.402405321598053,-0.387341499328613,0.000000000000000,5.828564643859863,2.234281539916992,-3.717218637466431,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_054" + Matrix: 0.290955126285553,-0.023671250790358,1.332833051681519,0.000000000000000,-0.030818821862340,1.240648388862610,0.028761753812432,0.000000000000000,-1.332612991333008,-0.039830956608057,0.290199577808380,0.000000000000000,5.912940979003906,3.987959146499634,-3.836948394775391,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_053" + Matrix: 0.686332523822784,-0.016519803553820,0.659835457801819,0.000000000000000,-0.006700000260025,0.865829586982727,0.028646189719439,0.000000000000000,-0.660001277923584,-0.027797417715192,0.685808956623077,0.000000000000000,4.948246479034424,4.884450912475586,-11.341142654418945,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_052" + Matrix: 0.324468791484833,0.205843403935432,0.062326654791832,0.000000000000000,0.169961124658585,-0.175795018672943,-0.304217129945755,0.000000000000000,-0.132742553949356,0.280832499265671,-0.236443072557449,0.000000000000000,4.945820808410645,3.660585880279541,-11.238949775695801,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_051" + Matrix: 0.259875446557999,0.653814315795898,-0.255289435386658,0.000000000000000,-0.137769997119904,-0.308921068906784,-0.931413531303406,0.000000000000000,-0.916260659694672,0.369286268949509,0.013047829270363,0.000000000000000,5.143109798431396,4.454495906829834,-11.243057250976562,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_050" + Matrix: 0.041002031415701,0.031692486256361,-0.020557504147291,0.000000000000000,-0.021758764982224,-0.004987488035113,-0.051086906343699,0.000000000000000,-0.030880104750395,0.045594986528158,0.008701024577022,0.000000000000000,5.063815593719482,3.435002326965332,-11.257581710815430,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_049" + Matrix: 0.047233525663614,0.073325350880623,0.001835258328356,0.000000000000000,0.059705279767513,-0.036264464259148,-0.087718836963177,0.000000000000000,-0.070159323513508,0.046874329447746,-0.067132152616978,0.000000000000000,4.970457553863525,4.895255088806152,-11.234436988830566,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_048" + Matrix: 0.589575827121735,-0.004911299329251,0.392464190721512,0.000000000000000,-0.000475686130812,0.692247688770294,0.009377392940223,0.000000000000000,-0.392494618892670,-0.008255496621132,0.589518249034882,0.000000000000000,4.950255393981934,3.807364225387573,-11.339864730834961,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_047" + Matrix: 0.567589700222015,0.640980422496796,-0.478173315525055,0.000000000000000,0.156408399343491,-0.323301821947098,-0.247722700238228,0.000000000000000,-0.718273162841797,0.150848314166069,-0.650378406047821,0.000000000000000,5.002299785614014,3.539390802383423,-11.243369102478027,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_046" + Matrix: -0.147861972451210,-0.640278398990631,-0.727903902530670,0.000000000000000,0.142266705632210,-0.323592394590378,0.255738824605942,0.000000000000000,-0.915177285671234,-0.150683104991913,0.318447351455688,0.000000000000000,5.002299785614014,3.539390802383423,-11.243369102478027,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_045" + Matrix: -0.718549609184265,-0.733408689498901,-0.455588221549988,0.000000000000000,0.324134111404419,-0.370659798383713,0.085468754172325,0.000000000000000,-0.463329255580902,-0.172600388526917,1.008611679077148,0.000000000000000,9.279879570007324,5.662768363952637,-10.971060752868652,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_044" + Matrix: 0.055538870394230,0.734212815761566,-0.848297953605652,0.000000000000000,-0.080465450882912,-0.370326995849609,-0.325790971517563,0.000000000000000,-1.107234358787537,0.172789633274078,0.077059984207153,0.000000000000000,9.279879570007324,5.662768363952637,-10.971060752868652,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_043" + Matrix: 0.792073071002960,-0.005625661928207,-0.175462663173676,0.000000000000000,0.007367522455752,0.792937040328979,0.007835390046239,0.000000000000000,0.175390928983688,-0.009456281550229,0.792052507400513,0.000000000000000,9.158875465393066,5.969718933105469,-11.004661560058594,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_042" + Matrix: 0.039003383368254,0.083990730345249,-0.037554949522018,0.000000000000000,-0.025063529610634,-0.041539225727320,-0.118931658565998,0.000000000000000,-0.111129358410835,0.053692333400249,0.004666175693274,0.000000000000000,9.261984825134277,7.215847015380859,-10.937672615051270,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_041" + Matrix: 0.015562837012112,0.036302249878645,-0.050180524587631,0.000000000000000,-0.059463314712048,-0.005712931975722,-0.022574691101909,0.000000000000000,-0.017322026193142,0.052226904779673,0.032410465180874,0.000000000000000,9.316964149475098,5.543195724487305,-11.033148765563965,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_040" + Matrix: -0.004596882499754,0.748913407325745,-0.417252838611603,0.000000000000000,-0.878624439239502,-0.353854507207870,-0.625441968441010,0.000000000000000,-0.716427326202393,0.422999978065491,0.767121613025665,0.000000000000000,9.391893386840820,6.710977554321289,-11.087112426757812,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_039" + Matrix: 0.308996826410294,0.235783889889717,-0.218521624803543,0.000000000000000,-0.116369508206844,-0.201364889740944,-0.381822228431702,0.000000000000000,-0.300638198852539,0.321680396795273,-0.078020654618740,0.000000000000000,9.238704681396484,5.801591396331787,-10.920905113220215,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_038" + Matrix: 1.089695096015930,-0.018922654911876,-0.043173525482416,0.000000000000000,0.018342157825828,0.991766870021820,0.028269195929170,0.000000000000000,0.042609542608261,-0.031840629875660,1.089416503906250,0.000000000000000,9.156226158142090,7.203470706939697,-11.004015922546387,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_024" + Matrix: 1.796360850334167,0.000000000000000,-0.804965972900391,0.000000000000000,-0.890788078308105,0.000000000000000,-1.380993127822876,0.000000000000000,0.000000000000000,1.090890884399414,0.000000000000000,0.000000000000000,1.198114871978760,4.562223434448242,-13.309846878051758,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_032" + Matrix: -0.000039445243601,0.000051544215239,-0.000018405740775,0.000000000000000,-0.000106748571852,-0.000035032939195,0.000046864282922,0.000000000000000,0.000026097757654,0.000044588905439,0.000079717334302,0.000000000000000,1.400741577148438,4.383288860321045,-13.055554389953613,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_023" + Matrix: -1.243918061256409,0.000000000000000,-0.180880621075630,0.000000000000000,-0.320448905229568,0.000000000000000,1.035463094711304,0.000000000000000,0.000000000000000,0.781360864639282,0.000000000000000,0.000000000000000,0.981253802776337,5.442215919494629,-13.416182518005371,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_031" + Matrix: -0.080609597265720,-0.120026610791683,-0.154548034071922,0.000000000000000,-0.093805395066738,0.140651747584343,-0.071934945881367,0.000000000000000,0.224860563874245,0.038878634572029,-0.113849490880966,0.000000000000000,0.756048738956451,7.850735664367676,-13.302139282226562,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_030" + Matrix: -0.214453876018524,0.198447212576866,-0.220926508307457,0.000000000000000,-0.369213551282883,-0.031229896470904,0.208461657166481,0.000000000000000,0.108677051961422,0.285499811172485,0.176366135478020,0.000000000000000,0.857000112533569,5.646591663360596,-13.540819168090820,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_029" + Matrix: -0.176608890295029,0.170068264007568,-0.279530674219131,0.000000000000000,-0.409912079572678,-0.202263146638870,0.060535494238138,0.000000000000000,-0.169698193669319,0.257130771875381,0.227195054292679,0.000000000000000,1.017164826393127,5.756433486938477,-13.496488571166992,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_028" + Matrix: -0.000005323812729,0.000051544215239,-0.000036965207983,0.000000000000000,-0.000107955827843,-0.000035032939195,-0.000033293716115,0.000000000000000,-0.000061833139625,0.000044588905439,0.000071085654781,0.000000000000000,0.966713845729828,4.383288860321045,-13.394249916076660,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_022" + Matrix: -1.682199597358704,-0.110957227647305,0.001434882637113,0.000000000000000,-0.105067782104015,-0.040016423910856,1.314144372940063,0.000000000000000,-0.183252781629562,1.709685564041138,0.053218960762024,0.000000000000000,0.877481520175934,4.343532562255859,-13.732599258422852,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_021" + Matrix: -0.753917038440704,0.000000000000000,-0.921797454357147,0.000000000000000,-1.517423510551453,0.000000000000000,0.833601713180542,0.000000000000000,0.000000000000000,1.646280884742737,0.000000000000000,0.000000000000000,1.106147646903992,4.657669067382812,-13.546355247497559,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_020" + Matrix: -0.387981563806534,0.000000000000000,-1.496701598167419,0.000000000000000,-1.907896995544434,0.000000000000000,0.411024332046509,0.000000000000000,0.000000000000000,0.727142214775085,0.000000000000000,0.000000000000000,1.001810550689697,4.191730499267578,-13.467617988586426,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_019" + Matrix: 2.204158306121826,0.000000000000000,-0.198848471045494,0.000000000000000,-0.101229846477509,0.000000000000000,-1.747740626335144,0.000000000000000,0.000000000000000,0.889389276504517,0.000000000000000,0.000000000000000,0.820927798748016,4.799795150756836,-13.256999015808105,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_018" + Matrix: -0.787801086902618,-0.017557743936777,-0.656205356121063,0.000000000000000,-0.878499448299408,-0.047218456864357,0.675199806690216,0.000000000000000,-0.047721661627293,0.754546463489532,0.017499640583992,0.000000000000000,1.298368453979492,5.244544029235840,-13.240272521972656,1.000000000000000 + } + PoseNode: { + Node: "Model::fireB_017" + Matrix: -0.115513592958450,0.000000000000000,-0.800875425338745,0.000000000000000,-1.014687538146973,0.000000000000000,0.146352633833885,0.000000000000000,0.000000000000000,0.827663779258728,0.000000000000000,0.000000000000000,0.881981790065765,4.191730499267578,-13.514022827148438,1.000000000000000 + } + PoseNode: { + Node: "Model::fireA_002" + Matrix: -0.333058059215546,0.000000000000000,-2.309148311614990,0.000000000000000,-2.925628662109375,0.000000000000000,0.421975672245026,0.000000000000000,0.000000000000000,3.031788587570190,0.000000000000000,0.000000000000000,0.940451800823212,4.174376964569092,-13.522456169128418,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_022" + Matrix: 1.073520064353943,-0.033755354583263,-1.622371077537537,0.000000000000000,0.060042236000299,1.769172430038452,0.002920081140473,0.000000000000000,1.621379852294922,-0.056799199432135,1.074046015739441,0.000000000000000,5.825566768646240,6.186756134033203,-10.044596672058105,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_021" + Matrix: 0.005815587006509,0.420605272054672,-0.675091385841370,0.000000000000000,-0.674013733863831,-0.359206616878510,-0.229604437947273,0.000000000000000,-0.426354438066483,0.573832511901855,0.353844672441483,0.000000000000000,6.031856536865234,3.686001062393188,-10.077342987060547,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_020" + Matrix: -0.608776807785034,1.335956096649170,-0.428334981203079,0.000000000000000,-1.821315884590149,-0.631226599216461,0.619804322719574,0.000000000000000,0.363548249006271,0.754572451114655,1.836777210235596,0.000000000000000,5.950967311859131,5.308218002319336,-10.472359657287598,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_019" + Matrix: -0.056413263082504,0.064758099615574,-0.074841171503067,0.000000000000000,-0.094668395817280,-0.010191066190600,0.062540434300900,0.000000000000000,0.028856664896011,0.093165442347527,0.058862227946520,0.000000000000000,5.950967311859131,3.225059986114502,-10.307640075683594,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_018" + Matrix: -0.013700474053621,0.149827629327774,-0.095609717071056,0.000000000000000,-0.198285624384880,-0.074100129306316,-0.087706990540028,0.000000000000000,-0.109098739922047,0.095779560506344,0.165727198123932,0.000000000000000,6.031856536865234,6.208833694458008,-10.128521919250488,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_017" + Matrix: 0.571754992008209,-0.010035389102995,-1.329467654228210,0.000000000000000,0.019022626802325,1.414488077163696,-0.002496234374121,0.000000000000000,1.329363226890564,-0.016868675127625,0.571837365627289,0.000000000000000,5.827395915985107,3.985917091369629,-10.049104690551758,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_016" + Matrix: -1.170034050941467,1.309732317924500,-0.964750647544861,0.000000000000000,-0.555476844310760,-0.660611212253571,-0.223163545131683,0.000000000000000,-1.042753338813782,0.308232367038727,1.683086514472961,0.000000000000000,6.002180576324463,3.438360214233398,-10.189231872558594,1.000000000000000 + } + PoseNode: { + Node: "Model::smoke_015" + Matrix: -1.408569097518921,-1.308297872543335,0.565165460109711,0.000000000000000,0.461630403995514,-0.661204934120178,-0.380090922117233,0.000000000000000,0.976967990398407,-0.307894796133041,1.722166180610657,0.000000000000000,6.002180576324463,3.438360214233398,-10.189231872558594,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",1 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::gt_fire_1_003", "Null" { + } + Model: "Model::gt_fire_1_002", "Null" { + } + Model: "Model::gt_fire_1_001", "Null" { + } + Model: "Model::gt_smoke_1_006", "Null" { + } + Model: "Model::gt_smoke_1_005", "Null" { + } + Model: "Model::gt_smoke_1_004", "Null" { + } + Model: "Model::gt_smoke_1_003", "Null" { + } + Model: "Model::gt_smoke_1_002", "Null" { + } + Model: "Model::gt_fire_2_002", "Null" { + } + Model: "Model::gt_smoke_1_001", "Null" { + } + Model: "Model::scene", "Mesh" { + } + Model: "Model::fireB_016", "Mesh" { + } + Model: "Model::smoke_027", "Mesh" { + } + Model: "Model::fireB_015", "Mesh" { + } + Model: "Model::smoke_026", "Mesh" { + } + Model: "Model::smoke_025", "Mesh" { + } + Model: "Model::smoke_024", "Mesh" { + } + Model: "Model::smoke_023", "Mesh" { + } + Model: "Model::fireB_014", "Mesh" { + } + Model: "Model::fireB_013", "Mesh" { + } + Model: "Model::fireB_012", "Mesh" { + } + Model: "Model::fireB_011", "Mesh" { + } + Model: "Model::fireB_010", "Mesh" { + } + Model: "Model::fireB_009", "Mesh" { + } + Model: "Model::fireA_001", "Mesh" { + } + Model: "Model::navigation", "Mesh" { + } + Model: "Model::fireA_003", "Mesh" { + } + Model: "Model::fireB_032", "Mesh" { + } + Model: "Model::fireB_031", "Mesh" { + } + Model: "Model::fireB_030", "Mesh" { + } + Model: "Model::fireB_029", "Mesh" { + } + Model: "Model::fireB_028", "Mesh" { + } + Model: "Model::fireB_027", "Mesh" { + } + Model: "Model::smoke_037", "Mesh" { + } + Model: "Model::smoke_036", "Mesh" { + } + Model: "Model::smoke_035", "Mesh" { + } + Model: "Model::smoke_034", "Mesh" { + } + Model: "Model::fireB_026", "Mesh" { + } + Model: "Model::smoke_033", "Mesh" { + } + Model: "Model::fireB_025", "Mesh" { + } + Model: "Model::fireB_056", "Mesh" { + } + Model: "Model::smoke_092", "Mesh" { + } + Model: "Model::fireB_055", "Mesh" { + } + Model: "Model::smoke_091", "Mesh" { + } + Model: "Model::smoke_090", "Mesh" { + } + Model: "Model::smoke_089", "Mesh" { + } + Model: "Model::smoke_088", "Mesh" { + } + Model: "Model::fireB_054", "Mesh" { + } + Model: "Model::fireB_053", "Mesh" { + } + Model: "Model::fireB_052", "Mesh" { + } + Model: "Model::fireB_051", "Mesh" { + } + Model: "Model::fireB_050", "Mesh" { + } + Model: "Model::fireB_049", "Mesh" { + } + Model: "Model::fireA_006", "Mesh" { + } + Model: "Model::smoke_082", "Mesh" { + } + Model: "Model::smoke_081", "Mesh" { + } + Model: "Model::smoke_080", "Mesh" { + } + Model: "Model::smoke_079", "Mesh" { + } + Model: "Model::smoke_078", "Mesh" { + } + Model: "Model::smoke_077", "Mesh" { + } + Model: "Model::smoke_076", "Mesh" { + } + Model: "Model::smoke_075", "Mesh" { + } + Model: "Model::smoke_074", "Mesh" { + } + Model: "Model::smoke_073", "Mesh" { + } + Model: "Model::smoke_072", "Mesh" { + } + Model: "Model::smoke_071", "Mesh" { + } + Model: "Model::smoke_070", "Mesh" { + } + Model: "Model::smoke_069", "Mesh" { + } + Model: "Model::smoke_068", "Mesh" { + } + Model: "Model::smoke_067", "Mesh" { + } + Model: "Model::smoke_061", "Mesh" { + } + Model: "Model::smoke_060", "Mesh" { + } + Model: "Model::smoke_059", "Mesh" { + } + Model: "Model::smoke_058", "Mesh" { + } + Model: "Model::smoke_057", "Mesh" { + } + Model: "Model::smoke_056", "Mesh" { + } + Model: "Model::smoke_055", "Mesh" { + } + Model: "Model::smoke_054", "Mesh" { + } + Model: "Model::smoke_053", "Mesh" { + } + Model: "Model::smoke_052", "Mesh" { + } + Model: "Model::smoke_051", "Mesh" { + } + Model: "Model::smoke_050", "Mesh" { + } + Model: "Model::smoke_049", "Mesh" { + } + Model: "Model::smoke_048", "Mesh" { + } + Model: "Model::smoke_047", "Mesh" { + } + Model: "Model::smoke_046", "Mesh" { + } + Model: "Model::smoke_045", "Mesh" { + } + Model: "Model::smoke_044", "Mesh" { + } + Model: "Model::smoke_043", "Mesh" { + } + Model: "Model::smoke_042", "Mesh" { + } + Model: "Model::smoke_041", "Mesh" { + } + Model: "Model::smoke_040", "Mesh" { + } + Model: "Model::smoke_039", "Mesh" { + } + Model: "Model::smoke_038", "Mesh" { + } + Model: "Model::fireB_024", "Mesh" { + } + Model: "Model::smoke_032", "Mesh" { + } + Model: "Model::fireB_023", "Mesh" { + } + Model: "Model::smoke_031", "Mesh" { + } + Model: "Model::smoke_030", "Mesh" { + } + Model: "Model::smoke_029", "Mesh" { + } + Model: "Model::smoke_028", "Mesh" { + } + Model: "Model::fireB_022", "Mesh" { + } + Model: "Model::fireB_021", "Mesh" { + } + Model: "Model::fireB_020", "Mesh" { + } + Model: "Model::fireB_019", "Mesh" { + } + Model: "Model::fireB_018", "Mesh" { + } + Model: "Model::fireB_017", "Mesh" { + } + Model: "Model::fireA_002", "Mesh" { + } + Model: "Model::smoke_022", "Mesh" { + } + Model: "Model::smoke_021", "Mesh" { + } + Model: "Model::smoke_020", "Mesh" { + } + Model: "Model::smoke_019", "Mesh" { + } + Model: "Model::smoke_018", "Mesh" { + } + Model: "Model::smoke_017", "Mesh" { + } + Model: "Model::smoke_016", "Mesh" { + } + Model: "Model::smoke_015", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::fire", "" { + } + Material: "Material::texture01", "" { + } + Material: "Material::trans", "" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::scene", "Model::Scene" + Connect: "OO", "Model::fireB_016", "Model::gt_fire_1_003" + Connect: "OO", "Model::smoke_027", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_015", "Model::gt_fire_1_003" + Connect: "OO", "Model::smoke_026", "Model::gt_fire_1_003" + Connect: "OO", "Model::smoke_025", "Model::gt_fire_1_003" + Connect: "OO", "Model::smoke_024", "Model::gt_fire_1_003" + Connect: "OO", "Model::smoke_023", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_014", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_013", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_012", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_011", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_010", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireB_009", "Model::gt_fire_1_003" + Connect: "OO", "Model::fireA_001", "Model::gt_fire_1_003" + Connect: "OO", "Model::navigation", "Model::Scene" + Connect: "OO", "Model::fireA_003", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_032", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_031", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_030", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_029", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_028", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_027", "Model::gt_fire_1_002" + Connect: "OO", "Model::smoke_037", "Model::gt_fire_1_002" + Connect: "OO", "Model::smoke_036", "Model::gt_fire_1_002" + Connect: "OO", "Model::smoke_035", "Model::gt_fire_1_002" + Connect: "OO", "Model::smoke_034", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_026", "Model::gt_fire_1_002" + Connect: "OO", "Model::smoke_033", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_025", "Model::gt_fire_1_002" + Connect: "OO", "Model::fireB_056", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_092", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_055", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_091", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_090", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_089", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_088", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_054", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_053", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_052", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_051", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_050", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireB_049", "Model::gt_fire_1_001" + Connect: "OO", "Model::fireA_006", "Model::gt_fire_1_001" + Connect: "OO", "Model::smoke_082", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_081", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_080", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_079", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_078", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_077", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_076", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_075", "Model::gt_smoke_1_006" + Connect: "OO", "Model::smoke_074", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_073", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_072", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_071", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_070", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_069", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_068", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_067", "Model::gt_smoke_1_005" + Connect: "OO", "Model::smoke_061", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_060", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_059", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_058", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_057", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_056", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_055", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_054", "Model::gt_smoke_1_004" + Connect: "OO", "Model::smoke_053", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_052", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_051", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_050", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_049", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_048", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_047", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_046", "Model::gt_smoke_1_003" + Connect: "OO", "Model::smoke_045", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_044", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_043", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_042", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_041", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_040", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_039", "Model::gt_smoke_1_002" + Connect: "OO", "Model::smoke_038", "Model::gt_smoke_1_002" + Connect: "OO", "Model::fireB_024", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_032", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_023", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_031", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_030", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_029", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_028", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_022", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_021", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_020", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_019", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_018", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireB_017", "Model::gt_fire_2_002" + Connect: "OO", "Model::fireA_002", "Model::gt_fire_2_002" + Connect: "OO", "Model::smoke_022", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_021", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_020", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_019", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_018", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_017", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_016", "Model::gt_smoke_1_001" + Connect: "OO", "Model::smoke_015", "Model::gt_smoke_1_001" + Connect: "OO", "Model::gt_fire_1_003", "Model::Scene" + Connect: "OO", "Model::gt_fire_1_002", "Model::Scene" + Connect: "OO", "Model::gt_fire_1_001", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_006", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_005", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_004", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_003", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_002", "Model::Scene" + Connect: "OO", "Model::gt_fire_2_002", "Model::Scene" + Connect: "OO", "Model::gt_smoke_1_001", "Model::Scene" + Connect: "OO", "Material::texture01", "Model::scene" + Connect: "OO", "Material::fire", "Model::fireB_016" + Connect: "OO", "Material::fire", "Model::smoke_027" + Connect: "OO", "Material::fire", "Model::fireB_015" + Connect: "OO", "Material::fire", "Model::smoke_026" + Connect: "OO", "Material::fire", "Model::smoke_025" + Connect: "OO", "Material::fire", "Model::smoke_024" + Connect: "OO", "Material::fire", "Model::smoke_023" + Connect: "OO", "Material::fire", "Model::fireB_014" + Connect: "OO", "Material::fire", "Model::fireB_013" + Connect: "OO", "Material::fire", "Model::fireB_012" + Connect: "OO", "Material::fire", "Model::fireB_011" + Connect: "OO", "Material::fire", "Model::fireB_010" + Connect: "OO", "Material::fire", "Model::fireB_009" + Connect: "OO", "Material::fire", "Model::fireA_001" + Connect: "OO", "Material::trans", "Model::navigation" + Connect: "OO", "Material::fire", "Model::fireA_003" + Connect: "OO", "Material::fire", "Model::fireB_032" + Connect: "OO", "Material::fire", "Model::fireB_031" + Connect: "OO", "Material::fire", "Model::fireB_030" + Connect: "OO", "Material::fire", "Model::fireB_029" + Connect: "OO", "Material::fire", "Model::fireB_028" + Connect: "OO", "Material::fire", "Model::fireB_027" + Connect: "OO", "Material::fire", "Model::smoke_037" + Connect: "OO", "Material::fire", "Model::smoke_036" + Connect: "OO", "Material::fire", "Model::smoke_035" + Connect: "OO", "Material::fire", "Model::smoke_034" + Connect: "OO", "Material::fire", "Model::fireB_026" + Connect: "OO", "Material::fire", "Model::smoke_033" + Connect: "OO", "Material::fire", "Model::fireB_025" + Connect: "OO", "Material::fire", "Model::fireB_056" + Connect: "OO", "Material::fire", "Model::smoke_092" + Connect: "OO", "Material::fire", "Model::fireB_055" + Connect: "OO", "Material::fire", "Model::smoke_091" + Connect: "OO", "Material::fire", "Model::smoke_090" + Connect: "OO", "Material::fire", "Model::smoke_089" + Connect: "OO", "Material::fire", "Model::smoke_088" + Connect: "OO", "Material::fire", "Model::fireB_054" + Connect: "OO", "Material::fire", "Model::fireB_053" + Connect: "OO", "Material::fire", "Model::fireB_052" + Connect: "OO", "Material::fire", "Model::fireB_051" + Connect: "OO", "Material::fire", "Model::fireB_050" + Connect: "OO", "Material::fire", "Model::fireB_049" + Connect: "OO", "Material::fire", "Model::fireA_006" + Connect: "OO", "Material::fire", "Model::smoke_082" + Connect: "OO", "Material::fire", "Model::smoke_081" + Connect: "OO", "Material::fire", "Model::smoke_080" + Connect: "OO", "Material::fire", "Model::smoke_079" + Connect: "OO", "Material::fire", "Model::smoke_078" + Connect: "OO", "Material::fire", "Model::smoke_077" + Connect: "OO", "Material::fire", "Model::smoke_076" + Connect: "OO", "Material::fire", "Model::smoke_075" + Connect: "OO", "Material::fire", "Model::smoke_074" + Connect: "OO", "Material::fire", "Model::smoke_073" + Connect: "OO", "Material::fire", "Model::smoke_072" + Connect: "OO", "Material::fire", "Model::smoke_071" + Connect: "OO", "Material::fire", "Model::smoke_070" + Connect: "OO", "Material::fire", "Model::smoke_069" + Connect: "OO", "Material::fire", "Model::smoke_068" + Connect: "OO", "Material::fire", "Model::smoke_067" + Connect: "OO", "Material::fire", "Model::smoke_061" + Connect: "OO", "Material::fire", "Model::smoke_060" + Connect: "OO", "Material::fire", "Model::smoke_059" + Connect: "OO", "Material::fire", "Model::smoke_058" + Connect: "OO", "Material::fire", "Model::smoke_057" + Connect: "OO", "Material::fire", "Model::smoke_056" + Connect: "OO", "Material::fire", "Model::smoke_055" + Connect: "OO", "Material::fire", "Model::smoke_054" + Connect: "OO", "Material::fire", "Model::smoke_053" + Connect: "OO", "Material::fire", "Model::smoke_052" + Connect: "OO", "Material::fire", "Model::smoke_051" + Connect: "OO", "Material::fire", "Model::smoke_050" + Connect: "OO", "Material::fire", "Model::smoke_049" + Connect: "OO", "Material::fire", "Model::smoke_048" + Connect: "OO", "Material::fire", "Model::smoke_047" + Connect: "OO", "Material::fire", "Model::smoke_046" + Connect: "OO", "Material::fire", "Model::smoke_045" + Connect: "OO", "Material::fire", "Model::smoke_044" + Connect: "OO", "Material::fire", "Model::smoke_043" + Connect: "OO", "Material::fire", "Model::smoke_042" + Connect: "OO", "Material::fire", "Model::smoke_041" + Connect: "OO", "Material::fire", "Model::smoke_040" + Connect: "OO", "Material::fire", "Model::smoke_039" + Connect: "OO", "Material::fire", "Model::smoke_038" + Connect: "OO", "Material::fire", "Model::fireB_024" + Connect: "OO", "Material::fire", "Model::smoke_032" + Connect: "OO", "Material::fire", "Model::fireB_023" + Connect: "OO", "Material::fire", "Model::smoke_031" + Connect: "OO", "Material::fire", "Model::smoke_030" + Connect: "OO", "Material::fire", "Model::smoke_029" + Connect: "OO", "Material::fire", "Model::smoke_028" + Connect: "OO", "Material::fire", "Model::fireB_022" + Connect: "OO", "Material::fire", "Model::fireB_021" + Connect: "OO", "Material::fire", "Model::fireB_020" + Connect: "OO", "Material::fire", "Model::fireB_019" + Connect: "OO", "Material::fire", "Model::fireB_018" + Connect: "OO", "Material::fire", "Model::fireB_017" + Connect: "OO", "Material::fire", "Model::fireA_002" + Connect: "OO", "Material::fire", "Model::smoke_022" + Connect: "OO", "Material::fire", "Model::smoke_021" + Connect: "OO", "Material::fire", "Model::smoke_020" + Connect: "OO", "Material::fire", "Model::smoke_019" + Connect: "OO", "Material::fire", "Model::smoke_018" + Connect: "OO", "Material::fire", "Model::smoke_017" + Connect: "OO", "Material::fire", "Model::smoke_016" + Connect: "OO", "Material::fire", "Model::smoke_015" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,344471761750 + ReferenceTime: 0,344471761750 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::scene" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 7.142735481262207 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,7.142735481262207,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 6.162922382354736 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,6.162922382354736,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 9.080159187316895 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,9.080159187316895,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -94.355730251275617 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-94.355730251275617,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.666608312554500 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.666608312554500,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -14.770632419779021 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-14.770632419779021,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_016" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.127705261111259 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.127705261111259,L, + 1924423250,0.127715930342674,L, + 3848846500,0.127745866775513,L, + 5773269750,0.127793669700623,L, + 7697693000,0.127856910228729,L, + 9622116250,0.127935439348221,L, + 11546539500,0.128026440739632,L, + 13470962750,0.128130555152893,L, + 15395386000,0.128245204687119,L, + 17319809250,0.128371417522430,L, + 19244232500,0.128507018089294,L, + 21168655750,0.128651812672615,L, + 23093079000,0.128806233406067,L, + 25017502250,0.128968521952629,L, + 26941925500,0.129139482975006,L, + 28866348750,0.129317462444305,L, + 30790772000,0.129503279924393,L, + 32715195250,0.129695892333984,L, + 34639618500,0.129895627498627,L, + 36564041750,0.130102351307869,L, + 38488465000,0.130315512418747,L, + 40412888250,0.130535677075386,L, + 42337311500,0.130762010812759,L, + 44261734750,0.130995035171509,L, + 46186158000,0.131235018372536,L, + 48110581250,0.131481930613518,L, + 50035004500,0.131736755371094,L, + 51959427750,0.131999969482422,L, + 53883851000,0.132275238633156,L, + 55808274250,0.132572889328003,L, + 57732697500,0.133061259984970,L, + 59657120750,0.035242691636086,L, + 61581544000,0.040747269988060,L, + 63505967250,0.050898015499115,L, + 65430390500,0.062528342008591,L, + 67354813750,0.074592322111130,L, + 69279237000,0.086557656526566,L, + 71203660250,0.098081819713116,L, + 73128083500,0.108901865780354,L, + 75052506750,0.118788562715054,L, + 76976930000,0.127518534660339,L, + 78901353250,0.134855270385742,L, + 80825776500,0.140532955527306,L, + 82750199750,0.144236460328102,L, + 84674623000,0.145575106143951,L, + 86599046250,0.144330263137817,L, + 88523469500,0.140566870570183,L, + 90447892750,0.134305477142334,L, + 92372316000,0.125675648450851,L, + 94296739250,0.114950194954872,L, + 96221162500,0.102562636137009,L, + 98145585750,0.089100524783134,L, + 100070009000,0.075266674160957,L, + 101994432250,0.061804667115211,L, + 103918855500,0.049416929483414,L, + 105843278750,0.038691192865372,L, + 107767702000,0.030061691999435,L, + 109692125250,0.023799896240234,L, + 111616548500,0.020037099719048,L, + 113540971750,0.018792152404785,L, + 115465395000,0.018847152590752,L, + 117389818250,0.019014865159988,L, + 119314241500,0.019293755292892,L, + 121238664750,0.019686475396156,L, + 123163088000,0.020192369818687,L, + 125087511250,0.020811557769775,L, + 127011934500,0.021544054150581,L, + 128936357750,0.022388756275177,L, + 130860781000,0.023345261812210,L, + 132785204250,0.024411022663116,L, + 134709627500,0.025584638118744,L, + 136634050750,0.026863321661949,L, + 138558474000,0.028244048357010,L, + 140482897250,0.029722794890404,L, + 142407320500,0.031295657157898,L, + 144331743750,0.032957747578621,L, + 146256167000,0.034703418612480,L, + 148180590250,0.036525830626488,L, + 150105013500,0.038418933749199,L, + 152029436750,0.040375530719757,L, + 153953860000,0.042387410998344,L, + 155878283250,0.044445812702179,L, + 157802706500,0.046542376279831,L, + 159727129750,0.048667952418327,L, + 161651553000,0.050813004374504,L, + 163575976250,0.052967920899391,L, + 165500399500,0.055122308433056,L, + 167424822750,0.057266891002655,L, + 169349246000,0.059392914175987,L, + 171273669250,0.061489447951317,L, + 173198092500,0.063547834753990,L, + 175122515750,0.065559729933739,L, + 177046939000,0.067515850067139,L, + 178971362250,0.069409430027008,L, + 180895785500,0.071232326328754,L, + 182820208750,0.072977535426617,L, + 184744632000,0.074639625847340,L, + 186669055250,0.076212532818317,L, + 188593478500,0.077691264450550,L, + 190517901750,0.079071968793869,L, + 192442325000,0.080350637435913,L, + 194366748250,0.081524260342121,L, + 196291171500,0.082590021193027,L, + 198215594750,0.083546042442322,L, + 200140018000,0.084390707314014,L, + 202064441250,0.085123218595982,L, + 203988864500,0.085742875933647,L, + 205913287750,0.086248815059662,L, + 207837711000,0.086641050875187,L, + 209762134250,0.086920887231827,L, + 211686557500,0.087087616324425,L, + 213610980750,0.087143145501614,L, + 215535404000,0.087070107460022,L, + 217459827250,0.086849428713322,L, + 219384250500,0.086480356752872,L, + 221308673750,0.085961930453777,L, + 223233097000,0.085295893251896,L, + 225157520250,0.084484189748764,L, + 227081943500,0.083530709147453,L, + 229006366750,0.082442469894886,L, + 230930790000,0.081227704882622,L, + 232855213250,0.079896360635757,L, + 234779636500,0.078461185097694,L, + 236704059750,0.076938003301620,L, + 238628483000,0.075343884527683,L, + 240552906250,0.073697581887245,L, + 242477329500,0.072019398212433,L, + 244401752750,0.070329949259758,L, + 246326176000,0.068651586771011,L, + 248250599250,0.067004762589931,L, + 250175022500,0.065410733222961,L, + 252099445750,0.063887789845467,L, + 254023869000,0.062453106045723,L, + 255948292250,0.061121672391891,L, + 257872715500,0.059906721115112,L, + 259797138750,0.058818310499191,L, + 261721562000,0.057865068316460,L, + 263645985250,0.057053416967392,L, + 265570408500,0.056387141346931,L, + 267494831750,0.055868715047836,L, + 269419255000,0.055499240756035,L, + 271343678250,0.055278688669205,L, + 273268101500,0.055205598473549,L, + 275192524750,0.055221393704414,L, + 277116948000,0.055275201797485,L, + 279041371250,0.055379003286362,L, + 280965794500,0.055547684431076,L, + 282890217750,0.055797055363655,L, + 284814641000,0.056142479181290,L, + 286739064250,0.056601524353027,L, + 288663487500,0.057188421487808,L, + 290587910750,0.057916581630707,L, + 292512334000,0.058793097734451,L, + 294436757250,0.059822514653206,L, + 296361180500,0.061002090573311,L, + 298285603750,0.062327399849892,L, + 300210027000,0.063787728548050,L, + 302134450250,0.065372437238693,L, + 304058873500,0.067068055272102,L, + 305983296750,0.068861618638039,L, + 307907720000,0.070741772651672,L, + 309832143250,0.072869554162025,L, + 311756566500,0.075411528348923,L, + 313680989750,0.078359454870224,L, + 315605413000,0.081691130995750,L, + 317529836250,0.085369139909744,L, + 319454259500,0.089339822530746,L, + 321378682750,0.093529850244522,L, + 323303106000,0.097850248217583,L, + 325227529250,0.102196529507637,L, + 327151952500,0.106458075344563,L, + 329076375750,0.110523343086243,L, + 331000799000,0.114289149641991,L, + 332925222250,0.117667458951473,L, + 334849645500,0.120588414371014,L, + 336774068750,0.123003900051117,L, + 338698492000,0.124885000288486,L, + 340622915250,0.126220494508743,L, + 342547338500,0.127011612057686,L, + 344471761750,0.127271205186844,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.589757204055786 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.589757204055786,L, + 1924423250,-0.589090704917908,L, + 3848846500,-0.587193071842194,L, + 5773269750,-0.584195435047150,L, + 7697693000,-0.580206871032715,L, + 9622116250,-0.575320839881897,L, + 11546539500,-0.569615423679352,L, + 13470962750,-0.563159584999084,L, + 15395386000,-0.556012213230133,L, + 17319809250,-0.548226118087769,L, + 19244232500,-0.539846718311310,L, + 21168655750,-0.530915737152100,L, + 23093079000,-0.521471023559570,L, + 25017502250,-0.511545717716217,L, + 26941925500,-0.501171469688416,L, + 28866348750,-0.490376412868500,L, + 30790772000,-0.479188323020935,L, + 32715195250,-0.467633247375488,L, + 34639618500,-0.455735772848129,L, + 36564041750,-0.443521380424500,L, + 38488465000,-0.431016355752945,L, + 40412888250,-0.418248295783997,L, + 42337311500,-0.405248492956161,L, + 44261734750,-0.392055124044418,L, + 46186158000,-0.378716170787811,L, + 48110581250,-0.365301251411438,L, + 50035004500,-0.351919144392014,L, + 51959427750,-0.338773638010025,L, + 53883851000,-0.326357364654541,L, + 55808274250,-0.317114740610123,L, + 57732697500,-0.315976202487946,L, + 59657120750,-0.568136036396027,L, + 61581544000,-0.588793992996216,L, + 63505967250,-0.599541604518890,L, + 65430390500,-0.607126235961914,L, + 67354813750,-0.612977325916290,L, + 69279237000,-0.617693066596985,L, + 71203660250,-0.621592819690704,L, + 73128083500,-0.624870836734772,L, + 75052506750,-0.627655684947968,L, + 76976930000,-0.630038142204285,L, + 78901353250,-0.632084488868713,L, + 80825776500,-0.633846342563629,L, + 82750199750,-0.635362744331360,L, + 84674623000,-0.636666834354401,L, + 86599046250,-0.637784302234650,L, + 88523469500,-0.638737559318542,L, + 90447892750,-0.639545619487762,L, + 92372316000,-0.640224456787109,L, + 94296739250,-0.640788555145264,L, + 96221162500,-0.641250729560852,L, + 98145585750,-0.641622245311737,L, + 100070009000,-0.641914069652557,L, + 101994432250,-0.642135798931122,L, + 103918855500,-0.642297387123108,L, + 105843278750,-0.642407655715942,L, + 107767702000,-0.642476618289948,L, + 109692125250,-0.642512798309326,L, + 111616548500,-0.642526626586914,L, + 113540971750,-0.642528712749481,L, + 115465395000,-0.642452597618103,L, + 117389818250,-0.642223715782166,L, + 119314241500,-0.641840517520905,L, + 121238664750,-0.641302466392517,L, + 123163088000,-0.640609085559845,L, + 125087511250,-0.639759838581085,L, + 127011934500,-0.638755977153778,L, + 128936357750,-0.637597739696503,L, + 130860781000,-0.636287391185760,L, + 132785204250,-0.634826064109802,L, + 134709627500,-0.633217573165894,L, + 136634050750,-0.631464719772339,L, + 138558474000,-0.629572212696075,L, + 140482897250,-0.627544879913330,L, + 142407320500,-0.625388801097870,L, + 144331743750,-0.623110771179199,L, + 146256167000,-0.620718300342560,L, + 148180590250,-0.618219375610352,L, + 150105013500,-0.615624129772186,L, + 152029436750,-0.612942516803741,L, + 153953860000,-0.610185027122498,L, + 155878283250,-0.607363104820251,L, + 157802706500,-0.604488849639893,L, + 159727129750,-0.601575493812561,L, + 161651553000,-0.598635196685791,L, + 163575976250,-0.595681786537170,L, + 165500399500,-0.592728257179260,L, + 167424822750,-0.589787900447845,L, + 169349246000,-0.586874306201935,L, + 171273669250,-0.584000587463379,L, + 173198092500,-0.581178724765778,L, + 175122515750,-0.578420996665955,L, + 177046939000,-0.575739085674286,L, + 178971362250,-0.573143839836121,L, + 180895785500,-0.570645391941071,L, + 182820208750,-0.568252682685852,L, + 184744632000,-0.565974652767181,L, + 186669055250,-0.563818573951721,L, + 188593478500,-0.561791241168976,L, + 190517901750,-0.559898495674133,L, + 192442325000,-0.558145880699158,L, + 194366748250,-0.556537091732025,L, + 196291171500,-0.555076301097870,L, + 198215594750,-0.553765475749969,L, + 200140018000,-0.552607536315918,L, + 202064441250,-0.551603674888611,L, + 203988864500,-0.550754666328430,L, + 205913287750,-0.550060987472534,L, + 207837711000,-0.549522876739502,L, + 209762134250,-0.549139976501465,L, + 211686557500,-0.548910856246948,L, + 213610980750,-0.548834979534149,L, + 215535404000,-0.548965930938721,L, + 217459827250,-0.549363851547241,L, + 219384250500,-0.550036191940308,L, + 221308673750,-0.550988376140594,L, + 223233097000,-0.552224397659302,L, + 225157520250,-0.553746402263641,L, + 227081943500,-0.555553913116455,L, + 229006366750,-0.557643890380859,L, + 230930790000,-0.560009777545929,L, + 232855213250,-0.562641382217407,L, + 234779636500,-0.565525054931641,L, + 236704059750,-0.568642795085907,L, + 238628483000,-0.571972966194153,L, + 240552906250,-0.575489878654480,L, + 242477329500,-0.579165577888489,L, + 244401752750,-0.582968294620514,L, + 246326176000,-0.586865961551666,L, + 248250599250,-0.590824663639069,L, + 250175022500,-0.594811439514160,L, + 252099445750,-0.598793625831604,L, + 254023869000,-0.602741003036499,L, + 255948292250,-0.606625676155090,L, + 257872715500,-0.610421776771545,L, + 259797138750,-0.614108204841614,L, + 261721562000,-0.617665469646454,L, + 263645985250,-0.621078252792358,L, + 265570408500,-0.624334156513214,L, + 267494831750,-0.627423286437988,L, + 269419255000,-0.630338430404663,L, + 271343678250,-0.633074760437012,L, + 273268101500,-0.635629177093506,L, + 275192524750,-0.638167262077332,L, + 277116948000,-0.640847384929657,L, + 279041371250,-0.643653929233551,L, + 280965794500,-0.646563887596130,L, + 282890217750,-0.649546027183533,L, + 284814641000,-0.652558803558350,L, + 286739064250,-0.655553340911865,L, + 288663487500,-0.658473014831543,L, + 290587910750,-0.661258995532990,L, + 292512334000,-0.663853824138641,L, + 294436757250,-0.666206061840057,L, + 296361180500,-0.668274641036987,L, + 298285603750,-0.670030772686005,L, + 300210027000,-0.671457529067993,L, + 302134450250,-0.672551095485687,L, + 304058873500,-0.673315048217773,L, + 305983296750,-0.673761427402496,L, + 307907720000,-0.673906028270721,L, + 309832143250,-0.673434317111969,L, + 311756566500,-0.672007799148560,L, + 313680989750,-0.669623494148254,L, + 315605413000,-0.666301667690277,L, + 317529836250,-0.662090718746185,L, + 319454259500,-0.657075405120850,L, + 321378682750,-0.651377379894257,L, + 323303106000,-0.645157098770142,L, + 325227529250,-0.638608336448669,L, + 327151952500,-0.631947576999664,L, + 329076375750,-0.625398874282837,L, + 331000799000,-0.619178771972656,L, + 332925222250,-0.613480627536774,L, + 334849645500,-0.608465313911438,L, + 336774068750,-0.604254722595215,L, + 338698492000,-0.600932776927948,L, + 340622915250,-0.598548531532288,L, + 342547338500,-0.597121894359589,L, + 344471761750,-0.596650004386902,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.246537446975708 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.246537446975708,L, + 1924423250,0.247256636619568,L, + 3848846500,0.249305844306946,L, + 5773269750,0.252545237541199,L, + 7697693000,0.256857395172119,L, + 9622116250,0.262144207954407,L, + 11546539500,0.268321633338928,L, + 13470962750,0.275317072868347,L, + 15395386000,0.283068060874939,L, + 17319809250,0.291519045829773,L, + 19244232500,0.300622105598450,L, + 21168655750,0.310334086418152,L, + 23093079000,0.320615887641907,L, + 25017502250,0.331433176994324,L, + 26941925500,0.342754483222961,L, + 28866348750,0.354551196098328,L, + 30790772000,0.366796612739563,L, + 32715195250,0.379465937614441,L, + 34639618500,0.392535567283630,L, + 36564041750,0.405983567237854,L, + 38488465000,0.419787526130676,L, + 40412888250,0.433924794197083,L, + 42337311500,0.448371767997742,L, + 44261734750,0.463100552558899,L, + 46186158000,0.478078007698059,L, + 48110581250,0.493258595466614,L, + 50035004500,0.508571028709412,L, + 51959427750,0.523885130882263,L, + 53883851000,0.538881897926331,L, + 55808274250,0.551941514015198,L, + 57732697500,0.559229969978333,L, + 59657120750,0.034106135368347,L, + 111616548500,0.034106135368347,L, + 113540971750,0.007775902748108,L, + 211686557500,0.007775902748108,L, + 213610980750,-0.003737211227417,L, + 215535404000,-0.003504514694214,L, + 217459827250,-0.002799749374390,L, + 219384250500,-0.001614928245544,L, + 221308673750,0.000055074691772,L, + 223233097000,0.002212166786194,L, + 225157520250,0.004853963851929,L, + 227081943500,0.007973194122314,L, + 229006366750,0.011556506156921,L, + 230930790000,0.015584707260132,L, + 232855213250,0.020031452178955,L, + 234779636500,0.024864077568054,L, + 236704059750,0.030041694641113,L, + 238628483000,0.035517692565918,L, + 240552906250,0.041238665580750,L, + 242477329500,0.047146797180176,L, + 244401752750,0.053180336952209,L, + 246326176000,0.059275865554810,L, + 248250599250,0.065369486808777,L, + 250175022500,0.071399450302124,L, + 252099445750,0.077306866645813,L, + 254023869000,0.083036780357361,L, + 255948292250,0.088541030883789,L, + 257872715500,0.093776226043701,L, + 259797138750,0.098706603050232,L, + 261721562000,0.103302240371704,L, + 263645985250,0.107539653778076,L, + 265570408500,0.111401319503784,L, + 267494831750,0.114874601364136,L, + 269419255000,0.117951989173889,L, + 271343678250,0.120629906654358,L, + 273268101500,0.122907757759094,L, + 275192524750,0.124830961227417,L, + 277116948000,0.126440048217773,L, + 279041371250,0.127734422683716,L, + 280965794500,0.128722429275513,L, + 282890217750,0.129423499107361,L, + 284814641000,0.129869699478149,L, + 286739064250,0.130107879638672,L, + 288663487500,0.130197882652283,L, + 290587910750,0.130210995674133,L, + 292512334000,0.130223989486694,L, + 294436757250,0.130314230918884,L, + 296361180500,0.130552172660828,L, + 298285603750,0.130998492240906,L, + 300210027000,0.131699442863464,L, + 302134450250,0.132687568664551,L, + 304058873500,0.133982062339783,L, + 305983296750,0.135591149330139,L, + 307907720000,0.137514352798462,L, + 309832143250,0.140061020851135,L, + 311756566500,0.143548369407654,L, + 313680989750,0.147967457771301,L, + 315605413000,0.153284549713135,L, + 317529836250,0.159434080123901,L, + 319454259500,0.166314601898193,L, + 321378682750,0.173784136772156,L, + 323303106000,0.181662797927856,L, + 325227529250,0.189739108085632,L, + 327151952500,0.197781085968018,L, + 329076375750,0.205552697181702,L, + 331000799000,0.212831139564514,L, + 332925222250,0.219420909881592,L, + 334849645500,0.225164651870728,L, + 336774068750,0.229946851730347,L, + 338698492000,0.233693242073059,L, + 340622915250,0.236365795135498,L, + 342547338500,0.237956762313843,L, + 344471761750,0.238480687141418,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.859380404291500 + KeyVer: 4005 + KeyCount: 150 + Key: + 0,-93.859380404291500,L, + 1924423250,-93.853322026497707,L, + 3848846500,-93.832974892960266,L, + 5773269750,-93.795251758174345,L, + 7697693000,-93.737188320040147,L, + 9622116250,-93.655895408538782,L, + 11546539500,-93.548436042327126,L, + 13470962750,-93.411811768359556,L, + 15395386000,-93.242887529807035,L, + 17319809250,-93.038302873597942,L, + 19244232500,-92.794444629661328,L, + 21168655750,-92.507344458089420,L, + 23093079000,-92.172603717056745,L, + 25017502250,-91.785250028847543,L, + 26941925500,-91.339655317585724,L, + 28866348750,-90.829324073370614,L, + 30790772000,-90.246667956034344,L, + 32715195250,-89.582712097007530,L, + 34639618500,-88.826664797401563,L, + 36564041750,-87.965323301550825,L, + 38488465000,-86.982220023366452,L, + 40412888250,-85.856331640583178,L, + 42337311500,-84.560050528575829,L, + 44261734750,-83.055824307287736,L, + 46186158000,-81.290220406841982,L, + 48110581250,-79.182492330870772,L, + 50035004500,-76.599724598125860,L, + 51959427750,-73.292116700092734,L, + 53883851000,-68.662252480638728,L, + 55808274250,-59.846629771753484,L, + 57732697500,-28.335755234072742,L, + 59657120750,-93.865117763194306,L, + 61581544000,-93.154381938542144,L, + 63505967250,-91.780079575645843,L, + 65430390500,-90.120712437550310,L, + 67354813750,-88.299538118017409,L, + 69279237000,-86.376054394907030,L, + 71203660250,-84.385108893364546,L, + 73128083500,-82.349862784865408,L, + 75052506750,-80.287336900821273,L, + 76976930000,-78.211150638437147,L, + 78901353250,-76.133147545733792,L, + 80825776500,-74.064494982004177,L, + 82750199750,-72.016537891459663,L, + 84674623000,-70.001768690092192,L, + 86599046250,-67.872675782397224,L, + 88523469500,-65.479999044442664,L, + 90447892750,-62.845369685329914,L, + 92372316000,-60.007344122923655,L, + 94296739250,-57.024293153870723,L, + 96221162500,-53.974921047977062,L, + 98145585750,-50.954785566825599,L, + 100070009000,-48.068170038663936,L, + 101994432250,-45.416728168909231,L, + 103918855500,-43.087995661964243,L, + 105843278750,-41.147098371564937,L, + 107767702000,-39.633784583586163,L, + 109692125250,-38.564084752009911,L, + 111616548500,-37.935078970965996,L, + 113540971750,-37.730525050608165,L, + 115465395000,-37.776072167088330,L, + 117389818250,-37.913283837324521,L, + 119314241500,-38.142819174571635,L, + 121238664750,-38.465204103395777,L, + 123163088000,-38.880701586079979,L, + 125087511250,-39.389332113191756,L, + 127011934500,-39.990846382826405,L, + 128936357750,-40.684670659093648,L, + 130860781000,-41.469899941928446,L, + 132785204250,-42.345250155766855,L, + 134709627500,-43.309047904262215,L, + 136634050750,-44.359179243866414,L, + 138558474000,-45.493065778167768,L, + 140482897250,-46.707671488080223,L, + 142407320500,-47.999451505424538,L, + 144331743750,-49.364352112928316,L, + 146256167000,-50.797817574415177,L, + 148180590250,-52.294769644237206,L, + 150105013500,-53.849655378599209,L, + 152029436750,-55.456416399707379,L, + 153953860000,-57.108574273133975,L, + 155878283250,-58.799220262533538,L, + 157802706500,-60.521131442858788,L, + 159727129750,-62.266729719225609,L, + 161651553000,-64.028269657115217,L, + 163575976250,-65.797821406901235,L, + 165500399500,-67.567366326498089,L, + 167424822750,-69.328913094576862,L, + 169349246000,-71.074531861511190,L, + 171273669250,-72.796415721079768,L, + 173198092500,-74.487071955763085,L, + 175122515750,-76.139219583905927,L, + 177046939000,-77.745980605014097,L, + 178971362250,-79.300873169565264,L, + 180895785500,-80.797818409198129,L, + 182820208750,-82.231304361252498,L, + 184744632000,-83.596201553661686,L, + 186669055250,-84.887967910627665,L, + 188593478500,-86.102573620540113,L, + 190517901750,-87.236473815219810,L, + 192442325000,-88.286601739729420,L, + 194366748250,-89.250396073130204,L, + 196291171500,-90.125746286968607,L, + 198215594750,-90.910958494330487,L, + 200140018000,-91.604796430976066,L, + 202064441250,-92.206303870421536,L, + 203988864500,-92.714941227722491,L, + 205913287750,-93.130442125501276,L, + 207837711000,-93.452820224136246,L, + 209762134250,-93.682369221761704,L, + 211686557500,-93.819567231619558,L, + 213610980750,-93.865124593383470,L, + 273268101500,-93.865124593383470,L, + 275192524750,-93.636873331700315,L, + 277116948000,-92.946826150044089,L, + 279041371250,-91.794395652146179,L, + 280965794500,-90.191657612459139,L, + 282890217750,-88.166923165092641,L, + 284814641000,-85.767778237994079,L, + 286739064250,-83.062668156836082,L, + 288663487500,-80.140009720424317,L, + 290587910750,-77.104120407952237,L, + 292512334000,-74.068244755858501,L, + 294436757250,-71.145586319446736,L, + 296361180500,-68.440476238288738,L, + 298285603750,-66.041331311190177,L, + 300210027000,-64.016590033634515,L, + 302134450250,-62.413858824136639,L, + 304058873500,-61.261435156427893,L, + 305983296750,-60.571387974771667,L, + 307907720000,-60.343136713088512,L, + 309832143250,-60.547912614594367,L, + 311756566500,-61.166932659071733,L, + 313680989750,-62.201467261706227,L, + 315605413000,-63.642883063386968,L, + 317529836250,-65.469897194660220,L, + 319454259500,-67.646138898195730,L, + 321378682750,-70.118564924899246,L, + 323303106000,-72.817534665993421,L, + 325227529250,-75.659036794687211,L, + 327151952500,-78.549217681595607,L, + 329076375750,-81.390719810289397,L, + 331000799000,-84.089696381572736,L, + 332925222250,-86.562122408276252,L, + 334849645500,-88.738357281622598,L, + 336774068750,-90.565364582706678,L, + 338698492000,-92.006773554198247,L, + 340622915250,-93.041308156832741,L, + 342547338500,-93.660355522066794,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788390159607,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700315058231354,L, + 9622116250,0.690882980823517,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248172760010,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592853069305,L, + 25017502250,0.567304253578186,L, + 26941925500,0.547118842601776,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426844120026,L, + 38488465000,0.409835755825043,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932554721832,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066453456879,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862943172455,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978456258774,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021488904953,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421589374542,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869097709656,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212594509125,L, + 117389818250,0.691212713718414,L, + 119314241500,0.691212594509125,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212594509125,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212534904480,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212594509125,L, + 138558474000,0.691212713718414,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212713718414,L, + 146256167000,0.691212594509125,L, + 148180590250,0.691212594509125,L, + 152029436750,0.691212713718414,L, + 155878283250,0.691212594509125,L, + 157802706500,0.691212594509125,L, + 159727129750,0.691212654113770,L, + 161651553000,0.691212654113770,L, + 163575976250,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212654113770,L, + 171273669250,0.691212594509125,L, + 173198092500,0.691212654113770,L, + 175122515750,0.691212594509125,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 182820208750,0.691212594509125,L, + 184744632000,0.691212594509125,L, + 186669055250,0.691212654113770,L, + 190517901750,0.691212654113770,L, + 194366748250,0.691212534904480,L, + 196291171500,0.691212654113770,L, + 198215594750,0.691212594509125,L, + 200140018000,0.691212654113770,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212713718414,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212594509125,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061564445496,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123395442963,L, + 296361180500,0.699201047420502,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748200416565,L, + 311756566500,0.706630885601044,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589076995850,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432545661926,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403505325317,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932556152344,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788390159607,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700315058231354,L, + 9622116250,0.690882980823517,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248172760010,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592853069305,L, + 25017502250,0.567304253578186,L, + 26941925500,0.547118842601776,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426844120026,L, + 38488465000,0.409835755825043,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932554721832,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066453456879,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862943172455,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978456258774,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021488904953,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421589374542,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869097709656,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212594509125,L, + 117389818250,0.691212713718414,L, + 119314241500,0.691212594509125,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212594509125,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212534904480,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212594509125,L, + 138558474000,0.691212713718414,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212713718414,L, + 146256167000,0.691212594509125,L, + 148180590250,0.691212594509125,L, + 152029436750,0.691212713718414,L, + 155878283250,0.691212594509125,L, + 157802706500,0.691212594509125,L, + 159727129750,0.691212654113770,L, + 161651553000,0.691212654113770,L, + 163575976250,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212654113770,L, + 171273669250,0.691212594509125,L, + 173198092500,0.691212654113770,L, + 175122515750,0.691212594509125,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 182820208750,0.691212594509125,L, + 184744632000,0.691212594509125,L, + 186669055250,0.691212654113770,L, + 190517901750,0.691212654113770,L, + 194366748250,0.691212534904480,L, + 196291171500,0.691212654113770,L, + 198215594750,0.691212594509125,L, + 200140018000,0.691212654113770,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212713718414,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212594509125,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061564445496,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123395442963,L, + 296361180500,0.699201047420502,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748200416565,L, + 311756566500,0.706630885601044,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589076995850,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432545661926,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403505325317,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932556152344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.436138242483139 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.436138242483139,L, + 1924423250,0.435350835323334,L, + 3848846500,0.433106750249863,L, + 5773269750,0.429559528827667,L, + 7697693000,0.424836695194244,L, + 9622116250,0.419046014547348,L, + 11546539500,0.412279248237610,L, + 13470962750,0.404615432024002,L, + 15395386000,0.396123141050339,L, + 17319809250,0.386862426996231,L, + 19244232500,0.376886159181595,L, + 21168655750,0.366241276264191,L, + 23093079000,0.354969829320908,L, + 25017502250,0.343109428882599,L, + 26941925500,0.330694317817688,L, + 28866348750,0.317755550146103,L, + 30790772000,0.304321765899658,L, + 32715195250,0.290419518947601,L, + 34639618500,0.276073813438416,L, + 36564041750,0.261308491230011,L, + 38488465000,0.246146962046623,L, + 40412888250,0.230612650513649,L, + 42337311500,0.214730501174927,L, + 44261734750,0.198528274893761,L, + 46186158000,0.182039842009544,L, + 48110581250,0.165310576558113,L, + 50035004500,0.148410767316818,L, + 51959427750,0.131469786167145,L, + 53883851000,0.114804364740849,L, + 55808274250,0.100030779838562,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882522106171,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354133605957,L, + 67354813750,0.123738169670105,L, + 69279237000,0.133280381560326,L, + 71203660250,0.142899021506310,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323513388634,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626767396927,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560553312302,L, + 92372316000,0.245301157236099,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126017570496,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813740491867,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296051740646,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146136522293,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706455945969,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857344388962,L, + 138558474000,0.382175147533417,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771320581436,L, + 148180590250,0.396268129348755,L, + 150105013500,0.398613512516022,L, + 152029436750,0.400813609361649,L, + 153953860000,0.402875453233719,L, + 155878283250,0.404806703329086,L, + 157802706500,0.406615942716599,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905672073364,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412824988365173,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904615402222,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405583620071,L, + 180895785500,0.422571808099747,L, + 182820208750,0.423754513263702,L, + 184744632000,0.424963057041168,L, + 186669055250,0.426206141710281,L, + 188593478500,0.427491754293442,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220544338226,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436478018760681,L, + 202064441250,0.438237309455872,L, + 203988864500,0.440081894397736,L, + 205913287750,0.442014664411545,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153551340103,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667589902878,L, + 215535404000,0.453080922365189,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265990018845,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866910457611,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050713539124,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470610618591,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214479923248,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522052049637,L, + 244401752750,0.498546570539474,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530433177948,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166801452637,L, + 269419255000,0.521676063537598,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.522074997425079,L, + 277116948000,0.522067368030548,L, + 279041371250,0.522045075893402,L, + 280965794500,0.521998286247253,L, + 282890217750,0.521915435791016,L, + 284814641000,0.521783769130707,L, + 286739064250,0.521589577198029,L, + 288663487500,0.521319210529327,L, + 290587910750,0.520960390567780,L, + 292512334000,0.520502984523773,L, + 294436757250,0.519940137863159,L, + 296361180500,0.519268631935120,L, + 298285603750,0.518488883972168,L, + 300210027000,0.517604291439056,L, + 302134450250,0.516620635986328,L, + 304058873500,0.515545189380646,L, + 305983296750,0.514385879039764,L, + 307907720000,0.513150990009308,L, + 309832143250,0.511548995971680,L, + 311756566500,0.509279549121857,L, + 313680989750,0.506347715854645,L, + 315605413000,0.502776086330414,L, + 317529836250,0.498609393835068,L, + 319454259500,0.493917971849442,L, + 321378682750,0.488800197839737,L, + 323303106000,0.483381718397141,L, + 325227529250,0.477810591459274,L, + 327151952500,0.472249627113342,L, + 329076375750,0.466864675283432,L, + 331000799000,0.461813002824783,L, + 332925222250,0.457232862710953,L, + 334849645500,0.453235864639282,L, + 336774068750,0.449904769659042,L, + 338698492000,0.447292923927307,L, + 340622915250,0.445428252220154,L, + 342547338500,0.444317549467087,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_027" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.151617988944054 + KeyVer: 4005 + KeyCount: 160 + Key: + 0,0.151617988944054,L, + 1924423250,0.151618048548698,L, + 3848846500,0.151617959141731,L, + 5773269750,0.151617810130119,L, + 7697693000,0.151617899537086,L, + 9622116250,0.151618152856827,L, + 11546539500,0.151618108153343,L, + 13470962750,0.151618048548698,L, + 15395386000,0.151618152856827,L, + 17319809250,0.151617929339409,L, + 19244232500,0.151618108153343,L, + 21168655750,0.151617929339409,L, + 23093079000,0.151618063449860,L, + 25017502250,0.151617854833603,L, + 26941925500,0.151618093252182,L, + 30790772000,0.151617974042892,L, + 32715195250,0.151618093252182,L, + 34639618500,0.151618078351021,L, + 36564041750,0.151617988944054,L, + 38488465000,0.151617959141731,L, + 42337311500,0.151617869734764,L, + 44261734750,0.151617899537086,L, + 46186158000,0.151617988944054,L, + 48110581250,0.151618018746376,L, + 50035004500,0.151618078351021,L, + 51959427750,0.151618227362633,L, + 53883851000,0.151617974042892,L, + 55808274250,0.151618093252182,L, + 57732697500,0.145533323287964,L, + 59657120750,0.145822703838348,L, + 61581544000,0.146344080567360,L, + 63505967250,0.146937876939774,L, + 65430390500,0.147553339600563,L, + 67354813750,0.148166924715042,L, + 69279237000,0.148762255907059,L, + 71203660250,0.149327874183655,L, + 73128083500,0.149854838848114,L, + 75052506750,0.150333151221275,L, + 76976930000,0.150753796100616,L, + 78901353250,0.151106059551239,L, + 80825776500,0.151377633213997,L, + 82750199750,0.151554301381111,L, + 84674623000,0.151617944240570,L, + 86599046250,0.151617959141731,L, + 88523469500,0.151618227362633,L, + 90447892750,0.151617839932442,L, + 92372316000,0.151617944240570,L, + 94296739250,0.151617825031281,L, + 96221162500,0.151618182659149,L, + 98145585750,0.151617765426636,L, + 100070009000,0.151618167757988,L, + 101994432250,0.151618212461472,L, + 103918855500,0.151618093252182,L, + 105843278750,0.151617988944054,L, + 107767702000,0.151618123054504,L, + 109692125250,0.151617705821991,L, + 111616548500,0.151617988944054,L, + 113540971750,0.151617988944054,L, + 115465395000,0.151639461517334,L, + 117389818250,0.151703625917435,L, + 119314241500,0.151811793446541,L, + 121238664750,0.151962727308273,L, + 123163088000,0.152157858014107,L, + 125087511250,0.152396202087402,L, + 127011934500,0.152679115533829,L, + 128936357750,0.153005450963974,L, + 130860781000,0.153375178575516,L, + 132785204250,0.153788700699806,L, + 134709627500,0.154244646430016,L, + 136634050750,0.154743224382401,L, + 138558474000,0.155283927917480,L, + 140482897250,0.155865937471390,L, + 142407320500,0.156488180160522,L, + 144331743750,0.157149985432625,L, + 146256167000,0.157850012183189,L, + 148180590250,0.158586740493774,L, + 150105013500,0.159359604120255,L, + 152029436750,0.160165846347809,L, + 153953860000,0.161004737019539,L, + 155878283250,0.161873891949654,L, + 157802706500,0.162771299481392,L, + 159727129750,0.163694828748703,L, + 161651553000,0.164641723036766,L, + 163575976250,0.165610909461975,L, + 165500399500,0.166598066687584,L, + 167424822750,0.167601555585861,L, + 169349246000,0.168618738651276,L, + 171273669250,0.169645577669144,L, + 173198092500,0.170680746436119,L, + 175122515750,0.171719849109650,L, + 177046939000,0.172760546207428,L, + 178971362250,0.173799648880959,L, + 180895785500,0.174834340810776,L, + 182820208750,0.175861656665802,L, + 184744632000,0.176878869533539,L, + 186669055250,0.177882343530655,L, + 188593478500,0.178869992494583,L, + 190517901750,0.179838418960571,L, + 192442325000,0.180785804986954,L, + 194366748250,0.181709572672844,L, + 196291171500,0.182606980204582,L, + 198215594750,0.183475643396378,L, + 200140018000,0.184314578771591,L, + 202064441250,0.185120850801468,L, + 203988864500,0.185893669724464,L, + 205913287750,0.186630398035049,L, + 207837711000,0.187330380082130,L, + 209762134250,0.187991932034492,L, + 211686557500,0.188614502549171,L, + 213610980750,0.189196243882179,L, + 215535404000,0.189736917614937,L, + 217459827250,0.190235614776611,L, + 219384250500,0.190691962838173,L, + 221308673750,0.191105008125305,L, + 223233097000,0.191475182771683,L, + 225157520250,0.191801324486732,L, + 227081943500,0.192083910107613,L, + 229006366750,0.192322760820389,L, + 230930790000,0.192517444491386,L, + 232855213250,0.192668884992599,L, + 234779636500,0.192776560783386,L, + 236704059750,0.192840963602066,L, + 238628483000,0.192862406373024,L, + 240552906250,0.192671850323677,L, + 242477329500,0.192116051912308,L, + 244401752750,0.191219314932823,L, + 246326176000,0.190001919865608,L, + 248250599250,0.188485041260719,L, + 250175022500,0.186686128377914,L, + 252099445750,0.184623062610626,L, + 254023869000,0.182312220335007,L, + 255948292250,0.179768562316895,L, + 257872715500,0.177006885409355,L, + 259797138750,0.174041792750359,L, + 261721562000,0.170886725187302,L, + 263645985250,0.167554646730423,L, + 265570408500,0.164058923721313,L, + 267494831750,0.160412281751633,L, + 269419255000,0.156627893447876,L, + 271343678250,0.152719229459763,L, + 273268101500,0.148699581623077,L, + 275192524750,0.144582897424698,L, + 277116948000,0.140384033322334,L, + 279041371250,0.136118769645691,L, + 280965794500,0.131804883480072,L, + 282890217750,0.127461239695549,L, + 284814641000,0.123109444975853,L, + 286739064250,0.118774369359016,L, + 288663487500,0.114485204219818,L, + 290587910750,0.110278263688087,L, + 292512334000,0.106196358799934,L, + 294436757250,0.102296307682991,L, + 296361180500,0.098652482032776,L, + 298285603750,0.095368877053261,L, + 300210027000,0.092597812414169,L, + 302134450250,0.090581133961678,L, + 304058873500,0.089751377701759,L, + 307907720000,0.089751377701759,L, + 309832143250,0.151617929339409,L, + 344471761750,0.151617929339409,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.809629917144775 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-0.809629917144775,L, + 1924423250,-0.809652090072632,L, + 3848846500,-0.809714913368225,L, + 5773269750,-0.809813976287842,L, + 7697693000,-0.809945821762085,L, + 9622116250,-0.810107409954071,L, + 11546539500,-0.810296058654785,L, + 13470962750,-0.810509324073792,L, + 15395386000,-0.810745477676392,L, + 17319809250,-0.811002194881439,L, + 19244232500,-0.811278641223907,L, + 21168655750,-0.811573147773743,L, + 23093079000,-0.811884403228760,L, + 25017502250,-0.812211275100708,L, + 26941925500,-0.812552690505981,L, + 28866348750,-0.812907695770264,L, + 30790772000,-0.813275098800659,L, + 32715195250,-0.813654482364655,L, + 34639618500,-0.814044356346130,L, + 36564041750,-0.814444184303284,L, + 38488465000,-0.814853250980377,L, + 40412888250,-0.815269887447357,L, + 42337311500,-0.815693259239197,L, + 44261734750,-0.816121935844421,L, + 46186158000,-0.816553950309753,L, + 48110581250,-0.816986262798309,L, + 50035004500,-0.817414700984955,L, + 51959427750,-0.817831099033356,L, + 53883851000,-0.818215310573578,L, + 55808274250,-0.818469822406769,L, + 57732697500,-0.318506449460983,L, + 59657120750,-0.318876117467880,L, + 61581544000,-0.319542706012726,L, + 63505967250,-0.320301651954651,L, + 65430390500,-0.321088731288910,L, + 67354813750,-0.321872651576996,L, + 69279237000,-0.322633683681488,L, + 71203660250,-0.323357164859772,L, + 73128083500,-0.324030727148056,L, + 75052506750,-0.324642390012741,L, + 76976930000,-0.325179606676102,L, + 78901353250,-0.325629889965057,L, + 80825776500,-0.325976967811584,L, + 82750199750,-0.326202899217606,L, + 84674623000,-0.326284408569336,L, + 86599046250,-0.325801253318787,L, + 88523469500,-0.324340909719467,L, + 90447892750,-0.321910381317139,L, + 92372316000,-0.318561166524887,L, + 94296739250,-0.314398258924484,L, + 96221162500,-0.309590309858322,L, + 98145585750,-0.304365336894989,L, + 100070009000,-0.298996210098267,L, + 101994432250,-0.293771266937256,L, + 103918855500,-0.288963526487350,L, + 105843278750,-0.284800618886948,L, + 107767702000,-0.281451404094696,L, + 109692125250,-0.279020875692368,L, + 111616548500,-0.277560502290726,L, + 113540971750,-0.277077138423920,L, + 115465395000,-0.277336895465851,L, + 117389818250,-0.278117775917053,L, + 119314241500,-0.279424011707306,L, + 121238664750,-0.281257718801498,L, + 123163088000,-0.283620953559875,L, + 125087511250,-0.286515295505524,L, + 127011934500,-0.289940834045410,L, + 128936357750,-0.293896436691284,L, + 130860781000,-0.298380881547928,L, + 132785204250,-0.303390443325043,L, + 134709627500,-0.308921128511429,L, + 136634050750,-0.314967095851898,L, + 138558474000,-0.321521580219269,L, + 140482897250,-0.328575819730759,L, + 142407320500,-0.336119800806046,L, + 144331743750,-0.344140917062759,L, + 146256167000,-0.352626174688339,L, + 148180590250,-0.361559957265854,L, + 150105013500,-0.370924860239029,L, + 152029436750,-0.380701482295990,L, + 153953860000,-0.390869438648224,L, + 155878283250,-0.401405125856400,L, + 157802706500,-0.412284374237061,L, + 159727129750,-0.423480212688446,L, + 161651553000,-0.434964656829834,L, + 163575976250,-0.446708232164383,L, + 165500399500,-0.458679080009460,L, + 167424822750,-0.470844715833664,L, + 169349246000,-0.483171910047531,L, + 171273669250,-0.495625168085098,L, + 173198092500,-0.508169531822205,L, + 175122515750,-0.520768642425537,L, + 177046939000,-0.533385872840881,L, + 178971362250,-0.545984983444214,L, + 180895785500,-0.558529138565063,L, + 182820208750,-0.570982635021210,L, + 184744632000,-0.583309769630432,L, + 186669055250,-0.595475435256958,L, + 188593478500,-0.607446491718292,L, + 190517901750,-0.619189858436584,L, + 192442325000,-0.630674302577972,L, + 194366748250,-0.641870379447937,L, + 196291171500,-0.652749419212341,L, + 198215594750,-0.663285076618195,L, + 200140018000,-0.673452973365784,L, + 202064441250,-0.683229625225067,L, + 203988864500,-0.692594528198242,L, + 205913287750,-0.701528072357178,L, + 207837711000,-0.710013628005981,L, + 209762134250,-0.718034744262695,L, + 211686557500,-0.725578665733337,L, + 213610980750,-0.732632875442505,L, + 215535404000,-0.739187479019165,L, + 217459827250,-0.745233297348022,L, + 219384250500,-0.750764310359955,L, + 221308673750,-0.755773603916168,L, + 223233097000,-0.760258078575134,L, + 225157520250,-0.764213681221008,L, + 227081943500,-0.767639279365540,L, + 229006366750,-0.770533561706543,L, + 230930790000,-0.772896766662598,L, + 232855213250,-0.774730443954468,L, + 234779636500,-0.776036739349365,L, + 236704059750,-0.776817619800568,L, + 238628483000,-0.777077198028564,L, + 240552906250,-0.776879012584686,L, + 242477329500,-0.776301085948944,L, + 244401752750,-0.775368273258209,L, + 246326176000,-0.774102628231049,L, + 248250599250,-0.772524714469910,L, + 250175022500,-0.770653724670410,L, + 252099445750,-0.768508195877075,L, + 254023869000,-0.766105055809021,L, + 255948292250,-0.763459503650665,L, + 257872715500,-0.760587573051453,L, + 259797138750,-0.757503747940063,L, + 261721562000,-0.754222393035889,L, + 263645985250,-0.750757098197937,L, + 265570408500,-0.747121572494507,L, + 267494831750,-0.743329107761383,L, + 269419255000,-0.739393472671509,L, + 271343678250,-0.735328614711761,L, + 273268101500,-0.731148064136505,L, + 275192524750,-0.726866483688354,L, + 277116948000,-0.722499728202820,L, + 279041371250,-0.718063950538635,L, + 280965794500,-0.713577449321747,L, + 282890217750,-0.709060132503510,L, + 284814641000,-0.704534173011780,L, + 286739064250,-0.700025618076324,L, + 288663487500,-0.695565044879913,L, + 290587910750,-0.691189527511597,L, + 292512334000,-0.686944484710693,L, + 294436757250,-0.682888269424438,L, + 296361180500,-0.679099023342133,L, + 298285603750,-0.675683975219727,L, + 300210027000,-0.672802031040192,L, + 302134450250,-0.670704662799835,L, + 304058873500,-0.669841766357422,L, + 307907720000,-0.669841766357422,L, + 309832143250,-0.777113676071167,L, + 344471761750,-0.777113676071167,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608140945435 + KeyVer: 4005 + KeyCount: 160 + Key: + 0,0.093608140945435,L, + 1924423250,0.093608736991882,L, + 3848846500,0.093612194061279,L, + 5773269750,0.093621134757996,L, + 7697693000,0.093638300895691,L, + 9622116250,0.093665957450867,L, + 11546539500,0.093706369400024,L, + 13470962750,0.093761682510376,L, + 15395386000,0.093834280967712,L, + 17319809250,0.093926548957825,L, + 19244232500,0.094041466712952,L, + 21168655750,0.094181418418884,L, + 23093079000,0.094349622726440,L, + 25017502250,0.094549298286438,L, + 26941925500,0.094784379005432,L, + 28866348750,0.095059037208557,L, + 30790772000,0.095378637313843,L, + 32715195250,0.095748901367188,L, + 34639618500,0.096176862716675,L, + 36564041750,0.096671462059021,L, + 38488465000,0.097243309020996,L, + 40412888250,0.097905874252319,L, + 42337311500,0.098677635192871,L, + 44261734750,0.099582910537720,L, + 46186158000,0.100656509399414,L, + 48110581250,0.101950883865356,L, + 50035004500,0.103552699089050,L, + 51959427750,0.105624318122864,L, + 53883851000,0.108554840087891,L, + 55808274250,0.114208459854126,L, + 57732697500,0.572039723396301,L, + 59657120750,0.580274462699890,L, + 61581544000,0.588508963584900,L, + 63505967250,0.596743702888489,L, + 67354813750,0.613212704658508,L, + 69279237000,0.621447443962097,L, + 73128083500,0.637916445732117,L, + 75052506750,0.646151185035706,L, + 76976930000,0.654385685920715,L, + 78901353250,0.662620425224304,L, + 80825776500,0.670854926109314,L, + 82750199750,0.679089665412903,L, + 84674623000,0.687324166297913,L, + 86599046250,0.697948336601257,L, + 88523469500,0.709304451942444,L, + 90447892750,0.721375346183777,L, + 92372316000,0.734108090400696,L, + 94296739250,0.747405886650085,L, + 96221162500,0.761123061180115,L, + 98145585750,0.775067925453186,L, + 100070009000,0.789018511772156,L, + 101994432250,0.802743792533875,L, + 103918855500,0.816031813621521,L, + 105843278750,0.828709244728088,L, + 107767702000,0.840653538703918,L, + 109692125250,0.851792693138123,L, + 111616548500,0.862098813056946,L, + 113540971750,0.871576905250549,L, + 115465395000,0.880583643913269,L, + 117389818250,0.889457821846008,L, + 119314241500,0.898197770118713,L, + 121238664750,0.906801104545593,L, + 123163088000,0.915266156196594,L, + 125087511250,0.923591017723083,L, + 127011934500,0.931773543357849,L, + 128936357750,0.939813256263733,L, + 130860781000,0.947708010673523,L, + 132785204250,0.955457091331482,L, + 134709627500,0.963059067726135,L, + 136634050750,0.970514178276062,L, + 138558474000,0.977821230888367,L, + 140482897250,0.984980225563049,L, + 142407320500,0.991992115974426,L, + 144331743750,0.998856663703918,L, + 146256167000,1.005574822425842,L, + 148180590250,1.012148499488831,L, + 150105013500,1.018578886985779,L, + 152029436750,1.024868369102478,L, + 153953860000,1.031019806861877,L, + 155878283250,1.037035346031189,L, + 157802706500,1.042919278144836,L, + 159727129750,1.048675417900085,L, + 161651553000,1.054308056831360,L, + 163575976250,1.059821724891663,L, + 165500399500,1.065221905708313,L, + 167424822750,1.070514798164368,L, + 169349246000,1.075705647468567,L, + 171273669250,1.080801129341125,L, + 173198092500,1.085808157920837,L, + 175122515750,1.090733885765076,L, + 177046939000,1.095585227012634,L, + 178971362250,1.100370049476624,L, + 180895785500,1.105095744132996,L, + 182820208750,1.109770178794861,L, + 184744632000,1.114400982856750,L, + 186669055250,1.118996262550354,L, + 188593478500,1.123563885688782,L, + 190517901750,1.128111481666565,L, + 192442325000,1.132645964622498,L, + 194366748250,1.137175202369690,L, + 196291171500,1.141706824302673,L, + 198215594750,1.146246790885925,L, + 200140018000,1.150802493095398,L, + 202064441250,1.155380368232727,L, + 203988864500,1.159985661506653,L, + 205913287750,1.164624810218811,L, + 207837711000,1.169303059577942,L, + 209762134250,1.174024939537048,L, + 211686557500,1.178795933723450,L, + 213610980750,1.183619618415833,L, + 215535404000,1.188500523567200,L, + 217459827250,1.193441748619080,L, + 219384250500,1.198447346687317,L, + 221308673750,1.203519225120544,L, + 223233097000,1.208660960197449,L, + 225157520250,1.213874697685242,L, + 227081943500,1.219162344932556,L, + 229006366750,1.224525332450867,L, + 230930790000,1.229966282844543,L, + 232855213250,1.235485672950745,L, + 234779636500,1.241084933280945,L, + 236704059750,1.246765255928040,L, + 238628483000,1.252526640892029,L, + 240552906250,1.258973956108093,L, + 242477329500,1.266791701316833,L, + 244401752750,1.276044011116028,L, + 246326176000,1.286669850349426,L, + 248250599250,1.298424124717712,L, + 250175022500,1.310874581336975,L, + 252099445750,1.323490977287292,L, + 254023869000,1.335781216621399,L, + 255948292250,1.347393393516541,L, + 257872715500,1.358136296272278,L, + 259797138750,1.367945790290833,L, + 261721562000,1.376835942268372,L, + 263645985250,1.384863018989563,L, + 265570408500,1.392098784446716,L, + 267494831750,1.398617863655090,L, + 269419255000,1.404492497444153,L, + 271343678250,1.409787058830261,L, + 273268101500,1.414560198783875,L, + 275192524750,1.418863415718079,L, + 277116948000,1.422741055488586,L, + 279041371250,1.426232695579529,L, + 280965794500,1.429372668266296,L, + 282890217750,1.432191491127014,L, + 284814641000,1.434714913368225,L, + 286739064250,1.436967253684998,L, + 288663487500,1.438968777656555,L, + 290587910750,1.440738320350647,L, + 292512334000,1.442291855812073,L, + 294436757250,1.443644642829895,L, + 296361180500,1.444809794425964,L, + 298285603750,1.445799231529236,L, + 300210027000,1.446624398231506,L, + 302134450250,1.447294354438782,L, + 304058873500,1.447818160057068,L, + 307907720000,1.447818160057068,L, + 309832143250,0.093608140945435,L, + 344471761750,0.093608140945435,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 12.781315064579925 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,12.781315064579925,L, + 1924423250,12.749428326439766,L, + 3848846500,12.658624376519162,L, + 5773269750,12.515229677536828,L, + 7697693000,12.324532503457640,L, + 9622116250,12.090978453657620,L, + 11546539500,11.818387311430095,L, + 13470962750,11.510058058144176,L, + 15395386000,11.168856811930326,L, + 17319809250,10.797321841838846,L, + 19244232500,10.397701133880314,L, + 21168655750,9.972007032538942,L, + 23093079000,9.522072589833229,L, + 25017502250,9.049557541731488,L, + 26941925500,8.555999534570613,L, + 28866348750,8.042843153360062,L, + 30790772000,7.511451020839248,L, + 32715195250,6.963141363517983,L, + 34639618500,6.399218320640915,L, + 36564041750,5.821001826265146,L, + 38488465000,5.229876701244895,L, + 40412888250,4.627357540028610,L, + 42337311500,4.015188602175580,L, + 44261734750,3.395491728640148,L, + 46186158000,2.771061747453317,L, + 48110581250,2.145881512674843,L, + 50035004500,1.526324444573985,L, + 51959427750,0.924270589994906,L, + 53883851000,0.368416962054947,L, + 55808274250,0.000309066112053,L, + 57732697500,0.000001707547293,L, + 59657120750,0.911453099687161,L, + 61581544000,2.618167322552567,L, + 63505967250,4.641808512765044,L, + 65430390500,6.834830283543954,L, + 67354813750,9.127107509567701,L, + 69279237000,11.477621489775832,L, + 71203660250,13.858858514644282,L, + 73128083500,16.250230686467372,L, + 75052506750,18.634858046485082,L, + 76976930000,20.997625386064197,L, + 78901353250,23.323926345664667,L, + 80825776500,25.598572292119698,L, + 82750199750,27.804752422334619,L, + 84674623000,29.922655772621837,L, + 86599046250,32.005115563758615,L, + 88523469500,34.118123375958234,L, + 90447892750,36.256761473018294,L, + 92372316000,38.413502986473439,L, + 94296739250,40.577897726893575,L, + 96221162500,42.736722448045576,L, + 98145585750,44.874694601661552,L, + 100070009000,46.975940828110424,L, + 101994432250,49.025755730109175,L, + 103918855500,51.012241118123661,L, + 105843278750,52.927422746297900,L, + 107767702000,54.767390331332066,L, + 109692125250,56.531816024146003,L, + 111616548500,58.223073315476277,L, + 113540971750,59.845311545243675,L, + 115465395000,61.436103584072377,L, + 117389818250,63.029450113650668,L, + 119314241500,64.624954983006674,L, + 121238664750,66.222140078898505,L, + 123163088000,67.820540948462579,L, + 125087511250,69.419604346376161,L, + 127011934500,71.018783857505625,L, + 128936357750,72.617471595014862,L, + 130860781000,74.215032351311038,L, + 132785204250,75.810783107477164,L, + 134709627500,77.403993033272044,L, + 136634050750,78.993910807886991,L, + 138558474000,80.579716808621598,L, + 140482897250,82.160584582586281,L, + 142407320500,83.735605714621443,L, + 144331743750,85.303878619756659,L, + 146256167000,86.864426580940588,L, + 148180590250,88.416266050932762,L, + 150105013500,89.958372501357687,L, + 152029436750,91.489687252894001,L, + 153953860000,93.009144796031194,L, + 155878283250,94.515638640123726,L, + 157802706500,96.008089615282728,L, + 159727129750,97.485350249727645,L, + 161651553000,98.946327713191266,L, + 163575976250,100.389922345217244,L, + 165500399500,101.815027655160009,L, + 167424822750,103.220564473130736,L, + 169349246000,104.605487780186380,L, + 171273669250,105.968779878140623,L, + 173198092500,107.309477710320493,L, + 175122515750,108.626672861566391,L, + 177046939000,109.919456916718701,L, + 178971362250,111.187051234212035,L, + 180895785500,112.428704493237703,L, + 182820208750,113.643754165446197,L, + 184744632000,114.831571873433901,L, + 186669055250,115.991638522823877,L, + 188593478500,117.123551132455106,L, + 190517901750,118.226899890977379,L, + 192442325000,119.301425251202247,L, + 194366748250,120.346881326319576,L, + 196291171500,121.363172493680992,L, + 198215594750,122.350203130638121,L, + 200140018000,123.308014218325965,L, + 202064441250,124.236687719014583,L, + 203988864500,125.136360236487377,L, + 205913287750,126.007223016041081,L, + 207837711000,126.849549265242530,L, + 209762134250,127.663639512415173,L, + 211686557500,128.449862587774220,L, + 213610980750,129.208600981913150,L, + 215535404000,129.940291826938903,L, + 217459827250,130.645413236093333,L, + 219384250500,131.324429662239993,L, + 221308673750,131.977887520512525,L, + 223233097000,132.606278584531140,L, + 225157520250,133.210190250564438,L, + 227081943500,133.790155273367731,L, + 229006366750,134.346761049209618,L, + 230930790000,134.880553993223685,L, + 232855213250,135.392135162056917,L, + 234779636500,135.882078291599555,L, + 236704059750,136.350957117741928,L, + 238628483000,136.799331715995919,L, + 240552906250,137.225549180582448,L, + 242477329500,137.628462039720915,L, + 244401752750,138.009327048218637,L, + 246326176000,138.369250696721110,L, + 248250599250,138.709257513603859,L, + 250175022500,139.030344706485693,L, + 252099445750,139.333290916931986,L, + 254023869000,139.618929428021517,L, + 255948292250,139.888011560562944,L, + 257872715500,140.141179352338298,L, + 259797138750,140.379074841129494,L, + 261721562000,140.602258102448502,L, + 263645985250,140.811275551428935,L, + 265570408500,141.006618961691032,L, + 267494831750,141.188780106855006,L, + 269419255000,141.358182458649424,L, + 271343678250,141.515222168046108,L, + 273268101500,141.660309046395327,L, + 275192524750,141.793743622020486,L, + 277116948000,141.915935706271853,L, + 279041371250,142.027172167094506,L, + 280965794500,142.127739872433636,L, + 282890217750,142.217980331747725,L, + 284814641000,142.298125771468534,L, + 286739064250,142.368463059541227,L, + 288663487500,142.429279063910940,L, + 290587910750,142.480806011009435,L, + 292512334000,142.523399070673577,L, + 294436757250,142.557358771226831,L, + 296361180500,142.583040282506033,L, + 298285603750,142.600962698888111,L, + 300210027000,142.611795378911751,L, + 302134450250,142.616631152844121,L, + 304058873500,142.617478096301198,L, + 307907720000,142.617478096301198,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.112190190473129 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-33.112190190473129,L, + 1924423250,-33.120785983543577,L, + 3848846500,-33.145255136245112,L, + 5773269750,-33.183896931474408,L, + 7697693000,-33.235287274789506,L, + 9622116250,-33.298230883085672,L, + 11546539500,-33.371686152514464,L, + 13470962750,-33.454775403767549,L, + 15395386000,-33.546726825468717,L, + 17319809250,-33.646847153417205,L, + 19244232500,-33.754542161155229,L, + 21168655750,-33.869251773170838,L, + 23093079000,-33.990501291316733,L, + 25017502250,-34.117836508013099,L, + 26941925500,-34.250840781720562,L, + 28866348750,-34.389131621845614,L, + 30790772000,-34.532333367983895,L, + 32715195250,-34.680094265393151,L, + 34639618500,-34.832062559331135,L, + 36564041750,-34.987883079960994,L, + 38488465000,-35.147186997067557,L, + 40412888250,-35.309554254016867,L, + 42337311500,-35.474523813039951,L, + 44261734750,-35.641525353341109,L, + 46186158000,-35.809793893733300,L, + 48110581250,-35.978270754895178,L, + 50035004500,-36.145227898966731,L, + 51959427750,-36.307479042700152,L, + 53883851000,-36.457268506292898,L, + 55808274250,-36.556466758703436,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.310924873136415,L, + 61581544000,-35.850990179712170,L, + 63505967250,-35.305650800906214,L, + 65430390500,-34.714672098066295,L, + 67354813750,-34.096936129152887,L, + 69279237000,-33.463511215715982,L, + 71203660250,-32.821811528099623,L, + 73128083500,-32.177366104436921,L, + 75052506750,-31.534758001660951,L, + 76976930000,-30.898030691760351,L, + 78901353250,-30.271125193886217,L, + 80825776500,-29.658146451729721,L, + 82750199750,-29.063616050521400,L, + 84674623000,-28.492873490644907,L, + 86599046250,-27.936701431815322,L, + 88523469500,-27.381962005164144,L, + 90447892750,-26.829037701284896,L, + 92372316000,-26.278334916433192,L, + 94296739250,-25.730304443094251,L, + 96221162500,-25.185344139787230,L, + 98145585750,-24.643802346159791,L, + 100070009000,-24.105889090528915,L, + 101994432250,-23.571643646482332,L, + 103918855500,-23.040949900804154,L, + 105843278750,-22.513543183664037,L, + 107767702000,-21.989064910130558,L, + 109692125250,-21.467106976400810,L, + 111616548500,-20.947280061692105,L, + 113540971750,-20.429201675410919,L, + 115465395000,-19.914850864869265,L, + 117389818250,-19.406432073621755,L, + 119314241500,-18.903911150722543,L, + 121238664750,-18.407250530131197,L, + 123163088000,-17.916398985428934,L, + 125087511250,-17.431288214724063,L, + 127011934500,-16.951832840651949,L, + 128936357750,-16.477940655658806,L, + 130860781000,-16.009485301244986,L, + 132785204250,-15.546337003816255,L, + 134709627500,-15.088338669021709,L, + 136634050750,-14.635316127037509,L, + 138558474000,-14.187068741056788,L, + 140482897250,-13.743383921441628,L, + 142407320500,-13.304009804966386,L, + 144331743750,-12.868685136895310,L, + 146256167000,-12.437118780415028,L, + 148180590250,-12.008991424181843,L, + 150105013500,-11.583970950247362,L, + 152029436750,-11.161691943490993,L, + 153953860000,-10.741765083130042,L, + 155878283250,-10.323786534229834,L, + 157802706500,-9.907324287325368,L, + 159727129750,-9.491924988610483,L, + 161651553000,-9.077125038995266,L, + 163575976250,-8.662436933727708,L, + 165500399500,-8.247366337866628,L, + 167424822750,-7.831400133450634,L, + 169349246000,-7.414024348744680,L, + 171273669250,-6.994713059182676,L, + 173198092500,-6.572942474632647,L, + 175122515750,-6.148190512509912,L, + 177046939000,-5.719936797777082,L, + 178971362250,-5.287667358699113,L, + 180895785500,-4.850889140995296,L, + 182820208750,-4.409113359253152,L, + 184744632000,-3.961871291740890,L, + 186669055250,-3.508714280407407,L, + 188593478500,-3.049213090552047,L, + 190517901750,-2.582971998089776,L, + 192442325000,-2.109613208182127,L, + 194366748250,-1.628784966086845,L, + 196291171500,-1.140172869658699,L, + 198215594750,-0.643481513216085,L, + 200140018000,-0.138451349570545,L, + 202064441250,0.375144751748253,L, + 203988864500,0.897511509652421,L, + 205913287750,1.428822640398547,L, + 207837711000,1.969219310122952,L, + 209762134250,2.518821794188051,L, + 211686557500,3.077719098496466,L, + 213610980750,3.645977603949194,L, + 215535404000,4.223646829417715,L, + 217459827250,4.810734458864848,L, + 219384250500,5.407257567763518,L, + 221308673750,6.013191396677982,L, + 223233097000,6.628497952680982,L, + 225157520250,7.253128143787859,L, + 227081943500,7.887023486503845,L, + 229006366750,8.530092627048791,L, + 230930790000,9.182258725794537,L, + 232855213250,9.843418476129882,L, + 234779636500,10.513455764838939,L, + 236704059750,11.192268992857803,L, + 238628483000,11.879717287534843,L, + 240552906250,12.591126739593902,L, + 242477329500,13.339908425470275,L, + 244401752750,14.123283311945423,L, + 246326176000,14.938658488455680,L, + 248250599250,15.783616068034865,L, + 250175022500,16.655882451463015,L, + 252099445750,17.553292468773240,L, + 254023869000,18.473786817930780,L, + 255948292250,19.415381328981752,L, + 257872715500,20.376151596127507,L, + 259797138750,21.354209072062542,L, + 261721562000,22.347695945332610,L, + 263645985250,23.354757819578062,L, + 265570408500,24.373523222966313,L, + 267494831750,25.402098485549978,L, + 269419255000,26.438526758131857,L, + 271343678250,27.480765814150114,L, + 273268101500,28.526677804394541,L, + 275192524750,29.573967785304017,L, + 277116948000,30.620147860473367,L, + 279041371250,31.662503029707516,L, + 280965794500,32.697990443731229,L, + 282890217750,33.723184762675743,L, + 284814641000,34.734114231538705,L, + 286739064250,35.726165057535781,L, + 288663487500,36.693791127060926,L, + 290587910750,37.630227137741258,L, + 292512334000,38.527003655005963,L, + 294436757250,39.373206036561385,L, + 296361180500,40.154268904002485,L, + 298285603750,40.849913425683525,L, + 300210027000,41.430219957945319,L, + 302134450250,41.847667459637556,L, + 304058873500,42.017670868078930,L, + 307907720000,42.017670868078930,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 24.228139231388216 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,24.228139231388216,L, + 1924423250,24.228381703103750,L, + 3848846500,24.230014118315381,L, + 5773269750,24.234312014850605,L, + 7697693000,24.242436524868321,L, + 9622116250,24.255502676750538,L, + 11546539500,24.274606715859036,L, + 13470962750,24.300826104535385,L, + 15395386000,24.335274163614294,L, + 17319809250,24.379100072423618,L, + 19244232500,24.433529849919374,L, + 21168655750,24.499873184874904,L, + 23093079000,24.579584907583424,L, + 25017502250,24.674258159668835,L, + 26941925500,24.785685865788260,L, + 28866348750,24.915947818543973,L, + 30790772000,25.067431169050881,L, + 32715195250,25.242939709963277,L, + 34639618500,25.445850969825724,L, + 36564041750,25.680275014971272,L, + 38488465000,25.951320826899085,L, + 40412888250,26.265497575888173,L, + 42337311500,26.631351536137501,L, + 44261734750,27.060483783952325,L, + 46186158000,27.569396056367367,L, + 48110581250,28.182999760832921,L, + 50035004500,28.942308475767561,L, + 51959427750,29.924411131238529,L, + 53883851000,31.313623797092937,L, + 55808274250,33.993735385888726,L, + 57732697500,65.529353991385094,L, + 59657120750,64.716807366964872,L, + 61581544000,63.208619635958179,L, + 63505967250,61.436977848286141,L, + 65430390500,59.535425862600640,L, + 67354813750,57.568037683505487,L, + 69279237000,55.572990653366404,L, + 71203660250,53.576645887285018,L, + 73128083500,51.599534933906362,L, + 75052506750,49.659317247329483,L, + 76976930000,47.772610677804984,L, + 78901353250,45.956337019001559,L, + 80825776500,44.228808008083980,L, + 82750199750,42.611159665438826,L, + 84674623000,41.128878841953956,L, + 86599046250,39.695047965346504,L, + 88523469500,38.209474990681699,L, + 90447892750,36.686332560487287,L, + 92372316000,35.145865355463165,L, + 94296739250,33.614687207710247,L, + 96221162500,32.125217610123947,L, + 98145585750,30.713468735103117,L, + 100070009000,29.415582528640819,L, + 101994432250,28.263604530775417,L, + 103918855500,27.281843384762951,L, + 105843278750,26.484929355805566,L, + 107767702000,25.877766519727324,L, + 109692125250,25.457189083847929,L, + 111616548500,25.214203396577783,L, + 113540971750,25.136293136262854,L, + 115465395000,25.136433155140836,L, + 117389818250,25.136842966491038,L, + 119314241500,25.137519155218868,L, + 121238664750,25.138487334533714,L, + 123163088000,25.139718476131609,L, + 125087511250,25.141236485674643,L, + 127011934500,25.143022580142599,L, + 128936357750,25.145092127461108,L, + 130860781000,25.147434882346420,L, + 132785204250,25.150057674987700,L, + 134709627500,25.152950260101196,L, + 136634050750,25.156112637686910,L, + 138558474000,25.159537977555665,L, + 140482897250,25.163226279707466,L, + 142407320500,25.167165591311264,L, + 144331743750,25.171364450103525,L, + 146256167000,25.175802365516734,L, + 148180590250,25.180472507361724,L, + 150105013500,25.185373168091200,L, + 152029436750,25.190483857137654,L, + 153953860000,25.195801159406503,L, + 155878283250,25.201309706972111,L, + 157802706500,25.206995839456138,L, + 159727129750,25.212851019122123,L, + 161651553000,25.218853047855262,L, + 163575976250,25.224993387919096,L, + 165500399500,25.231256671387989,L, + 167424822750,25.237618992599845,L, + 169349246000,25.244063276081743,L, + 171273669250,25.250577569002633,L, + 173198092500,25.257131135511251,L, + 175122515750,25.263723975607597,L, + 177046939000,25.270320230798529,L, + 178971362250,25.276906240705703,L, + 180895785500,25.283463222308907,L, + 182820208750,25.289975807682502,L, + 184744632000,25.296425213806277,L, + 186669055250,25.302787535018137,L, + 188593478500,25.309045695845150,L, + 190517901750,25.315186035908983,L, + 192442325000,25.321186357094831,L, + 194366748250,25.327046659402694,L, + 196291171500,25.332731084339429,L, + 198215594750,25.338239631905036,L, + 200140018000,25.343560349268468,L, + 202064441250,25.348671038314922,L, + 203988864500,25.353568283949816,L, + 205913287750,25.358238425794806,L, + 207837711000,25.362672926113429,L, + 209762134250,25.366866662263810,L, + 211686557500,25.370816219151365,L, + 213610980750,25.374507936397752,L, + 215535404000,25.377928153624630,L, + 217459827250,25.381092238757635,L, + 219384250500,25.383984823871131,L, + 221308673750,25.386607616512411,L, + 223233097000,25.388948663850432,L, + 225157520250,25.391016503621650,L, + 227081943500,25.392811135826069,L, + 229006366750,25.394320607632640,L, + 230930790000,25.395555164325117,L, + 232855213250,25.396509683261623,L, + 234779636500,25.397201239915088,L, + 236704059750,25.397607636170701,L, + 238628483000,25.397744239954100,L, + 240552906250,25.371017709731881,L, + 242477329500,25.293158675835723,L, + 244401752750,25.167440506425358,L, + 246326176000,24.996877022472045,L, + 248250599250,24.784265186440901,L, + 250175022500,24.532183394743601,L, + 252099445750,24.243058072082793,L, + 254023869000,23.919187577114180,L, + 255948292250,23.562723419426309,L, + 257872715500,23.175724901053943,L, + 259797138750,22.760183022140136,L, + 261721562000,22.318005113010607,L, + 263645985250,21.851040447383138,L, + 265570408500,21.361143421617385,L, + 267494831750,20.850112083012352,L, + 269419255000,20.319788875096645,L, + 271343678250,19.772002581020530,L, + 273268101500,19.208662238657027,L, + 275192524750,18.631734942487096,L, + 277116948000,18.043298777565713,L, + 279041371250,17.445585508204172,L, + 280965794500,16.841019851557821,L, + 282890217750,16.232280949328604,L, + 284814641000,15.622401405507993,L, + 286739064250,15.014876569403741,L, + 288663487500,14.413818214896191,L, + 290587910750,13.824199573474749,L, + 292512334000,13.252166107845126,L, + 294436757250,12.705600710083150,L, + 296361180500,12.194967229997268,L, + 298285603750,11.734787503536552,L, + 300210027000,11.346422947330185,L, + 302134450250,11.063827285515897,L, + 304058873500,10.947538192254720,L, + 307907720000,10.947538192254720,L, + 309832143250,19.353271003764331,L, + 344471761750,19.353271003764331,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000025540588467 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025540588467,L, + 1924423250,0.000025527499020,L, + 3848846500,0.000025490231565,L, + 5773269750,0.000025431379981,L, + 7697693000,0.000025353107048,L, + 9622116250,0.000025257249945,L, + 11546539500,0.000025145367545,L, + 13470962750,0.000025018818633,L, + 15395386000,0.000024878776458,L, + 17319809250,0.000024726286938,L, + 19244232500,0.000024562272301,L, + 21168655750,0.000024387556550,L, + 23093079000,0.000024202887289,L, + 25017502250,0.000024008955734,L, + 26941925500,0.000023806385798,L, + 28866348750,0.000023595774110,L, + 30790772000,0.000023377677280,L, + 32715195250,0.000023152642825,L, + 34639618500,0.000022921200070,L, + 36564041750,0.000022683891075,L, + 38488465000,0.000022441287001,L, + 40412888250,0.000022194008125,L, + 42337311500,0.000021942774765,L, + 44261734750,0.000021688450943,L, + 46186158000,0.000021432193535,L, + 48110581250,0.000021175634174,L, + 50035004500,0.000020921392206,L, + 51959427750,0.000020674349798,L, + 53883851000,0.000020446290364,L, + 55808274250,0.000020295379727,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238624900579453,L, + 61581544000,0.255922883749008,L, + 63505967250,0.267170011997223,L, + 65430390500,0.274974405765533,L, + 67354813750,0.280564606189728,L, + 69279237000,0.284645706415176,L, + 71203660250,0.287676155567169,L, + 73128083500,0.289983600378036,L, + 75052506750,0.291821151971817,L, + 76976930000,0.293399393558502,L, + 78901353250,0.294906288385391,L, + 80825776500,0.296521902084351,L, + 82750199750,0.298431694507599,L, + 84674623000,0.300840198993683,L, + 86599046250,0.303359389305115,L, + 88523469500,0.305441111326218,L, + 90447892750,0.307083278894424,L, + 92372316000,0.308302015066147,L, + 94296739250,0.309136182069778,L, + 96221162500,0.309652239084244,L, + 98145585750,0.309943109750748,L, + 100070009000,0.310122251510620,L, + 101994432250,0.310312658548355,L, + 103918855500,0.310632318258286,L, + 105843278750,0.311182498931885,L, + 107767702000,0.312040060758591,L, + 109692125250,0.313255786895752,L, + 111616548500,0.314856737852097,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319108784198761,L, + 117389818250,0.321499496698380,L, + 119314241500,0.324023634195328,L, + 121238664750,0.326680988073349,L, + 123163088000,0.329471141099930,L, + 125087511250,0.332393288612366,L, + 127011934500,0.335446566343307,L, + 128936357750,0.338629484176636,L, + 130860781000,0.341940522193909,L, + 132785204250,0.345377385616302,L, + 134709627500,0.348937988281250,L, + 136634050750,0.352619230747223,L, + 138558474000,0.356417953968048,L, + 140482897250,0.360330194234848,L, + 142407320500,0.364352107048035,L, + 144331743750,0.368478685617447,L, + 146256167000,0.372704893350601,L, + 148180590250,0.377025038003922,L, + 150105013500,0.381432801485062,L, + 152029436750,0.385921567678452,L, + 153953860000,0.390484064817429,L, + 155878283250,0.395112574100494,L, + 157802706500,0.399798899888992,L, + 159727129750,0.404534399509430,L, + 161651553000,0.409310013055801,L, + 163575976250,0.414116263389587,L, + 165500399500,0.418943345546722,L, + 167424822750,0.423781335353851,L, + 169349246000,0.428619682788849,L, + 171273669250,0.433448076248169,L, + 173198092500,0.438255816698074,L, + 175122515750,0.443032294511795,L, + 177046939000,0.447766840457916,L, + 178971362250,0.452448964118958,L, + 180895785500,0.457068175077438,L, + 182820208750,0.461614370346069,L, + 184744632000,0.466077625751495,L, + 186669055250,0.470448374748230,L, + 188593478500,0.474717527627945,L, + 190517901750,0.478876233100891,L, + 192442325000,0.482916295528412,L, + 194366748250,0.486829906702042,L, + 196291171500,0.490610063076019,L, + 198215594750,0.494249880313873,L, + 200140018000,0.497743427753448,L, + 202064441250,0.501085221767426,L, + 203988864500,0.504270315170288,L, + 205913287750,0.507294297218323,L, + 207837711000,0.510153710842133,L, + 209762134250,0.512844860553741,L, + 211686557500,0.515365481376648,L, + 213610980750,0.517713129520416,L, + 215535404000,0.519886255264282,L, + 217459827250,0.521883547306061,L, + 219384250500,0.523704171180725,L, + 221308673750,0.525347709655762,L, + 223233097000,0.526814222335815,L, + 225157520250,0.528103828430176,L, + 227081943500,0.529217243194580,L, + 229006366750,0.530155420303345,L, + 230930790000,0.530919373035431,L, + 232855213250,0.531510591506958,L, + 234779636500,0.531930685043335,L, + 236704059750,0.532181084156036,L, + 238628483000,0.532264232635498,L, + 240552906250,0.531710743904114,L, + 242477329500,0.530089855194092,L, + 244401752750,0.527456939220428,L, + 246326176000,0.523862004280090,L, + 248250599250,0.519350528717041,L, + 250175022500,0.513964056968689,L, + 252099445750,0.507740199565887,L, + 254023869000,0.500713944435120,L, + 255948292250,0.492916971445084,L, + 257872715500,0.484378188848495,L, + 259797138750,0.475124508142471,L, + 261721562000,0.465180665254593,L, + 263645985250,0.454568922519684,L, + 265570408500,0.443310052156448,L, + 267494831750,0.431423246860504,L, + 269419255000,0.418925613164902,L, + 271343678250,0.405833184719086,L, + 273268101500,0.392160147428513,L, + 275192524750,0.377919435501099,L, + 277116948000,0.363122612237930,L, + 279041371250,0.347779721021652,L, + 280965794500,0.331899464130402,L, + 282890217750,0.315488964319229,L, + 284814641000,0.298553854227066,L, + 286739064250,0.281097948551178,L, + 288663487500,0.263123154640198,L, + 290587910750,0.244629070162773,L, + 292512334000,0.225612506270409,L, + 294436757250,0.206066712737083,L, + 296361180500,0.185980305075645,L, + 298285603750,0.165335178375244,L, + 300210027000,0.144103288650513,L, + 302134450250,0.122239679098129,L, + 304058873500,0.099667996168137,L, + 307907720000,0.099667996168137,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000022053716748 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000022053716748,L, + 1924423250,0.000022049329345,L, + 3848846500,0.000022036834707,L, + 5773269750,0.000022017109586,L, + 7697693000,0.000021990868845,L, + 9622116250,0.000021958736397,L, + 11546539500,0.000021921227017,L, + 13470962750,0.000021878806365,L, + 15395386000,0.000021831861886,L, + 17319809250,0.000021780739189,L, + 19244232500,0.000021725758415,L, + 21168655750,0.000021667188776,L, + 23093079000,0.000021605283109,L, + 25017502250,0.000021540270609,L, + 26941925500,0.000021472369554,L, + 28866348750,0.000021401763661,L, + 30790772000,0.000021328653020,L, + 32715195250,0.000021253215891,L, + 34639618500,0.000021175626898,L, + 36564041750,0.000021096075216,L, + 38488465000,0.000021014748199,L, + 40412888250,0.000020931855033,L, + 42337311500,0.000020847630367,L, + 44261734750,0.000020762377972,L, + 46186158000,0.000020676470740,L, + 48110581250,0.000020590467102,L, + 50035004500,0.000020505234716,L, + 51959427750,0.000020422421585,L, + 53883851000,0.000020345971279,L, + 55808274250,0.000020295377908,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238431766629219,L, + 61581544000,0.255596786737442,L, + 63505967250,0.266741186380386,L, + 65430390500,0.274464070796967,L, + 67354813750,0.279989808797836,L, + 69279237000,0.284021466970444,L, + 71203660250,0.287016510963440,L, + 73128083500,0.289302140474319,L, + 75052506750,0.291131526231766,L, + 76976930000,0.292715609073639,L, + 78901353250,0.294243097305298,L, + 80825776500,0.295895457267761,L, + 82750199750,0.297859489917755,L, + 84674623000,0.300342142581940,L, + 86599046250,0.302909731864929,L, + 88523469500,0.305016607046127,L, + 90447892750,0.306721061468124,L, + 92372316000,0.308075636625290,L, + 94296739250,0.309129208326340,L, + 96221162500,0.309928983449936,L, + 98145585750,0.310521692037582,L, + 100070009000,0.310956478118896,L, + 101994432250,0.311287254095078,L, + 103918855500,0.311576664447784,L, + 105843278750,0.311902999877930,L, + 107767702000,0.312371373176575,L, + 109692125250,0.313137203454971,L, + 111616548500,0.314459115266800,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319951832294464,L, + 117389818250,0.322982698678970,L, + 119314241500,0.325968474149704,L, + 121238664750,0.328915923833847,L, + 123163088000,0.331828594207764,L, + 125087511250,0.334708690643311,L, + 127011934500,0.337557733058929,L, + 128936357750,0.340376853942871,L, + 130860781000,0.343166649341583,L, + 132785204250,0.345927774906158,L, + 134709627500,0.348660588264465,L, + 136634050750,0.351365298032761,L, + 138558474000,0.354042202234268,L, + 140482897250,0.356691271066666,L, + 142407320500,0.359312474727631,L, + 144331743750,0.361905902624130,L, + 146256167000,0.364471405744553,L, + 148180590250,0.367008686065674,L, + 150105013500,0.369517743587494,L, + 152029436750,0.371998280286789,L, + 153953860000,0.374449938535690,L, + 155878283250,0.376872509717941,L, + 157802706500,0.379265636205673,L, + 159727129750,0.381628841161728,L, + 161651553000,0.383961796760559,L, + 163575976250,0.386263966560364,L, + 165500399500,0.388534933328629,L, + 167424822750,0.390774130821228,L, + 169349246000,0.392980933189392,L, + 171273669250,0.395154893398285,L, + 173198092500,0.397295236587524,L, + 175122515750,0.399401307106018,L, + 177046939000,0.401472449302673,L, + 178971362250,0.403507828712463,L, + 180895785500,0.405506610870361,L, + 182820208750,0.407467991113663,L, + 184744632000,0.409390985965729,L, + 186669055250,0.411274731159210,L, + 188593478500,0.413118124008179,L, + 190517901750,0.414920061826706,L, + 192442325000,0.416679412126541,L, + 194366748250,0.418394953012466,L, + 196291171500,0.420065313577652,L, + 198215594750,0.421689331531525,L, + 200140018000,0.423265278339386,L, + 202064441250,0.424791723489761,L, + 203988864500,0.426266908645630,L, + 205913287750,0.427689135074615,L, + 207837711000,0.429056495428085,L, + 209762134250,0.430366903543472,L, + 211686557500,0.431618303060532,L, + 213610980750,0.432808160781860,L, + 215535404000,0.433934003114700,L, + 217459827250,0.434993237257004,L, + 219384250500,0.435982912778854,L, + 221308673750,0.436899721622467,L, + 223233097000,0.437740385532379,L, + 225157520250,0.438501089811325,L, + 227081943500,0.439177811145782,L, + 229006366750,0.439766019582748,L, + 230930790000,0.440260916948318,L, + 232855213250,0.440657198429108,L, + 234779636500,0.440948694944382,L, + 236704059750,0.441129118204117,L, + 238628483000,0.441191047430038,L, + 240552906250,0.440665364265442,L, + 242477329500,0.439128160476685,L, + 244401752750,0.436635047197342,L, + 246326176000,0.433236539363861,L, + 248250599250,0.428978949785233,L, + 250175022500,0.423904597759247,L, + 252099445750,0.418052643537521,L, + 254023869000,0.411458939313889,L, + 255948292250,0.404157042503357,L, + 257872715500,0.396177977323532,L, + 259797138750,0.387550562620163,L, + 261721562000,0.378301918506622,L, + 263645985250,0.368457466363907,L, + 265570408500,0.358041077852249,L, + 267494831750,0.347075492143631,L, + 269419255000,0.335582196712494,L, + 271343678250,0.323581814765930,L, + 273268101500,0.311094105243683,L, + 275192524750,0.298138201236725,L, + 277116948000,0.284732937812805,L, + 279041371250,0.270896762609482,L, + 280965794500,0.256648302078247,L, + 282890217750,0.242006242275238,L, + 284814641000,0.226990118622780,L, + 286739064250,0.211620554327965,L, + 288663487500,0.195920005440712,L, + 290587910750,0.179913669824600,L, + 292512334000,0.163630858063698,L, + 294436757250,0.147107362747192,L, + 296361180500,0.130388826131821,L, + 298285603750,0.113537006080151,L, + 300210027000,0.096641957759857,L, + 302134450250,0.079846352338791,L, + 304058873500,0.063407205045223,L, + 307907720000,0.063407205045223,L, + 309832143250,0.000028520822525,L, + 344471761750,0.000028520822525,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000025004148483 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025004148483,L, + 1924423250,0.000024992399631,L, + 3848846500,0.000024958939321,L, + 5773269750,0.000024906106773,L, + 7697693000,0.000024835841032,L, + 9622116250,0.000024749786462,L, + 11546539500,0.000024649349143,L, + 13470962750,0.000024535742341,L, + 15395386000,0.000024410022888,L, + 17319809250,0.000024273125746,L, + 19244232500,0.000024125885830,L, + 21168655750,0.000023969036192,L, + 23093079000,0.000023803253498,L, + 25017502250,0.000023629156203,L, + 26941925500,0.000023447308195,L, + 28866348750,0.000023258233341,L, + 30790772000,0.000023062444598,L, + 32715195250,0.000022860420358,L, + 34639618500,0.000022652649932,L, + 36564041750,0.000022439611712,L, + 38488465000,0.000022221818654,L, + 40412888250,0.000021999832825,L, + 42337311500,0.000021774290872,L, + 44261734750,0.000021545980417,L, + 46186158000,0.000021315929189,L, + 48110581250,0.000021085606932,L, + 50035004500,0.000020857369236,L, + 51959427750,0.000020635590772,L, + 53883851000,0.000020430858058,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238643720746040,L, + 61581544000,0.255954623222351,L, + 63505967250,0.267211735248566,L, + 65430390500,0.275024116039276,L, + 67354813750,0.280620604753494,L, + 69279237000,0.284706413745880,L, + 71203660250,0.287740379571915,L, + 73128083500,0.290049940347672,L, + 75052506750,0.291888356208801,L, + 76976930000,0.293466001749039,L, + 78901353250,0.294970810413361,L, + 80825776500,0.296582907438278,L, + 82750199750,0.298487424850464,L, + 84674623000,0.300888717174530,L, + 86599046250,0.303409337997437,L, + 88523469500,0.305511295795441,L, + 90447892750,0.307190865278244,L, + 92372316000,0.308460980653763,L, + 94296739250,0.309356451034546,L, + 96221162500,0.309937536716461,L, + 98145585750,0.310290098190308,L, + 100070009000,0.310519993305206,L, + 101994432250,0.310742646455765,L, + 103918855500,0.311069697141647,L, + 105843278750,0.311597794294357,L, + 107767702000,0.312400996685028,L, + 109692125250,0.313528895378113,L, + 111616548500,0.315009146928787,L, + 113540971750,0.316851437091827,L, + 115465395000,0.318933367729187,L, + 117389818250,0.321133226156235,L, + 119314241500,0.323450922966003,L, + 121238664750,0.325886189937592,L, + 123163088000,0.328438699245453,L, + 125087511250,0.331107795238495,L, + 127011934500,0.333892405033112,L, + 128936357750,0.336791455745697,L, + 130860781000,0.339803338050842,L, + 132785204250,0.342926204204559,L, + 134709627500,0.346157878637314,L, + 136634050750,0.349495738744736,L, + 138558474000,0.352936863899231,L, + 140482897250,0.356477916240692,L, + 142407320500,0.360115021467209,L, + 144331743750,0.363844066858292,L, + 146256167000,0.367660313844681,L, + 148180590250,0.371558815240860,L, + 150105013500,0.375533789396286,L, + 152029436750,0.379579305648804,L, + 153953860000,0.383688986301422,L, + 155878283250,0.387855887413025,L, + 157802706500,0.392072588205338,L, + 159727129750,0.396331578493118,L, + 161651553000,0.400624543428421,L, + 163575976250,0.404943287372589,L, + 165500399500,0.409278959035873,L, + 167424822750,0.413622558116913,L, + 169349246000,0.417964994907379,L, + 171273669250,0.422296911478043,L, + 173198092500,0.426608800888062,L, + 175122515750,0.430891275405884,L, + 177046939000,0.435134857892990,L, + 178971362250,0.439330220222473,L, + 180895785500,0.443467974662781,L, + 182820208750,0.447539269924164,L, + 184744632000,0.451535254716873,L, + 186669055250,0.455447584390640,L, + 188593478500,0.459267854690552,L, + 190517901750,0.462988555431366,L, + 192442325000,0.466602295637131,L, + 194366748250,0.470102369785309,L, + 196291171500,0.473482221364975,L, + 198215594750,0.476736068725586,L, + 200140018000,0.479858666658401,L, + 202064441250,0.482844948768616,L, + 203988864500,0.485690861940384,L, + 205913287750,0.488392382860184,L, + 207837711000,0.490946322679520,L, + 209762134250,0.493349790573120,L, + 211686557500,0.495600551366806,L, + 213610980750,0.497696667909622,L, + 215535404000,0.499636650085449,L, + 217459827250,0.501419365406036,L, + 219384250500,0.503044247627258,L, + 221308673750,0.504510998725891,L, + 223233097000,0.505819499492645,L, + 225157520250,0.506970167160034,L, + 227081943500,0.507963418960571,L, + 229006366750,0.508800268173218,L, + 230930790000,0.509481787681580,L, + 232855213250,0.510008871555328,L, + 234779636500,0.510383486747742,L, + 236704059750,0.510606944561005,L, + 238628483000,0.510681033134460,L, + 240552906250,0.510144233703613,L, + 242477329500,0.508572399616241,L, + 244401752750,0.506019473075867,L, + 246326176000,0.502534151077271,L, + 248250599250,0.498160988092422,L, + 250175022500,0.492940306663513,L, + 252099445750,0.486909180879593,L, + 254023869000,0.480101436376572,L, + 255948292250,0.472548305988312,L, + 257872715500,0.464278101921082,L, + 259797138750,0.455317199230194,L, + 261721562000,0.445689707994461,L, + 263645985250,0.435417920351028,L, + 265570408500,0.424522221088409,L, + 267494831750,0.413021445274353,L, + 269419255000,0.400932908058167,L, + 271343678250,0.388272374868393,L, + 273268101500,0.375054210424423,L, + 275192524750,0.361291706562042,L, + 277116948000,0.346996635198593,L, + 279041371250,0.332179427146912,L, + 280965794500,0.316849559545517,L, + 282890217750,0.301014930009842,L, + 284814641000,0.284682154655457,L, + 286739064250,0.267856448888779,L, + 288663487500,0.250541448593140,L, + 290587910750,0.232738986611366,L, + 292512334000,0.214448705315590,L, + 294436757250,0.195667758584023,L, + 296361180500,0.176389917731285,L, + 298285603750,0.156604379415512,L, + 300210027000,0.136294096708298,L, + 302134450250,0.115431457757950,L, + 304058873500,0.093970775604248,L, + 307907720000,0.093970775604248,L, + 309832143250,0.000042378902435,L, + 344471761750,0.000042378902435,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_015" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.032781809568405 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.032781809568405,L, + 157802706500,0.032781809568405,L, + 159727129750,0.015258371829987,L, + 161651553000,0.014781445264816,L, + 163575976250,0.014308802783489,L, + 165500399500,0.013841234147549,L, + 167424822750,0.013378620147705,L, + 169349246000,0.012921787798405,L, + 171273669250,0.012471117079258,L, + 173198092500,0.012025564908981,L, + 175122515750,0.011586993932724,L, + 177046939000,0.011154860258102,L, + 178971362250,0.010730095207691,L, + 180895785500,0.010312214493752,L, + 182820208750,0.009901680052280,L, + 184744632000,0.009498529136181,L, + 186669055250,0.009104184806347,L, + 188593478500,0.008718229830265,L, + 190517901750,0.008340232074261,L, + 192442325000,0.007971674203873,L, + 194366748250,0.007612116634846,L, + 196291171500,0.007262565195560,L, + 198215594750,0.006922118365765,L, + 200140018000,0.006591774523258,L, + 202064441250,0.006271570920944,L, + 203988864500,0.005962446331978,L, + 205913287750,0.005663461983204,L, + 207837711000,0.005375057458878,L, + 209762134250,0.005097180604935,L, + 211686557500,0.004830703139305,L, + 213610980750,0.004575468599796,L, + 215535404000,0.004330888390541,L, + 217459827250,0.004097670316696,L, + 219384250500,0.003875114023685,L, + 221308673750,0.003663875162601,L, + 223233097000,0.003463141620159,L, + 225157520250,0.003273472189903,L, + 227081943500,0.003094442188740,L, + 229006366750,0.002925567328930,L, + 230930790000,0.002767279744148,L, + 232855213250,0.002618998289108,L, + 234779636500,0.002480119466782,L, + 236704059750,0.002351418137550,L, + 238628483000,0.002231240272522,L, + 240552906250,0.002120308578014,L, + 242477329500,0.002017833292484,L, + 244401752750,0.001923553645611,L, + 246326176000,0.001837581396103,L, + 248250599250,0.001759089529514,L, + 250175022500,0.001687720417976,L, + 252099445750,0.001623563468456,L, + 254023869000,0.001565754413605,L, + 255948292250,0.001514345407486,L, + 257872715500,0.001468956470490,L, + 259797138750,0.001429162919521,L, + 261721562000,0.001394562423229,L, + 263645985250,0.001365691423416,L, + 265570408500,0.001341186463833,L, + 267494831750,0.001321129500866,L, + 269419255000,0.001305140554905,L, + 271343678250,0.001293294131756,L, + 273268101500,0.001285210251808,L, + 275192524750,0.001280054450035,L, + 277116948000,0.001278892159462,L, + 279041371250,0.001351311802864,L, + 280965794500,0.001558028161526,L, + 282890217750,0.001884952187538,L, + 284814641000,0.002320490777493,L, + 286739064250,0.002854838967323,L, + 288663487500,0.003478422760963,L, + 290587910750,0.004185318946838,L, + 292512334000,0.004967674612999,L, + 294436757250,0.005820728838444,L, + 296361180500,0.006739713251591,L, + 298285603750,0.007719241082668,L, + 300210027000,0.008755505084991,L, + 302134450250,0.009844385087490,L, + 304058873500,0.010983563959599,L, + 305983296750,0.012169256806374,L, + 307907720000,0.013398416340351,L, + 309832143250,0.014668226242065,L, + 311756566500,0.015976011753082,L, + 313680989750,0.017319627106190,L, + 315605413000,0.018695428967476,L, + 317529836250,0.020101502537727,L, + 319454259500,0.021534085273743,L, + 321378682750,0.022989705204964,L, + 323303106000,0.024464160203934,L, + 325227529250,0.025951221585274,L, + 327151952500,0.027443811297417,L, + 329076375750,0.028928384184837,L, + 331000799000,0.030379980802536,L, + 332925222250,0.031739950180054,L, + 334849645500,0.032710075378418,L, + 336774068750,0.032781809568405,L, + 344471761750,0.032781809568405,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.028244912624359 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,-0.028244912624359,L, + 157802706500,-0.028244912624359,L, + 159727129750,-0.062223404645920,L, + 161651553000,-0.063218608498573,L, + 163575976250,-0.064210921525955,L, + 165500399500,-0.065200179815292,L, + 167424822750,-0.066185995936394,L, + 169349246000,-0.067167699337006,L, + 171273669250,-0.068145126104355,L, + 173198092500,-0.069116815924644,L, + 175122515750,-0.070083275437355,L, + 177046939000,-0.071043044328690,L, + 178971362250,-0.071996092796326,L, + 180895785500,-0.072941124439240,L, + 182820208750,-0.073877885937691,L, + 184744632000,-0.074805274605751,L, + 186669055250,-0.075722977519035,L, + 188593478500,-0.076629936695099,L, + 190517901750,-0.077525258064270,L, + 192442325000,-0.078408122062683,L, + 194366748250,-0.079277917742729,L, + 196291171500,-0.080134034156799,L, + 198215594750,-0.080975145101547,L, + 200140018000,-0.081800401210785,L, + 202064441250,-0.082608968019485,L, + 203988864500,-0.083400547504425,L, + 205913287750,-0.084174096584320,L, + 207837711000,-0.084928385913372,L, + 209762134250,-0.085663162171841,L, + 211686557500,-0.086377486586571,L, + 213610980750,-0.087070986628532,L, + 215535404000,-0.087742768228054,L, + 217459827250,-0.088392317295074,L, + 219384250500,-0.089019350707531,L, + 221308673750,-0.089623175561428,L, + 223233097000,-0.090203627943993,L, + 225157520250,-0.090760372579098,L, + 227081943500,-0.091293103992939,L, + 229006366750,-0.091801613569260,L, + 230930790000,-0.092286415398121,L, + 232855213250,-0.092746920883656,L, + 234779636500,-0.093183025717735,L, + 236704059750,-0.093595437705517,L, + 238628483000,-0.093983910977840,L, + 240552906250,-0.094348981976509,L, + 242477329500,-0.094690747559071,L, + 244401752750,-0.095009535551071,L, + 246326176000,-0.095305994153023,L, + 248250599250,-0.095580279827118,L, + 250175022500,-0.095832839608192,L, + 252099445750,-0.096064575016499,L, + 254023869000,-0.096275463700294,L, + 255948292250,-0.096466243267059,L, + 257872715500,-0.096637584269047,L, + 259797138750,-0.096790000796318,L, + 261721562000,-0.096923932433128,L, + 263645985250,-0.097040116786957,L, + 265570408500,-0.097139030694962,L, + 267494831750,-0.097220882773399,L, + 269419255000,-0.097286842763424,L, + 271343678250,-0.097337134182453,L, + 273268101500,-0.097372435033321,L, + 275192524750,-0.097393169999123,L, + 277116948000,-0.097400225698948,L, + 279041371250,-0.097240760922432,L, + 280965794500,-0.096786752343178,L, + 282890217750,-0.096068821847439,L, + 284814641000,-0.095112860202789,L, + 286739064250,-0.093940652906895,L, + 288663487500,-0.092570751905441,L, + 290587910750,-0.091019704937935,L, + 292512334000,-0.089301466941833,L, + 294436757250,-0.087428629398346,L, + 296361180500,-0.085412427783012,L, + 298285603750,-0.083262443542480,L, + 300210027000,-0.080987766385078,L, + 302134450250,-0.078596532344818,L, + 304058873500,-0.076096400618553,L, + 305983296750,-0.073493838310242,L, + 307907720000,-0.070795461535454,L, + 309832143250,-0.068007901310921,L, + 311756566500,-0.065136611461639,L, + 313680989750,-0.062187492847443,L, + 315605413000,-0.059166774153709,L, + 317529836250,-0.056080862879753,L, + 319454259500,-0.052936419844627,L, + 321378682750,-0.049740925431252,L, + 323303106000,-0.046504124999046,L, + 325227529250,-0.043238893151283,L, + 327151952500,-0.039962649345398,L, + 329076375750,-0.036704510450363,L, + 331000799000,-0.033517554402351,L, + 332925222250,-0.030532330274582,L, + 334849645500,-0.028403103351593,L, + 336774068750,-0.028244912624359,L, + 344471761750,-0.028244912624359,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775902748108 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.007775902748108,L, + 157802706500,0.007775902748108,L, + 159727129750,0.003469109535217,L, + 161651553000,0.003611922264099,L, + 163575976250,0.004034757614136,L, + 165500399500,0.004729747772217,L, + 167424822750,0.005688548088074,L, + 169349246000,0.006904244422913,L, + 171273669250,0.008369088172913,L, + 173198092500,0.010076522827148,L, + 175122515750,0.012019872665405,L, + 177046939000,0.014192461967468,L, + 178971362250,0.016588211059570,L, + 180895785500,0.019201278686523,L, + 182820208750,0.022025585174561,L, + 184744632000,0.025055766105652,L, + 186669055250,0.028286337852478,L, + 188593478500,0.031711935997009,L, + 190517901750,0.035327315330505,L, + 192442325000,0.039127826690674,L, + 194366748250,0.043108105659485,L, + 196291171500,0.047263860702515,L, + 198215594750,0.051590085029602,L, + 200140018000,0.056082487106323,L, + 202064441250,0.060736298561096,L, + 203988864500,0.065547108650208,L, + 205913287750,0.070510864257812,L, + 207837711000,0.075622916221619,L, + 209762134250,0.080879211425781,L, + 211686557500,0.086275577545166,L, + 213610980750,0.091807603836060,L, + 215535404000,0.097471117973328,L, + 217459827250,0.103262066841125,L, + 219384250500,0.109176278114319,L, + 221308673750,0.115209341049194,L, + 223233097000,0.121356964111328,L, + 225157520250,0.127614736557007,L, + 227081943500,0.133978605270386,L, + 229006366750,0.140443444252014,L, + 230930790000,0.147005081176758,L, + 232855213250,0.153658509254456,L, + 234779636500,0.160398721694946,L, + 236704059750,0.167220711708069,L, + 238628483000,0.174118757247925,L, + 240552906250,0.181087255477905,L, + 242477329500,0.188120126724243,L, + 244401752750,0.195211052894592,L, + 246326176000,0.202352762222290,L, + 248250599250,0.209537863731384,L, + 250175022500,0.216758131980896,L, + 252099445750,0.224004626274109,L, + 254023869000,0.231267094612122,L, + 255948292250,0.238534688949585,L, + 257872715500,0.245794773101807,L, + 259797138750,0.253032922744751,L, + 261721562000,0.260232448577881,L, + 263645985250,0.267374753952026,L, + 265570408500,0.274436593055725,L, + 267494831750,0.281391382217407,L, + 269419255000,0.288205981254578,L, + 271343678250,0.294838786125183,L, + 273268101500,0.301238656044006,L, + 275192524750,0.307337403297424,L, + 277116948000,0.313043475151062,L, + 279041371250,0.318903088569641,L, + 280965794500,0.325497508049011,L, + 282890217750,0.332769513130188,L, + 284814641000,0.340668559074402,L, + 286739064250,0.349150300025940,L, + 288663487500,0.358174443244934,L, + 290587910750,0.367705225944519,L, + 292512334000,0.377710223197937,L, + 294436757250,0.388159155845642,L, + 296361180500,0.399025321006775,L, + 298285603750,0.410283684730530,L, + 300210027000,0.421909928321838,L, + 302134450250,0.433882355690002,L, + 304058873500,0.446179986000061,L, + 305983296750,0.458782553672791,L, + 307907720000,0.471669793128967,L, + 309832143250,0.484822154045105,L, + 311756566500,0.498220086097717,L, + 313680989750,0.511842131614685,L, + 315605413000,0.525666832923889,L, + 317529836250,0.539668917655945,L, + 319454259500,0.553820013999939,L, + 321378682750,0.568086028099060,L, + 323303106000,0.582423090934753,L, + 325227529250,0.596771121025085,L, + 327151952500,0.611042857170105,L, + 329076375750,0.625095725059509,L, + 331000799000,0.638661503791809,L, + 332925222250,0.651092410087585,L, + 334849645500,0.659229874610901,L, + 336774068750,0.007775902748108,L, + 344471761750,0.007775902748108,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 69.452218499662933 + KeyVer: 4005 + KeyCount: 9 + Key: + 0,69.452218499662933,L, + 240552906250,69.452218499662933,L, + 242477329500,69.452225329852098,L, + 244401752750,69.452211669473755,L, + 246326176000,69.452218499662933,L, + 294436757250,69.452218499662933,L, + 296361180500,69.452211669473755,L, + 298285603750,69.452218499662933,L, + 344471761750,69.452218499662933,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.846882820129395 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882820129395,L, + 159727129750,0.846882820129395,L, + 161651553000,0.846929609775543,L, + 163575976250,0.847067296504974,L, + 165500399500,0.847291707992554,L, + 167424822750,0.847599029541016,L, + 169349246000,0.847985267639160,L, + 171273669250,0.848446786403656,L, + 173198092500,0.848979830741882,L, + 175122515750,0.849581003189087,L, + 177046939000,0.850246787071228,L, + 178971362250,0.850973427295685,L, + 180895785500,0.851757943630219,L, + 182820208750,0.852596879005432,L, + 184744632000,0.853486835956573,L, + 186669055250,0.854424595832825,L, + 188593478500,0.855406939983368,L, + 190517901750,0.856430649757385,L, + 192442325000,0.857492506504059,L, + 194366748250,0.858589291572571,L, + 196291171500,0.859717547893524,L, + 198215594750,0.860874295234680,L, + 200140018000,0.862056195735931,L, + 202064441250,0.863259792327881,L, + 203988864500,0.864481866359711,L, + 205913287750,0.865718960762024,L, + 207837711000,0.866967499256134,L, + 209762134250,0.868223905563354,L, + 211686557500,0.869484543800354,L, + 213610980750,0.870745599269867,L, + 215535404000,0.872003197669983,L, + 217459827250,0.873253405094147,L, + 219384250500,0.874491930007935,L, + 221308673750,0.875714361667633,L, + 223233097000,0.876915991306305,L, + 225157520250,0.878092408180237,L, + 227081943500,0.879238188266754,L, + 229006366750,0.880348026752472,L, + 230930790000,0.881416261196136,L, + 232855213250,0.882436752319336,L, + 234779636500,0.883403420448303,L, + 236704059750,0.884308874607086,L, + 238628483000,0.885145902633667,L, + 240552906250,0.885906219482422,L, + 242477329500,0.886581301689148,L, + 244401752750,0.887161254882812,L, + 246326176000,0.887635469436646,L, + 248250599250,0.887992620468140,L, + 250175022500,0.888219594955444,L, + 252099445750,0.888301849365234,L, + 254023869000,0.888223528862000,L, + 255948292250,0.887965917587280,L, + 257872715500,0.887508213520050,L, + 259797138750,0.886826634407043,L, + 261721562000,0.885892868041992,L, + 263645985250,0.884674668312073,L, + 265570408500,0.883132934570312,L, + 267494831750,0.881221413612366,L, + 269419255000,0.878882825374603,L, + 271343678250,0.876047134399414,L, + 273268101500,0.872624278068542,L, + 275192524750,0.868497729301453,L, + 277116948000,0.863510489463806,L, + 279041371250,0.857115924358368,L, + 280965794500,0.849036216735840,L, + 282890217750,0.839449942111969,L, + 284814641000,0.828506529331207,L, + 286739064250,0.816332280635834,L, + 288663487500,0.803036808967590,L, + 290587910750,0.788713753223419,L, + 292512334000,0.773445904254913,L, + 294436757250,0.757306575775146,L, + 296361180500,0.740360438823700,L, + 298285603750,0.722666263580322,L, + 300210027000,0.704276978969574,L, + 302134450250,0.685241341590881,L, + 304058873500,0.665604650974274,L, + 305983296750,0.645409166812897,L, + 307907720000,0.624694883823395,L, + 309832143250,0.603500843048096,L, + 311756566500,0.581865608692169,L, + 313680989750,0.559827685356140,L, + 315605413000,0.537427783012390,L, + 317529836250,0.514709413051605,L, + 319454259500,0.491721540689468,L, + 321378682750,0.468522131443024,L, + 323303106000,0.445183306932449,L, + 325227529250,0.421802103519440,L, + 327151952500,0.398518711328506,L, + 329076375750,0.375560134649277,L, + 331000799000,0.353350818157196,L, + 332925222250,0.332918882369995,L, + 334849645500,0.319382071495056,L, + 336774068750,0.846882820129395,L, + 344471761750,0.846882820129395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.846882820129395 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882820129395,L, + 159727129750,0.846882820129395,L, + 161651553000,0.846939265727997,L, + 163575976250,0.847105145454407,L, + 165500399500,0.847375869750977,L, + 167424822750,0.847746133804321,L, + 169349246000,0.848211407661438,L, + 171273669250,0.848767399787903,L, + 173198092500,0.849409401416779,L, + 175122515750,0.850132942199707,L, + 177046939000,0.850933969020844,L, + 178971362250,0.851808071136475,L, + 180895785500,0.852751433849335,L, + 182820208750,0.853759706020355,L, + 184744632000,0.854828953742981,L, + 186669055250,0.855955064296722,L, + 188593478500,0.857134342193604,L, + 190517901750,0.858362436294556,L, + 192442325000,0.859635591506958,L, + 194366748250,0.860950112342834,L, + 196291171500,0.862301468849182,L, + 198215594750,0.863686084747314,L, + 200140018000,0.865099787712097,L, + 202064441250,0.866538643836975,L, + 203988864500,0.867998301982880,L, + 205913287750,0.869474351406097,L, + 207837711000,0.870963037014008,L, + 209762134250,0.872459590435028,L, + 211686557500,0.873959660530090,L, + 213610980750,0.875458300113678,L, + 215535404000,0.876951038837433,L, + 217459827250,0.878432512283325,L, + 219384250500,0.879898011684418,L, + 221308673750,0.881341934204102,L, + 223233097000,0.882758438587189,L, + 225157520250,0.884141862392426,L, + 227081943500,0.885485768318176,L, + 229006366750,0.886783540248871,L, + 230930790000,0.888028323650360,L, + 232855213250,0.889212548732758,L, + 234779636500,0.890328049659729,L, + 236704059750,0.891366422176361,L, + 238628483000,0.892318427562714,L, + 240552906250,0.893173992633820,L, + 242477329500,0.893922209739685,L, + 244401752750,0.894551217556000,L, + 246326176000,0.895048022270203,L, + 248250599250,0.895397901535034,L, + 250175022500,0.895585298538208,L, + 252099445750,0.895592033863068,L, + 254023869000,0.895398020744324,L, + 255948292250,0.894980788230896,L, + 257872715500,0.894314289093018,L, + 259797138750,0.893368601799011,L, + 261721562000,0.892109513282776,L, + 263645985250,0.890496373176575,L, + 265570408500,0.888481259346008,L, + 267494831750,0.886006295681000,L, + 269419255000,0.883001208305359,L, + 271343678250,0.879378557205200,L, + 273268101500,0.875027120113373,L, + 275192524750,0.869802653789520,L, + 277116948000,0.863510489463806,L, + 279041371250,0.855368852615356,L, + 280965794500,0.845141291618347,L, + 282890217750,0.833256542682648,L, + 284814641000,0.820015251636505,L, + 286739064250,0.805638730525970,L, + 288663487500,0.790295660495758,L, + 290587910750,0.774118006229401,L, + 292512334000,0.757212102413177,L, + 294436757250,0.739664793014526,L, + 296361180500,0.721548676490784,L, + 298285603750,0.702925801277161,L, + 300210027000,0.683849394321442,L, + 302134450250,0.664366185665131,L, + 304058873500,0.644518256187439,L, + 305983296750,0.624343216419220,L, + 307907720000,0.603876352310181,L, + 309832143250,0.583151102066040,L, + 311756566500,0.562199354171753,L, + 313680989750,0.541053414344788,L, + 315605413000,0.519746899604797,L, + 317529836250,0.498315304517746,L, + 319454259500,0.476799070835114,L, + 321378682750,0.455245703458786,L, + 323303106000,0.433715015649796,L, + 325227529250,0.412287086248398,L, + 327151952500,0.391078293323517,L, + 329076375750,0.370276421308517,L, + 331000799000,0.350232928991318,L, + 332925222250,0.331800132989883,L, + 334849645500,0.319382071495056,L, + 336774068750,0.846882820129395,L, + 344471761750,0.846882820129395,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.481483936309814 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.481483936309814,L, + 157802706500,0.481483936309814,L, + 159727129750,0.624619841575623,L, + 161651553000,0.624619781970978,L, + 163575976250,0.624619245529175,L, + 165500399500,0.624617815017700,L, + 167424822750,0.624614953994751,L, + 169349246000,0.624610185623169,L, + 171273669250,0.624602794647217,L, + 173198092500,0.624592304229736,L, + 175122515750,0.624577939510345,L, + 177046939000,0.624559164047241,L, + 178971362250,0.624535083770752,L, + 180895785500,0.624505043029785,L, + 182820208750,0.624468207359314,L, + 184744632000,0.624423682689667,L, + 186669055250,0.624370694160461,L, + 188593478500,0.624308228492737,L, + 190517901750,0.624235391616821,L, + 192442325000,0.624151229858398,L, + 194366748250,0.624054789543152,L, + 196291171500,0.623944938182831,L, + 198215594750,0.623820781707764,L, + 200140018000,0.623681247234344,L, + 202064441250,0.623525261878967,L, + 203988864500,0.623351871967316,L, + 205913287750,0.623160004615784,L, + 207837711000,0.622948706150055,L, + 209762134250,0.622717022895813,L, + 211686557500,0.622464001178741,L, + 213610980750,0.622188806533813,L, + 215535404000,0.621890544891357,L, + 217459827250,0.621568500995636,L, + 219384250500,0.621221959590912,L, + 221308673750,0.620850205421448,L, + 223233097000,0.620452761650085,L, + 225157520250,0.620029151439667,L, + 227081943500,0.619578838348389,L, + 229006366750,0.619101643562317,L, + 230930790000,0.618597209453583,L, + 232855213250,0.618065416812897,L, + 234779636500,0.617506206035614,L, + 236704059750,0.616919577121735,L, + 238628483000,0.616305589675903,L, + 240552906250,0.615664303302765,L, + 242477329500,0.614996075630188,L, + 244401752750,0.614301025867462,L, + 246326176000,0.613579571247101,L, + 248250599250,0.612832129001617,L, + 250175022500,0.612058997154236,L, + 252099445750,0.611260712146759,L, + 254023869000,0.610437810420990,L, + 255948292250,0.609590768814087,L, + 257872715500,0.608720123767853,L, + 259797138750,0.607826530933380,L, + 261721562000,0.606910467147827,L, + 263645985250,0.605972647666931,L, + 265570408500,0.605013549327850,L, + 267494831750,0.604033887386322,L, + 269419255000,0.603034257888794,L, + 271343678250,0.602015197277069,L, + 273268101500,0.600977420806885,L, + 275192524750,0.599921464920044,L, + 277116948000,0.598847866058350,L, + 279041371250,0.597012996673584,L, + 280965794500,0.593785107135773,L, + 282890217750,0.589310705661774,L, + 284814641000,0.583712518215179,L, + 286739064250,0.577094614505768,L, + 288663487500,0.569546163082123,L, + 290587910750,0.561144649982452,L, + 292512334000,0.551957368850708,L, + 294436757250,0.542044043540955,L, + 296361180500,0.531457781791687,L, + 298285603750,0.520245969295502,L, + 300210027000,0.508451819419861,L, + 302134450250,0.496114462614059,L, + 304058873500,0.483270257711411,L, + 305983296750,0.469952702522278,L, + 307907720000,0.456193923950195,L, + 309832143250,0.442024409770966,L, + 311756566500,0.427473932504654,L, + 313680989750,0.412572473287582,L, + 315605413000,0.397350460290909,L, + 317529836250,0.381840616464615,L, + 319454259500,0.366079032421112,L, + 321378682750,0.350107729434967,L, + 323303106000,0.333978652954102,L, + 325227529250,0.317760646343231,L, + 327151952500,0.301552951335907,L, + 329076375750,0.285515248775482,L, + 331000799000,0.269946217536926,L, + 332925222250,0.255570173263550,L, + 334849645500,0.246008008718491,L, + 336774068750,0.481483936309814,L, + 344471761750,0.481483936309814,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_026" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.033717870712280 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.033717870712280,L, + 1924423250,0.033699467778206,L, + 3848846500,0.033645778894424,L, + 5773269750,0.033555522561073,L, + 7697693000,0.033427819609642,L, + 9622116250,0.033262327313423,L, + 11546539500,0.033059194684029,L, + 13470962750,0.032817706465721,L, + 15395386000,0.032538115978241,L, + 17319809250,0.032219290733337,L, + 19244232500,0.031861662864685,L, + 21168655750,0.031465157866478,L, + 23093079000,0.031029835343361,L, + 25017502250,0.030555352568626,L, + 26941925500,0.030042871832848,L, + 28866348750,0.029492214322090,L, + 30790772000,0.028904289007187,L, + 32715195250,0.028279095888138,L, + 34639618500,0.027618259191513,L, + 36564041750,0.026921987533569,L, + 38488465000,0.026192113757133,L, + 40412888250,0.025429576635361,L, + 42337311500,0.024635478854179,L, + 44261734750,0.023811936378479,L, + 46186158000,0.022960245609283,L, + 48110581250,0.022082313895226,L, + 50035004500,0.021180078387260,L, + 51959427750,0.020255655050278,L, + 53883851000,0.019311144948006,L, + 55808274250,0.018348753452301,L, + 57732697500,0.017371237277985,L, + 59657120750,0.016380891203880,L, + 61581544000,0.015379577875137,L, + 63505967250,0.014370083808899,L, + 65430390500,0.013355255126953,L, + 67354813750,0.012336939573288,L, + 69279237000,0.011317402124405,L, + 71203660250,0.010299399495125,L, + 73128083500,0.009285107254982,L, + 75052506750,0.008276671171188,L, + 76976930000,0.007275670766830,L, + 78901353250,0.006285041570663,L, + 80825776500,0.005305722355843,L, + 82750199750,0.004339501261711,L, + 84674623000,0.003388583660126,L, + 86599046250,0.002454578876495,L, + 88523469500,0.001538053154945,L, + 90447892750,0.000640414655209,L, + 92372316000,-0.000236980617046,L, + 94296739250,-0.001092918217182,L, + 96221162500,-0.001926712691784,L, + 98145585750,-0.002737782895565,L, + 100070009000,-0.003525622189045,L, + 101994432250,-0.004289306700230,L, + 103918855500,-0.005028486251831,L, + 105843278750,-0.005742378532887,L, + 107767702000,-0.006431244313717,L, + 109692125250,-0.007094889879227,L, + 111616548500,-0.007732719182968,L, + 113540971750,-0.008344195783138,L, + 115465395000,-0.008941441774368,L, + 117389818250,-0.009535275399685,L, + 119314241500,-0.010124385356903,L, + 121238664750,-0.010710768401623,L, + 123163088000,-0.011293083429337,L, + 125087511250,-0.011872835457325,L, + 127011934500,-0.012448698282242,L, + 128936357750,-0.013021685183048,L, + 130860781000,-0.013591878116131,L, + 132785204250,-0.014158867299557,L, + 134709627500,-0.014722719788551,L, + 136634050750,-0.015284448862076,L, + 138558474000,-0.015842668712139,L, + 140482897250,-0.016398884356022,L, + 142407320500,-0.016952186822891,L, + 144331743750,-0.017503596842289,L, + 146256167000,-0.018051706254482,L, + 148180590250,-0.018598482012749,L, + 150105013500,-0.019142061471939,L, + 152029436750,-0.019683443009853,L, + 153953860000,-0.020223133265972,L, + 155878283250,-0.020760223269463,L, + 157802706500,-0.021295703947544,L, + 159727129750,-0.021828651428223,L, + 161651553000,-0.022360056638718,L, + 163575976250,-0.022888995707035,L, + 165500399500,-0.023416459560394,L, + 167424822750,-0.023941524326801,L, + 169349246000,-0.024464681744576,L, + 171273669250,-0.024986445903778,L, + 173198092500,-0.025506369769573,L, + 175122515750,-0.026024475693703,L, + 177046939000,-0.026540778577328,L, + 178971362250,-0.027055323123932,L, + 180895785500,-0.027568578720093,L, + 182820208750,-0.028079643845558,L, + 184744632000,-0.028589479625225,L, + 186669055250,-0.029097616672516,L, + 188593478500,-0.029604569077492,L, + 190517901750,-0.030109390616417,L, + 192442325000,-0.030613072216511,L, + 194366748250,-0.031115122139454,L, + 196291171500,-0.031615570187569,L, + 198215594750,-0.032114923000336,L, + 200140018000,-0.032612703740597,L, + 202064441250,-0.033108934760094,L, + 203988864500,-0.033604107797146,L, + 205913287750,-0.034097746014595,L, + 207837711000,-0.034589879214764,L, + 209762134250,-0.035080976784229,L, + 211686557500,-0.035570606589317,L, + 213610980750,-0.036058738827705,L, + 215535404000,-0.036545418202877,L, + 217459827250,-0.037031114101410,L, + 219384250500,-0.037515848875046,L, + 221308673750,-0.037998661398888,L, + 223233097000,-0.038480527698994,L, + 225157520250,-0.038961455225945,L, + 227081943500,-0.039440959692001,L, + 229006366750,-0.039919562637806,L, + 230930790000,-0.040396273136139,L, + 232855213250,-0.040872558951378,L, + 234779636500,-0.041346989572048,L, + 236704059750,-0.041820511221886,L, + 238628483000,-0.042293138802052,L, + 240552906250,-0.042764425277710,L, + 242477329500,-0.043234325945377,L, + 244401752750,-0.043703354895115,L, + 246326176000,-0.044171027839184,L, + 248250599250,-0.044637359678745,L, + 250175022500,-0.045103311538696,L, + 252099445750,-0.045567415654659,L, + 254023869000,-0.046030677855015,L, + 255948292250,-0.046493060886860,L, + 257872715500,-0.046953625977039,L, + 259797138750,-0.047413811087608,L, + 261721562000,-0.047872178256512,L, + 263645985250,-0.048329681158066,L, + 265570408500,-0.048786312341690,L, + 267494831750,-0.049241602420807,L, + 269419255000,-0.049696020781994,L, + 271343678250,-0.050148598849773,L, + 273268101500,-0.050600782036781,L, + 275192524750,-0.051051594316959,L, + 277116948000,-0.051501028239727,L, + 279041371250,-0.051949091255665,L, + 280965794500,-0.052396699786186,L, + 282890217750,-0.052842438220978,L, + 284814641000,-0.053287237882614,L, + 286739064250,-0.053730607032776,L, + 288663487500,-0.054173000156879,L, + 290587910750,-0.054613925516605,L, + 292512334000,-0.055053368210793,L, + 294436757250,-0.055491290986538,L, + 296361180500,-0.055928617715836,L, + 298285603750,-0.056363895535469,L, + 300210027000,-0.056798033416271,L, + 302134450250,-0.057230032980442,L, + 304058873500,-0.057660803198814,L, + 305983296750,-0.058089785277843,L, + 307907720000,-0.058517411351204,L, + 309832143250,-0.058942615985870,L, + 311756566500,-0.059365779161453,L, + 313680989750,-0.059786804020405,L, + 315605413000,-0.060205966234207,L, + 317529836250,-0.060621626675129,L, + 319454259500,-0.061034493148327,L, + 321378682750,-0.061444193124771,L, + 323303106000,-0.061849713325500,L, + 325227529250,-0.062249310314655,L, + 327151952500,-0.062642619013786,L, + 329076375750,-0.063025228679180,L, + 331000799000,-0.063389398157597,L, + 332925222250,-0.063678614795208,L, + 334849645500,0.039614126086235,L, + 344471761750,0.039614126086235,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.020471826195717 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-0.020471826195717,L, + 1924423250,-0.020483851432800,L, + 3848846500,-0.020521059632301,L, + 5773269750,-0.020583361387253,L, + 7697693000,-0.020670786499977,L, + 9622116250,-0.020784154534340,L, + 11546539500,-0.020923644304276,L, + 13470962750,-0.021089270710945,L, + 15395386000,-0.021281570196152,L, + 17319809250,-0.021500453352928,L, + 19244232500,-0.021746009588242,L, + 21168655750,-0.022018328309059,L, + 23093079000,-0.022317320108414,L, + 25017502250,-0.022642850875854,L, + 26941925500,-0.022994667291641,L, + 28866348750,-0.023372888565063,L, + 30790772000,-0.023776561021805,L, + 32715195250,-0.024205595254898,L, + 34639618500,-0.024659454822540,L, + 36564041750,-0.025137081742287,L, + 38488465000,-0.025638446211815,L, + 40412888250,-0.026162192225456,L, + 42337311500,-0.026707291603088,L, + 44261734750,-0.027272880077362,L, + 46186158000,-0.027857646346092,L, + 48110581250,-0.028460234403610,L, + 50035004500,-0.029079839587212,L, + 51959427750,-0.029714375734329,L, + 53883851000,-0.030362635850906,L, + 55808274250,-0.031023323535919,L, + 57732697500,-0.031694382429123,L, + 59657120750,-0.032374605536461,L, + 61581544000,-0.033061876893044,L, + 63505967250,-0.033754751086235,L, + 65430390500,-0.034451767802238,L, + 67354813750,-0.035151004791260,L, + 69279237000,-0.035850629210472,L, + 71203660250,-0.036549746990204,L, + 73128083500,-0.037246122956276,L, + 75052506750,-0.037938579916954,L, + 76976930000,-0.038625717163086,L, + 78901353250,-0.039306044578552,L, + 80825776500,-0.039978399872780,L, + 82750199750,-0.040641486644745,L, + 84674623000,-0.041294321417809,L, + 86599046250,-0.041936084628105,L, + 88523469500,-0.042565077543259,L, + 90447892750,-0.043181180953979,L, + 92372316000,-0.043783605098724,L, + 94296739250,-0.044371515512466,L, + 96221162500,-0.044944077730179,L, + 98145585750,-0.045500874519348,L, + 100070009000,-0.046041801571846,L, + 101994432250,-0.046565860509872,L, + 103918855500,-0.047073096036911,L, + 105843278750,-0.047563433647156,L, + 107767702000,-0.048036590218544,L, + 109692125250,-0.048491880297661,L, + 111616548500,-0.048929646611214,L, + 113540971750,-0.049350038170815,L, + 115465395000,-0.049759849905968,L, + 117389818250,-0.050167202949524,L, + 119314241500,-0.050572261214256,L, + 121238664750,-0.050974607467651,L, + 123163088000,-0.051374614238739,L, + 125087511250,-0.051772356033325,L, + 127011934500,-0.052167966961861,L, + 128936357750,-0.052561268210411,L, + 130860781000,-0.052952349185944,L, + 132785204250,-0.053342014551163,L, + 134709627500,-0.053729146718979,L, + 136634050750,-0.054114520549774,L, + 138558474000,-0.054498195648193,L, + 140482897250,-0.054880037903786,L, + 142407320500,-0.055259823799133,L, + 144331743750,-0.055638134479523,L, + 146256167000,-0.056014761328697,L, + 148180590250,-0.056389749050140,L, + 150105013500,-0.056763172149658,L, + 152029436750,-0.057135060429573,L, + 153953860000,-0.057505473494530,L, + 155878283250,-0.057874441146851,L, + 157802706500,-0.058241792023182,L, + 159727129750,-0.058607541024685,L, + 161651553000,-0.058972217142582,L, + 163575976250,-0.059335850179195,L, + 165500399500,-0.059697531163692,L, + 167424822750,-0.060058243572712,L, + 169349246000,-0.060417778789997,L, + 171273669250,-0.060775697231293,L, + 173198092500,-0.061132743954659,L, + 175122515750,-0.061488240957260,L, + 177046939000,-0.061842665076256,L, + 178971362250,-0.062196075916290,L, + 180895785500,-0.062548242509365,L, + 182820208750,-0.062899440526962,L, + 184744632000,-0.063249446451664,L, + 186669055250,-0.063598521053791,L, + 188593478500,-0.063946209847927,L, + 190517901750,-0.064292781054974,L, + 192442325000,-0.064638733863831,L, + 194366748250,-0.064983345568180,L, + 196291171500,-0.065327137708664,L, + 198215594750,-0.065669886767864,L, + 200140018000,-0.066011376678944,L, + 202064441250,-0.066352322697639,L, + 203988864500,-0.066692039370537,L, + 205913287750,-0.067031018435955,L, + 207837711000,-0.067369028925896,L, + 209762134250,-0.067705847322941,L, + 211686557500,-0.068042218685150,L, + 213610980750,-0.068377412855625,L, + 215535404000,-0.068711712956429,L, + 217459827250,-0.069045335054398,L, + 219384250500,-0.069377854466438,L, + 221308673750,-0.069709733128548,L, + 223233097000,-0.070040494203568,L, + 225157520250,-0.070370413362980,L, + 227081943500,-0.070699714124203,L, + 229006366750,-0.071028195321560,L, + 230930790000,-0.071355596184731,L, + 232855213250,-0.071682184934616,L, + 234779636500,-0.072008207440376,L, + 236704059750,-0.072333410382271,L, + 238628483000,-0.072657816112041,L, + 240552906250,-0.072981208562851,L, + 242477329500,-0.073304034769535,L, + 244401752750,-0.073625847697258,L, + 246326176000,-0.073947109282017,L, + 248250599250,-0.074267372488976,L, + 250175022500,-0.074587106704712,L, + 252099445750,-0.074905812740326,L, + 254023869000,-0.075224019587040,L, + 255948292250,-0.075540967285633,L, + 257872715500,-0.075857624411583,L, + 259797138750,-0.076173283159733,L, + 261721562000,-0.076488420367241,L, + 263645985250,-0.076802551746368,L, + 265570408500,-0.077115669846535,L, + 267494831750,-0.077428504824638,L, + 269419255000,-0.077740319073200,L, + 271343678250,-0.078051358461380,L, + 273268101500,-0.078361608088017,L, + 275192524750,-0.078670829534531,L, + 277116948000,-0.078979708254337,L, + 279041371250,-0.079287558794022,L, + 280965794500,-0.079594321548939,L, + 282890217750,-0.079900741577148,L, + 284814641000,-0.080205827951431,L, + 286739064250,-0.080510281026363,L, + 288663487500,-0.080814085900784,L, + 290587910750,-0.081116743385792,L, + 292512334000,-0.081418454647064,L, + 294436757250,-0.081719443202019,L, + 296361180500,-0.082019180059433,L, + 298285603750,-0.082318134605885,L, + 300210027000,-0.082615993916988,L, + 302134450250,-0.082913190126419,L, + 304058873500,-0.083208724856377,L, + 305983296750,-0.083503223955631,L, + 307907720000,-0.083796612918377,L, + 309832143250,-0.084088779985905,L, + 311756566500,-0.084379367530346,L, + 313680989750,-0.084668494760990,L, + 315605413000,-0.084955938160419,L, + 317529836250,-0.085241466760635,L, + 319454259500,-0.085525013506413,L, + 321378682750,-0.085806384682655,L, + 323303106000,-0.086084254086018,L, + 325227529250,-0.086358889937401,L, + 327151952500,-0.086628995835781,L, + 329076375750,-0.086891673505306,L, + 331000799000,-0.087141744792461,L, + 332925222250,-0.087339967489243,L, + 334849645500,-0.016423404216766,L, + 344471761750,-0.016423404216766,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.787578463554382 + KeyVer: 4005 + KeyCount: 121 + Key: + 0,0.787578463554382,L, + 1924423250,0.787808299064636,L, + 3848846500,0.788500428199768,L, + 5773269750,0.789658427238464,L, + 7697693000,0.791285395622253,L, + 9622116250,0.793383717536926,L, + 11546539500,0.795954346656799,L, + 13470962750,0.798998475074768,L, + 15395386000,0.802515625953674,L, + 17319809250,0.806504368782043,L, + 19244232500,0.810962557792664,L, + 21168655750,0.815886378288269,L, + 23093079000,0.821270823478699,L, + 25017502250,0.827109456062317,L, + 26941925500,0.833394885063171,L, + 28866348750,0.840117812156677,L, + 30790772000,0.847267031669617,L, + 32715195250,0.854830622673035,L, + 34639618500,0.862793564796448,L, + 36564041750,0.871140837669373,L, + 38488465000,0.879854083061218,L, + 40412888250,0.888914227485657,L, + 42337311500,0.898300766944885,L, + 44261734750,0.907990097999573,L, + 46186158000,0.917958378791809,L, + 48110581250,0.928180098533630,L, + 50035004500,0.938627839088440,L, + 51959427750,0.949273228645325,L, + 53883851000,0.960086941719055,L, + 55808274250,0.971038937568665,L, + 57732697500,0.982097506523132,L, + 59657120750,0.993231892585754,L, + 61581544000,1.004409193992615,L, + 63505967250,1.015598893165588,L, + 65430390500,1.026768326759338,L, + 67354813750,1.037886023521423,L, + 69279237000,1.048921465873718,L, + 71203660250,1.059844136238098,L, + 73128083500,1.070624947547913,L, + 75052506750,1.081235766410828,L, + 76976930000,1.091649651527405,L, + 78901353250,1.101841092109680,L, + 80825776500,1.111786007881165,L, + 82750199750,1.121461272239685,L, + 84674623000,1.130846619606018,L, + 86599046250,1.139922499656677,L, + 88523469500,1.148670792579651,L, + 90447892750,1.157075762748718,L, + 92372316000,1.165122866630554,L, + 94296739250,1.172798991203308,L, + 96221162500,1.180093407630920,L, + 98145585750,1.186995863914490,L, + 100070009000,1.193498015403748,L, + 101994432250,1.199592709541321,L, + 103918855500,1.205274701118469,L, + 105843278750,1.210538744926453,L, + 107767702000,1.215381979942322,L, + 109692125250,1.219801783561707,L, + 111616548500,1.223796725273132,L, + 113540971750,1.227366805076599,L, + 115465395000,1.231254696846008,L, + 117389818250,1.235143065452576,L, + 125087511250,1.250695586204529,L, + 127011934500,1.254583239555359,L, + 128936357750,1.258471608161926,L, + 140482897250,1.281800389289856,L, + 142407320500,1.285688281059265,L, + 153953860000,1.309017062187195,L, + 155878283250,1.312904953956604,L, + 157802706500,1.316793084144592,L, + 159727129750,1.320681452751160,L, + 161651553000,1.324569344520569,L, + 169349246000,1.340121865272522,L, + 171273669250,1.344009757041931,L, + 173198092500,1.347898125648499,L, + 175122515750,1.351786255836487,L, + 177046939000,1.355674147605896,L, + 188593478500,1.379002928733826,L, + 190517901750,1.382890820503235,L, + 200140018000,1.402331471443176,L, + 202064441250,1.406219840049744,L, + 203988864500,1.410107970237732,L, + 207837711000,1.417883753776550,L, + 213610980750,1.429548144340515,L, + 215535404000,1.433436512947083,L, + 217459827250,1.437324404716492,L, + 223233097000,1.448988795280457,L, + 225157520250,1.452876687049866,L, + 227081943500,1.456764817237854,L, + 229006366750,1.460653185844421,L, + 230930790000,1.464541316032410,L, + 232855213250,1.468429207801819,L, + 238628483000,1.480093598365784,L, + 240552906250,1.483981490135193,L, + 242477329500,1.487869858741760,L, + 248250599250,1.499534249305725,L, + 252099445750,1.507310032844543,L, + 254023869000,1.511198163032532,L, + 255948292250,1.515086531639099,L, + 265570408500,1.534527182579041,L, + 267494831750,1.538415074348450,L, + 279041371250,1.561743855476379,L, + 280965794500,1.565631747245789,L, + 282890217750,1.569520115852356,L, + 284814641000,1.573408007621765,L, + 296361180500,1.596736788749695,L, + 298285603750,1.600624680519104,L, + 300210027000,1.604513049125671,L, + 302134450250,1.608400940895081,L, + 313680989750,1.631729722023010,L, + 315605413000,1.635617613792419,L, + 317529836250,1.639506220817566,L, + 319454259500,1.643393874168396,L, + 325227529250,1.655058264732361,L, + 327151952500,1.658946633338928,L, + 329076375750,1.662834286689758,L, + 331000799000,1.666722893714905,L, + 332925222250,1.670610547065735,L, + 334849645500,0.738551259040833,L, + 336774068750,0.750929474830627,L, + 344471761750,0.750929474830627,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 32.797496054654417 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,32.797496054654417,L, + 1924423250,32.797103318777140,L, + 3848846500,32.795925111145316,L, + 5773269750,32.793958016664355,L, + 7697693000,32.791181544766744,L, + 9622116250,32.787612770925421,L, + 11546539500,32.783244864951200,L, + 13470962750,32.778070996654925,L, + 15395386000,32.772104826414932,L, + 17319809250,32.765346354231212,L, + 19244232500,32.757795580103775,L, + 21168655750,32.749466164410954,L, + 23093079000,32.740375182625677,L, + 25017502250,32.730532880031703,L, + 26941925500,32.719959747196540,L, + 28866348750,32.708666029403943,L, + 30790772000,32.696696122883509,L, + 32715195250,32.684063688013588,L, + 34639618500,32.670796045550858,L, + 36564041750,32.656934176630337,L, + 38488465000,32.642515647292463,L, + 40412888250,32.627581438672252,L, + 42337311500,32.612179362093897,L, + 44261734750,32.596340153408654,L, + 46186158000,32.580135529602828,L, + 48110581250,32.563606471811418,L, + 50035004500,32.546807621547799,L, + 51959427750,32.529810695798247,L, + 53883851000,32.512656675697784,L, + 55808274250,32.495407032948940,L, + 57732697500,32.478126654348834,L, + 59657120750,32.460883841789162,L, + 61581544000,32.443733236783281,L, + 63505967250,32.426726065749975,L, + 65430390500,32.409930630580938,L, + 67354813750,32.393398157694946,L, + 69279237000,32.377200364078284,L, + 71203660250,32.361364570487630,L, + 73128083500,32.345955663720105,L, + 75052506750,32.331021455099894,L, + 76976930000,32.316602925762020,L, + 78901353250,32.302747887030669,L, + 80825776500,32.289476829473351,L, + 82750199750,32.276840979508847,L, + 84674623000,32.264864242799248,L, + 86599046250,32.253577355195816,L, + 88523469500,32.243000807266064,L, + 90447892750,32.233161919766680,L, + 92372316000,32.224067522886820,L, + 94296739250,32.215741522288582,L, + 96221162500,32.208187333066562,L, + 98145585750,32.201435691072014,L, + 100070009000,32.195462690642849,L, + 101994432250,32.190292237441156,L, + 103918855500,32.185917501277764,L, + 105843278750,32.182348727436441,L, + 107767702000,32.179582500822590,L, + 109692125250,32.177611991247041,L, + 111616548500,32.176433783615217,L, + 113540971750,32.176041047737939,L, + 115465395000,32.189633124186251,L, + 117389818250,32.229736579897917,L, + 119314241500,32.295405433672911,L, + 121238664750,32.385731270351620,L, + 123163088000,32.499870561571534,L, + 125087511250,32.637017345010612,L, + 127011934500,32.796423714954720,L, + 128936357750,32.977389577013952,L, + 130860781000,33.179218251892955,L, + 132785204250,33.401295022566430,L, + 134709627500,33.643001756914494,L, + 136634050750,33.903754473763108,L, + 138558474000,34.183027248546189,L, + 140482897250,34.480290741603056,L, + 142407320500,34.795049764218888,L, + 144331743750,35.126836448435533,L, + 146256167000,35.475189756484028,L, + 148180590250,35.839689631730401,L, + 150105013500,36.219926262824465,L, + 152029436750,36.615510328983525,L, + 153953860000,37.026052509424893,L, + 155878283250,37.451201049406308,L, + 157802706500,37.890604194185528,L, + 159727129750,38.343954585249882,L, + 161651553000,38.810910713140892,L, + 163575976250,39.291168634440474,L, + 165500399500,39.784448311392673,L, + 167424822750,40.290456045863174,L, + 169349246000,40.808935705758095,L, + 171273669250,41.339603838226886,L, + 173198092500,41.882231631932356,L, + 175122515750,42.436559539686037,L, + 177046939000,43.002375825623666,L, + 178971362250,43.579431187840534,L, + 180895785500,44.167524135756132,L, + 182820208750,44.766439518411595,L, + 184744632000,45.375975845226407,L, + 186669055250,45.995945285998403,L, + 188593478500,46.626136104863313,L, + 190517901750,47.266391207470214,L, + 192442325000,47.916515933427775,L, + 194366748250,48.576349773290495,L, + 196291171500,49.245725387423711,L, + 198215594750,49.924478851287333,L, + 200140018000,50.612446240341292,L, + 202064441250,51.309490950802193,L, + 203988864500,52.015469548697446,L, + 205913287750,52.730238600054498,L, + 207837711000,53.453644425617021,L, + 209762134250,54.185560666885365,L, + 211686557500,54.925871210643642,L, + 213610980750,55.674436038013873,L, + 215535404000,56.431135620685573,L, + 217459827250,57.195853845442855,L, + 219384250500,57.968484844353590,L, + 221308673750,58.748888598539786,L, + 223233097000,59.536996806109741,L, + 225157520250,60.332652372712552,L, + 227081943500,61.135800656834860,L, + 229006366750,61.946318715071598,L, + 230930790000,62.764110924774393,L, + 232855213250,63.589074833105684,L, + 234779636500,64.421142138173778,L, + 236704059750,65.260176236195278,L, + 238628483000,66.106149806413512,L, + 240552906250,66.958926245045049,L, + 242477329500,67.818444080387394,L, + 244401752750,68.684621350170488,L, + 246326176000,69.557376092124287,L, + 248250599250,70.436626343978773,L, + 250175022500,71.322303803842217,L, + 252099445750,72.214319679255439,L, + 254023869000,73.112605668326708,L, + 255948292250,74.017100299353515,L, + 257872715500,74.927735270444160,L, + 259797138750,75.844428619328596,L, + 261721562000,76.767118874304288,L, + 263645985250,77.695737733479547,L, + 265570408500,78.630216894962672,L, + 267494831750,79.570515377618634,L, + 269419255000,80.516523898420729,L, + 271343678250,81.468215136612258,L, + 273268101500,82.425534450679862,L, + 275192524750,83.388372557596838,L, + 277116948000,84.356715796984830,L, + 279041371250,85.330489036762984,L, + 280965794500,86.309603484472078,L, + 282890217750,87.294024989166260,L, + 284814641000,88.283678418764666,L, + 286739064250,89.278488641186428,L, + 288663487500,90.278401014918174,L, + 290587910750,91.283333577689874,L, + 292512334000,92.293245348366511,L, + 294436757250,93.307992892975506,L, + 296361180500,94.327548890760184,L, + 298285603750,95.351790398315487,L, + 300210027000,96.380635453371369,L, + 302134450250,97.413954282333606,L, + 304058873500,98.451623941797124,L, + 305983296750,99.493507827978547,L, + 307907720000,100.539421525770265,L, + 309832143250,101.589160129497188,L, + 311756566500,102.642491412727537,L, + 313680989750,103.699087526381135,L, + 315605413000,104.758552319486142,L, + 317529836250,105.820380358043963,L, + 319454259500,106.883868132570100,L, + 321378682750,107.948011605256568,L, + 323303106000,109.011376436377645,L, + 325227529250,110.071640361615536,L, + 327151952500,111.124835041062482,L, + 329076375750,112.162935002443717,L, + 331000799000,113.164828131034767,L, + 332925222250,113.973590830654814,L, + 334849645500,33.480948688667006,L, + 344471761750,33.480948688667006,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -27.168103659609475 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-27.168103659609475,L, + 1924423250,-27.145031280593205,L, + 3848846500,-27.075911473740067,L, + 5773269750,-26.960949144725163,L, + 7697693000,-26.800349199223593,L, + 9622116250,-26.594364354234646,L, + 11546539500,-26.343284892798042,L, + 13470962750,-26.047419880973735,L, + 15395386000,-25.707133026335018,L, + 17319809250,-25.322813649664585,L, + 19244232500,-24.894897175522022,L, + 21168655750,-24.423851471865479,L, + 23093079000,-23.910197340619163,L, + 25017502250,-23.354491442200430,L, + 26941925500,-22.757339955898122,L, + 28866348750,-22.119390042136093,L, + 30790772000,-21.441348625493440,L, + 32715195250,-20.723951658853228,L, + 34639618500,-19.968006812084813,L, + 36564041750,-19.174366151287149,L, + 38488465000,-18.343934676525269,L, + 40412888250,-17.477665199188380,L, + 42337311500,-16.576573709915525,L, + 44261734750,-15.641732548406393,L, + 46186158000,-14.674275526063205,L, + 48110581250,-13.675380850517787,L, + 50035004500,-12.646300153935538,L, + 51959427750,-11.588332026032409,L, + 53883851000,-10.502852749926156,L, + 55808274250,-9.391283004964135,L, + 57732697500,-8.255108357290828,L, + 59657120750,-7.095878406074174,L, + 61581544000,-5.915199953316419,L, + 63505967250,-4.714735296306811,L, + 65430390500,-3.496220797198413,L, + 67354813750,-2.261436787487068,L, + 69279237000,-1.012223896432386,L, + 71203660250,0.249516175209890,L, + 73128083500,1.521832741421062,L, + 75052506750,2.802718820482634,L, + 76976930000,4.090113642936396,L, + 78901353250,5.381916285282338,L, + 80825776500,6.675972463167557,L, + 82750199750,7.970084563226605,L, + 84674623000,9.262019113600891,L, + 86599046250,10.549499526862691,L, + 88523469500,11.830214637751601,L, + 90447892750,13.101837059307945,L, + 92372316000,14.361985616832332,L, + 94296739250,15.608283404493598,L, + 96221162500,16.838311681551914,L, + 98145585750,18.049655976135693,L, + 100070009000,19.239879618258527,L, + 101994432250,20.406540815292143,L, + 103918855500,21.547223387817652,L, + 105843278750,22.659463345091979,L, + 107767702000,23.740846215243526,L, + 109692125250,24.788960941495279,L, + 111616548500,25.801410127448570,L, + 113540971750,26.775823697461405,L, + 115465395000,27.729666445241484,L, + 117389818250,28.682149985376736,L, + 119314241500,29.633462148069327,L, + 121238664750,30.583766857859349,L, + 123163088000,31.533176812868096,L, + 125087511250,32.481787635743956,L, + 127011934500,33.429677873662378,L, + 128936357750,34.376898753042141,L, + 130860781000,35.323521990869523,L, + 132785204250,36.269574907901216,L, + 134709627500,37.215108730555990,L, + 136634050750,38.160150779590523,L, + 138558474000,39.104724960666907,L, + 140482897250,40.048862009636416,L, + 142407320500,40.992585832161133,L, + 144331743750,41.935910088619408,L, + 146256167000,42.878858684673332,L, + 148180590250,43.821431620322912,L, + 150105013500,44.763663046513983,L, + 152029436750,45.705552963246561,L, + 153953860000,46.647108200709802,L, + 155878283250,47.588352664565818,L, + 157802706500,48.529279524625423,L, + 159727129750,49.469912686550714,L, + 161651553000,50.410241905057944,L, + 163575976250,51.350287670714614,L, + 165500399500,52.290049983520738,L, + 167424822750,53.229532258570885,L, + 169349246000,54.168734495865067,L, + 171273669250,55.107684016159951,L, + 173198092500,56.046360328888042,L, + 175122515750,56.984770264238499,L, + 177046939000,57.922927482589671,L, + 178971362250,58.860814908468619,L, + 180895785500,59.798456447537454,L, + 182820208750,60.735845269606997,L, + 184744632000,61.672981374677249,L, + 186669055250,62.609864762748217,L, + 188593478500,63.546488603630721,L, + 190517901750,64.482887048270612,L, + 192442325000,65.419019115532876,L, + 194366748250,66.354912126174185,L, + 196291171500,67.290545589627044,L, + 198215594750,68.225939996458933,L, + 200140018000,69.161081686291553,L, + 202064441250,70.095970659124873,L, + 203988864500,71.030606914958909,L, + 205913287750,71.964997283982811,L, + 207837711000,72.899121275629099,L, + 209762134250,73.833006210654432,L, + 211686557500,74.766624768302137,L, + 213610980750,75.699983778761379,L, + 215535404000,76.633076411842978,L, + 217459827250,77.565909497736143,L, + 219384250500,78.498462545873323,L, + 221308673750,79.430749216632861,L, + 223233097000,80.362762679825622,L, + 225157520250,81.294489275073232,L, + 227081943500,82.225949492943215,L, + 229006366750,83.157109182489705,L, + 230930790000,84.087982004091074,L, + 232855213250,85.018540636990608,L, + 234779636500,85.948812401945005,L, + 236704059750,86.878769978197596,L, + 238628483000,87.808406535559186,L, + 240552906250,88.737735734408119,L, + 242477329500,89.666730253987737,L, + 244401752750,90.595390094298011,L, + 246326176000,91.523701594960613,L, + 248250599250,92.451657925786392,L, + 250175022500,93.379259086775320,L, + 252099445750,94.306484587359890,L, + 254023869000,95.233334427540129,L, + 255948292250,96.159774456370158,L, + 257872715500,97.085838824795829,L, + 259797138750,98.011452400736289,L, + 261721562000,98.936656165326553,L, + 263645985250,99.861422797809922,L, + 265570408500,100.785697656673065,L, + 267494831750,101.709521723050983,L, + 269419255000,102.632847185619482,L, + 271343678250,103.555626233054397,L, + 273268101500,104.477906676679893,L, + 275192524750,105.399599724036761,L, + 277116948000,106.320719035503359,L, + 279041371250,107.241223629944656,L, + 280965794500,108.161072526225638,L, + 282890217750,109.080272554535455,L, + 284814641000,109.998721262036582,L, + 286739064250,110.916480120431544,L, + 288663487500,111.833398865558578,L, + 290587910750,112.749484327606893,L, + 292512334000,113.664675034873923,L, + 294436757250,114.578895855278816,L, + 296361180500,115.492078486929870,L, + 298285603750,116.404181948692056,L, + 300210027000,117.315083297160328,L, + 302134450250,118.224673249307955,L, + 304058873500,119.132869842864906,L, + 305983296750,120.039509153291107,L, + 307907720000,120.944413595668109,L, + 309832143250,121.847405585077524,L, + 311756566500,122.748252895087546,L, + 313680989750,123.646668657753054,L, + 315605413000,124.542243061723838,L, + 317529836250,125.434538974893016,L, + 319454259500,126.322941680235303,L, + 321378682750,127.206549592780249,L, + 323303106000,128.084160599233911,L, + 325227529250,128.953875907007074,L, + 327151952500,129.812512647946477,L, + 329076375750,130.653978293312520,L, + 331000799000,131.462645370284179,L, + 332925222250,132.123192964915148,L, + 334849645500,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 64.697129591966089 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,64.697129591966089,L, + 1924423250,64.696774422129252,L, + 3848846500,64.695681591862055,L, + 5773269750,64.693864761542827,L, + 7697693000,64.691330761360760,L, + 9622116250,64.688052270559155,L, + 11546539500,64.684036119327203,L, + 13470962750,64.679275477475699,L, + 15395386000,64.673790835572191,L, + 17319809250,64.667575363427488,L, + 19244232500,64.660642721419933,L, + 21168655750,64.652986079360360,L, + 23093079000,64.644619097627114,L, + 25017502250,64.635582757355195,L, + 26941925500,64.625863398166288,L, + 28866348750,64.615481510627873,L, + 30790772000,64.604478075875008,L, + 32715195250,64.592859924096828,L, + 34639618500,64.580668036428378,L, + 36564041750,64.567922903437150,L, + 38488465000,64.554672336447339,L, + 40412888250,64.540943656215632,L, + 42337311500,64.526784674066221,L, + 44261734750,64.512229540944944,L, + 46186158000,64.497332898365173,L, + 48110581250,64.482142557651073,L, + 50035004500,64.466699499937704,L, + 51959427750,64.451072027116737,L, + 53883851000,64.435301120323203,L, + 55808274250,64.419455081448788,L, + 57732697500,64.403568061439373,L, + 59657120750,64.387715192375794,L, + 61581544000,64.371944285582259,L, + 63505967250,64.356316812761293,L, + 65430390500,64.340873755047909,L, + 67354813750,64.325683414333824,L, + 69279237000,64.310786771754053,L, + 71203660250,64.296231638632776,L, + 73128083500,64.282072656483351,L, + 75052506750,64.268343976251643,L, + 76976930000,64.255093409261846,L, + 78901353250,64.242355106459783,L, + 80825776500,64.230156388602168,L, + 82750199750,64.218545067013153,L, + 84674623000,64.207534802071109,L, + 86599046250,64.197159744721873,L, + 88523469500,64.187440385532966,L, + 90447892750,64.178383554693539,L, + 92372316000,64.170030233338622,L, + 94296739250,64.162373591279049,L, + 96221162500,64.155440949271494,L, + 98145585750,64.149225477126791,L, + 100070009000,64.143740835223284,L, + 101994432250,64.138980193371793,L, + 103918855500,64.134970872329006,L, + 105843278750,64.131692381527401,L, + 107767702000,64.129137890777812,L, + 109692125250,64.127321060458598,L, + 111616548500,64.126248720758909,L, + 113540971750,64.125886720732893,L, + 115465395000,64.137279476268461,L, + 117389818250,64.170877176795699,L, + 119314241500,64.225908010938426,L, + 121238664750,64.301586506942058,L, + 123163088000,64.397209155322088,L, + 125087511250,64.512127088107391,L, + 127011934500,64.645698267515968,L, + 128936357750,64.797321636900861,L, + 130860781000,64.966437120750143,L, + 132785204250,65.152505134119352,L, + 134709627500,65.355020243009946,L, + 136634050750,65.573504334180001,L, + 138558474000,65.807506615144305,L, + 140482897250,66.056576293417621,L, + 142407320500,66.320303557649780,L, + 144331743750,66.598299087058066,L, + 146256167000,66.890187221238151,L, + 148180590250,67.195599129974823,L, + 150105013500,67.514186473620441,L, + 152029436750,67.845635063473182,L, + 153953860000,68.189623880642031,L, + 155878283250,68.545845566614361,L, + 157802706500,68.914020083634199,L, + 159727129750,69.293867393945575,L, + 161651553000,69.685114289981684,L, + 163575976250,70.087528545310747,L, + 165500399500,70.500830122176794,L, + 167424822750,70.924807284715556,L, + 169349246000,71.359227806495255,L, + 171273669250,71.803873121462445,L, + 173198092500,72.258531493752869,L, + 175122515750,72.722991187502231,L, + 177046939000,73.197074617792140,L, + 178971362250,73.680583709136641,L, + 180895785500,74.173334046428167,L, + 182820208750,74.675154874937448,L, + 184744632000,75.185875439935259,L, + 186669055250,75.705331816881483,L, + 188593478500,76.233366911425250,L, + 190517901750,76.769830459404787,L, + 192442325000,77.314551706090853,L, + 194366748250,77.867407708078403,L, + 196291171500,78.428268691773198,L, + 198215594750,78.996977562824327,L, + 200140018000,79.573425038205059,L, + 202064441250,80.157467683942841,L, + 203988864500,80.748989386821776,L, + 205913287750,81.347880863815149,L, + 207837711000,81.954005511139542,L, + 209762134250,82.567274536335773,L, + 211686557500,83.187564995998756,L, + 213610980750,83.814774437290950,L, + 215535404000,84.448800407374819,L, + 217459827250,85.089540453412795,L, + 219384250500,85.736912613134834,L, + 221308673750,86.390800773325068,L, + 223233097000,87.051136632091783,L, + 225157520250,87.717824566786604,L, + 227081943500,88.390755294382799,L, + 229006366750,89.069874173367026,L, + 230930790000,89.755085581090881,L, + 232855213250,90.446307555284349,L, + 234779636500,91.143478624244892,L, + 236704059750,91.846503165324123,L, + 238628483000,92.555312876630353,L, + 240552906250,93.269846286461046,L, + 242477329500,93.990028262735322,L, + 244401752750,94.715783673372314,L, + 246326176000,95.447044216480350,L, + 248250599250,96.183748420356864,L, + 250175022500,96.925841643488511,L, + 252099445750,97.673235093416082,L, + 254023869000,98.425915109761235,L, + 255948292250,99.183758749118908,L, + 257872715500,99.946766011489117,L, + 259797138750,100.714854934601789,L, + 261721562000,101.487964046754428,L, + 263645985250,102.266018215866140,L, + 265570408500,103.049017441936940,L, + 267494831750,103.836866102318439,L, + 269419255000,104.629523215875608,L, + 271343678250,105.426934141095117,L, + 273268101500,106.229030576085236,L, + 275192524750,107.035798860467651,L, + 277116948000,107.847143371593958,L, + 279041371250,108.663050449085830,L, + 280965794500,109.483431300484057,L, + 282890217750,110.308258605031952,L, + 284814641000,111.137477721216158,L, + 286739064250,111.971006686766628,L, + 288663487500,112.808811350737528,L, + 290587910750,113.650837071615499,L, + 292512334000,114.497015547508823,L, + 294436757250,115.347264816147458,L, + 296361180500,116.201516575639729,L, + 298285603750,117.059716184472265,L, + 300210027000,117.921768019996676,L, + 302134450250,118.787562799186247,L, + 304058873500,119.657018559770933,L, + 305983296750,120.529998697967358,L, + 307907720000,121.406339289235405,L, + 309832143250,122.285903729791713,L, + 311756566500,123.168473453582806,L, + 313680989750,124.053775253041906,L, + 315605413000,124.941481279088848,L, + 317529836250,125.831181720373436,L, + 319454259500,126.722248199492014,L, + 321378682750,127.613874754122534,L, + 323303106000,128.504845610592753,L, + 325227529250,129.393234655556682,L, + 327151952500,130.275681435942715,L, + 329076375750,131.145465045607580,L, + 331000799000,131.984963596492634,L, + 332925222250,132.662600324426961,L, + 334849645500,64.711691555276545,L, + 344471761750,64.711691555276545,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.322332888841629 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.322332888841629,L, + 1924423250,0.322337806224823,L, + 3848846500,0.322352647781372,L, + 5773269750,0.322377443313599,L, + 7697693000,0.322412252426147,L, + 9622116250,0.322457134723663,L, + 11546539500,0.322512060403824,L, + 13470962750,0.322577059268951,L, + 15395386000,0.322652101516724,L, + 17319809250,0.322737067937851,L, + 19244232500,0.322831988334656,L, + 21168655750,0.322936683893204,L, + 23093079000,0.323050945997238,L, + 25017502250,0.323174715042114,L, + 26941925500,0.323307603597641,L, + 28866348750,0.323449581861496,L, + 30790772000,0.323600053787231,L, + 32715195250,0.323758929967880,L, + 34639618500,0.323925703763962,L, + 36564041750,0.324099957942963,L, + 38488465000,0.324281156063080,L, + 40412888250,0.324468910694122,L, + 42337311500,0.324662655591965,L, + 44261734750,0.324861615896225,L, + 46186158000,0.325065404176712,L, + 48110581250,0.325273156166077,L, + 50035004500,0.325484246015549,L, + 51959427750,0.325698018074036,L, + 53883851000,0.325913697481155,L, + 55808274250,0.326130509376526,L, + 57732697500,0.326347708702087,L, + 59657120750,0.326564490795135,L, + 61581544000,0.326780170202255,L, + 63505967250,0.326993912458420,L, + 65430390500,0.327205091714859,L, + 67354813750,0.327412813901901,L, + 69279237000,0.327616572380066,L, + 71203660250,0.327815622091293,L, + 73128083500,0.328009277582169,L, + 75052506750,0.328197002410889,L, + 76976930000,0.328378289937973,L, + 78901353250,0.328552514314651,L, + 80825776500,0.328719288110733,L, + 82750199750,0.328878134489059,L, + 84674623000,0.329028666019440,L, + 86599046250,0.329170554876328,L, + 88523469500,0.329303473234177,L, + 90447892750,0.329427242279053,L, + 92372316000,0.329541534185410,L, + 94296739250,0.329646229743958,L, + 96221162500,0.329741120338440,L, + 98145585750,0.329826116561890,L, + 100070009000,0.329901129007339,L, + 101994432250,0.329966187477112,L, + 103918855500,0.330021113157272,L, + 105843278750,0.330065965652466,L, + 107767702000,0.330100744962692,L, + 109692125250,0.330125570297241,L, + 111616548500,0.330140382051468,L, + 113540971750,0.330145299434662,L, + 115465395000,0.330100297927856,L, + 117389818250,0.329967379570007,L, + 119314241500,0.329749882221222,L, + 121238664750,0.329450666904449,L, + 123163088000,0.329072535037994,L, + 125087511250,0.328618168830872,L, + 127011934500,0.328090071678162,L, + 128936357750,0.327490568161011,L, + 130860781000,0.326821953058243,L, + 132785204250,0.326086282730103,L, + 134709627500,0.325285583734512,L, + 136634050750,0.324421703815460,L, + 138558474000,0.323496550321579,L, + 140482897250,0.322511792182922,L, + 142407320500,0.321469068527222,L, + 144331743750,0.320369929075241,L, + 146256167000,0.319215863943100,L, + 148180590250,0.318008333444595,L, + 150105013500,0.316748738288879,L, + 152029436750,0.315438240766525,L, + 153953860000,0.314078211784363,L, + 155878283250,0.312669813632965,L, + 157802706500,0.311214089393616,L, + 159727129750,0.309712260961533,L, + 161651553000,0.308165341615677,L, + 163575976250,0.306574344635010,L, + 165500399500,0.304940223693848,L, + 167424822750,0.303263872861862,L, + 169349246000,0.301546275615692,L, + 171273669250,0.299788266420364,L, + 173198092500,0.297990679740906,L, + 175122515750,0.296154290437698,L, + 177046939000,0.294279843568802,L, + 178971362250,0.292368173599243,L, + 180895785500,0.290419936180115,L, + 182820208750,0.288435846567154,L, + 184744632000,0.286416560411453,L, + 186669055250,0.284362763166428,L, + 188593478500,0.282275050878525,L, + 190517901750,0.280154049396515,L, + 192442325000,0.278000295162201,L, + 194366748250,0.275814414024353,L, + 196291171500,0.273596912622452,L, + 198215594750,0.271348327398300,L, + 200140018000,0.269069224596024,L, + 202064441250,0.266760051250458,L, + 203988864500,0.264421284198761,L, + 205913287750,0.262053400278091,L, + 207837711000,0.259656906127930,L, + 209762134250,0.257232218980789,L, + 211686557500,0.254779726266861,L, + 213610980750,0.252299875020981,L, + 215535404000,0.249793082475662,L, + 217459827250,0.247259706258774,L, + 219384250500,0.244700178503990,L, + 221308673750,0.242114797234535,L, + 223233097000,0.239504024386406,L, + 225157520250,0.236868113279343,L, + 227081943500,0.234207451343536,L, + 229006366750,0.231522381305695,L, + 230930790000,0.228813216090202,L, + 232855213250,0.226080268621445,L, + 234779636500,0.223323836922646,L, + 236704059750,0.220544219017029,L, + 238628483000,0.217741742730141,L, + 240552906250,0.214916646480560,L, + 242477329500,0.212069243192673,L, + 244401752750,0.209199771285057,L, + 246326176000,0.206308513879776,L, + 248250599250,0.203395739197731,L, + 250175022500,0.200461685657501,L, + 252099445750,0.197506621479988,L, + 254023869000,0.194530740380287,L, + 255948292250,0.191534355282784,L, + 257872715500,0.188517600297928,L, + 259797138750,0.185480788350105,L, + 261721562000,0.182424113154411,L, + 263645985250,0.179347768425941,L, + 265570408500,0.176252007484436,L, + 267494831750,0.173137009143829,L, + 269419255000,0.170003071427345,L, + 271343678250,0.166850298643112,L, + 273268101500,0.163678959012032,L, + 275192524750,0.160489201545715,L, + 277116948000,0.157281279563904,L, + 279041371250,0.154055416584015,L, + 280965794500,0.150811776518822,L, + 282890217750,0.147550612688065,L, + 284814641000,0.144272089004517,L, + 286739064250,0.140976458787918,L, + 288663487500,0.137663945555687,L, + 290587910750,0.134334787726402,L, + 292512334000,0.130989223718643,L, + 294436757250,0.127627521753311,L, + 296361180500,0.124249935150146,L, + 298285603750,0.120856814086437,L, + 300210027000,0.117448523640633,L, + 302134450250,0.114025317132473,L, + 304058873500,0.110587716102600,L, + 305983296750,0.107136175036430,L, + 307907720000,0.103671260178089,L, + 309832143250,0.100193709135056,L, + 311756566500,0.096704229712486,L, + 313680989750,0.093203969299793,L, + 315605413000,0.089694142341614,L, + 317529836250,0.086176544427872,L, + 319454259500,0.082653433084488,L, + 321378682750,0.079128116369247,L, + 323303106000,0.075605392456055,L, + 325227529250,0.072092950344086,L, + 327151952500,0.068603962659836,L, + 329076375750,0.065164923667908,L, + 331000799000,0.061845839023590,L, + 332925222250,0.059166587889194,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.426508367061615 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508367061615,L, + 1924423250,0.426570534706116,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070319652557,L, + 7697693000,0.427509605884552,L, + 9622116250,0.428075760602951,L, + 11546539500,0.428768992424011,L, + 13470962750,0.429589271545410,L, + 15395386000,0.430536150932312,L, + 17319809250,0.431608855724335,L, + 19244232500,0.432806462049484,L, + 21168655750,0.434127330780029,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131047248840,L, + 26941925500,0.438808739185333,L, + 28866348750,0.440599352121353,L, + 30790772000,0.442499071359634,L, + 32715195250,0.444503575563431,L, + 34639618500,0.446607947349548,L, + 36564041750,0.448806732892990,L, + 38488465000,0.451094031333923,L, + 40412888250,0.453463196754456,L, + 42337311500,0.455907315015793,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989832878113,L, + 48110581250,0.463611900806427,L, + 50035004500,0.466276168823242,L, + 51959427750,0.468973696231842,L, + 53883851000,0.471695125102997,L, + 55808274250,0.474431037902832,L, + 57732697500,0.477171778678894,L, + 59657120750,0.479907691478729,L, + 61581544000,0.482629090547562,L, + 63505967250,0.485326677560806,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490613043308258,L, + 69279237000,0.493183940649033,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139590024948,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994869232178,L, + 80825776500,0.507099270820618,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003553867340,L, + 86599046250,0.512794137001038,L, + 88523469500,0.514471769332886,L, + 90447892750,0.516033172607422,L, + 92372316000,0.517475485801697,L, + 94296739250,0.518796384334564,L, + 96221162500,0.519994020462036,L, + 98145585750,0.521066725254059,L, + 100070009000,0.522013545036316,L, + 101994432250,0.522833883762360,L, + 103918855500,0.523527085781097,L, + 105843278750,0.524093270301819,L, + 107767702000,0.524532496929169,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788558483124,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523899972438812,L, + 123163088000,0.523249864578247,L, + 125087511250,0.522468686103821,L, + 127011934500,0.521560668945312,L, + 128936357750,0.520529806613922,L, + 130860781000,0.519380211830139,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738474369049,L, + 136634050750,0.515253186225891,L, + 138558474000,0.513662397861481,L, + 140482897250,0.511969149112701,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302058696747,L, + 148180590250,0.504225909709930,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806731939316,L, + 153953860000,0.497468203306198,L, + 155878283250,0.495046615600586,L, + 157802706500,0.492543637752533,L, + 159727129750,0.489961326122284,L, + 161651553000,0.487301468849182,L, + 163575976250,0.484565824270248,L, + 165500399500,0.481756150722504,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920557975769,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806909561157,L, + 175122515750,0.466649413108826,L, + 177046939000,0.463426440954208,L, + 178971362250,0.460139453411102,L, + 180895785500,0.456789642572403,L, + 182820208750,0.453378140926361,L, + 184744632000,0.449906140565872,L, + 186669055250,0.446374773979187,L, + 188593478500,0.442785143852234,L, + 190517901750,0.439138174057007,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676447391510,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997402191162,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108191013336,L, + 203988864500,0.412086933851242,L, + 205913287750,0.408015489578247,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725824594498,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391244977712631,L, + 215535404000,0.386934757232666,L, + 217459827250,0.382578790187836,L, + 219384250500,0.378177851438522,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243472814560,L, + 225157520250,0.364711225032806,L, + 227081943500,0.360136449337006,L, + 229006366750,0.355519622564316,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162289381027,L, + 234779636500,0.341422826051712,L, + 236704059750,0.336643517017365,L, + 238628483000,0.331824839115143,L, + 240552906250,0.326967269182205,L, + 242477329500,0.322071343660355,L, + 244401752750,0.317137539386749,L, + 246326176000,0.312166243791580,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113026380539,L, + 252099445750,0.297032028436661,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763161420822,L, + 257872715500,0.281576067209244,L, + 259797138750,0.276354461908340,L, + 261721562000,0.271098792552948,L, + 263645985250,0.265809237957001,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741762876511,L, + 271343678250,0.244320765137672,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383312821388,L, + 277116948000,0.227867558598518,L, + 279041371250,0.222320884466171,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136341094971,L, + 284814641000,0.205499216914177,L, + 286739064250,0.199832588434219,L, + 288663487500,0.194137006998062,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660281658173,L, + 294436757250,0.176880076527596,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238395333290,L, + 300210027000,0.159378021955490,L, + 302134450250,0.153492078185081,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646742820740,L, + 307907720000,0.135689064860344,L, + 309832143250,0.129709661006927,L, + 311756566500,0.123709790408611,L, + 313680989750,0.117691345512867,L, + 315605413000,0.111656457185745,L, + 317529836250,0.105608187615871,L, + 319454259500,0.099550433456898,L, + 321378682750,0.093488983809948,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393438339233,L, + 329076375750,0.069480240345001,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166580438614,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.426508396863937 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508396863937,L, + 1924423250,0.426570534706116,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070349454880,L, + 7697693000,0.427509576082230,L, + 9622116250,0.428075790405273,L, + 11546539500,0.428768992424011,L, + 13470962750,0.429589271545410,L, + 15395386000,0.430536121129990,L, + 17319809250,0.431608855724335,L, + 19244232500,0.432806462049484,L, + 21168655750,0.434127390384674,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131047248840,L, + 26941925500,0.438808739185333,L, + 28866348750,0.440599352121353,L, + 30790772000,0.442499071359634,L, + 32715195250,0.444503605365753,L, + 34639618500,0.446607977151871,L, + 36564041750,0.448806762695312,L, + 38488465000,0.451094031333923,L, + 40412888250,0.453463196754456,L, + 42337311500,0.455907344818115,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989832878113,L, + 48110581250,0.463611871004105,L, + 50035004500,0.466276168823242,L, + 51959427750,0.468973726034164,L, + 53883851000,0.471695154905319,L, + 55808274250,0.474431037902832,L, + 57732697500,0.477171778678894,L, + 59657120750,0.479907721281052,L, + 61581544000,0.482629090547562,L, + 63505967250,0.485326677560806,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490612983703613,L, + 69279237000,0.493183940649033,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139649629593,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994928836823,L, + 80825776500,0.507099211215973,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003494262695,L, + 86599046250,0.512794077396393,L, + 88523469500,0.514471828937531,L, + 90447892750,0.516033172607422,L, + 92372316000,0.517475485801697,L, + 94296739250,0.518796384334564,L, + 96221162500,0.519993901252747,L, + 98145585750,0.521066725254059,L, + 100070009000,0.522013545036316,L, + 101994432250,0.522833824157715,L, + 103918855500,0.523527085781097,L, + 105843278750,0.524093270301819,L, + 107767702000,0.524532437324524,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788498878479,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523900032043457,L, + 123163088000,0.523249924182892,L, + 125087511250,0.522468626499176,L, + 127011934500,0.521560668945312,L, + 128936357750,0.520529866218567,L, + 130860781000,0.519380152225494,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738533973694,L, + 136634050750,0.515253186225891,L, + 138558474000,0.513662397861481,L, + 140482897250,0.511969208717346,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302118301392,L, + 148180590250,0.504225850105286,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806761741638,L, + 153953860000,0.497468262910843,L, + 155878283250,0.495046585798264,L, + 157802706500,0.492543578147888,L, + 159727129750,0.489961385726929,L, + 161651553000,0.487301498651505,L, + 163575976250,0.484565883874893,L, + 165500399500,0.481756120920181,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920528173447,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806939363480,L, + 175122515750,0.466649353504181,L, + 177046939000,0.463426470756531,L, + 178971362250,0.460139453411102,L, + 180895785500,0.456789642572403,L, + 182820208750,0.453378140926361,L, + 184744632000,0.449906170368195,L, + 186669055250,0.446374773979187,L, + 188593478500,0.442785114049911,L, + 190517901750,0.439138203859329,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676477193832,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997402191162,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108131408691,L, + 203988864500,0.412086904048920,L, + 205913287750,0.408015519380569,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725794792175,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391245007514954,L, + 215535404000,0.386934727430344,L, + 217459827250,0.382578819990158,L, + 219384250500,0.378177911043167,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243472814560,L, + 225157520250,0.364711195230484,L, + 227081943500,0.360136419534683,L, + 229006366750,0.355519652366638,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162319183350,L, + 234779636500,0.341422855854034,L, + 236704059750,0.336643487215042,L, + 238628483000,0.331824809312820,L, + 240552906250,0.326967298984528,L, + 242477329500,0.322071373462677,L, + 244401752750,0.317137569189072,L, + 246326176000,0.312166213989258,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113085985184,L, + 252099445750,0.297032058238983,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763131618500,L, + 257872715500,0.281576097011566,L, + 259797138750,0.276354491710663,L, + 261721562000,0.271098762750626,L, + 263645985250,0.265809208154678,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741747975349,L, + 271343678250,0.244320750236511,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383327722549,L, + 277116948000,0.227867573499680,L, + 279041371250,0.222320899367332,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136355996132,L, + 284814641000,0.205499216914177,L, + 286739064250,0.199832573533058,L, + 288663487500,0.194137006998062,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660266757011,L, + 294436757250,0.176880091428757,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238380432129,L, + 300210027000,0.159378021955490,L, + 302134450250,0.153492093086243,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646727919579,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709646105766,L, + 311756566500,0.123709797859192,L, + 313680989750,0.117691338062286,L, + 315605413000,0.111656464636326,L, + 317529836250,0.105608195066452,L, + 319454259500,0.099550433456898,L, + 321378682750,0.093488991260529,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393445789814,L, + 329076375750,0.069480247795582,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166576713324,L, + 334849645500,0.318087399005890,L, + 344471761750,0.318087399005890,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_025" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014211133122444 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,-0.014211133122444,L, + 1924423250,-0.014211088418961,L, + 3848846500,-0.014211237430573,L, + 5773269750,-0.014210745692253,L, + 7697693000,-0.014210805296898,L, + 9622116250,-0.014210909605026,L, + 11546539500,-0.014210745692253,L, + 13470962750,-0.014211282134056,L, + 15395386000,-0.014211356639862,L, + 17319809250,-0.014211148023605,L, + 19244232500,-0.014211192727089,L, + 21168655750,-0.014211058616638,L, + 23093079000,-0.014211148023605,L, + 25017502250,-0.014211043715477,L, + 26941925500,-0.014211192727089,L, + 28866348750,-0.014211058616638,L, + 30790772000,-0.014211088418961,L, + 32715195250,-0.014211103320122,L, + 34639618500,-0.014210924506187,L, + 36564041750,-0.014210969209671,L, + 38488465000,-0.014210999011993,L, + 40412888250,-0.014210864901543,L, + 42337311500,-0.014211311936378,L, + 44261734750,-0.014211207628250,L, + 46186158000,-0.014211043715477,L, + 48110581250,-0.014211133122444,L, + 50035004500,-0.014210999011993,L, + 51959427750,-0.014211207628250,L, + 53883851000,-0.014210984110832,L, + 55808274250,-0.014211058616638,L, + 57732697500,-0.014211267232895,L, + 59657120750,-0.014211043715477,L, + 61581544000,-0.014210835099220,L, + 63505967250,-0.014211222529411,L, + 65430390500,-0.014210999011993,L, + 67354813750,-0.014211043715477,L, + 69279237000,-0.014210939407349,L, + 71203660250,-0.014211058616638,L, + 73128083500,-0.014211073517799,L, + 75052506750,-0.014210850000381,L, + 76976930000,-0.014211326837540,L, + 78901353250,-0.014210879802704,L, + 80825776500,-0.014210969209671,L, + 82750199750,-0.014210820198059,L, + 84674623000,-0.014210760593414,L, + 86599046250,-0.014211148023605,L, + 88523469500,-0.014210909605026,L, + 90447892750,-0.014211013913155,L, + 92372316000,-0.014211252331734,L, + 94296739250,-0.014210864901543,L, + 96221162500,-0.014210909605026,L, + 98145585750,-0.014210909605026,L, + 100070009000,-0.014210730791092,L, + 101994432250,-0.014211162924767,L, + 103918855500,-0.014211192727089,L, + 105843278750,-0.014211013913155,L, + 107767702000,-0.014211103320122,L, + 109692125250,-0.014211013913155,L, + 111616548500,-0.014211282134056,L, + 113540971750,-0.014211088418961,L, + 115465395000,-0.014210775494576,L, + 117389818250,-0.014211267232895,L, + 119314241500,-0.014211028814316,L, + 121238664750,-0.014210954308510,L, + 123163088000,-0.014210924506187,L, + 125087511250,-0.014210939407349,L, + 127011934500,-0.014211058616638,L, + 128936357750,-0.014211237430573,L, + 130860781000,-0.014211133122444,L, + 132785204250,-0.014210805296898,L, + 134709627500,-0.014211311936378,L, + 136634050750,-0.014211386442184,L, + 138558474000,-0.014211133122444,L, + 140482897250,-0.014211192727089,L, + 142407320500,-0.014210864901543,L, + 144331743750,-0.014210745692253,L, + 146256167000,-0.014211088418961,L, + 148180590250,-0.014211133122444,L, + 150105013500,-0.014211148023605,L, + 152029436750,-0.014211386442184,L, + 153953860000,-0.014211103320122,L, + 155878283250,-0.014211073517799,L, + 157802706500,-0.014211118221283,L, + 159727129750,-0.014211013913155,L, + 163575976250,-0.014211103320122,L, + 165500399500,-0.014210954308510,L, + 167424822750,-0.014210939407349,L, + 169349246000,-0.014211371541023,L, + 171273669250,-0.014211162924767,L, + 173198092500,-0.014211133122444,L, + 175122515750,-0.014211118221283,L, + 177046939000,-0.014210999011993,L, + 178971362250,-0.014211133122444,L, + 180895785500,-0.014210924506187,L, + 182820208750,-0.014211192727089,L, + 184744632000,-0.014210879802704,L, + 186669055250,-0.014210820198059,L, + 188593478500,-0.014210924506187,L, + 190517901750,-0.014211103320122,L, + 192442325000,-0.014211237430573,L, + 194366748250,-0.014211222529411,L, + 196291171500,-0.014210984110832,L, + 198215594750,-0.014210924506187,L, + 200140018000,-0.014210924506187,L, + 202064441250,-0.014211401343346,L, + 203988864500,-0.014211311936378,L, + 205913287750,-0.014211058616638,L, + 207837711000,-0.014211058616638,L, + 209762134250,-0.014211192727089,L, + 211686557500,-0.014210954308510,L, + 213610980750,-0.014211222529411,L, + 215535404000,-0.014210969209671,L, + 217459827250,-0.014211103320122,L, + 219384250500,-0.014211058616638,L, + 221308673750,-0.014211237430573,L, + 223233097000,-0.014211162924767,L, + 225157520250,-0.014211192727089,L, + 227081943500,-0.014211297035217,L, + 229006366750,-0.014210954308510,L, + 230930790000,-0.014211043715477,L, + 232855213250,-0.014211058616638,L, + 234779636500,-0.014210924506187,L, + 236704059750,-0.014211103320122,L, + 238628483000,-0.014211013913155,L, + 240552906250,-0.014211133122444,L, + 242477329500,-0.014210924506187,L, + 244401752750,-0.014210805296898,L, + 246326176000,-0.014211222529411,L, + 248250599250,-0.014211162924767,L, + 250175022500,-0.014211073517799,L, + 252099445750,-0.014211386442184,L, + 254023869000,-0.014211103320122,L, + 255948292250,-0.014211148023605,L, + 257872715500,-0.014210954308510,L, + 259797138750,-0.014210984110832,L, + 261721562000,-0.014211207628250,L, + 263645985250,-0.014211088418961,L, + 265570408500,-0.014211043715477,L, + 267494831750,-0.014211058616638,L, + 269419255000,-0.014211043715477,L, + 271343678250,-0.014210984110832,L, + 273268101500,-0.014210775494576,L, + 275192524750,-0.014210864901543,L, + 277116948000,-0.014210715889931,L, + 279041371250,-0.014211192727089,L, + 280965794500,-0.014210760593414,L, + 282890217750,-0.014210775494576,L, + 284814641000,-0.014211103320122,L, + 286739064250,-0.014211148023605,L, + 288663487500,-0.014211177825928,L, + 290587910750,-0.014211013913155,L, + 292512334000,-0.014210805296898,L, + 294436757250,-0.014211118221283,L, + 296361180500,-0.014210969209671,L, + 298285603750,-0.014210969209671,L, + 300210027000,-0.014210790395737,L, + 302134450250,-0.014211162924767,L, + 304058873500,-0.014211043715477,L, + 305983296750,-0.014210894703865,L, + 307907720000,-0.014210775494576,L, + 344471761750,-0.014210775494576,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.037070423364639 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.037070423364639,L, + 1924423250,0.037117645144463,L, + 3848846500,0.037261232733727,L, + 5773269750,0.037502184510231,L, + 7697693000,0.037842512130737,L, + 9622116250,0.038282811641693,L, + 11546539500,0.038824379444122,L, + 13470962750,0.039466530084610,L, + 15395386000,0.040208891034126,L, + 17319809250,0.041050300002098,L, + 19244232500,0.041988536715508,L, + 21168655750,0.043020516633987,L, + 23093079000,0.044142901897430,L, + 25017502250,0.045350477099419,L, + 26941925500,0.046637564897537,L, + 28866348750,0.047997504472733,L, + 30790772000,0.049422562122345,L, + 32715195250,0.050904601812363,L, + 34639618500,0.052434533834457,L, + 36564041750,0.054002523422241,L, + 38488465000,0.055598288774490,L, + 40412888250,0.057212099432945,L, + 42337311500,0.058833286166191,L, + 44261734750,0.060451492667198,L, + 46186158000,0.062057301402092,L, + 48110581250,0.063641592860222,L, + 50035004500,0.065195545554161,L, + 51959427750,0.066711068153381,L, + 53883851000,0.068180963397026,L, + 55808274250,0.069599702954292,L, + 57732697500,0.070960819721222,L, + 59657120750,0.072260215878487,L, + 61581544000,0.073493838310242,L, + 63505967250,0.074658900499344,L, + 65430390500,0.075753122568130,L, + 67354813750,0.076774284243584,L, + 69279237000,0.077721282839775,L, + 71203660250,0.078593879938126,L, + 73128083500,0.079391255974770,L, + 75052506750,0.080144837498665,L, + 76976930000,0.080883666872978,L, + 78901353250,0.081603810191154,L, + 80825776500,0.082302108407021,L, + 82750199750,0.082973241806030,L, + 84674623000,0.083613708615303,L, + 86599046250,0.084218442440033,L, + 88523469500,0.084783181548119,L, + 90447892750,0.085303768515587,L, + 92372316000,0.085776790976524,L, + 94296739250,0.086199760437012,L, + 96221162500,0.086572200059891,L, + 98145585750,0.086893185973167,L, + 100070009000,0.087164372205734,L, + 101994432250,0.087388232350349,L, + 103918855500,0.087567716836929,L, + 105843278750,0.087705746293068,L, + 107767702000,0.087807178497314,L, + 109692125250,0.087874636054039,L, + 111616548500,0.087912693619728,L, + 113540971750,0.087924793362617,L, + 115465395000,0.087908849120140,L, + 117389818250,0.087862700223923,L, + 119314241500,0.087786808609962,L, + 121238664750,0.087682992219925,L, + 123163088000,0.087551698088646,L, + 125087511250,0.087394669651985,L, + 127011934500,0.087212190032005,L, + 128936357750,0.087005510926247,L, + 130860781000,0.086775079369545,L, + 132785204250,0.086522072553635,L, + 134709627500,0.086247175931931,L, + 136634050750,0.085951238870621,L, + 138558474000,0.085634186863899,L, + 140482897250,0.085297599434853,L, + 142407320500,0.084941267967224,L, + 144331743750,0.084566533565521,L, + 146256167000,0.084173426032066,L, + 148180590250,0.083762511610985,L, + 150105013500,0.083334267139435,L, + 152029436750,0.082889452576637,L, + 153953860000,0.082428127527237,L, + 155878283250,0.081950724124908,L, + 157802706500,0.081457704305649,L, + 159727129750,0.080949559807777,L, + 161651553000,0.080426976084709,L, + 163575976250,0.079889893531799,L, + 165500399500,0.079338535666466,L, + 167424822750,0.078773543238640,L, + 169349246000,0.078195109963417,L, + 171273669250,0.077603146433830,L, + 173198092500,0.076998800039291,L, + 175122515750,0.076381474733353,L, + 177046939000,0.075751855969429,L, + 178971362250,0.075110524892807,L, + 180895785500,0.074457168579102,L, + 182820208750,0.073792129755020,L, + 184744632000,0.073115825653076,L, + 186669055250,0.072428345680237,L, + 188593478500,0.071729823946953,L, + 190517901750,0.071020841598511,L, + 192442325000,0.070301055908203,L, + 194366748250,0.069571048021317,L, + 196291171500,0.068830922245979,L, + 198215594750,0.068080991506577,L, + 200140018000,0.067321181297302,L, + 202064441250,0.066551536321640,L, + 203988864500,0.065772637724876,L, + 205913287750,0.064984112977982,L, + 207837711000,0.064186736941338,L, + 209762134250,0.063380151987076,L, + 211686557500,0.062564894556999,L, + 213610980750,0.061740785837173,L, + 215535404000,0.060908198356628,L, + 217459827250,0.060066908597946,L, + 219384250500,0.059217512607574,L, + 221308673750,0.058359831571579,L, + 223233097000,0.057494133710861,L, + 225157520250,0.056620299816132,L, + 227081943500,0.055738627910614,L, + 229006366750,0.054849147796631,L, + 230930790000,0.053952202200890,L, + 232855213250,0.053047552704811,L, + 234779636500,0.052135571837425,L, + 236704059750,0.051216244697571,L, + 238628483000,0.050289705395699,L, + 240552906250,0.049356162548065,L, + 242477329500,0.048415258526802,L, + 244401752750,0.047467499971390,L, + 246326176000,0.046512946486473,L, + 248250599250,0.045551642775536,L, + 250175022500,0.044583648443222,L, + 252099445750,0.043609231710434,L, + 254023869000,0.042627990245819,L, + 255948292250,0.041640430688858,L, + 257872715500,0.040646627545357,L, + 259797138750,0.039646387100220,L, + 261721562000,0.038640215992928,L, + 263645985250,0.037627965211868,L, + 265570408500,0.036609649658203,L, + 267494831750,0.035585343837738,L, + 269419255000,0.034555599093437,L, + 271343678250,0.033519968390465,L, + 273268101500,0.032478794455528,L, + 275192524750,0.031432360410690,L, + 277116948000,0.030380502343178,L, + 279041371250,0.029323801398277,L, + 280965794500,0.028261870145798,L, + 282890217750,0.027195334434509,L, + 284814641000,0.026124283671379,L, + 286739064250,0.025049135088921,L, + 288663487500,0.023969888687134,L, + 290587910750,0.022887215018272,L, + 292512334000,0.021801739931107,L, + 294436757250,0.020714148879051,L, + 296361180500,0.019625991582870,L, + 298285603750,0.018538221716881,L, + 300210027000,0.017453491687775,L, + 302134450250,0.016376703977585,L, + 304058873500,0.015316247940063,L, + 305983296750,0.014295220375061,L, + 307907720000,0.013481646776199,L, + 344471761750,0.013481646776199,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.708404660224915 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.708404660224915,L, + 1924423250,0.708638787269592,L, + 3848846500,0.709349274635315,L, + 5773269750,0.710548520088196,L, + 7697693000,0.712247490882874,L, + 9622116250,0.714454770088196,L, + 11546539500,0.717178702354431,L, + 13470962750,0.720424294471741,L, + 15395386000,0.724194169044495,L, + 17319809250,0.728487849235535,L, + 19244232500,0.733301043510437,L, + 21168655750,0.738626360893250,L, + 23093079000,0.744451642036438,L, + 25017502250,0.750759720802307,L, + 26941925500,0.757529854774475,L, + 28866348750,0.764735579490662,L, + 30790772000,0.772346377372742,L, + 32715195250,0.780327677726746,L, + 34639618500,0.788640141487122,L, + 36564041750,0.797241330146790,L, + 38488465000,0.806087136268616,L, + 40412888250,0.815129876136780,L, + 42337311500,0.824322819709778,L, + 44261734750,0.833617806434631,L, + 46186158000,0.842968106269836,L, + 48110581250,0.852328419685364,L, + 50035004500,0.861655831336975,L, + 51959427750,0.870909810066223,L, + 53883851000,0.880053639411926,L, + 55808274250,0.889053463935852,L, + 57732697500,0.897879958152771,L, + 59657120750,0.906506180763245,L, + 61581544000,0.914910435676575,L, + 63505967250,0.923073172569275,L, + 65430390500,0.930978417396545,L, + 67354813750,0.938613772392273,L, + 69279237000,0.945968747138977,L, + 71203660250,0.953036189079285,L, + 73128083500,0.959810614585876,L, + 75052506750,0.966705679893494,L, + 76976930000,0.974127888679504,L, + 78901353250,0.982049584388733,L, + 80825776500,0.990428566932678,L, + 82750199750,0.999204039573669,L, + 84674623000,1.008294224739075,L, + 86599046250,1.017595410346985,L, + 88523469500,1.026982903480530,L, + 90447892750,1.036315560340881,L, + 92372316000,1.045439839363098,L, + 94296739250,1.054199814796448,L, + 96221162500,1.062444329261780,L, + 98145585750,1.070038676261902,L, + 100070009000,1.076868891716003,L, + 101994432250,1.082848429679871,L, + 103918855500,1.087917685508728,L, + 105843278750,1.092044472694397,L, + 107767702000,1.095218777656555,L, + 109692125250,1.097450613975525,L, + 111616548500,1.098763823509216,L, + 113540971750,1.099192500114441,L, + 115465395000,1.098993659019470,L, + 117389818250,1.098408341407776,L, + 119314241500,1.097451090812683,L, + 121238664750,1.096137642860413,L, + 123163088000,1.094480633735657,L, + 125087511250,1.092493653297424,L, + 127011934500,1.090187668800354,L, + 128936357750,1.087574601173401,L, + 130860781000,1.084664225578308,L, + 132785204250,1.081467747688293,L, + 134709627500,1.077993273735046,L, + 136634050750,1.074250340461731,L, + 138558474000,1.070247292518616,L, + 140482897250,1.065991759300232,L, + 142407320500,1.061491131782532,L, + 144331743750,1.056753516197205,L, + 146256167000,1.051784634590149,L, + 148180590250,1.046591639518738,L, + 150105013500,1.041180014610291,L, + 152029436750,1.035556197166443,L, + 153953860000,1.029725670814514,L, + 155878283250,1.023693442344666,L, + 157802706500,1.017464756965637,L, + 159727129750,1.011045098304749,L, + 161651553000,1.004438042640686,L, + 163575976250,0.997649073600769,L, + 165500399500,0.990681767463684,L, + 167424822750,0.983540415763855,L, + 169349246000,0.976229071617126,L, + 171273669250,0.968751311302185,L, + 173198092500,0.961110949516296,L, + 175122515750,0.953311562538147,L, + 177046939000,0.945356249809265,L, + 178971362250,0.937248349189758,L, + 180895785500,0.928990960121155,L, + 182820208750,0.920587182044983,L, + 184744632000,0.912039875984192,L, + 186669055250,0.903351664543152,L, + 188593478500,0.894525170326233,L, + 190517901750,0.885563254356384,L, + 192442325000,0.876468300819397,L, + 194366748250,0.867242932319641,L, + 196291171500,0.857889294624329,L, + 198215594750,0.848409533500671,L, + 200140018000,0.838805794715881,L, + 202064441250,0.829080462455750,L, + 203988864500,0.819235682487488,L, + 205913287750,0.809273123741150,L, + 207837711000,0.799194693565369,L, + 209762134250,0.789002299308777,L, + 211686557500,0.778697848320007,L, + 213610980750,0.768283247947693,L, + 215535404000,0.757759690284729,L, + 217459827250,0.747129559516907,L, + 219384250500,0.736394047737122,L, + 221308673750,0.725554347038269,L, + 223233097000,0.714612841606140,L, + 225157520250,0.703570008277893,L, + 227081943500,0.692428231239319,L, + 229006366750,0.681188464164734,L, + 230930790000,0.669851660728455,L, + 232855213250,0.658419966697693,L, + 234779636500,0.646894335746765,L, + 236704059750,0.635275959968567,L, + 238628483000,0.623566031455994,L, + 240552906250,0.611765980720520,L, + 242477329500,0.599876761436462,L, + 244401752750,0.587899804115295,L, + 246326176000,0.575835824012756,L, + 248250599250,0.563686490058899,L, + 250175022500,0.551452994346619,L, + 252099445750,0.539135813713074,L, + 254023869000,0.526736617088318,L, + 255948292250,0.514256358146667,L, + 257872715500,0.501695752143860,L, + 259797138750,0.489056706428528,L, + 261721562000,0.476339936256409,L, + 263645985250,0.463546395301819,L, + 265570408500,0.450677752494812,L, + 267494831750,0.437734723091125,L, + 269419255000,0.424719214439392,L, + 271343678250,0.411632180213928,L, + 273268101500,0.398475050926208,L, + 275192524750,0.385249257087708,L, + 277116948000,0.371957182884216,L, + 279041371250,0.358600258827209,L, + 280965794500,0.345181107521057,L, + 282890217750,0.331701636314392,L, + 284814641000,0.318165421485901,L, + 286739064250,0.304575800895691,L, + 288663487500,0.290937304496765,L, + 290587910750,0.277255892753601,L, + 292512334000,0.263538479804993,L, + 294436757250,0.249794960021973,L, + 296361180500,0.236039757728577,L, + 298285603750,0.222292661666870,L, + 300210027000,0.208586215972900,L, + 302134450250,0.194976329803467,L, + 304058873500,0.181573510169983,L, + 305983296750,0.168670654296875,L, + 307907720000,0.158387899398804,L, + 309832143250,0.645346045494080,L, + 344471761750,0.645346045494080,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 44.316787674782788 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,44.316787674782788,L, + 1924423250,44.334467619449342,L, + 3848846500,44.387753340259117,L, + 5773269750,44.476965856103114,L, + 7697693000,44.602255431143064,L, + 9622116250,44.763594744622289,L, + 11546539500,44.960741324825250,L, + 13470962750,45.193199983037132,L, + 15395386000,45.460215983354637,L, + 17319809250,45.760706740794333,L, + 19244232500,46.093302802427630,L, + 21168655750,46.456241979448656,L, + 23093079000,46.847413743403898,L, + 25017502250,47.264321660151708,L, + 26941925500,47.704148276659460,L, + 28866348750,48.163669743638920,L, + 30790772000,48.639389004235035,L, + 32715195250,49.127508473269295,L, + 34639618500,49.624015414604322,L, + 36564041750,50.124767318508503,L, + 38488465000,50.625508977128924,L, + 40412888250,51.122026163747705,L, + 42337311500,51.610142217687383,L, + 44261734750,52.085854648094326,L, + 46186158000,52.545382945262958,L, + 48110581250,52.985199316486955,L, + 50035004500,53.402117478518520,L, + 51959427750,53.793292657568344,L, + 53883851000,54.156221589305616,L, + 55808274250,54.488814235844330,L, + 57732697500,54.789311823473192,L, + 59657120750,55.056320993601531,L, + 61581544000,55.288789897097168,L, + 63505967250,55.485929647110964,L, + 65430390500,55.647272375684771,L, + 67354813750,55.772561950724722,L, + 69279237000,55.861774466568711,L, + 71203660250,55.915063602473076,L, + 73128083500,55.932733301855876,L, + 75052506750,55.855944900112114,L, + 76976930000,55.623564789075694,L, + 78901353250,55.234199610155919,L, + 80825776500,54.689225646470554,L, + 82750199750,53.993553804032828,L, + 84674623000,53.156384347654736,L, + 86599046250,52.191777221742733,L, + 88523469500,51.118955993715787,L, + 90447892750,49.962102948330298,L, + 92372316000,48.749641917817222,L, + 94296739250,47.512892734615619,L, + 96221162500,46.284322702945097,L, + 98145585750,45.095654636405733,L, + 100070009000,43.976015876712999,L, + 101994432250,42.950602991715044,L, + 103918855500,42.039838247030175,L, + 105843278750,41.259065662628799,L, + 107767702000,40.618813975116481,L, + 109692125250,40.125281581164991,L, + 111616548500,39.781077613037276,L, + 113540971750,39.585918617882783,L, + 115465395000,39.466141005503026,L, + 117389818250,39.349341355601389,L, + 119314241500,39.235389894583648,L, + 121238664750,39.124187584706831,L, + 123163088000,39.015631973133388,L, + 125087511250,38.909610361742018,L, + 127011934500,38.806051033546431,L, + 128936357750,38.704854950803671,L, + 130860781000,38.605943566338269,L, + 132785204250,38.509241748069371,L, + 134709627500,38.414688024294435,L, + 136634050750,38.322200432743422,L, + 138558474000,38.231720916808399,L, + 140482897250,38.143194834975986,L, + 142407320500,38.056553885354504,L, + 144331743750,37.971757086808914,L, + 146256167000,37.888739552542113,L, + 148180590250,37.807460301419077,L, + 150105013500,37.727871522115620,L, + 152029436750,37.649925403307549,L, + 153953860000,37.573574133670668,L, + 155878283250,37.498804052826642,L, + 157802706500,37.425536613600023,L, + 159727129750,37.353771815990804,L, + 161651553000,37.283444773201872,L, + 163575976250,37.214545239949466,L, + 165500399500,37.147018574720228,L, + 167424822750,37.080861362419583,L, + 169349246000,37.016018961534158,L, + 171273669250,36.952474296591035,L, + 173198092500,36.890196631738952,L, + 175122515750,36.829162061315806,L, + 177046939000,36.769350094754088,L, + 178971362250,36.710723166013366,L, + 180895785500,36.653274444904476,L, + 182820208750,36.596969780481551,L, + 184744632000,36.541778436893345,L, + 186669055250,36.487717489612770,L, + 188593478500,36.434728882031891,L, + 190517901750,36.382798953772358,L, + 192442325000,36.331924289739590,L, + 194366748250,36.282080984271495,L, + 196291171500,36.233255376989725,L, + 198215594750,36.185409901853859,L, + 200140018000,36.138561634336803,L, + 202064441250,36.092673008398144,L, + 203988864500,36.047733778754107,L, + 205913287750,36.003733700120947,L, + 207837711000,35.960652281931154,L, + 209762134250,35.918482693995557,L, + 211686557500,35.877207860841231,L, + 213610980750,35.836810706995244,L, + 215535404000,35.797301477741364,L, + 217459827250,35.758646022133732,L, + 219384250500,35.720840925077766,L, + 221308673750,35.683869111100542,L, + 223233097000,35.647730580202058,L, + 225157520250,35.612411672003972,L, + 227081943500,35.577902141222530,L, + 229006366750,35.544191742573979,L, + 230930790000,35.511280476058324,L, + 232855213250,35.479151266202628,L, + 234779636500,35.447797282817731,L, + 236704059750,35.417211695714457,L, + 238628483000,35.387387674703639,L, + 240552906250,35.358318389596107,L, + 242477329500,35.330003840391861,L, + 244401752750,35.302423536523385,L, + 246326176000,35.275587723274448,L, + 248250599250,35.249475910077521,L, + 250175022500,35.224105172405551,L, + 252099445750,35.199448189501837,L, + 254023869000,35.175508376460975,L, + 255948292250,35.152278903093794,L, + 257872715500,35.129756354305712,L, + 259797138750,35.107950975380476,L, + 261721562000,35.086855936128927,L, + 263645985250,35.066457576172709,L, + 265570408500,35.046762725701008,L, + 267494831750,35.027767969619227,L, + 269419255000,35.009476723021962,L, + 271343678250,34.991885570814617,L, + 273268101500,34.974994512997199,L, + 275192524750,34.958810379758880,L, + 277116948000,34.943329756005070,L, + 279041371250,34.928562887019524,L, + 280965794500,34.914506357707651,L, + 282890217750,34.901180658636981,L, + 284814641000,34.888578959618322,L, + 286739064250,34.876714921030029,L, + 288663487500,34.865602203250432,L, + 290587910750,34.855261296847047,L, + 292512334000,34.845692201819872,L, + 294436757250,34.836929069114760,L, + 296361180500,34.829009464772142,L, + 298285603750,34.821947049170362,L, + 300210027000,34.815806709106525,L, + 302134450250,34.810653331377758,L, + 304058873500,34.806592783916194,L, + 305983296750,34.803785576167321,L, + 307907720000,34.802665425143438,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -10.500351193142642 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-10.500351193142642,L, + 1924423250,-10.511125816558321,L, + 3848846500,-10.543745946260609,L, + 5773269750,-10.598606025674073,L, + 7697693000,-10.676031342557934,L, + 9622116250,-10.776256684664910,L, + 11546539500,-10.899410971815588,L, + 13470962750,-11.045504449293718,L, + 15395386000,-11.214400513315905,L, + 17319809250,-11.405805465747836,L, + 19244232500,-11.619244608442196,L, + 21168655750,-11.854051144181264,L, + 23093079000,-12.109349101203989,L, + 25017502250,-12.384044795469521,L, + 26941925500,-12.676834514620037,L, + 28866348750,-12.986187442507809,L, + 30790772000,-13.310373833725537,L, + 32715195250,-13.647481235305616,L, + 34639618500,-13.995433269740369,L, + 36564041750,-14.352027201022468,L, + 38488465000,-14.714974915779960,L, + 40412888250,-15.081937074222123,L, + 42337311500,-15.450576044105523,L, + 44261734750,-15.818576391301525,L, + 46186158000,-16.183726842066346,L, + 48110581250,-16.543910037757279,L, + 50035004500,-16.897158883893368,L, + 51959427750,-17.241675333175611,L, + 53883851000,-17.575838923223419,L, + 55808274250,-17.898208484121923,L, + 57732697500,-18.207557996915114,L, + 59657120750,-18.502820244545170,L, + 61581544000,-18.783134623176675,L, + 63505967250,-19.047804453514289,L, + 65430390500,-19.296283320424411,L, + 67354813750,-19.528171657840595,L, + 69279237000,-19.743206503479797,L, + 71203660250,-19.941220517707354,L, + 73128083500,-20.122172719388242,L, + 75052506750,-20.293079420347347,L, + 76976930000,-20.460478819167655,L, + 78901353250,-20.623592274283787,L, + 80825776500,-20.781530153556353,L, + 82750199750,-20.933339645596131,L, + 84674623000,-21.078001344669499,L, + 86599046250,-21.214485599759083,L, + 88523469500,-21.341795203246061,L, + 90447892750,-21.459018324876237,L, + 92372316000,-21.565436087239465,L, + 94296739250,-21.660531103506123,L, + 96221162500,-21.744059194413385,L, + 98145585750,-21.816057926001676,L, + 100070009000,-21.876820996405314,L, + 101994432250,-21.926877745284976,L, + 103918855500,-21.966926559483287,L, + 105843278750,-21.997771693775022,L, + 107767702000,-22.020289119921227,L, + 109692125250,-22.035354809682961,L, + 111616548500,-22.043812291422718,L, + 113540971750,-22.046462404820680,L, + 115465395000,-22.042886800790182,L, + 117389818250,-22.032358064184621,L, + 119314241500,-22.015154525212676,L, + 121238664750,-21.991540853704684,L, + 123163088000,-21.961750983639718,L, + 125087511250,-21.926023971638724,L, + 127011934500,-21.884569846018685,L, + 128936357750,-21.837588389812819,L, + 130860781000,-21.785274263412475,L, + 132785204250,-21.727799929094193,L, + 134709627500,-21.665339556681808,L, + 136634050750,-21.598046825431645,L, + 138558474000,-21.526075414600033,L, + 140482897250,-21.449572173254122,L, + 142407320500,-21.368665167440852,L, + 144331743750,-21.283487585849038,L, + 146256167000,-21.194155541694570,L, + 148180590250,-21.100791978382507,L, + 150105013500,-21.003507886486862,L, + 152029436750,-20.902397181108725,L, + 153953860000,-20.797574267916687,L, + 155878283250,-20.689127939369968,L, + 157802706500,-20.577152110569646,L, + 159727129750,-20.461730451333061,L, + 161651553000,-20.342955169214001,L, + 163575976250,-20.220896273651462,L, + 165500399500,-20.095639142010072,L, + 167424822750,-19.967250368634232,L, + 169349246000,-19.835805085604822,L, + 171273669250,-19.701369887266239,L, + 173198092500,-19.564013075510186,L, + 175122515750,-19.423792706944610,L, + 177046939000,-19.280770253272042,L, + 178971362250,-19.135008893742302,L, + 180895785500,-18.986554732132287,L, + 182820208750,-18.835470947691821,L, + 184744632000,-18.681801936650512,L, + 186669055250,-18.525604048069006,L, + 188593478500,-18.366921678176915,L, + 190517901750,-18.205804345845713,L, + 192442325000,-18.042294739757722,L, + 194366748250,-17.876438963689832,L, + 196291171500,-17.708274583682481,L, + 198215594750,-17.537844288417986,L, + 200140018000,-17.365190766578650,L, + 202064441250,-17.190346461563038,L, + 203988864500,-17.013355769600750,L, + 205913287750,-16.834242596353889,L, + 207837711000,-16.653053045599343,L, + 209762134250,-16.469814438093795,L, + 211686557500,-16.284559217235806,L, + 213610980750,-16.097323241518517,L, + 215535404000,-15.908133831698603,L, + 217459827250,-15.717021723627337,L, + 219384250500,-15.524014238061394,L, + 221308673750,-15.329140403304747,L, + 223233097000,-15.132429247661371,L, + 225157520250,-14.933901261698772,L, + 227081943500,-14.733592303910097,L, + 229006366750,-14.531519449768266,L, + 230930790000,-14.327710020029963,L, + 232855213250,-14.122187920357282,L, + 234779636500,-13.914975348865026,L, + 236704059750,-13.706100480083521,L, + 238628483000,-13.495573559296520,L, + 240552906250,-13.283431298770815,L, + 242477329500,-13.069684797563802,L, + 244401752750,-12.854360522658522,L, + 246326176000,-12.637477257075187,L, + 248250599250,-12.419052930060371,L, + 250175022500,-12.199115716144398,L, + 252099445750,-11.977676714384673,L, + 254023869000,-11.754763245537871,L, + 255948292250,-11.530388969982337,L, + 257872715500,-11.304576939606514,L, + 259797138750,-11.077348498751565,L, + 261721562000,-10.848724137984995,L, + 263645985250,-10.618722640327023,L, + 265570408500,-10.387367911439746,L, + 267494831750,-10.154676173022439,L, + 269419255000,-9.920678160926370,L, + 271343678250,-9.685395219492694,L, + 273268101500,-9.448856377025383,L, + 275192524750,-9.211084685412887,L, + 277116948000,-8.972116856921994,L, + 279041371250,-8.731984481177616,L, + 280965794500,-8.490728539314773,L, + 282890217750,-8.248396842657653,L, + 284814641000,-8.005035494983156,L, + 286739064250,-7.760721335919444,L, + 288663487500,-7.515529497547385,L, + 290587910750,-7.269558163836301,L, + 292512334000,-7.022945219230060,L, + 294436757250,-6.775865260439319,L, + 296361180500,-6.528571858237016,L, + 298285603750,-6.281425305101868,L, + 300210027000,-6.035010009094733,L, + 302134450250,-5.790324031608078,L, + 304058873500,-5.549368618068715,L, + 305983296750,-5.317398318382490,L, + 307907720000,-5.132534125854483,L, + 344471761750,-5.132534125854483,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 25.061420602581279 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,25.061420602581279,L, + 1924423250,25.059265677898143,L, + 3848846500,25.052780413281226,L, + 5773269750,25.041911874764459,L, + 7697693000,25.026653232158672,L, + 9622116250,25.007007900558452,L, + 11546539500,24.982996370531307,L, + 13470962750,24.954683528874352,L, + 15395386000,24.922164998235967,L, + 17319809250,24.885563722021214,L, + 19244232500,24.845060700243096,L, + 21168655750,24.800860838576714,L, + 23093079000,24.753218561568652,L, + 25017502250,24.702448057920726,L, + 26941925500,24.648873761618518,L, + 28866348750,24.592907191559512,L, + 30790772000,24.534973527019549,L, + 32715195250,24.475523560483843,L, + 34639618500,24.415054188214516,L, + 36564041750,24.354072551757437,L, + 38488465000,24.293084085111186,L, + 40412888250,24.232613005294567,L, + 42337311500,24.173171576495324,L, + 44261734750,24.115231081766186,L, + 46186158000,24.059264511707184,L, + 48110581250,24.005695338046852,L, + 50035004500,23.954924834398927,L, + 51959427750,23.907280849843570,L, + 53883851000,23.863079280629897,L, + 55808274250,23.822571136209902,L, + 57732697500,23.785976690184320,L, + 59657120750,23.753458159545936,L, + 61581544000,23.725143610341689,L, + 63505967250,23.701138910503712,L, + 65430390500,23.681483333619738,L, + 67354813750,23.666231521203120,L, + 69279237000,23.655361275139061,L, + 71203660250,23.648876010522141,L, + 73128083500,23.646724500933590,L, + 75052506750,23.691453702260649,L, + 76976930000,23.826667542164611,L, + 78901353250,24.052842426340089,L, + 80825776500,24.368805269797132,L, + 82750199750,24.771251968524751,L, + 84674623000,25.254327342856964,L, + 86599046250,25.809288750656165,L, + 88523469500,26.424379728813488,L, + 90447892750,27.084920493255304,L, + 92372316000,27.773825325772847,L, + 94296739250,28.472377800493017,L, + 96221162500,29.161287755652442,L, + 98145585750,29.821828520094254,L, + 100070009000,30.436917790704285,L, + 101994432250,30.991880906050778,L, + 103918855500,31.474959695477576,L, + 105843278750,31.877397856468733,L, + 107767702000,32.193369237662239,L, + 109692125250,32.419540706743135,L, + 111616548500,32.554754546647096,L, + 113540971750,32.599488870616028,L, + 115465395000,32.598136493160368,L, + 117389818250,32.594168153252596,L, + 119314241500,32.587679473541094,L, + 121238664750,32.578769491768824,L, + 123163088000,32.567537245678757,L, + 125087511250,32.554051037162587,L, + 127011934500,32.538426979436203,L, + 128936357750,32.520709468729216,L, + 130860781000,32.500973637122492,L, + 132785204250,32.479301446886069,L, + 134709627500,32.455737294249559,L, + 136634050750,32.430359726388417,L, + 138558474000,32.403209724437652,L, + 140482897250,32.374359005383560,L, + 142407320500,32.343845135266577,L, + 144331743750,32.311715925410880,L, + 146256167000,32.278026017329843,L, + 148180590250,32.242809561969302,L, + 150105013500,32.206117785748049,L, + 152029436750,32.167984839611925,L, + 153953860000,32.128444874506776,L, + 155878283250,32.087542286662213,L, + 157802706500,32.045314642118669,L, + 159727129750,32.001779016349069,L, + 161651553000,31.956986635772193,L, + 163575976250,31.910951160766373,L, + 165500399500,31.863696496993708,L, + 167424822750,31.815280701062143,L, + 169349246000,31.765703772971676,L, + 171273669250,31.714999863668158,L, + 173198092500,31.663186048624517,L, + 175122515750,31.610306724070355,L, + 177046939000,31.556358474911086,L, + 178971362250,31.501389112470903,L, + 180895785500,31.445398636749804,L, + 182820208750,31.388417783599053,L, + 184744632000,31.330449968113239,L, + 186669055250,31.271536171427378,L, + 188593478500,31.211690053919813,L, + 190517901750,31.150921860874295,L, + 192442325000,31.089255497952923,L, + 194366748250,31.026701210439452,L, + 196291171500,30.963272658712221,L, + 198215594750,30.898990333338737,L, + 200140018000,30.833874724886513,L, + 202064441250,30.767925833355552,L, + 203988864500,30.701170979502528,L, + 205913287750,30.633613578422029,L, + 207837711000,30.565277535776151,L, + 209762134250,30.496173096848644,L, + 211686557500,30.426300261639515,L, + 213610980750,30.355679520716269,L, + 215535404000,30.284327949551834,L, + 217459827250,30.212242133051621,L, + 219384250500,30.139442561783145,L, + 221308673750,30.065942896124746,L, + 223233097000,29.991753381360173,L, + 225157520250,29.916877432584016,L, + 227081943500,29.841321879985443,L, + 229006366750,29.765110629226552,L, + 230930790000,29.688243680307338,L, + 232855213250,29.610724448322390,L, + 234779636500,29.532573423839214,L, + 236704059750,29.453790606857815,L, + 238628483000,29.374386242661949,L, + 240552906250,29.294373991629946,L, + 242477329500,29.213757268856401,L, + 244401752750,29.132549734719653,L, + 246326176000,29.050744559030527,L, + 248250599250,28.968362232356537,L, + 250175022500,28.885406169792265,L, + 252099445750,28.801890031716056,L, + 254023869000,28.717813818127905,L, + 255948292250,28.633189481858860,L, + 257872715500,28.548022145550803,L, + 259797138750,28.462318639392898,L, + 261721562000,28.376084086027024,L, + 263645985250,28.289335560926112,L, + 265570408500,28.202083309373908,L, + 267494831750,28.114317086086661,L, + 269419255000,28.026060796726469,L, + 271343678250,27.937324686577085,L, + 273268101500,27.848108755638506,L, + 275192524750,27.758430079383661,L, + 277116948000,27.668297195549009,L, + 279041371250,27.577732302249355,L, + 280965794500,27.486733691937406,L, + 282890217750,27.395335515559012,L, + 284814641000,27.303549725945221,L, + 286739064250,27.211401936305418,L, + 288663487500,27.118924590038162,L, + 290587910750,27.026151838089305,L, + 292512334000,26.933141737066791,L, + 294436757250,26.839952343578563,L, + 296361180500,26.746677572725709,L, + 298285603750,26.653462566028093,L, + 300210027000,26.560520766897280,L, + 302134450250,26.468238081021369,L, + 304058873500,26.377358999019897,L, + 305983296750,26.289867690846744,L, + 307907720000,26.220139997157474,L, + 309832143250,26.220138289610183,L, + 344471761750,26.220138289610183,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.457654863595963 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.457654863595963,L, + 1924423250,0.457997202873230,L, + 3848846500,0.459029167890549,L, + 5773269750,0.460756957530975,L, + 7697693000,0.463183522224426,L, + 9622116250,0.466308236122131,L, + 11546539500,0.470126360654831,L, + 13470962750,0.474628478288651,L, + 15395386000,0.479799747467041,L, + 17319809250,0.485619634389877,L, + 19244232500,0.492060989141464,L, + 21168655750,0.499090135097504,L, + 23093079000,0.506665945053101,L, + 25017502250,0.514740526676178,L, + 26941925500,0.523258507251740,L, + 28866348750,0.532158315181732,L, + 30790772000,0.541371583938599,L, + 32715195250,0.550825059413910,L, + 34639618500,0.560441195964813,L, + 36564041750,0.570139348506927,L, + 38488465000,0.579837441444397,L, + 40412888250,0.589453577995300,L, + 42337311500,0.598906934261322,L, + 44261734750,0.608120262622833,L, + 46186158000,0.617020070552826,L, + 48110581250,0.625538170337677,L, + 50035004500,0.633612692356110,L, + 51959427750,0.641188502311707,L, + 53883851000,0.648217618465424,L, + 55808274250,0.654658973217010,L, + 57732697500,0.660478830337524,L, + 59657120750,0.665650188922882,L, + 61581544000,0.670152366161346,L, + 63505967250,0.673970401287079,L, + 65430390500,0.677095115184784,L, + 67354813750,0.679521620273590,L, + 69279237000,0.681249439716339,L, + 71203660250,0.682281613349915,L, + 73128083500,0.682623744010925,L, + 75052506750,0.679885864257812,L, + 76976930000,0.671603858470917,L, + 78901353250,0.657734930515289,L, + 80825776500,0.638335943222046,L, + 82750199750,0.613591670989990,L, + 84674623000,0.583840250968933,L, + 86599046250,0.549594640731812,L, + 88523469500,0.511552035808563,L, + 90447892750,0.470587253570557,L, + 92372316000,0.427724719047546,L, + 94296739250,0.384091138839722,L, + 96221162500,0.340852260589600,L, + 98145585750,0.299143642187119,L, + 100070009000,0.260006994009018,L, + 101994432250,0.224340260028839,L, + 103918855500,0.192868635058403,L, + 105843278750,0.166135385632515,L, + 107767702000,0.144509673118591,L, + 109692125250,0.128206312656403,L, + 111616548500,0.117310993373394,L, + 113540971750,0.111806564033031,L, + 115465395000,0.109007231891155,L, + 117389818250,0.106277406215668,L, + 119314241500,0.103614322841167,L, + 121238664750,0.101015366613865,L, + 123163088000,0.098478153347969,L, + 125087511250,0.096000388264656,L, + 127011934500,0.093579933047295,L, + 128936357750,0.091214843094349,L, + 130860781000,0.088903203606606,L, + 132785204250,0.086643233895302,L, + 134709627500,0.084433302283287,L, + 136634050750,0.082271784543991,L, + 138558474000,0.080157235264778,L, + 140482897250,0.078088201582432,L, + 142407320500,0.076063364744186,L, + 144331743750,0.074081450700760,L, + 146256167000,0.072141274809837,L, + 148180590250,0.070241652429104,L, + 150105013500,0.068381495773792,L, + 152029436750,0.066559806466103,L, + 153953860000,0.064775556325912,L, + 155878283250,0.063027791678905,L, + 157802706500,0.061315651983023,L, + 159727129750,0.059638239443302,L, + 161651553000,0.057994730770588,L, + 163575976250,0.056384366005659,L, + 165500399500,0.054806351661682,L, + 167424822750,0.053259994834661,L, + 169349246000,0.051744583994150,L, + 171273669250,0.050259478390217,L, + 173198092500,0.048804007470608,L, + 175122515750,0.047377575188875,L, + 177046939000,0.045979604125023,L, + 178971362250,0.044609509408474,L, + 180895785500,0.043266762048006,L, + 182820208750,0.041950825601816,L, + 184744632000,0.040661215782166,L, + 186669055250,0.039397437125444,L, + 188593478500,0.038159020245075,L, + 190517901750,0.036945536732674,L, + 192442325000,0.035756528377533,L, + 194366748250,0.034591600298882,L, + 196291171500,0.033450353890657,L, + 198215594750,0.032332383096218,L, + 200140018000,0.031237341463566,L, + 202064441250,0.030164841562510,L, + 203988864500,0.029114561155438,L, + 205913287750,0.028086168691516,L, + 207837711000,0.027079315856099,L, + 209762134250,0.026093728840351,L, + 211686557500,0.025129094719887,L, + 213610980750,0.024185113608837,L, + 215535404000,0.023261530324817,L, + 217459827250,0.022358063608408,L, + 219384250500,0.021474467590451,L, + 221308673750,0.020610487088561,L, + 223233097000,0.019765872508287,L, + 225157520250,0.018940441310406,L, + 227081943500,0.018133925274014,L, + 229006366750,0.017346149310470,L, + 230930790000,0.016576888039708,L, + 232855213250,0.015825973823667,L, + 234779636500,0.015093198046088,L, + 236704059750,0.014378394931555,L, + 238628483000,0.013681414537132,L, + 240552906250,0.013002067804337,L, + 242477329500,0.012340230867267,L, + 244401752750,0.011695741675794,L, + 246326176000,0.011068482883275,L, + 248250599250,0.010458332486451,L, + 250175022500,0.009865162894130,L, + 252099445750,0.009288885630667,L, + 254023869000,0.008729372173548,L, + 255948292250,0.008186543360353,L, + 257872715500,0.007660347502679,L, + 259797138750,0.007150694727898,L, + 261721562000,0.006657535210252,L, + 263645985250,0.006180820520967,L, + 265570408500,0.005720508750528,L, + 267494831750,0.005276594310999,L, + 269419255000,0.004849053453654,L, + 271343678250,0.004437930881977,L, + 273268101500,0.004043191205710,L, + 275192524750,0.003664918243885,L, + 277116948000,0.003303184872493,L, + 279041371250,0.002958051394671,L, + 280965794500,0.002629611641169,L, + 282890217750,0.002318069105968,L, + 284814641000,0.002023555571213,L, + 286739064250,0.001746304333210,L, + 288663487500,0.001486603170633,L, + 290587910750,0.001244787126780,L, + 292512334000,0.001021225121804,L, + 294436757250,0.000816494226456,L, + 296361180500,0.000631231814623,L, + 298285603750,0.000466294557555,L, + 300210027000,0.000322781503201,L, + 302134450250,0.000202372670174,L, + 304058873500,0.000107310705062,L, + 305983296750,0.000041827559471,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420111656189,L, + 344471761750,0.156420111656189,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.330640584230423 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.330640584230423,L, + 1924423250,0.330753207206726,L, + 3848846500,0.331092774868011,L, + 5773269750,0.331661373376846,L, + 7697693000,0.332459837198257,L, + 9622116250,0.333488136529922,L, + 11546539500,0.334744602441788,L, + 13470962750,0.336226105690002,L, + 15395386000,0.337927848100662,L, + 17319809250,0.339843034744263,L, + 19244232500,0.341962695121765,L, + 21168655750,0.344275772571564,L, + 23093079000,0.346768766641617,L, + 25017502250,0.349425882101059,L, + 26941925500,0.352228969335556,L, + 28866348750,0.355157643556595,L, + 30790772000,0.358189463615417,L, + 32715195250,0.361300319433212,L, + 34639618500,0.364464759826660,L, + 36564041750,0.367656111717224,L, + 38488465000,0.370847523212433,L, + 40412888250,0.374011904001236,L, + 42337311500,0.377122789621353,L, + 44261734750,0.380154579877853,L, + 46186158000,0.383083283901215,L, + 48110581250,0.385886341333389,L, + 50035004500,0.388543456792831,L, + 51959427750,0.391036510467529,L, + 53883851000,0.393349528312683,L, + 55808274250,0.395469278097153,L, + 57732697500,0.397384405136108,L, + 59657120750,0.399086147546768,L, + 61581544000,0.400567620992661,L, + 63505967250,0.401824116706848,L, + 65430390500,0.402852386236191,L, + 67354813750,0.403650850057602,L, + 69279237000,0.404219418764114,L, + 71203660250,0.404559046030045,L, + 73128083500,0.404671698808670,L, + 75052506750,0.403030931949615,L, + 76976930000,0.398067891597748,L, + 78901353250,0.389757335186005,L, + 80825776500,0.378133952617645,L, + 82750199750,0.363308906555176,L, + 84674623000,0.345485538244247,L, + 86599046250,0.324972003698349,L, + 88523469500,0.302186846733093,L, + 90447892750,0.277655094861984,L, + 92372316000,0.251991361379623,L, + 94296739250,0.225871458649635,L, + 96221162500,0.199994519352913,L, + 98145585750,0.175041422247887,L, + 100070009000,0.151636525988579,L, + 101994432250,0.130317971110344,L, + 103918855500,0.111520133912563,L, + 105843278750,0.095568388700485,L, + 107767702000,0.082683593034744,L, + 109692125250,0.072994053363800,L, + 111616548500,0.066550612449646,L, + 113540971750,0.063342660665512,L, + 115465395000,0.061756893992424,L, + 117389818250,0.060210518538952,L, + 119314241500,0.058701939880848,L, + 121238664750,0.057229693979025,L, + 123163088000,0.055792406201363,L, + 125087511250,0.054388813674450,L, + 127011934500,0.053017690777779,L, + 128936357750,0.051677916198969,L, + 130860781000,0.050368424504995,L, + 132785204250,0.049088209867477,L, + 134709627500,0.047836322337389,L, + 136634050750,0.046611875295639,L, + 138558474000,0.045414026826620,L, + 140482897250,0.044241972267628,L, + 142407320500,0.043094955384731,L, + 144331743750,0.041972246021032,L, + 146256167000,0.040873169898987,L, + 148180590250,0.039797078818083,L, + 150105013500,0.038743350654840,L, + 152029436750,0.037711400538683,L, + 153953860000,0.036700662225485,L, + 155878283250,0.035710595548153,L, + 157802706500,0.034740705043077,L, + 159727129750,0.033790484070778,L, + 161651553000,0.032859478145838,L, + 163575976250,0.031947240233421,L, + 165500399500,0.031053338199854,L, + 167424822750,0.030177358537912,L, + 169349246000,0.029318917542696,L, + 171273669250,0.028477629646659,L, + 173198092500,0.027653144672513,L, + 175122515750,0.026845104992390,L, + 177046939000,0.026053180918097,L, + 178971362250,0.025277053937316,L, + 180895785500,0.024516418576241,L, + 182820208750,0.023770973086357,L, + 184744632000,0.023040436208248,L, + 186669055250,0.022324532270432,L, + 188593478500,0.021622998639941,L, + 190517901750,0.020935587584972,L, + 192442325000,0.020262043923140,L, + 194366748250,0.019602140411735,L, + 196291171500,0.018955644220114,L, + 198215594750,0.018322343006730,L, + 200140018000,0.017702024430037,L, + 202064441250,0.017094476148486,L, + 203988864500,0.016499519348145,L, + 205913287750,0.015916956588626,L, + 207837711000,0.015346604399383,L, + 209762134250,0.014788287691772,L, + 211686557500,0.014241840690374,L, + 213610980750,0.013707103207707,L, + 215535404000,0.013183908537030,L, + 217459827250,0.012672118842602,L, + 219384250500,0.012171578593552,L, + 221308673750,0.011682149022818,L, + 223233097000,0.011203703470528,L, + 225157520250,0.010736115276814,L, + 227081943500,0.010279244743288,L, + 229006366750,0.009832984767854,L, + 230930790000,0.009397214278579,L, + 232855213250,0.008971834555268,L, + 234779636500,0.008556738495827,L, + 236704059750,0.008151823654771,L, + 238628483000,0.007756992243230,L, + 240552906250,0.007372155319899,L, + 242477329500,0.006997234653682,L, + 244401752750,0.006632155738771,L, + 246326176000,0.006276829168200,L, + 248250599250,0.005931196734309,L, + 250175022500,0.005595170892775,L, + 252099445750,0.005268725100905,L, + 254023869000,0.004951775539666,L, + 255948292250,0.004644275177270,L, + 257872715500,0.004346197005361,L, + 259797138750,0.004057491198182,L, + 261721562000,0.003778120269999,L, + 263645985250,0.003508079797029,L, + 265570408500,0.003247327869758,L, + 267494831750,0.002995859831572,L, + 269419255000,0.002753669163212,L, + 271343678250,0.002520769601688,L, + 273268101500,0.002297163009644,L, + 275192524750,0.002082871273160,L, + 277116948000,0.001877963542938,L, + 279041371250,0.001682449132204,L, + 280965794500,0.001496408018284,L, + 282890217750,0.001319905743003,L, + 284814641000,0.001153077813797,L, + 286739064250,0.000996021553874,L, + 288663487500,0.000848902389407,L, + 290587910750,0.000711928994861,L, + 292512334000,0.000585284025874,L, + 294436757250,0.000469312100904,L, + 296361180500,0.000364359497325,L, + 298285603750,0.000270944088697,L, + 300210027000,0.000189643353224,L, + 302134450250,0.000121410928841,L, + 304058873500,0.000067595392466,L, + 305983296750,0.000030472874641,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420096755028,L, + 344471761750,0.156420096755028,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.464049011468887 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.464049011468887,L, + 1924423250,0.464402824640274,L, + 3848846500,0.465469717979431,L, + 5773269750,0.467255830764771,L, + 7697693000,0.469764351844788,L, + 9622116250,0.472994595766068,L, + 11546539500,0.476941674947739,L, + 13470962750,0.481595903635025,L, + 15395386000,0.486941844224930,L, + 17319809250,0.492958247661591,L, + 19244232500,0.499617159366608,L, + 21168655750,0.506883680820465,L, + 23093079000,0.514715433120728,L, + 25017502250,0.523062705993652,L, + 26941925500,0.531868457794189,L, + 28866348750,0.541068792343140,L, + 30790772000,0.550593256950378,L, + 32715195250,0.560366094112396,L, + 34639618500,0.570306956768036,L, + 36564041750,0.580332636833191,L, + 38488465000,0.590358257293701,L, + 40412888250,0.600299060344696,L, + 42337311500,0.610071957111359,L, + 44261734750,0.619596362113953,L, + 46186158000,0.628796756267548,L, + 48110581250,0.637602567672729,L, + 50035004500,0.645949840545654,L, + 51959427750,0.653781533241272,L, + 53883851000,0.661048054695129,L, + 55808274250,0.667706906795502,L, + 57732697500,0.673723340034485,L, + 59657120750,0.679069280624390,L, + 61581544000,0.683723568916321,L, + 63505967250,0.687670707702637,L, + 65430390500,0.690900862216949,L, + 67354813750,0.693409383296967,L, + 69279237000,0.695195555686951,L, + 71203660250,0.696262478828430,L, + 73128083500,0.696616291999817,L, + 75052506750,0.693823158740997,L, + 76976930000,0.685374081134796,L, + 78901353250,0.671225249767303,L, + 80825776500,0.651434898376465,L, + 82750199750,0.626191198825836,L, + 84674623000,0.595839381217957,L, + 86599046250,0.560902416706085,L, + 88523469500,0.522091805934906,L, + 90447892750,0.480299681425095,L, + 92372316000,0.436571359634399,L, + 94296739250,0.392056107521057,L, + 96221162500,0.347943156957626,L, + 98145585750,0.305391132831573,L, + 100070009000,0.265462517738342,L, + 101994432250,0.229073464870453,L, + 103918855500,0.196963846683502,L, + 105843278750,0.169687852263451,L, + 107767702000,0.147622153162956,L, + 109692125250,0.130985915660858,L, + 111616548500,0.119866311550140,L, + 113540971750,0.114246279001236,L, + 115465395000,0.111385837197304,L, + 117389818250,0.108596451580524,L, + 119314241500,0.105875231325626,L, + 121238664750,0.103219568729401,L, + 123163088000,0.100626982748508,L, + 125087511250,0.098095141351223,L, + 127011934500,0.095621883869171,L, + 128936357750,0.093205161392689,L, + 130860781000,0.090843066573143,L, + 132785204250,0.088533796370029,L, + 134709627500,0.086275614798069,L, + 136634050750,0.084066934883595,L, + 138558474000,0.081906214356422,L, + 140482897250,0.079792037606239,L, + 142407320500,0.077723026275635,L, + 144331743750,0.075697854161263,L, + 146256167000,0.073715321719646,L, + 148180590250,0.071774244308472,L, + 150105013500,0.069873519241810,L, + 152029436750,0.068012058734894,L, + 153953860000,0.066188849508762,L, + 155878283250,0.064402967691422,L, + 157802706500,0.062653452157974,L, + 159727129750,0.060939431190491,L, + 161651553000,0.059260059148073,L, + 163575976250,0.057614546269178,L, + 165500399500,0.056002099066973,L, + 167424822750,0.054421994835138,L, + 169349246000,0.052873514592648,L, + 171273669250,0.051355991512537,L, + 173198092500,0.049868755042553,L, + 175122515750,0.048411197960377,L, + 177046939000,0.046982709318399,L, + 178971362250,0.045582722872496,L, + 180895785500,0.044210661202669,L, + 182820208750,0.042866010218859,L, + 184744632000,0.041548255831003,L, + 186669055250,0.040256895124912,L, + 188593478500,0.038991451263428,L, + 190517901750,0.037751484662294,L, + 192442325000,0.036536525934935,L, + 194366748250,0.035346180200577,L, + 196291171500,0.034180026501417,L, + 198215594750,0.033037655055523,L, + 200140018000,0.031918715685606,L, + 202064441250,0.030822815373540,L, + 203988864500,0.029749618843198,L, + 205913287750,0.028698775917292,L, + 207837711000,0.027669964358211,L, + 209762134250,0.026662852615118,L, + 211686557500,0.025677166879177,L, + 213610980750,0.024712586775422,L, + 215535404000,0.023768849670887,L, + 217459827250,0.022845659404993,L, + 219384250500,0.021942779421806,L, + 221308673750,0.021059937775135,L, + 223233097000,0.020196910947561,L, + 225157520250,0.019353449344635,L, + 227081943500,0.018529340624809,L, + 229006366750,0.017724366858602,L, + 230930790000,0.016938325017691,L, + 232855213250,0.016171019524336,L, + 234779636500,0.015422251075506,L, + 236704059750,0.014691854827106,L, + 238628483000,0.013979657553136,L, + 240552906250,0.013285490684211,L, + 242477329500,0.012609185650945,L, + 244401752750,0.011950651183724,L, + 246326176000,0.011309702880681,L, + 248250599250,0.010686241090298,L, + 250175022500,0.010080108419061,L, + 252099445750,0.009491251781583,L, + 254023869000,0.008919534273446,L, + 255948292250,0.008364863693714,L, + 257872715500,0.007827192544937,L, + 259797138750,0.007306413725019,L, + 261721562000,0.006802480667830,L, + 263645985250,0.006315363571048,L, + 265570408500,0.005845021456480,L, + 267494831750,0.005391402170062,L, + 269419255000,0.004954552277923,L, + 271343678250,0.004534445237368,L, + 273268101500,0.004131082445383,L, + 275192524750,0.003744557267055,L, + 277116948000,0.003374933963642,L, + 279041371250,0.003022246062756,L, + 280965794500,0.002686660736799,L, + 282890217750,0.002368312329054,L, + 284814641000,0.002067398047075,L, + 286739064250,0.001784086227417,L, + 288663487500,0.001518689095974,L, + 290587910750,0.001271605375223,L, + 292512334000,0.001043181866407,L, + 294436757250,0.000833991856780,L, + 296361180500,0.000644661486149,L, + 298285603750,0.000476144254208,L, + 300210027000,0.000329509377480,L, + 302134450250,0.000206448123208,L, + 304058873500,0.000109314918518,L, + 305983296750,0.000042423609557,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420141458511,L, + 344471761750,0.156420141458511,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_024" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.026851728558540 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,-0.026851728558540,L, + 1924423250,-0.026951685547829,L, + 3848846500,-0.027263119816780,L, + 5773269750,-0.027791582047939,L, + 7697693000,-0.028524123132229,L, + 9622116250,-0.029422029852867,L, + 11546539500,-0.030421756207943,L, + 13470962750,-0.031449958682060,L, + 15395386000,-0.032440364360809,L, + 17319809250,-0.033346280455589,L, + 19244232500,-0.034140482544899,L, + 21168655750,-0.034876227378845,L, + 23093079000,-0.035615973174572,L, + 25017502250,-0.036359377205372,L, + 26941925500,-0.037105686962605,L, + 28866348750,-0.037855133414268,L, + 30790772000,-0.038607008755207,L, + 32715195250,-0.039361149072647,L, + 34639618500,-0.040117323398590,L, + 36564041750,-0.040875397622585,L, + 38488465000,-0.041635192930698,L, + 40412888250,-0.042396113276482,L, + 42337311500,-0.043158970773220,L, + 44261734750,-0.043922178447247,L, + 46186158000,-0.044687069952488,L, + 48110581250,-0.045452557504177,L, + 50035004500,-0.046218037605286,L, + 51959427750,-0.046984814107418,L, + 53883851000,-0.047751344740391,L, + 55808274250,-0.048517972230911,L, + 57732697500,-0.049284569919109,L, + 59657120750,-0.050051473081112,L, + 61581544000,-0.050817593932152,L, + 63505967250,-0.051582746207714,L, + 65430390500,-0.052347257733345,L, + 67354813750,-0.053110942244530,L, + 69279237000,-0.053873077034950,L, + 71203660250,-0.054633431136608,L, + 73128083500,-0.055392190814018,L, + 75052506750,-0.056148052215576,L, + 76976930000,-0.056900627911091,L, + 78901353250,-0.057649843394756,L, + 80825776500,-0.058394111692905,L, + 82750199750,-0.059133060276508,L, + 84674623000,-0.059864565730095,L, + 86599046250,-0.060586512088776,L, + 88523469500,-0.061295919120312,L, + 90447892750,-0.061987191438675,L, + 92372316000,-0.062650069594383,L, + 94296739250,-0.063259959220886,L, + 96221162500,-0.063678599894047,L, + 167424822750,-0.063678599894047,L, + 169349246000,-0.063678614795208,L, + 171273669250,0.039614126086235,L, + 344471761750,0.039614126086235,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062056303024292 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,-0.062056303024292,L, + 1924423250,-0.062125205993652,L, + 3848846500,-0.062338367104530,L, + 5773269750,-0.062701210379601,L, + 7697693000,-0.063204631209373,L, + 9622116250,-0.063821047544479,L, + 11546539500,-0.064507260918617,L, + 13470962750,-0.065213307738304,L, + 15395386000,-0.065893135964870,L, + 17319809250,-0.066515207290649,L, + 19244232500,-0.067060425877571,L, + 21168655750,-0.067565508186817,L, + 23093079000,-0.068073421716690,L, + 25017502250,-0.068583749234676,L, + 26941925500,-0.069096423685551,L, + 28866348750,-0.069610677659512,L, + 30790772000,-0.070126965641975,L, + 32715195250,-0.070644848048687,L, + 34639618500,-0.071164064109325,L, + 36564041750,-0.071684449911118,L, + 38488465000,-0.072206050157547,L, + 40412888250,-0.072728715837002,L, + 42337311500,-0.073252283036709,L, + 44261734750,-0.073776572942734,L, + 46186158000,-0.074301235377789,L, + 48110581250,-0.074826583266258,L, + 50035004500,-0.075352720916271,L, + 51959427750,-0.075878538191319,L, + 53883851000,-0.076405100524426,L, + 55808274250,-0.076931543648243,L, + 57732697500,-0.077457949519157,L, + 59657120750,-0.077984154224396,L, + 61581544000,-0.078510001301765,L, + 63505967250,-0.079035758972168,L, + 65430390500,-0.079560771584511,L, + 67354813750,-0.080085054039955,L, + 69279237000,-0.080608338117599,L, + 71203660250,-0.081130586564541,L, + 73128083500,-0.081651225686073,L, + 75052506750,-0.082170076668262,L, + 76976930000,-0.082686692476273,L, + 78901353250,-0.083201155066490,L, + 80825776500,-0.083712019026279,L, + 82750199750,-0.084219470620155,L, + 84674623000,-0.084721460938454,L, + 86599046250,-0.085217252373695,L, + 88523469500,-0.085704438388348,L, + 90447892750,-0.086179129779339,L, + 92372316000,-0.086634323000908,L, + 94296739250,-0.087052553892136,L, + 96221162500,-0.087339945137501,L, + 167424822750,-0.087339945137501,L, + 169349246000,-0.087339967489243,L, + 171273669250,-0.016423404216766,L, + 344471761750,-0.016423404216766,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.934078574180603 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,0.934078574180603,L, + 1924423250,0.934932589530945,L, + 3848846500,0.937636494636536,L, + 5773269750,0.942346215248108,L, + 7697693000,0.949075341224670,L, + 9622116250,0.957623839378357,L, + 11546539500,0.967566609382629,L, + 13470962750,0.978338360786438,L, + 15395386000,0.989373326301575,L, + 17319809250,1.000218272209167,L, + 19244232500,1.010571360588074,L, + 21168655750,1.020764946937561,L, + 23093079000,1.031244635581970,L, + 25017502250,1.041984200477600,L, + 26941925500,1.052961945533752,L, + 28866348750,1.064158082008362,L, + 30790772000,1.075556159019470,L, + 32715195250,1.087140440940857,L, + 34639618500,1.098897576332092,L, + 36564041750,1.110815167427063,L, + 38488465000,1.122882485389709,L, + 40412888250,1.135089516639709,L, + 42337311500,1.147426962852478,L, + 44261734750,1.159886240959167,L, + 46186158000,1.172459483146667,L, + 48110581250,1.185139060020447,L, + 50035004500,1.197918534278870,L, + 51959427750,1.210790753364563,L, + 53883851000,1.223749756813049,L, + 55808274250,1.236788868904114,L, + 57732697500,1.249902844429016,L, + 59657120750,1.263085007667542,L, + 61581544000,1.276330113410950,L, + 63505967250,1.289631724357605,L, + 65430390500,1.302984118461609,L, + 67354813750,1.316380381584167,L, + 69279237000,1.329813838005066,L, + 71203660250,1.343277096748352,L, + 73128083500,1.356762051582336,L, + 75052506750,1.370258688926697,L, + 76976930000,1.383756518363953,L, + 78901353250,1.397241711616516,L, + 80825776500,1.410698533058167,L, + 82750199750,1.424105763435364,L, + 84674623000,1.437435269355774,L, + 86599046250,1.450646519660950,L, + 88523469500,1.463680148124695,L, + 90447892750,1.476435542106628,L, + 92372316000,1.488722205162048,L, + 94296739250,1.500070929527283,L, + 96221162500,1.507912993431091,L, + 98145585750,0.101423740386963,L, + 169349246000,0.101423740386963,L, + 171273669250,0.692347168922424,L, + 344471761750,0.692347168922424,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 31.672478520990307 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,31.672478520990307,L, + 1924423250,31.669756690606061,L, + 3848846500,31.661290671129841,L, + 5773269750,31.646916538021568,L, + 7697693000,31.626975800739746,L, + 9622116250,31.602547629173230,L, + 11546539500,31.575346400803692,L, + 13470962750,31.547366530868775,L, + 15395386000,31.520411189309360,L, + 17319809250,31.495767866783989,L, + 19244232500,31.474160563344686,L, + 21168655750,31.454137863792820,L, + 23093079000,31.434016126497994,L, + 25017502250,31.413788521271030,L, + 26941925500,31.393475538679439,L, + 28866348750,31.373090839101568,L, + 30790772000,31.352634422537406,L, + 32715195250,31.332109704081549,L, + 34639618500,31.311530344112331,L, + 36564041750,31.290906587913508,L, + 38488465000,31.270231605295908,L, + 40412888250,31.249522471732458,L, + 42337311500,31.228768941939403,L, + 44261734750,31.208001751768009,L, + 46186158000,31.187193580461596,L, + 48110581250,31.166378578966011,L, + 50035004500,31.145539671808333,L, + 51959427750,31.124676858988561,L, + 53883851000,31.103827706547126,L, + 55808274250,31.082958063538182,L, + 57732697500,31.062095250718407,L, + 59657120750,31.041239268087804,L, + 61581544000,31.020390115646371,L, + 63505967250,30.999571699056201,L, + 65430390500,30.978760112655202,L, + 67354813750,30.957979262105468,L, + 69279237000,30.937242807785339,L, + 71203660250,30.916554164789400,L, + 73128083500,30.895920163306823,L, + 75052506750,30.875354463715944,L, + 76976930000,30.854874141489688,L, + 78901353250,30.834489441911813,L, + 80825776500,30.814244761211928,L, + 82750199750,30.794133269200852,L, + 84674623000,30.774230097959464,L, + 86599046250,30.754579643717367,L, + 88523469500,30.735280944217521,L, + 90447892750,30.716470603243334,L, + 92372316000,30.698428658550771,L, + 94296739250,30.681851789435175,L, + 96221162500,30.670459033899608,L, + 98145585750,30.670462448994193,L, + 169349246000,30.670462448994193,L, + 171273669250,33.480952103761588,L, + 344471761750,33.480952103761588,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 49.355209904724269 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,49.355209904724269,L, + 1924423250,49.477302951232659,L, + 3848846500,49.856696053964228,L, + 5773269750,50.501472741801670,L, + 7697693000,51.395568409817152,L, + 9622116250,52.490932677199694,L, + 11546539500,53.710582481814193,L, + 13470962750,54.965011609682350,L, + 15395386000,56.173630658787289,L, + 17319809250,57.278710870264163,L, + 19244232500,58.247539053083230,L, + 21168655750,59.145217155318377,L, + 23093079000,60.047737861675053,L, + 25017502250,60.954575247587172,L, + 26941925500,61.865292180947854,L, + 28866348750,62.779485680596068,L, + 30790772000,63.696807406884140,L, + 32715195250,64.616936340921086,L, + 34639618500,65.539585614761762,L, + 36564041750,66.464495681217713,L, + 38488465000,67.391400162911296,L, + 40412888250,68.320087323978257,L, + 42337311500,69.250324937986804,L, + 44261734750,70.181908099261847,L, + 46186158000,71.114638732317445,L, + 48110581250,72.048318761667687,L, + 50035004500,72.982743281637440,L, + 51959427750,73.917741537497491,L, + 53883851000,74.853088133005201,L, + 55808274250,75.788584992674657,L, + 57732697500,76.724040871209084,L, + 59657120750,77.659237202555062,L, + 61581544000,78.593914439524113,L, + 63505967250,79.527840355684461,L, + 65430390500,80.460734913280135,L, + 67354813750,81.392283923609327,L, + 69279237000,82.322145877213529,L, + 71203660250,83.249938283499219,L, + 73128083500,84.175183029224499,L, + 75052506750,85.097326869066592,L, + 76976930000,86.015734595432704,L, + 78901353250,86.929566095054909,L, + 80825776500,87.837790009368533,L, + 82750199750,88.739047130728764,L, + 84674623000,89.631493308059689,L, + 86599046250,90.512498918530852,L, + 88523469500,91.378054641099482,L, + 90447892750,92.221576173405666,L, + 92372316000,93.030468646619951,L, + 94296739250,93.773866435883065,L, + 96221162500,94.284634812205056,L, + 169349246000,94.284634812205056,L, + 171273669250,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.829353478811785 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,-0.829353478811785,L, + 1924423250,-0.832997384733982,L, + 3848846500,-0.844472315982998,L, + 5773269750,-0.864314495769533,L, + 7697693000,-0.892433210643671,L, + 9622116250,-0.927806600272558,L, + 11546539500,-0.968471198713228,L, + 13470962750,-1.011948554431470,L, + 15395386000,-1.055820140130869,L, + 17319809250,-1.098221954498247,L, + 19244232500,-1.137953805230389,L, + 21168655750,-1.176579378760402,L, + 23093079000,-1.216114968275611,L, + 25017502250,-1.256473061977278,L, + 26941925500,-1.297587919294639,L, + 28866348750,-1.339392412274760,L, + 30790772000,-1.381833927116689,L, + 32715195250,-1.424863905444296,L, + 34639618500,-1.468434749376802,L, + 36564041750,-1.512518177662176,L, + 38488465000,-1.557067019306463,L, + 40412888250,-1.602057261925860,L, + 42337311500,-1.647450378984582,L, + 44261734750,-1.693225453028296,L, + 46186158000,-1.739354096083263,L, + 48110581250,-1.785813256261034,L, + 50035004500,-1.832581162333631,L, + 51959427750,-1.879635402742839,L, + 53883851000,-1.926955166756031,L, + 55808274250,-1.974518896588639,L, + 57732697500,-2.022307809220445,L, + 59657120750,-2.070300560310294,L, + 61581544000,-2.118480714715495,L, + 63505967250,-2.166824793660776,L, + 65430390500,-2.215308037710396,L, + 67354813750,-2.263919988137187,L, + 69279237000,-2.312627561212359,L, + 71203660250,-2.361405997500170,L, + 73128083500,-2.410226055253235,L, + 75052506750,-2.459056785176879,L, + 76976930000,-2.507858913683373,L, + 78901353250,-2.556582281571000,L, + 80825776500,-2.605172887656636,L, + 82750199750,-2.653553251981883,L, + 84674623000,-2.701621562039424,L, + 86599046250,-2.749229047771403,L, + 88523469500,-2.796168028738367,L, + 90447892750,-2.842075010810426,L, + 92372316000,-2.886263773419406,L, + 94296739250,-2.927042777528674,L, + 96221162500,-2.955201086155657,L, + 98145585750,-2.955197457617661,L, + 167424822750,-2.955197457617661,L, + 169349246000,-2.955200872712246,L, + 171273669250,0.259471602811992,L, + 344471761750,0.259471602811992,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.428362101316452 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.428362101316452,L, + 1924423250,0.428899466991425,L, + 3848846500,0.430516600608826,L, + 5773269750,0.433145970106125,L, + 7697693000,0.436585068702698,L, + 9622116250,0.440480977296829,L, + 11546539500,0.444376945495605,L, + 13470962750,0.447815984487534,L, + 15395386000,0.450445413589478,L, + 17319809250,0.452062487602234,L, + 19244232500,0.452599883079529,L, + 21168655750,0.452372878789902,L, + 23093079000,0.451713770627975,L, + 25017502250,0.450651943683624,L, + 26941925500,0.449211984872818,L, + 28866348750,0.447414904832840,L, + 30790772000,0.445278704166412,L, + 32715195250,0.442818790674210,L, + 34639618500,0.440048128366470,L, + 36564041750,0.436977833509445,L, + 38488465000,0.433617234230042,L, + 40412888250,0.429974049329758,L, + 42337311500,0.426054537296295,L, + 44261734750,0.421863585710526,L, + 46186158000,0.417404830455780,L, + 48110581250,0.412680655717850,L, + 50035004500,0.407692193984985,L, + 51959427750,0.402439296245575,L, + 53883851000,0.396920740604401,L, + 55808274250,0.391133695840836,L, + 57732697500,0.385074079036713,L, + 59657120750,0.378736227750778,L, + 61581544000,0.372112780809402,L, + 63505967250,0.365194231271744,L, + 65430390500,0.357968926429749,L, + 67354813750,0.350422471761703,L, + 69279237000,0.342537224292755,L, + 71203660250,0.334291487932205,L, + 73128083500,0.325658679008484,L, + 75052506750,0.316605746746063,L, + 76976930000,0.307091385126114,L, + 78901353250,0.297062844038010,L, + 80825776500,0.286452144384384,L, + 82750199750,0.275168448686600,L, + 84674623000,0.263087481260300,L, + 86599046250,0.250030964612961,L, + 88523469500,0.235727399587631,L, + 90447892750,0.219726890325546,L, + 92372316000,0.201174840331078,L, + 94296739250,0.177984789013863,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380201451,L, + 171273669250,0.162417262792587,L, + 344471761750,0.162417262792587,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.754271447658539 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271447658539,L, + 1924423250,0.754455566406250,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087826728821,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934472084045,L, + 15395386000,0.761835098266602,L, + 17319809250,0.762389004230499,L, + 19244232500,0.762572944164276,L, + 21168655750,0.761945605278015,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314971923828,L, + 28866348750,0.748457908630371,L, + 30790772000,0.742718994617462,L, + 32715195250,0.736150920391083,L, + 34639618500,0.728799879550934,L, + 36564041750,0.720706462860107,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309975624084,L, + 44261734750,0.681565821170807,L, + 46186158000,0.670221090316772,L, + 48110581250,0.658294379711151,L, + 50035004500,0.645802140235901,L, + 51959427750,0.632758319377899,L, + 53883851000,0.619174361228943,L, + 55808274250,0.605059623718262,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591233730316,L, + 63505967250,0.543401956558228,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695612668991,L, + 71203660250,0.473382711410522,L, + 73128083500,0.454504817724228,L, + 75052506750,0.435037285089493,L, + 76976930000,0.414948284626007,L, + 78901353250,0.394194751977921,L, + 80825776500,0.372720092535019,L, + 82750199750,0.350447148084641,L, + 84674623000,0.327268719673157,L, + 86599046250,0.303029805421829,L, + 88523469500,0.277493596076965,L, + 90447892750,0.250267505645752,L, + 92372316000,0.220607563853264,L, + 94296739250,0.186706766486168,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370066043,L, + 167424822750,0.000075370066043,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417247891426,L, + 344471761750,0.162417247891426,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.754271566867828 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271566867828,L, + 1924423250,0.754455626010895,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087886333466,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934531688690,L, + 15395386000,0.761835038661957,L, + 17319809250,0.762389004230499,L, + 19244232500,0.762572944164276,L, + 21168655750,0.761945545673370,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314912319183,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742719054222107,L, + 32715195250,0.736150860786438,L, + 34639618500,0.728799819946289,L, + 36564041750,0.720706403255463,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309916019440,L, + 44261734750,0.681565940380096,L, + 46186158000,0.670220971107483,L, + 48110581250,0.658294439315796,L, + 50035004500,0.645802199840546,L, + 51959427750,0.632758259773254,L, + 53883851000,0.619174361228943,L, + 55808274250,0.605059564113617,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591174125671,L, + 63505967250,0.543402016162872,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695553064346,L, + 71203660250,0.473382741212845,L, + 73128083500,0.454504758119583,L, + 75052506750,0.435037314891815,L, + 76976930000,0.414948254823685,L, + 78901353250,0.394194781780243,L, + 80825776500,0.372720122337341,L, + 82750199750,0.350447148084641,L, + 84674623000,0.327268689870834,L, + 86599046250,0.303029745817184,L, + 88523469500,0.277493566274643,L, + 90447892750,0.250267505645752,L, + 92372316000,0.220607578754425,L, + 94296739250,0.186706781387329,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370066043,L, + 167424822750,0.000075370066043,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417247891426,L, + 344471761750,0.162417247891426,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_023" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792807728052 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,0.016792807728052,L, + 1924423250,0.016792993992567,L, + 3848846500,0.016793012619019,L, + 5773269750,0.016792748123407,L, + 7697693000,0.016793023794889,L, + 9622116250,0.016792856156826,L, + 11546539500,0.016792591661215,L, + 13470962750,0.016793023794889,L, + 15395386000,0.016792625188828,L, + 17319809250,0.016792409121990,L, + 19244232500,0.016792606562376,L, + 21168655750,0.016792811453342,L, + 23093079000,0.016792848706245,L, + 25017502250,0.016792848706245,L, + 26941925500,0.016792394220829,L, + 28866348750,0.016792871057987,L, + 30790772000,0.016792718321085,L, + 32715195250,0.016792695969343,L, + 34639618500,0.016793079674244,L, + 36564041750,0.016792707145214,L, + 38488465000,0.016792893409729,L, + 40412888250,0.016792654991150,L, + 42337311500,0.016792610287666,L, + 44261734750,0.016792856156826,L, + 46186158000,0.016792561858892,L, + 48110581250,0.016792971640825,L, + 50035004500,0.016792707145214,L, + 51959427750,0.016792569309473,L, + 53883851000,0.016792811453342,L, + 55808274250,0.016792889684439,L, + 57732697500,0.016792468726635,L, + 59657120750,0.016792498528957,L, + 61581544000,0.016792923212051,L, + 63505967250,0.016792681068182,L, + 65430390500,0.016792859882116,L, + 67354813750,0.016793034970760,L, + 69279237000,0.016792986541986,L, + 71203660250,0.016793020069599,L, + 73128083500,0.016792915761471,L, + 75052506750,0.016793072223663,L, + 76976930000,0.016792632639408,L, + 78901353250,0.016792960464954,L, + 80825776500,0.016792792826891,L, + 82750199750,0.016792885959148,L, + 84674623000,0.016792578622699,L, + 86599046250,0.016792582347989,L, + 88523469500,0.016792645677924,L, + 90447892750,0.016792865470052,L, + 92372316000,0.016792638227344,L, + 94296739250,0.016792649403214,L, + 96221162500,0.016792833805084,L, + 98145585750,0.016792844980955,L, + 100070009000,0.016792859882116,L, + 101994432250,0.016792623326182,L, + 103918855500,0.016792805865407,L, + 105843278750,0.016792871057987,L, + 107767702000,0.016792420297861,L, + 109692125250,0.016792919486761,L, + 111616548500,0.016793040558696,L, + 113540971750,0.016792669892311,L, + 307907720000,0.016792669892311,L, + 309832143250,0.016792789101601,L, + 344471761750,0.016792789101601,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.371513426303864 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,-0.371513426303864,L, + 1924423250,-0.371575921773911,L, + 3848846500,-0.371753334999084,L, + 5773269750,-0.372033417224884,L, + 7697693000,-0.372406154870987,L, + 9622116250,-0.372862547636032,L, + 11546539500,-0.373395442962646,L, + 13470962750,-0.373998314142227,L, + 15395386000,-0.374665319919586,L, + 17319809250,-0.375391930341721,L, + 19244232500,-0.376173555850983,L, + 21168655750,-0.377006441354752,L, + 23093079000,-0.377886921167374,L, + 25017502250,-0.378811538219452,L, + 26941925500,-0.379777789115906,L, + 28866348750,-0.380782663822174,L, + 30790772000,-0.381823450326920,L, + 32715195250,-0.382897794246674,L, + 34639618500,-0.384003251791000,L, + 36564041750,-0.385136812925339,L, + 38488465000,-0.386296659708023,L, + 40412888250,-0.387479245662689,L, + 42337311500,-0.388682067394257,L, + 44261734750,-0.389900416135788,L, + 46186158000,-0.391129702329636,L, + 48110581250,-0.392362117767334,L, + 50035004500,-0.393586426973343,L, + 51959427750,-0.394780576229095,L, + 53883851000,-0.395891934633255,L, + 55808274250,-0.396660208702087,L, + 57732697500,-0.396696925163269,L, + 59657120750,-0.395504742860794,L, + 61581544000,-0.393703579902649,L, + 63505967250,-0.391752362251282,L, + 65430390500,-0.389744222164154,L, + 67354813750,-0.387717932462692,L, + 69279237000,-0.385693728923798,L, + 71203660250,-0.383684962987900,L, + 73128083500,-0.381700694561005,L, + 75052506750,-0.379747509956360,L, + 76976930000,-0.377831459045410,L, + 78901353250,-0.375956863164902,L, + 80825776500,-0.374128639698029,L, + 82750199750,-0.372351378202438,L, + 84674623000,-0.370628744363785,L, + 86599046250,-0.368965089321136,L, + 88523469500,-0.367365330457687,L, + 90447892750,-0.365833550691605,L, + 92372316000,-0.364375054836273,L, + 94296739250,-0.362995028495789,L, + 96221162500,-0.361699551343918,L, + 98145585750,-0.360494941473007,L, + 100070009000,-0.359388768672943,L, + 101994432250,-0.358389317989349,L, + 103918855500,-0.357505470514297,L, + 105843278750,-0.356748431921005,L, + 107767702000,-0.356130301952362,L, + 109692125250,-0.355665504932404,L, + 111616548500,-0.355371117591858,L, + 113540971750,-0.355267643928528,L, + 307907720000,-0.355267643928528,L, + 309832143250,-0.355304032564163,L, + 344471761750,-0.355304032564163,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608140945435 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,0.093608140945435,L, + 1924423250,0.093608736991882,L, + 3848846500,0.093612194061279,L, + 5773269750,0.093621134757996,L, + 7697693000,0.093638300895691,L, + 9622116250,0.093665957450867,L, + 11546539500,0.093706369400024,L, + 13470962750,0.093761682510376,L, + 15395386000,0.093834280967712,L, + 17319809250,0.093926548957825,L, + 19244232500,0.094041466712952,L, + 21168655750,0.094181418418884,L, + 23093079000,0.094349622726440,L, + 25017502250,0.094549298286438,L, + 26941925500,0.094784379005432,L, + 28866348750,0.095059037208557,L, + 30790772000,0.095378637313843,L, + 32715195250,0.095748901367188,L, + 34639618500,0.096176862716675,L, + 36564041750,0.096671462059021,L, + 38488465000,0.097243309020996,L, + 40412888250,0.097905874252319,L, + 42337311500,0.098677635192871,L, + 44261734750,0.099582910537720,L, + 46186158000,0.100656509399414,L, + 48110581250,0.101950883865356,L, + 50035004500,0.103552699089050,L, + 51959427750,0.105624318122864,L, + 53883851000,0.108554840087891,L, + 55808274250,0.114208459854126,L, + 57732697500,0.672039866447449,L, + 59657120750,0.679893374443054,L, + 65430390500,0.703453183174133,L, + 67354813750,0.711306691169739,L, + 73128083500,0.734866499900818,L, + 75052506750,0.742720007896423,L, + 80825776500,0.766279816627502,L, + 82750199750,0.774133324623108,L, + 84674623000,0.781986594200134,L, + 86599046250,0.794582009315491,L, + 88523469500,0.809109330177307,L, + 90447892750,0.825344443321228,L, + 92372316000,0.842669129371643,L, + 94296739250,0.860135197639465,L, + 96221162500,0.876772046089172,L, + 98145585750,0.891909718513489,L, + 100070009000,0.905265450477600,L, + 101994432250,0.917443871498108,L, + 103918855500,0.928918480873108,L, + 105843278750,0.939439177513123,L, + 107767702000,0.948849081993103,L, + 109692125250,0.957195401191711,L, + 111616548500,0.964709639549255,L, + 113540971750,0.971674799919128,L, + 115465395000,0.978411078453064,L, + 117389818250,0.985077261924744,L, + 119314241500,0.991678357124329,L, + 121238664750,0.998218417167664,L, + 123163088000,1.004701018333435,L, + 125087511250,1.011128306388855,L, + 127011934500,1.017501950263977,L, + 128936357750,1.023823380470276,L, + 130860781000,1.030094265937805,L, + 132785204250,1.036315083503723,L, + 134709627500,1.042487263679504,L, + 136634050750,1.048611283302307,L, + 138558474000,1.054687619209290,L, + 140482897250,1.060717225074768,L, + 142407320500,1.066700100898743,L, + 144331743750,1.072636723518372,L, + 146256167000,1.078527569770813,L, + 148180590250,1.084372639656067,L, + 150105013500,1.090172648429871,L, + 152029436750,1.095926880836487,L, + 153953860000,1.101636052131653,L, + 155878283250,1.107300162315369,L, + 157802706500,1.112919449806213,L, + 159727129750,1.118493437767029,L, + 161651553000,1.124022364616394,L, + 163575976250,1.129506230354309,L, + 165500399500,1.134945034980774,L, + 167424822750,1.140338540077209,L, + 169349246000,1.145686745643616,L, + 171273669250,1.150989413261414,L, + 173198092500,1.156246304512024,L, + 175122515750,1.161457896232605,L, + 177046939000,1.166622996330261,L, + 178971362250,1.171741843223572,L, + 180895785500,1.176814436912537,L, + 182820208750,1.181840538978577,L, + 184744632000,1.186819672584534,L, + 186669055250,1.191751360893250,L, + 188593478500,1.196635842323303,L, + 190517901750,1.201472163200378,L, + 192442325000,1.206260561943054,L, + 194366748250,1.211000561714172,L, + 196291171500,1.215691685676575,L, + 198215594750,1.220333695411682,L, + 200140018000,1.224925637245178,L, + 202064441250,1.229468226432800,L, + 203988864500,1.233960270881653,L, + 205913287750,1.238401293754578,L, + 207837711000,1.242791056632996,L, + 209762134250,1.247129082679749,L, + 211686557500,1.251414656639099,L, + 213610980750,1.255647778511047,L, + 215535404000,1.259827494621277,L, + 217459827250,1.263953328132629,L, + 219384250500,1.268025040626526,L, + 221308673750,1.272041440010071,L, + 223233097000,1.276002764701843,L, + 225157520250,1.279907584190369,L, + 227081943500,1.283755660057068,L, + 229006366750,1.287546515464783,L, + 230930790000,1.291278958320618,L, + 232855213250,1.294953227043152,L, + 234779636500,1.298567414283752,L, + 236704059750,1.302121520042419,L, + 238628483000,1.305614590644836,L, + 240552906250,1.309046149253845,L, + 242477329500,1.312415003776550,L, + 244401752750,1.315720438957214,L, + 246326176000,1.318961739540100,L, + 248250599250,1.322137713432312,L, + 250175022500,1.325247406959534,L, + 252099445750,1.328290820121765,L, + 254023869000,1.331265568733215,L, + 255948292250,1.334171414375305,L, + 257872715500,1.337007403373718,L, + 259797138750,1.339772582054138,L, + 261721562000,1.342465519905090,L, + 263645985250,1.345085024833679,L, + 265570408500,1.347630143165588,L, + 267494831750,1.350099682807922,L, + 269419255000,1.352492213249207,L, + 271343678250,1.354806303977966,L, + 273268101500,1.357041239738464,L, + 275192524750,1.359195113182068,L, + 277116948000,1.361266493797302,L, + 279041371250,1.363254189491272,L, + 280965794500,1.365156769752502,L, + 282890217750,1.366972088813782,L, + 284814641000,1.368698954582214,L, + 286739064250,1.370335936546326,L, + 288663487500,1.371880412101746,L, + 290587910750,1.373330950737000,L, + 292512334000,1.374685883522034,L, + 294436757250,1.375943303108215,L, + 296361180500,1.377100825309753,L, + 298285603750,1.378156542778015,L, + 300210027000,1.379108309745789,L, + 302134450250,1.379953503608704,L, + 304058873500,1.380690217018127,L, + 305983296750,1.381315350532532,L, + 307907720000,1.381826996803284,L, + 309832143250,0.093608140945435,L, + 344471761750,0.093608140945435,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 11.241471114317566 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,11.241471114317566,L, + 1924423250,11.213424650038242,L, + 3848846500,11.133562663167982,L, + 5773269750,11.007449196559401,L, + 7697693000,10.839727071300809,L, + 9622116250,10.634315108428494,L, + 11546539500,10.394570345919513,L, + 13470962750,10.123388783981948,L, + 15395386000,9.823301861476931,L, + 17319809250,9.496531097432005,L, + 19244232500,9.145062369348347,L, + 21168655750,8.770662988673697,L, + 23093079000,8.374937196089359,L, + 25017502250,7.959356897361469,L, + 26941925500,7.525268493530164,L, + 28866348750,7.073941119120594,L, + 30790772000,6.606576033653035,L, + 32715195250,6.124331381078624,L, + 34639618500,5.628354633177921,L, + 36564041750,5.119802226354774,L, + 38488465000,4.599899325791552,L, + 40412888250,4.069974830168642,L, + 42337311500,3.531560409407420,L, + 44261734750,2.986525400906349,L, + 46186158000,2.437325257672045,L, + 48110581250,1.887463653305309,L, + 50035004500,1.342545611793774,L, + 51959427750,0.813016093203961,L, + 53883851000,0.324109551589564,L, + 55808274250,0.000309066085998,L, + 57732697500,0.000001707547496,L, + 59657120750,1.292893338179026,L, + 61581544000,3.274988835547902,L, + 63505967250,5.451133422331147,L, + 65430390500,7.719539564092557,L, + 67354813750,10.037850909911416,L, + 69279237000,12.383447153917146,L, + 71203660250,14.742369096993549,L, + 73128083500,17.105114238457862,L, + 75052506750,19.464697002336464,L, + 76976930000,21.815666897671694,L, + 78901353250,24.153534782631564,L, + 80825776500,26.474419402220221,L, + 82750199750,28.774821992035335,L, + 84674623000,31.051494797126562,L, + 86599046250,33.301311298401338,L, + 88523469500,35.521170589976485,L, + 90447892750,37.707920539550038,L, + 92372316000,39.858323637455428,L, + 94296739250,41.968968204202220,L, + 96221162500,44.036155692354875,L, + 98145585750,46.055948497856882,L, + 100070009000,48.023971884544849,L, + 101994432250,49.935379833202660,L, + 103918855500,51.784708192494314,L, + 105843278750,53.565772226126377,L, + 107767702000,55.271437801510771,L, + 109692125250,56.893426729373466,L, + 111616548500,58.421927442971743,L, + 113540971750,59.845311545243675,L, + 115465395000,61.197306510310739,L, + 117389818250,62.521454794131699,L, + 119314241500,63.818828736406246,L, + 121238664750,65.090487016455725,L, + 123163088000,66.337385860763959,L, + 125087511250,67.560454175058041,L, + 127011934500,68.760511582038390,L, + 128936357750,69.938391364783740,L, + 130860781000,71.094824353535273,L, + 132785204250,72.230520887966676,L, + 134709627500,73.346157156805788,L, + 136634050750,74.442354707267071,L, + 138558474000,75.519721426186663,L, + 140482897250,76.578810558887312,L, + 142407320500,77.620168520502645,L, + 144331743750,78.644293914842052,L, + 146256167000,79.651671685336609,L, + 148180590250,80.642766284849884,L, + 150105013500,81.618021675677923,L, + 152029436750,82.577840838981757,L, + 153953860000,83.522613095544074,L, + 155878283250,84.452734596336740,L, + 157802706500,85.368546850818248,L, + 159727129750,86.270411859014601,L, + 161651553000,87.158657470005977,L, + 163575976250,88.033577381926662,L, + 165500399500,88.895506274046014,L, + 167424822750,89.744717353930824,L, + 169349246000,90.581476998958721,L, + 171273669250,91.406058416696482,L, + 173198092500,92.218727984521777,L, + 175122515750,93.019711098677192,L, + 177046939000,93.809253645972845,L, + 178971362250,94.587581022651364,L, + 180895785500,95.354898134387838,L, + 182820208750,96.111430377424867,L, + 184744632000,96.857368997059226,L, + 186669055250,97.592905238587676,L, + 188593478500,98.318237177496144,L, + 190517901750,99.033508247757183,L, + 192442325000,99.738937015424256,L, + 194366748250,100.434639593713257,L, + 196291171500,101.120814058110085,L, + 198215594750,101.797603842587336,L, + 200140018000,102.465152381117576,L, + 202064441250,103.123603107673361,L, + 203988864500,103.773078965659778,L, + 205913287750,104.413730219238545,L, + 207837711000,105.045672981625557,L, + 209762134250,105.669023366036697,L, + 211686557500,106.283924806444560,L, + 213610980750,106.890466095308327,L, + 215535404000,107.488763345843907,L, + 217459827250,108.078925841078004,L, + 219384250500,108.661035543280676,L, + 221308673750,109.235208565667804,L, + 223233097000,109.801533700698599,L, + 225157520250,110.360079250264761,L, + 227081943500,110.910974987960515,L, + 229006366750,111.454248234542547,L, + 230930790000,111.990015103226753,L, + 232855213250,112.518302914769791,L, + 234779636500,113.039248272955092,L, + 236704059750,113.552851177782628,L, + 238628483000,114.059207251900801,L, + 240552906250,114.558398457579628,L, + 242477329500,115.050424794819136,L, + 244401752750,115.535368225889343,L, + 246326176000,116.013290222492785,L, + 248250599250,116.484190784629476,L, + 250175022500,116.948151874569433,L, + 252099445750,117.405173492312670,L, + 254023869000,117.855323939750889,L, + 255948292250,118.298603216884075,L, + 257872715500,118.735024984090586,L, + 259797138750,119.164630222505423,L, + 261721562000,119.587418932128614,L, + 263645985250,120.003404773338460,L, + 265570408500,120.412574085756660,L, + 267494831750,120.814899548626514,L, + 269419255000,121.210408482704707,L, + 271343678250,121.599073567234555,L, + 273268101500,121.980812839946012,L, + 275192524750,122.355653621595778,L, + 277116948000,122.723486629157122,L, + 279041371250,123.084243560738329,L, + 280965794500,123.437883435204398,L, + 282890217750,123.784228667636910,L, + 284814641000,124.123210956144163,L, + 286739064250,124.454652715807725,L, + 288663487500,124.778335380574163,L, + 290587910750,125.094040384390041,L, + 292512334000,125.401453538553525,L, + 294436757250,125.700178692092777,L, + 296361180500,125.989710411009199,L, + 298285603750,126.269297374494101,L, + 300210027000,126.537983356063677,L, + 302134450250,126.794156431073802,L, + 304058873500,127.035043542721468,L, + 305983296750,127.254429218861958,L, + 307907720000,127.416728173919580,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.527154918402076 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-33.527154918402076,L, + 1924423250,-33.534712522718678,L, + 3848846500,-33.556231033698772,L, + 5773269750,-33.590214639914123,L, + 7697693000,-33.635410001652033,L, + 9622116250,-33.690768684874911,L, + 11546539500,-33.755375444233970,L, + 13470962750,-33.828458468352999,L, + 15395386000,-33.909324493031249,L, + 17319809250,-33.997389537094683,L, + 19244232500,-34.092100355220524,L, + 21168655750,-34.192999324734394,L, + 23093079000,-34.299639068245654,L, + 25017502250,-34.411630264971606,L, + 26941925500,-34.528604084697072,L, + 28866348750,-34.650236093436483,L, + 30790772000,-34.776181366636756,L, + 32715195250,-34.906139375974398,L, + 34639618500,-35.039802762936773,L, + 36564041750,-35.176843678443710,L, + 38488465000,-35.316947933793401,L, + 40412888250,-35.459760359148987,L, + 42337311500,-35.604854067687363,L, + 44261734750,-35.751727040504520,L, + 46186158000,-35.899730409629313,L, + 48110581250,-36.047907948577944,L, + 50035004500,-36.194757015733003,L, + 51959427750,-36.337453327872709,L, + 53883851000,-36.469211092056646,L, + 55808274250,-36.556463343608854,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.269346096564021,L, + 61581544000,-35.796154005960801,L, + 63505967250,-35.261449231692538,L, + 65430390500,-34.694464983406839,L, + 67354813750,-34.107826865784460,L, + 69279237000,-33.508399218941243,L, + 71203660250,-32.900457741297622,L, + 73128083500,-32.286949659480449,L, + 75052506750,-31.670046973645785,L, + 76976930000,-31.051429910329450,L, + 78901353250,-30.432502073405878,L, + 80825776500,-29.814475821452746,L, + 82750199750,-29.198461060210182,L, + 84674623000,-28.585494270884730,L, + 86599046250,-27.976588029020846,L, + 88523469500,-27.372802721487172,L, + 90447892750,-26.775232886098198,L, + 92372316000,-26.185055022938464,L, + 94296739250,-25.603624924558208,L, + 96221162500,-25.032452062764005,L, + 98145585750,-24.473336192402151,L, + 100070009000,-23.928437360797655,L, + 101994432250,-23.383722944300750,L, + 103918855500,-22.828903262926826,L, + 105843278750,-22.277666015772571,L, + 107767702000,-21.749338930641795,L, + 109692125250,-21.261448272944730,L, + 111616548500,-20.822016099861543,L, + 113540971750,-20.429199967863628,L, + 115465395000,-20.074950499014133,L, + 117389818250,-19.744427399793935,L, + 119314241500,-19.428727518619937,L, + 121238664750,-19.123438553288317,L, + 123163088000,-18.825976984745520,L, + 125087511250,-18.534689907212403,L, + 127011934500,-18.248436679097580,L, + 128936357750,-17.966392555058771,L, + 130860781000,-17.687937695428801,L, + 132785204250,-17.412593986965764,L, + 134709627500,-17.139980646623435,L, + 136634050750,-16.869788608341874,L, + 138558474000,-16.601766862669081,L, + 140482897250,-16.335705381288079,L, + 142407320500,-16.071431701922325,L, + 144331743750,-15.808781900031741,L, + 146256167000,-15.547636447305848,L, + 148180590250,-15.287875815434175,L, + 150105013500,-15.029409504410216,L, + 152029436750,-14.772138476491008,L, + 153953860000,-14.515994429784850,L, + 155878283250,-14.260901378437227,L, + 157802706500,-14.006806388482071,L, + 159727129750,-13.753642865574973,L, + 161651553000,-13.501366413486329,L, + 163575976250,-13.249938612402058,L, + 165500399500,-12.999308235903385,L, + 167424822750,-12.749441986818107,L, + 169349246000,-12.500307421747664,L, + 171273669250,-12.251866120877978,L, + 173198092500,-12.004095886094243,L, + 175122515750,-11.756967689092489,L, + 177046939000,-11.510457624210622,L, + 178971362250,-11.264541785786543,L, + 180895785500,-11.019197121931807,L, + 182820208750,-10.774410826041716,L, + 184744632000,-10.530157284906888,L, + 186669055250,-10.286426253243565,L, + 188593478500,-10.043194679163298,L, + 190517901750,-9.800452317382332,L, + 192442325000,-9.558187215069621,L, + 194366748250,-9.316382296752238,L, + 196291171500,-9.075028170920076,L, + 198215594750,-8.834113738515731,L, + 200140018000,-8.593627900481806,L, + 202064441250,-8.353562119081834,L, + 203988864500,-8.113906149032065,L, + 205913287750,-7.874652306369677,L, + 207837711000,-7.635790345810920,L, + 209762134250,-7.397317706034852,L, + 211686557500,-7.159225422418189,L, + 213610980750,-6.921506664771761,L, + 215535404000,-6.684157164227336,L, + 217459827250,-6.447169236822098,L, + 219384250500,-6.210540321235108,L, + 221308673750,-5.974265294824488,L, + 223233097000,-5.738340315608832,L, + 225157520250,-5.502762395380376,L, + 227081943500,-5.267525984610421,L, + 229006366750,-5.032634071506727,L, + 230930790000,-4.798076837672364,L, + 232855213250,-4.563858978862386,L, + 234779636500,-4.329974945548090,L, + 236704059750,-4.096426445276772,L, + 238628483000,-3.863211343614314,L, + 240552906250,-3.630331774994832,L, + 242477329500,-3.397786672201270,L, + 244401752750,-3.165574754573156,L, + 246326176000,-2.933700931308957,L, + 248250599250,-2.702167336842790,L, + 250175022500,-2.470976532495591,L, + 252099445750,-2.240127664493717,L, + 254023869000,-2.009630551234097,L, + 255948292250,-1.779485299438438,L, + 257872715500,-1.549700660286614,L, + 259797138750,-1.320284104298030,L, + 261721562000,-1.091241501166504,L, + 263645985250,-0.862581175185086,L, + 265570408500,-0.634315452710794,L, + 267494831750,-0.406451777582607,L, + 269419255000,-0.179011587523174,L, + 271343678250,0.047996596406310,L, + 273268101500,0.274551433199742,L, + 275192524750,0.500630668046413,L, + 277116948000,0.726212232898599,L, + 279041371250,0.951265311863756,L, + 280965794500,1.175758902286355,L, + 282890217750,1.399647487358879,L, + 284814641000,1.622885496912961,L, + 286739064250,1.845413166793363,L, + 288663487500,2.067156752301389,L, + 290587910750,2.288017962746015,L, + 292512334000,2.507890289864873,L, + 294436757250,2.726604686476003,L, + 296361180500,2.943950057045370,L, + 298285603750,3.159609438106805,L, + 300210027000,3.373119444013804,L, + 302134450250,3.583685424945120,L, + 304058873500,3.789774003432088,L, + 305983296750,3.987536154434000,L, + 307907720000,4.148649644783791,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -17.588963131713580 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-17.588963131713580,L, + 1924423250,-17.545446288964197,L, + 3848846500,-17.421500553643448,L, + 5773269750,-17.225757577314919,L, + 7697693000,-16.965397596343575,L, + 9622116250,-16.646501186638016,L, + 11546539500,-16.274250754230980,L, + 13470962750,-15.853133733407155,L, + 15395386000,-15.387053577277202,L, + 17319809250,-14.879464654013848,L, + 19244232500,-14.333411520439624,L, + 21168655750,-13.751627959769822,L, + 23093079000,-13.136591623125859,L, + 25017502250,-12.490560741802071,L, + 26941925500,-11.815599740475088,L, + 28866348750,-11.113657784379301,L, + 30790772000,-10.386562802891332,L, + 32715195250,-9.636081253685273,L, + 34639618500,-8.863953127452183,L, + 36564041750,-8.071922683751350,L, + 38488465000,-7.261815290638457,L, + 40412888250,-6.435633474200785,L, + 42337311500,-5.595628635543498,L, + 44261734750,-4.744569989488207,L, + 46186158000,-3.886053203746096,L, + 48110581250,-3.025205189062898,L, + 50035004500,-2.170226654754261,L, + 51959427750,-1.336359808283278,L, + 53883851000,-0.560468247817516,L, + 55808274250,-0.024740294202813,L, + 57732697500,-0.000005139521921,L, + 59657120750,-0.871888481867979,L, + 61581544000,-2.190781895617973,L, + 63505967250,-3.620834396953943,L, + 65430390500,-5.093903856569415,L, + 67354813750,-6.581761529511590,L, + 69279237000,-8.069273424127033,L, + 71203660250,-9.546981435962584,L, + 73128083500,-11.008271380580741,L, + 75052506750,-12.448126484036134,L, + 76976930000,-13.862448632826766,L, + 78901353250,-15.247683567263293,L, + 80825776500,-16.600580117300794,L, + 82750199750,-17.918063844039121,L, + 84674623000,-19.197102143486799,L, + 86599046250,-20.434647043726706,L, + 88523469500,-21.627539582267719,L, + 90447892750,-22.772439796605706,L, + 92372316000,-23.865818186487068,L, + 94296739250,-24.903813987483463,L, + 96221162500,-25.882253954012015,L, + 98145585750,-26.796491849889833,L, + 100070009000,-27.641350391726053,L, + 101994432250,-28.411025626273467,L, + 103918855500,-29.098904222868217,L, + 105843278750,-29.697423454551821,L, + 107767702000,-30.197847509375841,L, + 109692125250,-30.589948179058201,L, + 111616548500,-30.861595047632971,L, + 113540971750,-30.998294453681410,L, + 115465395000,-31.061139024234606,L, + 117389818250,-31.122422896562458,L, + 119314241500,-31.182224617840419,L, + 121238664750,-31.240568093730584,L, + 123163088000,-31.297528456313824,L, + 125087511250,-31.353160347103497,L, + 127011934500,-31.407504747234626,L, + 128936357750,-31.460599222747643,L, + 130860781000,-31.512505245345082,L, + 132785204250,-31.563236475405279,L, + 134709627500,-31.612854384630765,L, + 136634050750,-31.661382878683636,L, + 138558474000,-31.708856108509742,L, + 140482897250,-31.755308225054932,L, + 142407320500,-31.800766549075885,L, + 144331743750,-31.845254986234700,L, + 146256167000,-31.888824762950147,L, + 148180590250,-31.931472464127648,L, + 150105013500,-31.973239070902213,L, + 152029436750,-32.014138243652191,L, + 153953860000,-32.054193888039677,L, + 155878283250,-32.093433324821341,L, + 157802706500,-32.131873629470121,L, + 159727129750,-32.169531877458930,L, + 161651553000,-32.206431974449870,L, + 163575976250,-32.242584165726697,L, + 165500399500,-32.278012356951500,L, + 167424822750,-32.312726793408039,L, + 169349246000,-32.346751380758413,L, + 171273669250,-32.380096364286366,L, + 173198092500,-32.412771989275662,L, + 175122515750,-32.444795331199217,L, + 177046939000,-32.476180050435381,L, + 178971362250,-32.506943222457075,L, + 180895785500,-32.537091677453468,L, + 182820208750,-32.566635660708315,L, + 184744632000,-32.595585417505376,L, + 186669055250,-32.623961438412152,L, + 188593478500,-32.651760308334062,L, + 190517901750,-32.679012763122373,L, + 192442325000,-32.705705142398742,L, + 194366748250,-32.731854521636102,L, + 196291171500,-32.757477976307364,L, + 198215594750,-32.782582336601713,L, + 200140018000,-32.807164187424554,L, + 202064441250,-32.831240604248812,L, + 203988864500,-32.854818417263665,L, + 205913287750,-32.877911286847443,L, + 207837711000,-32.900519213000152,L, + 209762134250,-32.922645610816375,L, + 211686557500,-32.944297310485290,L, + 213610980750,-32.965491387479808,L, + 215535404000,-32.986227841799938,L, + 217459827250,-33.006510088540260,L, + 219384250500,-33.026355203173701,L, + 221308673750,-33.045746110227341,L, + 223233097000,-33.064706715363272,L, + 225157520250,-33.083240433676075,L, + 227081943500,-33.101350680260332,L, + 229006366750,-33.119034040021475,L, + 230930790000,-33.136307588432409,L, + 232855213250,-33.153167910398565,L, + 234779636500,-33.169621836109101,L, + 236704059750,-33.185669365564024,L, + 238628483000,-33.201310498763327,L, + 240552906250,-33.216569141369114,L, + 242477329500,-33.231421387719287,L, + 244401752750,-33.245894558570519,L, + 246326176000,-33.259974993544482,L, + 248250599250,-33.273676353019511,L, + 250175022500,-33.286995221901016,L, + 252099445750,-33.299935015283587,L, + 254023869000,-33.312495733167218,L, + 255948292250,-33.324684205741093,L, + 257872715500,-33.336493602816027,L, + 259797138750,-33.347934169675781,L, + 261721562000,-33.359005906320355,L, + 263645985250,-33.369708812749749,L, + 265570408500,-33.380049719153135,L, + 267494831750,-33.390008134962997,L, + 269419255000,-33.399618211125194,L, + 271343678250,-33.408838966504696,L, + 273268101500,-33.417701136952779,L, + 275192524750,-33.426197892280257,L, + 277116948000,-33.434322402297980,L, + 279041371250,-33.442064421722179,L, + 280965794500,-33.449441026025781,L, + 282890217750,-33.456435139735859,L, + 284814641000,-33.463043347757839,L, + 286739064250,-33.469272480280885,L, + 288663487500,-33.475098631642894,L, + 290587910750,-33.480528632033050,L, + 292512334000,-33.485545405978414,L, + 294436757250,-33.490142123289829,L, + 296361180500,-33.494301708494362,L, + 298285603750,-33.498003671024499,L, + 300210027000,-33.501234350501910,L, + 302134450250,-33.503932275224066,L, + 304058873500,-33.506070124434274,L, + 305983296750,-33.507538615105823,L, + 307907720000,-33.508126011374443,L, + 309832143250,-30.971082980028118,L, + 344471761750,-30.971082980028118,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000024914741516 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024914741516,L, + 1924423250,0.000024903212761,L, + 3848846500,0.000024870392735,L, + 5773269750,0.000024818562451,L, + 7697693000,0.000024749630029,L, + 9622116250,0.000024665208912,L, + 11546539500,0.000024566677894,L, + 13470962750,0.000024455228413,L, + 15395386000,0.000024331897293,L, + 17319809250,0.000024197603125,L, + 19244232500,0.000024053155357,L, + 21168655750,0.000023899285225,L, + 23093079000,0.000023736651201,L, + 25017502250,0.000023565857191,L, + 26941925500,0.000023387459805,L, + 28866348750,0.000023201979275,L, + 30790772000,0.000023009908546,L, + 32715195250,0.000022811720555,L, + 34639618500,0.000022607891879,L, + 36564041750,0.000022398895453,L, + 38488465000,0.000022185242415,L, + 40412888250,0.000021967467546,L, + 42337311500,0.000021746211132,L, + 44261734750,0.000021522235329,L, + 46186158000,0.000021296553314,L, + 48110581250,0.000021070605726,L, + 50035004500,0.000020846699044,L, + 51959427750,0.000020629131541,L, + 53883851000,0.000020428287826,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005785107613,L, + 61581544000,0.252660751342773,L, + 63505967250,0.263727903366089,L, + 65430390500,0.272284537553787,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487488508224,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415809154510,L, + 82750199750,0.307393610477448,L, + 84674623000,0.309100538492203,L, + 86599046250,0.310568481683731,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312890976667404,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536869525909,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327750682831,L, + 103918855500,0.316543042659760,L, + 105843278750,0.316690295934677,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851437091827,L, + 115465395000,0.316829293966293,L, + 117389818250,0.316763699054718,L, + 119314241500,0.316656172275543,L, + 121238664750,0.316507935523987,L, + 123163088000,0.316320091485977,L, + 125087511250,0.316093772649765,L, + 127011934500,0.315830111503601,L, + 128936357750,0.315529912710190,L, + 130860781000,0.315194189548492,L, + 132785204250,0.314823627471924,L, + 134709627500,0.314419120550156,L, + 136634050750,0.313981354236603,L, + 138558474000,0.313510924577713,L, + 140482897250,0.313008546829224,L, + 142407320500,0.312474846839905,L, + 144331743750,0.311910212039948,L, + 146256167000,0.311315298080444,L, + 148180590250,0.310690492391586,L, + 150105013500,0.310036242008209,L, + 152029436750,0.309352964162827,L, + 153953860000,0.308641076087952,L, + 155878283250,0.307900905609131,L, + 157802706500,0.307132661342621,L, + 159727129750,0.306336790323257,L, + 161651553000,0.305513560771942,L, + 163575976250,0.304663121700287,L, + 165500399500,0.303785711526871,L, + 167424822750,0.302881538867950,L, + 169349246000,0.301950812339783,L, + 171273669250,0.300993651151657,L, + 173198092500,0.300010174512863,L, + 175122515750,0.299000561237335,L, + 177046939000,0.297964841127396,L, + 178971362250,0.296903073787689,L, + 180895785500,0.295815408229828,L, + 182820208750,0.294701695442200,L, + 184744632000,0.293562114238739,L, + 186669055250,0.292396545410156,L, + 188593478500,0.291205018758774,L, + 190517901750,0.289987504482269,L, + 192442325000,0.288743883371353,L, + 194366748250,0.287474006414413,L, + 196291171500,0.286177933216095,L, + 198215594750,0.284855306148529,L, + 200140018000,0.283506125211716,L, + 202064441250,0.282130181789398,L, + 203988864500,0.280727237462997,L, + 205913287750,0.279297083616257,L, + 207837711000,0.277839422225952,L, + 209762134250,0.276354044675827,L, + 211686557500,0.274840533733368,L, + 213610980750,0.273298650979996,L, + 215535404000,0.271727979183197,L, + 217459827250,0.270128160715103,L, + 219384250500,0.268498659133911,L, + 221308673750,0.266839027404785,L, + 223233097000,0.265148788690567,L, + 225157520250,0.263427436351776,L, + 227081943500,0.261674225330353,L, + 229006366750,0.259888648986816,L, + 230930790000,0.258069932460785,L, + 232855213250,0.256217271089554,L, + 234779636500,0.254330009222031,L, + 236704059750,0.252407133579254,L, + 238628483000,0.250447750091553,L, + 240552906250,0.248450756072998,L, + 242477329500,0.246415138244629,L, + 244401752750,0.244339630007744,L, + 246326176000,0.242222949862480,L, + 248250599250,0.240063667297363,L, + 250175022500,0.237860232591629,L, + 252099445750,0.235610991716385,L, + 254023869000,0.233314022421837,L, + 255948292250,0.230967447161674,L, + 257872715500,0.228568956255913,L, + 259797138750,0.226116046309471,L, + 261721562000,0.223606169223785,L, + 263645985250,0.221036255359650,L, + 265570408500,0.218402981758118,L, + 267494831750,0.215702667832375,L, + 269419255000,0.212931126356125,L, + 271343678250,0.210083678364754,L, + 273268101500,0.207154974341393,L, + 275192524750,0.204138875007629,L, + 277116948000,0.201028391718864,L, + 279041371250,0.197815418243408,L, + 280965794500,0.194490507245064,L, + 282890217750,0.191042274236679,L, + 284814641000,0.187457352876663,L, + 286739064250,0.183719426393509,L, + 288663487500,0.179808422923088,L, + 290587910750,0.175699099898338,L, + 292512334000,0.171359047293663,L, + 294436757250,0.166745424270630,L, + 296361180500,0.161799460649490,L, + 298285603750,0.156436935067177,L, + 300210027000,0.150529175996780,L, + 302134450250,0.143860816955566,L, + 304058873500,0.136016324162483,L, + 305983296750,0.125945419073105,L, + 307907720000,0.106410592794418,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000021815299988 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000021815299988,L, + 1924423250,0.000021811507395,L, + 3848846500,0.000021800708055,L, + 5773269750,0.000021783653210,L, + 7697693000,0.000021760975869,L, + 9622116250,0.000021733196263,L, + 11546539500,0.000021700776415,L, + 13470962750,0.000021664103770,L, + 15395386000,0.000021623525754,L, + 17319809250,0.000021579338863,L, + 19244232500,0.000021531808670,L, + 21168655750,0.000021481180738,L, + 23093079000,0.000021427669708,L, + 25017502250,0.000021371472030,L, + 26941925500,0.000021312775061,L, + 28866348750,0.000021251744329,L, + 30790772000,0.000021188547180,L, + 32715195250,0.000021123338229,L, + 34639618500,0.000021056270270,L, + 36564041750,0.000020987507014,L, + 38488465000,0.000020917206712,L, + 40412888250,0.000020845549443,L, + 42337311500,0.000020772749849,L, + 44261734750,0.000020699055312,L, + 46186158000,0.000020624795070,L, + 48110581250,0.000020550454792,L, + 50035004500,0.000020476778445,L, + 51959427750,0.000020405197574,L, + 53883851000,0.000020339110051,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803917884827,L, + 59657120750,0.233176022768021,L, + 61581544000,0.246348842978477,L, + 63505967250,0.255807787179947,L, + 65430390500,0.263269215822220,L, + 67354813750,0.269431799650192,L, + 69279237000,0.274662673473358,L, + 71203660250,0.279183000326157,L, + 73128083500,0.283138453960419,L, + 75052506750,0.286631107330322,L, + 76976930000,0.289735883474350,L, + 78901353250,0.292509585618973,L, + 80825776500,0.294996857643127,L, + 82750199750,0.297233581542969,L, + 84674623000,0.299249053001404,L, + 86599046250,0.301067888736725,L, + 88523469500,0.302711188793182,L, + 90447892750,0.304197102785110,L, + 92372316000,0.305541932582855,L, + 94296739250,0.306760519742966,L, + 96221162500,0.307866930961609,L, + 98145585750,0.308874756097794,L, + 100070009000,0.309798061847687,L, + 101994432250,0.310652285814285,L, + 103918855500,0.311455816030502,L, + 105843278750,0.312232613563538,L, + 107767702000,0.313018739223480,L, + 109692125250,0.313877254724503,L, + 111616548500,0.314952105283737,L, + 113540971750,0.316851407289505,L, + 115465395000,0.315495789051056,L, + 117389818250,0.313826948404312,L, + 119314241500,0.312095195055008,L, + 121238664750,0.310327798128128,L, + 123163088000,0.308535605669022,L, + 125087511250,0.306724399328232,L, + 127011934500,0.304897457361221,L, + 128936357750,0.303057014942169,L, + 130860781000,0.301204681396484,L, + 132785204250,0.299341589212418,L, + 134709627500,0.297468602657318,L, + 136634050750,0.295586377382278,L, + 138558474000,0.293695449829102,L, + 140482897250,0.291796296834946,L, + 142407320500,0.289889127016068,L, + 144331743750,0.287974298000336,L, + 146256167000,0.286052167415619,L, + 148180590250,0.284122675657272,L, + 150105013500,0.282186090946198,L, + 152029436750,0.280242651700974,L, + 153953860000,0.278292268514633,L, + 155878283250,0.276335090398788,L, + 157802706500,0.274371176958084,L, + 159727129750,0.272400617599487,L, + 161651553000,0.270423412322998,L, + 163575976250,0.268439561128616,L, + 165500399500,0.266449093818665,L, + 167424822750,0.264452010393143,L, + 169349246000,0.262448221445084,L, + 171273669250,0.260437905788422,L, + 173198092500,0.258420735597610,L, + 175122515750,0.256396889686584,L, + 177046939000,0.254366278648376,L, + 178971362250,0.252328783273697,L, + 180895785500,0.250284373760223,L, + 182820208750,0.248232975602150,L, + 184744632000,0.246174573898315,L, + 186669055250,0.244108945131302,L, + 188593478500,0.242036089301109,L, + 190517901750,0.239955902099609,L, + 192442325000,0.237868219614029,L, + 194366748250,0.235772952437401,L, + 196291171500,0.233670026063919,L, + 198215594750,0.231559216976166,L, + 200140018000,0.229440435767174,L, + 202064441250,0.227313458919525,L, + 203988864500,0.225178211927414,L, + 205913287750,0.223034486174583,L, + 207837711000,0.220882073044777,L, + 209762134250,0.218720808625221,L, + 211686557500,0.216550439596176,L, + 213610980750,0.214370816946030,L, + 215535404000,0.212181672453880,L, + 217459827250,0.209982737898827,L, + 219384250500,0.207773774862289,L, + 221308673750,0.205554500222206,L, + 223233097000,0.203324615955353,L, + 225157520250,0.201083824038506,L, + 227081943500,0.198831766843796,L, + 229006366750,0.196568146348000,L, + 230930790000,0.194292485713959,L, + 232855213250,0.192004457116127,L, + 234779636500,0.189703613519669,L, + 236704059750,0.187389492988586,L, + 238628483000,0.185061603784561,L, + 240552906250,0.182719439268112,L, + 242477329500,0.180362328886986,L, + 244401752750,0.177989810705185,L, + 246326176000,0.175601124763489,L, + 248250599250,0.173195585608482,L, + 250175022500,0.170772477984428,L, + 252099445750,0.168330848217010,L, + 254023869000,0.165869876742363,L, + 255948292250,0.163388550281525,L, + 257872715500,0.160885766148567,L, + 259797138750,0.158360362052917,L, + 261721562000,0.155810981988907,L, + 263645985250,0.153236180543900,L, + 265570408500,0.150634378194809,L, + 267494831750,0.148003742098808,L, + 269419255000,0.145342245697975,L, + 271343678250,0.142647653818130,L, + 273268101500,0.139917373657227,L, + 275192524750,0.137148439884186,L, + 277116948000,0.134337469935417,L, + 279041371250,0.131480574607849,L, + 280965794500,0.128573104739189,L, + 282890217750,0.125609725713730,L, + 284814641000,0.122583881020546,L, + 286739064250,0.119487755000591,L, + 288663487500,0.116311669349670,L, + 290587910750,0.113043367862701,L, + 292512334000,0.109667286276817,L, + 294436757250,0.106162600219250,L, + 296361180500,0.102501004934311,L, + 298285603750,0.098641544580460,L, + 300210027000,0.094521664083004,L, + 302134450250,0.090036526322365,L, + 304058873500,0.084982611238956,L, + 305983296750,0.078841231763363,L, + 307907720000,0.067696742713451,L, + 309832143250,0.000028520822525,L, + 344471761750,0.000028520822525,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000024437904358 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024437904358,L, + 1924423250,0.000024427570679,L, + 3848846500,0.000024398132155,L, + 5773269750,0.000024351653337,L, + 7697693000,0.000024289836801,L, + 9622116250,0.000024214128644,L, + 11546539500,0.000024125771233,L, + 13470962750,0.000024025823222,L, + 15395386000,0.000023915223210,L, + 17319809250,0.000023794791559,L, + 19244232500,0.000023665254048,L, + 21168655750,0.000023527269150,L, + 23093079000,0.000023381424398,L, + 25017502250,0.000023228260034,L, + 26941925500,0.000023068278097,L, + 28866348750,0.000022901942430,L, + 30790772000,0.000022729698685,L, + 32715195250,0.000022551968868,L, + 34639618500,0.000022369182261,L, + 36564041750,0.000022181760869,L, + 38488465000,0.000021990157620,L, + 40412888250,0.000021794867280,L, + 42337311500,0.000021596446459,L, + 44261734750,0.000021395591830,L, + 46186158000,0.000021193203793,L, + 48110581250,0.000020990581106,L, + 50035004500,0.000020789786504,L, + 51959427750,0.000020594679881,L, + 53883851000,0.000020414569008,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005800008774,L, + 61581544000,0.252660721540451,L, + 63505967250,0.263727903366089,L, + 65430390500,0.272284537553787,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487458705902,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415779352188,L, + 82750199750,0.307393610477448,L, + 84674623000,0.309100568294525,L, + 86599046250,0.310568422079086,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312891006469727,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536869525909,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644145011902,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327750682831,L, + 103918855500,0.316543012857437,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851407289505,L, + 115465395000,0.316826760768890,L, + 117389818250,0.316753774881363,L, + 119314241500,0.316634118556976,L, + 121238664750,0.316469311714172,L, + 123163088000,0.316260606050491,L, + 125087511250,0.316009342670441,L, + 127011934500,0.315716743469238,L, + 128936357750,0.315383911132812,L, + 130860781000,0.315011799335480,L, + 132785204250,0.314601510763168,L, + 134709627500,0.314153850078583,L, + 136634050750,0.313669651746750,L, + 138558474000,0.313149839639664,L, + 140482897250,0.312595009803772,L, + 142407320500,0.312005907297134,L, + 144331743750,0.311383128166199,L, + 146256167000,0.310727417469025,L, + 148180590250,0.310039281845093,L, + 150105013500,0.309319168329239,L, + 152029436750,0.308567672967911,L, + 153953860000,0.307785183191299,L, + 155878283250,0.306972175836563,L, + 157802706500,0.306129038333893,L, + 159727129750,0.305256128311157,L, + 161651553000,0.304353833198547,L, + 163575976250,0.303422331809998,L, + 165500399500,0.302462100982666,L, + 167424822750,0.301473289728165,L, + 169349246000,0.300456166267395,L, + 171273669250,0.299410939216614,L, + 173198092500,0.298337787389755,L, + 175122515750,0.297236979007721,L, + 177046939000,0.296108484268188,L, + 178971362250,0.294952630996704,L, + 180895785500,0.293769359588623,L, + 182820208750,0.292558819055557,L, + 184744632000,0.291321128606796,L, + 186669055250,0.290056198835373,L, + 188593478500,0.288764148950577,L, + 190517901750,0.287444978952408,L, + 192442325000,0.286098718643188,L, + 194366748250,0.284725159406662,L, + 196291171500,0.283324331045151,L, + 198215594750,0.281896203756332,L, + 200140018000,0.280440568923950,L, + 202064441250,0.278957337141037,L, + 203988864500,0.277446419000626,L, + 205913287750,0.275907546281815,L, + 207837711000,0.274340510368347,L, + 209762134250,0.272745102643967,L, + 211686557500,0.271121054887772,L, + 213610980750,0.269468128681183,L, + 215535404000,0.267785936594009,L, + 217459827250,0.266074150800705,L, + 219384250500,0.264332413673401,L, + 221308673750,0.262560218572617,L, + 223233097000,0.260757267475128,L, + 225157520250,0.258922934532166,L, + 227081943500,0.257056683301926,L, + 229006366750,0.255157977342606,L, + 230930790000,0.253226161003113,L, + 232855213250,0.251260548830032,L, + 234779636500,0.249260380864143,L, + 236704059750,0.247224882245064,L, + 238628483000,0.245153129100800,L, + 240552906250,0.243044212460518,L, + 242477329500,0.240897089242935,L, + 244401752750,0.238710612058640,L, + 246326176000,0.236483648419380,L, + 248250599250,0.234214812517166,L, + 250175022500,0.231902748346329,L, + 252099445750,0.229545757174492,L, + 254023869000,0.227142214775085,L, + 255948292250,0.224690183997154,L, + 257872715500,0.222187682986259,L, + 259797138750,0.219632327556610,L, + 261721562000,0.217021659016609,L, + 263645985250,0.214352831244469,L, + 265570408500,0.211622744798660,L, + 267494831750,0.208827942609787,L, + 269419255000,0.205964475870132,L, + 271343678250,0.203028008341789,L, + 273268101500,0.200013414025307,L, + 275192524750,0.196915000677109,L, + 277116948000,0.193726226687431,L, + 279041371250,0.190439388155937,L, + 280965794500,0.187045633792877,L, + 282890217750,0.183534309267998,L, + 284814641000,0.179892778396606,L, + 286739064250,0.176105767488480,L, + 288663487500,0.172154322266579,L, + 290587910750,0.168014794588089,L, + 292512334000,0.163656637072563,L, + 294436757250,0.159039616584778,L, + 296361180500,0.154108479619026,L, + 298285603750,0.148784071207047,L, + 300210027000,0.142945423722267,L, + 302134450250,0.136390209197998,L, + 304058873500,0.128728121519089,L, + 305983296750,0.118972584605217,L, + 307907720000,0.100327968597412,L, + 309832143250,0.000042378902435,L, + 344471761750,0.000042378902435,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_014" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.004633903503418 + KeyVer: 4005 + KeyCount: 171 + Key: + 0,0.004633903503418,L, + 1924423250,0.004905089735985,L, + 3848846500,0.005729489028454,L, + 5773269750,0.007117502391338,L, + 7697693000,0.009067870676517,L, + 9622116250,0.011564984917641,L, + 11546539500,0.014574028551579,L, + 13470962750,0.018039956688881,L, + 15395386000,0.021886065602303,L, + 17319809250,0.026015400886536,L, + 19244232500,0.030316039919853,L, + 21168655750,0.034669578075409,L, + 23093079000,0.038957148790359,L, + 25017502250,0.043070524930954,L, + 26941925500,0.046915814280510,L, + 28866348750,0.050418801605701,L, + 30790772000,0.053524434566498,L, + 32715195250,0.056197315454483,L, + 34639618500,0.058416828513145,L, + 36564041750,0.060175880789757,L, + 38488465000,0.061686106026173,L, + 40412888250,0.063158355653286,L, + 42337311500,0.064589351415634,L, + 44261734750,0.065978281199932,L, + 46186158000,0.067322559654713,L, + 48110581250,0.068620257079601,L, + 50035004500,0.069869600236416,L, + 51959427750,0.071068599820137,L, + 53883851000,0.072215430438519,L, + 55808274250,0.073308132588863,L, + 57732697500,0.074345327913761,L, + 59657120750,0.075326070189476,L, + 61581544000,0.076248817145824,L, + 63505967250,0.077113233506680,L, + 65430390500,0.077918164432049,L, + 67354813750,0.078664079308510,L, + 69279237000,0.079351574182510,L, + 71203660250,0.079980470240116,L, + 73128083500,0.080552689731121,L, + 75052506750,0.081069342792034,L, + 76976930000,0.081532686948776,L, + 78901353250,0.081944659352303,L, + 80825776500,0.082308232784271,L, + 82750199750,0.082625627517700,L, + 84674623000,0.082900509238243,L, + 86599046250,0.083135440945625,L, + 88523469500,0.083335191011429,L, + 90447892750,0.083501569926739,L, + 92372316000,0.083638757467270,L, + 94296739250,0.083749681711197,L, + 96221162500,0.083837673068047,L, + 98145585750,0.083906210958958,L, + 100070009000,0.083957612514496,L, + 101994432250,0.083994761109352,L, + 103918855500,0.084020696580410,L, + 105843278750,0.084037490189075,L, + 107767702000,0.084047362208366,L, + 109692125250,0.084052525460720,L, + 111616548500,0.084053754806519,L, + 113540971750,0.084054015576839,L, + 115465395000,0.084054395556450,L, + 117389818250,0.084054142236710,L, + 119314241500,0.084054209291935,L, + 121238664750,0.084054112434387,L, + 123163088000,0.084054224193096,L, + 125087511250,0.084054395556450,L, + 127011934500,0.084054403007030,L, + 128936357750,0.084054403007030,L, + 130860781000,0.084054492413998,L, + 132785204250,0.084054172039032,L, + 134709627500,0.084054298698902,L, + 136634050750,0.084054179489613,L, + 138558474000,0.084054462611675,L, + 140482897250,0.084054268896580,L, + 142407320500,0.084131136536598,L, + 144331743750,0.084363207221031,L, + 146256167000,0.084747500717640,L, + 148180590250,0.085271544754505,L, + 150105013500,0.085908882319927,L, + 152029436750,0.086621761322021,L, + 153953860000,0.087360844016075,L, + 155878283250,0.088073231279850,L, + 157802706500,0.088710576295853,L, + 159727129750,0.089234612882137,L, + 161651553000,0.089618921279907,L, + 163575976250,0.089850984513760,L, + 165500399500,0.089927844703197,L, + 167424822750,0.089921601116657,L, + 169349246000,0.089902274310589,L, + 171273669250,0.089870356023312,L, + 173198092500,0.089825041592121,L, + 175122515750,0.089767068624496,L, + 177046939000,0.089695855975151,L, + 178971362250,0.089611925184727,L, + 180895785500,0.089514926075935,L, + 182820208750,0.089406087994576,L, + 184744632000,0.089284338057041,L, + 186669055250,0.089151129126549,L, + 188593478500,0.089006073772907,L, + 190517901750,0.088850356638432,L, + 192442325000,0.088684253394604,L, + 194366748250,0.088509120047092,L, + 196291171500,0.088325418531895,L, + 198215594750,0.088133648037910,L, + 200140018000,0.087935239076614,L, + 202064441250,0.087731108069420,L, + 203988864500,0.087523192167282,L, + 205913287750,0.087311536073685,L, + 207837711000,0.087098099291325,L, + 209762134250,0.086883910000324,L, + 211686557500,0.086670473217964,L, + 213610980750,0.086459293961525,L, + 215535404000,0.086250893771648,L, + 217459827250,0.086046770215034,L, + 219384250500,0.085848353803158,L, + 221308673750,0.085657067596912,L, + 223233097000,0.085473351180553,L, + 225157520250,0.085297584533691,L, + 227081943500,0.085132054984570,L, + 229006366750,0.084975942969322,L, + 230930790000,0.084831200540066,L, + 232855213250,0.084697805345058,L, + 234779636500,0.084576450288296,L, + 236704059750,0.084466971457005,L, + 238628483000,0.084370151162148,L, + 240552906250,0.084286235272884,L, + 242477329500,0.084214985370636,L, + 244401752750,0.084157258272171,L, + 246326176000,0.084112048149109,L, + 248250599250,0.084079876542091,L, + 250175022500,0.084060952067375,L, + 252099445750,0.084054172039032,L, + 254023869000,0.084054395556450,L, + 255948292250,0.084054008126259,L, + 257872715500,0.084054231643677,L, + 259797138750,0.084054157137871,L, + 261721562000,0.084054216742516,L, + 263645985250,0.084054231643677,L, + 265570408500,0.084054410457611,L, + 267494831750,0.084054440259933,L, + 269419255000,0.084054455161095,L, + 271343678250,0.084054172039032,L, + 273268101500,0.084054544568062,L, + 275192524750,0.084054380655289,L, + 282890217750,0.084054380655289,L, + 284814641000,0.083739623427391,L, + 286739064250,0.082788825035095,L, + 288663487500,0.081197440624237,L, + 290587910750,0.078967511653900,L, + 292512334000,0.076111376285553,L, + 294436757250,0.072652354836464,L, + 296361180500,0.068627446889877,L, + 298285603750,0.064086958765984,L, + 300210027000,0.059097170829773,L, + 302134450250,0.053739264607430,L, + 304058873500,0.048106774687767,L, + 305983296750,0.042305469512939,L, + 307907720000,0.036446899175644,L, + 309832143250,0.030645117163658,L, + 311756566500,0.025013118982315,L, + 313680989750,0.019654721021652,L, + 315605413000,0.014665424823761,L, + 317529836250,0.010124459862709,L, + 319454259500,0.006099551916122,L, + 321378682750,0.002640515565872,L, + 323303106000,-0.000215604901314,L, + 325227529250,-0.002445518970490,L, + 327151952500,-0.004036918282509,L, + 329076375750,-0.004987254738808,L, + 331000799000,-0.005302473902702,L, + 344471761750,-0.005302473902702,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.120194733142853 + KeyVer: 4005 + KeyCount: 169 + Key: + 0,-0.120194733142853,L, + 1924423250,-0.122929200530052,L, + 3848846500,-0.125536888837814,L, + 5773269750,-0.128014966845512,L, + 7697693000,-0.130360007286072,L, + 9622116250,-0.132569447159767,L, + 11546539500,-0.134641945362091,L, + 13470962750,-0.136576175689697,L, + 15395386000,-0.138372838497162,L, + 17319809250,-0.140032351016998,L, + 19244232500,-0.141556933522224,L, + 21168655750,-0.142949402332306,L, + 23093079000,-0.144213259220123,L, + 25017502250,-0.145353019237518,L, + 26941925500,-0.146374493837357,L, + 28866348750,-0.147283077239990,L, + 30790772000,-0.148085191845894,L, + 32715195250,-0.148787975311279,L, + 34639618500,-0.149397820234299,L, + 36564041750,-0.149922579526901,L, + 38488465000,-0.150368690490723,L, + 40412888250,-0.150743901729584,L, + 42337311500,-0.151054769754410,L, + 44261734750,-0.151307821273804,L, + 46186158000,-0.151510074734688,L, + 48110581250,-0.151666462421417,L, + 50035004500,-0.151783913373947,L, + 51959427750,-0.151867061853409,L, + 53883851000,-0.151921167969704,L, + 55808274250,-0.151950538158417,L, + 57732697500,-0.151959151029587,L, + 59657120750,-0.151959449052811,L, + 61581544000,-0.151959508657455,L, + 63505967250,-0.151959419250488,L, + 65430390500,-0.151959463953972,L, + 67354813750,-0.151959389448166,L, + 69279237000,-0.151959553360939,L, + 71203660250,-0.151959359645844,L, + 73128083500,-0.151959180831909,L, + 75052506750,-0.151959240436554,L, + 76976930000,-0.151959314942360,L, + 78901353250,-0.151959449052811,L, + 80825776500,-0.151959553360939,L, + 82750199750,-0.151959404349327,L, + 84674623000,-0.151959404349327,L, + 86599046250,-0.152122825384140,L, + 88523469500,-0.152616560459137,L, + 90447892750,-0.153433948755264,L, + 92372316000,-0.154547899961472,L, + 94296739250,-0.155903011560440,L, + 96221162500,-0.157418355345726,L, + 98145585750,-0.158989503979683,L, + 100070009000,-0.160504609346390,L, + 101994432250,-0.161859869956970,L, + 103918855500,-0.162973493337631,L, + 105843278750,-0.163791000843048,L, + 107767702000,-0.164284706115723,L, + 109692125250,-0.164448410272598,L, + 111616548500,-0.164434522390366,L, + 113540971750,-0.164393812417984,L, + 115465395000,-0.164325520396233,L, + 117389818250,-0.164229676127434,L, + 119314241500,-0.164106041193008,L, + 121238664750,-0.163954854011536,L, + 123163088000,-0.163776248693466,L, + 125087511250,-0.163570612668991,L, + 127011934500,-0.163338229060173,L, + 128936357750,-0.163079708814621,L, + 130860781000,-0.162796169519424,L, + 132785204250,-0.162488013505936,L, + 134709627500,-0.162157058715820,L, + 136634050750,-0.161804348230362,L, + 138558474000,-0.161431521177292,L, + 140482897250,-0.161040544509888,L, + 142407320500,-0.160632669925690,L, + 144331743750,-0.160211369395256,L, + 146256167000,-0.159777611494064,L, + 148180590250,-0.159334689378738,L, + 150105013500,-0.158885300159454,L, + 152029436750,-0.158431410789490,L, + 153953860000,-0.157976359128952,L, + 155878283250,-0.157522484660149,L, + 157802706500,-0.157072603702545,L, + 159727129750,-0.156629949808121,L, + 161651553000,-0.156196400523186,L, + 163575976250,-0.155774623155594,L, + 165500399500,-0.155367240309715,L, + 167424822750,-0.154976069927216,L, + 169349246000,-0.154603183269501,L, + 171273669250,-0.154250636696815,L, + 173198092500,-0.153919577598572,L, + 175122515750,-0.153611540794373,L, + 177046939000,-0.153327912092209,L, + 178971362250,-0.153069421648979,L, + 180895785500,-0.152836978435516,L, + 182820208750,-0.152631267905235,L, + 184744632000,-0.152452677488327,L, + 186669055250,-0.152301669120789,L, + 188593478500,-0.152177870273590,L, + 190517901750,-0.152081996202469,L, + 192442325000,-0.152013719081879,L, + 194366748250,-0.151972800493240,L, + 196291171500,-0.151959434151649,L, + 198215594750,-0.151959538459778,L, + 200140018000,-0.151959374547005,L, + 202064441250,-0.151959344744682,L, + 203988864500,-0.151959344744682,L, + 205913287750,-0.151959478855133,L, + 207837711000,-0.151959404349327,L, + 209762134250,-0.151959151029587,L, + 213610980750,-0.151959449052811,L, + 215535404000,-0.151959463953972,L, + 217459827250,-0.151959419250488,L, + 219384250500,-0.151959255337715,L, + 221308673750,-0.151959359645844,L, + 223233097000,-0.151959478855133,L, + 225157520250,-0.151959419250488,L, + 227081943500,-0.151959419250488,L, + 229006366750,-0.151264280080795,L, + 230930790000,-0.149165332317352,L, + 232855213250,-0.145650923252106,L, + 234779636500,-0.140726789832115,L, + 236704059750,-0.134419977664948,L, + 238628483000,-0.126782193779945,L, + 240552906250,-0.117893755435944,L, + 242477329500,-0.107867568731308,L, + 244401752750,-0.096849322319031,L, + 246326176000,-0.085017591714859,L, + 248250599250,-0.072580099105835,L, + 250175022500,-0.059769690036774,L, + 252099445750,-0.046832516789436,L, + 254023869000,-0.034021914005280,L, + 255948292250,-0.021584540605545,L, + 257872715500,-0.009752899408340,L, + 259797138750,0.001265466213226,L, + 261721562000,0.011291787028313,L, + 263645985250,0.020180046558380,L, + 265570408500,0.027817994356155,L, + 267494831750,0.034124761819839,L, + 269419255000,0.039048671722412,L, + 271343678250,0.042563214898109,L, + 273268101500,0.044662252068520,L, + 275192524750,0.045357137918472,L, + 282890217750,0.045357137918472,L, + 284814641000,0.045357435941696,L, + 286739064250,0.045357316732407,L, + 288663487500,0.045357123017311,L, + 290587910750,0.045357435941696,L, + 292512334000,0.045357331633568,L, + 294436757250,0.045357435941696,L, + 296361180500,0.045357182621956,L, + 298285603750,0.045357465744019,L, + 302134450250,0.045357167720795,L, + 304058873500,0.045357361435890,L, + 305983296750,0.045357361435890,L, + 307907720000,0.045357227325439,L, + 309832143250,0.045357465744019,L, + 311756566500,0.045357197523117,L, + 313680989750,0.045357272028923,L, + 315605413000,0.045357123017311,L, + 317529836250,0.045357167720795,L, + 319454259500,0.045357167720795,L, + 321378682750,0.045357242226601,L, + 323303106000,0.045357406139374,L, + 325227529250,0.045357242226601,L, + 327151952500,0.045357063412666,L, + 329076375750,0.045357152819633,L, + 331000799000,0.045357465744019,L, + 344471761750,0.045357465744019,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.105131745338440 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.105131745338440,L, + 1924423250,0.105484366416931,L, + 3848846500,0.106549978256226,L, + 5773269750,0.108330965042114,L, + 7697693000,0.110812425613403,L, + 9622116250,0.113957762718201,L, + 11546539500,0.117704272270203,L, + 13470962750,0.121960520744324,L, + 15395386000,0.126606941223145,L, + 17319809250,0.131498813629150,L, + 19244232500,0.136474370956421,L, + 21168655750,0.141366243362427,L, + 23093079000,0.146012663841248,L, + 25017502250,0.150269031524658,L, + 26941925500,0.154015541076660,L, + 28866348750,0.157160758972168,L, + 30790772000,0.159642219543457,L, + 32715195250,0.161423325538635,L, + 34639618500,0.162488937377930,L, + 36564041750,0.162841439247131,L, + 38488465000,0.162282109260559,L, + 40412888250,0.160591602325439,L, + 42337311500,0.157763004302979,L, + 44261734750,0.153807640075684,L, + 46186158000,0.148760557174683,L, + 48110581250,0.142685055732727,L, + 50035004500,0.135676383972168,L, + 51959427750,0.127864718437195,L, + 53883851000,0.119413495063782,L, + 55808274250,0.110516548156738,L, + 57732697500,0.101391077041626,L, + 59657120750,0.092265367507935,L, + 61581544000,0.083368539810181,L, + 63505967250,0.074917316436768,L, + 65430390500,0.067105531692505,L, + 67354813750,0.060096859931946,L, + 69279237000,0.054021358489990,L, + 71203660250,0.048974275588989,L, + 73128083500,0.045018911361694,L, + 75052506750,0.042190313339233,L, + 76976930000,0.040499806404114,L, + 78901353250,0.039940476417542,L, + 80825776500,0.039941787719727,L, + 82750199750,0.039951920509338,L, + 84674623000,0.039981722831726,L, + 86599046250,0.040044069290161,L, + 88523469500,0.040154337882996,L, + 90447892750,0.040329813957214,L, + 92372316000,0.040588736534119,L, + 94296739250,0.040948867797852,L, + 96221162500,0.041427016258240,L, + 98145585750,0.042036414146423,L, + 100070009000,0.042786359786987,L, + 101994432250,0.043681025505066,L, + 103918855500,0.044719934463501,L, + 105843278750,0.045898556709290,L, + 107767702000,0.047209143638611,L, + 109692125250,0.048642158508301,L, + 111616548500,0.050186753273010,L, + 113540971750,0.051832199096680,L, + 115465395000,0.054098606109619,L, + 117389818250,0.057515978813171,L, + 119314241500,0.062049508094788,L, + 121238664750,0.067598342895508,L, + 123163088000,0.073979854583740,L, + 125087511250,0.080923080444336,L, + 127011934500,0.088082909584045,L, + 128936357750,0.095074057579041,L, + 130860781000,0.101520538330078,L, + 132785204250,0.107101917266846,L, + 134709627500,0.111583232879639,L, + 136634050750,0.114822387695312,L, + 138558474000,0.116759181022644,L, + 140482897250,0.117396593093872,L, + 142407320500,0.117056488990784,L, + 144331743750,0.116026520729065,L, + 146256167000,0.114315152168274,L, + 148180590250,0.111974120140076,L, + 150105013500,0.109108805656433,L, + 152029436750,0.105881810188293,L, + 153953860000,0.102502822875977,L, + 155878283250,0.099199414253235,L, + 157802706500,0.096185445785522,L, + 159727129750,0.093631744384766,L, + 161651553000,0.091653943061829,L, + 163575976250,0.090313076972961,L, + 165500399500,0.089627623558044,L, + 167424822750,0.089275121688843,L, + 169349246000,0.088938117027283,L, + 171273669250,0.088618159294128,L, + 173198092500,0.088316440582275,L, + 175122515750,0.088034152984619,L, + 177046939000,0.087772846221924,L, + 178971362250,0.087532997131348,L, + 180895785500,0.087315797805786,L, + 182820208750,0.087121605873108,L, + 184744632000,0.086950659751892,L, + 186669055250,0.086802363395691,L, + 188593478500,0.086676597595215,L, + 190517901750,0.086571574211121,L, + 192442325000,0.086485862731934,L, + 194366748250,0.086417913436890,L, + 196291171500,0.086365342140198,L, + 198215594750,0.086326241493225,L, + 200140018000,0.086297988891602,L, + 202064441250,0.086278796195984,L, + 203988864500,0.086266636848450,L, + 205913287750,0.086259603500366,L, + 207837711000,0.086256265640259,L, + 209762134250,0.086255073547363,L, + 211686557500,0.086254954338074,L, + 213610980750,0.086338877677917,L, + 215535404000,0.086592435836792,L, + 217459827250,0.087016463279724,L, + 219384250500,0.087609171867371,L, + 221308673750,0.088363766670227,L, + 223233097000,0.089269876480103,L, + 225157520250,0.090310573577881,L, + 227081943500,0.091464042663574,L, + 229006366750,0.092702865600586,L, + 230930790000,0.093994736671448,L, + 232855213250,0.095304846763611,L, + 234779636500,0.096596837043762,L, + 236704059750,0.097835540771484,L, + 238628483000,0.098989129066467,L, + 240552906250,0.100029945373535,L, + 242477329500,0.100935816764832,L, + 244401752750,0.101690649986267,L, + 246326176000,0.102283120155334,L, + 248250599250,0.102707386016846,L, + 250175022500,0.102960824966431,L, + 252099445750,0.103044748306274,L, + 254023869000,0.102550029754639,L, + 255948292250,0.101054072380066,L, + 257872715500,0.098561286926270,L, + 259797138750,0.095112562179565,L, + 261721562000,0.090796709060669,L, + 263645985250,0.085758566856384,L, + 265570408500,0.080198526382446,L, + 269419255000,0.068529367446899,L, + 271343678250,0.062969207763672,L, + 273268101500,0.057931065559387,L, + 275192524750,0.053615450859070,L, + 277116948000,0.050166487693787,L, + 279041371250,0.047673702239990,L, + 280965794500,0.046177864074707,L, + 282890217750,0.045683145523071,L, + 284814641000,0.045799612998962,L, + 286739064250,0.046151161193848,L, + 288663487500,0.046739816665649,L, + 290587910750,0.047564506530762,L, + 292512334000,0.048620700836182,L, + 294436757250,0.049900054931641,L, + 296361180500,0.051388859748840,L, + 298285603750,0.053068041801453,L, + 300210027000,0.054913640022278,L, + 302134450250,0.056895494461060,L, + 304058873500,0.058978557586670,L, + 305983296750,0.061124324798584,L, + 307907720000,0.063290953636169,L, + 309832143250,0.065436720848083,L, + 311756566500,0.067519783973694,L, + 313680989750,0.069501638412476,L, + 315605413000,0.071347236633301,L, + 317529836250,0.073026418685913,L, + 319454259500,0.074515223503113,L, + 321378682750,0.075794577598572,L, + 323303106000,0.076850891113281,L, + 325227529250,0.077675580978394,L, + 327151952500,0.078264117240906,L, + 329076375750,0.078615665435791,L, + 331000799000,0.078732132911682,L, + 344471761750,0.078732132911682,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -4.750565614919000 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-4.750565614919000,L, + 1924423250,-4.750566468692647,L, + 3848846500,-4.750566468692647,L, + 5773269750,-4.750566895579470,L, + 11546539500,-4.750565614919000,L, + 13470962750,-4.750566041805824,L, + 15395386000,-4.750565614919000,L, + 19244232500,-4.750566468692647,L, + 21168655750,-4.750566041805824,L, + 23093079000,-4.750565188032177,L, + 25017502250,-4.750566468692647,L, + 26941925500,-4.750565614919000,L, + 28866348750,-4.750565614919000,L, + 30790772000,-4.750566041805824,L, + 32715195250,-4.750565614919000,L, + 34639618500,-4.750566468692647,L, + 36564041750,-4.750565614919000,L, + 38488465000,-4.750566041805824,L, + 40412888250,-4.750566041805824,L, + 42337311500,-4.750566468692647,L, + 44261734750,-4.750566041805824,L, + 46186158000,-4.750566041805824,L, + 50035004500,-4.750565188032177,L, + 51959427750,-4.750565614919000,L, + 55808274250,-4.750565614919000,L, + 57732697500,-4.750566468692647,L, + 59657120750,-4.750566468692647,L, + 61581544000,-4.750565614919000,L, + 63505967250,-4.750566041805824,L, + 65430390500,-4.750565188032177,L, + 67354813750,-4.750565614919000,L, + 71203660250,-4.750565614919000,L, + 75052506750,-4.750566468692647,L, + 78901353250,-4.750565614919000,L, + 80825776500,-4.750566041805824,L, + 88523469500,-4.750566041805824,L, + 90447892750,-4.750566468692647,L, + 92372316000,-4.750565614919000,L, + 94296739250,-4.750565614919000,L, + 96221162500,-4.750566041805824,L, + 98145585750,-4.750565188032177,L, + 100070009000,-4.750565188032177,L, + 101994432250,-4.750565614919000,L, + 103918855500,-4.750565188032177,L, + 105843278750,-4.750565188032177,L, + 109692125250,-4.750566041805824,L, + 111616548500,-4.750565614919000,L, + 113540971750,-4.750566041805824,L, + 115465395000,-4.750566041805824,L, + 117389818250,-4.750565614919000,L, + 119314241500,-4.750565614919000,L, + 121238664750,-4.750566468692647,L, + 123163088000,-4.750566041805824,L, + 125087511250,-4.750566041805824,L, + 127011934500,-4.750565614919000,L, + 128936357750,-4.750565614919000,L, + 130860781000,-4.750566468692647,L, + 132785204250,-4.750566041805824,L, + 136634050750,-4.750566041805824,L, + 138558474000,-4.750566468692647,L, + 140482897250,-4.750567322466293,L, + 144331743750,-4.750567322466293,L, + 146256167000,-4.750566895579470,L, + 148180590250,-4.750567749353116,L, + 150105013500,-4.750567322466293,L, + 152029436750,-4.750568176239939,L, + 153953860000,-4.750567749353116,L, + 155878283250,-4.750566895579470,L, + 157802706500,-4.750567322466293,L, + 159727129750,-4.750567322466293,L, + 161651553000,-4.750566895579470,L, + 163575976250,-4.750567749353116,L, + 167424822750,-4.750566895579470,L, + 171273669250,-4.750566895579470,L, + 173198092500,-4.750567749353116,L, + 175122515750,-4.750567322466293,L, + 177046939000,-4.750567322466293,L, + 178971362250,-4.750566041805824,L, + 182820208750,-4.750567749353116,L, + 186669055250,-4.750566895579470,L, + 188593478500,-4.750567322466293,L, + 190517901750,-4.750566895579470,L, + 192442325000,-4.750567749353116,L, + 194366748250,-4.750566468692647,L, + 196291171500,-4.750567322466293,L, + 198215594750,-4.750566895579470,L, + 200140018000,-4.750567322466293,L, + 202064441250,-4.750567322466293,L, + 203988864500,-4.750567749353116,L, + 205913287750,-4.750567322466293,L, + 207837711000,-4.750567749353116,L, + 209762134250,-4.750567322466293,L, + 215535404000,-4.750567322466293,L, + 217459827250,-4.750566895579470,L, + 219384250500,-4.750567322466293,L, + 221308673750,-4.750566895579470,L, + 223233097000,-4.750567322466293,L, + 225157520250,-4.750566895579470,L, + 227081943500,-4.750566895579470,L, + 229006366750,-4.750567322466293,L, + 230930790000,-4.750566895579470,L, + 232855213250,-4.750567322466293,L, + 234779636500,-4.750566895579470,L, + 236704059750,-4.750567749353116,L, + 240552906250,-4.750566895579470,L, + 246326176000,-4.750566895579470,L, + 250175022500,-4.750567749353116,L, + 252099445750,-4.750567322466293,L, + 257872715500,-4.750567322466293,L, + 259797138750,-4.750566895579470,L, + 261721562000,-4.750567749353116,L, + 263645985250,-4.750566468692647,L, + 265570408500,-4.750567749353116,L, + 269419255000,-4.750566895579470,L, + 271343678250,-4.750567322466293,L, + 273268101500,-4.750567322466293,L, + 275192524750,-4.750566468692647,L, + 277116948000,-4.750566041805824,L, + 279041371250,-4.750566468692647,L, + 280965794500,-4.750567749353116,L, + 282890217750,-4.750567322466293,L, + 284814641000,-4.750567749353116,L, + 286739064250,-4.750567322466293,L, + 288663487500,-4.750568176239939,L, + 290587910750,-4.750567322466293,L, + 292512334000,-4.750566895579470,L, + 294436757250,-4.750567322466293,L, + 296361180500,-4.750566468692647,L, + 298285603750,-4.750566468692647,L, + 300210027000,-4.750567749353116,L, + 305983296750,-4.750566468692647,L, + 307907720000,-4.750567322466293,L, + 309832143250,-4.750567749353116,L, + 311756566500,-4.750567749353116,L, + 315605413000,-4.750566895579470,L, + 317529836250,-4.750567322466293,L, + 319454259500,-4.750567322466293,L, + 321378682750,-4.750567749353116,L, + 323303106000,-4.750567322466293,L, + 325227529250,-4.750567322466293,L, + 327151952500,-4.750567749353116,L, + 329076375750,-4.750567322466293,L, + 331000799000,-4.750567749353116,L, + 344471761750,-4.750567749353116,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -1.754853289413880 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-1.754853289413880,L, + 1924423250,-1.754853289413880,L, + 3848846500,-1.754852969248763,L, + 5773269750,-1.754853396135586,L, + 7697693000,-1.754853289413880,L, + 9622116250,-1.754853075970469,L, + 11546539500,-1.754853075970469,L, + 13470962750,-1.754853289413880,L, + 15395386000,-1.754853289413880,L, + 17319809250,-1.754853182692175,L, + 21168655750,-1.754853182692175,L, + 23093079000,-1.754853075970469,L, + 26941925500,-1.754853075970469,L, + 30790772000,-1.754853289413880,L, + 32715195250,-1.754852969248763,L, + 34639618500,-1.754853502857292,L, + 36564041750,-1.754853182692175,L, + 38488465000,-1.754853182692175,L, + 40412888250,-1.754853396135586,L, + 42337311500,-1.754853396135586,L, + 44261734750,-1.754853182692175,L, + 48110581250,-1.754853182692175,L, + 50035004500,-1.754853289413880,L, + 53883851000,-1.754853075970469,L, + 55808274250,-1.754853182692175,L, + 57732697500,-1.754853182692175,L, + 59657120750,-1.754853289413880,L, + 65430390500,-1.754852969248763,L, + 67354813750,-1.754853075970469,L, + 69279237000,-1.754853396135586,L, + 71203660250,-1.754853182692175,L, + 73128083500,-1.754853182692175,L, + 75052506750,-1.754853289413880,L, + 76976930000,-1.754853075970469,L, + 78901353250,-1.754853075970469,L, + 80825776500,-1.754853289413880,L, + 82750199750,-1.754853289413880,L, + 84674623000,-1.754853182692175,L, + 86599046250,-1.754853182692175,L, + 88523469500,-1.754853075970469,L, + 90447892750,-1.754853182692175,L, + 92372316000,-1.754853182692175,L, + 94296739250,-1.754853075970469,L, + 96221162500,-1.754853289413880,L, + 98145585750,-1.754853289413880,L, + 100070009000,-1.754852969248763,L, + 101994432250,-1.754853182692175,L, + 105843278750,-1.754853182692175,L, + 107767702000,-1.754853075970469,L, + 111616548500,-1.754853075970469,L, + 113540971750,-1.754853182692175,L, + 115465395000,-1.754853075970469,L, + 117389818250,-1.754853289413880,L, + 119314241500,-1.754853182692175,L, + 121238664750,-1.754853289413880,L, + 123163088000,-1.754853075970469,L, + 125087511250,-1.754853289413880,L, + 127011934500,-1.754853182692175,L, + 130860781000,-1.754853182692175,L, + 132785204250,-1.754852969248763,L, + 134709627500,-1.754853289413880,L, + 136634050750,-1.754853182692175,L, + 138558474000,-1.754853396135586,L, + 140482897250,-1.754853716300704,L, + 142407320500,-1.754853929744115,L, + 144331743750,-1.754854036465821,L, + 150105013500,-1.754853716300704,L, + 153953860000,-1.754853929744115,L, + 155878283250,-1.754853823022409,L, + 159727129750,-1.754854036465821,L, + 161651553000,-1.754853929744115,L, + 163575976250,-1.754853929744115,L, + 165500399500,-1.754854036465821,L, + 167424822750,-1.754853929744115,L, + 171273669250,-1.754853929744115,L, + 173198092500,-1.754853823022409,L, + 175122515750,-1.754853823022409,L, + 177046939000,-1.754853929744115,L, + 178971362250,-1.754853823022409,L, + 180895785500,-1.754854036465821,L, + 182820208750,-1.754854036465821,L, + 184744632000,-1.754853823022409,L, + 186669055250,-1.754853929744115,L, + 188593478500,-1.754853929744115,L, + 192442325000,-1.754854143187527,L, + 196291171500,-1.754853716300704,L, + 198215594750,-1.754853929744115,L, + 202064441250,-1.754853716300704,L, + 203988864500,-1.754854143187527,L, + 205913287750,-1.754854036465821,L, + 207837711000,-1.754853823022409,L, + 209762134250,-1.754853716300704,L, + 211686557500,-1.754853823022409,L, + 213610980750,-1.754854036465821,L, + 215535404000,-1.754853929744115,L, + 217459827250,-1.754853929744115,L, + 219384250500,-1.754854036465821,L, + 221308673750,-1.754853929744115,L, + 225157520250,-1.754853929744115,L, + 227081943500,-1.754853716300704,L, + 229006366750,-1.754853929744115,L, + 234779636500,-1.754853929744115,L, + 236704059750,-1.754854036465821,L, + 238628483000,-1.754853823022409,L, + 240552906250,-1.754853929744115,L, + 242477329500,-1.754853716300704,L, + 244401752750,-1.754853823022409,L, + 246326176000,-1.754853716300704,L, + 250175022500,-1.754853929744115,L, + 254023869000,-1.754853716300704,L, + 255948292250,-1.754853823022409,L, + 257872715500,-1.754853716300704,L, + 259797138750,-1.754853716300704,L, + 261721562000,-1.754853823022409,L, + 263645985250,-1.754853823022409,L, + 265570408500,-1.754854036465821,L, + 267494831750,-1.754853929744115,L, + 269419255000,-1.754854036465821,L, + 271343678250,-1.754853823022409,L, + 273268101500,-1.754853716300704,L, + 275192524750,-1.754853929744115,L, + 277116948000,-1.754854036465821,L, + 279041371250,-1.754853823022409,L, + 280965794500,-1.754853823022409,L, + 282890217750,-1.754853929744115,L, + 286739064250,-1.754853929744115,L, + 288663487500,-1.754853716300704,L, + 290587910750,-1.754854143187527,L, + 292512334000,-1.754853929744115,L, + 304058873500,-1.754853929744115,L, + 307907720000,-1.754854143187527,L, + 309832143250,-1.754853929744115,L, + 311756566500,-1.754853929744115,L, + 313680989750,-1.754854143187527,L, + 315605413000,-1.754854143187527,L, + 317529836250,-1.754854036465821,L, + 319454259500,-1.754854143187527,L, + 321378682750,-1.754853929744115,L, + 323303106000,-1.754854143187527,L, + 325227529250,-1.754853716300704,L, + 327151952500,-1.754854036465821,L, + 329076375750,-1.754854143187527,L, + 331000799000,-1.754853823022409,L, + 344471761750,-1.754853823022409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 73.496933582733604 + KeyVer: 4005 + KeyCount: 118 + Key: + 0,73.496933582733604,L, + 1924423250,73.283824850440340,L, + 3848846500,72.639574087168981,L, + 5773269750,71.562904047544748,L, + 7697693000,70.062775939758666,L, + 9622116250,68.161360557856568,L, + 11546539500,65.896462998894421,L, + 13470962750,63.323325832879213,L, + 15395386000,60.514424197093845,L, + 17319809250,57.557177682725182,L, + 19244232500,54.549268240188020,L, + 21168655750,51.592025140913947,L, + 23093079000,48.783116674939407,L, + 25017502250,46.209989754207960,L, + 26941925500,43.945099025434985,L, + 28866348750,42.043669983154544,L, + 30790772000,40.543538460273872,L, + 32715195250,39.466875250838804,L, + 34639618500,38.822627902662028,L, + 36564041750,38.609512340179599,L, + 38488465000,38.609522585463353,L, + 40412888250,38.609570396787547,L, + 42337311500,38.609696755287189,L, + 44261734750,38.609963132664816,L, + 46186158000,38.610424170433795,L, + 48110581250,38.611131095012887,L, + 50035004500,38.612145378104636,L, + 51959427750,38.613548981979072,L, + 53883851000,38.615403378338726,L, + 55808274250,38.617800774737397,L, + 57732697500,38.620819718350539,L, + 59657120750,38.624552416731945,L, + 61581544000,38.629077417057069,L, + 63505967250,38.634490341974299,L, + 65430390500,38.640886814132010,L, + 67354813750,38.648365871273157,L, + 69279237000,38.656999230384045,L, + 71203660250,38.666875683923870,L, + 73128083500,38.678087439446429,L, + 75052506750,38.690675478086746,L, + 76976930000,38.704732007398611,L, + 78901353250,38.720287763233294,L, + 80825776500,38.737393972009563,L, + 82750199750,38.756081369578695,L, + 84674623000,38.776370446508189,L, + 86599046250,38.798264617892627,L, + 88523469500,38.821763883732025,L, + 90447892750,38.846861413837203,L, + 92372316000,38.873523057262304,L, + 94296739250,38.901731738534423,L, + 96221162500,38.931443061423934,L, + 98145585750,38.962622874984994,L, + 100070009000,38.995230198082588,L, + 101994432250,39.029193313730431,L, + 103918855500,39.064481486077248,L, + 105843278750,39.101036658515106,L, + 107767702000,39.138804189530639,L, + 109692125250,39.177726022515898,L, + 111616548500,39.217750931052116,L, + 113540971750,39.258827688720515,L, + 115465395000,39.526079330564386,L, + 117389818250,40.249478325937737,L, + 119314241500,41.422573561169500,L, + 121238664750,43.014840920858923,L, + 123163088000,44.965010193056500,L, + 125087511250,47.178138333204608,L, + 127011934500,49.529519747437327,L, + 128936357750,51.876727916087177,L, + 130860781000,54.077664168566834,L, + 132785204250,56.008172741238553,L, + 134709627500,57.574205344325996,L, + 136634050750,58.715509464065981,L, + 138558474000,59.402524041730729,L, + 140482897250,59.629757605227553,L, + 144331743750,59.629757605227553,L, + 146256167000,59.629764435416725,L, + 148180590250,59.629757605227553,L, + 153953860000,59.629757605227553,L, + 155878283250,59.629750775038382,L, + 157802706500,59.629757605227553,L, + 207837711000,59.629757605227553,L, + 209762134250,59.629764435416725,L, + 211686557500,59.629757605227553,L, + 240552906250,59.629757605227553,L, + 242477329500,59.629750775038382,L, + 244401752750,59.629757605227553,L, + 246326176000,59.629750775038382,L, + 248250599250,59.629757605227553,L, + 273268101500,59.629757605227553,L, + 275192524750,59.629764435416725,L, + 277116948000,59.629757605227553,L, + 282890217750,59.629757605227553,L, + 284814641000,59.707922290089066,L, + 286739064250,59.944035099506898,L, + 288663487500,60.339339127909987,L, + 290587910750,60.893178677138017,L, + 292512334000,61.602562124334519,L, + 294436757250,62.461656487948318,L, + 296361180500,63.461418597518332,L, + 298285603750,64.589164791755863,L, + 300210027000,65.828495786463719,L, + 302134450250,67.159337655671280,L, + 304058873500,68.558262850525438,L, + 305983296750,69.999186878585931,L, + 307907720000,71.454331360498372,L, + 309832143250,72.895269048937223,L, + 311756566500,74.294187413602202,L, + 313680989750,75.625036112998927,L, + 315605413000,76.864360277517619,L, + 317529836250,77.992113301944315,L, + 319454259500,78.991861751135986,L, + 321378682750,79.850969775128135,L, + 323303106000,80.560353222324636,L, + 325227529250,81.114179111174323,L, + 327151952500,81.509483139577412,L, + 329076375750,81.745595948995245,L, + 331000799000,81.823767464045929,L, + 344471761750,81.823767464045929,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.674333870410919 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.674333870410919,L, + 1924423250,0.675470530986786,L, + 3848846500,0.678906798362732,L, + 5773269750,0.684649288654327,L, + 7697693000,0.692650377750397,L, + 9622116250,0.702791988849640,L, + 11546539500,0.714872002601624,L, + 13470962750,0.728596031665802,L, + 15395386000,0.743577778339386,L, + 17319809250,0.759350657463074,L, + 19244232500,0.775393664836884,L, + 21168655750,0.791166484355927,L, + 23093079000,0.806148231029510,L, + 25017502250,0.819872319698334,L, + 26941925500,0.831952393054962,L, + 28866348750,0.842093944549561,L, + 30790772000,0.850094974040985,L, + 32715195250,0.855837643146515,L, + 34639618500,0.859273791313171,L, + 36564041750,0.860410392284393,L, + 38488465000,0.859652400016785,L, + 40412888250,0.857359886169434,L, + 42337311500,0.853519678115845,L, + 44261734750,0.848143517971039,L, + 46186158000,0.841273784637451,L, + 48110581250,0.832990765571594,L, + 50035004500,0.823418140411377,L, + 51959427750,0.812725424766541,L, + 53883851000,0.801128268241882,L, + 55808274250,0.788882970809937,L, + 57732697500,0.776278018951416,L, + 59657120750,0.763618648052216,L, + 61581544000,0.751211643218994,L, + 63505967250,0.739348411560059,L, + 65430390500,0.728291034698486,L, + 67354813750,0.718261957168579,L, + 69279237000,0.709438741207123,L, + 71203660250,0.701953470706940,L, + 73128083500,0.695894777774811,L, + 75052506750,0.691313564777374,L, + 76976930000,0.688229203224182,L, + 78901353250,0.686635494232178,L, + 80825776500,0.685843944549561,L, + 82750199750,0.685181856155396,L, + 84674623000,0.684649109840393,L, + 86599046250,0.684242546558380,L, + 88523469500,0.683954060077667,L, + 90447892750,0.683770418167114,L, + 92372316000,0.683672368526459,L, + 94296739250,0.683635354042053,L, + 98145585750,0.683624505996704,L, + 100070009000,0.683587610721588,L, + 101994432250,0.683489501476288,L, + 103918855500,0.683305799961090,L, + 105843278750,0.683017313480377,L, + 107767702000,0.682610750198364,L, + 109692125250,0.682078063488007,L, + 111616548500,0.681415855884552,L, + 113540971750,0.680624365806580,L, + 115465395000,0.679479598999023,L, + 117389818250,0.677726089954376,L, + 119314241500,0.675328314304352,L, + 121238664750,0.672270417213440,L, + 123163088000,0.668566048145294,L, + 125087511250,0.664267301559448,L, + 127011934500,0.659467458724976,L, + 128936357750,0.654294431209564,L, + 130860781000,0.648896217346191,L, + 132785204250,0.643420755863190,L, + 134709627500,0.637999415397644,L, + 136634050750,0.632736384868622,L, + 138558474000,0.627705752849579,L, + 140482897250,0.622954726219177,L, + 142407320500,0.617972970008850,L, + 144331743750,0.612256050109863,L, + 146256167000,0.605882942676544,L, + 148180590250,0.598998248577118,L, + 150105013500,0.591822087764740,L, + 152029436750,0.584643304347992,L, + 153953860000,0.577791452407837,L, + 155878283250,0.571591436862946,L, + 157802706500,0.566314399242401,L, + 159727129750,0.562146782875061,L, + 161651553000,0.559182524681091,L, + 163575976250,0.557437539100647,L, + 165500399500,0.556871056556702,L, + 167424822750,0.557141244411469,L, + 169349246000,0.557957351207733,L, + 171273669250,0.559323668479919,L, + 173198092500,0.561236858367920,L, + 175122515750,0.563684821128845,L, + 177046939000,0.566644489765167,L, + 178971362250,0.570080280303955,L, + 180895785500,0.573942959308624,L, + 182820208750,0.578169465065002,L, + 184744632000,0.582683145999908,L, + 186669055250,0.587395191192627,L, + 188593478500,0.592208921909332,L, + 190517901750,0.597022593021393,L, + 192442325000,0.601734757423401,L, + 194366748250,0.606248319149017,L, + 196291171500,0.610474824905396,L, + 198215594750,0.614337563514709,L, + 200140018000,0.617773354053497,L, + 202064441250,0.620733022689819,L, + 203988864500,0.623180925846100,L, + 205913287750,0.625094115734100,L, + 207837711000,0.626460373401642,L, + 209762134250,0.627276539802551,L, + 211686557500,0.627546727657318,L, + 213610980750,0.626874685287476,L, + 215535404000,0.624843478202820,L, + 217459827250,0.621445775032043,L, + 219384250500,0.616699099540710,L, + 221308673750,0.610653460025787,L, + 223233097000,0.603396415710449,L, + 225157520250,0.595059394836426,L, + 227081943500,0.585819303989410,L, + 229006366750,0.575896263122559,L, + 230930790000,0.565547049045563,L, + 232855213250,0.555053055286407,L, + 234779636500,0.544703900814056,L, + 236704059750,0.534780979156494,L, + 238628483000,0.525540828704834,L, + 240552906250,0.517203807830811,L, + 242477329500,0.509946882724762,L, + 244401752750,0.503901004791260,L, + 246326176000,0.499154508113861,L, + 248250599250,0.495756745338440,L, + 250175022500,0.493725597858429,L, + 252099445750,0.493053525686264,L, + 254023869000,0.493055433034897,L, + 255948292250,0.493069976568222,L, + 257872715500,0.493112981319427,L, + 259797138750,0.493203848600388,L, + 261721562000,0.493365287780762,L, + 263645985250,0.493622690439224,L, + 265570408500,0.494001597166061,L, + 267494831750,0.494525879621506,L, + 269419255000,0.495214670896530,L, + 271343678250,0.496080458164215,L, + 273268101500,0.497127920389175,L, + 275192524750,0.498354524374008,L, + 277116948000,0.499751746654510,L, + 279041371250,0.501307070255280,L, + 280965794500,0.503005683422089,L, + 282890217750,0.504832386970520,L, + 284814641000,0.506922125816345,L, + 286739064250,0.509420752525330,L, + 288663487500,0.512325823307037,L, + 290587910750,0.515629053115845,L, + 292512334000,0.519315123558044,L, + 294436757250,0.523360073566437,L, + 296361180500,0.527730762958527,L, + 298285603750,0.532384216785431,L, + 300210027000,0.537266612052917,L, + 302134450250,0.542314767837524,L, + 304058873500,0.547457039356232,L, + 305983296750,0.552615761756897,L, + 307907720000,0.557709574699402,L, + 309832143250,0.562657713890076,L, + 311756566500,0.567382454872131,L, + 313680989750,0.571812868118286,L, + 315605413000,0.575887024402618,L, + 317529836250,0.579553604125977,L, + 319454259500,0.582772433757782,L, + 321378682750,0.585514724254608,L, + 323303106000,0.587761580944061,L, + 325227529250,0.589503943920135,L, + 327151952500,0.590739727020264,L, + 329076375750,0.591473937034607,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.643071591854095 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.643071591854095,L, + 1924423250,0.644385993480682,L, + 3848846500,0.648359358310699,L, + 5773269750,0.654999673366547,L, + 7697693000,0.664251744747162,L, + 9622116250,0.675978839397430,L, + 11546539500,0.689947545528412,L, + 13470962750,0.705817341804504,L, + 15395386000,0.723141312599182,L, + 17319809250,0.741380095481873,L, + 19244232500,0.759931385517120,L, + 21168655750,0.778170108795166,L, + 23093079000,0.795494258403778,L, + 25017502250,0.811363875865936,L, + 26941925500,0.825332522392273,L, + 28866348750,0.837059676647186,L, + 30790772000,0.846311807632446,L, + 32715195250,0.852952241897583,L, + 34639618500,0.856925487518311,L, + 36564041750,0.858239889144897,L, + 38488465000,0.857487201690674,L, + 40412888250,0.855210781097412,L, + 42337311500,0.851398110389709,L, + 44261734750,0.846060574054718,L, + 46186158000,0.839241087436676,L, + 48110581250,0.831019699573517,L, + 50035004500,0.821519255638123,L, + 51959427750,0.810908675193787,L, + 53883851000,0.799402773380280,L, + 55808274250,0.787256419658661,L, + 57732697500,0.774756193161011,L, + 59657120750,0.762205660343170,L, + 61581544000,0.749909698963165,L, + 63505967250,0.738157808780670,L, + 65430390500,0.727210342884064,L, + 67354813750,0.717288196086884,L, + 69279237000,0.708567500114441,L, + 71203660250,0.701179087162018,L, + 73128083500,0.695210814476013,L, + 75052506750,0.690713107585907,L, + 76976930000,0.687704980373383,L, + 78901353250,0.686179935932159,L, + 80825776500,0.685448467731476,L, + 82750199750,0.684836506843567,L, + 84674623000,0.684344112873077,L, + 86599046250,0.683968186378479,L, + 88523469500,0.683701694011688,L, + 90447892750,0.683531939983368,L, + 92372316000,0.683441400527954,L, + 94296739250,0.683407127857208,L, + 96221162500,0.683402180671692,L, + 98145585750,0.683397293090820,L, + 100070009000,0.683362960815430,L, + 101994432250,0.683272361755371,L, + 103918855500,0.683102607727051,L, + 105843278750,0.682836115360260,L, + 107767702000,0.682460308074951,L, + 109692125250,0.681967914104462,L, + 111616548500,0.681355893611908,L, + 113540971750,0.680624425411224,L, + 115465395000,0.679548859596252,L, + 117389818250,0.677873134613037,L, + 119314241500,0.675560891628265,L, + 121238664750,0.672594487667084,L, + 123163088000,0.668985605239868,L, + 125087511250,0.664782822132111,L, + 127011934500,0.660076022148132,L, + 128936357750,0.654989421367645,L, + 130860781000,0.649667203426361,L, + 132785204250,0.644255399703979,L, + 134709627500,0.638883173465729,L, + 136634050750,0.633654117584229,L, + 138558474000,0.628642261028290,L, + 140482897250,0.623895525932312,L, + 142407320500,0.618899166584015,L, + 144331743750,0.613143444061279,L, + 146256167000,0.606707513332367,L, + 148180590250,0.599738359451294,L, + 150105013500,0.592460095882416,L, + 152029436750,0.585167527198792,L, + 153953860000,0.578198194503784,L, + 155878283250,0.571885108947754,L, + 157802706500,0.566507041454315,L, + 159727129750,0.562256515026093,L, + 161651553000,0.559231460094452,L, + 163575976250,0.557449758052826,L, + 165500399500,0.556871116161346,L, + 167424822750,0.557139098644257,L, + 169349246000,0.557948291301727,L, + 171273669250,0.559303164482117,L, + 173198092500,0.561200261116028,L, + 175122515750,0.563627719879150,L, + 177046939000,0.566562473773956,L, + 178971362250,0.569969475269318,L, + 180895785500,0.573799848556519,L, + 182820208750,0.577990829944611,L, + 184744632000,0.582466542720795,L, + 186669055250,0.587139129638672,L, + 188593478500,0.591912329196930,L, + 190517901750,0.596685707569122,L, + 192442325000,0.601358354091644,L, + 194366748250,0.605834126472473,L, + 196291171500,0.610025048255920,L, + 198215594750,0.613855421543121,L, + 200140018000,0.617262363433838,L, + 202064441250,0.620197117328644,L, + 203988864500,0.622624576091766,L, + 205913287750,0.624521732330322,L, + 207837711000,0.625876426696777,L, + 209762134250,0.626685738563538,L, + 211686557500,0.626953661441803,L, + 213610980750,0.626342117786407,L, + 215535404000,0.624493718147278,L, + 217459827250,0.621401727199554,L, + 219384250500,0.617082297801971,L, + 221308673750,0.611580610275269,L, + 223233097000,0.604976594448090,L, + 225157520250,0.597389757633209,L, + 227081943500,0.588981091976166,L, + 229006366750,0.579950869083405,L, + 230930790000,0.570533096790314,L, + 232855213250,0.560983240604401,L, + 234779636500,0.551565468311310,L, + 236704059750,0.542535305023193,L, + 238628483000,0.534126639366150,L, + 240552906250,0.526539742946625,L, + 242477329500,0.519935846328735,L, + 244401752750,0.514434099197388,L, + 246326176000,0.510114669799805,L, + 248250599250,0.507022678852081,L, + 250175022500,0.505174219608307,L, + 252099445750,0.504562616348267,L, + 254023869000,0.506176292896271,L, + 255948292250,0.511054754257202,L, + 257872715500,0.519185125827789,L, + 259797138750,0.530433237552643,L, + 261721562000,0.544508755207062,L, + 263645985250,0.560940802097321,L, + 265570408500,0.579074740409851,L, + 269419255000,0.617132663726807,L, + 271343678250,0.635266721248627,L, + 273268101500,0.651698708534241,L, + 275192524750,0.665774285793304,L, + 277116948000,0.677022337913513,L, + 279041371250,0.685152709484100,L, + 280965794500,0.690031111240387,L, + 282890217750,0.691644787788391,L, + 284814641000,0.691292762756348,L, + 286739064250,0.690229713916779,L, + 288663487500,0.688449859619141,L, + 290587910750,0.685956239700317,L, + 292512334000,0.682762205600739,L, + 294436757250,0.678894042968750,L, + 296361180500,0.674392700195312,L, + 298285603750,0.669315040111542,L, + 300210027000,0.663734853267670,L, + 302134450250,0.657742798328400,L, + 304058873500,0.651444077491760,L, + 305983296750,0.644956290721893,L, + 307907720000,0.638404488563538,L, + 309832143250,0.631916582584381,L, + 311756566500,0.625617861747742,L, + 313680989750,0.619625806808472,L, + 315605413000,0.614045739173889,L, + 317529836250,0.608967959880829,L, + 319454259500,0.604466617107391,L, + 321378682750,0.600598454475403,L, + 323303106000,0.597404479980469,L, + 325227529250,0.594910860061646,L, + 327151952500,0.593130946159363,L, + 329076375750,0.592067897319794,L, + 331000799000,0.591715872287750,L, + 344471761750,0.591715872287750,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.690616309642792 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.690616309642792,L, + 1924423250,0.690148532390594,L, + 3848846500,0.688734173774719,L, + 5773269750,0.686370551586151,L, + 7697693000,0.683077514171600,L, + 9622116250,0.678903222084045,L, + 11546539500,0.673931300640106,L, + 13470962750,0.668282508850098,L, + 15395386000,0.662116169929504,L, + 17319809250,0.655624270439148,L, + 19244232500,0.649021148681641,L, + 21168655750,0.642529129981995,L, + 23093079000,0.636362850666046,L, + 25017502250,0.630714058876038,L, + 26941925500,0.625742077827454,L, + 28866348750,0.621567845344543,L, + 30790772000,0.618274748325348,L, + 32715195250,0.615911126136780,L, + 34639618500,0.614496827125549,L, + 36564041750,0.614028990268707,L, + 38488465000,0.614427208900452,L, + 40412888250,0.615644633769989,L, + 42337311500,0.617711424827576,L, + 44261734750,0.620648622512817,L, + 46186158000,0.624465525150299,L, + 48110581250,0.629155874252319,L, + 50035004500,0.634694278240204,L, + 51959427750,0.641033411026001,L, + 53883851000,0.648102462291718,L, + 55808274250,0.655807495117188,L, + 57732697500,0.664034485816956,L, + 59657120750,0.672653496265411,L, + 61581544000,0.681526780128479,L, + 63505967250,0.690514981746674,L, + 65430390500,0.699485123157501,L, + 67354813750,0.708316326141357,L, + 69279237000,0.716904222965240,L, + 71203660250,0.725162565708160,L, + 73128083500,0.733023762702942,L, + 75052506750,0.740437448024750,L, + 76976930000,0.747368931770325,L, + 78901353250,0.753796875476837,L, + 80825776500,0.760236859321594,L, + 82750199750,0.767197132110596,L, + 84674623000,0.774639368057251,L, + 86599046250,0.782501161098480,L, + 88523469500,0.790693104267120,L, + 90447892750,0.799095392227173,L, + 92372316000,0.807559788227081,L, + 94296739250,0.815914630889893,L, + 96221162500,0.823974847793579,L, + 98145585750,0.831556141376495,L, + 100070009000,0.838489532470703,L, + 101994432250,0.844634771347046,L, + 103918855500,0.849887609481812,L, + 105843278750,0.854183256626129,L, + 107767702000,0.857492446899414,L, + 109692125250,0.859816730022430,L, + 111616548500,0.861180484294891,L, + 113540971750,0.861624300479889,L, + 115465395000,0.861622512340546,L, + 117389818250,0.861608862876892,L, + 119314241500,0.861567795276642,L, + 121238664750,0.861480474472046,L, + 123163088000,0.861324548721313,L, + 125087511250,0.861076056957245,L, + 127011934500,0.860712826251984,L, + 128936357750,0.860216796398163,L, + 130860781000,0.859576761722565,L, + 132785204250,0.858790159225464,L, + 134709627500,0.857861101627350,L, + 136634050750,0.856799781322479,L, + 138558474000,0.855618953704834,L, + 140482897250,0.854332864284515,L, + 142407320500,0.851194798946381,L, + 144331743750,0.844419062137604,L, + 146256167000,0.834094941616058,L, + 148180590250,0.820548534393311,L, + 150105013500,0.804402291774750,L, + 152029436750,0.786586523056030,L, + 153953860000,0.768268883228302,L, + 155878283250,0.750702857971191,L, + 157802706500,0.735041379928589,L, + 159727129750,0.722188293933868,L, + 161651553000,0.712734282016754,L, + 163575976250,0.706972301006317,L, + 165500399500,0.704960942268372,L, + 167424822750,0.704804599285126,L, + 169349246000,0.704655110836029,L, + 171273669250,0.704513192176819,L, + 173198092500,0.704379320144653,L, + 175122515750,0.704254150390625,L, + 177046939000,0.704138159751892,L, + 178971362250,0.704031765460968,L, + 180895785500,0.703935384750366,L, + 182820208750,0.703849315643311,L, + 184744632000,0.703773498535156,L, + 186669055250,0.703707695007324,L, + 188593478500,0.703651845455170,L, + 190517901750,0.703605294227600,L, + 192442325000,0.703567326068878,L, + 194366748250,0.703537106513977,L, + 196291171500,0.703513860702515,L, + 198215594750,0.703496396541595,L, + 200140018000,0.703483998775482,L, + 202064441250,0.703475415706635,L, + 203988864500,0.703470051288605,L, + 205913287750,0.703467011451721,L, + 207837711000,0.703465461730957,L, + 209762134250,0.703464865684509,L, + 211686557500,0.703464806079865,L, + 213610980750,0.704842150211334,L, + 215535404000,0.709004700183868,L, + 217459827250,0.715967714786530,L, + 219384250500,0.725694894790649,L, + 221308673750,0.738084554672241,L, + 223233097000,0.752956509590149,L, + 225157520250,0.770041644573212,L, + 227081943500,0.788977682590485,L, + 229006366750,0.809313297271729,L, + 230930790000,0.830522000789642,L, + 232855213250,0.852027535438538,L, + 234779636500,0.873236179351807,L, + 236704059750,0.893571555614471,L, + 238628483000,0.912507832050323,L, + 240552906250,0.929592907428741,L, + 242477329500,0.944464743137360,L, + 244401752750,0.956854581832886,L, + 246326176000,0.966581821441650,L, + 248250599250,0.973544895648956,L, + 250175022500,0.977707326412201,L, + 252099445750,0.979084610939026,L, + 254023869000,0.979084193706512,L, + 255948292250,0.979081749916077,L, + 257872715500,0.979074180126190,L, + 259797138750,0.979058265686035,L, + 261721562000,0.979029953479767,L, + 263645985250,0.978984832763672,L, + 265570408500,0.978918492794037,L, + 267494831750,0.978826463222504,L, + 269419255000,0.978705823421478,L, + 271343678250,0.978554069995880,L, + 273268101500,0.978370606899261,L, + 275192524750,0.978155672550201,L, + 277116948000,0.977910876274109,L, + 279041371250,0.977638244628906,L, + 280965794500,0.977340698242188,L, + 282890217750,0.977020561695099,L, + 284814641000,0.975905239582062,L, + 286739064250,0.973204314708710,L, + 288663487500,0.968906342983246,L, + 290587910750,0.963019073009491,L, + 292512334000,0.955573976039886,L, + 294436757250,0.946630895137787,L, + 296361180500,0.936282515525818,L, + 298285603750,0.924658060073853,L, + 300210027000,0.911923766136169,L, + 302134450250,0.898283541202545,L, + 304058873500,0.883974015712738,L, + 305983296750,0.869259178638458,L, + 307907720000,0.854419350624084,L, + 309832143250,0.839741408824921,L, + 311756566500,0.825505077838898,L, + 313680989750,0.811973035335541,L, + 315605413000,0.799380540847778,L, + 317529836250,0.787928819656372,L, + 319454259500,0.777782440185547,L, + 321378682750,0.769067645072937,L, + 323303106000,0.761874735355377,L, + 325227529250,0.756260991096497,L, + 327151952500,0.752255558967590,L, + 329076375750,0.749863862991333,L, + 331000799000,0.749072253704071,L, + 344471761750,0.749072253704071,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_013" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.118672013282776 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.118672013282776,L, + 1924423250,0.119167700409889,L, + 3848846500,0.120678812265396,L, + 5773269750,0.123227819800377,L, + 7697693000,0.126808986067772,L, + 9622116250,0.131381824612617,L, + 11546539500,0.136861875653267,L, + 13470962750,0.143114551901817,L, + 15395386000,0.149959340691566,L, + 17319809250,0.157178714871407,L, + 19244232500,0.164535641670227,L, + 21168655750,0.171793162822723,L, + 23093079000,0.178736776113510,L, + 25017502250,0.185188353061676,L, + 26941925500,0.191011294722557,L, + 28866348750,0.196114301681519,L, + 30790772000,0.200441464781761,L, + 32715195250,0.203970521688461,L, + 34639618500,0.206995800137520,L, + 36564041750,0.209797933697701,L, + 38488465000,0.212347418069839,L, + 40412888250,0.214617475867271,L, + 42337311500,0.216584891080856,L, + 44261734750,0.218235731124878,L, + 46186158000,0.219568967819214,L, + 48110581250,0.220598861575127,L, + 50035004500,0.221353858709335,L, + 51959427750,0.221874624490738,L, + 53883851000,0.222206652164459,L, + 55808274250,0.222398400306702,L, + 57732697500,0.222492873668671,L, + 59657120750,0.222527801990509,L, + 61581544000,0.222534120082855,L, + 63505967250,0.222002536058426,L, + 65430390500,0.220397382974625,L, + 67354813750,0.217751175165176,L, + 69279237000,0.214179798960686,L, + 71203660250,0.209902450442314,L, + 73128083500,0.205241218209267,L, + 75052506750,0.200579524040222,L, + 76976930000,0.196302667260170,L, + 78901353250,0.192730829119682,L, + 80825776500,0.190084606409073,L, + 82750199750,0.188480392098427,L, + 84674623000,0.187948822975159,L, + 180895785500,0.187948822975159,L, + 182820208750,0.187624394893646,L, + 184744632000,0.186646535992622,L, + 186669055250,0.185008734464645,L, + 188593478500,0.182713136076927,L, + 190517901750,0.179770097136497,L, + 192442325000,0.176201164722443,L, + 194366748250,0.172038823366165,L, + 196291171500,0.167330935597420,L, + 198215594750,0.162137314677238,L, + 200140018000,0.156534403562546,L, + 202064441250,0.150610163807869,L, + 203988864500,0.144465073943138,L, + 205913287750,0.138207286596298,L, + 207837711000,0.131949022412300,L, + 209762134250,0.125804409384727,L, + 211686557500,0.119880184531212,L, + 213610980750,0.114276796579361,L, + 215535404000,0.109083622694016,L, + 217459827250,0.104375272989273,L, + 219384250500,0.100213408470154,L, + 221308673750,0.096644014120102,L, + 223233097000,0.093700960278511,L, + 225157520250,0.091405376791954,L, + 227081943500,0.089767575263977,L, + 229006366750,0.088789686560631,L, + 230930790000,0.088465735316277,L, + 232855213250,0.089203640818596,L, + 234779636500,0.091434478759766,L, + 236704059750,0.095166102051735,L, + 238628483000,0.100379630923271,L, + 240552906250,0.107019275426865,L, + 242477329500,0.114989534020424,L, + 244401752750,0.124145776033401,L, + 246326176000,0.134294405579567,L, + 248250599250,0.145192846655846,L, + 250175022500,0.156558960676193,L, + 252099445750,0.168084353208542,L, + 254023869000,0.179450958967209,L, + 255948292250,0.190348953008652,L, + 257872715500,0.200497224926949,L, + 259797138750,0.209654018282890,L, + 261721562000,0.217624127864838,L, + 263645985250,0.224264010787010,L, + 265570408500,0.229477167129517,L, + 267494831750,0.233208373188972,L, + 269419255000,0.235439479351044,L, + 271343678250,0.236177459359169,L, + 273268101500,0.235847577452660,L, + 275192524750,0.234839856624603,L, + 277116948000,0.233132794499397,L, + 279041371250,0.230718523263931,L, + 280965794500,0.227604553103447,L, + 282890217750,0.223820343613625,L, + 284814641000,0.219418108463287,L, + 286739064250,0.214477092027664,L, + 288663487500,0.209102034568787,L, + 290587910750,0.203416377305984,L, + 292512334000,0.197555601596832,L, + 294436757250,0.191657617688179,L, + 296361180500,0.185852736234665,L, + 298285603750,0.180256262421608,L, + 300210027000,0.174962952733040,L, + 302134450250,0.170044645667076,L, + 304058873500,0.165553808212280,L, + 305983296750,0.161522671580315,L, + 307907720000,0.157967865467072,L, + 309832143250,0.154593721032143,L, + 311756566500,0.151110380887985,L, + 313680989750,0.147541746497154,L, + 315605413000,0.143921300768852,L, + 317529836250,0.140293195843697,L, + 319454259500,0.136711686849594,L, + 321378682750,0.133239403367043,L, + 323303106000,0.129942774772644,L, + 325227529250,0.126888185739517,L, + 327151952500,0.124133229255676,L, + 329076375750,0.121725544333458,L, + 331000799000,0.119695261120796,L, + 332925222250,0.118057146668434,L, + 334849645500,0.116812527179718,L, + 336774068750,0.115949720144272,L, + 338698492000,0.115449264645576,L, + 340622915250,0.115288391709328,L, + 344471761750,0.115288391709328,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.032573014497757 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,-0.032573014497757,L, + 1924423250,-0.032572060823441,L, + 3848846500,-0.032566085457802,L, + 5773269750,-0.032548278570175,L, + 7697693000,-0.032510712742805,L, + 9622116250,-0.032444402575493,L, + 11546539500,-0.032338976860046,L, + 13470962750,-0.032183274626732,L, + 15395386000,-0.031966969370842,L, + 17319809250,-0.031680777668953,L, + 19244232500,-0.031318798661232,L, + 21168655750,-0.030876874923706,L, + 23093079000,-0.030353888869286,L, + 25017502250,-0.029751732945442,L, + 26941925500,-0.029075056314468,L, + 28866348750,-0.028329223394394,L, + 30790772000,-0.027520030736923,L, + 32715195250,-0.026654630899429,L, + 34639618500,-0.025225013494492,L, + 36564041750,-0.022712081670761,L, + 38488465000,-0.019132703542709,L, + 40412888250,-0.014554530382156,L, + 42337311500,-0.009108066558838,L, + 44261734750,-0.002994567155838,L, + 46186158000,0.003517806529999,L, + 48110581250,0.010112881660461,L, + 50035004500,0.016460031270981,L, + 51959427750,0.022251248359680,L, + 53883851000,0.027231663465500,L, + 55808274250,0.031217336654663,L, + 57732697500,0.034096360206604,L, + 59657120750,0.035820513963699,L, + 61581544000,0.036389231681824,L, + 63505967250,0.035830020904541,L, + 65430390500,0.034141421318054,L, + 67354813750,0.031357198953629,L, + 69279237000,0.027599245309830,L, + 71203660250,0.023099333047867,L, + 73128083500,0.018194377422333,L, + 75052506750,0.013289868831635,L, + 76976930000,0.008789747953415,L, + 78901353250,0.005032062530518,L, + 80825776500,0.002247810363770,L, + 82750199750,0.000558972358704,L, + 84674623000,-0.000000476837158,L, + 180895785500,-0.000000476837158,L, + 182820208750,-0.000332057476044,L, + 184744632000,-0.001334339380264,L, + 186669055250,-0.003012180328369,L, + 188593478500,-0.005364179611206,L, + 190517901750,-0.008379548788071,L, + 192442325000,-0.012036204338074,L, + 194366748250,-0.016300261020660,L, + 196291171500,-0.021124213933945,L, + 198215594750,-0.026445016264915,L, + 200140018000,-0.032185658812523,L, + 202064441250,-0.038255557417870,L, + 203988864500,-0.044551864266396,L, + 207837711000,-0.057374641299248,L, + 209762134250,-0.063670933246613,L, + 211686557500,-0.069740608334541,L, + 213610980750,-0.075481235980988,L, + 215535404000,-0.080802068114281,L, + 217459827250,-0.085625991225243,L, + 219384250500,-0.089890286326408,L, + 221308673750,-0.093546941876411,L, + 223233097000,-0.096562087535858,L, + 225157520250,-0.098914071917534,L, + 227081943500,-0.100591927766800,L, + 229006366750,-0.101594224572182,L, + 230930790000,-0.101926043629646,L, + 232855213250,-0.101464837789536,L, + 234779636500,-0.100069344043732,L, + 236704059750,-0.097731769084930,L, + 238628483000,-0.094461083412170,L, + 240552906250,-0.090287044644356,L, + 242477329500,-0.085266172885895,L, + 244401752750,-0.079483509063721,L, + 246326176000,-0.073055535554886,L, + 248250599250,-0.066128209233284,L, + 250175022500,-0.058873355388641,L, + 252099445750,-0.051479682326317,L, + 254023869000,-0.044142708182335,L, + 255948292250,-0.037053421139717,L, + 257872715500,-0.030387014150620,L, + 259797138750,-0.024294674396515,L, + 261721562000,-0.018898844718933,L, + 263645985250,-0.014291405677795,L, + 265570408500,-0.010535389184952,L, + 267494831750,-0.007667213678360,L, + 269419255000,-0.005702286958694,L, + 271343678250,-0.004638165235519,L, + 273268101500,-0.004036545753479,L, + 275192524750,-0.003469645977020,L, + 277116948000,-0.002940714359283,L, + 279041371250,-0.002453655004501,L, + 280965794500,-0.002011686563492,L, + 282890217750,-0.001617223024368,L, + 284814641000,-0.001272708177567,L, + 286739064250,-0.000977903604507,L, + 288663487500,-0.000732958316803,L, + 290587910750,-0.000534713268280,L, + 292512334000,-0.000380396842957,L, + 294436757250,-0.000264167785645,L, + 296361180500,-0.000180959701538,L, + 298285603750,-0.000124454498291,L, + 300210027000,-0.000088989734650,L, + 302134450250,-0.000068843364716,L, + 304058873500,-0.000059098005295,L, + 305983296750,-0.000055953860283,L, + 307907720000,-0.000055402517319,L, + 309832143250,-0.000303640961647,L, + 311756566500,-0.001055061817169,L, + 313680989750,-0.002308353781700,L, + 315605413000,-0.004047200083733,L, + 317529836250,-0.006235018372536,L, + 319454259500,-0.008810207247734,L, + 321378682750,-0.011686757206917,L, + 323303106000,-0.014754459261894,L, + 325227529250,-0.017888501286507,L, + 327151952500,-0.020956218242645,L, + 329076375750,-0.023832648992538,L, + 331000799000,-0.026407912373543,L, + 332925222250,-0.028595671057701,L, + 334849645500,-0.030334845185280,L, + 336774068750,-0.031587988138199,L, + 338698492000,-0.032338991761208,L, + 340622915250,-0.032587453722954,L, + 344471761750,-0.032587453722954,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.124850630760193 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,-0.124850630760193,L, + 1924423250,-0.124726295471191,L, + 3848846500,-0.124345541000366,L, + 5773269750,-0.123700976371765,L, + 7697693000,-0.122790575027466,L, + 9622116250,-0.121621251106262,L, + 11546539500,-0.120210528373718,L, + 13470962750,-0.118588089942932,L, + 15395386000,-0.116795063018799,L, + 17319809250,-0.114882946014404,L, + 19244232500,-0.112908720970154,L, + 21168655750,-0.110929965972900,L, + 23093079000,-0.109000325202942,L, + 25017502250,-0.107164978981018,L, + 26941925500,-0.105459690093994,L, + 28866348750,-0.103909611701965,L, + 30790772000,-0.102530598640442,L, + 32715195250,-0.101330876350403,L, + 34639618500,-0.100320577621460,L, + 36564041750,-0.099503517150879,L, + 38488465000,-0.098868489265442,L, + 40412888250,-0.098392367362976,L, + 42337311500,-0.098039031028748,L, + 44261734750,-0.097757816314697,L, + 46186158000,-0.097486138343811,L, + 48110581250,-0.097154140472412,L, + 50035004500,-0.096692442893982,L, + 51959427750,-0.096039772033691,L, + 53883851000,-0.095149159431458,L, + 55808274250,-0.093990206718445,L, + 57732697500,-0.092548489570618,L, + 59657120750,-0.090822458267212,L, + 61581544000,-0.088819980621338,L, + 63505967250,-0.085485219955444,L, + 65430390500,-0.079749822616577,L, + 67354813750,-0.071721315383911,L, + 69279237000,-0.061707019805908,L, + 71203660250,-0.050254821777344,L, + 73128083500,-0.038140892982483,L, + 75052506750,-0.026274561882019,L, + 76976930000,-0.015548586845398,L, + 78901353250,-0.006690263748169,L, + 80825776500,-0.000182151794434,L, + 82750199750,0.003738880157471,L, + 84674623000,0.005031585693359,L, + 86599046250,0.003085970878601,L, + 88523469500,-0.002795696258545,L, + 90447892750,-0.012582540512085,L, + 92372316000,-0.026070713996887,L, + 94296739250,-0.042834401130676,L, + 96221162500,-0.062196254730225,L, + 98145585750,-0.083236813545227,L, + 100070009000,-0.104859113693237,L, + 101994432250,-0.125899910926819,L, + 103918855500,-0.145261645317078,L, + 105843278750,-0.162025451660156,L, + 107767702000,-0.175513625144958,L, + 109692125250,-0.185300350189209,L, + 111616548500,-0.191182017326355,L, + 113540971750,-0.193127751350403,L, + 115465395000,-0.192772388458252,L, + 117389818250,-0.191690206527710,L, + 119314241500,-0.189863920211792,L, + 121238664750,-0.187288284301758,L, + 123163088000,-0.183974623680115,L, + 125087511250,-0.179954409599304,L, + 127011934500,-0.175282835960388,L, + 128936357750,-0.170040726661682,L, + 130860781000,-0.164333581924438,L, + 132785204250,-0.158287882804871,L, + 134709627500,-0.152044177055359,L, + 136634050750,-0.145748257637024,L, + 138558474000,-0.139541745185852,L, + 140482897250,-0.133553504943848,L, + 142407320500,-0.127893567085266,L, + 144331743750,-0.122650146484375,L, + 146256167000,-0.117888927459717,L, + 148180590250,-0.113654375076294,L, + 150105013500,-0.109973073005676,L, + 152029436750,-0.106856584548950,L, + 153953860000,-0.104081869125366,L, + 155878283250,-0.101440548896790,L, + 157802706500,-0.098959088325500,L, + 159727129750,-0.096666336059570,L, + 161651553000,-0.094590306282043,L, + 163575976250,-0.092755198478699,L, + 165500399500,-0.091178297996521,L, + 167424822750,-0.089866161346436,L, + 169349246000,-0.088813304901123,L, + 171273669250,-0.088002324104309,L, + 173198092500,-0.087407350540161,L, + 175122515750,-0.086997270584106,L, + 177046939000,-0.086739897727966,L, + 178971362250,-0.086605072021484,L, + 180895785500,-0.086565375328064,L, + 182820208750,-0.086571216583252,L, + 184744632000,-0.086588740348816,L, + 186669055250,-0.086618900299072,L, + 188593478500,-0.086661815643311,L, + 190517901750,-0.086718320846558,L, + 192442325000,-0.086788415908813,L, + 194366748250,-0.086872458457947,L, + 196291171500,-0.086970567703247,L, + 198215594750,-0.087082266807556,L, + 200140018000,-0.087207198143005,L, + 202064441250,-0.087344765663147,L, + 203988864500,-0.087494134902954,L, + 205913287750,-0.087653875350952,L, + 207837711000,-0.087822914123535,L, + 209762134250,-0.087999582290649,L, + 211686557500,-0.088182210922241,L, + 213610980750,-0.088369488716125,L, + 215535404000,-0.088559508323669,L, + 219384250500,-0.088942646980286,L, + 221308673750,-0.089133262634277,L, + 223233097000,-0.089321613311768,L, + 225157520250,-0.089507102966309,L, + 227081943500,-0.089688658714294,L, + 229006366750,-0.089866161346436,L, + 230930790000,-0.090038895606995,L, + 232855213250,-0.090219974517822,L, + 234779636500,-0.090422153472900,L, + 236704059750,-0.090645074844360,L, + 238628483000,-0.090887427330017,L, + 240552906250,-0.091147422790527,L, + 242477329500,-0.091422200202942,L, + 244401752750,-0.091708660125732,L, + 246326176000,-0.092002391815186,L, + 248250599250,-0.092298746109009,L, + 250175022500,-0.092592000961304,L, + 252099445750,-0.092876791954041,L, + 254023869000,-0.093147516250610,L, + 255948292250,-0.093399047851562,L, + 257872715500,-0.093627214431763,L, + 259797138750,-0.093828320503235,L, + 261721562000,-0.093999743461609,L, + 263645985250,-0.094140172004700,L, + 265570408500,-0.094248771667480,L, + 267494831750,-0.094325423240662,L, + 269419255000,-0.094370722770691,L, + 271343678250,-0.094385623931885,L, + 273268101500,-0.093991160392761,L, + 275192524750,-0.092799067497253,L, + 277116948000,-0.090806603431702,L, + 279041371250,-0.088030576705933,L, + 280965794500,-0.084511876106262,L, + 282890217750,-0.080320596694946,L, + 284814641000,-0.075559020042419,L, + 286739064250,-0.070361018180847,L, + 288663487500,-0.064888477325439,L, + 290587910750,-0.059322357177734,L, + 292512334000,-0.053849697113037,L, + 294436757250,-0.048651814460754,L, + 296361180500,-0.043890118598938,L, + 298285603750,-0.039698839187622,L, + 300210027000,-0.036180257797241,L, + 302134450250,-0.033404111862183,L, + 304058873500,-0.031411647796631,L, + 305983296750,-0.030219435691833,L, + 307907720000,-0.029825210571289,L, + 309832143250,-0.030557155609131,L, + 311756566500,-0.032770633697510,L, + 313680989750,-0.036463618278503,L, + 315605413000,-0.041588068008423,L, + 317529836250,-0.048034548759460,L, + 319454259500,-0.055623531341553,L, + 321378682750,-0.064099311828613,L, + 323303106000,-0.073139667510986,L, + 325227529250,-0.082373857498169,L, + 327151952500,-0.091413974761963,L, + 329076375750,-0.099889993667603,L, + 331000799000,-0.107478737831116,L, + 332925222250,-0.113925337791443,L, + 334849645500,-0.119049668312073,L, + 336774068750,-0.122742772102356,L, + 338698492000,-0.124956130981445,L, + 340622915250,-0.125688314437866,L, + 344471761750,-0.125688314437866,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.026921190613567 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.026921190613567,L, + 1924423250,0.030825397446270,L, + 3848846500,0.042629248327558,L, + 5773269750,0.062324735794443,L, + 7697693000,0.089653049705245,L, + 9622116250,0.124033006995653,L, + 11546539500,0.164503945560970,L, + 13470962750,0.209705950725065,L, + 15395386000,0.257917974899654,L, + 17319809250,0.307164065702199,L, + 19244232500,0.355376023175722,L, + 21168655750,0.400578108381096,L, + 23093079000,0.441049060286626,L, + 25017502250,0.475428977556394,L, + 26941925500,0.502757258116664,L, + 28866348750,0.522452855640308,L, + 30790772000,0.534256596464836,L, + 32715195250,0.538160849988286,L, + 34639618500,0.532876898252496,L, + 36564041750,0.516903273578827,L, + 38488465000,0.490324446197407,L, + 40412888250,0.453693394626741,L, + 42337311500,0.408166475229396,L, + 44261734750,0.355583570213040,L, + 46186158000,0.298441247121444,L, + 48110581250,0.239719549505990,L, + 50035004500,0.182577279775246,L, + 51959427750,0.129994454800170,L, + 53883851000,0.084467615444104,L, + 55808274250,0.047836567208491,L, + 57732697500,0.021257576409459,L, + 59657120750,0.005284006347289,L, + 61581544000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.021346052038605 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.021346052038605,L, + 1924423250,0.024441745233470,L, + 3848846500,0.033801165459316,L, + 5773269750,0.049417952769492,L, + 7697693000,0.071086921344418,L, + 9622116250,0.098347226848211,L, + 11546539500,0.130437149775964,L, + 13470962750,0.166278394022783,L, + 15395386000,0.204506282456415,L, + 17319809250,0.243554140435991,L, + 19244232500,0.281782015529410,L, + 21168655750,0.317623246436015,L, + 23093079000,0.349713182703981,L, + 25017502250,0.376973454857242,L, + 26941925500,0.398642523483767,L, + 28866348750,0.414259217412450,L, + 30790772000,0.423618711009469,L, + 32715195250,0.426714334168215,L, + 34639618500,0.422524600081800,L, + 36564041750,0.409859028122234,L, + 38488465000,0.388784159273073,L, + 40412888250,0.359739019951473,L, + 42337311500,0.323640216207965,L, + 44261734750,0.281946580399725,L, + 46186158000,0.236637773488570,L, + 48110581250,0.190076614040498,L, + 50035004500,0.144767727088063,L, + 51959427750,0.103074204671636,L, + 53883851000,0.066975374247701,L, + 55808274250,0.037930228255995,L, + 57732697500,0.016855412767686,L, + 59657120750,0.004189734086415,L, + 61581544000,-0.000000000000000,L, + 344471761750,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -1.393026259288796 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-1.393026259288796,L, + 1924423250,-1.598125634284877,L, + 3848846500,-2.220004433095007,L, + 5773269750,-3.261494302738681,L, + 7697693000,-4.712980791463766,L, + 9622116250,-6.548630843168845,L, + 11546539500,-8.723255499418352,L, + 13470962750,-11.170950264910932,L, + 15395386000,-13.806692091084738,L, + 17319809250,-16.531392008555958,L, + 19244232500,-19.239976948454199,L, + 21168655750,-21.830761615737401,L, + 23093079000,-24.213877796401249,L, + 25017502250,-26.317048428648771,L, + 26941925500,-28.087875716262289,L, + 28866348750,-29.493105175720352,L, + 30790772000,-30.516052362427939,L, + 32715195250,-31.153093861030356,L, + 34639618500,-31.583621174983151,L, + 36564041750,-31.981633373392150,L, + 38488465000,-32.343008437093246,L, + 40412888250,-32.663880479016228,L, + 42337311500,-32.941076876291632,L, + 44261734750,-33.172756892938132,L, + 46186158000,-33.358906868577392,L, + 48110581250,-33.501726124122150,L, + 50035004500,-33.605497188182007,L, + 51959427750,-33.676165740429440,L, + 53883851000,-33.720503913426519,L, + 55808274250,-33.745382877478249,L, + 57732697500,-33.757100066999392,L, + 59657120750,-33.761051331434238,L, + 61581544000,-33.761570425811158,L, + 63505967250,-33.242633143241846,L, + 65430390500,-31.676050709926216,L, + 67354813750,-29.092869750736522,L, + 69279237000,-25.606353585131625,L, + 71203660250,-21.431267266278514,L, + 73128083500,-16.880785212905579,L, + 75052506750,-12.330304013306291,L, + 76976930000,-8.155215986905889,L, + 78901353250,-4.668699821300992,L, + 80825776500,-2.085520569658588,L, + 82750199750,-0.518939577085987,L, + 84674623000,0.000002690045773,L, + 86599046250,0.000002666088715,L, + 88523469500,-0.000002623783369,L, + 90447892750,0.000000000000000,L, + 92372316000,0.000002493401797,L, + 94296739250,0.000000000000000,L, + 96221162500,-0.000002328149742,L, + 98145585750,0.000000000000000,L, + 107767702000,0.000000000000000,L, + 109692125250,-0.000001917994164,L, + 111616548500,0.000000000000000,L, + 113540971750,0.000001897274860,L, + 115465395000,-0.000001899584808,L, + 117389818250,0.000000000000000,L, + 119314241500,-0.000001918749151,L, + 121238664750,-0.000001936087194,L, + 123163088000,0.000000000000000,L, + 128936357750,0.000000000000000,L, + 130860781000,0.000002107194522,L, + 132785204250,0.000000000000000,L, + 134709627500,0.000002213166330,L, + 136634050750,0.000000000000000,L, + 140482897250,0.000000000000000,L, + 142407320500,-0.000002460877699,L, + 144331743750,0.000000000000000,L, + 146256167000,0.000002584304187,L, + 148180590250,0.000000000000000,L, + 150105013500,0.000002694837876,L, + 152029436750,0.000000000000000,L, + 163575976250,0.000000000000000,L, + 165500399500,-0.000003081212473,L, + 167424822750,0.000003124034444,L, + 169349246000,0.000003162110518,L, + 171273669250,0.000000000000000,L, + 175122515750,0.000000000000000,L, + 177046939000,0.000003254478304,L, + 178971362250,0.000000000000000,L, + 180895785500,-0.000003264822791,L, + 182820208750,0.000000000000000,L, + 198215594750,0.000000000000000,L, + 200140018000,0.000003127225787,L, + 202064441250,0.000000000000000,L, + 203988864500,0.000000000000000,L, + 205913287750,-0.000003039907398,L, + 207837711000,0.000000000000000,L, + 209762134250,0.000002976492939,L, + 211686557500,0.000002944326489,L, + 213610980750,0.000000000000000,L, + 221308673750,0.000000000000000,L, + 223233097000,0.000002762948361,L, + 225157520250,0.000000000000000,L, + 227081943500,0.000002710997333,L, + 229006366750,0.000000000000000,L, + 230930790000,0.000000000000000,L, + 232855213250,0.000002641856858,L, + 234779636500,0.000000000000000,L, + 246326176000,0.000000000000000,L, + 248250599250,0.000002453691579,L, + 250175022500,0.000000000000000,L, + 252099445750,0.000000000000000,L, + 254023869000,-0.000002384904273,L, + 255948292250,0.000002363174112,L, + 257872715500,0.000000000000000,L, + 259797138750,0.000000000000000,L, + 261721562000,0.000002302839244,L, + 263645985250,0.000000000000000,L, + 265570408500,-0.000002267031797,L, + 267494831750,0.000000000000000,L, + 271343678250,0.000000000000000,L, + 273268101500,0.000002205090876,L, + 275192524750,0.000002190047921,L, + 277116948000,0.000002174771488,L, + 279041371250,0.000000000000000,L, + 280965794500,0.000002144020765,L, + 282890217750,0.000000000000000,L, + 284814641000,-0.000002114098718,L, + 286739064250,0.000000000000000,L, + 288663487500,0.000000000000000,L, + 290587910750,0.000002074211000,L, + 292512334000,0.000000000000000,L, + 304058873500,0.000000000000000,L, + 305983296750,-0.000002022686625,L, + 307907720000,-0.000002022124201,L, + 309832143250,0.000002026055265,L, + 311756566500,0.000000000000000,L, + 313680989750,0.000002058338963,L, + 315605413000,0.000002087192548,L, + 317529836250,0.000002124661213,L, + 319454259500,-0.000002170529187,L, + 321378682750,0.000000000000000,L, + 323303106000,0.000002284358237,L, + 325227529250,0.000000000000000,L, + 327151952500,0.000000000000000,L, + 329076375750,0.000002483240510,L, + 331000799000,0.000002546126538,L, + 332925222250,0.000000000000000,L, + 334849645500,0.000002648389157,L, + 336774068750,-0.000002682780063,L, + 338698492000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.633204817771912 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.633204817771912,L, + 1924423250,0.633685231208801,L, + 3848846500,0.635137677192688,L, + 5773269750,0.637561023235321,L, + 7697693000,0.640923619270325,L, + 9622116250,0.645153999328613,L, + 11546539500,0.650133669376373,L, + 13470962750,0.655695438385010,L, + 15395386000,0.661627650260925,L, + 17319809250,0.667687177658081,L, + 19244232500,0.673619329929352,L, + 21168655750,0.679181277751923,L, + 23093079000,0.684160947799683,L, + 25017502250,0.688391208648682,L, + 26941925500,0.691753745079041,L, + 28866348750,0.694177210330963,L, + 30790772000,0.695629596710205,L, + 32715195250,0.696110069751740,L, + 34639618500,0.695350944995880,L, + 36564041750,0.693055868148804,L, + 38488465000,0.689237296581268,L, + 40412888250,0.683974325656891,L, + 42337311500,0.677433311939240,L, + 44261734750,0.669878661632538,L, + 46186158000,0.661668837070465,L, + 48110581250,0.653232038021088,L, + 50035004500,0.645022213459015,L, + 51959427750,0.637467443943024,L, + 53883851000,0.630926489830017,L, + 55808274250,0.625663578510284,L, + 57732697500,0.621844887733459,L, + 59657120750,0.619549870491028,L, + 61581544000,0.618790805339813,L, + 63505967250,0.618797063827515,L, + 65430390500,0.618846058845520,L, + 67354813750,0.618994593620300,L, + 69279237000,0.619313776493073,L, + 71203660250,0.619884788990021,L, + 73128083500,0.620787560939789,L, + 75052506750,0.622085809707642,L, + 76976930000,0.623815476894379,L, + 78901353250,0.625979900360107,L, + 80825776500,0.628554999828339,L, + 82750199750,0.631499588489532,L, + 84674623000,0.634765148162842,L, + 86599046250,0.640469074249268,L, + 88523469500,0.650795817375183,L, + 90447892750,0.665675461292267,L, + 92372316000,0.684826374053955,L, + 94296739250,0.707697153091431,L, + 96221162500,0.733435332775116,L, + 98145585750,0.760902881622314,L, + 100070009000,0.788758635520935,L, + 101994432250,0.815595626831055,L, + 103918855500,0.840101242065430,L, + 105843278750,0.861189603805542,L, + 107767702000,0.878074526786804,L, + 109692125250,0.890277624130249,L, + 111616548500,0.897587776184082,L, + 113540971750,0.899999976158142,L, + 115465395000,0.898905515670776,L, + 117389818250,0.895568370819092,L, + 119314241500,0.889927387237549,L, + 121238664750,0.881957828998566,L, + 123163088000,0.871683239936829,L, + 125087511250,0.859188377857208,L, + 127011934500,0.844630479812622,L, + 128936357750,0.828244447708130,L, + 130860781000,0.810341596603394,L, + 132785204250,0.791299283504486,L, + 134709627500,0.771540462970734,L, + 136634050750,0.751506686210632,L, + 138558474000,0.731630086898804,L, + 140482897250,0.712306499481201,L, + 142407320500,0.693877339363098,L, + 144331743750,0.676618218421936,L, + 146256167000,0.660737752914429,L, + 148180590250,0.646380662918091,L, + 150105013500,0.633636355400085,L, + 152029436750,0.622548818588257,L, + 153953860000,0.612249970436096,L, + 155878283250,0.601915299892426,L, + 157802706500,0.591645956039429,L, + 159727129750,0.581571578979492,L, + 161651553000,0.571849822998047,L, + 163575976250,0.562658429145813,L, + 165500399500,0.554180324077606,L, + 167424822750,0.546584010124207,L, + 169349246000,0.540002405643463,L, + 171273669250,0.534517645835876,L, + 173198092500,0.530156493186951,L, + 175122515750,0.526896178722382,L, + 177046939000,0.524676203727722,L, + 178971362250,0.523413360118866,L, + 180895785500,0.523013770580292,L, + 182820208750,0.523223757743835,L, + 184744632000,0.523866593837738,L, + 186669055250,0.524960398674011,L, + 188593478500,0.526521146297455,L, + 190517901750,0.528561353683472,L, + 192442325000,0.531089425086975,L, + 194366748250,0.534108102321625,L, + 196291171500,0.537613213062286,L, + 198215594750,0.541592836380005,L, + 200140018000,0.546026229858398,L, + 202064441250,0.550884068012238,L, + 203988864500,0.556127548217773,L, + 205913287750,0.561710298061371,L, + 207837711000,0.567579507827759,L, + 209762134250,0.573677599430084,L, + 211686557500,0.579944968223572,L, + 213610980750,0.586322188377380,L, + 215535404000,0.592751741409302,L, + 217459827250,0.599180877208710,L, + 219384250500,0.605561256408691,L, + 221308673750,0.611851572990417,L, + 223233097000,0.618016362190247,L, + 225157520250,0.624026656150818,L, + 227081943500,0.629859447479248,L, + 229006366750,0.635497152805328,L, + 230930790000,0.640926837921143,L, + 232855213250,0.646343588829041,L, + 234779636500,0.651950180530548,L, + 236704059750,0.657746553421021,L, + 238628483000,0.663728475570679,L, + 240552906250,0.669887363910675,L, + 242477329500,0.676208734512329,L, + 244401752750,0.682672023773193,L, + 246326176000,0.689249992370605,L, + 248250599250,0.695909500122070,L, + 250175022500,0.702612221240997,L, + 252099445750,0.709316968917847,L, + 254023869000,0.715981483459473,L, + 255948292250,0.722565174102783,L, + 257872715500,0.729031801223755,L, + 259797138750,0.735350370407104,L, + 261721562000,0.741496562957764,L, + 263645985250,0.747453093528748,L, + 265570408500,0.753208339214325,L, + 267494831750,0.758756816387177,L, + 269419255000,0.764097332954407,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161733627319,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093684673309,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143491744995,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227405548096,L, + 292512334000,0.827696144580841,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079333305359,L, + 300210027000,0.840432524681091,L, + 302134450250,0.842224717140198,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197630882263,L, + 307907720000,0.844432473182678,L, + 309832143250,0.842794060707092,L, + 311756566500,0.837840557098389,L, + 313680989750,0.829575419425964,L, + 315605413000,0.818107247352600,L, + 317529836250,0.803679823875427,L, + 319454259500,0.786696314811707,L, + 321378682750,0.767727494239807,L, + 323303106000,0.747495412826538,L, + 325227529250,0.726829528808594,L, + 327151952500,0.706597447395325,L, + 329076375750,0.687628626823425,L, + 331000799000,0.670645117759705,L, + 332925222250,0.656217694282532,L, + 334849645500,0.644749402999878,L, + 336774068750,0.636484265327454,L, + 338698492000,0.631530880928040,L, + 340622915250,0.629892468452454,L, + 344471761750,0.629892468452454,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.615131914615631 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.615131914615631,L, + 1924423250,0.615750312805176,L, + 3848846500,0.617619991302490,L, + 5773269750,0.620739638805389,L, + 7697693000,0.625068366527557,L, + 9622116250,0.630514025688171,L, + 11546539500,0.636924326419830,L, + 13470962750,0.644084274768829,L, + 15395386000,0.651720821857452,L, + 17319809250,0.659521102905273,L, + 19244232500,0.667157709598541,L, + 21168655750,0.674317538738251,L, + 23093079000,0.680727899074554,L, + 25017502250,0.686173617839813,L, + 26941925500,0.690502285957336,L, + 28866348750,0.693621933460236,L, + 30790772000,0.695491671562195,L, + 32715195250,0.696110129356384,L, + 34639618500,0.695760607719421,L, + 36564041750,0.694665551185608,L, + 38488465000,0.692759037017822,L, + 40412888250,0.689989209175110,L, + 42337311500,0.686327695846558,L, + 44261734750,0.681780815124512,L, + 46186158000,0.676399230957031,L, + 48110581250,0.670278191566467,L, + 50035004500,0.663551092147827,L, + 51959427750,0.656375169754028,L, + 53883851000,0.648911118507385,L, + 55808274250,0.641307950019836,L, + 57732697500,0.633691847324371,L, + 59657120750,0.626161813735962,L, + 61581544000,0.618790805339813,L, + 63505967250,0.610616147518158,L, + 65430390500,0.600686311721802,L, + 67354813750,0.589176774024963,L, + 69279237000,0.576439499855042,L, + 71203660250,0.563026130199432,L, + 73128083500,0.549658179283142,L, + 75052506750,0.537134349346161,L, + 76976930000,0.526192188262939,L, + 78901353250,0.517390966415405,L, + 80825776500,0.511057972908020,L, + 82750199750,0.507304728031158,L, + 84674623000,0.506082534790039,L, + 86599046250,0.509950339794159,L, + 88523469500,0.521642446517944,L, + 90447892750,0.541097462177277,L, + 92372316000,0.567910194396973,L, + 94296739250,0.601234555244446,L, + 96221162500,0.639723658561707,L, + 98145585750,0.681550025939941,L, + 100070009000,0.724532485008240,L, + 101994432250,0.766358911991119,L, + 103918855500,0.804847896099091,L, + 105843278750,0.838172316551208,L, + 107767702000,0.864985048770905,L, + 109692125250,0.884440183639526,L, + 111616548500,0.896132171154022,L, + 113540971750,0.899999976158142,L, + 115465395000,0.898470938205719,L, + 117389818250,0.893849134445190,L, + 119314241500,0.886120915412903,L, + 121238664750,0.875337600708008,L, + 123163088000,0.861632764339447,L, + 125087511250,0.845238924026489,L, + 127011934500,0.826499581336975,L, + 128936357750,0.805871367454529,L, + 130860781000,0.783915758132935,L, + 134709627500,0.738632917404175,L, + 136634050750,0.716677308082581,L, + 138558474000,0.696049153804779,L, + 140482897250,0.677309751510620,L, + 142407320500,0.660915911197662,L, + 144331743750,0.647211194038391,L, + 146256167000,0.636427819728851,L, + 148180590250,0.628699660301208,L, + 150105013500,0.624077856540680,L, + 152029436750,0.622548818588257,L, + 153953860000,0.623327314853668,L, + 155878283250,0.625680923461914,L, + 157802706500,0.629597008228302,L, + 159727129750,0.634994149208069,L, + 161651553000,0.641702055931091,L, + 163575976250,0.649449527263641,L, + 165500399500,0.657868742942810,L, + 167424822750,0.666520714759827,L, + 169349246000,0.674939990043640,L, + 171273669250,0.682687640190125,L, + 173198092500,0.689395487308502,L, + 175122515750,0.694792628288269,L, + 177046939000,0.698708772659302,L, + 178971362250,0.701062321662903,L, + 180895785500,0.701840758323669,L, + 182820208750,0.701642513275146,L, + 184744632000,0.701043605804443,L, + 186669055250,0.700040817260742,L, + 188593478500,0.698635220527649,L, + 190517901750,0.696833193302155,L, + 192442325000,0.694647789001465,L, + 194366748250,0.692099273204803,L, + 196291171500,0.689216494560242,L, + 198215594750,0.686036467552185,L, + 200140018000,0.682605743408203,L, + 202064441250,0.678978323936462,L, + 203988864500,0.675215601921082,L, + 205913287750,0.671383857727051,L, + 207837711000,0.667552053928375,L, + 209762134250,0.663789331912994,L, + 211686557500,0.660161972045898,L, + 213610980750,0.656731128692627,L, + 215535404000,0.653551220893860,L, + 217459827250,0.650668323040009,L, + 219384250500,0.648119866847992,L, + 221308673750,0.645934462547302,L, + 223233097000,0.644132494926453,L, + 225157520250,0.642726898193359,L, + 227081943500,0.641724050045013,L, + 229006366750,0.641125082969666,L, + 230930790000,0.640926837921143,L, + 232855213250,0.641364693641663,L, + 234779636500,0.642700791358948,L, + 236704059750,0.644962668418884,L, + 238628483000,0.648165583610535,L, + 240552906250,0.652308464050293,L, + 242477329500,0.657369375228882,L, + 244401752750,0.663301706314087,L, + 246326176000,0.670031011104584,L, + 248250599250,0.677454471588135,L, + 250175022500,0.685443103313446,L, + 252099445750,0.693847179412842,L, + 254023869000,0.702503919601440,L, + 255948292250,0.711247980594635,L, + 257872715500,0.719919860363007,L, + 259797138750,0.728375434875488,L, + 261721562000,0.736490726470947,L, + 263645985250,0.744165062904358,L, + 265570408500,0.751321673393250,L, + 267494831750,0.757905840873718,L, + 269419255000,0.763882398605347,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161733627319,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093684673309,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143491744995,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227405548096,L, + 292512334000,0.827696144580841,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079333305359,L, + 300210027000,0.840432524681091,L, + 302134450250,0.842224717140198,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197630882263,L, + 307907720000,0.844432473182678,L, + 309832143250,0.842648744583130,L, + 311756566500,0.837256073951721,L, + 313680989750,0.828258037567139,L, + 315605413000,0.815772831439972,L, + 317529836250,0.800065994262695,L, + 319454259500,0.781576514244080,L, + 321378682750,0.760925471782684,L, + 323303106000,0.738899409770966,L, + 325227529250,0.716400861740112,L, + 327151952500,0.694374680519104,L, + 329076375750,0.673723816871643,L, + 331000799000,0.655234217643738,L, + 332925222250,0.639527440071106,L, + 334849645500,0.627042174339294,L, + 336774068750,0.618044137954712,L, + 338698492000,0.612651467323303,L, + 340622915250,0.610867738723755,L, + 344471761750,0.610867738723755,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.049851775169373 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,1.049851775169373,L, + 1924423250,1.048867225646973,L, + 3848846500,1.045857787132263,L, + 5773269750,1.040767431259155,L, + 7697693000,1.033589363098145,L, + 9622116250,1.024385809898376,L, + 11546539500,1.013304471969604,L, + 13470962750,1.000588536262512,L, + 15395386000,0.986575126647949,L, + 17319809250,0.971677899360657,L, + 19244232500,0.956354379653931,L, + 21168655750,0.941064715385437,L, + 23093079000,0.926233232021332,L, + 25017502250,0.912217915058136,L, + 26941925500,0.899296104907990,L, + 28866348750,0.887663245201111,L, + 30790772000,0.877439796924591,L, + 32715195250,0.868685841560364,L, + 34639618500,0.860882103443146,L, + 36564041750,0.853516221046448,L, + 38488465000,0.846616804599762,L, + 40412888250,0.840200960636139,L, + 42337311500,0.834269940853119,L, + 44261734750,0.828802049160004,L, + 46186158000,0.823749959468842,L, + 48110581250,0.819041371345520,L, + 50035004500,0.814585506916046,L, + 51959427750,0.810282588005066,L, + 53883851000,0.806036472320557,L, + 55808274250,0.801762282848358,L, + 57732697500,0.797392785549164,L, + 59657120750,0.792878508567810,L, + 61581544000,0.788186252117157,L, + 63505967250,0.783168137073517,L, + 65430390500,0.777729094028473,L, + 67354813750,0.771962821483612,L, + 69279237000,0.766021728515625,L, + 71203660250,0.760118246078491,L, + 73128083500,0.754508137702942,L, + 75052506750,0.749453544616699,L, + 76976930000,0.745177209377289,L, + 78901353250,0.741827487945557,L, + 80825776500,0.739469408988953,L, + 82750199750,0.738096892833710,L, + 84674623000,0.737656176090240,L, + 86599046250,0.741600155830383,L, + 88523469500,0.753522813320160,L, + 90447892750,0.773361325263977,L, + 92372316000,0.800702691078186,L, + 94296739250,0.834684014320374,L, + 96221162500,0.873931765556335,L, + 98145585750,0.916582643985748,L, + 100070009000,0.960412383079529,L, + 101994432250,1.003063440322876,L, + 103918855500,1.042311191558838,L, + 105843278750,1.076292514801025,L, + 107767702000,1.103633761405945,L, + 109692125250,1.123472213745117,L, + 111616548500,1.135394930839539,L, + 113540971750,1.139338970184326,L, + 115465395000,1.136821031570435,L, + 117389818250,1.129210233688354,L, + 119314241500,1.116484045982361,L, + 121238664750,1.098726868629456,L, + 123163088000,1.076158642768860,L, + 125087511250,1.049162745475769,L, + 127011934500,1.018303871154785,L, + 128936357750,0.984335005283356,L, + 130860781000,0.948180079460144,L, + 132785204250,0.910895943641663,L, + 134709627500,0.873611688613892,L, + 136634050750,0.837456762790680,L, + 138558474000,0.803487777709961,L, + 140482897250,0.772629022598267,L, + 142407320500,0.745633006095886,L, + 144331743750,0.723064899444580,L, + 146256167000,0.705307722091675,L, + 148180590250,0.692581534385681,L, + 150105013500,0.684970676898956,L, + 152029436750,0.682452738285065,L, + 153953860000,0.687106192111969,L, + 155878283250,0.701173424720764,L, + 157802706500,0.724580466747284,L, + 159727129750,0.756839931011200,L, + 161651553000,0.796933591365814,L, + 163575976250,0.843241155147552,L, + 165500399500,0.893564045429230,L, + 167424822750,0.945277869701385,L, + 169349246000,0.995600640773773,L, + 171273669250,1.041908264160156,L, + 173198092500,1.082001924514771,L, + 175122515750,1.114261388778687,L, + 177046939000,1.137668609619141,L, + 178971362250,1.151735782623291,L, + 180895785500,1.156389236450195,L, + 182820208750,1.155352354049683,L, + 184744632000,1.152211546897888,L, + 186669055250,1.146934509277344,L, + 188593478500,1.139508605003357,L, + 190517901750,1.129947304725647,L, + 192442325000,1.118294954299927,L, + 194366748250,1.104632616043091,L, + 196291171500,1.089082360267639,L, + 198215594750,1.071810483932495,L, + 200140018000,1.053028464317322,L, + 202064441250,1.032991051673889,L, + 203988864500,1.011990785598755,L, + 205913287750,0.990349471569061,L, + 207837711000,0.968406736850739,L, + 209762134250,0.946506738662720,L, + 211686557500,0.924985170364380,L, + 213610980750,0.904156923294067,L, + 215535404000,0.884305536746979,L, + 217459827250,0.865676999092102,L, + 219384250500,0.848475337028503,L, + 221308673750,0.832862257957458,L, + 223233097000,0.818958580493927,L, + 225157520250,0.806848406791687,L, + 227081943500,0.796581983566284,L, + 229006366750,0.788182795047760,L, + 230930790000,0.781650543212891,L, + 232855213250,0.776405513286591,L, + 234779636500,0.771885454654694,L, + 236704059750,0.768094182014465,L, + 238628483000,0.765022277832031,L, + 240552906250,0.762643277645111,L, + 242477329500,0.760910332202911,L, + 244401752750,0.759753465652466,L, + 246326176000,0.759078204631805,L, + 248250599250,0.758767187595367,L, + 250175022500,0.758683443069458,L, + 252099445750,0.758677005767822,L, + 254023869000,0.758593261241913,L, + 255948292250,0.758282184600830,L, + 257872715500,0.757606983184814,L, + 259797138750,0.756450057029724,L, + 261721562000,0.754717111587524,L, + 263645985250,0.752338171005249,L, + 265570408500,0.749266266822815,L, + 267494831750,0.745474934577942,L, + 269419255000,0.740954875946045,L, + 271343678250,0.735709846019745,L, + 273268101500,0.728996396064758,L, + 275192524750,0.720055341720581,L, + 277116948000,0.708911359310150,L, + 279041371250,0.695649266242981,L, + 280965794500,0.680429279804230,L, + 282890217750,0.663499116897583,L, + 284814641000,0.645200908184052,L, + 286739064250,0.625967800617218,L, + 288663487500,0.606308519840240,L, + 290587910750,0.586778163909912,L, + 292512334000,0.567939996719360,L, + 294436757250,0.550325572490692,L, + 296361180500,0.534398972988129,L, + 298285603750,0.520533025264740,L, + 300210027000,0.508999586105347,L, + 302134450250,0.499972045421600,L, + 304058873500,0.493536531925201,L, + 305983296750,0.489708125591278,L, + 307907720000,0.488447636365891,L, + 309832143250,0.492785781621933,L, + 311756566500,0.505901575088501,L, + 313680989750,0.527786076068878,L, + 315605413000,0.558151781558990,L, + 317529836250,0.596352815628052,L, + 319454259500,0.641321837902069,L, + 321378682750,0.691547691822052,L, + 323303106000,0.745118141174316,L, + 325227529250,0.799837589263916,L, + 327151952500,0.853408038616180,L, + 329076375750,0.903633952140808,L, + 331000799000,0.948602914810181,L, + 332925222250,0.986804127693176,L, + 334849645500,1.017169833183289,L, + 336774068750,1.039054274559021,L, + 338698492000,1.052170038223267,L, + 340622915250,1.056508183479309,L, + 344471761750,1.056508183479309,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_012" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.015041887760162 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.015041887760162,L, + 1924423250,0.015033110976219,L, + 3848846500,0.015007086098194,L, + 5773269750,0.014963157474995,L, + 7697693000,0.014902099967003,L, + 9622116250,0.014822877943516,L, + 11546539500,0.014726378023624,L, + 13470962750,0.014611676335335,L, + 15395386000,0.014479815959930,L, + 17319809250,0.014330007135868,L, + 19244232500,0.014162987470627,L, + 21168655750,0.013978160917759,L, + 23093079000,0.013776883482933,L, + 25017502250,0.013558804988861,L, + 26941925500,0.013325005769730,L, + 28866348750,0.013074874877930,L, + 30790772000,0.012809745967388,L, + 32715195250,0.012529700994492,L, + 34639618500,0.012235887348652,L, + 36564041750,0.011929087340832,L, + 38488465000,0.011609740555286,L, + 40412888250,0.011278897523880,L, + 42337311500,0.010937735438347,L, + 44261734750,0.010587014257908,L, + 46186158000,0.010228142142296,L, + 48110581250,0.009862132370472,L, + 50035004500,0.009490057826042,L, + 51959427750,0.009113565087318,L, + 53883851000,0.008733399212360,L, + 55808274250,0.008351758122444,L, + 57732697500,0.007969006896019,L, + 59657120750,0.007587388157845,L, + 61581544000,0.007207214832306,L, + 63505967250,0.006830245256424,L, + 65430390500,0.006458654999733,L, + 67354813750,0.006092153489590,L, + 69279237000,0.005733765661716,L, + 71203660250,0.005383051931858,L, + 73128083500,0.005041867494583,L, + 75052506750,0.004711031913757,L, + 76976930000,0.004391685128212,L, + 78901353250,0.004084877669811,L, + 80825776500,0.003791064023972,L, + 82750199750,0.003511019051075,L, + 84674623000,0.003245905041695,L, + 86599046250,0.002995759248734,L, + 88523469500,0.002761498093605,L, + 90447892750,0.002543881535530,L, + 92372316000,0.002342149615288,L, + 94296739250,0.002157777547836,L, + 96221162500,0.001990772783756,L, + 98145585750,0.001840963959694,L, + 100070009000,0.001709088683128,L, + 101994432250,0.001593917608261,L, + 103918855500,0.001497432589531,L, + 105843278750,0.001418672502041,L, + 107767702000,0.001357138156891,L, + 109692125250,0.001313678920269,L, + 111616548500,0.001287192106247,L, + 113540971750,0.001278892159462,L, + 115465395000,0.001350633800030,L, + 117389818250,0.001568295061588,L, + 119314241500,0.001932367682457,L, + 121238664750,0.002443753182888,L, + 123163088000,0.003100931644440,L, + 125087511250,0.003902100026608,L, + 127011934500,0.004841864109039,L, + 128936357750,0.005915813148022,L, + 130860781000,0.007113970816135,L, + 132785204250,0.008427277207375,L, + 134709627500,0.009842313826084,L, + 136634050750,0.011345170438290,L, + 138558474000,0.012917436659336,L, + 140482897250,0.014541327953339,L, + 142407320500,0.016197092831135,L, + 144331743750,0.017863616347313,L, + 146256167000,0.019518882036209,L, + 148180590250,0.021143272519112,L, + 150105013500,0.022715523838997,L, + 152029436750,0.024217903614044,L, + 153953860000,0.025633424520493,L, + 155878283250,0.026946723461151,L, + 157802706500,0.028144881129265,L, + 159727129750,0.029218360781670,L, + 161651553000,0.030158609151840,L, + 163575976250,0.030959278345108,L, + 165500399500,0.031616941094398,L, + 167424822750,0.032128334045410,L, + 169349246000,0.032492414116859,L, + 171273669250,0.032710075378418,L, + 173198092500,0.032781809568405,L, + 342547338500,0.032781809568405,L, + 344471761750,0.015258371829987,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062712848186493 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,-0.062712848186493,L, + 1924423250,-0.062734454870224,L, + 3848846500,-0.062800407409668,L, + 5773269750,-0.062910452485085,L, + 7697693000,-0.063065052032471,L, + 9622116250,-0.063264265656471,L, + 11546539500,-0.063508197665215,L, + 13470962750,-0.063796788454056,L, + 15395386000,-0.064129963517189,L, + 17319809250,-0.064507514238358,L, + 19244232500,-0.064928904175758,L, + 21168655750,-0.065393730998039,L, + 23093079000,-0.065901011228561,L, + 25017502250,-0.066450327634811,L, + 26941925500,-0.067040711641312,L, + 28866348750,-0.067670762538910,L, + 30790772000,-0.068339213728905,L, + 32715195250,-0.069044396281242,L, + 34639618500,-0.069784760475159,L, + 36564041750,-0.070558592677116,L, + 38488465000,-0.071363314986229,L, + 40412888250,-0.072196915745735,L, + 42337311500,-0.073056757450104,L, + 44261734750,-0.073940396308899,L, + 46186158000,-0.074844896793365,L, + 48110581250,-0.075767755508423,L, + 50035004500,-0.076705187559128,L, + 51959427750,-0.077654004096985,L, + 53883851000,-0.078611686825752,L, + 55808274250,-0.079574257135391,L, + 57732697500,-0.080538585782051,L, + 59657120750,-0.081501364707947,L, + 61581544000,-0.082458823919296,L, + 63505967250,-0.083407878875732,L, + 65430390500,-0.084345303475857,L, + 67354813750,-0.085267707705498,L, + 69279237000,-0.086172439157963,L, + 71203660250,-0.087056063115597,L, + 73128083500,-0.087916173040867,L, + 75052506750,-0.088749773800373,L, + 76976930000,-0.089554481208324,L, + 78901353250,-0.090328082442284,L, + 80825776500,-0.091068439185619,L, + 82750199750,-0.091773867607117,L, + 84674623000,-0.092442311346531,L, + 86599046250,-0.093072123825550,L, + 88523469500,-0.093662500381470,L, + 90447892750,-0.094212062656879,L, + 92372316000,-0.094719335436821,L, + 94296739250,-0.095184177160263,L, + 96221162500,-0.095605552196503,L, + 98145585750,-0.095983102917671,L, + 100070009000,-0.096316285431385,L, + 101994432250,-0.096604637801647,L, + 103918855500,-0.096848793327808,L, + 105843278750,-0.097047783434391,L, + 107767702000,-0.097202375531197,L, + 109692125250,-0.097312435507774,L, + 111616548500,-0.097378142178059,L, + 113540971750,-0.097400225698948,L, + 115465395000,-0.097241796553135,L, + 117389818250,-0.096764214336872,L, + 119314241500,-0.095964543521404,L, + 121238664750,-0.094842530786991,L, + 123163088000,-0.093399465084076,L, + 125087511250,-0.091641560196877,L, + 127011934500,-0.089577607810497,L, + 128936357750,-0.087221376597881,L, + 130860781000,-0.084590315818787,L, + 132785204250,-0.081707701086998,L, + 134709627500,-0.078600987792015,L, + 136634050750,-0.075303003191948,L, + 138558474000,-0.071850806474686,L, + 140482897250,-0.068285539746284,L, + 142407320500,-0.064651176333427,L, + 144331743750,-0.060993701219559,L, + 146256167000,-0.057359352707863,L, + 148180590250,-0.053794085979462,L, + 150105013500,-0.050341889262199,L, + 152029436750,-0.047044143080711,L, + 153953860000,-0.043937206268311,L, + 155878283250,-0.041054576635361,L, + 157802706500,-0.038423523306847,L, + 159727129750,-0.036067277193069,L, + 161651553000,-0.034003332257271,L, + 163575976250,-0.032245442271233,L, + 165500399500,-0.030802592635155,L, + 167424822750,-0.029680341482162,L, + 169349246000,-0.028880670666695,L, + 171273669250,-0.028403103351593,L, + 173198092500,-0.028244912624359,L, + 342547338500,-0.028244912624359,L, + 344471761750,-0.062223404645920,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.003709673881531 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.003709673881531,L, + 1924423250,0.003965854644775,L, + 3848846500,0.004753112792969,L, + 5773269750,0.006099224090576,L, + 7697693000,0.008027672767639,L, + 9622116250,0.010557293891907,L, + 11546539500,0.013699650764465,L, + 13470962750,0.017456293106079,L, + 15395386000,0.021817922592163,L, + 17319809250,0.026761651039124,L, + 19244232500,0.032250404357910,L, + 21168655750,0.038233399391174,L, + 23093079000,0.044647812843323,L, + 25017502250,0.051420450210571,L, + 26941925500,0.058472633361816,L, + 28866348750,0.065723419189453,L, + 30790772000,0.073093771934509,L, + 32715195250,0.080510139465332,L, + 34639618500,0.087906241416931,L, + 36564041750,0.095224857330322,L, + 38488465000,0.102418303489685,L, + 40412888250,0.109448432922363,L, + 42337311500,0.116285562515259,L, + 44261734750,0.122907757759094,L, + 46186158000,0.129714131355286,L, + 48110581250,0.137114286422729,L, + 50035004500,0.145078182220459,L, + 51959427750,0.153524279594421,L, + 53883851000,0.162311553955078,L, + 55808274250,0.171241641044617,L, + 57732697500,0.180084586143494,L, + 59657120750,0.188616037368774,L, + 61581544000,0.196655273437500,L, + 63505967250,0.204083561897278,L, + 65430390500,0.210844874382019,L, + 67354813750,0.216932058334351,L, + 69279237000,0.222473859786987,L, + 71203660250,0.227625966072083,L, + 73128083500,0.232439279556274,L, + 75052506750,0.236955761909485,L, + 76976930000,0.241209745407104,L, + 78901353250,0.245230674743652,L, + 80825776500,0.249043703079224,L, + 82750199750,0.252671003341675,L, + 84674623000,0.256132245063782,L, + 86599046250,0.259445548057556,L, + 88523469500,0.262627482414246,L, + 90447892750,0.265694022178650,L, + 92372316000,0.268660664558411,L, + 94296739250,0.271543622016907,L, + 96221162500,0.274359345436096,L, + 98145585750,0.277126312255859,L, + 100070009000,0.279866456985474,L, + 101994432250,0.282606244087219,L, + 103918855500,0.285380959510803,L, + 105843278750,0.288241982460022,L, + 107767702000,0.291270613670349,L, + 109692125250,0.294619202613831,L, + 111616548500,0.298653244972229,L, + 113540971750,0.305199742317200,L, + 115465395000,0.316694140434265,L, + 117389818250,0.328217387199402,L, + 119314241500,0.339770197868347,L, + 121238664750,0.351354002952576,L, + 123163088000,0.362970232963562,L, + 125087511250,0.374620556831360,L, + 127011934500,0.386306405067444,L, + 128936357750,0.398029446601868,L, + 130860781000,0.409792065620422,L, + 132785204250,0.421595454216003,L, + 134709627500,0.433442711830139,L, + 136634050750,0.445335745811462,L, + 138558474000,0.457277894020081,L, + 140482897250,0.469271302223206,L, + 142407320500,0.481320261955261,L, + 144331743750,0.493427634239197,L, + 146256167000,0.505598187446594,L, + 148180590250,0.517835974693298,L, + 150105013500,0.530146241188049,L, + 152029436750,0.542534232139587,L, + 153953860000,0.555005431175232,L, + 155878283250,0.567565798759460,L, + 157802706500,0.580220341682434,L, + 159727129750,0.592971205711365,L, + 161651553000,0.605812668800354,L, + 163575976250,0.618718028068542,L, + 165500399500,0.631595492362976,L, + 167424822750,0.644122481346130,L, + 169349246000,0.654923081398010,L, + 171273669250,0.659229874610901,L, + 173198092500,0.007775902748108,L, + 342547338500,0.007775902748108,L, + 344471761750,0.003469109535217,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 4.999997720105161 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,4.999997720105161,L, + 42337311500,4.999997720105161,L, + 44261734750,5.000000281426099,L, + 46186158000,5.000006684728446,L, + 50035004500,5.000004123407508,L, + 51959427750,5.000004977181154,L, + 53883851000,5.000002415860215,L, + 55808274250,5.000004550294331,L, + 57732697500,4.999995158784222,L, + 59657120750,4.999996012557868,L, + 61581544000,4.999998573878807,L, + 63505967250,4.999998146991984,L, + 65430390500,4.999997293218338,L, + 67354813750,5.000004123407508,L, + 69279237000,5.000002842747039,L, + 71203660250,5.000000281426099,L, + 73128083500,5.000001135199746,L, + 75052506750,5.000001562086569,L, + 76976930000,5.000005830954800,L, + 78901353250,5.000001562086569,L, + 80825776500,5.000004550294331,L, + 82750199750,5.000001562086569,L, + 84674623000,5.000002415860215,L, + 86599046250,5.000001135199746,L, + 90447892750,5.000001135199746,L, + 92372316000,5.000003696520684,L, + 94296739250,4.999999000765630,L, + 96221162500,5.000002415860215,L, + 98145585750,5.000001988973392,L, + 100070009000,5.000000708312923,L, + 101994432250,5.000001135199746,L, + 103918855500,5.000006257841624,L, + 105843278750,5.000001562086569,L, + 107767702000,5.000000708312923,L, + 109692125250,4.999999427652454,L, + 111616548500,5.000003696520684,L, + 113540971750,4.999999000765630,L, + 115465395000,4.999999854539277,L, + 117389818250,5.000001988973392,L, + 119314241500,4.999998573878807,L, + 121238664750,4.999997293218338,L, + 123163088000,4.999999000765630,L, + 125087511250,4.999999427652454,L, + 127011934500,4.999998146991984,L, + 128936357750,5.000001988973392,L, + 130860781000,4.999997720105161,L, + 132785204250,4.999999854539277,L, + 134709627500,4.999999427652454,L, + 136634050750,5.000000281426099,L, + 138558474000,4.999997720105161,L, + 140482897250,4.999999427652454,L, + 142407320500,4.999998573878807,L, + 144331743750,4.999999427652454,L, + 146256167000,4.999999854539277,L, + 148180590250,4.999999854539277,L, + 150105013500,4.999998146991984,L, + 152029436750,4.999999000765630,L, + 153953860000,4.999999427652454,L, + 155878283250,4.999996012557868,L, + 157802706500,4.999999427652454,L, + 159727129750,4.999999427652454,L, + 161651553000,4.999999000765630,L, + 163575976250,5.000003696520684,L, + 165500399500,4.999997293218338,L, + 167424822750,4.999999427652454,L, + 169349246000,4.999997720105161,L, + 171273669250,5.000001988973392,L, + 173198092500,5.000000281426099,L, + 342547338500,5.000000281426099,L, + 344471761750,4.999997720105161,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724506855011,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789960920810699,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165772914886,L, + 65430390500,0.844383895397186,L, + 67354813750,0.846775054931641,L, + 69279237000,0.846711635589600,L, + 71203660250,0.846496939659119,L, + 73128083500,0.846090972423553,L, + 75052506750,0.845448076725006,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246281147003,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443802833557,L, + 84674623000,0.836794674396515,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457327842712,L, + 98145585750,0.800120651721954,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425092697144,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868997097015,L, + 109692125250,0.742985069751740,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932675361633,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114565849304,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841408252716,L, + 127011934500,0.615940630435944,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260448932648,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900336265564,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030550956726,L, + 144331743750,0.444688618183136,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324538230896,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549924373627,L, + 171273669250,0.163711950182915,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724506855011,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789960920810699,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165772914886,L, + 65430390500,0.844383895397186,L, + 67354813750,0.846775054931641,L, + 69279237000,0.846711635589600,L, + 71203660250,0.846496939659119,L, + 73128083500,0.846090972423553,L, + 75052506750,0.845448076725006,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246281147003,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443802833557,L, + 84674623000,0.836794674396515,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457327842712,L, + 98145585750,0.800120651721954,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425092697144,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868997097015,L, + 109692125250,0.742985069751740,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932675361633,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114565849304,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841408252716,L, + 127011934500,0.615940630435944,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260448932648,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900336265564,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030550956726,L, + 144331743750,0.444688618183136,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324538230896,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549924373627,L, + 171273669250,0.163711950182915,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.470956027507782 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.470956027507782,L, + 1924423250,0.471168845891953,L, + 3848846500,0.471811860799789,L, + 5773269750,0.472888171672821,L, + 7697693000,0.474394291639328,L, + 9622116250,0.476319015026093,L, + 11546539500,0.478641450405121,L, + 13470962750,0.481329768896103,L, + 15395386000,0.484340369701385,L, + 17319809250,0.487617403268814,L, + 19244232500,0.491094142198563,L, + 21168655750,0.494694739580154,L, + 23093079000,0.498337268829346,L, + 25017502250,0.501937866210938,L, + 26941925500,0.505414605140686,L, + 28866348750,0.508691668510437,L, + 30790772000,0.511702179908752,L, + 32715195250,0.514390528202057,L, + 34639618500,0.516713023185730,L, + 36564041750,0.518637716770172,L, + 38488465000,0.520143866539001,L, + 40412888250,0.521220147609711,L, + 42337311500,0.521863222122192,L, + 44261734750,0.522076010704041,L, + 46186158000,0.519478321075439,L, + 48110581250,0.511636376380920,L, + 50035004500,0.498705595731735,L, + 51959427750,0.481252878904343,L, + 53883851000,0.460353434085846,L, + 55808274250,0.437574803829193,L, + 57732697500,0.414796113967896,L, + 59657120750,0.393896639347076,L, + 61581544000,0.376443952322006,L, + 63505967250,0.363513141870499,L, + 65430390500,0.355671226978302,L, + 67354813750,0.353073537349701,L, + 69279237000,0.353420913219452,L, + 71203660250,0.354470402002335,L, + 73128083500,0.356227189302444,L, + 75052506750,0.358687251806259,L, + 76976930000,0.361834913492203,L, + 78901353250,0.365640550851822,L, + 80825776500,0.370058447122574,L, + 82750199750,0.375025391578674,L, + 84674623000,0.380460023880005,L, + 86599046250,0.386263698339462,L, + 88523469500,0.392322808504105,L, + 90447892750,0.398512482643127,L, + 92372316000,0.404702246189117,L, + 94296739250,0.410761326551437,L, + 96221162500,0.416564971208572,L, + 98145585750,0.421999603509903,L, + 100070009000,0.426966547966003,L, + 101994432250,0.431384503841400,L, + 103918855500,0.435190141201019,L, + 105843278750,0.438337802886963,L, + 107767702000,0.440797865390778,L, + 109692125250,0.442554593086243,L, + 111616548500,0.443604052066803,L, + 113540971750,0.443951487541199,L, + 115465395000,0.443126142024994,L, + 117389818250,0.440772920846939,L, + 119314241500,0.437052339315414,L, + 121238664750,0.432098686695099,L, + 123163088000,0.426025807857513,L, + 125087511250,0.418931365013123,L, + 127011934500,0.410899877548218,L, + 128936357750,0.402005076408386,L, + 130860781000,0.392312228679657,L, + 132785204250,0.381879121065140,L, + 134709627500,0.370757669210434,L, + 136634050750,0.358994752168655,L, + 138558474000,0.346633076667786,L, + 140482897250,0.333712041378021,L, + 142407320500,0.320268213748932,L, + 144331743750,0.306336045265198,L, + 146256167000,0.291948556900024,L, + 148180590250,0.277137786149979,L, + 150105013500,0.261935651302338,L, + 152029436750,0.246374815702438,L, + 153953860000,0.230489850044250,L, + 155878283250,0.214318767189980,L, + 157802706500,0.197905763983727,L, + 159727129750,0.181305050849915,L, + 161651553000,0.164588317275047,L, + 163575976250,0.147858649492264,L, + 165500399500,0.131281465291977,L, + 167424822750,0.115166492760181,L, + 169349246000,0.100264906883240,L, + 171273669250,0.090337850153446,L, + 173198092500,0.325813740491867,L, + 342547338500,0.325813740491867,L, + 344471761750,0.468949705362320,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_011" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.083437398076057 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.083437398076057,L, + 1924423250,-0.083251491189003,L, + 3848846500,-0.082720711827278,L, + 5773269750,-0.081880696117878,L, + 7697693000,-0.080761671066284,L, + 9622116250,-0.079388000071049,L, + 11546539500,-0.077780991792679,L, + 13470962750,-0.075960315763950,L, + 15395386000,-0.073940813541412,L, + 17319809250,-0.071737289428711,L, + 19244232500,-0.069362044334412,L, + 21168655750,-0.066826693713665,L, + 23093079000,-0.064140602946281,L, + 25017502250,-0.061312273144722,L, + 26941925500,-0.058350488543510,L, + 28866348750,-0.055262342095375,L, + 30790772000,-0.052054911851883,L, + 32715195250,-0.048733666539192,L, + 34639618500,-0.045304685831070,L, + 36564041750,-0.041773967444897,L, + 38488465000,-0.038146287202835,L, + 40412888250,-0.034426435828209,L, + 42337311500,-0.030621163547039,L, + 44261734750,-0.026734426617622,L, + 46186158000,-0.022773474454880,L, + 48110581250,-0.018745239824057,L, + 50035004500,-0.014661513268948,L, + 51959427750,-0.010537587106228,L, + 53883851000,-0.006404139101505,L, + 55808274250,-0.002335883677006,L, + 57732697500,0.001278657466173,L, + 59657120750,0.003661572933197,L, + 61581544000,0.006382796913385,L, + 63505967250,0.009332712739706,L, + 65430390500,0.012298773974180,L, + 67354813750,0.015240516513586,L, + 69279237000,0.018139876425266,L, + 71203660250,0.020987953990698,L, + 73128083500,0.023778885602951,L, + 75052506750,0.026506774127483,L, + 76976930000,0.029168408364058,L, + 78901353250,0.031759820878506,L, + 80825776500,0.034276682883501,L, + 82750199750,0.036715455353260,L, + 84674623000,0.039071239531040,L, + 86599046250,0.041339844465256,L, + 88523469500,0.043516896665096,L, + 90447892750,0.045596484094858,L, + 92372316000,0.047573268413544,L, + 94296739250,0.049440212547779,L, + 96221162500,0.051189925521612,L, + 98145585750,0.052815046161413,L, + 100070009000,0.054305277764797,L, + 101994432250,0.055651150643826,L, + 103918855500,0.056839600205421,L, + 105843278750,0.057857550680637,L, + 107767702000,0.058688458055258,L, + 109692125250,0.059312853962183,L, + 111616548500,0.059708170592785,L, + 113540971750,0.059847522526979,L, + 115465395000,0.059847358614206,L, + 117389818250,0.059846796095371,L, + 119314241500,0.059845805168152,L, + 121238664750,0.059842981398106,L, + 123163088000,0.059839248657227,L, + 125087511250,0.059832975268364,L, + 127011934500,0.059824027121067,L, + 128936357750,0.059812158346176,L, + 130860781000,0.059796039015055,L, + 132785204250,0.059775330126286,L, + 134709627500,0.059750009328127,L, + 136634050750,0.059718158096075,L, + 138558474000,0.059679631143808,L, + 140482897250,0.059634223580360,L, + 142407320500,0.059580266475677,L, + 144331743750,0.059517458081245,L, + 146256167000,0.059444449841976,L, + 148180590250,0.059360381215811,L, + 150105013500,0.059265729039907,L, + 152029436750,0.059157669544220,L, + 153953860000,0.059037119150162,L, + 155878283250,0.058902207762003,L, + 157802706500,0.058752421289682,L, + 159727129750,0.058587353676558,L, + 161651553000,0.058405652642250,L, + 163575976250,0.058207459747791,L, + 165500399500,0.057991549372673,L, + 167424822750,0.057758230715990,L, + 169349246000,0.057506434619427,L, + 171273669250,0.057235717773438,L, + 173198092500,0.056946203112602,L, + 175122515750,0.056637182831764,L, + 177046939000,0.056309975683689,L, + 178971362250,0.055962666869164,L, + 180895785500,0.055596824735403,L, + 182820208750,0.055211246013641,L, + 184744632000,0.054807260632515,L, + 186669055250,0.054384324699640,L, + 188593478500,0.053943499922752,L, + 190517901750,0.053483992815018,L, + 192442325000,0.053007487207651,L, + 194366748250,0.052513319998980,L, + 196291171500,0.052002407610416,L, + 198215594750,0.051475182175636,L, + 200140018000,0.050932105630636,L, + 202064441250,0.050373680889606,L, + 203988864500,0.049800105392933,L, + 205913287750,0.049212835729122,L, + 207837711000,0.048611048609018,L, + 209762134250,0.047996331006289,L, + 211686557500,0.047368858009577,L, + 213610980750,0.046728312969208,L, + 215535404000,0.046006612479687,L, + 217459827250,0.045132033526897,L, + 219384250500,0.044104829430580,L, + 221308673750,0.042926628142595,L, + 223233097000,0.041598755866289,L, + 225157520250,0.040126986801624,L, + 227081943500,0.038517162203789,L, + 229006366750,0.036777358502150,L, + 230930790000,0.034918259829283,L, + 232855213250,0.032953836023808,L, + 234779636500,0.030899349600077,L, + 236704059750,0.028773374855518,L, + 238628483000,0.026595355942845,L, + 240552906250,0.024387244135141,L, + 242477329500,0.022173106670380,L, + 244401752750,0.019975900650024,L, + 246326176000,0.017819929867983,L, + 248250599250,0.015727462247014,L, + 250175022500,0.013721998780966,L, + 252099445750,0.011822309345007,L, + 254023869000,0.010046888142824,L, + 255948292250,0.008411221206188,L, + 257872715500,0.006927970796824,L, + 259797138750,0.005606837570667,L, + 261721562000,0.004455722868443,L, + 263645985250,0.003479909151793,L, + 265570408500,0.002682384103537,L, + 267494831750,0.002064805477858,L, + 269419255000,0.001626256853342,L, + 271343678250,0.001364823430777,L, + 273268101500,0.001278672367334,L, + 298285603750,0.001278672367334,L, + 300210027000,0.000954259186983,L, + 302134450250,-0.000026255846024,L, + 304058873500,-0.001667059957981,L, + 305983296750,-0.003965053707361,L, + 307907720000,-0.006905686110258,L, + 309832143250,-0.010460618883371,L, + 311756566500,-0.014587268233299,L, + 313680989750,-0.019226990640163,L, + 315605413000,-0.024303719401360,L, + 317529836250,-0.029725082218647,L, + 319454259500,-0.035384818911552,L, + 321378682750,-0.041167005896568,L, + 323303106000,-0.046948723495007,L, + 325227529250,-0.052608959376812,L, + 327151952500,-0.058029808104038,L, + 329076375750,-0.063106551766396,L, + 331000799000,-0.067746736109257,L, + 332925222250,-0.071873404085636,L, + 334849645500,-0.075428336858749,L, + 336774068750,-0.078368492424488,L, + 338698492000,-0.080666504800320,L, + 340622915250,-0.082307785749435,L, + 342547338500,-0.083287805318832,L, + 344471761750,-0.083612695336342,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.419477224349976 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.419477224349976,L, + 1924423250,-0.419422477483749,L, + 3848846500,-0.419266283512115,L, + 5773269750,-0.419018864631653,L, + 7697693000,-0.418689161539078,L, + 9622116250,-0.418284028768539,L, + 11546539500,-0.417810320854187,L, + 13470962750,-0.417273163795471,L, + 15395386000,-0.416677474975586,L, + 17319809250,-0.416027396917343,L, + 19244232500,-0.415326356887817,L, + 21168655750,-0.414577513933182,L, + 23093079000,-0.413783699274063,L, + 25017502250,-0.412948042154312,L, + 26941925500,-0.412072420120239,L, + 28866348750,-0.411158680915833,L, + 30790772000,-0.410208970308304,L, + 32715195250,-0.409225553274155,L, + 34639618500,-0.408209055662155,L, + 36564041750,-0.407161951065063,L, + 38488465000,-0.406084895133972,L, + 40412888250,-0.404979586601257,L, + 42337311500,-0.403846859931946,L, + 44261734750,-0.402688950300217,L, + 46186158000,-0.401506543159485,L, + 48110581250,-0.400301456451416,L, + 50035004500,-0.399076193571091,L, + 51959427750,-0.397833585739136,L, + 53883851000,-0.396580129861832,L, + 55808274250,-0.395330905914307,L, + 57732697500,-0.394166558980942,L, + 59657120750,-0.393100142478943,L, + 61581544000,-0.391795843839645,L, + 63505967250,-0.390425503253937,L, + 65430390500,-0.389041602611542,L, + 67354813750,-0.387654602527618,L, + 69279237000,-0.386268854141235,L, + 71203660250,-0.384886711835861,L, + 73128083500,-0.383510053157806,L, + 75052506750,-0.382139682769775,L, + 76976930000,-0.380776137113571,L, + 78901353250,-0.379421025514603,L, + 80825776500,-0.378074496984482,L, + 82750199750,-0.376737326383591,L, + 84674623000,-0.375409960746765,L, + 86599046250,-0.374093145132065,L, + 88523469500,-0.372788101434708,L, + 90447892750,-0.371494919061661,L, + 92372316000,-0.370215147733688,L, + 94296739250,-0.368948936462402,L, + 96221162500,-0.367697834968567,L, + 98145585750,-0.366462469100952,L, + 100070009000,-0.365244507789612,L, + 101994432250,-0.364045023918152,L, + 103918855500,-0.362866103649139,L, + 105843278750,-0.361709028482437,L, + 107767702000,-0.360576391220093,L, + 109692125250,-0.359470576047897,L, + 111616548500,-0.358394503593445,L, + 113540971750,-0.357351928949356,L, + 115465395000,-0.356321305036545,L, + 117389818250,-0.355278730392456,L, + 119314241500,-0.354224771261215,L, + 121238664750,-0.353159695863724,L, + 123163088000,-0.352084785699844,L, + 125087511250,-0.351000428199768,L, + 127011934500,-0.349907726049423,L, + 128936357750,-0.348807573318481,L, + 130860781000,-0.347700953483582,L, + 132785204250,-0.346589028835297,L, + 134709627500,-0.345473676919937,L, + 136634050750,-0.344355523586273,L, + 138558474000,-0.343236535787582,L, + 140482897250,-0.342118352651596,L, + 142407320500,-0.341002553701401,L, + 144331743750,-0.339891344308853,L, + 146256167000,-0.338786005973816,L, + 148180590250,-0.337689101696014,L, + 150105013500,-0.336602956056595,L, + 152029436750,-0.335528969764709,L, + 153953860000,-0.334470063447952,L, + 155878283250,-0.333428055047989,L, + 157802706500,-0.332405358552933,L, + 159727129750,-0.331404089927673,L, + 161651553000,-0.330426216125488,L, + 163575976250,-0.329473793506622,L, + 165500399500,-0.328549116849899,L, + 167424822750,-0.327654033899307,L, + 169349246000,-0.326789975166321,L, + 171273669250,-0.325958758592606,L, + 173198092500,-0.325161814689636,L, + 175122515750,-0.324400424957275,L, + 177046939000,-0.323675781488419,L, + 178971362250,-0.322988629341125,L, + 180895785500,-0.322339922189713,L, + 182820208750,-0.321730107069016,L, + 184744632000,-0.321159362792969,L, + 186669055250,-0.320628434419632,L, + 188593478500,-0.320137232542038,L, + 190517901750,-0.319685310125351,L, + 192442325000,-0.319273084402084,L, + 194366748250,-0.318900018930435,L, + 196291171500,-0.318565577268600,L, + 198215594750,-0.318269222974777,L, + 200140018000,-0.318010717630386,L, + 202064441250,-0.317789435386658,L, + 203988864500,-0.317603915929794,L, + 205913287750,-0.317454487085342,L, + 207837711000,-0.317339509725571,L, + 209762134250,-0.317258507013321,L, + 211686557500,-0.317210435867310,L, + 213610980750,-0.317194610834122,L, + 215535404000,-0.317370980978012,L, + 217459827250,-0.317902296781540,L, + 219384250500,-0.318792134523392,L, + 221308673750,-0.320041537284851,L, + 223233097000,-0.321647286415100,L, + 225157520250,-0.323604106903076,L, + 227081943500,-0.325901031494141,L, + 229006366750,-0.328523933887482,L, + 230930790000,-0.331452459096909,L, + 232855213250,-0.334661036729813,L, + 234779636500,-0.338118791580200,L, + 236704059750,-0.341789573431015,L, + 238628483000,-0.345631927251816,L, + 240552906250,-0.349600106477737,L, + 242477329500,-0.353645026683807,L, + 244401752750,-0.357716113328934,L, + 246326176000,-0.361761361360550,L, + 248250599250,-0.365729451179504,L, + 250175022500,-0.369571954011917,L, + 252099445750,-0.373242646455765,L, + 254023869000,-0.376700431108475,L, + 255948292250,-0.379909157752991,L, + 257872715500,-0.382837563753128,L, + 259797138750,-0.385460346937180,L, + 261721562000,-0.387757271528244,L, + 263645985250,-0.389714062213898,L, + 265570408500,-0.391319870948792,L, + 267494831750,-0.392569065093994,L, + 269419255000,-0.393459081649780,L, + 271343678250,-0.393990576267242,L, + 273268101500,-0.394166529178619,L, + 298285603750,-0.394166529178619,L, + 300210027000,-0.394263684749603,L, + 302134450250,-0.394556343555450,L, + 304058873500,-0.395046800374985,L, + 305983296750,-0.395733267068863,L, + 307907720000,-0.396611750125885,L, + 309832143250,-0.397673964500427,L, + 311756566500,-0.398906588554382,L, + 313680989750,-0.400292962789536,L, + 315605413000,-0.401809573173523,L, + 317529836250,-0.403429418802261,L, + 319454259500,-0.405120402574539,L, + 321378682750,-0.406847596168518,L, + 323303106000,-0.408575266599655,L, + 325227529250,-0.410266041755676,L, + 327151952500,-0.411885857582092,L, + 329076375750,-0.413402467966080,L, + 331000799000,-0.414788573980331,L, + 332925222250,-0.416021704673767,L, + 334849645500,-0.417083710432053,L, + 336774068750,-0.417962193489075,L, + 338698492000,-0.418648660182953,L, + 340622915250,-0.419138848781586,L, + 342547338500,-0.419431746006012,L, + 344471761750,-0.419528663158417,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.313043475151062 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.313043475151062,L, + 1924423250,0.313851475715637,L, + 3848846500,0.316155314445496,L, + 5773269750,0.319797635078430,L, + 7697693000,0.324647307395935,L, + 9622116250,0.330592513084412,L, + 11546539500,0.337537884712219,L, + 13470962750,0.345400691032410,L, + 15395386000,0.354108691215515,L, + 17319809250,0.363597989082336,L, + 19244232500,0.373812079429626,L, + 21168655750,0.384699940681458,L, + 23093079000,0.396215796470642,L, + 25017502250,0.408317923545837,L, + 26941925500,0.420967459678650,L, + 28866348750,0.434128880500793,L, + 30790772000,0.447768330574036,L, + 32715195250,0.461853623390198,L, + 34639618500,0.476353287696838,L, + 36564041750,0.491236329078674,L, + 38488465000,0.506470322608948,L, + 40412888250,0.522021651268005,L, + 42337311500,0.537853121757507,L, + 44261734750,0.553921103477478,L, + 46186158000,0.570173382759094,L, + 48110581250,0.586539149284363,L, + 50035004500,0.602917075157166,L, + 51959427750,0.619146227836609,L, + 53883851000,0.634922623634338,L, + 55808274250,0.649511218070984,L, + 57732697500,0.659229874610901,L, + 59657120750,0.034106135368347,L, + 111616548500,0.034106135368347,L, + 113540971750,0.007775902748108,L, + 211686557500,0.007775902748108,L, + 213610980750,-0.003737211227417,L, + 215535404000,-0.003602862358093,L, + 217459827250,-0.003190279006958,L, + 219384250500,-0.002487182617188,L, + 221308673750,-0.001480817794800,L, + 223233097000,-0.000159263610840,L, + 225157520250,0.001487851142883,L, + 227081943500,0.003469109535217,L, + 229006366750,0.005791306495667,L, + 230930790000,0.008458733558655,L, + 232855213250,0.011471986770630,L, + 234779636500,0.014828324317932,L, + 236704059750,0.018521308898926,L, + 238628483000,0.022539973258972,L, + 240552906250,0.026869177818298,L, + 242477329500,0.031489491462708,L, + 244401752750,0.036378026008606,L, + 246326176000,0.041508436203003,L, + 248250599250,0.046852350234985,L, + 250175022500,0.052379488945007,L, + 252099445750,0.058058738708496,L, + 254023869000,0.063858985900879,L, + 255948292250,0.069750428199768,L, + 257872715500,0.075704336166382,L, + 259797138750,0.081694006919861,L, + 261721562000,0.087695479393005,L, + 263645985250,0.093686580657959,L, + 265570408500,0.099648594856262,L, + 267494831750,0.105564713478088,L, + 269419255000,0.111420989036560,L, + 271343678250,0.117205023765564,L, + 273268101500,0.122907757759094,L, + 275192524750,0.128847718238831,L, + 277116948000,0.135353922843933,L, + 279041371250,0.142412424087524,L, + 280965794500,0.149971723556519,L, + 282890217750,0.157934784889221,L, + 284814641000,0.166156172752380,L, + 286739064250,0.174453735351562,L, + 288663487500,0.182631731033325,L, + 290587910750,0.190510630607605,L, + 292512334000,0.197949767112732,L, + 294436757250,0.204857230186462,L, + 296361180500,0.211187601089478,L, + 298285603750,0.216932058334351,L, + 300210027000,0.222417116165161,L, + 302134450250,0.227952361106873,L, + 304058873500,0.233519911766052,L, + 305983296750,0.239098310470581,L, + 307907720000,0.244661927223206,L, + 309832143250,0.250180721282959,L, + 311756566500,0.255620479583740,L, + 313680989750,0.260943174362183,L, + 315605413000,0.266107797622681,L, + 317529836250,0.271072030067444,L, + 319454259500,0.275794267654419,L, + 321378682750,0.280233979225159,L, + 323303106000,0.284355878829956,L, + 325227529250,0.288130164146423,L, + 327151952500,0.291533589363098,L, + 329076375750,0.294551730155945,L, + 331000799000,0.297177433967590,L, + 332925222250,0.299409985542297,L, + 334849645500,0.301256299018860,L, + 336774068750,0.302727818489075,L, + 338698492000,0.303839087486267,L, + 340622915250,0.304608464241028,L, + 342547338500,0.305055260658264,L, + 344471761750,0.305199742317200,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.865117763194306 + KeyVer: 4005 + KeyCount: 11 + Key: + 0,-93.865117763194306,L, + 34639618500,-93.865117763194306,L, + 36564041750,-93.865110933005141,L, + 38488465000,-93.865117763194306,L, + 40412888250,-93.865110933005141,L, + 42337311500,-93.865117763194306,L, + 111616548500,-93.865117763194306,L, + 113540971750,-93.865124593383470,L, + 273268101500,-93.865124593383470,L, + 275192524750,-93.865117763194306,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224140167236,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256962776184,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981706619263,L, + 15395386000,0.643294811248779,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325608730316,L, + 21168655750,0.595212280750275,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520844936371,L, + 30790772000,0.496082574129105,L, + 32715195250,0.473943591117859,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760720252991,L, + 38488465000,0.403816312551498,L, + 40412888250,0.379372954368591,L, + 42337311500,0.354489505290985,L, + 44261734750,0.329233735799789,L, + 46186158000,0.303689152002335,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222985029221,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703390836716,L, + 71203660250,0.312314927577972,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067084550858,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529528975486755,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421470165253,L, + 94296739250,0.587841093540192,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822494983673,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452627658844,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208321571350,L, + 286739064250,0.778779387474060,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534962177277,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739019870758,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234719276428,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135883331299,L, + 315605413000,0.808550417423248,L, + 317529836250,0.800450086593628,L, + 319454259500,0.791993141174316,L, + 321378682750,0.783353924751282,L, + 323303106000,0.774714469909668,L, + 325227529250,0.766257643699646,L, + 327151952500,0.758157193660736,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161223888397,L, + 336774068750,0.727767884731293,L, + 338698492000,0.724334239959717,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932556152344,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224140167236,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256962776184,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981706619263,L, + 15395386000,0.643294811248779,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325608730316,L, + 21168655750,0.595212280750275,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520844936371,L, + 30790772000,0.496082574129105,L, + 32715195250,0.473943591117859,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760720252991,L, + 38488465000,0.403816312551498,L, + 40412888250,0.379372954368591,L, + 42337311500,0.354489505290985,L, + 44261734750,0.329233735799789,L, + 46186158000,0.303689152002335,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222985029221,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703390836716,L, + 71203660250,0.312314927577972,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067084550858,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529528975486755,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421470165253,L, + 94296739250,0.587841093540192,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822494983673,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452627658844,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208321571350,L, + 286739064250,0.778779387474060,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534962177277,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739019870758,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234719276428,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135883331299,L, + 315605413000,0.808550417423248,L, + 317529836250,0.800450086593628,L, + 319454259500,0.791993141174316,L, + 321378682750,0.783353924751282,L, + 323303106000,0.774714469909668,L, + 325227529250,0.766257643699646,L, + 327151952500,0.758157193660736,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161223888397,L, + 336774068750,0.727767884731293,L, + 338698492000,0.724334239959717,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932556152344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.443177759647369 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.443177759647369,L, + 1924423250,0.442354172468185,L, + 3848846500,0.440006077289581,L, + 5773269750,0.436293661594391,L, + 7697693000,0.431350857019424,L, + 9622116250,0.425291299819946,L, + 11546539500,0.418212413787842,L, + 13470962750,0.410198479890823,L, + 15395386000,0.401323139667511,L, + 17319809250,0.391651481389999,L, + 19244232500,0.381241232156754,L, + 21168655750,0.370144098997116,L, + 23093079000,0.358406931161880,L, + 25017502250,0.346072286367416,L, + 26941925500,0.333179533481598,L, + 28866348750,0.319765120744705,L, + 30790772000,0.305863469839096,L, + 32715195250,0.291507452726364,L, + 34639618500,0.276729077100754,L, + 36564041750,0.261560231447220,L, + 38488465000,0.246033430099487,L, + 40412888250,0.230183169245720,L, + 42337311500,0.214047521352768,L, + 44261734750,0.197670400142670,L, + 46186158000,0.181106045842171,L, + 48110581250,0.164425894618034,L, + 50035004500,0.147732794284821,L, + 51959427750,0.131191909313202,L, + 53883851000,0.115112118422985,L, + 55808274250,0.100243121385574,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882522106171,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354133605957,L, + 67354813750,0.123738169670105,L, + 69279237000,0.133280381560326,L, + 71203660250,0.142899021506310,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323513388634,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626767396927,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560553312302,L, + 92372316000,0.245301157236099,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126017570496,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813740491867,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296051740646,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146136522293,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706455945969,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857344388962,L, + 138558474000,0.382175147533417,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771320581436,L, + 148180590250,0.396268129348755,L, + 150105013500,0.398613512516022,L, + 152029436750,0.400813609361649,L, + 153953860000,0.402875453233719,L, + 155878283250,0.404806703329086,L, + 157802706500,0.406615942716599,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905672073364,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412824988365173,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904615402222,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405583620071,L, + 180895785500,0.422571808099747,L, + 182820208750,0.423754513263702,L, + 184744632000,0.424963057041168,L, + 186669055250,0.426206141710281,L, + 188593478500,0.427491754293442,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220544338226,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436478018760681,L, + 202064441250,0.438237309455872,L, + 203988864500,0.440081894397736,L, + 205913287750,0.442014664411545,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153551340103,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667589902878,L, + 215535404000,0.453080922365189,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265990018845,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866910457611,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050713539124,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470610618591,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214479923248,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522052049637,L, + 244401752750,0.498546570539474,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530433177948,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166801452637,L, + 269419255000,0.521676063537598,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.519864141941071,L, + 277116948000,0.513182044029236,L, + 279041371250,0.502119362354279,L, + 280965794500,0.487050443887711,L, + 282890217750,0.468709290027618,L, + 284814641000,0.448205679655075,L, + 286739064250,0.426943838596344,L, + 288663487500,0.406440287828445,L, + 290587910750,0.388099104166031,L, + 292512334000,0.373030215501785,L, + 294436757250,0.361967474222183,L, + 296361180500,0.355285406112671,L, + 298285603750,0.353073537349701,L, + 300210027000,0.353420913219452,L, + 302134450250,0.354470402002335,L, + 304058873500,0.356227189302444,L, + 305983296750,0.358687251806259,L, + 307907720000,0.361834913492203,L, + 309832143250,0.365640550851822,L, + 311756566500,0.370058447122574,L, + 313680989750,0.375025391578674,L, + 315605413000,0.380460023880005,L, + 317529836250,0.386263698339462,L, + 319454259500,0.392322778701782,L, + 321378682750,0.398512482643127,L, + 323303106000,0.404702246189117,L, + 325227529250,0.410761296749115,L, + 327151952500,0.416565030813217,L, + 329076375750,0.421999603509903,L, + 331000799000,0.426966577768326,L, + 332925222250,0.431384503841400,L, + 334849645500,0.435190141201019,L, + 336774068750,0.438337802886963,L, + 338698492000,0.440797865390778,L, + 340622915250,0.442554652690887,L, + 342547338500,0.443604052066803,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_010" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.112119212746620 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.112119212746620,L, + 1924423250,0.112092062830925,L, + 3848846500,0.112012103199959,L, + 5773269750,0.111878469586372,L, + 7697693000,0.111690774559975,L, + 9622116250,0.111448600888252,L, + 11546539500,0.111151963472366,L, + 13470962750,0.110800862312317,L, + 15395386000,0.110395729541779,L, + 17319809250,0.109936505556107,L, + 19244232500,0.109423562884331,L, + 21168655750,0.108857691287994,L, + 23093079000,0.108239635825157,L, + 25017502250,0.107570126652718,L, + 26941925500,0.106850802898407,L, + 28866348750,0.106081739068031,L, + 30790772000,0.105265438556671,L, + 32715195250,0.104403331875801,L, + 34639618500,0.103497296571732,L, + 36564041750,0.102549612522125,L, + 38488465000,0.101562052965164,L, + 40412888250,0.100537732243538,L, + 42337311500,0.099479228258133,L, + 44261734750,0.098389580845833,L, + 46186158000,0.097272202372551,L, + 48110581250,0.096129536628723,L, + 50035004500,0.094966366887093,L, + 51959427750,0.093785047531128,L, + 53883851000,0.092590272426605,L, + 55808274250,0.091385290026665,L, + 57732697500,0.090174779295921,L, + 59657120750,0.088961958885193,L, + 61581544000,0.087750956416130,L, + 63505967250,0.086546465754509,L, + 65430390500,0.085351690649986,L, + 67354813750,0.084170356392860,L, + 69279237000,0.083007201552391,L, + 71203660250,0.081864535808563,L, + 73128083500,0.080747157335281,L, + 75052506750,0.079657509922981,L, + 76976930000,0.078599005937576,L, + 78901353250,0.077574670314789,L, + 80825776500,0.076587125658989,L, + 82750199750,0.075639441609383,L, + 84674623000,0.074733421206474,L, + 86599046250,0.073870822787285,L, + 88523469500,0.073054522275925,L, + 90447892750,0.072285935282707,L, + 92372316000,0.071566134691238,L, + 94296739250,0.070896625518799,L, + 96221162500,0.070278584957123,L, + 98145585750,0.069712713360786,L, + 100070009000,0.069200232625008,L, + 101994432250,0.068741008639336,L, + 103918855500,0.068335890769958,L, + 105843278750,0.067984774708748,L, + 107767702000,0.067688137292862,L, + 109692125250,0.067445963621140,L, + 111616548500,0.067257791757584,L, + 113540971750,0.067124173045158,L, + 115465395000,0.067044198513031,L, + 117389818250,0.067017525434494,L, + 119314241500,0.067049667239189,L, + 121238664750,0.067146360874176,L, + 123163088000,0.067310303449631,L, + 125087511250,0.067541778087616,L, + 127011934500,0.067840591073036,L, + 128936357750,0.068203255534172,L, + 130860781000,0.068624079227448,L, + 132785204250,0.069096148014069,L, + 134709627500,0.069608673453331,L, + 136634050750,0.070150256156921,L, + 138558474000,0.070706620812416,L, + 140482897250,0.071265757083893,L, + 142407320500,0.071814581751823,L, + 144331743750,0.072341099381447,L, + 146256167000,0.072838217020035,L, + 148180590250,0.073296889662743,L, + 150105013500,0.073713749647141,L, + 152029436750,0.074085235595703,L, + 153953860000,0.074410080909729,L, + 155878283250,0.074677824974060,L, + 157802706500,0.074879810214043,L, + 159727129750,0.075022861361504,L, + 161651553000,0.075119689106941,L, + 163575976250,0.075189128518105,L, + 165500399500,0.075258046388626,L, + 167424822750,0.075355410575867,L, + 169349246000,0.075507700443268,L, + 171273669250,0.075736463069916,L, + 173198092500,0.076053112745285,L, + 175122515750,0.076463326811790,L, + 177046939000,0.076963707804680,L, + 178971362250,0.077580571174622,L, + 180895785500,0.078346639871597,L, + 182820208750,0.079273387789726,L, + 184744632000,0.080369740724564,L, + 186669055250,0.081642732024193,L, + 188593478500,0.083096101880074,L, + 190517901750,0.084728330373764,L, + 192442325000,0.086533650755882,L, + 194366748250,0.088499814271927,L, + 196291171500,0.090608730912209,L, + 198215594750,0.092838659882545,L, + 200140018000,0.095163375139236,L, + 202064441250,0.097557231783867,L, + 203988864500,0.099993973970413,L, + 205913287750,0.102450266480446,L, + 207837711000,0.104905992746353,L, + 209762134250,0.107344388961792,L, + 211686557500,0.109752103686333,L, + 213610980750,0.112119227647781,L, + 215535404000,0.114429295063019,L, + 217459827250,0.116683810949326,L, + 219384250500,0.118909388780594,L, + 221308673750,0.121143415570259,L, + 223233097000,0.123434811830521,L, + 225157520250,0.125838786363602,L, + 227081943500,0.128411799669266,L, + 229006366750,0.131202995777130,L, + 230930790000,0.134245410561562,L, + 232855213250,0.137554422020912,L, + 234779636500,0.141129091382027,L, + 236704059750,0.144954875111580,L, + 238628483000,0.149011671543121,L, + 240552906250,0.154437422752380,L, + 242477329500,0.161862149834633,L, + 244401752750,0.169423133134842,L, + 246326176000,0.174697801470757,L, + 248250599250,0.176466256380081,L, + 250175022500,0.176398679614067,L, + 252099445750,0.176190719008446,L, + 254023869000,0.175834655761719,L, + 255948292250,0.175323322415352,L, + 257872715500,0.174654468894005,L, + 259797138750,0.173827216029167,L, + 261721562000,0.172846406698227,L, + 263645985250,0.171722069382668,L, + 265570408500,0.170468807220459,L, + 267494831750,0.169106945395470,L, + 269419255000,0.167660728096962,L, + 271343678250,0.166154354810715,L, + 273268101500,0.164613887667656,L, + 275192524750,0.163063734769821,L, + 277116948000,0.161524400115013,L, + 279041371250,0.160014346241951,L, + 280965794500,0.158547237515450,L, + 282890217750,0.157132908701897,L, + 284814641000,0.155779138207436,L, + 286739064250,0.154421567916870,L, + 288663487500,0.152992501854897,L, + 290587910750,0.151491835713387,L, + 292512334000,0.149924963712692,L, + 294436757250,0.148303002119064,L, + 296361180500,0.146644800901413,L, + 298285603750,0.144973918795586,L, + 300210027000,0.143313735723495,L, + 302134450250,0.141685381531715,L, + 304058873500,0.140103936195374,L, + 305983296750,0.138578325510025,L, + 307907720000,0.137113347649574,L, + 309832143250,0.135627537965775,L, + 311756566500,0.134045064449310,L, + 313680989750,0.132373690605164,L, + 315605413000,0.130625426769257,L, + 317529836250,0.128816395998001,L, + 319454259500,0.126968964934349,L, + 321378682750,0.125109538435936,L, + 323303106000,0.123270153999329,L, + 325227529250,0.121484741568565,L, + 327151952500,0.119787633419037,L, + 329076375750,0.118212461471558,L, + 331000799000,0.116787627339363,L, + 332925222250,0.115535974502563,L, + 334849645500,0.114473447203636,L, + 336774068750,0.113608747720718,L, + 338698492000,0.112945213913918,L, + 340622915250,0.112480357289314,L, + 342547338500,0.112207636237144,L, + 344471761750,0.112119227647781,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.123124718666077 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.123124718666077,L, + 1924423250,-0.123087286949158,L, + 3848846500,-0.122974708676338,L, + 5773269750,-0.122786372900009,L, + 7697693000,-0.122521951794624,L, + 9622116250,-0.122181162238121,L, + 11546539500,-0.121763944625854,L, + 13470962750,-0.121269851922989,L, + 15395386000,-0.120699629187584,L, + 17319809250,-0.120053604245186,L, + 19244232500,-0.119332134723663,L, + 21168655750,-0.118535861372948,L, + 23093079000,-0.117666020989418,L, + 25017502250,-0.116724252700806,L, + 26941925500,-0.115711405873299,L, + 28866348750,-0.114629566669464,L, + 30790772000,-0.113480851054192,L, + 32715195250,-0.112267941236496,L, + 34639618500,-0.110992848873138,L, + 36564041750,-0.109659135341644,L, + 38488465000,-0.108269885182381,L, + 40412888250,-0.106828510761261,L, + 42337311500,-0.105339020490646,L, + 44261734750,-0.103805646300316,L, + 46186158000,-0.102233216166496,L, + 48110581250,-0.100625634193420,L, + 50035004500,-0.098988294601440,L, + 51959427750,-0.097326353192329,L, + 53883851000,-0.095645099878311,L, + 55808274250,-0.093950018286705,L, + 57732697500,-0.092246368527412,L, + 59657120750,-0.090539723634720,L, + 61581544000,-0.088836088776588,L, + 63505967250,-0.087140753865242,L, + 65430390500,-0.085459500551224,L, + 67354813750,-0.083797588944435,L, + 69279237000,-0.082160219550133,L, + 71203660250,-0.080552875995636,L, + 73128083500,-0.078980207443237,L, + 75052506750,-0.077446848154068,L, + 76976930000,-0.075957581400871,L, + 78901353250,-0.074516236782074,L, + 80825776500,-0.073126718401909,L, + 82750199750,-0.071793004870415,L, + 84674623000,-0.070518150925636,L, + 86599046250,-0.069304764270782,L, + 88523469500,-0.068156048655510,L, + 90447892750,-0.067074447870255,L, + 92372316000,-0.066061601042747,L, + 94296739250,-0.065119609236717,L, + 96221162500,-0.064249977469444,L, + 98145585750,-0.063453719019890,L, + 100070009000,-0.062732264399529,L, + 101994432250,-0.062086239457130,L, + 103918855500,-0.061516001820564,L, + 105843278750,-0.061022147536278,L, + 107767702000,-0.060604706406593,L, + 109692125250,-0.060263901948929,L, + 111616548500,-0.059999480843544,L, + 113540971750,-0.059811383485794,L, + 115465395000,-0.059698566794395,L, + 117389818250,-0.059661149978638,L, + 119314241500,-0.059695869684219,L, + 121238664750,-0.059802502393723,L, + 123163088000,-0.059985443949699,L, + 125087511250,-0.060247197747231,L, + 127011934500,-0.060589611530304,L, + 128936357750,-0.061012268066406,L, + 130860781000,-0.061512187123299,L, + 132785204250,-0.062084496021271,L, + 134709627500,-0.062721177935600,L, + 136634050750,-0.063411220908165,L, + 138558474000,-0.064142614603043,L, + 140482897250,-0.064902141690254,L, + 142407320500,-0.065676510334015,L, + 144331743750,-0.066453158855438,L, + 146256167000,-0.067221790552139,L, + 148180590250,-0.067973062396049,L, + 150105013500,-0.068700149655342,L, + 152029436750,-0.069398269057274,L, + 153953860000,-0.070063054561615,L, + 155878283250,-0.070667415857315,L, + 157802706500,-0.071191117167473,L, + 159727129750,-0.071651935577393,L, + 161651553000,-0.072078362107277,L, + 163575976250,-0.072509646415710,L, + 165500399500,-0.072994872927666,L, + 167424822750,-0.073582828044891,L, + 169349246000,-0.074315533041954,L, + 171273669250,-0.075221389532089,L, + 173198092500,-0.076312974095345,L, + 175122515750,-0.077589482069016,L, + 177046939000,-0.079040735960007,L, + 178971362250,-0.080668464303017,L, + 180895785500,-0.082485303282738,L, + 182820208750,-0.084490999579430,L, + 184744632000,-0.086681857705116,L, + 186669055250,-0.089047655463219,L, + 188593478500,-0.091571122407913,L, + 190517901750,-0.094227522611618,L, + 192442325000,-0.096985027194023,L, + 194366748250,-0.099804461002350,L, + 196291171500,-0.102642074227333,L, + 198215594750,-0.105454191565514,L, + 200140018000,-0.108196929097176,L, + 202064441250,-0.110831946134567,L, + 203988864500,-0.113327771425247,L, + 205913287750,-0.115660220384598,L, + 207837711000,-0.117812544107437,L, + 209762134250,-0.119775906205177,L, + 211686557500,-0.121546417474747,L, + 213610980750,-0.123124688863754,L, + 215535404000,-0.124561980366707,L, + 217459827250,-0.125895351171494,L, + 219384250500,-0.127105847001076,L, + 221308673750,-0.128175467252731,L, + 223233097000,-0.129089623689651,L, + 225157520250,-0.129839390516281,L, + 227081943500,-0.130425512790680,L, + 229006366750,-0.130859851837158,L, + 230930790000,-0.131161540746689,L, + 232855213250,-0.131355255842209,L, + 234779636500,-0.131466686725616,L, + 236704059750,-0.131519392132759,L, + 238628483000,-0.131533160805702,L, + 240552906250,-0.131093874573708,L, + 242477329500,-0.129856571555138,L, + 244401752750,-0.128267779946327,L, + 246326176000,-0.127030402421951,L, + 248250599250,-0.126591220498085,L, + 250175022500,-0.126704394817352,L, + 252099445750,-0.127050250768661,L, + 254023869000,-0.127634152770042,L, + 255948292250,-0.128457382321358,L, + 257872715500,-0.129516378045082,L, + 259797138750,-0.130799174308777,L, + 261721562000,-0.132285386323929,L, + 263645985250,-0.133945524692535,L, + 265570408500,-0.135742142796516,L, + 267494831750,-0.137631163001060,L, + 269419255000,-0.139564543962479,L, + 271343678250,-0.141493916511536,L, + 273268101500,-0.143374517560005,L, + 275192524750,-0.145166650414467,L, + 277116948000,-0.146838426589966,L, + 279041371250,-0.148366138339043,L, + 280965794500,-0.149732857942581,L, + 282890217750,-0.150928691029549,L, + 284814641000,-0.151948794722557,L, + 286739064250,-0.152871236205101,L, + 288663487500,-0.153767868876457,L, + 290587910750,-0.154623031616211,L, + 292512334000,-0.155419096350670,L, + 294436757250,-0.156136617064476,L, + 296361180500,-0.156758382916451,L, + 298285603750,-0.157272115349770,L, + 300210027000,-0.157672896981239,L, + 302134450250,-0.157964944839478,L, + 304058873500,-0.158157199621201,L, + 305983296750,-0.158262357115746,L, + 307907720000,-0.158294543623924,L, + 309832143250,-0.158079653978348,L, + 311756566500,-0.157430142164230,L, + 313680989750,-0.156344756484032,L, + 315605413000,-0.154832616448402,L, + 317529836250,-0.152915656566620,L, + 319454259500,-0.150632426142693,L, + 321378682750,-0.148038491606712,L, + 323303106000,-0.145207047462463,L, + 325227529250,-0.142225697636604,L, + 327151952500,-0.139193326234818,L, + 329076375750,-0.136212125420570,L, + 331000799000,-0.133380681276321,L, + 332925222250,-0.130786746740341,L, + 334849645500,-0.128503516316414,L, + 336774068750,-0.126586407423019,L, + 338698492000,-0.125074297189713,L, + 340622915250,-0.123989000916481,L, + 342547338500,-0.123339384794235,L, + 344471761750,-0.123124688863754,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.078456521034241 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.078456521034241,L, + 1924423250,0.078417062759399,L, + 3848846500,0.078297972679138,L, + 5773269750,0.078098773956299,L, + 7697693000,0.077819228172302,L, + 9622116250,0.077459096908569,L, + 11546539500,0.077017784118652,L, + 13470962750,0.076495766639709,L, + 15395386000,0.075892925262451,L, + 17319809250,0.075209975242615,L, + 19244232500,0.074447274208069,L, + 21168655750,0.073605656623840,L, + 23093079000,0.072686314582825,L, + 25017502250,0.071690559387207,L, + 26941925500,0.070619940757751,L, + 28866348750,0.069476366043091,L, + 30790772000,0.068262338638306,L, + 32715195250,0.066979885101318,L, + 34639618500,0.065631985664368,L, + 36564041750,0.064221978187561,L, + 38488465000,0.062753438949585,L, + 40412888250,0.061229825019836,L, + 42337311500,0.059655427932739,L, + 44261734750,0.058034539222717,L, + 46186158000,0.056372046470642,L, + 48110581250,0.054672837257385,L, + 50035004500,0.052942037582397,L, + 51959427750,0.051185131072998,L, + 53883851000,0.049408078193665,L, + 55808274250,0.047615885734558,L, + 57732697500,0.045814990997314,L, + 59657120750,0.044011116027832,L, + 61581544000,0.042210221290588,L, + 63505967250,0.040418028831482,L, + 65430390500,0.038640737533569,L, + 67354813750,0.036883950233459,L, + 69279237000,0.035153269767761,L, + 71203660250,0.033453941345215,L, + 73128083500,0.031791567802429,L, + 75052506750,0.030170559883118,L, + 76976930000,0.028596162796021,L, + 78901353250,0.027072668075562,L, + 80825776500,0.025604009628296,L, + 82750199750,0.024194002151489,L, + 84674623000,0.022846221923828,L, + 86599046250,0.021563768386841,L, + 88523469500,0.020349502563477,L, + 90447892750,0.019206166267395,L, + 92372316000,0.018135428428650,L, + 94296739250,0.017139792442322,L, + 96221162500,0.016220450401306,L, + 98145585750,0.015378832817078,L, + 100070009000,0.014616012573242,L, + 101994432250,0.013932943344116,L, + 103918855500,0.013330340385437,L, + 105843278750,0.012808084487915,L, + 107767702000,0.012366890907288,L, + 109692125250,0.012006759643555,L, + 111616548500,0.011727094650269,L, + 113540971750,0.011528015136719,L, + 115465395000,0.011409044265747,L, + 117389818250,0.011369466781616,L, + 119314241500,0.011369466781616,L, + 121238664750,0.011369705200195,L, + 123163088000,0.011370301246643,L, + 125087511250,0.011371254920959,L, + 127011934500,0.011373162269592,L, + 128936357750,0.011376142501831,L, + 130860781000,0.011380434036255,L, + 132785204250,0.011386394500732,L, + 134709627500,0.011394619941711,L, + 136634050750,0.011404991149902,L, + 138558474000,0.011417746543884,L, + 140482897250,0.011433243751526,L, + 142407320500,0.011451244354248,L, + 144331743750,0.011471748352051,L, + 146256167000,0.011494874954224,L, + 148180590250,0.011520504951477,L, + 150105013500,0.011548161506653,L, + 152029436750,0.011577725410461,L, + 153953860000,0.011609315872192,L, + 155878283250,0.011643171310425,L, + 157802706500,0.011704921722412,L, + 159727129750,0.011841416358948,L, + 161651553000,0.012112617492676,L, + 163575976250,0.012586474418640,L, + 165500399500,0.013331294059753,L, + 167424822750,0.014402151107788,L, + 169349246000,0.015831470489502,L, + 171273669250,0.017623782157898,L, + 173198092500,0.019761323928833,L, + 175122515750,0.022210478782654,L, + 177046939000,0.024931430816650,L, + 178971362250,0.027828216552734,L, + 180895785500,0.030847311019897,L, + 182820208750,0.034016251564026,L, + 184744632000,0.037365913391113,L, + 186669055250,0.040929317474365,L, + 188593478500,0.044740557670593,L, + 190517901750,0.048833250999451,L, + 192442325000,0.053237318992615,L, + 194366748250,0.057976841926575,L, + 196291171500,0.063067793846130,L, + 198215594750,0.068515539169312,L, + 200140018000,0.074315428733826,L, + 202064441250,0.080453276634216,L, + 203988864500,0.086907029151917,L, + 205913287750,0.093649625778198,L, + 207837711000,0.100650906562805,L, + 209762134250,0.107880473136902,L, + 211686557500,0.115308761596680,L, + 213610980750,0.122907757759094,L, + 215535404000,0.131041646003723,L, + 217459827250,0.140098094940186,L, + 219384250500,0.150051951408386,L, + 221308673750,0.160818099975586,L, + 223233097000,0.172235012054443,L, + 225157520250,0.184063434600830,L, + 227081943500,0.196003794670105,L, + 229006366750,0.207735657691956,L, + 230930790000,0.218965530395508,L, + 232855213250,0.229463696479797,L, + 234779636500,0.239081740379333,L, + 236704059750,0.247746586799622,L, + 238628483000,0.255445480346680,L, + 240552906250,0.262040257453918,L, + 242477329500,0.267191886901855,L, + 244401752750,0.270941138267517,L, + 246326176000,0.273873686790466,L, + 248250599250,0.276693344116211,L, + 250175022500,0.279411435127258,L, + 252099445750,0.281716465950012,L, + 254023869000,0.283613562583923,L, + 255948292250,0.285119771957397,L, + 257872715500,0.286265492439270,L, + 259797138750,0.287098050117493,L, + 261721562000,0.287681937217712,L, + 263645985250,0.288099408149719,L, + 265570408500,0.288445591926575,L, + 267494831750,0.288825154304504,L, + 269419255000,0.289342761039734,L, + 271343678250,0.290098309516907,L, + 273268101500,0.291177868843079,L, + 275192524750,0.292650580406189,L, + 277116948000,0.294566750526428,L, + 279041371250,0.296957612037659,L, + 280965794500,0.299838662147522,L, + 282890217750,0.303212046623230,L, + 284814641000,0.307069659233093,L, + 286739064250,0.311380743980408,L, + 288663487500,0.316169381141663,L, + 290587910750,0.321501851081848,L, + 292512334000,0.327432036399841,L, + 294436757250,0.333986639976501,L, + 296361180500,0.341151595115662,L, + 298285603750,0.348865151405334,L, + 300210027000,0.357027649879456,L, + 302134450250,0.365518450737000,L, + 304058873500,0.374218583106995,L, + 305983296750,0.383025288581848,L, + 307907720000,0.391859650611877,L, + 309832143250,0.401284337043762,L, + 311756566500,0.411891102790833,L, + 313680989750,0.423633694648743,L, + 315605413000,0.436426520347595,L, + 317529836250,0.450137495994568,L, + 319454259500,0.464580416679382,L, + 321378682750,0.479514479637146,L, + 323303106000,0.494648098945618,L, + 325227529250,0.509652733802795,L, + 327151952500,0.524180531501770,L, + 329076375750,0.537891507148743,L, + 331000799000,0.550475478172302,L, + 332925222250,0.561673521995544,L, + 334849645500,0.571289658546448,L, + 336774068750,0.579193234443665,L, + 338698492000,0.585315823554993,L, + 340622915250,0.589641213417053,L, + 342547338500,0.592194199562073,L, + 344471761750,0.593029379844666,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -1.077436728358576 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,-1.077436728358576,L, + 1924423250,-1.077436941801987,L, + 3848846500,-1.077436835080282,L, + 5773269750,-1.077436835080282,L, + 7697693000,-1.077436941801987,L, + 9622116250,-1.077436835080282,L, + 11546539500,-1.077436835080282,L, + 15395386000,-1.077436621636870,L, + 17319809250,-1.077436728358576,L, + 21168655750,-1.077436728358576,L, + 23093079000,-1.077436835080282,L, + 25017502250,-1.077436514915164,L, + 26941925500,-1.077436514915164,L, + 28866348750,-1.077436728358576,L, + 30790772000,-1.077436835080282,L, + 32715195250,-1.077436728358576,L, + 34639618500,-1.077436835080282,L, + 38488465000,-1.077436835080282,L, + 40412888250,-1.077436728358576,L, + 42337311500,-1.077436941801987,L, + 44261734750,-1.077436835080282,L, + 46186158000,-1.077436835080282,L, + 48110581250,-1.077436728358576,L, + 50035004500,-1.077436728358576,L, + 51959427750,-1.077436835080282,L, + 53883851000,-1.077437048523693,L, + 55808274250,-1.077436728358576,L, + 57732697500,-1.077436835080282,L, + 59657120750,-1.077436728358576,L, + 61581544000,-1.077436835080282,L, + 63505967250,-1.077436728358576,L, + 65430390500,-1.077436728358576,L, + 67354813750,-1.077436621636870,L, + 69279237000,-1.077436621636870,L, + 71203660250,-1.077436835080282,L, + 73128083500,-1.077436835080282,L, + 75052506750,-1.077436621636870,L, + 76976930000,-1.077436835080282,L, + 82750199750,-1.077436835080282,L, + 84674623000,-1.077437048523693,L, + 86599046250,-1.077436835080282,L, + 88523469500,-1.077436835080282,L, + 90447892750,-1.077436728358576,L, + 92372316000,-1.077436728358576,L, + 94296739250,-1.077436835080282,L, + 101994432250,-1.077436835080282,L, + 105843278750,-1.077436621636870,L, + 107767702000,-1.077436728358576,L, + 109692125250,-1.077436941801987,L, + 111616548500,-1.077436941801987,L, + 115465395000,-1.077436728358576,L, + 117389818250,-1.077437368688811,L, + 153953860000,-1.077437368688811,L, + 155878283250,-1.077437155245399,L, + 159727129750,-1.077437155245399,L, + 161651553000,-1.077437368688811,L, + 163575976250,-1.077437048523693,L, + 165500399500,-1.077437155245399,L, + 167424822750,-1.077437155245399,L, + 171273669250,-1.077437368688811,L, + 173198092500,-1.077437155245399,L, + 175122515750,-1.077437155245399,L, + 177046939000,-1.077437261967105,L, + 178971362250,-1.077437261967105,L, + 180895785500,-1.077437368688811,L, + 182820208750,-1.077437155245399,L, + 186669055250,-1.077437368688811,L, + 188593478500,-1.077437155245399,L, + 200140018000,-1.077437155245399,L, + 202064441250,-1.077437368688811,L, + 203988864500,-1.077437048523693,L, + 205913287750,-1.077437261967105,L, + 207837711000,-1.077437261967105,L, + 209762134250,-1.077437368688811,L, + 213610980750,-1.077437155245399,L, + 217459827250,-1.077437155245399,L, + 219384250500,-1.077437261967105,L, + 221308673750,-1.077437261967105,L, + 223233097000,-1.077437048523693,L, + 225157520250,-1.077437368688811,L, + 227081943500,-1.077437368688811,L, + 229006366750,-1.077437261967105,L, + 230930790000,-1.077437261967105,L, + 232855213250,-1.077437155245399,L, + 234779636500,-1.077437155245399,L, + 236704059750,-1.077437261967105,L, + 238628483000,-1.077437155245399,L, + 240552906250,-1.077437261967105,L, + 242477329500,-1.077437048523693,L, + 244401752750,-1.077437368688811,L, + 246326176000,-1.077437368688811,L, + 248250599250,-1.077437261967105,L, + 250175022500,-1.077437261967105,L, + 254023869000,-1.077437048523693,L, + 255948292250,-1.077437261967105,L, + 263645985250,-1.077437261967105,L, + 267494831750,-1.077437048523693,L, + 271343678250,-1.077437261967105,L, + 275192524750,-1.077437261967105,L, + 279041371250,-1.077437048523693,L, + 280965794500,-1.077437155245399,L, + 284814641000,-1.077437155245399,L, + 286739064250,-1.077437048523693,L, + 288663487500,-1.077437261967105,L, + 294436757250,-1.077437261967105,L, + 296361180500,-1.077437155245399,L, + 302134450250,-1.077437155245399,L, + 304058873500,-1.077437261967105,L, + 305983296750,-1.077437048523693,L, + 307907720000,-1.077437261967105,L, + 309832143250,-1.077437368688811,L, + 311756566500,-1.077437155245399,L, + 313680989750,-1.077437368688811,L, + 315605413000,-1.077437155245399,L, + 317529836250,-1.077437048523693,L, + 319454259500,-1.077437368688811,L, + 321378682750,-1.077437155245399,L, + 323303106000,-1.077437155245399,L, + 325227529250,-1.077437261967105,L, + 327151952500,-1.077437155245399,L, + 329076375750,-1.077437155245399,L, + 331000799000,-1.077437261967105,L, + 332925222250,-1.077437048523693,L, + 334849645500,-1.077437048523693,L, + 338698492000,-1.077437261967105,L, + 340622915250,-1.077437155245399,L, + 342547338500,-1.077437261967105,L, + 344471761750,-1.077437155245399,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -2.888270141488094 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,-2.888270141488094,L, + 1924423250,-2.888270781818329,L, + 3848846500,-2.888270354931506,L, + 5773269750,-2.888270354931506,L, + 7697693000,-2.888270141488094,L, + 9622116250,-2.888270354931506,L, + 11546539500,-2.888270354931506,L, + 13470962750,-2.888270141488094,L, + 15395386000,-2.888270141488094,L, + 17319809250,-2.888270354931506,L, + 19244232500,-2.888270354931506,L, + 21168655750,-2.888270141488094,L, + 23093079000,-2.888270141488094,L, + 26941925500,-2.888270568374918,L, + 28866348750,-2.888270568374918,L, + 30790772000,-2.888269928044683,L, + 32715195250,-2.888270354931506,L, + 34639618500,-2.888270568374918,L, + 38488465000,-2.888270141488094,L, + 40412888250,-2.888270141488094,L, + 42337311500,-2.888270354931506,L, + 44261734750,-2.888270141488094,L, + 48110581250,-2.888270568374918,L, + 50035004500,-2.888270568374918,L, + 51959427750,-2.888270354931506,L, + 53883851000,-2.888270568374918,L, + 55808274250,-2.888270354931506,L, + 57732697500,-2.888270354931506,L, + 59657120750,-2.888270568374918,L, + 61581544000,-2.888270354931506,L, + 63505967250,-2.888269928044683,L, + 65430390500,-2.888269928044683,L, + 67354813750,-2.888270568374918,L, + 69279237000,-2.888270354931506,L, + 71203660250,-2.888270354931506,L, + 73128083500,-2.888270141488094,L, + 76976930000,-2.888270568374918,L, + 78901353250,-2.888270141488094,L, + 80825776500,-2.888270568374918,L, + 82750199750,-2.888270354931506,L, + 84674623000,-2.888269928044683,L, + 86599046250,-2.888270354931506,L, + 92372316000,-2.888270354931506,L, + 94296739250,-2.888269928044683,L, + 98145585750,-2.888270354931506,L, + 100070009000,-2.888270141488094,L, + 101994432250,-2.888270568374918,L, + 103918855500,-2.888269928044683,L, + 105843278750,-2.888270354931506,L, + 107767702000,-2.888270141488094,L, + 111616548500,-2.888270141488094,L, + 113540971750,-2.888270354931506,L, + 115465395000,-2.888270141488094,L, + 117389818250,-2.888270354931506,L, + 153953860000,-2.888270354931506,L, + 155878283250,-2.888269928044683,L, + 157802706500,-2.888269928044683,L, + 159727129750,-2.888270568374918,L, + 161651553000,-2.888270354931506,L, + 163575976250,-2.888269928044683,L, + 165500399500,-2.888269928044683,L, + 167424822750,-2.888270141488094,L, + 171273669250,-2.888270141488094,L, + 173198092500,-2.888269501157860,L, + 175122515750,-2.888270141488094,L, + 177046939000,-2.888269714601271,L, + 178971362250,-2.888270354931506,L, + 182820208750,-2.888269928044683,L, + 184744632000,-2.888269928044683,L, + 186669055250,-2.888270141488094,L, + 188593478500,-2.888269928044683,L, + 194366748250,-2.888270568374918,L, + 196291171500,-2.888269928044683,L, + 198215594750,-2.888270141488094,L, + 203988864500,-2.888270141488094,L, + 205913287750,-2.888269928044683,L, + 209762134250,-2.888269928044683,L, + 211686557500,-2.888270354931506,L, + 213610980750,-2.888270354931506,L, + 217459827250,-2.888269928044683,L, + 221308673750,-2.888269928044683,L, + 223233097000,-2.888270141488094,L, + 225157520250,-2.888270141488094,L, + 227081943500,-2.888270354931506,L, + 229006366750,-2.888269928044683,L, + 230930790000,-2.888270354931506,L, + 232855213250,-2.888269714601271,L, + 236704059750,-2.888270141488094,L, + 238628483000,-2.888269928044683,L, + 240552906250,-2.888270141488094,L, + 242477329500,-2.888270141488094,L, + 244401752750,-2.888269928044683,L, + 246326176000,-2.888270568374918,L, + 248250599250,-2.888270141488094,L, + 250175022500,-2.888270354931506,L, + 254023869000,-2.888269928044683,L, + 255948292250,-2.888270141488094,L, + 261721562000,-2.888270141488094,L, + 263645985250,-2.888269928044683,L, + 265570408500,-2.888270354931506,L, + 267494831750,-2.888269714601271,L, + 271343678250,-2.888270141488094,L, + 273268101500,-2.888269928044683,L, + 275192524750,-2.888269928044683,L, + 277116948000,-2.888270141488094,L, + 279041371250,-2.888270141488094,L, + 280965794500,-2.888269928044683,L, + 282890217750,-2.888270141488094,L, + 284814641000,-2.888269928044683,L, + 286739064250,-2.888270354931506,L, + 288663487500,-2.888269928044683,L, + 290587910750,-2.888270354931506,L, + 294436757250,-2.888269928044683,L, + 298285603750,-2.888270354931506,L, + 300210027000,-2.888270141488094,L, + 302134450250,-2.888270141488094,L, + 304058873500,-2.888269928044683,L, + 305983296750,-2.888269928044683,L, + 307907720000,-2.888270141488094,L, + 309832143250,-2.888269928044683,L, + 313680989750,-2.888269928044683,L, + 315605413000,-2.888269714601271,L, + 317529836250,-2.888270141488094,L, + 319454259500,-2.888270141488094,L, + 321378682750,-2.888269928044683,L, + 323303106000,-2.888269928044683,L, + 325227529250,-2.888270354931506,L, + 327151952500,-2.888269714601271,L, + 329076375750,-2.888270141488094,L, + 332925222250,-2.888270141488094,L, + 334849645500,-2.888269714601271,L, + 338698492000,-2.888270141488094,L, + 340622915250,-2.888269928044683,L, + 342547338500,-2.888270141488094,L, + 344471761750,-2.888269928044683,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 35.454415736123465 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,35.454415736123465,L, + 3848846500,35.454415736123465,L, + 5773269750,35.454419151218048,L, + 7697693000,35.454419151218048,L, + 9622116250,35.454415736123465,L, + 11546539500,35.454419151218048,L, + 13470962750,35.454419151218048,L, + 15395386000,35.454415736123465,L, + 17319809250,35.454419151218048,L, + 19244232500,35.454415736123465,L, + 23093079000,35.454415736123465,L, + 25017502250,35.454412321028876,L, + 26941925500,35.454419151218048,L, + 28866348750,35.454415736123465,L, + 30790772000,35.454419151218048,L, + 34639618500,35.454412321028876,L, + 36564041750,35.454415736123465,L, + 38488465000,35.454415736123465,L, + 40412888250,35.454412321028876,L, + 44261734750,35.454419151218048,L, + 46186158000,35.454412321028876,L, + 48110581250,35.454415736123465,L, + 50035004500,35.454412321028876,L, + 51959427750,35.454415736123465,L, + 55808274250,35.454415736123465,L, + 57732697500,35.454422566312630,L, + 61581544000,35.454415736123465,L, + 63505967250,35.454415736123465,L, + 65430390500,35.454422566312630,L, + 67354813750,35.454412321028876,L, + 69279237000,35.454415736123465,L, + 73128083500,35.454415736123465,L, + 75052506750,35.454419151218048,L, + 76976930000,35.454412321028876,L, + 78901353250,35.454412321028876,L, + 80825776500,35.454419151218048,L, + 82750199750,35.454412321028876,L, + 84674623000,35.454419151218048,L, + 86599046250,35.454415736123465,L, + 90447892750,35.454415736123465,L, + 92372316000,35.454419151218048,L, + 94296739250,35.454415736123465,L, + 96221162500,35.454419151218048,L, + 98145585750,35.454415736123465,L, + 101994432250,35.454422566312630,L, + 103918855500,35.454415736123465,L, + 105843278750,35.454419151218048,L, + 107767702000,35.454419151218048,L, + 109692125250,35.454415736123465,L, + 115465395000,35.454415736123465,L, + 117389818250,35.454419151218048,L, + 155878283250,35.454419151218048,L, + 157802706500,35.454422566312630,L, + 159727129750,35.454412321028876,L, + 163575976250,35.454419151218048,L, + 165500399500,35.454412321028876,L, + 167424822750,35.454419151218048,L, + 169349246000,35.454415736123465,L, + 171273669250,35.454419151218048,L, + 173198092500,35.454412321028876,L, + 175122515750,35.454419151218048,L, + 177046939000,35.454415736123465,L, + 178971362250,35.454419151218048,L, + 182820208750,35.454419151218048,L, + 184744632000,35.454415736123465,L, + 186669055250,35.454415736123465,L, + 188593478500,35.454412321028876,L, + 192442325000,35.454419151218048,L, + 194366748250,35.454419151218048,L, + 198215594750,35.454412321028876,L, + 200140018000,35.454412321028876,L, + 202064441250,35.454415736123465,L, + 203988864500,35.454415736123465,L, + 205913287750,35.454422566312630,L, + 209762134250,35.454415736123465,L, + 211686557500,35.454415736123465,L, + 213610980750,35.454412321028876,L, + 215535404000,35.454415736123465,L, + 217459827250,35.454415736123465,L, + 219384250500,35.454422566312630,L, + 221308673750,35.454415736123465,L, + 225157520250,35.454415736123465,L, + 227081943500,35.454419151218048,L, + 229006366750,35.454419151218048,L, + 230930790000,35.454412321028876,L, + 234779636500,35.454419151218048,L, + 236704059750,35.454419151218048,L, + 238628483000,35.454415736123465,L, + 240552906250,35.454419151218048,L, + 242477329500,35.454412321028876,L, + 244401752750,35.454415736123465,L, + 246326176000,35.454415736123465,L, + 248250599250,35.454419151218048,L, + 250175022500,35.454419151218048,L, + 252099445750,35.454415736123465,L, + 257872715500,35.454415736123465,L, + 259797138750,35.454419151218048,L, + 261721562000,35.454412321028876,L, + 263645985250,35.454415736123465,L, + 267494831750,35.454415736123465,L, + 269419255000,35.454419151218048,L, + 271343678250,35.454415736123465,L, + 273268101500,35.454419151218048,L, + 275192524750,35.454415736123465,L, + 277116948000,35.454419151218048,L, + 279041371250,35.454415736123465,L, + 286739064250,35.454415736123465,L, + 288663487500,35.454419151218048,L, + 290587910750,35.454415736123465,L, + 292512334000,35.454419151218048,L, + 294436757250,35.454415736123465,L, + 296361180500,35.454415736123465,L, + 298285603750,35.454419151218048,L, + 300210027000,35.454419151218048,L, + 302134450250,35.454415736123465,L, + 307907720000,35.454415736123465,L, + 309832143250,35.454419151218048,L, + 311756566500,35.454419151218048,L, + 313680989750,35.454415736123465,L, + 315605413000,35.454419151218048,L, + 317529836250,35.454415736123465,L, + 319454259500,35.454422566312630,L, + 321378682750,35.454415736123465,L, + 323303106000,35.454415736123465,L, + 325227529250,35.454422566312630,L, + 327151952500,35.454415736123465,L, + 329076375750,35.454415736123465,L, + 331000799000,35.454412321028876,L, + 334849645500,35.454419151218048,L, + 336774068750,35.454415736123465,L, + 338698492000,35.454415736123465,L, + 340622915250,35.454419151218048,L, + 344471761750,35.454412321028876,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.137932732701302 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,0.137932732701302,L, + 1924423250,0.138149723410606,L, + 3848846500,0.138802975416183,L, + 5773269750,0.139895468950272,L, + 7697693000,0.141429543495178,L, + 9622116250,0.143406778573990,L, + 11546539500,0.145827949047089,L, + 13470962750,0.148692965507507,L, + 15395386000,0.152000769972801,L, + 17319809250,0.155749157071114,L, + 19244232500,0.159934833645821,L, + 21168655750,0.164553180336952,L, + 23093079000,0.169598355889320,L, + 25017502250,0.175062954425812,L, + 26941925500,0.180938094854355,L, + 28866348750,0.187213391065598,L, + 30790772000,0.193876728415489,L, + 32715195250,0.200914278626442,L, + 34639618500,0.208310499787331,L, + 36564041750,0.216048121452332,L, + 38488465000,0.224107980728149,L, + 40412888250,0.232469230890274,L, + 42337311500,0.241109296679497,L, + 44261734750,0.250004023313522,L, + 46186158000,0.259127467870712,L, + 48110581250,0.268452465534210,L, + 50035004500,0.277950376272202,L, + 51959427750,0.287591487169266,L, + 53883851000,0.297344952821732,L, + 55808274250,0.307179301977158,L, + 57732697500,0.317062377929688,L, + 59657120750,0.326961785554886,L, + 61581544000,0.336844891309738,L, + 63505967250,0.346679359674454,L, + 65430390500,0.356432825326920,L, + 67354813750,0.366073876619339,L, + 69279237000,0.375571757555008,L, + 71203660250,0.384896725416183,L, + 73128083500,0.394020289182663,L, + 75052506750,0.402914941310883,L, + 76976930000,0.411554992198944,L, + 78901353250,0.419916272163391,L, + 80825776500,0.427976101636887,L, + 82750199750,0.435713708400726,L, + 84674623000,0.443109929561615,L, + 86599046250,0.450147479772568,L, + 88523469500,0.456810861825943,L, + 90447892750,0.463086098432541,L, + 92372316000,0.468961417675018,L, + 94296739250,0.474426001310349,L, + 96221162500,0.479471087455750,L, + 98145585750,0.484089463949203,L, + 100070009000,0.488275170326233,L, + 101994432250,0.492023527622223,L, + 103918855500,0.495331317186356,L, + 105843278750,0.498196363449097,L, + 107767702000,0.500617563724518,L, + 109692125250,0.502594769001007,L, + 111616548500,0.504128932952881,L, + 113540971750,0.505221426486969,L, + 115465395000,0.505874514579773,L, + 117389818250,0.506091475486755,L, + 153953860000,0.506091475486755,L, + 155878283250,0.506617724895477,L, + 157802706500,0.508259236812592,L, + 159727129750,0.511085629463196,L, + 161651553000,0.515110850334167,L, + 163575976250,0.520265460014343,L, + 165500399500,0.526379704475403,L, + 167424822750,0.533194541931152,L, + 169349246000,0.540400505065918,L, + 171273669250,0.547692954540253,L, + 173198092500,0.554816246032715,L, + 175122515750,0.561584591865540,L, + 177046939000,0.567881822586060,L, + 178971362250,0.574291586875916,L, + 180895785500,0.581435501575470,L, + 182820208750,0.589281737804413,L, + 184744632000,0.597773671150208,L, + 186669055250,0.606824159622192,L, + 188593478500,0.616312861442566,L, + 190517901750,0.626084387302399,L, + 192442325000,0.635951817035675,L, + 194366748250,0.645705282688141,L, + 196291171500,0.655124306678772,L, + 198215594750,0.663992941379547,L, + 200140018000,0.672116398811340,L, + 202064441250,0.679332494735718,L, + 203988864500,0.685519635677338,L, + 205913287750,0.690598189830780,L, + 207837711000,0.694527566432953,L, + 209762134250,0.697300672531128,L, + 211686557500,0.698935806751251,L, + 213610980750,0.699470460414886,L, + 215535404000,0.699465930461884,L, + 217459827250,0.699452638626099,L, + 219384250500,0.699430525302887,L, + 221308673750,0.699400484561920,L, + 223233097000,0.699363768100739,L, + 225157520250,0.699322819709778,L, + 227081943500,0.699280381202698,L, + 229006366750,0.699239492416382,L, + 230930790000,0.699202775955200,L, + 232855213250,0.699172735214233,L, + 234779636500,0.699150621891022,L, + 236704059750,0.699137270450592,L, + 238628483000,0.699132859706879,L, + 240552906250,0.699135124683380,L, + 242477329500,0.699143409729004,L, + 244401752750,0.699158549308777,L, + 246326176000,0.699179351329803,L, + 248250599250,0.699203073978424,L, + 250175022500,0.699229657649994,L, + 252099445750,0.699260830879211,L, + 254023869000,0.699296474456787,L, + 255948292250,0.699336171150208,L, + 257872715500,0.699379622936249,L, + 259797138750,0.699426114559174,L, + 261721562000,0.699474930763245,L, + 265570408500,0.699575185775757,L, + 267494831750,0.699624300003052,L, + 269419255000,0.699670851230621,L, + 271343678250,0.699713885784149,L, + 273268101500,0.699752449989319,L, + 275192524750,0.699785649776459,L, + 277116948000,0.699813008308411,L, + 279041371250,0.699834406375885,L, + 280965794500,0.699849605560303,L, + 282890217750,0.699858427047729,L, + 284814641000,0.699861466884613,L, + 286739064250,0.699283063411713,L, + 288663487500,0.697401404380798,L, + 290587910750,0.693992614746094,L, + 292512334000,0.688853621482849,L, + 294436757250,0.681844890117645,L, + 296361180500,0.672936737537384,L, + 298285603750,0.662237465381622,L, + 300210027000,0.649982869625092,L, + 302134450250,0.636489093303680,L, + 304058873500,0.622092723846436,L, + 305983296750,0.607100546360016,L, + 307907720000,0.591764628887177,L, + 309832143250,0.574890911579132,L, + 311756566500,0.555163443088531,L, + 313680989750,0.532660305500031,L, + 315605413000,0.507546961307526,L, + 317529836250,0.480095833539963,L, + 319454259500,0.450701266527176,L, + 321378682750,0.419885277748108,L, + 323303106000,0.388289570808411,L, + 325227529250,0.356649398803711,L, + 327151952500,0.325750172138214,L, + 329076375750,0.296372592449188,L, + 331000799000,0.269236743450165,L, + 332925222250,0.244955137372017,L, + 334849645500,0.224003151059151,L, + 336774068750,0.206709384918213,L, + 338698492000,0.193263009190559,L, + 340622915250,0.183732911944389,L, + 342547338500,0.178092077374458,L, + 344471761750,0.176242381334305,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.137614399194717 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,0.137614399194717,L, + 1924423250,0.137831807136536,L, + 3848846500,0.138486355543137,L, + 5773269750,0.139581009745598,L, + 7697693000,0.141118124127388,L, + 9622116250,0.143099263310432,L, + 11546539500,0.145525261759758,L, + 13470962750,0.148395970463753,L, + 15395386000,0.151710331439972,L, + 17319809250,0.155466139316559,L, + 19244232500,0.159660115838051,L, + 21168655750,0.164287641644478,L, + 23093079000,0.169342786073685,L, + 25017502250,0.174818247556686,L, + 26941925500,0.180705055594444,L, + 28866348750,0.186992794275284,L, + 30790772000,0.193669319152832,L, + 32715195250,0.200720831751823,L, + 34639618500,0.208131715655327,L, + 36564041750,0.215884670615196,L, + 38488465000,0.223960503935814,L, + 40412888250,0.232338324189186,L, + 42337311500,0.240995541214943,L, + 44261734750,0.249907851219177,L, + 46186158000,0.259049415588379,L, + 48110581250,0.268392950296402,L, + 50035004500,0.277909696102142,L, + 51959427750,0.287569880485535,L, + 53883851000,0.297342658042908,L, + 55808274250,0.307196587324142,L, + 57732697500,0.317099243402481,L, + 59657120750,0.327018320560455,L, + 61581544000,0.336920976638794,L, + 63505967250,0.346774846315384,L, + 65430390500,0.356547713279724,L, + 67354813750,0.366207957267761,L, + 69279237000,0.375724673271179,L, + 71203660250,0.385068178176880,L, + 73128083500,0.394209742546082,L, + 75052506750,0.403122037649155,L, + 76976930000,0.411779195070267,L, + 78901353250,0.420157134532928,L, + 80825776500,0.428232878446579,L, + 82750199750,0.435985922813416,L, + 84674623000,0.443396717309952,L, + 86599046250,0.450448215007782,L, + 88523469500,0.457124888896942,L, + 90447892750,0.463412582874298,L, + 92372316000,0.469299435615540,L, + 94296739250,0.474774807691574,L, + 96221162500,0.479829967021942,L, + 98145585750,0.484457522630692,L, + 100070009000,0.488651454448700,L, + 101994432250,0.492407351732254,L, + 103918855500,0.495721668004990,L, + 105843278750,0.498592406511307,L, + 107767702000,0.501018404960632,L, + 109692125250,0.502999484539032,L, + 111616548500,0.504536569118500,L, + 113540971750,0.505631148815155,L, + 115465395000,0.506285846233368,L, + 117389818250,0.506503164768219,L, + 153953860000,0.506503164768219,L, + 155878283250,0.507024765014648,L, + 157802706500,0.508651971817017,L, + 159727129750,0.511453688144684,L, + 161651553000,0.515443682670593,L, + 163575976250,0.520553290843964,L, + 165500399500,0.526614129543304,L, + 167424822750,0.533369362354279,L, + 169349246000,0.540512263774872,L, + 171273669250,0.547741055488586,L, + 173198092500,0.554802000522614,L, + 175122515750,0.561511337757111,L, + 177046939000,0.567753434181213,L, + 178971362250,0.574107229709625,L, + 180895785500,0.581188678741455,L, + 182820208750,0.588966369628906,L, + 184744632000,0.597383975982666,L, + 186669055250,0.606355488300323,L, + 188593478500,0.615761339664459,L, + 190517901750,0.625447332859039,L, + 192442325000,0.635228574275970,L, + 194366748250,0.644896864891052,L, + 196291171500,0.654233336448669,L, + 198215594750,0.663024604320526,L, + 200140018000,0.671077013015747,L, + 202064441250,0.678230047225952,L, + 203988864500,0.684363245964050,L, + 205913287750,0.689397275447845,L, + 207837711000,0.693292438983917,L, + 209762134250,0.696041166782379,L, + 211686557500,0.697662115097046,L, + 213610980750,0.698192000389099,L, + 215535404000,0.698191285133362,L, + 217459827250,0.698189496994019,L, + 219384250500,0.698186397552490,L, + 221308673750,0.698182284832001,L, + 223233097000,0.698177218437195,L, + 225157520250,0.698171496391296,L, + 227081943500,0.698165595531464,L, + 229006366750,0.698159933090210,L, + 230930790000,0.698154926300049,L, + 232855213250,0.698150753974915,L, + 234779636500,0.698147654533386,L, + 236704059750,0.698145866394043,L, + 238628483000,0.698145151138306,L, + 240552906250,0.698145449161530,L, + 242477329500,0.698146700859070,L, + 244401752750,0.698148727416992,L, + 246326176000,0.698151588439941,L, + 248250599250,0.698154926300049,L, + 250175022500,0.698158562183380,L, + 252099445750,0.698162972927094,L, + 254023869000,0.698167860507965,L, + 255948292250,0.698173344135284,L, + 257872715500,0.698179364204407,L, + 259797138750,0.698185861110687,L, + 261721562000,0.698192596435547,L, + 265570408500,0.698206543922424,L, + 267494831750,0.698213279247284,L, + 269419255000,0.698219716548920,L, + 271343678250,0.698225736618042,L, + 273268101500,0.698231101036072,L, + 275192524750,0.698235690593719,L, + 277116948000,0.698239505290985,L, + 279041371250,0.698242485523224,L, + 280965794500,0.698244571685791,L, + 282890217750,0.698245823383331,L, + 284814641000,0.698246181011200,L, + 286739064250,0.697669267654419,L, + 288663487500,0.695791780948639,L, + 290587910750,0.692390918731689,L, + 292512334000,0.687263786792755,L, + 294436757250,0.680271267890930,L, + 296361180500,0.671383738517761,L, + 298285603750,0.660709142684937,L, + 300210027000,0.648482799530029,L, + 302134450250,0.635020256042480,L, + 304058873500,0.620657026767731,L, + 305983296750,0.605699479579926,L, + 307907720000,0.590398907661438,L, + 309832143250,0.573564052581787,L, + 311756566500,0.553882241249084,L, + 313680989750,0.531430900096893,L, + 315605413000,0.506375610828400,L, + 317529836250,0.478987872600555,L, + 319454259500,0.449661076068878,L, + 321378682750,0.418916225433350,L, + 323303106000,0.387393504381180,L, + 325227529250,0.355826318264008,L, + 327151952500,0.324998408555984,L, + 329076375750,0.295688599348068,L, + 331000799000,0.268615335226059,L, + 332925222250,0.244389817118645,L, + 334849645500,0.223486214876175,L, + 336774068750,0.206232339143753,L, + 338698492000,0.192817017436028,L, + 340622915250,0.183308914303780,L, + 342547338500,0.177681118249893,L, + 344471761750,0.175835639238358,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.111224763095379 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.111224763095379,L, + 1924423250,0.111311219632626,L, + 3848846500,0.111571490764618,L, + 5773269750,0.112006738781929,L, + 7697693000,0.112617924809456,L, + 9622116250,0.113405659794807,L, + 11546539500,0.114370279014111,L, + 13470962750,0.115511722862720,L, + 15395386000,0.116829574108124,L, + 17319809250,0.118322946131229,L, + 19244232500,0.119990557432175,L, + 21168655750,0.121830537915230,L, + 23093079000,0.123840562999249,L, + 25017502250,0.126017704606056,L, + 26941925500,0.128358379006386,L, + 28866348750,0.130858525633812,L, + 30790772000,0.133513242006302,L, + 32715195250,0.136317059397697,L, + 34639618500,0.139263764023781,L, + 36564041750,0.142346471548080,L, + 38488465000,0.145557567477226,L, + 40412888250,0.148888751864433,L, + 42337311500,0.152331039309502,L, + 44261734750,0.155874744057655,L, + 46186158000,0.159509599208832,L, + 48110581250,0.163224741816521,L, + 50035004500,0.167008772492409,L, + 51959427750,0.170849829912186,L, + 53883851000,0.174735710024834,L, + 55808274250,0.178653791546822,L, + 57732697500,0.182591274380684,L, + 59657120750,0.186535254120827,L, + 61581544000,0.190472766757011,L, + 63505967250,0.194390848278999,L, + 65430390500,0.198276698589325,L, + 67354813750,0.202117785811424,L, + 69279237000,0.205901801586151,L, + 71203660250,0.209616988897324,L, + 73128083500,0.213251829147339,L, + 75052506750,0.216795504093170,L, + 76976930000,0.220237776637077,L, + 78901353250,0.223568961024284,L, + 80825776500,0.226780086755753,L, + 82750199750,0.229862779378891,L, + 84674623000,0.232809498906136,L, + 86599046250,0.235613286495209,L, + 88523469500,0.238268017768860,L, + 90447892750,0.240768119692802,L, + 92372316000,0.243108868598938,L, + 94296739250,0.245286002755165,L, + 96221162500,0.247296020388603,L, + 98145585750,0.249136000871658,L, + 100070009000,0.250803560018539,L, + 101994432250,0.252296984195709,L, + 103918855500,0.253614842891693,L, + 105843278750,0.254756271839142,L, + 107767702000,0.255720913410187,L, + 109692125250,0.256508648395538,L, + 111616548500,0.257119864225388,L, + 113540971750,0.257555097341537,L, + 115465395000,0.257815331220627,L, + 117389818250,0.257901787757874,L, + 153953860000,0.257901787757874,L, + 155878283250,0.258644849061966,L, + 157802706500,0.260962992906570,L, + 159727129750,0.264954477548599,L, + 161651553000,0.270639002323151,L, + 163575976250,0.277918249368668,L, + 165500399500,0.286552906036377,L, + 167424822750,0.296176731586456,L, + 169349246000,0.306353062391281,L, + 171273669250,0.316651463508606,L, + 173198092500,0.326710879802704,L, + 175122515750,0.336269348859787,L, + 177046939000,0.345162242650986,L, + 178971362250,0.354214221239090,L, + 180895785500,0.364302843809128,L, + 182820208750,0.375383347272873,L, + 184744632000,0.387375622987747,L, + 186669055250,0.400156915187836,L, + 188593478500,0.413556843996048,L, + 190517901750,0.427356153726578,L, + 192442325000,0.441290974617004,L, + 194366748250,0.455065011978149,L, + 196291171500,0.468366354703903,L, + 198215594750,0.480890810489655,L, + 200140018000,0.492362767457962,L, + 202064441250,0.502553522586823,L, + 203988864500,0.511290848255157,L, + 205913287750,0.518462836742401,L, + 207837711000,0.524011969566345,L, + 209762134250,0.527928173542023,L, + 211686557500,0.530237317085266,L, + 213610980750,0.530992269515991,L, + 215535404000,0.529519140720367,L, + 217459827250,0.525068879127502,L, + 219384250500,0.517701089382172,L, + 221308673750,0.507665157318115,L, + 223233097000,0.495449870824814,L, + 225157520250,0.481794416904449,L, + 227081943500,0.467633962631226,L, + 229006366750,0.453978538513184,L, + 230930790000,0.441763222217560,L, + 232855213250,0.431727290153503,L, + 234779636500,0.424359500408173,L, + 236704059750,0.419909238815308,L, + 238628483000,0.418436080217361,L, + 240552906250,0.418899416923523,L, + 242477329500,0.420548647642136,L, + 244401752750,0.423590004444122,L, + 246326176000,0.427756607532501,L, + 248250599250,0.432503104209900,L, + 250175022500,0.437836289405823,L, + 252099445750,0.444078296422958,L, + 254023869000,0.451204359531403,L, + 255948292250,0.459162294864655,L, + 257872715500,0.467865437269211,L, + 259797138750,0.477188736200333,L, + 261721562000,0.486966371536255,L, + 263645985250,0.496994256973267,L, + 265570408500,0.507038831710815,L, + 267494831750,0.516850173473358,L, + 269419255000,0.526180148124695,L, + 271343678250,0.534799396991730,L, + 273268101500,0.542513072490692,L, + 275192524750,0.549169898033142,L, + 277116948000,0.554664969444275,L, + 279041371250,0.558937907218933,L, + 280965794500,0.561966538429260,L, + 282890217750,0.563759326934814,L, + 284814641000,0.564347088336945,L, + 286739064250,0.563880801200867,L, + 288663487500,0.562363445758820,L, + 290587910750,0.559614717960358,L, + 292512334000,0.555470764636993,L, + 294436757250,0.549819111824036,L, + 296361180500,0.542635917663574,L, + 298285603750,0.534008383750916,L, + 300210027000,0.524126589298248,L, + 302134450250,0.513245642185211,L, + 304058873500,0.501636803150177,L, + 305983296750,0.489547491073608,L, + 307907720000,0.477181136608124,L, + 309832143250,0.463574647903442,L, + 311756566500,0.447667062282562,L, + 313680989750,0.429521173238754,L, + 315605413000,0.409270495176315,L, + 317529836250,0.387134820222855,L, + 319454259500,0.363431870937347,L, + 321378682750,0.338582783937454,L, + 323303106000,0.313105016946793,L, + 325227529250,0.287591278553009,L, + 327151952500,0.262675076723099,L, + 329076375750,0.238985851407051,L, + 331000799000,0.217104345560074,L, + 332925222250,0.197524398565292,L, + 334849645500,0.180629342794418,L, + 336774068750,0.166684195399284,L, + 338698492000,0.155841439962387,L, + 340622915250,0.148156702518463,L, + 342547338500,0.143608063459396,L, + 344471761750,0.142116487026215,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_009" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.006819382309914 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.006819382309914,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000447034836 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000447034836,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775902748108 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.007775902748108,L, + 1924423250,0.007768988609314,L, + 3848846500,0.007748603820801,L, + 5773269750,0.007714509963989,L, + 7697693000,0.007666587829590,L, + 9622116250,0.007604598999023,L, + 11546539500,0.007528901100159,L, + 13470962750,0.007439255714417,L, + 15395386000,0.007335782051086,L, + 17319809250,0.007218837738037,L, + 19244232500,0.007087945938110,L, + 21168655750,0.006943345069885,L, + 23093079000,0.006785631179810,L, + 25017502250,0.006614804267883,L, + 26941925500,0.006430864334106,L, + 28866348750,0.006234765052795,L, + 30790772000,0.006026387214661,L, + 32715195250,0.005806207656860,L, + 34639618500,0.005575060844421,L, + 36564041750,0.005332946777344,L, + 38488465000,0.005080938339233,L, + 40412888250,0.004819512367249,L, + 42337311500,0.004549384117126,L, + 44261734750,0.004271149635315,L, + 46186158000,0.003985881805420,L, + 48110581250,0.003694295883179,L, + 50035004500,0.003397226333618,L, + 51959427750,0.003095746040344,L, + 53883851000,0.002790689468384,L, + 55808274250,0.002483129501343,L, + 57732697500,0.002174019813538,L, + 59657120750,0.001864552497864,L, + 61581544000,0.001555442810059,L, + 63505967250,0.001247882843018,L, + 65430390500,0.000942826271057,L, + 67354813750,0.000641345977783,L, + 69279237000,0.000344276428223,L, + 71203660250,0.000052690505981,L, + 73128083500,-0.000232577323914,L, + 75052506750,-0.000510811805725,L, + 76976930000,-0.000780940055847,L, + 78901353250,-0.001042485237122,L, + 80825776500,-0.001294612884521,L, + 82750199750,-0.001536488533020,L, + 84674623000,-0.001767635345459,L, + 86599046250,-0.001987814903259,L, + 88523469500,-0.002196192741394,L, + 90447892750,-0.002392530441284,L, + 92372316000,-0.002576231956482,L, + 94296739250,-0.002747058868408,L, + 96221162500,-0.002904772758484,L, + 98145585750,-0.003049373626709,L, + 100070009000,-0.003180265426636,L, + 101994432250,-0.003297448158264,L, + 103918855500,-0.003400921821594,L, + 105843278750,-0.003490447998047,L, + 107767702000,-0.003566026687622,L, + 109692125250,-0.003628015518188,L, + 111616548500,-0.003675937652588,L, + 113540971750,-0.003710150718689,L, + 115465395000,-0.003730416297913,L, + 117389818250,-0.003737211227417,L, + 119314241500,-0.003602862358093,L, + 121238664750,-0.003190279006958,L, + 123163088000,-0.002487182617188,L, + 125087511250,-0.001480817794800,L, + 127011934500,-0.000159263610840,L, + 128936357750,0.001487851142883,L, + 130860781000,0.003469109535217,L, + 132785204250,0.005791306495667,L, + 134709627500,0.008458733558655,L, + 136634050750,0.011471986770630,L, + 138558474000,0.014828324317932,L, + 140482897250,0.018521308898926,L, + 142407320500,0.022539973258972,L, + 144331743750,0.026869177818298,L, + 146256167000,0.031489491462708,L, + 148180590250,0.036378026008606,L, + 150105013500,0.041508436203003,L, + 152029436750,0.046852350234985,L, + 153953860000,0.052379488945007,L, + 155878283250,0.058058738708496,L, + 157802706500,0.063858985900879,L, + 159727129750,0.069750428199768,L, + 161651553000,0.075704336166382,L, + 163575976250,0.081694006919861,L, + 165500399500,0.087695479393005,L, + 167424822750,0.093686580657959,L, + 169349246000,0.099648594856262,L, + 171273669250,0.105564713478088,L, + 173198092500,0.111420989036560,L, + 175122515750,0.117205023765564,L, + 177046939000,0.122907757759094,L, + 178971362250,0.128847718238831,L, + 180895785500,0.135353922843933,L, + 182820208750,0.142412424087524,L, + 184744632000,0.149971723556519,L, + 186669055250,0.157934784889221,L, + 188593478500,0.166156172752380,L, + 190517901750,0.174453735351562,L, + 192442325000,0.182631731033325,L, + 194366748250,0.190510630607605,L, + 196291171500,0.197949767112732,L, + 198215594750,0.204857230186462,L, + 200140018000,0.211187601089478,L, + 202064441250,0.216932058334351,L, + 203988864500,0.222187876701355,L, + 205913287750,0.227042913436890,L, + 207837711000,0.231497287750244,L, + 209762134250,0.235557436943054,L, + 211686557500,0.239236831665039,L, + 213610980750,0.242557764053345,L, + 215535404000,0.245552062988281,L, + 217459827250,0.248262166976929,L, + 219384250500,0.250741124153137,L, + 221308673750,0.253052234649658,L, + 223233097000,0.255266189575195,L, + 225157520250,0.257460594177246,L, + 227081943500,0.259714603424072,L, + 229006366750,0.262107014656067,L, + 230930790000,0.264711618423462,L, + 232855213250,0.267594337463379,L, + 234779636500,0.270811796188354,L, + 236704059750,0.274409413337708,L, + 238628483000,0.278421044349670,L, + 240552906250,0.282870173454285,L, + 242477329500,0.287770628929138,L, + 244401752750,0.293127417564392,L, + 246326176000,0.298939347267151,L, + 248250599250,0.305199742317200,L, + 250175022500,0.311898827552795,L, + 252099445750,0.319000124931335,L, + 254023869000,0.326461195945740,L, + 255948292250,0.334245800971985,L, + 257872715500,0.342323184013367,L, + 259797138750,0.350666880607605,L, + 261721562000,0.359253048896790,L, + 263645985250,0.368061661720276,L, + 265570408500,0.377074360847473,L, + 267494831750,0.386274695396423,L, + 269419255000,0.395647883415222,L, + 271343678250,0.405180096626282,L, + 273268101500,0.414858222007751,L, + 275192524750,0.424671053886414,L, + 277116948000,0.434606432914734,L, + 279041371250,0.444653630256653,L, + 280965794500,0.454801440238953,L, + 282890217750,0.465038895606995,L, + 284814641000,0.475354552268982,L, + 286739064250,0.485736489295959,L, + 288663487500,0.496170878410339,L, + 290587910750,0.506643176078796,L, + 292512334000,0.517135024070740,L, + 294436757250,0.527624964714050,L, + 296361180500,0.538084149360657,L, + 298285603750,0.548473238945007,L, + 300210027000,0.558734297752380,L, + 302134450250,0.568772673606873,L, + 304058873500,0.578409790992737,L, + 305983296750,0.587214112281799,L, + 307907720000,0.593029379844666,L, + 309832143250,0.007775902748108,L, + 344471761750,0.007775902748108,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000002354814088 + KeyVer: 4005 + KeyCount: 82 + Key: + 0,-0.000002354814088,L, + 1924423250,0.000000000000000,L, + 7697693000,0.000000000000000,L, + 9622116250,0.000002350238567,L, + 11546539500,0.000000000000000,L, + 13470962750,0.000000000000000,L, + 15395386000,0.000002342671392,L, + 17319809250,0.000002339268147,L, + 19244232500,0.000000000000000,L, + 21168655750,-0.000002331072189,L, + 23093079000,0.000002326258305,L, + 25017502250,0.000002320955887,L, + 26941925500,0.000002315157202,L, + 28866348750,-0.000002308855734,L, + 30790772000,0.000000000000000,L, + 32715195250,0.000000000000000,L, + 34639618500,0.000002286894946,L, + 36564041750,0.000000000000000,L, + 44261734750,0.000000000000000,L, + 46186158000,-0.000002229298103,L, + 48110581250,0.000000000000000,L, + 57732697500,0.000000000000000,L, + 59657120750,-0.000002141330372,L, + 61581544000,0.000000000000000,L, + 63505967250,-0.000002112903847,L, + 65430390500,0.000002098263525,L, + 67354813750,0.000000000000000,L, + 69279237000,-0.000002068264126,L, + 71203660250,0.000000000000000,L, + 73128083500,0.000002037488163,L, + 75052506750,0.000000000000000,L, + 90447892750,0.000000000000000,L, + 92372316000,0.000001879172262,L, + 94296739250,0.000000000000000,L, + 107767702000,0.000000000000000,L, + 109692125250,-0.000001742198545,L, + 111616548500,0.000001727732467,L, + 113540971750,-0.000001713441649,L, + 115465395000,0.000000000000000,L, + 117389818250,0.000003370805183,L, + 119314241500,-0.000003341778372,L, + 121238664750,0.000000000000000,L, + 128936357750,0.000000000000000,L, + 130860781000,-0.000003120438636,L, + 132785204250,0.000000000000000,L, + 136634050750,0.000000000000000,L, + 138558474000,0.000002948529503,L, + 140482897250,0.000000000000000,L, + 163575976250,0.000000000000000,L, + 165500399500,0.000002512032417,L, + 167424822750,0.000000000000000,L, + 248250599250,0.000000000000000,L, + 250175022500,0.000002474460143,L, + 252099445750,-0.000002486226058,L, + 254023869000,0.000000000000000,L, + 257872715500,0.000000000000000,L, + 259797138750,0.000002601368651,L, + 261721562000,0.000000000000000,L, + 263645985250,0.000002698446915,L, + 265570408500,0.000000000000000,L, + 267494831750,0.000002823932367,L, + 269419255000,-0.000002898488843,L, + 271343678250,0.000000000000000,L, + 273268101500,0.000003074750807,L, + 275192524750,0.000000000000000,L, + 280965794500,0.000000000000000,L, + 282890217750,0.000001864828520,L, + 284814641000,-0.000001956181379,L, + 286739064250,-0.000002059558464,L, + 288663487500,-0.000002177150848,L, + 290587910750,0.000000000000000,L, + 292512334000,-0.000002466758214,L, + 294436757250,0.000000000000000,L, + 296361180500,-0.000002857504165,L, + 298285603750,0.000000000000000,L, + 300210027000,0.000000000000000,L, + 302134450250,0.000001879279332,L, + 304058873500,0.000002091831374,L, + 305983296750,0.000000000000000,L, + 307907720000,-0.000002535497888,L, + 309832143250,-0.000002354814088,L, + 344471761750,-0.000002354814088,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.362565219402313 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565219402313,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812697887421,L, + 7697693000,0.363011062145233,L, + 9622116250,0.363271057605743,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578413009644,L, + 21168655750,0.366257935762405,L, + 23093079000,0.367015838623047,L, + 25017502250,0.367854326963425,L, + 26941925500,0.368775665760040,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875895023346,L, + 32715195250,0.372058928012848,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700278043747,L, + 38488465000,0.376161932945251,L, + 40412888250,0.377719521522522,L, + 42337311500,0.379374235868454,L, + 44261734750,0.381126999855042,L, + 46186158000,0.382978677749634,L, + 48110581250,0.384929597377777,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129936695099,L, + 53883851000,0.391378819942474,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170854568481,L, + 59657120750,0.398711800575256,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895339488983,L, + 67354813750,0.409803271293640,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267824411392,L, + 76976930000,0.425577521324158,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812510490417,L, + 90447892750,0.450549781322479,L, + 92372316000,0.454334974288940,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945601463318,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868727684021,L, + 103918855500,0.477876722812653,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972404479980,L, + 109692125250,0.490055322647095,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279988765717,L, + 115465395000,0.502417623996735,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852451324463,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595129013062,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118251800537,L, + 140482897250,0.587658882141113,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166888237000,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652674973011017,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287256240845,L, + 161651553000,0.670731425285339,L, + 163575976250,0.675558447837830,L, + 165500399500,0.679747343063354,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393235206604,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068602561951,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633651256561,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842477798462,L, + 280965794500,0.478641331195831,L, + 282890217750,0.457829564809799,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111595630646,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887513160706,L, + 302134450250,0.227154538035393,L, + 304058873500,0.204073250293732,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565219402313,L, + 344471761750,0.362565219402313,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.362565219402313 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565219402313,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812697887421,L, + 7697693000,0.363011062145233,L, + 9622116250,0.363271057605743,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578413009644,L, + 21168655750,0.366257935762405,L, + 23093079000,0.367015838623047,L, + 25017502250,0.367854326963425,L, + 26941925500,0.368775665760040,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875895023346,L, + 32715195250,0.372058928012848,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700278043747,L, + 38488465000,0.376161932945251,L, + 40412888250,0.377719521522522,L, + 42337311500,0.379374235868454,L, + 44261734750,0.381126999855042,L, + 46186158000,0.382978677749634,L, + 48110581250,0.384929597377777,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129936695099,L, + 53883851000,0.391378819942474,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170854568481,L, + 59657120750,0.398711800575256,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895339488983,L, + 67354813750,0.409803271293640,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267824411392,L, + 76976930000,0.425577521324158,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812510490417,L, + 90447892750,0.450549781322479,L, + 92372316000,0.454334974288940,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945601463318,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868727684021,L, + 103918855500,0.477876722812653,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972404479980,L, + 109692125250,0.490055322647095,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279988765717,L, + 115465395000,0.502417623996735,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852451324463,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595129013062,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118251800537,L, + 140482897250,0.587658882141113,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166888237000,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652674973011017,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287256240845,L, + 161651553000,0.670731425285339,L, + 163575976250,0.675558447837830,L, + 165500399500,0.679747343063354,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393235206604,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068602561951,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633651256561,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842477798462,L, + 280965794500,0.478641331195831,L, + 282890217750,0.457829564809799,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111595630646,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887513160706,L, + 302134450250,0.227154538035393,L, + 304058873500,0.204073250293732,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565219402313,L, + 344471761750,0.362565219402313,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.370854884386063 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.370854884386063,L, + 1924423250,0.370877742767334,L, + 3848846500,0.370947629213333,L, + 5773269750,0.371066689491272,L, + 7697693000,0.371237039566040,L, + 9622116250,0.371460914611816,L, + 11546539500,0.371740609407425,L, + 13470962750,0.372078388929367,L, + 15395386000,0.372476607561111,L, + 17319809250,0.372937679290771,L, + 19244232500,0.373464018106461,L, + 21168655750,0.374058037996292,L, + 23093079000,0.374722182750702,L, + 25017502250,0.375458836555481,L, + 26941925500,0.376270413398743,L, + 28866348750,0.377159267663956,L, + 30790772000,0.378127694129944,L, + 32715195250,0.379177868366241,L, + 34639618500,0.380311965942383,L, + 36564041750,0.381532013416290,L, + 38488465000,0.382839798927307,L, + 40412888250,0.384237110614777,L, + 42337311500,0.385725468397141,L, + 44261734750,0.387306213378906,L, + 46186158000,0.388980507850647,L, + 48110581250,0.390749186277390,L, + 50035004500,0.392612963914871,L, + 51959427750,0.394572228193283,L, + 53883851000,0.396627128124237,L, + 55808274250,0.398777514696121,L, + 57732697500,0.401022911071777,L, + 59657120750,0.403362721204758,L, + 61581544000,0.405795902013779,L, + 63505967250,0.408321261405945,L, + 65430390500,0.410937249660492,L, + 67354813750,0.413642227649689,L, + 69279237000,0.416434139013290,L, + 71203660250,0.419310867786407,L, + 73128083500,0.422269999980927,L, + 75052506750,0.425309091806412,L, + 76976930000,0.428425341844559,L, + 78901353250,0.431616067886353,L, + 80825776500,0.434878408908844,L, + 82750199750,0.438209354877472,L, + 84674623000,0.441605895757675,L, + 86599046250,0.445064932107925,L, + 88523469500,0.448583602905273,L, + 90447892750,0.452158659696579,L, + 92372316000,0.455787211656570,L, + 94296739250,0.459466218948364,L, + 96221162500,0.463192850351334,L, + 98145585750,0.466964185237885,L, + 100070009000,0.470777451992035,L, + 101994432250,0.474629968404770,L, + 103918855500,0.478519082069397,L, + 105843278750,0.482442289590836,L, + 107767702000,0.486397206783295,L, + 109692125250,0.490381538867950,L, + 111616548500,0.494392991065979,L, + 113540971750,0.498429447412491,L, + 115465395000,0.502488970756531,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510674059391022,L, + 121238664750,0.514811515808105,L, + 123163088000,0.518990278244019,L, + 125087511250,0.523219525814056,L, + 127011934500,0.527509510517120,L, + 128936357750,0.531871080398560,L, + 130860781000,0.536316275596619,L, + 132785204250,0.540857553482056,L, + 134709627500,0.545508146286011,L, + 136634050750,0.550281465053558,L, + 138558474000,0.555191099643707,L, + 140482897250,0.560250222682953,L, + 142407320500,0.565471231937408,L, + 144331743750,0.570865750312805,L, + 146256167000,0.576443612575531,L, + 148180590250,0.582212865352631,L, + 150105013500,0.588179886341095,L, + 152029436750,0.594348371028900,L, + 153953860000,0.600719749927521,L, + 155878283250,0.607293605804443,L, + 157802706500,0.614067018032074,L, + 159727129750,0.621035337448120,L, + 161651553000,0.628192365169525,L, + 163575976250,0.635530650615692,L, + 165500399500,0.643041670322418,L, + 167424822750,0.650716364383698,L, + 169349246000,0.658545374870300,L, + 171273669250,0.666518926620483,L, + 173198092500,0.674627482891083,L, + 175122515750,0.682861804962158,L, + 177046939000,0.691212654113770,L, + 178971362250,0.700581014156342,L, + 180895785500,0.711831986904144,L, + 182820208750,0.724810838699341,L, + 184744632000,0.739207863807678,L, + 186669055250,0.754532456398010,L, + 188593478500,0.770123004913330,L, + 190517901750,0.785207509994507,L, + 192442325000,0.799009799957275,L, + 194366748250,0.810864746570587,L, + 196291171500,0.820297777652740,L, + 198215594750,0.827048718929291,L, + 200140018000,0.831043422222137,L, + 202064441250,0.832345306873322,L, + 203988864500,0.831680595874786,L, + 205913287750,0.829649686813354,L, + 207837711000,0.826202571392059,L, + 209762134250,0.821300983428955,L, + 211686557500,0.814921319484711,L, + 213610980750,0.807059764862061,L, + 215535404000,0.797736942768097,L, + 217459827250,0.787002503871918,L, + 219384250500,0.774937570095062,L, + 221308673750,0.761656582355499,L, + 223233097000,0.747306227684021,L, + 225157520250,0.732061028480530,L, + 227081943500,0.716117203235626,L, + 229006366750,0.699683964252472,L, + 230930790000,0.682973504066467,L, + 232855213250,0.666191935539246,L, + 234779636500,0.649530768394470,L, + 236704059750,0.633161127567291,L, + 238628483000,0.617229759693146,L, + 240552906250,0.601857542991638,L, + 242477329500,0.587140440940857,L, + 244401752750,0.573150396347046,L, + 246326176000,0.559938609600067,L, + 248250599250,0.547538459300995,L, + 250175022500,0.535492420196533,L, + 252099445750,0.523339152336121,L, + 254023869000,0.511092364788055,L, + 255948292250,0.498763799667358,L, + 257872715500,0.486363768577576,L, + 259797138750,0.473901331424713,L, + 261721562000,0.461384624242783,L, + 263645985250,0.448821097612381,L, + 265570408500,0.436217546463013,L, + 267494831750,0.423580318689346,L, + 269419255000,0.410915702581406,L, + 271343678250,0.398229509592056,L, + 273268101500,0.385527729988098,L, + 275192524750,0.372816383838654,L, + 277116948000,0.360101580619812,L, + 279041371250,0.347389727830887,L, + 280965794500,0.334687888622284,L, + 282890217750,0.322003573179245,L, + 284814641000,0.309345334768295,L, + 286739064250,0.296723067760468,L, + 288663487500,0.284148365259171,L, + 290587910750,0.271635293960571,L, + 292512334000,0.259201377630234,L, + 294436757250,0.246869236230850,L, + 296361180500,0.234669387340546,L, + 298285603750,0.222644731402397,L, + 300210027000,0.210859879851341,L, + 302134450250,0.199421197175980,L, + 304058873500,0.188528910279274,L, + 305983296750,0.178665339946747,L, + 307907720000,0.172213584184647,L, + 309832143250,0.370854884386063,L, + 344471761750,0.370854884386063,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireA_001" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.122707366943359 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.122707366943359,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.377202928066254 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.377202928066254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000119209290,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,0.000000000000000,L, + 1924423250,-0.000001724342657,L, + 3848846500,0.000000000000000,L, + 5773269750,0.000000000000000,L, + 7697693000,0.000001721271411,L, + 9622116250,-0.000001719425774,L, + 11546539500,0.000000000000000,L, + 13470962750,0.000000000000000,L, + 15395386000,0.000001711491587,L, + 17319809250,0.000000000000000,L, + 19244232500,-0.000001704322159,L, + 21168655750,0.000000000000000,L, + 23093079000,-0.000001695824735,L, + 25017502250,-0.000001691143264,L, + 26941925500,0.000000000000000,L, + 28866348750,0.000003362150207,L, + 30790772000,0.000000000000000,L, + 32715195250,0.000000000000000,L, + 34639618500,0.000003329554050,L, + 36564041750,0.000000000000000,L, + 38488465000,-0.000003307198568,L, + 40412888250,0.000000000000000,L, + 42337311500,-0.000003285140886,L, + 44261734750,0.000003274429185,L, + 46186158000,0.000000000000000,L, + 50035004500,0.000000000000000,L, + 51959427750,0.000003235371770,L, + 53883851000,0.000003226850734,L, + 55808274250,-0.000003218920415,L, + 57732697500,0.000000000000000,L, + 76976930000,0.000000000000000,L, + 78901353250,-0.000003177318556,L, + 80825776500,0.000000000000000,L, + 82750199750,0.000000000000000,L, + 84674623000,-0.000003189460031,L, + 86599046250,0.000000000000000,L, + 92372316000,0.000000000000000,L, + 94296739250,0.000003237489765,L, + 96221162500,0.000000000000000,L, + 98145585750,0.000003260912897,L, + 100070009000,0.000000000000000,L, + 111616548500,0.000000000000000,L, + 113540971750,0.000003313082136,L, + 115465395000,0.000000000000000,L, + 125087511250,0.000000000000000,L, + 127011934500,0.000003169526655,L, + 128936357750,0.000000000000000,L, + 130860781000,0.000000000000000,L, + 132785204250,0.000003040075535,L, + 134709627500,0.000000000000000,L, + 136634050750,-0.000002945340602,L, + 138558474000,-0.000002898039393,L, + 140482897250,-0.000002851853057,L, + 142407320500,0.000000000000000,L, + 146256167000,0.000000000000000,L, + 148180590250,0.000002690752925,L, + 150105013500,0.000000000000000,L, + 161651553000,0.000000000000000,L, + 163575976250,0.000002540659852,L, + 165500399500,0.000000000000000,L, + 167424822750,-0.000002540310144,L, + 169349246000,0.000002544674170,L, + 171273669250,0.000000000000000,L, + 175122515750,0.000000000000000,L, + 177046939000,0.000002592383508,L, + 178971362250,0.000000000000000,L, + 182820208750,0.000000000000000,L, + 184744632000,0.000002689245189,L, + 186669055250,0.000000000000000,L, + 188593478500,0.000000000000000,L, + 190517901750,0.000002790656132,L, + 192442325000,-0.000002828535571,L, + 194366748250,0.000000000000000,L, + 196291171500,0.000002907763443,L, + 198215594750,0.000000000000000,L, + 200140018000,0.000002987859275,L, + 202064441250,0.000000000000000,L, + 203988864500,0.000000000000000,L, + 205913287750,0.000003098764250,L, + 207837711000,-0.000003130832383,L, + 209762134250,0.000000000000000,L, + 225157520250,0.000000000000000,L, + 227081943500,-0.000003201415863,L, + 229006366750,0.000003170138543,L, + 230930790000,0.000003131648234,L, + 232855213250,0.000000000000000,L, + 234779636500,0.000003039679416,L, + 236704059750,-0.000002990261230,L, + 238628483000,0.000002941415238,L, + 240552906250,0.000000000000000,L, + 248250599250,0.000000000000000,L, + 250175022500,0.000002745362387,L, + 252099445750,0.000002735366183,L, + 254023869000,-0.000002732076116,L, + 255948292250,-0.000002735417072,L, + 257872715500,0.000000000000000,L, + 259797138750,-0.000002762677225,L, + 261721562000,-0.000002786771479,L, + 263645985250,0.000000000000000,L, + 269419255000,0.000000000000000,L, + 271343678250,0.000002994644594,L, + 273268101500,0.000000000000000,L, + 277116948000,0.000000000000000,L, + 279041371250,0.000003178030186,L, + 280965794500,-0.000003209956645,L, + 282890217750,0.000000000000000,L, + 284814641000,0.000000000000000,L, + 286739064250,-0.000003252281736,L, + 288663487500,0.000000000000000,L, + 290587910750,0.000000000000000,L, + 292512334000,0.000003237043165,L, + 294436757250,0.000000000000000,L, + 296361180500,0.000003213954271,L, + 298285603750,0.000000000000000,L, + 300210027000,-0.000003191191678,L, + 302134450250,0.000000000000000,L, + 304058873500,-0.000003178160462,L, + 305983296750,0.000000000000000,L, + 336774068750,0.000000000000000,L, + 338698492000,-0.000001717310628,L, + 340622915250,0.000000000000000,L, + 342547338500,0.000000000000000,L, + 344471761750,-0.000001724689922,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.990143299102783 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.990143299102783,L, + 1924423250,0.990259885787964,L, + 3848846500,0.990611433982849,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695446014404,L, + 17319809250,0.999685764312744,L, + 19244232500,1.001892328262329,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912589073181,L, + 25017502250,1.009699940681458,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691270828247,L, + 36564041750,1.029144644737244,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281337738037,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356876373291,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855975151062,L, + 67354813750,1.072157621383667,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183022499084,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247470855713,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790805816650,L, + 115465395000,1.031739711761475,L, + 117389818250,1.034604549407959,L, + 119314241500,1.039401769638062,L, + 121238664750,1.046128273010254,L, + 123163088000,1.054758071899414,L, + 125087511250,1.065236687660217,L, + 127011934500,1.077477812767029,L, + 128936357750,1.091358900070190,L, + 130860781000,1.106719255447388,L, + 132785204250,1.123358488082886,L, + 134709627500,1.141039371490479,L, + 136634050750,1.159490585327148,L, + 138558474000,1.178415536880493,L, + 140482897250,1.197500228881836,L, + 142407320500,1.216425180435181,L, + 144331743750,1.234876632690430,L, + 146256167000,1.252557277679443,L, + 148180590250,1.269196629524231,L, + 150105013500,1.284556746482849,L, + 152029436750,1.298437833786011,L, + 153953860000,1.310678958892822,L, + 155878283250,1.321157932281494,L, + 157802706500,1.329787492752075,L, + 159727129750,1.336514234542847,L, + 161651553000,1.341311216354370,L, + 163575976250,1.344176292419434,L, + 165500399500,1.345124840736389,L, + 167424822750,1.344361305236816,L, + 169349246000,1.342055797576904,L, + 171273669250,1.338195085525513,L, + 173198092500,1.332778453826904,L, + 175122515750,1.325821280479431,L, + 177046939000,1.317357063293457,L, + 178971362250,1.307440996170044,L, + 180895785500,1.296152591705322,L, + 182820208750,1.283597350120544,L, + 184744632000,1.269908189773560,L, + 186669055250,1.255244970321655,L, + 188593478500,1.239793181419373,L, + 190517901750,1.223760485649109,L, + 192442325000,1.207371950149536,L, + 194366748250,1.190863370895386,L, + 196291171500,1.174474716186523,L, + 198215594750,1.158442258834839,L, + 200140018000,1.142990469932556,L, + 202064441250,1.128327250480652,L, + 203988864500,1.114638090133667,L, + 205913287750,1.102082729339600,L, + 207837711000,1.090794444084167,L, + 209762134250,1.080878496170044,L, + 211686557500,1.072414159774780,L, + 213610980750,1.065456867218018,L, + 215535404000,1.060040473937988,L, + 217459827250,1.056179523468018,L, + 219384250500,1.053874015808105,L, + 221308673750,1.053110361099243,L, + 223233097000,1.054614067077637,L, + 225157520250,1.059159994125366,L, + 227081943500,1.066745042800903,L, + 229006366750,1.077269792556763,L, + 230930790000,1.090510249137878,L, + 232855213250,1.106096506118774,L, + 234779636500,1.123504877090454,L, + 236704059750,1.142072319984436,L, + 238628483000,1.161037921905518,L, + 240552906250,1.179605484008789,L, + 242477329500,1.197013616561890,L, + 244401752750,1.212599992752075,L, + 246326176000,1.225840449333191,L, + 248250599250,1.236365199089050,L, + 250175022500,1.243950366973877,L, + 252099445750,1.248496294021606,L, + 254023869000,1.249999761581421,L, + 255948292250,1.248473048210144,L, + 257872715500,1.243856668472290,L, + 259797138750,1.236154079437256,L, + 261721562000,1.225466370582581,L, + 263645985250,1.212020635604858,L, + 265570408500,1.196193218231201,L, + 267494831750,1.178515195846558,L, + 269419255000,1.159660220146179,L, + 271343678250,1.140400648117065,L, + 273268101500,1.121545791625977,L, + 275192524750,1.103867769241333,L, + 277116948000,1.088040113449097,L, + 279041371250,1.074594736099243,L, + 280965794500,1.063906788825989,L, + 282890217750,1.056204319000244,L, + 284814641000,1.051588058471680,L, + 286739064250,1.050061106681824,L, + 288663487500,1.050616264343262,L, + 290587910750,1.052287340164185,L, + 292512334000,1.055004358291626,L, + 294436757250,1.058557868003845,L, + 296361180500,1.062583446502686,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162773132324,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220610618591,L, + 311756566500,1.070851802825928,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345432281494,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253204345703,L, + 323303106000,1.039523363113403,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590169906616,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820921897888,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529060363770,L, + 344471761750,0.990060448646545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.990143299102783 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.990143299102783,L, + 1924423250,0.990259885787964,L, + 3848846500,0.990611433982849,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695446014404,L, + 17319809250,0.999685764312744,L, + 19244232500,1.001892328262329,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912589073181,L, + 25017502250,1.009699940681458,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691270828247,L, + 36564041750,1.029144644737244,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281337738037,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356876373291,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855975151062,L, + 67354813750,1.072157621383667,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183022499084,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247470855713,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790805816650,L, + 115465395000,1.031299352645874,L, + 117389818250,1.032834291458130,L, + 119314241500,1.035404801368713,L, + 121238664750,1.039009094238281,L, + 123163088000,1.043632984161377,L, + 125087511250,1.049247860908508,L, + 127011934500,1.055806994438171,L, + 128936357750,1.063244819641113,L, + 130860781000,1.071475267410278,L, + 132785204250,1.080391049385071,L, + 134709627500,1.089864850044250,L, + 136634050750,1.099751472473145,L, + 138558474000,1.109891891479492,L, + 140482897250,1.120117902755737,L, + 142407320500,1.130258560180664,L, + 144331743750,1.140145301818848,L, + 146256167000,1.149619102478027,L, + 148180590250,1.158534765243530,L, + 150105013500,1.166765213012695,L, + 152029436750,1.174202919006348,L, + 153953860000,1.180762171745300,L, + 155878283250,1.186376929283142,L, + 157802706500,1.191000938415527,L, + 159727129750,1.194605112075806,L, + 161651553000,1.197175621986389,L, + 163575976250,1.198710680007935,L, + 165500399500,1.199219107627869,L, + 167424822750,1.198837041854858,L, + 169349246000,1.197683334350586,L, + 171273669250,1.195751786231995,L, + 173198092500,1.193041563034058,L, + 175122515750,1.189560413360596,L, + 177046939000,1.185325384140015,L, + 178971362250,1.180364131927490,L, + 180895785500,1.174715995788574,L, + 182820208750,1.168433904647827,L, + 184744632000,1.161584615707397,L, + 186669055250,1.154247879981995,L, + 188593478500,1.146516680717468,L, + 190517901750,1.138494729995728,L, + 192442325000,1.130294561386108,L, + 194366748250,1.122034788131714,L, + 196291171500,1.113834857940674,L, + 198215594750,1.105812907218933,L, + 200140018000,1.098081588745117,L, + 202064441250,1.090744972229004,L, + 203988864500,1.083895444869995,L, + 205913287750,1.077613711357117,L, + 207837711000,1.071965456008911,L, + 209762134250,1.067003965377808,L, + 211686557500,1.062769055366516,L, + 213610980750,1.059287905693054,L, + 215535404000,1.056577682495117,L, + 217459827250,1.054646134376526,L, + 219384250500,1.053492665290833,L, + 221308673750,1.053110361099243,L, + 223233097000,1.053547382354736,L, + 225157520250,1.054868221282959,L, + 227081943500,1.057072043418884,L, + 229006366750,1.060130119323730,L, + 230930790000,1.063977003097534,L, + 232855213250,1.068505764007568,L, + 234779636500,1.073563814163208,L, + 236704059750,1.078958749771118,L, + 238628483000,1.084469199180603,L, + 240552906250,1.089864134788513,L, + 242477329500,1.094922065734863,L, + 244401752750,1.099450588226318,L, + 246326176000,1.103297710418701,L, + 248250599250,1.106355905532837,L, + 250175022500,1.108559727668762,L, + 252099445750,1.109880447387695,L, + 254023869000,1.110317468643188,L, + 255948292250,1.109857320785522,L, + 257872715500,1.108466029167175,L, + 259797138750,1.106144666671753,L, + 261721562000,1.102923631668091,L, + 263645985250,1.098871469497681,L, + 265570408500,1.094101548194885,L, + 267494831750,1.088773846626282,L, + 269419255000,1.083091378211975,L, + 271343678250,1.077287197113037,L, + 273268101500,1.071604728698730,L, + 275192524750,1.066277027130127,L, + 277116948000,1.061507105827332,L, + 279041371250,1.057454824447632,L, + 280965794500,1.054233908653259,L, + 282890217750,1.051912546157837,L, + 284814641000,1.050521254539490,L, + 286739064250,1.050061106681824,L, + 288663487500,1.050616264343262,L, + 290587910750,1.052287340164185,L, + 292512334000,1.055004358291626,L, + 294436757250,1.058557868003845,L, + 296361180500,1.062583446502686,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162773132324,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220610618591,L, + 311756566500,1.070851802825928,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345432281494,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253204345703,L, + 323303106000,1.039523363113403,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590169906616,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820921897888,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529060363770,L, + 344471761750,0.990060448646545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.990969598293304 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.990969598293304,L, + 1924423250,0.991085112094879,L, + 3848846500,0.991433262825012,L, + 5773269750,0.992016136646271,L, + 7697693000,0.992834806442261,L, + 9622116250,0.993889212608337,L, + 11546539500,0.995178401470184,L, + 13470962750,0.996699512004852,L, + 15395386000,0.998448371887207,L, + 17319809250,1.000419259071350,L, + 19244232500,1.002604365348816,L, + 21168655750,1.004993796348572,L, + 23093079000,1.007575750350952,L, + 25017502250,1.010336041450500,L, + 26941925500,1.013258337974548,L, + 28866348750,1.016324520111084,L, + 30790772000,1.019513845443726,L, + 32715195250,1.022804260253906,L, + 34639618500,1.026171803474426,L, + 36564041750,1.029591679573059,L, + 40412888250,1.036483883857727,L, + 42337311500,1.039903759956360,L, + 44261734750,1.043271422386169,L, + 46186158000,1.046561837196350,L, + 48110581250,1.049751043319702,L, + 50035004500,1.052817225456238,L, + 51959427750,1.055739641189575,L, + 53883851000,1.058499932289124,L, + 55808274250,1.061081886291504,L, + 57732697500,1.063471198081970,L, + 59657120750,1.065656423568726,L, + 61581544000,1.067627310752869,L, + 63505967250,1.069376230239868,L, + 65430390500,1.070897221565247,L, + 67354813750,1.072186350822449,L, + 69279237000,1.073240756988525,L, + 71203660250,1.074059367179871,L, + 73128083500,1.074642300605774,L, + 75052506750,1.074990510940552,L, + 76976930000,1.075106024742126,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183141708374,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247590065002,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790925025940,L, + 115465395000,1.031750082969666,L, + 117389818250,1.034646391868591,L, + 119314241500,1.039496183395386,L, + 121238664750,1.046296596527100,L, + 123163088000,1.055021047592163,L, + 125087511250,1.065614581108093,L, + 127011934500,1.077990055084229,L, + 128936357750,1.092023491859436,L, + 130860781000,1.107552170753479,L, + 132785204250,1.124374032020569,L, + 134709627500,1.142248749732971,L, + 136634050750,1.160902500152588,L, + 138558474000,1.180034995079041,L, + 140482897250,1.199329137802124,L, + 142407320500,1.218461632728577,L, + 144331743750,1.237115383148193,L, + 146256167000,1.254990100860596,L, + 148180590250,1.271811842918396,L, + 150105013500,1.287340760231018,L, + 152029436750,1.301374077796936,L, + 153953860000,1.313749551773071,L, + 155878283250,1.324343204498291,L, + 157802706500,1.333067655563354,L, + 159727129750,1.339867830276489,L, + 161651553000,1.344717741012573,L, + 163575976250,1.347614049911499,L, + 165500399500,1.348573207855225,L, + 167424822750,1.348004102706909,L, + 169349246000,1.346277356147766,L, + 171273669250,1.343367695808411,L, + 173198092500,1.339257478713989,L, + 175122515750,1.333938479423523,L, + 177046939000,1.327414035797119,L, + 178971362250,1.319701075553894,L, + 180895785500,1.310832619667053,L, + 182820208750,1.300859451293945,L, + 184744632000,1.289851665496826,L, + 186669055250,1.277898311614990,L, + 188593478500,1.265108823776245,L, + 190517901750,1.251609563827515,L, + 192442325000,1.237542629241943,L, + 194366748250,1.223060846328735,L, + 196291171500,1.208324313163757,L, + 198215594750,1.193494558334351,L, + 200140018000,1.178729772567749,L, + 202064441250,1.164180278778076,L, + 203988864500,1.149984359741211,L, + 205913287750,1.136265873908997,L, + 207837711000,1.123131990432739,L, + 209762134250,1.110672831535339,L, + 211686557500,1.098961114883423,L, + 213610980750,1.088053703308105,L, + 215535404000,1.077992081642151,L, + 217459827250,1.068804740905762,L, + 219384250500,1.060508489608765,L, + 221308673750,1.053110480308533,L, + 223233097000,1.046236515045166,L, + 225157520250,1.039541721343994,L, + 227081943500,1.033076882362366,L, + 229006366750,1.026898622512817,L, + 230930790000,1.021069526672363,L, + 232855213250,1.015653371810913,L, + 234779636500,1.010710358619690,L, + 236704059750,1.006291985511780,L, + 238628483000,1.002433657646179,L, + 240552906250,0.999151527881622,L, + 242477329500,0.996440827846527,L, + 244401752750,0.994277119636536,L, + 246326176000,0.992621421813965,L, + 248250599250,0.991424798965454,L, + 250175022500,0.990634083747864,L, + 252099445750,0.990196049213409,L, + 254023869000,0.990060508251190,L, + 255948292250,0.992901802062988,L, + 257872715500,1.001492261886597,L, + 259797138750,1.015825748443604,L, + 261721562000,1.035714149475098,L, + 263645985250,1.060734510421753,L, + 265570408500,1.090187549591064,L, + 267494831750,1.123083829879761,L, + 269419255000,1.158170461654663,L, + 271343678250,1.194009780883789,L, + 273268101500,1.229096412658691,L, + 275192524750,1.261992573738098,L, + 277116948000,1.291445612907410,L, + 279041371250,1.316465973854065,L, + 280965794500,1.336354374885559,L, + 282890217750,1.350687980651855,L, + 284814641000,1.359278440475464,L, + 286739064250,1.362119674682617,L, + 288663487500,1.356670022010803,L, + 290587910750,1.340123295783997,L, + 292512334000,1.312879800796509,L, + 294436757250,1.276629090309143,L, + 296361180500,1.234558820724487,L, + 298285603750,1.190976381301880,L, + 300210027000,1.150340914726257,L, + 302134450250,1.116236329078674,L, + 304058873500,1.090859174728394,L, + 305983296750,1.075106024742126,L, + 307907720000,1.064484357833862,L, + 309832143250,1.054440021514893,L, + 311756566500,1.045030117034912,L, + 313680989750,1.036310553550720,L, + 315605413000,1.028334498405457,L, + 317529836250,1.021147489547729,L, + 319454259500,1.014782905578613,L, + 321378682750,1.009258031845093,L, + 323303106000,1.004569530487061,L, + 325227529250,1.000691175460815,L, + 327151952500,0.997573971748352,L, + 329076375750,0.995148837566376,L, + 331000799000,0.993331670761108,L, + 332925222250,0.992029190063477,L, + 334849645500,0.991145491600037,L, + 336774068750,0.990588128566742,L, + 338698492000,0.990271508693695,L, + 340622915250,0.990119695663452,L, + 342547338500,0.990067481994629,L, + 344471761750,0.990060508251190,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::navigation" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireA_003" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.014073014259338 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.014073014259338,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000119209290,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,0.000000000000000,L, + 1924423250,-0.000001724342657,L, + 3848846500,0.000000000000000,L, + 5773269750,0.000000000000000,L, + 7697693000,0.000001721271411,L, + 9622116250,-0.000001719425774,L, + 11546539500,0.000000000000000,L, + 13470962750,0.000000000000000,L, + 15395386000,0.000001711491587,L, + 17319809250,0.000000000000000,L, + 19244232500,-0.000001704322159,L, + 21168655750,0.000000000000000,L, + 23093079000,-0.000001695824735,L, + 25017502250,-0.000001691143264,L, + 26941925500,0.000000000000000,L, + 28866348750,0.000003362150207,L, + 30790772000,0.000000000000000,L, + 32715195250,0.000000000000000,L, + 34639618500,0.000003329554050,L, + 36564041750,0.000000000000000,L, + 38488465000,-0.000003307198568,L, + 40412888250,0.000000000000000,L, + 42337311500,-0.000003285140886,L, + 44261734750,0.000003274429185,L, + 46186158000,0.000000000000000,L, + 50035004500,0.000000000000000,L, + 51959427750,0.000003235371770,L, + 53883851000,0.000003226850734,L, + 55808274250,-0.000003218920415,L, + 57732697500,0.000000000000000,L, + 76976930000,0.000000000000000,L, + 78901353250,-0.000003177318556,L, + 80825776500,0.000000000000000,L, + 82750199750,0.000000000000000,L, + 84674623000,-0.000003189460031,L, + 86599046250,0.000000000000000,L, + 92372316000,0.000000000000000,L, + 94296739250,0.000003237489765,L, + 96221162500,0.000000000000000,L, + 98145585750,0.000003260912897,L, + 100070009000,0.000000000000000,L, + 111616548500,0.000000000000000,L, + 113540971750,0.000003313082136,L, + 115465395000,0.000000000000000,L, + 125087511250,0.000000000000000,L, + 127011934500,0.000003169526655,L, + 128936357750,0.000000000000000,L, + 130860781000,0.000000000000000,L, + 132785204250,0.000003040075535,L, + 134709627500,0.000000000000000,L, + 136634050750,-0.000002945340602,L, + 138558474000,-0.000002898039393,L, + 140482897250,-0.000002851853057,L, + 142407320500,0.000000000000000,L, + 146256167000,0.000000000000000,L, + 148180590250,0.000002690752925,L, + 150105013500,0.000000000000000,L, + 161651553000,0.000000000000000,L, + 163575976250,0.000002540659852,L, + 165500399500,0.000000000000000,L, + 167424822750,-0.000002540310144,L, + 169349246000,0.000002544674170,L, + 171273669250,0.000000000000000,L, + 175122515750,0.000000000000000,L, + 177046939000,0.000002592383508,L, + 178971362250,0.000000000000000,L, + 182820208750,0.000000000000000,L, + 184744632000,0.000002689245189,L, + 186669055250,0.000000000000000,L, + 188593478500,0.000000000000000,L, + 190517901750,0.000002790656132,L, + 192442325000,-0.000002828535571,L, + 194366748250,0.000000000000000,L, + 196291171500,0.000002907763443,L, + 198215594750,0.000000000000000,L, + 200140018000,0.000002987859275,L, + 202064441250,0.000000000000000,L, + 203988864500,0.000000000000000,L, + 205913287750,0.000003098764250,L, + 207837711000,-0.000003130832383,L, + 209762134250,0.000000000000000,L, + 225157520250,0.000000000000000,L, + 227081943500,-0.000003201415863,L, + 229006366750,0.000003170138543,L, + 230930790000,0.000003131648234,L, + 232855213250,0.000000000000000,L, + 234779636500,0.000003039679416,L, + 236704059750,-0.000002990261230,L, + 238628483000,0.000002941415238,L, + 240552906250,0.000000000000000,L, + 248250599250,0.000000000000000,L, + 250175022500,0.000002745362387,L, + 252099445750,0.000002735366183,L, + 254023869000,-0.000002732076116,L, + 255948292250,-0.000002735417072,L, + 257872715500,0.000000000000000,L, + 259797138750,-0.000002762677225,L, + 261721562000,-0.000002786771479,L, + 263645985250,0.000000000000000,L, + 269419255000,0.000000000000000,L, + 271343678250,0.000002994644594,L, + 273268101500,0.000000000000000,L, + 277116948000,0.000000000000000,L, + 279041371250,0.000003178030186,L, + 280965794500,-0.000003209956645,L, + 282890217750,0.000000000000000,L, + 284814641000,0.000000000000000,L, + 286739064250,-0.000003252281736,L, + 288663487500,0.000000000000000,L, + 290587910750,0.000000000000000,L, + 292512334000,0.000003237043165,L, + 294436757250,0.000000000000000,L, + 296361180500,0.000003213954271,L, + 298285603750,0.000000000000000,L, + 300210027000,-0.000003191191678,L, + 302134450250,0.000000000000000,L, + 304058873500,-0.000003178160462,L, + 305983296750,0.000000000000000,L, + 336774068750,0.000000000000000,L, + 338698492000,-0.000001717310628,L, + 340622915250,0.000000000000000,L, + 342547338500,0.000000000000000,L, + 344471761750,-0.000001724689922,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.990143299102783 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.990143299102783,L, + 1924423250,0.990259885787964,L, + 3848846500,0.990611433982849,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695446014404,L, + 17319809250,0.999685764312744,L, + 19244232500,1.001892328262329,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912589073181,L, + 25017502250,1.009699940681458,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691270828247,L, + 36564041750,1.029144644737244,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281337738037,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356876373291,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855975151062,L, + 67354813750,1.072157621383667,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183022499084,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247470855713,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790805816650,L, + 115465395000,1.031739711761475,L, + 117389818250,1.034604549407959,L, + 119314241500,1.039401769638062,L, + 121238664750,1.046128273010254,L, + 123163088000,1.054758071899414,L, + 125087511250,1.065236687660217,L, + 127011934500,1.077477812767029,L, + 128936357750,1.091358900070190,L, + 130860781000,1.106719255447388,L, + 132785204250,1.123358488082886,L, + 134709627500,1.141039371490479,L, + 136634050750,1.159490585327148,L, + 138558474000,1.178415536880493,L, + 140482897250,1.197500228881836,L, + 142407320500,1.216425180435181,L, + 144331743750,1.234876632690430,L, + 146256167000,1.252557277679443,L, + 148180590250,1.269196629524231,L, + 150105013500,1.284556746482849,L, + 152029436750,1.298437833786011,L, + 153953860000,1.310678958892822,L, + 155878283250,1.321157932281494,L, + 157802706500,1.329787492752075,L, + 159727129750,1.336514234542847,L, + 161651553000,1.341311216354370,L, + 163575976250,1.344176292419434,L, + 165500399500,1.345124840736389,L, + 167424822750,1.344361305236816,L, + 169349246000,1.342055797576904,L, + 171273669250,1.338195085525513,L, + 173198092500,1.332778453826904,L, + 175122515750,1.325821280479431,L, + 177046939000,1.317357063293457,L, + 178971362250,1.307440996170044,L, + 180895785500,1.296152591705322,L, + 182820208750,1.283597350120544,L, + 184744632000,1.269908189773560,L, + 186669055250,1.255244970321655,L, + 188593478500,1.239793181419373,L, + 190517901750,1.223760485649109,L, + 192442325000,1.207371950149536,L, + 194366748250,1.190863370895386,L, + 196291171500,1.174474716186523,L, + 198215594750,1.158442258834839,L, + 200140018000,1.142990469932556,L, + 202064441250,1.128327250480652,L, + 203988864500,1.114638090133667,L, + 205913287750,1.102082729339600,L, + 207837711000,1.090794444084167,L, + 209762134250,1.080878496170044,L, + 211686557500,1.072414159774780,L, + 213610980750,1.065456867218018,L, + 215535404000,1.060040473937988,L, + 217459827250,1.056179523468018,L, + 219384250500,1.053874015808105,L, + 221308673750,1.053110361099243,L, + 223233097000,1.054614067077637,L, + 225157520250,1.059159994125366,L, + 227081943500,1.066745042800903,L, + 229006366750,1.077269792556763,L, + 230930790000,1.090510249137878,L, + 232855213250,1.106096506118774,L, + 234779636500,1.123504877090454,L, + 236704059750,1.142072319984436,L, + 238628483000,1.161037921905518,L, + 240552906250,1.179605484008789,L, + 242477329500,1.197013616561890,L, + 244401752750,1.212599992752075,L, + 246326176000,1.225840449333191,L, + 248250599250,1.236365199089050,L, + 250175022500,1.243950366973877,L, + 252099445750,1.248496294021606,L, + 254023869000,1.249999761581421,L, + 255948292250,1.248473048210144,L, + 257872715500,1.243856668472290,L, + 259797138750,1.236154079437256,L, + 261721562000,1.225466370582581,L, + 263645985250,1.212020635604858,L, + 265570408500,1.196193218231201,L, + 267494831750,1.178515195846558,L, + 269419255000,1.159660220146179,L, + 271343678250,1.140400648117065,L, + 273268101500,1.121545791625977,L, + 275192524750,1.103867769241333,L, + 277116948000,1.088040113449097,L, + 279041371250,1.074594736099243,L, + 280965794500,1.063906788825989,L, + 282890217750,1.056204319000244,L, + 284814641000,1.051588058471680,L, + 286739064250,1.050061106681824,L, + 288663487500,1.050616264343262,L, + 290587910750,1.052287340164185,L, + 292512334000,1.055004358291626,L, + 294436757250,1.058557868003845,L, + 296361180500,1.062583446502686,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162773132324,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220610618591,L, + 311756566500,1.070851802825928,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345432281494,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253204345703,L, + 323303106000,1.039523363113403,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590169906616,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820921897888,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529060363770,L, + 344471761750,0.990060448646545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.990143299102783 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.990143299102783,L, + 1924423250,0.990259885787964,L, + 3848846500,0.990611433982849,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695446014404,L, + 17319809250,0.999685764312744,L, + 19244232500,1.001892328262329,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912589073181,L, + 25017502250,1.009699940681458,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691270828247,L, + 36564041750,1.029144644737244,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281337738037,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356876373291,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855975151062,L, + 67354813750,1.072157621383667,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183022499084,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247470855713,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790805816650,L, + 115465395000,1.031299352645874,L, + 117389818250,1.032834291458130,L, + 119314241500,1.035404801368713,L, + 121238664750,1.039009094238281,L, + 123163088000,1.043632984161377,L, + 125087511250,1.049247860908508,L, + 127011934500,1.055806994438171,L, + 128936357750,1.063244819641113,L, + 130860781000,1.071475267410278,L, + 132785204250,1.080391049385071,L, + 134709627500,1.089864850044250,L, + 136634050750,1.099751472473145,L, + 138558474000,1.109891891479492,L, + 140482897250,1.120117902755737,L, + 142407320500,1.130258560180664,L, + 144331743750,1.140145301818848,L, + 146256167000,1.149619102478027,L, + 148180590250,1.158534765243530,L, + 150105013500,1.166765213012695,L, + 152029436750,1.174202919006348,L, + 153953860000,1.180762171745300,L, + 155878283250,1.186376929283142,L, + 157802706500,1.191000938415527,L, + 159727129750,1.194605112075806,L, + 161651553000,1.197175621986389,L, + 163575976250,1.198710680007935,L, + 165500399500,1.199219107627869,L, + 167424822750,1.198837041854858,L, + 169349246000,1.197683334350586,L, + 171273669250,1.195751786231995,L, + 173198092500,1.193041563034058,L, + 175122515750,1.189560413360596,L, + 177046939000,1.185325384140015,L, + 178971362250,1.180364131927490,L, + 180895785500,1.174715995788574,L, + 182820208750,1.168433904647827,L, + 184744632000,1.161584615707397,L, + 186669055250,1.154247879981995,L, + 188593478500,1.146516680717468,L, + 190517901750,1.138494729995728,L, + 192442325000,1.130294561386108,L, + 194366748250,1.122034788131714,L, + 196291171500,1.113834857940674,L, + 198215594750,1.105812907218933,L, + 200140018000,1.098081588745117,L, + 202064441250,1.090744972229004,L, + 203988864500,1.083895444869995,L, + 205913287750,1.077613711357117,L, + 207837711000,1.071965456008911,L, + 209762134250,1.067003965377808,L, + 211686557500,1.062769055366516,L, + 213610980750,1.059287905693054,L, + 215535404000,1.056577682495117,L, + 217459827250,1.054646134376526,L, + 219384250500,1.053492665290833,L, + 221308673750,1.053110361099243,L, + 223233097000,1.053547382354736,L, + 225157520250,1.054868221282959,L, + 227081943500,1.057072043418884,L, + 229006366750,1.060130119323730,L, + 230930790000,1.063977003097534,L, + 232855213250,1.068505764007568,L, + 234779636500,1.073563814163208,L, + 236704059750,1.078958749771118,L, + 238628483000,1.084469199180603,L, + 240552906250,1.089864134788513,L, + 242477329500,1.094922065734863,L, + 244401752750,1.099450588226318,L, + 246326176000,1.103297710418701,L, + 248250599250,1.106355905532837,L, + 250175022500,1.108559727668762,L, + 252099445750,1.109880447387695,L, + 254023869000,1.110317468643188,L, + 255948292250,1.109857320785522,L, + 257872715500,1.108466029167175,L, + 259797138750,1.106144666671753,L, + 261721562000,1.102923631668091,L, + 263645985250,1.098871469497681,L, + 265570408500,1.094101548194885,L, + 267494831750,1.088773846626282,L, + 269419255000,1.083091378211975,L, + 271343678250,1.077287197113037,L, + 273268101500,1.071604728698730,L, + 275192524750,1.066277027130127,L, + 277116948000,1.061507105827332,L, + 279041371250,1.057454824447632,L, + 280965794500,1.054233908653259,L, + 282890217750,1.051912546157837,L, + 284814641000,1.050521254539490,L, + 286739064250,1.050061106681824,L, + 288663487500,1.050616264343262,L, + 290587910750,1.052287340164185,L, + 292512334000,1.055004358291626,L, + 294436757250,1.058557868003845,L, + 296361180500,1.062583446502686,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162773132324,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220610618591,L, + 311756566500,1.070851802825928,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345432281494,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253204345703,L, + 323303106000,1.039523363113403,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590169906616,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820921897888,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529060363770,L, + 344471761750,0.990060448646545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.990969598293304 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.990969598293304,L, + 1924423250,0.991085112094879,L, + 3848846500,0.991433262825012,L, + 5773269750,0.992016136646271,L, + 7697693000,0.992834806442261,L, + 9622116250,0.993889212608337,L, + 11546539500,0.995178401470184,L, + 13470962750,0.996699512004852,L, + 15395386000,0.998448371887207,L, + 17319809250,1.000419259071350,L, + 19244232500,1.002604365348816,L, + 21168655750,1.004993796348572,L, + 23093079000,1.007575750350952,L, + 25017502250,1.010336041450500,L, + 26941925500,1.013258337974548,L, + 28866348750,1.016324520111084,L, + 30790772000,1.019513845443726,L, + 32715195250,1.022804260253906,L, + 34639618500,1.026171803474426,L, + 36564041750,1.029591679573059,L, + 40412888250,1.036483883857727,L, + 42337311500,1.039903759956360,L, + 44261734750,1.043271422386169,L, + 46186158000,1.046561837196350,L, + 48110581250,1.049751043319702,L, + 50035004500,1.052817225456238,L, + 51959427750,1.055739641189575,L, + 53883851000,1.058499932289124,L, + 55808274250,1.061081886291504,L, + 57732697500,1.063471198081970,L, + 59657120750,1.065656423568726,L, + 61581544000,1.067627310752869,L, + 63505967250,1.069376230239868,L, + 65430390500,1.070897221565247,L, + 67354813750,1.072186350822449,L, + 69279237000,1.073240756988525,L, + 71203660250,1.074059367179871,L, + 73128083500,1.074642300605774,L, + 75052506750,1.074990510940552,L, + 76976930000,1.075106024742126,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016928672791,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183141708374,L, + 92372316000,1.058615207672119,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713808059692,L, + 101994432250,1.040445327758789,L, + 103918855500,1.037568330764771,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247590065002,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790925025940,L, + 115465395000,1.031750082969666,L, + 117389818250,1.034646391868591,L, + 119314241500,1.039496183395386,L, + 121238664750,1.046296596527100,L, + 123163088000,1.055021047592163,L, + 125087511250,1.065614581108093,L, + 127011934500,1.077990055084229,L, + 128936357750,1.092023491859436,L, + 130860781000,1.107552170753479,L, + 132785204250,1.124374032020569,L, + 134709627500,1.142248749732971,L, + 136634050750,1.160902500152588,L, + 138558474000,1.180034995079041,L, + 140482897250,1.199329137802124,L, + 142407320500,1.218461632728577,L, + 144331743750,1.237115383148193,L, + 146256167000,1.254990100860596,L, + 148180590250,1.271811842918396,L, + 150105013500,1.287340760231018,L, + 152029436750,1.301374077796936,L, + 153953860000,1.313749551773071,L, + 155878283250,1.324343204498291,L, + 157802706500,1.333067655563354,L, + 159727129750,1.339867830276489,L, + 161651553000,1.344717741012573,L, + 163575976250,1.347614049911499,L, + 165500399500,1.348573207855225,L, + 167424822750,1.348004102706909,L, + 169349246000,1.346277356147766,L, + 171273669250,1.343367695808411,L, + 173198092500,1.339257478713989,L, + 175122515750,1.333938479423523,L, + 177046939000,1.327414035797119,L, + 178971362250,1.319701075553894,L, + 180895785500,1.310832619667053,L, + 182820208750,1.300859451293945,L, + 184744632000,1.289851665496826,L, + 186669055250,1.277898311614990,L, + 188593478500,1.265108823776245,L, + 190517901750,1.251609563827515,L, + 192442325000,1.237542629241943,L, + 194366748250,1.223060846328735,L, + 196291171500,1.208324313163757,L, + 198215594750,1.193494558334351,L, + 200140018000,1.178729772567749,L, + 202064441250,1.164180278778076,L, + 203988864500,1.149984359741211,L, + 205913287750,1.136265873908997,L, + 207837711000,1.123131990432739,L, + 209762134250,1.110672831535339,L, + 211686557500,1.098961114883423,L, + 213610980750,1.088053703308105,L, + 215535404000,1.077992081642151,L, + 217459827250,1.068804740905762,L, + 219384250500,1.060508489608765,L, + 221308673750,1.053110480308533,L, + 223233097000,1.046236515045166,L, + 225157520250,1.039541721343994,L, + 227081943500,1.033076882362366,L, + 229006366750,1.026898622512817,L, + 230930790000,1.021069526672363,L, + 232855213250,1.015653371810913,L, + 234779636500,1.010710358619690,L, + 236704059750,1.006291985511780,L, + 238628483000,1.002433657646179,L, + 240552906250,0.999151527881622,L, + 242477329500,0.996440827846527,L, + 244401752750,0.994277119636536,L, + 246326176000,0.992621421813965,L, + 248250599250,0.991424798965454,L, + 250175022500,0.990634083747864,L, + 252099445750,0.990196049213409,L, + 254023869000,0.990060508251190,L, + 255948292250,0.992901802062988,L, + 257872715500,1.001492261886597,L, + 259797138750,1.015825748443604,L, + 261721562000,1.035714149475098,L, + 263645985250,1.060734510421753,L, + 265570408500,1.090187549591064,L, + 267494831750,1.123083829879761,L, + 269419255000,1.158170461654663,L, + 271343678250,1.194009780883789,L, + 273268101500,1.229096412658691,L, + 275192524750,1.261992573738098,L, + 277116948000,1.291445612907410,L, + 279041371250,1.316465973854065,L, + 280965794500,1.336354374885559,L, + 282890217750,1.350687980651855,L, + 284814641000,1.359278440475464,L, + 286739064250,1.362119674682617,L, + 288663487500,1.356670022010803,L, + 290587910750,1.340123295783997,L, + 292512334000,1.312879800796509,L, + 294436757250,1.276629090309143,L, + 296361180500,1.234558820724487,L, + 298285603750,1.190976381301880,L, + 300210027000,1.150340914726257,L, + 302134450250,1.116236329078674,L, + 304058873500,1.090859174728394,L, + 305983296750,1.075106024742126,L, + 307907720000,1.064484357833862,L, + 309832143250,1.054440021514893,L, + 311756566500,1.045030117034912,L, + 313680989750,1.036310553550720,L, + 315605413000,1.028334498405457,L, + 317529836250,1.021147489547729,L, + 319454259500,1.014782905578613,L, + 321378682750,1.009258031845093,L, + 323303106000,1.004569530487061,L, + 325227529250,1.000691175460815,L, + 327151952500,0.997573971748352,L, + 329076375750,0.995148837566376,L, + 331000799000,0.993331670761108,L, + 332925222250,0.992029190063477,L, + 334849645500,0.991145491600037,L, + 336774068750,0.990588128566742,L, + 338698492000,0.990271508693695,L, + 340622915250,0.990119695663452,L, + 342547338500,0.990067481994629,L, + 344471761750,0.990060508251190,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_032" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.006819307804108 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.006819307804108,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000059604645 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000059604645,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775664329529 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.007775664329529,L, + 1924423250,0.007768869400024,L, + 3848846500,0.007748484611511,L, + 5773269750,0.007714390754700,L, + 7697693000,0.007666349411011,L, + 9622116250,0.007604479789734,L, + 11546539500,0.007528781890869,L, + 13470962750,0.007439255714417,L, + 15395386000,0.007335782051086,L, + 17319809250,0.007218480110168,L, + 19244232500,0.007087588310242,L, + 21168655750,0.006943225860596,L, + 23093079000,0.006785392761230,L, + 25017502250,0.006614565849304,L, + 26941925500,0.006430864334106,L, + 28866348750,0.006234645843506,L, + 30790772000,0.006026148796082,L, + 32715195250,0.005806088447571,L, + 34639618500,0.005574822425842,L, + 36564041750,0.005332827568054,L, + 38488465000,0.005080699920654,L, + 40412888250,0.004819393157959,L, + 42337311500,0.004549145698547,L, + 44261734750,0.004270911216736,L, + 46186158000,0.003985643386841,L, + 48110581250,0.003694057464600,L, + 50035004500,0.003396987915039,L, + 51959427750,0.003095507621765,L, + 53883851000,0.002790570259094,L, + 55808274250,0.002483010292053,L, + 57732697500,0.002173900604248,L, + 59657120750,0.001864314079285,L, + 61581544000,0.001555323600769,L, + 63505967250,0.001247763633728,L, + 65430390500,0.000942707061768,L, + 67354813750,0.000641226768494,L, + 69279237000,0.000344157218933,L, + 71203660250,0.000052571296692,L, + 73128083500,-0.000232815742493,L, + 75052506750,-0.000510931015015,L, + 76976930000,-0.000781059265137,L, + 78901353250,-0.001042604446411,L, + 80825776500,-0.001294612884521,L, + 82750199750,-0.001536607742310,L, + 84674623000,-0.001767873764038,L, + 86599046250,-0.001988053321838,L, + 88523469500,-0.002196311950684,L, + 90447892750,-0.002392530441284,L, + 92372316000,-0.002576351165771,L, + 94296739250,-0.002747297286987,L, + 96221162500,-0.002905011177063,L, + 98145585750,-0.003049492835999,L, + 100070009000,-0.003180384635925,L, + 101994432250,-0.003297567367554,L, + 103918855500,-0.003400921821594,L, + 105843278750,-0.003490567207336,L, + 107767702000,-0.003566265106201,L, + 109692125250,-0.003628134727478,L, + 111616548500,-0.003676056861877,L, + 113540971750,-0.003710269927979,L, + 115465395000,-0.003730654716492,L, + 117389818250,-0.003737568855286,L, + 119314241500,-0.003602981567383,L, + 121238664750,-0.003190636634827,L, + 123163088000,-0.002487301826477,L, + 125087511250,-0.001480817794800,L, + 127011934500,-0.000159382820129,L, + 128936357750,0.001487612724304,L, + 130860781000,0.003468871116638,L, + 132785204250,0.005791187286377,L, + 134709627500,0.008458495140076,L, + 136634050750,0.011471748352051,L, + 138558474000,0.014828205108643,L, + 140482897250,0.018521189689636,L, + 142407320500,0.022539854049683,L, + 144331743750,0.026868939399719,L, + 146256167000,0.031489253044128,L, + 148180590250,0.036377668380737,L, + 150105013500,0.041508316993713,L, + 152029436750,0.046852231025696,L, + 153953860000,0.052379369735718,L, + 155878283250,0.058058500289917,L, + 157802706500,0.063858866691589,L, + 159727129750,0.069750308990479,L, + 161651553000,0.075704097747803,L, + 163575976250,0.081693887710571,L, + 165500399500,0.087695360183716,L, + 167424822750,0.093686580657959,L, + 169349246000,0.099648475646973,L, + 171273669250,0.105564594268799,L, + 173198092500,0.111420750617981,L, + 175122515750,0.117204904556274,L, + 177046939000,0.122907519340515,L, + 178971362250,0.128847479820251,L, + 180895785500,0.135353684425354,L, + 182820208750,0.142412185668945,L, + 184744632000,0.149971604347229,L, + 186669055250,0.157934665679932,L, + 188593478500,0.166156053543091,L, + 190517901750,0.174453496932983,L, + 192442325000,0.182631492614746,L, + 194366748250,0.190510511398315,L, + 196291171500,0.197949647903442,L, + 198215594750,0.204856991767883,L, + 200140018000,0.211187481880188,L, + 202064441250,0.216931819915771,L, + 203988864500,0.222187757492065,L, + 205913287750,0.227042675018311,L, + 207837711000,0.231497049331665,L, + 209762134250,0.235557198524475,L, + 211686557500,0.239236593246460,L, + 213610980750,0.242557525634766,L, + 215535404000,0.245551943778992,L, + 217459827250,0.248262047767639,L, + 219384250500,0.250741124153137,L, + 221308673750,0.253051996231079,L, + 223233097000,0.255266070365906,L, + 225157520250,0.257460474967957,L, + 227081943500,0.259714365005493,L, + 229006366750,0.262106895446777,L, + 230930790000,0.264711380004883,L, + 232855213250,0.267594099044800,L, + 234779636500,0.270811676979065,L, + 236704059750,0.274409174919128,L, + 238628483000,0.278420805931091,L, + 240552906250,0.282869935035706,L, + 242477329500,0.287770390510559,L, + 244401752750,0.293127179145813,L, + 246326176000,0.298939228057861,L, + 248250599250,0.305199623107910,L, + 250175022500,0.311898589134216,L, + 252099445750,0.319000005722046,L, + 254023869000,0.326461076736450,L, + 255948292250,0.334245681762695,L, + 257872715500,0.342323184013367,L, + 259797138750,0.350666522979736,L, + 261721562000,0.359252810478210,L, + 263645985250,0.368061423301697,L, + 265570408500,0.377074241638184,L, + 267494831750,0.386274576187134,L, + 269419255000,0.395647764205933,L, + 271343678250,0.405179858207703,L, + 273268101500,0.414858102798462,L, + 275192524750,0.424670815467834,L, + 277116948000,0.434606313705444,L, + 279041371250,0.444653391838074,L, + 280965794500,0.454801201820374,L, + 282890217750,0.465038776397705,L, + 284814641000,0.475354433059692,L, + 286739064250,0.485736250877380,L, + 288663487500,0.496170878410339,L, + 290587910750,0.506642937660217,L, + 292512334000,0.517134904861450,L, + 294436757250,0.527624845504761,L, + 296361180500,0.538083910942078,L, + 298285603750,0.548473119735718,L, + 300210027000,0.558734178543091,L, + 302134450250,0.568772673606873,L, + 304058873500,0.578409671783447,L, + 305983296750,0.587213993072510,L, + 307907720000,0.593029260635376,L, + 309832143250,0.007775664329529,L, + 344471761750,0.007775664329529,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000002354814088 + KeyVer: 4005 + KeyCount: 82 + Key: + 0,-0.000002354814088,L, + 1924423250,0.000000000000000,L, + 7697693000,0.000000000000000,L, + 9622116250,0.000002350238567,L, + 11546539500,0.000000000000000,L, + 13470962750,0.000000000000000,L, + 15395386000,0.000002342671392,L, + 17319809250,0.000002339268147,L, + 19244232500,0.000000000000000,L, + 21168655750,-0.000002331072189,L, + 23093079000,0.000002326258305,L, + 25017502250,0.000002320955887,L, + 26941925500,0.000002315157202,L, + 28866348750,-0.000002308855734,L, + 30790772000,0.000000000000000,L, + 32715195250,0.000000000000000,L, + 34639618500,0.000002286894946,L, + 36564041750,0.000000000000000,L, + 44261734750,0.000000000000000,L, + 46186158000,-0.000002229298103,L, + 48110581250,0.000000000000000,L, + 57732697500,0.000000000000000,L, + 59657120750,-0.000002141330372,L, + 61581544000,0.000000000000000,L, + 63505967250,-0.000002112903847,L, + 65430390500,0.000002098263525,L, + 67354813750,0.000000000000000,L, + 69279237000,-0.000002068264126,L, + 71203660250,0.000000000000000,L, + 73128083500,0.000002037488163,L, + 75052506750,0.000000000000000,L, + 90447892750,0.000000000000000,L, + 92372316000,0.000001879172262,L, + 94296739250,0.000000000000000,L, + 107767702000,0.000000000000000,L, + 109692125250,-0.000001742198545,L, + 111616548500,0.000001727732467,L, + 113540971750,-0.000001713441649,L, + 115465395000,0.000000000000000,L, + 117389818250,0.000003370805183,L, + 119314241500,-0.000003341778372,L, + 121238664750,0.000000000000000,L, + 128936357750,0.000000000000000,L, + 130860781000,-0.000003120438636,L, + 132785204250,0.000000000000000,L, + 136634050750,0.000000000000000,L, + 138558474000,0.000002948529503,L, + 140482897250,0.000000000000000,L, + 163575976250,0.000000000000000,L, + 165500399500,0.000002512032417,L, + 167424822750,0.000000000000000,L, + 248250599250,0.000000000000000,L, + 250175022500,0.000002474460143,L, + 252099445750,-0.000002486226058,L, + 254023869000,0.000000000000000,L, + 257872715500,0.000000000000000,L, + 259797138750,0.000002601368651,L, + 261721562000,0.000000000000000,L, + 263645985250,0.000002698446915,L, + 265570408500,0.000000000000000,L, + 267494831750,0.000002823932367,L, + 269419255000,-0.000002898488843,L, + 271343678250,0.000000000000000,L, + 273268101500,0.000003074750807,L, + 275192524750,0.000000000000000,L, + 280965794500,0.000000000000000,L, + 282890217750,0.000001864828520,L, + 284814641000,-0.000001956181379,L, + 286739064250,-0.000002059558464,L, + 288663487500,-0.000002177150848,L, + 290587910750,0.000000000000000,L, + 292512334000,-0.000002466758214,L, + 294436757250,0.000000000000000,L, + 296361180500,-0.000002857504165,L, + 298285603750,0.000000000000000,L, + 300210027000,0.000000000000000,L, + 302134450250,0.000001879279332,L, + 304058873500,0.000002091831374,L, + 305983296750,0.000000000000000,L, + 307907720000,-0.000002535497888,L, + 309832143250,-0.000002354814088,L, + 344471761750,-0.000002354814088,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.362565219402313 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565219402313,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812697887421,L, + 7697693000,0.363011062145233,L, + 9622116250,0.363271057605743,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578413009644,L, + 21168655750,0.366257935762405,L, + 23093079000,0.367015838623047,L, + 25017502250,0.367854326963425,L, + 26941925500,0.368775665760040,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875895023346,L, + 32715195250,0.372058928012848,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700278043747,L, + 38488465000,0.376161932945251,L, + 40412888250,0.377719521522522,L, + 42337311500,0.379374235868454,L, + 44261734750,0.381126999855042,L, + 46186158000,0.382978677749634,L, + 48110581250,0.384929597377777,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129936695099,L, + 53883851000,0.391378819942474,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170854568481,L, + 59657120750,0.398711800575256,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895339488983,L, + 67354813750,0.409803271293640,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267824411392,L, + 76976930000,0.425577521324158,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812510490417,L, + 90447892750,0.450549781322479,L, + 92372316000,0.454334974288940,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945601463318,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868727684021,L, + 103918855500,0.477876722812653,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972404479980,L, + 109692125250,0.490055322647095,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279988765717,L, + 115465395000,0.502417623996735,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852451324463,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595129013062,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118251800537,L, + 140482897250,0.587658882141113,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166888237000,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652674973011017,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287256240845,L, + 161651553000,0.670731425285339,L, + 163575976250,0.675558447837830,L, + 165500399500,0.679747343063354,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393235206604,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068602561951,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633651256561,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842477798462,L, + 280965794500,0.478641331195831,L, + 282890217750,0.457829564809799,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111595630646,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887513160706,L, + 302134450250,0.227154538035393,L, + 304058873500,0.204073250293732,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565219402313,L, + 344471761750,0.362565219402313,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.362565219402313 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565219402313,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812697887421,L, + 7697693000,0.363011062145233,L, + 9622116250,0.363271057605743,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578413009644,L, + 21168655750,0.366257935762405,L, + 23093079000,0.367015838623047,L, + 25017502250,0.367854326963425,L, + 26941925500,0.368775665760040,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875895023346,L, + 32715195250,0.372058928012848,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700278043747,L, + 38488465000,0.376161932945251,L, + 40412888250,0.377719521522522,L, + 42337311500,0.379374235868454,L, + 44261734750,0.381126999855042,L, + 46186158000,0.382978677749634,L, + 48110581250,0.384929597377777,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129936695099,L, + 53883851000,0.391378819942474,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170854568481,L, + 59657120750,0.398711800575256,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895339488983,L, + 67354813750,0.409803271293640,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267824411392,L, + 76976930000,0.425577521324158,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812510490417,L, + 90447892750,0.450549781322479,L, + 92372316000,0.454334974288940,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945601463318,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868727684021,L, + 103918855500,0.477876722812653,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972404479980,L, + 109692125250,0.490055322647095,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279988765717,L, + 115465395000,0.502417623996735,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852451324463,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595129013062,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118251800537,L, + 140482897250,0.587658882141113,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166888237000,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652674973011017,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287256240845,L, + 161651553000,0.670731425285339,L, + 163575976250,0.675558447837830,L, + 165500399500,0.679747343063354,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393235206604,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068602561951,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633651256561,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842477798462,L, + 280965794500,0.478641331195831,L, + 282890217750,0.457829564809799,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111595630646,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887513160706,L, + 302134450250,0.227154538035393,L, + 304058873500,0.204073250293732,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565219402313,L, + 344471761750,0.362565219402313,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.370854884386063 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.370854884386063,L, + 1924423250,0.370877742767334,L, + 3848846500,0.370947629213333,L, + 5773269750,0.371066689491272,L, + 7697693000,0.371237039566040,L, + 9622116250,0.371460914611816,L, + 11546539500,0.371740609407425,L, + 13470962750,0.372078388929367,L, + 15395386000,0.372476607561111,L, + 17319809250,0.372937679290771,L, + 19244232500,0.373464018106461,L, + 21168655750,0.374058037996292,L, + 23093079000,0.374722182750702,L, + 25017502250,0.375458836555481,L, + 26941925500,0.376270413398743,L, + 28866348750,0.377159267663956,L, + 30790772000,0.378127694129944,L, + 32715195250,0.379177868366241,L, + 34639618500,0.380311965942383,L, + 36564041750,0.381532013416290,L, + 38488465000,0.382839798927307,L, + 40412888250,0.384237110614777,L, + 42337311500,0.385725468397141,L, + 44261734750,0.387306213378906,L, + 46186158000,0.388980507850647,L, + 48110581250,0.390749186277390,L, + 50035004500,0.392612963914871,L, + 51959427750,0.394572228193283,L, + 53883851000,0.396627128124237,L, + 55808274250,0.398777514696121,L, + 57732697500,0.401022911071777,L, + 59657120750,0.403362721204758,L, + 61581544000,0.405795902013779,L, + 63505967250,0.408321261405945,L, + 65430390500,0.410937249660492,L, + 67354813750,0.413642227649689,L, + 69279237000,0.416434139013290,L, + 71203660250,0.419310867786407,L, + 73128083500,0.422269999980927,L, + 75052506750,0.425309091806412,L, + 76976930000,0.428425341844559,L, + 78901353250,0.431616067886353,L, + 80825776500,0.434878408908844,L, + 82750199750,0.438209354877472,L, + 84674623000,0.441605895757675,L, + 86599046250,0.445064932107925,L, + 88523469500,0.448583602905273,L, + 90447892750,0.452158659696579,L, + 92372316000,0.455787211656570,L, + 94296739250,0.459466218948364,L, + 96221162500,0.463192850351334,L, + 98145585750,0.466964185237885,L, + 100070009000,0.470777451992035,L, + 101994432250,0.474629968404770,L, + 103918855500,0.478519082069397,L, + 105843278750,0.482442289590836,L, + 107767702000,0.486397206783295,L, + 109692125250,0.490381538867950,L, + 111616548500,0.494392991065979,L, + 113540971750,0.498429447412491,L, + 115465395000,0.502488970756531,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510674059391022,L, + 121238664750,0.514811515808105,L, + 123163088000,0.518990278244019,L, + 125087511250,0.523219525814056,L, + 127011934500,0.527509510517120,L, + 128936357750,0.531871080398560,L, + 130860781000,0.536316275596619,L, + 132785204250,0.540857553482056,L, + 134709627500,0.545508146286011,L, + 136634050750,0.550281465053558,L, + 138558474000,0.555191099643707,L, + 140482897250,0.560250222682953,L, + 142407320500,0.565471231937408,L, + 144331743750,0.570865750312805,L, + 146256167000,0.576443612575531,L, + 148180590250,0.582212865352631,L, + 150105013500,0.588179886341095,L, + 152029436750,0.594348371028900,L, + 153953860000,0.600719749927521,L, + 155878283250,0.607293605804443,L, + 157802706500,0.614067018032074,L, + 159727129750,0.621035337448120,L, + 161651553000,0.628192365169525,L, + 163575976250,0.635530650615692,L, + 165500399500,0.643041670322418,L, + 167424822750,0.650716364383698,L, + 169349246000,0.658545374870300,L, + 171273669250,0.666518926620483,L, + 173198092500,0.674627482891083,L, + 175122515750,0.682861804962158,L, + 177046939000,0.691212654113770,L, + 178971362250,0.700581014156342,L, + 180895785500,0.711831986904144,L, + 182820208750,0.724810838699341,L, + 184744632000,0.739207863807678,L, + 186669055250,0.754532456398010,L, + 188593478500,0.770123004913330,L, + 190517901750,0.785207509994507,L, + 192442325000,0.799009799957275,L, + 194366748250,0.810864746570587,L, + 196291171500,0.820297777652740,L, + 198215594750,0.827048718929291,L, + 200140018000,0.831043422222137,L, + 202064441250,0.832345306873322,L, + 203988864500,0.831680595874786,L, + 205913287750,0.829649686813354,L, + 207837711000,0.826202571392059,L, + 209762134250,0.821300983428955,L, + 211686557500,0.814921319484711,L, + 213610980750,0.807059764862061,L, + 215535404000,0.797736942768097,L, + 217459827250,0.787002503871918,L, + 219384250500,0.774937570095062,L, + 221308673750,0.761656582355499,L, + 223233097000,0.747306227684021,L, + 225157520250,0.732061028480530,L, + 227081943500,0.716117203235626,L, + 229006366750,0.699683964252472,L, + 230930790000,0.682973504066467,L, + 232855213250,0.666191935539246,L, + 234779636500,0.649530768394470,L, + 236704059750,0.633161127567291,L, + 238628483000,0.617229759693146,L, + 240552906250,0.601857542991638,L, + 242477329500,0.587140440940857,L, + 244401752750,0.573150396347046,L, + 246326176000,0.559938609600067,L, + 248250599250,0.547538459300995,L, + 250175022500,0.535492420196533,L, + 252099445750,0.523339152336121,L, + 254023869000,0.511092364788055,L, + 255948292250,0.498763799667358,L, + 257872715500,0.486363768577576,L, + 259797138750,0.473901331424713,L, + 261721562000,0.461384624242783,L, + 263645985250,0.448821097612381,L, + 265570408500,0.436217546463013,L, + 267494831750,0.423580318689346,L, + 269419255000,0.410915702581406,L, + 271343678250,0.398229509592056,L, + 273268101500,0.385527729988098,L, + 275192524750,0.372816383838654,L, + 277116948000,0.360101580619812,L, + 279041371250,0.347389727830887,L, + 280965794500,0.334687888622284,L, + 282890217750,0.322003573179245,L, + 284814641000,0.309345334768295,L, + 286739064250,0.296723067760468,L, + 288663487500,0.284148365259171,L, + 290587910750,0.271635293960571,L, + 292512334000,0.259201377630234,L, + 294436757250,0.246869236230850,L, + 296361180500,0.234669387340546,L, + 298285603750,0.222644731402397,L, + 300210027000,0.210859879851341,L, + 302134450250,0.199421197175980,L, + 304058873500,0.188528910279274,L, + 305983296750,0.178665339946747,L, + 307907720000,0.172213584184647,L, + 309832143250,0.370854884386063,L, + 344471761750,0.370854884386063,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_031" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.112119317054749 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.112119317054749,L, + 1924423250,0.112092554569244,L, + 3848846500,0.112012624740601,L, + 5773269750,0.111878812313080,L, + 7697693000,0.111690878868103,L, + 9622116250,0.111448705196381,L, + 11546539500,0.111151993274689,L, + 13470962750,0.110800921916962,L, + 15395386000,0.110395789146423,L, + 17319809250,0.109936594963074,L, + 19244232500,0.109423816204071,L, + 21168655750,0.108858227729797,L, + 23093079000,0.108240187168121,L, + 25017502250,0.107570469379425,L, + 26941925500,0.106850862503052,L, + 28866348750,0.106082081794739,L, + 30790772000,0.105265736579895,L, + 32715195250,0.104403614997864,L, + 34639618500,0.103497564792633,L, + 36564041750,0.102549672126770,L, + 38488465000,0.101562142372131,L, + 40412888250,0.100538015365601,L, + 42337311500,0.099479556083679,L, + 44261734750,0.098389923572540,L, + 46186158000,0.097272276878357,L, + 48110581250,0.096129834651947,L, + 50035004500,0.094966411590576,L, + 51959427750,0.093785405158997,L, + 53883851000,0.092590332031250,L, + 55808274250,0.091385602951050,L, + 57732697500,0.090174853801727,L, + 59657120750,0.088962018489838,L, + 61581544000,0.087751328945160,L, + 63505967250,0.086546778678894,L, + 65430390500,0.085352003574371,L, + 67354813750,0.084170639514923,L, + 69279237000,0.083007276058197,L, + 71203660250,0.081864833831787,L, + 73128083500,0.080747246742249,L, + 75052506750,0.079657554626465,L, + 76976930000,0.078599095344543,L, + 78901353250,0.077574789524078,L, + 80825776500,0.076587378978729,L, + 82750199750,0.075639486312866,L, + 84674623000,0.074733495712280,L, + 86599046250,0.073871374130249,L, + 88523469500,0.073055028915405,L, + 90447892750,0.072286248207092,L, + 92372316000,0.071566402912140,L, + 94296739250,0.070897161960602,L, + 96221162500,0.070279121398926,L, + 98145585750,0.069713234901428,L, + 100070009000,0.069200277328491,L, + 101994432250,0.068741321563721,L, + 103918855500,0.068335950374603,L, + 105843278750,0.067985057830811,L, + 107767702000,0.067688465118408,L, + 109692125250,0.067446291446686,L, + 111616548500,0.067258358001709,L, + 113540971750,0.067124426364899,L, + 115465395000,0.067044258117676,L, + 117389818250,0.067017793655396,L, + 119314241500,0.067049503326416,L, + 121238664750,0.067146420478821,L, + 123163088000,0.067310392856598,L, + 125087511250,0.067542076110840,L, + 127011934500,0.067840635776520,L, + 128936357750,0.068203091621399,L, + 130860781000,0.068624377250671,L, + 132785204250,0.069096207618713,L, + 134709627500,0.069608986377716,L, + 136634050750,0.070150315761566,L, + 138558474000,0.070707142353058,L, + 140482897250,0.071266114711761,L, + 142407320500,0.071814417839050,L, + 144331743750,0.072341680526733,L, + 146256167000,0.072838306427002,L, + 148180590250,0.073297142982483,L, + 150105013500,0.073714077472687,L, + 152029436750,0.074085533618927,L, + 153953860000,0.074410140514374,L, + 155878283250,0.074677646160126,L, + 157802706500,0.074880123138428,L, + 159727129750,0.075023174285889,L, + 161651553000,0.075119733810425,L, + 163575976250,0.075189232826233,L, + 165500399500,0.075258076190948,L, + 167424822750,0.075355470180511,L, + 169349246000,0.075507998466492,L, + 171273669250,0.075736761093140,L, + 173198092500,0.076053678989410,L, + 175122515750,0.076463162899017,L, + 177046939000,0.076964259147644,L, + 178971362250,0.077580630779266,L, + 180895785500,0.078346908092499,L, + 182820208750,0.079273641109467,L, + 184744632000,0.080370068550110,L, + 186669055250,0.081643044948578,L, + 188593478500,0.083095967769623,L, + 190517901750,0.084728419780731,L, + 192442325000,0.086533725261688,L, + 194366748250,0.088499605655670,L, + 196291171500,0.090608835220337,L, + 198215594750,0.092838466167450,L, + 200140018000,0.095163702964783,L, + 202064441250,0.097557306289673,L, + 203988864500,0.099994063377380,L, + 205913287750,0.102450549602509,L, + 207837711000,0.104906320571899,L, + 209762134250,0.107344686985016,L, + 211686557500,0.109752178192139,L, + 213610980750,0.112119317054749,L, + 215535404000,0.114429354667664,L, + 217459827250,0.116683840751648,L, + 219384250500,0.118909418582916,L, + 221308673750,0.121143698692322,L, + 223233097000,0.123434662818909,L, + 225157520250,0.125838637351990,L, + 227081943500,0.128412127494812,L, + 229006366750,0.131203293800354,L, + 230930790000,0.134245753288269,L, + 232855213250,0.137554705142975,L, + 234779636500,0.141129195690155,L, + 236704059750,0.144954919815063,L, + 238628483000,0.149011731147766,L, + 240552906250,0.154437959194183,L, + 242477329500,0.161862194538116,L, + 244401752750,0.169423639774323,L, + 246326176000,0.174698114395142,L, + 248250599250,0.176466345787048,L, + 250175022500,0.176398932933807,L, + 252099445750,0.176191031932831,L, + 254023869000,0.175834536552429,L, + 255948292250,0.175323605537415,L, + 257872715500,0.174654543399811,L, + 259797138750,0.173827290534973,L, + 261721562000,0.172846734523773,L, + 263645985250,0.171722412109375,L, + 265570408500,0.170469105243683,L, + 267494831750,0.169107496738434,L, + 269419255000,0.167660593986511,L, + 271343678250,0.166154146194458,L, + 273268101500,0.164613962173462,L, + 275192524750,0.163063824176788,L, + 277116948000,0.161524951457977,L, + 279041371250,0.160014688968658,L, + 280965794500,0.158547341823578,L, + 282890217750,0.157132983207703,L, + 284814641000,0.155778944492340,L, + 286739064250,0.154421865940094,L, + 288663487500,0.152992784976959,L, + 290587910750,0.151492178440094,L, + 292512334000,0.149925053119659,L, + 294436757250,0.148303329944611,L, + 296361180500,0.146645307540894,L, + 298285603750,0.144974172115326,L, + 300210027000,0.143313825130463,L, + 302134450250,0.141685426235199,L, + 304058873500,0.140104234218597,L, + 305983296750,0.138578832149506,L, + 307907720000,0.137113153934479,L, + 309832143250,0.135627567768097,L, + 311756566500,0.134045422077179,L, + 313680989750,0.132373988628387,L, + 315605413000,0.130625486373901,L, + 317529836250,0.128816664218903,L, + 319454259500,0.126969039440155,L, + 321378682750,0.125109851360321,L, + 323303106000,0.123270452022552,L, + 325227529250,0.121484816074371,L, + 327151952500,0.119787931442261,L, + 329076375750,0.118212759494781,L, + 331000799000,0.116787970066071,L, + 332925222250,0.115536272525787,L, + 334849645500,0.114473700523376,L, + 336774068750,0.113609313964844,L, + 338698492000,0.112945795059204,L, + 340622915250,0.112480461597443,L, + 342547338500,0.112207949161530,L, + 344471761750,0.112119317054749,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.123124539852142 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.123124539852142,L, + 1924423250,-0.123086929321289,L, + 3848846500,-0.122974336147308,L, + 5773269750,-0.122785925865173,L, + 7697693000,-0.122521579265594,L, + 9622116250,-0.122180759906769,L, + 11546539500,-0.121763348579407,L, + 13470962750,-0.121269464492798,L, + 15395386000,-0.120699226856232,L, + 17319809250,-0.120053172111511,L, + 19244232500,-0.119331777095795,L, + 21168655750,-0.118535518646240,L, + 23093079000,-0.117665886878967,L, + 25017502250,-0.116723835468292,L, + 26941925500,-0.115711033344269,L, + 28866348750,-0.114629149436951,L, + 30790772000,-0.113480746746063,L, + 32715195250,-0.112267553806305,L, + 34639618500,-0.110992729663849,L, + 36564041750,-0.109658777713776,L, + 38488465000,-0.108269453048706,L, + 40412888250,-0.106828153133392,L, + 42337311500,-0.105338573455811,L, + 44261734750,-0.103805482387543,L, + 46186158000,-0.102232813835144,L, + 48110581250,-0.100625276565552,L, + 50035004500,-0.098988175392151,L, + 51959427750,-0.097326159477234,L, + 53883851000,-0.095644712448120,L, + 55808274250,-0.093949377536774,L, + 57732697500,-0.092245757579803,L, + 59657120750,-0.090539336204529,L, + 61581544000,-0.088835656642914,L, + 63505967250,-0.087140381336212,L, + 65430390500,-0.085459113121033,L, + 67354813750,-0.083797216415405,L, + 69279237000,-0.082159817218781,L, + 71203660250,-0.080552458763123,L, + 73128083500,-0.078979790210724,L, + 75052506750,-0.077446460723877,L, + 76976930000,-0.075957119464874,L, + 78901353250,-0.074515819549561,L, + 80825776500,-0.073126375675201,L, + 82750199750,-0.071792602539062,L, + 84674623000,-0.070517480373383,L, + 86599046250,-0.069304525852203,L, + 88523469500,-0.068155884742737,L, + 90447892750,-0.067074060440063,L, + 92372316000,-0.066061317920685,L, + 94296739250,-0.065119385719299,L, + 96221162500,-0.064249753952026,L, + 98145585750,-0.063453495502472,L, + 100070009000,-0.062731981277466,L, + 101994432250,-0.062085807323456,L, + 103918855500,-0.061515569686890,L, + 105843278750,-0.061021745204926,L, + 107767702000,-0.060604393482208,L, + 109692125250,-0.060263633728027,L, + 111616548500,-0.059999227523804,L, + 113540971750,-0.059810876846313,L, + 115465395000,-0.059698164463043,L, + 117389818250,-0.059660911560059,L, + 119314241500,-0.059695482254028,L, + 121238664750,-0.059802234172821,L, + 123163088000,-0.059984982013702,L, + 125087511250,-0.060246944427490,L, + 127011934500,-0.060589253902435,L, + 128936357750,-0.061011731624603,L, + 130860781000,-0.061511874198914,L, + 132785204250,-0.062084376811981,L, + 134709627500,-0.062720775604248,L, + 136634050750,-0.063410937786102,L, + 138558474000,-0.064142465591431,L, + 140482897250,-0.064901709556580,L, + 142407320500,-0.065676093101501,L, + 144331743750,-0.066452860832214,L, + 146256167000,-0.067221343517303,L, + 148180590250,-0.067972838878632,L, + 150105013500,-0.068699896335602,L, + 152029436750,-0.069397807121277,L, + 153953860000,-0.070062935352325,L, + 155878283250,-0.070667028427124,L, + 157802706500,-0.071190714836121,L, + 159727129750,-0.071651518344879,L, + 161651553000,-0.072077751159668,L, + 163575976250,-0.072509467601776,L, + 165500399500,-0.072994530200958,L, + 167424822750,-0.073582410812378,L, + 169349246000,-0.074315130710602,L, + 171273669250,-0.075221240520477,L, + 173198092500,-0.076312780380249,L, + 175122515750,-0.077589094638824,L, + 177046939000,-0.079040586948395,L, + 178971362250,-0.080668270587921,L, + 180895785500,-0.082484722137451,L, + 182820208750,-0.084490895271301,L, + 184744632000,-0.086681425571442,L, + 186669055250,-0.089047193527222,L, + 188593478500,-0.091570675373077,L, + 190517901750,-0.094227373600006,L, + 192442325000,-0.096984624862671,L, + 194366748250,-0.099803805351257,L, + 196291171500,-0.102641880512238,L, + 198215594750,-0.105453848838806,L, + 200140018000,-0.108196556568146,L, + 202064441250,-0.110831558704376,L, + 203988864500,-0.113327324390411,L, + 205913287750,-0.115659594535828,L, + 207837711000,-0.117812335491180,L, + 209762134250,-0.119775474071503,L, + 211686557500,-0.121546030044556,L, + 213610980750,-0.123124539852142,L, + 215535404000,-0.124561846256256,L, + 217459827250,-0.125894963741302,L, + 219384250500,-0.127105474472046,L, + 221308673750,-0.128175079822540,L, + 223233097000,-0.129088938236237,L, + 225157520250,-0.129838705062866,L, + 227081943500,-0.130425333976746,L, + 229006366750,-0.130859673023224,L, + 230930790000,-0.131161153316498,L, + 232855213250,-0.131354868412018,L, + 234779636500,-0.131466269493103,L, + 236704059750,-0.131519019603729,L, + 238628483000,-0.131533026695251,L, + 240552906250,-0.131093740463257,L, + 242477329500,-0.129856169223785,L, + 244401752750,-0.128267407417297,L, + 246326176000,-0.127029955387115,L, + 248250599250,-0.126590788364410,L, + 250175022500,-0.126704275608063,L, + 252099445750,-0.127049863338470,L, + 254023869000,-0.127633452415466,L, + 255948292250,-0.128457248210907,L, + 257872715500,-0.129516184329987,L, + 259797138750,-0.130798757076263,L, + 261721562000,-0.132284939289093,L, + 263645985250,-0.133945107460022,L, + 265570408500,-0.135741949081421,L, + 267494831750,-0.137630760669708,L, + 269419255000,-0.139564096927643,L, + 271343678250,-0.141493558883667,L, + 273268101500,-0.143373847007751,L, + 275192524750,-0.145165979862213,L, + 277116948000,-0.146838307380676,L, + 279041371250,-0.148365736007690,L, + 280965794500,-0.149732470512390,L, + 282890217750,-0.150928258895874,L, + 284814641000,-0.151948153972626,L, + 286739064250,-0.152871072292328,L, + 288663487500,-0.153767466545105,L, + 290587910750,-0.154622852802277,L, + 292512334000,-0.155418694019318,L, + 294436757250,-0.156136453151703,L, + 296361180500,-0.156758248806000,L, + 298285603750,-0.157271742820740,L, + 300210027000,-0.157672762870789,L, + 302134450250,-0.157964587211609,L, + 304058873500,-0.158156812191010,L, + 305983296750,-0.158261954784393,L, + 307907720000,-0.158294200897217,L, + 309832143250,-0.158079266548157,L, + 311756566500,-0.157429933547974,L, + 313680989750,-0.156344592571259,L, + 315605413000,-0.154832184314728,L, + 317529836250,-0.152915477752686,L, + 319454259500,-0.150632262229919,L, + 321378682750,-0.148038327693939,L, + 323303106000,-0.145206689834595,L, + 325227529250,-0.142225265502930,L, + 327151952500,-0.139193177223206,L, + 329076375750,-0.136211931705475,L, + 331000799000,-0.133380234241486,L, + 332925222250,-0.130786359310150,L, + 334849645500,-0.128503143787384,L, + 336774068750,-0.126586258411407,L, + 338698492000,-0.125074088573456,L, + 340622915250,-0.123988807201385,L, + 342547338500,-0.123339235782623,L, + 344471761750,-0.123124539852142,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.078456282615662 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.078456282615662,L, + 1924423250,0.078416824340820,L, + 3848846500,0.078297734260559,L, + 5773269750,0.078098773956299,L, + 7697693000,0.077819228172302,L, + 9622116250,0.077458858489990,L, + 11546539500,0.077017664909363,L, + 13470962750,0.076495647430420,L, + 15395386000,0.075892806053162,L, + 17319809250,0.075209736824036,L, + 19244232500,0.074447154998779,L, + 21168655750,0.073605537414551,L, + 23093079000,0.072686195373535,L, + 25017502250,0.071690440177917,L, + 26941925500,0.070619821548462,L, + 28866348750,0.069476246833801,L, + 30790772000,0.068262100219727,L, + 32715195250,0.066979765892029,L, + 34639618500,0.065631866455078,L, + 36564041750,0.064221978187561,L, + 38488465000,0.062753200531006,L, + 40412888250,0.061229586601257,L, + 42337311500,0.059655189514160,L, + 44261734750,0.058034420013428,L, + 46186158000,0.056371927261353,L, + 48110581250,0.054672718048096,L, + 50035004500,0.052941918373108,L, + 51959427750,0.051185131072998,L, + 53883851000,0.049407720565796,L, + 55808274250,0.047615766525269,L, + 57732697500,0.045814752578735,L, + 59657120750,0.044010996818542,L, + 61581544000,0.042209982872009,L, + 63505967250,0.040417909622192,L, + 65430390500,0.038640618324280,L, + 67354813750,0.036883831024170,L, + 69279237000,0.035153031349182,L, + 71203660250,0.033453822135925,L, + 73128083500,0.031791329383850,L, + 75052506750,0.030170559883118,L, + 76976930000,0.028596043586731,L, + 78901353250,0.027072548866272,L, + 80825776500,0.025603771209717,L, + 82750199750,0.024193763732910,L, + 84674623000,0.022845983505249,L, + 86599046250,0.021563649177551,L, + 88523469500,0.020349502563477,L, + 90447892750,0.019205927848816,L, + 92372316000,0.018135309219360,L, + 94296739250,0.017139554023743,L, + 96221162500,0.016220211982727,L, + 98145585750,0.015378594398499,L, + 100070009000,0.014615893363953,L, + 101994432250,0.013932943344116,L, + 103918855500,0.013330221176147,L, + 105843278750,0.012808084487915,L, + 107767702000,0.012366890907288,L, + 109692125250,0.012006521224976,L, + 111616548500,0.011727094650269,L, + 113540971750,0.011528015136719,L, + 115465395000,0.011408925056458,L, + 117389818250,0.011369347572327,L, + 121238664750,0.011369585990906,L, + 123163088000,0.011370062828064,L, + 125087511250,0.011371135711670,L, + 127011934500,0.011372923851013,L, + 128936357750,0.011375904083252,L, + 130860781000,0.011380195617676,L, + 132785204250,0.011386394500732,L, + 134709627500,0.011394500732422,L, + 136634050750,0.011404752731323,L, + 138558474000,0.011417627334595,L, + 140482897250,0.011433005332947,L, + 142407320500,0.011451005935669,L, + 144331743750,0.011471748352051,L, + 146256167000,0.011494755744934,L, + 148180590250,0.011520266532898,L, + 150105013500,0.011547923088074,L, + 152029436750,0.011577606201172,L, + 153953860000,0.011609077453613,L, + 155878283250,0.011643052101135,L, + 157802706500,0.011704802513123,L, + 159727129750,0.011841416358948,L, + 161651553000,0.012112498283386,L, + 163575976250,0.012586355209351,L, + 165500399500,0.013331174850464,L, + 167424822750,0.014402031898499,L, + 169349246000,0.015831232070923,L, + 171273669250,0.017623662948608,L, + 173198092500,0.019761085510254,L, + 175122515750,0.022210240364075,L, + 177046939000,0.024931430816650,L, + 178971362250,0.027827978134155,L, + 180895785500,0.030847072601318,L, + 182820208750,0.034016132354736,L, + 184744632000,0.037365794181824,L, + 186669055250,0.040929198265076,L, + 188593478500,0.044740557670593,L, + 190517901750,0.048833131790161,L, + 192442325000,0.053237199783325,L, + 194366748250,0.057976722717285,L, + 196291171500,0.063067555427551,L, + 198215594750,0.068515419960022,L, + 200140018000,0.074315309524536,L, + 202064441250,0.080453038215637,L, + 203988864500,0.086906909942627,L, + 205913287750,0.093649506568909,L, + 207837711000,0.100650906562805,L, + 209762134250,0.107880473136902,L, + 211686557500,0.115308523178101,L, + 213610980750,0.122907519340515,L, + 215535404000,0.131041526794434,L, + 217459827250,0.140097975730896,L, + 219384250500,0.150051832199097,L, + 221308673750,0.160817861557007,L, + 223233097000,0.172234892845154,L, + 225157520250,0.184063315391541,L, + 227081943500,0.196003556251526,L, + 229006366750,0.207735419273376,L, + 230930790000,0.218965411186218,L, + 232855213250,0.229463577270508,L, + 234779636500,0.239081501960754,L, + 236704059750,0.247746348381042,L, + 238628483000,0.255445122718811,L, + 240552906250,0.262040019035339,L, + 242477329500,0.267191767692566,L, + 244401752750,0.270941019058228,L, + 246326176000,0.273873686790466,L, + 248250599250,0.276693224906921,L, + 250175022500,0.279411315917969,L, + 252099445750,0.281716346740723,L, + 254023869000,0.283613562583923,L, + 255948292250,0.285119533538818,L, + 257872715500,0.286265254020691,L, + 259797138750,0.287097692489624,L, + 261721562000,0.287681818008423,L, + 263645985250,0.288099169731140,L, + 265570408500,0.288445472717285,L, + 267494831750,0.288824796676636,L, + 269419255000,0.289342641830444,L, + 271343678250,0.290098309516907,L, + 273268101500,0.291177868843079,L, + 275192524750,0.292650580406189,L, + 277116948000,0.294566631317139,L, + 279041371250,0.296957492828369,L, + 280965794500,0.299838662147522,L, + 282890217750,0.303211927413940,L, + 284814641000,0.307069420814514,L, + 286739064250,0.311380505561829,L, + 288663487500,0.316169142723083,L, + 290587910750,0.321501612663269,L, + 292512334000,0.327431797981262,L, + 294436757250,0.333986401557922,L, + 296361180500,0.341151237487793,L, + 298285603750,0.348865032196045,L, + 300210027000,0.357027530670166,L, + 302134450250,0.365518331527710,L, + 304058873500,0.374218344688416,L, + 305983296750,0.383025288581848,L, + 307907720000,0.391859292984009,L, + 309832143250,0.401284217834473,L, + 311756566500,0.411890864372253,L, + 313680989750,0.423633337020874,L, + 315605413000,0.436426401138306,L, + 317529836250,0.450137376785278,L, + 319454259500,0.464580178260803,L, + 321378682750,0.479514241218567,L, + 323303106000,0.494648098945618,L, + 325227529250,0.509652614593506,L, + 327151952500,0.524180412292480,L, + 329076375750,0.537891268730164,L, + 331000799000,0.550475239753723,L, + 332925222250,0.561673402786255,L, + 334849645500,0.571289420127869,L, + 336774068750,0.579193115234375,L, + 338698492000,0.585315704345703,L, + 340622915250,0.589641094207764,L, + 342547338500,0.592193841934204,L, + 344471761750,0.593029260635376,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -1.077436728358576 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,-1.077436728358576,L, + 1924423250,-1.077436941801987,L, + 3848846500,-1.077436835080282,L, + 5773269750,-1.077436835080282,L, + 7697693000,-1.077436941801987,L, + 9622116250,-1.077436835080282,L, + 11546539500,-1.077436835080282,L, + 15395386000,-1.077436621636870,L, + 17319809250,-1.077436728358576,L, + 21168655750,-1.077436728358576,L, + 23093079000,-1.077436835080282,L, + 25017502250,-1.077436514915164,L, + 26941925500,-1.077436514915164,L, + 28866348750,-1.077436728358576,L, + 30790772000,-1.077436835080282,L, + 32715195250,-1.077436728358576,L, + 34639618500,-1.077436835080282,L, + 38488465000,-1.077436835080282,L, + 40412888250,-1.077436728358576,L, + 42337311500,-1.077436941801987,L, + 44261734750,-1.077436835080282,L, + 46186158000,-1.077436835080282,L, + 48110581250,-1.077436728358576,L, + 50035004500,-1.077436728358576,L, + 51959427750,-1.077436835080282,L, + 53883851000,-1.077437048523693,L, + 55808274250,-1.077436728358576,L, + 57732697500,-1.077436835080282,L, + 59657120750,-1.077436728358576,L, + 61581544000,-1.077436835080282,L, + 63505967250,-1.077436728358576,L, + 65430390500,-1.077436728358576,L, + 67354813750,-1.077436621636870,L, + 69279237000,-1.077436621636870,L, + 71203660250,-1.077436835080282,L, + 73128083500,-1.077436835080282,L, + 75052506750,-1.077436621636870,L, + 76976930000,-1.077436835080282,L, + 82750199750,-1.077436835080282,L, + 84674623000,-1.077437048523693,L, + 86599046250,-1.077436835080282,L, + 88523469500,-1.077436835080282,L, + 90447892750,-1.077436728358576,L, + 92372316000,-1.077436728358576,L, + 94296739250,-1.077436835080282,L, + 101994432250,-1.077436835080282,L, + 105843278750,-1.077436621636870,L, + 107767702000,-1.077436728358576,L, + 109692125250,-1.077436941801987,L, + 111616548500,-1.077436941801987,L, + 115465395000,-1.077436728358576,L, + 117389818250,-1.077437368688811,L, + 153953860000,-1.077437368688811,L, + 155878283250,-1.077437155245399,L, + 159727129750,-1.077437155245399,L, + 161651553000,-1.077437368688811,L, + 163575976250,-1.077437048523693,L, + 165500399500,-1.077437155245399,L, + 167424822750,-1.077437155245399,L, + 171273669250,-1.077437368688811,L, + 173198092500,-1.077437155245399,L, + 175122515750,-1.077437155245399,L, + 177046939000,-1.077437261967105,L, + 178971362250,-1.077437261967105,L, + 180895785500,-1.077437368688811,L, + 182820208750,-1.077437155245399,L, + 186669055250,-1.077437368688811,L, + 188593478500,-1.077437155245399,L, + 200140018000,-1.077437155245399,L, + 202064441250,-1.077437368688811,L, + 203988864500,-1.077437048523693,L, + 205913287750,-1.077437261967105,L, + 207837711000,-1.077437261967105,L, + 209762134250,-1.077437368688811,L, + 213610980750,-1.077437155245399,L, + 217459827250,-1.077437155245399,L, + 219384250500,-1.077437261967105,L, + 221308673750,-1.077437261967105,L, + 223233097000,-1.077437048523693,L, + 225157520250,-1.077437368688811,L, + 227081943500,-1.077437368688811,L, + 229006366750,-1.077437261967105,L, + 230930790000,-1.077437261967105,L, + 232855213250,-1.077437155245399,L, + 234779636500,-1.077437155245399,L, + 236704059750,-1.077437261967105,L, + 238628483000,-1.077437155245399,L, + 240552906250,-1.077437261967105,L, + 242477329500,-1.077437048523693,L, + 244401752750,-1.077437368688811,L, + 246326176000,-1.077437368688811,L, + 248250599250,-1.077437261967105,L, + 250175022500,-1.077437261967105,L, + 254023869000,-1.077437048523693,L, + 255948292250,-1.077437261967105,L, + 263645985250,-1.077437261967105,L, + 267494831750,-1.077437048523693,L, + 271343678250,-1.077437261967105,L, + 275192524750,-1.077437261967105,L, + 279041371250,-1.077437048523693,L, + 280965794500,-1.077437155245399,L, + 284814641000,-1.077437155245399,L, + 286739064250,-1.077437048523693,L, + 288663487500,-1.077437261967105,L, + 294436757250,-1.077437261967105,L, + 296361180500,-1.077437155245399,L, + 302134450250,-1.077437155245399,L, + 304058873500,-1.077437261967105,L, + 305983296750,-1.077437048523693,L, + 307907720000,-1.077437261967105,L, + 309832143250,-1.077437368688811,L, + 311756566500,-1.077437155245399,L, + 313680989750,-1.077437368688811,L, + 315605413000,-1.077437155245399,L, + 317529836250,-1.077437048523693,L, + 319454259500,-1.077437368688811,L, + 321378682750,-1.077437155245399,L, + 323303106000,-1.077437155245399,L, + 325227529250,-1.077437261967105,L, + 327151952500,-1.077437155245399,L, + 329076375750,-1.077437155245399,L, + 331000799000,-1.077437261967105,L, + 332925222250,-1.077437048523693,L, + 334849645500,-1.077437048523693,L, + 338698492000,-1.077437261967105,L, + 340622915250,-1.077437155245399,L, + 342547338500,-1.077437261967105,L, + 344471761750,-1.077437155245399,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -2.888270141488094 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,-2.888270141488094,L, + 1924423250,-2.888270781818329,L, + 3848846500,-2.888270354931506,L, + 5773269750,-2.888270354931506,L, + 7697693000,-2.888270141488094,L, + 9622116250,-2.888270354931506,L, + 11546539500,-2.888270354931506,L, + 13470962750,-2.888270141488094,L, + 15395386000,-2.888270141488094,L, + 17319809250,-2.888270354931506,L, + 19244232500,-2.888270354931506,L, + 21168655750,-2.888270141488094,L, + 23093079000,-2.888270141488094,L, + 26941925500,-2.888270568374918,L, + 28866348750,-2.888270568374918,L, + 30790772000,-2.888269928044683,L, + 32715195250,-2.888270354931506,L, + 34639618500,-2.888270568374918,L, + 38488465000,-2.888270141488094,L, + 40412888250,-2.888270141488094,L, + 42337311500,-2.888270354931506,L, + 44261734750,-2.888270141488094,L, + 48110581250,-2.888270568374918,L, + 50035004500,-2.888270568374918,L, + 51959427750,-2.888270354931506,L, + 53883851000,-2.888270568374918,L, + 55808274250,-2.888270354931506,L, + 57732697500,-2.888270354931506,L, + 59657120750,-2.888270568374918,L, + 61581544000,-2.888270354931506,L, + 63505967250,-2.888269928044683,L, + 65430390500,-2.888269928044683,L, + 67354813750,-2.888270568374918,L, + 69279237000,-2.888270354931506,L, + 71203660250,-2.888270354931506,L, + 73128083500,-2.888270141488094,L, + 76976930000,-2.888270568374918,L, + 78901353250,-2.888270141488094,L, + 80825776500,-2.888270568374918,L, + 82750199750,-2.888270354931506,L, + 84674623000,-2.888269928044683,L, + 86599046250,-2.888270354931506,L, + 92372316000,-2.888270354931506,L, + 94296739250,-2.888269928044683,L, + 98145585750,-2.888270354931506,L, + 100070009000,-2.888270141488094,L, + 101994432250,-2.888270568374918,L, + 103918855500,-2.888269928044683,L, + 105843278750,-2.888270354931506,L, + 107767702000,-2.888270141488094,L, + 111616548500,-2.888270141488094,L, + 113540971750,-2.888270354931506,L, + 115465395000,-2.888270141488094,L, + 117389818250,-2.888270354931506,L, + 153953860000,-2.888270354931506,L, + 155878283250,-2.888269928044683,L, + 157802706500,-2.888269928044683,L, + 159727129750,-2.888270568374918,L, + 161651553000,-2.888270354931506,L, + 163575976250,-2.888269928044683,L, + 165500399500,-2.888269928044683,L, + 167424822750,-2.888270141488094,L, + 171273669250,-2.888270141488094,L, + 173198092500,-2.888269501157860,L, + 175122515750,-2.888270141488094,L, + 177046939000,-2.888269714601271,L, + 178971362250,-2.888270354931506,L, + 182820208750,-2.888269928044683,L, + 184744632000,-2.888269928044683,L, + 186669055250,-2.888270141488094,L, + 188593478500,-2.888269928044683,L, + 194366748250,-2.888270568374918,L, + 196291171500,-2.888269928044683,L, + 198215594750,-2.888270141488094,L, + 203988864500,-2.888270141488094,L, + 205913287750,-2.888269928044683,L, + 209762134250,-2.888269928044683,L, + 211686557500,-2.888270354931506,L, + 213610980750,-2.888270354931506,L, + 217459827250,-2.888269928044683,L, + 221308673750,-2.888269928044683,L, + 223233097000,-2.888270141488094,L, + 225157520250,-2.888270141488094,L, + 227081943500,-2.888270354931506,L, + 229006366750,-2.888269928044683,L, + 230930790000,-2.888270354931506,L, + 232855213250,-2.888269714601271,L, + 236704059750,-2.888270141488094,L, + 238628483000,-2.888269928044683,L, + 240552906250,-2.888270141488094,L, + 242477329500,-2.888270141488094,L, + 244401752750,-2.888269928044683,L, + 246326176000,-2.888270568374918,L, + 248250599250,-2.888270141488094,L, + 250175022500,-2.888270354931506,L, + 254023869000,-2.888269928044683,L, + 255948292250,-2.888270141488094,L, + 261721562000,-2.888270141488094,L, + 263645985250,-2.888269928044683,L, + 265570408500,-2.888270354931506,L, + 267494831750,-2.888269714601271,L, + 271343678250,-2.888270141488094,L, + 273268101500,-2.888269928044683,L, + 275192524750,-2.888269928044683,L, + 277116948000,-2.888270141488094,L, + 279041371250,-2.888270141488094,L, + 280965794500,-2.888269928044683,L, + 282890217750,-2.888270141488094,L, + 284814641000,-2.888269928044683,L, + 286739064250,-2.888270354931506,L, + 288663487500,-2.888269928044683,L, + 290587910750,-2.888270354931506,L, + 294436757250,-2.888269928044683,L, + 298285603750,-2.888270354931506,L, + 300210027000,-2.888270141488094,L, + 302134450250,-2.888270141488094,L, + 304058873500,-2.888269928044683,L, + 305983296750,-2.888269928044683,L, + 307907720000,-2.888270141488094,L, + 309832143250,-2.888269928044683,L, + 313680989750,-2.888269928044683,L, + 315605413000,-2.888269714601271,L, + 317529836250,-2.888270141488094,L, + 319454259500,-2.888270141488094,L, + 321378682750,-2.888269928044683,L, + 323303106000,-2.888269928044683,L, + 325227529250,-2.888270354931506,L, + 327151952500,-2.888269714601271,L, + 329076375750,-2.888270141488094,L, + 332925222250,-2.888270141488094,L, + 334849645500,-2.888269714601271,L, + 338698492000,-2.888270141488094,L, + 340622915250,-2.888269928044683,L, + 342547338500,-2.888270141488094,L, + 344471761750,-2.888269928044683,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 35.454415736123465 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,35.454415736123465,L, + 3848846500,35.454415736123465,L, + 5773269750,35.454419151218048,L, + 7697693000,35.454419151218048,L, + 9622116250,35.454415736123465,L, + 11546539500,35.454419151218048,L, + 13470962750,35.454419151218048,L, + 15395386000,35.454415736123465,L, + 17319809250,35.454419151218048,L, + 19244232500,35.454415736123465,L, + 23093079000,35.454415736123465,L, + 25017502250,35.454412321028876,L, + 26941925500,35.454419151218048,L, + 28866348750,35.454415736123465,L, + 30790772000,35.454419151218048,L, + 34639618500,35.454412321028876,L, + 36564041750,35.454415736123465,L, + 38488465000,35.454415736123465,L, + 40412888250,35.454412321028876,L, + 44261734750,35.454419151218048,L, + 46186158000,35.454412321028876,L, + 48110581250,35.454415736123465,L, + 50035004500,35.454412321028876,L, + 51959427750,35.454415736123465,L, + 55808274250,35.454415736123465,L, + 57732697500,35.454422566312630,L, + 61581544000,35.454415736123465,L, + 63505967250,35.454415736123465,L, + 65430390500,35.454422566312630,L, + 67354813750,35.454412321028876,L, + 69279237000,35.454415736123465,L, + 73128083500,35.454415736123465,L, + 75052506750,35.454419151218048,L, + 76976930000,35.454412321028876,L, + 78901353250,35.454412321028876,L, + 80825776500,35.454419151218048,L, + 82750199750,35.454412321028876,L, + 84674623000,35.454419151218048,L, + 86599046250,35.454415736123465,L, + 90447892750,35.454415736123465,L, + 92372316000,35.454419151218048,L, + 94296739250,35.454415736123465,L, + 96221162500,35.454419151218048,L, + 98145585750,35.454415736123465,L, + 101994432250,35.454422566312630,L, + 103918855500,35.454415736123465,L, + 105843278750,35.454419151218048,L, + 107767702000,35.454419151218048,L, + 109692125250,35.454415736123465,L, + 115465395000,35.454415736123465,L, + 117389818250,35.454419151218048,L, + 155878283250,35.454419151218048,L, + 157802706500,35.454422566312630,L, + 159727129750,35.454412321028876,L, + 163575976250,35.454419151218048,L, + 165500399500,35.454412321028876,L, + 167424822750,35.454419151218048,L, + 169349246000,35.454415736123465,L, + 171273669250,35.454419151218048,L, + 173198092500,35.454412321028876,L, + 175122515750,35.454419151218048,L, + 177046939000,35.454415736123465,L, + 178971362250,35.454419151218048,L, + 182820208750,35.454419151218048,L, + 184744632000,35.454415736123465,L, + 186669055250,35.454415736123465,L, + 188593478500,35.454412321028876,L, + 192442325000,35.454419151218048,L, + 194366748250,35.454419151218048,L, + 198215594750,35.454412321028876,L, + 200140018000,35.454412321028876,L, + 202064441250,35.454415736123465,L, + 203988864500,35.454415736123465,L, + 205913287750,35.454422566312630,L, + 209762134250,35.454415736123465,L, + 211686557500,35.454415736123465,L, + 213610980750,35.454412321028876,L, + 215535404000,35.454415736123465,L, + 217459827250,35.454415736123465,L, + 219384250500,35.454422566312630,L, + 221308673750,35.454415736123465,L, + 225157520250,35.454415736123465,L, + 227081943500,35.454419151218048,L, + 229006366750,35.454419151218048,L, + 230930790000,35.454412321028876,L, + 234779636500,35.454419151218048,L, + 236704059750,35.454419151218048,L, + 238628483000,35.454415736123465,L, + 240552906250,35.454419151218048,L, + 242477329500,35.454412321028876,L, + 244401752750,35.454415736123465,L, + 246326176000,35.454415736123465,L, + 248250599250,35.454419151218048,L, + 250175022500,35.454419151218048,L, + 252099445750,35.454415736123465,L, + 257872715500,35.454415736123465,L, + 259797138750,35.454419151218048,L, + 261721562000,35.454412321028876,L, + 263645985250,35.454415736123465,L, + 267494831750,35.454415736123465,L, + 269419255000,35.454419151218048,L, + 271343678250,35.454415736123465,L, + 273268101500,35.454419151218048,L, + 275192524750,35.454415736123465,L, + 277116948000,35.454419151218048,L, + 279041371250,35.454415736123465,L, + 286739064250,35.454415736123465,L, + 288663487500,35.454419151218048,L, + 290587910750,35.454415736123465,L, + 292512334000,35.454419151218048,L, + 294436757250,35.454415736123465,L, + 296361180500,35.454415736123465,L, + 298285603750,35.454419151218048,L, + 300210027000,35.454419151218048,L, + 302134450250,35.454415736123465,L, + 307907720000,35.454415736123465,L, + 309832143250,35.454419151218048,L, + 311756566500,35.454419151218048,L, + 313680989750,35.454415736123465,L, + 315605413000,35.454419151218048,L, + 317529836250,35.454415736123465,L, + 319454259500,35.454422566312630,L, + 321378682750,35.454415736123465,L, + 323303106000,35.454415736123465,L, + 325227529250,35.454422566312630,L, + 327151952500,35.454415736123465,L, + 329076375750,35.454415736123465,L, + 331000799000,35.454412321028876,L, + 334849645500,35.454419151218048,L, + 336774068750,35.454415736123465,L, + 338698492000,35.454415736123465,L, + 340622915250,35.454419151218048,L, + 344471761750,35.454412321028876,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.137932732701302 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,0.137932732701302,L, + 1924423250,0.138149723410606,L, + 3848846500,0.138802975416183,L, + 5773269750,0.139895468950272,L, + 7697693000,0.141429543495178,L, + 9622116250,0.143406778573990,L, + 11546539500,0.145827949047089,L, + 13470962750,0.148692965507507,L, + 15395386000,0.152000769972801,L, + 17319809250,0.155749157071114,L, + 19244232500,0.159934833645821,L, + 21168655750,0.164553180336952,L, + 23093079000,0.169598355889320,L, + 25017502250,0.175062954425812,L, + 26941925500,0.180938094854355,L, + 28866348750,0.187213391065598,L, + 30790772000,0.193876728415489,L, + 32715195250,0.200914278626442,L, + 34639618500,0.208310499787331,L, + 36564041750,0.216048121452332,L, + 38488465000,0.224107980728149,L, + 40412888250,0.232469230890274,L, + 42337311500,0.241109296679497,L, + 44261734750,0.250004023313522,L, + 46186158000,0.259127467870712,L, + 48110581250,0.268452465534210,L, + 50035004500,0.277950376272202,L, + 51959427750,0.287591487169266,L, + 53883851000,0.297344952821732,L, + 55808274250,0.307179301977158,L, + 57732697500,0.317062377929688,L, + 59657120750,0.326961785554886,L, + 61581544000,0.336844891309738,L, + 63505967250,0.346679359674454,L, + 65430390500,0.356432825326920,L, + 67354813750,0.366073876619339,L, + 69279237000,0.375571757555008,L, + 71203660250,0.384896725416183,L, + 73128083500,0.394020289182663,L, + 75052506750,0.402914941310883,L, + 76976930000,0.411554992198944,L, + 78901353250,0.419916272163391,L, + 80825776500,0.427976101636887,L, + 82750199750,0.435713708400726,L, + 84674623000,0.443109929561615,L, + 86599046250,0.450147479772568,L, + 88523469500,0.456810861825943,L, + 90447892750,0.463086098432541,L, + 92372316000,0.468961417675018,L, + 94296739250,0.474426001310349,L, + 96221162500,0.479471087455750,L, + 98145585750,0.484089463949203,L, + 100070009000,0.488275170326233,L, + 101994432250,0.492023527622223,L, + 103918855500,0.495331317186356,L, + 105843278750,0.498196363449097,L, + 107767702000,0.500617563724518,L, + 109692125250,0.502594769001007,L, + 111616548500,0.504128932952881,L, + 113540971750,0.505221426486969,L, + 115465395000,0.505874514579773,L, + 117389818250,0.506091475486755,L, + 153953860000,0.506091475486755,L, + 155878283250,0.506617724895477,L, + 157802706500,0.508259236812592,L, + 159727129750,0.511085629463196,L, + 161651553000,0.515110850334167,L, + 163575976250,0.520265460014343,L, + 165500399500,0.526379704475403,L, + 167424822750,0.533194541931152,L, + 169349246000,0.540400505065918,L, + 171273669250,0.547692954540253,L, + 173198092500,0.554816246032715,L, + 175122515750,0.561584591865540,L, + 177046939000,0.567881822586060,L, + 178971362250,0.574291586875916,L, + 180895785500,0.581435501575470,L, + 182820208750,0.589281737804413,L, + 184744632000,0.597773671150208,L, + 186669055250,0.606824159622192,L, + 188593478500,0.616312861442566,L, + 190517901750,0.626084387302399,L, + 192442325000,0.635951817035675,L, + 194366748250,0.645705282688141,L, + 196291171500,0.655124306678772,L, + 198215594750,0.663992941379547,L, + 200140018000,0.672116398811340,L, + 202064441250,0.679332494735718,L, + 203988864500,0.685519635677338,L, + 205913287750,0.690598189830780,L, + 207837711000,0.694527566432953,L, + 209762134250,0.697300672531128,L, + 211686557500,0.698935806751251,L, + 213610980750,0.699470460414886,L, + 215535404000,0.699465930461884,L, + 217459827250,0.699452638626099,L, + 219384250500,0.699430525302887,L, + 221308673750,0.699400484561920,L, + 223233097000,0.699363768100739,L, + 225157520250,0.699322819709778,L, + 227081943500,0.699280381202698,L, + 229006366750,0.699239492416382,L, + 230930790000,0.699202775955200,L, + 232855213250,0.699172735214233,L, + 234779636500,0.699150621891022,L, + 236704059750,0.699137270450592,L, + 238628483000,0.699132859706879,L, + 240552906250,0.699135124683380,L, + 242477329500,0.699143409729004,L, + 244401752750,0.699158549308777,L, + 246326176000,0.699179351329803,L, + 248250599250,0.699203073978424,L, + 250175022500,0.699229657649994,L, + 252099445750,0.699260830879211,L, + 254023869000,0.699296474456787,L, + 255948292250,0.699336171150208,L, + 257872715500,0.699379622936249,L, + 259797138750,0.699426114559174,L, + 261721562000,0.699474930763245,L, + 265570408500,0.699575185775757,L, + 267494831750,0.699624300003052,L, + 269419255000,0.699670851230621,L, + 271343678250,0.699713885784149,L, + 273268101500,0.699752449989319,L, + 275192524750,0.699785649776459,L, + 277116948000,0.699813008308411,L, + 279041371250,0.699834406375885,L, + 280965794500,0.699849605560303,L, + 282890217750,0.699858427047729,L, + 284814641000,0.699861466884613,L, + 286739064250,0.699283063411713,L, + 288663487500,0.697401404380798,L, + 290587910750,0.693992614746094,L, + 292512334000,0.688853621482849,L, + 294436757250,0.681844890117645,L, + 296361180500,0.672936737537384,L, + 298285603750,0.662237465381622,L, + 300210027000,0.649982869625092,L, + 302134450250,0.636489093303680,L, + 304058873500,0.622092723846436,L, + 305983296750,0.607100546360016,L, + 307907720000,0.591764628887177,L, + 309832143250,0.574890911579132,L, + 311756566500,0.555163443088531,L, + 313680989750,0.532660305500031,L, + 315605413000,0.507546961307526,L, + 317529836250,0.480095833539963,L, + 319454259500,0.450701266527176,L, + 321378682750,0.419885277748108,L, + 323303106000,0.388289570808411,L, + 325227529250,0.356649398803711,L, + 327151952500,0.325750172138214,L, + 329076375750,0.296372592449188,L, + 331000799000,0.269236743450165,L, + 332925222250,0.244955137372017,L, + 334849645500,0.224003151059151,L, + 336774068750,0.206709384918213,L, + 338698492000,0.193263009190559,L, + 340622915250,0.183732911944389,L, + 342547338500,0.178092077374458,L, + 344471761750,0.176242381334305,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.137614399194717 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,0.137614399194717,L, + 1924423250,0.137831807136536,L, + 3848846500,0.138486355543137,L, + 5773269750,0.139581009745598,L, + 7697693000,0.141118124127388,L, + 9622116250,0.143099263310432,L, + 11546539500,0.145525261759758,L, + 13470962750,0.148395970463753,L, + 15395386000,0.151710331439972,L, + 17319809250,0.155466139316559,L, + 19244232500,0.159660115838051,L, + 21168655750,0.164287641644478,L, + 23093079000,0.169342786073685,L, + 25017502250,0.174818247556686,L, + 26941925500,0.180705055594444,L, + 28866348750,0.186992794275284,L, + 30790772000,0.193669319152832,L, + 32715195250,0.200720831751823,L, + 34639618500,0.208131715655327,L, + 36564041750,0.215884670615196,L, + 38488465000,0.223960503935814,L, + 40412888250,0.232338324189186,L, + 42337311500,0.240995541214943,L, + 44261734750,0.249907851219177,L, + 46186158000,0.259049415588379,L, + 48110581250,0.268392950296402,L, + 50035004500,0.277909696102142,L, + 51959427750,0.287569880485535,L, + 53883851000,0.297342658042908,L, + 55808274250,0.307196587324142,L, + 57732697500,0.317099243402481,L, + 59657120750,0.327018320560455,L, + 61581544000,0.336920976638794,L, + 63505967250,0.346774846315384,L, + 65430390500,0.356547713279724,L, + 67354813750,0.366207957267761,L, + 69279237000,0.375724673271179,L, + 71203660250,0.385068178176880,L, + 73128083500,0.394209742546082,L, + 75052506750,0.403122037649155,L, + 76976930000,0.411779195070267,L, + 78901353250,0.420157134532928,L, + 80825776500,0.428232878446579,L, + 82750199750,0.435985922813416,L, + 84674623000,0.443396717309952,L, + 86599046250,0.450448215007782,L, + 88523469500,0.457124888896942,L, + 90447892750,0.463412582874298,L, + 92372316000,0.469299435615540,L, + 94296739250,0.474774807691574,L, + 96221162500,0.479829967021942,L, + 98145585750,0.484457522630692,L, + 100070009000,0.488651454448700,L, + 101994432250,0.492407351732254,L, + 103918855500,0.495721668004990,L, + 105843278750,0.498592406511307,L, + 107767702000,0.501018404960632,L, + 109692125250,0.502999484539032,L, + 111616548500,0.504536569118500,L, + 113540971750,0.505631148815155,L, + 115465395000,0.506285846233368,L, + 117389818250,0.506503164768219,L, + 153953860000,0.506503164768219,L, + 155878283250,0.507024765014648,L, + 157802706500,0.508651971817017,L, + 159727129750,0.511453688144684,L, + 161651553000,0.515443682670593,L, + 163575976250,0.520553290843964,L, + 165500399500,0.526614129543304,L, + 167424822750,0.533369362354279,L, + 169349246000,0.540512263774872,L, + 171273669250,0.547741055488586,L, + 173198092500,0.554802000522614,L, + 175122515750,0.561511337757111,L, + 177046939000,0.567753434181213,L, + 178971362250,0.574107229709625,L, + 180895785500,0.581188678741455,L, + 182820208750,0.588966369628906,L, + 184744632000,0.597383975982666,L, + 186669055250,0.606355488300323,L, + 188593478500,0.615761339664459,L, + 190517901750,0.625447332859039,L, + 192442325000,0.635228574275970,L, + 194366748250,0.644896864891052,L, + 196291171500,0.654233336448669,L, + 198215594750,0.663024604320526,L, + 200140018000,0.671077013015747,L, + 202064441250,0.678230047225952,L, + 203988864500,0.684363245964050,L, + 205913287750,0.689397275447845,L, + 207837711000,0.693292438983917,L, + 209762134250,0.696041166782379,L, + 211686557500,0.697662115097046,L, + 213610980750,0.698192000389099,L, + 215535404000,0.698191285133362,L, + 217459827250,0.698189496994019,L, + 219384250500,0.698186397552490,L, + 221308673750,0.698182284832001,L, + 223233097000,0.698177218437195,L, + 225157520250,0.698171496391296,L, + 227081943500,0.698165595531464,L, + 229006366750,0.698159933090210,L, + 230930790000,0.698154926300049,L, + 232855213250,0.698150753974915,L, + 234779636500,0.698147654533386,L, + 236704059750,0.698145866394043,L, + 238628483000,0.698145151138306,L, + 240552906250,0.698145449161530,L, + 242477329500,0.698146700859070,L, + 244401752750,0.698148727416992,L, + 246326176000,0.698151588439941,L, + 248250599250,0.698154926300049,L, + 250175022500,0.698158562183380,L, + 252099445750,0.698162972927094,L, + 254023869000,0.698167860507965,L, + 255948292250,0.698173344135284,L, + 257872715500,0.698179364204407,L, + 259797138750,0.698185861110687,L, + 261721562000,0.698192596435547,L, + 265570408500,0.698206543922424,L, + 267494831750,0.698213279247284,L, + 269419255000,0.698219716548920,L, + 271343678250,0.698225736618042,L, + 273268101500,0.698231101036072,L, + 275192524750,0.698235690593719,L, + 277116948000,0.698239505290985,L, + 279041371250,0.698242485523224,L, + 280965794500,0.698244571685791,L, + 282890217750,0.698245823383331,L, + 284814641000,0.698246181011200,L, + 286739064250,0.697669267654419,L, + 288663487500,0.695791780948639,L, + 290587910750,0.692390918731689,L, + 292512334000,0.687263786792755,L, + 294436757250,0.680271267890930,L, + 296361180500,0.671383738517761,L, + 298285603750,0.660709142684937,L, + 300210027000,0.648482799530029,L, + 302134450250,0.635020256042480,L, + 304058873500,0.620657026767731,L, + 305983296750,0.605699479579926,L, + 307907720000,0.590398907661438,L, + 309832143250,0.573564052581787,L, + 311756566500,0.553882241249084,L, + 313680989750,0.531430900096893,L, + 315605413000,0.506375610828400,L, + 317529836250,0.478987872600555,L, + 319454259500,0.449661076068878,L, + 321378682750,0.418916225433350,L, + 323303106000,0.387393504381180,L, + 325227529250,0.355826318264008,L, + 327151952500,0.324998408555984,L, + 329076375750,0.295688599348068,L, + 331000799000,0.268615335226059,L, + 332925222250,0.244389817118645,L, + 334849645500,0.223486214876175,L, + 336774068750,0.206232339143753,L, + 338698492000,0.192817017436028,L, + 340622915250,0.183308914303780,L, + 342547338500,0.177681118249893,L, + 344471761750,0.175835639238358,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.111224763095379 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.111224763095379,L, + 1924423250,0.111311219632626,L, + 3848846500,0.111571490764618,L, + 5773269750,0.112006738781929,L, + 7697693000,0.112617924809456,L, + 9622116250,0.113405659794807,L, + 11546539500,0.114370279014111,L, + 13470962750,0.115511722862720,L, + 15395386000,0.116829574108124,L, + 17319809250,0.118322946131229,L, + 19244232500,0.119990557432175,L, + 21168655750,0.121830537915230,L, + 23093079000,0.123840562999249,L, + 25017502250,0.126017704606056,L, + 26941925500,0.128358379006386,L, + 28866348750,0.130858525633812,L, + 30790772000,0.133513242006302,L, + 32715195250,0.136317059397697,L, + 34639618500,0.139263764023781,L, + 36564041750,0.142346471548080,L, + 38488465000,0.145557567477226,L, + 40412888250,0.148888751864433,L, + 42337311500,0.152331039309502,L, + 44261734750,0.155874744057655,L, + 46186158000,0.159509599208832,L, + 48110581250,0.163224741816521,L, + 50035004500,0.167008772492409,L, + 51959427750,0.170849829912186,L, + 53883851000,0.174735710024834,L, + 55808274250,0.178653791546822,L, + 57732697500,0.182591274380684,L, + 59657120750,0.186535254120827,L, + 61581544000,0.190472766757011,L, + 63505967250,0.194390848278999,L, + 65430390500,0.198276698589325,L, + 67354813750,0.202117785811424,L, + 69279237000,0.205901801586151,L, + 71203660250,0.209616988897324,L, + 73128083500,0.213251829147339,L, + 75052506750,0.216795504093170,L, + 76976930000,0.220237776637077,L, + 78901353250,0.223568961024284,L, + 80825776500,0.226780086755753,L, + 82750199750,0.229862779378891,L, + 84674623000,0.232809498906136,L, + 86599046250,0.235613286495209,L, + 88523469500,0.238268017768860,L, + 90447892750,0.240768119692802,L, + 92372316000,0.243108868598938,L, + 94296739250,0.245286002755165,L, + 96221162500,0.247296020388603,L, + 98145585750,0.249136000871658,L, + 100070009000,0.250803560018539,L, + 101994432250,0.252296984195709,L, + 103918855500,0.253614842891693,L, + 105843278750,0.254756271839142,L, + 107767702000,0.255720913410187,L, + 109692125250,0.256508648395538,L, + 111616548500,0.257119864225388,L, + 113540971750,0.257555097341537,L, + 115465395000,0.257815331220627,L, + 117389818250,0.257901787757874,L, + 153953860000,0.257901787757874,L, + 155878283250,0.258644849061966,L, + 157802706500,0.260962992906570,L, + 159727129750,0.264954477548599,L, + 161651553000,0.270639002323151,L, + 163575976250,0.277918249368668,L, + 165500399500,0.286552906036377,L, + 167424822750,0.296176731586456,L, + 169349246000,0.306353062391281,L, + 171273669250,0.316651463508606,L, + 173198092500,0.326710879802704,L, + 175122515750,0.336269348859787,L, + 177046939000,0.345162242650986,L, + 178971362250,0.354214221239090,L, + 180895785500,0.364302843809128,L, + 182820208750,0.375383347272873,L, + 184744632000,0.387375622987747,L, + 186669055250,0.400156915187836,L, + 188593478500,0.413556843996048,L, + 190517901750,0.427356153726578,L, + 192442325000,0.441290974617004,L, + 194366748250,0.455065011978149,L, + 196291171500,0.468366354703903,L, + 198215594750,0.480890810489655,L, + 200140018000,0.492362767457962,L, + 202064441250,0.502553522586823,L, + 203988864500,0.511290848255157,L, + 205913287750,0.518462836742401,L, + 207837711000,0.524011969566345,L, + 209762134250,0.527928173542023,L, + 211686557500,0.530237317085266,L, + 213610980750,0.530992269515991,L, + 215535404000,0.529519140720367,L, + 217459827250,0.525068879127502,L, + 219384250500,0.517701089382172,L, + 221308673750,0.507665157318115,L, + 223233097000,0.495449870824814,L, + 225157520250,0.481794416904449,L, + 227081943500,0.467633962631226,L, + 229006366750,0.453978538513184,L, + 230930790000,0.441763222217560,L, + 232855213250,0.431727290153503,L, + 234779636500,0.424359500408173,L, + 236704059750,0.419909238815308,L, + 238628483000,0.418436080217361,L, + 240552906250,0.418899416923523,L, + 242477329500,0.420548647642136,L, + 244401752750,0.423590004444122,L, + 246326176000,0.427756607532501,L, + 248250599250,0.432503104209900,L, + 250175022500,0.437836289405823,L, + 252099445750,0.444078296422958,L, + 254023869000,0.451204359531403,L, + 255948292250,0.459162294864655,L, + 257872715500,0.467865437269211,L, + 259797138750,0.477188736200333,L, + 261721562000,0.486966371536255,L, + 263645985250,0.496994256973267,L, + 265570408500,0.507038831710815,L, + 267494831750,0.516850173473358,L, + 269419255000,0.526180148124695,L, + 271343678250,0.534799396991730,L, + 273268101500,0.542513072490692,L, + 275192524750,0.549169898033142,L, + 277116948000,0.554664969444275,L, + 279041371250,0.558937907218933,L, + 280965794500,0.561966538429260,L, + 282890217750,0.563759326934814,L, + 284814641000,0.564347088336945,L, + 286739064250,0.563880801200867,L, + 288663487500,0.562363445758820,L, + 290587910750,0.559614717960358,L, + 292512334000,0.555470764636993,L, + 294436757250,0.549819111824036,L, + 296361180500,0.542635917663574,L, + 298285603750,0.534008383750916,L, + 300210027000,0.524126589298248,L, + 302134450250,0.513245642185211,L, + 304058873500,0.501636803150177,L, + 305983296750,0.489547491073608,L, + 307907720000,0.477181136608124,L, + 309832143250,0.463574647903442,L, + 311756566500,0.447667062282562,L, + 313680989750,0.429521173238754,L, + 315605413000,0.409270495176315,L, + 317529836250,0.387134820222855,L, + 319454259500,0.363431870937347,L, + 321378682750,0.338582783937454,L, + 323303106000,0.313105016946793,L, + 325227529250,0.287591278553009,L, + 327151952500,0.262675076723099,L, + 329076375750,0.238985851407051,L, + 331000799000,0.217104345560074,L, + 332925222250,0.197524398565292,L, + 334849645500,0.180629342794418,L, + 336774068750,0.166684195399284,L, + 338698492000,0.155841439962387,L, + 340622915250,0.148156702518463,L, + 342547338500,0.143608063459396,L, + 344471761750,0.142116487026215,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_030" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.083437144756317 + KeyVer: 4005 + KeyCount: 167 + Key: + 0,-0.083437144756317,L, + 1924423250,-0.083251178264618,L, + 3848846500,-0.082720458507538,L, + 5773269750,-0.081880629062653,L, + 7697693000,-0.080761373043060,L, + 9622116250,-0.079387426376343,L, + 11546539500,-0.077780961990356,L, + 13470962750,-0.075959742069244,L, + 15395386000,-0.073940515518188,L, + 17319809250,-0.071736991405487,L, + 19244232500,-0.069361984729767,L, + 21168655750,-0.066826343536377,L, + 23093079000,-0.064140081405640,L, + 25017502250,-0.061311960220337,L, + 26941925500,-0.058350443840027,L, + 28866348750,-0.055262327194214,L, + 30790772000,-0.052054405212402,L, + 32715195250,-0.048733353614807,L, + 34639618500,-0.045304656028748,L, + 36564041750,-0.041773676872253,L, + 38488465000,-0.038145959377289,L, + 40412888250,-0.034426629543304,L, + 42337311500,-0.030620872974396,L, + 44261734750,-0.026734173297882,L, + 46186158000,-0.022772967815399,L, + 48110581250,-0.018745183944702,L, + 50035004500,-0.014661252498627,L, + 51959427750,-0.010537266731262,L, + 53883851000,-0.006403863430023,L, + 55808274250,-0.002335608005524,L, + 57732697500,0.001278936862946,L, + 59657120750,0.003661870956421,L, + 61581544000,0.006383121013641,L, + 63505967250,0.009333014488220,L, + 65430390500,0.012299299240112,L, + 67354813750,0.015240550041199,L, + 69279237000,0.018139958381653,L, + 71203660250,0.020988225936890,L, + 73128083500,0.023778736591339,L, + 75052506750,0.026507079601288,L, + 76976930000,0.029168665409088,L, + 78901353250,0.031760096549988,L, + 80825776500,0.034276962280273,L, + 82750199750,0.036715269088745,L, + 84674623000,0.039071261882782,L, + 86599046250,0.041340172290802,L, + 88523469500,0.043516993522644,L, + 90447892750,0.045596778392792,L, + 92372316000,0.047573328018188,L, + 94296739250,0.049440264701843,L, + 96221162500,0.051190257072449,L, + 98145585750,0.052815079689026,L, + 100070009000,0.054305553436279,L, + 101994432250,0.055651247501373,L, + 103918855500,0.056839883327484,L, + 105843278750,0.057857871055603,L, + 107767702000,0.058688759803772,L, + 109692125250,0.059313178062439,L, + 111616548500,0.059708714485168,L, + 113540971750,0.059847533702850,L, + 115465395000,0.059847474098206,L, + 117389818250,0.059847116470337,L, + 119314241500,0.059845864772797,L, + 121238664750,0.059843301773071,L, + 123163088000,0.059839308261871,L, + 125087511250,0.059833228588104,L, + 127011934500,0.059824347496033,L, + 128936357750,0.059812247753143,L, + 130860781000,0.059796333312988,L, + 132785204250,0.059775650501251,L, + 134709627500,0.059750080108643,L, + 136634050750,0.059718430042267,L, + 138558474000,0.059680163860321,L, + 140482897250,0.059634506702423,L, + 142407320500,0.059580564498901,L, + 144331743750,0.059517502784729,L, + 146256167000,0.059444546699524,L, + 148180590250,0.059360921382904,L, + 150105013500,0.059265792369843,L, + 152029436750,0.059158205986023,L, + 153953860000,0.059037446975708,L, + 155878283250,0.058902502059937,L, + 157802706500,0.058752715587616,L, + 159727129750,0.058587431907654,L, + 161651553000,0.058405935764313,L, + 163575976250,0.058207750320435,L, + 165500399500,0.057991862297058,L, + 167424822750,0.057758271694183,L, + 169349246000,0.057506442070007,L, + 171273669250,0.057235777378082,L, + 173198092500,0.056946277618408,L, + 175122515750,0.056637763977051,L, + 177046939000,0.056310057640076,L, + 178971362250,0.055962979793549,L, + 180895785500,0.055596649646759,L, + 182820208750,0.055211544036865,L, + 184744632000,0.054807305335999,L, + 186669055250,0.054384648799896,L, + 188593478500,0.053943276405334,L, + 190517901750,0.053484261035919,L, + 192442325000,0.053007543087006,L, + 194366748250,0.052513599395752,L, + 196291171500,0.052002727985382,L, + 198215594750,0.051475465297699,L, + 200140018000,0.050932407379150,L, + 202064441250,0.050374031066895,L, + 203988864500,0.049800634384155,L, + 205913287750,0.049213111400604,L, + 207837711000,0.048611581325531,L, + 209762134250,0.047996640205383,L, + 211686557500,0.047368943691254,L, + 213610980750,0.046728849411011,L, + 215535404000,0.046006619930267,L, + 217459827250,0.045132040977478,L, + 219384250500,0.044105112552643,L, + 221308673750,0.042926669120789,L, + 223233097000,0.041599273681641,L, + 225157520250,0.040127277374268,L, + 227081943500,0.038517236709595,L, + 229006366750,0.036777436733246,L, + 230930790000,0.034918546676636,L, + 232855213250,0.032954156398773,L, + 234779636500,0.030899643898010,L, + 236704059750,0.028773367404938,L, + 238628483000,0.026595413684845,L, + 240552906250,0.024387598037720,L, + 242477329500,0.022173166275024,L, + 244401752750,0.019975960254669,L, + 246326176000,0.017820000648499,L, + 248250599250,0.015727996826172,L, + 250175022500,0.013722062110901,L, + 252099445750,0.011822640895844,L, + 254023869000,0.010047435760498,L, + 255948292250,0.008411526679993,L, + 257872715500,0.006928026676178,L, + 259797138750,0.005606889724731,L, + 261721562000,0.004455804824829,L, + 263645985250,0.003479957580566,L, + 265570408500,0.002682685852051,L, + 267494831750,0.002064883708954,L, + 269419255000,0.001626074314117,L, + 271343678250,0.001365125179291,L, + 273268101500,0.001278936862946,L, + 298285603750,0.001278936862946,L, + 300210027000,0.000954270362854,L, + 302134450250,-0.000025928020477,L, + 304058873500,-0.001666963100433,L, + 305983296750,-0.003965020179749,L, + 307907720000,-0.006905376911163,L, + 309832143250,-0.010460317134857,L, + 311756566500,-0.014586985111237,L, + 313680989750,-0.019226968288422,L, + 315605413000,-0.024303376674652,L, + 317529836250,-0.029724717140198,L, + 319454259500,-0.035384714603424,L, + 323303106000,-0.046948730945587,L, + 325227529250,-0.052608430385590,L, + 327151952500,-0.058029949665070,L, + 329076375750,-0.063106477260590,L, + 331000799000,-0.067746222019196,L, + 332925222250,-0.071872889995575,L, + 334849645500,-0.075427830219269,L, + 336774068750,-0.078368425369263,L, + 338698492000,-0.080666184425354,L, + 340622915250,-0.082307279109955,L, + 342547338500,-0.083287715911865,L, + 344471761750,-0.083612143993378,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.122710525989532 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.122710525989532,L, + 1924423250,-0.122655749320984,L, + 3848846500,-0.122499465942383,L, + 5773269750,-0.122251927852631,L, + 7697693000,-0.121922016143799,L, + 9622116250,-0.121517181396484,L, + 11546539500,-0.121043503284454,L, + 13470962750,-0.120506465435028,L, + 15395386000,-0.119910717010498,L, + 17319809250,-0.119260609149933,L, + 19244232500,-0.118559300899506,L, + 21168655750,-0.117810547351837,L, + 23093079000,-0.117016971111298,L, + 25017502250,-0.116181075572968,L, + 26941925500,-0.115305244922638,L, + 28866348750,-0.114391863346100,L, + 30790772000,-0.113442301750183,L, + 32715195250,-0.112458467483521,L, + 34639618500,-0.111442267894745,L, + 36564041750,-0.110394895076752,L, + 38488465000,-0.109317779541016,L, + 40412888250,-0.108212411403656,L, + 42337311500,-0.107079982757568,L, + 44261734750,-0.105922043323517,L, + 46186158000,-0.104739606380463,L, + 48110581250,-0.103534638881683,L, + 50035004500,-0.102309286594391,L, + 51959427750,-0.101066768169403,L, + 53883851000,-0.099813222885132,L, + 55808274250,-0.098563849925995,L, + 57732697500,-0.097399830818176,L, + 59657120750,-0.096333026885986,L, + 61581544000,-0.095028877258301,L, + 63505967250,-0.093658566474915,L, + 65430390500,-0.092274606227875,L, + 67354813750,-0.090887665748596,L, + 69279237000,-0.089501738548279,L, + 71203660250,-0.088119924068451,L, + 73128083500,-0.086742937564850,L, + 75052506750,-0.085372507572174,L, + 76976930000,-0.084009349346161,L, + 78901353250,-0.082654058933258,L, + 80825776500,-0.081307530403137,L, + 82750199750,-0.079970121383667,L, + 84674623000,-0.078642904758453,L, + 86599046250,-0.077326416969299,L, + 88523469500,-0.076021134853363,L, + 90447892750,-0.074728131294250,L, + 92372316000,-0.073448061943054,L, + 94296739250,-0.072182118892670,L, + 96221162500,-0.070930719375610,L, + 98145585750,-0.069695532321930,L, + 100070009000,-0.068477451801300,L, + 101994432250,-0.067278146743774,L, + 103918855500,-0.066099107265472,L, + 105843278750,-0.064942181110382,L, + 107767702000,-0.063809573650360,L, + 109692125250,-0.062703609466553,L, + 111616548500,-0.061627507209778,L, + 113540971750,-0.060585021972656,L, + 115465395000,-0.059554338455200,L, + 117389818250,-0.058511614799500,L, + 119314241500,-0.057457685470581,L, + 121238664750,-0.056392848491669,L, + 123163088000,-0.055317819118500,L, + 125087511250,-0.054233610630035,L, + 127011934500,-0.053140878677368,L, + 128936357750,-0.052040636539459,L, + 130860781000,-0.050934135913849,L, + 132785204250,-0.049822270870209,L, + 134709627500,-0.048706710338593,L, + 136634050750,-0.047588586807251,L, + 138558474000,-0.046469628810883,L, + 140482897250,-0.045351386070251,L, + 142407320500,-0.044235587120056,L, + 144331743750,-0.043124139308929,L, + 146256167000,-0.042019009590149,L, + 148180590250,-0.040922224521637,L, + 150105013500,-0.039835870265961,L, + 152029436750,-0.038762152194977,L, + 153953860000,-0.037703216075897,L, + 155878283250,-0.036661207675934,L, + 157802706500,-0.035638391971588,L, + 159727129750,-0.034636974334717,L, + 161651553000,-0.033659279346466,L, + 163575976250,-0.032706916332245,L, + 165500399500,-0.031782150268555,L, + 167424822750,-0.030887007713318,L, + 169349246000,-0.030023157596588,L, + 171273669250,-0.029191792011261,L, + 173198092500,-0.028394937515259,L, + 175122515750,-0.027633547782898,L, + 177046939000,-0.026908934116364,L, + 178971362250,-0.026221811771393,L, + 180895785500,-0.025572836399078,L, + 182820208750,-0.024963021278381,L, + 184744632000,-0.024392426013947,L, + 186669055250,-0.023861467838287,L, + 188593478500,-0.023370087146759,L, + 190517901750,-0.022918462753296,L, + 192442325000,-0.022506117820740,L, + 194366748250,-0.022133052349091,L, + 196291171500,-0.021798610687256,L, + 198215594750,-0.021502375602722,L, + 200140018000,-0.021243929862976,L, + 202064441250,-0.021022439002991,L, + 203988864500,-0.020837247371674,L, + 205913287750,-0.020687580108643,L, + 207837711000,-0.020572543144226,L, + 209762134250,-0.020491540431976,L, + 211686557500,-0.020443618297577,L, + 213610980750,-0.020427763462067,L, + 215535404000,-0.020603895187378,L, + 217459827250,-0.021135389804840,L, + 219384250500,-0.022025406360626,L, + 221308673750,-0.023274600505829,L, + 223233097000,-0.024880588054657,L, + 225157520250,-0.026837170124054,L, + 227081943500,-0.029134333133698,L, + 229006366750,-0.031756937503815,L, + 230930790000,-0.034685373306274,L, + 232855213250,-0.037893950939178,L, + 234779636500,-0.041351854801178,L, + 236704059750,-0.045022666454315,L, + 238628483000,-0.048865020275116,L, + 240552906250,-0.052833020687103,L, + 242477329500,-0.056878328323364,L, + 244401752750,-0.060949265956879,L, + 246326176000,-0.064994394779205,L, + 248250599250,-0.068962633609772,L, + 250175022500,-0.072804868221283,L, + 252099445750,-0.076475560665131,L, + 254023869000,-0.079933464527130,L, + 255948292250,-0.083142042160034,L, + 257872715500,-0.086070477962494,L, + 259797138750,-0.088693261146545,L, + 261721562000,-0.090990424156189,L, + 263645985250,-0.092946887016296,L, + 265570408500,-0.094552874565125,L, + 267494831750,-0.095802187919617,L, + 269419255000,-0.096692144870758,L, + 271343678250,-0.097223579883575,L, + 273268101500,-0.097399830818176,L, + 298285603750,-0.097399830818176,L, + 300210027000,-0.097496628761292,L, + 302134450250,-0.097789585590363,L, + 304058873500,-0.098279833793640,L, + 305983296750,-0.098966419696808,L, + 307907720000,-0.099844872951508,L, + 309832143250,-0.100906908512115,L, + 311756566500,-0.102139890193939,L, + 313680989750,-0.103525996208191,L, + 315605413000,-0.105042695999146,L, + 317529836250,-0.106662452220917,L, + 319454259500,-0.108353376388550,L, + 321378682750,-0.110080897808075,L, + 323303106000,-0.111808240413666,L, + 325227529250,-0.113499224185944,L, + 327151952500,-0.115118741989136,L, + 329076375750,-0.116635620594025,L, + 331000799000,-0.118021726608276,L, + 332925222250,-0.119254767894745,L, + 334849645500,-0.120316863059998,L, + 336774068750,-0.121195197105408,L, + 338698492000,-0.121881783008575,L, + 340622915250,-0.122372150421143,L, + 342547338500,-0.122664868831635,L, + 344471761750,-0.122761905193329,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.313043236732483 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.313043236732483,L, + 1924423250,0.313851356506348,L, + 3848846500,0.316155195236206,L, + 5773269750,0.319797515869141,L, + 7697693000,0.324647188186646,L, + 9622116250,0.330592393875122,L, + 11546539500,0.337537884712219,L, + 13470962750,0.345400691032410,L, + 15395386000,0.354108572006226,L, + 17319809250,0.363597869873047,L, + 19244232500,0.373811841011047,L, + 21168655750,0.384699702262878,L, + 23093079000,0.396215558052063,L, + 25017502250,0.408317565917969,L, + 26941925500,0.420967221260071,L, + 28866348750,0.434128642082214,L, + 30790772000,0.447768211364746,L, + 32715195250,0.461853504180908,L, + 34639618500,0.476353168487549,L, + 36564041750,0.491236090660095,L, + 38488465000,0.506470084190369,L, + 40412888250,0.522021412849426,L, + 42337311500,0.537852883338928,L, + 44261734750,0.553921222686768,L, + 46186158000,0.570173144340515,L, + 48110581250,0.586538672447205,L, + 50035004500,0.602916955947876,L, + 51959427750,0.619146108627319,L, + 53883851000,0.634922623634338,L, + 55808274250,0.649511098861694,L, + 57732697500,0.659229755401611,L, + 59657120750,0.034105896949768,L, + 111616548500,0.034105896949768,L, + 113540971750,0.007775664329529,L, + 211686557500,0.007775664329529,L, + 213610980750,-0.003737568855286,L, + 215535404000,-0.003602981567383,L, + 217459827250,-0.003190636634827,L, + 219384250500,-0.002487301826477,L, + 221308673750,-0.001480817794800,L, + 223233097000,-0.000159382820129,L, + 225157520250,0.001487612724304,L, + 227081943500,0.003468871116638,L, + 229006366750,0.005791187286377,L, + 230930790000,0.008458495140076,L, + 232855213250,0.011471748352051,L, + 234779636500,0.014828205108643,L, + 236704059750,0.018521189689636,L, + 238628483000,0.022539854049683,L, + 240552906250,0.026868939399719,L, + 242477329500,0.031489253044128,L, + 244401752750,0.036377668380737,L, + 246326176000,0.041508316993713,L, + 248250599250,0.046852231025696,L, + 250175022500,0.052379369735718,L, + 252099445750,0.058058500289917,L, + 254023869000,0.063858866691589,L, + 255948292250,0.069750308990479,L, + 257872715500,0.075704097747803,L, + 259797138750,0.081693887710571,L, + 261721562000,0.087695360183716,L, + 263645985250,0.093686580657959,L, + 265570408500,0.099648475646973,L, + 267494831750,0.105564594268799,L, + 269419255000,0.111420750617981,L, + 271343678250,0.117204904556274,L, + 273268101500,0.122907519340515,L, + 275192524750,0.128847479820251,L, + 277116948000,0.135353684425354,L, + 279041371250,0.142412185668945,L, + 280965794500,0.149971604347229,L, + 282890217750,0.157934665679932,L, + 284814641000,0.166156053543091,L, + 286739064250,0.174453496932983,L, + 288663487500,0.182631492614746,L, + 290587910750,0.190510511398315,L, + 292512334000,0.197949647903442,L, + 294436757250,0.204856991767883,L, + 296361180500,0.211187481880188,L, + 298285603750,0.216931819915771,L, + 300210027000,0.222416996955872,L, + 302134450250,0.227952241897583,L, + 304058873500,0.233519673347473,L, + 305983296750,0.239098072052002,L, + 307907720000,0.244661808013916,L, + 309832143250,0.250180602073669,L, + 311756566500,0.255620360374451,L, + 313680989750,0.260942935943604,L, + 315605413000,0.266107559204102,L, + 317529836250,0.271072030067444,L, + 319454259500,0.275794029235840,L, + 321378682750,0.280233860015869,L, + 323303106000,0.284355759620667,L, + 325227529250,0.288129925727844,L, + 327151952500,0.291533589363098,L, + 329076375750,0.294551610946655,L, + 331000799000,0.297177076339722,L, + 332925222250,0.299409866333008,L, + 334849645500,0.301256179809570,L, + 336774068750,0.302727460861206,L, + 338698492000,0.303838968276978,L, + 340622915250,0.304608345031738,L, + 342547338500,0.305055141448975,L, + 344471761750,0.305199623107910,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.865117763194306 + KeyVer: 4005 + KeyCount: 11 + Key: + 0,-93.865117763194306,L, + 34639618500,-93.865117763194306,L, + 36564041750,-93.865110933005141,L, + 38488465000,-93.865117763194306,L, + 40412888250,-93.865110933005141,L, + 42337311500,-93.865117763194306,L, + 111616548500,-93.865117763194306,L, + 113540971750,-93.865124593383470,L, + 273268101500,-93.865124593383470,L, + 275192524750,-93.865117763194306,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224140167236,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256962776184,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981706619263,L, + 15395386000,0.643294811248779,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325608730316,L, + 21168655750,0.595212280750275,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520844936371,L, + 30790772000,0.496082574129105,L, + 32715195250,0.473943591117859,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760720252991,L, + 38488465000,0.403816312551498,L, + 40412888250,0.379372954368591,L, + 42337311500,0.354489505290985,L, + 44261734750,0.329233735799789,L, + 46186158000,0.303689152002335,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222985029221,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703390836716,L, + 71203660250,0.312314927577972,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067084550858,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529528975486755,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421470165253,L, + 94296739250,0.587841093540192,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822494983673,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452627658844,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208321571350,L, + 286739064250,0.778779387474060,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534962177277,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739019870758,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234719276428,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135883331299,L, + 315605413000,0.808550417423248,L, + 317529836250,0.800450086593628,L, + 319454259500,0.791993141174316,L, + 321378682750,0.783353924751282,L, + 323303106000,0.774714469909668,L, + 325227529250,0.766257643699646,L, + 327151952500,0.758157193660736,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161223888397,L, + 336774068750,0.727767884731293,L, + 338698492000,0.724334239959717,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932556152344,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224140167236,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256962776184,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981706619263,L, + 15395386000,0.643294811248779,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325608730316,L, + 21168655750,0.595212280750275,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520844936371,L, + 30790772000,0.496082574129105,L, + 32715195250,0.473943591117859,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760720252991,L, + 38488465000,0.403816312551498,L, + 40412888250,0.379372954368591,L, + 42337311500,0.354489505290985,L, + 44261734750,0.329233735799789,L, + 46186158000,0.303689152002335,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222985029221,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703390836716,L, + 71203660250,0.312314927577972,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067084550858,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529528975486755,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421470165253,L, + 94296739250,0.587841093540192,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822494983673,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452627658844,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208321571350,L, + 286739064250,0.778779387474060,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534962177277,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739019870758,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234719276428,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135883331299,L, + 315605413000,0.808550417423248,L, + 317529836250,0.800450086593628,L, + 319454259500,0.791993141174316,L, + 321378682750,0.783353924751282,L, + 323303106000,0.774714469909668,L, + 325227529250,0.766257643699646,L, + 327151952500,0.758157193660736,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161223888397,L, + 336774068750,0.727767884731293,L, + 338698492000,0.724334239959717,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932556152344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.443177759647369 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.443177759647369,L, + 1924423250,0.442354172468185,L, + 3848846500,0.440006077289581,L, + 5773269750,0.436293661594391,L, + 7697693000,0.431350857019424,L, + 9622116250,0.425291299819946,L, + 11546539500,0.418212413787842,L, + 13470962750,0.410198479890823,L, + 15395386000,0.401323139667511,L, + 17319809250,0.391651481389999,L, + 19244232500,0.381241232156754,L, + 21168655750,0.370144098997116,L, + 23093079000,0.358406931161880,L, + 25017502250,0.346072286367416,L, + 26941925500,0.333179533481598,L, + 28866348750,0.319765120744705,L, + 30790772000,0.305863469839096,L, + 32715195250,0.291507452726364,L, + 34639618500,0.276729077100754,L, + 36564041750,0.261560231447220,L, + 38488465000,0.246033430099487,L, + 40412888250,0.230183169245720,L, + 42337311500,0.214047521352768,L, + 44261734750,0.197670400142670,L, + 46186158000,0.181106045842171,L, + 48110581250,0.164425894618034,L, + 50035004500,0.147732794284821,L, + 51959427750,0.131191909313202,L, + 53883851000,0.115112118422985,L, + 55808274250,0.100243121385574,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882522106171,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354133605957,L, + 67354813750,0.123738169670105,L, + 69279237000,0.133280381560326,L, + 71203660250,0.142899021506310,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323513388634,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626767396927,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560553312302,L, + 92372316000,0.245301157236099,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126017570496,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813740491867,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296051740646,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146136522293,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706455945969,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857344388962,L, + 138558474000,0.382175147533417,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771320581436,L, + 148180590250,0.396268129348755,L, + 150105013500,0.398613512516022,L, + 152029436750,0.400813609361649,L, + 153953860000,0.402875453233719,L, + 155878283250,0.404806703329086,L, + 157802706500,0.406615942716599,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905672073364,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412824988365173,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904615402222,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405583620071,L, + 180895785500,0.422571808099747,L, + 182820208750,0.423754513263702,L, + 184744632000,0.424963057041168,L, + 186669055250,0.426206141710281,L, + 188593478500,0.427491754293442,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220544338226,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436478018760681,L, + 202064441250,0.438237309455872,L, + 203988864500,0.440081894397736,L, + 205913287750,0.442014664411545,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153551340103,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667589902878,L, + 215535404000,0.453080922365189,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265990018845,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866910457611,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050713539124,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470610618591,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214479923248,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522052049637,L, + 244401752750,0.498546570539474,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530433177948,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166801452637,L, + 269419255000,0.521676063537598,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.519864141941071,L, + 277116948000,0.513182044029236,L, + 279041371250,0.502119362354279,L, + 280965794500,0.487050443887711,L, + 282890217750,0.468709290027618,L, + 284814641000,0.448205679655075,L, + 286739064250,0.426943838596344,L, + 288663487500,0.406440287828445,L, + 290587910750,0.388099104166031,L, + 292512334000,0.373030215501785,L, + 294436757250,0.361967474222183,L, + 296361180500,0.355285406112671,L, + 298285603750,0.353073537349701,L, + 300210027000,0.353420913219452,L, + 302134450250,0.354470402002335,L, + 304058873500,0.356227189302444,L, + 305983296750,0.358687251806259,L, + 307907720000,0.361834913492203,L, + 309832143250,0.365640550851822,L, + 311756566500,0.370058447122574,L, + 313680989750,0.375025391578674,L, + 315605413000,0.380460023880005,L, + 317529836250,0.386263698339462,L, + 319454259500,0.392322778701782,L, + 321378682750,0.398512482643127,L, + 323303106000,0.404702246189117,L, + 325227529250,0.410761296749115,L, + 327151952500,0.416565030813217,L, + 329076375750,0.421999603509903,L, + 331000799000,0.426966577768326,L, + 332925222250,0.431384503841400,L, + 334849645500,0.435190141201019,L, + 336774068750,0.438337802886963,L, + 338698492000,0.440797865390778,L, + 340622915250,0.442554652690887,L, + 342547338500,0.443604052066803,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_029" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.015042185783386 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.015042185783386,L, + 1924423250,0.015033423900604,L, + 3848846500,0.015007436275482,L, + 5773269750,0.014963746070862,L, + 7697693000,0.014902412891388,L, + 9622116250,0.014823436737061,L, + 11546539500,0.014726698398590,L, + 13470962750,0.014611959457397,L, + 15395386000,0.014479875564575,L, + 17319809250,0.014330089092255,L, + 19244232500,0.014162778854370,L, + 21168655750,0.013978481292725,L, + 23093079000,0.013777196407318,L, + 25017502250,0.013559103012085,L, + 26941925500,0.013324856758118,L, + 28866348750,0.013074934482574,L, + 30790772000,0.012809872627258,L, + 32715195250,0.012529790401459,L, + 34639618500,0.012235999107361,L, + 36564041750,0.011929214000702,L, + 38488465000,0.011609852313995,L, + 40412888250,0.011278986930847,L, + 42337311500,0.010937750339508,L, + 44261734750,0.010587334632874,L, + 46186158000,0.010228276252747,L, + 48110581250,0.009862184524536,L, + 50035004500,0.009490370750427,L, + 51959427750,0.009113609790802,L, + 53883851000,0.008733689785004,L, + 55808274250,0.008351802825928,L, + 57732697500,0.007969319820404,L, + 59657120750,0.007587194442749,L, + 61581544000,0.007207274436951,L, + 63505967250,0.006830811500549,L, + 65430390500,0.006458699703217,L, + 67354813750,0.006092727184296,L, + 69279237000,0.005733788013458,L, + 71203660250,0.005383133888245,L, + 73128083500,0.005041956901550,L, + 75052506750,0.004711091518402,L, + 76976930000,0.004391968250275,L, + 78901353250,0.004084944725037,L, + 80825776500,0.003791153430939,L, + 82750199750,0.003511369228363,L, + 84674623000,0.003246247768402,L, + 86599046250,0.002996087074280,L, + 88523469500,0.002762019634247,L, + 90447892750,0.002543926239014,L, + 92372316000,0.002342462539673,L, + 94296739250,0.002158105373383,L, + 96221162500,0.001990854740143,L, + 98145585750,0.001841247081757,L, + 100070009000,0.001708924770355,L, + 101994432250,0.001594424247742,L, + 103918855500,0.001497745513916,L, + 105843278750,0.001418769359589,L, + 107767702000,0.001357197761536,L, + 109692125250,0.001313507556915,L, + 111616548500,0.001287460327148,L, + 113540971750,0.001278936862946,L, + 115465395000,0.001350939273834,L, + 117389818250,0.001568377017975,L, + 119314241500,0.001932621002197,L, + 121238664750,0.002444088459015,L, + 123163088000,0.003101289272308,L, + 125087511250,0.003902196884155,L, + 127011934500,0.004842162132263,L, + 128936357750,0.005915641784668,L, + 130860781000,0.007114291191101,L, + 132785204250,0.008427321910858,L, + 134709627500,0.009842634201050,L, + 136634050750,0.011344969272614,L, + 138558474000,0.012917757034302,L, + 140482897250,0.014541864395142,L, + 142407320500,0.016197383403778,L, + 144331743750,0.017863690853119,L, + 146256167000,0.019519209861755,L, + 148180590250,0.021143317222595,L, + 150105013500,0.022716104984283,L, + 152029436750,0.024218440055847,L, + 153953860000,0.025633513927460,L, + 155878283250,0.026946783065796,L, + 157802706500,0.028145432472229,L, + 159727129750,0.029218912124634,L, + 161651553000,0.030158936977386,L, + 163575976250,0.030959784984589,L, + 165500399500,0.031616985797882,L, + 167424822750,0.032128393650055,L, + 169349246000,0.032492756843567,L, + 171273669250,0.032710134983063,L, + 173198092500,0.032782137393951,L, + 342547338500,0.032782137393951,L, + 344471761750,0.015258669853210,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062712430953979 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,-0.062712430953979,L, + 1924423250,-0.062734246253967,L, + 3848846500,-0.062800109386444,L, + 5773269750,-0.062910139560699,L, + 7697693000,-0.063064813613892,L, + 9622116250,-0.063264012336731,L, + 11546539500,-0.063507914543152,L, + 13470962750,-0.063796520233154,L, + 15395386000,-0.064129590988159,L, + 17319809250,-0.064507126808167,L, + 19244232500,-0.064928412437439,L, + 21168655750,-0.065393209457397,L, + 23093079000,-0.065900623798370,L, + 25017502250,-0.066450059413910,L, + 26941925500,-0.067040324211121,L, + 28866348750,-0.067670226097107,L, + 30790772000,-0.068338632583618,L, + 32715195250,-0.069043993949890,L, + 34639618500,-0.069784343242645,L, + 36564041750,-0.070558011531830,L, + 38488465000,-0.071362733840942,L, + 40412888250,-0.072196364402771,L, + 42337311500,-0.073056399822235,L, + 44261734750,-0.073940098285675,L, + 46186158000,-0.074844598770142,L, + 48110581250,-0.075767219066620,L, + 50035004500,-0.076704680919647,L, + 51959427750,-0.077653825283051,L, + 53883851000,-0.078611314296722,L, + 55808274250,-0.079573869705200,L, + 57732697500,-0.080538272857666,L, + 59657120750,-0.081500828266144,L, + 61581544000,-0.082458436489105,L, + 63505967250,-0.083407461643219,L, + 65430390500,-0.084345042705536,L, + 67354813750,-0.085267484188080,L, + 69279237000,-0.086172103881836,L, + 71203660250,-0.087055742740631,L, + 73128083500,-0.087915718555450,L, + 75052506750,-0.088749408721924,L, + 76976930000,-0.089554131031036,L, + 78901353250,-0.090327799320221,L, + 80825776500,-0.091068267822266,L, + 82750199750,-0.091773450374603,L, + 84674623000,-0.092441916465759,L, + 86599046250,-0.093071818351746,L, + 88523469500,-0.093662202358246,L, + 90447892750,-0.094211518764496,L, + 92372316000,-0.094718992710114,L, + 94296739250,-0.095183730125427,L, + 96221162500,-0.095605194568634,L, + 98145585750,-0.095982551574707,L, + 100070009000,-0.096315741539001,L, + 101994432250,-0.096604406833649,L, + 103918855500,-0.096848309040070,L, + 105843278750,-0.097047388553619,L, + 107767702000,-0.097202003002167,L, + 109692125250,-0.097312033176422,L, + 111616548500,-0.097377896308899,L, + 113540971750,-0.097399830818176,L, + 115465395000,-0.097241520881653,L, + 117389818250,-0.096763968467712,L, + 119314241500,-0.095964312553406,L, + 121238664750,-0.094841957092285,L, + 123163088000,-0.093399167060852,L, + 125087511250,-0.091641128063202,L, + 127011934500,-0.089577436447144,L, + 128936357750,-0.087220966815948,L, + 130860781000,-0.084590017795563,L, + 132785204250,-0.081707298755646,L, + 134709627500,-0.078600585460663,L, + 136634050750,-0.075302600860596,L, + 138558474000,-0.071850478649139,L, + 140482897250,-0.068285286426544,L, + 142407320500,-0.064650952816010,L, + 144331743750,-0.060993254184723,L, + 146256167000,-0.057358920574188,L, + 148180590250,-0.053793728351593,L, + 150105013500,-0.050341606140137,L, + 152029436750,-0.047043740749359,L, + 153953860000,-0.043937027454376,L, + 155878283250,-0.041054189205170,L, + 157802706500,-0.038423240184784,L, + 159727129750,-0.036066889762878,L, + 161651553000,-0.034003078937531,L, + 163575976250,-0.032245039939880,L, + 165500399500,-0.030802249908447,L, + 167424822750,-0.029679954051971,L, + 169349246000,-0.028880238533020,L, + 171273669250,-0.028402686119080,L, + 173198092500,-0.028244495391846,L, + 342547338500,-0.028244495391846,L, + 344471761750,-0.062223017215729,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.003709554672241 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.003709554672241,L, + 1924423250,0.003965497016907,L, + 3848846500,0.004752993583679,L, + 5773269750,0.006098985671997,L, + 7697693000,0.008027553558350,L, + 9622116250,0.010557174682617,L, + 11546539500,0.013699412345886,L, + 13470962750,0.017456173896790,L, + 15395386000,0.021817803382874,L, + 17319809250,0.026761412620544,L, + 19244232500,0.032250165939331,L, + 21168655750,0.038233399391174,L, + 23093079000,0.044647574424744,L, + 25017502250,0.051420331001282,L, + 26941925500,0.058472394943237,L, + 28866348750,0.065723180770874,L, + 30790772000,0.073093652725220,L, + 32715195250,0.080510020256042,L, + 34639618500,0.087906002998352,L, + 36564041750,0.095224499702454,L, + 38488465000,0.102418065071106,L, + 40412888250,0.109448313713074,L, + 42337311500,0.116285443305969,L, + 44261734750,0.122907519340515,L, + 46186158000,0.129713892936707,L, + 48110581250,0.137114167213440,L, + 50035004500,0.145077943801880,L, + 51959427750,0.153524160385132,L, + 53883851000,0.162311315536499,L, + 55808274250,0.171241521835327,L, + 57732697500,0.180084466934204,L, + 59657120750,0.188615918159485,L, + 61581544000,0.196655035018921,L, + 63505967250,0.204083323478699,L, + 65430390500,0.210844635963440,L, + 67354813750,0.216931819915771,L, + 69279237000,0.222473740577698,L, + 71203660250,0.227625727653503,L, + 73128083500,0.232439160346985,L, + 75052506750,0.236955642700195,L, + 76976930000,0.241209626197815,L, + 78901353250,0.245230555534363,L, + 80825776500,0.249043464660645,L, + 82750199750,0.252670884132385,L, + 84674623000,0.256132125854492,L, + 86599046250,0.259445428848267,L, + 88523469500,0.262627363204956,L, + 90447892750,0.265693902969360,L, + 92372316000,0.268660545349121,L, + 94296739250,0.271543502807617,L, + 96221162500,0.274359107017517,L, + 98145585750,0.277126312255859,L, + 100070009000,0.279866337776184,L, + 101994432250,0.282606005668640,L, + 103918855500,0.285380840301514,L, + 105843278750,0.288241863250732,L, + 107767702000,0.291270613670349,L, + 109692125250,0.294619202613831,L, + 111616548500,0.298653244972229,L, + 113540971750,0.305199623107910,L, + 115465395000,0.316694140434265,L, + 117389818250,0.328217148780823,L, + 119314241500,0.339769840240479,L, + 121238664750,0.351353764533997,L, + 123163088000,0.362970113754272,L, + 125087511250,0.374620437622070,L, + 127011934500,0.386306285858154,L, + 128936357750,0.398029327392578,L, + 130860781000,0.409791827201843,L, + 132785204250,0.421595335006714,L, + 134709627500,0.433442473411560,L, + 136634050750,0.445335626602173,L, + 138558474000,0.457277655601501,L, + 140482897250,0.469271302223206,L, + 142407320500,0.481320023536682,L, + 144331743750,0.493427634239197,L, + 146256167000,0.505598068237305,L, + 148180590250,0.517835736274719,L, + 150105013500,0.530146121978760,L, + 152029436750,0.542533993721008,L, + 153953860000,0.555004954338074,L, + 155878283250,0.567565679550171,L, + 157802706500,0.580220103263855,L, + 159727129750,0.592971086502075,L, + 161651553000,0.605812549591064,L, + 163575976250,0.618717908859253,L, + 165500399500,0.631595253944397,L, + 167424822750,0.644122362136841,L, + 169349246000,0.654923200607300,L, + 171273669250,0.659229755401611,L, + 173198092500,0.007775664329529,L, + 342547338500,0.007775664329529,L, + 344471761750,0.003468871116638,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 4.999997720105161 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,4.999997720105161,L, + 42337311500,4.999997720105161,L, + 44261734750,5.000000281426099,L, + 46186158000,5.000006684728446,L, + 50035004500,5.000004123407508,L, + 51959427750,5.000004977181154,L, + 53883851000,5.000002415860215,L, + 55808274250,5.000004550294331,L, + 57732697500,4.999995158784222,L, + 59657120750,4.999996012557868,L, + 61581544000,4.999998573878807,L, + 63505967250,4.999998146991984,L, + 65430390500,4.999997293218338,L, + 67354813750,5.000004123407508,L, + 69279237000,5.000002842747039,L, + 71203660250,5.000000281426099,L, + 73128083500,5.000001135199746,L, + 75052506750,5.000001562086569,L, + 76976930000,5.000005830954800,L, + 78901353250,5.000001562086569,L, + 80825776500,5.000004550294331,L, + 82750199750,5.000001562086569,L, + 84674623000,5.000002415860215,L, + 86599046250,5.000001135199746,L, + 90447892750,5.000001135199746,L, + 92372316000,5.000003696520684,L, + 94296739250,4.999999000765630,L, + 96221162500,5.000002415860215,L, + 98145585750,5.000001988973392,L, + 100070009000,5.000000708312923,L, + 101994432250,5.000001135199746,L, + 103918855500,5.000006257841624,L, + 105843278750,5.000001562086569,L, + 107767702000,5.000000708312923,L, + 109692125250,4.999999427652454,L, + 111616548500,5.000003696520684,L, + 113540971750,4.999999000765630,L, + 115465395000,4.999999854539277,L, + 117389818250,5.000001988973392,L, + 119314241500,4.999998573878807,L, + 121238664750,4.999997293218338,L, + 123163088000,4.999999000765630,L, + 125087511250,4.999999427652454,L, + 127011934500,4.999998146991984,L, + 128936357750,5.000001988973392,L, + 130860781000,4.999997720105161,L, + 132785204250,4.999999854539277,L, + 134709627500,4.999999427652454,L, + 136634050750,5.000000281426099,L, + 138558474000,4.999997720105161,L, + 140482897250,4.999999427652454,L, + 142407320500,4.999998573878807,L, + 144331743750,4.999999427652454,L, + 146256167000,4.999999854539277,L, + 148180590250,4.999999854539277,L, + 150105013500,4.999998146991984,L, + 152029436750,4.999999000765630,L, + 153953860000,4.999999427652454,L, + 155878283250,4.999996012557868,L, + 157802706500,4.999999427652454,L, + 159727129750,4.999999427652454,L, + 161651553000,4.999999000765630,L, + 163575976250,5.000003696520684,L, + 165500399500,4.999997293218338,L, + 167424822750,4.999999427652454,L, + 169349246000,4.999997720105161,L, + 171273669250,5.000001988973392,L, + 173198092500,5.000000281426099,L, + 342547338500,5.000000281426099,L, + 344471761750,4.999997720105161,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724506855011,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789960920810699,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165772914886,L, + 65430390500,0.844383895397186,L, + 67354813750,0.846775054931641,L, + 69279237000,0.846711635589600,L, + 71203660250,0.846496939659119,L, + 73128083500,0.846090972423553,L, + 75052506750,0.845448076725006,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246281147003,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443802833557,L, + 84674623000,0.836794674396515,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457327842712,L, + 98145585750,0.800120651721954,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425092697144,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868997097015,L, + 109692125250,0.742985069751740,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932675361633,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114565849304,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841408252716,L, + 127011934500,0.615940630435944,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260448932648,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900336265564,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030550956726,L, + 144331743750,0.444688618183136,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324538230896,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549924373627,L, + 171273669250,0.163711950182915,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724506855011,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789960920810699,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165772914886,L, + 65430390500,0.844383895397186,L, + 67354813750,0.846775054931641,L, + 69279237000,0.846711635589600,L, + 71203660250,0.846496939659119,L, + 73128083500,0.846090972423553,L, + 75052506750,0.845448076725006,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246281147003,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443802833557,L, + 84674623000,0.836794674396515,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457327842712,L, + 98145585750,0.800120651721954,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425092697144,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868997097015,L, + 109692125250,0.742985069751740,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932675361633,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114565849304,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841408252716,L, + 127011934500,0.615940630435944,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260448932648,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900336265564,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030550956726,L, + 144331743750,0.444688618183136,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324538230896,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549924373627,L, + 171273669250,0.163711950182915,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.470956027507782 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.470956027507782,L, + 1924423250,0.471168845891953,L, + 3848846500,0.471811860799789,L, + 5773269750,0.472888171672821,L, + 7697693000,0.474394291639328,L, + 9622116250,0.476319015026093,L, + 11546539500,0.478641450405121,L, + 13470962750,0.481329768896103,L, + 15395386000,0.484340369701385,L, + 17319809250,0.487617403268814,L, + 19244232500,0.491094142198563,L, + 21168655750,0.494694739580154,L, + 23093079000,0.498337268829346,L, + 25017502250,0.501937866210938,L, + 26941925500,0.505414605140686,L, + 28866348750,0.508691668510437,L, + 30790772000,0.511702179908752,L, + 32715195250,0.514390528202057,L, + 34639618500,0.516713023185730,L, + 36564041750,0.518637716770172,L, + 38488465000,0.520143866539001,L, + 40412888250,0.521220147609711,L, + 42337311500,0.521863222122192,L, + 44261734750,0.522076010704041,L, + 46186158000,0.519478321075439,L, + 48110581250,0.511636376380920,L, + 50035004500,0.498705595731735,L, + 51959427750,0.481252878904343,L, + 53883851000,0.460353434085846,L, + 55808274250,0.437574803829193,L, + 57732697500,0.414796113967896,L, + 59657120750,0.393896639347076,L, + 61581544000,0.376443952322006,L, + 63505967250,0.363513141870499,L, + 65430390500,0.355671226978302,L, + 67354813750,0.353073537349701,L, + 69279237000,0.353420913219452,L, + 71203660250,0.354470402002335,L, + 73128083500,0.356227189302444,L, + 75052506750,0.358687251806259,L, + 76976930000,0.361834913492203,L, + 78901353250,0.365640550851822,L, + 80825776500,0.370058447122574,L, + 82750199750,0.375025391578674,L, + 84674623000,0.380460023880005,L, + 86599046250,0.386263698339462,L, + 88523469500,0.392322808504105,L, + 90447892750,0.398512482643127,L, + 92372316000,0.404702246189117,L, + 94296739250,0.410761326551437,L, + 96221162500,0.416564971208572,L, + 98145585750,0.421999603509903,L, + 100070009000,0.426966547966003,L, + 101994432250,0.431384503841400,L, + 103918855500,0.435190141201019,L, + 105843278750,0.438337802886963,L, + 107767702000,0.440797865390778,L, + 109692125250,0.442554593086243,L, + 111616548500,0.443604052066803,L, + 113540971750,0.443951487541199,L, + 115465395000,0.443126142024994,L, + 117389818250,0.440772920846939,L, + 119314241500,0.437052339315414,L, + 121238664750,0.432098686695099,L, + 123163088000,0.426025807857513,L, + 125087511250,0.418931365013123,L, + 127011934500,0.410899877548218,L, + 128936357750,0.402005076408386,L, + 130860781000,0.392312228679657,L, + 132785204250,0.381879121065140,L, + 134709627500,0.370757669210434,L, + 136634050750,0.358994752168655,L, + 138558474000,0.346633076667786,L, + 140482897250,0.333712041378021,L, + 142407320500,0.320268213748932,L, + 144331743750,0.306336045265198,L, + 146256167000,0.291948556900024,L, + 148180590250,0.277137786149979,L, + 150105013500,0.261935651302338,L, + 152029436750,0.246374815702438,L, + 153953860000,0.230489850044250,L, + 155878283250,0.214318767189980,L, + 157802706500,0.197905763983727,L, + 159727129750,0.181305050849915,L, + 161651553000,0.164588317275047,L, + 163575976250,0.147858649492264,L, + 165500399500,0.131281465291977,L, + 167424822750,0.115166492760181,L, + 169349246000,0.100264906883240,L, + 171273669250,0.090337850153446,L, + 173198092500,0.325813740491867,L, + 342547338500,0.325813740491867,L, + 344471761750,0.468949705362320,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_028" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.004002273082733 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.004002273082733,L, + 1924423250,0.004497945308685,L, + 3848846500,0.006009280681610,L, + 5773269750,0.008558094501495,L, + 7697693000,0.012139439582825,L, + 9622116250,0.016712546348572,L, + 11546539500,0.022192180156708,L, + 13470962750,0.028444826602936,L, + 15395386000,0.035290122032166,L, + 17319809250,0.042509436607361,L, + 19244232500,0.049866139888763,L, + 21168655750,0.057123482227325,L, + 23093079000,0.064067244529724,L, + 25017502250,0.070518612861633,L, + 26941925500,0.076342284679413,L, + 28866348750,0.081444859504700,L, + 30790772000,0.085772216320038,L, + 32715195250,0.089301049709320,L, + 34639618500,0.092326283454895,L, + 36564041750,0.095128417015076,L, + 38488465000,0.097678184509277,L, + 40412888250,0.099947988986969,L, + 42337311500,0.101915359497070,L, + 44261734750,0.103566229343414,L, + 46186158000,0.104899704456329,L, + 48110581250,0.105929315090179,L, + 50035004500,0.106684625148773,L, + 51959427750,0.107204854488373,L, + 53883851000,0.107537150382996,L, + 55808274250,0.107728898525238,L, + 57732697500,0.107823431491852,L, + 59657120750,0.107858300209045,L, + 61581544000,0.107864379882812,L, + 63505967250,0.107332766056061,L, + 65430390500,0.105728089809418,L, + 67354813750,0.103081881999969,L, + 69279237000,0.099510312080383,L, + 71203660250,0.095233440399170,L, + 73128083500,0.090571761131287,L, + 75052506750,0.085910260677338,L, + 76976930000,0.081633150577545,L, + 78901353250,0.078061819076538,L, + 80825776500,0.075415611267090,L, + 82750199750,0.073810696601868,L, + 84674623000,0.073279082775116,L, + 180895785500,0.073279082775116,L, + 182820208750,0.072955131530762,L, + 184744632000,0.071977019309998,L, + 186669055250,0.070339202880859,L, + 188593478500,0.068043589591980,L, + 190517901750,0.065100550651550,L, + 192442325000,0.061531662940979,L, + 194366748250,0.057369530200958,L, + 196291171500,0.052661418914795,L, + 198215594750,0.047468066215515,L, + 200140018000,0.041864871978760,L, + 202064441250,0.035940706729889,L, + 203988864500,0.029795587062836,L, + 205913287750,0.023537814617157,L, + 207837711000,0.017279744148254,L, + 209762134250,0.011134684085846,L, + 211686557500,0.005210459232330,L, + 213610980750,-0.000392436981201,L, + 215535404000,-0.005586087703705,L, + 217459827250,-0.010294198989868,L, + 219384250500,-0.014456272125244,L, + 221308673750,-0.018025457859039,L, + 223233097000,-0.020968258380890,L, + 225157520250,-0.023263871669769,L, + 227081943500,-0.024901628494263,L, + 229006366750,-0.025879800319672,L, + 230930790000,-0.026203513145447,L, + 232855213250,-0.025465607643127,L, + 234779636500,-0.023234784603119,L, + 236704059750,-0.019502937793732,L, + 238628483000,-0.014290094375610,L, + 240552906250,-0.007649958133698,L, + 242477329500,0.000320255756378,L, + 244401752750,0.009476482868195,L, + 246326176000,0.019624888896942,L, + 248250599250,0.030523359775543,L, + 250175022500,0.041889488697052,L, + 252099445750,0.053415119647980,L, + 254023869000,0.064781248569489,L, + 255948292250,0.075679659843445,L, + 257872715500,0.085828006267548,L, + 259797138750,0.094984292984009,L, + 261721562000,0.102954626083374,L, + 263645985250,0.109594523906708,L, + 265570408500,0.114807724952698,L, + 267494831750,0.118539333343506,L, + 269419255000,0.120770215988159,L, + 271343678250,0.121508181095123,L, + 273268101500,0.121178030967712,L, + 275192524750,0.120170116424561,L, + 277116948000,0.118463277816772,L, + 279041371250,0.116049051284790,L, + 280965794500,0.112935245037079,L, + 282890217750,0.109150826931000,L, + 284814641000,0.104748666286469,L, + 286739064250,0.099807858467102,L, + 288663487500,0.094432771205902,L, + 290587910750,0.088746845722198,L, + 292512334000,0.082886099815369,L, + 294436757250,0.076988339424133,L, + 296361180500,0.071183741092682,L, + 298285603750,0.065586984157562,L, + 300210027000,0.060293436050415,L, + 302134450250,0.055375397205353,L, + 304058873500,0.050884306430817,L, + 305983296750,0.046852946281433,L, + 307907720000,0.043298602104187,L, + 309832143250,0.039924442768097,L, + 311756566500,0.036440670490265,L, + 313680989750,0.032872021198273,L, + 315605413000,0.029251813888550,L, + 317529836250,0.025623679161072,L, + 319454259500,0.022042453289032,L, + 321378682750,0.018570125102997,L, + 323303106000,0.015273749828339,L, + 325227529250,0.012218713760376,L, + 327151952500,0.009463965892792,L, + 329076375750,0.007056057453156,L, + 331000799000,0.005025744438171,L, + 332925222250,0.003387868404388,L, + 334849645500,0.002143025398254,L, + 336774068750,0.001280009746552,L, + 338698492000,0.000779747962952,L, + 340622915250,0.000619113445282,L, + 344471761750,0.000619113445282,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.032572507858276 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,-0.032572507858276,L, + 1924423250,-0.032571732997894,L, + 3848846500,-0.032565712928772,L, + 5773269750,-0.032547950744629,L, + 7697693000,-0.032510519027710,L, + 9622116250,-0.032444238662720,L, + 11546539500,-0.032338559627533,L, + 13470962750,-0.032182693481445,L, + 15395386000,-0.031966388225555,L, + 17319809250,-0.031680703163147,L, + 19244232500,-0.031318604946136,L, + 21168655750,-0.030876278877258,L, + 23093079000,-0.030353367328644,L, + 25017502250,-0.029751420021057,L, + 26941925500,-0.029074728488922,L, + 28866348750,-0.028328776359558,L, + 30790772000,-0.027519822120667,L, + 32715195250,-0.026654303073883,L, + 34639618500,-0.025224745273590,L, + 36564041750,-0.022711694240570,L, + 38488465000,-0.019132494926453,L, + 40412888250,-0.014554321765900,L, + 42337311500,-0.009107768535614,L, + 44261734750,-0.002994358539581,L, + 46186158000,0.003517866134644,L, + 48110581250,0.010113179683685,L, + 50035004500,0.016460359096527,L, + 51959427750,0.022251665592194,L, + 53883851000,0.027231991291046,L, + 55808274250,0.031217515468597,L, + 57732697500,0.034096837043762,L, + 59657120750,0.035820960998535,L, + 61581544000,0.036389648914337,L, + 63505967250,0.035830318927765,L, + 65430390500,0.034141838550568,L, + 67354813750,0.031357467174530,L, + 69279237000,0.027599573135376,L, + 71203660250,0.023099541664124,L, + 73128083500,0.018194973468781,L, + 75052506750,0.013290047645569,L, + 76976930000,0.008790135383606,L, + 78901353250,0.005032122135162,L, + 80825776500,0.002247929573059,L, + 82750199750,0.000559389591217,L, + 84674623000,0.000000119209290,L, + 180895785500,0.000000119209290,L, + 182820208750,-0.000331759452820,L, + 184744632000,-0.001333892345428,L, + 186669055250,-0.003011882305145,L, + 188593478500,-0.005363881587982,L, + 190517901750,-0.008379042148590,L, + 192442325000,-0.012035965919495,L, + 194366748250,-0.016300082206726,L, + 196291171500,-0.021123945713043,L, + 198215594750,-0.026444792747498,L, + 200140018000,-0.032185614109039,L, + 202064441250,-0.038255095481873,L, + 203988864500,-0.044551312923431,L, + 205913287750,-0.050962805747986,L, + 207837711000,-0.057374477386475,L, + 209762134250,-0.063670396804810,L, + 211686557500,-0.069740116596222,L, + 213610980750,-0.075480878353119,L, + 215535404000,-0.080801606178284,L, + 217459827250,-0.085625529289246,L, + 219384250500,-0.089889705181122,L, + 221308673750,-0.093546509742737,L, + 223233097000,-0.096561789512634,L, + 225157520250,-0.098913788795471,L, + 227081943500,-0.100591719150543,L, + 229006366750,-0.101593911647797,L, + 230930790000,-0.101925730705261,L, + 232855213250,-0.101464450359344,L, + 234779636500,-0.100069046020508,L, + 236704059750,-0.097731471061707,L, + 238628483000,-0.094460666179657,L, + 240552906250,-0.090286850929260,L, + 242477329500,-0.085265874862671,L, + 244401752750,-0.079483211040497,L, + 246326176000,-0.073055148124695,L, + 248250599250,-0.066127896308899,L, + 250175022500,-0.058873057365417,L, + 252099445750,-0.051479220390320,L, + 254023869000,-0.044142246246338,L, + 255948292250,-0.037053108215332,L, + 257872715500,-0.030386447906494,L, + 259797138750,-0.024294257164001,L, + 261721562000,-0.018898427486420,L, + 263645985250,-0.014291226863861,L, + 265570408500,-0.010534942150116,L, + 267494831750,-0.007667064666748,L, + 269419255000,-0.005701959133148,L, + 271343678250,-0.004637897014618,L, + 273268101500,-0.004036247730255,L, + 275192524750,-0.003469228744507,L, + 277116948000,-0.002940535545349,L, + 279041371250,-0.002453327178955,L, + 280965794500,-0.002011418342590,L, + 282890217750,-0.001617133617401,L, + 284814641000,-0.001272261142731,L, + 286739064250,-0.000977694988251,L, + 288663487500,-0.000732541084290,L, + 290587910750,-0.000534653663635,L, + 292512334000,-0.000379979610443,L, + 294436757250,-0.000263988971710,L, + 296361180500,-0.000180661678314,L, + 298285603750,-0.000124156475067,L, + 300210027000,-0.000088691711426,L, + 302134450250,-0.000068426132202,L, + 304058873500,-0.000058948993683,L, + 305983296750,-0.000055551528931,L, + 307907720000,-0.000055015087128,L, + 309832143250,-0.000303566455841,L, + 311756566500,-0.001054644584656,L, + 313680989750,-0.002307951450348,L, + 315605413000,-0.004046976566315,L, + 317529836250,-0.006234586238861,L, + 319454259500,-0.008809983730316,L, + 321378682750,-0.011686325073242,L, + 323303106000,-0.014754414558411,L, + 325227529250,-0.017887949943542,L, + 327151952500,-0.020955920219421,L, + 329076375750,-0.023832321166992,L, + 331000799000,-0.026407599449158,L, + 332925222250,-0.028595387935638,L, + 334849645500,-0.030334413051605,L, + 336774068750,-0.031587660312653,L, + 338698492000,-0.032338798046112,L, + 340622915250,-0.032587289810181,L, + 344471761750,-0.032587289810181,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.068277001380920 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.068277001380920,L, + 1924423250,0.068401455879211,L, + 3848846500,0.068782091140747,L, + 5773269750,0.069426774978638,L, + 7697693000,0.070337176322937,L, + 9622116250,0.071506500244141,L, + 11546539500,0.072917103767395,L, + 13470962750,0.074539661407471,L, + 15395386000,0.076332569122314,L, + 17319809250,0.078244686126709,L, + 19244232500,0.080218911170959,L, + 21168655750,0.082197666168213,L, + 23093079000,0.084127426147461,L, + 25017502250,0.085962653160095,L, + 26941925500,0.087667942047119,L, + 28866348750,0.089218139648438,L, + 30790772000,0.090597152709961,L, + 32715195250,0.091796755790710,L, + 34639618500,0.092807173728943,L, + 36564041750,0.093624114990234,L, + 38488465000,0.094259262084961,L, + 40412888250,0.094735383987427,L, + 42337311500,0.095088720321655,L, + 44261734750,0.095369935035706,L, + 46186158000,0.095641613006592,L, + 48110581250,0.095973610877991,L, + 50035004500,0.096435308456421,L, + 51959427750,0.097087860107422,L, + 53883851000,0.097978472709656,L, + 55808274250,0.099137425422668,L, + 57732697500,0.100579142570496,L, + 59657120750,0.102305173873901,L, + 61581544000,0.104307770729065,L, + 63505967250,0.107642531394958,L, + 65430390500,0.113377809524536,L, + 67354813750,0.121406316757202,L, + 69279237000,0.131420731544495,L, + 71203660250,0.142872810363770,L, + 73128083500,0.154986858367920,L, + 75052506750,0.166852951049805,L, + 76976930000,0.177579045295715,L, + 78901353250,0.186437487602234,L, + 80825776500,0.192945480346680,L, + 82750199750,0.196866631507874,L, + 84674623000,0.198159337043762,L, + 86599046250,0.196213722229004,L, + 88523469500,0.190331935882568,L, + 90447892750,0.180545210838318,L, + 92372316000,0.167057156562805,L, + 94296739250,0.150293350219727,L, + 96221162500,0.130931496620178,L, + 98145585750,0.109890818595886,L, + 100070009000,0.088268518447876,L, + 101994432250,0.067227840423584,L, + 103918855500,0.047865986824036,L, + 105843278750,0.031102299690247,L, + 107767702000,0.017614126205444,L, + 109692125250,0.007827281951904,L, + 111616548500,0.001945614814758,L, + 113540971750,0.000000000000000,L, + 115465395000,0.000355362892151,L, + 117389818250,0.001437544822693,L, + 119314241500,0.003263831138611,L, + 121238664750,0.005839347839355,L, + 123163088000,0.009153008460999,L, + 125087511250,0.013173222541809,L, + 127011934500,0.017844796180725,L, + 128936357750,0.023087024688721,L, + 130860781000,0.028794050216675,L, + 132785204250,0.034839868545532,L, + 134709627500,0.041083574295044,L, + 136634050750,0.047379493713379,L, + 138558474000,0.053585886955261,L, + 140482897250,0.059574246406555,L, + 142407320500,0.065234184265137,L, + 144331743750,0.070477604866028,L, + 146256167000,0.075238823890686,L, + 148180590250,0.079473376274109,L, + 150105013500,0.083154678344727,L, + 152029436750,0.086271047592163,L, + 153953860000,0.089045763015747,L, + 155878283250,0.091687202453613,L, + 157802706500,0.094168543815613,L, + 159727129750,0.096461296081543,L, + 161651553000,0.098537445068359,L, + 163575976250,0.100372433662415,L, + 165500399500,0.101949334144592,L, + 167424822750,0.103261470794678,L, + 169349246000,0.104314446449280,L, + 171273669250,0.105125427246094,L, + 173198092500,0.105720400810242,L, + 175122515750,0.106130480766296,L, + 177046939000,0.106387734413147,L, + 178971362250,0.106522679328918,L, + 180895785500,0.106562256813049,L, + 182820208750,0.106556534767151,L, + 184744632000,0.106538891792297,L, + 186669055250,0.106508851051331,L, + 188593478500,0.106465816497803,L, + 190517901750,0.106409311294556,L, + 192442325000,0.106339216232300,L, + 194366748250,0.106255173683167,L, + 196291171500,0.106157183647156,L, + 198215594750,0.106045365333557,L, + 200140018000,0.105920433998108,L, + 202064441250,0.105782866477966,L, + 203988864500,0.105633616447449,L, + 205913287750,0.105473756790161,L, + 207837711000,0.105304837226868,L, + 209762134250,0.105128169059753,L, + 211686557500,0.104945421218872,L, + 213610980750,0.104758262634277,L, + 215535404000,0.104568123817444,L, + 219384250500,0.104184985160828,L, + 221308673750,0.103994369506836,L, + 223233097000,0.103806018829346,L, + 225157520250,0.103620648384094,L, + 227081943500,0.103438973426819,L, + 229006366750,0.103261590003967,L, + 230930790000,0.103088736534119,L, + 232855213250,0.102907776832581,L, + 234779636500,0.102705478668213,L, + 236704059750,0.102482557296753,L, + 238628483000,0.102240204811096,L, + 240552906250,0.101980328559875,L, + 242477329500,0.101705431938171,L, + 244401752750,0.101419091224670,L, + 246326176000,0.101125240325928,L, + 248250599250,0.100829005241394,L, + 250175022500,0.100535631179810,L, + 252099445750,0.100250840187073,L, + 254023869000,0.099980115890503,L, + 255948292250,0.099728584289551,L, + 257872715500,0.099500536918640,L, + 259797138750,0.099299430847168,L, + 261721562000,0.099127888679504,L, + 263645985250,0.098987460136414,L, + 265570408500,0.098878860473633,L, + 267494831750,0.098802208900452,L, + 269419255000,0.098756909370422,L, + 271343678250,0.098742008209229,L, + 273268101500,0.099136471748352,L, + 275192524750,0.100328564643860,L, + 277116948000,0.102321028709412,L, + 279041371250,0.105097174644470,L, + 280965794500,0.108615756034851,L, + 282890217750,0.112807035446167,L, + 284814641000,0.117568731307983,L, + 286739064250,0.122766733169556,L, + 288663487500,0.128239154815674,L, + 290587910750,0.133805394172668,L, + 292512334000,0.139277935028076,L, + 294436757250,0.144475936889648,L, + 296361180500,0.149237513542175,L, + 298285603750,0.153428912162781,L, + 300210027000,0.156947493553162,L, + 302134450250,0.159723520278931,L, + 304058873500,0.161715984344482,L, + 305983296750,0.162908196449280,L, + 307907720000,0.163302540779114,L, + 309832143250,0.162570476531982,L, + 311756566500,0.160357117652893,L, + 313680989750,0.156664013862610,L, + 315605413000,0.151539683341980,L, + 317529836250,0.145092964172363,L, + 319454259500,0.137504220008850,L, + 321378682750,0.129028439521790,L, + 323303106000,0.119988083839417,L, + 325227529250,0.110753893852234,L, + 327151952500,0.101713657379150,L, + 329076375750,0.093237757682800,L, + 331000799000,0.085649013519287,L, + 332925222250,0.079202413558960,L, + 334849645500,0.074077963829041,L, + 336774068750,0.070384860038757,L, + 338698492000,0.068171620368958,L, + 340622915250,0.067439436912537,L, + 344471761750,0.067439436912537,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.026921190613567 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.026921190613567,L, + 1924423250,0.030825397446270,L, + 3848846500,0.042629248327558,L, + 5773269750,0.062324735794443,L, + 7697693000,0.089653049705245,L, + 9622116250,0.124033006995653,L, + 11546539500,0.164503945560970,L, + 13470962750,0.209705950725065,L, + 15395386000,0.257917974899654,L, + 17319809250,0.307164065702199,L, + 19244232500,0.355376023175722,L, + 21168655750,0.400578108381096,L, + 23093079000,0.441049060286626,L, + 25017502250,0.475428977556394,L, + 26941925500,0.502757258116664,L, + 28866348750,0.522452855640308,L, + 30790772000,0.534256596464836,L, + 32715195250,0.538160849988286,L, + 34639618500,0.532876898252496,L, + 36564041750,0.516903273578827,L, + 38488465000,0.490324446197407,L, + 40412888250,0.453693394626741,L, + 42337311500,0.408166475229396,L, + 44261734750,0.355583570213040,L, + 46186158000,0.298441247121444,L, + 48110581250,0.239719549505990,L, + 50035004500,0.182577279775246,L, + 51959427750,0.129994454800170,L, + 53883851000,0.084467615444104,L, + 55808274250,0.047836567208491,L, + 57732697500,0.021257576409459,L, + 59657120750,0.005284006347289,L, + 61581544000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.021346052038605 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.021346052038605,L, + 1924423250,0.024441745233470,L, + 3848846500,0.033801165459316,L, + 5773269750,0.049417952769492,L, + 7697693000,0.071086921344418,L, + 9622116250,0.098347226848211,L, + 11546539500,0.130437149775964,L, + 13470962750,0.166278394022783,L, + 15395386000,0.204506282456415,L, + 17319809250,0.243554140435991,L, + 19244232500,0.281782015529410,L, + 21168655750,0.317623246436015,L, + 23093079000,0.349713182703981,L, + 25017502250,0.376973454857242,L, + 26941925500,0.398642523483767,L, + 28866348750,0.414259217412450,L, + 30790772000,0.423618711009469,L, + 32715195250,0.426714334168215,L, + 34639618500,0.422524600081800,L, + 36564041750,0.409859028122234,L, + 38488465000,0.388784159273073,L, + 40412888250,0.359739019951473,L, + 42337311500,0.323640216207965,L, + 44261734750,0.281946580399725,L, + 46186158000,0.236637773488570,L, + 48110581250,0.190076614040498,L, + 50035004500,0.144767727088063,L, + 51959427750,0.103074204671636,L, + 53883851000,0.066975374247701,L, + 55808274250,0.037930228255995,L, + 57732697500,0.016855412767686,L, + 59657120750,0.004189734086415,L, + 61581544000,-0.000000000000000,L, + 344471761750,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -1.393026259288796 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-1.393026259288796,L, + 1924423250,-1.598125634284877,L, + 3848846500,-2.220004433095007,L, + 5773269750,-3.261494302738681,L, + 7697693000,-4.712980791463766,L, + 9622116250,-6.548630843168845,L, + 11546539500,-8.723255499418352,L, + 13470962750,-11.170950264910932,L, + 15395386000,-13.806692091084738,L, + 17319809250,-16.531392008555958,L, + 19244232500,-19.239976948454199,L, + 21168655750,-21.830761615737401,L, + 23093079000,-24.213877796401249,L, + 25017502250,-26.317048428648771,L, + 26941925500,-28.087875716262289,L, + 28866348750,-29.493105175720352,L, + 30790772000,-30.516052362427939,L, + 32715195250,-31.153093861030356,L, + 34639618500,-31.583621174983151,L, + 36564041750,-31.981633373392150,L, + 38488465000,-32.343008437093246,L, + 40412888250,-32.663880479016228,L, + 42337311500,-32.941076876291632,L, + 44261734750,-33.172756892938132,L, + 46186158000,-33.358906868577392,L, + 48110581250,-33.501726124122150,L, + 50035004500,-33.605497188182007,L, + 51959427750,-33.676165740429440,L, + 53883851000,-33.720503913426519,L, + 55808274250,-33.745382877478249,L, + 57732697500,-33.757100066999392,L, + 59657120750,-33.761051331434238,L, + 61581544000,-33.761570425811158,L, + 63505967250,-33.242633143241846,L, + 65430390500,-31.676050709926216,L, + 67354813750,-29.092869750736522,L, + 69279237000,-25.606353585131625,L, + 71203660250,-21.431267266278514,L, + 73128083500,-16.880785212905579,L, + 75052506750,-12.330304013306291,L, + 76976930000,-8.155215986905889,L, + 78901353250,-4.668699821300992,L, + 80825776500,-2.085520569658588,L, + 82750199750,-0.518939577085987,L, + 84674623000,0.000002690045773,L, + 86599046250,0.000002666088715,L, + 88523469500,-0.000002623783369,L, + 90447892750,0.000000000000000,L, + 92372316000,0.000002493401797,L, + 94296739250,0.000000000000000,L, + 96221162500,-0.000002328149742,L, + 98145585750,0.000000000000000,L, + 107767702000,0.000000000000000,L, + 109692125250,-0.000001917994164,L, + 111616548500,0.000000000000000,L, + 113540971750,0.000001897274860,L, + 115465395000,-0.000001899584808,L, + 117389818250,0.000000000000000,L, + 119314241500,-0.000001918749151,L, + 121238664750,-0.000001936087194,L, + 123163088000,0.000000000000000,L, + 128936357750,0.000000000000000,L, + 130860781000,0.000002107194522,L, + 132785204250,0.000000000000000,L, + 134709627500,0.000002213166330,L, + 136634050750,0.000000000000000,L, + 140482897250,0.000000000000000,L, + 142407320500,-0.000002460877699,L, + 144331743750,0.000000000000000,L, + 146256167000,0.000002584304187,L, + 148180590250,0.000000000000000,L, + 150105013500,0.000002694837876,L, + 152029436750,0.000000000000000,L, + 163575976250,0.000000000000000,L, + 165500399500,-0.000003081212473,L, + 167424822750,0.000003124034444,L, + 169349246000,0.000003162110518,L, + 171273669250,0.000000000000000,L, + 175122515750,0.000000000000000,L, + 177046939000,0.000003254478304,L, + 178971362250,0.000000000000000,L, + 180895785500,-0.000003264822791,L, + 182820208750,0.000000000000000,L, + 198215594750,0.000000000000000,L, + 200140018000,0.000003127225787,L, + 202064441250,0.000000000000000,L, + 203988864500,0.000000000000000,L, + 205913287750,-0.000003039907398,L, + 207837711000,0.000000000000000,L, + 209762134250,0.000002976492939,L, + 211686557500,0.000002944326489,L, + 213610980750,0.000000000000000,L, + 221308673750,0.000000000000000,L, + 223233097000,0.000002762948361,L, + 225157520250,0.000000000000000,L, + 227081943500,0.000002710997333,L, + 229006366750,0.000000000000000,L, + 230930790000,0.000000000000000,L, + 232855213250,0.000002641856858,L, + 234779636500,0.000000000000000,L, + 246326176000,0.000000000000000,L, + 248250599250,0.000002453691579,L, + 250175022500,0.000000000000000,L, + 252099445750,0.000000000000000,L, + 254023869000,-0.000002384904273,L, + 255948292250,0.000002363174112,L, + 257872715500,0.000000000000000,L, + 259797138750,0.000000000000000,L, + 261721562000,0.000002302839244,L, + 263645985250,0.000000000000000,L, + 265570408500,-0.000002267031797,L, + 267494831750,0.000000000000000,L, + 271343678250,0.000000000000000,L, + 273268101500,0.000002205090876,L, + 275192524750,0.000002190047921,L, + 277116948000,0.000002174771488,L, + 279041371250,0.000000000000000,L, + 280965794500,0.000002144020765,L, + 282890217750,0.000000000000000,L, + 284814641000,-0.000002114098718,L, + 286739064250,0.000000000000000,L, + 288663487500,0.000000000000000,L, + 290587910750,0.000002074211000,L, + 292512334000,0.000000000000000,L, + 304058873500,0.000000000000000,L, + 305983296750,-0.000002022686625,L, + 307907720000,-0.000002022124201,L, + 309832143250,0.000002026055265,L, + 311756566500,0.000000000000000,L, + 313680989750,0.000002058338963,L, + 315605413000,0.000002087192548,L, + 317529836250,0.000002124661213,L, + 319454259500,-0.000002170529187,L, + 321378682750,0.000000000000000,L, + 323303106000,0.000002284358237,L, + 325227529250,0.000000000000000,L, + 327151952500,0.000000000000000,L, + 329076375750,0.000002483240510,L, + 331000799000,0.000002546126538,L, + 332925222250,0.000000000000000,L, + 334849645500,0.000002648389157,L, + 336774068750,-0.000002682780063,L, + 338698492000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.633204817771912 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.633204817771912,L, + 1924423250,0.633685231208801,L, + 3848846500,0.635137677192688,L, + 5773269750,0.637561023235321,L, + 7697693000,0.640923619270325,L, + 9622116250,0.645153999328613,L, + 11546539500,0.650133669376373,L, + 13470962750,0.655695438385010,L, + 15395386000,0.661627650260925,L, + 17319809250,0.667687177658081,L, + 19244232500,0.673619329929352,L, + 21168655750,0.679181277751923,L, + 23093079000,0.684160947799683,L, + 25017502250,0.688391208648682,L, + 26941925500,0.691753745079041,L, + 28866348750,0.694177210330963,L, + 30790772000,0.695629596710205,L, + 32715195250,0.696110069751740,L, + 34639618500,0.695350944995880,L, + 36564041750,0.693055868148804,L, + 38488465000,0.689237296581268,L, + 40412888250,0.683974325656891,L, + 42337311500,0.677433311939240,L, + 44261734750,0.669878661632538,L, + 46186158000,0.661668837070465,L, + 48110581250,0.653232038021088,L, + 50035004500,0.645022213459015,L, + 51959427750,0.637467443943024,L, + 53883851000,0.630926489830017,L, + 55808274250,0.625663578510284,L, + 57732697500,0.621844887733459,L, + 59657120750,0.619549870491028,L, + 61581544000,0.618790805339813,L, + 63505967250,0.618797063827515,L, + 65430390500,0.618846058845520,L, + 67354813750,0.618994593620300,L, + 69279237000,0.619313776493073,L, + 71203660250,0.619884788990021,L, + 73128083500,0.620787560939789,L, + 75052506750,0.622085809707642,L, + 76976930000,0.623815476894379,L, + 78901353250,0.625979900360107,L, + 80825776500,0.628554999828339,L, + 82750199750,0.631499588489532,L, + 84674623000,0.634765148162842,L, + 86599046250,0.640469074249268,L, + 88523469500,0.650795817375183,L, + 90447892750,0.665675461292267,L, + 92372316000,0.684826374053955,L, + 94296739250,0.707697153091431,L, + 96221162500,0.733435332775116,L, + 98145585750,0.760902881622314,L, + 100070009000,0.788758635520935,L, + 101994432250,0.815595626831055,L, + 103918855500,0.840101242065430,L, + 105843278750,0.861189603805542,L, + 107767702000,0.878074526786804,L, + 109692125250,0.890277624130249,L, + 111616548500,0.897587776184082,L, + 113540971750,0.899999976158142,L, + 115465395000,0.898905515670776,L, + 117389818250,0.895568370819092,L, + 119314241500,0.889927387237549,L, + 121238664750,0.881957828998566,L, + 123163088000,0.871683239936829,L, + 125087511250,0.859188377857208,L, + 127011934500,0.844630479812622,L, + 128936357750,0.828244447708130,L, + 130860781000,0.810341596603394,L, + 132785204250,0.791299283504486,L, + 134709627500,0.771540462970734,L, + 136634050750,0.751506686210632,L, + 138558474000,0.731630086898804,L, + 140482897250,0.712306499481201,L, + 142407320500,0.693877339363098,L, + 144331743750,0.676618218421936,L, + 146256167000,0.660737752914429,L, + 148180590250,0.646380662918091,L, + 150105013500,0.633636355400085,L, + 152029436750,0.622548818588257,L, + 153953860000,0.612249970436096,L, + 155878283250,0.601915299892426,L, + 157802706500,0.591645956039429,L, + 159727129750,0.581571578979492,L, + 161651553000,0.571849822998047,L, + 163575976250,0.562658429145813,L, + 165500399500,0.554180324077606,L, + 167424822750,0.546584010124207,L, + 169349246000,0.540002405643463,L, + 171273669250,0.534517645835876,L, + 173198092500,0.530156493186951,L, + 175122515750,0.526896178722382,L, + 177046939000,0.524676203727722,L, + 178971362250,0.523413360118866,L, + 180895785500,0.523013770580292,L, + 182820208750,0.523223757743835,L, + 184744632000,0.523866593837738,L, + 186669055250,0.524960398674011,L, + 188593478500,0.526521146297455,L, + 190517901750,0.528561353683472,L, + 192442325000,0.531089425086975,L, + 194366748250,0.534108102321625,L, + 196291171500,0.537613213062286,L, + 198215594750,0.541592836380005,L, + 200140018000,0.546026229858398,L, + 202064441250,0.550884068012238,L, + 203988864500,0.556127548217773,L, + 205913287750,0.561710298061371,L, + 207837711000,0.567579507827759,L, + 209762134250,0.573677599430084,L, + 211686557500,0.579944968223572,L, + 213610980750,0.586322188377380,L, + 215535404000,0.592751741409302,L, + 217459827250,0.599180877208710,L, + 219384250500,0.605561256408691,L, + 221308673750,0.611851572990417,L, + 223233097000,0.618016362190247,L, + 225157520250,0.624026656150818,L, + 227081943500,0.629859447479248,L, + 229006366750,0.635497152805328,L, + 230930790000,0.640926837921143,L, + 232855213250,0.646343588829041,L, + 234779636500,0.651950180530548,L, + 236704059750,0.657746553421021,L, + 238628483000,0.663728475570679,L, + 240552906250,0.669887363910675,L, + 242477329500,0.676208734512329,L, + 244401752750,0.682672023773193,L, + 246326176000,0.689249992370605,L, + 248250599250,0.695909500122070,L, + 250175022500,0.702612221240997,L, + 252099445750,0.709316968917847,L, + 254023869000,0.715981483459473,L, + 255948292250,0.722565174102783,L, + 257872715500,0.729031801223755,L, + 259797138750,0.735350370407104,L, + 261721562000,0.741496562957764,L, + 263645985250,0.747453093528748,L, + 265570408500,0.753208339214325,L, + 267494831750,0.758756816387177,L, + 269419255000,0.764097332954407,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161733627319,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093684673309,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143491744995,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227405548096,L, + 292512334000,0.827696144580841,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079333305359,L, + 300210027000,0.840432524681091,L, + 302134450250,0.842224717140198,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197630882263,L, + 307907720000,0.844432473182678,L, + 309832143250,0.842794060707092,L, + 311756566500,0.837840557098389,L, + 313680989750,0.829575419425964,L, + 315605413000,0.818107247352600,L, + 317529836250,0.803679823875427,L, + 319454259500,0.786696314811707,L, + 321378682750,0.767727494239807,L, + 323303106000,0.747495412826538,L, + 325227529250,0.726829528808594,L, + 327151952500,0.706597447395325,L, + 329076375750,0.687628626823425,L, + 331000799000,0.670645117759705,L, + 332925222250,0.656217694282532,L, + 334849645500,0.644749402999878,L, + 336774068750,0.636484265327454,L, + 338698492000,0.631530880928040,L, + 340622915250,0.629892468452454,L, + 344471761750,0.629892468452454,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.615131914615631 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.615131914615631,L, + 1924423250,0.615750312805176,L, + 3848846500,0.617619991302490,L, + 5773269750,0.620739638805389,L, + 7697693000,0.625068366527557,L, + 9622116250,0.630514025688171,L, + 11546539500,0.636924326419830,L, + 13470962750,0.644084274768829,L, + 15395386000,0.651720821857452,L, + 17319809250,0.659521102905273,L, + 19244232500,0.667157709598541,L, + 21168655750,0.674317538738251,L, + 23093079000,0.680727899074554,L, + 25017502250,0.686173617839813,L, + 26941925500,0.690502285957336,L, + 28866348750,0.693621933460236,L, + 30790772000,0.695491671562195,L, + 32715195250,0.696110129356384,L, + 34639618500,0.695760607719421,L, + 36564041750,0.694665551185608,L, + 38488465000,0.692759037017822,L, + 40412888250,0.689989209175110,L, + 42337311500,0.686327695846558,L, + 44261734750,0.681780815124512,L, + 46186158000,0.676399230957031,L, + 48110581250,0.670278191566467,L, + 50035004500,0.663551092147827,L, + 51959427750,0.656375169754028,L, + 53883851000,0.648911118507385,L, + 55808274250,0.641307950019836,L, + 57732697500,0.633691847324371,L, + 59657120750,0.626161813735962,L, + 61581544000,0.618790805339813,L, + 63505967250,0.610616147518158,L, + 65430390500,0.600686311721802,L, + 67354813750,0.589176774024963,L, + 69279237000,0.576439499855042,L, + 71203660250,0.563026130199432,L, + 73128083500,0.549658179283142,L, + 75052506750,0.537134349346161,L, + 76976930000,0.526192188262939,L, + 78901353250,0.517390966415405,L, + 80825776500,0.511057972908020,L, + 82750199750,0.507304728031158,L, + 84674623000,0.506082534790039,L, + 86599046250,0.509950339794159,L, + 88523469500,0.521642446517944,L, + 90447892750,0.541097462177277,L, + 92372316000,0.567910194396973,L, + 94296739250,0.601234555244446,L, + 96221162500,0.639723658561707,L, + 98145585750,0.681550025939941,L, + 100070009000,0.724532485008240,L, + 101994432250,0.766358911991119,L, + 103918855500,0.804847896099091,L, + 105843278750,0.838172316551208,L, + 107767702000,0.864985048770905,L, + 109692125250,0.884440183639526,L, + 111616548500,0.896132171154022,L, + 113540971750,0.899999976158142,L, + 115465395000,0.898470938205719,L, + 117389818250,0.893849134445190,L, + 119314241500,0.886120915412903,L, + 121238664750,0.875337600708008,L, + 123163088000,0.861632764339447,L, + 125087511250,0.845238924026489,L, + 127011934500,0.826499581336975,L, + 128936357750,0.805871367454529,L, + 130860781000,0.783915758132935,L, + 134709627500,0.738632917404175,L, + 136634050750,0.716677308082581,L, + 138558474000,0.696049153804779,L, + 140482897250,0.677309751510620,L, + 142407320500,0.660915911197662,L, + 144331743750,0.647211194038391,L, + 146256167000,0.636427819728851,L, + 148180590250,0.628699660301208,L, + 150105013500,0.624077856540680,L, + 152029436750,0.622548818588257,L, + 153953860000,0.623327314853668,L, + 155878283250,0.625680923461914,L, + 157802706500,0.629597008228302,L, + 159727129750,0.634994149208069,L, + 161651553000,0.641702055931091,L, + 163575976250,0.649449527263641,L, + 165500399500,0.657868742942810,L, + 167424822750,0.666520714759827,L, + 169349246000,0.674939990043640,L, + 171273669250,0.682687640190125,L, + 173198092500,0.689395487308502,L, + 175122515750,0.694792628288269,L, + 177046939000,0.698708772659302,L, + 178971362250,0.701062321662903,L, + 180895785500,0.701840758323669,L, + 182820208750,0.701642513275146,L, + 184744632000,0.701043605804443,L, + 186669055250,0.700040817260742,L, + 188593478500,0.698635220527649,L, + 190517901750,0.696833193302155,L, + 192442325000,0.694647789001465,L, + 194366748250,0.692099273204803,L, + 196291171500,0.689216494560242,L, + 198215594750,0.686036467552185,L, + 200140018000,0.682605743408203,L, + 202064441250,0.678978323936462,L, + 203988864500,0.675215601921082,L, + 205913287750,0.671383857727051,L, + 207837711000,0.667552053928375,L, + 209762134250,0.663789331912994,L, + 211686557500,0.660161972045898,L, + 213610980750,0.656731128692627,L, + 215535404000,0.653551220893860,L, + 217459827250,0.650668323040009,L, + 219384250500,0.648119866847992,L, + 221308673750,0.645934462547302,L, + 223233097000,0.644132494926453,L, + 225157520250,0.642726898193359,L, + 227081943500,0.641724050045013,L, + 229006366750,0.641125082969666,L, + 230930790000,0.640926837921143,L, + 232855213250,0.641364693641663,L, + 234779636500,0.642700791358948,L, + 236704059750,0.644962668418884,L, + 238628483000,0.648165583610535,L, + 240552906250,0.652308464050293,L, + 242477329500,0.657369375228882,L, + 244401752750,0.663301706314087,L, + 246326176000,0.670031011104584,L, + 248250599250,0.677454471588135,L, + 250175022500,0.685443103313446,L, + 252099445750,0.693847179412842,L, + 254023869000,0.702503919601440,L, + 255948292250,0.711247980594635,L, + 257872715500,0.719919860363007,L, + 259797138750,0.728375434875488,L, + 261721562000,0.736490726470947,L, + 263645985250,0.744165062904358,L, + 265570408500,0.751321673393250,L, + 267494831750,0.757905840873718,L, + 269419255000,0.763882398605347,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161733627319,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093684673309,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143491744995,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227405548096,L, + 292512334000,0.827696144580841,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079333305359,L, + 300210027000,0.840432524681091,L, + 302134450250,0.842224717140198,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197630882263,L, + 307907720000,0.844432473182678,L, + 309832143250,0.842648744583130,L, + 311756566500,0.837256073951721,L, + 313680989750,0.828258037567139,L, + 315605413000,0.815772831439972,L, + 317529836250,0.800065994262695,L, + 319454259500,0.781576514244080,L, + 321378682750,0.760925471782684,L, + 323303106000,0.738899409770966,L, + 325227529250,0.716400861740112,L, + 327151952500,0.694374680519104,L, + 329076375750,0.673723816871643,L, + 331000799000,0.655234217643738,L, + 332925222250,0.639527440071106,L, + 334849645500,0.627042174339294,L, + 336774068750,0.618044137954712,L, + 338698492000,0.612651467323303,L, + 340622915250,0.610867738723755,L, + 344471761750,0.610867738723755,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.049851775169373 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,1.049851775169373,L, + 1924423250,1.048867225646973,L, + 3848846500,1.045857787132263,L, + 5773269750,1.040767431259155,L, + 7697693000,1.033589363098145,L, + 9622116250,1.024385809898376,L, + 11546539500,1.013304471969604,L, + 13470962750,1.000588536262512,L, + 15395386000,0.986575126647949,L, + 17319809250,0.971677899360657,L, + 19244232500,0.956354379653931,L, + 21168655750,0.941064715385437,L, + 23093079000,0.926233232021332,L, + 25017502250,0.912217915058136,L, + 26941925500,0.899296104907990,L, + 28866348750,0.887663245201111,L, + 30790772000,0.877439796924591,L, + 32715195250,0.868685841560364,L, + 34639618500,0.860882103443146,L, + 36564041750,0.853516221046448,L, + 38488465000,0.846616804599762,L, + 40412888250,0.840200960636139,L, + 42337311500,0.834269940853119,L, + 44261734750,0.828802049160004,L, + 46186158000,0.823749959468842,L, + 48110581250,0.819041371345520,L, + 50035004500,0.814585506916046,L, + 51959427750,0.810282588005066,L, + 53883851000,0.806036472320557,L, + 55808274250,0.801762282848358,L, + 57732697500,0.797392785549164,L, + 59657120750,0.792878508567810,L, + 61581544000,0.788186252117157,L, + 63505967250,0.783168137073517,L, + 65430390500,0.777729094028473,L, + 67354813750,0.771962821483612,L, + 69279237000,0.766021728515625,L, + 71203660250,0.760118246078491,L, + 73128083500,0.754508137702942,L, + 75052506750,0.749453544616699,L, + 76976930000,0.745177209377289,L, + 78901353250,0.741827487945557,L, + 80825776500,0.739469408988953,L, + 82750199750,0.738096892833710,L, + 84674623000,0.737656176090240,L, + 86599046250,0.741600155830383,L, + 88523469500,0.753522813320160,L, + 90447892750,0.773361325263977,L, + 92372316000,0.800702691078186,L, + 94296739250,0.834684014320374,L, + 96221162500,0.873931765556335,L, + 98145585750,0.916582643985748,L, + 100070009000,0.960412383079529,L, + 101994432250,1.003063440322876,L, + 103918855500,1.042311191558838,L, + 105843278750,1.076292514801025,L, + 107767702000,1.103633761405945,L, + 109692125250,1.123472213745117,L, + 111616548500,1.135394930839539,L, + 113540971750,1.139338970184326,L, + 115465395000,1.136821031570435,L, + 117389818250,1.129210233688354,L, + 119314241500,1.116484045982361,L, + 121238664750,1.098726868629456,L, + 123163088000,1.076158642768860,L, + 125087511250,1.049162745475769,L, + 127011934500,1.018303871154785,L, + 128936357750,0.984335005283356,L, + 130860781000,0.948180079460144,L, + 132785204250,0.910895943641663,L, + 134709627500,0.873611688613892,L, + 136634050750,0.837456762790680,L, + 138558474000,0.803487777709961,L, + 140482897250,0.772629022598267,L, + 142407320500,0.745633006095886,L, + 144331743750,0.723064899444580,L, + 146256167000,0.705307722091675,L, + 148180590250,0.692581534385681,L, + 150105013500,0.684970676898956,L, + 152029436750,0.682452738285065,L, + 153953860000,0.687106192111969,L, + 155878283250,0.701173424720764,L, + 157802706500,0.724580466747284,L, + 159727129750,0.756839931011200,L, + 161651553000,0.796933591365814,L, + 163575976250,0.843241155147552,L, + 165500399500,0.893564045429230,L, + 167424822750,0.945277869701385,L, + 169349246000,0.995600640773773,L, + 171273669250,1.041908264160156,L, + 173198092500,1.082001924514771,L, + 175122515750,1.114261388778687,L, + 177046939000,1.137668609619141,L, + 178971362250,1.151735782623291,L, + 180895785500,1.156389236450195,L, + 182820208750,1.155352354049683,L, + 184744632000,1.152211546897888,L, + 186669055250,1.146934509277344,L, + 188593478500,1.139508605003357,L, + 190517901750,1.129947304725647,L, + 192442325000,1.118294954299927,L, + 194366748250,1.104632616043091,L, + 196291171500,1.089082360267639,L, + 198215594750,1.071810483932495,L, + 200140018000,1.053028464317322,L, + 202064441250,1.032991051673889,L, + 203988864500,1.011990785598755,L, + 205913287750,0.990349471569061,L, + 207837711000,0.968406736850739,L, + 209762134250,0.946506738662720,L, + 211686557500,0.924985170364380,L, + 213610980750,0.904156923294067,L, + 215535404000,0.884305536746979,L, + 217459827250,0.865676999092102,L, + 219384250500,0.848475337028503,L, + 221308673750,0.832862257957458,L, + 223233097000,0.818958580493927,L, + 225157520250,0.806848406791687,L, + 227081943500,0.796581983566284,L, + 229006366750,0.788182795047760,L, + 230930790000,0.781650543212891,L, + 232855213250,0.776405513286591,L, + 234779636500,0.771885454654694,L, + 236704059750,0.768094182014465,L, + 238628483000,0.765022277832031,L, + 240552906250,0.762643277645111,L, + 242477329500,0.760910332202911,L, + 244401752750,0.759753465652466,L, + 246326176000,0.759078204631805,L, + 248250599250,0.758767187595367,L, + 250175022500,0.758683443069458,L, + 252099445750,0.758677005767822,L, + 254023869000,0.758593261241913,L, + 255948292250,0.758282184600830,L, + 257872715500,0.757606983184814,L, + 259797138750,0.756450057029724,L, + 261721562000,0.754717111587524,L, + 263645985250,0.752338171005249,L, + 265570408500,0.749266266822815,L, + 267494831750,0.745474934577942,L, + 269419255000,0.740954875946045,L, + 271343678250,0.735709846019745,L, + 273268101500,0.728996396064758,L, + 275192524750,0.720055341720581,L, + 277116948000,0.708911359310150,L, + 279041371250,0.695649266242981,L, + 280965794500,0.680429279804230,L, + 282890217750,0.663499116897583,L, + 284814641000,0.645200908184052,L, + 286739064250,0.625967800617218,L, + 288663487500,0.606308519840240,L, + 290587910750,0.586778163909912,L, + 292512334000,0.567939996719360,L, + 294436757250,0.550325572490692,L, + 296361180500,0.534398972988129,L, + 298285603750,0.520533025264740,L, + 300210027000,0.508999586105347,L, + 302134450250,0.499972045421600,L, + 304058873500,0.493536531925201,L, + 305983296750,0.489708125591278,L, + 307907720000,0.488447636365891,L, + 309832143250,0.492785781621933,L, + 311756566500,0.505901575088501,L, + 313680989750,0.527786076068878,L, + 315605413000,0.558151781558990,L, + 317529836250,0.596352815628052,L, + 319454259500,0.641321837902069,L, + 321378682750,0.691547691822052,L, + 323303106000,0.745118141174316,L, + 325227529250,0.799837589263916,L, + 327151952500,0.853408038616180,L, + 329076375750,0.903633952140808,L, + 331000799000,0.948602914810181,L, + 332925222250,0.986804127693176,L, + 334849645500,1.017169833183289,L, + 336774068750,1.039054274559021,L, + 338698492000,1.052170038223267,L, + 340622915250,1.056508183479309,L, + 344471761750,1.056508183479309,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_027" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.004634439945221 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.004634439945221,L, + 1924423250,0.004905402660370,L, + 3848846500,0.005729734897614,L, + 5773269750,0.007117748260498,L, + 7697693000,0.009068131446838,L, + 9622116250,0.011565148830414,L, + 11546539500,0.014574170112610,L, + 13470962750,0.018040239810944,L, + 15395386000,0.021886289119720,L, + 17319809250,0.026015520095825,L, + 19244232500,0.030316531658173,L, + 21168655750,0.034669578075409,L, + 23093079000,0.038957476615906,L, + 25017502250,0.043070793151855,L, + 26941925500,0.046915829181671,L, + 28866348750,0.050418913364410,L, + 30790772000,0.053524851799011,L, + 32715195250,0.056197643280029,L, + 34639618500,0.058417022228241,L, + 36564041750,0.060176253318787,L, + 38488465000,0.061686515808105,L, + 40412888250,0.063158571720123,L, + 42337311500,0.064589679241180,L, + 44261734750,0.065978527069092,L, + 46186158000,0.067322850227356,L, + 48110581250,0.068620741367340,L, + 50035004500,0.069870054721832,L, + 51959427750,0.071068704128265,L, + 53883851000,0.072215497493744,L, + 55808274250,0.073308169841766,L, + 57732697500,0.074345529079437,L, + 59657120750,0.075326323509216,L, + 61581544000,0.076249003410339,L, + 63505967250,0.077113091945648,L, + 65430390500,0.077918350696564,L, + 67354813750,0.078664541244507,L, + 69279237000,0.079351544380188,L, + 71203660250,0.079980671405792,L, + 73128083500,0.080552935600281,L, + 75052506750,0.081069588661194,L, + 76976930000,0.081533014774323,L, + 78901353250,0.081944882869720,L, + 80825776500,0.082308173179626,L, + 82750199750,0.082625806331635,L, + 84674623000,0.082900822162628,L, + 86599046250,0.083136022090912,L, + 88523469500,0.083335280418396,L, + 90447892750,0.083501756191254,L, + 92372316000,0.083638787269592,L, + 94296739250,0.083749830722809,L, + 96221162500,0.083837926387787,L, + 98145585750,0.083906233310699,L, + 100070009000,0.083957970142365,L, + 101994432250,0.083995163440704,L, + 103918855500,0.084021151065826,L, + 105843278750,0.084037780761719,L, + 107767702000,0.084047734737396,L, + 109692125250,0.084052741527557,L, + 111616548500,0.084054410457611,L, + 138558474000,0.084054410457611,L, + 140482897250,0.084054648876190,L, + 142407320500,0.084131300449371,L, + 144331743750,0.084363639354706,L, + 146256167000,0.084748029708862,L, + 148180590250,0.085271835327148,L, + 150105013500,0.085909247398376,L, + 152029436750,0.086621761322021,L, + 153953860000,0.087360739707947,L, + 155878283250,0.088073492050171,L, + 157802706500,0.088710904121399,L, + 159727129750,0.089234709739685,L, + 161651553000,0.089619100093842,L, + 163575976250,0.089851260185242,L, + 165500399500,0.089928328990936,L, + 167424822750,0.089921832084656,L, + 169349246000,0.089902877807617,L, + 171273669250,0.089870750904083,L, + 173198092500,0.089825510978699,L, + 175122515750,0.089767456054688,L, + 177046939000,0.089696347713470,L, + 178971362250,0.089612185955048,L, + 180895785500,0.089515388011932,L, + 182820208750,0.089406192302704,L, + 184744632000,0.089284539222717,L, + 186669055250,0.089151024818420,L, + 188593478500,0.089006304740906,L, + 190517901750,0.088850498199463,L, + 192442325000,0.088684558868408,L, + 194366748250,0.088509380817413,L, + 196291171500,0.088325500488281,L, + 198215594750,0.088133931159973,L, + 200140018000,0.087935388088226,L, + 202064441250,0.087731778621674,L, + 203988864500,0.087523519992828,L, + 205913287750,0.087311804294586,L, + 207837711000,0.087098360061646,L, + 209762134250,0.086884379386902,L, + 211686557500,0.086670935153961,L, + 213610980750,0.086459457874298,L, + 215535404000,0.086251199245453,L, + 217459827250,0.086047112941742,L, + 219384250500,0.085848867893219,L, + 221308673750,0.085657298564911,L, + 223233097000,0.085473358631134,L, + 225157520250,0.085297942161560,L, + 227081943500,0.085132062435150,L, + 229006366750,0.084976494312286,L, + 230930790000,0.084831476211548,L, + 232855213250,0.084698200225830,L, + 234779636500,0.084576606750488,L, + 236704059750,0.084467291831970,L, + 238628483000,0.084370553493500,L, + 240552906250,0.084286451339722,L, + 242477329500,0.084215581417084,L, + 244401752750,0.084157288074493,L, + 246326176000,0.084112286567688,L, + 248250599250,0.084080159664154,L, + 250175022500,0.084060907363892,L, + 252099445750,0.084054648876190,L, + 282890217750,0.084054648876190,L, + 284814641000,0.083739697933197,L, + 286739064250,0.082789301872253,L, + 288663487500,0.081197559833527,L, + 290587910750,0.078967750072479,L, + 292512334000,0.076111614704132,L, + 294436757250,0.072652757167816,L, + 296361180500,0.068627655506134,L, + 298285603750,0.064087212085724,L, + 300210027000,0.059097349643707,L, + 302134450250,0.053739428520203,L, + 304058873500,0.048107028007507,L, + 305983296750,0.042305469512939,L, + 307907720000,0.036446869373322,L, + 309832143250,0.030645549297333,L, + 311756566500,0.025013148784637,L, + 313680989750,0.019655227661133,L, + 315605413000,0.014665424823761,L, + 317529836250,0.010124981403351,L, + 319454259500,0.006099820137024,L, + 321378682750,0.002640783786774,L, + 323303106000,-0.000215351581573,L, + 325227529250,-0.002445042133331,L, + 327151952500,-0.004036724567413,L, + 329076375750,-0.004987120628357,L, + 331000799000,-0.005302071571350,L, + 344471761750,-0.005302071571350,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.095101296901703 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.095101296901703,L, + 1924423250,0.094581782817841,L, + 3848846500,0.092999279499054,L, + 5773269750,0.090329349040985,L, + 7697693000,0.086568295955658,L, + 9622116250,0.081739902496338,L, + 11546539500,0.075902283191681,L, + 13470962750,0.069153130054474,L, + 15395386000,0.061631798744202,L, + 17319809250,0.053515315055847,L, + 19244232500,0.045010566711426,L, + 21168655750,0.036340892314911,L, + 23093079000,0.027728438377380,L, + 25017502250,0.019380867481232,L, + 26941925500,0.011478066444397,L, + 28866348750,0.004164993762970,L, + 30790772000,-0.002449929714203,L, + 32715195250,-0.008293211460114,L, + 34639618500,-0.013321638107300,L, + 36564041750,-0.017516195774078,L, + 38488465000,-0.021255075931549,L, + 40412888250,-0.024915575981140,L, + 42337311500,-0.028492748737335,L, + 44261734750,-0.031981885433197,L, + 46186158000,-0.035378158092499,L, + 48110581250,-0.038676321506500,L, + 50035004500,-0.041871488094330,L, + 51959427750,-0.044958651065826,L, + 53883851000,-0.047932744026184,L, + 55808274250,-0.050789117813110,L, + 57732697500,-0.053523361682892,L, + 59657120750,-0.056131422519684,L, + 61581544000,-0.058609366416931,L, + 63505967250,-0.060954272747040,L, + 65430390500,-0.063163816928864,L, + 67354813750,-0.065236270427704,L, + 69279237000,-0.067170619964600,L, + 71203660250,-0.068967223167419,L, + 73128083500,-0.070626795291901,L, + 75052506750,-0.072151362895966,L, + 76976930000,-0.073543787002563,L, + 78901353250,-0.074807405471802,L, + 80825776500,-0.075947463512421,L, + 82750199750,-0.076968789100647,L, + 84674623000,-0.077877402305603,L, + 86599046250,-0.078679621219635,L, + 88523469500,-0.079382121562958,L, + 90447892750,-0.079992234706879,L, + 92372316000,-0.080516993999481,L, + 94296739250,-0.080963134765625,L, + 96221162500,-0.081338286399841,L, + 98145585750,-0.081649124622345,L, + 100070009000,-0.081902325153351,L, + 101994432250,-0.082104146480560,L, + 103918855500,-0.082261025905609,L, + 105843278750,-0.082378268241882,L, + 107767702000,-0.082461476325989,L, + 109692125250,-0.082515537738800,L, + 111616548500,-0.082544922828674,L, + 113540971750,-0.082553744316101,L, + 140482897250,-0.082553744316101,L, + 142407320500,-0.082717061042786,L, + 144331743750,-0.083210945129395,L, + 146256167000,-0.084028542041779,L, + 148180590250,-0.085142076015472,L, + 150105013500,-0.086497485637665,L, + 152029436750,-0.088012516498566,L, + 153953860000,-0.089583694934845,L, + 155878283250,-0.091099023818970,L, + 157802706500,-0.092454373836517,L, + 159727129750,-0.093567967414856,L, + 161651553000,-0.094385266304016,L, + 163575976250,-0.094879090785980,L, + 165500399500,-0.095042467117310,L, + 167424822750,-0.095028996467590,L, + 169349246000,-0.094988346099854,L, + 171273669250,-0.094919979572296,L, + 173198092500,-0.094824075698853,L, + 175122515750,-0.094700515270233,L, + 177046939000,-0.094549238681793,L, + 178971362250,-0.094370722770691,L, + 180895785500,-0.094164729118347,L, + 182820208750,-0.093932271003723,L, + 184744632000,-0.093674004077911,L, + 186669055250,-0.093390226364136,L, + 188593478500,-0.093082308769226,L, + 190517901750,-0.092751383781433,L, + 192442325000,-0.092398703098297,L, + 194366748250,-0.092025756835938,L, + 196291171500,-0.091634631156921,L, + 198215594750,-0.091227233409882,L, + 200140018000,-0.090805530548096,L, + 202064441250,-0.090372025966644,L, + 203988864500,-0.089929163455963,L, + 205913287750,-0.089479386806488,L, + 207837711000,-0.089025735855103,L, + 209762134250,-0.088570535182953,L, + 211686557500,-0.088116824626923,L, + 213610980750,-0.087667047977448,L, + 215535404000,-0.087224185466766,L, + 217459827250,-0.086790740489960,L, + 219384250500,-0.086368918418884,L, + 221308673750,-0.085961520671844,L, + 223233097000,-0.085570454597473,L, + 225157520250,-0.085197508335114,L, + 227081943500,-0.084844827651978,L, + 229006366750,-0.084513843059540,L, + 230930790000,-0.084206044673920,L, + 232855213250,-0.083922445774078,L, + 234779636500,-0.083663880825043,L, + 236704059750,-0.083431482315063,L, + 238628483000,-0.083225488662720,L, + 240552906250,-0.083046972751617,L, + 242477329500,-0.082895874977112,L, + 244401752750,-0.082772374153137,L, + 246326176000,-0.082676410675049,L, + 248250599250,-0.082608044147491,L, + 250175022500,-0.082567453384399,L, + 252099445750,-0.082553744316101,L, + 282890217750,-0.082553744316101,L, + 284814641000,-0.081858813762665,L, + 286739064250,-0.079759597778320,L, + 288663487500,-0.076245307922363,L, + 290587910750,-0.071321249008179,L, + 292512334000,-0.065014362335205,L, + 294436757250,-0.057376563549042,L, + 296361180500,-0.048488199710846,L, + 298285603750,-0.038461983203888,L, + 300210027000,-0.027443647384644,L, + 302134450250,-0.015611767768860,L, + 304058873500,-0.003174543380737,L, + 305983296750,0.009636104106903,L, + 307907720000,0.022573113441467,L, + 309832143250,0.035383760929108,L, + 311756566500,0.047820925712585,L, + 313680989750,0.059652745723724,L, + 315605413000,0.070671141147614,L, + 317529836250,0.080697357654572,L, + 319454259500,0.089585721492767,L, + 321378682750,0.097223699092865,L, + 323303106000,0.103530585765839,L, + 325227529250,0.108454287052155,L, + 327151952500,0.111968815326691,L, + 329076375750,0.114067912101746,L, + 331000799000,0.114762842655182,L, + 344471761750,0.114762842655182,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.105131626129150 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.105131626129150,L, + 1924423250,0.105484127998352,L, + 3848846500,0.106549739837646,L, + 5773269750,0.108330845832825,L, + 7697693000,0.110812306404114,L, + 9622116250,0.113957524299622,L, + 11546539500,0.117704033851624,L, + 13470962750,0.121960520744324,L, + 15395386000,0.126606941223145,L, + 17319809250,0.131498694419861,L, + 19244232500,0.136474251747131,L, + 21168655750,0.141366124153137,L, + 23093079000,0.146012544631958,L, + 25017502250,0.150268912315369,L, + 26941925500,0.154015421867371,L, + 28866348750,0.157160758972168,L, + 30790772000,0.159642100334167,L, + 32715195250,0.161423206329346,L, + 34639618500,0.162488937377930,L, + 36564041750,0.162841320037842,L, + 38488465000,0.162281870841980,L, + 40412888250,0.160591602325439,L, + 42337311500,0.157762885093689,L, + 44261734750,0.153807520866394,L, + 46186158000,0.148760437965393,L, + 48110581250,0.142684936523438,L, + 50035004500,0.135676383972168,L, + 51959427750,0.127864480018616,L, + 53883851000,0.119413256645203,L, + 55808274250,0.110516548156738,L, + 57732697500,0.101390838623047,L, + 59657120750,0.092265248298645,L, + 61581544000,0.083368301391602,L, + 63505967250,0.074917078018188,L, + 65430390500,0.067105412483215,L, + 67354813750,0.060096740722656,L, + 69279237000,0.054021120071411,L, + 71203660250,0.048974156379700,L, + 73128083500,0.045018792152405,L, + 75052506750,0.042190194129944,L, + 76976930000,0.040499687194824,L, + 78901353250,0.039940357208252,L, + 80825776500,0.039941668510437,L, + 82750199750,0.039951801300049,L, + 84674623000,0.039981484413147,L, + 86599046250,0.040043950080872,L, + 88523469500,0.040154218673706,L, + 90447892750,0.040329694747925,L, + 92372316000,0.040588378906250,L, + 94296739250,0.040948629379272,L, + 96221162500,0.041426777839661,L, + 98145585750,0.042036175727844,L, + 100070009000,0.042786240577698,L, + 101994432250,0.043680787086487,L, + 103918855500,0.044719815254211,L, + 105843278750,0.045898437500000,L, + 107767702000,0.047209024429321,L, + 109692125250,0.048642039299011,L, + 111616548500,0.050186634063721,L, + 113540971750,0.051832079887390,L, + 115465395000,0.054098486900330,L, + 117389818250,0.057515859603882,L, + 119314241500,0.062049269676208,L, + 121238664750,0.067598223686218,L, + 123163088000,0.073979616165161,L, + 125087511250,0.080922842025757,L, + 127011934500,0.088082671165466,L, + 128936357750,0.095073938369751,L, + 130860781000,0.101520299911499,L, + 132785204250,0.107101678848267,L, + 134709627500,0.111582994461060,L, + 136634050750,0.114822149276733,L, + 138558474000,0.116759061813354,L, + 140482897250,0.117396354675293,L, + 142407320500,0.117056250572205,L, + 144331743750,0.116026282310486,L, + 146256167000,0.114315152168274,L, + 148180590250,0.111974120140076,L, + 150105013500,0.109108567237854,L, + 152029436750,0.105881810188293,L, + 153953860000,0.102502584457397,L, + 155878283250,0.099199295043945,L, + 157802706500,0.096185326576233,L, + 159727129750,0.093631625175476,L, + 161651553000,0.091653823852539,L, + 163575976250,0.090313076972961,L, + 165500399500,0.089627504348755,L, + 167424822750,0.089275002479553,L, + 169349246000,0.088937997817993,L, + 171273669250,0.088618040084839,L, + 173198092500,0.088316321372986,L, + 175122515750,0.088034152984619,L, + 177046939000,0.087772607803345,L, + 178971362250,0.087532877922058,L, + 180895785500,0.087315678596497,L, + 182820208750,0.087121486663818,L, + 184744632000,0.086950540542603,L, + 186669055250,0.086802363395691,L, + 188593478500,0.086676359176636,L, + 190517901750,0.086571335792542,L, + 192442325000,0.086485743522644,L, + 194366748250,0.086417794227600,L, + 196291171500,0.086365222930908,L, + 198215594750,0.086325883865356,L, + 200140018000,0.086297750473022,L, + 202064441250,0.086278557777405,L, + 203988864500,0.086266398429871,L, + 205913287750,0.086259484291077,L, + 207837711000,0.086256146430969,L, + 209762134250,0.086254954338074,L, + 211686557500,0.086254715919495,L, + 213610980750,0.086338639259338,L, + 215535404000,0.086592197418213,L, + 217459827250,0.087016463279724,L, + 219384250500,0.087608933448792,L, + 221308673750,0.088363647460938,L, + 223233097000,0.089269638061523,L, + 225157520250,0.090310454368591,L, + 227081943500,0.091463923454285,L, + 229006366750,0.092702627182007,L, + 230930790000,0.093994617462158,L, + 232855213250,0.095304727554321,L, + 234779636500,0.096596598625183,L, + 236704059750,0.097835421562195,L, + 238628483000,0.098988890647888,L, + 240552906250,0.100029706954956,L, + 242477329500,0.100935697555542,L, + 244401752750,0.101690411567688,L, + 246326176000,0.102283000946045,L, + 248250599250,0.102707147598267,L, + 250175022500,0.102960705757141,L, + 252099445750,0.103044629096985,L, + 254023869000,0.102549791336060,L, + 255948292250,0.101054072380066,L, + 257872715500,0.098561167716980,L, + 259797138750,0.095112323760986,L, + 261721562000,0.090796709060669,L, + 263645985250,0.085758447647095,L, + 265570408500,0.080198287963867,L, + 267494831750,0.074363708496094,L, + 269419255000,0.068529248237610,L, + 271343678250,0.062969207763672,L, + 273268101500,0.057930946350098,L, + 275192524750,0.053615212440491,L, + 277116948000,0.050166368484497,L, + 279041371250,0.047673583030701,L, + 280965794500,0.046177744865417,L, + 282890217750,0.045682907104492,L, + 284814641000,0.045799374580383,L, + 286739064250,0.046151041984558,L, + 288663487500,0.046739578247070,L, + 290587910750,0.047564268112183,L, + 292512334000,0.048620700836182,L, + 294436757250,0.049899935722351,L, + 296361180500,0.051388621330261,L, + 298285603750,0.053068041801453,L, + 300210027000,0.054913401603699,L, + 302134450250,0.056895256042480,L, + 304058873500,0.058978319168091,L, + 305983296750,0.061124086380005,L, + 307907720000,0.063290953636169,L, + 309832143250,0.065436601638794,L, + 311756566500,0.067519783973694,L, + 313680989750,0.069501519203186,L, + 315605413000,0.071346998214722,L, + 317529836250,0.073026299476624,L, + 319454259500,0.074514985084534,L, + 321378682750,0.075794339179993,L, + 323303106000,0.076850652694702,L, + 325227529250,0.077675342559814,L, + 327151952500,0.078263998031616,L, + 329076375750,0.078615665435791,L, + 331000799000,0.078732013702393,L, + 344471761750,0.078732013702393,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -4.750565614919000 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-4.750565614919000,L, + 1924423250,-4.750566468692647,L, + 3848846500,-4.750566468692647,L, + 5773269750,-4.750566895579470,L, + 11546539500,-4.750565614919000,L, + 13470962750,-4.750566041805824,L, + 15395386000,-4.750565614919000,L, + 19244232500,-4.750566468692647,L, + 21168655750,-4.750566041805824,L, + 23093079000,-4.750565188032177,L, + 25017502250,-4.750566468692647,L, + 26941925500,-4.750565614919000,L, + 28866348750,-4.750565614919000,L, + 30790772000,-4.750566041805824,L, + 32715195250,-4.750565614919000,L, + 34639618500,-4.750566468692647,L, + 36564041750,-4.750565614919000,L, + 38488465000,-4.750566041805824,L, + 40412888250,-4.750566041805824,L, + 42337311500,-4.750566468692647,L, + 44261734750,-4.750566041805824,L, + 46186158000,-4.750566041805824,L, + 50035004500,-4.750565188032177,L, + 51959427750,-4.750565614919000,L, + 55808274250,-4.750565614919000,L, + 57732697500,-4.750566468692647,L, + 59657120750,-4.750566468692647,L, + 61581544000,-4.750565614919000,L, + 63505967250,-4.750566041805824,L, + 65430390500,-4.750565188032177,L, + 67354813750,-4.750565614919000,L, + 71203660250,-4.750565614919000,L, + 75052506750,-4.750566468692647,L, + 78901353250,-4.750565614919000,L, + 80825776500,-4.750566041805824,L, + 88523469500,-4.750566041805824,L, + 90447892750,-4.750566468692647,L, + 92372316000,-4.750565614919000,L, + 94296739250,-4.750565614919000,L, + 96221162500,-4.750566041805824,L, + 98145585750,-4.750565188032177,L, + 100070009000,-4.750565188032177,L, + 101994432250,-4.750565614919000,L, + 103918855500,-4.750565188032177,L, + 105843278750,-4.750565188032177,L, + 109692125250,-4.750566041805824,L, + 111616548500,-4.750565614919000,L, + 113540971750,-4.750566041805824,L, + 115465395000,-4.750566041805824,L, + 117389818250,-4.750565614919000,L, + 119314241500,-4.750565614919000,L, + 121238664750,-4.750566468692647,L, + 123163088000,-4.750566041805824,L, + 125087511250,-4.750566041805824,L, + 127011934500,-4.750565614919000,L, + 128936357750,-4.750565614919000,L, + 130860781000,-4.750566468692647,L, + 132785204250,-4.750566041805824,L, + 136634050750,-4.750566041805824,L, + 138558474000,-4.750566468692647,L, + 140482897250,-4.750567322466293,L, + 144331743750,-4.750567322466293,L, + 146256167000,-4.750566895579470,L, + 148180590250,-4.750567749353116,L, + 150105013500,-4.750567322466293,L, + 152029436750,-4.750568176239939,L, + 153953860000,-4.750567749353116,L, + 155878283250,-4.750566895579470,L, + 157802706500,-4.750567322466293,L, + 159727129750,-4.750567322466293,L, + 161651553000,-4.750566895579470,L, + 163575976250,-4.750567749353116,L, + 167424822750,-4.750566895579470,L, + 171273669250,-4.750566895579470,L, + 173198092500,-4.750567749353116,L, + 175122515750,-4.750567322466293,L, + 177046939000,-4.750567322466293,L, + 178971362250,-4.750566041805824,L, + 182820208750,-4.750567749353116,L, + 186669055250,-4.750566895579470,L, + 188593478500,-4.750567322466293,L, + 190517901750,-4.750566895579470,L, + 192442325000,-4.750567749353116,L, + 194366748250,-4.750566468692647,L, + 196291171500,-4.750567322466293,L, + 198215594750,-4.750566895579470,L, + 200140018000,-4.750567322466293,L, + 202064441250,-4.750567322466293,L, + 203988864500,-4.750567749353116,L, + 205913287750,-4.750567322466293,L, + 207837711000,-4.750567749353116,L, + 209762134250,-4.750567322466293,L, + 215535404000,-4.750567322466293,L, + 217459827250,-4.750566895579470,L, + 219384250500,-4.750567322466293,L, + 221308673750,-4.750566895579470,L, + 223233097000,-4.750567322466293,L, + 225157520250,-4.750566895579470,L, + 227081943500,-4.750566895579470,L, + 229006366750,-4.750567322466293,L, + 230930790000,-4.750566895579470,L, + 232855213250,-4.750567322466293,L, + 234779636500,-4.750566895579470,L, + 236704059750,-4.750567749353116,L, + 240552906250,-4.750566895579470,L, + 246326176000,-4.750566895579470,L, + 250175022500,-4.750567749353116,L, + 252099445750,-4.750567322466293,L, + 257872715500,-4.750567322466293,L, + 259797138750,-4.750566895579470,L, + 261721562000,-4.750567749353116,L, + 263645985250,-4.750566468692647,L, + 265570408500,-4.750567749353116,L, + 269419255000,-4.750566895579470,L, + 271343678250,-4.750567322466293,L, + 273268101500,-4.750567322466293,L, + 275192524750,-4.750566468692647,L, + 277116948000,-4.750566041805824,L, + 279041371250,-4.750566468692647,L, + 280965794500,-4.750567749353116,L, + 282890217750,-4.750567322466293,L, + 284814641000,-4.750567749353116,L, + 286739064250,-4.750567322466293,L, + 288663487500,-4.750568176239939,L, + 290587910750,-4.750567322466293,L, + 292512334000,-4.750566895579470,L, + 294436757250,-4.750567322466293,L, + 296361180500,-4.750566468692647,L, + 298285603750,-4.750566468692647,L, + 300210027000,-4.750567749353116,L, + 305983296750,-4.750566468692647,L, + 307907720000,-4.750567322466293,L, + 309832143250,-4.750567749353116,L, + 311756566500,-4.750567749353116,L, + 315605413000,-4.750566895579470,L, + 317529836250,-4.750567322466293,L, + 319454259500,-4.750567322466293,L, + 321378682750,-4.750567749353116,L, + 323303106000,-4.750567322466293,L, + 325227529250,-4.750567322466293,L, + 327151952500,-4.750567749353116,L, + 329076375750,-4.750567322466293,L, + 331000799000,-4.750567749353116,L, + 344471761750,-4.750567749353116,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -1.754853289413880 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-1.754853289413880,L, + 1924423250,-1.754853289413880,L, + 3848846500,-1.754852969248763,L, + 5773269750,-1.754853396135586,L, + 7697693000,-1.754853289413880,L, + 9622116250,-1.754853075970469,L, + 11546539500,-1.754853075970469,L, + 13470962750,-1.754853289413880,L, + 15395386000,-1.754853289413880,L, + 17319809250,-1.754853182692175,L, + 21168655750,-1.754853182692175,L, + 23093079000,-1.754853075970469,L, + 26941925500,-1.754853075970469,L, + 30790772000,-1.754853289413880,L, + 32715195250,-1.754852969248763,L, + 34639618500,-1.754853502857292,L, + 36564041750,-1.754853182692175,L, + 38488465000,-1.754853182692175,L, + 40412888250,-1.754853396135586,L, + 42337311500,-1.754853396135586,L, + 44261734750,-1.754853182692175,L, + 48110581250,-1.754853182692175,L, + 50035004500,-1.754853289413880,L, + 53883851000,-1.754853075970469,L, + 55808274250,-1.754853182692175,L, + 57732697500,-1.754853182692175,L, + 59657120750,-1.754853289413880,L, + 65430390500,-1.754852969248763,L, + 67354813750,-1.754853075970469,L, + 69279237000,-1.754853396135586,L, + 71203660250,-1.754853182692175,L, + 73128083500,-1.754853182692175,L, + 75052506750,-1.754853289413880,L, + 76976930000,-1.754853075970469,L, + 78901353250,-1.754853075970469,L, + 80825776500,-1.754853289413880,L, + 82750199750,-1.754853289413880,L, + 84674623000,-1.754853182692175,L, + 86599046250,-1.754853182692175,L, + 88523469500,-1.754853075970469,L, + 90447892750,-1.754853182692175,L, + 92372316000,-1.754853182692175,L, + 94296739250,-1.754853075970469,L, + 96221162500,-1.754853289413880,L, + 98145585750,-1.754853289413880,L, + 100070009000,-1.754852969248763,L, + 101994432250,-1.754853182692175,L, + 105843278750,-1.754853182692175,L, + 107767702000,-1.754853075970469,L, + 111616548500,-1.754853075970469,L, + 113540971750,-1.754853182692175,L, + 115465395000,-1.754853075970469,L, + 117389818250,-1.754853289413880,L, + 119314241500,-1.754853182692175,L, + 121238664750,-1.754853289413880,L, + 123163088000,-1.754853075970469,L, + 125087511250,-1.754853289413880,L, + 127011934500,-1.754853182692175,L, + 130860781000,-1.754853182692175,L, + 132785204250,-1.754852969248763,L, + 134709627500,-1.754853289413880,L, + 136634050750,-1.754853182692175,L, + 138558474000,-1.754853396135586,L, + 140482897250,-1.754853716300704,L, + 142407320500,-1.754853929744115,L, + 144331743750,-1.754854036465821,L, + 150105013500,-1.754853716300704,L, + 153953860000,-1.754853929744115,L, + 155878283250,-1.754853823022409,L, + 159727129750,-1.754854036465821,L, + 161651553000,-1.754853929744115,L, + 163575976250,-1.754853929744115,L, + 165500399500,-1.754854036465821,L, + 167424822750,-1.754853929744115,L, + 171273669250,-1.754853929744115,L, + 173198092500,-1.754853823022409,L, + 175122515750,-1.754853823022409,L, + 177046939000,-1.754853929744115,L, + 178971362250,-1.754853823022409,L, + 180895785500,-1.754854036465821,L, + 182820208750,-1.754854036465821,L, + 184744632000,-1.754853823022409,L, + 186669055250,-1.754853929744115,L, + 188593478500,-1.754853929744115,L, + 192442325000,-1.754854143187527,L, + 196291171500,-1.754853716300704,L, + 198215594750,-1.754853929744115,L, + 202064441250,-1.754853716300704,L, + 203988864500,-1.754854143187527,L, + 205913287750,-1.754854036465821,L, + 207837711000,-1.754853823022409,L, + 209762134250,-1.754853716300704,L, + 211686557500,-1.754853823022409,L, + 213610980750,-1.754854036465821,L, + 215535404000,-1.754853929744115,L, + 217459827250,-1.754853929744115,L, + 219384250500,-1.754854036465821,L, + 221308673750,-1.754853929744115,L, + 225157520250,-1.754853929744115,L, + 227081943500,-1.754853716300704,L, + 229006366750,-1.754853929744115,L, + 234779636500,-1.754853929744115,L, + 236704059750,-1.754854036465821,L, + 238628483000,-1.754853823022409,L, + 240552906250,-1.754853929744115,L, + 242477329500,-1.754853716300704,L, + 244401752750,-1.754853823022409,L, + 246326176000,-1.754853716300704,L, + 250175022500,-1.754853929744115,L, + 254023869000,-1.754853716300704,L, + 255948292250,-1.754853823022409,L, + 257872715500,-1.754853716300704,L, + 259797138750,-1.754853716300704,L, + 261721562000,-1.754853823022409,L, + 263645985250,-1.754853823022409,L, + 265570408500,-1.754854036465821,L, + 267494831750,-1.754853929744115,L, + 269419255000,-1.754854036465821,L, + 271343678250,-1.754853823022409,L, + 273268101500,-1.754853716300704,L, + 275192524750,-1.754853929744115,L, + 277116948000,-1.754854036465821,L, + 279041371250,-1.754853823022409,L, + 280965794500,-1.754853823022409,L, + 282890217750,-1.754853929744115,L, + 286739064250,-1.754853929744115,L, + 288663487500,-1.754853716300704,L, + 290587910750,-1.754854143187527,L, + 292512334000,-1.754853929744115,L, + 304058873500,-1.754853929744115,L, + 307907720000,-1.754854143187527,L, + 309832143250,-1.754853929744115,L, + 311756566500,-1.754853929744115,L, + 313680989750,-1.754854143187527,L, + 315605413000,-1.754854143187527,L, + 317529836250,-1.754854036465821,L, + 319454259500,-1.754854143187527,L, + 321378682750,-1.754853929744115,L, + 323303106000,-1.754854143187527,L, + 325227529250,-1.754853716300704,L, + 327151952500,-1.754854036465821,L, + 329076375750,-1.754854143187527,L, + 331000799000,-1.754853823022409,L, + 344471761750,-1.754853823022409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 73.496933582733604 + KeyVer: 4005 + KeyCount: 118 + Key: + 0,73.496933582733604,L, + 1924423250,73.283824850440340,L, + 3848846500,72.639574087168981,L, + 5773269750,71.562904047544748,L, + 7697693000,70.062775939758666,L, + 9622116250,68.161360557856568,L, + 11546539500,65.896462998894421,L, + 13470962750,63.323325832879213,L, + 15395386000,60.514424197093845,L, + 17319809250,57.557177682725182,L, + 19244232500,54.549268240188020,L, + 21168655750,51.592025140913947,L, + 23093079000,48.783116674939407,L, + 25017502250,46.209989754207960,L, + 26941925500,43.945099025434985,L, + 28866348750,42.043669983154544,L, + 30790772000,40.543538460273872,L, + 32715195250,39.466875250838804,L, + 34639618500,38.822627902662028,L, + 36564041750,38.609512340179599,L, + 38488465000,38.609522585463353,L, + 40412888250,38.609570396787547,L, + 42337311500,38.609696755287189,L, + 44261734750,38.609963132664816,L, + 46186158000,38.610424170433795,L, + 48110581250,38.611131095012887,L, + 50035004500,38.612145378104636,L, + 51959427750,38.613548981979072,L, + 53883851000,38.615403378338726,L, + 55808274250,38.617800774737397,L, + 57732697500,38.620819718350539,L, + 59657120750,38.624552416731945,L, + 61581544000,38.629077417057069,L, + 63505967250,38.634490341974299,L, + 65430390500,38.640886814132010,L, + 67354813750,38.648365871273157,L, + 69279237000,38.656999230384045,L, + 71203660250,38.666875683923870,L, + 73128083500,38.678087439446429,L, + 75052506750,38.690675478086746,L, + 76976930000,38.704732007398611,L, + 78901353250,38.720287763233294,L, + 80825776500,38.737393972009563,L, + 82750199750,38.756081369578695,L, + 84674623000,38.776370446508189,L, + 86599046250,38.798264617892627,L, + 88523469500,38.821763883732025,L, + 90447892750,38.846861413837203,L, + 92372316000,38.873523057262304,L, + 94296739250,38.901731738534423,L, + 96221162500,38.931443061423934,L, + 98145585750,38.962622874984994,L, + 100070009000,38.995230198082588,L, + 101994432250,39.029193313730431,L, + 103918855500,39.064481486077248,L, + 105843278750,39.101036658515106,L, + 107767702000,39.138804189530639,L, + 109692125250,39.177726022515898,L, + 111616548500,39.217750931052116,L, + 113540971750,39.258827688720515,L, + 115465395000,39.526079330564386,L, + 117389818250,40.249478325937737,L, + 119314241500,41.422573561169500,L, + 121238664750,43.014840920858923,L, + 123163088000,44.965010193056500,L, + 125087511250,47.178138333204608,L, + 127011934500,49.529519747437327,L, + 128936357750,51.876727916087177,L, + 130860781000,54.077664168566834,L, + 132785204250,56.008172741238553,L, + 134709627500,57.574205344325996,L, + 136634050750,58.715509464065981,L, + 138558474000,59.402524041730729,L, + 140482897250,59.629757605227553,L, + 144331743750,59.629757605227553,L, + 146256167000,59.629764435416725,L, + 148180590250,59.629757605227553,L, + 153953860000,59.629757605227553,L, + 155878283250,59.629750775038382,L, + 157802706500,59.629757605227553,L, + 207837711000,59.629757605227553,L, + 209762134250,59.629764435416725,L, + 211686557500,59.629757605227553,L, + 240552906250,59.629757605227553,L, + 242477329500,59.629750775038382,L, + 244401752750,59.629757605227553,L, + 246326176000,59.629750775038382,L, + 248250599250,59.629757605227553,L, + 273268101500,59.629757605227553,L, + 275192524750,59.629764435416725,L, + 277116948000,59.629757605227553,L, + 282890217750,59.629757605227553,L, + 284814641000,59.707922290089066,L, + 286739064250,59.944035099506898,L, + 288663487500,60.339339127909987,L, + 290587910750,60.893178677138017,L, + 292512334000,61.602562124334519,L, + 294436757250,62.461656487948318,L, + 296361180500,63.461418597518332,L, + 298285603750,64.589164791755863,L, + 300210027000,65.828495786463719,L, + 302134450250,67.159337655671280,L, + 304058873500,68.558262850525438,L, + 305983296750,69.999186878585931,L, + 307907720000,71.454331360498372,L, + 309832143250,72.895269048937223,L, + 311756566500,74.294187413602202,L, + 313680989750,75.625036112998927,L, + 315605413000,76.864360277517619,L, + 317529836250,77.992113301944315,L, + 319454259500,78.991861751135986,L, + 321378682750,79.850969775128135,L, + 323303106000,80.560353222324636,L, + 325227529250,81.114179111174323,L, + 327151952500,81.509483139577412,L, + 329076375750,81.745595948995245,L, + 331000799000,81.823767464045929,L, + 344471761750,81.823767464045929,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.674333870410919 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.674333870410919,L, + 1924423250,0.675470530986786,L, + 3848846500,0.678906798362732,L, + 5773269750,0.684649288654327,L, + 7697693000,0.692650377750397,L, + 9622116250,0.702791988849640,L, + 11546539500,0.714872002601624,L, + 13470962750,0.728596031665802,L, + 15395386000,0.743577778339386,L, + 17319809250,0.759350657463074,L, + 19244232500,0.775393664836884,L, + 21168655750,0.791166484355927,L, + 23093079000,0.806148231029510,L, + 25017502250,0.819872319698334,L, + 26941925500,0.831952393054962,L, + 28866348750,0.842093944549561,L, + 30790772000,0.850094974040985,L, + 32715195250,0.855837643146515,L, + 34639618500,0.859273791313171,L, + 36564041750,0.860410392284393,L, + 38488465000,0.859652400016785,L, + 40412888250,0.857359886169434,L, + 42337311500,0.853519678115845,L, + 44261734750,0.848143517971039,L, + 46186158000,0.841273784637451,L, + 48110581250,0.832990765571594,L, + 50035004500,0.823418140411377,L, + 51959427750,0.812725424766541,L, + 53883851000,0.801128268241882,L, + 55808274250,0.788882970809937,L, + 57732697500,0.776278018951416,L, + 59657120750,0.763618648052216,L, + 61581544000,0.751211643218994,L, + 63505967250,0.739348411560059,L, + 65430390500,0.728291034698486,L, + 67354813750,0.718261957168579,L, + 69279237000,0.709438741207123,L, + 71203660250,0.701953470706940,L, + 73128083500,0.695894777774811,L, + 75052506750,0.691313564777374,L, + 76976930000,0.688229203224182,L, + 78901353250,0.686635494232178,L, + 80825776500,0.685843944549561,L, + 82750199750,0.685181856155396,L, + 84674623000,0.684649109840393,L, + 86599046250,0.684242546558380,L, + 88523469500,0.683954060077667,L, + 90447892750,0.683770418167114,L, + 92372316000,0.683672368526459,L, + 94296739250,0.683635354042053,L, + 98145585750,0.683624505996704,L, + 100070009000,0.683587610721588,L, + 101994432250,0.683489501476288,L, + 103918855500,0.683305799961090,L, + 105843278750,0.683017313480377,L, + 107767702000,0.682610750198364,L, + 109692125250,0.682078063488007,L, + 111616548500,0.681415855884552,L, + 113540971750,0.680624365806580,L, + 115465395000,0.679479598999023,L, + 117389818250,0.677726089954376,L, + 119314241500,0.675328314304352,L, + 121238664750,0.672270417213440,L, + 123163088000,0.668566048145294,L, + 125087511250,0.664267301559448,L, + 127011934500,0.659467458724976,L, + 128936357750,0.654294431209564,L, + 130860781000,0.648896217346191,L, + 132785204250,0.643420755863190,L, + 134709627500,0.637999415397644,L, + 136634050750,0.632736384868622,L, + 138558474000,0.627705752849579,L, + 140482897250,0.622954726219177,L, + 142407320500,0.617972970008850,L, + 144331743750,0.612256050109863,L, + 146256167000,0.605882942676544,L, + 148180590250,0.598998248577118,L, + 150105013500,0.591822087764740,L, + 152029436750,0.584643304347992,L, + 153953860000,0.577791452407837,L, + 155878283250,0.571591436862946,L, + 157802706500,0.566314399242401,L, + 159727129750,0.562146782875061,L, + 161651553000,0.559182524681091,L, + 163575976250,0.557437539100647,L, + 165500399500,0.556871056556702,L, + 167424822750,0.557141244411469,L, + 169349246000,0.557957351207733,L, + 171273669250,0.559323668479919,L, + 173198092500,0.561236858367920,L, + 175122515750,0.563684821128845,L, + 177046939000,0.566644489765167,L, + 178971362250,0.570080280303955,L, + 180895785500,0.573942959308624,L, + 182820208750,0.578169465065002,L, + 184744632000,0.582683145999908,L, + 186669055250,0.587395191192627,L, + 188593478500,0.592208921909332,L, + 190517901750,0.597022593021393,L, + 192442325000,0.601734757423401,L, + 194366748250,0.606248319149017,L, + 196291171500,0.610474824905396,L, + 198215594750,0.614337563514709,L, + 200140018000,0.617773354053497,L, + 202064441250,0.620733022689819,L, + 203988864500,0.623180925846100,L, + 205913287750,0.625094115734100,L, + 207837711000,0.626460373401642,L, + 209762134250,0.627276539802551,L, + 211686557500,0.627546727657318,L, + 213610980750,0.626874685287476,L, + 215535404000,0.624843478202820,L, + 217459827250,0.621445775032043,L, + 219384250500,0.616699099540710,L, + 221308673750,0.610653460025787,L, + 223233097000,0.603396415710449,L, + 225157520250,0.595059394836426,L, + 227081943500,0.585819303989410,L, + 229006366750,0.575896263122559,L, + 230930790000,0.565547049045563,L, + 232855213250,0.555053055286407,L, + 234779636500,0.544703900814056,L, + 236704059750,0.534780979156494,L, + 238628483000,0.525540828704834,L, + 240552906250,0.517203807830811,L, + 242477329500,0.509946882724762,L, + 244401752750,0.503901004791260,L, + 246326176000,0.499154508113861,L, + 248250599250,0.495756745338440,L, + 250175022500,0.493725597858429,L, + 252099445750,0.493053525686264,L, + 254023869000,0.493055433034897,L, + 255948292250,0.493069976568222,L, + 257872715500,0.493112981319427,L, + 259797138750,0.493203848600388,L, + 261721562000,0.493365287780762,L, + 263645985250,0.493622690439224,L, + 265570408500,0.494001597166061,L, + 267494831750,0.494525879621506,L, + 269419255000,0.495214670896530,L, + 271343678250,0.496080458164215,L, + 273268101500,0.497127920389175,L, + 275192524750,0.498354524374008,L, + 277116948000,0.499751746654510,L, + 279041371250,0.501307070255280,L, + 280965794500,0.503005683422089,L, + 282890217750,0.504832386970520,L, + 284814641000,0.506922125816345,L, + 286739064250,0.509420752525330,L, + 288663487500,0.512325823307037,L, + 290587910750,0.515629053115845,L, + 292512334000,0.519315123558044,L, + 294436757250,0.523360073566437,L, + 296361180500,0.527730762958527,L, + 298285603750,0.532384216785431,L, + 300210027000,0.537266612052917,L, + 302134450250,0.542314767837524,L, + 304058873500,0.547457039356232,L, + 305983296750,0.552615761756897,L, + 307907720000,0.557709574699402,L, + 309832143250,0.562657713890076,L, + 311756566500,0.567382454872131,L, + 313680989750,0.571812868118286,L, + 315605413000,0.575887024402618,L, + 317529836250,0.579553604125977,L, + 319454259500,0.582772433757782,L, + 321378682750,0.585514724254608,L, + 323303106000,0.587761580944061,L, + 325227529250,0.589503943920135,L, + 327151952500,0.590739727020264,L, + 329076375750,0.591473937034607,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.643071591854095 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.643071591854095,L, + 1924423250,0.644385993480682,L, + 3848846500,0.648359358310699,L, + 5773269750,0.654999673366547,L, + 7697693000,0.664251744747162,L, + 9622116250,0.675978839397430,L, + 11546539500,0.689947545528412,L, + 13470962750,0.705817341804504,L, + 15395386000,0.723141312599182,L, + 17319809250,0.741380095481873,L, + 19244232500,0.759931385517120,L, + 21168655750,0.778170108795166,L, + 23093079000,0.795494258403778,L, + 25017502250,0.811363875865936,L, + 26941925500,0.825332522392273,L, + 28866348750,0.837059676647186,L, + 30790772000,0.846311807632446,L, + 32715195250,0.852952241897583,L, + 34639618500,0.856925487518311,L, + 36564041750,0.858239889144897,L, + 38488465000,0.857487201690674,L, + 40412888250,0.855210781097412,L, + 42337311500,0.851398110389709,L, + 44261734750,0.846060574054718,L, + 46186158000,0.839241087436676,L, + 48110581250,0.831019699573517,L, + 50035004500,0.821519255638123,L, + 51959427750,0.810908675193787,L, + 53883851000,0.799402773380280,L, + 55808274250,0.787256419658661,L, + 57732697500,0.774756193161011,L, + 59657120750,0.762205660343170,L, + 61581544000,0.749909698963165,L, + 63505967250,0.738157808780670,L, + 65430390500,0.727210342884064,L, + 67354813750,0.717288196086884,L, + 69279237000,0.708567500114441,L, + 71203660250,0.701179087162018,L, + 73128083500,0.695210814476013,L, + 75052506750,0.690713107585907,L, + 76976930000,0.687704980373383,L, + 78901353250,0.686179935932159,L, + 80825776500,0.685448467731476,L, + 82750199750,0.684836506843567,L, + 84674623000,0.684344112873077,L, + 86599046250,0.683968186378479,L, + 88523469500,0.683701694011688,L, + 90447892750,0.683531939983368,L, + 92372316000,0.683441400527954,L, + 94296739250,0.683407127857208,L, + 96221162500,0.683402180671692,L, + 98145585750,0.683397293090820,L, + 100070009000,0.683362960815430,L, + 101994432250,0.683272361755371,L, + 103918855500,0.683102607727051,L, + 105843278750,0.682836115360260,L, + 107767702000,0.682460308074951,L, + 109692125250,0.681967914104462,L, + 111616548500,0.681355893611908,L, + 113540971750,0.680624425411224,L, + 115465395000,0.679548859596252,L, + 117389818250,0.677873134613037,L, + 119314241500,0.675560891628265,L, + 121238664750,0.672594487667084,L, + 123163088000,0.668985605239868,L, + 125087511250,0.664782822132111,L, + 127011934500,0.660076022148132,L, + 128936357750,0.654989421367645,L, + 130860781000,0.649667203426361,L, + 132785204250,0.644255399703979,L, + 134709627500,0.638883173465729,L, + 136634050750,0.633654117584229,L, + 138558474000,0.628642261028290,L, + 140482897250,0.623895525932312,L, + 142407320500,0.618899166584015,L, + 144331743750,0.613143444061279,L, + 146256167000,0.606707513332367,L, + 148180590250,0.599738359451294,L, + 150105013500,0.592460095882416,L, + 152029436750,0.585167527198792,L, + 153953860000,0.578198194503784,L, + 155878283250,0.571885108947754,L, + 157802706500,0.566507041454315,L, + 159727129750,0.562256515026093,L, + 161651553000,0.559231460094452,L, + 163575976250,0.557449758052826,L, + 165500399500,0.556871116161346,L, + 167424822750,0.557139098644257,L, + 169349246000,0.557948291301727,L, + 171273669250,0.559303164482117,L, + 173198092500,0.561200261116028,L, + 175122515750,0.563627719879150,L, + 177046939000,0.566562473773956,L, + 178971362250,0.569969475269318,L, + 180895785500,0.573799848556519,L, + 182820208750,0.577990829944611,L, + 184744632000,0.582466542720795,L, + 186669055250,0.587139129638672,L, + 188593478500,0.591912329196930,L, + 190517901750,0.596685707569122,L, + 192442325000,0.601358354091644,L, + 194366748250,0.605834126472473,L, + 196291171500,0.610025048255920,L, + 198215594750,0.613855421543121,L, + 200140018000,0.617262363433838,L, + 202064441250,0.620197117328644,L, + 203988864500,0.622624576091766,L, + 205913287750,0.624521732330322,L, + 207837711000,0.625876426696777,L, + 209762134250,0.626685738563538,L, + 211686557500,0.626953661441803,L, + 213610980750,0.626342117786407,L, + 215535404000,0.624493718147278,L, + 217459827250,0.621401727199554,L, + 219384250500,0.617082297801971,L, + 221308673750,0.611580610275269,L, + 223233097000,0.604976594448090,L, + 225157520250,0.597389757633209,L, + 227081943500,0.588981091976166,L, + 229006366750,0.579950869083405,L, + 230930790000,0.570533096790314,L, + 232855213250,0.560983240604401,L, + 234779636500,0.551565468311310,L, + 236704059750,0.542535305023193,L, + 238628483000,0.534126639366150,L, + 240552906250,0.526539742946625,L, + 242477329500,0.519935846328735,L, + 244401752750,0.514434099197388,L, + 246326176000,0.510114669799805,L, + 248250599250,0.507022678852081,L, + 250175022500,0.505174219608307,L, + 252099445750,0.504562616348267,L, + 254023869000,0.506176292896271,L, + 255948292250,0.511054754257202,L, + 257872715500,0.519185125827789,L, + 259797138750,0.530433237552643,L, + 261721562000,0.544508755207062,L, + 263645985250,0.560940802097321,L, + 265570408500,0.579074740409851,L, + 269419255000,0.617132663726807,L, + 271343678250,0.635266721248627,L, + 273268101500,0.651698708534241,L, + 275192524750,0.665774285793304,L, + 277116948000,0.677022337913513,L, + 279041371250,0.685152709484100,L, + 280965794500,0.690031111240387,L, + 282890217750,0.691644787788391,L, + 284814641000,0.691292762756348,L, + 286739064250,0.690229713916779,L, + 288663487500,0.688449859619141,L, + 290587910750,0.685956239700317,L, + 292512334000,0.682762205600739,L, + 294436757250,0.678894042968750,L, + 296361180500,0.674392700195312,L, + 298285603750,0.669315040111542,L, + 300210027000,0.663734853267670,L, + 302134450250,0.657742798328400,L, + 304058873500,0.651444077491760,L, + 305983296750,0.644956290721893,L, + 307907720000,0.638404488563538,L, + 309832143250,0.631916582584381,L, + 311756566500,0.625617861747742,L, + 313680989750,0.619625806808472,L, + 315605413000,0.614045739173889,L, + 317529836250,0.608967959880829,L, + 319454259500,0.604466617107391,L, + 321378682750,0.600598454475403,L, + 323303106000,0.597404479980469,L, + 325227529250,0.594910860061646,L, + 327151952500,0.593130946159363,L, + 329076375750,0.592067897319794,L, + 331000799000,0.591715872287750,L, + 344471761750,0.591715872287750,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.690616309642792 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.690616309642792,L, + 1924423250,0.690148532390594,L, + 3848846500,0.688734173774719,L, + 5773269750,0.686370551586151,L, + 7697693000,0.683077514171600,L, + 9622116250,0.678903222084045,L, + 11546539500,0.673931300640106,L, + 13470962750,0.668282508850098,L, + 15395386000,0.662116169929504,L, + 17319809250,0.655624270439148,L, + 19244232500,0.649021148681641,L, + 21168655750,0.642529129981995,L, + 23093079000,0.636362850666046,L, + 25017502250,0.630714058876038,L, + 26941925500,0.625742077827454,L, + 28866348750,0.621567845344543,L, + 30790772000,0.618274748325348,L, + 32715195250,0.615911126136780,L, + 34639618500,0.614496827125549,L, + 36564041750,0.614028990268707,L, + 38488465000,0.614427208900452,L, + 40412888250,0.615644633769989,L, + 42337311500,0.617711424827576,L, + 44261734750,0.620648622512817,L, + 46186158000,0.624465525150299,L, + 48110581250,0.629155874252319,L, + 50035004500,0.634694278240204,L, + 51959427750,0.641033411026001,L, + 53883851000,0.648102462291718,L, + 55808274250,0.655807495117188,L, + 57732697500,0.664034485816956,L, + 59657120750,0.672653496265411,L, + 61581544000,0.681526780128479,L, + 63505967250,0.690514981746674,L, + 65430390500,0.699485123157501,L, + 67354813750,0.708316326141357,L, + 69279237000,0.716904222965240,L, + 71203660250,0.725162565708160,L, + 73128083500,0.733023762702942,L, + 75052506750,0.740437448024750,L, + 76976930000,0.747368931770325,L, + 78901353250,0.753796875476837,L, + 80825776500,0.760236859321594,L, + 82750199750,0.767197132110596,L, + 84674623000,0.774639368057251,L, + 86599046250,0.782501161098480,L, + 88523469500,0.790693104267120,L, + 90447892750,0.799095392227173,L, + 92372316000,0.807559788227081,L, + 94296739250,0.815914630889893,L, + 96221162500,0.823974847793579,L, + 98145585750,0.831556141376495,L, + 100070009000,0.838489532470703,L, + 101994432250,0.844634771347046,L, + 103918855500,0.849887609481812,L, + 105843278750,0.854183256626129,L, + 107767702000,0.857492446899414,L, + 109692125250,0.859816730022430,L, + 111616548500,0.861180484294891,L, + 113540971750,0.861624300479889,L, + 115465395000,0.861622512340546,L, + 117389818250,0.861608862876892,L, + 119314241500,0.861567795276642,L, + 121238664750,0.861480474472046,L, + 123163088000,0.861324548721313,L, + 125087511250,0.861076056957245,L, + 127011934500,0.860712826251984,L, + 128936357750,0.860216796398163,L, + 130860781000,0.859576761722565,L, + 132785204250,0.858790159225464,L, + 134709627500,0.857861101627350,L, + 136634050750,0.856799781322479,L, + 138558474000,0.855618953704834,L, + 140482897250,0.854332864284515,L, + 142407320500,0.851194798946381,L, + 144331743750,0.844419062137604,L, + 146256167000,0.834094941616058,L, + 148180590250,0.820548534393311,L, + 150105013500,0.804402291774750,L, + 152029436750,0.786586523056030,L, + 153953860000,0.768268883228302,L, + 155878283250,0.750702857971191,L, + 157802706500,0.735041379928589,L, + 159727129750,0.722188293933868,L, + 161651553000,0.712734282016754,L, + 163575976250,0.706972301006317,L, + 165500399500,0.704960942268372,L, + 167424822750,0.704804599285126,L, + 169349246000,0.704655110836029,L, + 171273669250,0.704513192176819,L, + 173198092500,0.704379320144653,L, + 175122515750,0.704254150390625,L, + 177046939000,0.704138159751892,L, + 178971362250,0.704031765460968,L, + 180895785500,0.703935384750366,L, + 182820208750,0.703849315643311,L, + 184744632000,0.703773498535156,L, + 186669055250,0.703707695007324,L, + 188593478500,0.703651845455170,L, + 190517901750,0.703605294227600,L, + 192442325000,0.703567326068878,L, + 194366748250,0.703537106513977,L, + 196291171500,0.703513860702515,L, + 198215594750,0.703496396541595,L, + 200140018000,0.703483998775482,L, + 202064441250,0.703475415706635,L, + 203988864500,0.703470051288605,L, + 205913287750,0.703467011451721,L, + 207837711000,0.703465461730957,L, + 209762134250,0.703464865684509,L, + 211686557500,0.703464806079865,L, + 213610980750,0.704842150211334,L, + 215535404000,0.709004700183868,L, + 217459827250,0.715967714786530,L, + 219384250500,0.725694894790649,L, + 221308673750,0.738084554672241,L, + 223233097000,0.752956509590149,L, + 225157520250,0.770041644573212,L, + 227081943500,0.788977682590485,L, + 229006366750,0.809313297271729,L, + 230930790000,0.830522000789642,L, + 232855213250,0.852027535438538,L, + 234779636500,0.873236179351807,L, + 236704059750,0.893571555614471,L, + 238628483000,0.912507832050323,L, + 240552906250,0.929592907428741,L, + 242477329500,0.944464743137360,L, + 244401752750,0.956854581832886,L, + 246326176000,0.966581821441650,L, + 248250599250,0.973544895648956,L, + 250175022500,0.977707326412201,L, + 252099445750,0.979084610939026,L, + 254023869000,0.979084193706512,L, + 255948292250,0.979081749916077,L, + 257872715500,0.979074180126190,L, + 259797138750,0.979058265686035,L, + 261721562000,0.979029953479767,L, + 263645985250,0.978984832763672,L, + 265570408500,0.978918492794037,L, + 267494831750,0.978826463222504,L, + 269419255000,0.978705823421478,L, + 271343678250,0.978554069995880,L, + 273268101500,0.978370606899261,L, + 275192524750,0.978155672550201,L, + 277116948000,0.977910876274109,L, + 279041371250,0.977638244628906,L, + 280965794500,0.977340698242188,L, + 282890217750,0.977020561695099,L, + 284814641000,0.975905239582062,L, + 286739064250,0.973204314708710,L, + 288663487500,0.968906342983246,L, + 290587910750,0.963019073009491,L, + 292512334000,0.955573976039886,L, + 294436757250,0.946630895137787,L, + 296361180500,0.936282515525818,L, + 298285603750,0.924658060073853,L, + 300210027000,0.911923766136169,L, + 302134450250,0.898283541202545,L, + 304058873500,0.883974015712738,L, + 305983296750,0.869259178638458,L, + 307907720000,0.854419350624084,L, + 309832143250,0.839741408824921,L, + 311756566500,0.825505077838898,L, + 313680989750,0.811973035335541,L, + 315605413000,0.799380540847778,L, + 317529836250,0.787928819656372,L, + 319454259500,0.777782440185547,L, + 321378682750,0.769067645072937,L, + 323303106000,0.761874735355377,L, + 325227529250,0.756260991096497,L, + 327151952500,0.752255558967590,L, + 329076375750,0.749863862991333,L, + 331000799000,0.749072253704071,L, + 344471761750,0.749072253704071,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_037" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793131828308 + KeyVer: 4005 + KeyCount: 58 + Key: + 0,0.016793131828308,L, + 1924423250,0.016792833805084,L, + 3848846500,0.016793072223663,L, + 7697693000,0.016793072223663,L, + 9622116250,0.016792893409729,L, + 11546539500,0.016793131828308,L, + 13470962750,0.016792833805084,L, + 15395386000,0.016793131828308,L, + 17319809250,0.016792893409729,L, + 19244232500,0.016793131828308,L, + 21168655750,0.016793072223663,L, + 23093079000,0.016793131828308,L, + 25017502250,0.016792893409729,L, + 26941925500,0.016792893409729,L, + 28866348750,0.016793131828308,L, + 30790772000,0.016793012619019,L, + 32715195250,0.016793012619019,L, + 34639618500,0.016792893409729,L, + 36564041750,0.016792953014374,L, + 40412888250,0.016792953014374,L, + 42337311500,0.016793131828308,L, + 44261734750,0.016792893409729,L, + 46186158000,0.016793072223663,L, + 48110581250,0.016793072223663,L, + 50035004500,0.016793012619019,L, + 51959427750,0.016792833805084,L, + 53883851000,0.016793072223663,L, + 55808274250,0.016792953014374,L, + 59657120750,0.016793072223663,L, + 61581544000,0.016792953014374,L, + 63505967250,0.016792953014374,L, + 65430390500,0.016792893409729,L, + 67354813750,0.016793072223663,L, + 69279237000,0.016793012619019,L, + 71203660250,0.016793072223663,L, + 73128083500,0.016792953014374,L, + 75052506750,0.016793131828308,L, + 76976930000,0.016793191432953,L, + 78901353250,0.016793012619019,L, + 80825776500,0.016793072223663,L, + 82750199750,0.016792953014374,L, + 86599046250,0.016792833805084,L, + 88523469500,0.016792953014374,L, + 90447892750,0.016792953014374,L, + 92372316000,0.016793191432953,L, + 94296739250,0.016792953014374,L, + 96221162500,0.016793131828308,L, + 98145585750,0.016792893409729,L, + 100070009000,0.016792893409729,L, + 101994432250,0.016793191432953,L, + 103918855500,0.016793072223663,L, + 105843278750,0.016792893409729,L, + 109692125250,0.016793012619019,L, + 111616548500,0.016792893409729,L, + 113540971750,0.016792953014374,L, + 307907720000,0.016792953014374,L, + 309832143250,0.016793072223663,L, + 344471761750,0.016793072223663,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.074746727943420 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,-0.074746727943420,L, + 1924423250,-0.074808835983276,L, + 3848846500,-0.074986398220062,L, + 5773269750,-0.075266599655151,L, + 7697693000,-0.075639247894287,L, + 9622116250,-0.076095581054688,L, + 11546539500,-0.076628506183624,L, + 13470962750,-0.077231287956238,L, + 15395386000,-0.077898502349854,L, + 17319809250,-0.078625142574310,L, + 19244232500,-0.079406738281250,L, + 21168655750,-0.080239534378052,L, + 23093079000,-0.081119894981384,L, + 25017502250,-0.082044661045074,L, + 26941925500,-0.083010852336884,L, + 28866348750,-0.084015727043152,L, + 30790772000,-0.085056543350220,L, + 32715195250,-0.086130797863007,L, + 34639618500,-0.087236106395721,L, + 36564041750,-0.088370025157928,L, + 38488465000,-0.089529752731323,L, + 40412888250,-0.090712428092957,L, + 42337311500,-0.091915130615234,L, + 44261734750,-0.093133509159088,L, + 46186158000,-0.094362676143646,L, + 48110581250,-0.095595240592957,L, + 50035004500,-0.096819519996643,L, + 51959427750,-0.098013699054718,L, + 53883851000,-0.099125146865845,L, + 55808274250,-0.099893391132355,L, + 57732697500,-0.099929988384247,L, + 59657120750,-0.098738014698029,L, + 61581544000,-0.096936762332916,L, + 63505967250,-0.094985425472260,L, + 65430390500,-0.092977285385132,L, + 67354813750,-0.090950906276703,L, + 69279237000,-0.088926911354065,L, + 71203660250,-0.086918115615845,L, + 73128083500,-0.084933638572693,L, + 75052506750,-0.082980692386627,L, + 76976930000,-0.081064403057098,L, + 78901353250,-0.079190015792847,L, + 80825776500,-0.077361941337585,L, + 82750199750,-0.075584590435028,L, + 84674623000,-0.073861777782440,L, + 86599046250,-0.072198390960693,L, + 88523469500,-0.070598363876343,L, + 90447892750,-0.069066584110260,L, + 92372316000,-0.067608058452606,L, + 94296739250,-0.066227912902832,L, + 96221162500,-0.064932584762573,L, + 98145585750,-0.063727974891663,L, + 100070009000,-0.062621951103210,L, + 101994432250,-0.061622440814972,L, + 103918855500,-0.060738801956177,L, + 105843278750,-0.059981644153595,L, + 107767702000,-0.059363424777985,L, + 109692125250,-0.058898389339447,L, + 111616548500,-0.058604121208191,L, + 113540971750,-0.058500826358795,L, + 307907720000,-0.058500826358795,L, + 309832143250,-0.058537185192108,L, + 344471761750,-0.058537185192108,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608140945435 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.093608140945435,L, + 1924423250,0.093608617782593,L, + 3848846500,0.093611955642700,L, + 5773269750,0.093621015548706,L, + 7697693000,0.093638181686401,L, + 9622116250,0.093665719032288,L, + 11546539500,0.093706011772156,L, + 13470962750,0.093761324882507,L, + 15395386000,0.093834042549133,L, + 17319809250,0.093926429748535,L, + 19244232500,0.094041228294373,L, + 21168655750,0.094181180000305,L, + 23093079000,0.094349384307861,L, + 25017502250,0.094549179077148,L, + 26941925500,0.094784140586853,L, + 28866348750,0.095059037208557,L, + 30790772000,0.095378518104553,L, + 32715195250,0.095748662948608,L, + 34639618500,0.096176862716675,L, + 36564041750,0.096671223640442,L, + 38488465000,0.097243070602417,L, + 40412888250,0.097905755043030,L, + 42337311500,0.098677515983582,L, + 44261734750,0.099582791328430,L, + 46186158000,0.100656270980835,L, + 48110581250,0.101950764656067,L, + 50035004500,0.103552460670471,L, + 51959427750,0.105624198913574,L, + 53883851000,0.108554601669312,L, + 55808274250,0.114208221435547,L, + 57732697500,0.672039747238159,L, + 59657120750,0.679893136024475,L, + 61581544000,0.687746405601501,L, + 63505967250,0.695599794387817,L, + 67354813750,0.711306333541870,L, + 69279237000,0.719159722328186,L, + 71203660250,0.727013230323792,L, + 73128083500,0.734866380691528,L, + 75052506750,0.742719888687134,L, + 76976930000,0.750573158264160,L, + 78901353250,0.758426547050476,L, + 80825776500,0.766279816627502,L, + 82750199750,0.774132966995239,L, + 84674623000,0.781986474990845,L, + 86599046250,0.794582009315491,L, + 88523469500,0.809109210968018,L, + 90447892750,0.825344324111938,L, + 92372316000,0.842669010162354,L, + 94296739250,0.860134720802307,L, + 96221162500,0.876771926879883,L, + 98145585750,0.891909599304199,L, + 100070009000,0.905265212059021,L, + 101994432250,0.917443871498108,L, + 103918855500,0.928918480873108,L, + 105843278750,0.939439177513123,L, + 107767702000,0.948848843574524,L, + 109692125250,0.957195162773132,L, + 111616548500,0.964709639549255,L, + 113540971750,0.971674561500549,L, + 115465395000,0.978410840034485,L, + 117389818250,0.985076785087585,L, + 119314241500,0.991677880287170,L, + 121238664750,0.998218417167664,L, + 123163088000,1.004701018333435,L, + 125087511250,1.011128306388855,L, + 127011934500,1.017501711845398,L, + 128936357750,1.023823142051697,L, + 130860781000,1.030093789100647,L, + 132785204250,1.036315083503723,L, + 134709627500,1.042487263679504,L, + 136634050750,1.048611044883728,L, + 138558474000,1.054687619209290,L, + 140482897250,1.060716986656189,L, + 142407320500,1.066700100898743,L, + 144331743750,1.072636485099792,L, + 146256167000,1.078527569770813,L, + 148180590250,1.084372639656067,L, + 150105013500,1.090172410011292,L, + 152029436750,1.095926880836487,L, + 153953860000,1.101636052131653,L, + 155878283250,1.107300162315369,L, + 157802706500,1.112919211387634,L, + 159727129750,1.118493437767029,L, + 161651553000,1.124022364616394,L, + 163575976250,1.129505991935730,L, + 165500399500,1.134944796562195,L, + 167424822750,1.140338540077209,L, + 169349246000,1.145686507225037,L, + 171273669250,1.150989413261414,L, + 173198092500,1.156246066093445,L, + 175122515750,1.161457419395447,L, + 177046939000,1.166622757911682,L, + 178971362250,1.171741604804993,L, + 180895785500,1.176814436912537,L, + 182820208750,1.181840538978577,L, + 184744632000,1.186819434165955,L, + 186669055250,1.191751122474670,L, + 188593478500,1.196635365486145,L, + 190517901750,1.201471924781799,L, + 192442325000,1.206260561943054,L, + 194366748250,1.211000323295593,L, + 196291171500,1.215691447257996,L, + 198215594750,1.220333695411682,L, + 200140018000,1.224925637245178,L, + 202064441250,1.229467988014221,L, + 203988864500,1.233960032463074,L, + 205913287750,1.238401055335999,L, + 207837711000,1.242791056632996,L, + 209762134250,1.247128844261169,L, + 211686557500,1.251414656639099,L, + 213610980750,1.255647540092468,L, + 215535404000,1.259827494621277,L, + 217459827250,1.263953089714050,L, + 219384250500,1.268024802207947,L, + 221308673750,1.272041201591492,L, + 223233097000,1.276002526283264,L, + 225157520250,1.279907345771790,L, + 227081943500,1.283755660057068,L, + 229006366750,1.287546277046204,L, + 230930790000,1.291279196739197,L, + 232855213250,1.294952988624573,L, + 234779636500,1.298567414283752,L, + 236704059750,1.302121520042419,L, + 238628483000,1.305614590644836,L, + 240552906250,1.309045910835266,L, + 242477329500,1.312414765357971,L, + 244401752750,1.315720200538635,L, + 246326176000,1.318961501121521,L, + 248250599250,1.322137236595154,L, + 250175022500,1.325247645378113,L, + 252099445750,1.328290343284607,L, + 254023869000,1.331265330314636,L, + 255948292250,1.334171414375305,L, + 257872715500,1.337007403373718,L, + 259797138750,1.339772582054138,L, + 261721562000,1.342465281486511,L, + 263645985250,1.345084786415100,L, + 265570408500,1.347629904747009,L, + 267494831750,1.350099444389343,L, + 269419255000,1.352491974830627,L, + 271343678250,1.354806303977966,L, + 273268101500,1.357041239738464,L, + 275192524750,1.359194874763489,L, + 277116948000,1.361266493797302,L, + 279041371250,1.363254189491272,L, + 280965794500,1.365156769752502,L, + 282890217750,1.366972088813782,L, + 284814641000,1.368698716163635,L, + 286739064250,1.370335459709167,L, + 288663487500,1.371880173683167,L, + 290587910750,1.373330712318420,L, + 292512334000,1.374685883522034,L, + 294436757250,1.375943064689636,L, + 296361180500,1.377100586891174,L, + 298285603750,1.378156304359436,L, + 300210027000,1.379108309745789,L, + 302134450250,1.379953503608704,L, + 304058873500,1.380689978599548,L, + 305983296750,1.381315112113953,L, + 307907720000,1.381826996803284,L, + 309832143250,0.093608140945435,L, + 344471761750,0.093608140945435,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 11.241471114317566 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,11.241471114317566,L, + 1924423250,11.213424650038242,L, + 3848846500,11.133562663167982,L, + 5773269750,11.007449196559401,L, + 7697693000,10.839727071300809,L, + 9622116250,10.634315108428494,L, + 11546539500,10.394570345919513,L, + 13470962750,10.123388783981948,L, + 15395386000,9.823301861476931,L, + 17319809250,9.496531097432005,L, + 19244232500,9.145062369348347,L, + 21168655750,8.770662988673697,L, + 23093079000,8.374937196089359,L, + 25017502250,7.959356897361469,L, + 26941925500,7.525268493530164,L, + 28866348750,7.073941119120594,L, + 30790772000,6.606576033653035,L, + 32715195250,6.124331381078624,L, + 34639618500,5.628354633177921,L, + 36564041750,5.119802226354774,L, + 38488465000,4.599899325791552,L, + 40412888250,4.069974830168642,L, + 42337311500,3.531560409407420,L, + 44261734750,2.986525400906349,L, + 46186158000,2.437325257672045,L, + 48110581250,1.887463653305309,L, + 50035004500,1.342545611793774,L, + 51959427750,0.813016093203961,L, + 53883851000,0.324109551589564,L, + 55808274250,0.000309066085998,L, + 57732697500,0.000001707547496,L, + 59657120750,1.292893338179026,L, + 61581544000,3.274988835547902,L, + 63505967250,5.451133422331147,L, + 65430390500,7.719539564092557,L, + 67354813750,10.037850909911416,L, + 69279237000,12.383447153917146,L, + 71203660250,14.742369096993549,L, + 73128083500,17.105114238457862,L, + 75052506750,19.464697002336464,L, + 76976930000,21.815666897671694,L, + 78901353250,24.153534782631564,L, + 80825776500,26.474419402220221,L, + 82750199750,28.774821992035335,L, + 84674623000,31.051494797126562,L, + 86599046250,33.301311298401338,L, + 88523469500,35.521170589976485,L, + 90447892750,37.707920539550038,L, + 92372316000,39.858323637455428,L, + 94296739250,41.968968204202220,L, + 96221162500,44.036155692354875,L, + 98145585750,46.055948497856882,L, + 100070009000,48.023971884544849,L, + 101994432250,49.935379833202660,L, + 103918855500,51.784708192494314,L, + 105843278750,53.565772226126377,L, + 107767702000,55.271437801510771,L, + 109692125250,56.893426729373466,L, + 111616548500,58.421927442971743,L, + 113540971750,59.845311545243675,L, + 115465395000,61.197306510310739,L, + 117389818250,62.521454794131699,L, + 119314241500,63.818828736406246,L, + 121238664750,65.090487016455725,L, + 123163088000,66.337385860763959,L, + 125087511250,67.560454175058041,L, + 127011934500,68.760511582038390,L, + 128936357750,69.938391364783740,L, + 130860781000,71.094824353535273,L, + 132785204250,72.230520887966676,L, + 134709627500,73.346157156805788,L, + 136634050750,74.442354707267071,L, + 138558474000,75.519721426186663,L, + 140482897250,76.578810558887312,L, + 142407320500,77.620168520502645,L, + 144331743750,78.644293914842052,L, + 146256167000,79.651671685336609,L, + 148180590250,80.642766284849884,L, + 150105013500,81.618021675677923,L, + 152029436750,82.577840838981757,L, + 153953860000,83.522613095544074,L, + 155878283250,84.452734596336740,L, + 157802706500,85.368546850818248,L, + 159727129750,86.270411859014601,L, + 161651553000,87.158657470005977,L, + 163575976250,88.033577381926662,L, + 165500399500,88.895506274046014,L, + 167424822750,89.744717353930824,L, + 169349246000,90.581476998958721,L, + 171273669250,91.406058416696482,L, + 173198092500,92.218727984521777,L, + 175122515750,93.019711098677192,L, + 177046939000,93.809253645972845,L, + 178971362250,94.587581022651364,L, + 180895785500,95.354898134387838,L, + 182820208750,96.111430377424867,L, + 184744632000,96.857368997059226,L, + 186669055250,97.592905238587676,L, + 188593478500,98.318237177496144,L, + 190517901750,99.033508247757183,L, + 192442325000,99.738937015424256,L, + 194366748250,100.434639593713257,L, + 196291171500,101.120814058110085,L, + 198215594750,101.797603842587336,L, + 200140018000,102.465152381117576,L, + 202064441250,103.123603107673361,L, + 203988864500,103.773078965659778,L, + 205913287750,104.413730219238545,L, + 207837711000,105.045672981625557,L, + 209762134250,105.669023366036697,L, + 211686557500,106.283924806444560,L, + 213610980750,106.890466095308327,L, + 215535404000,107.488763345843907,L, + 217459827250,108.078925841078004,L, + 219384250500,108.661035543280676,L, + 221308673750,109.235208565667804,L, + 223233097000,109.801533700698599,L, + 225157520250,110.360079250264761,L, + 227081943500,110.910974987960515,L, + 229006366750,111.454248234542547,L, + 230930790000,111.990015103226753,L, + 232855213250,112.518302914769791,L, + 234779636500,113.039248272955092,L, + 236704059750,113.552851177782628,L, + 238628483000,114.059207251900801,L, + 240552906250,114.558398457579628,L, + 242477329500,115.050424794819136,L, + 244401752750,115.535368225889343,L, + 246326176000,116.013290222492785,L, + 248250599250,116.484190784629476,L, + 250175022500,116.948151874569433,L, + 252099445750,117.405173492312670,L, + 254023869000,117.855323939750889,L, + 255948292250,118.298603216884075,L, + 257872715500,118.735024984090586,L, + 259797138750,119.164630222505423,L, + 261721562000,119.587418932128614,L, + 263645985250,120.003404773338460,L, + 265570408500,120.412574085756660,L, + 267494831750,120.814899548626514,L, + 269419255000,121.210408482704707,L, + 271343678250,121.599073567234555,L, + 273268101500,121.980812839946012,L, + 275192524750,122.355653621595778,L, + 277116948000,122.723486629157122,L, + 279041371250,123.084243560738329,L, + 280965794500,123.437883435204398,L, + 282890217750,123.784228667636910,L, + 284814641000,124.123210956144163,L, + 286739064250,124.454652715807725,L, + 288663487500,124.778335380574163,L, + 290587910750,125.094040384390041,L, + 292512334000,125.401453538553525,L, + 294436757250,125.700178692092777,L, + 296361180500,125.989710411009199,L, + 298285603750,126.269297374494101,L, + 300210027000,126.537983356063677,L, + 302134450250,126.794156431073802,L, + 304058873500,127.035043542721468,L, + 305983296750,127.254429218861958,L, + 307907720000,127.416728173919580,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.527154918402076 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-33.527154918402076,L, + 1924423250,-33.534712522718678,L, + 3848846500,-33.556231033698772,L, + 5773269750,-33.590214639914123,L, + 7697693000,-33.635410001652033,L, + 9622116250,-33.690768684874911,L, + 11546539500,-33.755375444233970,L, + 13470962750,-33.828458468352999,L, + 15395386000,-33.909324493031249,L, + 17319809250,-33.997389537094683,L, + 19244232500,-34.092100355220524,L, + 21168655750,-34.192999324734394,L, + 23093079000,-34.299639068245654,L, + 25017502250,-34.411630264971606,L, + 26941925500,-34.528604084697072,L, + 28866348750,-34.650236093436483,L, + 30790772000,-34.776181366636756,L, + 32715195250,-34.906139375974398,L, + 34639618500,-35.039802762936773,L, + 36564041750,-35.176843678443710,L, + 38488465000,-35.316947933793401,L, + 40412888250,-35.459760359148987,L, + 42337311500,-35.604854067687363,L, + 44261734750,-35.751727040504520,L, + 46186158000,-35.899730409629313,L, + 48110581250,-36.047907948577944,L, + 50035004500,-36.194757015733003,L, + 51959427750,-36.337453327872709,L, + 53883851000,-36.469211092056646,L, + 55808274250,-36.556463343608854,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.269346096564021,L, + 61581544000,-35.796154005960801,L, + 63505967250,-35.261449231692538,L, + 65430390500,-34.694464983406839,L, + 67354813750,-34.107826865784460,L, + 69279237000,-33.508399218941243,L, + 71203660250,-32.900457741297622,L, + 73128083500,-32.286949659480449,L, + 75052506750,-31.670046973645785,L, + 76976930000,-31.051429910329450,L, + 78901353250,-30.432502073405878,L, + 80825776500,-29.814475821452746,L, + 82750199750,-29.198461060210182,L, + 84674623000,-28.585494270884730,L, + 86599046250,-27.976588029020846,L, + 88523469500,-27.372802721487172,L, + 90447892750,-26.775232886098198,L, + 92372316000,-26.185055022938464,L, + 94296739250,-25.603624924558208,L, + 96221162500,-25.032452062764005,L, + 98145585750,-24.473336192402151,L, + 100070009000,-23.928437360797655,L, + 101994432250,-23.383722944300750,L, + 103918855500,-22.828903262926826,L, + 105843278750,-22.277666015772571,L, + 107767702000,-21.749338930641795,L, + 109692125250,-21.261448272944730,L, + 111616548500,-20.822016099861543,L, + 113540971750,-20.429199967863628,L, + 115465395000,-20.074950499014133,L, + 117389818250,-19.744427399793935,L, + 119314241500,-19.428727518619937,L, + 121238664750,-19.123438553288317,L, + 123163088000,-18.825976984745520,L, + 125087511250,-18.534689907212403,L, + 127011934500,-18.248436679097580,L, + 128936357750,-17.966392555058771,L, + 130860781000,-17.687937695428801,L, + 132785204250,-17.412593986965764,L, + 134709627500,-17.139980646623435,L, + 136634050750,-16.869788608341874,L, + 138558474000,-16.601766862669081,L, + 140482897250,-16.335705381288079,L, + 142407320500,-16.071431701922325,L, + 144331743750,-15.808781900031741,L, + 146256167000,-15.547636447305848,L, + 148180590250,-15.287875815434175,L, + 150105013500,-15.029409504410216,L, + 152029436750,-14.772138476491008,L, + 153953860000,-14.515994429784850,L, + 155878283250,-14.260901378437227,L, + 157802706500,-14.006806388482071,L, + 159727129750,-13.753642865574973,L, + 161651553000,-13.501366413486329,L, + 163575976250,-13.249938612402058,L, + 165500399500,-12.999308235903385,L, + 167424822750,-12.749441986818107,L, + 169349246000,-12.500307421747664,L, + 171273669250,-12.251866120877978,L, + 173198092500,-12.004095886094243,L, + 175122515750,-11.756967689092489,L, + 177046939000,-11.510457624210622,L, + 178971362250,-11.264541785786543,L, + 180895785500,-11.019197121931807,L, + 182820208750,-10.774410826041716,L, + 184744632000,-10.530157284906888,L, + 186669055250,-10.286426253243565,L, + 188593478500,-10.043194679163298,L, + 190517901750,-9.800452317382332,L, + 192442325000,-9.558187215069621,L, + 194366748250,-9.316382296752238,L, + 196291171500,-9.075028170920076,L, + 198215594750,-8.834113738515731,L, + 200140018000,-8.593627900481806,L, + 202064441250,-8.353562119081834,L, + 203988864500,-8.113906149032065,L, + 205913287750,-7.874652306369677,L, + 207837711000,-7.635790345810920,L, + 209762134250,-7.397317706034852,L, + 211686557500,-7.159225422418189,L, + 213610980750,-6.921506664771761,L, + 215535404000,-6.684157164227336,L, + 217459827250,-6.447169236822098,L, + 219384250500,-6.210540321235108,L, + 221308673750,-5.974265294824488,L, + 223233097000,-5.738340315608832,L, + 225157520250,-5.502762395380376,L, + 227081943500,-5.267525984610421,L, + 229006366750,-5.032634071506727,L, + 230930790000,-4.798076837672364,L, + 232855213250,-4.563858978862386,L, + 234779636500,-4.329974945548090,L, + 236704059750,-4.096426445276772,L, + 238628483000,-3.863211343614314,L, + 240552906250,-3.630331774994832,L, + 242477329500,-3.397786672201270,L, + 244401752750,-3.165574754573156,L, + 246326176000,-2.933700931308957,L, + 248250599250,-2.702167336842790,L, + 250175022500,-2.470976532495591,L, + 252099445750,-2.240127664493717,L, + 254023869000,-2.009630551234097,L, + 255948292250,-1.779485299438438,L, + 257872715500,-1.549700660286614,L, + 259797138750,-1.320284104298030,L, + 261721562000,-1.091241501166504,L, + 263645985250,-0.862581175185086,L, + 265570408500,-0.634315452710794,L, + 267494831750,-0.406451777582607,L, + 269419255000,-0.179011587523174,L, + 271343678250,0.047996596406310,L, + 273268101500,0.274551433199742,L, + 275192524750,0.500630668046413,L, + 277116948000,0.726212232898599,L, + 279041371250,0.951265311863756,L, + 280965794500,1.175758902286355,L, + 282890217750,1.399647487358879,L, + 284814641000,1.622885496912961,L, + 286739064250,1.845413166793363,L, + 288663487500,2.067156752301389,L, + 290587910750,2.288017962746015,L, + 292512334000,2.507890289864873,L, + 294436757250,2.726604686476003,L, + 296361180500,2.943950057045370,L, + 298285603750,3.159609438106805,L, + 300210027000,3.373119444013804,L, + 302134450250,3.583685424945120,L, + 304058873500,3.789774003432088,L, + 305983296750,3.987536154434000,L, + 307907720000,4.148649644783791,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -17.588963131713580 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-17.588963131713580,L, + 1924423250,-17.545446288964197,L, + 3848846500,-17.421500553643448,L, + 5773269750,-17.225757577314919,L, + 7697693000,-16.965397596343575,L, + 9622116250,-16.646501186638016,L, + 11546539500,-16.274250754230980,L, + 13470962750,-15.853133733407155,L, + 15395386000,-15.387053577277202,L, + 17319809250,-14.879464654013848,L, + 19244232500,-14.333411520439624,L, + 21168655750,-13.751627959769822,L, + 23093079000,-13.136591623125859,L, + 25017502250,-12.490560741802071,L, + 26941925500,-11.815599740475088,L, + 28866348750,-11.113657784379301,L, + 30790772000,-10.386562802891332,L, + 32715195250,-9.636081253685273,L, + 34639618500,-8.863953127452183,L, + 36564041750,-8.071922683751350,L, + 38488465000,-7.261815290638457,L, + 40412888250,-6.435633474200785,L, + 42337311500,-5.595628635543498,L, + 44261734750,-4.744569989488207,L, + 46186158000,-3.886053203746096,L, + 48110581250,-3.025205189062898,L, + 50035004500,-2.170226654754261,L, + 51959427750,-1.336359808283278,L, + 53883851000,-0.560468247817516,L, + 55808274250,-0.024740294202813,L, + 57732697500,-0.000005139521921,L, + 59657120750,-0.871888481867979,L, + 61581544000,-2.190781895617973,L, + 63505967250,-3.620834396953943,L, + 65430390500,-5.093903856569415,L, + 67354813750,-6.581761529511590,L, + 69279237000,-8.069273424127033,L, + 71203660250,-9.546981435962584,L, + 73128083500,-11.008271380580741,L, + 75052506750,-12.448126484036134,L, + 76976930000,-13.862448632826766,L, + 78901353250,-15.247683567263293,L, + 80825776500,-16.600580117300794,L, + 82750199750,-17.918063844039121,L, + 84674623000,-19.197102143486799,L, + 86599046250,-20.434647043726706,L, + 88523469500,-21.627539582267719,L, + 90447892750,-22.772439796605706,L, + 92372316000,-23.865818186487068,L, + 94296739250,-24.903813987483463,L, + 96221162500,-25.882253954012015,L, + 98145585750,-26.796491849889833,L, + 100070009000,-27.641350391726053,L, + 101994432250,-28.411025626273467,L, + 103918855500,-29.098904222868217,L, + 105843278750,-29.697423454551821,L, + 107767702000,-30.197847509375841,L, + 109692125250,-30.589948179058201,L, + 111616548500,-30.861595047632971,L, + 113540971750,-30.998294453681410,L, + 115465395000,-31.061139024234606,L, + 117389818250,-31.122422896562458,L, + 119314241500,-31.182224617840419,L, + 121238664750,-31.240568093730584,L, + 123163088000,-31.297528456313824,L, + 125087511250,-31.353160347103497,L, + 127011934500,-31.407504747234626,L, + 128936357750,-31.460599222747643,L, + 130860781000,-31.512505245345082,L, + 132785204250,-31.563236475405279,L, + 134709627500,-31.612854384630765,L, + 136634050750,-31.661382878683636,L, + 138558474000,-31.708856108509742,L, + 140482897250,-31.755308225054932,L, + 142407320500,-31.800766549075885,L, + 144331743750,-31.845254986234700,L, + 146256167000,-31.888824762950147,L, + 148180590250,-31.931472464127648,L, + 150105013500,-31.973239070902213,L, + 152029436750,-32.014138243652191,L, + 153953860000,-32.054193888039677,L, + 155878283250,-32.093433324821341,L, + 157802706500,-32.131873629470121,L, + 159727129750,-32.169531877458930,L, + 161651553000,-32.206431974449870,L, + 163575976250,-32.242584165726697,L, + 165500399500,-32.278012356951500,L, + 167424822750,-32.312726793408039,L, + 169349246000,-32.346751380758413,L, + 171273669250,-32.380096364286366,L, + 173198092500,-32.412771989275662,L, + 175122515750,-32.444795331199217,L, + 177046939000,-32.476180050435381,L, + 178971362250,-32.506943222457075,L, + 180895785500,-32.537091677453468,L, + 182820208750,-32.566635660708315,L, + 184744632000,-32.595585417505376,L, + 186669055250,-32.623961438412152,L, + 188593478500,-32.651760308334062,L, + 190517901750,-32.679012763122373,L, + 192442325000,-32.705705142398742,L, + 194366748250,-32.731854521636102,L, + 196291171500,-32.757477976307364,L, + 198215594750,-32.782582336601713,L, + 200140018000,-32.807164187424554,L, + 202064441250,-32.831240604248812,L, + 203988864500,-32.854818417263665,L, + 205913287750,-32.877911286847443,L, + 207837711000,-32.900519213000152,L, + 209762134250,-32.922645610816375,L, + 211686557500,-32.944297310485290,L, + 213610980750,-32.965491387479808,L, + 215535404000,-32.986227841799938,L, + 217459827250,-33.006510088540260,L, + 219384250500,-33.026355203173701,L, + 221308673750,-33.045746110227341,L, + 223233097000,-33.064706715363272,L, + 225157520250,-33.083240433676075,L, + 227081943500,-33.101350680260332,L, + 229006366750,-33.119034040021475,L, + 230930790000,-33.136307588432409,L, + 232855213250,-33.153167910398565,L, + 234779636500,-33.169621836109101,L, + 236704059750,-33.185669365564024,L, + 238628483000,-33.201310498763327,L, + 240552906250,-33.216569141369114,L, + 242477329500,-33.231421387719287,L, + 244401752750,-33.245894558570519,L, + 246326176000,-33.259974993544482,L, + 248250599250,-33.273676353019511,L, + 250175022500,-33.286995221901016,L, + 252099445750,-33.299935015283587,L, + 254023869000,-33.312495733167218,L, + 255948292250,-33.324684205741093,L, + 257872715500,-33.336493602816027,L, + 259797138750,-33.347934169675781,L, + 261721562000,-33.359005906320355,L, + 263645985250,-33.369708812749749,L, + 265570408500,-33.380049719153135,L, + 267494831750,-33.390008134962997,L, + 269419255000,-33.399618211125194,L, + 271343678250,-33.408838966504696,L, + 273268101500,-33.417701136952779,L, + 275192524750,-33.426197892280257,L, + 277116948000,-33.434322402297980,L, + 279041371250,-33.442064421722179,L, + 280965794500,-33.449441026025781,L, + 282890217750,-33.456435139735859,L, + 284814641000,-33.463043347757839,L, + 286739064250,-33.469272480280885,L, + 288663487500,-33.475098631642894,L, + 290587910750,-33.480528632033050,L, + 292512334000,-33.485545405978414,L, + 294436757250,-33.490142123289829,L, + 296361180500,-33.494301708494362,L, + 298285603750,-33.498003671024499,L, + 300210027000,-33.501234350501910,L, + 302134450250,-33.503932275224066,L, + 304058873500,-33.506070124434274,L, + 305983296750,-33.507538615105823,L, + 307907720000,-33.508126011374443,L, + 309832143250,-30.971082980028118,L, + 344471761750,-30.971082980028118,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000024914741516 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024914741516,L, + 1924423250,0.000024903212761,L, + 3848846500,0.000024870392735,L, + 5773269750,0.000024818562451,L, + 7697693000,0.000024749630029,L, + 9622116250,0.000024665208912,L, + 11546539500,0.000024566677894,L, + 13470962750,0.000024455228413,L, + 15395386000,0.000024331897293,L, + 17319809250,0.000024197603125,L, + 19244232500,0.000024053155357,L, + 21168655750,0.000023899285225,L, + 23093079000,0.000023736651201,L, + 25017502250,0.000023565857191,L, + 26941925500,0.000023387459805,L, + 28866348750,0.000023201979275,L, + 30790772000,0.000023009908546,L, + 32715195250,0.000022811720555,L, + 34639618500,0.000022607891879,L, + 36564041750,0.000022398895453,L, + 38488465000,0.000022185242415,L, + 40412888250,0.000021967467546,L, + 42337311500,0.000021746211132,L, + 44261734750,0.000021522235329,L, + 46186158000,0.000021296553314,L, + 48110581250,0.000021070605726,L, + 50035004500,0.000020846699044,L, + 51959427750,0.000020629131541,L, + 53883851000,0.000020428287826,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005785107613,L, + 61581544000,0.252660751342773,L, + 63505967250,0.263727903366089,L, + 65430390500,0.272284537553787,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487488508224,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415809154510,L, + 82750199750,0.307393610477448,L, + 84674623000,0.309100538492203,L, + 86599046250,0.310568481683731,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312890976667404,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536869525909,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327750682831,L, + 103918855500,0.316543042659760,L, + 105843278750,0.316690295934677,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851437091827,L, + 115465395000,0.316829293966293,L, + 117389818250,0.316763699054718,L, + 119314241500,0.316656172275543,L, + 121238664750,0.316507935523987,L, + 123163088000,0.316320091485977,L, + 125087511250,0.316093772649765,L, + 127011934500,0.315830111503601,L, + 128936357750,0.315529912710190,L, + 130860781000,0.315194189548492,L, + 132785204250,0.314823627471924,L, + 134709627500,0.314419120550156,L, + 136634050750,0.313981354236603,L, + 138558474000,0.313510924577713,L, + 140482897250,0.313008546829224,L, + 142407320500,0.312474846839905,L, + 144331743750,0.311910212039948,L, + 146256167000,0.311315298080444,L, + 148180590250,0.310690492391586,L, + 150105013500,0.310036242008209,L, + 152029436750,0.309352964162827,L, + 153953860000,0.308641076087952,L, + 155878283250,0.307900905609131,L, + 157802706500,0.307132661342621,L, + 159727129750,0.306336790323257,L, + 161651553000,0.305513560771942,L, + 163575976250,0.304663121700287,L, + 165500399500,0.303785711526871,L, + 167424822750,0.302881538867950,L, + 169349246000,0.301950812339783,L, + 171273669250,0.300993651151657,L, + 173198092500,0.300010174512863,L, + 175122515750,0.299000561237335,L, + 177046939000,0.297964841127396,L, + 178971362250,0.296903073787689,L, + 180895785500,0.295815408229828,L, + 182820208750,0.294701695442200,L, + 184744632000,0.293562114238739,L, + 186669055250,0.292396545410156,L, + 188593478500,0.291205018758774,L, + 190517901750,0.289987504482269,L, + 192442325000,0.288743883371353,L, + 194366748250,0.287474006414413,L, + 196291171500,0.286177933216095,L, + 198215594750,0.284855306148529,L, + 200140018000,0.283506125211716,L, + 202064441250,0.282130181789398,L, + 203988864500,0.280727237462997,L, + 205913287750,0.279297083616257,L, + 207837711000,0.277839422225952,L, + 209762134250,0.276354044675827,L, + 211686557500,0.274840533733368,L, + 213610980750,0.273298650979996,L, + 215535404000,0.271727979183197,L, + 217459827250,0.270128160715103,L, + 219384250500,0.268498659133911,L, + 221308673750,0.266839027404785,L, + 223233097000,0.265148788690567,L, + 225157520250,0.263427436351776,L, + 227081943500,0.261674225330353,L, + 229006366750,0.259888648986816,L, + 230930790000,0.258069932460785,L, + 232855213250,0.256217271089554,L, + 234779636500,0.254330009222031,L, + 236704059750,0.252407133579254,L, + 238628483000,0.250447750091553,L, + 240552906250,0.248450756072998,L, + 242477329500,0.246415138244629,L, + 244401752750,0.244339630007744,L, + 246326176000,0.242222949862480,L, + 248250599250,0.240063667297363,L, + 250175022500,0.237860232591629,L, + 252099445750,0.235610991716385,L, + 254023869000,0.233314022421837,L, + 255948292250,0.230967447161674,L, + 257872715500,0.228568956255913,L, + 259797138750,0.226116046309471,L, + 261721562000,0.223606169223785,L, + 263645985250,0.221036255359650,L, + 265570408500,0.218402981758118,L, + 267494831750,0.215702667832375,L, + 269419255000,0.212931126356125,L, + 271343678250,0.210083678364754,L, + 273268101500,0.207154974341393,L, + 275192524750,0.204138875007629,L, + 277116948000,0.201028391718864,L, + 279041371250,0.197815418243408,L, + 280965794500,0.194490507245064,L, + 282890217750,0.191042274236679,L, + 284814641000,0.187457352876663,L, + 286739064250,0.183719426393509,L, + 288663487500,0.179808422923088,L, + 290587910750,0.175699099898338,L, + 292512334000,0.171359047293663,L, + 294436757250,0.166745424270630,L, + 296361180500,0.161799460649490,L, + 298285603750,0.156436935067177,L, + 300210027000,0.150529175996780,L, + 302134450250,0.143860816955566,L, + 304058873500,0.136016324162483,L, + 305983296750,0.125945419073105,L, + 307907720000,0.106410592794418,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000021815299988 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000021815299988,L, + 1924423250,0.000021811507395,L, + 3848846500,0.000021800708055,L, + 5773269750,0.000021783653210,L, + 7697693000,0.000021760975869,L, + 9622116250,0.000021733196263,L, + 11546539500,0.000021700776415,L, + 13470962750,0.000021664103770,L, + 15395386000,0.000021623525754,L, + 17319809250,0.000021579338863,L, + 19244232500,0.000021531808670,L, + 21168655750,0.000021481180738,L, + 23093079000,0.000021427669708,L, + 25017502250,0.000021371472030,L, + 26941925500,0.000021312775061,L, + 28866348750,0.000021251744329,L, + 30790772000,0.000021188547180,L, + 32715195250,0.000021123338229,L, + 34639618500,0.000021056270270,L, + 36564041750,0.000020987507014,L, + 38488465000,0.000020917206712,L, + 40412888250,0.000020845549443,L, + 42337311500,0.000020772749849,L, + 44261734750,0.000020699055312,L, + 46186158000,0.000020624795070,L, + 48110581250,0.000020550454792,L, + 50035004500,0.000020476778445,L, + 51959427750,0.000020405197574,L, + 53883851000,0.000020339110051,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803917884827,L, + 59657120750,0.233176022768021,L, + 61581544000,0.246348842978477,L, + 63505967250,0.255807787179947,L, + 65430390500,0.263269215822220,L, + 67354813750,0.269431799650192,L, + 69279237000,0.274662673473358,L, + 71203660250,0.279183000326157,L, + 73128083500,0.283138453960419,L, + 75052506750,0.286631107330322,L, + 76976930000,0.289735883474350,L, + 78901353250,0.292509585618973,L, + 80825776500,0.294996857643127,L, + 82750199750,0.297233581542969,L, + 84674623000,0.299249053001404,L, + 86599046250,0.301067888736725,L, + 88523469500,0.302711188793182,L, + 90447892750,0.304197102785110,L, + 92372316000,0.305541932582855,L, + 94296739250,0.306760519742966,L, + 96221162500,0.307866930961609,L, + 98145585750,0.308874756097794,L, + 100070009000,0.309798061847687,L, + 101994432250,0.310652285814285,L, + 103918855500,0.311455816030502,L, + 105843278750,0.312232613563538,L, + 107767702000,0.313018739223480,L, + 109692125250,0.313877254724503,L, + 111616548500,0.314952105283737,L, + 113540971750,0.316851407289505,L, + 115465395000,0.315495789051056,L, + 117389818250,0.313826948404312,L, + 119314241500,0.312095195055008,L, + 121238664750,0.310327798128128,L, + 123163088000,0.308535605669022,L, + 125087511250,0.306724399328232,L, + 127011934500,0.304897457361221,L, + 128936357750,0.303057014942169,L, + 130860781000,0.301204681396484,L, + 132785204250,0.299341589212418,L, + 134709627500,0.297468602657318,L, + 136634050750,0.295586377382278,L, + 138558474000,0.293695449829102,L, + 140482897250,0.291796296834946,L, + 142407320500,0.289889127016068,L, + 144331743750,0.287974298000336,L, + 146256167000,0.286052167415619,L, + 148180590250,0.284122675657272,L, + 150105013500,0.282186090946198,L, + 152029436750,0.280242651700974,L, + 153953860000,0.278292268514633,L, + 155878283250,0.276335090398788,L, + 157802706500,0.274371176958084,L, + 159727129750,0.272400617599487,L, + 161651553000,0.270423412322998,L, + 163575976250,0.268439561128616,L, + 165500399500,0.266449093818665,L, + 167424822750,0.264452010393143,L, + 169349246000,0.262448221445084,L, + 171273669250,0.260437905788422,L, + 173198092500,0.258420735597610,L, + 175122515750,0.256396889686584,L, + 177046939000,0.254366278648376,L, + 178971362250,0.252328783273697,L, + 180895785500,0.250284373760223,L, + 182820208750,0.248232975602150,L, + 184744632000,0.246174573898315,L, + 186669055250,0.244108945131302,L, + 188593478500,0.242036089301109,L, + 190517901750,0.239955902099609,L, + 192442325000,0.237868219614029,L, + 194366748250,0.235772952437401,L, + 196291171500,0.233670026063919,L, + 198215594750,0.231559216976166,L, + 200140018000,0.229440435767174,L, + 202064441250,0.227313458919525,L, + 203988864500,0.225178211927414,L, + 205913287750,0.223034486174583,L, + 207837711000,0.220882073044777,L, + 209762134250,0.218720808625221,L, + 211686557500,0.216550439596176,L, + 213610980750,0.214370816946030,L, + 215535404000,0.212181672453880,L, + 217459827250,0.209982737898827,L, + 219384250500,0.207773774862289,L, + 221308673750,0.205554500222206,L, + 223233097000,0.203324615955353,L, + 225157520250,0.201083824038506,L, + 227081943500,0.198831766843796,L, + 229006366750,0.196568146348000,L, + 230930790000,0.194292485713959,L, + 232855213250,0.192004457116127,L, + 234779636500,0.189703613519669,L, + 236704059750,0.187389492988586,L, + 238628483000,0.185061603784561,L, + 240552906250,0.182719439268112,L, + 242477329500,0.180362328886986,L, + 244401752750,0.177989810705185,L, + 246326176000,0.175601124763489,L, + 248250599250,0.173195585608482,L, + 250175022500,0.170772477984428,L, + 252099445750,0.168330848217010,L, + 254023869000,0.165869876742363,L, + 255948292250,0.163388550281525,L, + 257872715500,0.160885766148567,L, + 259797138750,0.158360362052917,L, + 261721562000,0.155810981988907,L, + 263645985250,0.153236180543900,L, + 265570408500,0.150634378194809,L, + 267494831750,0.148003742098808,L, + 269419255000,0.145342245697975,L, + 271343678250,0.142647653818130,L, + 273268101500,0.139917373657227,L, + 275192524750,0.137148439884186,L, + 277116948000,0.134337469935417,L, + 279041371250,0.131480574607849,L, + 280965794500,0.128573104739189,L, + 282890217750,0.125609725713730,L, + 284814641000,0.122583881020546,L, + 286739064250,0.119487755000591,L, + 288663487500,0.116311669349670,L, + 290587910750,0.113043367862701,L, + 292512334000,0.109667286276817,L, + 294436757250,0.106162600219250,L, + 296361180500,0.102501004934311,L, + 298285603750,0.098641544580460,L, + 300210027000,0.094521664083004,L, + 302134450250,0.090036526322365,L, + 304058873500,0.084982611238956,L, + 305983296750,0.078841231763363,L, + 307907720000,0.067696742713451,L, + 309832143250,0.000028520822525,L, + 344471761750,0.000028520822525,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000024437904358 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024437904358,L, + 1924423250,0.000024427570679,L, + 3848846500,0.000024398132155,L, + 5773269750,0.000024351653337,L, + 7697693000,0.000024289836801,L, + 9622116250,0.000024214128644,L, + 11546539500,0.000024125771233,L, + 13470962750,0.000024025823222,L, + 15395386000,0.000023915223210,L, + 17319809250,0.000023794791559,L, + 19244232500,0.000023665254048,L, + 21168655750,0.000023527269150,L, + 23093079000,0.000023381424398,L, + 25017502250,0.000023228260034,L, + 26941925500,0.000023068278097,L, + 28866348750,0.000022901942430,L, + 30790772000,0.000022729698685,L, + 32715195250,0.000022551968868,L, + 34639618500,0.000022369182261,L, + 36564041750,0.000022181760869,L, + 38488465000,0.000021990157620,L, + 40412888250,0.000021794867280,L, + 42337311500,0.000021596446459,L, + 44261734750,0.000021395591830,L, + 46186158000,0.000021193203793,L, + 48110581250,0.000020990581106,L, + 50035004500,0.000020789786504,L, + 51959427750,0.000020594679881,L, + 53883851000,0.000020414569008,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005800008774,L, + 61581544000,0.252660721540451,L, + 63505967250,0.263727903366089,L, + 65430390500,0.272284537553787,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487458705902,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415779352188,L, + 82750199750,0.307393610477448,L, + 84674623000,0.309100568294525,L, + 86599046250,0.310568422079086,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312891006469727,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536869525909,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644145011902,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327750682831,L, + 103918855500,0.316543012857437,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851407289505,L, + 115465395000,0.316826760768890,L, + 117389818250,0.316753774881363,L, + 119314241500,0.316634118556976,L, + 121238664750,0.316469311714172,L, + 123163088000,0.316260606050491,L, + 125087511250,0.316009342670441,L, + 127011934500,0.315716743469238,L, + 128936357750,0.315383911132812,L, + 130860781000,0.315011799335480,L, + 132785204250,0.314601510763168,L, + 134709627500,0.314153850078583,L, + 136634050750,0.313669651746750,L, + 138558474000,0.313149839639664,L, + 140482897250,0.312595009803772,L, + 142407320500,0.312005907297134,L, + 144331743750,0.311383128166199,L, + 146256167000,0.310727417469025,L, + 148180590250,0.310039281845093,L, + 150105013500,0.309319168329239,L, + 152029436750,0.308567672967911,L, + 153953860000,0.307785183191299,L, + 155878283250,0.306972175836563,L, + 157802706500,0.306129038333893,L, + 159727129750,0.305256128311157,L, + 161651553000,0.304353833198547,L, + 163575976250,0.303422331809998,L, + 165500399500,0.302462100982666,L, + 167424822750,0.301473289728165,L, + 169349246000,0.300456166267395,L, + 171273669250,0.299410939216614,L, + 173198092500,0.298337787389755,L, + 175122515750,0.297236979007721,L, + 177046939000,0.296108484268188,L, + 178971362250,0.294952630996704,L, + 180895785500,0.293769359588623,L, + 182820208750,0.292558819055557,L, + 184744632000,0.291321128606796,L, + 186669055250,0.290056198835373,L, + 188593478500,0.288764148950577,L, + 190517901750,0.287444978952408,L, + 192442325000,0.286098718643188,L, + 194366748250,0.284725159406662,L, + 196291171500,0.283324331045151,L, + 198215594750,0.281896203756332,L, + 200140018000,0.280440568923950,L, + 202064441250,0.278957337141037,L, + 203988864500,0.277446419000626,L, + 205913287750,0.275907546281815,L, + 207837711000,0.274340510368347,L, + 209762134250,0.272745102643967,L, + 211686557500,0.271121054887772,L, + 213610980750,0.269468128681183,L, + 215535404000,0.267785936594009,L, + 217459827250,0.266074150800705,L, + 219384250500,0.264332413673401,L, + 221308673750,0.262560218572617,L, + 223233097000,0.260757267475128,L, + 225157520250,0.258922934532166,L, + 227081943500,0.257056683301926,L, + 229006366750,0.255157977342606,L, + 230930790000,0.253226161003113,L, + 232855213250,0.251260548830032,L, + 234779636500,0.249260380864143,L, + 236704059750,0.247224882245064,L, + 238628483000,0.245153129100800,L, + 240552906250,0.243044212460518,L, + 242477329500,0.240897089242935,L, + 244401752750,0.238710612058640,L, + 246326176000,0.236483648419380,L, + 248250599250,0.234214812517166,L, + 250175022500,0.231902748346329,L, + 252099445750,0.229545757174492,L, + 254023869000,0.227142214775085,L, + 255948292250,0.224690183997154,L, + 257872715500,0.222187682986259,L, + 259797138750,0.219632327556610,L, + 261721562000,0.217021659016609,L, + 263645985250,0.214352831244469,L, + 265570408500,0.211622744798660,L, + 267494831750,0.208827942609787,L, + 269419255000,0.205964475870132,L, + 271343678250,0.203028008341789,L, + 273268101500,0.200013414025307,L, + 275192524750,0.196915000677109,L, + 277116948000,0.193726226687431,L, + 279041371250,0.190439388155937,L, + 280965794500,0.187045633792877,L, + 282890217750,0.183534309267998,L, + 284814641000,0.179892778396606,L, + 286739064250,0.176105767488480,L, + 288663487500,0.172154322266579,L, + 290587910750,0.168014794588089,L, + 292512334000,0.163656637072563,L, + 294436757250,0.159039616584778,L, + 296361180500,0.154108479619026,L, + 298285603750,0.148784071207047,L, + 300210027000,0.142945423722267,L, + 302134450250,0.136390209197998,L, + 304058873500,0.128728121519089,L, + 305983296750,0.118972584605217,L, + 307907720000,0.100327968597412,L, + 309832143250,0.000042378902435,L, + 344471761750,0.000042378902435,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_036" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.026851654052734 + KeyVer: 4005 + KeyCount: 53 + Key: + 0,-0.026851654052734,L, + 1924423250,-0.026951611042023,L, + 3848846500,-0.027262568473816,L, + 5773269750,-0.027791082859039,L, + 7697693000,-0.028524041175842,L, + 9622116250,-0.029421746730804,L, + 11546539500,-0.030421435832977,L, + 13470962750,-0.031449675559998,L, + 15395386000,-0.032440304756165,L, + 17319809250,-0.033345997333527,L, + 19244232500,-0.034140169620514,L, + 21168655750,-0.034875929355621,L, + 23093079000,-0.035615682601929,L, + 25017502250,-0.036359071731567,L, + 26941925500,-0.037105381488800,L, + 28866348750,-0.037854850292206,L, + 30790772000,-0.038606703281403,L, + 32715195250,-0.039360880851746,L, + 34639618500,-0.040117025375366,L, + 36564041750,-0.040875077247620,L, + 38488465000,-0.041634857654572,L, + 40412888250,-0.042396008968353,L, + 42337311500,-0.043158650398254,L, + 44261734750,-0.043922066688538,L, + 46186158000,-0.044686734676361,L, + 48110581250,-0.045451998710632,L, + 50035004500,-0.046217978000641,L, + 51959427750,-0.046984314918518,L, + 53883851000,-0.047750771045685,L, + 57732697500,-0.049284517765045,L, + 59657120750,-0.050050973892212,L, + 61581544000,-0.050817072391510,L, + 63505967250,-0.051582694053650,L, + 65430390500,-0.052347183227539,L, + 67354813750,-0.053110837936401,L, + 69279237000,-0.053873002529144,L, + 71203660250,-0.054633378982544,L, + 73128083500,-0.055391848087311,L, + 75052506750,-0.056147515773773,L, + 76976930000,-0.056900322437286,L, + 78901353250,-0.057649552822113,L, + 80825776500,-0.058394074440002,L, + 82750199750,-0.059132516384125,L, + 84674623000,-0.059864044189453,L, + 86599046250,-0.060586214065552,L, + 88523469500,-0.061295568943024,L, + 90447892750,-0.061987102031708,L, + 92372316000,-0.062650263309479,L, + 94296739250,-0.063259422779083,L, + 96221162500,-0.063678026199341,L, + 169349246000,-0.063678026199341,L, + 171273669250,0.039614200592041,L, + 344471761750,0.039614200592041,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062055885791779 + KeyVer: 4005 + KeyCount: 52 + Key: + 0,-0.062055885791779,L, + 1924423250,-0.062124669551849,L, + 3848846500,-0.062338173389435,L, + 5773269750,-0.062701046466827,L, + 7697693000,-0.063204109668732,L, + 9622116250,-0.063820660114288,L, + 11546539500,-0.064506888389587,L, + 13470962750,-0.065212905406952,L, + 15395386000,-0.065893113613129,L, + 17319809250,-0.066514968872070,L, + 19244232500,-0.067059993743896,L, + 21168655750,-0.067565202713013,L, + 23093079000,-0.068073153495789,L, + 25017502250,-0.068583488464355,L, + 26941925500,-0.069095909595490,L, + 28866348750,-0.069610416889191,L, + 30790772000,-0.070126533508301,L, + 32715195250,-0.070644319057465,L, + 34639618500,-0.071163654327393,L, + 36564041750,-0.071684122085571,L, + 38488465000,-0.072205722332001,L, + 40412888250,-0.072728455066681,L, + 42337311500,-0.073251724243164,L, + 44261734750,-0.073776006698608,L, + 46186158000,-0.074300944805145,L, + 48110581250,-0.074826419353485,L, + 50035004500,-0.075352191925049,L, + 51959427750,-0.075878381729126,L, + 57732697500,-0.077457666397095,L, + 59657120750,-0.077983915805817,L, + 61581544000,-0.078509986400604,L, + 63505967250,-0.079035460948944,L, + 65430390500,-0.079560339450836,L, + 67354813750,-0.080084621906281,L, + 69279237000,-0.080607950687408,L, + 71203660250,-0.081130087375641,L, + 73128083500,-0.081650674343109,L, + 75052506750,-0.082169711589813,L, + 76976930000,-0.082686543464661,L, + 78901353250,-0.083200752735138,L, + 80825776500,-0.083711743354797,L, + 82750199750,-0.084219098091125,L, + 84674623000,-0.084721326828003,L, + 86599046250,-0.085216999053955,L, + 88523469500,-0.085704088211060,L, + 90447892750,-0.086178660392761,L, + 92372316000,-0.086633920669556,L, + 94296739250,-0.087052285671234,L, + 96221162500,-0.087339758872986,L, + 169349246000,-0.087339758872986,L, + 171273669250,-0.016423046588898,L, + 344471761750,-0.016423046588898,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.934078574180603 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,0.934078574180603,L, + 1924423250,0.934932589530945,L, + 3848846500,0.937636494636536,L, + 5773269750,0.942345976829529,L, + 7697693000,0.949074864387512,L, + 9622116250,0.957623839378357,L, + 11546539500,0.967566847801208,L, + 13470962750,0.978338360786438,L, + 15395386000,0.989373326301575,L, + 17319809250,1.000218033790588,L, + 19244232500,1.010571122169495,L, + 21168655750,1.020764946937561,L, + 23093079000,1.031244397163391,L, + 25017502250,1.041984200477600,L, + 26941925500,1.052961707115173,L, + 28866348750,1.064158082008362,L, + 30790772000,1.075555682182312,L, + 32715195250,1.087140440940857,L, + 34639618500,1.098897099494934,L, + 36564041750,1.110814929008484,L, + 38488465000,1.122882246971130,L, + 40412888250,1.135089516639709,L, + 42337311500,1.147426724433899,L, + 44261734750,1.159886002540588,L, + 46186158000,1.172459244728088,L, + 48110581250,1.185138821601868,L, + 50035004500,1.197918295860291,L, + 51959427750,1.210790276527405,L, + 53883851000,1.223749279975891,L, + 55808274250,1.236788392066956,L, + 57732697500,1.249902367591858,L, + 59657120750,1.263084769248962,L, + 61581544000,1.276329874992371,L, + 63505967250,1.289631724357605,L, + 65430390500,1.302984118461609,L, + 67354813750,1.316380143165588,L, + 69279237000,1.329813838005066,L, + 71203660250,1.343276858329773,L, + 73128083500,1.356761813163757,L, + 75052506750,1.370258450508118,L, + 76976930000,1.383756041526794,L, + 78901353250,1.397241711616516,L, + 80825776500,1.410698533058167,L, + 82750199750,1.424105763435364,L, + 84674623000,1.437435030937195,L, + 86599046250,1.450646519660950,L, + 88523469500,1.463679909706116,L, + 90447892750,1.476435303688049,L, + 92372316000,1.488722205162048,L, + 94296739250,1.500070691108704,L, + 96221162500,1.507912755012512,L, + 98145585750,0.101423621177673,L, + 169349246000,0.101423621177673,L, + 171273669250,0.692347049713135,L, + 344471761750,0.692347049713135,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 31.672478520990307 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,31.672478520990307,L, + 1924423250,31.669756690606061,L, + 3848846500,31.661290671129841,L, + 5773269750,31.646916538021568,L, + 7697693000,31.626975800739746,L, + 9622116250,31.602547629173230,L, + 11546539500,31.575346400803692,L, + 13470962750,31.547366530868775,L, + 15395386000,31.520411189309360,L, + 17319809250,31.495767866783989,L, + 19244232500,31.474160563344686,L, + 21168655750,31.454137863792820,L, + 23093079000,31.434016126497994,L, + 25017502250,31.413788521271030,L, + 26941925500,31.393475538679439,L, + 28866348750,31.373090839101568,L, + 30790772000,31.352634422537406,L, + 32715195250,31.332109704081549,L, + 34639618500,31.311530344112331,L, + 36564041750,31.290906587913508,L, + 38488465000,31.270231605295908,L, + 40412888250,31.249522471732458,L, + 42337311500,31.228768941939403,L, + 44261734750,31.208001751768009,L, + 46186158000,31.187193580461596,L, + 48110581250,31.166378578966011,L, + 50035004500,31.145539671808333,L, + 51959427750,31.124676858988561,L, + 53883851000,31.103827706547126,L, + 55808274250,31.082958063538182,L, + 57732697500,31.062095250718407,L, + 59657120750,31.041239268087804,L, + 61581544000,31.020390115646371,L, + 63505967250,30.999571699056201,L, + 65430390500,30.978760112655202,L, + 67354813750,30.957979262105468,L, + 69279237000,30.937242807785339,L, + 71203660250,30.916554164789400,L, + 73128083500,30.895920163306823,L, + 75052506750,30.875354463715944,L, + 76976930000,30.854874141489688,L, + 78901353250,30.834489441911813,L, + 80825776500,30.814244761211928,L, + 82750199750,30.794133269200852,L, + 84674623000,30.774230097959464,L, + 86599046250,30.754579643717367,L, + 88523469500,30.735280944217521,L, + 90447892750,30.716470603243334,L, + 92372316000,30.698428658550771,L, + 94296739250,30.681851789435175,L, + 96221162500,30.670459033899608,L, + 98145585750,30.670462448994193,L, + 169349246000,30.670462448994193,L, + 171273669250,33.480952103761588,L, + 344471761750,33.480952103761588,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 49.355209904724269 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,49.355209904724269,L, + 1924423250,49.477302951232659,L, + 3848846500,49.856696053964228,L, + 5773269750,50.501472741801670,L, + 7697693000,51.395568409817152,L, + 9622116250,52.490932677199694,L, + 11546539500,53.710582481814193,L, + 13470962750,54.965011609682350,L, + 15395386000,56.173630658787289,L, + 17319809250,57.278710870264163,L, + 19244232500,58.247539053083230,L, + 21168655750,59.145217155318377,L, + 23093079000,60.047737861675053,L, + 25017502250,60.954575247587172,L, + 26941925500,61.865292180947854,L, + 28866348750,62.779485680596068,L, + 30790772000,63.696807406884140,L, + 32715195250,64.616936340921086,L, + 34639618500,65.539585614761762,L, + 36564041750,66.464495681217713,L, + 38488465000,67.391400162911296,L, + 40412888250,68.320087323978257,L, + 42337311500,69.250324937986804,L, + 44261734750,70.181908099261847,L, + 46186158000,71.114638732317445,L, + 48110581250,72.048318761667687,L, + 50035004500,72.982743281637440,L, + 51959427750,73.917741537497491,L, + 53883851000,74.853088133005201,L, + 55808274250,75.788584992674657,L, + 57732697500,76.724040871209084,L, + 59657120750,77.659237202555062,L, + 61581544000,78.593914439524113,L, + 63505967250,79.527840355684461,L, + 65430390500,80.460734913280135,L, + 67354813750,81.392283923609327,L, + 69279237000,82.322145877213529,L, + 71203660250,83.249938283499219,L, + 73128083500,84.175183029224499,L, + 75052506750,85.097326869066592,L, + 76976930000,86.015734595432704,L, + 78901353250,86.929566095054909,L, + 80825776500,87.837790009368533,L, + 82750199750,88.739047130728764,L, + 84674623000,89.631493308059689,L, + 86599046250,90.512498918530852,L, + 88523469500,91.378054641099482,L, + 90447892750,92.221576173405666,L, + 92372316000,93.030468646619951,L, + 94296739250,93.773866435883065,L, + 96221162500,94.284634812205056,L, + 169349246000,94.284634812205056,L, + 171273669250,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.829353478811785 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,-0.829353478811785,L, + 1924423250,-0.832997384733982,L, + 3848846500,-0.844472315982998,L, + 5773269750,-0.864314495769533,L, + 7697693000,-0.892433210643671,L, + 9622116250,-0.927806600272558,L, + 11546539500,-0.968471198713228,L, + 13470962750,-1.011948554431470,L, + 15395386000,-1.055820140130869,L, + 17319809250,-1.098221954498247,L, + 19244232500,-1.137953805230389,L, + 21168655750,-1.176579378760402,L, + 23093079000,-1.216114968275611,L, + 25017502250,-1.256473061977278,L, + 26941925500,-1.297587919294639,L, + 28866348750,-1.339392412274760,L, + 30790772000,-1.381833927116689,L, + 32715195250,-1.424863905444296,L, + 34639618500,-1.468434749376802,L, + 36564041750,-1.512518177662176,L, + 38488465000,-1.557067019306463,L, + 40412888250,-1.602057261925860,L, + 42337311500,-1.647450378984582,L, + 44261734750,-1.693225453028296,L, + 46186158000,-1.739354096083263,L, + 48110581250,-1.785813256261034,L, + 50035004500,-1.832581162333631,L, + 51959427750,-1.879635402742839,L, + 53883851000,-1.926955166756031,L, + 55808274250,-1.974518896588639,L, + 57732697500,-2.022307809220445,L, + 59657120750,-2.070300560310294,L, + 61581544000,-2.118480714715495,L, + 63505967250,-2.166824793660776,L, + 65430390500,-2.215308037710396,L, + 67354813750,-2.263919988137187,L, + 69279237000,-2.312627561212359,L, + 71203660250,-2.361405997500170,L, + 73128083500,-2.410226055253235,L, + 75052506750,-2.459056785176879,L, + 76976930000,-2.507858913683373,L, + 78901353250,-2.556582281571000,L, + 80825776500,-2.605172887656636,L, + 82750199750,-2.653553251981883,L, + 84674623000,-2.701621562039424,L, + 86599046250,-2.749229047771403,L, + 88523469500,-2.796168028738367,L, + 90447892750,-2.842075010810426,L, + 92372316000,-2.886263773419406,L, + 94296739250,-2.927042777528674,L, + 96221162500,-2.955201086155657,L, + 98145585750,-2.955197457617661,L, + 167424822750,-2.955197457617661,L, + 169349246000,-2.955200872712246,L, + 171273669250,0.259471602811992,L, + 344471761750,0.259471602811992,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.428362101316452 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.428362101316452,L, + 1924423250,0.428899466991425,L, + 3848846500,0.430516600608826,L, + 5773269750,0.433145970106125,L, + 7697693000,0.436585068702698,L, + 9622116250,0.440480977296829,L, + 11546539500,0.444376945495605,L, + 13470962750,0.447815984487534,L, + 15395386000,0.450445413589478,L, + 17319809250,0.452062487602234,L, + 19244232500,0.452599883079529,L, + 21168655750,0.452372878789902,L, + 23093079000,0.451713770627975,L, + 25017502250,0.450651943683624,L, + 26941925500,0.449211984872818,L, + 28866348750,0.447414904832840,L, + 30790772000,0.445278704166412,L, + 32715195250,0.442818790674210,L, + 34639618500,0.440048128366470,L, + 36564041750,0.436977833509445,L, + 38488465000,0.433617234230042,L, + 40412888250,0.429974049329758,L, + 42337311500,0.426054537296295,L, + 44261734750,0.421863585710526,L, + 46186158000,0.417404830455780,L, + 48110581250,0.412680655717850,L, + 50035004500,0.407692193984985,L, + 51959427750,0.402439296245575,L, + 53883851000,0.396920740604401,L, + 55808274250,0.391133695840836,L, + 57732697500,0.385074079036713,L, + 59657120750,0.378736227750778,L, + 61581544000,0.372112780809402,L, + 63505967250,0.365194231271744,L, + 65430390500,0.357968926429749,L, + 67354813750,0.350422471761703,L, + 69279237000,0.342537224292755,L, + 71203660250,0.334291487932205,L, + 73128083500,0.325658679008484,L, + 75052506750,0.316605746746063,L, + 76976930000,0.307091385126114,L, + 78901353250,0.297062844038010,L, + 80825776500,0.286452144384384,L, + 82750199750,0.275168448686600,L, + 84674623000,0.263087481260300,L, + 86599046250,0.250030964612961,L, + 88523469500,0.235727399587631,L, + 90447892750,0.219726890325546,L, + 92372316000,0.201174840331078,L, + 94296739250,0.177984789013863,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380201451,L, + 171273669250,0.162417262792587,L, + 344471761750,0.162417262792587,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.754271447658539 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271447658539,L, + 1924423250,0.754455566406250,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087826728821,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934472084045,L, + 15395386000,0.761835098266602,L, + 17319809250,0.762389004230499,L, + 19244232500,0.762572944164276,L, + 21168655750,0.761945605278015,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314971923828,L, + 28866348750,0.748457908630371,L, + 30790772000,0.742718994617462,L, + 32715195250,0.736150920391083,L, + 34639618500,0.728799879550934,L, + 36564041750,0.720706462860107,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309975624084,L, + 44261734750,0.681565821170807,L, + 46186158000,0.670221090316772,L, + 48110581250,0.658294379711151,L, + 50035004500,0.645802140235901,L, + 51959427750,0.632758319377899,L, + 53883851000,0.619174361228943,L, + 55808274250,0.605059623718262,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591233730316,L, + 63505967250,0.543401956558228,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695612668991,L, + 71203660250,0.473382711410522,L, + 73128083500,0.454504817724228,L, + 75052506750,0.435037285089493,L, + 76976930000,0.414948284626007,L, + 78901353250,0.394194751977921,L, + 80825776500,0.372720092535019,L, + 82750199750,0.350447148084641,L, + 84674623000,0.327268719673157,L, + 86599046250,0.303029805421829,L, + 88523469500,0.277493596076965,L, + 90447892750,0.250267505645752,L, + 92372316000,0.220607563853264,L, + 94296739250,0.186706766486168,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370066043,L, + 167424822750,0.000075370066043,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417247891426,L, + 344471761750,0.162417247891426,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.754271566867828 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271566867828,L, + 1924423250,0.754455626010895,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087886333466,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934531688690,L, + 15395386000,0.761835038661957,L, + 17319809250,0.762389004230499,L, + 19244232500,0.762572944164276,L, + 21168655750,0.761945545673370,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314912319183,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742719054222107,L, + 32715195250,0.736150860786438,L, + 34639618500,0.728799819946289,L, + 36564041750,0.720706403255463,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309916019440,L, + 44261734750,0.681565940380096,L, + 46186158000,0.670220971107483,L, + 48110581250,0.658294439315796,L, + 50035004500,0.645802199840546,L, + 51959427750,0.632758259773254,L, + 53883851000,0.619174361228943,L, + 55808274250,0.605059564113617,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591174125671,L, + 63505967250,0.543402016162872,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695553064346,L, + 71203660250,0.473382741212845,L, + 73128083500,0.454504758119583,L, + 75052506750,0.435037314891815,L, + 76976930000,0.414948254823685,L, + 78901353250,0.394194781780243,L, + 80825776500,0.372720122337341,L, + 82750199750,0.350447148084641,L, + 84674623000,0.327268689870834,L, + 86599046250,0.303029745817184,L, + 88523469500,0.277493566274643,L, + 90447892750,0.250267505645752,L, + 92372316000,0.220607578754425,L, + 94296739250,0.186706781387329,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370066043,L, + 167424822750,0.000075370066043,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417247891426,L, + 344471761750,0.162417247891426,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_035" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210820198059 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-0.014210820198059,L, + 3848846500,-0.014210700988770,L, + 5773269750,-0.014210879802704,L, + 7697693000,-0.014210760593414,L, + 9622116250,-0.014210820198059,L, + 11546539500,-0.014210700988770,L, + 15395386000,-0.014210820198059,L, + 17319809250,-0.014210820198059,L, + 19244232500,-0.014210939407349,L, + 21168655750,-0.014210700988770,L, + 23093079000,-0.014210879802704,L, + 25017502250,-0.014210700988770,L, + 26941925500,-0.014210641384125,L, + 28866348750,-0.014210760593414,L, + 30790772000,-0.014210760593414,L, + 32715195250,-0.014210820198059,L, + 34639618500,-0.014210820198059,L, + 36564041750,-0.014210879802704,L, + 38488465000,-0.014210700988770,L, + 44261734750,-0.014210879802704,L, + 46186158000,-0.014210700988770,L, + 48110581250,-0.014210879802704,L, + 50035004500,-0.014210939407349,L, + 51959427750,-0.014210879802704,L, + 53883851000,-0.014210879802704,L, + 55808274250,-0.014210760593414,L, + 57732697500,-0.014210939407349,L, + 59657120750,-0.014210760593414,L, + 61581544000,-0.014210820198059,L, + 63505967250,-0.014210700988770,L, + 65430390500,-0.014210939407349,L, + 67354813750,-0.014210700988770,L, + 69279237000,-0.014210879802704,L, + 71203660250,-0.014210760593414,L, + 73128083500,-0.014210760593414,L, + 75052506750,-0.014210820198059,L, + 76976930000,-0.014210760593414,L, + 78901353250,-0.014210820198059,L, + 80825776500,-0.014210939407349,L, + 82750199750,-0.014210760593414,L, + 84674623000,-0.014210641384125,L, + 86599046250,-0.014210879802704,L, + 88523469500,-0.014210879802704,L, + 90447892750,-0.014210700988770,L, + 92372316000,-0.014210700988770,L, + 98145585750,-0.014210879802704,L, + 101994432250,-0.014210879802704,L, + 103918855500,-0.014210641384125,L, + 105843278750,-0.014210939407349,L, + 109692125250,-0.014210700988770,L, + 111616548500,-0.014210700988770,L, + 113540971750,-0.014210760593414,L, + 115465395000,-0.014210939407349,L, + 117389818250,-0.014210700988770,L, + 119314241500,-0.014210700988770,L, + 121238664750,-0.014210879802704,L, + 123163088000,-0.014210820198059,L, + 125087511250,-0.014210581779480,L, + 127011934500,-0.014210700988770,L, + 128936357750,-0.014210700988770,L, + 130860781000,-0.014210820198059,L, + 132785204250,-0.014210700988770,L, + 134709627500,-0.014210760593414,L, + 136634050750,-0.014210879802704,L, + 138558474000,-0.014210820198059,L, + 140482897250,-0.014210879802704,L, + 142407320500,-0.014210760593414,L, + 144331743750,-0.014210879802704,L, + 146256167000,-0.014210760593414,L, + 150105013500,-0.014210879802704,L, + 152029436750,-0.014210820198059,L, + 153953860000,-0.014210820198059,L, + 155878283250,-0.014210760593414,L, + 157802706500,-0.014210820198059,L, + 159727129750,-0.014210700988770,L, + 161651553000,-0.014210700988770,L, + 163575976250,-0.014210760593414,L, + 165500399500,-0.014210939407349,L, + 169349246000,-0.014210820198059,L, + 171273669250,-0.014210879802704,L, + 173198092500,-0.014210820198059,L, + 175122515750,-0.014210820198059,L, + 177046939000,-0.014210879802704,L, + 178971362250,-0.014210820198059,L, + 180895785500,-0.014210820198059,L, + 182820208750,-0.014210879802704,L, + 184744632000,-0.014210760593414,L, + 186669055250,-0.014210760593414,L, + 188593478500,-0.014210879802704,L, + 190517901750,-0.014210760593414,L, + 192442325000,-0.014210879802704,L, + 194366748250,-0.014210700988770,L, + 196291171500,-0.014210641384125,L, + 198215594750,-0.014210820198059,L, + 200140018000,-0.014210879802704,L, + 202064441250,-0.014210879802704,L, + 203988864500,-0.014210760593414,L, + 207837711000,-0.014210760593414,L, + 209762134250,-0.014210879802704,L, + 211686557500,-0.014210641384125,L, + 213610980750,-0.014210700988770,L, + 215535404000,-0.014210939407349,L, + 219384250500,-0.014210700988770,L, + 221308673750,-0.014210939407349,L, + 223233097000,-0.014210820198059,L, + 225157520250,-0.014210879802704,L, + 227081943500,-0.014210760593414,L, + 230930790000,-0.014210999011993,L, + 232855213250,-0.014210760593414,L, + 234779636500,-0.014210820198059,L, + 238628483000,-0.014210700988770,L, + 240552906250,-0.014210820198059,L, + 242477329500,-0.014210820198059,L, + 244401752750,-0.014210999011993,L, + 246326176000,-0.014210700988770,L, + 248250599250,-0.014210879802704,L, + 250175022500,-0.014210820198059,L, + 255948292250,-0.014210820198059,L, + 257872715500,-0.014210641384125,L, + 259797138750,-0.014210939407349,L, + 261721562000,-0.014210700988770,L, + 263645985250,-0.014210760593414,L, + 265570408500,-0.014210700988770,L, + 269419255000,-0.014210700988770,L, + 271343678250,-0.014210879802704,L, + 273268101500,-0.014210700988770,L, + 275192524750,-0.014210760593414,L, + 277116948000,-0.014210879802704,L, + 279041371250,-0.014210879802704,L, + 280965794500,-0.014210700988770,L, + 282890217750,-0.014210939407349,L, + 284814641000,-0.014210820198059,L, + 286739064250,-0.014210820198059,L, + 290587910750,-0.014210939407349,L, + 292512334000,-0.014210700988770,L, + 294436757250,-0.014210820198059,L, + 296361180500,-0.014210641384125,L, + 298285603750,-0.014210879802704,L, + 300210027000,-0.014210760593414,L, + 302134450250,-0.014210820198059,L, + 304058873500,-0.014210760593414,L, + 305983296750,-0.014210820198059,L, + 307907720000,-0.014210760593414,L, + 344471761750,-0.014210760593414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.037070691585541 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.037070691585541,L, + 1924423250,0.037118136882782,L, + 3848846500,0.037261545658112,L, + 5773269750,0.037502586841583,L, + 7697693000,0.037842869758606,L, + 9622116250,0.038283348083496,L, + 11546539500,0.038824677467346,L, + 13470962750,0.039466798305511,L, + 15395386000,0.040209174156189,L, + 17319809250,0.041050553321838,L, + 19244232500,0.041988670825958,L, + 21168655750,0.043020844459534,L, + 23093079000,0.044143021106720,L, + 25017502250,0.045350670814514,L, + 26941925500,0.046637773513794,L, + 28866348750,0.047997772693634,L, + 30790772000,0.049422979354858,L, + 32715195250,0.050905108451843,L, + 34639618500,0.052434921264648,L, + 36564041750,0.054002821445465,L, + 38488465000,0.055598676204681,L, + 40412888250,0.057212412357330,L, + 42337311500,0.058833539485931,L, + 44261734750,0.060451865196228,L, + 46186158000,0.062057733535767,L, + 48110581250,0.063641965389252,L, + 50035004500,0.065195858478546,L, + 51959427750,0.066711366176605,L, + 53883851000,0.068181455135345,L, + 55808274250,0.069599807262421,L, + 57732697500,0.070961058139801,L, + 59657120750,0.072260379791260,L, + 61581544000,0.073494195938110,L, + 63505967250,0.074659287929535,L, + 65430390500,0.075753390789032,L, + 67354813750,0.076774477958679,L, + 69279237000,0.077721655368805,L, + 71203660250,0.078594028949738,L, + 73128083500,0.079391539096832,L, + 75052506750,0.080145180225372,L, + 76976930000,0.080883979797363,L, + 78901353250,0.081604242324829,L, + 80825776500,0.082302093505859,L, + 82750199750,0.082973778247833,L, + 84674623000,0.083614110946655,L, + 86599046250,0.084218919277191,L, + 88523469500,0.084783554077148,L, + 90447892750,0.085304021835327,L, + 92372316000,0.085777044296265,L, + 94296739250,0.086200296878815,L, + 96221162500,0.086572349071503,L, + 98145585750,0.086893558502197,L, + 100070009000,0.087164938449860,L, + 101994432250,0.087388753890991,L, + 103918855500,0.087567865848541,L, + 105843278750,0.087706267833710,L, + 107767702000,0.087807297706604,L, + 109692125250,0.087875068187714,L, + 111616548500,0.087912976741791,L, + 113540971750,0.087924957275391,L, + 115465395000,0.087909221649170,L, + 117389818250,0.087862849235535,L, + 119314241500,0.087787210941315,L, + 121238664750,0.087683320045471,L, + 123163088000,0.087552130222321,L, + 125087511250,0.087394893169403,L, + 127011934500,0.087212502956390,L, + 128936357750,0.087005674839020,L, + 130860781000,0.086775481700897,L, + 132785204250,0.086522400379181,L, + 134709627500,0.086247503757477,L, + 136634050750,0.085951387882233,L, + 138558474000,0.085634589195251,L, + 140482897250,0.085298001766205,L, + 142407320500,0.084941804409027,L, + 144331743750,0.084566950798035,L, + 146256167000,0.084173738956451,L, + 148180590250,0.083762943744659,L, + 150105013500,0.083334684371948,L, + 152029436750,0.082889616489410,L, + 153953860000,0.082428157329559,L, + 155878283250,0.081951022148132,L, + 157802706500,0.081458091735840,L, + 159727129750,0.080950081348419,L, + 161651553000,0.080427289009094,L, + 163575976250,0.079890191555023,L, + 165500399500,0.079338908195496,L, + 167424822750,0.078773677349091,L, + 169349246000,0.078195273876190,L, + 171273669250,0.077603518962860,L, + 173198092500,0.076998949050903,L, + 175122515750,0.076381742954254,L, + 177046939000,0.075752437114716,L, + 178971362250,0.075110793113708,L, + 180895785500,0.074457466602325,L, + 182820208750,0.073792457580566,L, + 184744632000,0.073116123676300,L, + 186669055250,0.072428762912750,L, + 188593478500,0.071730315685272,L, + 190517901750,0.071021139621735,L, + 192442325000,0.070301473140717,L, + 194366748250,0.069571435451508,L, + 196291171500,0.068831324577332,L, + 198215594750,0.068081200122833,L, + 200140018000,0.067321300506592,L, + 202064441250,0.066551804542542,L, + 203988864500,0.065772771835327,L, + 205913287750,0.064984500408173,L, + 207837711000,0.064186990261078,L, + 209762134250,0.063380539417267,L, + 211686557500,0.062565207481384,L, + 213610980750,0.061741054058075,L, + 215535404000,0.060908436775208,L, + 217459827250,0.060067176818848,L, + 219384250500,0.059217810630798,L, + 221308673750,0.058360099792480,L, + 223233097000,0.057494342327118,L, + 225157520250,0.056620538234711,L, + 227081943500,0.055739045143127,L, + 229006366750,0.054849505424500,L, + 230930790000,0.053952574729919,L, + 232855213250,0.053047955036163,L, + 234779636500,0.052136003971100,L, + 236704059750,0.051216661930084,L, + 238628483000,0.050290107727051,L, + 240552906250,0.049356460571289,L, + 242477329500,0.048415660858154,L, + 244401752750,0.047467887401581,L, + 246326176000,0.046513199806213,L, + 248250599250,0.045552074909210,L, + 250175022500,0.044583916664124,L, + 252099445750,0.043609440326691,L, + 254023869000,0.042628228664398,L, + 255948292250,0.041640698909760,L, + 257872715500,0.040646791458130,L, + 259797138750,0.039646744728088,L, + 261721562000,0.038640499114990,L, + 263645985250,0.037628233432770,L, + 265570408500,0.036609947681427,L, + 267494831750,0.035585880279541,L, + 269419255000,0.034555912017822,L, + 271343678250,0.033520400524139,L, + 273268101500,0.032479345798492,L, + 275192524750,0.031432867050171,L, + 277116948000,0.030381083488464,L, + 279041371250,0.029324054718018,L, + 280965794500,0.028262257575989,L, + 282890217750,0.027195751667023,L, + 284814641000,0.026124536991119,L, + 286739064250,0.025049448013306,L, + 288663487500,0.023970186710358,L, + 290587910750,0.022887647151947,L, + 292512334000,0.021802186965942,L, + 294436757250,0.020714640617371,L, + 296361180500,0.019626319408417,L, + 298285603750,0.018538534641266,L, + 300210027000,0.017453849315643,L, + 302134450250,0.016377031803131,L, + 304058873500,0.015316486358643,L, + 305983296750,0.014295518398285,L, + 307907720000,0.013481914997101,L, + 344471761750,0.013481914997101,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.708404541015625 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.708404541015625,L, + 1924423250,0.708638668060303,L, + 3848846500,0.709349155426025,L, + 5773269750,0.710548400878906,L, + 7697693000,0.712247133255005,L, + 9622116250,0.714454650878906,L, + 11546539500,0.717178702354431,L, + 13470962750,0.720424294471741,L, + 15395386000,0.724193930625916,L, + 17319809250,0.728487610816956,L, + 19244232500,0.733301043510437,L, + 21168655750,0.738626241683960,L, + 23093079000,0.744451284408569,L, + 25017502250,0.750759482383728,L, + 26941925500,0.757529616355896,L, + 28866348750,0.764735341072083,L, + 30790772000,0.772346496582031,L, + 32715195250,0.780327558517456,L, + 34639618500,0.788639903068542,L, + 36564041750,0.797241449356079,L, + 38488465000,0.806086897850037,L, + 40412888250,0.815129876136780,L, + 42337311500,0.824322700500488,L, + 44261734750,0.833617687225342,L, + 46186158000,0.842967987060547,L, + 48110581250,0.852328419685364,L, + 50035004500,0.861655592918396,L, + 51959427750,0.870909690856934,L, + 53883851000,0.880053520202637,L, + 55808274250,0.889053463935852,L, + 57732697500,0.897879719734192,L, + 59657120750,0.906506180763245,L, + 61581544000,0.914910197257996,L, + 63505967250,0.923073172569275,L, + 65430390500,0.930978417396545,L, + 67354813750,0.938613533973694,L, + 69279237000,0.945968747138977,L, + 71203660250,0.953036189079285,L, + 73128083500,0.959810614585876,L, + 75052506750,0.966705918312073,L, + 76976930000,0.974127650260925,L, + 78901353250,0.982049345970154,L, + 80825776500,0.990428566932678,L, + 82750199750,0.999204039573669,L, + 84674623000,1.008293986320496,L, + 86599046250,1.017594933509827,L, + 88523469500,1.026982665061951,L, + 90447892750,1.036315560340881,L, + 92372316000,1.045439600944519,L, + 94296739250,1.054199576377869,L, + 96221162500,1.062444090843201,L, + 98145585750,1.070038437843323,L, + 100070009000,1.076868891716003,L, + 101994432250,1.082848191261292,L, + 103918855500,1.087917447090149,L, + 105843278750,1.092044234275818,L, + 107767702000,1.095218539237976,L, + 109692125250,1.097450375556946,L, + 111616548500,1.098763585090637,L, + 113540971750,1.099192500114441,L, + 115465395000,1.098993420600891,L, + 117389818250,1.098407864570618,L, + 119314241500,1.097451090812683,L, + 121238664750,1.096137404441833,L, + 123163088000,1.094480633735657,L, + 125087511250,1.092493176460266,L, + 127011934500,1.090187430381775,L, + 128936357750,1.087574362754822,L, + 130860781000,1.084664463996887,L, + 132785204250,1.081467747688293,L, + 134709627500,1.077993273735046,L, + 136634050750,1.074250340461731,L, + 138558474000,1.070246815681458,L, + 140482897250,1.065991520881653,L, + 142407320500,1.061491370201111,L, + 144331743750,1.056753277778625,L, + 146256167000,1.051784634590149,L, + 148180590250,1.046591401100159,L, + 150105013500,1.041179776191711,L, + 152029436750,1.035556197166443,L, + 153953860000,1.029725432395935,L, + 155878283250,1.023693203926086,L, + 157802706500,1.017464995384216,L, + 159727129750,1.011044859886169,L, + 161651553000,1.004438042640686,L, + 163575976250,0.997648835182190,L, + 165500399500,0.990681529045105,L, + 167424822750,0.983540177345276,L, + 169349246000,0.976228833198547,L, + 171273669250,0.968751311302185,L, + 173198092500,0.961110949516296,L, + 175122515750,0.953311324119568,L, + 177046939000,0.945356011390686,L, + 178971362250,0.937248349189758,L, + 180895785500,0.928990960121155,L, + 182820208750,0.920587182044983,L, + 184744632000,0.912039637565613,L, + 186669055250,0.903351426124573,L, + 188593478500,0.894525170326233,L, + 190517901750,0.885563373565674,L, + 192442325000,0.876468420028687,L, + 194366748250,0.867243051528931,L, + 196291171500,0.857888936996460,L, + 198215594750,0.848409295082092,L, + 200140018000,0.838805794715881,L, + 202064441250,0.829080343246460,L, + 203988864500,0.819235324859619,L, + 205913287750,0.809272885322571,L, + 207837711000,0.799194335937500,L, + 209762134250,0.789002180099487,L, + 211686557500,0.778697848320007,L, + 213610980750,0.768283009529114,L, + 215535404000,0.757759571075439,L, + 217459827250,0.747129440307617,L, + 219384250500,0.736393690109253,L, + 221308673750,0.725554347038269,L, + 223233097000,0.714612483978271,L, + 225157520250,0.703570127487183,L, + 227081943500,0.692428112030029,L, + 229006366750,0.681188225746155,L, + 230930790000,0.669851779937744,L, + 232855213250,0.658419847488403,L, + 234779636500,0.646894097328186,L, + 236704059750,0.635275602340698,L, + 238628483000,0.623565912246704,L, + 240552906250,0.611765742301941,L, + 242477329500,0.599876523017883,L, + 244401752750,0.587899446487427,L, + 246326176000,0.575835704803467,L, + 248250599250,0.563686490058899,L, + 250175022500,0.551452636718750,L, + 252099445750,0.539135694503784,L, + 254023869000,0.526736497879028,L, + 255948292250,0.514256119728088,L, + 257872715500,0.501695752143860,L, + 259797138750,0.489056587219238,L, + 261721562000,0.476339697837830,L, + 263645985250,0.463546395301819,L, + 265570408500,0.450677633285522,L, + 267494831750,0.437734723091125,L, + 269419255000,0.424719095230103,L, + 271343678250,0.411631941795349,L, + 273268101500,0.398474931716919,L, + 275192524750,0.385249376296997,L, + 277116948000,0.371957063674927,L, + 279041371250,0.358600139617920,L, + 280965794500,0.345180869102478,L, + 282890217750,0.331701517105103,L, + 284814641000,0.318165302276611,L, + 286739064250,0.304575562477112,L, + 288663487500,0.290937185287476,L, + 290587910750,0.277255654335022,L, + 292512334000,0.263538241386414,L, + 294436757250,0.249794840812683,L, + 296361180500,0.236039519309998,L, + 298285603750,0.222292542457581,L, + 300210027000,0.208586096763611,L, + 302134450250,0.194976091384888,L, + 304058873500,0.181573390960693,L, + 305983296750,0.168670296669006,L, + 307907720000,0.158387780189514,L, + 309832143250,0.645345807075500,L, + 344471761750,0.645345807075500,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 44.316787674782788 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,44.316787674782788,L, + 1924423250,44.334467619449342,L, + 3848846500,44.387753340259117,L, + 5773269750,44.476965856103114,L, + 7697693000,44.602255431143064,L, + 9622116250,44.763594744622289,L, + 11546539500,44.960741324825250,L, + 13470962750,45.193199983037132,L, + 15395386000,45.460215983354637,L, + 17319809250,45.760706740794333,L, + 19244232500,46.093302802427630,L, + 21168655750,46.456241979448656,L, + 23093079000,46.847413743403898,L, + 25017502250,47.264321660151708,L, + 26941925500,47.704148276659460,L, + 28866348750,48.163669743638920,L, + 30790772000,48.639389004235035,L, + 32715195250,49.127508473269295,L, + 34639618500,49.624015414604322,L, + 36564041750,50.124767318508503,L, + 38488465000,50.625508977128924,L, + 40412888250,51.122026163747705,L, + 42337311500,51.610142217687383,L, + 44261734750,52.085854648094326,L, + 46186158000,52.545382945262958,L, + 48110581250,52.985199316486955,L, + 50035004500,53.402117478518520,L, + 51959427750,53.793292657568344,L, + 53883851000,54.156221589305616,L, + 55808274250,54.488814235844330,L, + 57732697500,54.789311823473192,L, + 59657120750,55.056320993601531,L, + 61581544000,55.288789897097168,L, + 63505967250,55.485929647110964,L, + 65430390500,55.647272375684771,L, + 67354813750,55.772561950724722,L, + 69279237000,55.861774466568711,L, + 71203660250,55.915063602473076,L, + 73128083500,55.932733301855876,L, + 75052506750,55.855944900112114,L, + 76976930000,55.623564789075694,L, + 78901353250,55.234199610155919,L, + 80825776500,54.689225646470554,L, + 82750199750,53.993553804032828,L, + 84674623000,53.156384347654736,L, + 86599046250,52.191777221742733,L, + 88523469500,51.118955993715787,L, + 90447892750,49.962102948330298,L, + 92372316000,48.749641917817222,L, + 94296739250,47.512892734615619,L, + 96221162500,46.284322702945097,L, + 98145585750,45.095654636405733,L, + 100070009000,43.976015876712999,L, + 101994432250,42.950602991715044,L, + 103918855500,42.039838247030175,L, + 105843278750,41.259065662628799,L, + 107767702000,40.618813975116481,L, + 109692125250,40.125281581164991,L, + 111616548500,39.781077613037276,L, + 113540971750,39.585918617882783,L, + 115465395000,39.466141005503026,L, + 117389818250,39.349341355601389,L, + 119314241500,39.235389894583648,L, + 121238664750,39.124187584706831,L, + 123163088000,39.015631973133388,L, + 125087511250,38.909610361742018,L, + 127011934500,38.806051033546431,L, + 128936357750,38.704854950803671,L, + 130860781000,38.605943566338269,L, + 132785204250,38.509241748069371,L, + 134709627500,38.414688024294435,L, + 136634050750,38.322200432743422,L, + 138558474000,38.231720916808399,L, + 140482897250,38.143194834975986,L, + 142407320500,38.056553885354504,L, + 144331743750,37.971757086808914,L, + 146256167000,37.888739552542113,L, + 148180590250,37.807460301419077,L, + 150105013500,37.727871522115620,L, + 152029436750,37.649925403307549,L, + 153953860000,37.573574133670668,L, + 155878283250,37.498804052826642,L, + 157802706500,37.425536613600023,L, + 159727129750,37.353771815990804,L, + 161651553000,37.283444773201872,L, + 163575976250,37.214545239949466,L, + 165500399500,37.147018574720228,L, + 167424822750,37.080861362419583,L, + 169349246000,37.016018961534158,L, + 171273669250,36.952474296591035,L, + 173198092500,36.890196631738952,L, + 175122515750,36.829162061315806,L, + 177046939000,36.769350094754088,L, + 178971362250,36.710723166013366,L, + 180895785500,36.653274444904476,L, + 182820208750,36.596969780481551,L, + 184744632000,36.541778436893345,L, + 186669055250,36.487717489612770,L, + 188593478500,36.434728882031891,L, + 190517901750,36.382798953772358,L, + 192442325000,36.331924289739590,L, + 194366748250,36.282080984271495,L, + 196291171500,36.233255376989725,L, + 198215594750,36.185409901853859,L, + 200140018000,36.138561634336803,L, + 202064441250,36.092673008398144,L, + 203988864500,36.047733778754107,L, + 205913287750,36.003733700120947,L, + 207837711000,35.960652281931154,L, + 209762134250,35.918482693995557,L, + 211686557500,35.877207860841231,L, + 213610980750,35.836810706995244,L, + 215535404000,35.797301477741364,L, + 217459827250,35.758646022133732,L, + 219384250500,35.720840925077766,L, + 221308673750,35.683869111100542,L, + 223233097000,35.647730580202058,L, + 225157520250,35.612411672003972,L, + 227081943500,35.577902141222530,L, + 229006366750,35.544191742573979,L, + 230930790000,35.511280476058324,L, + 232855213250,35.479151266202628,L, + 234779636500,35.447797282817731,L, + 236704059750,35.417211695714457,L, + 238628483000,35.387387674703639,L, + 240552906250,35.358318389596107,L, + 242477329500,35.330003840391861,L, + 244401752750,35.302423536523385,L, + 246326176000,35.275587723274448,L, + 248250599250,35.249475910077521,L, + 250175022500,35.224105172405551,L, + 252099445750,35.199448189501837,L, + 254023869000,35.175508376460975,L, + 255948292250,35.152278903093794,L, + 257872715500,35.129756354305712,L, + 259797138750,35.107950975380476,L, + 261721562000,35.086855936128927,L, + 263645985250,35.066457576172709,L, + 265570408500,35.046762725701008,L, + 267494831750,35.027767969619227,L, + 269419255000,35.009476723021962,L, + 271343678250,34.991885570814617,L, + 273268101500,34.974994512997199,L, + 275192524750,34.958810379758880,L, + 277116948000,34.943329756005070,L, + 279041371250,34.928562887019524,L, + 280965794500,34.914506357707651,L, + 282890217750,34.901180658636981,L, + 284814641000,34.888578959618322,L, + 286739064250,34.876714921030029,L, + 288663487500,34.865602203250432,L, + 290587910750,34.855261296847047,L, + 292512334000,34.845692201819872,L, + 294436757250,34.836929069114760,L, + 296361180500,34.829009464772142,L, + 298285603750,34.821947049170362,L, + 300210027000,34.815806709106525,L, + 302134450250,34.810653331377758,L, + 304058873500,34.806592783916194,L, + 305983296750,34.803785576167321,L, + 307907720000,34.802665425143438,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -10.500351193142642 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-10.500351193142642,L, + 1924423250,-10.511125816558321,L, + 3848846500,-10.543745946260609,L, + 5773269750,-10.598606025674073,L, + 7697693000,-10.676031342557934,L, + 9622116250,-10.776256684664910,L, + 11546539500,-10.899410971815588,L, + 13470962750,-11.045504449293718,L, + 15395386000,-11.214400513315905,L, + 17319809250,-11.405805465747836,L, + 19244232500,-11.619244608442196,L, + 21168655750,-11.854051144181264,L, + 23093079000,-12.109349101203989,L, + 25017502250,-12.384044795469521,L, + 26941925500,-12.676834514620037,L, + 28866348750,-12.986187442507809,L, + 30790772000,-13.310373833725537,L, + 32715195250,-13.647481235305616,L, + 34639618500,-13.995433269740369,L, + 36564041750,-14.352027201022468,L, + 38488465000,-14.714974915779960,L, + 40412888250,-15.081937074222123,L, + 42337311500,-15.450576044105523,L, + 44261734750,-15.818576391301525,L, + 46186158000,-16.183726842066346,L, + 48110581250,-16.543910037757279,L, + 50035004500,-16.897158883893368,L, + 51959427750,-17.241675333175611,L, + 53883851000,-17.575838923223419,L, + 55808274250,-17.898208484121923,L, + 57732697500,-18.207557996915114,L, + 59657120750,-18.502820244545170,L, + 61581544000,-18.783134623176675,L, + 63505967250,-19.047804453514289,L, + 65430390500,-19.296283320424411,L, + 67354813750,-19.528171657840595,L, + 69279237000,-19.743206503479797,L, + 71203660250,-19.941220517707354,L, + 73128083500,-20.122172719388242,L, + 75052506750,-20.293079420347347,L, + 76976930000,-20.460478819167655,L, + 78901353250,-20.623592274283787,L, + 80825776500,-20.781530153556353,L, + 82750199750,-20.933339645596131,L, + 84674623000,-21.078001344669499,L, + 86599046250,-21.214485599759083,L, + 88523469500,-21.341795203246061,L, + 90447892750,-21.459018324876237,L, + 92372316000,-21.565436087239465,L, + 94296739250,-21.660531103506123,L, + 96221162500,-21.744059194413385,L, + 98145585750,-21.816057926001676,L, + 100070009000,-21.876820996405314,L, + 101994432250,-21.926877745284976,L, + 103918855500,-21.966926559483287,L, + 105843278750,-21.997771693775022,L, + 107767702000,-22.020289119921227,L, + 109692125250,-22.035354809682961,L, + 111616548500,-22.043812291422718,L, + 113540971750,-22.046462404820680,L, + 115465395000,-22.042886800790182,L, + 117389818250,-22.032358064184621,L, + 119314241500,-22.015154525212676,L, + 121238664750,-21.991540853704684,L, + 123163088000,-21.961750983639718,L, + 125087511250,-21.926023971638724,L, + 127011934500,-21.884569846018685,L, + 128936357750,-21.837588389812819,L, + 130860781000,-21.785274263412475,L, + 132785204250,-21.727799929094193,L, + 134709627500,-21.665339556681808,L, + 136634050750,-21.598046825431645,L, + 138558474000,-21.526075414600033,L, + 140482897250,-21.449572173254122,L, + 142407320500,-21.368665167440852,L, + 144331743750,-21.283487585849038,L, + 146256167000,-21.194155541694570,L, + 148180590250,-21.100791978382507,L, + 150105013500,-21.003507886486862,L, + 152029436750,-20.902397181108725,L, + 153953860000,-20.797574267916687,L, + 155878283250,-20.689127939369968,L, + 157802706500,-20.577152110569646,L, + 159727129750,-20.461730451333061,L, + 161651553000,-20.342955169214001,L, + 163575976250,-20.220896273651462,L, + 165500399500,-20.095639142010072,L, + 167424822750,-19.967250368634232,L, + 169349246000,-19.835805085604822,L, + 171273669250,-19.701369887266239,L, + 173198092500,-19.564013075510186,L, + 175122515750,-19.423792706944610,L, + 177046939000,-19.280770253272042,L, + 178971362250,-19.135008893742302,L, + 180895785500,-18.986554732132287,L, + 182820208750,-18.835470947691821,L, + 184744632000,-18.681801936650512,L, + 186669055250,-18.525604048069006,L, + 188593478500,-18.366921678176915,L, + 190517901750,-18.205804345845713,L, + 192442325000,-18.042294739757722,L, + 194366748250,-17.876438963689832,L, + 196291171500,-17.708274583682481,L, + 198215594750,-17.537844288417986,L, + 200140018000,-17.365190766578650,L, + 202064441250,-17.190346461563038,L, + 203988864500,-17.013355769600750,L, + 205913287750,-16.834242596353889,L, + 207837711000,-16.653053045599343,L, + 209762134250,-16.469814438093795,L, + 211686557500,-16.284559217235806,L, + 213610980750,-16.097323241518517,L, + 215535404000,-15.908133831698603,L, + 217459827250,-15.717021723627337,L, + 219384250500,-15.524014238061394,L, + 221308673750,-15.329140403304747,L, + 223233097000,-15.132429247661371,L, + 225157520250,-14.933901261698772,L, + 227081943500,-14.733592303910097,L, + 229006366750,-14.531519449768266,L, + 230930790000,-14.327710020029963,L, + 232855213250,-14.122187920357282,L, + 234779636500,-13.914975348865026,L, + 236704059750,-13.706100480083521,L, + 238628483000,-13.495573559296520,L, + 240552906250,-13.283431298770815,L, + 242477329500,-13.069684797563802,L, + 244401752750,-12.854360522658522,L, + 246326176000,-12.637477257075187,L, + 248250599250,-12.419052930060371,L, + 250175022500,-12.199115716144398,L, + 252099445750,-11.977676714384673,L, + 254023869000,-11.754763245537871,L, + 255948292250,-11.530388969982337,L, + 257872715500,-11.304576939606514,L, + 259797138750,-11.077348498751565,L, + 261721562000,-10.848724137984995,L, + 263645985250,-10.618722640327023,L, + 265570408500,-10.387367911439746,L, + 267494831750,-10.154676173022439,L, + 269419255000,-9.920678160926370,L, + 271343678250,-9.685395219492694,L, + 273268101500,-9.448856377025383,L, + 275192524750,-9.211084685412887,L, + 277116948000,-8.972116856921994,L, + 279041371250,-8.731984481177616,L, + 280965794500,-8.490728539314773,L, + 282890217750,-8.248396842657653,L, + 284814641000,-8.005035494983156,L, + 286739064250,-7.760721335919444,L, + 288663487500,-7.515529497547385,L, + 290587910750,-7.269558163836301,L, + 292512334000,-7.022945219230060,L, + 294436757250,-6.775865260439319,L, + 296361180500,-6.528571858237016,L, + 298285603750,-6.281425305101868,L, + 300210027000,-6.035010009094733,L, + 302134450250,-5.790324031608078,L, + 304058873500,-5.549368618068715,L, + 305983296750,-5.317398318382490,L, + 307907720000,-5.132534125854483,L, + 344471761750,-5.132534125854483,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 25.061420602581279 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,25.061420602581279,L, + 1924423250,25.059265677898143,L, + 3848846500,25.052780413281226,L, + 5773269750,25.041911874764459,L, + 7697693000,25.026653232158672,L, + 9622116250,25.007007900558452,L, + 11546539500,24.982996370531307,L, + 13470962750,24.954683528874352,L, + 15395386000,24.922164998235967,L, + 17319809250,24.885563722021214,L, + 19244232500,24.845060700243096,L, + 21168655750,24.800860838576714,L, + 23093079000,24.753218561568652,L, + 25017502250,24.702448057920726,L, + 26941925500,24.648873761618518,L, + 28866348750,24.592907191559512,L, + 30790772000,24.534973527019549,L, + 32715195250,24.475523560483843,L, + 34639618500,24.415054188214516,L, + 36564041750,24.354072551757437,L, + 38488465000,24.293084085111186,L, + 40412888250,24.232613005294567,L, + 42337311500,24.173171576495324,L, + 44261734750,24.115231081766186,L, + 46186158000,24.059264511707184,L, + 48110581250,24.005695338046852,L, + 50035004500,23.954924834398927,L, + 51959427750,23.907280849843570,L, + 53883851000,23.863079280629897,L, + 55808274250,23.822571136209902,L, + 57732697500,23.785976690184320,L, + 59657120750,23.753458159545936,L, + 61581544000,23.725143610341689,L, + 63505967250,23.701138910503712,L, + 65430390500,23.681483333619738,L, + 67354813750,23.666231521203120,L, + 69279237000,23.655361275139061,L, + 71203660250,23.648876010522141,L, + 73128083500,23.646724500933590,L, + 75052506750,23.691453702260649,L, + 76976930000,23.826667542164611,L, + 78901353250,24.052842426340089,L, + 80825776500,24.368805269797132,L, + 82750199750,24.771251968524751,L, + 84674623000,25.254327342856964,L, + 86599046250,25.809288750656165,L, + 88523469500,26.424379728813488,L, + 90447892750,27.084920493255304,L, + 92372316000,27.773825325772847,L, + 94296739250,28.472377800493017,L, + 96221162500,29.161287755652442,L, + 98145585750,29.821828520094254,L, + 100070009000,30.436917790704285,L, + 101994432250,30.991880906050778,L, + 103918855500,31.474959695477576,L, + 105843278750,31.877397856468733,L, + 107767702000,32.193369237662239,L, + 109692125250,32.419540706743135,L, + 111616548500,32.554754546647096,L, + 113540971750,32.599488870616028,L, + 115465395000,32.598136493160368,L, + 117389818250,32.594168153252596,L, + 119314241500,32.587679473541094,L, + 121238664750,32.578769491768824,L, + 123163088000,32.567537245678757,L, + 125087511250,32.554051037162587,L, + 127011934500,32.538426979436203,L, + 128936357750,32.520709468729216,L, + 130860781000,32.500973637122492,L, + 132785204250,32.479301446886069,L, + 134709627500,32.455737294249559,L, + 136634050750,32.430359726388417,L, + 138558474000,32.403209724437652,L, + 140482897250,32.374359005383560,L, + 142407320500,32.343845135266577,L, + 144331743750,32.311715925410880,L, + 146256167000,32.278026017329843,L, + 148180590250,32.242809561969302,L, + 150105013500,32.206117785748049,L, + 152029436750,32.167984839611925,L, + 153953860000,32.128444874506776,L, + 155878283250,32.087542286662213,L, + 157802706500,32.045314642118669,L, + 159727129750,32.001779016349069,L, + 161651553000,31.956986635772193,L, + 163575976250,31.910951160766373,L, + 165500399500,31.863696496993708,L, + 167424822750,31.815280701062143,L, + 169349246000,31.765703772971676,L, + 171273669250,31.714999863668158,L, + 173198092500,31.663186048624517,L, + 175122515750,31.610306724070355,L, + 177046939000,31.556358474911086,L, + 178971362250,31.501389112470903,L, + 180895785500,31.445398636749804,L, + 182820208750,31.388417783599053,L, + 184744632000,31.330449968113239,L, + 186669055250,31.271536171427378,L, + 188593478500,31.211690053919813,L, + 190517901750,31.150921860874295,L, + 192442325000,31.089255497952923,L, + 194366748250,31.026701210439452,L, + 196291171500,30.963272658712221,L, + 198215594750,30.898990333338737,L, + 200140018000,30.833874724886513,L, + 202064441250,30.767925833355552,L, + 203988864500,30.701170979502528,L, + 205913287750,30.633613578422029,L, + 207837711000,30.565277535776151,L, + 209762134250,30.496173096848644,L, + 211686557500,30.426300261639515,L, + 213610980750,30.355679520716269,L, + 215535404000,30.284327949551834,L, + 217459827250,30.212242133051621,L, + 219384250500,30.139442561783145,L, + 221308673750,30.065942896124746,L, + 223233097000,29.991753381360173,L, + 225157520250,29.916877432584016,L, + 227081943500,29.841321879985443,L, + 229006366750,29.765110629226552,L, + 230930790000,29.688243680307338,L, + 232855213250,29.610724448322390,L, + 234779636500,29.532573423839214,L, + 236704059750,29.453790606857815,L, + 238628483000,29.374386242661949,L, + 240552906250,29.294373991629946,L, + 242477329500,29.213757268856401,L, + 244401752750,29.132549734719653,L, + 246326176000,29.050744559030527,L, + 248250599250,28.968362232356537,L, + 250175022500,28.885406169792265,L, + 252099445750,28.801890031716056,L, + 254023869000,28.717813818127905,L, + 255948292250,28.633189481858860,L, + 257872715500,28.548022145550803,L, + 259797138750,28.462318639392898,L, + 261721562000,28.376084086027024,L, + 263645985250,28.289335560926112,L, + 265570408500,28.202083309373908,L, + 267494831750,28.114317086086661,L, + 269419255000,28.026060796726469,L, + 271343678250,27.937324686577085,L, + 273268101500,27.848108755638506,L, + 275192524750,27.758430079383661,L, + 277116948000,27.668297195549009,L, + 279041371250,27.577732302249355,L, + 280965794500,27.486733691937406,L, + 282890217750,27.395335515559012,L, + 284814641000,27.303549725945221,L, + 286739064250,27.211401936305418,L, + 288663487500,27.118924590038162,L, + 290587910750,27.026151838089305,L, + 292512334000,26.933141737066791,L, + 294436757250,26.839952343578563,L, + 296361180500,26.746677572725709,L, + 298285603750,26.653462566028093,L, + 300210027000,26.560520766897280,L, + 302134450250,26.468238081021369,L, + 304058873500,26.377358999019897,L, + 305983296750,26.289867690846744,L, + 307907720000,26.220139997157474,L, + 309832143250,26.220138289610183,L, + 344471761750,26.220138289610183,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.457654863595963 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.457654863595963,L, + 1924423250,0.457997202873230,L, + 3848846500,0.459029167890549,L, + 5773269750,0.460756957530975,L, + 7697693000,0.463183522224426,L, + 9622116250,0.466308236122131,L, + 11546539500,0.470126360654831,L, + 13470962750,0.474628478288651,L, + 15395386000,0.479799747467041,L, + 17319809250,0.485619634389877,L, + 19244232500,0.492060989141464,L, + 21168655750,0.499090135097504,L, + 23093079000,0.506665945053101,L, + 25017502250,0.514740526676178,L, + 26941925500,0.523258507251740,L, + 28866348750,0.532158315181732,L, + 30790772000,0.541371583938599,L, + 32715195250,0.550825059413910,L, + 34639618500,0.560441195964813,L, + 36564041750,0.570139348506927,L, + 38488465000,0.579837441444397,L, + 40412888250,0.589453577995300,L, + 42337311500,0.598906934261322,L, + 44261734750,0.608120262622833,L, + 46186158000,0.617020070552826,L, + 48110581250,0.625538170337677,L, + 50035004500,0.633612692356110,L, + 51959427750,0.641188502311707,L, + 53883851000,0.648217618465424,L, + 55808274250,0.654658973217010,L, + 57732697500,0.660478830337524,L, + 59657120750,0.665650188922882,L, + 61581544000,0.670152366161346,L, + 63505967250,0.673970401287079,L, + 65430390500,0.677095115184784,L, + 67354813750,0.679521620273590,L, + 69279237000,0.681249439716339,L, + 71203660250,0.682281613349915,L, + 73128083500,0.682623744010925,L, + 75052506750,0.679885864257812,L, + 76976930000,0.671603858470917,L, + 78901353250,0.657734930515289,L, + 80825776500,0.638335943222046,L, + 82750199750,0.613591670989990,L, + 84674623000,0.583840250968933,L, + 86599046250,0.549594640731812,L, + 88523469500,0.511552035808563,L, + 90447892750,0.470587253570557,L, + 92372316000,0.427724719047546,L, + 94296739250,0.384091138839722,L, + 96221162500,0.340852260589600,L, + 98145585750,0.299143642187119,L, + 100070009000,0.260006994009018,L, + 101994432250,0.224340260028839,L, + 103918855500,0.192868635058403,L, + 105843278750,0.166135385632515,L, + 107767702000,0.144509673118591,L, + 109692125250,0.128206312656403,L, + 111616548500,0.117310993373394,L, + 113540971750,0.111806564033031,L, + 115465395000,0.109007231891155,L, + 117389818250,0.106277406215668,L, + 119314241500,0.103614322841167,L, + 121238664750,0.101015366613865,L, + 123163088000,0.098478153347969,L, + 125087511250,0.096000388264656,L, + 127011934500,0.093579933047295,L, + 128936357750,0.091214843094349,L, + 130860781000,0.088903203606606,L, + 132785204250,0.086643233895302,L, + 134709627500,0.084433302283287,L, + 136634050750,0.082271784543991,L, + 138558474000,0.080157235264778,L, + 140482897250,0.078088201582432,L, + 142407320500,0.076063364744186,L, + 144331743750,0.074081450700760,L, + 146256167000,0.072141274809837,L, + 148180590250,0.070241652429104,L, + 150105013500,0.068381495773792,L, + 152029436750,0.066559806466103,L, + 153953860000,0.064775556325912,L, + 155878283250,0.063027791678905,L, + 157802706500,0.061315651983023,L, + 159727129750,0.059638239443302,L, + 161651553000,0.057994730770588,L, + 163575976250,0.056384366005659,L, + 165500399500,0.054806351661682,L, + 167424822750,0.053259994834661,L, + 169349246000,0.051744583994150,L, + 171273669250,0.050259478390217,L, + 173198092500,0.048804007470608,L, + 175122515750,0.047377575188875,L, + 177046939000,0.045979604125023,L, + 178971362250,0.044609509408474,L, + 180895785500,0.043266762048006,L, + 182820208750,0.041950825601816,L, + 184744632000,0.040661215782166,L, + 186669055250,0.039397437125444,L, + 188593478500,0.038159020245075,L, + 190517901750,0.036945536732674,L, + 192442325000,0.035756528377533,L, + 194366748250,0.034591600298882,L, + 196291171500,0.033450353890657,L, + 198215594750,0.032332383096218,L, + 200140018000,0.031237341463566,L, + 202064441250,0.030164841562510,L, + 203988864500,0.029114561155438,L, + 205913287750,0.028086168691516,L, + 207837711000,0.027079315856099,L, + 209762134250,0.026093728840351,L, + 211686557500,0.025129094719887,L, + 213610980750,0.024185113608837,L, + 215535404000,0.023261530324817,L, + 217459827250,0.022358063608408,L, + 219384250500,0.021474467590451,L, + 221308673750,0.020610487088561,L, + 223233097000,0.019765872508287,L, + 225157520250,0.018940441310406,L, + 227081943500,0.018133925274014,L, + 229006366750,0.017346149310470,L, + 230930790000,0.016576888039708,L, + 232855213250,0.015825973823667,L, + 234779636500,0.015093198046088,L, + 236704059750,0.014378394931555,L, + 238628483000,0.013681414537132,L, + 240552906250,0.013002067804337,L, + 242477329500,0.012340230867267,L, + 244401752750,0.011695741675794,L, + 246326176000,0.011068482883275,L, + 248250599250,0.010458332486451,L, + 250175022500,0.009865162894130,L, + 252099445750,0.009288885630667,L, + 254023869000,0.008729372173548,L, + 255948292250,0.008186543360353,L, + 257872715500,0.007660347502679,L, + 259797138750,0.007150694727898,L, + 261721562000,0.006657535210252,L, + 263645985250,0.006180820520967,L, + 265570408500,0.005720508750528,L, + 267494831750,0.005276594310999,L, + 269419255000,0.004849053453654,L, + 271343678250,0.004437930881977,L, + 273268101500,0.004043191205710,L, + 275192524750,0.003664918243885,L, + 277116948000,0.003303184872493,L, + 279041371250,0.002958051394671,L, + 280965794500,0.002629611641169,L, + 282890217750,0.002318069105968,L, + 284814641000,0.002023555571213,L, + 286739064250,0.001746304333210,L, + 288663487500,0.001486603170633,L, + 290587910750,0.001244787126780,L, + 292512334000,0.001021225121804,L, + 294436757250,0.000816494226456,L, + 296361180500,0.000631231814623,L, + 298285603750,0.000466294557555,L, + 300210027000,0.000322781503201,L, + 302134450250,0.000202372670174,L, + 304058873500,0.000107310705062,L, + 305983296750,0.000041827559471,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420111656189,L, + 344471761750,0.156420111656189,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.330640584230423 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.330640584230423,L, + 1924423250,0.330753207206726,L, + 3848846500,0.331092774868011,L, + 5773269750,0.331661373376846,L, + 7697693000,0.332459837198257,L, + 9622116250,0.333488136529922,L, + 11546539500,0.334744602441788,L, + 13470962750,0.336226105690002,L, + 15395386000,0.337927848100662,L, + 17319809250,0.339843034744263,L, + 19244232500,0.341962695121765,L, + 21168655750,0.344275772571564,L, + 23093079000,0.346768766641617,L, + 25017502250,0.349425882101059,L, + 26941925500,0.352228969335556,L, + 28866348750,0.355157643556595,L, + 30790772000,0.358189463615417,L, + 32715195250,0.361300319433212,L, + 34639618500,0.364464759826660,L, + 36564041750,0.367656111717224,L, + 38488465000,0.370847523212433,L, + 40412888250,0.374011904001236,L, + 42337311500,0.377122789621353,L, + 44261734750,0.380154579877853,L, + 46186158000,0.383083283901215,L, + 48110581250,0.385886341333389,L, + 50035004500,0.388543456792831,L, + 51959427750,0.391036510467529,L, + 53883851000,0.393349528312683,L, + 55808274250,0.395469278097153,L, + 57732697500,0.397384405136108,L, + 59657120750,0.399086147546768,L, + 61581544000,0.400567620992661,L, + 63505967250,0.401824116706848,L, + 65430390500,0.402852386236191,L, + 67354813750,0.403650850057602,L, + 69279237000,0.404219418764114,L, + 71203660250,0.404559046030045,L, + 73128083500,0.404671698808670,L, + 75052506750,0.403030931949615,L, + 76976930000,0.398067891597748,L, + 78901353250,0.389757335186005,L, + 80825776500,0.378133952617645,L, + 82750199750,0.363308906555176,L, + 84674623000,0.345485538244247,L, + 86599046250,0.324972003698349,L, + 88523469500,0.302186846733093,L, + 90447892750,0.277655094861984,L, + 92372316000,0.251991361379623,L, + 94296739250,0.225871458649635,L, + 96221162500,0.199994519352913,L, + 98145585750,0.175041422247887,L, + 100070009000,0.151636525988579,L, + 101994432250,0.130317971110344,L, + 103918855500,0.111520133912563,L, + 105843278750,0.095568388700485,L, + 107767702000,0.082683593034744,L, + 109692125250,0.072994053363800,L, + 111616548500,0.066550612449646,L, + 113540971750,0.063342660665512,L, + 115465395000,0.061756893992424,L, + 117389818250,0.060210518538952,L, + 119314241500,0.058701939880848,L, + 121238664750,0.057229693979025,L, + 123163088000,0.055792406201363,L, + 125087511250,0.054388813674450,L, + 127011934500,0.053017690777779,L, + 128936357750,0.051677916198969,L, + 130860781000,0.050368424504995,L, + 132785204250,0.049088209867477,L, + 134709627500,0.047836322337389,L, + 136634050750,0.046611875295639,L, + 138558474000,0.045414026826620,L, + 140482897250,0.044241972267628,L, + 142407320500,0.043094955384731,L, + 144331743750,0.041972246021032,L, + 146256167000,0.040873169898987,L, + 148180590250,0.039797078818083,L, + 150105013500,0.038743350654840,L, + 152029436750,0.037711400538683,L, + 153953860000,0.036700662225485,L, + 155878283250,0.035710595548153,L, + 157802706500,0.034740705043077,L, + 159727129750,0.033790484070778,L, + 161651553000,0.032859478145838,L, + 163575976250,0.031947240233421,L, + 165500399500,0.031053338199854,L, + 167424822750,0.030177358537912,L, + 169349246000,0.029318917542696,L, + 171273669250,0.028477629646659,L, + 173198092500,0.027653144672513,L, + 175122515750,0.026845104992390,L, + 177046939000,0.026053180918097,L, + 178971362250,0.025277053937316,L, + 180895785500,0.024516418576241,L, + 182820208750,0.023770973086357,L, + 184744632000,0.023040436208248,L, + 186669055250,0.022324532270432,L, + 188593478500,0.021622998639941,L, + 190517901750,0.020935587584972,L, + 192442325000,0.020262043923140,L, + 194366748250,0.019602140411735,L, + 196291171500,0.018955644220114,L, + 198215594750,0.018322343006730,L, + 200140018000,0.017702024430037,L, + 202064441250,0.017094476148486,L, + 203988864500,0.016499519348145,L, + 205913287750,0.015916956588626,L, + 207837711000,0.015346604399383,L, + 209762134250,0.014788287691772,L, + 211686557500,0.014241840690374,L, + 213610980750,0.013707103207707,L, + 215535404000,0.013183908537030,L, + 217459827250,0.012672118842602,L, + 219384250500,0.012171578593552,L, + 221308673750,0.011682149022818,L, + 223233097000,0.011203703470528,L, + 225157520250,0.010736115276814,L, + 227081943500,0.010279244743288,L, + 229006366750,0.009832984767854,L, + 230930790000,0.009397214278579,L, + 232855213250,0.008971834555268,L, + 234779636500,0.008556738495827,L, + 236704059750,0.008151823654771,L, + 238628483000,0.007756992243230,L, + 240552906250,0.007372155319899,L, + 242477329500,0.006997234653682,L, + 244401752750,0.006632155738771,L, + 246326176000,0.006276829168200,L, + 248250599250,0.005931196734309,L, + 250175022500,0.005595170892775,L, + 252099445750,0.005268725100905,L, + 254023869000,0.004951775539666,L, + 255948292250,0.004644275177270,L, + 257872715500,0.004346197005361,L, + 259797138750,0.004057491198182,L, + 261721562000,0.003778120269999,L, + 263645985250,0.003508079797029,L, + 265570408500,0.003247327869758,L, + 267494831750,0.002995859831572,L, + 269419255000,0.002753669163212,L, + 271343678250,0.002520769601688,L, + 273268101500,0.002297163009644,L, + 275192524750,0.002082871273160,L, + 277116948000,0.001877963542938,L, + 279041371250,0.001682449132204,L, + 280965794500,0.001496408018284,L, + 282890217750,0.001319905743003,L, + 284814641000,0.001153077813797,L, + 286739064250,0.000996021553874,L, + 288663487500,0.000848902389407,L, + 290587910750,0.000711928994861,L, + 292512334000,0.000585284025874,L, + 294436757250,0.000469312100904,L, + 296361180500,0.000364359497325,L, + 298285603750,0.000270944088697,L, + 300210027000,0.000189643353224,L, + 302134450250,0.000121410928841,L, + 304058873500,0.000067595392466,L, + 305983296750,0.000030472874641,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420096755028,L, + 344471761750,0.156420096755028,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.464049011468887 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.464049011468887,L, + 1924423250,0.464402824640274,L, + 3848846500,0.465469717979431,L, + 5773269750,0.467255830764771,L, + 7697693000,0.469764351844788,L, + 9622116250,0.472994595766068,L, + 11546539500,0.476941674947739,L, + 13470962750,0.481595903635025,L, + 15395386000,0.486941844224930,L, + 17319809250,0.492958247661591,L, + 19244232500,0.499617159366608,L, + 21168655750,0.506883680820465,L, + 23093079000,0.514715433120728,L, + 25017502250,0.523062705993652,L, + 26941925500,0.531868457794189,L, + 28866348750,0.541068792343140,L, + 30790772000,0.550593256950378,L, + 32715195250,0.560366094112396,L, + 34639618500,0.570306956768036,L, + 36564041750,0.580332636833191,L, + 38488465000,0.590358257293701,L, + 40412888250,0.600299060344696,L, + 42337311500,0.610071957111359,L, + 44261734750,0.619596362113953,L, + 46186158000,0.628796756267548,L, + 48110581250,0.637602567672729,L, + 50035004500,0.645949840545654,L, + 51959427750,0.653781533241272,L, + 53883851000,0.661048054695129,L, + 55808274250,0.667706906795502,L, + 57732697500,0.673723340034485,L, + 59657120750,0.679069280624390,L, + 61581544000,0.683723568916321,L, + 63505967250,0.687670707702637,L, + 65430390500,0.690900862216949,L, + 67354813750,0.693409383296967,L, + 69279237000,0.695195555686951,L, + 71203660250,0.696262478828430,L, + 73128083500,0.696616291999817,L, + 75052506750,0.693823158740997,L, + 76976930000,0.685374081134796,L, + 78901353250,0.671225249767303,L, + 80825776500,0.651434898376465,L, + 82750199750,0.626191198825836,L, + 84674623000,0.595839381217957,L, + 86599046250,0.560902416706085,L, + 88523469500,0.522091805934906,L, + 90447892750,0.480299681425095,L, + 92372316000,0.436571359634399,L, + 94296739250,0.392056107521057,L, + 96221162500,0.347943156957626,L, + 98145585750,0.305391132831573,L, + 100070009000,0.265462517738342,L, + 101994432250,0.229073464870453,L, + 103918855500,0.196963846683502,L, + 105843278750,0.169687852263451,L, + 107767702000,0.147622153162956,L, + 109692125250,0.130985915660858,L, + 111616548500,0.119866311550140,L, + 113540971750,0.114246279001236,L, + 115465395000,0.111385837197304,L, + 117389818250,0.108596451580524,L, + 119314241500,0.105875231325626,L, + 121238664750,0.103219568729401,L, + 123163088000,0.100626982748508,L, + 125087511250,0.098095141351223,L, + 127011934500,0.095621883869171,L, + 128936357750,0.093205161392689,L, + 130860781000,0.090843066573143,L, + 132785204250,0.088533796370029,L, + 134709627500,0.086275614798069,L, + 136634050750,0.084066934883595,L, + 138558474000,0.081906214356422,L, + 140482897250,0.079792037606239,L, + 142407320500,0.077723026275635,L, + 144331743750,0.075697854161263,L, + 146256167000,0.073715321719646,L, + 148180590250,0.071774244308472,L, + 150105013500,0.069873519241810,L, + 152029436750,0.068012058734894,L, + 153953860000,0.066188849508762,L, + 155878283250,0.064402967691422,L, + 157802706500,0.062653452157974,L, + 159727129750,0.060939431190491,L, + 161651553000,0.059260059148073,L, + 163575976250,0.057614546269178,L, + 165500399500,0.056002099066973,L, + 167424822750,0.054421994835138,L, + 169349246000,0.052873514592648,L, + 171273669250,0.051355991512537,L, + 173198092500,0.049868755042553,L, + 175122515750,0.048411197960377,L, + 177046939000,0.046982709318399,L, + 178971362250,0.045582722872496,L, + 180895785500,0.044210661202669,L, + 182820208750,0.042866010218859,L, + 184744632000,0.041548255831003,L, + 186669055250,0.040256895124912,L, + 188593478500,0.038991451263428,L, + 190517901750,0.037751484662294,L, + 192442325000,0.036536525934935,L, + 194366748250,0.035346180200577,L, + 196291171500,0.034180026501417,L, + 198215594750,0.033037655055523,L, + 200140018000,0.031918715685606,L, + 202064441250,0.030822815373540,L, + 203988864500,0.029749618843198,L, + 205913287750,0.028698775917292,L, + 207837711000,0.027669964358211,L, + 209762134250,0.026662852615118,L, + 211686557500,0.025677166879177,L, + 213610980750,0.024712586775422,L, + 215535404000,0.023768849670887,L, + 217459827250,0.022845659404993,L, + 219384250500,0.021942779421806,L, + 221308673750,0.021059937775135,L, + 223233097000,0.020196910947561,L, + 225157520250,0.019353449344635,L, + 227081943500,0.018529340624809,L, + 229006366750,0.017724366858602,L, + 230930790000,0.016938325017691,L, + 232855213250,0.016171019524336,L, + 234779636500,0.015422251075506,L, + 236704059750,0.014691854827106,L, + 238628483000,0.013979657553136,L, + 240552906250,0.013285490684211,L, + 242477329500,0.012609185650945,L, + 244401752750,0.011950651183724,L, + 246326176000,0.011309702880681,L, + 248250599250,0.010686241090298,L, + 250175022500,0.010080108419061,L, + 252099445750,0.009491251781583,L, + 254023869000,0.008919534273446,L, + 255948292250,0.008364863693714,L, + 257872715500,0.007827192544937,L, + 259797138750,0.007306413725019,L, + 261721562000,0.006802480667830,L, + 263645985250,0.006315363571048,L, + 265570408500,0.005845021456480,L, + 267494831750,0.005391402170062,L, + 269419255000,0.004954552277923,L, + 271343678250,0.004534445237368,L, + 273268101500,0.004131082445383,L, + 275192524750,0.003744557267055,L, + 277116948000,0.003374933963642,L, + 279041371250,0.003022246062756,L, + 280965794500,0.002686660736799,L, + 282890217750,0.002368312329054,L, + 284814641000,0.002067398047075,L, + 286739064250,0.001784086227417,L, + 288663487500,0.001518689095974,L, + 290587910750,0.001271605375223,L, + 292512334000,0.001043181866407,L, + 294436757250,0.000833991856780,L, + 296361180500,0.000644661486149,L, + 298285603750,0.000476144254208,L, + 300210027000,0.000329509377480,L, + 302134450250,0.000206448123208,L, + 304058873500,0.000109314918518,L, + 305983296750,0.000042423609557,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420141458511,L, + 344471761750,0.156420141458511,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_034" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.033717751502991 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.033717751502991,L, + 1924423250,0.033699989318848,L, + 3848846500,0.033646106719971,L, + 5773269750,0.033555388450623,L, + 7697693000,0.033427894115448,L, + 9622116250,0.033262848854065,L, + 11546539500,0.033059716224670,L, + 13470962750,0.032818257808685,L, + 15395386000,0.032538175582886,L, + 17319809250,0.032219588756561,L, + 19244232500,0.031861782073975,L, + 21168655750,0.031465232372284,L, + 23093079000,0.031029939651489,L, + 25017502250,0.030555665493011,L, + 26941925500,0.030043184757233,L, + 28866348750,0.029492259025574,L, + 30790772000,0.028904378414154,L, + 32715195250,0.028279185295105,L, + 34639618500,0.027618348598480,L, + 36564041750,0.026922285556793,L, + 38488465000,0.026192188262939,L, + 40412888250,0.025429666042328,L, + 42337311500,0.024635553359985,L, + 44261734750,0.023811995983124,L, + 46186158000,0.022960066795349,L, + 48110581250,0.022082388401031,L, + 50035004500,0.021179914474487,L, + 51959427750,0.020255506038666,L, + 53883851000,0.019311189651489,L, + 55808274250,0.018349051475525,L, + 57732697500,0.017371535301208,L, + 59657120750,0.016380965709686,L, + 61581544000,0.015379846096039,L, + 63505967250,0.014370441436768,L, + 65430390500,0.013355612754822,L, + 67354813750,0.012337028980255,L, + 69279237000,0.011317729949951,L, + 71203660250,0.010299682617188,L, + 73128083500,0.009285211563110,L, + 75052506750,0.008276760578156,L, + 76976930000,0.007275998592377,L, + 78901353250,0.006285130977631,L, + 80825776500,0.005305826663971,L, + 82750199750,0.004340052604675,L, + 84674623000,0.003389120101929,L, + 86599046250,0.002454698085785,L, + 88523469500,0.001538097858429,L, + 90447892750,0.000640749931335,L, + 92372316000,-0.000236690044403,L, + 94296739250,-0.001092612743378,L, + 96221162500,-0.001926600933075,L, + 98145585750,-0.002737998962402,L, + 100070009000,-0.003525555133820,L, + 101994432250,-0.004288971424103,L, + 103918855500,-0.005028188228607,L, + 105843278750,-0.005742073059082,L, + 107767702000,-0.006430923938751,L, + 109692125250,-0.007094323635101,L, + 111616548500,-0.007732152938843,L, + 113540971750,-0.008344113826752,L, + 115465395000,-0.008941411972046,L, + 117389818250,-0.009534716606140,L, + 119314241500,-0.010124564170837,L, + 121238664750,-0.010710656642914,L, + 123163088000,-0.011293232440948,L, + 125087511250,-0.011872529983521,L, + 127011934500,-0.012448608875275,L, + 128936357750,-0.013021588325500,L, + 130860781000,-0.013591527938843,L, + 132785204250,-0.014158606529236,L, + 134709627500,-0.014722645282745,L, + 136634050750,-0.015283882617950,L, + 138558474000,-0.015842616558075,L, + 140482897250,-0.016398549079895,L, + 142407320500,-0.016952157020569,L, + 144331743750,-0.017503082752228,L, + 146256167000,-0.018051862716675,L, + 148180590250,-0.018597900867462,L, + 150105013500,-0.019141972064972,L, + 152029436750,-0.019683599472046,L, + 153953860000,-0.020223081111908,L, + 155878283250,-0.020760118961334,L, + 157802706500,-0.021295368671417,L, + 159727129750,-0.021828353404999,L, + 161651553000,-0.022359549999237,L, + 163575976250,-0.022888720035553,L, + 165500399500,-0.023415863513947,L, + 167424822750,-0.023941218852997,L, + 169349246000,-0.024464607238770,L, + 171273669250,-0.024986326694489,L, + 173198092500,-0.025506019592285,L, + 175122515750,-0.026024162769318,L, + 177046939000,-0.026540458202362,L, + 178971362250,-0.027054965496063,L, + 180895785500,-0.027568280696869,L, + 182820208750,-0.028079569339752,L, + 184744632000,-0.028589427471161,L, + 186669055250,-0.029097557067871,L, + 188593478500,-0.029604017734528,L, + 190517901750,-0.030109047889709,L, + 192442325000,-0.030612766742706,L, + 194366748250,-0.031114816665649,L, + 196291171500,-0.031615495681763,L, + 198215594750,-0.032114863395691,L, + 200140018000,-0.032612383365631,L, + 202064441250,-0.033108890056610,L, + 203988864500,-0.033603787422180,L, + 205913287750,-0.034097433090210,L, + 207837711000,-0.034589529037476,L, + 209762134250,-0.035080432891846,L, + 211686557500,-0.035570085048676,L, + 213610980750,-0.036058425903320,L, + 215535404000,-0.036545336246490,L, + 217459827250,-0.037030994892120,L, + 219384250500,-0.037515282630920,L, + 221308673750,-0.037998616695404,L, + 223233097000,-0.038480699062347,L, + 225157520250,-0.038961410522461,L, + 227081943500,-0.039440870285034,L, + 229006366750,-0.039919018745422,L, + 230930790000,-0.040396213531494,L, + 232855213250,-0.040871977806091,L, + 234779636500,-0.041346907615662,L, + 236704059750,-0.041820466518402,L, + 238628483000,-0.042292833328247,L, + 240552906250,-0.042763888835907,L, + 242477329500,-0.043233990669250,L, + 244401752750,-0.043702781200409,L, + 246326176000,-0.044170677661896,L, + 248250599250,-0.044637322425842,L, + 250175022500,-0.045102715492249,L, + 252099445750,-0.045567095279694,L, + 254023869000,-0.046030342578888,L, + 255948292250,-0.046492516994476,L, + 257872715500,-0.046953558921814,L, + 259797138750,-0.047413289546967,L, + 261721562000,-0.047872126102448,L, + 263645985250,-0.048329591751099,L, + 265570408500,-0.048785984516144,L, + 267494831750,-0.049241542816162,L, + 269419255000,-0.049695491790771,L, + 271343678250,-0.050148487091064,L, + 273268101500,-0.050600469112396,L, + 275192524750,-0.051051080226898,L, + 277116948000,-0.051500678062439,L, + 279041371250,-0.051949024200439,L, + 280965794500,-0.052396416664124,L, + 282890217750,-0.052842140197754,L, + 284814641000,-0.053286969661713,L, + 286739064250,-0.053730547428131,L, + 288663487500,-0.054172694683075,L, + 290587910750,-0.054613590240479,L, + 292512334000,-0.055053055286407,L, + 294436757250,-0.055491507053375,L, + 296361180500,-0.055928051471710,L, + 298285603750,-0.056363582611084,L, + 300210027000,-0.056797742843628,L, + 302134450250,-0.057229995727539,L, + 304058873500,-0.057660758495331,L, + 305983296750,-0.058089733123779,L, + 307907720000,-0.058516860008240,L, + 309832143250,-0.058942258358002,L, + 311756566500,-0.059365689754486,L, + 313680989750,-0.059786736965179,L, + 315605413000,-0.060205399990082,L, + 317529836250,-0.060621559619904,L, + 319454259500,-0.061034440994263,L, + 321378682750,-0.061443865299225,L, + 323303106000,-0.061849176883698,L, + 325227529250,-0.062249243259430,L, + 327151952500,-0.062642097473145,L, + 329076375750,-0.063024938106537,L, + 331000799000,-0.063389360904694,L, + 332925222250,-0.063678026199341,L, + 334849645500,0.039614200592041,L, + 344471761750,0.039614200592041,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.020471394062042 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-0.020471394062042,L, + 1924423250,-0.020483672618866,L, + 3848846500,-0.020520746707916,L, + 5773269750,-0.020582795143127,L, + 7697693000,-0.020670473575592,L, + 9622116250,-0.020783901214600,L, + 11546539500,-0.020923376083374,L, + 13470962750,-0.021089017391205,L, + 15395386000,-0.021281242370605,L, + 17319809250,-0.021500051021576,L, + 19244232500,-0.021745562553406,L, + 21168655750,-0.022017896175385,L, + 23093079000,-0.022316873073578,L, + 25017502250,-0.022642433643341,L, + 26941925500,-0.022994339466095,L, + 28866348750,-0.023372411727905,L, + 30790772000,-0.023776173591614,L, + 32715195250,-0.024205148220062,L, + 34639618500,-0.024659156799316,L, + 36564041750,-0.025136947631836,L, + 38488465000,-0.025638043880463,L, + 40412888250,-0.026161730289459,L, + 42337311500,-0.026706814765930,L, + 44261734750,-0.027272462844849,L, + 46186158000,-0.027857184410095,L, + 48110581250,-0.028459906578064,L, + 50035004500,-0.029079318046570,L, + 51959427750,-0.029713988304138,L, + 53883851000,-0.030362486839294,L, + 55808274250,-0.031022906303406,L, + 57732697500,-0.031694054603577,L, + 59657120750,-0.032374203205109,L, + 61581544000,-0.033061504364014,L, + 63505967250,-0.033754408359528,L, + 65430390500,-0.034451425075531,L, + 67354813750,-0.035150587558746,L, + 69279237000,-0.035850465297699,L, + 71203660250,-0.036549329757690,L, + 73128083500,-0.037245690822601,L, + 75052506750,-0.037938237190247,L, + 76976930000,-0.038625419139862,L, + 78901353250,-0.039305627346039,L, + 80825776500,-0.039977967739105,L, + 82750199750,-0.040641188621521,L, + 84674623000,-0.041294038295746,L, + 86599046250,-0.041935563087463,L, + 88523469500,-0.042564809322357,L, + 90447892750,-0.043181002140045,L, + 92372316000,-0.043783247470856,L, + 94296739250,-0.044371008872986,L, + 96221162500,-0.044943511486053,L, + 98145585750,-0.045500516891479,L, + 100070009000,-0.046041309833527,L, + 101994432250,-0.046565473079681,L, + 103918855500,-0.047072827816010,L, + 105843278750,-0.047563135623932,L, + 107767702000,-0.048036158084869,L, + 109692125250,-0.048491597175598,L, + 111616548500,-0.048929452896118,L, + 113540971750,-0.049349606037140,L, + 115465395000,-0.049759626388550,L, + 117389818250,-0.050167024135590,L, + 119314241500,-0.050571858882904,L, + 121238664750,-0.050974190235138,L, + 123163088000,-0.051374197006226,L, + 125087511250,-0.051771938800812,L, + 127011934500,-0.052167534828186,L, + 128936357750,-0.052560865879059,L, + 130860781000,-0.052952170372009,L, + 132785204250,-0.053341507911682,L, + 134709627500,-0.053728699684143,L, + 136634050750,-0.054114222526550,L, + 138558474000,-0.054497778415680,L, + 140482897250,-0.054879605770111,L, + 142407320500,-0.055259585380554,L, + 144331743750,-0.055637836456299,L, + 146256167000,-0.056014358997345,L, + 148180590250,-0.056389451026917,L, + 150105013500,-0.056762874126434,L, + 152029436750,-0.057134687900543,L, + 153953860000,-0.057505071163177,L, + 155878283250,-0.057873904705048,L, + 157802706500,-0.058241367340088,L, + 159727129750,-0.058607518672943,L, + 161651553000,-0.058972060680389,L, + 163575976250,-0.059335350990295,L, + 165500399500,-0.059697210788727,L, + 167424822750,-0.060057938098907,L, + 169349246000,-0.060417294502258,L, + 171273669250,-0.060775399208069,L, + 173198092500,-0.061132311820984,L, + 175122515750,-0.061488032341003,L, + 177046939000,-0.061842441558838,L, + 178971362250,-0.062195897102356,L, + 180895785500,-0.062548100948334,L, + 182820208750,-0.062899112701416,L, + 184744632000,-0.063249051570892,L, + 186669055250,-0.063598036766052,L, + 188593478500,-0.063945829868317,L, + 190517901750,-0.064292609691620,L, + 192442325000,-0.064638376235962,L, + 194366748250,-0.064983069896698,L, + 196291171500,-0.065326750278473,L, + 198215594750,-0.065669476985931,L, + 200140018000,-0.066011190414429,L, + 202064441250,-0.066352069377899,L, + 203988864500,-0.066691875457764,L, + 205913287750,-0.067030668258667,L, + 207837711000,-0.067368626594543,L, + 209762134250,-0.067705690860748,L, + 211686557500,-0.068041980266571,L, + 213610980750,-0.068377017974854,L, + 215535404000,-0.068711400032043,L, + 217459827250,-0.069044888019562,L, + 219384250500,-0.069377541542053,L, + 221308673750,-0.069709181785583,L, + 223233097000,-0.070040106773376,L, + 225157520250,-0.070370256900787,L, + 227081943500,-0.070699334144592,L, + 229006366750,-0.071027815341949,L, + 230930790000,-0.071355164051056,L, + 232855213250,-0.071682035923004,L, + 234779636500,-0.072007954120636,L, + 236704059750,-0.072333037853241,L, + 238628483000,-0.072657406330109,L, + 240552906250,-0.072980940341949,L, + 242477329500,-0.073303461074829,L, + 244401752750,-0.073625564575195,L, + 246326176000,-0.073946714401245,L, + 248250599250,-0.074267089366913,L, + 250175022500,-0.074586689472198,L, + 252099445750,-0.074905514717102,L, + 254023869000,-0.075223505496979,L, + 255948292250,-0.075540840625763,L, + 257872715500,-0.075857341289520,L, + 259797138750,-0.076173007488251,L, + 261721562000,-0.076487898826599,L, + 263645985250,-0.076802134513855,L, + 265570408500,-0.077115535736084,L, + 267494831750,-0.077428102493286,L, + 269419255000,-0.077739953994751,L, + 271343678250,-0.078050911426544,L, + 273268101500,-0.078361093997955,L, + 275192524750,-0.078670680522919,L, + 277116948000,-0.078979313373566,L, + 279041371250,-0.079287052154541,L, + 280965794500,-0.079594075679779,L, + 282890217750,-0.079900205135345,L, + 284814641000,-0.080205559730530,L, + 286739064250,-0.080510079860687,L, + 288663487500,-0.080813705921173,L, + 290587910750,-0.081116437911987,L, + 292512334000,-0.081418156623840,L, + 294436757250,-0.081719100475311,L, + 296361180500,-0.082019031047821,L, + 298285603750,-0.082317829132080,L, + 300210027000,-0.082615852355957,L, + 302134450250,-0.082912683486938,L, + 304058873500,-0.083208441734314,L, + 305983296750,-0.083502948284149,L, + 307907720000,-0.083796322345734,L, + 309832143250,-0.084088325500488,L, + 311756566500,-0.084378957748413,L, + 313680989750,-0.084668219089508,L, + 315605413000,-0.084955632686615,L, + 317529836250,-0.085241317749023,L, + 319454259500,-0.085524737834930,L, + 321378682750,-0.085805892944336,L, + 323303106000,-0.086084067821503,L, + 325227529250,-0.086358726024628,L, + 327151952500,-0.086628615856171,L, + 329076375750,-0.086891293525696,L, + 331000799000,-0.087141454219818,L, + 332925222250,-0.087339758872986,L, + 334849645500,-0.016423046588898,L, + 344471761750,-0.016423046588898,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.787578344345093 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,0.787578344345093,L, + 1924423250,0.787808179855347,L, + 3848846500,0.788500189781189,L, + 5773269750,0.789658308029175,L, + 7697693000,0.791285395622253,L, + 9622116250,0.793383240699768,L, + 11546539500,0.795954108238220,L, + 13470962750,0.798998355865479,L, + 15395386000,0.802515387535095,L, + 17319809250,0.806504249572754,L, + 19244232500,0.810962319374084,L, + 21168655750,0.815886139869690,L, + 23093079000,0.821270346641541,L, + 25017502250,0.827109456062317,L, + 26941925500,0.833394765853882,L, + 28866348750,0.840117454528809,L, + 30790772000,0.847267031669617,L, + 32715195250,0.854830145835876,L, + 34639618500,0.862793445587158,L, + 36564041750,0.871140480041504,L, + 38488465000,0.879854083061218,L, + 40412888250,0.888914346694946,L, + 42337311500,0.898300528526306,L, + 44261734750,0.907989859580994,L, + 46186158000,0.917958378791809,L, + 48110581250,0.928179860115051,L, + 50035004500,0.938627600669861,L, + 51959427750,0.949272990226746,L, + 53883851000,0.960086941719055,L, + 55808274250,0.971038460731506,L, + 57732697500,0.982097268104553,L, + 59657120750,0.993231415748596,L, + 61581544000,1.004409432411194,L, + 63505967250,1.015598893165588,L, + 65430390500,1.026768326759338,L, + 67354813750,1.037886023521423,L, + 69279237000,1.048921227455139,L, + 71203660250,1.059843897819519,L, + 73128083500,1.070624709129333,L, + 75052506750,1.081235527992249,L, + 76976930000,1.091649413108826,L, + 78901353250,1.101840853691101,L, + 80825776500,1.111785531044006,L, + 82750199750,1.121461033821106,L, + 84674623000,1.130846619606018,L, + 86599046250,1.139922261238098,L, + 88523469500,1.148670554161072,L, + 90447892750,1.157075762748718,L, + 92372316000,1.165122866630554,L, + 94296739250,1.172798991203308,L, + 96221162500,1.180093407630920,L, + 98145585750,1.186995625495911,L, + 100070009000,1.193497776985168,L, + 101994432250,1.199592471122742,L, + 103918855500,1.205274224281311,L, + 105843278750,1.210538268089294,L, + 107767702000,1.215381741523743,L, + 109692125250,1.219801545143127,L, + 111616548500,1.223796725273132,L, + 113540971750,1.227366805076599,L, + 117389818250,1.235143065452576,L, + 121238664750,1.242918848991394,L, + 125087511250,1.250695109367371,L, + 127011934500,1.254583477973938,L, + 134709627500,1.270135998725891,L, + 136634050750,1.274023652076721,L, + 138558474000,1.277912020683289,L, + 148180590250,1.297352671623230,L, + 150105013500,1.301240563392639,L, + 159727129750,1.320681214332581,L, + 161651553000,1.324569106101990,L, + 167424822750,1.336233496665955,L, + 169349246000,1.340121865272522,L, + 171273669250,1.344009757041931,L, + 177046939000,1.355674147605896,L, + 178971362250,1.359562039375305,L, + 196291171500,1.394555211067200,L, + 198215594750,1.398443102836609,L, + 213610980750,1.429548144340515,L, + 215535404000,1.433436036109924,L, + 230930790000,1.464541077613831,L, + 232855213250,1.468428969383240,L, + 236704059750,1.476205229759216,L, + 238628483000,1.480093598365784,L, + 240552906250,1.483981728553772,L, + 242477329500,1.487869620323181,L, + 244401752750,1.491757750511169,L, + 246326176000,1.495645642280579,L, + 250175022500,1.503421902656555,L, + 252099445750,1.507310271263123,L, + 259797138750,1.522862792015076,L, + 261721562000,1.526750445365906,L, + 263645985250,1.530638575553894,L, + 265570408500,1.534526944160461,L, + 273268101500,1.550079464912415,L, + 275192524750,1.553967356681824,L, + 284814641000,1.573408007621765,L, + 286739064250,1.577295899391174,L, + 292512334000,1.588960289955139,L, + 294436757250,1.592848658561707,L, + 296361180500,1.596736550331116,L, + 300210027000,1.604512810707092,L, + 302134450250,1.608400702476501,L, + 305983296750,1.616176962852478,L, + 307907720000,1.620065331459045,L, + 309832143250,1.623953223228455,L, + 317529836250,1.639505743980408,L, + 319454259500,1.643393635749817,L, + 321378682750,1.647282004356384,L, + 325227529250,1.655058264732361,L, + 327151952500,1.658946156501770,L, + 331000799000,1.666722416877747,L, + 332925222250,1.670610308647156,L, + 334849645500,0.738551020622253,L, + 336774068750,0.750929117202759,L, + 344471761750,0.750929117202759,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 32.797496054654417 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,32.797496054654417,L, + 1924423250,32.797103318777140,L, + 3848846500,32.795925111145316,L, + 5773269750,32.793958016664355,L, + 7697693000,32.791181544766744,L, + 9622116250,32.787612770925421,L, + 11546539500,32.783244864951200,L, + 13470962750,32.778070996654925,L, + 15395386000,32.772104826414932,L, + 17319809250,32.765346354231212,L, + 19244232500,32.757795580103775,L, + 21168655750,32.749466164410954,L, + 23093079000,32.740375182625677,L, + 25017502250,32.730532880031703,L, + 26941925500,32.719959747196540,L, + 28866348750,32.708666029403943,L, + 30790772000,32.696696122883509,L, + 32715195250,32.684063688013588,L, + 34639618500,32.670796045550858,L, + 36564041750,32.656934176630337,L, + 38488465000,32.642515647292463,L, + 40412888250,32.627581438672252,L, + 42337311500,32.612179362093897,L, + 44261734750,32.596340153408654,L, + 46186158000,32.580135529602828,L, + 48110581250,32.563606471811418,L, + 50035004500,32.546807621547799,L, + 51959427750,32.529810695798247,L, + 53883851000,32.512656675697784,L, + 55808274250,32.495407032948940,L, + 57732697500,32.478126654348834,L, + 59657120750,32.460883841789162,L, + 61581544000,32.443733236783281,L, + 63505967250,32.426726065749975,L, + 65430390500,32.409930630580938,L, + 67354813750,32.393398157694946,L, + 69279237000,32.377200364078284,L, + 71203660250,32.361364570487630,L, + 73128083500,32.345955663720105,L, + 75052506750,32.331021455099894,L, + 76976930000,32.316602925762020,L, + 78901353250,32.302747887030669,L, + 80825776500,32.289476829473351,L, + 82750199750,32.276840979508847,L, + 84674623000,32.264864242799248,L, + 86599046250,32.253577355195816,L, + 88523469500,32.243000807266064,L, + 90447892750,32.233161919766680,L, + 92372316000,32.224067522886820,L, + 94296739250,32.215741522288582,L, + 96221162500,32.208187333066562,L, + 98145585750,32.201435691072014,L, + 100070009000,32.195462690642849,L, + 101994432250,32.190292237441156,L, + 103918855500,32.185917501277764,L, + 105843278750,32.182348727436441,L, + 107767702000,32.179582500822590,L, + 109692125250,32.177611991247041,L, + 111616548500,32.176433783615217,L, + 113540971750,32.176041047737939,L, + 115465395000,32.189633124186251,L, + 117389818250,32.229736579897917,L, + 119314241500,32.295405433672911,L, + 121238664750,32.385731270351620,L, + 123163088000,32.499870561571534,L, + 125087511250,32.637017345010612,L, + 127011934500,32.796423714954720,L, + 128936357750,32.977389577013952,L, + 130860781000,33.179218251892955,L, + 132785204250,33.401295022566430,L, + 134709627500,33.643001756914494,L, + 136634050750,33.903754473763108,L, + 138558474000,34.183027248546189,L, + 140482897250,34.480290741603056,L, + 142407320500,34.795049764218888,L, + 144331743750,35.126836448435533,L, + 146256167000,35.475189756484028,L, + 148180590250,35.839689631730401,L, + 150105013500,36.219926262824465,L, + 152029436750,36.615510328983525,L, + 153953860000,37.026052509424893,L, + 155878283250,37.451201049406308,L, + 157802706500,37.890604194185528,L, + 159727129750,38.343954585249882,L, + 161651553000,38.810910713140892,L, + 163575976250,39.291168634440474,L, + 165500399500,39.784448311392673,L, + 167424822750,40.290456045863174,L, + 169349246000,40.808935705758095,L, + 171273669250,41.339603838226886,L, + 173198092500,41.882231631932356,L, + 175122515750,42.436559539686037,L, + 177046939000,43.002375825623666,L, + 178971362250,43.579431187840534,L, + 180895785500,44.167524135756132,L, + 182820208750,44.766439518411595,L, + 184744632000,45.375975845226407,L, + 186669055250,45.995945285998403,L, + 188593478500,46.626136104863313,L, + 190517901750,47.266391207470214,L, + 192442325000,47.916515933427775,L, + 194366748250,48.576349773290495,L, + 196291171500,49.245725387423711,L, + 198215594750,49.924478851287333,L, + 200140018000,50.612446240341292,L, + 202064441250,51.309490950802193,L, + 203988864500,52.015469548697446,L, + 205913287750,52.730238600054498,L, + 207837711000,53.453644425617021,L, + 209762134250,54.185560666885365,L, + 211686557500,54.925871210643642,L, + 213610980750,55.674436038013873,L, + 215535404000,56.431135620685573,L, + 217459827250,57.195853845442855,L, + 219384250500,57.968484844353590,L, + 221308673750,58.748888598539786,L, + 223233097000,59.536996806109741,L, + 225157520250,60.332652372712552,L, + 227081943500,61.135800656834860,L, + 229006366750,61.946318715071598,L, + 230930790000,62.764110924774393,L, + 232855213250,63.589074833105684,L, + 234779636500,64.421142138173778,L, + 236704059750,65.260176236195278,L, + 238628483000,66.106149806413512,L, + 240552906250,66.958926245045049,L, + 242477329500,67.818444080387394,L, + 244401752750,68.684621350170488,L, + 246326176000,69.557376092124287,L, + 248250599250,70.436626343978773,L, + 250175022500,71.322303803842217,L, + 252099445750,72.214319679255439,L, + 254023869000,73.112605668326708,L, + 255948292250,74.017100299353515,L, + 257872715500,74.927735270444160,L, + 259797138750,75.844428619328596,L, + 261721562000,76.767118874304288,L, + 263645985250,77.695737733479547,L, + 265570408500,78.630216894962672,L, + 267494831750,79.570515377618634,L, + 269419255000,80.516523898420729,L, + 271343678250,81.468215136612258,L, + 273268101500,82.425534450679862,L, + 275192524750,83.388372557596838,L, + 277116948000,84.356715796984830,L, + 279041371250,85.330489036762984,L, + 280965794500,86.309603484472078,L, + 282890217750,87.294024989166260,L, + 284814641000,88.283678418764666,L, + 286739064250,89.278488641186428,L, + 288663487500,90.278401014918174,L, + 290587910750,91.283333577689874,L, + 292512334000,92.293245348366511,L, + 294436757250,93.307992892975506,L, + 296361180500,94.327548890760184,L, + 298285603750,95.351790398315487,L, + 300210027000,96.380635453371369,L, + 302134450250,97.413954282333606,L, + 304058873500,98.451623941797124,L, + 305983296750,99.493507827978547,L, + 307907720000,100.539421525770265,L, + 309832143250,101.589160129497188,L, + 311756566500,102.642491412727537,L, + 313680989750,103.699087526381135,L, + 315605413000,104.758552319486142,L, + 317529836250,105.820380358043963,L, + 319454259500,106.883868132570100,L, + 321378682750,107.948011605256568,L, + 323303106000,109.011376436377645,L, + 325227529250,110.071640361615536,L, + 327151952500,111.124835041062482,L, + 329076375750,112.162935002443717,L, + 331000799000,113.164828131034767,L, + 332925222250,113.973590830654814,L, + 334849645500,33.480948688667006,L, + 344471761750,33.480948688667006,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -27.168103659609475 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-27.168103659609475,L, + 1924423250,-27.145031280593205,L, + 3848846500,-27.075911473740067,L, + 5773269750,-26.960949144725163,L, + 7697693000,-26.800349199223593,L, + 9622116250,-26.594364354234646,L, + 11546539500,-26.343284892798042,L, + 13470962750,-26.047419880973735,L, + 15395386000,-25.707133026335018,L, + 17319809250,-25.322813649664585,L, + 19244232500,-24.894897175522022,L, + 21168655750,-24.423851471865479,L, + 23093079000,-23.910197340619163,L, + 25017502250,-23.354491442200430,L, + 26941925500,-22.757339955898122,L, + 28866348750,-22.119390042136093,L, + 30790772000,-21.441348625493440,L, + 32715195250,-20.723951658853228,L, + 34639618500,-19.968006812084813,L, + 36564041750,-19.174366151287149,L, + 38488465000,-18.343934676525269,L, + 40412888250,-17.477665199188380,L, + 42337311500,-16.576573709915525,L, + 44261734750,-15.641732548406393,L, + 46186158000,-14.674275526063205,L, + 48110581250,-13.675380850517787,L, + 50035004500,-12.646300153935538,L, + 51959427750,-11.588332026032409,L, + 53883851000,-10.502852749926156,L, + 55808274250,-9.391283004964135,L, + 57732697500,-8.255108357290828,L, + 59657120750,-7.095878406074174,L, + 61581544000,-5.915199953316419,L, + 63505967250,-4.714735296306811,L, + 65430390500,-3.496220797198413,L, + 67354813750,-2.261436787487068,L, + 69279237000,-1.012223896432386,L, + 71203660250,0.249516175209890,L, + 73128083500,1.521832741421062,L, + 75052506750,2.802718820482634,L, + 76976930000,4.090113642936396,L, + 78901353250,5.381916285282338,L, + 80825776500,6.675972463167557,L, + 82750199750,7.970084563226605,L, + 84674623000,9.262019113600891,L, + 86599046250,10.549499526862691,L, + 88523469500,11.830214637751601,L, + 90447892750,13.101837059307945,L, + 92372316000,14.361985616832332,L, + 94296739250,15.608283404493598,L, + 96221162500,16.838311681551914,L, + 98145585750,18.049655976135693,L, + 100070009000,19.239879618258527,L, + 101994432250,20.406540815292143,L, + 103918855500,21.547223387817652,L, + 105843278750,22.659463345091979,L, + 107767702000,23.740846215243526,L, + 109692125250,24.788960941495279,L, + 111616548500,25.801410127448570,L, + 113540971750,26.775823697461405,L, + 115465395000,27.729666445241484,L, + 117389818250,28.682149985376736,L, + 119314241500,29.633462148069327,L, + 121238664750,30.583766857859349,L, + 123163088000,31.533176812868096,L, + 125087511250,32.481787635743956,L, + 127011934500,33.429677873662378,L, + 128936357750,34.376898753042141,L, + 130860781000,35.323521990869523,L, + 132785204250,36.269574907901216,L, + 134709627500,37.215108730555990,L, + 136634050750,38.160150779590523,L, + 138558474000,39.104724960666907,L, + 140482897250,40.048862009636416,L, + 142407320500,40.992585832161133,L, + 144331743750,41.935910088619408,L, + 146256167000,42.878858684673332,L, + 148180590250,43.821431620322912,L, + 150105013500,44.763663046513983,L, + 152029436750,45.705552963246561,L, + 153953860000,46.647108200709802,L, + 155878283250,47.588352664565818,L, + 157802706500,48.529279524625423,L, + 159727129750,49.469912686550714,L, + 161651553000,50.410241905057944,L, + 163575976250,51.350287670714614,L, + 165500399500,52.290049983520738,L, + 167424822750,53.229532258570885,L, + 169349246000,54.168734495865067,L, + 171273669250,55.107684016159951,L, + 173198092500,56.046360328888042,L, + 175122515750,56.984770264238499,L, + 177046939000,57.922927482589671,L, + 178971362250,58.860814908468619,L, + 180895785500,59.798456447537454,L, + 182820208750,60.735845269606997,L, + 184744632000,61.672981374677249,L, + 186669055250,62.609864762748217,L, + 188593478500,63.546488603630721,L, + 190517901750,64.482887048270612,L, + 192442325000,65.419019115532876,L, + 194366748250,66.354912126174185,L, + 196291171500,67.290545589627044,L, + 198215594750,68.225939996458933,L, + 200140018000,69.161081686291553,L, + 202064441250,70.095970659124873,L, + 203988864500,71.030606914958909,L, + 205913287750,71.964997283982811,L, + 207837711000,72.899121275629099,L, + 209762134250,73.833006210654432,L, + 211686557500,74.766624768302137,L, + 213610980750,75.699983778761379,L, + 215535404000,76.633076411842978,L, + 217459827250,77.565909497736143,L, + 219384250500,78.498462545873323,L, + 221308673750,79.430749216632861,L, + 223233097000,80.362762679825622,L, + 225157520250,81.294489275073232,L, + 227081943500,82.225949492943215,L, + 229006366750,83.157109182489705,L, + 230930790000,84.087982004091074,L, + 232855213250,85.018540636990608,L, + 234779636500,85.948812401945005,L, + 236704059750,86.878769978197596,L, + 238628483000,87.808406535559186,L, + 240552906250,88.737735734408119,L, + 242477329500,89.666730253987737,L, + 244401752750,90.595390094298011,L, + 246326176000,91.523701594960613,L, + 248250599250,92.451657925786392,L, + 250175022500,93.379259086775320,L, + 252099445750,94.306484587359890,L, + 254023869000,95.233334427540129,L, + 255948292250,96.159774456370158,L, + 257872715500,97.085838824795829,L, + 259797138750,98.011452400736289,L, + 261721562000,98.936656165326553,L, + 263645985250,99.861422797809922,L, + 265570408500,100.785697656673065,L, + 267494831750,101.709521723050983,L, + 269419255000,102.632847185619482,L, + 271343678250,103.555626233054397,L, + 273268101500,104.477906676679893,L, + 275192524750,105.399599724036761,L, + 277116948000,106.320719035503359,L, + 279041371250,107.241223629944656,L, + 280965794500,108.161072526225638,L, + 282890217750,109.080272554535455,L, + 284814641000,109.998721262036582,L, + 286739064250,110.916480120431544,L, + 288663487500,111.833398865558578,L, + 290587910750,112.749484327606893,L, + 292512334000,113.664675034873923,L, + 294436757250,114.578895855278816,L, + 296361180500,115.492078486929870,L, + 298285603750,116.404181948692056,L, + 300210027000,117.315083297160328,L, + 302134450250,118.224673249307955,L, + 304058873500,119.132869842864906,L, + 305983296750,120.039509153291107,L, + 307907720000,120.944413595668109,L, + 309832143250,121.847405585077524,L, + 311756566500,122.748252895087546,L, + 313680989750,123.646668657753054,L, + 315605413000,124.542243061723838,L, + 317529836250,125.434538974893016,L, + 319454259500,126.322941680235303,L, + 321378682750,127.206549592780249,L, + 323303106000,128.084160599233911,L, + 325227529250,128.953875907007074,L, + 327151952500,129.812512647946477,L, + 329076375750,130.653978293312520,L, + 331000799000,131.462645370284179,L, + 332925222250,132.123192964915148,L, + 334849645500,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 64.697129591966089 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,64.697129591966089,L, + 1924423250,64.696774422129252,L, + 3848846500,64.695681591862055,L, + 5773269750,64.693864761542827,L, + 7697693000,64.691330761360760,L, + 9622116250,64.688052270559155,L, + 11546539500,64.684036119327203,L, + 13470962750,64.679275477475699,L, + 15395386000,64.673790835572191,L, + 17319809250,64.667575363427488,L, + 19244232500,64.660642721419933,L, + 21168655750,64.652986079360360,L, + 23093079000,64.644619097627114,L, + 25017502250,64.635582757355195,L, + 26941925500,64.625863398166288,L, + 28866348750,64.615481510627873,L, + 30790772000,64.604478075875008,L, + 32715195250,64.592859924096828,L, + 34639618500,64.580668036428378,L, + 36564041750,64.567922903437150,L, + 38488465000,64.554672336447339,L, + 40412888250,64.540943656215632,L, + 42337311500,64.526784674066221,L, + 44261734750,64.512229540944944,L, + 46186158000,64.497332898365173,L, + 48110581250,64.482142557651073,L, + 50035004500,64.466699499937704,L, + 51959427750,64.451072027116737,L, + 53883851000,64.435301120323203,L, + 55808274250,64.419455081448788,L, + 57732697500,64.403568061439373,L, + 59657120750,64.387715192375794,L, + 61581544000,64.371944285582259,L, + 63505967250,64.356316812761293,L, + 65430390500,64.340873755047909,L, + 67354813750,64.325683414333824,L, + 69279237000,64.310786771754053,L, + 71203660250,64.296231638632776,L, + 73128083500,64.282072656483351,L, + 75052506750,64.268343976251643,L, + 76976930000,64.255093409261846,L, + 78901353250,64.242355106459783,L, + 80825776500,64.230156388602168,L, + 82750199750,64.218545067013153,L, + 84674623000,64.207534802071109,L, + 86599046250,64.197159744721873,L, + 88523469500,64.187440385532966,L, + 90447892750,64.178383554693539,L, + 92372316000,64.170030233338622,L, + 94296739250,64.162373591279049,L, + 96221162500,64.155440949271494,L, + 98145585750,64.149225477126791,L, + 100070009000,64.143740835223284,L, + 101994432250,64.138980193371793,L, + 103918855500,64.134970872329006,L, + 105843278750,64.131692381527401,L, + 107767702000,64.129137890777812,L, + 109692125250,64.127321060458598,L, + 111616548500,64.126248720758909,L, + 113540971750,64.125886720732893,L, + 115465395000,64.137279476268461,L, + 117389818250,64.170877176795699,L, + 119314241500,64.225908010938426,L, + 121238664750,64.301586506942058,L, + 123163088000,64.397209155322088,L, + 125087511250,64.512127088107391,L, + 127011934500,64.645698267515968,L, + 128936357750,64.797321636900861,L, + 130860781000,64.966437120750143,L, + 132785204250,65.152505134119352,L, + 134709627500,65.355020243009946,L, + 136634050750,65.573504334180001,L, + 138558474000,65.807506615144305,L, + 140482897250,66.056576293417621,L, + 142407320500,66.320303557649780,L, + 144331743750,66.598299087058066,L, + 146256167000,66.890187221238151,L, + 148180590250,67.195599129974823,L, + 150105013500,67.514186473620441,L, + 152029436750,67.845635063473182,L, + 153953860000,68.189623880642031,L, + 155878283250,68.545845566614361,L, + 157802706500,68.914020083634199,L, + 159727129750,69.293867393945575,L, + 161651553000,69.685114289981684,L, + 163575976250,70.087528545310747,L, + 165500399500,70.500830122176794,L, + 167424822750,70.924807284715556,L, + 169349246000,71.359227806495255,L, + 171273669250,71.803873121462445,L, + 173198092500,72.258531493752869,L, + 175122515750,72.722991187502231,L, + 177046939000,73.197074617792140,L, + 178971362250,73.680583709136641,L, + 180895785500,74.173334046428167,L, + 182820208750,74.675154874937448,L, + 184744632000,75.185875439935259,L, + 186669055250,75.705331816881483,L, + 188593478500,76.233366911425250,L, + 190517901750,76.769830459404787,L, + 192442325000,77.314551706090853,L, + 194366748250,77.867407708078403,L, + 196291171500,78.428268691773198,L, + 198215594750,78.996977562824327,L, + 200140018000,79.573425038205059,L, + 202064441250,80.157467683942841,L, + 203988864500,80.748989386821776,L, + 205913287750,81.347880863815149,L, + 207837711000,81.954005511139542,L, + 209762134250,82.567274536335773,L, + 211686557500,83.187564995998756,L, + 213610980750,83.814774437290950,L, + 215535404000,84.448800407374819,L, + 217459827250,85.089540453412795,L, + 219384250500,85.736912613134834,L, + 221308673750,86.390800773325068,L, + 223233097000,87.051136632091783,L, + 225157520250,87.717824566786604,L, + 227081943500,88.390755294382799,L, + 229006366750,89.069874173367026,L, + 230930790000,89.755085581090881,L, + 232855213250,90.446307555284349,L, + 234779636500,91.143478624244892,L, + 236704059750,91.846503165324123,L, + 238628483000,92.555312876630353,L, + 240552906250,93.269846286461046,L, + 242477329500,93.990028262735322,L, + 244401752750,94.715783673372314,L, + 246326176000,95.447044216480350,L, + 248250599250,96.183748420356864,L, + 250175022500,96.925841643488511,L, + 252099445750,97.673235093416082,L, + 254023869000,98.425915109761235,L, + 255948292250,99.183758749118908,L, + 257872715500,99.946766011489117,L, + 259797138750,100.714854934601789,L, + 261721562000,101.487964046754428,L, + 263645985250,102.266018215866140,L, + 265570408500,103.049017441936940,L, + 267494831750,103.836866102318439,L, + 269419255000,104.629523215875608,L, + 271343678250,105.426934141095117,L, + 273268101500,106.229030576085236,L, + 275192524750,107.035798860467651,L, + 277116948000,107.847143371593958,L, + 279041371250,108.663050449085830,L, + 280965794500,109.483431300484057,L, + 282890217750,110.308258605031952,L, + 284814641000,111.137477721216158,L, + 286739064250,111.971006686766628,L, + 288663487500,112.808811350737528,L, + 290587910750,113.650837071615499,L, + 292512334000,114.497015547508823,L, + 294436757250,115.347264816147458,L, + 296361180500,116.201516575639729,L, + 298285603750,117.059716184472265,L, + 300210027000,117.921768019996676,L, + 302134450250,118.787562799186247,L, + 304058873500,119.657018559770933,L, + 305983296750,120.529998697967358,L, + 307907720000,121.406339289235405,L, + 309832143250,122.285903729791713,L, + 311756566500,123.168473453582806,L, + 313680989750,124.053775253041906,L, + 315605413000,124.941481279088848,L, + 317529836250,125.831181720373436,L, + 319454259500,126.722248199492014,L, + 321378682750,127.613874754122534,L, + 323303106000,128.504845610592753,L, + 325227529250,129.393234655556682,L, + 327151952500,130.275681435942715,L, + 329076375750,131.145465045607580,L, + 331000799000,131.984963596492634,L, + 332925222250,132.662600324426961,L, + 334849645500,64.711691555276545,L, + 344471761750,64.711691555276545,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.322332888841629 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.322332888841629,L, + 1924423250,0.322337806224823,L, + 3848846500,0.322352647781372,L, + 5773269750,0.322377443313599,L, + 7697693000,0.322412252426147,L, + 9622116250,0.322457134723663,L, + 11546539500,0.322512060403824,L, + 13470962750,0.322577059268951,L, + 15395386000,0.322652101516724,L, + 17319809250,0.322737067937851,L, + 19244232500,0.322831988334656,L, + 21168655750,0.322936683893204,L, + 23093079000,0.323050945997238,L, + 25017502250,0.323174715042114,L, + 26941925500,0.323307603597641,L, + 28866348750,0.323449581861496,L, + 30790772000,0.323600053787231,L, + 32715195250,0.323758929967880,L, + 34639618500,0.323925703763962,L, + 36564041750,0.324099957942963,L, + 38488465000,0.324281156063080,L, + 40412888250,0.324468910694122,L, + 42337311500,0.324662655591965,L, + 44261734750,0.324861615896225,L, + 46186158000,0.325065404176712,L, + 48110581250,0.325273156166077,L, + 50035004500,0.325484246015549,L, + 51959427750,0.325698018074036,L, + 53883851000,0.325913697481155,L, + 55808274250,0.326130509376526,L, + 57732697500,0.326347708702087,L, + 59657120750,0.326564490795135,L, + 61581544000,0.326780170202255,L, + 63505967250,0.326993912458420,L, + 65430390500,0.327205091714859,L, + 67354813750,0.327412813901901,L, + 69279237000,0.327616572380066,L, + 71203660250,0.327815622091293,L, + 73128083500,0.328009277582169,L, + 75052506750,0.328197002410889,L, + 76976930000,0.328378289937973,L, + 78901353250,0.328552514314651,L, + 80825776500,0.328719288110733,L, + 82750199750,0.328878134489059,L, + 84674623000,0.329028666019440,L, + 86599046250,0.329170554876328,L, + 88523469500,0.329303473234177,L, + 90447892750,0.329427242279053,L, + 92372316000,0.329541534185410,L, + 94296739250,0.329646229743958,L, + 96221162500,0.329741120338440,L, + 98145585750,0.329826116561890,L, + 100070009000,0.329901129007339,L, + 101994432250,0.329966187477112,L, + 103918855500,0.330021113157272,L, + 105843278750,0.330065965652466,L, + 107767702000,0.330100744962692,L, + 109692125250,0.330125570297241,L, + 111616548500,0.330140382051468,L, + 113540971750,0.330145299434662,L, + 115465395000,0.330100297927856,L, + 117389818250,0.329967379570007,L, + 119314241500,0.329749882221222,L, + 121238664750,0.329450666904449,L, + 123163088000,0.329072535037994,L, + 125087511250,0.328618168830872,L, + 127011934500,0.328090071678162,L, + 128936357750,0.327490568161011,L, + 130860781000,0.326821953058243,L, + 132785204250,0.326086282730103,L, + 134709627500,0.325285583734512,L, + 136634050750,0.324421703815460,L, + 138558474000,0.323496550321579,L, + 140482897250,0.322511792182922,L, + 142407320500,0.321469068527222,L, + 144331743750,0.320369929075241,L, + 146256167000,0.319215863943100,L, + 148180590250,0.318008333444595,L, + 150105013500,0.316748738288879,L, + 152029436750,0.315438240766525,L, + 153953860000,0.314078211784363,L, + 155878283250,0.312669813632965,L, + 157802706500,0.311214089393616,L, + 159727129750,0.309712260961533,L, + 161651553000,0.308165341615677,L, + 163575976250,0.306574344635010,L, + 165500399500,0.304940223693848,L, + 167424822750,0.303263872861862,L, + 169349246000,0.301546275615692,L, + 171273669250,0.299788266420364,L, + 173198092500,0.297990679740906,L, + 175122515750,0.296154290437698,L, + 177046939000,0.294279843568802,L, + 178971362250,0.292368173599243,L, + 180895785500,0.290419936180115,L, + 182820208750,0.288435846567154,L, + 184744632000,0.286416560411453,L, + 186669055250,0.284362763166428,L, + 188593478500,0.282275050878525,L, + 190517901750,0.280154049396515,L, + 192442325000,0.278000295162201,L, + 194366748250,0.275814414024353,L, + 196291171500,0.273596912622452,L, + 198215594750,0.271348327398300,L, + 200140018000,0.269069224596024,L, + 202064441250,0.266760051250458,L, + 203988864500,0.264421284198761,L, + 205913287750,0.262053400278091,L, + 207837711000,0.259656906127930,L, + 209762134250,0.257232218980789,L, + 211686557500,0.254779726266861,L, + 213610980750,0.252299875020981,L, + 215535404000,0.249793082475662,L, + 217459827250,0.247259706258774,L, + 219384250500,0.244700178503990,L, + 221308673750,0.242114797234535,L, + 223233097000,0.239504024386406,L, + 225157520250,0.236868113279343,L, + 227081943500,0.234207451343536,L, + 229006366750,0.231522381305695,L, + 230930790000,0.228813216090202,L, + 232855213250,0.226080268621445,L, + 234779636500,0.223323836922646,L, + 236704059750,0.220544219017029,L, + 238628483000,0.217741742730141,L, + 240552906250,0.214916646480560,L, + 242477329500,0.212069243192673,L, + 244401752750,0.209199771285057,L, + 246326176000,0.206308513879776,L, + 248250599250,0.203395739197731,L, + 250175022500,0.200461685657501,L, + 252099445750,0.197506621479988,L, + 254023869000,0.194530740380287,L, + 255948292250,0.191534355282784,L, + 257872715500,0.188517600297928,L, + 259797138750,0.185480788350105,L, + 261721562000,0.182424113154411,L, + 263645985250,0.179347768425941,L, + 265570408500,0.176252007484436,L, + 267494831750,0.173137009143829,L, + 269419255000,0.170003071427345,L, + 271343678250,0.166850298643112,L, + 273268101500,0.163678959012032,L, + 275192524750,0.160489201545715,L, + 277116948000,0.157281279563904,L, + 279041371250,0.154055416584015,L, + 280965794500,0.150811776518822,L, + 282890217750,0.147550612688065,L, + 284814641000,0.144272089004517,L, + 286739064250,0.140976458787918,L, + 288663487500,0.137663945555687,L, + 290587910750,0.134334787726402,L, + 292512334000,0.130989223718643,L, + 294436757250,0.127627521753311,L, + 296361180500,0.124249935150146,L, + 298285603750,0.120856814086437,L, + 300210027000,0.117448523640633,L, + 302134450250,0.114025317132473,L, + 304058873500,0.110587716102600,L, + 305983296750,0.107136175036430,L, + 307907720000,0.103671260178089,L, + 309832143250,0.100193709135056,L, + 311756566500,0.096704229712486,L, + 313680989750,0.093203969299793,L, + 315605413000,0.089694142341614,L, + 317529836250,0.086176544427872,L, + 319454259500,0.082653433084488,L, + 321378682750,0.079128116369247,L, + 323303106000,0.075605392456055,L, + 325227529250,0.072092950344086,L, + 327151952500,0.068603962659836,L, + 329076375750,0.065164923667908,L, + 331000799000,0.061845839023590,L, + 332925222250,0.059166587889194,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.426508367061615 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508367061615,L, + 1924423250,0.426570534706116,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070319652557,L, + 7697693000,0.427509605884552,L, + 9622116250,0.428075760602951,L, + 11546539500,0.428768992424011,L, + 13470962750,0.429589271545410,L, + 15395386000,0.430536150932312,L, + 17319809250,0.431608855724335,L, + 19244232500,0.432806462049484,L, + 21168655750,0.434127330780029,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131047248840,L, + 26941925500,0.438808739185333,L, + 28866348750,0.440599352121353,L, + 30790772000,0.442499071359634,L, + 32715195250,0.444503575563431,L, + 34639618500,0.446607947349548,L, + 36564041750,0.448806732892990,L, + 38488465000,0.451094031333923,L, + 40412888250,0.453463196754456,L, + 42337311500,0.455907315015793,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989832878113,L, + 48110581250,0.463611900806427,L, + 50035004500,0.466276168823242,L, + 51959427750,0.468973696231842,L, + 53883851000,0.471695125102997,L, + 55808274250,0.474431037902832,L, + 57732697500,0.477171778678894,L, + 59657120750,0.479907691478729,L, + 61581544000,0.482629090547562,L, + 63505967250,0.485326677560806,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490613043308258,L, + 69279237000,0.493183940649033,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139590024948,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994869232178,L, + 80825776500,0.507099270820618,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003553867340,L, + 86599046250,0.512794137001038,L, + 88523469500,0.514471769332886,L, + 90447892750,0.516033172607422,L, + 92372316000,0.517475485801697,L, + 94296739250,0.518796384334564,L, + 96221162500,0.519994020462036,L, + 98145585750,0.521066725254059,L, + 100070009000,0.522013545036316,L, + 101994432250,0.522833883762360,L, + 103918855500,0.523527085781097,L, + 105843278750,0.524093270301819,L, + 107767702000,0.524532496929169,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788558483124,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523899972438812,L, + 123163088000,0.523249864578247,L, + 125087511250,0.522468686103821,L, + 127011934500,0.521560668945312,L, + 128936357750,0.520529806613922,L, + 130860781000,0.519380211830139,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738474369049,L, + 136634050750,0.515253186225891,L, + 138558474000,0.513662397861481,L, + 140482897250,0.511969149112701,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302058696747,L, + 148180590250,0.504225909709930,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806731939316,L, + 153953860000,0.497468203306198,L, + 155878283250,0.495046615600586,L, + 157802706500,0.492543637752533,L, + 159727129750,0.489961326122284,L, + 161651553000,0.487301468849182,L, + 163575976250,0.484565824270248,L, + 165500399500,0.481756150722504,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920557975769,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806909561157,L, + 175122515750,0.466649413108826,L, + 177046939000,0.463426440954208,L, + 178971362250,0.460139453411102,L, + 180895785500,0.456789642572403,L, + 182820208750,0.453378140926361,L, + 184744632000,0.449906140565872,L, + 186669055250,0.446374773979187,L, + 188593478500,0.442785143852234,L, + 190517901750,0.439138174057007,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676447391510,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997402191162,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108191013336,L, + 203988864500,0.412086933851242,L, + 205913287750,0.408015489578247,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725824594498,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391244977712631,L, + 215535404000,0.386934757232666,L, + 217459827250,0.382578790187836,L, + 219384250500,0.378177851438522,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243472814560,L, + 225157520250,0.364711225032806,L, + 227081943500,0.360136449337006,L, + 229006366750,0.355519622564316,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162289381027,L, + 234779636500,0.341422826051712,L, + 236704059750,0.336643517017365,L, + 238628483000,0.331824839115143,L, + 240552906250,0.326967269182205,L, + 242477329500,0.322071343660355,L, + 244401752750,0.317137539386749,L, + 246326176000,0.312166243791580,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113026380539,L, + 252099445750,0.297032028436661,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763161420822,L, + 257872715500,0.281576067209244,L, + 259797138750,0.276354461908340,L, + 261721562000,0.271098792552948,L, + 263645985250,0.265809237957001,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741762876511,L, + 271343678250,0.244320765137672,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383312821388,L, + 277116948000,0.227867558598518,L, + 279041371250,0.222320884466171,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136341094971,L, + 284814641000,0.205499216914177,L, + 286739064250,0.199832588434219,L, + 288663487500,0.194137006998062,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660281658173,L, + 294436757250,0.176880076527596,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238395333290,L, + 300210027000,0.159378021955490,L, + 302134450250,0.153492078185081,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646742820740,L, + 307907720000,0.135689064860344,L, + 309832143250,0.129709661006927,L, + 311756566500,0.123709790408611,L, + 313680989750,0.117691345512867,L, + 315605413000,0.111656457185745,L, + 317529836250,0.105608187615871,L, + 319454259500,0.099550433456898,L, + 321378682750,0.093488983809948,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393438339233,L, + 329076375750,0.069480240345001,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166580438614,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.426508396863937 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508396863937,L, + 1924423250,0.426570534706116,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070349454880,L, + 7697693000,0.427509576082230,L, + 9622116250,0.428075790405273,L, + 11546539500,0.428768992424011,L, + 13470962750,0.429589271545410,L, + 15395386000,0.430536121129990,L, + 17319809250,0.431608855724335,L, + 19244232500,0.432806462049484,L, + 21168655750,0.434127390384674,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131047248840,L, + 26941925500,0.438808739185333,L, + 28866348750,0.440599352121353,L, + 30790772000,0.442499071359634,L, + 32715195250,0.444503605365753,L, + 34639618500,0.446607977151871,L, + 36564041750,0.448806762695312,L, + 38488465000,0.451094031333923,L, + 40412888250,0.453463196754456,L, + 42337311500,0.455907344818115,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989832878113,L, + 48110581250,0.463611871004105,L, + 50035004500,0.466276168823242,L, + 51959427750,0.468973726034164,L, + 53883851000,0.471695154905319,L, + 55808274250,0.474431037902832,L, + 57732697500,0.477171778678894,L, + 59657120750,0.479907721281052,L, + 61581544000,0.482629090547562,L, + 63505967250,0.485326677560806,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490612983703613,L, + 69279237000,0.493183940649033,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139649629593,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994928836823,L, + 80825776500,0.507099211215973,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003494262695,L, + 86599046250,0.512794077396393,L, + 88523469500,0.514471828937531,L, + 90447892750,0.516033172607422,L, + 92372316000,0.517475485801697,L, + 94296739250,0.518796384334564,L, + 96221162500,0.519993901252747,L, + 98145585750,0.521066725254059,L, + 100070009000,0.522013545036316,L, + 101994432250,0.522833824157715,L, + 103918855500,0.523527085781097,L, + 105843278750,0.524093270301819,L, + 107767702000,0.524532437324524,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788498878479,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523900032043457,L, + 123163088000,0.523249924182892,L, + 125087511250,0.522468626499176,L, + 127011934500,0.521560668945312,L, + 128936357750,0.520529866218567,L, + 130860781000,0.519380152225494,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738533973694,L, + 136634050750,0.515253186225891,L, + 138558474000,0.513662397861481,L, + 140482897250,0.511969208717346,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302118301392,L, + 148180590250,0.504225850105286,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806761741638,L, + 153953860000,0.497468262910843,L, + 155878283250,0.495046585798264,L, + 157802706500,0.492543578147888,L, + 159727129750,0.489961385726929,L, + 161651553000,0.487301498651505,L, + 163575976250,0.484565883874893,L, + 165500399500,0.481756120920181,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920528173447,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806939363480,L, + 175122515750,0.466649353504181,L, + 177046939000,0.463426470756531,L, + 178971362250,0.460139453411102,L, + 180895785500,0.456789642572403,L, + 182820208750,0.453378140926361,L, + 184744632000,0.449906170368195,L, + 186669055250,0.446374773979187,L, + 188593478500,0.442785114049911,L, + 190517901750,0.439138203859329,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676477193832,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997402191162,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108131408691,L, + 203988864500,0.412086904048920,L, + 205913287750,0.408015519380569,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725794792175,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391245007514954,L, + 215535404000,0.386934727430344,L, + 217459827250,0.382578819990158,L, + 219384250500,0.378177911043167,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243472814560,L, + 225157520250,0.364711195230484,L, + 227081943500,0.360136419534683,L, + 229006366750,0.355519652366638,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162319183350,L, + 234779636500,0.341422855854034,L, + 236704059750,0.336643487215042,L, + 238628483000,0.331824809312820,L, + 240552906250,0.326967298984528,L, + 242477329500,0.322071373462677,L, + 244401752750,0.317137569189072,L, + 246326176000,0.312166213989258,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113085985184,L, + 252099445750,0.297032058238983,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763131618500,L, + 257872715500,0.281576097011566,L, + 259797138750,0.276354491710663,L, + 261721562000,0.271098762750626,L, + 263645985250,0.265809208154678,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741747975349,L, + 271343678250,0.244320750236511,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383327722549,L, + 277116948000,0.227867573499680,L, + 279041371250,0.222320899367332,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136355996132,L, + 284814641000,0.205499216914177,L, + 286739064250,0.199832573533058,L, + 288663487500,0.194137006998062,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660266757011,L, + 294436757250,0.176880091428757,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238380432129,L, + 300210027000,0.159378021955490,L, + 302134450250,0.153492093086243,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646727919579,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709646105766,L, + 311756566500,0.123709797859192,L, + 313680989750,0.117691338062286,L, + 315605413000,0.111656464636326,L, + 317529836250,0.105608195066452,L, + 319454259500,0.099550433456898,L, + 321378682750,0.093488991260529,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393445789814,L, + 329076375750,0.069480247795582,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166576713324,L, + 334849645500,0.318087399005890,L, + 344471761750,0.318087399005890,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_026" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.032782137393951 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.032782137393951,L, + 157802706500,0.032782137393951,L, + 159727129750,0.015258669853210,L, + 161651553000,0.014781296253204,L, + 163575976250,0.014308869838715,L, + 165500399500,0.013841092586517,L, + 167424822750,0.013378918170929,L, + 169349246000,0.012922108173370,L, + 171273669250,0.012470901012421,L, + 173198092500,0.012026131153107,L, + 175122515750,0.011587321758270,L, + 177046939000,0.011155426502228,L, + 178971362250,0.010730147361755,L, + 180895785500,0.010312259197235,L, + 182820208750,0.009901762008667,L, + 184744632000,0.009499073028564,L, + 186669055250,0.009104251861572,L, + 188593478500,0.008718073368073,L, + 190517901750,0.008340597152710,L, + 192442325000,0.007972002029419,L, + 194366748250,0.007612466812134,L, + 196291171500,0.007262647151947,L, + 198215594750,0.006922185420990,L, + 200140018000,0.006592094898224,L, + 202064441250,0.006272077560425,L, + 203988864500,0.005962550640106,L, + 205913287750,0.005663275718689,L, + 207837711000,0.005374848842621,L, + 209762134250,0.005097687244415,L, + 211686557500,0.004831016063690,L, + 213610980750,0.004575550556183,L, + 215535404000,0.004330933094025,L, + 217459827250,0.004097759723663,L, + 219384250500,0.003875195980072,L, + 221308673750,0.003663897514343,L, + 223233097000,0.003463447093964,L, + 225157520250,0.003273785114288,L, + 227081943500,0.003094792366028,L, + 229006366750,0.002926111221313,L, + 230930790000,0.002767562866211,L, + 232855213250,0.002619028091431,L, + 234779636500,0.002480685710907,L, + 236704059750,0.002351522445679,L, + 238628483000,0.002231538295746,L, + 240552906250,0.002120375633240,L, + 242477329500,0.002018153667450,L, + 244401752750,0.001923859119415,L, + 246326176000,0.001837909221649,L, + 248250599250,0.001759409904480,L, + 250175022500,0.001688063144684,L, + 252099445750,0.001623630523682,L, + 254023869000,0.001566052436829,L, + 255948292250,0.001514673233032,L, + 257872715500,0.001469254493713,L, + 259797138750,0.001429498195648,L, + 261721562000,0.001395106315613,L, + 263645985250,0.001365959644318,L, + 265570408500,0.001341283321381,L, + 267494831750,0.001321196556091,L, + 269419255000,0.001305222511292,L, + 271343678250,0.001293361186981,L, + 273268101500,0.001285254955292,L, + 275192524750,0.001280307769775,L, + 277116948000,0.001278936862946,L, + 279041371250,0.001351416110992,L, + 280965794500,0.001558303833008,L, + 282890217750,0.001885294914246,L, + 284814641000,0.002320826053619,L, + 286739064250,0.002854883670807,L, + 288663487500,0.003479003906250,L, + 290587910750,0.004185378551483,L, + 292512334000,0.004967987537384,L, + 294436757250,0.005821287631989,L, + 296361180500,0.006739795207977,L, + 298285603750,0.007719278335571,L, + 300210027000,0.008755385875702,L, + 302134450250,0.009844660758972,L, + 304058873500,0.010983645915985,L, + 305983296750,0.012169361114502,L, + 307907720000,0.013398528099060,L, + 309832143250,0.014668583869934,L, + 311756566500,0.015976369380951,L, + 313680989750,0.017319679260254,L, + 315605413000,0.018695712089539,L, + 317529836250,0.020101606845856,L, + 319454259500,0.021534144878387,L, + 321378682750,0.022989749908447,L, + 323303106000,0.024464249610901,L, + 325227529250,0.025951743125916,L, + 327151952500,0.027444124221802,L, + 329076375750,0.028928458690643,L, + 331000799000,0.030380308628082,L, + 332925222250,0.031740009784698,L, + 334849645500,0.032710134983063,L, + 336774068750,0.032782137393951,L, + 344471761750,0.032782137393951,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.028244495391846 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,-0.028244495391846,L, + 157802706500,-0.028244495391846,L, + 159727129750,-0.062223017215729,L, + 161651553000,-0.063218057155609,L, + 163575976250,-0.064210474491119,L, + 165500399500,-0.065199792385101,L, + 167424822750,-0.066185712814331,L, + 169349246000,-0.067167401313782,L, + 171273669250,-0.068144619464874,L, + 173198092500,-0.069116652011871,L, + 175122515750,-0.070082783699036,L, + 177046939000,-0.071042716503143,L, + 178971362250,-0.071995556354523,L, + 180895785500,-0.072940766811371,L, + 182820208750,-0.073877334594727,L, + 184744632000,-0.074804842472076,L, + 186669055250,-0.075722455978394,L, + 188593478500,-0.076629400253296,L, + 190517901750,-0.077524840831757,L, + 192442325000,-0.078407943248749,L, + 194366748250,-0.079277753829956,L, + 196291171500,-0.080133616924286,L, + 198215594750,-0.080974578857422,L, + 200140018000,-0.081799983978271,L, + 202064441250,-0.082608819007874,L, + 203988864500,-0.083400249481201,L, + 205913287750,-0.084173560142517,L, + 207837711000,-0.084927976131439,L, + 209762134250,-0.085662782192230,L, + 211686557500,-0.086377084255219,L, + 213610980750,-0.087070465087891,L, + 215535404000,-0.087742269039154,L, + 217459827250,-0.088391959667206,L, + 219384250500,-0.089018821716309,L, + 221308673750,-0.089622795581818,L, + 223233097000,-0.090203225612640,L, + 225157520250,-0.090759992599487,L, + 227081943500,-0.091292798519135,L, + 229006366750,-0.091801464557648,L, + 230930790000,-0.092285990715027,L, + 232855213250,-0.092746436595917,L, + 234779636500,-0.093182742595673,L, + 236704059750,-0.093595027923584,L, + 238628483000,-0.093983650207520,L, + 240552906250,-0.094348609447479,L, + 242477329500,-0.094690442085266,L, + 244401752750,-0.095009267330170,L, + 246326176000,-0.095305681228638,L, + 248250599250,-0.095580041408539,L, + 250175022500,-0.095832645893097,L, + 252099445750,-0.096064329147339,L, + 254023869000,-0.096275150775909,L, + 255948292250,-0.096466064453125,L, + 257872715500,-0.096637368202209,L, + 259797138750,-0.096789717674255,L, + 261721562000,-0.096923649311066,L, + 263645985250,-0.097039759159088,L, + 265570408500,-0.097138524055481,L, + 267494831750,-0.097220599651337,L, + 269419255000,-0.097286403179169,L, + 271343678250,-0.097336709499359,L, + 273268101500,-0.097372174263000,L, + 275192524750,-0.097392916679382,L, + 277116948000,-0.097399830818176,L, + 279041371250,-0.097240507602692,L, + 280965794500,-0.096786499023438,L, + 282890217750,-0.096068501472473,L, + 284814641000,-0.095112442970276,L, + 286739064250,-0.093940258026123,L, + 288663487500,-0.092570424079895,L, + 290587910750,-0.091019332408905,L, + 292512334000,-0.089301168918610,L, + 294436757250,-0.087428510189056,L, + 296361180500,-0.085412025451660,L, + 298285603750,-0.083262085914612,L, + 300210027000,-0.080987334251404,L, + 302134450250,-0.078596174716949,L, + 304058873500,-0.076095879077911,L, + 305983296750,-0.073493421077728,L, + 307907720000,-0.070795059204102,L, + 309832143250,-0.068007469177246,L, + 311756566500,-0.065136194229126,L, + 313680989750,-0.062187194824219,L, + 315605413000,-0.059166610240936,L, + 317529836250,-0.056080579757690,L, + 319454259500,-0.052935957908630,L, + 321378682750,-0.049740493297577,L, + 323303106000,-0.046503841876984,L, + 325227529250,-0.043238461017609,L, + 327151952500,-0.039962351322174,L, + 329076375750,-0.036704123020172,L, + 331000799000,-0.033517241477966,L, + 332925222250,-0.030532181262970,L, + 334849645500,-0.028402686119080,L, + 336774068750,-0.028244495391846,L, + 344471761750,-0.028244495391846,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775664329529 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.007775664329529,L, + 157802706500,0.007775664329529,L, + 159727129750,0.003468871116638,L, + 161651553000,0.003611683845520,L, + 163575976250,0.004034638404846,L, + 165500399500,0.004729509353638,L, + 167424822750,0.005688428878784,L, + 169349246000,0.006904006004333,L, + 171273669250,0.008368968963623,L, + 173198092500,0.010076403617859,L, + 175122515750,0.012019634246826,L, + 177046939000,0.014192223548889,L, + 178971362250,0.016588091850281,L, + 180895785500,0.019201040267944,L, + 182820208750,0.022025585174561,L, + 184744632000,0.025055646896362,L, + 186669055250,0.028286218643188,L, + 188593478500,0.031711697578430,L, + 190517901750,0.035327196121216,L, + 192442325000,0.039127588272095,L, + 194366748250,0.043108105659485,L, + 196291171500,0.047263741493225,L, + 198215594750,0.051589965820312,L, + 200140018000,0.056082248687744,L, + 202064441250,0.060736060142517,L, + 203988864500,0.065546989440918,L, + 205913287750,0.070510625839233,L, + 207837711000,0.075622797012329,L, + 209762134250,0.080879092216492,L, + 211686557500,0.086275339126587,L, + 213610980750,0.091807484626770,L, + 215535404000,0.097470998764038,L, + 217459827250,0.103262066841125,L, + 219384250500,0.109176158905029,L, + 221308673750,0.115209102630615,L, + 223233097000,0.121356844902039,L, + 225157520250,0.127614617347717,L, + 227081943500,0.133978247642517,L, + 229006366750,0.140443205833435,L, + 230930790000,0.147004842758179,L, + 232855213250,0.153658390045166,L, + 234779636500,0.160398483276367,L, + 236704059750,0.167220473289490,L, + 238628483000,0.174118518829346,L, + 240552906250,0.181087136268616,L, + 242477329500,0.188120126724243,L, + 244401752750,0.195210814476013,L, + 246326176000,0.202352523803711,L, + 248250599250,0.209537744522095,L, + 250175022500,0.216758012771606,L, + 252099445750,0.224004507064819,L, + 254023869000,0.231266975402832,L, + 255948292250,0.238534569740295,L, + 257872715500,0.245794534683228,L, + 259797138750,0.253032684326172,L, + 261721562000,0.260232448577881,L, + 263645985250,0.267374634742737,L, + 265570408500,0.274436593055725,L, + 267494831750,0.281391263008118,L, + 269419255000,0.288205742835999,L, + 271343678250,0.294838666915894,L, + 273268101500,0.301238536834717,L, + 275192524750,0.307337045669556,L, + 277116948000,0.313043236732483,L, + 279041371250,0.318902850151062,L, + 280965794500,0.325497388839722,L, + 282890217750,0.332769274711609,L, + 284814641000,0.340668439865112,L, + 286739064250,0.349150061607361,L, + 288663487500,0.358174324035645,L, + 290587910750,0.367705106735229,L, + 292512334000,0.377709865570068,L, + 294436757250,0.388159036636353,L, + 296361180500,0.399025321006775,L, + 298285603750,0.410283446311951,L, + 300210027000,0.421909689903259,L, + 302134450250,0.433882236480713,L, + 304058873500,0.446179747581482,L, + 305983296750,0.458782196044922,L, + 307907720000,0.471669554710388,L, + 309832143250,0.484822154045105,L, + 311756566500,0.498219847679138,L, + 313680989750,0.511842131614685,L, + 315605413000,0.525666713714600,L, + 317529836250,0.539668798446655,L, + 319454259500,0.553820013999939,L, + 321378682750,0.568085908889771,L, + 323303106000,0.582422733306885,L, + 325227529250,0.596771001815796,L, + 327151952500,0.611042737960815,L, + 329076375750,0.625095605850220,L, + 331000799000,0.638661384582520,L, + 332925222250,0.651092290878296,L, + 334849645500,0.659229755401611,L, + 336774068750,0.007775664329529,L, + 344471761750,0.007775664329529,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 69.452218499662933 + KeyVer: 4005 + KeyCount: 9 + Key: + 0,69.452218499662933,L, + 240552906250,69.452218499662933,L, + 242477329500,69.452225329852098,L, + 244401752750,69.452211669473755,L, + 246326176000,69.452218499662933,L, + 294436757250,69.452218499662933,L, + 296361180500,69.452211669473755,L, + 298285603750,69.452218499662933,L, + 344471761750,69.452218499662933,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.846882820129395 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882820129395,L, + 159727129750,0.846882820129395,L, + 161651553000,0.846929609775543,L, + 163575976250,0.847067296504974,L, + 165500399500,0.847291707992554,L, + 167424822750,0.847599029541016,L, + 169349246000,0.847985267639160,L, + 171273669250,0.848446786403656,L, + 173198092500,0.848979830741882,L, + 175122515750,0.849581003189087,L, + 177046939000,0.850246787071228,L, + 178971362250,0.850973427295685,L, + 180895785500,0.851757943630219,L, + 182820208750,0.852596879005432,L, + 184744632000,0.853486835956573,L, + 186669055250,0.854424595832825,L, + 188593478500,0.855406939983368,L, + 190517901750,0.856430649757385,L, + 192442325000,0.857492506504059,L, + 194366748250,0.858589291572571,L, + 196291171500,0.859717547893524,L, + 198215594750,0.860874295234680,L, + 200140018000,0.862056195735931,L, + 202064441250,0.863259792327881,L, + 203988864500,0.864481866359711,L, + 205913287750,0.865718960762024,L, + 207837711000,0.866967499256134,L, + 209762134250,0.868223905563354,L, + 211686557500,0.869484543800354,L, + 213610980750,0.870745599269867,L, + 215535404000,0.872003197669983,L, + 217459827250,0.873253405094147,L, + 219384250500,0.874491930007935,L, + 221308673750,0.875714361667633,L, + 223233097000,0.876915991306305,L, + 225157520250,0.878092408180237,L, + 227081943500,0.879238188266754,L, + 229006366750,0.880348026752472,L, + 230930790000,0.881416261196136,L, + 232855213250,0.882436752319336,L, + 234779636500,0.883403420448303,L, + 236704059750,0.884308874607086,L, + 238628483000,0.885145902633667,L, + 240552906250,0.885906219482422,L, + 242477329500,0.886581301689148,L, + 244401752750,0.887161254882812,L, + 246326176000,0.887635469436646,L, + 248250599250,0.887992620468140,L, + 250175022500,0.888219594955444,L, + 252099445750,0.888301849365234,L, + 254023869000,0.888223528862000,L, + 255948292250,0.887965917587280,L, + 257872715500,0.887508213520050,L, + 259797138750,0.886826634407043,L, + 261721562000,0.885892868041992,L, + 263645985250,0.884674668312073,L, + 265570408500,0.883132934570312,L, + 267494831750,0.881221413612366,L, + 269419255000,0.878882825374603,L, + 271343678250,0.876047134399414,L, + 273268101500,0.872624278068542,L, + 275192524750,0.868497729301453,L, + 277116948000,0.863510489463806,L, + 279041371250,0.857115924358368,L, + 280965794500,0.849036216735840,L, + 282890217750,0.839449942111969,L, + 284814641000,0.828506529331207,L, + 286739064250,0.816332280635834,L, + 288663487500,0.803036808967590,L, + 290587910750,0.788713753223419,L, + 292512334000,0.773445904254913,L, + 294436757250,0.757306575775146,L, + 296361180500,0.740360438823700,L, + 298285603750,0.722666263580322,L, + 300210027000,0.704276978969574,L, + 302134450250,0.685241341590881,L, + 304058873500,0.665604650974274,L, + 305983296750,0.645409166812897,L, + 307907720000,0.624694883823395,L, + 309832143250,0.603500843048096,L, + 311756566500,0.581865608692169,L, + 313680989750,0.559827685356140,L, + 315605413000,0.537427783012390,L, + 317529836250,0.514709413051605,L, + 319454259500,0.491721540689468,L, + 321378682750,0.468522131443024,L, + 323303106000,0.445183306932449,L, + 325227529250,0.421802103519440,L, + 327151952500,0.398518711328506,L, + 329076375750,0.375560134649277,L, + 331000799000,0.353350818157196,L, + 332925222250,0.332918882369995,L, + 334849645500,0.319382071495056,L, + 336774068750,0.846882820129395,L, + 344471761750,0.846882820129395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.846882820129395 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882820129395,L, + 159727129750,0.846882820129395,L, + 161651553000,0.846939265727997,L, + 163575976250,0.847105145454407,L, + 165500399500,0.847375869750977,L, + 167424822750,0.847746133804321,L, + 169349246000,0.848211407661438,L, + 171273669250,0.848767399787903,L, + 173198092500,0.849409401416779,L, + 175122515750,0.850132942199707,L, + 177046939000,0.850933969020844,L, + 178971362250,0.851808071136475,L, + 180895785500,0.852751433849335,L, + 182820208750,0.853759706020355,L, + 184744632000,0.854828953742981,L, + 186669055250,0.855955064296722,L, + 188593478500,0.857134342193604,L, + 190517901750,0.858362436294556,L, + 192442325000,0.859635591506958,L, + 194366748250,0.860950112342834,L, + 196291171500,0.862301468849182,L, + 198215594750,0.863686084747314,L, + 200140018000,0.865099787712097,L, + 202064441250,0.866538643836975,L, + 203988864500,0.867998301982880,L, + 205913287750,0.869474351406097,L, + 207837711000,0.870963037014008,L, + 209762134250,0.872459590435028,L, + 211686557500,0.873959660530090,L, + 213610980750,0.875458300113678,L, + 215535404000,0.876951038837433,L, + 217459827250,0.878432512283325,L, + 219384250500,0.879898011684418,L, + 221308673750,0.881341934204102,L, + 223233097000,0.882758438587189,L, + 225157520250,0.884141862392426,L, + 227081943500,0.885485768318176,L, + 229006366750,0.886783540248871,L, + 230930790000,0.888028323650360,L, + 232855213250,0.889212548732758,L, + 234779636500,0.890328049659729,L, + 236704059750,0.891366422176361,L, + 238628483000,0.892318427562714,L, + 240552906250,0.893173992633820,L, + 242477329500,0.893922209739685,L, + 244401752750,0.894551217556000,L, + 246326176000,0.895048022270203,L, + 248250599250,0.895397901535034,L, + 250175022500,0.895585298538208,L, + 252099445750,0.895592033863068,L, + 254023869000,0.895398020744324,L, + 255948292250,0.894980788230896,L, + 257872715500,0.894314289093018,L, + 259797138750,0.893368601799011,L, + 261721562000,0.892109513282776,L, + 263645985250,0.890496373176575,L, + 265570408500,0.888481259346008,L, + 267494831750,0.886006295681000,L, + 269419255000,0.883001208305359,L, + 271343678250,0.879378557205200,L, + 273268101500,0.875027120113373,L, + 275192524750,0.869802653789520,L, + 277116948000,0.863510489463806,L, + 279041371250,0.855368852615356,L, + 280965794500,0.845141291618347,L, + 282890217750,0.833256542682648,L, + 284814641000,0.820015251636505,L, + 286739064250,0.805638730525970,L, + 288663487500,0.790295660495758,L, + 290587910750,0.774118006229401,L, + 292512334000,0.757212102413177,L, + 294436757250,0.739664793014526,L, + 296361180500,0.721548676490784,L, + 298285603750,0.702925801277161,L, + 300210027000,0.683849394321442,L, + 302134450250,0.664366185665131,L, + 304058873500,0.644518256187439,L, + 305983296750,0.624343216419220,L, + 307907720000,0.603876352310181,L, + 309832143250,0.583151102066040,L, + 311756566500,0.562199354171753,L, + 313680989750,0.541053414344788,L, + 315605413000,0.519746899604797,L, + 317529836250,0.498315304517746,L, + 319454259500,0.476799070835114,L, + 321378682750,0.455245703458786,L, + 323303106000,0.433715015649796,L, + 325227529250,0.412287086248398,L, + 327151952500,0.391078293323517,L, + 329076375750,0.370276421308517,L, + 331000799000,0.350232928991318,L, + 332925222250,0.331800132989883,L, + 334849645500,0.319382071495056,L, + 336774068750,0.846882820129395,L, + 344471761750,0.846882820129395,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.481483936309814 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.481483936309814,L, + 157802706500,0.481483936309814,L, + 159727129750,0.624619841575623,L, + 161651553000,0.624619781970978,L, + 163575976250,0.624619245529175,L, + 165500399500,0.624617815017700,L, + 167424822750,0.624614953994751,L, + 169349246000,0.624610185623169,L, + 171273669250,0.624602794647217,L, + 173198092500,0.624592304229736,L, + 175122515750,0.624577939510345,L, + 177046939000,0.624559164047241,L, + 178971362250,0.624535083770752,L, + 180895785500,0.624505043029785,L, + 182820208750,0.624468207359314,L, + 184744632000,0.624423682689667,L, + 186669055250,0.624370694160461,L, + 188593478500,0.624308228492737,L, + 190517901750,0.624235391616821,L, + 192442325000,0.624151229858398,L, + 194366748250,0.624054789543152,L, + 196291171500,0.623944938182831,L, + 198215594750,0.623820781707764,L, + 200140018000,0.623681247234344,L, + 202064441250,0.623525261878967,L, + 203988864500,0.623351871967316,L, + 205913287750,0.623160004615784,L, + 207837711000,0.622948706150055,L, + 209762134250,0.622717022895813,L, + 211686557500,0.622464001178741,L, + 213610980750,0.622188806533813,L, + 215535404000,0.621890544891357,L, + 217459827250,0.621568500995636,L, + 219384250500,0.621221959590912,L, + 221308673750,0.620850205421448,L, + 223233097000,0.620452761650085,L, + 225157520250,0.620029151439667,L, + 227081943500,0.619578838348389,L, + 229006366750,0.619101643562317,L, + 230930790000,0.618597209453583,L, + 232855213250,0.618065416812897,L, + 234779636500,0.617506206035614,L, + 236704059750,0.616919577121735,L, + 238628483000,0.616305589675903,L, + 240552906250,0.615664303302765,L, + 242477329500,0.614996075630188,L, + 244401752750,0.614301025867462,L, + 246326176000,0.613579571247101,L, + 248250599250,0.612832129001617,L, + 250175022500,0.612058997154236,L, + 252099445750,0.611260712146759,L, + 254023869000,0.610437810420990,L, + 255948292250,0.609590768814087,L, + 257872715500,0.608720123767853,L, + 259797138750,0.607826530933380,L, + 261721562000,0.606910467147827,L, + 263645985250,0.605972647666931,L, + 265570408500,0.605013549327850,L, + 267494831750,0.604033887386322,L, + 269419255000,0.603034257888794,L, + 271343678250,0.602015197277069,L, + 273268101500,0.600977420806885,L, + 275192524750,0.599921464920044,L, + 277116948000,0.598847866058350,L, + 279041371250,0.597012996673584,L, + 280965794500,0.593785107135773,L, + 282890217750,0.589310705661774,L, + 284814641000,0.583712518215179,L, + 286739064250,0.577094614505768,L, + 288663487500,0.569546163082123,L, + 290587910750,0.561144649982452,L, + 292512334000,0.551957368850708,L, + 294436757250,0.542044043540955,L, + 296361180500,0.531457781791687,L, + 298285603750,0.520245969295502,L, + 300210027000,0.508451819419861,L, + 302134450250,0.496114462614059,L, + 304058873500,0.483270257711411,L, + 305983296750,0.469952702522278,L, + 307907720000,0.456193923950195,L, + 309832143250,0.442024409770966,L, + 311756566500,0.427473932504654,L, + 313680989750,0.412572473287582,L, + 315605413000,0.397350460290909,L, + 317529836250,0.381840616464615,L, + 319454259500,0.366079032421112,L, + 321378682750,0.350107729434967,L, + 323303106000,0.333978652954102,L, + 325227529250,0.317760646343231,L, + 327151952500,0.301552951335907,L, + 329076375750,0.285515248775482,L, + 331000799000,0.269946217536926,L, + 332925222250,0.255570173263550,L, + 334849645500,0.246008008718491,L, + 336774068750,0.481483936309814,L, + 344471761750,0.481483936309814,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_033" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.151618242263794 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,0.151618242263794,L, + 1924423250,0.151618301868439,L, + 3848846500,0.151618242263794,L, + 5773269750,0.151618301868439,L, + 7697693000,0.151618182659149,L, + 9622116250,0.151618123054504,L, + 11546539500,0.151618123054504,L, + 13470962750,0.151618301868439,L, + 15395386000,0.151618182659149,L, + 17319809250,0.151618421077728,L, + 19244232500,0.151618361473083,L, + 21168655750,0.151618242263794,L, + 25017502250,0.151618361473083,L, + 26941925500,0.151618361473083,L, + 28866348750,0.151618301868439,L, + 30790772000,0.151618182659149,L, + 32715195250,0.151618361473083,L, + 34639618500,0.151618361473083,L, + 36564041750,0.151618242263794,L, + 38488465000,0.151618242263794,L, + 42337311500,0.151618123054504,L, + 50035004500,0.151618361473083,L, + 51959427750,0.151618242263794,L, + 53883851000,0.151618182659149,L, + 55808274250,0.151618063449860,L, + 57732697500,0.145533621311188,L, + 59657120750,0.145822763442993,L, + 61581544000,0.146344363689423,L, + 63505967250,0.146937906742096,L, + 65430390500,0.147553861141205,L, + 67354813750,0.148166954517365,L, + 69279237000,0.148762285709381,L, + 71203660250,0.149328410625458,L, + 73128083500,0.149855375289917,L, + 75052506750,0.150333642959595,L, + 76976930000,0.150754034519196,L, + 78901353250,0.151106119155884,L, + 80825776500,0.151377916336060,L, + 82750199750,0.151554584503174,L, + 84674623000,0.151618242263794,L, + 86599046250,0.151618242263794,L, + 88523469500,0.151618301868439,L, + 90447892750,0.151618063449860,L, + 92372316000,0.151618242263794,L, + 94296739250,0.151618361473083,L, + 96221162500,0.151618242263794,L, + 98145585750,0.151618242263794,L, + 100070009000,0.151618182659149,L, + 101994432250,0.151618242263794,L, + 103918855500,0.151618182659149,L, + 105843278750,0.151618301868439,L, + 107767702000,0.151618152856827,L, + 109692125250,0.151618212461472,L, + 111616548500,0.151618242263794,L, + 113540971750,0.151618242263794,L, + 115465395000,0.151639729738235,L, + 117389818250,0.151704132556915,L, + 119314241500,0.151811838150024,L, + 121238664750,0.151963025331497,L, + 123163088000,0.152157902717590,L, + 125087511250,0.152396738529205,L, + 127011934500,0.152679383754730,L, + 128936357750,0.153005480766296,L, + 130860781000,0.153375446796417,L, + 132785204250,0.153788745403290,L, + 134709627500,0.154244899749756,L, + 136634050750,0.154743731021881,L, + 138558474000,0.155284464359283,L, + 140482897250,0.155866205692291,L, + 142407320500,0.156488716602325,L, + 144331743750,0.157150268554688,L, + 146256167000,0.157850325107574,L, + 148180590250,0.158586978912354,L, + 150105013500,0.159359633922577,L, + 152029436750,0.160166084766388,L, + 153953860000,0.161004781723022,L, + 155878283250,0.161873936653137,L, + 157802706500,0.162771344184875,L, + 159727129750,0.163694858551025,L, + 161651553000,0.164642214775085,L, + 163575976250,0.165610969066620,L, + 165500399500,0.166598320007324,L, + 167424822750,0.167601823806763,L, + 169349246000,0.168618798255920,L, + 171273669250,0.169645845890045,L, + 173198092500,0.170680761337280,L, + 175122515750,0.171720147132874,L, + 177046939000,0.172760844230652,L, + 178971362250,0.173800110816956,L, + 180895785500,0.174834847450256,L, + 182820208750,0.175862193107605,L, + 184744632000,0.176879167556763,L, + 186669055250,0.177882611751556,L, + 188593478500,0.178869962692261,L, + 190517901750,0.179838657379150,L, + 192442325000,0.180786132812500,L, + 194366748250,0.181709647178650,L, + 196291171500,0.182607054710388,L, + 198215594750,0.183475971221924,L, + 200140018000,0.184314846992493,L, + 202064441250,0.185121357440948,L, + 203988864500,0.185893714427948,L, + 205913287750,0.186630904674530,L, + 207837711000,0.187330663204193,L, + 209762134250,0.187992215156555,L, + 211686557500,0.188614547252655,L, + 213610980750,0.189196527004242,L, + 215535404000,0.189737200737000,L, + 217459827250,0.190235853195190,L, + 219384250500,0.190692186355591,L, + 221308673750,0.191105246543884,L, + 223233097000,0.191475152969360,L, + 225157520250,0.191801548004150,L, + 227081943500,0.192084014415741,L, + 229006366750,0.192322790622711,L, + 230930790000,0.192517757415771,L, + 232855213250,0.192669153213501,L, + 234779636500,0.192776799201965,L, + 236704059750,0.192841231822968,L, + 238628483000,0.192862689495087,L, + 240552906250,0.192671835422516,L, + 242477329500,0.192116320133209,L, + 244401752750,0.191219329833984,L, + 246326176000,0.190002262592316,L, + 248250599250,0.188485085964203,L, + 250175022500,0.186686396598816,L, + 252099445750,0.184623301029205,L, + 254023869000,0.182312309741974,L, + 255948292250,0.179768562316895,L, + 257872715500,0.177007198333740,L, + 259797138750,0.174042046070099,L, + 261721562000,0.170886754989624,L, + 263645985250,0.167554676532745,L, + 265570408500,0.164058983325958,L, + 267494831750,0.160412609577179,L, + 269419255000,0.156628191471100,L, + 271343678250,0.152719557285309,L, + 273268101500,0.148699939250946,L, + 275192524750,0.144583165645599,L, + 277116948000,0.140384316444397,L, + 279041371250,0.136119306087494,L, + 280965794500,0.131805121898651,L, + 282890217750,0.127461552619934,L, + 284814641000,0.123109519481659,L, + 286739064250,0.118774592876434,L, + 288663487500,0.114485681056976,L, + 290587910750,0.110278308391571,L, + 292512334000,0.106196403503418,L, + 294436757250,0.102296590805054,L, + 296361180500,0.098652839660645,L, + 298285603750,0.095369100570679,L, + 300210027000,0.092597782611847,L, + 302134450250,0.090581417083740,L, + 304058873500,0.089751660823822,L, + 307907720000,0.089751660823822,L, + 309832143250,0.151618242263794,L, + 344471761750,0.151618242263794,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.269023001194000 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-0.269023001194000,L, + 1924423250,-0.269044935703278,L, + 3848846500,-0.269107937812805,L, + 5773269750,-0.269207119941711,L, + 7697693000,-0.269338846206665,L, + 9622116250,-0.269500494003296,L, + 11546539500,-0.269689083099365,L, + 13470962750,-0.269902348518372,L, + 15395386000,-0.270138323307037,L, + 17319809250,-0.270395457744598,L, + 19244232500,-0.270671725273132,L, + 21168655750,-0.270966172218323,L, + 23093079000,-0.271277427673340,L, + 25017502250,-0.271604359149933,L, + 26941925500,-0.271945774555206,L, + 28866348750,-0.272300720214844,L, + 30790772000,-0.272668182849884,L, + 32715195250,-0.273047268390656,L, + 34639618500,-0.273437440395355,L, + 36564041750,-0.273837566375732,L, + 38488465000,-0.274246335029602,L, + 40412888250,-0.274662971496582,L, + 42337311500,-0.275086343288422,L, + 44261734750,-0.275515019893646,L, + 46186158000,-0.275946974754333,L, + 48110581250,-0.276379287242889,L, + 50035004500,-0.276807725429535,L, + 51959427750,-0.277224183082581,L, + 53883851000,-0.277608394622803,L, + 55808274250,-0.277862668037415,L, + 57732697500,0.222100675106049,L, + 59657120750,0.221730828285217,L, + 61581544000,0.221064150333405,L, + 63505967250,0.220305323600769,L, + 65430390500,0.219518244266510,L, + 67354813750,0.218734323978424,L, + 69279237000,0.217973113059998,L, + 71203660250,0.217249691486359,L, + 73128083500,0.216576218605042,L, + 75052506750,0.215964674949646,L, + 76976930000,0.215427219867706,L, + 78901353250,0.214977085590363,L, + 80825776500,0.214629888534546,L, + 82750199750,0.214403986930847,L, + 84674623000,0.214322507381439,L, + 86599046250,0.214805662631989,L, + 88523469500,0.216266155242920,L, + 90447892750,0.218696534633636,L, + 92372316000,0.222045779228210,L, + 94296739250,0.226208686828613,L, + 96221162500,0.231016695499420,L, + 98145585750,0.236241459846497,L, + 100070009000,0.241610765457153,L, + 101994432250,0.246835589408875,L, + 103918855500,0.251643598079681,L, + 105843278750,0.255806386470795,L, + 107767702000,0.259155809879303,L, + 109692125250,0.261585950851440,L, + 111616548500,0.263046443462372,L, + 113540971750,0.263529717922211,L, + 115465395000,0.263270199298859,L, + 117389818250,0.262489140033722,L, + 119314241500,0.261183083057404,L, + 121238664750,0.259349346160889,L, + 123163088000,0.256985843181610,L, + 125087511250,0.254091560840607,L, + 127011934500,0.250666141510010,L, + 128936357750,0.246710419654846,L, + 130860781000,0.242226183414459,L, + 132785204250,0.237216770648956,L, + 134709627500,0.231685936450958,L, + 136634050750,0.225639879703522,L, + 138558474000,0.219085216522217,L, + 140482897250,0.212031006813049,L, + 142407320500,0.204487144947052,L, + 144331743750,0.196465909481049,L, + 146256167000,0.187980651855469,L, + 148180590250,0.179046869277954,L, + 150105013500,0.169682145118713,L, + 152029436750,0.159905314445496,L, + 153953860000,0.149737656116486,L, + 155878283250,0.139201879501343,L, + 157802706500,0.128322720527649,L, + 159727129750,0.117126882076263,L, + 161651553000,0.105642318725586,L, + 163575976250,0.093898832798004,L, + 165500399500,0.081927955150604,L, + 167424822750,0.069762289524078,L, + 169349246000,0.057435214519501,L, + 171273669250,0.044981777667999,L, + 173198092500,0.032437443733215,L, + 175122515750,0.019838333129883,L, + 177046939000,0.007221102714539,L, + 178971362250,-0.005378067493439,L, + 180895785500,-0.017922401428223,L, + 182820208750,-0.030375659465790,L, + 184744632000,-0.042702794075012,L, + 186669055250,-0.054868459701538,L, + 188593478500,-0.066839575767517,L, + 190517901750,-0.078582942485809,L, + 192442325000,-0.090067327022552,L, + 194366748250,-0.101263165473938,L, + 196291171500,-0.112142443656921,L, + 198215594750,-0.122678041458130,L, + 200140018000,-0.132845818996429,L, + 202064441250,-0.142622649669647,L, + 203988864500,-0.151987373828888,L, + 205913287750,-0.160921335220337,L, + 207837711000,-0.169406473636627,L, + 209762134250,-0.177427768707275,L, + 211686557500,-0.184971451759338,L, + 213610980750,-0.192025661468506,L, + 215535404000,-0.198580503463745,L, + 217459827250,-0.204626381397247,L, + 219384250500,-0.210157394409180,L, + 221308673750,-0.215166687965393,L, + 223233097000,-0.219650924205780,L, + 225157520250,-0.223606765270233,L, + 227081943500,-0.227032005786896,L, + 229006366750,-0.229926407337189,L, + 230930790000,-0.232289791107178,L, + 232855213250,-0.234123528003693,L, + 234779636500,-0.235429823398590,L, + 236704059750,-0.236210882663727,L, + 238628483000,-0.236470222473145,L, + 240552906250,-0.236272096633911,L, + 242477329500,-0.235694110393524,L, + 244401752750,-0.234761118888855,L, + 246326176000,-0.233495354652405,L, + 248250599250,-0.231917679309845,L, + 250175022500,-0.230047047138214,L, + 252099445750,-0.227901518344879,L, + 254023869000,-0.225497782230377,L, + 255948292250,-0.222852587699890,L, + 257872715500,-0.219980597496033,L, + 259797138750,-0.216896831989288,L, + 261721562000,-0.213615417480469,L, + 263645985250,-0.210149943828583,L, + 265570408500,-0.206514596939087,L, + 267494831750,-0.202722072601318,L, + 269419255000,-0.198786497116089,L, + 271343678250,-0.194721341133118,L, + 273268101500,-0.190540850162506,L, + 275192524750,-0.186259567737579,L, + 277116948000,-0.181892812252045,L, + 279041371250,-0.177456974983215,L, + 280965794500,-0.172970473766327,L, + 282890217750,-0.168452918529510,L, + 284814641000,-0.163927197456360,L, + 286739064250,-0.159418702125549,L, + 288663487500,-0.154958069324493,L, + 290587910750,-0.150582551956177,L, + 292512334000,-0.146337509155273,L, + 294436757250,-0.142281353473663,L, + 296361180500,-0.138491988182068,L, + 298285603750,-0.135077059268951,L, + 300210027000,-0.132194876670837,L, + 302134450250,-0.130097687244415,L, + 304058873500,-0.129234790802002,L, + 307907720000,-0.129234790802002,L, + 309832143250,-0.236506462097168,L, + 344471761750,-0.236506462097168,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608140945435 + KeyVer: 4005 + KeyCount: 154 + Key: + 0,0.093608140945435,L, + 1924423250,0.093608617782593,L, + 3848846500,0.093611955642700,L, + 5773269750,0.093621015548706,L, + 7697693000,0.093638181686401,L, + 9622116250,0.093665719032288,L, + 11546539500,0.093706011772156,L, + 13470962750,0.093761324882507,L, + 15395386000,0.093834042549133,L, + 17319809250,0.093926429748535,L, + 19244232500,0.094041228294373,L, + 21168655750,0.094181180000305,L, + 23093079000,0.094349384307861,L, + 25017502250,0.094549179077148,L, + 26941925500,0.094784140586853,L, + 28866348750,0.095059037208557,L, + 30790772000,0.095378518104553,L, + 32715195250,0.095748662948608,L, + 34639618500,0.096176862716675,L, + 36564041750,0.096671223640442,L, + 38488465000,0.097243070602417,L, + 40412888250,0.097905755043030,L, + 42337311500,0.098677515983582,L, + 44261734750,0.099582791328430,L, + 46186158000,0.100656270980835,L, + 48110581250,0.101950764656067,L, + 50035004500,0.103552460670471,L, + 51959427750,0.105624198913574,L, + 53883851000,0.108554601669312,L, + 55808274250,0.114208221435547,L, + 57732697500,0.572039842605591,L, + 61581544000,0.588508844375610,L, + 67354813750,0.613212704658508,L, + 69279237000,0.621447205543518,L, + 80825776500,0.670854926109314,L, + 82750199750,0.679089307785034,L, + 84674623000,0.687323927879333,L, + 86599046250,0.697948098182678,L, + 88523469500,0.709304332733154,L, + 90447892750,0.721375107765198,L, + 92372316000,0.734107971191406,L, + 94296739250,0.747405767440796,L, + 96221162500,0.761122822761536,L, + 98145585750,0.775067925453186,L, + 100070009000,0.789018273353577,L, + 101994432250,0.802743673324585,L, + 103918855500,0.816031694412231,L, + 105843278750,0.828709006309509,L, + 107767702000,0.840653300285339,L, + 109692125250,0.851792454719543,L, + 111616548500,0.862098574638367,L, + 113540971750,0.871576786041260,L, + 115465395000,0.880583524703979,L, + 117389818250,0.889457821846008,L, + 119314241500,0.898197650909424,L, + 121238664750,0.906800866127014,L, + 123163088000,0.915265917778015,L, + 125087511250,0.923590540885925,L, + 127011934500,0.931773543357849,L, + 128936357750,0.939813017845154,L, + 130860781000,0.947708010673523,L, + 132785204250,0.955456852912903,L, + 134709627500,0.963059306144714,L, + 136634050750,0.970513939857483,L, + 138558474000,0.977820992469788,L, + 140482897250,0.984980225563049,L, + 142407320500,0.991991877555847,L, + 144331743750,0.998856186866760,L, + 146256167000,1.005574584007263,L, + 148180590250,1.012148261070251,L, + 150105013500,1.018578886985779,L, + 152029436750,1.024868369102478,L, + 153953860000,1.031019568443298,L, + 155878283250,1.037035346031189,L, + 157802706500,1.042919278144836,L, + 159727129750,1.048675417900085,L, + 161651553000,1.054307818412781,L, + 163575976250,1.059821724891663,L, + 165500399500,1.065222144126892,L, + 167424822750,1.070514559745789,L, + 169349246000,1.075705647468567,L, + 171273669250,1.080801129341125,L, + 173198092500,1.085808157920837,L, + 175122515750,1.090733647346497,L, + 177046939000,1.095585227012634,L, + 178971362250,1.100369811058044,L, + 180895785500,1.105095505714417,L, + 182820208750,1.109769940376282,L, + 184744632000,1.114400982856750,L, + 186669055250,1.118996262550354,L, + 188593478500,1.123563885688782,L, + 190517901750,1.128111004829407,L, + 192442325000,1.132645726203918,L, + 194366748250,1.137175202369690,L, + 196291171500,1.141706585884094,L, + 198215594750,1.146246552467346,L, + 200140018000,1.150802254676819,L, + 202064441250,1.155379891395569,L, + 203988864500,1.159985423088074,L, + 205913287750,1.164624571800232,L, + 207837711000,1.169302582740784,L, + 209762134250,1.174024939537048,L, + 211686557500,1.178795695304871,L, + 213610980750,1.183619379997253,L, + 215535404000,1.188500285148621,L, + 217459827250,1.193441510200500,L, + 219384250500,1.198446869850159,L, + 221308673750,1.203518986701965,L, + 223233097000,1.208660960197449,L, + 225157520250,1.213874459266663,L, + 227081943500,1.219161868095398,L, + 229006366750,1.224525332450867,L, + 230930790000,1.229966282844543,L, + 232855213250,1.235485434532166,L, + 234779636500,1.241084933280945,L, + 236704059750,1.246765017509460,L, + 238628483000,1.252526640892029,L, + 240552906250,1.258973717689514,L, + 242477329500,1.266791462898254,L, + 244401752750,1.276044011116028,L, + 246326176000,1.286669850349426,L, + 248250599250,1.298423886299133,L, + 250175022500,1.310874581336975,L, + 252099445750,1.323490977287292,L, + 254023869000,1.335781216621399,L, + 255948292250,1.347392916679382,L, + 257872715500,1.358136057853699,L, + 259797138750,1.367945551872253,L, + 261721562000,1.376835942268372,L, + 263645985250,1.384862780570984,L, + 265570408500,1.392098307609558,L, + 267494831750,1.398617625236511,L, + 269419255000,1.404492020606995,L, + 271343678250,1.409786820411682,L, + 273268101500,1.414560198783875,L, + 275192524750,1.418863177299500,L, + 277116948000,1.422741055488586,L, + 279041371250,1.426232695579529,L, + 280965794500,1.429372668266296,L, + 282890217750,1.432191252708435,L, + 284814641000,1.434714913368225,L, + 286739064250,1.436967015266418,L, + 288663487500,1.438968539237976,L, + 290587910750,1.440737843513489,L, + 292512334000,1.442291855812073,L, + 294436757250,1.443644404411316,L, + 296361180500,1.444809556007385,L, + 298285603750,1.445799469947815,L, + 300210027000,1.446624159812927,L, + 302134450250,1.447294116020203,L, + 304058873500,1.447818160057068,L, + 307907720000,1.447818160057068,L, + 309832143250,0.093608140945435,L, + 344471761750,0.093608140945435,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 12.781315064579925 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,12.781315064579925,L, + 1924423250,12.749428326439766,L, + 3848846500,12.658624376519162,L, + 5773269750,12.515229677536828,L, + 7697693000,12.324532503457640,L, + 9622116250,12.090978453657620,L, + 11546539500,11.818387311430095,L, + 13470962750,11.510058058144176,L, + 15395386000,11.168856811930326,L, + 17319809250,10.797321841838846,L, + 19244232500,10.397701133880314,L, + 21168655750,9.972007032538942,L, + 23093079000,9.522072589833229,L, + 25017502250,9.049557541731488,L, + 26941925500,8.555999534570613,L, + 28866348750,8.042843153360062,L, + 30790772000,7.511451020839248,L, + 32715195250,6.963141363517983,L, + 34639618500,6.399218320640915,L, + 36564041750,5.821001826265146,L, + 38488465000,5.229876701244895,L, + 40412888250,4.627357540028610,L, + 42337311500,4.015188602175580,L, + 44261734750,3.395491728640148,L, + 46186158000,2.771061747453317,L, + 48110581250,2.145881512674843,L, + 50035004500,1.526324444573985,L, + 51959427750,0.924270589994906,L, + 53883851000,0.368416962054947,L, + 55808274250,0.000309066112053,L, + 57732697500,0.000001707547293,L, + 59657120750,0.911453099687161,L, + 61581544000,2.618167322552567,L, + 63505967250,4.641808512765044,L, + 65430390500,6.834830283543954,L, + 67354813750,9.127107509567701,L, + 69279237000,11.477621489775832,L, + 71203660250,13.858858514644282,L, + 73128083500,16.250230686467372,L, + 75052506750,18.634858046485082,L, + 76976930000,20.997625386064197,L, + 78901353250,23.323926345664667,L, + 80825776500,25.598572292119698,L, + 82750199750,27.804752422334619,L, + 84674623000,29.922655772621837,L, + 86599046250,32.005115563758615,L, + 88523469500,34.118123375958234,L, + 90447892750,36.256761473018294,L, + 92372316000,38.413502986473439,L, + 94296739250,40.577897726893575,L, + 96221162500,42.736722448045576,L, + 98145585750,44.874694601661552,L, + 100070009000,46.975940828110424,L, + 101994432250,49.025755730109175,L, + 103918855500,51.012241118123661,L, + 105843278750,52.927422746297900,L, + 107767702000,54.767390331332066,L, + 109692125250,56.531816024146003,L, + 111616548500,58.223073315476277,L, + 113540971750,59.845311545243675,L, + 115465395000,61.436103584072377,L, + 117389818250,63.029450113650668,L, + 119314241500,64.624954983006674,L, + 121238664750,66.222140078898505,L, + 123163088000,67.820540948462579,L, + 125087511250,69.419604346376161,L, + 127011934500,71.018783857505625,L, + 128936357750,72.617471595014862,L, + 130860781000,74.215032351311038,L, + 132785204250,75.810783107477164,L, + 134709627500,77.403993033272044,L, + 136634050750,78.993910807886991,L, + 138558474000,80.579716808621598,L, + 140482897250,82.160584582586281,L, + 142407320500,83.735605714621443,L, + 144331743750,85.303878619756659,L, + 146256167000,86.864426580940588,L, + 148180590250,88.416266050932762,L, + 150105013500,89.958372501357687,L, + 152029436750,91.489687252894001,L, + 153953860000,93.009144796031194,L, + 155878283250,94.515638640123726,L, + 157802706500,96.008089615282728,L, + 159727129750,97.485350249727645,L, + 161651553000,98.946327713191266,L, + 163575976250,100.389922345217244,L, + 165500399500,101.815027655160009,L, + 167424822750,103.220564473130736,L, + 169349246000,104.605487780186380,L, + 171273669250,105.968779878140623,L, + 173198092500,107.309477710320493,L, + 175122515750,108.626672861566391,L, + 177046939000,109.919456916718701,L, + 178971362250,111.187051234212035,L, + 180895785500,112.428704493237703,L, + 182820208750,113.643754165446197,L, + 184744632000,114.831571873433901,L, + 186669055250,115.991638522823877,L, + 188593478500,117.123551132455106,L, + 190517901750,118.226899890977379,L, + 192442325000,119.301425251202247,L, + 194366748250,120.346881326319576,L, + 196291171500,121.363172493680992,L, + 198215594750,122.350203130638121,L, + 200140018000,123.308014218325965,L, + 202064441250,124.236687719014583,L, + 203988864500,125.136360236487377,L, + 205913287750,126.007223016041081,L, + 207837711000,126.849549265242530,L, + 209762134250,127.663639512415173,L, + 211686557500,128.449862587774220,L, + 213610980750,129.208600981913150,L, + 215535404000,129.940291826938903,L, + 217459827250,130.645413236093333,L, + 219384250500,131.324429662239993,L, + 221308673750,131.977887520512525,L, + 223233097000,132.606278584531140,L, + 225157520250,133.210190250564438,L, + 227081943500,133.790155273367731,L, + 229006366750,134.346761049209618,L, + 230930790000,134.880553993223685,L, + 232855213250,135.392135162056917,L, + 234779636500,135.882078291599555,L, + 236704059750,136.350957117741928,L, + 238628483000,136.799331715995919,L, + 240552906250,137.225549180582448,L, + 242477329500,137.628462039720915,L, + 244401752750,138.009327048218637,L, + 246326176000,138.369250696721110,L, + 248250599250,138.709257513603859,L, + 250175022500,139.030344706485693,L, + 252099445750,139.333290916931986,L, + 254023869000,139.618929428021517,L, + 255948292250,139.888011560562944,L, + 257872715500,140.141179352338298,L, + 259797138750,140.379074841129494,L, + 261721562000,140.602258102448502,L, + 263645985250,140.811275551428935,L, + 265570408500,141.006618961691032,L, + 267494831750,141.188780106855006,L, + 269419255000,141.358182458649424,L, + 271343678250,141.515222168046108,L, + 273268101500,141.660309046395327,L, + 275192524750,141.793743622020486,L, + 277116948000,141.915935706271853,L, + 279041371250,142.027172167094506,L, + 280965794500,142.127739872433636,L, + 282890217750,142.217980331747725,L, + 284814641000,142.298125771468534,L, + 286739064250,142.368463059541227,L, + 288663487500,142.429279063910940,L, + 290587910750,142.480806011009435,L, + 292512334000,142.523399070673577,L, + 294436757250,142.557358771226831,L, + 296361180500,142.583040282506033,L, + 298285603750,142.600962698888111,L, + 300210027000,142.611795378911751,L, + 302134450250,142.616631152844121,L, + 304058873500,142.617478096301198,L, + 307907720000,142.617478096301198,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.112190190473129 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-33.112190190473129,L, + 1924423250,-33.120785983543577,L, + 3848846500,-33.145255136245112,L, + 5773269750,-33.183896931474408,L, + 7697693000,-33.235287274789506,L, + 9622116250,-33.298230883085672,L, + 11546539500,-33.371686152514464,L, + 13470962750,-33.454775403767549,L, + 15395386000,-33.546726825468717,L, + 17319809250,-33.646847153417205,L, + 19244232500,-33.754542161155229,L, + 21168655750,-33.869251773170838,L, + 23093079000,-33.990501291316733,L, + 25017502250,-34.117836508013099,L, + 26941925500,-34.250840781720562,L, + 28866348750,-34.389131621845614,L, + 30790772000,-34.532333367983895,L, + 32715195250,-34.680094265393151,L, + 34639618500,-34.832062559331135,L, + 36564041750,-34.987883079960994,L, + 38488465000,-35.147186997067557,L, + 40412888250,-35.309554254016867,L, + 42337311500,-35.474523813039951,L, + 44261734750,-35.641525353341109,L, + 46186158000,-35.809793893733300,L, + 48110581250,-35.978270754895178,L, + 50035004500,-36.145227898966731,L, + 51959427750,-36.307479042700152,L, + 53883851000,-36.457268506292898,L, + 55808274250,-36.556466758703436,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.310924873136415,L, + 61581544000,-35.850990179712170,L, + 63505967250,-35.305650800906214,L, + 65430390500,-34.714672098066295,L, + 67354813750,-34.096936129152887,L, + 69279237000,-33.463511215715982,L, + 71203660250,-32.821811528099623,L, + 73128083500,-32.177366104436921,L, + 75052506750,-31.534758001660951,L, + 76976930000,-30.898030691760351,L, + 78901353250,-30.271125193886217,L, + 80825776500,-29.658146451729721,L, + 82750199750,-29.063616050521400,L, + 84674623000,-28.492873490644907,L, + 86599046250,-27.936701431815322,L, + 88523469500,-27.381962005164144,L, + 90447892750,-26.829037701284896,L, + 92372316000,-26.278334916433192,L, + 94296739250,-25.730304443094251,L, + 96221162500,-25.185344139787230,L, + 98145585750,-24.643802346159791,L, + 100070009000,-24.105889090528915,L, + 101994432250,-23.571643646482332,L, + 103918855500,-23.040949900804154,L, + 105843278750,-22.513543183664037,L, + 107767702000,-21.989064910130558,L, + 109692125250,-21.467106976400810,L, + 111616548500,-20.947280061692105,L, + 113540971750,-20.429201675410919,L, + 115465395000,-19.914850864869265,L, + 117389818250,-19.406432073621755,L, + 119314241500,-18.903911150722543,L, + 121238664750,-18.407250530131197,L, + 123163088000,-17.916398985428934,L, + 125087511250,-17.431288214724063,L, + 127011934500,-16.951832840651949,L, + 128936357750,-16.477940655658806,L, + 130860781000,-16.009485301244986,L, + 132785204250,-15.546337003816255,L, + 134709627500,-15.088338669021709,L, + 136634050750,-14.635316127037509,L, + 138558474000,-14.187068741056788,L, + 140482897250,-13.743383921441628,L, + 142407320500,-13.304009804966386,L, + 144331743750,-12.868685136895310,L, + 146256167000,-12.437118780415028,L, + 148180590250,-12.008991424181843,L, + 150105013500,-11.583970950247362,L, + 152029436750,-11.161691943490993,L, + 153953860000,-10.741765083130042,L, + 155878283250,-10.323786534229834,L, + 157802706500,-9.907324287325368,L, + 159727129750,-9.491924988610483,L, + 161651553000,-9.077125038995266,L, + 163575976250,-8.662436933727708,L, + 165500399500,-8.247366337866628,L, + 167424822750,-7.831400133450634,L, + 169349246000,-7.414024348744680,L, + 171273669250,-6.994713059182676,L, + 173198092500,-6.572942474632647,L, + 175122515750,-6.148190512509912,L, + 177046939000,-5.719936797777082,L, + 178971362250,-5.287667358699113,L, + 180895785500,-4.850889140995296,L, + 182820208750,-4.409113359253152,L, + 184744632000,-3.961871291740890,L, + 186669055250,-3.508714280407407,L, + 188593478500,-3.049213090552047,L, + 190517901750,-2.582971998089776,L, + 192442325000,-2.109613208182127,L, + 194366748250,-1.628784966086845,L, + 196291171500,-1.140172869658699,L, + 198215594750,-0.643481513216085,L, + 200140018000,-0.138451349570545,L, + 202064441250,0.375144751748253,L, + 203988864500,0.897511509652421,L, + 205913287750,1.428822640398547,L, + 207837711000,1.969219310122952,L, + 209762134250,2.518821794188051,L, + 211686557500,3.077719098496466,L, + 213610980750,3.645977603949194,L, + 215535404000,4.223646829417715,L, + 217459827250,4.810734458864848,L, + 219384250500,5.407257567763518,L, + 221308673750,6.013191396677982,L, + 223233097000,6.628497952680982,L, + 225157520250,7.253128143787859,L, + 227081943500,7.887023486503845,L, + 229006366750,8.530092627048791,L, + 230930790000,9.182258725794537,L, + 232855213250,9.843418476129882,L, + 234779636500,10.513455764838939,L, + 236704059750,11.192268992857803,L, + 238628483000,11.879717287534843,L, + 240552906250,12.591126739593902,L, + 242477329500,13.339908425470275,L, + 244401752750,14.123283311945423,L, + 246326176000,14.938658488455680,L, + 248250599250,15.783616068034865,L, + 250175022500,16.655882451463015,L, + 252099445750,17.553292468773240,L, + 254023869000,18.473786817930780,L, + 255948292250,19.415381328981752,L, + 257872715500,20.376151596127507,L, + 259797138750,21.354209072062542,L, + 261721562000,22.347695945332610,L, + 263645985250,23.354757819578062,L, + 265570408500,24.373523222966313,L, + 267494831750,25.402098485549978,L, + 269419255000,26.438526758131857,L, + 271343678250,27.480765814150114,L, + 273268101500,28.526677804394541,L, + 275192524750,29.573967785304017,L, + 277116948000,30.620147860473367,L, + 279041371250,31.662503029707516,L, + 280965794500,32.697990443731229,L, + 282890217750,33.723184762675743,L, + 284814641000,34.734114231538705,L, + 286739064250,35.726165057535781,L, + 288663487500,36.693791127060926,L, + 290587910750,37.630227137741258,L, + 292512334000,38.527003655005963,L, + 294436757250,39.373206036561385,L, + 296361180500,40.154268904002485,L, + 298285603750,40.849913425683525,L, + 300210027000,41.430219957945319,L, + 302134450250,41.847667459637556,L, + 304058873500,42.017670868078930,L, + 307907720000,42.017670868078930,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 24.228139231388216 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,24.228139231388216,L, + 1924423250,24.228381703103750,L, + 3848846500,24.230014118315381,L, + 5773269750,24.234312014850605,L, + 7697693000,24.242436524868321,L, + 9622116250,24.255502676750538,L, + 11546539500,24.274606715859036,L, + 13470962750,24.300826104535385,L, + 15395386000,24.335274163614294,L, + 17319809250,24.379100072423618,L, + 19244232500,24.433529849919374,L, + 21168655750,24.499873184874904,L, + 23093079000,24.579584907583424,L, + 25017502250,24.674258159668835,L, + 26941925500,24.785685865788260,L, + 28866348750,24.915947818543973,L, + 30790772000,25.067431169050881,L, + 32715195250,25.242939709963277,L, + 34639618500,25.445850969825724,L, + 36564041750,25.680275014971272,L, + 38488465000,25.951320826899085,L, + 40412888250,26.265497575888173,L, + 42337311500,26.631351536137501,L, + 44261734750,27.060483783952325,L, + 46186158000,27.569396056367367,L, + 48110581250,28.182999760832921,L, + 50035004500,28.942308475767561,L, + 51959427750,29.924411131238529,L, + 53883851000,31.313623797092937,L, + 55808274250,33.993735385888726,L, + 57732697500,65.529353991385094,L, + 59657120750,64.716807366964872,L, + 61581544000,63.208619635958179,L, + 63505967250,61.436977848286141,L, + 65430390500,59.535425862600640,L, + 67354813750,57.568037683505487,L, + 69279237000,55.572990653366404,L, + 71203660250,53.576645887285018,L, + 73128083500,51.599534933906362,L, + 75052506750,49.659317247329483,L, + 76976930000,47.772610677804984,L, + 78901353250,45.956337019001559,L, + 80825776500,44.228808008083980,L, + 82750199750,42.611159665438826,L, + 84674623000,41.128878841953956,L, + 86599046250,39.695047965346504,L, + 88523469500,38.209474990681699,L, + 90447892750,36.686332560487287,L, + 92372316000,35.145865355463165,L, + 94296739250,33.614687207710247,L, + 96221162500,32.125217610123947,L, + 98145585750,30.713468735103117,L, + 100070009000,29.415582528640819,L, + 101994432250,28.263604530775417,L, + 103918855500,27.281843384762951,L, + 105843278750,26.484929355805566,L, + 107767702000,25.877766519727324,L, + 109692125250,25.457189083847929,L, + 111616548500,25.214203396577783,L, + 113540971750,25.136293136262854,L, + 115465395000,25.136433155140836,L, + 117389818250,25.136842966491038,L, + 119314241500,25.137519155218868,L, + 121238664750,25.138487334533714,L, + 123163088000,25.139718476131609,L, + 125087511250,25.141236485674643,L, + 127011934500,25.143022580142599,L, + 128936357750,25.145092127461108,L, + 130860781000,25.147434882346420,L, + 132785204250,25.150057674987700,L, + 134709627500,25.152950260101196,L, + 136634050750,25.156112637686910,L, + 138558474000,25.159537977555665,L, + 140482897250,25.163226279707466,L, + 142407320500,25.167165591311264,L, + 144331743750,25.171364450103525,L, + 146256167000,25.175802365516734,L, + 148180590250,25.180472507361724,L, + 150105013500,25.185373168091200,L, + 152029436750,25.190483857137654,L, + 153953860000,25.195801159406503,L, + 155878283250,25.201309706972111,L, + 157802706500,25.206995839456138,L, + 159727129750,25.212851019122123,L, + 161651553000,25.218853047855262,L, + 163575976250,25.224993387919096,L, + 165500399500,25.231256671387989,L, + 167424822750,25.237618992599845,L, + 169349246000,25.244063276081743,L, + 171273669250,25.250577569002633,L, + 173198092500,25.257131135511251,L, + 175122515750,25.263723975607597,L, + 177046939000,25.270320230798529,L, + 178971362250,25.276906240705703,L, + 180895785500,25.283463222308907,L, + 182820208750,25.289975807682502,L, + 184744632000,25.296425213806277,L, + 186669055250,25.302787535018137,L, + 188593478500,25.309045695845150,L, + 190517901750,25.315186035908983,L, + 192442325000,25.321186357094831,L, + 194366748250,25.327046659402694,L, + 196291171500,25.332731084339429,L, + 198215594750,25.338239631905036,L, + 200140018000,25.343560349268468,L, + 202064441250,25.348671038314922,L, + 203988864500,25.353568283949816,L, + 205913287750,25.358238425794806,L, + 207837711000,25.362672926113429,L, + 209762134250,25.366866662263810,L, + 211686557500,25.370816219151365,L, + 213610980750,25.374507936397752,L, + 215535404000,25.377928153624630,L, + 217459827250,25.381092238757635,L, + 219384250500,25.383984823871131,L, + 221308673750,25.386607616512411,L, + 223233097000,25.388948663850432,L, + 225157520250,25.391016503621650,L, + 227081943500,25.392811135826069,L, + 229006366750,25.394320607632640,L, + 230930790000,25.395555164325117,L, + 232855213250,25.396509683261623,L, + 234779636500,25.397201239915088,L, + 236704059750,25.397607636170701,L, + 238628483000,25.397744239954100,L, + 240552906250,25.371017709731881,L, + 242477329500,25.293158675835723,L, + 244401752750,25.167440506425358,L, + 246326176000,24.996877022472045,L, + 248250599250,24.784265186440901,L, + 250175022500,24.532183394743601,L, + 252099445750,24.243058072082793,L, + 254023869000,23.919187577114180,L, + 255948292250,23.562723419426309,L, + 257872715500,23.175724901053943,L, + 259797138750,22.760183022140136,L, + 261721562000,22.318005113010607,L, + 263645985250,21.851040447383138,L, + 265570408500,21.361143421617385,L, + 267494831750,20.850112083012352,L, + 269419255000,20.319788875096645,L, + 271343678250,19.772002581020530,L, + 273268101500,19.208662238657027,L, + 275192524750,18.631734942487096,L, + 277116948000,18.043298777565713,L, + 279041371250,17.445585508204172,L, + 280965794500,16.841019851557821,L, + 282890217750,16.232280949328604,L, + 284814641000,15.622401405507993,L, + 286739064250,15.014876569403741,L, + 288663487500,14.413818214896191,L, + 290587910750,13.824199573474749,L, + 292512334000,13.252166107845126,L, + 294436757250,12.705600710083150,L, + 296361180500,12.194967229997268,L, + 298285603750,11.734787503536552,L, + 300210027000,11.346422947330185,L, + 302134450250,11.063827285515897,L, + 304058873500,10.947538192254720,L, + 307907720000,10.947538192254720,L, + 309832143250,19.353271003764331,L, + 344471761750,19.353271003764331,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000025540588467 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025540588467,L, + 1924423250,0.000025527499020,L, + 3848846500,0.000025490231565,L, + 5773269750,0.000025431379981,L, + 7697693000,0.000025353107048,L, + 9622116250,0.000025257249945,L, + 11546539500,0.000025145367545,L, + 13470962750,0.000025018818633,L, + 15395386000,0.000024878776458,L, + 17319809250,0.000024726286938,L, + 19244232500,0.000024562272301,L, + 21168655750,0.000024387556550,L, + 23093079000,0.000024202887289,L, + 25017502250,0.000024008955734,L, + 26941925500,0.000023806385798,L, + 28866348750,0.000023595774110,L, + 30790772000,0.000023377677280,L, + 32715195250,0.000023152642825,L, + 34639618500,0.000022921200070,L, + 36564041750,0.000022683891075,L, + 38488465000,0.000022441287001,L, + 40412888250,0.000022194008125,L, + 42337311500,0.000021942774765,L, + 44261734750,0.000021688450943,L, + 46186158000,0.000021432193535,L, + 48110581250,0.000021175634174,L, + 50035004500,0.000020921392206,L, + 51959427750,0.000020674349798,L, + 53883851000,0.000020446290364,L, + 55808274250,0.000020295379727,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238624900579453,L, + 61581544000,0.255922883749008,L, + 63505967250,0.267170011997223,L, + 65430390500,0.274974405765533,L, + 67354813750,0.280564606189728,L, + 69279237000,0.284645706415176,L, + 71203660250,0.287676155567169,L, + 73128083500,0.289983600378036,L, + 75052506750,0.291821151971817,L, + 76976930000,0.293399393558502,L, + 78901353250,0.294906288385391,L, + 80825776500,0.296521902084351,L, + 82750199750,0.298431694507599,L, + 84674623000,0.300840198993683,L, + 86599046250,0.303359389305115,L, + 88523469500,0.305441111326218,L, + 90447892750,0.307083278894424,L, + 92372316000,0.308302015066147,L, + 94296739250,0.309136182069778,L, + 96221162500,0.309652239084244,L, + 98145585750,0.309943109750748,L, + 100070009000,0.310122251510620,L, + 101994432250,0.310312658548355,L, + 103918855500,0.310632318258286,L, + 105843278750,0.311182498931885,L, + 107767702000,0.312040060758591,L, + 109692125250,0.313255786895752,L, + 111616548500,0.314856737852097,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319108784198761,L, + 117389818250,0.321499496698380,L, + 119314241500,0.324023634195328,L, + 121238664750,0.326680988073349,L, + 123163088000,0.329471141099930,L, + 125087511250,0.332393288612366,L, + 127011934500,0.335446566343307,L, + 128936357750,0.338629484176636,L, + 130860781000,0.341940522193909,L, + 132785204250,0.345377385616302,L, + 134709627500,0.348937988281250,L, + 136634050750,0.352619230747223,L, + 138558474000,0.356417953968048,L, + 140482897250,0.360330194234848,L, + 142407320500,0.364352107048035,L, + 144331743750,0.368478685617447,L, + 146256167000,0.372704893350601,L, + 148180590250,0.377025038003922,L, + 150105013500,0.381432801485062,L, + 152029436750,0.385921567678452,L, + 153953860000,0.390484064817429,L, + 155878283250,0.395112574100494,L, + 157802706500,0.399798899888992,L, + 159727129750,0.404534399509430,L, + 161651553000,0.409310013055801,L, + 163575976250,0.414116263389587,L, + 165500399500,0.418943345546722,L, + 167424822750,0.423781335353851,L, + 169349246000,0.428619682788849,L, + 171273669250,0.433448076248169,L, + 173198092500,0.438255816698074,L, + 175122515750,0.443032294511795,L, + 177046939000,0.447766840457916,L, + 178971362250,0.452448964118958,L, + 180895785500,0.457068175077438,L, + 182820208750,0.461614370346069,L, + 184744632000,0.466077625751495,L, + 186669055250,0.470448374748230,L, + 188593478500,0.474717527627945,L, + 190517901750,0.478876233100891,L, + 192442325000,0.482916295528412,L, + 194366748250,0.486829906702042,L, + 196291171500,0.490610063076019,L, + 198215594750,0.494249880313873,L, + 200140018000,0.497743427753448,L, + 202064441250,0.501085221767426,L, + 203988864500,0.504270315170288,L, + 205913287750,0.507294297218323,L, + 207837711000,0.510153710842133,L, + 209762134250,0.512844860553741,L, + 211686557500,0.515365481376648,L, + 213610980750,0.517713129520416,L, + 215535404000,0.519886255264282,L, + 217459827250,0.521883547306061,L, + 219384250500,0.523704171180725,L, + 221308673750,0.525347709655762,L, + 223233097000,0.526814222335815,L, + 225157520250,0.528103828430176,L, + 227081943500,0.529217243194580,L, + 229006366750,0.530155420303345,L, + 230930790000,0.530919373035431,L, + 232855213250,0.531510591506958,L, + 234779636500,0.531930685043335,L, + 236704059750,0.532181084156036,L, + 238628483000,0.532264232635498,L, + 240552906250,0.531710743904114,L, + 242477329500,0.530089855194092,L, + 244401752750,0.527456939220428,L, + 246326176000,0.523862004280090,L, + 248250599250,0.519350528717041,L, + 250175022500,0.513964056968689,L, + 252099445750,0.507740199565887,L, + 254023869000,0.500713944435120,L, + 255948292250,0.492916971445084,L, + 257872715500,0.484378188848495,L, + 259797138750,0.475124508142471,L, + 261721562000,0.465180665254593,L, + 263645985250,0.454568922519684,L, + 265570408500,0.443310052156448,L, + 267494831750,0.431423246860504,L, + 269419255000,0.418925613164902,L, + 271343678250,0.405833184719086,L, + 273268101500,0.392160147428513,L, + 275192524750,0.377919435501099,L, + 277116948000,0.363122612237930,L, + 279041371250,0.347779721021652,L, + 280965794500,0.331899464130402,L, + 282890217750,0.315488964319229,L, + 284814641000,0.298553854227066,L, + 286739064250,0.281097948551178,L, + 288663487500,0.263123154640198,L, + 290587910750,0.244629070162773,L, + 292512334000,0.225612506270409,L, + 294436757250,0.206066712737083,L, + 296361180500,0.185980305075645,L, + 298285603750,0.165335178375244,L, + 300210027000,0.144103288650513,L, + 302134450250,0.122239679098129,L, + 304058873500,0.099667996168137,L, + 307907720000,0.099667996168137,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000022053716748 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000022053716748,L, + 1924423250,0.000022049329345,L, + 3848846500,0.000022036834707,L, + 5773269750,0.000022017109586,L, + 7697693000,0.000021990868845,L, + 9622116250,0.000021958736397,L, + 11546539500,0.000021921227017,L, + 13470962750,0.000021878806365,L, + 15395386000,0.000021831861886,L, + 17319809250,0.000021780739189,L, + 19244232500,0.000021725758415,L, + 21168655750,0.000021667188776,L, + 23093079000,0.000021605283109,L, + 25017502250,0.000021540270609,L, + 26941925500,0.000021472369554,L, + 28866348750,0.000021401763661,L, + 30790772000,0.000021328653020,L, + 32715195250,0.000021253215891,L, + 34639618500,0.000021175626898,L, + 36564041750,0.000021096075216,L, + 38488465000,0.000021014748199,L, + 40412888250,0.000020931855033,L, + 42337311500,0.000020847630367,L, + 44261734750,0.000020762377972,L, + 46186158000,0.000020676470740,L, + 48110581250,0.000020590467102,L, + 50035004500,0.000020505234716,L, + 51959427750,0.000020422421585,L, + 53883851000,0.000020345971279,L, + 55808274250,0.000020295377908,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238431766629219,L, + 61581544000,0.255596786737442,L, + 63505967250,0.266741186380386,L, + 65430390500,0.274464070796967,L, + 67354813750,0.279989808797836,L, + 69279237000,0.284021466970444,L, + 71203660250,0.287016510963440,L, + 73128083500,0.289302140474319,L, + 75052506750,0.291131526231766,L, + 76976930000,0.292715609073639,L, + 78901353250,0.294243097305298,L, + 80825776500,0.295895457267761,L, + 82750199750,0.297859489917755,L, + 84674623000,0.300342142581940,L, + 86599046250,0.302909731864929,L, + 88523469500,0.305016607046127,L, + 90447892750,0.306721061468124,L, + 92372316000,0.308075636625290,L, + 94296739250,0.309129208326340,L, + 96221162500,0.309928983449936,L, + 98145585750,0.310521692037582,L, + 100070009000,0.310956478118896,L, + 101994432250,0.311287254095078,L, + 103918855500,0.311576664447784,L, + 105843278750,0.311902999877930,L, + 107767702000,0.312371373176575,L, + 109692125250,0.313137203454971,L, + 111616548500,0.314459115266800,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319951832294464,L, + 117389818250,0.322982698678970,L, + 119314241500,0.325968474149704,L, + 121238664750,0.328915923833847,L, + 123163088000,0.331828594207764,L, + 125087511250,0.334708690643311,L, + 127011934500,0.337557733058929,L, + 128936357750,0.340376853942871,L, + 130860781000,0.343166649341583,L, + 132785204250,0.345927774906158,L, + 134709627500,0.348660588264465,L, + 136634050750,0.351365298032761,L, + 138558474000,0.354042202234268,L, + 140482897250,0.356691271066666,L, + 142407320500,0.359312474727631,L, + 144331743750,0.361905902624130,L, + 146256167000,0.364471405744553,L, + 148180590250,0.367008686065674,L, + 150105013500,0.369517743587494,L, + 152029436750,0.371998280286789,L, + 153953860000,0.374449938535690,L, + 155878283250,0.376872509717941,L, + 157802706500,0.379265636205673,L, + 159727129750,0.381628841161728,L, + 161651553000,0.383961796760559,L, + 163575976250,0.386263966560364,L, + 165500399500,0.388534933328629,L, + 167424822750,0.390774130821228,L, + 169349246000,0.392980933189392,L, + 171273669250,0.395154893398285,L, + 173198092500,0.397295236587524,L, + 175122515750,0.399401307106018,L, + 177046939000,0.401472449302673,L, + 178971362250,0.403507828712463,L, + 180895785500,0.405506610870361,L, + 182820208750,0.407467991113663,L, + 184744632000,0.409390985965729,L, + 186669055250,0.411274731159210,L, + 188593478500,0.413118124008179,L, + 190517901750,0.414920061826706,L, + 192442325000,0.416679412126541,L, + 194366748250,0.418394953012466,L, + 196291171500,0.420065313577652,L, + 198215594750,0.421689331531525,L, + 200140018000,0.423265278339386,L, + 202064441250,0.424791723489761,L, + 203988864500,0.426266908645630,L, + 205913287750,0.427689135074615,L, + 207837711000,0.429056495428085,L, + 209762134250,0.430366903543472,L, + 211686557500,0.431618303060532,L, + 213610980750,0.432808160781860,L, + 215535404000,0.433934003114700,L, + 217459827250,0.434993237257004,L, + 219384250500,0.435982912778854,L, + 221308673750,0.436899721622467,L, + 223233097000,0.437740385532379,L, + 225157520250,0.438501089811325,L, + 227081943500,0.439177811145782,L, + 229006366750,0.439766019582748,L, + 230930790000,0.440260916948318,L, + 232855213250,0.440657198429108,L, + 234779636500,0.440948694944382,L, + 236704059750,0.441129118204117,L, + 238628483000,0.441191047430038,L, + 240552906250,0.440665364265442,L, + 242477329500,0.439128160476685,L, + 244401752750,0.436635047197342,L, + 246326176000,0.433236539363861,L, + 248250599250,0.428978949785233,L, + 250175022500,0.423904597759247,L, + 252099445750,0.418052643537521,L, + 254023869000,0.411458939313889,L, + 255948292250,0.404157042503357,L, + 257872715500,0.396177977323532,L, + 259797138750,0.387550562620163,L, + 261721562000,0.378301918506622,L, + 263645985250,0.368457466363907,L, + 265570408500,0.358041077852249,L, + 267494831750,0.347075492143631,L, + 269419255000,0.335582196712494,L, + 271343678250,0.323581814765930,L, + 273268101500,0.311094105243683,L, + 275192524750,0.298138201236725,L, + 277116948000,0.284732937812805,L, + 279041371250,0.270896762609482,L, + 280965794500,0.256648302078247,L, + 282890217750,0.242006242275238,L, + 284814641000,0.226990118622780,L, + 286739064250,0.211620554327965,L, + 288663487500,0.195920005440712,L, + 290587910750,0.179913669824600,L, + 292512334000,0.163630858063698,L, + 294436757250,0.147107362747192,L, + 296361180500,0.130388826131821,L, + 298285603750,0.113537006080151,L, + 300210027000,0.096641957759857,L, + 302134450250,0.079846352338791,L, + 304058873500,0.063407205045223,L, + 307907720000,0.063407205045223,L, + 309832143250,0.000028520822525,L, + 344471761750,0.000028520822525,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000025004148483 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025004148483,L, + 1924423250,0.000024992399631,L, + 3848846500,0.000024958939321,L, + 5773269750,0.000024906106773,L, + 7697693000,0.000024835841032,L, + 9622116250,0.000024749786462,L, + 11546539500,0.000024649349143,L, + 13470962750,0.000024535742341,L, + 15395386000,0.000024410022888,L, + 17319809250,0.000024273125746,L, + 19244232500,0.000024125885830,L, + 21168655750,0.000023969036192,L, + 23093079000,0.000023803253498,L, + 25017502250,0.000023629156203,L, + 26941925500,0.000023447308195,L, + 28866348750,0.000023258233341,L, + 30790772000,0.000023062444598,L, + 32715195250,0.000022860420358,L, + 34639618500,0.000022652649932,L, + 36564041750,0.000022439611712,L, + 38488465000,0.000022221818654,L, + 40412888250,0.000021999832825,L, + 42337311500,0.000021774290872,L, + 44261734750,0.000021545980417,L, + 46186158000,0.000021315929189,L, + 48110581250,0.000021085606932,L, + 50035004500,0.000020857369236,L, + 51959427750,0.000020635590772,L, + 53883851000,0.000020430858058,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238643720746040,L, + 61581544000,0.255954623222351,L, + 63505967250,0.267211735248566,L, + 65430390500,0.275024116039276,L, + 67354813750,0.280620604753494,L, + 69279237000,0.284706413745880,L, + 71203660250,0.287740379571915,L, + 73128083500,0.290049940347672,L, + 75052506750,0.291888356208801,L, + 76976930000,0.293466001749039,L, + 78901353250,0.294970810413361,L, + 80825776500,0.296582907438278,L, + 82750199750,0.298487424850464,L, + 84674623000,0.300888717174530,L, + 86599046250,0.303409337997437,L, + 88523469500,0.305511295795441,L, + 90447892750,0.307190865278244,L, + 92372316000,0.308460980653763,L, + 94296739250,0.309356451034546,L, + 96221162500,0.309937536716461,L, + 98145585750,0.310290098190308,L, + 100070009000,0.310519993305206,L, + 101994432250,0.310742646455765,L, + 103918855500,0.311069697141647,L, + 105843278750,0.311597794294357,L, + 107767702000,0.312400996685028,L, + 109692125250,0.313528895378113,L, + 111616548500,0.315009146928787,L, + 113540971750,0.316851437091827,L, + 115465395000,0.318933367729187,L, + 117389818250,0.321133226156235,L, + 119314241500,0.323450922966003,L, + 121238664750,0.325886189937592,L, + 123163088000,0.328438699245453,L, + 125087511250,0.331107795238495,L, + 127011934500,0.333892405033112,L, + 128936357750,0.336791455745697,L, + 130860781000,0.339803338050842,L, + 132785204250,0.342926204204559,L, + 134709627500,0.346157878637314,L, + 136634050750,0.349495738744736,L, + 138558474000,0.352936863899231,L, + 140482897250,0.356477916240692,L, + 142407320500,0.360115021467209,L, + 144331743750,0.363844066858292,L, + 146256167000,0.367660313844681,L, + 148180590250,0.371558815240860,L, + 150105013500,0.375533789396286,L, + 152029436750,0.379579305648804,L, + 153953860000,0.383688986301422,L, + 155878283250,0.387855887413025,L, + 157802706500,0.392072588205338,L, + 159727129750,0.396331578493118,L, + 161651553000,0.400624543428421,L, + 163575976250,0.404943287372589,L, + 165500399500,0.409278959035873,L, + 167424822750,0.413622558116913,L, + 169349246000,0.417964994907379,L, + 171273669250,0.422296911478043,L, + 173198092500,0.426608800888062,L, + 175122515750,0.430891275405884,L, + 177046939000,0.435134857892990,L, + 178971362250,0.439330220222473,L, + 180895785500,0.443467974662781,L, + 182820208750,0.447539269924164,L, + 184744632000,0.451535254716873,L, + 186669055250,0.455447584390640,L, + 188593478500,0.459267854690552,L, + 190517901750,0.462988555431366,L, + 192442325000,0.466602295637131,L, + 194366748250,0.470102369785309,L, + 196291171500,0.473482221364975,L, + 198215594750,0.476736068725586,L, + 200140018000,0.479858666658401,L, + 202064441250,0.482844948768616,L, + 203988864500,0.485690861940384,L, + 205913287750,0.488392382860184,L, + 207837711000,0.490946322679520,L, + 209762134250,0.493349790573120,L, + 211686557500,0.495600551366806,L, + 213610980750,0.497696667909622,L, + 215535404000,0.499636650085449,L, + 217459827250,0.501419365406036,L, + 219384250500,0.503044247627258,L, + 221308673750,0.504510998725891,L, + 223233097000,0.505819499492645,L, + 225157520250,0.506970167160034,L, + 227081943500,0.507963418960571,L, + 229006366750,0.508800268173218,L, + 230930790000,0.509481787681580,L, + 232855213250,0.510008871555328,L, + 234779636500,0.510383486747742,L, + 236704059750,0.510606944561005,L, + 238628483000,0.510681033134460,L, + 240552906250,0.510144233703613,L, + 242477329500,0.508572399616241,L, + 244401752750,0.506019473075867,L, + 246326176000,0.502534151077271,L, + 248250599250,0.498160988092422,L, + 250175022500,0.492940306663513,L, + 252099445750,0.486909180879593,L, + 254023869000,0.480101436376572,L, + 255948292250,0.472548305988312,L, + 257872715500,0.464278101921082,L, + 259797138750,0.455317199230194,L, + 261721562000,0.445689707994461,L, + 263645985250,0.435417920351028,L, + 265570408500,0.424522221088409,L, + 267494831750,0.413021445274353,L, + 269419255000,0.400932908058167,L, + 271343678250,0.388272374868393,L, + 273268101500,0.375054210424423,L, + 275192524750,0.361291706562042,L, + 277116948000,0.346996635198593,L, + 279041371250,0.332179427146912,L, + 280965794500,0.316849559545517,L, + 282890217750,0.301014930009842,L, + 284814641000,0.284682154655457,L, + 286739064250,0.267856448888779,L, + 288663487500,0.250541448593140,L, + 290587910750,0.232738986611366,L, + 292512334000,0.214448705315590,L, + 294436757250,0.195667758584023,L, + 296361180500,0.176389917731285,L, + 298285603750,0.156604379415512,L, + 300210027000,0.136294096708298,L, + 302134450250,0.115431457757950,L, + 304058873500,0.093970775604248,L, + 307907720000,0.093970775604248,L, + 309832143250,0.000042378902435,L, + 344471761750,0.000042378902435,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_025" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.127705276012421 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.127705276012421,L, + 1924423250,0.127715945243835,L, + 3848846500,0.127746164798737,L, + 5773269750,0.127793908119202,L, + 7697693000,0.127857446670532,L, + 9622116250,0.127935469150543,L, + 11546539500,0.128026962280273,L, + 13470962750,0.128130555152893,L, + 15395386000,0.128245711326599,L, + 17319809250,0.128371417522430,L, + 19244232500,0.128507256507874,L, + 21168655750,0.128652334213257,L, + 23093079000,0.128806233406067,L, + 25017502250,0.128968834877014,L, + 26941925500,0.129139482975006,L, + 28866348750,0.129317462444305,L, + 30790772000,0.129503250122070,L, + 32715195250,0.129696190357208,L, + 34639618500,0.129895865917206,L, + 36564041750,0.130102634429932,L, + 38488465000,0.130315780639648,L, + 40412888250,0.130535721778870,L, + 42337311500,0.130762040615082,L, + 44261734750,0.130995333194733,L, + 46186158000,0.131235122680664,L, + 48110581250,0.131482183933258,L, + 50035004500,0.131736814975739,L, + 51959427750,0.132000267505646,L, + 53883851000,0.132275283336639,L, + 55808274250,0.132572948932648,L, + 57732697500,0.133061766624451,L, + 59657120750,0.035243213176727,L, + 61581544000,0.040747523307800,L, + 63505967250,0.050898313522339,L, + 65430390500,0.062528610229492,L, + 67354813750,0.074592649936676,L, + 69279237000,0.086557924747467,L, + 71203660250,0.098081827163696,L, + 73128083500,0.108902096748352,L, + 75052506750,0.118789076805115,L, + 76976930000,0.127518832683563,L, + 78901353250,0.134855568408966,L, + 80825776500,0.140533208847046,L, + 82750199750,0.144236743450165,L, + 84674623000,0.145575404167175,L, + 86599046250,0.144330322742462,L, + 88523469500,0.140567362308502,L, + 90447892750,0.134305715560913,L, + 92372316000,0.125675916671753,L, + 94296739250,0.114950478076935,L, + 96221162500,0.102562606334686,L, + 98145585750,0.089100778102875,L, + 100070009000,0.075266718864441,L, + 101994432250,0.061804711818695,L, + 103918855500,0.049416899681091,L, + 105843278750,0.038691401481628,L, + 107767702000,0.030061662197113,L, + 109692125250,0.023800194263458,L, + 111616548500,0.020037174224854,L, + 113540971750,0.018792152404785,L, + 115465395000,0.018847703933716,L, + 117389818250,0.019014894962311,L, + 119314241500,0.019294321537018,L, + 121238664750,0.019686698913574,L, + 123163088000,0.020192623138428,L, + 125087511250,0.020812034606934,L, + 127011934500,0.021544575691223,L, + 128936357750,0.022389292716980,L, + 130860781000,0.023345530033112,L, + 132785204250,0.024411261081696,L, + 134709627500,0.025584936141968,L, + 136634050750,0.026863336563110,L, + 138558474000,0.028244078159332,L, + 140482897250,0.029723048210144,L, + 142407320500,0.031295895576477,L, + 144331743750,0.032957792282104,L, + 146256167000,0.034703195095062,L, + 148180590250,0.036526143550873,L, + 150105013500,0.038419425487518,L, + 152029436750,0.040375769138336,L, + 153953860000,0.042387485504150,L, + 155878283250,0.044446110725403,L, + 157802706500,0.046542882919312,L, + 159727129750,0.048668205738068,L, + 161651553000,0.050813019275665,L, + 163575976250,0.052967965602875,L, + 165500399500,0.055122554302216,L, + 167424822750,0.057267367839813,L, + 169349246000,0.059392988681793,L, + 171273669250,0.061489522457123,L, + 173198092500,0.063548147678375,L, + 175122515750,0.065560042858124,L, + 177046939000,0.067516148090363,L, + 178971362250,0.069409787654877,L, + 180895785500,0.071232378482819,L, + 182820208750,0.072977781295776,L, + 184744632000,0.074639678001404,L, + 186669055250,0.076212584972382,L, + 188593478500,0.077691495418549,L, + 190517901750,0.079072296619415,L, + 192442325000,0.080350935459137,L, + 194366748250,0.081524550914764,L, + 196291171500,0.082590281963348,L, + 198215594750,0.083546340465546,L, + 200140018000,0.084391236305237,L, + 202064441250,0.085123777389526,L, + 203988864500,0.085742950439453,L, + 205913287750,0.086248874664307,L, + 207837711000,0.086641371250153,L, + 209762134250,0.086920917034149,L, + 211686557500,0.087088167667389,L, + 213610980750,0.087143659591675,L, + 215535404000,0.087070405483246,L, + 217459827250,0.086849927902222,L, + 219384250500,0.086480677127838,L, + 221308673750,0.085962235927582,L, + 223233097000,0.085295975208282,L, + 225157520250,0.084484279155731,L, + 227081943500,0.083531022071838,L, + 229006366750,0.082442760467529,L, + 230930790000,0.081227779388428,L, + 232855213250,0.079896390438080,L, + 234779636500,0.078461706638336,L, + 236704059750,0.076938569545746,L, + 238628483000,0.075344443321228,L, + 240552906250,0.073697865009308,L, + 242477329500,0.072019457817078,L, + 244401752750,0.070330202579498,L, + 246326176000,0.068651914596558,L, + 248250599250,0.067005276679993,L, + 250175022500,0.065411031246185,L, + 252099445750,0.063888072967529,L, + 254023869000,0.062453150749207,L, + 255948292250,0.061121940612793,L, + 257872715500,0.059906721115112,L, + 259797138750,0.058818578720093,L, + 261721562000,0.057865560054779,L, + 263645985250,0.057053685188293,L, + 265570408500,0.056387424468994,L, + 267494831750,0.055868983268738,L, + 269419255000,0.055499732494354,L, + 271343678250,0.055279254913330,L, + 273268101500,0.055206060409546,L, + 275192524750,0.055221676826477,L, + 277116948000,0.055275261402130,L, + 279041371250,0.055379450321198,L, + 280965794500,0.055548191070557,L, + 282890217750,0.055797100067139,L, + 284814641000,0.056142687797546,L, + 286739064250,0.056601583957672,L, + 288663487500,0.057188689708710,L, + 290587910750,0.057916581630707,L, + 292512334000,0.058793365955353,L, + 294436757250,0.059822559356689,L, + 296361180500,0.061002612113953,L, + 298285603750,0.062327682971954,L, + 300210027000,0.063788056373596,L, + 302134450250,0.065372526645660,L, + 304058873500,0.067068159580231,L, + 305983296750,0.068862140178680,L, + 307907720000,0.070742070674896,L, + 309832143250,0.072869598865509,L, + 311756566500,0.075411796569824,L, + 313680989750,0.078359425067902,L, + 315605413000,0.081691205501556,L, + 317529836250,0.085369229316711,L, + 319454259500,0.089339852333069,L, + 321378682750,0.093530118465424,L, + 323303106000,0.097850561141968,L, + 325227529250,0.102197051048279,L, + 327151952500,0.106458365917206,L, + 329076375750,0.110523641109467,L, + 331000799000,0.114289462566376,L, + 332925222250,0.117667675018311,L, + 334849645500,0.120588719844818,L, + 336774068750,0.123004198074341,L, + 338698492000,0.124885261058807,L, + 340622915250,0.126220524311066,L, + 342547338500,0.127011895179749,L, + 344471761750,0.127271473407745,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.049150049686432 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.049150049686432,L, + 1924423250,-0.048483788967133,L, + 3848846500,-0.046586096286774,L, + 5773269750,-0.043588280677795,L, + 7697693000,-0.039599895477295,L, + 9622116250,-0.034713625907898,L, + 11546539500,-0.029008448123932,L, + 13470962750,-0.022552609443665,L, + 15395386000,-0.015405237674713,L, + 17319809250,-0.007618904113770,L, + 19244232500,0.000760316848755,L, + 21168655750,0.009691059589386,L, + 23093079000,0.019136011600494,L, + 25017502250,0.029061317443848,L, + 26941925500,0.039435684680939,L, + 28866348750,0.050230503082275,L, + 30790772000,0.061418592929840,L, + 32715195250,0.072973966598511,L, + 34639618500,0.084871292114258,L, + 36564041750,0.097085714340210,L, + 38488465000,0.109590709209442,L, + 40412888250,0.122358918190002,L, + 42337311500,0.135358512401581,L, + 44261734750,0.148551940917969,L, + 46186158000,0.161890745162964,L, + 48110581250,0.175305664539337,L, + 50035004500,0.188687860965729,L, + 51959427750,0.201833188533783,L, + 53883851000,0.214249730110168,L, + 55808274250,0.223492383956909,L, + 57732697500,0.224630892276764,L, + 59657120750,-0.027529001235962,L, + 61581544000,-0.048187077045441,L, + 63505967250,-0.058934390544891,L, + 65430390500,-0.066519379615784,L, + 67354813750,-0.072370350360870,L, + 69279237000,-0.077086091041565,L, + 71203660250,-0.080985903739929,L, + 73128083500,-0.084263920783997,L, + 75052506750,-0.087048709392548,L, + 76976930000,-0.089431166648865,L, + 78901353250,-0.091477751731873,L, + 80825776500,-0.093239367008209,L, + 82750199750,-0.094756066799164,L, + 84674623000,-0.096059918403625,L, + 86599046250,-0.097177326679230,L, + 88523469500,-0.098130643367767,L, + 90447892750,-0.098938703536987,L, + 92372316000,-0.099617302417755,L, + 94296739250,-0.100181579589844,L, + 96221162500,-0.100643575191498,L, + 98145585750,-0.101015090942383,L, + 100070009000,-0.101306855678558,L, + 101994432250,-0.101528823375702,L, + 103918855500,-0.101690471172333,L, + 105843278750,-0.101800858974457,L, + 107767702000,-0.101869583129883,L, + 109692125250,-0.101905882358551,L, + 111616548500,-0.101919651031494,L, + 113540971750,-0.101921796798706,L, + 115465395000,-0.101845622062683,L, + 117389818250,-0.101616680622101,L, + 119314241500,-0.101233422756195,L, + 121238664750,-0.100695550441742,L, + 123163088000,-0.100001990795135,L, + 125087511250,-0.099153041839600,L, + 127011934500,-0.098149120807648,L, + 128936357750,-0.096990883350372,L, + 130860781000,-0.095680415630341,L, + 132785204250,-0.094219267368317,L, + 134709627500,-0.092610716819763,L, + 136634050750,-0.090857803821564,L, + 138558474000,-0.088965356349945,L, + 140482897250,-0.086938083171844,L, + 142407320500,-0.084781944751740,L, + 144331743750,-0.082503676414490,L, + 146256167000,-0.080111145973206,L, + 148180590250,-0.077612519264221,L, + 150105013500,-0.075017333030701,L, + 152029436750,-0.072335541248322,L, + 153953860000,-0.069577991962433,L, + 155878283250,-0.066756129264832,L, + 157802706500,-0.063881993293762,L, + 159727129750,-0.060968458652496,L, + 161651553000,-0.058028221130371,L, + 163575976250,-0.055074751377106,L, + 165500399500,-0.052121222019196,L, + 167424822750,-0.049181103706360,L, + 169349246000,-0.046267449855804,L, + 171273669250,-0.043393373489380,L, + 173198092500,-0.040571630001068,L, + 175122515750,-0.037814021110535,L, + 177046939000,-0.035132110118866,L, + 178971362250,-0.032536923885345,L, + 180895785500,-0.030038297176361,L, + 182820208750,-0.027645766735077,L, + 184744632000,-0.025367558002472,L, + 186669055250,-0.023211479187012,L, + 188593478500,-0.021184146404266,L, + 190517901750,-0.019291579723358,L, + 192442325000,-0.017538905143738,L, + 194366748250,-0.015930294990540,L, + 196291171500,-0.014469087123871,L, + 198215594750,-0.013158500194550,L, + 200140018000,-0.012000501155853,L, + 202064441250,-0.010996520519257,L, + 203988864500,-0.010147571563721,L, + 205913287750,-0.009454011917114,L, + 207837711000,-0.008915901184082,L, + 209762134250,-0.008532881736755,L, + 211686557500,-0.008303821086884,L, + 213610980750,-0.008227765560150,L, + 215535404000,-0.008358776569366,L, + 217459827250,-0.008756995201111,L, + 219384250500,-0.009429216384888,L, + 221308673750,-0.010381400585175,L, + 223233097000,-0.011617422103882,L, + 225157520250,-0.013139307498932,L, + 227081943500,-0.014946877956390,L, + 229006366750,-0.017036676406860,L, + 230930790000,-0.019402563571930,L, + 232855213250,-0.022034406661987,L, + 234779636500,-0.024918198585510,L, + 236704059750,-0.028035759925842,L, + 238628483000,-0.031366050243378,L, + 240552906250,-0.034883022308350,L, + 242477329500,-0.038558483123779,L, + 244401752750,-0.042361378669739,L, + 246326176000,-0.046258926391602,L, + 248250599250,-0.050217688083649,L, + 250175022500,-0.054204344749451,L, + 252099445750,-0.058186709880829,L, + 254023869000,-0.062134027481079,L, + 255948292250,-0.066018581390381,L, + 257872715500,-0.069814980030060,L, + 259797138750,-0.073501288890839,L, + 261721562000,-0.077058672904968,L, + 263645985250,-0.080471456050873,L, + 265570408500,-0.083727240562439,L, + 267494831750,-0.086816251277924,L, + 269419255000,-0.089731514453888,L, + 271343678250,-0.092468023300171,L, + 273268101500,-0.095022559165955,L, + 275192524750,-0.097560286521912,L, + 277116948000,-0.100240170955658,L, + 279041371250,-0.103046774864197,L, + 280965794500,-0.105956971645355,L, + 282890217750,-0.108939051628113,L, + 284814641000,-0.111952126026154,L, + 286739064250,-0.114946305751801,L, + 288663487500,-0.117866039276123,L, + 290587910750,-0.120651841163635,L, + 292512334000,-0.123246848583221,L, + 294436757250,-0.125599145889282,L, + 296361180500,-0.127667665481567,L, + 298285603750,-0.129423737525940,L, + 300210027000,-0.130850791931152,L, + 302134450250,-0.131944060325623,L, + 304058873500,-0.132708072662354,L, + 305983296750,-0.133154451847076,L, + 307907720000,-0.133299231529236,L, + 309832143250,-0.132827341556549,L, + 311756566500,-0.131400585174561,L, + 313680989750,-0.129016339778900,L, + 315605413000,-0.125694453716278,L, + 317529836250,-0.121483683586121,L, + 319454259500,-0.116468369960785,L, + 321378682750,-0.110770165920258,L, + 323303106000,-0.104550123214722,L, + 325227529250,-0.098001599311829,L, + 327151952500,-0.091340601444244,L, + 329076375750,-0.084791898727417,L, + 331000799000,-0.078571796417236,L, + 332925222250,-0.072873771190643,L, + 334849645500,-0.067858338356018,L, + 336774068750,-0.063647747039795,L, + 338698492000,-0.060325622558594,L, + 340622915250,-0.057941555976868,L, + 342547338500,-0.056514918804169,L, + 344471761750,-0.056042850017548,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.246537327766418 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.246537327766418,L, + 1924423250,0.247256398200989,L, + 3848846500,0.249305725097656,L, + 5773269750,0.252544879913330,L, + 7697693000,0.256857156753540,L, + 9622116250,0.262144088745117,L, + 11546539500,0.268321394920349,L, + 13470962750,0.275316834449768,L, + 15395386000,0.283067822456360,L, + 17319809250,0.291518926620483,L, + 19244232500,0.300621986389160,L, + 21168655750,0.310333847999573,L, + 23093079000,0.320615768432617,L, + 25017502250,0.331433057785034,L, + 26941925500,0.342754483222961,L, + 28866348750,0.354551076889038,L, + 30790772000,0.366796374320984,L, + 32715195250,0.379465579986572,L, + 34639618500,0.392535448074341,L, + 36564041750,0.405983448028564,L, + 38488465000,0.419787406921387,L, + 40412888250,0.433924794197083,L, + 42337311500,0.448371648788452,L, + 44261734750,0.463100552558899,L, + 46186158000,0.478077888488770,L, + 48110581250,0.493258357048035,L, + 50035004500,0.508570909500122,L, + 51959427750,0.523885011672974,L, + 53883851000,0.538881659507751,L, + 55808274250,0.551941394805908,L, + 57732697500,0.559229731559753,L, + 59657120750,0.034105896949768,L, + 111616548500,0.034105896949768,L, + 113540971750,0.007775664329529,L, + 211686557500,0.007775664329529,L, + 213610980750,-0.003737568855286,L, + 215535404000,-0.003504753112793,L, + 217459827250,-0.002799987792969,L, + 219384250500,-0.001615166664124,L, + 221308673750,0.000054955482483,L, + 223233097000,0.002212166786194,L, + 225157520250,0.004853963851929,L, + 227081943500,0.007972955703735,L, + 229006366750,0.011556267738342,L, + 230930790000,0.015584468841553,L, + 232855213250,0.020031452178955,L, + 234779636500,0.024863839149475,L, + 236704059750,0.030041575431824,L, + 238628483000,0.035517454147339,L, + 240552906250,0.041238546371460,L, + 242477329500,0.047146558761597,L, + 244401752750,0.053180098533630,L, + 246326176000,0.059275627136230,L, + 248250599250,0.065369367599487,L, + 250175022500,0.071399331092834,L, + 252099445750,0.077306509017944,L, + 254023869000,0.083036661148071,L, + 255948292250,0.088540792465210,L, + 257872715500,0.093776106834412,L, + 259797138750,0.098706364631653,L, + 261721562000,0.103302001953125,L, + 263645985250,0.107539415359497,L, + 265570408500,0.111401081085205,L, + 267494831750,0.114874362945557,L, + 269419255000,0.117951869964600,L, + 271343678250,0.120629668235779,L, + 273268101500,0.122907519340515,L, + 275192524750,0.124830722808838,L, + 277116948000,0.126439809799194,L, + 279041371250,0.127734303474426,L, + 280965794500,0.128722310066223,L, + 282890217750,0.129423379898071,L, + 284814641000,0.129869580268860,L, + 286739064250,0.130107641220093,L, + 288663487500,0.130197763442993,L, + 290587910750,0.130210757255554,L, + 292512334000,0.130223870277405,L, + 294436757250,0.130313992500305,L, + 296361180500,0.130552053451538,L, + 298285603750,0.130998253822327,L, + 300210027000,0.131699323654175,L, + 302134450250,0.132687449455261,L, + 304058873500,0.133981823921204,L, + 305983296750,0.135590910911560,L, + 307907720000,0.137514114379883,L, + 309832143250,0.140060782432556,L, + 311756566500,0.143548250198364,L, + 313680989750,0.147967338562012,L, + 315605413000,0.153284311294556,L, + 317529836250,0.159433960914612,L, + 319454259500,0.166314363479614,L, + 321378682750,0.173783898353577,L, + 323303106000,0.181662797927856,L, + 325227529250,0.189738988876343,L, + 327151952500,0.197780966758728,L, + 329076375750,0.205552577972412,L, + 331000799000,0.212830901145935,L, + 332925222250,0.219420790672302,L, + 334849645500,0.225164532661438,L, + 336774068750,0.229946732521057,L, + 338698492000,0.233693122863770,L, + 340622915250,0.236365675926208,L, + 342547338500,0.237956523895264,L, + 344471761750,0.238480567932129,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.859380404291500 + KeyVer: 4005 + KeyCount: 150 + Key: + 0,-93.859380404291500,L, + 1924423250,-93.853322026497707,L, + 3848846500,-93.832974892960266,L, + 5773269750,-93.795251758174345,L, + 7697693000,-93.737188320040147,L, + 9622116250,-93.655895408538782,L, + 11546539500,-93.548436042327126,L, + 13470962750,-93.411811768359556,L, + 15395386000,-93.242887529807035,L, + 17319809250,-93.038302873597942,L, + 19244232500,-92.794444629661328,L, + 21168655750,-92.507344458089420,L, + 23093079000,-92.172603717056745,L, + 25017502250,-91.785250028847543,L, + 26941925500,-91.339655317585724,L, + 28866348750,-90.829324073370614,L, + 30790772000,-90.246667956034344,L, + 32715195250,-89.582712097007530,L, + 34639618500,-88.826664797401563,L, + 36564041750,-87.965323301550825,L, + 38488465000,-86.982220023366452,L, + 40412888250,-85.856331640583178,L, + 42337311500,-84.560050528575829,L, + 44261734750,-83.055824307287736,L, + 46186158000,-81.290220406841982,L, + 48110581250,-79.182492330870772,L, + 50035004500,-76.599724598125860,L, + 51959427750,-73.292116700092734,L, + 53883851000,-68.662252480638728,L, + 55808274250,-59.846629771753484,L, + 57732697500,-28.335755234072742,L, + 59657120750,-93.865117763194306,L, + 61581544000,-93.154381938542144,L, + 63505967250,-91.780079575645843,L, + 65430390500,-90.120712437550310,L, + 67354813750,-88.299538118017409,L, + 69279237000,-86.376054394907030,L, + 71203660250,-84.385108893364546,L, + 73128083500,-82.349862784865408,L, + 75052506750,-80.287336900821273,L, + 76976930000,-78.211150638437147,L, + 78901353250,-76.133147545733792,L, + 80825776500,-74.064494982004177,L, + 82750199750,-72.016537891459663,L, + 84674623000,-70.001768690092192,L, + 86599046250,-67.872675782397224,L, + 88523469500,-65.479999044442664,L, + 90447892750,-62.845369685329914,L, + 92372316000,-60.007344122923655,L, + 94296739250,-57.024293153870723,L, + 96221162500,-53.974921047977062,L, + 98145585750,-50.954785566825599,L, + 100070009000,-48.068170038663936,L, + 101994432250,-45.416728168909231,L, + 103918855500,-43.087995661964243,L, + 105843278750,-41.147098371564937,L, + 107767702000,-39.633784583586163,L, + 109692125250,-38.564084752009911,L, + 111616548500,-37.935078970965996,L, + 113540971750,-37.730525050608165,L, + 115465395000,-37.776072167088330,L, + 117389818250,-37.913283837324521,L, + 119314241500,-38.142819174571635,L, + 121238664750,-38.465204103395777,L, + 123163088000,-38.880701586079979,L, + 125087511250,-39.389332113191756,L, + 127011934500,-39.990846382826405,L, + 128936357750,-40.684670659093648,L, + 130860781000,-41.469899941928446,L, + 132785204250,-42.345250155766855,L, + 134709627500,-43.309047904262215,L, + 136634050750,-44.359179243866414,L, + 138558474000,-45.493065778167768,L, + 140482897250,-46.707671488080223,L, + 142407320500,-47.999451505424538,L, + 144331743750,-49.364352112928316,L, + 146256167000,-50.797817574415177,L, + 148180590250,-52.294769644237206,L, + 150105013500,-53.849655378599209,L, + 152029436750,-55.456416399707379,L, + 153953860000,-57.108574273133975,L, + 155878283250,-58.799220262533538,L, + 157802706500,-60.521131442858788,L, + 159727129750,-62.266729719225609,L, + 161651553000,-64.028269657115217,L, + 163575976250,-65.797821406901235,L, + 165500399500,-67.567366326498089,L, + 167424822750,-69.328913094576862,L, + 169349246000,-71.074531861511190,L, + 171273669250,-72.796415721079768,L, + 173198092500,-74.487071955763085,L, + 175122515750,-76.139219583905927,L, + 177046939000,-77.745980605014097,L, + 178971362250,-79.300873169565264,L, + 180895785500,-80.797818409198129,L, + 182820208750,-82.231304361252498,L, + 184744632000,-83.596201553661686,L, + 186669055250,-84.887967910627665,L, + 188593478500,-86.102573620540113,L, + 190517901750,-87.236473815219810,L, + 192442325000,-88.286601739729420,L, + 194366748250,-89.250396073130204,L, + 196291171500,-90.125746286968607,L, + 198215594750,-90.910958494330487,L, + 200140018000,-91.604796430976066,L, + 202064441250,-92.206303870421536,L, + 203988864500,-92.714941227722491,L, + 205913287750,-93.130442125501276,L, + 207837711000,-93.452820224136246,L, + 209762134250,-93.682369221761704,L, + 211686557500,-93.819567231619558,L, + 213610980750,-93.865124593383470,L, + 273268101500,-93.865124593383470,L, + 275192524750,-93.636873331700315,L, + 277116948000,-92.946826150044089,L, + 279041371250,-91.794395652146179,L, + 280965794500,-90.191657612459139,L, + 282890217750,-88.166923165092641,L, + 284814641000,-85.767778237994079,L, + 286739064250,-83.062668156836082,L, + 288663487500,-80.140009720424317,L, + 290587910750,-77.104120407952237,L, + 292512334000,-74.068244755858501,L, + 294436757250,-71.145586319446736,L, + 296361180500,-68.440476238288738,L, + 298285603750,-66.041331311190177,L, + 300210027000,-64.016590033634515,L, + 302134450250,-62.413858824136639,L, + 304058873500,-61.261435156427893,L, + 305983296750,-60.571387974771667,L, + 307907720000,-60.343136713088512,L, + 309832143250,-60.547912614594367,L, + 311756566500,-61.166932659071733,L, + 313680989750,-62.201467261706227,L, + 315605413000,-63.642883063386968,L, + 317529836250,-65.469897194660220,L, + 319454259500,-67.646138898195730,L, + 321378682750,-70.118564924899246,L, + 323303106000,-72.817534665993421,L, + 325227529250,-75.659036794687211,L, + 327151952500,-78.549217681595607,L, + 329076375750,-81.390719810289397,L, + 331000799000,-84.089696381572736,L, + 332925222250,-86.562122408276252,L, + 334849645500,-88.738357281622598,L, + 336774068750,-90.565364582706678,L, + 338698492000,-92.006773554198247,L, + 340622915250,-93.041308156832741,L, + 342547338500,-93.660355522066794,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788390159607,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700315058231354,L, + 9622116250,0.690882980823517,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248172760010,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592853069305,L, + 25017502250,0.567304253578186,L, + 26941925500,0.547118842601776,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426844120026,L, + 38488465000,0.409835755825043,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932554721832,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066453456879,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862943172455,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978456258774,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021488904953,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421589374542,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869097709656,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212594509125,L, + 117389818250,0.691212713718414,L, + 119314241500,0.691212594509125,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212594509125,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212534904480,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212594509125,L, + 138558474000,0.691212713718414,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212713718414,L, + 146256167000,0.691212594509125,L, + 148180590250,0.691212594509125,L, + 152029436750,0.691212713718414,L, + 155878283250,0.691212594509125,L, + 157802706500,0.691212594509125,L, + 159727129750,0.691212654113770,L, + 161651553000,0.691212654113770,L, + 163575976250,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212654113770,L, + 171273669250,0.691212594509125,L, + 173198092500,0.691212654113770,L, + 175122515750,0.691212594509125,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 182820208750,0.691212594509125,L, + 184744632000,0.691212594509125,L, + 186669055250,0.691212654113770,L, + 190517901750,0.691212654113770,L, + 194366748250,0.691212534904480,L, + 196291171500,0.691212654113770,L, + 198215594750,0.691212594509125,L, + 200140018000,0.691212654113770,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212713718414,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212594509125,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061564445496,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123395442963,L, + 296361180500,0.699201047420502,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748200416565,L, + 311756566500,0.706630885601044,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589076995850,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432545661926,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403505325317,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932556152344,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788390159607,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700315058231354,L, + 9622116250,0.690882980823517,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248172760010,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592853069305,L, + 25017502250,0.567304253578186,L, + 26941925500,0.547118842601776,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426844120026,L, + 38488465000,0.409835755825043,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932554721832,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066453456879,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862943172455,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978456258774,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021488904953,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421589374542,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869097709656,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212594509125,L, + 117389818250,0.691212713718414,L, + 119314241500,0.691212594509125,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212594509125,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212534904480,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212594509125,L, + 138558474000,0.691212713718414,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212713718414,L, + 146256167000,0.691212594509125,L, + 148180590250,0.691212594509125,L, + 152029436750,0.691212713718414,L, + 155878283250,0.691212594509125,L, + 157802706500,0.691212594509125,L, + 159727129750,0.691212654113770,L, + 161651553000,0.691212654113770,L, + 163575976250,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212654113770,L, + 171273669250,0.691212594509125,L, + 173198092500,0.691212654113770,L, + 175122515750,0.691212594509125,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 182820208750,0.691212594509125,L, + 184744632000,0.691212594509125,L, + 186669055250,0.691212654113770,L, + 190517901750,0.691212654113770,L, + 194366748250,0.691212534904480,L, + 196291171500,0.691212654113770,L, + 198215594750,0.691212594509125,L, + 200140018000,0.691212654113770,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212713718414,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212594509125,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061564445496,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123395442963,L, + 296361180500,0.699201047420502,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748200416565,L, + 311756566500,0.706630885601044,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589076995850,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432545661926,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403505325317,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932556152344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.436138242483139 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.436138242483139,L, + 1924423250,0.435350835323334,L, + 3848846500,0.433106750249863,L, + 5773269750,0.429559528827667,L, + 7697693000,0.424836695194244,L, + 9622116250,0.419046014547348,L, + 11546539500,0.412279248237610,L, + 13470962750,0.404615432024002,L, + 15395386000,0.396123141050339,L, + 17319809250,0.386862426996231,L, + 19244232500,0.376886159181595,L, + 21168655750,0.366241276264191,L, + 23093079000,0.354969829320908,L, + 25017502250,0.343109428882599,L, + 26941925500,0.330694317817688,L, + 28866348750,0.317755550146103,L, + 30790772000,0.304321765899658,L, + 32715195250,0.290419518947601,L, + 34639618500,0.276073813438416,L, + 36564041750,0.261308491230011,L, + 38488465000,0.246146962046623,L, + 40412888250,0.230612650513649,L, + 42337311500,0.214730501174927,L, + 44261734750,0.198528274893761,L, + 46186158000,0.182039842009544,L, + 48110581250,0.165310576558113,L, + 50035004500,0.148410767316818,L, + 51959427750,0.131469786167145,L, + 53883851000,0.114804364740849,L, + 55808274250,0.100030779838562,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882522106171,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354133605957,L, + 67354813750,0.123738169670105,L, + 69279237000,0.133280381560326,L, + 71203660250,0.142899021506310,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323513388634,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626767396927,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560553312302,L, + 92372316000,0.245301157236099,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126017570496,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813740491867,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296051740646,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146136522293,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706455945969,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857344388962,L, + 138558474000,0.382175147533417,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771320581436,L, + 148180590250,0.396268129348755,L, + 150105013500,0.398613512516022,L, + 152029436750,0.400813609361649,L, + 153953860000,0.402875453233719,L, + 155878283250,0.404806703329086,L, + 157802706500,0.406615942716599,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905672073364,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412824988365173,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904615402222,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405583620071,L, + 180895785500,0.422571808099747,L, + 182820208750,0.423754513263702,L, + 184744632000,0.424963057041168,L, + 186669055250,0.426206141710281,L, + 188593478500,0.427491754293442,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220544338226,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436478018760681,L, + 202064441250,0.438237309455872,L, + 203988864500,0.440081894397736,L, + 205913287750,0.442014664411545,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153551340103,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667589902878,L, + 215535404000,0.453080922365189,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265990018845,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866910457611,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050713539124,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470610618591,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214479923248,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522052049637,L, + 244401752750,0.498546570539474,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530433177948,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166801452637,L, + 269419255000,0.521676063537598,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.522074997425079,L, + 277116948000,0.522067368030548,L, + 279041371250,0.522045075893402,L, + 280965794500,0.521998286247253,L, + 282890217750,0.521915435791016,L, + 284814641000,0.521783769130707,L, + 286739064250,0.521589577198029,L, + 288663487500,0.521319210529327,L, + 290587910750,0.520960390567780,L, + 292512334000,0.520502984523773,L, + 294436757250,0.519940137863159,L, + 296361180500,0.519268631935120,L, + 298285603750,0.518488883972168,L, + 300210027000,0.517604291439056,L, + 302134450250,0.516620635986328,L, + 304058873500,0.515545189380646,L, + 305983296750,0.514385879039764,L, + 307907720000,0.513150990009308,L, + 309832143250,0.511548995971680,L, + 311756566500,0.509279549121857,L, + 313680989750,0.506347715854645,L, + 315605413000,0.502776086330414,L, + 317529836250,0.498609393835068,L, + 319454259500,0.493917971849442,L, + 321378682750,0.488800197839737,L, + 323303106000,0.483381718397141,L, + 325227529250,0.477810591459274,L, + 327151952500,0.472249627113342,L, + 329076375750,0.466864675283432,L, + 331000799000,0.461813002824783,L, + 332925222250,0.457232862710953,L, + 334849645500,0.453235864639282,L, + 336774068750,0.449904769659042,L, + 338698492000,0.447292923927307,L, + 340622915250,0.445428252220154,L, + 342547338500,0.444317549467087,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_056" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.127705097198486 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.127705097198486,L, + 1924423250,0.127715826034546,L, + 3848846500,0.127745866775513,L, + 5773269750,0.127793788909912,L, + 7697693000,0.127857208251953,L, + 9622116250,0.127935409545898,L, + 11546539500,0.128026723861694,L, + 13470962750,0.128130435943604,L, + 15395386000,0.128245592117310,L, + 17319809250,0.128371238708496,L, + 19244232500,0.128507137298584,L, + 21168655750,0.128652095794678,L, + 23093079000,0.128806114196777,L, + 25017502250,0.128968715667725,L, + 26941925500,0.129139184951782,L, + 28866348750,0.129317522048950,L, + 30790772000,0.129503250122070,L, + 32715195250,0.129696130752563,L, + 34639618500,0.129895925521851,L, + 36564041750,0.130102396011353,L, + 38488465000,0.130315780639648,L, + 40412888250,0.130535602569580,L, + 42337311500,0.130762100219727,L, + 44261734750,0.130995273590088,L, + 46186158000,0.131235122680664,L, + 48110581250,0.131482124328613,L, + 50035004500,0.131736755371094,L, + 51959427750,0.132000207901001,L, + 53883851000,0.132275104522705,L, + 55808274250,0.132572650909424,L, + 57732697500,0.133061647415161,L, + 59657120750,0.035243034362793,L, + 61581544000,0.040747404098511,L, + 63505967250,0.050897955894470,L, + 65430390500,0.062528491020203,L, + 67354813750,0.074592590332031,L, + 69279237000,0.086557865142822,L, + 71203660250,0.098081827163696,L, + 73128083500,0.108901977539062,L, + 75052506750,0.118788719177246,L, + 76976930000,0.127518653869629,L, + 78901353250,0.134855508804321,L, + 80825776500,0.140533208847046,L, + 82750199750,0.144236564636230,L, + 84674623000,0.145575046539307,L, + 86599046250,0.144330263137817,L, + 88523469500,0.140567064285278,L, + 90447892750,0.134305477142334,L, + 92372316000,0.125675678253174,L, + 94296739250,0.114950418472290,L, + 96221162500,0.102562427520752,L, + 98145585750,0.089100599288940,L, + 100070009000,0.075266599655151,L, + 101994432250,0.061804652214050,L, + 103918855500,0.049416899681091,L, + 105843278750,0.038691401481628,L, + 107767702000,0.030061721801758,L, + 109692125250,0.023800015449524,L, + 111616548500,0.020036935806274,L, + 113540971750,0.018792033195496,L, + 115465395000,0.018847584724426,L, + 117389818250,0.019014716148376,L, + 119314241500,0.019294142723083,L, + 121238664750,0.019686579704285,L, + 123163088000,0.020192623138428,L, + 125087511250,0.020811796188354,L, + 127011934500,0.021544337272644,L, + 128936357750,0.022389173507690,L, + 130860781000,0.023345351219177,L, + 132785204250,0.024411082267761,L, + 134709627500,0.025584578514099,L, + 136634050750,0.026863336563110,L, + 138558474000,0.028244018554688,L, + 140482897250,0.029723048210144,L, + 142407320500,0.031295895576477,L, + 144331743750,0.032957792282104,L, + 146256167000,0.034703254699707,L, + 148180590250,0.036526083946228,L, + 150105013500,0.038419246673584,L, + 152029436750,0.040375709533691,L, + 153953860000,0.042387366294861,L, + 155878283250,0.044445991516113,L, + 157802706500,0.046542525291443,L, + 159727129750,0.048668265342712,L, + 161651553000,0.050813078880310,L, + 163575976250,0.052967667579651,L, + 165500399500,0.055122494697571,L, + 167424822750,0.057267308235168,L, + 169349246000,0.059392809867859,L, + 171273669250,0.061489462852478,L, + 173198092500,0.063547968864441,L, + 175122515750,0.065559744834900,L, + 177046939000,0.067516088485718,L, + 178971362250,0.069409489631653,L, + 180895785500,0.071232318878174,L, + 182820208750,0.072977542877197,L, + 184744632000,0.074639678001404,L, + 186669055250,0.076212525367737,L, + 188593478500,0.077691435813904,L, + 190517901750,0.079072117805481,L, + 192442325000,0.080350756645203,L, + 194366748250,0.081524252891541,L, + 196291171500,0.082590222358704,L, + 198215594750,0.083546400070190,L, + 200140018000,0.084391236305237,L, + 202064441250,0.085123538970947,L, + 203988864500,0.085742950439453,L, + 205913287750,0.086248755455017,L, + 207837711000,0.086641311645508,L, + 209762134250,0.086920857429504,L, + 211686557500,0.087087988853455,L, + 213610980750,0.087143301963806,L, + 215535404000,0.087070345878601,L, + 217459827250,0.086849808692932,L, + 219384250500,0.086480617523193,L, + 221308673750,0.085962176322937,L, + 223233097000,0.085295915603638,L, + 225157520250,0.084483981132507,L, + 227081943500,0.083530902862549,L, + 229006366750,0.082442641258240,L, + 230930790000,0.081227660179138,L, + 232855213250,0.079896211624146,L, + 234779636500,0.078461527824402,L, + 236704059750,0.076938390731812,L, + 238628483000,0.075344324111938,L, + 240552906250,0.073697686195374,L, + 242477329500,0.072019338607788,L, + 244401752750,0.070330142974854,L, + 246326176000,0.068651676177979,L, + 248250599250,0.067005276679993,L, + 250175022500,0.065410971641541,L, + 252099445750,0.063887834548950,L, + 254023869000,0.062453150749207,L, + 255948292250,0.061121821403503,L, + 257872715500,0.059906721115112,L, + 259797138750,0.058818578720093,L, + 261721562000,0.057865381240845,L, + 263645985250,0.057053565979004,L, + 265570408500,0.056387186050415,L, + 267494831750,0.055868864059448,L, + 269419255000,0.055499553680420,L, + 271343678250,0.055279016494751,L, + 273268101500,0.055205941200256,L, + 275192524750,0.055221438407898,L, + 277116948000,0.055275082588196,L, + 279041371250,0.055379390716553,L, + 280965794500,0.055547952651978,L, + 282890217750,0.055796861648560,L, + 284814641000,0.056142568588257,L, + 286739064250,0.056601405143738,L, + 288663487500,0.057188630104065,L, + 290587910750,0.057916402816772,L, + 292512334000,0.058793306350708,L, + 294436757250,0.059822440147400,L, + 296361180500,0.061002492904663,L, + 298285603750,0.062327504158020,L, + 300210027000,0.063788056373596,L, + 302134450250,0.065372347831726,L, + 304058873500,0.067067980766296,L, + 305983296750,0.068861961364746,L, + 307907720000,0.070742130279541,L, + 309832143250,0.072869420051575,L, + 311756566500,0.075411796569824,L, + 313680989750,0.078359603881836,L, + 315605413000,0.081691145896912,L, + 317529836250,0.085369110107422,L, + 319454259500,0.089339733123779,L, + 321378682750,0.093530058860779,L, + 323303106000,0.097850322723389,L, + 325227529250,0.102196693420410,L, + 327151952500,0.106458187103271,L, + 329076375750,0.110523462295532,L, + 331000799000,0.114289283752441,L, + 332925222250,0.117667436599731,L, + 334849645500,0.120588541030884,L, + 336774068750,0.123003959655762,L, + 338698492000,0.124885320663452,L, + 340622915250,0.126220464706421,L, + 342547338500,0.127011537551880,L, + 344471761750,0.127271413803101,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.049150228500366 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.049150228500366,L, + 1924423250,-0.048483848571777,L, + 3848846500,-0.046586155891418,L, + 5773269750,-0.043588399887085,L, + 7697693000,-0.039600014686584,L, + 9622116250,-0.034713864326477,L, + 11546539500,-0.029008626937866,L, + 13470962750,-0.022552609443665,L, + 15395386000,-0.015405535697937,L, + 17319809250,-0.007619023323059,L, + 19244232500,0.000760197639465,L, + 21168655750,0.009690880775452,L, + 23093079000,0.019135951995850,L, + 25017502250,0.029061198234558,L, + 26941925500,0.039435625076294,L, + 28866348750,0.050230383872986,L, + 30790772000,0.061418533325195,L, + 32715195250,0.072973728179932,L, + 34639618500,0.084871172904968,L, + 36564041750,0.097085475921631,L, + 38488465000,0.109590649604797,L, + 40412888250,0.122358679771423,L, + 42337311500,0.135358333587646,L, + 44261734750,0.148551821708679,L, + 46186158000,0.161890506744385,L, + 48110581250,0.175305485725403,L, + 50035004500,0.188687682151794,L, + 51959427750,0.201833128929138,L, + 53883851000,0.214249610900879,L, + 55808274250,0.223492264747620,L, + 57732697500,0.224630594253540,L, + 59657120750,-0.027529239654541,L, + 61581544000,-0.048187136650085,L, + 63505967250,-0.058934569358826,L, + 65430390500,-0.066519498825073,L, + 67354813750,-0.072370409965515,L, + 69279237000,-0.077086210250854,L, + 71203660250,-0.080985903739929,L, + 73128083500,-0.084264039993286,L, + 75052506750,-0.087048888206482,L, + 76976930000,-0.089431285858154,L, + 78901353250,-0.091477751731873,L, + 80825776500,-0.093239426612854,L, + 82750199750,-0.094756126403809,L, + 84674623000,-0.096059918403625,L, + 86599046250,-0.097177386283875,L, + 88523469500,-0.098130822181702,L, + 90447892750,-0.098938703536987,L, + 92372316000,-0.099617600440979,L, + 94296739250,-0.100181698799133,L, + 96221162500,-0.100643754005432,L, + 98145585750,-0.101015329360962,L, + 100070009000,-0.101307034492493,L, + 101994432250,-0.101528882980347,L, + 103918855500,-0.101690530776978,L, + 105843278750,-0.101801037788391,L, + 107767702000,-0.101869702339172,L, + 109692125250,-0.101905941963196,L, + 111616548500,-0.101919770240784,L, + 113540971750,-0.101921916007996,L, + 115465395000,-0.101845741271973,L, + 117389818250,-0.101616859436035,L, + 119314241500,-0.101233720779419,L, + 121238664750,-0.100695610046387,L, + 123163088000,-0.100002050399780,L, + 125087511250,-0.099153161048889,L, + 127011934500,-0.098149180412292,L, + 128936357750,-0.096991062164307,L, + 130860781000,-0.095680475234985,L, + 132785204250,-0.094219446182251,L, + 134709627500,-0.092610716819763,L, + 136634050750,-0.090857982635498,L, + 138558474000,-0.088965415954590,L, + 140482897250,-0.086938023567200,L, + 142407320500,-0.084782004356384,L, + 144331743750,-0.082503795623779,L, + 146256167000,-0.080111384391785,L, + 148180590250,-0.077612757682800,L, + 150105013500,-0.075017452239990,L, + 152029436750,-0.072335600852966,L, + 153953860000,-0.069578051567078,L, + 155878283250,-0.066756129264832,L, + 157802706500,-0.063882112503052,L, + 159727129750,-0.060968637466431,L, + 161651553000,-0.058028459548950,L, + 163575976250,-0.055074930191040,L, + 165500399500,-0.052121281623840,L, + 167424822750,-0.049181222915649,L, + 169349246000,-0.046267509460449,L, + 171273669250,-0.043393492698669,L, + 173198092500,-0.040571570396423,L, + 175122515750,-0.037814021110535,L, + 177046939000,-0.035132288932800,L, + 178971362250,-0.032536983489990,L, + 180895785500,-0.030038475990295,L, + 182820208750,-0.027645826339722,L, + 184744632000,-0.025367617607117,L, + 186669055250,-0.023211598396301,L, + 188593478500,-0.021184325218201,L, + 190517901750,-0.019291758537292,L, + 192442325000,-0.017539024353027,L, + 194366748250,-0.015930294990540,L, + 196291171500,-0.014469265937805,L, + 198215594750,-0.013158679008484,L, + 200140018000,-0.012000560760498,L, + 202064441250,-0.010996699333191,L, + 203988864500,-0.010147809982300,L, + 205913287750,-0.009454131126404,L, + 207837711000,-0.008916139602661,L, + 209762134250,-0.008533000946045,L, + 211686557500,-0.008303999900818,L, + 213610980750,-0.008227944374084,L, + 215535404000,-0.008358955383301,L, + 217459827250,-0.008757114410400,L, + 219384250500,-0.009429335594177,L, + 221308673750,-0.010381579399109,L, + 223233097000,-0.011617422103882,L, + 225157520250,-0.013139486312866,L, + 227081943500,-0.014946937561035,L, + 229006366750,-0.017036795616150,L, + 230930790000,-0.019402861595154,L, + 232855213250,-0.022034525871277,L, + 234779636500,-0.024918317794800,L, + 236704059750,-0.028036117553711,L, + 238628483000,-0.031366109848022,L, + 240552906250,-0.034883141517639,L, + 242477329500,-0.038558602333069,L, + 244401752750,-0.042361378669739,L, + 246326176000,-0.046258926391602,L, + 248250599250,-0.050217747688293,L, + 250175022500,-0.054204463958740,L, + 252099445750,-0.058186769485474,L, + 254023869000,-0.062134265899658,L, + 255948292250,-0.066018700599670,L, + 257872715500,-0.069815158843994,L, + 259797138750,-0.073501348495483,L, + 261721562000,-0.077058792114258,L, + 263645985250,-0.080471515655518,L, + 265570408500,-0.083727359771729,L, + 267494831750,-0.086816430091858,L, + 269419255000,-0.089731574058533,L, + 271343678250,-0.092468023300171,L, + 273268101500,-0.095022678375244,L, + 275192524750,-0.097560405731201,L, + 277116948000,-0.100240349769592,L, + 279041371250,-0.103046894073486,L, + 280965794500,-0.105957150459290,L, + 282890217750,-0.108939290046692,L, + 284814641000,-0.111952066421509,L, + 286739064250,-0.114946365356445,L, + 288663487500,-0.117866039276123,L, + 290587910750,-0.120652079582214,L, + 292512334000,-0.123246908187866,L, + 294436757250,-0.125599265098572,L, + 296361180500,-0.127667903900146,L, + 298285603750,-0.129423975944519,L, + 300210027000,-0.130850911140442,L, + 302134450250,-0.131944179534912,L, + 304058873500,-0.132708191871643,L, + 305983296750,-0.133154630661011,L, + 307907720000,-0.133299350738525,L, + 309832143250,-0.132827401161194,L, + 311756566500,-0.131400823593140,L, + 313680989750,-0.129016518592834,L, + 315605413000,-0.125694513320923,L, + 317529836250,-0.121484041213989,L, + 319454259500,-0.116468548774719,L, + 321378682750,-0.110770463943481,L, + 323303106000,-0.104550242424011,L, + 325227529250,-0.098001599311829,L, + 327151952500,-0.091340780258179,L, + 329076375750,-0.084792017936707,L, + 331000799000,-0.078571915626526,L, + 332925222250,-0.072873950004578,L, + 334849645500,-0.067858338356018,L, + 336774068750,-0.063647747039795,L, + 338698492000,-0.060325860977173,L, + 340622915250,-0.057941675186157,L, + 342547338500,-0.056514978408813,L, + 344471761750,-0.056043028831482,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.246537208557129 + KeyVer: 4005 + KeyCount: 103 + Key: + 0,0.246537208557129,L, + 1924423250,0.247256398200989,L, + 3848846500,0.249305725097656,L, + 5773269750,0.252544999122620,L, + 7697693000,0.256857275962830,L, + 9622116250,0.262144088745117,L, + 11546539500,0.268321394920349,L, + 13470962750,0.275316953659058,L, + 15395386000,0.283067703247070,L, + 17319809250,0.291519045829773,L, + 19244232500,0.300621986389160,L, + 21168655750,0.310333728790283,L, + 23093079000,0.320615768432617,L, + 25017502250,0.331433057785034,L, + 26941925500,0.342754483222961,L, + 28866348750,0.354551076889038,L, + 30790772000,0.366796374320984,L, + 32715195250,0.379465579986572,L, + 34639618500,0.392535448074341,L, + 36564041750,0.405983328819275,L, + 38488465000,0.419787406921387,L, + 40412888250,0.433924913406372,L, + 42337311500,0.448371648788452,L, + 44261734750,0.463100552558899,L, + 46186158000,0.478077888488770,L, + 48110581250,0.493258357048035,L, + 50035004500,0.508570909500122,L, + 51959427750,0.523884892463684,L, + 53883851000,0.538881659507751,L, + 55808274250,0.551941394805908,L, + 57732697500,0.559229731559753,L, + 59657120750,0.034105956554413,L, + 111616548500,0.034105956554413,L, + 113540971750,0.007775783538818,L, + 211686557500,0.007775783538818,L, + 213610980750,-0.003737449645996,L, + 215535404000,-0.003504693508148,L, + 217459827250,-0.002799928188324,L, + 219384250500,-0.001615107059479,L, + 221308673750,0.000055015087128,L, + 223233097000,0.002212107181549,L, + 225157520250,0.004853963851929,L, + 227081943500,0.007973015308380,L, + 229006366750,0.011556267738342,L, + 230930790000,0.015584409236908,L, + 232855213250,0.020031392574310,L, + 234779636500,0.024863898754120,L, + 236704059750,0.030041694641113,L, + 238628483000,0.035517573356628,L, + 240552906250,0.041238546371460,L, + 242477329500,0.047146677970886,L, + 244401752750,0.053180158138275,L, + 246326176000,0.059275627136230,L, + 248250599250,0.065369367599487,L, + 250175022500,0.071399331092834,L, + 252099445750,0.077306628227234,L, + 254023869000,0.083036720752716,L, + 255948292250,0.088540792465210,L, + 257872715500,0.093776106834412,L, + 259797138750,0.098706424236298,L, + 261721562000,0.103302061557770,L, + 263645985250,0.107539474964142,L, + 265570408500,0.111401081085205,L, + 267494831750,0.114874422550201,L, + 269419255000,0.117951869964600,L, + 271343678250,0.120629727840424,L, + 273268101500,0.122907578945160,L, + 275192524750,0.124830782413483,L, + 277116948000,0.126439809799194,L, + 279041371250,0.127734303474426,L, + 280965794500,0.128722429275513,L, + 282890217750,0.129423379898071,L, + 284814641000,0.129869639873505,L, + 286739064250,0.130107700824738,L, + 288663487500,0.130197823047638,L, + 292512334000,0.130223929882050,L, + 294436757250,0.130313992500305,L, + 296361180500,0.130552113056183,L, + 298285603750,0.130998313426971,L, + 300210027000,0.131699323654175,L, + 302134450250,0.132687389850616,L, + 304058873500,0.133981883525848,L, + 305983296750,0.135590910911560,L, + 307907720000,0.137514173984528,L, + 309832143250,0.140060842037201,L, + 311756566500,0.143548250198364,L, + 313680989750,0.147967278957367,L, + 315605413000,0.153284370899200,L, + 317529836250,0.159434020519257,L, + 319454259500,0.166314363479614,L, + 321378682750,0.173783957958221,L, + 323303106000,0.181662797927856,L, + 325227529250,0.189739108085632,L, + 327151952500,0.197780966758728,L, + 329076375750,0.205552518367767,L, + 331000799000,0.212830960750580,L, + 332925222250,0.219420790672302,L, + 334849645500,0.225164532661438,L, + 336774068750,0.229946732521057,L, + 338698492000,0.233693063259125,L, + 340622915250,0.236365616321564,L, + 342547338500,0.237956523895264,L, + 344471761750,0.238480567932129,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.859380404291500 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,-93.859380404291500,L, + 1924423250,-93.853322026497707,L, + 3848846500,-93.832974892960266,L, + 5773269750,-93.795251758174345,L, + 7697693000,-93.737188320040147,L, + 9622116250,-93.655895408538782,L, + 11546539500,-93.548436042327126,L, + 13470962750,-93.411811768359556,L, + 15395386000,-93.242887529807035,L, + 17319809250,-93.038302873597942,L, + 19244232500,-92.794444629661328,L, + 21168655750,-92.507344458089420,L, + 23093079000,-92.172603717056745,L, + 25017502250,-91.785250028847543,L, + 26941925500,-91.339655317585724,L, + 28866348750,-90.829324073370614,L, + 30790772000,-90.246667956034344,L, + 32715195250,-89.582712097007530,L, + 34639618500,-88.826664797401563,L, + 36564041750,-87.965316471361660,L, + 38488465000,-86.982220023366452,L, + 40412888250,-85.856331640583178,L, + 42337311500,-84.560050528575829,L, + 44261734750,-83.055824307287736,L, + 46186158000,-81.290220406841982,L, + 48110581250,-79.182492330870772,L, + 50035004500,-76.599724598125860,L, + 51959427750,-73.292116700092734,L, + 53883851000,-68.662252480638728,L, + 55808274250,-59.846636601942656,L, + 57732697500,-28.335756941620037,L, + 59657120750,-93.865117763194306,L, + 61581544000,-93.154375108352966,L, + 63505967250,-91.780079575645843,L, + 65430390500,-90.120712437550310,L, + 67354813750,-88.299538118017409,L, + 69279237000,-86.376054394907030,L, + 71203660250,-84.385102063175367,L, + 73128083500,-82.349862784865408,L, + 75052506750,-80.287336900821273,L, + 76976930000,-78.211150638437147,L, + 78901353250,-76.133147545733792,L, + 80825776500,-74.064494982004177,L, + 82750199750,-72.016537891459663,L, + 84674623000,-70.001768690092192,L, + 86599046250,-67.872682612586388,L, + 88523469500,-65.479999044442664,L, + 90447892750,-62.845369685329914,L, + 92372316000,-60.007344122923655,L, + 94296739250,-57.024289738776140,L, + 96221162500,-53.974924463071645,L, + 98145585750,-50.954785566825599,L, + 100070009000,-48.068170038663936,L, + 101994432250,-45.416728168909231,L, + 103918855500,-43.087988831775071,L, + 105843278750,-41.147098371564937,L, + 107767702000,-39.633784583586163,L, + 109692125250,-38.564088167104494,L, + 111616548500,-37.935075555871414,L, + 113540971750,-37.730525050608165,L, + 115465395000,-37.776072167088330,L, + 117389818250,-37.913283837324521,L, + 119314241500,-38.142819174571635,L, + 121238664750,-38.465204103395777,L, + 123163088000,-38.880705001174569,L, + 125087511250,-39.389332113191756,L, + 127011934500,-39.990839552637240,L, + 128936357750,-40.684670659093648,L, + 130860781000,-41.469906772117618,L, + 132785204250,-42.345250155766855,L, + 134709627500,-43.309051319356797,L, + 136634050750,-44.359179243866414,L, + 138558474000,-45.493065778167768,L, + 140482897250,-46.707671488080223,L, + 142407320500,-47.999448090329949,L, + 144331743750,-49.364355528022905,L, + 146256167000,-50.797824404604349,L, + 148180590250,-52.294776474426378,L, + 150105013500,-53.849655378599209,L, + 152029436750,-55.456412984612797,L, + 153953860000,-57.108567442944803,L, + 155878283250,-58.799220262533538,L, + 157802706500,-60.521117782480445,L, + 159727129750,-62.266729719225609,L, + 161651553000,-64.028269657115217,L, + 165500399500,-67.567373156687253,L, + 167424822750,-69.328913094576862,L, + 169349246000,-71.074525031322025,L, + 171273669250,-72.796415721079768,L, + 173198092500,-74.487071955763085,L, + 175122515750,-76.139219583905927,L, + 177046939000,-77.745980605014097,L, + 178971362250,-79.300873169565264,L, + 180895785500,-80.797818409198129,L, + 182820208750,-82.231297531063319,L, + 184744632000,-83.596201553661686,L, + 186669055250,-84.887967910627665,L, + 188593478500,-86.102573620540113,L, + 190517901750,-87.236473815219810,L, + 192442325000,-88.286601739729420,L, + 194366748250,-89.250396073130204,L, + 196291171500,-90.125746286968607,L, + 198215594750,-90.910965324519651,L, + 200140018000,-91.604796430976066,L, + 202064441250,-92.206303870421536,L, + 203988864500,-92.714941227722491,L, + 205913287750,-93.130442125501276,L, + 207837711000,-93.452820224136246,L, + 209762134250,-93.682369221761704,L, + 211686557500,-93.819567231619558,L, + 213610980750,-93.865117763194306,L, + 273268101500,-93.865117763194306,L, + 275192524750,-93.636873331700315,L, + 277116948000,-92.946826150044089,L, + 279041371250,-91.794395652146179,L, + 280965794500,-90.191664442648303,L, + 282890217750,-88.166923165092641,L, + 284814641000,-85.767778237994079,L, + 286739064250,-83.062668156836082,L, + 288663487500,-80.140009720424317,L, + 290587910750,-77.104120407952237,L, + 292512334000,-74.068244755858501,L, + 294436757250,-71.145586319446736,L, + 296361180500,-68.440476238288738,L, + 298285603750,-66.041331311190177,L, + 300210027000,-64.016590033634515,L, + 302134450250,-62.413858824136639,L, + 304058873500,-61.261435156427893,L, + 305983296750,-60.571381144582496,L, + 307907720000,-60.343136713088512,L, + 309832143250,-60.547905784405195,L, + 311756566500,-61.166939489260905,L, + 313680989750,-62.201467261706227,L, + 315605413000,-63.642883063386968,L, + 317529836250,-65.469897194660220,L, + 319454259500,-67.646138898195730,L, + 321378682750,-70.118564924899246,L, + 323303106000,-72.817534665993421,L, + 325227529250,-75.659036794687211,L, + 327151952500,-78.549217681595607,L, + 329076375750,-81.390719810289397,L, + 331000799000,-84.089689551383572,L, + 332925222250,-86.562122408276252,L, + 334849645500,-88.738357281622598,L, + 336774068750,-90.565364582706678,L, + 338698492000,-92.006773554198247,L, + 340622915250,-93.041308156832741,L, + 342547338500,-93.660355522066794,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788330554962,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700314939022064,L, + 9622116250,0.690882921218872,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248232364655,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592793464661,L, + 25017502250,0.567304193973541,L, + 26941925500,0.547118902206421,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426814317703,L, + 38488465000,0.409835726022720,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932524919510,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066483259201,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862972974777,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711905479431,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128414511681,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048271417618,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529035091400,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841153144836,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230244636536,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381875991821,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822554588318,L, + 113540971750,0.691212654113770,L, + 115465395000,0.691212654113770,L, + 117389818250,0.691212594509125,L, + 119314241500,0.691212654113770,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212534904480,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212594509125,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 138558474000,0.691212594509125,L, + 140482897250,0.691212654113770,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212654113770,L, + 148180590250,0.691212654113770,L, + 150105013500,0.691212594509125,L, + 152029436750,0.691212654113770,L, + 153953860000,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212594509125,L, + 173198092500,0.691212594509125,L, + 175122515750,0.691212654113770,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 184744632000,0.691212654113770,L, + 186669055250,0.691212654113770,L, + 188593478500,0.691212594509125,L, + 190517901750,0.691212594509125,L, + 192442325000,0.691212654113770,L, + 194366748250,0.691212594509125,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212654113770,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212654113770,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175183773041,L, + 288663487500,0.695061504840851,L, + 290587910750,0.696029782295227,L, + 292512334000,0.697058320045471,L, + 294436757250,0.698123335838318,L, + 296361180500,0.699200987815857,L, + 298285603750,0.700269222259521,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748140811920,L, + 311756566500,0.706630945205688,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589196205139,L, + 317529836250,0.709647893905640,L, + 319454259500,0.710743010044098,L, + 321378682750,0.711857616901398,L, + 323303106000,0.712971448898315,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432486057281,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403445720673,L, + 340622915250,0.719700813293457,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932675361633,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.718728244304657 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,0.718728244304657,L, + 1924423250,0.717445075511932,L, + 3848846500,0.713788330554962,L, + 5773269750,0.708008825778961,L, + 7697693000,0.700314939022064,L, + 9622116250,0.690882921218872,L, + 11546539500,0.679862737655640,L, + 13470962750,0.667383551597595,L, + 15395386000,0.653557896614075,L, + 17319809250,0.638483881950378,L, + 19244232500,0.622248232364655,L, + 21168655750,0.604928314685822,L, + 23093079000,0.586592793464661,L, + 25017502250,0.567304193973541,L, + 26941925500,0.547118902206421,L, + 28866348750,0.526088535785675,L, + 30790772000,0.504260540008545,L, + 32715195250,0.481679737567902,L, + 34639618500,0.458388298749924,L, + 36564041750,0.434426814317703,L, + 38488465000,0.409835726022720,L, + 40412888250,0.384656190872192,L, + 42337311500,0.358932524919510,L, + 44261734750,0.332715183496475,L, + 46186158000,0.306066483259201,L, + 48110581250,0.279071569442749,L, + 50035004500,0.251862972974777,L, + 51959427750,0.224685594439507,L, + 53883851000,0.198136970400810,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711905479431,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128414511681,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655322790146,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101224184036,L, + 78901353250,0.415048271417618,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067054748535,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529035091400,L, + 90447892750,0.549960017204285,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841153144836,L, + 96221162500,0.605139911174774,L, + 98145585750,0.621230244636536,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381875991821,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822554588318,L, + 113540971750,0.691212654113770,L, + 115465395000,0.691212654113770,L, + 117389818250,0.691212594509125,L, + 119314241500,0.691212654113770,L, + 121238664750,0.691212654113770,L, + 123163088000,0.691212534904480,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212594509125,L, + 128936357750,0.691212654113770,L, + 130860781000,0.691212594509125,L, + 138558474000,0.691212594509125,L, + 140482897250,0.691212654113770,L, + 142407320500,0.691212594509125,L, + 144331743750,0.691212654113770,L, + 148180590250,0.691212654113770,L, + 150105013500,0.691212594509125,L, + 152029436750,0.691212654113770,L, + 153953860000,0.691212594509125,L, + 165500399500,0.691212594509125,L, + 167424822750,0.691212654113770,L, + 169349246000,0.691212594509125,L, + 173198092500,0.691212594509125,L, + 175122515750,0.691212654113770,L, + 177046939000,0.691212594509125,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212534904480,L, + 184744632000,0.691212654113770,L, + 186669055250,0.691212654113770,L, + 188593478500,0.691212594509125,L, + 190517901750,0.691212594509125,L, + 192442325000,0.691212654113770,L, + 194366748250,0.691212594509125,L, + 202064441250,0.691212594509125,L, + 203988864500,0.691212654113770,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212654113770,L, + 209762134250,0.691212654113770,L, + 213610980750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.691269516944885,L, + 277116948000,0.691444456577301,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175183773041,L, + 288663487500,0.695061504840851,L, + 290587910750,0.696029782295227,L, + 292512334000,0.697058320045471,L, + 294436757250,0.698123335838318,L, + 296361180500,0.699200987815857,L, + 298285603750,0.700269222259521,L, + 300210027000,0.701309323310852,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748140811920,L, + 311756566500,0.706630945205688,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589196205139,L, + 317529836250,0.709647893905640,L, + 319454259500,0.710743010044098,L, + 321378682750,0.711857616901398,L, + 323303106000,0.712971448898315,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108156204224,L, + 329076375750,0.716085612773895,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432486057281,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403445720673,L, + 340622915250,0.719700813293457,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932675361633,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.436138212680817 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.436138212680817,L, + 1924423250,0.435350805521011,L, + 3848846500,0.433106750249863,L, + 5773269750,0.429559499025345,L, + 7697693000,0.424836695194244,L, + 9622116250,0.419045954942703,L, + 11546539500,0.412279218435287,L, + 13470962750,0.404615432024002,L, + 15395386000,0.396123111248016,L, + 17319809250,0.386862397193909,L, + 19244232500,0.376886129379272,L, + 21168655750,0.366241246461868,L, + 23093079000,0.354969829320908,L, + 25017502250,0.343109428882599,L, + 26941925500,0.330694288015366,L, + 28866348750,0.317755520343781,L, + 30790772000,0.304321736097336,L, + 32715195250,0.290419489145279,L, + 34639618500,0.276073783636093,L, + 36564041750,0.261308491230011,L, + 38488465000,0.246146932244301,L, + 40412888250,0.230612635612488,L, + 42337311500,0.214730501174927,L, + 44261734750,0.198528274893761,L, + 46186158000,0.182039827108383,L, + 48110581250,0.165310561656952,L, + 50035004500,0.148410767316818,L, + 51959427750,0.131469771265984,L, + 53883851000,0.114804357290268,L, + 55808274250,0.100030779838562,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882514655590,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354126155376,L, + 67354813750,0.123738162219524,L, + 69279237000,0.133280366659164,L, + 71203660250,0.142899006605148,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778872609138,L, + 78901353250,0.181323498487473,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460526704788,L, + 86599046250,0.218626752495766,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560538411140,L, + 92372316000,0.245301142334938,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286125987768173,L, + 103918855500,0.293583661317825,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174127817154,L, + 113540971750,0.325813710689545,L, + 115465395000,0.331132411956787,L, + 117389818250,0.336296021938324,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146106719971,L, + 123163088000,0.350827097892761,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689176082611,L, + 128936357750,0.363866358995438,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706426143646,L, + 134709627500,0.375367969274521,L, + 136634050750,0.378857314586639,L, + 138558474000,0.382175117731094,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302773237228,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771290779114,L, + 148180590250,0.396268099546432,L, + 150105013500,0.398613482713699,L, + 152029436750,0.400813579559326,L, + 153953860000,0.402875423431396,L, + 155878283250,0.404806673526764,L, + 157802706500,0.406615912914276,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905642271042,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412825018167496,L, + 167424822750,0.414172887802124,L, + 169349246000,0.415461122989655,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904585599899,L, + 175122515750,0.419082522392273,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405613422394,L, + 180895785500,0.422571837902069,L, + 182820208750,0.423754483461380,L, + 184744632000,0.424963027238846,L, + 186669055250,0.426206082105637,L, + 188593478500,0.427491784095764,L, + 190517901750,0.428827673196793,L, + 192442325000,0.430220514535904,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436477988958359,L, + 202064441250,0.438237279653549,L, + 203988864500,0.440081864595413,L, + 205913287750,0.442014694213867,L, + 207837711000,0.444037884473801,L, + 209762134250,0.446153581142426,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667560100555,L, + 215535404000,0.453080892562866,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265960216522,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866850852966,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050653934479,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470580816269,L, + 234779636500,0.482724636793137,L, + 236704059750,0.485980242490768,L, + 238628483000,0.489214450120926,L, + 240552906250,0.492403209209442,L, + 242477329500,0.495522081851959,L, + 244401752750,0.498546540737152,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220187664032,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530373573303,L, + 257872715500,0.515353024005890,L, + 259797138750,0.516957759857178,L, + 261721562000,0.518341422080994,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166741847992,L, + 269419255000,0.521676003932953,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.522074937820435,L, + 277116948000,0.522067308425903,L, + 279041371250,0.522045016288757,L, + 280965794500,0.521998226642609,L, + 282890217750,0.521915435791016,L, + 284814641000,0.521783709526062,L, + 286739064250,0.521589577198029,L, + 288663487500,0.521319210529327,L, + 290587910750,0.520960390567780,L, + 292512334000,0.520502924919128,L, + 294436757250,0.519940137863159,L, + 296361180500,0.519268572330475,L, + 298285603750,0.518488883972168,L, + 300210027000,0.517604291439056,L, + 302134450250,0.516620635986328,L, + 304058873500,0.515545189380646,L, + 305983296750,0.514385819435120,L, + 307907720000,0.513150930404663,L, + 309832143250,0.511548995971680,L, + 311756566500,0.509279549121857,L, + 313680989750,0.506347715854645,L, + 315605413000,0.502776026725769,L, + 317529836250,0.498609334230423,L, + 319454259500,0.493917971849442,L, + 321378682750,0.488800168037415,L, + 323303106000,0.483381688594818,L, + 325227529250,0.477810531854630,L, + 327151952500,0.472249597311020,L, + 329076375750,0.466864645481110,L, + 331000799000,0.461813002824783,L, + 332925222250,0.457232803106308,L, + 334849645500,0.453235894441605,L, + 336774068750,0.449904739856720,L, + 338698492000,0.447292923927307,L, + 340622915250,0.445428222417831,L, + 342547338500,0.444317549467087,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_092" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.151618003845215 + KeyVer: 4005 + KeyCount: 120 + Key: + 0,0.151618003845215,L, + 55808274250,0.151618003845215,L, + 57732697500,0.145533561706543,L, + 59657120750,0.145822763442993,L, + 61581544000,0.146344184875488,L, + 63505967250,0.146937847137451,L, + 65430390500,0.147553443908691,L, + 67354813750,0.148166894912720,L, + 69279237000,0.148762226104736,L, + 71203660250,0.149328231811523,L, + 73128083500,0.149855136871338,L, + 75052506750,0.150333404541016,L, + 76976930000,0.150753974914551,L, + 78901353250,0.151106119155884,L, + 80825776500,0.151377677917480,L, + 82750199750,0.151554346084595,L, + 84674623000,0.151618003845215,L, + 113540971750,0.151618003845215,L, + 115465395000,0.151639699935913,L, + 117389818250,0.151703834533691,L, + 119314241500,0.151811599731445,L, + 121238664750,0.151962995529175,L, + 123163088000,0.152157783508301,L, + 125087511250,0.152396678924561,L, + 127011934500,0.152679204940796,L, + 128936357750,0.153005599975586,L, + 130860781000,0.153375387191772,L, + 132785204250,0.153788805007935,L, + 134709627500,0.154244899749756,L, + 136634050750,0.154743671417236,L, + 138558474000,0.155284404754639,L, + 140482897250,0.155866146087646,L, + 142407320500,0.156488418579102,L, + 144331743750,0.157150030136108,L, + 146256167000,0.157850265502930,L, + 148180590250,0.158586978912354,L, + 150105013500,0.159359455108643,L, + 152029436750,0.160166025161743,L, + 153953860000,0.161004781723022,L, + 155878283250,0.161873817443848,L, + 157802706500,0.162771224975586,L, + 159727129750,0.163694858551025,L, + 161651553000,0.164642095565796,L, + 163575976250,0.165610790252686,L, + 165500399500,0.166598320007324,L, + 167424822750,0.167601823806763,L, + 169349246000,0.168618679046631,L, + 171273669250,0.169646024703979,L, + 173198092500,0.170680761337280,L, + 175122515750,0.171720027923584,L, + 177046939000,0.172760725021362,L, + 178971362250,0.173799991607666,L, + 180895785500,0.174834728240967,L, + 182820208750,0.175862073898315,L, + 184744632000,0.176878929138184,L, + 186669055250,0.177882432937622,L, + 188593478500,0.178869962692261,L, + 190517901750,0.179838657379150,L, + 192442325000,0.180785894393921,L, + 194366748250,0.181709527969360,L, + 196291171500,0.182606935501099,L, + 198215594750,0.183475971221924,L, + 200140018000,0.184314727783203,L, + 202064441250,0.185121059417725,L, + 203988864500,0.185893774032593,L, + 205913287750,0.186630725860596,L, + 207837711000,0.187330484390259,L, + 209762134250,0.187992095947266,L, + 211686557500,0.188614606857300,L, + 213610980750,0.189196348190308,L, + 215535404000,0.189737081527710,L, + 217459827250,0.190235853195190,L, + 219384250500,0.190692186355591,L, + 221308673750,0.191105365753174,L, + 223233097000,0.191475152969360,L, + 225157520250,0.191801309585571,L, + 227081943500,0.192084074020386,L, + 229006366750,0.192322731018066,L, + 230930790000,0.192517757415771,L, + 232855213250,0.192668914794922,L, + 234779636500,0.192776679992676,L, + 236704059750,0.192841291427612,L, + 238628483000,0.192862510681152,L, + 240552906250,0.192671775817871,L, + 242477329500,0.192116260528564,L, + 244401752750,0.191219329833984,L, + 246326176000,0.190001964569092,L, + 248250599250,0.188484907150269,L, + 250175022500,0.186686277389526,L, + 252099445750,0.184623241424561,L, + 254023869000,0.182312250137329,L, + 255948292250,0.179768562316895,L, + 257872715500,0.177007198333740,L, + 259797138750,0.174041986465454,L, + 261721562000,0.170886754989624,L, + 263645985250,0.167554855346680,L, + 265570408500,0.164058923721313,L, + 267494831750,0.160412311553955,L, + 269419255000,0.156628131866455,L, + 271343678250,0.152719497680664,L, + 273268101500,0.148699522018433,L, + 275192524750,0.144582986831665,L, + 277116948000,0.140384197235107,L, + 279041371250,0.136119127273560,L, + 280965794500,0.131804943084717,L, + 282890217750,0.127461433410645,L, + 284814641000,0.123109340667725,L, + 286739064250,0.118774414062500,L, + 288663487500,0.114485502243042,L, + 290587910750,0.110278129577637,L, + 292512334000,0.106196403503418,L, + 294436757250,0.102296352386475,L, + 296361180500,0.098652720451355,L, + 298285603750,0.095368981361389,L, + 300210027000,0.092597723007202,L, + 302134450250,0.090581178665161,L, + 304058873500,0.089751482009888,L, + 307907720000,0.089751482009888,L, + 309832143250,0.151618003845215,L, + 344471761750,0.151618003845215,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.269023060798645 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-0.269023060798645,L, + 1924423250,-0.269045114517212,L, + 3848846500,-0.269107937812805,L, + 5773269750,-0.269207119941711,L, + 7697693000,-0.269339084625244,L, + 9622116250,-0.269500613212585,L, + 11546539500,-0.269689202308655,L, + 13470962750,-0.269902467727661,L, + 15395386000,-0.270138382911682,L, + 17319809250,-0.270395517349243,L, + 19244232500,-0.270671844482422,L, + 21168655750,-0.270966291427612,L, + 23093079000,-0.271277546882629,L, + 25017502250,-0.271604418754578,L, + 26941925500,-0.271945714950562,L, + 28866348750,-0.272300720214844,L, + 30790772000,-0.272668242454529,L, + 32715195250,-0.273047566413879,L, + 34639618500,-0.273437619209290,L, + 36564041750,-0.273837447166443,L, + 38488465000,-0.274246454238892,L, + 40412888250,-0.274663090705872,L, + 42337311500,-0.275086522102356,L, + 44261734750,-0.275515198707581,L, + 46186158000,-0.275947093963623,L, + 48110581250,-0.276379466056824,L, + 50035004500,-0.276807904243469,L, + 51959427750,-0.277224302291870,L, + 53883851000,-0.277608633041382,L, + 55808274250,-0.277862906455994,L, + 57732697500,0.222100615501404,L, + 59657120750,0.221730828285217,L, + 61581544000,0.221063971519470,L, + 63505967250,0.220305204391479,L, + 65430390500,0.219518184661865,L, + 67354813750,0.218734264373779,L, + 69279237000,0.217973232269287,L, + 71203660250,0.217249631881714,L, + 73128083500,0.216576099395752,L, + 75052506750,0.215964555740356,L, + 76976930000,0.215427041053772,L, + 78901353250,0.214977025985718,L, + 80825776500,0.214629888534546,L, + 82750199750,0.214403986930847,L, + 84674623000,0.214322328567505,L, + 86599046250,0.214805483818054,L, + 88523469500,0.216266155242920,L, + 90447892750,0.218696355819702,L, + 92372316000,0.222045779228210,L, + 94296739250,0.226208567619324,L, + 96221162500,0.231016516685486,L, + 98145585750,0.236241340637207,L, + 100070009000,0.241610527038574,L, + 101994432250,0.246835470199585,L, + 103918855500,0.251643300056458,L, + 105843278750,0.255806207656860,L, + 107767702000,0.259155631065369,L, + 109692125250,0.261585831642151,L, + 111616548500,0.263046383857727,L, + 113540971750,0.263529539108276,L, + 115465395000,0.263270020484924,L, + 117389818250,0.262489080429077,L, + 119314241500,0.261182904243469,L, + 121238664750,0.259349107742310,L, + 123163088000,0.256985664367676,L, + 125087511250,0.254091501235962,L, + 127011934500,0.250666022300720,L, + 128936357750,0.246710181236267,L, + 130860781000,0.242226004600525,L, + 132785204250,0.237216591835022,L, + 134709627500,0.231685876846313,L, + 136634050750,0.225639581680298,L, + 138558474000,0.219085097312927,L, + 140482897250,0.212030887603760,L, + 142407320500,0.204487085342407,L, + 144331743750,0.196465730667114,L, + 146256167000,0.187980413436890,L, + 148180590250,0.179046750068665,L, + 150105013500,0.169682025909424,L, + 152029436750,0.159905195236206,L, + 153953860000,0.149737477302551,L, + 155878283250,0.139201641082764,L, + 157802706500,0.128322601318359,L, + 159727129750,0.117126703262329,L, + 161651553000,0.105642199516296,L, + 163575976250,0.093898773193359,L, + 165500399500,0.081927895545959,L, + 167424822750,0.069762110710144,L, + 169349246000,0.057435035705566,L, + 171273669250,0.044981598854065,L, + 173198092500,0.032437324523926,L, + 175122515750,0.019838213920593,L, + 177046939000,0.007220983505249,L, + 178971362250,-0.005378127098083,L, + 180895785500,-0.017922401428223,L, + 182820208750,-0.030375838279724,L, + 184744632000,-0.042702913284302,L, + 186669055250,-0.054868698120117,L, + 188593478500,-0.066839694976807,L, + 190517901750,-0.078583002090454,L, + 192442325000,-0.090067505836487,L, + 194366748250,-0.101263523101807,L, + 196291171500,-0.112142562866211,L, + 198215594750,-0.122678279876709,L, + 200140018000,-0.132845997810364,L, + 202064441250,-0.142622828483582,L, + 203988864500,-0.151987671852112,L, + 205913287750,-0.160921335220337,L, + 207837711000,-0.169406652450562,L, + 209762134250,-0.177427887916565,L, + 211686557500,-0.184971690177917,L, + 213610980750,-0.192025899887085,L, + 215535404000,-0.198580503463745,L, + 217459827250,-0.204626560211182,L, + 219384250500,-0.210157513618469,L, + 221308673750,-0.215166926383972,L, + 223233097000,-0.219651103019714,L, + 225157520250,-0.223606824874878,L, + 227081943500,-0.227032184600830,L, + 229006366750,-0.229926586151123,L, + 230930790000,-0.232289910316467,L, + 232855213250,-0.234123706817627,L, + 234779636500,-0.235429883003235,L, + 236704059750,-0.236210942268372,L, + 238628483000,-0.236470341682434,L, + 240552906250,-0.236272096633911,L, + 242477329500,-0.235694289207458,L, + 244401752750,-0.234761238098145,L, + 246326176000,-0.233495593070984,L, + 248250599250,-0.231917738914490,L, + 250175022500,-0.230047106742859,L, + 252099445750,-0.227901458740234,L, + 254023869000,-0.225497961044312,L, + 255948292250,-0.222852587699890,L, + 257872715500,-0.219980716705322,L, + 259797138750,-0.216896891593933,L, + 261721562000,-0.213615536689758,L, + 263645985250,-0.210150241851807,L, + 265570408500,-0.206514596939087,L, + 267494831750,-0.202722191810608,L, + 269419255000,-0.198786616325378,L, + 271343678250,-0.194721579551697,L, + 273268101500,-0.190540909767151,L, + 275192524750,-0.186259627342224,L, + 277116948000,-0.181892752647400,L, + 279041371250,-0.177457094192505,L, + 280965794500,-0.172970652580261,L, + 282890217750,-0.168453216552734,L, + 284814641000,-0.163927197456360,L, + 286739064250,-0.159418702125549,L, + 288663487500,-0.154958248138428,L, + 290587910750,-0.150582671165466,L, + 292512334000,-0.146337628364563,L, + 294436757250,-0.142281532287598,L, + 296361180500,-0.138492107391357,L, + 298285603750,-0.135077118873596,L, + 300210027000,-0.132194995880127,L, + 302134450250,-0.130097866058350,L, + 304058873500,-0.129234910011292,L, + 307907720000,-0.129234910011292,L, + 309832143250,-0.236506700515747,L, + 344471761750,-0.236506700515747,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608081340790 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,0.093608081340790,L, + 1924423250,0.093608558177948,L, + 3848846500,0.093612015247345,L, + 5773269750,0.093621134757996,L, + 7697693000,0.093638241291046,L, + 9622116250,0.093665778636932,L, + 11546539500,0.093706071376801,L, + 13470962750,0.093761384487152,L, + 15395386000,0.093834042549133,L, + 17319809250,0.093926548957825,L, + 19244232500,0.094041287899017,L, + 21168655750,0.094181239604950,L, + 23093079000,0.094349443912506,L, + 25017502250,0.094549179077148,L, + 26941925500,0.094784200191498,L, + 28866348750,0.095058977603912,L, + 30790772000,0.095378577709198,L, + 32715195250,0.095748782157898,L, + 34639618500,0.096176803112030,L, + 36564041750,0.096671283245087,L, + 38488465000,0.097243130207062,L, + 40412888250,0.097905874252319,L, + 42337311500,0.098677575588226,L, + 44261734750,0.099582850933075,L, + 46186158000,0.100656390190125,L, + 48110581250,0.101950705051422,L, + 50035004500,0.103552520275116,L, + 51959427750,0.105624139308929,L, + 53883851000,0.108554661273956,L, + 55808274250,0.114208281040192,L, + 57732697500,0.572039723396301,L, + 59657120750,0.580274343490601,L, + 61581544000,0.588508844375610,L, + 69279237000,0.621447324752808,L, + 71203660250,0.629681825637817,L, + 75052506750,0.646151065826416,L, + 76976930000,0.654385447502136,L, + 78901353250,0.662620306015015,L, + 80825776500,0.670854687690735,L, + 84674623000,0.687323927879333,L, + 86599046250,0.697948098182678,L, + 88523469500,0.709304332733154,L, + 90447892750,0.721375107765198,L, + 92372316000,0.734107851982117,L, + 94296739250,0.747405767440796,L, + 96221162500,0.761122941970825,L, + 98145585750,0.775067806243896,L, + 100070009000,0.789018273353577,L, + 101994432250,0.802743673324585,L, + 103918855500,0.816031813621521,L, + 105843278750,0.828709006309509,L, + 107767702000,0.840653419494629,L, + 109692125250,0.851792335510254,L, + 111616548500,0.862098574638367,L, + 113540971750,0.871576786041260,L, + 115465395000,0.880583524703979,L, + 117389818250,0.889457941055298,L, + 119314241500,0.898197650909424,L, + 121238664750,0.906800985336304,L, + 123163088000,0.915265917778015,L, + 125087511250,0.923590660095215,L, + 127011934500,0.931773543357849,L, + 128936357750,0.939813017845154,L, + 130860781000,0.947707772254944,L, + 132785204250,0.955456972122192,L, + 134709627500,0.963059067726135,L, + 136634050750,0.970513939857483,L, + 138558474000,0.977820873260498,L, + 140482897250,0.984980225563049,L, + 142407320500,0.991991758346558,L, + 144331743750,0.998856306076050,L, + 146256167000,1.005574703216553,L, + 148180590250,1.012148261070251,L, + 150105013500,1.018578767776489,L, + 152029436750,1.024868249893188,L, + 153953860000,1.031019568443298,L, + 155878283250,1.037035226821899,L, + 157802706500,1.042919278144836,L, + 159727129750,1.048675298690796,L, + 161651553000,1.054307818412781,L, + 163575976250,1.059821605682373,L, + 165500399500,1.065222024917603,L, + 167424822750,1.070514559745789,L, + 169349246000,1.075705528259277,L, + 171273669250,1.080801129341125,L, + 173198092500,1.085808157920837,L, + 175122515750,1.090733766555786,L, + 177046939000,1.095585107803345,L, + 178971362250,1.100369811058044,L, + 180895785500,1.105095505714417,L, + 182820208750,1.109770059585571,L, + 184744632000,1.114400982856750,L, + 186669055250,1.118996143341064,L, + 188593478500,1.123563766479492,L, + 190517901750,1.128111124038696,L, + 192442325000,1.132645606994629,L, + 194366748250,1.137175202369690,L, + 196291171500,1.141706466674805,L, + 198215594750,1.146246671676636,L, + 200140018000,1.150802254676819,L, + 202064441250,1.155380129814148,L, + 203988864500,1.159985423088074,L, + 205913287750,1.164624571800232,L, + 207837711000,1.169302821159363,L, + 209762134250,1.174024701118469,L, + 211686557500,1.178795814514160,L, + 213610980750,1.183619379997253,L, + 215535404000,1.188500404357910,L, + 217459827250,1.193441510200500,L, + 219384250500,1.198446989059448,L, + 221308673750,1.203519105911255,L, + 223233097000,1.208660960197449,L, + 225157520250,1.213874340057373,L, + 227081943500,1.219161987304688,L, + 229006366750,1.224525213241577,L, + 230930790000,1.229966282844543,L, + 232855213250,1.235485434532166,L, + 234779636500,1.241084933280945,L, + 236704059750,1.246764898300171,L, + 238628483000,1.252526521682739,L, + 240552906250,1.258973836898804,L, + 242477329500,1.266791343688965,L, + 244401752750,1.276043891906738,L, + 246326176000,1.286669731140137,L, + 248250599250,1.298424005508423,L, + 250175022500,1.310874462127686,L, + 252099445750,1.323490858078003,L, + 254023869000,1.335781335830688,L, + 255948292250,1.347393035888672,L, + 257872715500,1.358135938644409,L, + 259797138750,1.367945432662964,L, + 261721562000,1.376836061477661,L, + 263645985250,1.384862899780273,L, + 265570408500,1.392098426818848,L, + 267494831750,1.398617506027222,L, + 269419255000,1.404492139816284,L, + 271343678250,1.409786939620972,L, + 273268101500,1.414560079574585,L, + 275192524750,1.418863296508789,L, + 277116948000,1.422740936279297,L, + 279041371250,1.426232576370239,L, + 280965794500,1.429372549057007,L, + 282890217750,1.432191133499146,L, + 284814641000,1.434714794158936,L, + 286739064250,1.436966896057129,L, + 288663487500,1.438968658447266,L, + 290587910750,1.440737962722778,L, + 292512334000,1.442291736602783,L, + 294436757250,1.443644285202026,L, + 296361180500,1.444809675216675,L, + 298285603750,1.445799350738525,L, + 300210027000,1.446624040603638,L, + 302134450250,1.447293996810913,L, + 304058873500,1.447817802429199,L, + 307907720000,1.447817802429199,L, + 309832143250,0.093608081340790,L, + 344471761750,0.093608081340790,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 12.781315064579925 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,12.781315064579925,L, + 1924423250,12.749428326439766,L, + 3848846500,12.658625230292810,L, + 5773269750,12.515233092631414,L, + 7697693000,12.324529942136699,L, + 9622116250,12.090978453657620,L, + 11546539500,11.818387311430095,L, + 13470962750,11.510055496823238,L, + 15395386000,11.168855104383033,L, + 17319809250,10.797323549386139,L, + 19244232500,10.397700280106667,L, + 21168655750,9.972008740086235,L, + 23093079000,9.522071736059583,L, + 25017502250,9.049555834184195,L, + 26941925500,8.555999534570613,L, + 28866348750,8.042842299586415,L, + 30790772000,7.511451020839248,L, + 32715195250,6.963142644178452,L, + 34639618500,6.399218320640915,L, + 36564041750,5.821001826265146,L, + 38488465000,5.229877555018541,L, + 40412888250,4.627358393802256,L, + 42337311500,4.015188602175580,L, + 44261734750,3.395491728640148,L, + 46186158000,2.771061534009906,L, + 48110581250,2.145881512674843,L, + 50035004500,1.526324231130574,L, + 51959427750,0.924270483273200,L, + 53883851000,0.368416988735373,L, + 55808274250,0.000309066112053,L, + 57732697500,0.000001707547496,L, + 59657120750,0.911453099687161,L, + 61581544000,2.618167109109155,L, + 63505967250,4.641808512765044,L, + 65430390500,6.834830283543954,L, + 67354813750,9.127107509567701,L, + 69279237000,11.477621489775832,L, + 71203660250,13.858858514644282,L, + 73128083500,16.250230686467372,L, + 75052506750,18.634858046485082,L, + 76976930000,20.997621970969611,L, + 78901353250,23.323924638117376,L, + 80825776500,25.598570584572407,L, + 82750199750,27.804754129881911,L, + 84674623000,29.922655772621837,L, + 86599046250,32.005112148664033,L, + 88523469500,34.118119960863652,L, + 90447892750,36.256761473018294,L, + 92372316000,38.413502986473439,L, + 94296739250,40.577901141988157,L, + 96221162500,42.736722448045576,L, + 98145585750,44.874691186566970,L, + 100070009000,46.975940828110424,L, + 101994432250,49.025755730109175,L, + 103918855500,51.012244533218244,L, + 105843278750,52.927426161392489,L, + 107767702000,54.767390331332066,L, + 109692125250,56.531812609051414,L, + 111616548500,58.223073315476277,L, + 113540971750,59.845311545243675,L, + 115465395000,61.436103584072377,L, + 117389818250,63.029450113650668,L, + 119314241500,64.624954983006674,L, + 121238664750,66.222140078898505,L, + 123163088000,67.820540948462579,L, + 125087511250,69.419604346376161,L, + 127011934500,71.018783857505625,L, + 128936357750,72.617471595014862,L, + 130860781000,74.215032351311038,L, + 132785204250,75.810783107477164,L, + 134709627500,77.403993033272044,L, + 136634050750,78.993910807886991,L, + 138558474000,80.579716808621598,L, + 140482897250,82.160584582586281,L, + 142407320500,83.735605714621443,L, + 144331743750,85.303878619756659,L, + 146256167000,86.864426580940588,L, + 148180590250,88.416266050932762,L, + 150105013500,89.958372501357687,L, + 152029436750,91.489687252894001,L, + 153953860000,93.009144796031194,L, + 155878283250,94.515638640123726,L, + 157802706500,96.008089615282728,L, + 159727129750,97.485350249727645,L, + 161651553000,98.946327713191266,L, + 163575976250,100.389922345217244,L, + 165500399500,101.815027655160009,L, + 167424822750,103.220564473130736,L, + 169349246000,104.605487780186380,L, + 171273669250,105.968779878140623,L, + 173198092500,107.309477710320493,L, + 175122515750,108.626672861566391,L, + 177046939000,109.919456916718701,L, + 178971362250,111.187051234212035,L, + 180895785500,112.428704493237703,L, + 182820208750,113.643754165446197,L, + 184744632000,114.831571873433901,L, + 186669055250,115.991638522823877,L, + 188593478500,117.123551132455106,L, + 190517901750,118.226899890977379,L, + 192442325000,119.301425251202247,L, + 194366748250,120.346881326319576,L, + 196291171500,121.363172493680992,L, + 198215594750,122.350203130638121,L, + 200140018000,123.308014218325965,L, + 202064441250,124.236687719014583,L, + 203988864500,125.136360236487377,L, + 205913287750,126.007223016041081,L, + 207837711000,126.849549265242530,L, + 209762134250,127.663639512415173,L, + 211686557500,128.449862587774220,L, + 213610980750,129.208600981913150,L, + 215535404000,129.940291826938903,L, + 217459827250,130.645413236093333,L, + 219384250500,131.324429662239993,L, + 221308673750,131.977887520512525,L, + 223233097000,132.606278584531140,L, + 225157520250,133.210190250564438,L, + 227081943500,133.790155273367731,L, + 229006366750,134.346761049209618,L, + 230930790000,134.880553993223685,L, + 232855213250,135.392135162056917,L, + 234779636500,135.882078291599555,L, + 236704059750,136.350957117741928,L, + 238628483000,136.799331715995919,L, + 240552906250,137.225549180582448,L, + 242477329500,137.628462039720915,L, + 244401752750,138.009327048218637,L, + 246326176000,138.369250696721110,L, + 248250599250,138.709257513603859,L, + 250175022500,139.030344706485693,L, + 252099445750,139.333290916931986,L, + 254023869000,139.618929428021517,L, + 255948292250,139.888011560562944,L, + 257872715500,140.141179352338298,L, + 259797138750,140.379074841129494,L, + 261721562000,140.602258102448502,L, + 263645985250,140.811275551428935,L, + 265570408500,141.006618961691032,L, + 267494831750,141.188780106855006,L, + 269419255000,141.358182458649424,L, + 271343678250,141.515222168046108,L, + 273268101500,141.660309046395327,L, + 275192524750,141.793743622020486,L, + 277116948000,141.915935706271853,L, + 279041371250,142.027172167094506,L, + 280965794500,142.127739872433636,L, + 282890217750,142.217980331747725,L, + 284814641000,142.298125771468534,L, + 286739064250,142.368463059541227,L, + 288663487500,142.429279063910940,L, + 290587910750,142.480806011009435,L, + 292512334000,142.523399070673577,L, + 294436757250,142.557358771226831,L, + 296361180500,142.583040282506033,L, + 298285603750,142.600962698888111,L, + 300210027000,142.611795378911751,L, + 302134450250,142.616631152844121,L, + 304058873500,142.617478096301198,L, + 307907720000,142.617478096301198,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.112190190473129 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-33.112190190473129,L, + 1924423250,-33.120782568448995,L, + 3848846500,-33.145255136245112,L, + 5773269750,-33.183893516379818,L, + 7697693000,-33.235287274789506,L, + 9622116250,-33.298227467991083,L, + 11546539500,-33.371682737419881,L, + 13470962750,-33.454775403767549,L, + 15395386000,-33.546726825468717,L, + 17319809250,-33.646843738322616,L, + 19244232500,-33.754542161155229,L, + 21168655750,-33.869255188265427,L, + 23093079000,-33.990501291316733,L, + 25017502250,-34.117833092918509,L, + 26941925500,-34.250840781720562,L, + 28866348750,-34.389131621845614,L, + 30790772000,-34.532333367983895,L, + 32715195250,-34.680094265393151,L, + 34639618500,-34.832062559331135,L, + 36564041750,-34.987883079960994,L, + 38488465000,-35.147186997067557,L, + 40412888250,-35.309550838922284,L, + 42337311500,-35.474527228134534,L, + 44261734750,-35.641521938246520,L, + 46186158000,-35.809793893733300,L, + 48110581250,-35.978270754895178,L, + 50035004500,-36.145227898966731,L, + 51959427750,-36.307475627605562,L, + 53883851000,-36.457265091198316,L, + 55808274250,-36.556463343608854,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.310921458041832,L, + 61581544000,-35.850986764617588,L, + 63505967250,-35.305647385811625,L, + 65430390500,-34.714672098066295,L, + 67354813750,-34.096939544247476,L, + 69279237000,-33.463511215715982,L, + 71203660250,-32.821808113005041,L, + 73128083500,-32.177369519531510,L, + 75052506750,-31.534754586566365,L, + 76976930000,-30.898030691760351,L, + 78901353250,-30.271125193886217,L, + 80825776500,-29.658143036635135,L, + 82750199750,-29.063619465615982,L, + 84674623000,-28.492871783097613,L, + 86599046250,-27.936698016720737,L, + 88523469500,-27.381962005164144,L, + 90447892750,-26.829035993737605,L, + 92372316000,-26.278336623980486,L, + 94296739250,-25.730304443094251,L, + 96221162500,-25.185344139787230,L, + 98145585750,-24.643804053707083,L, + 100070009000,-24.105889090528915,L, + 101994432250,-23.571645354029627,L, + 103918855500,-23.040946485709568,L, + 105843278750,-22.513543183664037,L, + 107767702000,-21.989064910130558,L, + 109692125250,-21.467108683948105,L, + 111616548500,-20.947280061692105,L, + 113540971750,-20.429199967863628,L, + 115465395000,-19.914852572416557,L, + 117389818250,-19.406430366074463,L, + 119314241500,-18.903909443175252,L, + 121238664750,-18.407250530131197,L, + 123163088000,-17.916397277881643,L, + 125087511250,-17.431289922271354,L, + 127011934500,-16.951831133104658,L, + 128936357750,-16.477940655658806,L, + 130860781000,-16.009488716339568,L, + 132785204250,-15.546337003816255,L, + 134709627500,-15.088340376569001,L, + 136634050750,-14.635317834584802,L, + 138558474000,-14.187069594830433,L, + 140482897250,-13.743383921441628,L, + 142407320500,-13.304009804966386,L, + 144331743750,-12.868684283121665,L, + 146256167000,-12.437117926641383,L, + 148180590250,-12.008990570408196,L, + 150105013500,-11.583970096473717,L, + 152029436750,-11.161691943490993,L, + 153953860000,-10.741765083130042,L, + 155878283250,-10.323787388003481,L, + 157802706500,-9.907324287325368,L, + 159727129750,-9.491924988610483,L, + 161651553000,-9.077125038995266,L, + 163575976250,-8.662437787501354,L, + 165500399500,-8.247366337866628,L, + 167424822750,-7.831400987224280,L, + 169349246000,-7.414024348744680,L, + 171273669250,-6.994713059182676,L, + 173198092500,-6.572942047745824,L, + 175122515750,-6.148190085623090,L, + 177046939000,-5.719936797777082,L, + 178971362250,-5.287667785585937,L, + 180895785500,-4.850889994768942,L, + 182820208750,-4.409113786139976,L, + 184744632000,-3.961870864854068,L, + 186669055250,-3.508714280407407,L, + 188593478500,-3.049213090552047,L, + 190517901750,-2.582971998089776,L, + 192442325000,-2.109613208182127,L, + 194366748250,-1.628784966086845,L, + 196291171500,-1.140172976380405,L, + 198215594750,-0.643481513216085,L, + 200140018000,-0.138451362910758,L, + 202064441250,0.375144751748253,L, + 203988864500,0.897511509652421,L, + 205913287750,1.428822533676841,L, + 207837711000,1.969219523566363,L, + 209762134250,2.518821580744639,L, + 211686557500,3.077718885053054,L, + 213610980750,3.645977603949194,L, + 215535404000,4.223646402530893,L, + 217459827250,4.810734885751672,L, + 219384250500,5.407257994650341,L, + 221308673750,6.013191823564805,L, + 223233097000,6.628497952680982,L, + 225157520250,7.253128997561506,L, + 227081943500,7.887021778956553,L, + 229006366750,8.530091773275146,L, + 230930790000,9.182258725794537,L, + 232855213250,9.843417622356236,L, + 234779636500,10.513454911065292,L, + 236704059750,11.192266431536865,L, + 238628483000,11.879717287534843,L, + 240552906250,12.591125032046609,L, + 242477329500,13.339907571696630,L, + 244401752750,14.123280750624483,L, + 246326176000,14.938658488455680,L, + 248250599250,15.783614360487572,L, + 250175022500,16.655884159010309,L, + 252099445750,17.553290761225945,L, + 254023869000,18.473786817930780,L, + 255948292250,19.415381328981752,L, + 257872715500,20.376148181032921,L, + 259797138750,21.354205656967956,L, + 261721562000,22.347694237785319,L, + 263645985250,23.354759527125353,L, + 265570408500,24.373521515419018,L, + 267494831750,25.402101900644563,L, + 269419255000,26.438528465679148,L, + 271343678250,27.480765814150114,L, + 273268101500,28.526679511941836,L, + 275192524750,29.573967785304017,L, + 277116948000,30.620147860473367,L, + 279041371250,31.662503029707516,L, + 280965794500,32.697987028636639,L, + 282890217750,33.723181347581161,L, + 284814641000,34.734110816444122,L, + 286739064250,35.726165057535781,L, + 288663487500,36.693791127060926,L, + 290587910750,37.630227137741258,L, + 292512334000,38.527003655005963,L, + 294436757250,39.373206036561385,L, + 296361180500,40.154268904002485,L, + 298285603750,40.849913425683525,L, + 300210027000,41.430216542850729,L, + 302134450250,41.847670874732138,L, + 304058873500,42.017664037889759,L, + 307907720000,42.017664037889759,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 24.228142646482798 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,24.228142646482798,L, + 1924423250,24.228383410651041,L, + 3848846500,24.230015825862672,L, + 5773269750,24.234310307303311,L, + 7697693000,24.242436524868321,L, + 9622116250,24.255502676750538,L, + 11546539500,24.274601593217159,L, + 13470962750,24.300827812082677,L, + 15395386000,24.335275871161588,L, + 17319809250,24.379100072423618,L, + 19244232500,24.433526434824788,L, + 21168655750,24.499876599969490,L, + 23093079000,24.579584907583424,L, + 25017502250,24.674253037026954,L, + 26941925500,24.785687573335554,L, + 28866348750,24.915947818543973,L, + 30790772000,25.067427753956299,L, + 32715195250,25.242938002415986,L, + 34639618500,25.445850969825724,L, + 36564041750,25.680278430065858,L, + 38488465000,25.951322534446376,L, + 40412888250,26.265499283435464,L, + 42337311500,26.631356658779382,L, + 44261734750,27.060487199046911,L, + 46186158000,27.569390933725490,L, + 48110581250,28.183003175927503,L, + 50035004500,28.942308475767561,L, + 51959427750,29.924411131238529,L, + 53883851000,31.313627212187519,L, + 55808274250,33.993735385888726,L, + 57732697500,65.529353991385094,L, + 59657120750,64.716800536775708,L, + 61581544000,63.208619635958179,L, + 63505967250,61.436971018096969,L, + 65430390500,59.535419032411475,L, + 67354813750,57.568037683505487,L, + 69279237000,55.572987238271821,L, + 71203660250,53.576645887285018,L, + 73128083500,51.599534933906362,L, + 75052506750,49.659317247329483,L, + 76976930000,47.772610677804984,L, + 78901353250,45.956333603906970,L, + 80825776500,44.228811423178563,L, + 82750199750,42.611159665438826,L, + 84674623000,41.128878841953956,L, + 86599046250,39.695051380441093,L, + 88523469500,38.209474990681699,L, + 90447892750,36.686335975581869,L, + 92372316000,35.145861940368576,L, + 94296739250,33.614690622804829,L, + 96221162500,32.125214195029365,L, + 98145585750,30.713468735103117,L, + 100070009000,29.415582528640819,L, + 101994432250,28.263606238322708,L, + 103918855500,27.281846799857536,L, + 105843278750,26.484929355805566,L, + 107767702000,25.877769934821909,L, + 109692125250,25.457183961206052,L, + 111616548500,25.214196566388612,L, + 113540971750,25.136298258904731,L, + 115465395000,25.136436570235421,L, + 117389818250,25.136842966491038,L, + 119314241500,25.137524277860745,L, + 121238664750,25.138483919439132,L, + 123163088000,25.139720183678900,L, + 125087511250,25.141233070580057,L, + 127011934500,25.143022580142599,L, + 128936357750,25.145092127461108,L, + 130860781000,25.147434882346420,L, + 132785204250,25.150061090082286,L, + 134709627500,25.152951967648491,L, + 136634050750,25.156110930139615,L, + 138558474000,25.159534562461079,L, + 140482897250,25.163226279707466,L, + 142407320500,25.167169006405850,L, + 144331743750,25.171367865198111,L, + 146256167000,25.175802365516734,L, + 148180590250,25.180470799814429,L, + 150105013500,25.185369752996614,L, + 152029436750,25.190482149590363,L, + 153953860000,25.195801159406503,L, + 155878283250,25.201309706972111,L, + 157802706500,25.206995839456138,L, + 159727129750,25.212852726669414,L, + 161651553000,25.218853047855262,L, + 163575976250,25.224993387919096,L, + 165500399500,25.231258378935280,L, + 167424822750,25.237617285052554,L, + 169349246000,25.244063276081743,L, + 171273669250,25.250575861455342,L, + 173198092500,25.257136258153128,L, + 175122515750,25.263720560513011,L, + 177046939000,25.270318523251234,L, + 178971362250,25.276904533158412,L, + 180895785500,25.283466637403489,L, + 182820208750,25.289977515229797,L, + 184744632000,25.296423506258986,L, + 186669055250,25.302785827470842,L, + 188593478500,25.309043988297859,L, + 190517901750,25.315186035908983,L, + 192442325000,25.321193187284003,L, + 194366748250,25.327044951855402,L, + 196291171500,25.332732791886720,L, + 198215594750,25.338241339452328,L, + 200140018000,25.343560349268468,L, + 202064441250,25.348672745862217,L, + 203988864500,25.353568283949816,L, + 205913287750,25.358238425794806,L, + 207837711000,25.362676341208015,L, + 209762134250,25.366868369811105,L, + 211686557500,25.370812804056779,L, + 213610980750,25.374504521303166,L, + 215535404000,25.377928153624630,L, + 217459827250,25.381092238757635,L, + 219384250500,25.383984823871131,L, + 221308673750,25.386604201417828,L, + 223233097000,25.388952078945017,L, + 225157520250,25.391018211168941,L, + 227081943500,25.392809428278774,L, + 229006366750,25.394320607632640,L, + 230930790000,25.395556871872408,L, + 232855213250,25.396513098356209,L, + 234779636500,25.397199532367793,L, + 236704059750,25.397607636170701,L, + 238628483000,25.397742532406809,L, + 240552906250,25.371016002184589,L, + 242477329500,25.293153553193847,L, + 244401752750,25.167440506425358,L, + 246326176000,24.996880437566631,L, + 248250599250,24.784265186440901,L, + 250175022500,24.532181687196310,L, + 252099445750,24.243059779630084,L, + 254023869000,23.919187577114180,L, + 255948292250,23.562723419426309,L, + 257872715500,23.175724901053943,L, + 259797138750,22.760183022140136,L, + 261721562000,22.317999990368730,L, + 263645985250,21.851043862477724,L, + 265570408500,21.361141714070094,L, + 267494831750,20.850112083012352,L, + 269419255000,20.319787167549350,L, + 271343678250,19.772004288567821,L, + 273268101500,19.208663946204322,L, + 275192524750,18.631738357581682,L, + 277116948000,18.043302192660295,L, + 279041371250,17.445588923298754,L, + 280965794500,16.841016436463239,L, + 282890217750,16.232282656875896,L, + 284814641000,15.622399697960700,L, + 286739064250,15.014874861856450,L, + 288663487500,14.413819922443484,L, + 290587910750,13.824196158380163,L, + 292512334000,13.252161838976894,L, + 294436757250,12.705599002535857,L, + 296361180500,12.194967229997268,L, + 298285603750,11.734788357310197,L, + 300210027000,11.346420386009246,L, + 302134450250,11.063828139289544,L, + 304058873500,10.947535630933782,L, + 307907720000,10.947535630933782,L, + 309832143250,19.353271003764331,L, + 344471761750,19.353271003764331,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000025540588467 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025540588467,L, + 1924423250,0.000025527499020,L, + 3848846500,0.000025490229746,L, + 5773269750,0.000025431378162,L, + 7697693000,0.000025353107048,L, + 9622116250,0.000025257249945,L, + 11546539500,0.000025145369364,L, + 13470962750,0.000025018816814,L, + 15395386000,0.000024878776458,L, + 17319809250,0.000024726286938,L, + 19244232500,0.000024562270482,L, + 21168655750,0.000024387554731,L, + 23093079000,0.000024202887289,L, + 25017502250,0.000024008953915,L, + 26941925500,0.000023806385798,L, + 28866348750,0.000023595774110,L, + 30790772000,0.000023377677280,L, + 32715195250,0.000023152642825,L, + 34639618500,0.000022921198251,L, + 36564041750,0.000022683889256,L, + 38488465000,0.000022441285182,L, + 40412888250,0.000022194009944,L, + 42337311500,0.000021942772946,L, + 44261734750,0.000021688452762,L, + 46186158000,0.000021432193535,L, + 48110581250,0.000021175634174,L, + 50035004500,0.000020921390387,L, + 51959427750,0.000020674349798,L, + 53883851000,0.000020446290364,L, + 55808274250,0.000020295379727,L, + 57732697500,0.206803902983665,L, + 59657120750,0.238624900579453,L, + 61581544000,0.255922883749008,L, + 63505967250,0.267169952392578,L, + 65430390500,0.274974405765533,L, + 67354813750,0.280564606189728,L, + 69279237000,0.284645676612854,L, + 71203660250,0.287676155567169,L, + 73128083500,0.289983600378036,L, + 75052506750,0.291821151971817,L, + 76976930000,0.293399393558502,L, + 78901353250,0.294906258583069,L, + 80825776500,0.296521902084351,L, + 82750199750,0.298431664705276,L, + 84674623000,0.300840198993683,L, + 86599046250,0.303359419107437,L, + 88523469500,0.305441111326218,L, + 90447892750,0.307083308696747,L, + 92372316000,0.308301985263824,L, + 94296739250,0.309136211872101,L, + 96221162500,0.309652268886566,L, + 98145585750,0.309943079948425,L, + 100070009000,0.310122251510620,L, + 101994432250,0.310312628746033,L, + 103918855500,0.310632318258286,L, + 105843278750,0.311182498931885,L, + 107767702000,0.312040060758591,L, + 109692125250,0.313255786895752,L, + 111616548500,0.314856767654419,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319108754396439,L, + 117389818250,0.321499496698380,L, + 119314241500,0.324023634195328,L, + 121238664750,0.326680988073349,L, + 123163088000,0.329471111297607,L, + 125087511250,0.332393288612366,L, + 127011934500,0.335446566343307,L, + 128936357750,0.338629484176636,L, + 130860781000,0.341940462589264,L, + 132785204250,0.345377385616302,L, + 134709627500,0.348937958478928,L, + 136634050750,0.352619200944901,L, + 138558474000,0.356417953968048,L, + 140482897250,0.360330194234848,L, + 142407320500,0.364352047443390,L, + 144331743750,0.368478685617447,L, + 146256167000,0.372704893350601,L, + 148180590250,0.377025038003922,L, + 150105013500,0.381432831287384,L, + 152029436750,0.385921567678452,L, + 153953860000,0.390484064817429,L, + 155878283250,0.395112544298172,L, + 157802706500,0.399798899888992,L, + 159727129750,0.404534399509430,L, + 161651553000,0.409310013055801,L, + 163575976250,0.414116233587265,L, + 165500399500,0.418943375349045,L, + 167424822750,0.423781305551529,L, + 169349246000,0.428619682788849,L, + 171273669250,0.433448046445847,L, + 173198092500,0.438255786895752,L, + 175122515750,0.443032264709473,L, + 177046939000,0.447766870260239,L, + 178971362250,0.452448934316635,L, + 180895785500,0.457068145275116,L, + 182820208750,0.461614310741425,L, + 184744632000,0.466077595949173,L, + 186669055250,0.470448434352875,L, + 188593478500,0.474717497825623,L, + 190517901750,0.478876203298569,L, + 192442325000,0.482916295528412,L, + 194366748250,0.486829906702042,L, + 196291171500,0.490610033273697,L, + 198215594750,0.494249880313873,L, + 200140018000,0.497743397951126,L, + 202064441250,0.501085162162781,L, + 203988864500,0.504270315170288,L, + 205913287750,0.507294297218323,L, + 207837711000,0.510153651237488,L, + 209762134250,0.512844860553741,L, + 211686557500,0.515365481376648,L, + 213610980750,0.517713129520416,L, + 215535404000,0.519886255264282,L, + 217459827250,0.521883547306061,L, + 219384250500,0.523704111576080,L, + 221308673750,0.525347709655762,L, + 223233097000,0.526814222335815,L, + 225157520250,0.528103768825531,L, + 227081943500,0.529217243194580,L, + 229006366750,0.530155420303345,L, + 230930790000,0.530919313430786,L, + 232855213250,0.531510591506958,L, + 234779636500,0.531930685043335,L, + 236704059750,0.532181143760681,L, + 238628483000,0.532264292240143,L, + 240552906250,0.531710743904114,L, + 242477329500,0.530089855194092,L, + 244401752750,0.527456998825073,L, + 246326176000,0.523861944675446,L, + 248250599250,0.519350469112396,L, + 250175022500,0.513963997364044,L, + 252099445750,0.507740259170532,L, + 254023869000,0.500713944435120,L, + 255948292250,0.492916941642761,L, + 257872715500,0.484378218650818,L, + 259797138750,0.475124537944794,L, + 261721562000,0.465180665254593,L, + 263645985250,0.454568892717361,L, + 265570408500,0.443310111761093,L, + 267494831750,0.431423217058182,L, + 269419255000,0.418925613164902,L, + 271343678250,0.405833154916763,L, + 273268101500,0.392160117626190,L, + 275192524750,0.377919405698776,L, + 277116948000,0.363122642040253,L, + 279041371250,0.347779691219330,L, + 280965794500,0.331899434328079,L, + 282890217750,0.315488934516907,L, + 284814641000,0.298553854227066,L, + 286739064250,0.281097948551178,L, + 288663487500,0.263123154640198,L, + 290587910750,0.244629070162773,L, + 292512334000,0.225612506270409,L, + 294436757250,0.206066727638245,L, + 296361180500,0.185980305075645,L, + 298285603750,0.165335163474083,L, + 300210027000,0.144103273749352,L, + 302134450250,0.122239671647549,L, + 304058873500,0.099667996168137,L, + 307907720000,0.099667996168137,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000022053714929 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000022053714929,L, + 1924423250,0.000022049329345,L, + 3848846500,0.000022036834707,L, + 5773269750,0.000022017107767,L, + 7697693000,0.000021990868845,L, + 9622116250,0.000021958738216,L, + 11546539500,0.000021921227017,L, + 13470962750,0.000021878804546,L, + 15395386000,0.000021831861886,L, + 17319809250,0.000021780739189,L, + 19244232500,0.000021725758415,L, + 21168655750,0.000021667186957,L, + 23093079000,0.000021605283109,L, + 25017502250,0.000021540270609,L, + 26941925500,0.000021472365916,L, + 28866348750,0.000021401763661,L, + 30790772000,0.000021328653020,L, + 32715195250,0.000021253214072,L, + 34639618500,0.000021175626898,L, + 36564041750,0.000021096075216,L, + 38488465000,0.000021014746380,L, + 40412888250,0.000020931853214,L, + 42337311500,0.000020847630367,L, + 44261734750,0.000020762376153,L, + 46186158000,0.000020676470740,L, + 48110581250,0.000020590467102,L, + 50035004500,0.000020505236535,L, + 51959427750,0.000020422421585,L, + 53883851000,0.000020345969460,L, + 55808274250,0.000020295377908,L, + 57732697500,0.206803917884827,L, + 59657120750,0.238431766629219,L, + 61581544000,0.255596786737442,L, + 63505967250,0.266741156578064,L, + 65430390500,0.274464040994644,L, + 67354813750,0.279989808797836,L, + 69279237000,0.284021466970444,L, + 71203660250,0.287016510963440,L, + 73128083500,0.289302110671997,L, + 75052506750,0.291131556034088,L, + 76976930000,0.292715609073639,L, + 78901353250,0.294243097305298,L, + 80825776500,0.295895457267761,L, + 82750199750,0.297859489917755,L, + 84674623000,0.300342172384262,L, + 86599046250,0.302909731864929,L, + 88523469500,0.305016636848450,L, + 90447892750,0.306721031665802,L, + 92372316000,0.308075606822968,L, + 94296739250,0.309129208326340,L, + 96221162500,0.309928953647614,L, + 98145585750,0.310521692037582,L, + 100070009000,0.310956448316574,L, + 101994432250,0.311287254095078,L, + 103918855500,0.311576664447784,L, + 105843278750,0.311902970075607,L, + 107767702000,0.312371373176575,L, + 109692125250,0.313137203454971,L, + 111616548500,0.314459085464478,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319951832294464,L, + 117389818250,0.322982698678970,L, + 119314241500,0.325968444347382,L, + 121238664750,0.328915923833847,L, + 123163088000,0.331828564405441,L, + 125087511250,0.334708660840988,L, + 127011934500,0.337557733058929,L, + 128936357750,0.340376824140549,L, + 130860781000,0.343166589736938,L, + 132785204250,0.345927774906158,L, + 134709627500,0.348660558462143,L, + 136634050750,0.351365298032761,L, + 138558474000,0.354042202234268,L, + 140482897250,0.356691241264343,L, + 142407320500,0.359312474727631,L, + 144331743750,0.361905843019485,L, + 146256167000,0.364471346139908,L, + 148180590250,0.367008686065674,L, + 150105013500,0.369517713785172,L, + 152029436750,0.371998280286789,L, + 153953860000,0.374449908733368,L, + 155878283250,0.376872509717941,L, + 157802706500,0.379265636205673,L, + 159727129750,0.381628811359406,L, + 161651553000,0.383961766958237,L, + 163575976250,0.386263936758041,L, + 165500399500,0.388534903526306,L, + 167424822750,0.390774101018906,L, + 169349246000,0.392980903387070,L, + 171273669250,0.395154863595963,L, + 173198092500,0.397295236587524,L, + 175122515750,0.399401277303696,L, + 177046939000,0.401472419500351,L, + 178971362250,0.403507828712463,L, + 180895785500,0.405506581068039,L, + 182820208750,0.407467991113663,L, + 184744632000,0.409390985965729,L, + 186669055250,0.411274731159210,L, + 188593478500,0.413118124008179,L, + 190517901750,0.414920032024384,L, + 192442325000,0.416679412126541,L, + 194366748250,0.418394953012466,L, + 196291171500,0.420065313577652,L, + 198215594750,0.421689301729202,L, + 200140018000,0.423265278339386,L, + 202064441250,0.424791723489761,L, + 203988864500,0.426266878843307,L, + 205913287750,0.427689105272293,L, + 207837711000,0.429056465625763,L, + 209762134250,0.430366903543472,L, + 211686557500,0.431618303060532,L, + 213610980750,0.432808130979538,L, + 215535404000,0.433933973312378,L, + 217459827250,0.434993267059326,L, + 219384250500,0.435982912778854,L, + 221308673750,0.436899721622467,L, + 223233097000,0.437740355730057,L, + 225157520250,0.438501089811325,L, + 227081943500,0.439177781343460,L, + 229006366750,0.439766019582748,L, + 230930790000,0.440260887145996,L, + 232855213250,0.440657168626785,L, + 234779636500,0.440948665142059,L, + 236704059750,0.441129088401794,L, + 238628483000,0.441191047430038,L, + 240552906250,0.440665364265442,L, + 242477329500,0.439128160476685,L, + 244401752750,0.436635017395020,L, + 246326176000,0.433236509561539,L, + 248250599250,0.428978919982910,L, + 250175022500,0.423904597759247,L, + 252099445750,0.418052613735199,L, + 254023869000,0.411458969116211,L, + 255948292250,0.404157042503357,L, + 257872715500,0.396177947521210,L, + 259797138750,0.387550562620163,L, + 261721562000,0.378301918506622,L, + 263645985250,0.368457436561584,L, + 265570408500,0.358041077852249,L, + 267494831750,0.347075492143631,L, + 269419255000,0.335582166910172,L, + 271343678250,0.323581814765930,L, + 273268101500,0.311094105243683,L, + 275192524750,0.298138201236725,L, + 277116948000,0.284732908010483,L, + 279041371250,0.270896762609482,L, + 280965794500,0.256648302078247,L, + 282890217750,0.242006242275238,L, + 284814641000,0.226990103721619,L, + 286739064250,0.211620539426804,L, + 288663487500,0.195920005440712,L, + 290587910750,0.179913669824600,L, + 292512334000,0.163630872964859,L, + 294436757250,0.147107362747192,L, + 296361180500,0.130388826131821,L, + 298285603750,0.113537013530731,L, + 300210027000,0.096641950309277,L, + 302134450250,0.079846352338791,L, + 304058873500,0.063407205045223,L, + 307907720000,0.063407205045223,L, + 309832143250,0.000028520822525,L, + 344471761750,0.000028520822525,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000025004148483 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000025004148483,L, + 1924423250,0.000024992399631,L, + 3848846500,0.000024958939321,L, + 5773269750,0.000024906104954,L, + 7697693000,0.000024835841032,L, + 9622116250,0.000024749784643,L, + 11546539500,0.000024649347324,L, + 13470962750,0.000024535740522,L, + 15395386000,0.000024410022888,L, + 17319809250,0.000024273125746,L, + 19244232500,0.000024125885830,L, + 21168655750,0.000023969036192,L, + 23093079000,0.000023803253498,L, + 25017502250,0.000023629156203,L, + 26941925500,0.000023447304557,L, + 28866348750,0.000023258233341,L, + 30790772000,0.000023062440960,L, + 32715195250,0.000022860418539,L, + 34639618500,0.000022652649932,L, + 36564041750,0.000022439609893,L, + 38488465000,0.000022221816835,L, + 40412888250,0.000021999832825,L, + 42337311500,0.000021774290872,L, + 44261734750,0.000021545980417,L, + 46186158000,0.000021315927370,L, + 48110581250,0.000021085606932,L, + 50035004500,0.000020857367417,L, + 51959427750,0.000020635588953,L, + 53883851000,0.000020430858058,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238643705844879,L, + 61581544000,0.255954623222351,L, + 63505967250,0.267211705446243,L, + 65430390500,0.275024086236954,L, + 67354813750,0.280620604753494,L, + 69279237000,0.284706413745880,L, + 71203660250,0.287740349769592,L, + 73128083500,0.290049970149994,L, + 75052506750,0.291888356208801,L, + 76976930000,0.293465971946716,L, + 78901353250,0.294970810413361,L, + 80825776500,0.296582907438278,L, + 82750199750,0.298487424850464,L, + 84674623000,0.300888687372208,L, + 86599046250,0.303409308195114,L, + 88523469500,0.305511295795441,L, + 90447892750,0.307190865278244,L, + 92372316000,0.308460950851440,L, + 94296739250,0.309356480836868,L, + 96221162500,0.309937536716461,L, + 98145585750,0.310290068387985,L, + 100070009000,0.310519993305206,L, + 101994432250,0.310742646455765,L, + 103918855500,0.311069697141647,L, + 105843278750,0.311597794294357,L, + 107767702000,0.312400966882706,L, + 109692125250,0.313528895378113,L, + 111616548500,0.315009146928787,L, + 113540971750,0.316851407289505,L, + 115465395000,0.318933367729187,L, + 117389818250,0.321133226156235,L, + 119314241500,0.323450863361359,L, + 121238664750,0.325886219739914,L, + 123163088000,0.328438699245453,L, + 125087511250,0.331107735633850,L, + 127011934500,0.333892375230789,L, + 128936357750,0.336791455745697,L, + 130860781000,0.339803308248520,L, + 132785204250,0.342926174402237,L, + 134709627500,0.346157878637314,L, + 136634050750,0.349495738744736,L, + 138558474000,0.352936863899231,L, + 140482897250,0.356477916240692,L, + 142407320500,0.360115021467209,L, + 144331743750,0.363844066858292,L, + 146256167000,0.367660313844681,L, + 148180590250,0.371558845043182,L, + 150105013500,0.375533789396286,L, + 152029436750,0.379579305648804,L, + 153953860000,0.383688986301422,L, + 155878283250,0.387855857610703,L, + 157802706500,0.392072588205338,L, + 159727129750,0.396331578493118,L, + 161651553000,0.400624543428421,L, + 163575976250,0.404943287372589,L, + 165500399500,0.409278899431229,L, + 167424822750,0.413622587919235,L, + 169349246000,0.417964994907379,L, + 171273669250,0.422296881675720,L, + 173198092500,0.426608800888062,L, + 175122515750,0.430891245603561,L, + 177046939000,0.435134798288345,L, + 178971362250,0.439330190420151,L, + 180895785500,0.443467974662781,L, + 182820208750,0.447539240121841,L, + 184744632000,0.451535254716873,L, + 186669055250,0.455447554588318,L, + 188593478500,0.459267854690552,L, + 190517901750,0.462988555431366,L, + 192442325000,0.466602325439453,L, + 194366748250,0.470102339982986,L, + 196291171500,0.473482221364975,L, + 198215594750,0.476736068725586,L, + 200140018000,0.479858636856079,L, + 202064441250,0.482844948768616,L, + 203988864500,0.485690832138062,L, + 205913287750,0.488392353057861,L, + 207837711000,0.490946292877197,L, + 209762134250,0.493349820375443,L, + 211686557500,0.495600581169128,L, + 213610980750,0.497696667909622,L, + 215535404000,0.499636620283127,L, + 217459827250,0.501419365406036,L, + 219384250500,0.503044188022614,L, + 221308673750,0.504510998725891,L, + 223233097000,0.505819439888000,L, + 225157520250,0.506970107555389,L, + 227081943500,0.507963418960571,L, + 229006366750,0.508800268173218,L, + 230930790000,0.509481728076935,L, + 232855213250,0.510008871555328,L, + 234779636500,0.510383486747742,L, + 236704059750,0.510606944561005,L, + 238628483000,0.510680973529816,L, + 240552906250,0.510144233703613,L, + 242477329500,0.508572340011597,L, + 244401752750,0.506019413471222,L, + 246326176000,0.502534091472626,L, + 248250599250,0.498160928487778,L, + 250175022500,0.492940247058868,L, + 252099445750,0.486909180879593,L, + 254023869000,0.480101406574249,L, + 255948292250,0.472548305988312,L, + 257872715500,0.464278072118759,L, + 259797138750,0.455317199230194,L, + 261721562000,0.445689678192139,L, + 263645985250,0.435417860746384,L, + 265570408500,0.424522221088409,L, + 267494831750,0.413021445274353,L, + 269419255000,0.400932908058167,L, + 271343678250,0.388272345066071,L, + 273268101500,0.375054210424423,L, + 275192524750,0.361291706562042,L, + 277116948000,0.346996635198593,L, + 279041371250,0.332179427146912,L, + 280965794500,0.316849559545517,L, + 282890217750,0.301014930009842,L, + 284814641000,0.284682124853134,L, + 286739064250,0.267856448888779,L, + 288663487500,0.250541448593140,L, + 290587910750,0.232738971710205,L, + 292512334000,0.214448690414429,L, + 294436757250,0.195667758584023,L, + 296361180500,0.176389917731285,L, + 298285603750,0.156604364514351,L, + 300210027000,0.136294081807137,L, + 302134450250,0.115431450307369,L, + 304058873500,0.093970775604248,L, + 307907720000,0.093970775604248,L, + 309832143250,0.000042378898797,L, + 344471761750,0.000042378898797,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_055" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.032782196998596 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.032782196998596,L, + 157802706500,0.032782196998596,L, + 159727129750,0.015258669853210,L, + 161651553000,0.014781236648560,L, + 163575976250,0.014308691024780,L, + 165500399500,0.013841152191162,L, + 167424822750,0.013378739356995,L, + 169349246000,0.012921929359436,L, + 171273669250,0.012470841407776,L, + 173198092500,0.012025952339172,L, + 175122515750,0.011587262153625,L, + 177046939000,0.011155128479004,L, + 178971362250,0.010730028152466,L, + 180895785500,0.010311961174011,L, + 182820208750,0.009901523590088,L, + 184744632000,0.009498834609985,L, + 186669055250,0.009104251861572,L, + 188593478500,0.008718132972717,L, + 190517901750,0.008340477943420,L, + 192442325000,0.007971763610840,L, + 194366748250,0.007612347602844,L, + 196291171500,0.007262349128723,L, + 198215594750,0.006922245025635,L, + 200140018000,0.006592035293579,L, + 202064441250,0.006271958351135,L, + 203988864500,0.005962371826172,L, + 205913287750,0.005663394927979,L, + 207837711000,0.005374908447266,L, + 209762134250,0.005097508430481,L, + 211686557500,0.004830837249756,L, + 213610980750,0.004575371742249,L, + 215535404000,0.004330992698669,L, + 217459827250,0.004097461700439,L, + 219384250500,0.003875255584717,L, + 221308673750,0.003663778305054,L, + 223233097000,0.003463268280029,L, + 225157520250,0.003273725509644,L, + 227081943500,0.003094553947449,L, + 229006366750,0.002925872802734,L, + 230930790000,0.002767443656921,L, + 232855213250,0.002619147300720,L, + 234779636500,0.002480387687683,L, + 236704059750,0.002351403236389,L, + 238628483000,0.002231359481812,L, + 240552906250,0.002120375633240,L, + 242477329500,0.002017974853516,L, + 244401752750,0.001923918724060,L, + 246326176000,0.001837730407715,L, + 248250599250,0.001759052276611,L, + 250175022500,0.001687765121460,L, + 252099445750,0.001623630523682,L, + 254023869000,0.001565814018250,L, + 255948292250,0.001514434814453,L, + 257872715500,0.001469135284424,L, + 259797138750,0.001429438591003,L, + 261721562000,0.001395106315613,L, + 263645985250,0.001365661621094,L, + 265570408500,0.001341104507446,L, + 267494831750,0.001321077346802,L, + 269419255000,0.001305103302002,L, + 271343678250,0.001293301582336,L, + 273268101500,0.001285076141357,L, + 275192524750,0.001280307769775,L, + 277116948000,0.001278758049011,L, + 279041371250,0.001351237297058,L, + 280965794500,0.001558065414429,L, + 282890217750,0.001885175704956,L, + 284814641000,0.002320647239685,L, + 286739064250,0.002854704856873,L, + 288663487500,0.003478765487671,L, + 290587910750,0.004185318946838,L, + 292512334000,0.004968047142029,L, + 294436757250,0.005821108818054,L, + 296361180500,0.006739616394043,L, + 298285603750,0.007719159126282,L, + 300210027000,0.008755326271057,L, + 302134450250,0.009844660758972,L, + 304058873500,0.010983586311340,L, + 305983296750,0.012169241905212,L, + 307907720000,0.013398408889771,L, + 309832143250,0.014668226242065,L, + 311756566500,0.015976190567017,L, + 313680989750,0.017319560050964,L, + 315605413000,0.018695712089539,L, + 317529836250,0.020101428031921,L, + 319454259500,0.021534085273743,L, + 321378682750,0.022989749908447,L, + 323303106000,0.024464130401611,L, + 325227529250,0.025951743125916,L, + 327151952500,0.027444005012512,L, + 329076375750,0.028928399085999,L, + 331000799000,0.030380129814148,L, + 332925222250,0.031739950180054,L, + 334849645500,0.032710075378418,L, + 336774068750,0.032782196998596,L, + 344471761750,0.032782196998596,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.028244614601135 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,-0.028244614601135,L, + 157802706500,-0.028244614601135,L, + 159727129750,-0.062223196029663,L, + 161651553000,-0.063218235969543,L, + 163575976250,-0.064210653305054,L, + 165500399500,-0.065199971199036,L, + 167424822750,-0.066185832023621,L, + 169349246000,-0.067167520523071,L, + 171273669250,-0.068144679069519,L, + 173198092500,-0.069116711616516,L, + 175122515750,-0.070083022117615,L, + 177046939000,-0.071042895317078,L, + 178971362250,-0.071995735168457,L, + 180895785500,-0.072940945625305,L, + 182820208750,-0.073877453804016,L, + 184744632000,-0.074805021286011,L, + 186669055250,-0.075722575187683,L, + 188593478500,-0.076629638671875,L, + 190517901750,-0.077525019645691,L, + 192442325000,-0.078407883644104,L, + 194366748250,-0.079277873039246,L, + 196291171500,-0.080133676528931,L, + 198215594750,-0.080974698066711,L, + 200140018000,-0.081800222396851,L, + 202064441250,-0.082608938217163,L, + 203988864500,-0.083400368690491,L, + 205913287750,-0.084173798561096,L, + 207837711000,-0.084928154945374,L, + 209762134250,-0.085662961006165,L, + 211686557500,-0.086377263069153,L, + 213610980750,-0.087070703506470,L, + 215535404000,-0.087742447853088,L, + 217459827250,-0.088392019271851,L, + 219384250500,-0.089018940925598,L, + 221308673750,-0.089622855186462,L, + 223233097000,-0.090203404426575,L, + 225157520250,-0.090760111808777,L, + 227081943500,-0.091292977333069,L, + 229006366750,-0.091801643371582,L, + 230930790000,-0.092286109924316,L, + 232855213250,-0.092746615409851,L, + 234779636500,-0.093182802200317,L, + 236704059750,-0.093595266342163,L, + 238628483000,-0.093983769416809,L, + 240552906250,-0.094348788261414,L, + 242477329500,-0.094690561294556,L, + 244401752750,-0.095009446144104,L, + 246326176000,-0.095305800437927,L, + 248250599250,-0.095580101013184,L, + 250175022500,-0.095832824707031,L, + 252099445750,-0.096064329147339,L, + 254023869000,-0.096275329589844,L, + 255948292250,-0.096466183662415,L, + 257872715500,-0.096637487411499,L, + 259797138750,-0.096789836883545,L, + 261721562000,-0.096923708915710,L, + 263645985250,-0.097039818763733,L, + 265570408500,-0.097138643264771,L, + 267494831750,-0.097220659255981,L, + 269419255000,-0.097286581993103,L, + 271343678250,-0.097336888313293,L, + 273268101500,-0.097372174263000,L, + 275192524750,-0.097393035888672,L, + 277116948000,-0.097399830818176,L, + 279041371250,-0.097240686416626,L, + 280965794500,-0.096786618232727,L, + 282890217750,-0.096068739891052,L, + 284814641000,-0.095112562179565,L, + 286739064250,-0.093940377235413,L, + 288663487500,-0.092570543289185,L, + 290587910750,-0.091019511222839,L, + 292512334000,-0.089301347732544,L, + 294436757250,-0.087428569793701,L, + 296361180500,-0.085412263870239,L, + 298285603750,-0.083262324333191,L, + 300210027000,-0.080987572669983,L, + 302134450250,-0.078596234321594,L, + 304058873500,-0.076095938682556,L, + 305983296750,-0.073493480682373,L, + 307907720000,-0.070795416831970,L, + 309832143250,-0.068007588386536,L, + 311756566500,-0.065136194229126,L, + 313680989750,-0.062187433242798,L, + 315605413000,-0.059166669845581,L, + 317529836250,-0.056080579757690,L, + 319454259500,-0.052936077117920,L, + 321378682750,-0.049740672111511,L, + 323303106000,-0.046503901481628,L, + 325227529250,-0.043238520622253,L, + 327151952500,-0.039962530136108,L, + 329076375750,-0.036704301834106,L, + 331000799000,-0.033517360687256,L, + 332925222250,-0.030532240867615,L, + 334849645500,-0.028402805328369,L, + 336774068750,-0.028244614601135,L, + 344471761750,-0.028244614601135,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775783538818 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.007775783538818,L, + 157802706500,0.007775783538818,L, + 159727129750,0.003468930721283,L, + 161651553000,0.003611743450165,L, + 163575976250,0.004034638404846,L, + 165500399500,0.004729509353638,L, + 167424822750,0.005688488483429,L, + 169349246000,0.006904006004333,L, + 171273669250,0.008368968963623,L, + 173198092500,0.010076463222504,L, + 175122515750,0.012019634246826,L, + 177046939000,0.014192283153534,L, + 178971362250,0.016588091850281,L, + 180895785500,0.019201099872589,L, + 182820208750,0.022025465965271,L, + 184744632000,0.025055646896362,L, + 186669055250,0.028286218643188,L, + 188593478500,0.031711757183075,L, + 190517901750,0.035327315330505,L, + 192442325000,0.039127647876740,L, + 194366748250,0.043108046054840,L, + 196291171500,0.047263681888580,L, + 198215594750,0.051590025424957,L, + 200140018000,0.056082248687744,L, + 202064441250,0.060736060142517,L, + 203988864500,0.065546989440918,L, + 205913287750,0.070510685443878,L, + 207837711000,0.075622797012329,L, + 209762134250,0.080879092216492,L, + 211686557500,0.086275398731232,L, + 213610980750,0.091807425022125,L, + 215535404000,0.097471058368683,L, + 217459827250,0.103262007236481,L, + 219384250500,0.109176158905029,L, + 221308673750,0.115209162235260,L, + 223233097000,0.121356785297394,L, + 225157520250,0.127614617347717,L, + 227081943500,0.133978307247162,L, + 229006366750,0.140443265438080,L, + 230930790000,0.147004902362823,L, + 232855213250,0.153658330440521,L, + 234779636500,0.160398602485657,L, + 236704059750,0.167220532894135,L, + 238628483000,0.174118638038635,L, + 240552906250,0.181087136268616,L, + 242477329500,0.188120007514954,L, + 244401752750,0.195210874080658,L, + 246326176000,0.202352583408356,L, + 248250599250,0.209537744522095,L, + 250175022500,0.216758072376251,L, + 252099445750,0.224004447460175,L, + 254023869000,0.231267035007477,L, + 255948292250,0.238534569740295,L, + 257872715500,0.245794534683228,L, + 259797138750,0.253032565116882,L, + 261721562000,0.260232329368591,L, + 263645985250,0.267374634742737,L, + 265570408500,0.274436593055725,L, + 267494831750,0.281391263008118,L, + 269419255000,0.288205623626709,L, + 271343678250,0.294838786125183,L, + 273268101500,0.301238536834717,L, + 275192524750,0.307337045669556,L, + 277116948000,0.313043236732483,L, + 279041371250,0.318902969360352,L, + 280965794500,0.325497388839722,L, + 282890217750,0.332769274711609,L, + 284814641000,0.340668439865112,L, + 286739064250,0.349150061607361,L, + 288663487500,0.358174324035645,L, + 290587910750,0.367705106735229,L, + 292512334000,0.377709865570068,L, + 294436757250,0.388159036636353,L, + 296361180500,0.399025321006775,L, + 298285603750,0.410283446311951,L, + 300210027000,0.421909809112549,L, + 302134450250,0.433882236480713,L, + 304058873500,0.446179866790771,L, + 305983296750,0.458782196044922,L, + 307907720000,0.471669554710388,L, + 309832143250,0.484822154045105,L, + 311756566500,0.498219847679138,L, + 313680989750,0.511842131614685,L, + 315605413000,0.525666713714600,L, + 317529836250,0.539668798446655,L, + 319454259500,0.553820013999939,L, + 321378682750,0.568085908889771,L, + 323303106000,0.582422733306885,L, + 325227529250,0.596770882606506,L, + 327151952500,0.611042737960815,L, + 329076375750,0.625095605850220,L, + 331000799000,0.638661384582520,L, + 332925222250,0.651092410087585,L, + 334849645500,0.659229636192322,L, + 336774068750,0.007775783538818,L, + 344471761750,0.007775783538818,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 69.452218499662933 + KeyVer: 4005 + KeyCount: 8 + Key: + 0,69.452218499662933,L, + 294436757250,69.452218499662933,L, + 296361180500,69.452211669473755,L, + 298285603750,69.452218499662933,L, + 305983296750,69.452218499662933,L, + 307907720000,69.452211669473755,L, + 309832143250,69.452218499662933,L, + 344471761750,69.452218499662933,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.846882760524750 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882760524750,L, + 159727129750,0.846882760524750,L, + 161651553000,0.846929609775543,L, + 163575976250,0.847067236900330,L, + 165500399500,0.847291707992554,L, + 167424822750,0.847599029541016,L, + 169349246000,0.847985208034515,L, + 171273669250,0.848446667194366,L, + 173198092500,0.848979830741882,L, + 175122515750,0.849580943584442,L, + 177046939000,0.850246608257294,L, + 178971362250,0.850973427295685,L, + 180895785500,0.851757943630219,L, + 182820208750,0.852596879005432,L, + 184744632000,0.853486835956573,L, + 186669055250,0.854424655437469,L, + 188593478500,0.855406939983368,L, + 190517901750,0.856430709362030,L, + 192442325000,0.857492506504059,L, + 194366748250,0.858589291572571,L, + 196291171500,0.859717547893524,L, + 198215594750,0.860874295234680,L, + 200140018000,0.862056136131287,L, + 202064441250,0.863259792327881,L, + 203988864500,0.864481866359711,L, + 205913287750,0.865718960762024,L, + 207837711000,0.866967439651489,L, + 209762134250,0.868223905563354,L, + 211686557500,0.869484603404999,L, + 213610980750,0.870745658874512,L, + 215535404000,0.872003257274628,L, + 217459827250,0.873253405094147,L, + 219384250500,0.874491989612579,L, + 221308673750,0.875714302062988,L, + 223233097000,0.876915991306305,L, + 225157520250,0.878092348575592,L, + 227081943500,0.879238128662109,L, + 229006366750,0.880348026752472,L, + 230930790000,0.881416201591492,L, + 232855213250,0.882436811923981,L, + 234779636500,0.883403360843658,L, + 236704059750,0.884308874607086,L, + 238628483000,0.885145962238312,L, + 240552906250,0.885906219482422,L, + 242477329500,0.886581242084503,L, + 244401752750,0.887161195278168,L, + 246326176000,0.887635529041290,L, + 248250599250,0.887992560863495,L, + 250175022500,0.888219535350800,L, + 252099445750,0.888301849365234,L, + 254023869000,0.888223528862000,L, + 255948292250,0.887965857982635,L, + 257872715500,0.887508213520050,L, + 259797138750,0.886826574802399,L, + 261721562000,0.885892808437347,L, + 263645985250,0.884674608707428,L, + 265570408500,0.883132934570312,L, + 267494831750,0.881221413612366,L, + 269419255000,0.878882825374603,L, + 271343678250,0.876047134399414,L, + 273268101500,0.872624218463898,L, + 275192524750,0.868497669696808,L, + 277116948000,0.863510489463806,L, + 279041371250,0.857115924358368,L, + 280965794500,0.849036276340485,L, + 282890217750,0.839449942111969,L, + 284814641000,0.828506529331207,L, + 286739064250,0.816332399845123,L, + 288663487500,0.803036808967590,L, + 290587910750,0.788713753223419,L, + 292512334000,0.773445904254913,L, + 294436757250,0.757306575775146,L, + 296361180500,0.740360438823700,L, + 298285603750,0.722666263580322,L, + 300210027000,0.704276978969574,L, + 302134450250,0.685241401195526,L, + 304058873500,0.665604650974274,L, + 305983296750,0.645409107208252,L, + 307907720000,0.624694824218750,L, + 309832143250,0.603500962257385,L, + 311756566500,0.581865608692169,L, + 313680989750,0.559827744960785,L, + 315605413000,0.537427783012390,L, + 317529836250,0.514709413051605,L, + 319454259500,0.491721570491791,L, + 321378682750,0.468522101640701,L, + 323303106000,0.445183306932449,L, + 325227529250,0.421802043914795,L, + 327151952500,0.398518711328506,L, + 329076375750,0.375560164451599,L, + 331000799000,0.353350788354874,L, + 332925222250,0.332918852567673,L, + 334849645500,0.319382131099701,L, + 336774068750,0.846882760524750,L, + 344471761750,0.846882760524750,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.846882760524750 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882760524750,L, + 159727129750,0.846882760524750,L, + 161651553000,0.846939146518707,L, + 163575976250,0.847105145454407,L, + 165500399500,0.847375869750977,L, + 167424822750,0.847746133804321,L, + 169349246000,0.848211407661438,L, + 171273669250,0.848767399787903,L, + 173198092500,0.849409401416779,L, + 175122515750,0.850132942199707,L, + 177046939000,0.850933909416199,L, + 178971362250,0.851808130741119,L, + 180895785500,0.852751433849335,L, + 182820208750,0.853759706020355,L, + 184744632000,0.854828834533691,L, + 186669055250,0.855955064296722,L, + 188593478500,0.857134282588959,L, + 190517901750,0.858362436294556,L, + 192442325000,0.859635710716248,L, + 194366748250,0.860950052738190,L, + 196291171500,0.862301528453827,L, + 198215594750,0.863686144351959,L, + 200140018000,0.865099787712097,L, + 202064441250,0.866538524627686,L, + 203988864500,0.867998182773590,L, + 205913287750,0.869474411010742,L, + 207837711000,0.870963037014008,L, + 209762134250,0.872459650039673,L, + 211686557500,0.873959541320801,L, + 213610980750,0.875458240509033,L, + 215535404000,0.876951038837433,L, + 217459827250,0.878432571887970,L, + 219384250500,0.879898071289062,L, + 221308673750,0.881341934204102,L, + 223233097000,0.882758498191833,L, + 225157520250,0.884141862392426,L, + 227081943500,0.885485768318176,L, + 229006366750,0.886783540248871,L, + 230930790000,0.888028264045715,L, + 232855213250,0.889212369918823,L, + 234779636500,0.890327990055084,L, + 236704059750,0.891366422176361,L, + 238628483000,0.892318427562714,L, + 240552906250,0.893173992633820,L, + 242477329500,0.893922209739685,L, + 244401752750,0.894551217556000,L, + 246326176000,0.895047903060913,L, + 248250599250,0.895397901535034,L, + 250175022500,0.895585238933563,L, + 252099445750,0.895591974258423,L, + 254023869000,0.895398139953613,L, + 255948292250,0.894980728626251,L, + 257872715500,0.894314289093018,L, + 259797138750,0.893368601799011,L, + 261721562000,0.892109513282776,L, + 263645985250,0.890496432781219,L, + 265570408500,0.888481199741364,L, + 267494831750,0.886006295681000,L, + 269419255000,0.883001208305359,L, + 271343678250,0.879378557205200,L, + 273268101500,0.875027060508728,L, + 275192524750,0.869802713394165,L, + 277116948000,0.863510489463806,L, + 279041371250,0.855368852615356,L, + 280965794500,0.845141291618347,L, + 282890217750,0.833256483078003,L, + 284814641000,0.820015251636505,L, + 286739064250,0.805638670921326,L, + 288663487500,0.790295660495758,L, + 290587910750,0.774118065834045,L, + 292512334000,0.757212042808533,L, + 294436757250,0.739664733409882,L, + 296361180500,0.721548736095428,L, + 298285603750,0.702925741672516,L, + 300210027000,0.683849394321442,L, + 302134450250,0.664366185665131,L, + 304058873500,0.644518196582794,L, + 305983296750,0.624343276023865,L, + 307907720000,0.603876292705536,L, + 309832143250,0.583151042461395,L, + 311756566500,0.562199354171753,L, + 313680989750,0.541053414344788,L, + 315605413000,0.519746899604797,L, + 317529836250,0.498315304517746,L, + 319454259500,0.476799070835114,L, + 321378682750,0.455245733261108,L, + 323303106000,0.433714956045151,L, + 325227529250,0.412287056446075,L, + 327151952500,0.391078293323517,L, + 329076375750,0.370276391506195,L, + 331000799000,0.350232928991318,L, + 332925222250,0.331800132989883,L, + 334849645500,0.319382131099701,L, + 336774068750,0.846882760524750,L, + 344471761750,0.846882760524750,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.481483906507492 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.481483906507492,L, + 157802706500,0.481483906507492,L, + 159727129750,0.624619781970978,L, + 161651553000,0.624619722366333,L, + 163575976250,0.624619245529175,L, + 165500399500,0.624617755413055,L, + 167424822750,0.624614894390106,L, + 169349246000,0.624610126018524,L, + 171273669250,0.624602735042572,L, + 173198092500,0.624592304229736,L, + 175122515750,0.624577939510345,L, + 177046939000,0.624559104442596,L, + 178971362250,0.624535024166107,L, + 180895785500,0.624504983425140,L, + 182820208750,0.624468207359314,L, + 184744632000,0.624423623085022,L, + 186669055250,0.624370634555817,L, + 188593478500,0.624308168888092,L, + 190517901750,0.624235332012177,L, + 192442325000,0.624151229858398,L, + 194366748250,0.624054729938507,L, + 196291171500,0.623944878578186,L, + 198215594750,0.623820722103119,L, + 200140018000,0.623681247234344,L, + 202064441250,0.623525202274323,L, + 203988864500,0.623351812362671,L, + 205913287750,0.623160004615784,L, + 207837711000,0.622948646545410,L, + 209762134250,0.622716963291168,L, + 211686557500,0.622464001178741,L, + 213610980750,0.622188746929169,L, + 215535404000,0.621890485286713,L, + 217459827250,0.621568500995636,L, + 219384250500,0.621221899986267,L, + 221308673750,0.620850145816803,L, + 223233097000,0.620452761650085,L, + 225157520250,0.620029151439667,L, + 227081943500,0.619578838348389,L, + 229006366750,0.619101643562317,L, + 230930790000,0.618597149848938,L, + 232855213250,0.618065357208252,L, + 234779636500,0.617506146430969,L, + 236704059750,0.616919577121735,L, + 238628483000,0.616305530071259,L, + 240552906250,0.615664243698120,L, + 242477329500,0.614996075630188,L, + 244401752750,0.614300966262817,L, + 246326176000,0.613579571247101,L, + 248250599250,0.612832069396973,L, + 250175022500,0.612058937549591,L, + 252099445750,0.611260712146759,L, + 254023869000,0.610437810420990,L, + 255948292250,0.609590768814087,L, + 257872715500,0.608720123767853,L, + 259797138750,0.607826471328735,L, + 261721562000,0.606910407543182,L, + 263645985250,0.605972588062286,L, + 265570408500,0.605013489723206,L, + 267494831750,0.604033887386322,L, + 269419255000,0.603034257888794,L, + 271343678250,0.602015137672424,L, + 273268101500,0.600977361202240,L, + 275192524750,0.599921464920044,L, + 277116948000,0.598847866058350,L, + 279041371250,0.597012996673584,L, + 280965794500,0.593785107135773,L, + 282890217750,0.589310646057129,L, + 284814641000,0.583712458610535,L, + 286739064250,0.577094614505768,L, + 288663487500,0.569546163082123,L, + 290587910750,0.561144590377808,L, + 292512334000,0.551957368850708,L, + 294436757250,0.542043983936310,L, + 296361180500,0.531457722187042,L, + 298285603750,0.520245969295502,L, + 300210027000,0.508451759815216,L, + 302134450250,0.496114432811737,L, + 304058873500,0.483270198106766,L, + 305983296750,0.469952672719955,L, + 307907720000,0.456193894147873,L, + 309832143250,0.442024409770966,L, + 311756566500,0.427473962306976,L, + 313680989750,0.412572473287582,L, + 315605413000,0.397350430488586,L, + 317529836250,0.381840586662292,L, + 319454259500,0.366079002618790,L, + 321378682750,0.350107699632645,L, + 323303106000,0.333978652954102,L, + 325227529250,0.317760646343231,L, + 327151952500,0.301552921533585,L, + 329076375750,0.285515248775482,L, + 331000799000,0.269946187734604,L, + 332925222250,0.255570173263550,L, + 334849645500,0.246008008718491,L, + 336774068750,0.481483906507492,L, + 344471761750,0.481483906507492,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_091" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.033717632293701 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.033717632293701,L, + 1924423250,0.033699870109558,L, + 3848846500,0.033645868301392,L, + 5773269750,0.033555388450623,L, + 7697693000,0.033427715301514,L, + 9622116250,0.033262491226196,L, + 11546539500,0.033059477806091,L, + 13470962750,0.032818078994751,L, + 15395386000,0.032538175582886,L, + 17319809250,0.032219409942627,L, + 19244232500,0.031861782073975,L, + 21168655750,0.031465172767639,L, + 23093079000,0.031029820442200,L, + 25017502250,0.030555486679077,L, + 26941925500,0.030043005943298,L, + 28866348750,0.029492378234863,L, + 30790772000,0.028904080390930,L, + 32715195250,0.028279304504395,L, + 34639618500,0.027618169784546,L, + 36564041750,0.026922225952148,L, + 38488465000,0.026192188262939,L, + 40412888250,0.025429487228394,L, + 42337311500,0.024635553359985,L, + 44261734750,0.023811936378479,L, + 46186158000,0.022960186004639,L, + 48110581250,0.022082209587097,L, + 50035004500,0.021179914474487,L, + 51959427750,0.020255446434021,L, + 53883851000,0.019311189651489,L, + 55808274250,0.018348932266235,L, + 57732697500,0.017371535301208,L, + 59657120750,0.016380906105042,L, + 61581544000,0.015379786491394,L, + 63505967250,0.014370441436768,L, + 65430390500,0.013355374336243,L, + 67354813750,0.012336850166321,L, + 69279237000,0.011317491531372,L, + 71203660250,0.010299682617188,L, + 73128083500,0.009285330772400,L, + 75052506750,0.008276581764221,L, + 76976930000,0.007275819778442,L, + 78901353250,0.006284952163696,L, + 80825776500,0.005305647850037,L, + 82750199750,0.004339814186096,L, + 84674623000,0.003389000892639,L, + 86599046250,0.002454519271851,L, + 88523469500,0.001537919044495,L, + 90447892750,0.000640630722046,L, + 92372316000,-0.000236749649048,L, + 94296739250,-0.001092791557312,L, + 96221162500,-0.001926898956299,L, + 98145585750,-0.002737879753113,L, + 100070009000,-0.003525614738464,L, + 101994432250,-0.004289150238037,L, + 103918855500,-0.005028247833252,L, + 105843278750,-0.005742192268372,L, + 107767702000,-0.006431102752686,L, + 109692125250,-0.007094502449036,L, + 111616548500,-0.007732272148132,L, + 113540971750,-0.008344292640686,L, + 115465395000,-0.008941531181335,L, + 117389818250,-0.009534835815430,L, + 119314241500,-0.010124564170837,L, + 121238664750,-0.010710597038269,L, + 123163088000,-0.011293292045593,L, + 125087511250,-0.011872649192810,L, + 127011934500,-0.012448668479919,L, + 128936357750,-0.013021707534790,L, + 130860781000,-0.013591647148132,L, + 132785204250,-0.014158606529236,L, + 134709627500,-0.014722824096680,L, + 136634050750,-0.015284061431885,L, + 138558474000,-0.015842795372009,L, + 140482897250,-0.016398787498474,L, + 142407320500,-0.016952276229858,L, + 144331743750,-0.017503380775452,L, + 146256167000,-0.018051862716675,L, + 148180590250,-0.018598079681396,L, + 150105013500,-0.019141912460327,L, + 152029436750,-0.019683480262756,L, + 153953860000,-0.020223021507263,L, + 155878283250,-0.020760297775269,L, + 157802706500,-0.021295547485352,L, + 159727129750,-0.021828532218933,L, + 161651553000,-0.022359728813171,L, + 163575976250,-0.022888779640198,L, + 165500399500,-0.023415923118591,L, + 167424822750,-0.023941278457642,L, + 169349246000,-0.024464607238770,L, + 171273669250,-0.024986386299133,L, + 173198092500,-0.025506138801575,L, + 175122515750,-0.026024341583252,L, + 177046939000,-0.026540637016296,L, + 178971362250,-0.027055263519287,L, + 180895785500,-0.027568340301514,L, + 182820208750,-0.028079748153687,L, + 184744632000,-0.028589487075806,L, + 186669055250,-0.029097557067871,L, + 188593478500,-0.029604196548462,L, + 190517901750,-0.030109286308289,L, + 192442325000,-0.030612826347351,L, + 194366748250,-0.031115055084229,L, + 196291171500,-0.031615614891052,L, + 198215594750,-0.032114863395691,L, + 200140018000,-0.032612562179565,L, + 202064441250,-0.033108830451965,L, + 203988864500,-0.033603906631470,L, + 205913287750,-0.034097552299500,L, + 207837711000,-0.034589648246765,L, + 209762134250,-0.035080552101135,L, + 211686557500,-0.035570144653320,L, + 213610980750,-0.036058545112610,L, + 215535404000,-0.036545515060425,L, + 217459827250,-0.037031054496765,L, + 219384250500,-0.037515521049500,L, + 221308673750,-0.037998914718628,L, + 223233097000,-0.038480758666992,L, + 225157520250,-0.038961410522461,L, + 227081943500,-0.039440989494324,L, + 229006366750,-0.039919137954712,L, + 230930790000,-0.040396213531494,L, + 232855213250,-0.040872216224670,L, + 234779636500,-0.041346907615662,L, + 236704059750,-0.041820406913757,L, + 238628483000,-0.042292952537537,L, + 240552906250,-0.042764067649841,L, + 242477329500,-0.043234109878540,L, + 244401752750,-0.043703079223633,L, + 246326176000,-0.044170856475830,L, + 248250599250,-0.044637441635132,L, + 250175022500,-0.045102953910828,L, + 252099445750,-0.045567274093628,L, + 254023869000,-0.046030521392822,L, + 255948292250,-0.046492695808411,L, + 257872715500,-0.046953558921814,L, + 259797138750,-0.047413349151611,L, + 261721562000,-0.047872185707092,L, + 263645985250,-0.048329710960388,L, + 265570408500,-0.048786163330078,L, + 267494831750,-0.049241542816162,L, + 269419255000,-0.049695611000061,L, + 271343678250,-0.050148725509644,L, + 273268101500,-0.050600528717041,L, + 275192524750,-0.051051378250122,L, + 277116948000,-0.051500916481018,L, + 279041371250,-0.051949262619019,L, + 280965794500,-0.052396416664124,L, + 282890217750,-0.052842259407043,L, + 284814641000,-0.053287029266357,L, + 286739064250,-0.053730487823486,L, + 288663487500,-0.054172754287720,L, + 290587910750,-0.054613709449768,L, + 292512334000,-0.055053234100342,L, + 294436757250,-0.055491566658020,L, + 296361180500,-0.055928349494934,L, + 298285603750,-0.056363821029663,L, + 300210027000,-0.056797623634338,L, + 302134450250,-0.057230114936829,L, + 304058873500,-0.057660698890686,L, + 305983296750,-0.058089852333069,L, + 307907720000,-0.058516979217529,L, + 309832143250,-0.058942437171936,L, + 311756566500,-0.059365749359131,L, + 313680989750,-0.059786915779114,L, + 315605413000,-0.060205698013306,L, + 317529836250,-0.060621738433838,L, + 319454259500,-0.061034560203552,L, + 321378682750,-0.061444044113159,L, + 323303106000,-0.061849355697632,L, + 325227529250,-0.062249302864075,L, + 327151952500,-0.062642335891724,L, + 329076375750,-0.063025116920471,L, + 331000799000,-0.063389420509338,L, + 332925222250,-0.063678145408630,L, + 334849645500,0.039614200592041,L, + 344471761750,0.039614200592041,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.020471572875977 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-0.020471572875977,L, + 1924423250,-0.020483970642090,L, + 3848846500,-0.020520806312561,L, + 5773269750,-0.020583033561707,L, + 7697693000,-0.020670533180237,L, + 9622116250,-0.020784020423889,L, + 11546539500,-0.020923376083374,L, + 13470962750,-0.021089196205139,L, + 15395386000,-0.021281480789185,L, + 17319809250,-0.021500349044800,L, + 19244232500,-0.021745681762695,L, + 21168655750,-0.022018074989319,L, + 23093079000,-0.022317051887512,L, + 25017502250,-0.022642612457275,L, + 26941925500,-0.022994399070740,L, + 28866348750,-0.023372530937195,L, + 30790772000,-0.023776412010193,L, + 32715195250,-0.024205327033997,L, + 34639618500,-0.024659276008606,L, + 36564041750,-0.025136947631836,L, + 38488465000,-0.025638222694397,L, + 40412888250,-0.026161909103394,L, + 42337311500,-0.026706933975220,L, + 44261734750,-0.027272582054138,L, + 46186158000,-0.027857303619385,L, + 48110581250,-0.028460144996643,L, + 50035004500,-0.029079556465149,L, + 51959427750,-0.029714226722717,L, + 53883851000,-0.030362486839294,L, + 55808274250,-0.031023144721985,L, + 57732697500,-0.031694293022156,L, + 59657120750,-0.032374262809753,L, + 61581544000,-0.033061623573303,L, + 63505967250,-0.033754587173462,L, + 65430390500,-0.034451484680176,L, + 67354813750,-0.035150766372681,L, + 69279237000,-0.035850524902344,L, + 71203660250,-0.036549448966980,L, + 73128083500,-0.037245988845825,L, + 75052506750,-0.037938356399536,L, + 76976930000,-0.038625597953796,L, + 78901353250,-0.039305925369263,L, + 80825776500,-0.039978146553040,L, + 82750199750,-0.040641188621521,L, + 84674623000,-0.041294097900391,L, + 86599046250,-0.041935682296753,L, + 88523469500,-0.042564988136292,L, + 90447892750,-0.043181061744690,L, + 92372316000,-0.043783426284790,L, + 94296739250,-0.044371128082275,L, + 96221162500,-0.044943690299988,L, + 98145585750,-0.045500636100769,L, + 100070009000,-0.046041488647461,L, + 101994432250,-0.046565651893616,L, + 103918855500,-0.047072887420654,L, + 105843278750,-0.047563314437866,L, + 107767702000,-0.048036336898804,L, + 109692125250,-0.048491716384888,L, + 111616548500,-0.048929572105408,L, + 113540971750,-0.049349784851074,L, + 115465395000,-0.049759745597839,L, + 117389818250,-0.050167083740234,L, + 119314241500,-0.050571918487549,L, + 121238664750,-0.050974488258362,L, + 123163088000,-0.051374316215515,L, + 125087511250,-0.051772117614746,L, + 127011934500,-0.052167654037476,L, + 128936357750,-0.052560925483704,L, + 130860781000,-0.052952408790588,L, + 132785204250,-0.053341627120972,L, + 134709627500,-0.053728938102722,L, + 136634050750,-0.054114341735840,L, + 138558474000,-0.054497838020325,L, + 140482897250,-0.054879665374756,L, + 142407320500,-0.055259585380554,L, + 144331743750,-0.055638074874878,L, + 146256167000,-0.056014657020569,L, + 148180590250,-0.056389570236206,L, + 150105013500,-0.056762933731079,L, + 152029436750,-0.057134866714478,L, + 153953860000,-0.057505130767822,L, + 155878283250,-0.057873964309692,L, + 157802706500,-0.058241486549377,L, + 159727129750,-0.058607578277588,L, + 161651553000,-0.058972120285034,L, + 163575976250,-0.059335470199585,L, + 165500399500,-0.059697508811951,L, + 167424822750,-0.060057997703552,L, + 169349246000,-0.060417294502258,L, + 171273669250,-0.060775518417358,L, + 173198092500,-0.061132431030273,L, + 175122515750,-0.061488032341003,L, + 177046939000,-0.061842679977417,L, + 178971362250,-0.062196016311646,L, + 180895785500,-0.062548279762268,L, + 182820208750,-0.062899231910706,L, + 184744632000,-0.063249230384827,L, + 186669055250,-0.063598155975342,L, + 188593478500,-0.063946008682251,L, + 190517901750,-0.064292788505554,L, + 192442325000,-0.064638495445251,L, + 194366748250,-0.064983248710632,L, + 196291171500,-0.065326809883118,L, + 198215594750,-0.065669655799866,L, + 200140018000,-0.066011428833008,L, + 202064441250,-0.066352128982544,L, + 203988864500,-0.066691875457764,L, + 205913287750,-0.067030906677246,L, + 207837711000,-0.067368745803833,L, + 209762134250,-0.067705869674683,L, + 211686557500,-0.068042039871216,L, + 213610980750,-0.068377256393433,L, + 215535404000,-0.068711519241333,L, + 217459827250,-0.069044947624207,L, + 219384250500,-0.069377541542053,L, + 221308673750,-0.069709420204163,L, + 223233097000,-0.070040225982666,L, + 225157520250,-0.070370316505432,L, + 227081943500,-0.070699453353882,L, + 229006366750,-0.071027874946594,L, + 230930790000,-0.071355342864990,L, + 232855213250,-0.071682214736938,L, + 234779636500,-0.072008132934570,L, + 236704059750,-0.072333097457886,L, + 238628483000,-0.072657585144043,L, + 240552906250,-0.072980999946594,L, + 242477329500,-0.073303699493408,L, + 244401752750,-0.073625683784485,L, + 246326176000,-0.073946833610535,L, + 248250599250,-0.074267268180847,L, + 250175022500,-0.074586868286133,L, + 252099445750,-0.074905753135681,L, + 254023869000,-0.075223684310913,L, + 255948292250,-0.075540900230408,L, + 257872715500,-0.075857400894165,L, + 259797138750,-0.076173067092896,L, + 261721562000,-0.076488018035889,L, + 263645985250,-0.076802134513855,L, + 265570408500,-0.077115535736084,L, + 267494831750,-0.077428221702576,L, + 269419255000,-0.077740073204041,L, + 271343678250,-0.078051090240479,L, + 273268101500,-0.078361272811890,L, + 275192524750,-0.078670740127563,L, + 277116948000,-0.078979372978210,L, + 279041371250,-0.079287290573120,L, + 280965794500,-0.079594254493713,L, + 282890217750,-0.079900383949280,L, + 284814641000,-0.080205798149109,L, + 286739064250,-0.080510139465332,L, + 288663487500,-0.080813884735107,L, + 290587910750,-0.081116557121277,L, + 292512334000,-0.081418275833130,L, + 294436757250,-0.081719279289246,L, + 296361180500,-0.082019209861755,L, + 298285603750,-0.082317948341370,L, + 300210027000,-0.082615971565247,L, + 302134450250,-0.082912802696228,L, + 304058873500,-0.083208560943604,L, + 305983296750,-0.083503127098083,L, + 307907720000,-0.083796501159668,L, + 309832143250,-0.084088563919067,L, + 311756566500,-0.084379196166992,L, + 313680989750,-0.084668278694153,L, + 315605413000,-0.084955692291260,L, + 317529836250,-0.085241317749023,L, + 319454259500,-0.085524916648865,L, + 321378682750,-0.085805892944336,L, + 323303106000,-0.086084246635437,L, + 325227529250,-0.086358904838562,L, + 327151952500,-0.086628794670105,L, + 329076375750,-0.086891412734985,L, + 331000799000,-0.087141633033752,L, + 332925222250,-0.087339878082275,L, + 334849645500,-0.016423225402832,L, + 344471761750,-0.016423225402832,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.787578225135803 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.787578225135803,L, + 1924423250,0.787808060646057,L, + 3848846500,0.788500308990479,L, + 5773269750,0.789658308029175,L, + 7697693000,0.791285395622253,L, + 9622116250,0.793383359909058,L, + 11546539500,0.795954108238220,L, + 13470962750,0.798998236656189,L, + 15395386000,0.802515506744385,L, + 17319809250,0.806504368782043,L, + 19244232500,0.810962319374084,L, + 21168655750,0.815886020660400,L, + 23093079000,0.821270465850830,L, + 25017502250,0.827109336853027,L, + 26941925500,0.833394765853882,L, + 28866348750,0.840117454528809,L, + 30790772000,0.847266912460327,L, + 32715195250,0.854830265045166,L, + 34639618500,0.862793326377869,L, + 36564041750,0.871140480041504,L, + 38488465000,0.879853963851929,L, + 40412888250,0.888914108276367,L, + 42337311500,0.898300409317017,L, + 44261734750,0.907989859580994,L, + 46186158000,0.917958378791809,L, + 48110581250,0.928179860115051,L, + 50035004500,0.938627481460571,L, + 51959427750,0.949272990226746,L, + 53883851000,0.960086822509766,L, + 55808274250,0.971038699150085,L, + 57732697500,0.982097387313843,L, + 59657120750,0.993231534957886,L, + 61581544000,1.004409193992615,L, + 63505967250,1.015598773956299,L, + 65430390500,1.026768207550049,L, + 67354813750,1.037886023521423,L, + 69279237000,1.048921227455139,L, + 71203660250,1.059843897819519,L, + 73128083500,1.070624709129333,L, + 75052506750,1.081235647201538,L, + 76976930000,1.091649413108826,L, + 78901353250,1.101840853691101,L, + 80825776500,1.111785769462585,L, + 82750199750,1.121461153030396,L, + 84674623000,1.130846619606018,L, + 86599046250,1.139922261238098,L, + 88523469500,1.148670554161072,L, + 90447892750,1.157075524330139,L, + 92372316000,1.165122747421265,L, + 94296739250,1.172798991203308,L, + 96221162500,1.180093169212341,L, + 98145585750,1.186995744705200,L, + 100070009000,1.193497657775879,L, + 101994432250,1.199592590332031,L, + 103918855500,1.205274343490601,L, + 105843278750,1.210538387298584,L, + 107767702000,1.215381741523743,L, + 109692125250,1.219801545143127,L, + 111616548500,1.223796606063843,L, + 113540971750,1.227366566658020,L, + 115465395000,1.231254696846008,L, + 117389818250,1.235142946243286,L, + 119314241500,1.239030838012695,L, + 121238664750,1.242918968200684,L, + 123163088000,1.246807336807251,L, + 125087511250,1.250695228576660,L, + 130860781000,1.262359619140625,L, + 132785204250,1.266247510910034,L, + 134709627500,1.270135879516602,L, + 136634050750,1.274023771286011,L, + 140482897250,1.281800031661987,L, + 142407320500,1.285688400268555,L, + 144331743750,1.289576292037964,L, + 148180590250,1.297352552413940,L, + 150105013500,1.301240444183350,L, + 152029436750,1.305128812789917,L, + 153953860000,1.309016704559326,L, + 159727129750,1.320681095123291,L, + 161651553000,1.324568986892700,L, + 163575976250,1.328457355499268,L, + 167424822750,1.336233615875244,L, + 169349246000,1.340121507644653,L, + 171273669250,1.344009876251221,L, + 173198092500,1.347897768020630,L, + 177046939000,1.355674028396606,L, + 178971362250,1.359561920166016,L, + 180895785500,1.363450288772583,L, + 186669055250,1.375114679336548,L, + 188593478500,1.379002571105957,L, + 196291171500,1.394555091857910,L, + 198215594750,1.398442983627319,L, + 200140018000,1.402331352233887,L, + 205913287750,1.413995742797852,L, + 207837711000,1.417883634567261,L, + 215535404000,1.433436155319214,L, + 217459827250,1.437324047088623,L, + 219384250500,1.441212415695190,L, + 221308673750,1.445100307464600,L, + 223233097000,1.448988676071167,L, + 225157520250,1.452876567840576,L, + 240552906250,1.483981609344482,L, + 242477329500,1.487869501113892,L, + 248250599250,1.499533891677856,L, + 250175022500,1.503421783447266,L, + 252099445750,1.507310152053833,L, + 254023869000,1.511198043823242,L, + 255948292250,1.515086412429810,L, + 257872715500,1.518974304199219,L, + 259797138750,1.522862672805786,L, + 261721562000,1.526750564575195,L, + 275192524750,1.553967475891113,L, + 277116948000,1.557855367660522,L, + 284814641000,1.573407888412476,L, + 286739064250,1.577295780181885,L, + 288663487500,1.581184148788452,L, + 290587910750,1.585072040557861,L, + 292512334000,1.588960409164429,L, + 294436757250,1.592848539352417,L, + 296361180500,1.596736431121826,L, + 304058873500,1.612288951873779,L, + 305983296750,1.616176843643188,L, + 307907720000,1.620065212249756,L, + 309832143250,1.623953104019165,L, + 311756566500,1.627841472625732,L, + 313680989750,1.631729364395142,L, + 317529836250,1.639505624771118,L, + 319454259500,1.643393516540527,L, + 321378682750,1.647281885147095,L, + 327151952500,1.658946275711060,L, + 329076375750,1.662834167480469,L, + 332925222250,1.670610427856445,L, + 334849645500,0.738551020622253,L, + 336774068750,0.750929236412048,L, + 344471761750,0.750929236412048,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 32.797492639559827 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,32.797492639559827,L, + 1924423250,32.797103318777140,L, + 3848846500,32.795925111145316,L, + 5773269750,32.793958016664355,L, + 7697693000,32.791181544766744,L, + 9622116250,32.787616186020003,L, + 11546539500,32.783248280045790,L, + 13470962750,32.778074411749508,L, + 15395386000,32.772108241509514,L, + 17319809250,32.765346354231212,L, + 19244232500,32.757792165009185,L, + 21168655750,32.749466164410954,L, + 23093079000,32.740375182625677,L, + 25017502250,32.730529464937121,L, + 26941925500,32.719963162291123,L, + 28866348750,32.708669444498526,L, + 30790772000,32.696696122883509,L, + 32715195250,32.684063688013588,L, + 34639618500,32.670799460645448,L, + 36564041750,32.656930761535754,L, + 38488465000,32.642515647292463,L, + 40412888250,32.627581438672252,L, + 42337311500,32.612175946999308,L, + 44261734750,32.596343568503244,L, + 46186158000,32.580138944697410,L, + 48110581250,32.563606471811418,L, + 50035004500,32.546811036642382,L, + 51959427750,32.529807280703658,L, + 53883851000,32.512649845508612,L, + 55808274250,32.495410448043522,L, + 57732697500,32.478130069443417,L, + 59657120750,32.460883841789162,L, + 61581544000,32.443729821688699,L, + 63505967250,32.426722650655392,L, + 65430390500,32.409930630580938,L, + 67354813750,32.393398157694946,L, + 69279237000,32.377196948983702,L, + 71203660250,32.361364570487630,L, + 73128083500,32.345959078814687,L, + 75052506750,32.331018040005311,L, + 76976930000,32.316602925762020,L, + 78901353250,32.302747887030669,L, + 80825776500,32.289476829473351,L, + 82750199750,32.276840979508847,L, + 84674623000,32.264864242799248,L, + 86599046250,32.253577355195816,L, + 88523469500,32.243004222360653,L, + 90447892750,32.233165334861262,L, + 92372316000,32.224070937981402,L, + 94296739250,32.215738107193999,L, + 96221162500,32.208190748161144,L, + 98145585750,32.201432275977425,L, + 100070009000,32.195462690642849,L, + 101994432250,32.190292237441156,L, + 103918855500,32.185917501277764,L, + 105843278750,32.182345312341852,L, + 107767702000,32.179582500822590,L, + 109692125250,32.177615406341630,L, + 111616548500,32.176433783615217,L, + 113540971750,32.176037632643357,L, + 115465395000,32.189633124186251,L, + 117389818250,32.229743410087089,L, + 119314241500,32.295405433672911,L, + 121238664750,32.385727855257031,L, + 123163088000,32.499867146476952,L, + 125087511250,32.637017345010612,L, + 127011934500,32.796420299860138,L, + 128936357750,32.977389577013952,L, + 130860781000,33.179218251892955,L, + 132785204250,33.401295022566430,L, + 134709627500,33.642994926725322,L, + 136634050750,33.903757888857697,L, + 138558474000,34.183027248546189,L, + 140482897250,34.480294156697646,L, + 142407320500,34.795046349124306,L, + 144331743750,35.126833033340951,L, + 146256167000,35.475189756484028,L, + 148180590250,35.839689631730401,L, + 150105013500,36.219929677919048,L, + 152029436750,36.615510328983525,L, + 153953860000,37.026049094330311,L, + 155878283250,37.451201049406308,L, + 157802706500,37.890604194185528,L, + 159727129750,38.343951170155300,L, + 161651553000,38.810907298046303,L, + 163575976250,39.291172049535064,L, + 165500399500,39.784451726487262,L, + 167424822750,40.290456045863174,L, + 169349246000,40.808935705758095,L, + 171273669250,41.339603838226886,L, + 173198092500,41.882221386648602,L, + 175122515750,42.436559539686037,L, + 177046939000,43.002375825623666,L, + 178971362250,43.579427772745952,L, + 180895785500,44.167520720661543,L, + 182820208750,44.766446348600759,L, + 184744632000,45.375972430131824,L, + 186669055250,45.995945285998403,L, + 188593478500,46.626132689768724,L, + 190517901750,47.266384377281049,L, + 192442325000,47.916515933427775,L, + 194366748250,48.576349773290495,L, + 196291171500,49.245725387423711,L, + 198215594750,49.924478851287333,L, + 200140018000,50.612449655435881,L, + 202064441250,51.309490950802193,L, + 203988864500,52.015472963792035,L, + 205913287750,52.730238600054498,L, + 207837711000,53.453644425617021,L, + 209762134250,54.185564081979955,L, + 211686557500,54.925878040832814,L, + 213610980750,55.674436038013873,L, + 215535404000,56.431139035780156,L, + 217459827250,57.195853845442855,L, + 219384250500,57.968478014164418,L, + 221308673750,58.748888598539786,L, + 223233097000,59.536996806109741,L, + 225157520250,60.332652372712552,L, + 227081943500,61.135800656834860,L, + 229006366750,61.946318715071598,L, + 230930790000,62.764110924774393,L, + 232855213250,63.589074833105684,L, + 234779636500,64.421142138173778,L, + 236704059750,65.260183066384457,L, + 238628483000,66.106149806413512,L, + 240552906250,66.958919414855885,L, + 242477329500,67.818437250198230,L, + 244401752750,68.684621350170488,L, + 246326176000,69.557376092124287,L, + 248250599250,70.436626343978773,L, + 250175022500,71.322296973653053,L, + 252099445750,72.214319679255439,L, + 254023869000,73.112605668326708,L, + 255948292250,74.017100299353515,L, + 257872715500,74.927735270444160,L, + 259797138750,75.844428619328596,L, + 261721562000,76.767118874304288,L, + 263645985250,77.695737733479547,L, + 265570408500,78.630216894962672,L, + 267494831750,79.570515377618634,L, + 269419255000,80.516523898420729,L, + 271343678250,81.468215136612258,L, + 273268101500,82.425534450679862,L, + 275192524750,83.388372557596838,L, + 277116948000,84.356715796984830,L, + 279041371250,85.330489036762984,L, + 280965794500,86.309603484472078,L, + 282890217750,87.294024989166260,L, + 284814641000,88.283678418764666,L, + 286739064250,89.278488641186428,L, + 288663487500,90.278401014918174,L, + 290587910750,91.283333577689874,L, + 292512334000,92.293245348366511,L, + 294436757250,93.307992892975506,L, + 296361180500,94.327548890760184,L, + 298285603750,95.351790398315487,L, + 300210027000,96.380635453371369,L, + 302134450250,97.413954282333606,L, + 304058873500,98.451623941797124,L, + 305983296750,99.493507827978547,L, + 307907720000,100.539421525770265,L, + 309832143250,101.589160129497188,L, + 311756566500,102.642491412727537,L, + 313680989750,103.699087526381135,L, + 315605413000,104.758552319486142,L, + 317529836250,105.820380358043963,L, + 319454259500,106.883868132570100,L, + 321378682750,107.948004775067389,L, + 323303106000,109.011376436377645,L, + 325227529250,110.071640361615536,L, + 327151952500,111.124835041062482,L, + 329076375750,112.162935002443717,L, + 331000799000,113.164828131034767,L, + 332925222250,113.973590830654814,L, + 334849645500,33.480948688667006,L, + 344471761750,33.480948688667006,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -27.168098536967598 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-27.168098536967598,L, + 1924423250,-27.145024450404037,L, + 3848846500,-27.075911473740067,L, + 5773269750,-26.960949144725163,L, + 7697693000,-26.800349199223593,L, + 9622116250,-26.594360939140060,L, + 11546539500,-26.343283185250751,L, + 13470962750,-26.047419880973735,L, + 15395386000,-25.707131318787724,L, + 17319809250,-25.322813649664585,L, + 19244232500,-24.894897175522022,L, + 21168655750,-24.423854886960065,L, + 23093079000,-23.910197340619163,L, + 25017502250,-23.354494857295016,L, + 26941925500,-22.757338248350830,L, + 28866348750,-22.119395164777970,L, + 30790772000,-21.441345210398854,L, + 32715195250,-20.723951658853228,L, + 34639618500,-19.968008519632104,L, + 36564041750,-19.174367858834444,L, + 38488465000,-18.343931261430683,L, + 40412888250,-17.477665199188380,L, + 42337311500,-16.576572002368234,L, + 44261734750,-15.641732548406393,L, + 46186158000,-14.674275526063205,L, + 48110581250,-13.675381704291432,L, + 50035004500,-12.646300153935538,L, + 51959427750,-11.588331172258764,L, + 53883851000,-10.502851896152508,L, + 55808274250,-9.391283858737783,L, + 57732697500,-8.255108357290828,L, + 59657120750,-7.095878832960997,L, + 61581544000,-5.915199953316419,L, + 63505967250,-4.714735296306811,L, + 65430390500,-3.496221224085236,L, + 67354813750,-2.261436147156834,L, + 69279237000,-1.012223789710680,L, + 71203660250,0.249516175209890,L, + 73128083500,1.521832741421062,L, + 75052506750,2.802718820482634,L, + 76976930000,4.090113642936396,L, + 78901353250,5.381916285282338,L, + 80825776500,6.675972036280734,L, + 82750199750,7.970084563226605,L, + 84674623000,9.262018259827245,L, + 86599046250,10.549498673089044,L, + 88523469500,11.830214637751601,L, + 90447892750,13.101837913081592,L, + 92372316000,14.361987324379625,L, + 94296739250,15.608283404493598,L, + 96221162500,16.838313389099209,L, + 98145585750,18.049655976135693,L, + 100070009000,19.239877910711233,L, + 101994432250,20.406544230386729,L, + 103918855500,21.547221680270361,L, + 105843278750,22.659461637544688,L, + 107767702000,23.740847922790817,L, + 109692125250,24.788962649042571,L, + 111616548500,25.801408419901275,L, + 113540971750,26.775821989914114,L, + 115465395000,27.729666445241484,L, + 117389818250,28.682153400471318,L, + 119314241500,29.633458732974745,L, + 121238664750,30.583766857859349,L, + 123163088000,31.533173397773510,L, + 125087511250,32.481787635743956,L, + 127011934500,33.429677873662378,L, + 128936357750,34.376895337947552,L, + 130860781000,35.323521990869523,L, + 132785204250,36.269574907901216,L, + 134709627500,37.215108730555990,L, + 136634050750,38.160143949401352,L, + 138558474000,39.104724960666907,L, + 140482897250,40.048862009636416,L, + 142407320500,40.992585832161133,L, + 144331743750,41.935910088619408,L, + 146256167000,42.878855269578750,L, + 148180590250,43.821428205228322,L, + 150105013500,44.763666461608572,L, + 152029436750,45.705552963246561,L, + 153953860000,46.647108200709802,L, + 155878283250,47.588352664565818,L, + 157802706500,48.529279524625423,L, + 159727129750,49.469909271456132,L, + 161651553000,50.410241905057944,L, + 163575976250,51.350284255620032,L, + 165500399500,52.290049983520738,L, + 167424822750,53.229532258570885,L, + 169349246000,54.168734495865067,L, + 171273669250,55.107684016159951,L, + 173198092500,56.046356913793460,L, + 175122515750,56.984766849143917,L, + 177046939000,57.922920652400499,L, + 178971362250,58.860814908468619,L, + 180895785500,59.798456447537454,L, + 182820208750,60.735838439417826,L, + 184744632000,61.672981374677249,L, + 186669055250,62.609864762748217,L, + 188593478500,63.546488603630721,L, + 190517901750,64.482887048270612,L, + 192442325000,65.419019115532876,L, + 194366748250,66.354912126174185,L, + 196291171500,67.290545589627044,L, + 198215594750,68.225939996458933,L, + 200140018000,69.161081686291553,L, + 202064441250,70.095970659124873,L, + 203988864500,71.030606914958909,L, + 205913287750,71.964997283982811,L, + 207837711000,72.899121275629099,L, + 209762134250,73.833006210654432,L, + 211686557500,74.766624768302137,L, + 213610980750,75.699983778761379,L, + 215535404000,76.633076411842978,L, + 217459827250,77.565909497736143,L, + 219384250500,78.498462545873323,L, + 221308673750,79.430749216632861,L, + 223233097000,80.362762679825622,L, + 225157520250,81.294489275073232,L, + 227081943500,82.225949492943215,L, + 229006366750,83.157109182489705,L, + 230930790000,84.087982004091074,L, + 232855213250,85.018540636990608,L, + 234779636500,85.948812401945005,L, + 236704059750,86.878769978197596,L, + 238628483000,87.808406535559186,L, + 240552906250,88.737735734408119,L, + 242477329500,89.666730253987737,L, + 244401752750,90.595390094298011,L, + 246326176000,91.523701594960613,L, + 248250599250,92.451657925786392,L, + 250175022500,93.379259086775320,L, + 252099445750,94.306484587359890,L, + 254023869000,95.233334427540129,L, + 255948292250,96.159774456370158,L, + 257872715500,97.085838824795829,L, + 259797138750,98.011452400736289,L, + 261721562000,98.936656165326553,L, + 263645985250,99.861422797809922,L, + 265570408500,100.785697656673065,L, + 267494831750,101.709521723050983,L, + 269419255000,102.632847185619482,L, + 271343678250,103.555626233054397,L, + 273268101500,104.477906676679893,L, + 275192524750,105.399599724036761,L, + 277116948000,106.320719035503359,L, + 279041371250,107.241223629944656,L, + 280965794500,108.161072526225638,L, + 282890217750,109.080272554535455,L, + 284814641000,109.998721262036582,L, + 286739064250,110.916480120431544,L, + 288663487500,111.833398865558578,L, + 290587910750,112.749484327606893,L, + 292512334000,113.664675034873923,L, + 294436757250,114.578895855278816,L, + 296361180500,115.492078486929870,L, + 298285603750,116.404181948692056,L, + 300210027000,117.315083297160328,L, + 302134450250,118.224673249307955,L, + 304058873500,119.132869842864906,L, + 305983296750,120.039509153291107,L, + 307907720000,120.944413595668109,L, + 309832143250,121.847405585077524,L, + 311756566500,122.748252895087546,L, + 313680989750,123.646668657753054,L, + 315605413000,124.542243061723838,L, + 317529836250,125.434538974893016,L, + 319454259500,126.322941680235303,L, + 321378682750,127.206549592780249,L, + 323303106000,128.084160599233911,L, + 325227529250,128.953875907007074,L, + 327151952500,129.812512647946477,L, + 329076375750,130.653978293312520,L, + 331000799000,131.462645370284179,L, + 332925222250,132.123192964915148,L, + 334849645500,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 64.697129591966089 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,64.697129591966089,L, + 1924423250,64.696774422129252,L, + 3848846500,64.695681591862055,L, + 5773269750,64.693871591732005,L, + 7697693000,64.691330761360760,L, + 9622116250,64.688052270559155,L, + 11546539500,64.684036119327203,L, + 13470962750,64.679275477475699,L, + 15395386000,64.673790835572191,L, + 17319809250,64.667575363427488,L, + 19244232500,64.660642721419933,L, + 21168655750,64.652986079360360,L, + 23093079000,64.644619097627114,L, + 25017502250,64.635582757355195,L, + 26941925500,64.625863398166288,L, + 28866348750,64.615481510627873,L, + 30790772000,64.604478075875008,L, + 32715195250,64.592859924096828,L, + 34639618500,64.580668036428378,L, + 36564041750,64.567929733626315,L, + 38488465000,64.554679166636518,L, + 40412888250,64.540936826026467,L, + 42337311500,64.526784674066221,L, + 44261734750,64.512229540944944,L, + 46186158000,64.497332898365173,L, + 48110581250,64.482142557651073,L, + 50035004500,64.466699499937704,L, + 51959427750,64.451072027116737,L, + 53883851000,64.435294290134024,L, + 55808274250,64.419448251259624,L, + 57732697500,64.403568061439373,L, + 59657120750,64.387715192375794,L, + 61581544000,64.371944285582259,L, + 63505967250,64.356316812761293,L, + 65430390500,64.340873755047909,L, + 67354813750,64.325683414333824,L, + 69279237000,64.310786771754053,L, + 71203660250,64.296231638632776,L, + 73128083500,64.282072656483351,L, + 75052506750,64.268343976251643,L, + 76976930000,64.255093409261846,L, + 78901353250,64.242355106459783,L, + 80825776500,64.230156388602168,L, + 82750199750,64.218545067013153,L, + 84674623000,64.207534802071109,L, + 86599046250,64.197159744721873,L, + 88523469500,64.187440385532966,L, + 90447892750,64.178390384882704,L, + 92372316000,64.170030233338622,L, + 94296739250,64.162380421468228,L, + 96221162500,64.155440949271494,L, + 98145585750,64.149225477126791,L, + 100070009000,64.143740835223284,L, + 101994432250,64.138987023560958,L, + 103918855500,64.134970872329006,L, + 105843278750,64.131692381527401,L, + 107767702000,64.129137890777812,L, + 109692125250,64.127327890647763,L, + 111616548500,64.126248720758909,L, + 113540971750,64.125886720732893,L, + 115465395000,64.137286306457625,L, + 117389818250,64.170877176795699,L, + 119314241500,64.225901180749247,L, + 121238664750,64.301586506942058,L, + 123163088000,64.397209155322088,L, + 125087511250,64.512120257918227,L, + 127011934500,64.645698267515968,L, + 128936357750,64.797321636900861,L, + 130860781000,64.966437120750143,L, + 132785204250,65.152505134119352,L, + 134709627500,65.355020243009946,L, + 136634050750,65.573504334180001,L, + 138558474000,65.807506615144305,L, + 140482897250,66.056576293417621,L, + 142407320500,66.320303557649780,L, + 144331743750,66.598299087058066,L, + 146256167000,66.890187221238151,L, + 148180590250,67.195599129974823,L, + 150105013500,67.514186473620441,L, + 152029436750,67.845635063473182,L, + 153953860000,68.189623880642031,L, + 155878283250,68.545845566614361,L, + 157802706500,68.914020083634199,L, + 159727129750,69.293874224134754,L, + 161651553000,69.685121120170862,L, + 163575976250,70.087528545310747,L, + 165500399500,70.500830122176794,L, + 167424822750,70.924814114904734,L, + 169349246000,71.359227806495255,L, + 171273669250,71.803873121462445,L, + 173198092500,72.258531493752869,L, + 175122515750,72.722991187502231,L, + 177046939000,73.197074617792140,L, + 178971362250,73.680583709136641,L, + 180895785500,74.173334046428167,L, + 182820208750,74.675154874937448,L, + 184744632000,75.185875439935259,L, + 186669055250,75.705331816881483,L, + 188593478500,76.233366911425250,L, + 190517901750,76.769823629215608,L, + 192442325000,77.314551706090853,L, + 194366748250,77.867407708078403,L, + 196291171500,78.428268691773198,L, + 198215594750,78.996977562824327,L, + 200140018000,79.573425038205059,L, + 202064441250,80.157467683942841,L, + 203988864500,80.748989386821776,L, + 205913287750,81.347880863815149,L, + 207837711000,81.954005511139542,L, + 209762134250,82.567274536335773,L, + 211686557500,83.187564995998756,L, + 213610980750,83.814774437290950,L, + 215535404000,84.448800407374819,L, + 217459827250,85.089540453412795,L, + 219384250500,85.736912613134834,L, + 221308673750,86.390800773325068,L, + 223233097000,87.051136632091783,L, + 225157520250,87.717824566786604,L, + 227081943500,88.390755294382799,L, + 229006366750,89.069874173367026,L, + 230930790000,89.755085581090881,L, + 232855213250,90.446307555284349,L, + 234779636500,91.143478624244892,L, + 236704059750,91.846503165324123,L, + 238628483000,92.555312876630353,L, + 240552906250,93.269846286461046,L, + 242477329500,93.990028262735322,L, + 244401752750,94.715783673372314,L, + 246326176000,95.447044216480350,L, + 248250599250,96.183748420356864,L, + 250175022500,96.925841643488511,L, + 252099445750,97.673241923605246,L, + 254023869000,98.425915109761235,L, + 255948292250,99.183758749118908,L, + 257872715500,99.946766011489117,L, + 259797138750,100.714854934601789,L, + 261721562000,101.487964046754428,L, + 263645985250,102.266018215866140,L, + 265570408500,103.049017441936940,L, + 267494831750,103.836866102318439,L, + 269419255000,104.629523215875608,L, + 271343678250,105.426934141095117,L, + 273268101500,106.229030576085236,L, + 275192524750,107.035798860467651,L, + 277116948000,107.847143371593958,L, + 279041371250,108.663050449085830,L, + 280965794500,109.483431300484057,L, + 282890217750,110.308258605031952,L, + 284814641000,111.137477721216158,L, + 286739064250,111.971006686766628,L, + 288663487500,112.808811350737528,L, + 290587910750,113.650837071615499,L, + 292512334000,114.497015547508823,L, + 294436757250,115.347264816147458,L, + 296361180500,116.201516575639729,L, + 298285603750,117.059716184472265,L, + 300210027000,117.921768019996676,L, + 302134450250,118.787562799186247,L, + 304058873500,119.657018559770933,L, + 305983296750,120.529998697967358,L, + 307907720000,121.406339289235405,L, + 309832143250,122.285903729791713,L, + 311756566500,123.168473453582806,L, + 313680989750,124.053775253041906,L, + 315605413000,124.941481279088848,L, + 317529836250,125.831181720373436,L, + 319454259500,126.722248199492014,L, + 321378682750,127.613874754122534,L, + 323303106000,128.504845610592753,L, + 325227529250,129.393234655556682,L, + 327151952500,130.275681435942715,L, + 329076375750,131.145465045607580,L, + 331000799000,131.984963596492634,L, + 332925222250,132.662600324426961,L, + 334849645500,64.711691555276545,L, + 344471761750,64.711691555276545,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.322332918643951 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.322332918643951,L, + 1924423250,0.322337836027145,L, + 3848846500,0.322352677583694,L, + 5773269750,0.322377443313599,L, + 7697693000,0.322412192821503,L, + 9622116250,0.322457134723663,L, + 11546539500,0.322512030601501,L, + 13470962750,0.322577029466629,L, + 15395386000,0.322652071714401,L, + 17319809250,0.322737067937851,L, + 19244232500,0.322831958532333,L, + 21168655750,0.322936654090881,L, + 23093079000,0.323050945997238,L, + 25017502250,0.323174685239792,L, + 26941925500,0.323307603597641,L, + 28866348750,0.323449522256851,L, + 30790772000,0.323600053787231,L, + 32715195250,0.323758929967880,L, + 34639618500,0.323925703763962,L, + 36564041750,0.324099928140640,L, + 38488465000,0.324281185865402,L, + 40412888250,0.324468880891800,L, + 42337311500,0.324662625789642,L, + 44261734750,0.324861586093903,L, + 46186158000,0.325065404176712,L, + 48110581250,0.325273126363754,L, + 50035004500,0.325484246015549,L, + 51959427750,0.325698047876358,L, + 53883851000,0.325913667678833,L, + 55808274250,0.326130479574203,L, + 57732697500,0.326347708702087,L, + 59657120750,0.326564431190491,L, + 61581544000,0.326780140399933,L, + 63505967250,0.326993912458420,L, + 65430390500,0.327205061912537,L, + 67354813750,0.327412843704224,L, + 69279237000,0.327616572380066,L, + 71203660250,0.327815592288971,L, + 73128083500,0.328009277582169,L, + 75052506750,0.328197002410889,L, + 76976930000,0.328378289937973,L, + 78901353250,0.328552514314651,L, + 80825776500,0.328719288110733,L, + 82750199750,0.328878134489059,L, + 84674623000,0.329028636217117,L, + 86599046250,0.329170584678650,L, + 88523469500,0.329303473234177,L, + 90447892750,0.329427182674408,L, + 92372316000,0.329541504383087,L, + 94296739250,0.329646229743958,L, + 96221162500,0.329741090536118,L, + 98145585750,0.329826116561890,L, + 100070009000,0.329901158809662,L, + 101994432250,0.329966157674789,L, + 103918855500,0.330021113157272,L, + 105843278750,0.330065906047821,L, + 107767702000,0.330100744962692,L, + 109692125250,0.330125570297241,L, + 111616548500,0.330140382051468,L, + 113540971750,0.330145269632339,L, + 115465395000,0.330100297927856,L, + 117389818250,0.329967379570007,L, + 119314241500,0.329749882221222,L, + 121238664750,0.329450637102127,L, + 123163088000,0.329072535037994,L, + 125087511250,0.328618109226227,L, + 127011934500,0.328090041875839,L, + 128936357750,0.327490568161011,L, + 130860781000,0.326821982860565,L, + 132785204250,0.326086252927780,L, + 134709627500,0.325285583734512,L, + 136634050750,0.324421703815460,L, + 138558474000,0.323496520519257,L, + 140482897250,0.322511792182922,L, + 142407320500,0.321469038724899,L, + 144331743750,0.320369899272919,L, + 146256167000,0.319215893745422,L, + 148180590250,0.318008333444595,L, + 150105013500,0.316748738288879,L, + 152029436750,0.315438240766525,L, + 153953860000,0.314078181982040,L, + 155878283250,0.312669783830643,L, + 157802706500,0.311214059591293,L, + 159727129750,0.309712260961533,L, + 161651553000,0.308165371417999,L, + 163575976250,0.306574344635010,L, + 165500399500,0.304940193891525,L, + 167424822750,0.303263872861862,L, + 169349246000,0.301546275615692,L, + 171273669250,0.299788236618042,L, + 173198092500,0.297990649938583,L, + 175122515750,0.296154260635376,L, + 177046939000,0.294279873371124,L, + 178971362250,0.292368173599243,L, + 180895785500,0.290419936180115,L, + 182820208750,0.288435816764832,L, + 184744632000,0.286416560411453,L, + 186669055250,0.284362733364105,L, + 188593478500,0.282275050878525,L, + 190517901750,0.280154049396515,L, + 192442325000,0.278000295162201,L, + 194366748250,0.275814414024353,L, + 196291171500,0.273596912622452,L, + 198215594750,0.271348297595978,L, + 200140018000,0.269069194793701,L, + 202064441250,0.266760051250458,L, + 203988864500,0.264421254396439,L, + 205913287750,0.262053430080414,L, + 207837711000,0.259656906127930,L, + 209762134250,0.257232189178467,L, + 211686557500,0.254779726266861,L, + 213610980750,0.252299875020981,L, + 215535404000,0.249793082475662,L, + 217459827250,0.247259691357613,L, + 219384250500,0.244700163602829,L, + 221308673750,0.242114797234535,L, + 223233097000,0.239504009485245,L, + 225157520250,0.236868098378181,L, + 227081943500,0.234207451343536,L, + 229006366750,0.231522381305695,L, + 230930790000,0.228813201189041,L, + 232855213250,0.226080253720284,L, + 234779636500,0.223323822021484,L, + 236704059750,0.220544219017029,L, + 238628483000,0.217741742730141,L, + 240552906250,0.214916631579399,L, + 242477329500,0.212069228291512,L, + 244401752750,0.209199756383896,L, + 246326176000,0.206308513879776,L, + 248250599250,0.203395739197731,L, + 250175022500,0.200461685657501,L, + 252099445750,0.197506606578827,L, + 254023869000,0.194530740380287,L, + 255948292250,0.191534340381622,L, + 257872715500,0.188517600297928,L, + 259797138750,0.185480788350105,L, + 261721562000,0.182424113154411,L, + 263645985250,0.179347768425941,L, + 265570408500,0.176251992583275,L, + 267494831750,0.173136994242668,L, + 269419255000,0.170003056526184,L, + 271343678250,0.166850298643112,L, + 273268101500,0.163678929209709,L, + 275192524750,0.160489201545715,L, + 277116948000,0.157281279563904,L, + 279041371250,0.154055401682854,L, + 280965794500,0.150811761617661,L, + 282890217750,0.147550612688065,L, + 284814641000,0.144272089004517,L, + 286739064250,0.140976443886757,L, + 288663487500,0.137663945555687,L, + 290587910750,0.134334787726402,L, + 292512334000,0.130989223718643,L, + 294436757250,0.127627506852150,L, + 296361180500,0.124249927699566,L, + 298285603750,0.120856814086437,L, + 300210027000,0.117448523640633,L, + 302134450250,0.114025317132473,L, + 304058873500,0.110587708652020,L, + 305983296750,0.107136175036430,L, + 307907720000,0.103671260178089,L, + 309832143250,0.100193701684475,L, + 311756566500,0.096704222261906,L, + 313680989750,0.093203969299793,L, + 315605413000,0.089694134891033,L, + 317529836250,0.086176544427872,L, + 319454259500,0.082653425633907,L, + 321378682750,0.079128108918667,L, + 323303106000,0.075605392456055,L, + 325227529250,0.072092942893505,L, + 327151952500,0.068603955209255,L, + 329076375750,0.065164923667908,L, + 331000799000,0.061845839023590,L, + 332925222250,0.059166580438614,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.426508367061615 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508367061615,L, + 1924423250,0.426570504903793,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070289850235,L, + 7697693000,0.427509605884552,L, + 9622116250,0.428075730800629,L, + 11546539500,0.428768962621689,L, + 13470962750,0.429589241743088,L, + 15395386000,0.430536091327667,L, + 17319809250,0.431608855724335,L, + 19244232500,0.432806462049484,L, + 21168655750,0.434127360582352,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131047248840,L, + 26941925500,0.438808739185333,L, + 28866348750,0.440599322319031,L, + 30790772000,0.442499041557312,L, + 32715195250,0.444503575563431,L, + 34639618500,0.446607917547226,L, + 36564041750,0.448806732892990,L, + 38488465000,0.451094001531601,L, + 40412888250,0.453463166952133,L, + 42337311500,0.455907315015793,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989803075790,L, + 48110581250,0.463611871004105,L, + 50035004500,0.466276139020920,L, + 51959427750,0.468973726034164,L, + 53883851000,0.471695154905319,L, + 55808274250,0.474431008100510,L, + 57732697500,0.477171719074249,L, + 59657120750,0.479907691478729,L, + 61581544000,0.482629090547562,L, + 63505967250,0.485326677560806,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490613043308258,L, + 69279237000,0.493183970451355,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139560222626,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994869232178,L, + 80825776500,0.507099211215973,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003494262695,L, + 86599046250,0.512794077396393,L, + 88523469500,0.514471709728241,L, + 90447892750,0.516033113002777,L, + 92372316000,0.517475426197052,L, + 94296739250,0.518796384334564,L, + 96221162500,0.519993960857391,L, + 98145585750,0.521066725254059,L, + 100070009000,0.522013485431671,L, + 101994432250,0.522833883762360,L, + 103918855500,0.523527026176453,L, + 105843278750,0.524093270301819,L, + 107767702000,0.524532496929169,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525016963481903,L, + 117389818250,0.524788498878479,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523899972438812,L, + 123163088000,0.523249924182892,L, + 125087511250,0.522468686103821,L, + 127011934500,0.521560668945312,L, + 128936357750,0.520529806613922,L, + 130860781000,0.519380211830139,L, + 132785204250,0.518115222454071,L, + 134709627500,0.516738533973694,L, + 136634050750,0.515253126621246,L, + 138558474000,0.513662457466125,L, + 140482897250,0.511969149112701,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302118301392,L, + 148180590250,0.504225909709930,L, + 150105013500,0.502059936523438,L, + 152029436750,0.499806731939316,L, + 153953860000,0.497468233108521,L, + 155878283250,0.495046555995941,L, + 157802706500,0.492543607950211,L, + 159727129750,0.489961355924606,L, + 161651553000,0.487301498651505,L, + 163575976250,0.484565824270248,L, + 165500399500,0.481756091117859,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920557975769,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806939363480,L, + 175122515750,0.466649383306503,L, + 177046939000,0.463426470756531,L, + 178971362250,0.460139483213425,L, + 180895785500,0.456789672374725,L, + 182820208750,0.453378140926361,L, + 184744632000,0.449906140565872,L, + 186669055250,0.446374803781509,L, + 188593478500,0.442785143852234,L, + 190517901750,0.439138174057007,L, + 192442325000,0.435434937477112,L, + 194366748250,0.431676477193832,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997372388840,L, + 200140018000,0.420078605413437,L, + 202064441250,0.416108191013336,L, + 203988864500,0.412086874246597,L, + 205913287750,0.408015489578247,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725735187531,L, + 211686557500,0.395508885383606,L, + 213610980750,0.391244977712631,L, + 215535404000,0.386934727430344,L, + 217459827250,0.382578790187836,L, + 219384250500,0.378177881240845,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243413209915,L, + 225157520250,0.364711195230484,L, + 227081943500,0.360136419534683,L, + 229006366750,0.355519622564316,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162289381027,L, + 234779636500,0.341422826051712,L, + 236704059750,0.336643487215042,L, + 238628483000,0.331824839115143,L, + 240552906250,0.326967269182205,L, + 242477329500,0.322071373462677,L, + 244401752750,0.317137509584427,L, + 246326176000,0.312166243791580,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113026380539,L, + 252099445750,0.297032058238983,L, + 254023869000,0.291915237903595,L, + 255948292250,0.286763161420822,L, + 257872715500,0.281576097011566,L, + 259797138750,0.276354491710663,L, + 261721562000,0.271098762750626,L, + 263645985250,0.265809208154678,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130290985107,L, + 269419255000,0.249741733074188,L, + 271343678250,0.244320780038834,L, + 273268101500,0.238867834210396,L, + 275192524750,0.233383327722549,L, + 277116948000,0.227867558598518,L, + 279041371250,0.222320899367332,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136341094971,L, + 284814641000,0.205499187111855,L, + 286739064250,0.199832573533058,L, + 288663487500,0.194136977195740,L, + 290587910750,0.188412740826607,L, + 292512334000,0.182660266757011,L, + 294436757250,0.176880076527596,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238395333290,L, + 300210027000,0.159378007054329,L, + 302134450250,0.153492078185081,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646742820740,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709661006927,L, + 311756566500,0.123709797859192,L, + 313680989750,0.117691338062286,L, + 315605413000,0.111656449735165,L, + 317529836250,0.105608180165291,L, + 319454259500,0.099550418555737,L, + 321378682750,0.093488983809948,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392459571362,L, + 327151952500,0.075393438339233,L, + 329076375750,0.069480240345001,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166580438614,L, + 334849645500,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.426508396863937 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.426508396863937,L, + 1924423250,0.426570534706116,L, + 3848846500,0.426757544279099,L, + 5773269750,0.427070319652557,L, + 7697693000,0.427509576082230,L, + 9622116250,0.428075760602951,L, + 11546539500,0.428768992424011,L, + 13470962750,0.429589271545410,L, + 15395386000,0.430536091327667,L, + 17319809250,0.431608825922012,L, + 19244232500,0.432806402444839,L, + 21168655750,0.434127330780029,L, + 23093079000,0.435569673776627,L, + 25017502250,0.437131077051163,L, + 26941925500,0.438808709383011,L, + 28866348750,0.440599322319031,L, + 30790772000,0.442499071359634,L, + 32715195250,0.444503605365753,L, + 34639618500,0.446607947349548,L, + 36564041750,0.448806703090668,L, + 38488465000,0.451094001531601,L, + 40412888250,0.453463166952133,L, + 42337311500,0.455907315015793,L, + 44261734750,0.458418905735016,L, + 46186158000,0.460989803075790,L, + 48110581250,0.463611871004105,L, + 50035004500,0.466276168823242,L, + 51959427750,0.468973666429520,L, + 53883851000,0.471695125102997,L, + 55808274250,0.474431067705154,L, + 57732697500,0.477171748876572,L, + 59657120750,0.479907661676407,L, + 61581544000,0.482629060745239,L, + 63505967250,0.485326617956161,L, + 65430390500,0.487990945577621,L, + 67354813750,0.490612983703613,L, + 69279237000,0.493183940649033,L, + 71203660250,0.495695471763611,L, + 73128083500,0.498139619827271,L, + 75052506750,0.500508844852448,L, + 76976930000,0.502796053886414,L, + 78901353250,0.504994928836823,L, + 80825776500,0.507099211215973,L, + 82750199750,0.509103775024414,L, + 84674623000,0.511003494262695,L, + 86599046250,0.512794077396393,L, + 88523469500,0.514471769332886,L, + 90447892750,0.516033172607422,L, + 92372316000,0.517475426197052,L, + 94296739250,0.518796324729919,L, + 96221162500,0.519993960857391,L, + 98145585750,0.521066665649414,L, + 100070009000,0.522013545036316,L, + 101994432250,0.522833883762360,L, + 103918855500,0.523527026176453,L, + 105843278750,0.524093210697174,L, + 107767702000,0.524532437324524,L, + 109692125250,0.524845302104950,L, + 111616548500,0.525032341480255,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525016963481903,L, + 117389818250,0.524788498878479,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523899972438812,L, + 123163088000,0.523249924182892,L, + 125087511250,0.522468686103821,L, + 127011934500,0.521560609340668,L, + 128936357750,0.520529866218567,L, + 130860781000,0.519380152225494,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738474369049,L, + 136634050750,0.515253186225891,L, + 138558474000,0.513662397861481,L, + 140482897250,0.511969149112701,L, + 142407320500,0.510176301002502,L, + 144331743750,0.508286356925964,L, + 146256167000,0.506302118301392,L, + 148180590250,0.504225850105286,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806731939316,L, + 153953860000,0.497468262910843,L, + 155878283250,0.495046585798264,L, + 157802706500,0.492543607950211,L, + 159727129750,0.489961385726929,L, + 161651553000,0.487301468849182,L, + 163575976250,0.484565883874893,L, + 165500399500,0.481756091117859,L, + 167424822750,0.478873819112778,L, + 169349246000,0.475920528173447,L, + 171273669250,0.472897738218307,L, + 173198092500,0.469806909561157,L, + 175122515750,0.466649383306503,L, + 177046939000,0.463426470756531,L, + 178971362250,0.460139453411102,L, + 180895785500,0.456789642572403,L, + 182820208750,0.453378170728683,L, + 184744632000,0.449906140565872,L, + 186669055250,0.446374773979187,L, + 188593478500,0.442785114049911,L, + 190517901750,0.439138203859329,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676477193832,L, + 196291171500,0.427863657474518,L, + 198215594750,0.423997372388840,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108161211014,L, + 203988864500,0.412086874246597,L, + 205913287750,0.408015489578247,L, + 207837711000,0.403894901275635,L, + 209762134250,0.399725794792175,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391244977712631,L, + 215535404000,0.386934727430344,L, + 217459827250,0.382578819990158,L, + 219384250500,0.378177881240845,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243472814560,L, + 225157520250,0.364711195230484,L, + 227081943500,0.360136419534683,L, + 229006366750,0.355519652366638,L, + 230930790000,0.350861459970474,L, + 232855213250,0.346162319183350,L, + 234779636500,0.341422826051712,L, + 236704059750,0.336643517017365,L, + 238628483000,0.331824839115143,L, + 240552906250,0.326967239379883,L, + 242477329500,0.322071343660355,L, + 244401752750,0.317137539386749,L, + 246326176000,0.312166213989258,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113026380539,L, + 252099445750,0.297032028436661,L, + 254023869000,0.291915237903595,L, + 255948292250,0.286763161420822,L, + 257872715500,0.281576097011566,L, + 259797138750,0.276354461908340,L, + 261721562000,0.271098792552948,L, + 263645985250,0.265809237957001,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741733074188,L, + 271343678250,0.244320750236511,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383297920227,L, + 277116948000,0.227867543697357,L, + 279041371250,0.222320884466171,L, + 280965794500,0.216743722558022,L, + 282890217750,0.211136341094971,L, + 284814641000,0.205499202013016,L, + 286739064250,0.199832573533058,L, + 288663487500,0.194136992096901,L, + 290587910750,0.188412725925446,L, + 292512334000,0.182660251855850,L, + 294436757250,0.176880091428757,L, + 296361180500,0.171072572469711,L, + 298285603750,0.165238365530968,L, + 300210027000,0.159378007054329,L, + 302134450250,0.153492078185081,L, + 304058873500,0.147581413388252,L, + 305983296750,0.141646713018417,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709646105766,L, + 311756566500,0.123709797859192,L, + 313680989750,0.117691330611706,L, + 315605413000,0.111656457185745,L, + 317529836250,0.105608195066452,L, + 319454259500,0.099550426006317,L, + 321378682750,0.093488991260529,L, + 323303106000,0.087431907653809,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393438339233,L, + 329076375750,0.069480247795582,L, + 331000799000,0.063773386180401,L, + 332925222250,0.059166572988033,L, + 334849645500,0.318087399005890,L, + 344471761750,0.318087399005890,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_090" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.037070512771606 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.037070512771606,L, + 1924423250,0.037117958068848,L, + 3848846500,0.037261366844177,L, + 5773269750,0.037502527236938,L, + 7697693000,0.037842750549316,L, + 9622116250,0.038283228874207,L, + 11546539500,0.038824558258057,L, + 13470962750,0.039466619491577,L, + 15395386000,0.040208935737610,L, + 17319809250,0.041050314903259,L, + 19244232500,0.041988611221313,L, + 21168655750,0.043020725250244,L, + 23093079000,0.044142961502075,L, + 25017502250,0.045350432395935,L, + 26941925500,0.046637773513794,L, + 28866348750,0.047997713088989,L, + 30790772000,0.049422860145569,L, + 32715195250,0.050904989242554,L, + 34639618500,0.052434802055359,L, + 36564041750,0.054002761840820,L, + 38488465000,0.055598616600037,L, + 40412888250,0.057212233543396,L, + 42337311500,0.058833241462708,L, + 44261734750,0.060451626777649,L, + 46186158000,0.062057614326477,L, + 48110581250,0.063641786575317,L, + 50035004500,0.065195679664612,L, + 51959427750,0.066711187362671,L, + 53883851000,0.068181276321411,L, + 55808274250,0.069599747657776,L, + 57732697500,0.070960879325867,L, + 59657120750,0.072260260581970,L, + 61581544000,0.073494195938110,L, + 63505967250,0.074659109115601,L, + 65430390500,0.075753211975098,L, + 67354813750,0.076774358749390,L, + 69279237000,0.077721595764160,L, + 71203660250,0.078593969345093,L, + 73128083500,0.079391479492188,L, + 75052506750,0.080145001411438,L, + 76976930000,0.080883860588074,L, + 78901353250,0.081604003906250,L, + 80825776500,0.082302093505859,L, + 82750199750,0.082973480224609,L, + 84674623000,0.083613991737366,L, + 86599046250,0.084218740463257,L, + 88523469500,0.084783554077148,L, + 90447892750,0.085303902626038,L, + 92372316000,0.085776925086975,L, + 94296739250,0.086200118064880,L, + 96221162500,0.086572289466858,L, + 98145585750,0.086893439292908,L, + 100070009000,0.087164759635925,L, + 101994432250,0.087388515472412,L, + 103918855500,0.087567806243896,L, + 105843278750,0.087706089019775,L, + 107767702000,0.087807178497314,L, + 109692125250,0.087874889373779,L, + 111616548500,0.087912917137146,L, + 113540971750,0.087924957275391,L, + 115465395000,0.087909102439880,L, + 117389818250,0.087862849235535,L, + 119314241500,0.087787032127380,L, + 121238664750,0.087683081626892,L, + 123163088000,0.087552070617676,L, + 125087511250,0.087394833564758,L, + 127011934500,0.087212204933167,L, + 128936357750,0.087005496025085,L, + 130860781000,0.086775183677673,L, + 132785204250,0.086522459983826,L, + 134709627500,0.086247444152832,L, + 136634050750,0.085951209068298,L, + 138558474000,0.085634589195251,L, + 140482897250,0.085297703742981,L, + 142407320500,0.084941625595093,L, + 144331743750,0.084566831588745,L, + 146256167000,0.084173560142517,L, + 148180590250,0.083762645721436,L, + 150105013500,0.083334565162659,L, + 152029436750,0.082889437675476,L, + 153953860000,0.082428216934204,L, + 155878283250,0.081950783729553,L, + 157802706500,0.081457972526550,L, + 159727129750,0.080950021743774,L, + 161651553000,0.080427289009094,L, + 163575976250,0.079890131950378,L, + 165500399500,0.079338669776917,L, + 167424822750,0.078773617744446,L, + 169349246000,0.078194975852966,L, + 171273669250,0.077603340148926,L, + 173198092500,0.076998829841614,L, + 175122515750,0.076381802558899,L, + 177046939000,0.075752139091492,L, + 178971362250,0.075110793113708,L, + 180895785500,0.074457406997681,L, + 182820208750,0.073792338371277,L, + 184744632000,0.073115944862366,L, + 186669055250,0.072428584098816,L, + 188593478500,0.071730136871338,L, + 190517901750,0.071020960807800,L, + 192442325000,0.070301413536072,L, + 194366748250,0.069571375846863,L, + 196291171500,0.068831205368042,L, + 198215594750,0.068081140518188,L, + 200140018000,0.067321181297302,L, + 202064441250,0.066551804542542,L, + 203988864500,0.065772771835327,L, + 205913287750,0.064984440803528,L, + 207837711000,0.064186930656433,L, + 209762134250,0.063380479812622,L, + 211686557500,0.062565088272095,L, + 213610980750,0.061740875244141,L, + 215535404000,0.060908198356628,L, + 217459827250,0.060067176818848,L, + 219384250500,0.059217572212219,L, + 221308673750,0.058359980583191,L, + 223233097000,0.057494163513184,L, + 225157520250,0.056620478630066,L, + 227081943500,0.055738806724548,L, + 229006366750,0.054849386215210,L, + 230930790000,0.053952336311340,L, + 232855213250,0.053047776222229,L, + 234779636500,0.052135825157166,L, + 236704059750,0.051216483116150,L, + 238628483000,0.050289869308472,L, + 240552906250,0.049356222152710,L, + 242477329500,0.048415541648865,L, + 244401752750,0.047467827796936,L, + 246326176000,0.046513080596924,L, + 248250599250,0.045551896095276,L, + 250175022500,0.044583797454834,L, + 252099445750,0.043609261512756,L, + 254023869000,0.042628049850464,L, + 255948292250,0.041640520095825,L, + 257872715500,0.040646672248840,L, + 259797138750,0.039646744728088,L, + 261721562000,0.038640379905701,L, + 263645985250,0.037628054618835,L, + 265570408500,0.036609888076782,L, + 267494831750,0.035585641860962,L, + 269419255000,0.034555792808533,L, + 271343678250,0.033520221710205,L, + 273268101500,0.032479166984558,L, + 275192524750,0.031432628631592,L, + 277116948000,0.030380964279175,L, + 279041371250,0.029324054718018,L, + 280965794500,0.028262138366699,L, + 282890217750,0.027195572853088,L, + 284814641000,0.026124477386475,L, + 286739064250,0.025049209594727,L, + 288663487500,0.023970127105713,L, + 290587910750,0.022887349128723,L, + 292512334000,0.021802067756653,L, + 294436757250,0.020714640617371,L, + 296361180500,0.019626140594482,L, + 298285603750,0.018538355827332,L, + 300210027000,0.017453908920288,L, + 302134450250,0.016376852989197,L, + 304058873500,0.015316367149353,L, + 305983296750,0.014295339584351,L, + 307907720000,0.013481736183167,L, + 344471761750,0.013481736183167,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.708404541015625 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.708404541015625,L, + 1924423250,0.708638548851013,L, + 3848846500,0.709349393844604,L, + 5773269750,0.710548400878906,L, + 7697693000,0.712247133255005,L, + 9622116250,0.714454770088196,L, + 11546539500,0.717178583145142,L, + 13470962750,0.720424175262451,L, + 15395386000,0.724193930625916,L, + 17319809250,0.728487610816956,L, + 19244232500,0.733300805091858,L, + 21168655750,0.738626122474670,L, + 23093079000,0.744451284408569,L, + 25017502250,0.750759363174438,L, + 26941925500,0.757529497146606,L, + 28866348750,0.764735460281372,L, + 30790772000,0.772346377372742,L, + 32715195250,0.780327558517456,L, + 34639618500,0.788640022277832,L, + 36564041750,0.797241330146790,L, + 38488465000,0.806087017059326,L, + 40412888250,0.815129876136780,L, + 42337311500,0.824322700500488,L, + 44261734750,0.833617687225342,L, + 46186158000,0.842968106269836,L, + 48110581250,0.852328538894653,L, + 50035004500,0.861655712127686,L, + 51959427750,0.870909571647644,L, + 53883851000,0.880053520202637,L, + 55808274250,0.889053344726562,L, + 57732697500,0.897879838943481,L, + 59657120750,0.906506299972534,L, + 61581544000,0.914910197257996,L, + 63505967250,0.923073053359985,L, + 65430390500,0.930978298187256,L, + 67354813750,0.938613533973694,L, + 69279237000,0.945968508720398,L, + 71203660250,0.953036069869995,L, + 73128083500,0.959810376167297,L, + 75052506750,0.966705679893494,L, + 76976930000,0.974127650260925,L, + 78901353250,0.982049226760864,L, + 80825776500,0.990428447723389,L, + 82750199750,0.999204039573669,L, + 84674623000,1.008293867111206,L, + 86599046250,1.017595052719116,L, + 88523469500,1.026982665061951,L, + 90447892750,1.036315441131592,L, + 92372316000,1.045439600944519,L, + 94296739250,1.054199457168579,L, + 96221162500,1.062444090843201,L, + 98145585750,1.070038557052612,L, + 100070009000,1.076868772506714,L, + 101994432250,1.082848310470581,L, + 103918855500,1.087917566299438,L, + 105843278750,1.092044234275818,L, + 107767702000,1.095218658447266,L, + 109692125250,1.097450375556946,L, + 111616548500,1.098763465881348,L, + 113540971750,1.099192380905151,L, + 115465395000,1.098993420600891,L, + 117389818250,1.098407864570618,L, + 119314241500,1.097451090812683,L, + 121238664750,1.096137404441833,L, + 123163088000,1.094480514526367,L, + 125087511250,1.092493414878845,L, + 127011934500,1.090187549591064,L, + 128936357750,1.087574243545532,L, + 130860781000,1.084664225578308,L, + 132785204250,1.081467509269714,L, + 134709627500,1.077993154525757,L, + 136634050750,1.074250221252441,L, + 138558474000,1.070247054100037,L, + 140482897250,1.065991640090942,L, + 142407320500,1.061491250991821,L, + 144331743750,1.056753277778625,L, + 146256167000,1.051784515380859,L, + 148180590250,1.046591401100159,L, + 150105013500,1.041179776191711,L, + 152029436750,1.035556316375732,L, + 153953860000,1.029725551605225,L, + 155878283250,1.023693323135376,L, + 157802706500,1.017464756965637,L, + 159727129750,1.011044859886169,L, + 161651553000,1.004437923431396,L, + 163575976250,0.997648715972900,L, + 165500399500,0.990681648254395,L, + 167424822750,0.983540296554565,L, + 169349246000,0.976228713989258,L, + 171273669250,0.968751072883606,L, + 173198092500,0.961110949516296,L, + 175122515750,0.953311443328857,L, + 177046939000,0.945356011390686,L, + 178971362250,0.937248349189758,L, + 180895785500,0.928990960121155,L, + 182820208750,0.920587182044983,L, + 184744632000,0.912039637565613,L, + 186669055250,0.903351664543152,L, + 188593478500,0.894525170326233,L, + 190517901750,0.885563254356384,L, + 192442325000,0.876468420028687,L, + 194366748250,0.867242813110352,L, + 196291171500,0.857889056205750,L, + 198215594750,0.848409414291382,L, + 200140018000,0.838805794715881,L, + 202064441250,0.829080343246460,L, + 203988864500,0.819235444068909,L, + 205913287750,0.809272885322571,L, + 207837711000,0.799194455146790,L, + 209762134250,0.789002180099487,L, + 211686557500,0.778697848320007,L, + 213610980750,0.768283128738403,L, + 215535404000,0.757759571075439,L, + 217459827250,0.747129559516907,L, + 219384250500,0.736393809318542,L, + 221308673750,0.725554227828979,L, + 223233097000,0.714612603187561,L, + 225157520250,0.703569889068604,L, + 227081943500,0.692427992820740,L, + 229006366750,0.681188225746155,L, + 230930790000,0.669851660728455,L, + 232855213250,0.658419847488403,L, + 234779636500,0.646894216537476,L, + 236704059750,0.635275721549988,L, + 238628483000,0.623565793037415,L, + 240552906250,0.611765742301941,L, + 242477329500,0.599876523017883,L, + 244401752750,0.587899446487427,L, + 246326176000,0.575835824012756,L, + 248250599250,0.563686490058899,L, + 250175022500,0.551452755928040,L, + 252099445750,0.539135694503784,L, + 254023869000,0.526736378669739,L, + 255948292250,0.514256119728088,L, + 257872715500,0.501695752143860,L, + 259797138750,0.489056587219238,L, + 261721562000,0.476339697837830,L, + 263645985250,0.463546395301819,L, + 265570408500,0.450677633285522,L, + 267494831750,0.437734723091125,L, + 269419255000,0.424719095230103,L, + 271343678250,0.411631941795349,L, + 273268101500,0.398474931716919,L, + 275192524750,0.385249257087708,L, + 277116948000,0.371957063674927,L, + 279041371250,0.358600139617920,L, + 280965794500,0.345180869102478,L, + 282890217750,0.331701517105103,L, + 284814641000,0.318165183067322,L, + 286739064250,0.304575562477112,L, + 288663487500,0.290937185287476,L, + 290587910750,0.277255654335022,L, + 292512334000,0.263538241386414,L, + 294436757250,0.249794840812683,L, + 296361180500,0.236039578914642,L, + 298285603750,0.222292542457581,L, + 300210027000,0.208586096763611,L, + 302134450250,0.194976091384888,L, + 304058873500,0.181573390960693,L, + 305983296750,0.168670356273651,L, + 307907720000,0.158387839794159,L, + 309832143250,0.645345807075500,L, + 344471761750,0.645345807075500,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 44.316787674782788 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,44.316787674782788,L, + 1924423250,44.334467619449342,L, + 3848846500,44.387749925164535,L, + 5773269750,44.476962441008524,L, + 7697693000,44.602255431143064,L, + 9622116250,44.763598159716871,L, + 11546539500,44.960741324825250,L, + 13470962750,45.193196567942543,L, + 15395386000,45.460215983354637,L, + 17319809250,45.760710155888916,L, + 19244232500,46.093302802427630,L, + 21168655750,46.456241979448656,L, + 23093079000,46.847413743403898,L, + 25017502250,47.264321660151708,L, + 26941925500,47.704144861564878,L, + 28866348750,48.163669743638920,L, + 30790772000,48.639392419329624,L, + 32715195250,49.127508473269295,L, + 34639618500,49.624011999509733,L, + 36564041750,50.124767318508503,L, + 38488465000,50.625508977128924,L, + 40412888250,51.122029578842287,L, + 42337311500,51.610142217687383,L, + 44261734750,52.085854648094326,L, + 46186158000,52.545382945262958,L, + 48110581250,52.985199316486955,L, + 50035004500,53.402120893613102,L, + 51959427750,53.793292657568344,L, + 53883851000,54.156221589305616,L, + 55808274250,54.488814235844330,L, + 57732697500,54.789311823473192,L, + 59657120750,55.056320993601531,L, + 61581544000,55.288793312191750,L, + 63505967250,55.485933062205547,L, + 65430390500,55.647272375684771,L, + 67354813750,55.772561950724722,L, + 69279237000,55.861774466568711,L, + 71203660250,55.915063602473076,L, + 73128083500,55.932736716950458,L, + 75052506750,55.855948315206703,L, + 76976930000,55.623561373981104,L, + 78901353250,55.234203025250501,L, + 80825776500,54.689218816281382,L, + 82750199750,53.993550388938246,L, + 84674623000,53.156384347654736,L, + 86599046250,52.191777221742733,L, + 88523469500,51.118955993715787,L, + 90447892750,49.962109778519462,L, + 92372316000,48.749645332911811,L, + 94296739250,47.512892734615619,L, + 96221162500,46.284326118039687,L, + 98145585750,45.095658051500315,L, + 100070009000,43.976015876712999,L, + 101994432250,42.950602991715044,L, + 103918855500,42.039838247030175,L, + 105843278750,41.259065662628799,L, + 107767702000,40.618813975116481,L, + 109692125250,40.125278166070409,L, + 111616548500,39.781074197942694,L, + 113540971750,39.585915202788200,L, + 115465395000,39.466141005503026,L, + 117389818250,39.349337940506807,L, + 119314241500,39.235393309678230,L, + 121238664750,39.124190999801414,L, + 123163088000,39.015635388227970,L, + 125087511250,38.909613776836601,L, + 127011934500,38.806047618451849,L, + 128936357750,38.704854950803671,L, + 130860781000,38.605943566338269,L, + 132785204250,38.509241748069371,L, + 134709627500,38.414684609199853,L, + 136634050750,38.322197017648840,L, + 138558474000,38.231720916808399,L, + 140482897250,38.143191419881404,L, + 142407320500,38.056553885354504,L, + 144331743750,37.971753671714332,L, + 146256167000,37.888736137447530,L, + 148180590250,37.807463716513666,L, + 150105013500,37.727871522115620,L, + 152029436750,37.649925403307549,L, + 153953860000,37.573577548765250,L, + 155878283250,37.498797222637478,L, + 157802706500,37.425540028694613,L, + 159727129750,37.353768400896222,L, + 161651553000,37.283444773201872,L, + 163575976250,37.214545239949466,L, + 165500399500,37.147018574720228,L, + 167424822750,37.080857947324994,L, + 169349246000,37.016018961534158,L, + 171273669250,36.952474296591035,L, + 173198092500,36.890196631738952,L, + 175122515750,36.829162061315806,L, + 177046939000,36.769350094754088,L, + 178971362250,36.710719750918784,L, + 180895785500,36.653274444904476,L, + 182820208750,36.596966365386969,L, + 184744632000,36.541778436893345,L, + 186669055250,36.487717489612770,L, + 188593478500,36.434728882031891,L, + 190517901750,36.382795538677769,L, + 192442325000,36.331924289739590,L, + 194366748250,36.282080984271495,L, + 196291171500,36.233258792084314,L, + 198215594750,36.185409901853859,L, + 200140018000,36.138558219242221,L, + 202064441250,36.092676423492726,L, + 203988864500,36.047733778754107,L, + 205913287750,36.003733700120947,L, + 207837711000,35.960652281931154,L, + 209762134250,35.918482693995557,L, + 211686557500,35.877204445746642,L, + 213610980750,35.836810706995244,L, + 215535404000,35.797301477741364,L, + 217459827250,35.758642607039150,L, + 219384250500,35.720837509983184,L, + 221308673750,35.683869111100542,L, + 223233097000,35.647727165107469,L, + 225157520250,35.612411672003972,L, + 227081943500,35.577895311033359,L, + 229006366750,35.544195157668568,L, + 230930790000,35.511277060963735,L, + 232855213250,35.479151266202628,L, + 234779636500,35.447797282817731,L, + 236704059750,35.417211695714457,L, + 238628483000,35.387391089798221,L, + 240552906250,35.358314974501518,L, + 242477329500,35.330003840391861,L, + 244401752750,35.302426951617974,L, + 246326176000,35.275587723274448,L, + 248250599250,35.249475910077521,L, + 250175022500,35.224101757310962,L, + 252099445750,35.199444774407254,L, + 254023869000,35.175504961366393,L, + 255948292250,35.152278903093794,L, + 257872715500,35.129759769400295,L, + 259797138750,35.107950975380476,L, + 261721562000,35.086849105939756,L, + 263645985250,35.066457576172709,L, + 265570408500,35.046759310606419,L, + 267494831750,35.027767969619227,L, + 269419255000,35.009476723021962,L, + 271343678250,34.991882155720035,L, + 273268101500,34.974994512997199,L, + 275192524750,34.958806964664291,L, + 277116948000,34.943326340910481,L, + 279041371250,34.928562887019524,L, + 280965794500,34.914506357707651,L, + 282890217750,34.901180658636981,L, + 284814641000,34.888575544523739,L, + 286739064250,34.876714921030029,L, + 288663487500,34.865605618345022,L, + 290587910750,34.855261296847047,L, + 292512334000,34.845688786725290,L, + 294436757250,34.836929069114760,L, + 296361180500,34.829002634582970,L, + 298285603750,34.821947049170362,L, + 300210027000,34.815810124201114,L, + 302134450250,34.810653331377758,L, + 304058873500,34.806592783916194,L, + 305983296750,34.803785576167321,L, + 307907720000,34.802665425143438,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -10.500350339368996 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-10.500350339368996,L, + 1924423250,-10.511124109011028,L, + 3848846500,-10.543745946260609,L, + 5773269750,-10.598606025674073,L, + 7697693000,-10.676032196331580,L, + 9622116250,-10.776256684664910,L, + 11546539500,-10.899410118041940,L, + 13470962750,-11.045504449293718,L, + 15395386000,-11.214399659542259,L, + 17319809250,-11.405804611974190,L, + 19244232500,-11.619243754668551,L, + 21168655750,-11.854050290407619,L, + 23093079000,-12.109348247430342,L, + 25017502250,-12.384046503016814,L, + 26941925500,-12.676834514620037,L, + 28866348750,-12.986185734960516,L, + 30790772000,-13.310373833725537,L, + 32715195250,-13.647481235305616,L, + 34639618500,-13.995432415966722,L, + 36564041750,-14.352025493475175,L, + 38488465000,-14.714976623327253,L, + 40412888250,-15.081935366674831,L, + 42337311500,-15.450574336558230,L, + 44261734750,-15.818576391301525,L, + 46186158000,-16.183726842066346,L, + 48110581250,-16.543910037757279,L, + 50035004500,-16.897162298987954,L, + 51959427750,-17.241677040722902,L, + 53883851000,-17.575837215676128,L, + 55808274250,-17.898208484121923,L, + 57732697500,-18.207556289367819,L, + 59657120750,-18.502821952092461,L, + 61581544000,-18.783134623176675,L, + 63505967250,-19.047806161061580,L, + 65430390500,-19.296279905329826,L, + 67354813750,-19.528168242746009,L, + 69279237000,-19.743204795932506,L, + 71203660250,-19.941220517707354,L, + 73128083500,-20.122172719388242,L, + 75052506750,-20.293077712800056,L, + 76976930000,-20.460478819167655,L, + 78901353250,-20.623595689378373,L, + 80825776500,-20.781530153556353,L, + 82750199750,-20.933337938048837,L, + 84674623000,-21.078001344669499,L, + 86599046250,-21.214485599759083,L, + 88523469500,-21.341795203246061,L, + 90447892750,-21.459016617328942,L, + 92372316000,-21.565434379692174,L, + 94296739250,-21.660529395958832,L, + 96221162500,-21.744059194413385,L, + 98145585750,-21.816056218454385,L, + 100070009000,-21.876819288858023,L, + 101994432250,-21.926872622643096,L, + 103918855500,-21.966924851935993,L, + 105843278750,-21.997771693775022,L, + 107767702000,-22.020289119921227,L, + 109692125250,-22.035353102135669,L, + 111616548500,-22.043812291422718,L, + 113540971750,-22.046462404820680,L, + 115465395000,-22.042885093242891,L, + 117389818250,-22.032358064184621,L, + 119314241500,-22.015154525212676,L, + 121238664750,-21.991540853704684,L, + 123163088000,-21.961750983639718,L, + 125087511250,-21.926023971638724,L, + 127011934500,-21.884568138471391,L, + 128936357750,-21.837588389812819,L, + 130860781000,-21.785274263412475,L, + 132785204250,-21.727799929094193,L, + 134709627500,-21.665337849134513,L, + 136634050750,-21.598048532978940,L, + 138558474000,-21.526075414600033,L, + 140482897250,-21.449570465706831,L, + 142407320500,-21.368665167440852,L, + 144331743750,-21.283485878301747,L, + 146256167000,-21.194155541694570,L, + 148180590250,-21.100791978382507,L, + 150105013500,-21.003504471392276,L, + 152029436750,-20.902395473561430,L, + 153953860000,-20.797574267916687,L, + 155878283250,-20.689126231822673,L, + 157802706500,-20.577152110569646,L, + 159727129750,-20.461732158880352,L, + 161651553000,-20.342951754119415,L, + 163575976250,-20.220894566104171,L, + 165500399500,-20.095639142010072,L, + 167424822750,-19.967250368634232,L, + 169349246000,-19.835803378057527,L, + 171273669250,-19.701371594813530,L, + 173198092500,-19.564013075510186,L, + 175122515750,-19.423789291850024,L, + 177046939000,-19.280768545724747,L, + 178971362250,-19.135007186195008,L, + 180895785500,-18.986551317037701,L, + 182820208750,-18.835470947691821,L, + 184744632000,-18.681801936650512,L, + 186669055250,-18.525602340521715,L, + 188593478500,-18.366921678176915,L, + 190517901750,-18.205802638298422,L, + 192442325000,-18.042296447305013,L, + 194366748250,-17.876438963689832,L, + 196291171500,-17.708274583682481,L, + 198215594750,-17.537845995965277,L, + 200140018000,-17.365189059031358,L, + 202064441250,-17.190346461563038,L, + 203988864500,-17.013354062053459,L, + 205913287750,-16.834240888806594,L, + 207837711000,-16.653053045599343,L, + 209762134250,-16.469812730546504,L, + 211686557500,-16.284560924783097,L, + 213610980750,-16.097323241518517,L, + 215535404000,-15.908133831698603,L, + 217459827250,-15.717021723627337,L, + 219384250500,-15.524014238061394,L, + 221308673750,-15.329138695757454,L, + 223233097000,-15.132425832566785,L, + 225157520250,-14.933899554151481,L, + 227081943500,-14.733592303910097,L, + 229006366750,-14.531519449768266,L, + 230930790000,-14.327708312482672,L, + 232855213250,-14.122187920357282,L, + 234779636500,-13.914974495091380,L, + 236704059750,-13.706097918762582,L, + 238628483000,-13.495576974391104,L, + 240552906250,-13.283429591223522,L, + 242477329500,-13.069685651337450,L, + 244401752750,-12.854361376432168,L, + 246326176000,-12.637477257075187,L, + 248250599250,-12.419052930060371,L, + 250175022500,-12.199114862370752,L, + 252099445750,-11.977676714384673,L, + 254023869000,-11.754763245537871,L, + 255948292250,-11.530390677529628,L, + 257872715500,-11.304576085832869,L, + 259797138750,-11.077349352525211,L, + 261721562000,-10.848723284211349,L, + 263645985250,-10.618721786553378,L, + 265570408500,-10.387367911439746,L, + 267494831750,-10.154676173022439,L, + 269419255000,-9.920679868473663,L, + 271343678250,-9.685395219492694,L, + 273268101500,-9.448855523251737,L, + 275192524750,-9.211083831639241,L, + 277116948000,-8.972114295601056,L, + 279041371250,-8.731983627403970,L, + 280965794500,-8.490728539314773,L, + 282890217750,-8.248395135110361,L, + 284814641000,-8.005035494983156,L, + 286739064250,-7.760721335919444,L, + 288663487500,-7.515528643773740,L, + 290587910750,-7.269557310062655,L, + 292512334000,-7.022945219230060,L, + 294436757250,-6.775866114212965,L, + 296361180500,-6.528571858237016,L, + 298285603750,-6.281425305101868,L, + 300210027000,-6.035009582207910,L, + 302134450250,-5.790324031608078,L, + 304058873500,-5.549368191181891,L, + 305983296750,-5.317397891495666,L, + 307907720000,-5.132534125854483,L, + 309832143250,-5.132533272080837,L, + 344471761750,-5.132533272080837,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 25.061422310128574 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,25.061422310128574,L, + 1924423250,25.059267385445438,L, + 3848846500,25.052778705733935,L, + 5773269750,25.041913582311750,L, + 7697693000,25.026658354800549,L, + 9622116250,25.007004485463867,L, + 11546539500,24.982994662984012,L, + 13470962750,24.954683528874352,L, + 15395386000,24.922163290688676,L, + 17319809250,24.885567137115800,L, + 19244232500,24.845060700243096,L, + 21168655750,24.800860838576714,L, + 23093079000,24.753218561568652,L, + 25017502250,24.702444642826144,L, + 26941925500,24.648877176713103,L, + 28866348750,24.592908899106806,L, + 30790772000,24.534976942114135,L, + 32715195250,24.475525268031134,L, + 34639618500,24.415055895761807,L, + 36564041750,24.354069136662851,L, + 38488465000,24.293085792658481,L, + 40412888250,24.232613005294567,L, + 42337311500,24.173169868948030,L, + 44261734750,24.115229374218895,L, + 46186158000,24.059264511707184,L, + 48110581250,24.005697045594143,L, + 50035004500,23.954924834398927,L, + 51959427750,23.907285972485450,L, + 53883851000,23.863080988177188,L, + 55808274250,23.822574551304488,L, + 57732697500,23.785976690184320,L, + 59657120750,23.753458159545936,L, + 61581544000,23.725143610341689,L, + 63505967250,23.701138910503712,L, + 65430390500,23.681483333619738,L, + 67354813750,23.666229813655828,L, + 69279237000,23.655357860044475,L, + 71203660250,23.648872595427559,L, + 73128083500,23.646722793386299,L, + 75052506750,23.691460532449817,L, + 76976930000,23.826664127070025,L, + 78901353250,24.052845841434674,L, + 80825776500,24.368803562249841,L, + 82750199750,24.771250260977460,L, + 84674623000,25.254323927762382,L, + 86599046250,25.809288750656165,L, + 88523469500,26.424379728813488,L, + 90447892750,27.084920493255304,L, + 92372316000,27.773830448414724,L, + 94296739250,28.472382923134898,L, + 96221162500,29.161287755652442,L, + 98145585750,29.821831935188840,L, + 100070009000,30.436917790704285,L, + 101994432250,30.991880906050778,L, + 103918855500,31.474959695477576,L, + 105843278750,31.877397856468733,L, + 107767702000,32.193365822567657,L, + 109692125250,32.419544121837717,L, + 111616548500,32.554751131552507,L, + 113540971750,32.599488870616028,L, + 115465395000,32.598139908254950,L, + 117389818250,32.594168153252596,L, + 119314241500,32.587676058446512,L, + 121238664750,32.578772906863414,L, + 123163088000,32.567533830584168,L, + 125087511250,32.554054452257169,L, + 127011934500,32.538426979436203,L, + 128936357750,32.520709468729216,L, + 130860781000,32.500973637122492,L, + 132785204250,32.479298031791487,L, + 134709627500,32.455744124438731,L, + 136634050750,32.430356311293828,L, + 138558474000,32.403209724437652,L, + 140482897250,32.374362420478150,L, + 142407320500,32.343845135266577,L, + 144331743750,32.311719340505462,L, + 146256167000,32.278022602235254,L, + 148180590250,32.242812977063892,L, + 150105013500,32.206121200842638,L, + 152029436750,32.167984839611925,L, + 153953860000,32.128444874506776,L, + 155878283250,32.087545701756795,L, + 157802706500,32.045311227024087,L, + 159727129750,32.001779016349069,L, + 161651553000,31.956986635772193,L, + 163575976250,31.910944330577202,L, + 165500399500,31.863699912088293,L, + 167424822750,31.815280701062143,L, + 169349246000,31.765700357877090,L, + 171273669250,31.714996448573572,L, + 173198092500,31.663189463719103,L, + 175122515750,31.610306724070355,L, + 177046939000,31.556361890005672,L, + 178971362250,31.501382282281732,L, + 180895785500,31.445391806560632,L, + 182820208750,31.388414368504467,L, + 184744632000,31.330449968113239,L, + 186669055250,31.271536171427378,L, + 188593478500,31.211693469014396,L, + 190517901750,31.150918445779713,L, + 192442325000,31.089252082858341,L, + 194366748250,31.026697795344866,L, + 196291171500,30.963272658712221,L, + 198215594750,30.898990333338737,L, + 200140018000,30.833874724886513,L, + 202064441250,30.767925833355552,L, + 203988864500,30.701170979502528,L, + 205913287750,30.633616993516615,L, + 207837711000,30.565280950870733,L, + 209762134250,30.496173096848644,L, + 211686557500,30.426296846544929,L, + 213610980750,30.355676105621683,L, + 215535404000,30.284324534457248,L, + 217459827250,30.212238717957039,L, + 219384250500,30.139442561783145,L, + 221308673750,30.065942896124746,L, + 223233097000,29.991753381360173,L, + 225157520250,29.916877432584016,L, + 227081943500,29.841325295080029,L, + 229006366750,29.765110629226552,L, + 230930790000,29.688243680307338,L, + 232855213250,29.610724448322390,L, + 234779636500,29.532576838933799,L, + 236704059750,29.453794021952401,L, + 238628483000,29.374386242661949,L, + 240552906250,29.294373991629946,L, + 242477329500,29.213760683950987,L, + 244401752750,29.132546319625067,L, + 246326176000,29.050744559030527,L, + 248250599250,28.968362232356537,L, + 250175022500,28.885409584886851,L, + 252099445750,28.801890031716056,L, + 254023869000,28.717810403033319,L, + 255948292250,28.633189481858860,L, + 257872715500,28.548022145550803,L, + 259797138750,28.462318639392898,L, + 261721562000,28.376087501121610,L, + 263645985250,28.289335560926112,L, + 265570408500,28.202079894279322,L, + 267494831750,28.114315378539370,L, + 269419255000,28.026064211821055,L, + 271343678250,27.937319563935208,L, + 273268101500,27.848108755638506,L, + 275192524750,27.758428371836366,L, + 277116948000,27.668298903096300,L, + 279041371250,27.577728887154770,L, + 280965794500,27.486733691937406,L, + 282890217750,27.395335515559012,L, + 284814641000,27.303551433492512,L, + 286739064250,27.211400228758123,L, + 288663487500,27.118926297585453,L, + 290587910750,27.026148422994719,L, + 292512334000,26.933138321972205,L, + 294436757250,26.839952343578563,L, + 296361180500,26.746679280273003,L, + 298285603750,26.653462566028093,L, + 300210027000,26.560525889539157,L, + 302134450250,26.468236373474078,L, + 304058873500,26.377358999019897,L, + 305983296750,26.289865983299450,L, + 307907720000,26.220141704704769,L, + 344471761750,26.220141704704769,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.457654863595963 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.457654863595963,L, + 1924423250,0.457997173070908,L, + 3848846500,0.459029167890549,L, + 5773269750,0.460756927728653,L, + 7697693000,0.463183492422104,L, + 9622116250,0.466308206319809,L, + 11546539500,0.470126301050186,L, + 13470962750,0.474628448486328,L, + 15395386000,0.479799747467041,L, + 17319809250,0.485619664192200,L, + 19244232500,0.492060989141464,L, + 21168655750,0.499090135097504,L, + 23093079000,0.506665945053101,L, + 25017502250,0.514740526676178,L, + 26941925500,0.523258507251740,L, + 28866348750,0.532158374786377,L, + 30790772000,0.541371583938599,L, + 32715195250,0.550825059413910,L, + 34639618500,0.560441136360168,L, + 36564041750,0.570139348506927,L, + 38488465000,0.579837381839752,L, + 40412888250,0.589453577995300,L, + 42337311500,0.598906934261322,L, + 44261734750,0.608120262622833,L, + 46186158000,0.617020070552826,L, + 48110581250,0.625538170337677,L, + 50035004500,0.633612632751465,L, + 51959427750,0.641188502311707,L, + 53883851000,0.648217618465424,L, + 55808274250,0.654659032821655,L, + 57732697500,0.660478830337524,L, + 59657120750,0.665650069713593,L, + 61581544000,0.670152366161346,L, + 63505967250,0.673970341682434,L, + 65430390500,0.677095174789429,L, + 67354813750,0.679521679878235,L, + 69279237000,0.681249439716339,L, + 71203660250,0.682281494140625,L, + 73128083500,0.682623624801636,L, + 75052506750,0.679885864257812,L, + 76976930000,0.671603858470917,L, + 78901353250,0.657734870910645,L, + 80825776500,0.638336002826691,L, + 82750199750,0.613591670989990,L, + 84674623000,0.583840250968933,L, + 86599046250,0.549594640731812,L, + 88523469500,0.511552035808563,L, + 90447892750,0.470587283372879,L, + 92372316000,0.427724719047546,L, + 94296739250,0.384091109037399,L, + 96221162500,0.340852260589600,L, + 98145585750,0.299143612384796,L, + 100070009000,0.260006994009018,L, + 101994432250,0.224340260028839,L, + 103918855500,0.192868635058403,L, + 105843278750,0.166135370731354,L, + 107767702000,0.144509673118591,L, + 109692125250,0.128206312656403,L, + 111616548500,0.117310993373394,L, + 113540971750,0.111806564033031,L, + 115465395000,0.109007231891155,L, + 117389818250,0.106277406215668,L, + 119314241500,0.103614322841167,L, + 121238664750,0.101015359163284,L, + 123163088000,0.098478145897388,L, + 125087511250,0.096000388264656,L, + 127011934500,0.093579933047295,L, + 128936357750,0.091214835643768,L, + 130860781000,0.088903196156025,L, + 132785204250,0.086643241345882,L, + 134709627500,0.084433294832706,L, + 136634050750,0.082271784543991,L, + 138558474000,0.080157235264778,L, + 140482897250,0.078088194131851,L, + 142407320500,0.076063372194767,L, + 144331743750,0.074081450700760,L, + 146256167000,0.072141267359257,L, + 148180590250,0.070241652429104,L, + 150105013500,0.068381503224373,L, + 152029436750,0.066559806466103,L, + 153953860000,0.064775548875332,L, + 155878283250,0.063027799129486,L, + 157802706500,0.061315651983023,L, + 159727129750,0.059638235718012,L, + 161651553000,0.057994730770588,L, + 163575976250,0.056384369730949,L, + 165500399500,0.054806355386972,L, + 167424822750,0.053259994834661,L, + 169349246000,0.051744591444731,L, + 171273669250,0.050259474664927,L, + 173198092500,0.048804003745317,L, + 175122515750,0.047377575188875,L, + 177046939000,0.045979604125023,L, + 178971362250,0.044609509408474,L, + 180895785500,0.043266762048006,L, + 182820208750,0.041950821876526,L, + 184744632000,0.040661215782166,L, + 186669055250,0.039397437125444,L, + 188593478500,0.038159016519785,L, + 190517901750,0.036945536732674,L, + 192442325000,0.035756524652243,L, + 194366748250,0.034591596573591,L, + 196291171500,0.033450353890657,L, + 198215594750,0.032332383096218,L, + 200140018000,0.031237341463566,L, + 202064441250,0.030164839699864,L, + 203988864500,0.029114561155438,L, + 205913287750,0.028086168691516,L, + 207837711000,0.027079315856099,L, + 209762134250,0.026093726977706,L, + 211686557500,0.025129090994596,L, + 213610980750,0.024185111746192,L, + 215535404000,0.023261530324817,L, + 217459827250,0.022358063608408,L, + 219384250500,0.021474467590451,L, + 221308673750,0.020610487088561,L, + 223233097000,0.019765874370933,L, + 225157520250,0.018940441310406,L, + 227081943500,0.018133927136660,L, + 229006366750,0.017346149310470,L, + 230930790000,0.016576889902353,L, + 232855213250,0.015825973823667,L, + 234779636500,0.015093197114766,L, + 236704059750,0.014378394931555,L, + 238628483000,0.013681412674487,L, + 240552906250,0.013002067804337,L, + 242477329500,0.012340229935944,L, + 244401752750,0.011695741675794,L, + 246326176000,0.011068481951952,L, + 248250599250,0.010458330623806,L, + 250175022500,0.009865161962807,L, + 252099445750,0.009288885630667,L, + 254023869000,0.008729371242225,L, + 255948292250,0.008186543360353,L, + 257872715500,0.007660347502679,L, + 259797138750,0.007150694727898,L, + 261721562000,0.006657535210252,L, + 263645985250,0.006180820986629,L, + 265570408500,0.005720508750528,L, + 267494831750,0.005276593845338,L, + 269419255000,0.004849053453654,L, + 271343678250,0.004437930881977,L, + 273268101500,0.004043191205710,L, + 275192524750,0.003664918243885,L, + 277116948000,0.003303184872493,L, + 279041371250,0.002958051627502,L, + 280965794500,0.002629611641169,L, + 282890217750,0.002318069338799,L, + 284814641000,0.002023555338383,L, + 286739064250,0.001746304333210,L, + 288663487500,0.001486603054218,L, + 290587910750,0.001244787126780,L, + 292512334000,0.001021225005388,L, + 294436757250,0.000816494168248,L, + 296361180500,0.000631231814623,L, + 298285603750,0.000466294528451,L, + 300210027000,0.000322781444993,L, + 302134450250,0.000202372641070,L, + 304058873500,0.000107310705062,L, + 305983296750,0.000041827555833,L, + 307907720000,0.000015646217435,L, + 309832143250,0.156420111656189,L, + 344471761750,0.156420111656189,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.330640584230423 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.330640584230423,L, + 1924423250,0.330753177404404,L, + 3848846500,0.331092774868011,L, + 5773269750,0.331661343574524,L, + 7697693000,0.332459867000580,L, + 9622116250,0.333488106727600,L, + 11546539500,0.334744572639465,L, + 13470962750,0.336226105690002,L, + 15395386000,0.337927818298340,L, + 17319809250,0.339843004941940,L, + 19244232500,0.341962695121765,L, + 21168655750,0.344275772571564,L, + 23093079000,0.346768736839294,L, + 25017502250,0.349425882101059,L, + 26941925500,0.352228939533234,L, + 28866348750,0.355157643556595,L, + 30790772000,0.358189463615417,L, + 32715195250,0.361300319433212,L, + 34639618500,0.364464759826660,L, + 36564041750,0.367656111717224,L, + 38488465000,0.370847523212433,L, + 40412888250,0.374011874198914,L, + 42337311500,0.377122789621353,L, + 44261734750,0.380154579877853,L, + 46186158000,0.383083254098892,L, + 48110581250,0.385886341333389,L, + 50035004500,0.388543426990509,L, + 51959427750,0.391036510467529,L, + 53883851000,0.393349498510361,L, + 55808274250,0.395469218492508,L, + 57732697500,0.397384405136108,L, + 59657120750,0.399086117744446,L, + 61581544000,0.400567620992661,L, + 63505967250,0.401824086904526,L, + 65430390500,0.402852386236191,L, + 67354813750,0.403650820255280,L, + 69279237000,0.404219418764114,L, + 71203660250,0.404559046030045,L, + 73128083500,0.404671639204025,L, + 75052506750,0.403030902147293,L, + 76976930000,0.398067861795425,L, + 78901353250,0.389757335186005,L, + 80825776500,0.378133982419968,L, + 82750199750,0.363308906555176,L, + 84674623000,0.345485538244247,L, + 86599046250,0.324972003698349,L, + 88523469500,0.302186846733093,L, + 90447892750,0.277655065059662,L, + 92372316000,0.251991331577301,L, + 94296739250,0.225871458649635,L, + 96221162500,0.199994519352913,L, + 98145585750,0.175041422247887,L, + 100070009000,0.151636525988579,L, + 101994432250,0.130317956209183,L, + 103918855500,0.111520141363144,L, + 105843278750,0.095568381249905,L, + 107767702000,0.082683593034744,L, + 109692125250,0.072994053363800,L, + 111616548500,0.066550612449646,L, + 113540971750,0.063342660665512,L, + 115465395000,0.061756893992424,L, + 117389818250,0.060210518538952,L, + 119314241500,0.058701932430267,L, + 121238664750,0.057229690253735,L, + 123163088000,0.055792409926653,L, + 125087511250,0.054388813674450,L, + 127011934500,0.053017690777779,L, + 128936357750,0.051677916198969,L, + 130860781000,0.050368420779705,L, + 132785204250,0.049088206142187,L, + 134709627500,0.047836322337389,L, + 136634050750,0.046611879020929,L, + 138558474000,0.045414030551910,L, + 140482897250,0.044241972267628,L, + 142407320500,0.043094947934151,L, + 144331743750,0.041972246021032,L, + 146256167000,0.040873166173697,L, + 148180590250,0.039797078818083,L, + 150105013500,0.038743346929550,L, + 152029436750,0.037711400538683,L, + 153953860000,0.036700658500195,L, + 155878283250,0.035710595548153,L, + 157802706500,0.034740705043077,L, + 159727129750,0.033790484070778,L, + 161651553000,0.032859478145838,L, + 163575976250,0.031947240233421,L, + 165500399500,0.031053340062499,L, + 167424822750,0.030177356675267,L, + 169349246000,0.029318917542696,L, + 171273669250,0.028477629646659,L, + 173198092500,0.027653144672513,L, + 175122515750,0.026845104992390,L, + 177046939000,0.026053180918097,L, + 178971362250,0.025277052074671,L, + 180895785500,0.024516418576241,L, + 182820208750,0.023770973086357,L, + 184744632000,0.023040436208248,L, + 186669055250,0.022324532270432,L, + 188593478500,0.021622998639941,L, + 190517901750,0.020935587584972,L, + 192442325000,0.020262043923140,L, + 194366748250,0.019602140411735,L, + 196291171500,0.018955644220114,L, + 198215594750,0.018322343006730,L, + 200140018000,0.017702026292682,L, + 202064441250,0.017094476148486,L, + 203988864500,0.016499519348145,L, + 205913287750,0.015916956588626,L, + 207837711000,0.015346604399383,L, + 209762134250,0.014788286760449,L, + 211686557500,0.014241839759052,L, + 213610980750,0.013707103207707,L, + 215535404000,0.013183908537030,L, + 217459827250,0.012672119773924,L, + 219384250500,0.012171578593552,L, + 221308673750,0.011682149022818,L, + 223233097000,0.011203704401851,L, + 225157520250,0.010736115276814,L, + 227081943500,0.010279245674610,L, + 229006366750,0.009832983836532,L, + 230930790000,0.009397214278579,L, + 232855213250,0.008971834555268,L, + 234779636500,0.008556738495827,L, + 236704059750,0.008151823654771,L, + 238628483000,0.007756991777569,L, + 240552906250,0.007372154388577,L, + 242477329500,0.006997235119343,L, + 244401752750,0.006632155273110,L, + 246326176000,0.006276828702539,L, + 248250599250,0.005931196268648,L, + 250175022500,0.005595170892775,L, + 252099445750,0.005268725100905,L, + 254023869000,0.004951776005328,L, + 255948292250,0.004644275177270,L, + 257872715500,0.004346196539700,L, + 259797138750,0.004057491198182,L, + 261721562000,0.003778120269999,L, + 263645985250,0.003508079564199,L, + 265570408500,0.003247328102589,L, + 267494831750,0.002995859831572,L, + 269419255000,0.002753669396043,L, + 271343678250,0.002520769834518,L, + 273268101500,0.002297163009644,L, + 275192524750,0.002082871273160,L, + 277116948000,0.001877963659354,L, + 279041371250,0.001682449015789,L, + 280965794500,0.001496408134699,L, + 282890217750,0.001319905626588,L, + 284814641000,0.001153077813797,L, + 286739064250,0.000996021553874,L, + 288663487500,0.000848902331199,L, + 290587910750,0.000711928994861,L, + 292512334000,0.000585284084082,L, + 294436757250,0.000469312071800,L, + 296361180500,0.000364359439118,L, + 298285603750,0.000270944088697,L, + 300210027000,0.000189643353224,L, + 302134450250,0.000121410921565,L, + 304058873500,0.000067595385190,L, + 305983296750,0.000030472872822,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420111656189,L, + 344471761750,0.156420111656189,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.464049011468887 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.464049011468887,L, + 1924423250,0.464402794837952,L, + 3848846500,0.465469688177109,L, + 5773269750,0.467255741357803,L, + 7697693000,0.469764351844788,L, + 9622116250,0.472994565963745,L, + 11546539500,0.476941645145416,L, + 13470962750,0.481595903635025,L, + 15395386000,0.486941814422607,L, + 17319809250,0.492958247661591,L, + 19244232500,0.499617189168930,L, + 21168655750,0.506883680820465,L, + 23093079000,0.514715373516083,L, + 25017502250,0.523062646389008,L, + 26941925500,0.531868457794189,L, + 28866348750,0.541068732738495,L, + 30790772000,0.550593256950378,L, + 32715195250,0.560366094112396,L, + 34639618500,0.570306897163391,L, + 36564041750,0.580332636833191,L, + 38488465000,0.590358257293701,L, + 40412888250,0.600299060344696,L, + 42337311500,0.610071957111359,L, + 44261734750,0.619596362113953,L, + 46186158000,0.628796756267548,L, + 48110581250,0.637602508068085,L, + 50035004500,0.645949840545654,L, + 51959427750,0.653781533241272,L, + 53883851000,0.661047995090485,L, + 55808274250,0.667706906795502,L, + 57732697500,0.673723280429840,L, + 59657120750,0.679069280624390,L, + 61581544000,0.683723568916321,L, + 63505967250,0.687670648097992,L, + 65430390500,0.690900921821594,L, + 67354813750,0.693409383296967,L, + 69279237000,0.695195496082306,L, + 71203660250,0.696262419223785,L, + 73128083500,0.696616172790527,L, + 75052506750,0.693823099136353,L, + 76976930000,0.685374021530151,L, + 78901353250,0.671225249767303,L, + 80825776500,0.651434838771820,L, + 82750199750,0.626191079616547,L, + 84674623000,0.595839381217957,L, + 86599046250,0.560902416706085,L, + 88523469500,0.522091805934906,L, + 90447892750,0.480299681425095,L, + 92372316000,0.436571359634399,L, + 94296739250,0.392056107521057,L, + 96221162500,0.347943186759949,L, + 98145585750,0.305391132831573,L, + 100070009000,0.265462517738342,L, + 101994432250,0.229073449969292,L, + 103918855500,0.196963846683502,L, + 105843278750,0.169687852263451,L, + 107767702000,0.147622153162956,L, + 109692125250,0.130985915660858,L, + 111616548500,0.119866311550140,L, + 113540971750,0.114246279001236,L, + 115465395000,0.111385837197304,L, + 117389818250,0.108596444129944,L, + 119314241500,0.105875231325626,L, + 121238664750,0.103219553828239,L, + 123163088000,0.100626975297928,L, + 125087511250,0.098095148801804,L, + 127011934500,0.095621883869171,L, + 128936357750,0.093205161392689,L, + 130860781000,0.090843059122562,L, + 132785204250,0.088533796370029,L, + 134709627500,0.086275607347488,L, + 136634050750,0.084066927433014,L, + 138558474000,0.081906214356422,L, + 140482897250,0.079792037606239,L, + 142407320500,0.077723026275635,L, + 144331743750,0.075697854161263,L, + 146256167000,0.073715321719646,L, + 148180590250,0.071774244308472,L, + 150105013500,0.069873519241810,L, + 152029436750,0.068012058734894,L, + 153953860000,0.066188856959343,L, + 155878283250,0.064402960240841,L, + 157802706500,0.062653452157974,L, + 159727129750,0.060939427465200,L, + 161651553000,0.059260059148073,L, + 163575976250,0.057614538818598,L, + 165500399500,0.056002099066973,L, + 167424822750,0.054421994835138,L, + 169349246000,0.052873510867357,L, + 171273669250,0.051355987787247,L, + 173198092500,0.049868755042553,L, + 175122515750,0.048411197960377,L, + 177046939000,0.046982705593109,L, + 178971362250,0.045582719147205,L, + 180895785500,0.044210657477379,L, + 182820208750,0.042866010218859,L, + 184744632000,0.041548255831003,L, + 186669055250,0.040256895124912,L, + 188593478500,0.038991451263428,L, + 190517901750,0.037751484662294,L, + 192442325000,0.036536525934935,L, + 194366748250,0.035346183925867,L, + 196291171500,0.034180022776127,L, + 198215594750,0.033037655055523,L, + 200140018000,0.031918711960316,L, + 202064441250,0.030822813510895,L, + 203988864500,0.029749616980553,L, + 205913287750,0.028698774054646,L, + 207837711000,0.027669964358211,L, + 209762134250,0.026662850752473,L, + 211686557500,0.025677165016532,L, + 213610980750,0.024712584912777,L, + 215535404000,0.023768847808242,L, + 217459827250,0.022845657542348,L, + 219384250500,0.021942779421806,L, + 221308673750,0.021059935912490,L, + 223233097000,0.020196909084916,L, + 225157520250,0.019353449344635,L, + 227081943500,0.018529340624809,L, + 229006366750,0.017724364995956,L, + 230930790000,0.016938325017691,L, + 232855213250,0.016171019524336,L, + 234779636500,0.015422250144184,L, + 236704059750,0.014691854827106,L, + 238628483000,0.013979656621814,L, + 240552906250,0.013285488821566,L, + 242477329500,0.012609185650945,L, + 244401752750,0.011950650252402,L, + 246326176000,0.011309701949358,L, + 248250599250,0.010686241090298,L, + 250175022500,0.010080107487738,L, + 252099445750,0.009491250850260,L, + 254023869000,0.008919533342123,L, + 255948292250,0.008364862762392,L, + 257872715500,0.007827192544937,L, + 259797138750,0.007306413259357,L, + 261721562000,0.006802479736507,L, + 263645985250,0.006315363571048,L, + 265570408500,0.005845021456480,L, + 267494831750,0.005391401704401,L, + 269419255000,0.004954551812261,L, + 271343678250,0.004534445237368,L, + 273268101500,0.004131082445383,L, + 275192524750,0.003744557034224,L, + 277116948000,0.003374933963642,L, + 279041371250,0.003022246062756,L, + 280965794500,0.002686660736799,L, + 282890217750,0.002368312096223,L, + 284814641000,0.002067398047075,L, + 286739064250,0.001784086227417,L, + 288663487500,0.001518689095974,L, + 290587910750,0.001271605491638,L, + 292512334000,0.001043181866407,L, + 294436757250,0.000833991856780,L, + 296361180500,0.000644661427941,L, + 298285603750,0.000476144254208,L, + 300210027000,0.000329509377480,L, + 302134450250,0.000206448123208,L, + 304058873500,0.000109314918518,L, + 305983296750,0.000042423605919,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420126557350,L, + 344471761750,0.156420126557350,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_089" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.026851534843445 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,-0.026851534843445,L, + 1924423250,-0.026951670646667,L, + 3848846500,-0.027262568473816,L, + 5773269750,-0.027791142463684,L, + 7697693000,-0.028523921966553,L, + 9622116250,-0.029421806335449,L, + 11546539500,-0.030421614646912,L, + 13470962750,-0.031449794769287,L, + 15395386000,-0.032440423965454,L, + 17319809250,-0.033346056938171,L, + 19244232500,-0.034140229225159,L, + 21168655750,-0.034875988960266,L, + 23093079000,-0.035615801811218,L, + 25017502250,-0.036359071731567,L, + 26941925500,-0.037105560302734,L, + 28866348750,-0.037854909896851,L, + 30790772000,-0.038606762886047,L, + 32715195250,-0.039361000061035,L, + 34639618500,-0.040117144584656,L, + 36564041750,-0.040875315666199,L, + 38488465000,-0.041635036468506,L, + 40412888250,-0.042396306991577,L, + 42337311500,-0.043158769607544,L, + 44261734750,-0.043922305107117,L, + 46186158000,-0.044686794281006,L, + 48110581250,-0.045452237129211,L, + 50035004500,-0.046218037605286,L, + 51959427750,-0.046984434127808,L, + 53883851000,-0.047751069068909,L, + 55808274250,-0.048517942428589,L, + 57732697500,-0.049284577369690,L, + 59657120750,-0.050051093101501,L, + 61581544000,-0.050817251205444,L, + 63505967250,-0.051582813262939,L, + 65430390500,-0.052347302436829,L, + 67354813750,-0.053110837936401,L, + 69279237000,-0.053873181343079,L, + 71203660250,-0.054633617401123,L, + 73128083500,-0.055391907691956,L, + 75052506750,-0.056147694587708,L, + 76976930000,-0.056900620460510,L, + 78901353250,-0.057649493217468,L, + 80825776500,-0.058394074440002,L, + 82750199750,-0.059132695198059,L, + 84674623000,-0.059864163398743,L, + 86599046250,-0.060586333274841,L, + 88523469500,-0.061295747756958,L, + 90447892750,-0.061987280845642,L, + 92372316000,-0.062650203704834,L, + 94296739250,-0.063259601593018,L, + 96221162500,-0.063678145408630,L, + 169349246000,-0.063678145408630,L, + 171273669250,0.039614200592041,L, + 344471761750,0.039614200592041,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062056064605713 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,-0.062056064605713,L, + 1924423250,-0.062124848365784,L, + 3848846500,-0.062338352203369,L, + 5773269750,-0.062701106071472,L, + 7697693000,-0.063204288482666,L, + 9622116250,-0.063820719718933,L, + 11546539500,-0.064507126808167,L, + 13470962750,-0.065212965011597,L, + 15395386000,-0.065893054008484,L, + 17319809250,-0.066514968872070,L, + 19244232500,-0.067060112953186,L, + 21168655750,-0.067565321922302,L, + 23093079000,-0.068073272705078,L, + 25017502250,-0.068583607673645,L, + 26941925500,-0.069096088409424,L, + 28866348750,-0.069610595703125,L, + 30790772000,-0.070126652717590,L, + 32715195250,-0.070644497871399,L, + 34639618500,-0.071163773536682,L, + 36564041750,-0.071684241294861,L, + 38488465000,-0.072205901145935,L, + 40412888250,-0.072728514671326,L, + 42337311500,-0.073251962661743,L, + 44261734750,-0.073776245117188,L, + 46186158000,-0.074301004409790,L, + 48110581250,-0.074826598167419,L, + 50035004500,-0.075352430343628,L, + 51959427750,-0.075878620147705,L, + 53883851000,-0.076404929161072,L, + 55808274250,-0.076931357383728,L, + 57732697500,-0.077457666397095,L, + 59657120750,-0.077984094619751,L, + 61581544000,-0.078510046005249,L, + 63505967250,-0.079035520553589,L, + 65430390500,-0.079560637474060,L, + 67354813750,-0.080084800720215,L, + 69279237000,-0.080608010292053,L, + 71203660250,-0.081130266189575,L, + 73128083500,-0.081650733947754,L, + 75052506750,-0.082169771194458,L, + 76976930000,-0.082686543464661,L, + 78901353250,-0.083200931549072,L, + 80825776500,-0.083711981773376,L, + 82750199750,-0.084219098091125,L, + 84674623000,-0.084721326828003,L, + 86599046250,-0.085217118263245,L, + 88523469500,-0.085704207420349,L, + 90447892750,-0.086178898811340,L, + 92372316000,-0.086634039878845,L, + 94296739250,-0.087052464485168,L, + 96221162500,-0.087339878082275,L, + 169349246000,-0.087339878082275,L, + 171273669250,-0.016423225402832,L, + 344471761750,-0.016423225402832,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.934078574180603 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,0.934078574180603,L, + 1924423250,0.934932351112366,L, + 3848846500,0.937636256217957,L, + 5773269750,0.942345976829529,L, + 7697693000,0.949074983596802,L, + 9622116250,0.957623720169067,L, + 11546539500,0.967566609382629,L, + 13470962750,0.978338360786438,L, + 15395386000,0.989373207092285,L, + 17319809250,1.000218152999878,L, + 19244232500,1.010571002960205,L, + 21168655750,1.020764827728271,L, + 23093079000,1.031244516372681,L, + 25017502250,1.041984200477600,L, + 26941925500,1.052961707115173,L, + 28866348750,1.064157962799072,L, + 30790772000,1.075555801391602,L, + 32715195250,1.087140202522278,L, + 34639618500,1.098897218704224,L, + 36564041750,1.110815048217773,L, + 38488465000,1.122882366180420,L, + 40412888250,1.135089397430420,L, + 42337311500,1.147426724433899,L, + 44261734750,1.159886002540588,L, + 46186158000,1.172459125518799,L, + 48110581250,1.185138940811157,L, + 50035004500,1.197918295860291,L, + 51959427750,1.210790395736694,L, + 53883851000,1.223749399185181,L, + 55808274250,1.236788630485535,L, + 57732697500,1.249902486801147,L, + 59657120750,1.263084650039673,L, + 61581544000,1.276329994201660,L, + 63505967250,1.289631605148315,L, + 65430390500,1.302983999252319,L, + 67354813750,1.316380262374878,L, + 69279237000,1.329813718795776,L, + 71203660250,1.343276977539062,L, + 73128083500,1.356761693954468,L, + 75052506750,1.370258331298828,L, + 76976930000,1.383756160736084,L, + 78901353250,1.397241592407227,L, + 80825776500,1.410698652267456,L, + 82750199750,1.424105644226074,L, + 84674623000,1.437434911727905,L, + 86599046250,1.450646400451660,L, + 88523469500,1.463679790496826,L, + 90447892750,1.476435422897339,L, + 92372316000,1.488722085952759,L, + 94296739250,1.500070571899414,L, + 96221162500,1.507912874221802,L, + 98145585750,0.101423621177673,L, + 169349246000,0.101423621177673,L, + 171273669250,0.692347049713135,L, + 344471761750,0.692347049713135,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 31.672478520990307 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,31.672478520990307,L, + 1924423250,31.669749860416889,L, + 3848846500,31.661290671129841,L, + 5773269750,31.646916538021568,L, + 7697693000,31.626975800739746,L, + 9622116250,31.602551044267816,L, + 11546539500,31.575346400803692,L, + 13470962750,31.547369945963361,L, + 15395386000,31.520414604403946,L, + 17319809250,31.495767866783989,L, + 19244232500,31.474160563344686,L, + 21168655750,31.454141278887406,L, + 23093079000,31.434016126497994,L, + 25017502250,31.413785106176444,L, + 26941925500,31.393475538679439,L, + 28866348750,31.373094254196150,L, + 30790772000,31.352627592348238,L, + 32715195250,31.332106288986964,L, + 34639618500,31.311530344112331,L, + 36564041750,31.290906587913508,L, + 38488465000,31.270231605295908,L, + 40412888250,31.249519056637872,L, + 42337311500,31.228775772128575,L, + 44261734750,31.208001751768009,L, + 46186158000,31.187196995556182,L, + 48110581250,31.166381994060597,L, + 50035004500,31.145536256713747,L, + 51959427750,31.124680274083143,L, + 53883851000,31.103827706547126,L, + 55808274250,31.082958063538182,L, + 57732697500,31.062095250718407,L, + 59657120750,31.041239268087804,L, + 61581544000,31.020393530740954,L, + 63505967250,30.999568283961615,L, + 65430390500,30.978763527749788,L, + 67354813750,30.957979262105468,L, + 69279237000,30.937246222879924,L, + 71203660250,30.916560994978571,L, + 73128083500,30.895916748212237,L, + 75052506750,30.875354463715944,L, + 76976930000,30.854877556584274,L, + 78901353250,30.834486026817231,L, + 80825776500,30.814237931022756,L, + 82750199750,30.794129854106266,L, + 84674623000,30.774230097959464,L, + 86599046250,30.754576228622781,L, + 88523469500,30.735280944217521,L, + 90447892750,30.716467188148748,L, + 92372316000,30.698428658550771,L, + 94296739250,30.681848374340589,L, + 96221162500,30.670462448994193,L, + 98145585750,30.670455618805025,L, + 167424822750,30.670455618805025,L, + 169349246000,30.670462448994193,L, + 171273669250,33.480948688667006,L, + 344471761750,33.480948688667006,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 49.355203074535098 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,49.355203074535098,L, + 1924423250,49.477309781421830,L, + 3848846500,49.856692638869639,L, + 5773269750,50.501472741801670,L, + 7697693000,51.395561579627980,L, + 9622116250,52.490929262105105,L, + 11546539500,53.710582481814193,L, + 13470962750,54.965011609682350,L, + 15395386000,56.173630658787289,L, + 17319809250,57.278710870264163,L, + 19244232500,58.247532222894058,L, + 21168655750,59.145217155318377,L, + 23093079000,60.047737861675053,L, + 25017502250,60.954575247587172,L, + 26941925500,61.865292180947854,L, + 28866348750,62.779485680596068,L, + 30790772000,63.696807406884140,L, + 32715195250,64.616936340921086,L, + 34639618500,65.539585614761762,L, + 36564041750,66.464488851028548,L, + 38488465000,67.391400162911296,L, + 40412888250,68.320087323978257,L, + 42337311500,69.250324937986804,L, + 44261734750,70.181908099261847,L, + 46186158000,71.114638732317445,L, + 48110581250,72.048318761667687,L, + 50035004500,72.982743281637440,L, + 51959427750,73.917741537497491,L, + 53883851000,74.853088133005201,L, + 55808274250,75.788584992674657,L, + 57732697500,76.724040871209084,L, + 59657120750,77.659237202555062,L, + 61581544000,78.593914439524113,L, + 63505967250,79.527840355684461,L, + 65430390500,80.460734913280135,L, + 67354813750,81.392283923609327,L, + 69279237000,82.322145877213529,L, + 71203660250,83.249938283499219,L, + 73128083500,84.175183029224499,L, + 75052506750,85.097326869066592,L, + 76976930000,86.015734595432704,L, + 78901353250,86.929566095054909,L, + 80825776500,87.837790009368533,L, + 82750199750,88.739047130728764,L, + 84674623000,89.631493308059689,L, + 86599046250,90.512498918530852,L, + 88523469500,91.378054641099482,L, + 90447892750,92.221576173405666,L, + 92372316000,93.030468646619951,L, + 94296739250,93.773866435883065,L, + 96221162500,94.284634812205056,L, + 169349246000,94.284634812205056,L, + 171273669250,-31.734862053774528,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.829352251512169 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,-0.829352251512169,L, + 1924423250,-0.832995837269248,L, + 3848846500,-0.844469594579501,L, + 5773269750,-0.864314655852092,L, + 7697693000,-0.892433797613053,L, + 9622116250,-0.927804786003560,L, + 11546539500,-0.968472052486874,L, + 13470962750,-1.011947914101236,L, + 15395386000,-1.055821954399867,L, + 17319809250,-1.098222167941658,L, + 19244232500,-1.137950390135804,L, + 21168655750,-1.176579698925519,L, + 23093079000,-1.216114968275611,L, + 25017502250,-1.256474662802864,L, + 26941925500,-1.297587705851228,L, + 28866348750,-1.339392092109642,L, + 30790772000,-1.381833073343042,L, + 32715195250,-1.424862624783826,L, + 34639618500,-1.468436243480683,L, + 36564041750,-1.512516043228061,L, + 38488465000,-1.557065631924287,L, + 40412888250,-1.602052886335923,L, + 42337311500,-1.647447924385349,L, + 44261734750,-1.693223425315886,L, + 46186158000,-1.739352708701088,L, + 48110581250,-1.785813469704446,L, + 50035004500,-1.832581375777043,L, + 51959427750,-1.879635402742839,L, + 53883851000,-1.926954312982385,L, + 55808274250,-1.974518256258404,L, + 57732697500,-2.022306528559976,L, + 59657120750,-2.070300133423471,L, + 61581544000,-2.118479220611614,L, + 63505967250,-2.166822232339837,L, + 65430390500,-2.215310385587923,L, + 67354813750,-2.263919347806953,L, + 69279237000,-2.312626280551890,L, + 71203660250,-2.361405570613347,L, + 73128083500,-2.410227122470293,L, + 75052506750,-2.459058279280760,L, + 76976930000,-2.507859340570196,L, + 78901353250,-2.556583989118293,L, + 80825776500,-2.605173741430282,L, + 82750199750,-2.653552611651648,L, + 84674623000,-2.701619000718486,L, + 86599046250,-2.749230541875284,L, + 88523469500,-2.796169095955425,L, + 90447892750,-2.842074797367014,L, + 92372316000,-2.886262919645760,L, + 94296739250,-2.927043631302320,L, + 96221162500,-2.955198738278130,L, + 98145585750,-2.955198951721542,L, + 169349246000,-2.955198951721542,L, + 171273669250,0.259471015842610,L, + 344471761750,0.259471015842610,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.428362071514130 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.428362071514130,L, + 1924423250,0.428899437189102,L, + 3848846500,0.430516600608826,L, + 5773269750,0.433145970106125,L, + 7697693000,0.436585068702698,L, + 9622116250,0.440480947494507,L, + 11546539500,0.444376945495605,L, + 13470962750,0.447815984487534,L, + 15395386000,0.450445383787155,L, + 17319809250,0.452062487602234,L, + 19244232500,0.452599853277206,L, + 21168655750,0.452372819185257,L, + 23093079000,0.451713770627975,L, + 25017502250,0.450651943683624,L, + 26941925500,0.449211955070496,L, + 28866348750,0.447414875030518,L, + 30790772000,0.445278674364090,L, + 32715195250,0.442818760871887,L, + 34639618500,0.440048128366470,L, + 36564041750,0.436977833509445,L, + 38488465000,0.433617234230042,L, + 40412888250,0.429974019527435,L, + 42337311500,0.426054537296295,L, + 44261734750,0.421863585710526,L, + 46186158000,0.417404830455780,L, + 48110581250,0.412680596113205,L, + 50035004500,0.407692164182663,L, + 51959427750,0.402439266443253,L, + 53883851000,0.396920710802078,L, + 55808274250,0.391133666038513,L, + 57732697500,0.385074079036713,L, + 59657120750,0.378736227750778,L, + 61581544000,0.372112751007080,L, + 63505967250,0.365194231271744,L, + 65430390500,0.357968926429749,L, + 67354813750,0.350422441959381,L, + 69279237000,0.342537224292755,L, + 71203660250,0.334291487932205,L, + 73128083500,0.325658679008484,L, + 75052506750,0.316605716943741,L, + 76976930000,0.307091385126114,L, + 78901353250,0.297062814235687,L, + 80825776500,0.286452084779739,L, + 82750199750,0.275168448686600,L, + 84674623000,0.263087451457977,L, + 86599046250,0.250030934810638,L, + 88523469500,0.235727384686470,L, + 90447892750,0.219726890325546,L, + 92372316000,0.201174825429916,L, + 94296739250,0.177984759211540,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380201451,L, + 171273669250,0.162417262792587,L, + 344471761750,0.162417262792587,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.754271507263184 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271507263184,L, + 1924423250,0.754455506801605,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087826728821,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934412479401,L, + 15395386000,0.761835038661957,L, + 17319809250,0.762388944625854,L, + 19244232500,0.762573003768921,L, + 21168655750,0.761945545673370,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314852714539,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742718994617462,L, + 32715195250,0.736150860786438,L, + 34639618500,0.728799879550934,L, + 36564041750,0.720706343650818,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309916019440,L, + 44261734750,0.681565880775452,L, + 46186158000,0.670221030712128,L, + 48110581250,0.658294379711151,L, + 50035004500,0.645802140235901,L, + 51959427750,0.632758200168610,L, + 53883851000,0.619174361228943,L, + 55808274250,0.605059623718262,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591233730316,L, + 63505967250,0.543401956558228,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695582866669,L, + 71203660250,0.473382681608200,L, + 73128083500,0.454504817724228,L, + 75052506750,0.435037285089493,L, + 76976930000,0.414948254823685,L, + 78901353250,0.394194781780243,L, + 80825776500,0.372720092535019,L, + 82750199750,0.350447148084641,L, + 84674623000,0.327268719673157,L, + 86599046250,0.303029805421829,L, + 88523469500,0.277493596076965,L, + 90447892750,0.250267535448074,L, + 92372316000,0.220607548952103,L, + 94296739250,0.186706766486168,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417262792587,L, + 344471761750,0.162417262792587,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.754271566867828 + KeyVer: 4005 + KeyCount: 56 + Key: + 0,0.754271566867828,L, + 1924423250,0.754455506801605,L, + 3848846500,0.755009472370148,L, + 5773269750,0.755909979343414,L, + 7697693000,0.757087886333466,L, + 9622116250,0.758422195911407,L, + 11546539500,0.759756624698639,L, + 13470962750,0.760934531688690,L, + 15395386000,0.761835038661957,L, + 17319809250,0.762388944625854,L, + 19244232500,0.762572944164276,L, + 21168655750,0.761945545673370,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229745388031,L, + 26941925500,0.753314912319183,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742718935012817,L, + 32715195250,0.736150860786438,L, + 34639618500,0.728799819946289,L, + 36564041750,0.720706343650818,L, + 38488465000,0.711906373500824,L, + 40412888250,0.702431619167328,L, + 42337311500,0.692309975624084,L, + 44261734750,0.681565940380096,L, + 46186158000,0.670221030712128,L, + 48110581250,0.658294439315796,L, + 50035004500,0.645802140235901,L, + 51959427750,0.632758259773254,L, + 53883851000,0.619174301624298,L, + 55808274250,0.605059564113617,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264275074005,L, + 61581544000,0.559591233730316,L, + 63505967250,0.543402016162872,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461641311646,L, + 69279237000,0.491695582866669,L, + 71203660250,0.473382711410522,L, + 73128083500,0.454504728317261,L, + 75052506750,0.435037314891815,L, + 76976930000,0.414948284626007,L, + 78901353250,0.394194751977921,L, + 80825776500,0.372720092535019,L, + 82750199750,0.350447118282318,L, + 84674623000,0.327268689870834,L, + 86599046250,0.303029745817184,L, + 88523469500,0.277493566274643,L, + 90447892750,0.250267535448074,L, + 92372316000,0.220607578754425,L, + 94296739250,0.186706781387329,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370066043,L, + 167424822750,0.000075370066043,L, + 169349246000,0.000075380186900,L, + 171273669250,0.162417232990265,L, + 344471761750,0.162417232990265,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_088" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.074746727943420 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,-0.074746727943420,L, + 1924423250,-0.074808955192566,L, + 3848846500,-0.074986457824707,L, + 5773269750,-0.075266718864441,L, + 7697693000,-0.075639367103577,L, + 9622116250,-0.076095819473267,L, + 11546539500,-0.076628684997559,L, + 13470962750,-0.077231526374817,L, + 15395386000,-0.077898502349854,L, + 17319809250,-0.078625082969666,L, + 19244232500,-0.079406738281250,L, + 21168655750,-0.080239534378052,L, + 23093079000,-0.081120014190674,L, + 25017502250,-0.082044839859009,L, + 26941925500,-0.083010911941528,L, + 28866348750,-0.084015846252441,L, + 30790772000,-0.085056662559509,L, + 32715195250,-0.086130976676941,L, + 34639618500,-0.087236285209656,L, + 36564041750,-0.088370084762573,L, + 38488465000,-0.089529871940613,L, + 40412888250,-0.090712666511536,L, + 42337311500,-0.091915249824524,L, + 44261734750,-0.093133687973022,L, + 46186158000,-0.094362854957581,L, + 48110581250,-0.095595359802246,L, + 50035004500,-0.096819639205933,L, + 51959427750,-0.098013758659363,L, + 53883851000,-0.099125146865845,L, + 55808274250,-0.099893569946289,L, + 57732697500,-0.099930047988892,L, + 59657120750,-0.098738074302673,L, + 61581544000,-0.096936821937561,L, + 63505967250,-0.094985485076904,L, + 65430390500,-0.092977404594421,L, + 67354813750,-0.090950965881348,L, + 69279237000,-0.088926911354065,L, + 71203660250,-0.086918234825134,L, + 73128083500,-0.084933876991272,L, + 75052506750,-0.082980751991272,L, + 76976930000,-0.081064581871033,L, + 78901353250,-0.079190015792847,L, + 80825776500,-0.077362060546875,L, + 82750199750,-0.075584650039673,L, + 84674623000,-0.073862075805664,L, + 86599046250,-0.072198510169983,L, + 88523469500,-0.070598483085632,L, + 90447892750,-0.069066762924194,L, + 92372316000,-0.067608118057251,L, + 94296739250,-0.066228151321411,L, + 96221162500,-0.064932703971863,L, + 98145585750,-0.063728213310242,L, + 100070009000,-0.062622189521790,L, + 101994432250,-0.061622500419617,L, + 103918855500,-0.060738921165466,L, + 105843278750,-0.059981822967529,L, + 107767702000,-0.059363484382629,L, + 109692125250,-0.058898568153381,L, + 111616548500,-0.058604240417480,L, + 113540971750,-0.058501005172729,L, + 307907720000,-0.058501005172729,L, + 309832143250,-0.058537244796753,L, + 344471761750,-0.058537244796753,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608081340790 + KeyVer: 4005 + KeyCount: 156 + Key: + 0,0.093608081340790,L, + 1924423250,0.093608558177948,L, + 3848846500,0.093612015247345,L, + 5773269750,0.093621134757996,L, + 7697693000,0.093638241291046,L, + 9622116250,0.093665778636932,L, + 11546539500,0.093706071376801,L, + 13470962750,0.093761384487152,L, + 15395386000,0.093834042549133,L, + 17319809250,0.093926548957825,L, + 19244232500,0.094041287899017,L, + 21168655750,0.094181239604950,L, + 23093079000,0.094349443912506,L, + 25017502250,0.094549179077148,L, + 26941925500,0.094784200191498,L, + 28866348750,0.095058977603912,L, + 30790772000,0.095378577709198,L, + 32715195250,0.095748782157898,L, + 34639618500,0.096176803112030,L, + 36564041750,0.096671283245087,L, + 38488465000,0.097243130207062,L, + 40412888250,0.097905874252319,L, + 42337311500,0.098677575588226,L, + 44261734750,0.099582850933075,L, + 46186158000,0.100656390190125,L, + 48110581250,0.101950705051422,L, + 50035004500,0.103552520275116,L, + 51959427750,0.105624139308929,L, + 53883851000,0.108554661273956,L, + 55808274250,0.114208281040192,L, + 57732697500,0.672039747238159,L, + 61581544000,0.687746524810791,L, + 65430390500,0.703453063964844,L, + 69279237000,0.719159841537476,L, + 73128083500,0.734866380691528,L, + 76976930000,0.750573158264160,L, + 80825776500,0.766279697418213,L, + 84674623000,0.781986474990845,L, + 86599046250,0.794581890106201,L, + 88523469500,0.809109210968018,L, + 90447892750,0.825344443321228,L, + 92372316000,0.842669010162354,L, + 94296739250,0.860134840011597,L, + 96221162500,0.876771926879883,L, + 98145585750,0.891909599304199,L, + 100070009000,0.905265212059021,L, + 101994432250,0.917443633079529,L, + 103918855500,0.928918480873108,L, + 105843278750,0.939439177513123,L, + 107767702000,0.948848724365234,L, + 109692125250,0.957195162773132,L, + 111616548500,0.964709639549255,L, + 113540971750,0.971674680709839,L, + 115465395000,0.978410959243774,L, + 117389818250,0.985076904296875,L, + 119314241500,0.991677999496460,L, + 121238664750,0.998218417167664,L, + 123163088000,1.004701018333435,L, + 125087511250,1.011128067970276,L, + 127011934500,1.017501592636108,L, + 128936357750,1.023823142051697,L, + 130860781000,1.030094027519226,L, + 132785204250,1.036315083503723,L, + 134709627500,1.042487144470215,L, + 136634050750,1.048611044883728,L, + 138558474000,1.054687619209290,L, + 140482897250,1.060716986656189,L, + 142407320500,1.066699981689453,L, + 144331743750,1.072636604309082,L, + 146256167000,1.078527450561523,L, + 148180590250,1.084372639656067,L, + 150105013500,1.090172410011292,L, + 152029436750,1.095926523208618,L, + 153953860000,1.101635813713074,L, + 155878283250,1.107300162315369,L, + 157802706500,1.112919211387634,L, + 159727129750,1.118493199348450,L, + 161651553000,1.124022126197815,L, + 163575976250,1.129505991935730,L, + 165500399500,1.134944796562195,L, + 167424822750,1.140338182449341,L, + 169349246000,1.145686388015747,L, + 171273669250,1.150989294052124,L, + 173198092500,1.156246066093445,L, + 175122515750,1.161457419395447,L, + 177046939000,1.166622757911682,L, + 178971362250,1.171741724014282,L, + 180895785500,1.176814436912537,L, + 182820208750,1.181840419769287,L, + 184744632000,1.186819434165955,L, + 186669055250,1.191751122474670,L, + 188593478500,1.196635484695435,L, + 190517901750,1.201471924781799,L, + 192442325000,1.206260442733765,L, + 194366748250,1.211000442504883,L, + 196291171500,1.215691447257996,L, + 198215594750,1.220333456993103,L, + 200140018000,1.224925637245178,L, + 202064441250,1.229467868804932,L, + 203988864500,1.233959913253784,L, + 205913287750,1.238401055335999,L, + 207837711000,1.242790937423706,L, + 209762134250,1.247128725051880,L, + 211686557500,1.251414537429810,L, + 213610980750,1.255647420883179,L, + 215535404000,1.259827136993408,L, + 217459827250,1.263953208923340,L, + 219384250500,1.268024682998657,L, + 221308673750,1.272041082382202,L, + 223233097000,1.276002407073975,L, + 225157520250,1.279907464981079,L, + 227081943500,1.283755779266357,L, + 229006366750,1.287546396255493,L, + 230930790000,1.291279077529907,L, + 232855213250,1.294952869415283,L, + 234779636500,1.298567056655884,L, + 236704059750,1.302121400833130,L, + 238628483000,1.305614471435547,L, + 240552906250,1.309046030044556,L, + 242477329500,1.312414884567261,L, + 244401752750,1.315720319747925,L, + 246326176000,1.318961381912231,L, + 248250599250,1.322137355804443,L, + 250175022500,1.325247526168823,L, + 252099445750,1.328290462493896,L, + 254023869000,1.331265211105347,L, + 255948292250,1.334171295166016,L, + 257872715500,1.337007284164429,L, + 259797138750,1.339772462844849,L, + 261721562000,1.342465400695801,L, + 263645985250,1.345084905624390,L, + 265570408500,1.347630023956299,L, + 267494831750,1.350099325180054,L, + 269419255000,1.352492094039917,L, + 271343678250,1.354806184768677,L, + 273268101500,1.357040882110596,L, + 275192524750,1.359194993972778,L, + 277116948000,1.361266374588013,L, + 279041371250,1.363254070281982,L, + 280965794500,1.365156650543213,L, + 282890217750,1.366971969604492,L, + 284814641000,1.368698596954346,L, + 286739064250,1.370335578918457,L, + 288663487500,1.371880054473877,L, + 290587910750,1.373330831527710,L, + 292512334000,1.374685764312744,L, + 294436757250,1.375943183898926,L, + 296361180500,1.377100706100464,L, + 298285603750,1.378156423568726,L, + 300210027000,1.379108190536499,L, + 302134450250,1.379953384399414,L, + 304058873500,1.380689859390259,L, + 305983296750,1.381315231323242,L, + 307907720000,1.381826639175415,L, + 309832143250,0.093608081340790,L, + 344471761750,0.093608081340790,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 11.241471968091211 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,11.241471968091211,L, + 1924423250,11.213423796264594,L, + 3848846500,11.133561809394335,L, + 5773269750,11.007450050333047,L, + 7697693000,10.839727071300809,L, + 9622116250,10.634315108428494,L, + 11546539500,10.394570345919513,L, + 13470962750,10.123388783981948,L, + 15395386000,9.823301861476931,L, + 17319809250,9.496531951205650,L, + 19244232500,9.145062369348347,L, + 21168655750,8.770661281126404,L, + 23093079000,8.374937196089359,L, + 25017502250,7.959356897361469,L, + 26941925500,7.525267639756517,L, + 28866348750,7.073941546007417,L, + 30790772000,6.606575606766211,L, + 32715195250,6.124330954191800,L, + 34639618500,5.628354633177921,L, + 36564041750,5.119802226354774,L, + 38488465000,4.599899752678375,L, + 40412888250,4.069974403281820,L, + 42337311500,3.531560195964008,L, + 44261734750,2.986525187462937,L, + 46186158000,2.437324617341810,L, + 48110581250,1.887463653305309,L, + 50035004500,1.342545398350362,L, + 51959427750,0.813016093203961,L, + 53883851000,0.324109551589564,L, + 55808274250,0.000309066112053,L, + 57732697500,0.000001707547293,L, + 59657120750,1.292893231457320,L, + 61581544000,3.274989048991314,L, + 63505967250,5.451132995444325,L, + 65430390500,7.719538710318911,L, + 67354813750,10.037851763685063,L, + 69279237000,12.383448007690792,L, + 71203660250,14.742369096993549,L, + 73128083500,17.105114238457862,L, + 75052506750,19.464697002336464,L, + 76976930000,21.815670312766279,L, + 78901353250,24.153534782631564,L, + 80825776500,26.474421109767516,L, + 82750199750,28.774821992035335,L, + 84674623000,31.051494797126562,L, + 86599046250,33.301307883306755,L, + 88523469500,35.521170589976485,L, + 90447892750,37.707920539550038,L, + 92372316000,39.858323637455428,L, + 94296739250,41.968961374013055,L, + 96221162500,44.036159107449464,L, + 98145585750,46.055948497856882,L, + 100070009000,48.023975299639432,L, + 101994432250,49.935379833202660,L, + 103918855500,51.784708192494314,L, + 105843278750,53.565768811031788,L, + 107767702000,55.271437801510771,L, + 109692125250,56.893430144468049,L, + 111616548500,58.421927442971743,L, + 113540971750,59.845311545243675,L, + 115465395000,61.197306510310739,L, + 117389818250,62.521447963942528,L, + 119314241500,63.818828736406246,L, + 121238664750,65.090487016455725,L, + 123163088000,66.337385860763959,L, + 125087511250,67.560454175058041,L, + 127011934500,68.760518412227555,L, + 128936357750,69.938391364783740,L, + 130860781000,71.094824353535273,L, + 132785204250,72.230520887966676,L, + 134709627500,73.346157156805788,L, + 136634050750,74.442354707267071,L, + 138558474000,75.519721426186663,L, + 140482897250,76.578810558887312,L, + 142407320500,77.620168520502645,L, + 144331743750,78.644293914842052,L, + 146256167000,79.651671685336609,L, + 148180590250,80.642766284849884,L, + 150105013500,81.618021675677923,L, + 152029436750,82.577840838981757,L, + 153953860000,83.522613095544074,L, + 155878283250,84.452734596336740,L, + 157802706500,85.368546850818248,L, + 159727129750,86.270411859014601,L, + 161651553000,87.158657470005977,L, + 163575976250,88.033577381926662,L, + 165500399500,88.895506274046014,L, + 167424822750,89.744717353930824,L, + 169349246000,90.581476998958721,L, + 171273669250,91.406058416696482,L, + 173198092500,92.218727984521777,L, + 175122515750,93.019711098677192,L, + 177046939000,93.809253645972845,L, + 178971362250,94.587581022651364,L, + 180895785500,95.354898134387838,L, + 182820208750,96.111430377424867,L, + 184744632000,96.857368997059226,L, + 186669055250,97.592905238587676,L, + 188593478500,98.318237177496144,L, + 190517901750,99.033508247757183,L, + 192442325000,99.738937015424256,L, + 194366748250,100.434639593713257,L, + 196291171500,101.120814058110085,L, + 198215594750,101.797603842587336,L, + 200140018000,102.465152381117576,L, + 202064441250,103.123603107673361,L, + 203988864500,103.773078965659778,L, + 205913287750,104.413730219238545,L, + 207837711000,105.045672981625557,L, + 209762134250,105.669023366036697,L, + 211686557500,106.283924806444560,L, + 213610980750,106.890466095308327,L, + 215535404000,107.488763345843907,L, + 217459827250,108.078925841078004,L, + 219384250500,108.661035543280676,L, + 221308673750,109.235208565667804,L, + 223233097000,109.801533700698599,L, + 225157520250,110.360079250264761,L, + 227081943500,110.910974987960515,L, + 229006366750,111.454248234542547,L, + 230930790000,111.990015103226753,L, + 232855213250,112.518302914769791,L, + 234779636500,113.039248272955092,L, + 236704059750,113.552851177782628,L, + 238628483000,114.059207251900801,L, + 240552906250,114.558398457579628,L, + 242477329500,115.050424794819136,L, + 244401752750,115.535368225889343,L, + 246326176000,116.013290222492785,L, + 248250599250,116.484190784629476,L, + 250175022500,116.948151874569433,L, + 252099445750,117.405173492312670,L, + 254023869000,117.855323939750889,L, + 255948292250,118.298603216884075,L, + 257872715500,118.735024984090586,L, + 259797138750,119.164630222505423,L, + 261721562000,119.587418932128614,L, + 263645985250,120.003404773338460,L, + 265570408500,120.412574085756660,L, + 267494831750,120.814899548626514,L, + 269419255000,121.210408482704707,L, + 271343678250,121.599073567234555,L, + 273268101500,121.980812839946012,L, + 275192524750,122.355653621595778,L, + 277116948000,122.723486629157122,L, + 279041371250,123.084243560738329,L, + 280965794500,123.437883435204398,L, + 282890217750,123.784228667636910,L, + 284814641000,124.123210956144163,L, + 286739064250,124.454652715807725,L, + 288663487500,124.778335380574163,L, + 290587910750,125.094040384390041,L, + 292512334000,125.401453538553525,L, + 294436757250,125.700178692092777,L, + 296361180500,125.989710411009199,L, + 298285603750,126.269297374494101,L, + 300210027000,126.537983356063677,L, + 302134450250,126.794156431073802,L, + 304058873500,127.035043542721468,L, + 305983296750,127.254429218861958,L, + 307907720000,127.416728173919580,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -33.527151503307486 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-33.527151503307486,L, + 1924423250,-33.534705692529513,L, + 3848846500,-33.556231033698772,L, + 5773269750,-33.590218055008712,L, + 7697693000,-33.635413416746623,L, + 9622116250,-33.690765269780321,L, + 11546539500,-33.755382274423134,L, + 13470962750,-33.828458468352999,L, + 15395386000,-33.909321077936660,L, + 17319809250,-33.997386122000094,L, + 19244232500,-34.092096940125941,L, + 21168655750,-34.192995909639812,L, + 23093079000,-34.299639068245654,L, + 25017502250,-34.411630264971606,L, + 26941925500,-34.528610914886244,L, + 28866348750,-34.650236093436483,L, + 30790772000,-34.776181366636756,L, + 32715195250,-34.906139375974398,L, + 34639618500,-35.039799347842191,L, + 36564041750,-35.176847093538299,L, + 38488465000,-35.316947933793401,L, + 40412888250,-35.459760359148987,L, + 42337311500,-35.604850652592773,L, + 44261734750,-35.751727040504520,L, + 46186158000,-35.899726994534731,L, + 48110581250,-36.047907948577944,L, + 50035004500,-36.194757015733003,L, + 51959427750,-36.337449912778119,L, + 53883851000,-36.469211092056646,L, + 55808274250,-36.556459928514265,L, + 57732697500,-36.556541890784302,L, + 59657120750,-36.269352926753193,L, + 61581544000,-35.796154005960801,L, + 63505967250,-35.261442401503366,L, + 65430390500,-34.694461568312256,L, + 67354813750,-34.107826865784460,L, + 69279237000,-33.508399218941243,L, + 71203660250,-32.900461156392211,L, + 73128083500,-32.286953074575038,L, + 75052506750,-31.670046973645785,L, + 76976930000,-31.051429910329450,L, + 78901353250,-30.432502073405878,L, + 80825776500,-29.814475821452746,L, + 82750199750,-29.198461060210182,L, + 84674623000,-28.585494270884730,L, + 86599046250,-27.976588029020846,L, + 88523469500,-27.372802721487172,L, + 90447892750,-26.775227763456321,L, + 92372316000,-26.185053315391169,L, + 94296739250,-25.603626632105499,L, + 96221162500,-25.032453770311296,L, + 98145585750,-24.473336192402151,L, + 100070009000,-23.928437360797655,L, + 101994432250,-23.383724651848045,L, + 103918855500,-22.828903262926826,L, + 105843278750,-22.277664308225276,L, + 107767702000,-21.749337223094503,L, + 109692125250,-21.261451688039315,L, + 111616548500,-20.822017807408837,L, + 113540971750,-20.429199967863628,L, + 115465395000,-20.074950499014133,L, + 117389818250,-19.744430814888521,L, + 119314241500,-19.428729226167231,L, + 121238664750,-19.123438553288317,L, + 123163088000,-18.825976984745520,L, + 125087511250,-18.534689907212403,L, + 127011934500,-18.248433264002994,L, + 128936357750,-17.966392555058771,L, + 130860781000,-17.687939402976092,L, + 132785204250,-17.412592279418469,L, + 134709627500,-17.139980646623435,L, + 136634050750,-16.869786900794583,L, + 138558474000,-16.601768570216375,L, + 140482897250,-16.335708796382665,L, + 142407320500,-16.071431701922325,L, + 144331743750,-15.808781900031741,L, + 146256167000,-15.547636447305848,L, + 148180590250,-15.287875815434175,L, + 150105013500,-15.029409504410216,L, + 152029436750,-14.772135061396423,L, + 153953860000,-14.515992722237558,L, + 155878283250,-14.260900524663580,L, + 157802706500,-14.006804680934778,L, + 159727129750,-13.753641158027680,L, + 161651553000,-13.501367267259974,L, + 163575976250,-13.249937758628413,L, + 165500399500,-12.999308235903385,L, + 167424822750,-12.749443694365398,L, + 169349246000,-12.500307421747664,L, + 171273669250,-12.251864413330685,L, + 173198092500,-12.004096739867890,L, + 175122515750,-11.756967689092489,L, + 177046939000,-11.510457624210622,L, + 178971362250,-11.264541785786543,L, + 180895785500,-11.019198829479098,L, + 182820208750,-10.774409972268071,L, + 184744632000,-10.530157284906888,L, + 186669055250,-10.286425399469918,L, + 188593478500,-10.043193825389652,L, + 190517901750,-9.800452317382332,L, + 192442325000,-9.558187215069621,L, + 194366748250,-9.316382296752238,L, + 196291171500,-9.075027317146429,L, + 198215594750,-8.834113738515731,L, + 200140018000,-8.593627900481806,L, + 202064441250,-8.353561265308189,L, + 203988864500,-8.113906149032065,L, + 205913287750,-7.874650598822385,L, + 207837711000,-7.635790345810920,L, + 209762134250,-7.397317706034852,L, + 211686557500,-7.159224568644543,L, + 213610980750,-6.921506664771761,L, + 215535404000,-6.684156737340513,L, + 217459827250,-6.447168809935274,L, + 219384250500,-6.210539894348284,L, + 221308673750,-5.974264867937666,L, + 223233097000,-5.738339888722009,L, + 225157520250,-5.502761968493553,L, + 227081943500,-5.267525557723598,L, + 229006366750,-5.032634071506727,L, + 230930790000,-4.798076410785541,L, + 232855213250,-4.563858125088739,L, + 234779636500,-4.329974518661267,L, + 236704059750,-4.096426018389948,L, + 238628483000,-3.863211343614314,L, + 240552906250,-3.630332201881656,L, + 242477329500,-3.397786672201270,L, + 244401752750,-3.165574754573156,L, + 246326176000,-2.933701144752369,L, + 248250599250,-2.702167336842790,L, + 250175022500,-2.470976319052180,L, + 252099445750,-2.240127664493717,L, + 254023869000,-2.009630551234097,L, + 255948292250,-1.779485406160144,L, + 257872715500,-1.549700767008320,L, + 259797138750,-1.320283997576325,L, + 261721562000,-1.091241394444798,L, + 263645985250,-0.862581175185086,L, + 265570408500,-0.634315345989089,L, + 267494831750,-0.406451724221755,L, + 269419255000,-0.179011560842747,L, + 271343678250,0.047996586401150,L, + 273268101500,0.274551379838889,L, + 275192524750,0.500630668046413,L, + 277116948000,0.726212126176893,L, + 279041371250,0.951265418585462,L, + 280965794500,1.175759115729766,L, + 282890217750,1.399647487358879,L, + 284814641000,1.622885603634667,L, + 286739064250,1.845412953349951,L, + 288663487500,2.067156752301389,L, + 290587910750,2.288017749302604,L, + 292512334000,2.507890076421461,L, + 294436757250,2.726604686476003,L, + 296361180500,2.943950270488782,L, + 298285603750,3.159609224663393,L, + 300210027000,3.373119444013804,L, + 302134450250,3.583685424945120,L, + 304058873500,3.789773576545266,L, + 305983296750,3.987535727547177,L, + 307907720000,4.148650071670614,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -17.588964839260871 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-17.588964839260871,L, + 1924423250,-17.545442873869614,L, + 3848846500,-17.421498846096153,L, + 5773269750,-17.225757577314919,L, + 7697693000,-16.965397596343575,L, + 9622116250,-16.646497771543430,L, + 11546539500,-16.274250754230980,L, + 13470962750,-15.853132025859862,L, + 15395386000,-15.387053577277202,L, + 17319809250,-14.879464654013848,L, + 19244232500,-14.333409812892331,L, + 21168655750,-13.751628813543467,L, + 23093079000,-13.136593330673152,L, + 25017502250,-12.490560741802071,L, + 26941925500,-11.815599740475088,L, + 28866348750,-11.113657784379301,L, + 30790772000,-10.386561949117686,L, + 32715195250,-9.636081253685273,L, + 34639618500,-8.863951419904890,L, + 36564041750,-8.071922683751350,L, + 38488465000,-7.261819559506688,L, + 40412888250,-6.435633047313963,L, + 42337311500,-5.595627354883029,L, + 44261734750,-4.744569135714561,L, + 46186158000,-3.886051069311981,L, + 48110581250,-3.025207750383837,L, + 50035004500,-2.170226014424026,L, + 51959427750,-1.336357246962340,L, + 53883851000,-0.560468247817516,L, + 55808274250,-0.024738941838697,L, + 57732697500,-0.000005122641878,L, + 59657120750,-0.871886454155569,L, + 61581544000,-2.190780614957503,L, + 63505967250,-3.620834823840767,L, + 65430390500,-5.093903002795769,L, + 67354813750,-6.581760675737944,L, + 69279237000,-8.069274277900680,L, + 71203660250,-9.546978020868000,L, + 73128083500,-11.008270526807094,L, + 75052506750,-12.448127337809781,L, + 76976930000,-13.862450340374057,L, + 78901353250,-15.247681859716000,L, + 80825776500,-16.600576702206208,L, + 82750199750,-17.918062136491830,L, + 84674623000,-19.197103851034090,L, + 86599046250,-20.434647043726706,L, + 88523469500,-21.627536167173133,L, + 90447892750,-22.772439796605706,L, + 92372316000,-23.865814771392483,L, + 94296739250,-24.903817402578046,L, + 96221162500,-25.882252246464724,L, + 98145585750,-26.796491849889833,L, + 100070009000,-27.641350391726053,L, + 101994432250,-28.411020503631590,L, + 103918855500,-29.098900807773635,L, + 105843278750,-29.697423454551821,L, + 107767702000,-30.197847509375841,L, + 109692125250,-30.589948179058201,L, + 111616548500,-30.861591632538385,L, + 113540971750,-30.998294453681410,L, + 115465395000,-31.061139024234606,L, + 117389818250,-31.122426311657044,L, + 119314241500,-31.182224617840419,L, + 121238664750,-31.240568093730584,L, + 123163088000,-31.297535286502995,L, + 125087511250,-31.353156932008915,L, + 127011934500,-31.407497917045458,L, + 128936357750,-31.460599222747643,L, + 130860781000,-31.512501830250496,L, + 132785204250,-31.563239890499862,L, + 134709627500,-31.612854384630765,L, + 136634050750,-31.661382878683636,L, + 138558474000,-31.708859523604325,L, + 140482897250,-31.755311640149515,L, + 142407320500,-31.800763133981299,L, + 144331743750,-31.845258401329286,L, + 146256167000,-31.888821347855565,L, + 148180590250,-31.931472464127648,L, + 150105013500,-31.973239070902213,L, + 152029436750,-32.014134828557609,L, + 153953860000,-32.054193888039677,L, + 155878283250,-32.093429909726758,L, + 157802706500,-32.131873629470121,L, + 159727129750,-32.169535292553512,L, + 161651553000,-32.206425144260699,L, + 163575976250,-32.242584165726697,L, + 165500399500,-32.278008941856918,L, + 167424822750,-32.312730208502629,L, + 169349246000,-32.346751380758413,L, + 171273669250,-32.380096364286366,L, + 173198092500,-32.412771989275662,L, + 175122515750,-32.444798746293806,L, + 177046939000,-32.476180050435381,L, + 178971362250,-32.506946637551657,L, + 180895785500,-32.537084847264296,L, + 182820208750,-32.566635660708315,L, + 184744632000,-32.595588832599958,L, + 186669055250,-32.623958023317563,L, + 188593478500,-32.651763723428644,L, + 190517901750,-32.679012763122373,L, + 192442325000,-32.705701727304159,L, + 194366748250,-32.731854521636102,L, + 196291171500,-32.757477976307364,L, + 198215594750,-32.782582336601713,L, + 200140018000,-32.807164187424554,L, + 202064441250,-32.831240604248812,L, + 203988864500,-32.854821832358247,L, + 205913287750,-32.877911286847443,L, + 207837711000,-32.900522628094741,L, + 209762134250,-32.922645610816375,L, + 211686557500,-32.944293895390700,L, + 213610980750,-32.965494802574391,L, + 215535404000,-32.986231256894520,L, + 217459827250,-33.006510088540260,L, + 219384250500,-33.026355203173701,L, + 221308673750,-33.045749525321924,L, + 223233097000,-33.064710130457854,L, + 225157520250,-33.083240433676075,L, + 227081943500,-33.101350680260332,L, + 229006366750,-33.119034040021475,L, + 230930790000,-33.136304173337827,L, + 232855213250,-33.153164495303976,L, + 234779636500,-33.169618421014512,L, + 236704059750,-33.185665950469435,L, + 238628483000,-33.201313913857916,L, + 240552906250,-33.216565726274531,L, + 242477329500,-33.231417972624698,L, + 244401752750,-33.245894558570519,L, + 246326176000,-33.259978408639071,L, + 248250599250,-33.273672937924921,L, + 250175022500,-33.286995221901016,L, + 252099445750,-33.299935015283587,L, + 254023869000,-33.312495733167218,L, + 255948292250,-33.324680790646504,L, + 257872715500,-33.336497017910609,L, + 259797138750,-33.347934169675781,L, + 261721562000,-33.359005906320355,L, + 263645985250,-33.369708812749749,L, + 265570408500,-33.380049719153135,L, + 267494831750,-33.390011550057586,L, + 269419255000,-33.399614796030605,L, + 271343678250,-33.408842381599285,L, + 273268101500,-33.417701136952779,L, + 275192524750,-33.426197892280257,L, + 277116948000,-33.434318987203390,L, + 279041371250,-33.442071251911344,L, + 280965794500,-33.449437610931192,L, + 282890217750,-33.456431724641277,L, + 284814641000,-33.463046762852429,L, + 286739064250,-33.469272480280885,L, + 288663487500,-33.475098631642894,L, + 290587910750,-33.480528632033050,L, + 292512334000,-33.485545405978414,L, + 294436757250,-33.490145538384411,L, + 296361180500,-33.494305123588944,L, + 298285603750,-33.498007086119088,L, + 300210027000,-33.501230935407328,L, + 302134450250,-33.503932275224066,L, + 304058873500,-33.506066709339692,L, + 305983296750,-33.507538615105823,L, + 307907720000,-33.508126011374443,L, + 309832143250,-30.971086395122704,L, + 344471761750,-30.971086395122704,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000024914739697 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024914739697,L, + 1924423250,0.000024903212761,L, + 3848846500,0.000024870392735,L, + 5773269750,0.000024818562451,L, + 7697693000,0.000024749628210,L, + 9622116250,0.000024665208912,L, + 11546539500,0.000024566676075,L, + 13470962750,0.000024455224775,L, + 15395386000,0.000024331893655,L, + 17319809250,0.000024197599487,L, + 19244232500,0.000024053151719,L, + 21168655750,0.000023899285225,L, + 23093079000,0.000023736651201,L, + 25017502250,0.000023565855372,L, + 26941925500,0.000023387456167,L, + 28866348750,0.000023201975637,L, + 30790772000,0.000023009904908,L, + 32715195250,0.000022811720555,L, + 34639618500,0.000022607890060,L, + 36564041750,0.000022398893634,L, + 38488465000,0.000022185240596,L, + 40412888250,0.000021967467546,L, + 42337311500,0.000021746209313,L, + 44261734750,0.000021522235329,L, + 46186158000,0.000021296553314,L, + 48110581250,0.000021070605726,L, + 50035004500,0.000020846697225,L, + 51959427750,0.000020629131541,L, + 53883851000,0.000020428286007,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005785107613,L, + 61581544000,0.252660751342773,L, + 63505967250,0.263727933168411,L, + 65430390500,0.272284507751465,L, + 67354813750,0.279199153184891,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487458705902,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415779352188,L, + 82750199750,0.307393580675125,L, + 84674623000,0.309100538492203,L, + 86599046250,0.310568481683731,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312890946865082,L, + 92372316000,0.313789218664169,L, + 94296739250,0.314536839723587,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327750682831,L, + 103918855500,0.316543012857437,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830247640610,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851407289505,L, + 115465395000,0.316829293966293,L, + 117389818250,0.316763669252396,L, + 119314241500,0.316656142473221,L, + 121238664750,0.316507935523987,L, + 123163088000,0.316320061683655,L, + 125087511250,0.316093772649765,L, + 127011934500,0.315830111503601,L, + 128936357750,0.315529912710190,L, + 130860781000,0.315194129943848,L, + 132785204250,0.314823627471924,L, + 134709627500,0.314419120550156,L, + 136634050750,0.313981354236603,L, + 138558474000,0.313510894775391,L, + 140482897250,0.313008546829224,L, + 142407320500,0.312474846839905,L, + 144331743750,0.311910182237625,L, + 146256167000,0.311315268278122,L, + 148180590250,0.310690462589264,L, + 150105013500,0.310036242008209,L, + 152029436750,0.309352993965149,L, + 153953860000,0.308641076087952,L, + 155878283250,0.307900875806808,L, + 157802706500,0.307132661342621,L, + 159727129750,0.306336820125580,L, + 161651553000,0.305513560771942,L, + 163575976250,0.304663121700287,L, + 165500399500,0.303785681724548,L, + 167424822750,0.302881509065628,L, + 169349246000,0.301950812339783,L, + 171273669250,0.300993651151657,L, + 173198092500,0.300010204315186,L, + 175122515750,0.299000561237335,L, + 177046939000,0.297964841127396,L, + 178971362250,0.296903073787689,L, + 180895785500,0.295815378427505,L, + 182820208750,0.294701665639877,L, + 184744632000,0.293562114238739,L, + 186669055250,0.292396545410156,L, + 188593478500,0.291205018758774,L, + 190517901750,0.289987504482269,L, + 192442325000,0.288743883371353,L, + 194366748250,0.287474006414413,L, + 196291171500,0.286177903413773,L, + 198215594750,0.284855306148529,L, + 200140018000,0.283506125211716,L, + 202064441250,0.282130181789398,L, + 203988864500,0.280727207660675,L, + 205913287750,0.279297113418579,L, + 207837711000,0.277839392423630,L, + 209762134250,0.276354044675827,L, + 211686557500,0.274840533733368,L, + 213610980750,0.273298650979996,L, + 215535404000,0.271727949380875,L, + 217459827250,0.270128130912781,L, + 219384250500,0.268498659133911,L, + 221308673750,0.266839027404785,L, + 223233097000,0.265148788690567,L, + 225157520250,0.263427436351776,L, + 227081943500,0.261674225330353,L, + 229006366750,0.259888619184494,L, + 230930790000,0.258069932460785,L, + 232855213250,0.256217300891876,L, + 234779636500,0.254330009222031,L, + 236704059750,0.252407133579254,L, + 238628483000,0.250447750091553,L, + 240552906250,0.248450726270676,L, + 242477329500,0.246415123343468,L, + 244401752750,0.244339615106583,L, + 246326176000,0.242222949862480,L, + 248250599250,0.240063652396202,L, + 250175022500,0.237860262393951,L, + 252099445750,0.235610991716385,L, + 254023869000,0.233314037322998,L, + 255948292250,0.230967432260513,L, + 257872715500,0.228568926453590,L, + 259797138750,0.226116046309471,L, + 261721562000,0.223606154322624,L, + 263645985250,0.221036255359650,L, + 265570408500,0.218402981758118,L, + 267494831750,0.215702682733536,L, + 269419255000,0.212931141257286,L, + 271343678250,0.210083678364754,L, + 273268101500,0.207154959440231,L, + 275192524750,0.204138860106468,L, + 277116948000,0.201028406620026,L, + 279041371250,0.197815418243408,L, + 280965794500,0.194490477442741,L, + 282890217750,0.191042259335518,L, + 284814641000,0.187457337975502,L, + 286739064250,0.183719426393509,L, + 288663487500,0.179808422923088,L, + 290587910750,0.175699099898338,L, + 292512334000,0.171359047293663,L, + 294436757250,0.166745409369469,L, + 296361180500,0.161799445748329,L, + 298285603750,0.156436949968338,L, + 300210027000,0.150529161095619,L, + 302134450250,0.143860802054405,L, + 304058873500,0.136016324162483,L, + 305983296750,0.125945419073105,L, + 307907720000,0.106410577893257,L, + 309832143250,0.000044941898523,L, + 344471761750,0.000044941898523,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000021815298169 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000021815298169,L, + 1924423250,0.000021811505576,L, + 3848846500,0.000021800708055,L, + 5773269750,0.000021783653210,L, + 7697693000,0.000021760975869,L, + 9622116250,0.000021733194444,L, + 11546539500,0.000021700774596,L, + 13470962750,0.000021664103770,L, + 15395386000,0.000021623523935,L, + 17319809250,0.000021579337044,L, + 19244232500,0.000021531810489,L, + 21168655750,0.000021481182557,L, + 23093079000,0.000021427667889,L, + 25017502250,0.000021371472030,L, + 26941925500,0.000021312775061,L, + 28866348750,0.000021251742510,L, + 30790772000,0.000021188545361,L, + 32715195250,0.000021123336410,L, + 34639618500,0.000021056270270,L, + 36564041750,0.000020987507014,L, + 38488465000,0.000020917204893,L, + 40412888250,0.000020845549443,L, + 42337311500,0.000020772749849,L, + 44261734750,0.000020699055312,L, + 46186158000,0.000020624798708,L, + 48110581250,0.000020550454792,L, + 50035004500,0.000020476778445,L, + 51959427750,0.000020405195755,L, + 53883851000,0.000020339110051,L, + 55808274250,0.000020295379727,L, + 57732697500,0.206803932785988,L, + 59657120750,0.233176037669182,L, + 61581544000,0.246348828077316,L, + 63505967250,0.255807787179947,L, + 65430390500,0.263269215822220,L, + 67354813750,0.269431799650192,L, + 69279237000,0.274662673473358,L, + 71203660250,0.279183000326157,L, + 73128083500,0.283138424158096,L, + 75052506750,0.286631107330322,L, + 76976930000,0.289735853672028,L, + 78901353250,0.292509585618973,L, + 80825776500,0.294996827840805,L, + 82750199750,0.297233581542969,L, + 84674623000,0.299249053001404,L, + 86599046250,0.301067918539047,L, + 88523469500,0.302711188793182,L, + 90447892750,0.304197072982788,L, + 92372316000,0.305541932582855,L, + 94296739250,0.306760519742966,L, + 96221162500,0.307866960763931,L, + 98145585750,0.308874756097794,L, + 100070009000,0.309798061847687,L, + 101994432250,0.310652285814285,L, + 103918855500,0.311455786228180,L, + 105843278750,0.312232583761215,L, + 107767702000,0.313018739223480,L, + 109692125250,0.313877254724503,L, + 111616548500,0.314952075481415,L, + 113540971750,0.316851407289505,L, + 115465395000,0.315495759248734,L, + 117389818250,0.313826978206635,L, + 119314241500,0.312095165252686,L, + 121238664750,0.310327798128128,L, + 123163088000,0.308535605669022,L, + 125087511250,0.306724369525909,L, + 127011934500,0.304897457361221,L, + 128936357750,0.303057014942169,L, + 130860781000,0.301204681396484,L, + 132785204250,0.299341559410095,L, + 134709627500,0.297468602657318,L, + 136634050750,0.295586377382278,L, + 138558474000,0.293695449829102,L, + 140482897250,0.291796296834946,L, + 142407320500,0.289889067411423,L, + 144331743750,0.287974268198013,L, + 146256167000,0.286052107810974,L, + 148180590250,0.284122675657272,L, + 150105013500,0.282186090946198,L, + 152029436750,0.280242621898651,L, + 153953860000,0.278292238712311,L, + 155878283250,0.276335030794144,L, + 157802706500,0.274371176958084,L, + 159727129750,0.272400587797165,L, + 161651553000,0.270423412322998,L, + 163575976250,0.268439561128616,L, + 165500399500,0.266449064016342,L, + 167424822750,0.264452010393143,L, + 169349246000,0.262448191642761,L, + 171273669250,0.260437905788422,L, + 173198092500,0.258420735597610,L, + 175122515750,0.256396859884262,L, + 177046939000,0.254366278648376,L, + 178971362250,0.252328783273697,L, + 180895785500,0.250284373760223,L, + 182820208750,0.248232975602150,L, + 184744632000,0.246174544095993,L, + 186669055250,0.244108930230141,L, + 188593478500,0.242036089301109,L, + 190517901750,0.239955887198448,L, + 192442325000,0.237868204712868,L, + 194366748250,0.235772967338562,L, + 196291171500,0.233670026063919,L, + 198215594750,0.231559202075005,L, + 200140018000,0.229440435767174,L, + 202064441250,0.227313444018364,L, + 203988864500,0.225178211927414,L, + 205913287750,0.223034471273422,L, + 207837711000,0.220882058143616,L, + 209762134250,0.218720808625221,L, + 211686557500,0.216550424695015,L, + 213610980750,0.214370802044868,L, + 215535404000,0.212181657552719,L, + 217459827250,0.209982737898827,L, + 219384250500,0.207773774862289,L, + 221308673750,0.205554500222206,L, + 223233097000,0.203324601054192,L, + 225157520250,0.201083824038506,L, + 227081943500,0.198831766843796,L, + 229006366750,0.196568146348000,L, + 230930790000,0.194292470812798,L, + 232855213250,0.192004442214966,L, + 234779636500,0.189703613519669,L, + 236704059750,0.187389492988586,L, + 238628483000,0.185061588883400,L, + 240552906250,0.182719439268112,L, + 242477329500,0.180362313985825,L, + 244401752750,0.177989810705185,L, + 246326176000,0.175601109862328,L, + 248250599250,0.173195585608482,L, + 250175022500,0.170772477984428,L, + 252099445750,0.168330833315849,L, + 254023869000,0.165869876742363,L, + 255948292250,0.163388535380363,L, + 257872715500,0.160885766148567,L, + 259797138750,0.158360347151756,L, + 261721562000,0.155810981988907,L, + 263645985250,0.153236180543900,L, + 265570408500,0.150634378194809,L, + 267494831750,0.148003727197647,L, + 269419255000,0.145342245697975,L, + 271343678250,0.142647653818130,L, + 273268101500,0.139917373657227,L, + 275192524750,0.137148424983025,L, + 277116948000,0.134337455034256,L, + 279041371250,0.131480574607849,L, + 280965794500,0.128573104739189,L, + 282890217750,0.125609710812569,L, + 284814641000,0.122583873569965,L, + 286739064250,0.119487740099430,L, + 288663487500,0.116311661899090,L, + 290587910750,0.113043360412121,L, + 292512334000,0.109667278826237,L, + 294436757250,0.106162600219250,L, + 296361180500,0.102500997483730,L, + 298285603750,0.098641544580460,L, + 300210027000,0.094521664083004,L, + 302134450250,0.090036526322365,L, + 304058873500,0.084982611238956,L, + 305983296750,0.078841231763363,L, + 307907720000,0.067696742713451,L, + 309832143250,0.000028520820706,L, + 344471761750,0.000028520820706,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000024437904358 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000024437904358,L, + 1924423250,0.000024427567041,L, + 3848846500,0.000024398130336,L, + 5773269750,0.000024351653337,L, + 7697693000,0.000024289834982,L, + 9622116250,0.000024214125006,L, + 11546539500,0.000024125769414,L, + 13470962750,0.000024025823222,L, + 15395386000,0.000023915221391,L, + 17319809250,0.000023794793378,L, + 19244232500,0.000023665254048,L, + 21168655750,0.000023527269150,L, + 23093079000,0.000023381422579,L, + 25017502250,0.000023228260034,L, + 26941925500,0.000023068278097,L, + 28866348750,0.000022901942430,L, + 30790772000,0.000022729698685,L, + 32715195250,0.000022551965230,L, + 34639618500,0.000022369182261,L, + 36564041750,0.000022181760869,L, + 38488465000,0.000021990155801,L, + 40412888250,0.000021794867280,L, + 42337311500,0.000021596446459,L, + 44261734750,0.000021395591830,L, + 46186158000,0.000021193203793,L, + 48110581250,0.000020990579287,L, + 50035004500,0.000020789782866,L, + 51959427750,0.000020594679881,L, + 53883851000,0.000020414567189,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005800008774,L, + 61581544000,0.252660721540451,L, + 63505967250,0.263727903366089,L, + 65430390500,0.272284507751465,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934073686600,L, + 71203660250,0.289769828319550,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487458705902,L, + 78901353250,0.303129136562347,L, + 80825776500,0.305415779352188,L, + 82750199750,0.307393610477448,L, + 84674623000,0.309100538492203,L, + 86599046250,0.310568422079086,L, + 88523469500,0.311824172735214,L, + 90447892750,0.312890976667404,L, + 92372316000,0.313789218664169,L, + 94296739250,0.314536839723587,L, + 96221162500,0.315150260925293,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327720880508,L, + 103918855500,0.316543012857437,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781848669052,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851407289505,L, + 115465395000,0.316826760768890,L, + 117389818250,0.316753745079041,L, + 119314241500,0.316634118556976,L, + 121238664750,0.316469281911850,L, + 123163088000,0.316260606050491,L, + 125087511250,0.316009342670441,L, + 127011934500,0.315716743469238,L, + 128936357750,0.315383911132812,L, + 130860781000,0.315011799335480,L, + 132785204250,0.314601510763168,L, + 134709627500,0.314153820276260,L, + 136634050750,0.313669651746750,L, + 138558474000,0.313149839639664,L, + 140482897250,0.312595009803772,L, + 142407320500,0.312005877494812,L, + 144331743750,0.311383128166199,L, + 146256167000,0.310727417469025,L, + 148180590250,0.310039311647415,L, + 150105013500,0.309319138526917,L, + 152029436750,0.308567643165588,L, + 153953860000,0.307785183191299,L, + 155878283250,0.306972175836563,L, + 157802706500,0.306129038333893,L, + 159727129750,0.305256128311157,L, + 161651553000,0.304353803396225,L, + 163575976250,0.303422331809998,L, + 165500399500,0.302462071180344,L, + 167424822750,0.301473289728165,L, + 169349246000,0.300456166267395,L, + 171273669250,0.299410969018936,L, + 173198092500,0.298337787389755,L, + 175122515750,0.297236979007721,L, + 177046939000,0.296108484268188,L, + 178971362250,0.294952601194382,L, + 180895785500,0.293769329786301,L, + 182820208750,0.292558819055557,L, + 184744632000,0.291321128606796,L, + 186669055250,0.290056198835373,L, + 188593478500,0.288764148950577,L, + 190517901750,0.287444978952408,L, + 192442325000,0.286098688840866,L, + 194366748250,0.284725159406662,L, + 196291171500,0.283324360847473,L, + 198215594750,0.281896203756332,L, + 200140018000,0.280440568923950,L, + 202064441250,0.278957337141037,L, + 203988864500,0.277446419000626,L, + 205913287750,0.275907546281815,L, + 207837711000,0.274340480566025,L, + 209762134250,0.272745072841644,L, + 211686557500,0.271121054887772,L, + 213610980750,0.269468128681183,L, + 215535404000,0.267785936594009,L, + 217459827250,0.266074150800705,L, + 219384250500,0.264332413673401,L, + 221308673750,0.262560218572617,L, + 223233097000,0.260757267475128,L, + 225157520250,0.258922934532166,L, + 227081943500,0.257056683301926,L, + 229006366750,0.255157977342606,L, + 230930790000,0.253226161003113,L, + 232855213250,0.251260548830032,L, + 234779636500,0.249260351061821,L, + 236704059750,0.247224867343903,L, + 238628483000,0.245153129100800,L, + 240552906250,0.243044212460518,L, + 242477329500,0.240897074341774,L, + 244401752750,0.238710626959801,L, + 246326176000,0.236483648419380,L, + 248250599250,0.234214827418327,L, + 250175022500,0.231902748346329,L, + 252099445750,0.229545772075653,L, + 254023869000,0.227142214775085,L, + 255948292250,0.224690213799477,L, + 257872715500,0.222187668085098,L, + 259797138750,0.219632327556610,L, + 261721562000,0.217021614313126,L, + 263645985250,0.214352801442146,L, + 265570408500,0.211622759699821,L, + 267494831750,0.208827927708626,L, + 269419255000,0.205964490771294,L, + 271343678250,0.203027993440628,L, + 273268101500,0.200013399124146,L, + 275192524750,0.196915000677109,L, + 277116948000,0.193726226687431,L, + 279041371250,0.190439388155937,L, + 280965794500,0.187045618891716,L, + 282890217750,0.183534309267998,L, + 284814641000,0.179892778396606,L, + 286739064250,0.176105767488480,L, + 288663487500,0.172154322266579,L, + 290587910750,0.168014779686928,L, + 292512334000,0.163656637072563,L, + 294436757250,0.159039616584778,L, + 296361180500,0.154108479619026,L, + 298285603750,0.148784071207047,L, + 300210027000,0.142945423722267,L, + 302134450250,0.136390224099159,L, + 304058873500,0.128728121519089,L, + 305983296750,0.118972577154636,L, + 307907720000,0.100327968597412,L, + 309832143250,0.000042378902435,L, + 344471761750,0.000042378902435,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_054" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.004634141921997 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.004634141921997,L, + 1924423250,0.004905223846436,L, + 3848846500,0.005729675292969,L, + 5773269750,0.007117629051208,L, + 7697693000,0.009068131446838,L, + 9622116250,0.011564970016479,L, + 11546539500,0.014574170112610,L, + 13470962750,0.018040299415588,L, + 15395386000,0.021886348724365,L, + 17319809250,0.026015520095825,L, + 19244232500,0.030316352844238,L, + 21168655750,0.034669637680054,L, + 23093079000,0.038957238197327,L, + 25017502250,0.043070554733276,L, + 26941925500,0.046915888786316,L, + 28866348750,0.050418734550476,L, + 30790772000,0.053524732589722,L, + 32715195250,0.056197404861450,L, + 34639618500,0.058416962623596,L, + 36564041750,0.060176134109497,L, + 38488465000,0.061686396598816,L, + 40412888250,0.063158273696899,L, + 42337311500,0.064589619636536,L, + 44261734750,0.065978527069092,L, + 46186158000,0.067322731018066,L, + 48110581250,0.068620562553406,L, + 50035004500,0.069869875907898,L, + 51959427750,0.071068763732910,L, + 53883851000,0.072215318679810,L, + 55808274250,0.073308229446411,L, + 57732697500,0.074345469474792,L, + 59657120750,0.075326085090637,L, + 61581544000,0.076248884201050,L, + 63505967250,0.077113032341003,L, + 65430390500,0.077918171882629,L, + 67354813750,0.078664302825928,L, + 69279237000,0.079351544380188,L, + 71203660250,0.079980611801147,L, + 73128083500,0.080552935600281,L, + 75052506750,0.081069588661194,L, + 76976930000,0.081532835960388,L, + 78901353250,0.081944704055786,L, + 80825776500,0.082308173179626,L, + 82750199750,0.082625746726990,L, + 84674623000,0.082900524139404,L, + 86599046250,0.083135962486267,L, + 88523469500,0.083335041999817,L, + 90447892750,0.083501577377319,L, + 92372316000,0.083638787269592,L, + 94296739250,0.083749771118164,L, + 96221162500,0.083837985992432,L, + 98145585750,0.083906292915344,L, + 100070009000,0.083957791328430,L, + 101994432250,0.083995103836060,L, + 103918855500,0.084020972251892,L, + 105843278750,0.084037780761719,L, + 107767702000,0.084047555923462,L, + 109692125250,0.084052324295044,L, + 111616548500,0.084054112434387,L, + 113540971750,0.084054350852966,L, + 140482897250,0.084054350852966,L, + 142407320500,0.084131360054016,L, + 144331743750,0.084363460540771,L, + 146256167000,0.084747910499573,L, + 148180590250,0.085271596908569,L, + 150105013500,0.085909128189087,L, + 152029436750,0.086621761322021,L, + 153953860000,0.087360739707947,L, + 155878283250,0.088073372840881,L, + 157802706500,0.088710784912109,L, + 159727129750,0.089234590530396,L, + 161651553000,0.089619040489197,L, + 163575976250,0.089851379394531,L, + 165500399500,0.089928150177002,L, + 167424822750,0.089921712875366,L, + 169349246000,0.089902520179749,L, + 171273669250,0.089870333671570,L, + 173198092500,0.089825391769409,L, + 175122515750,0.089767336845398,L, + 177046939000,0.089696049690247,L, + 178971362250,0.089612126350403,L, + 180895785500,0.089515328407288,L, + 182820208750,0.089406132698059,L, + 184744632000,0.089284420013428,L, + 186669055250,0.089151024818420,L, + 188593478500,0.089006185531616,L, + 190517901750,0.088850498199463,L, + 192442325000,0.088684558868408,L, + 194366748250,0.088509202003479,L, + 196291171500,0.088325381278992,L, + 198215594750,0.088133811950684,L, + 200140018000,0.087935447692871,L, + 202064441250,0.087731599807739,L, + 203988864500,0.087523221969604,L, + 205913287750,0.087311744689941,L, + 207837711000,0.087098360061646,L, + 209762134250,0.086884260177612,L, + 211686557500,0.086670875549316,L, + 213610980750,0.086459279060364,L, + 215535404000,0.086251139640808,L, + 217459827250,0.086047172546387,L, + 219384250500,0.085848808288574,L, + 221308673750,0.085657119750977,L, + 223233097000,0.085473299026489,L, + 225157520250,0.085297942161560,L, + 227081943500,0.085131883621216,L, + 229006366750,0.084976315498352,L, + 230930790000,0.084831476211548,L, + 232855213250,0.084698081016541,L, + 234779636500,0.084576487541199,L, + 236704059750,0.084467172622681,L, + 238628483000,0.084370374679565,L, + 240552906250,0.084286451339722,L, + 242477329500,0.084215402603149,L, + 244401752750,0.084157228469849,L, + 246326176000,0.084112048149109,L, + 248250599250,0.084079980850220,L, + 250175022500,0.084060668945312,L, + 252099445750,0.084054350852966,L, + 282890217750,0.084054350852966,L, + 284814641000,0.083739638328552,L, + 286739064250,0.082789063453674,L, + 288663487500,0.081197619438171,L, + 290587910750,0.078967690467834,L, + 292512334000,0.076111555099487,L, + 294436757250,0.072652697563171,L, + 296361180500,0.068627595901489,L, + 298285603750,0.064087152481079,L, + 300210027000,0.059097290039062,L, + 302134450250,0.053739190101624,L, + 304058873500,0.048106908798218,L, + 305983296750,0.042305469512939,L, + 307907720000,0.036446928977966,L, + 309832143250,0.030645489692688,L, + 311756566500,0.025013089179993,L, + 313680989750,0.019654989242554,L, + 315605413000,0.014665126800537,L, + 317529836250,0.010124683380127,L, + 319454259500,0.006099581718445,L, + 321378682750,0.002640604972839,L, + 323303106000,-0.000215411186218,L, + 325227529250,-0.002445220947266,L, + 327151952500,-0.004036784172058,L, + 329076375750,-0.004987359046936,L, + 331000799000,-0.005302071571350,L, + 344471761750,-0.005302071571350,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.095101118087769 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.095101118087769,L, + 1924423250,0.094581723213196,L, + 3848846500,0.092999100685120,L, + 5773269750,0.090329170227051,L, + 7697693000,0.086568236351013,L, + 9622116250,0.081739783287048,L, + 11546539500,0.075902104377747,L, + 13470962750,0.069153070449829,L, + 15395386000,0.061631560325623,L, + 17319809250,0.053515195846558,L, + 19244232500,0.045010685920715,L, + 21168655750,0.036340594291687,L, + 23093079000,0.027728319168091,L, + 25017502250,0.019380927085876,L, + 26941925500,0.011478066444397,L, + 28866348750,0.004164934158325,L, + 30790772000,-0.002450108528137,L, + 32715195250,-0.008293509483337,L, + 34639618500,-0.013321638107300,L, + 36564041750,-0.017516374588013,L, + 38488465000,-0.021255135536194,L, + 40412888250,-0.024915575981140,L, + 42337311500,-0.028492808341980,L, + 44261734750,-0.031981945037842,L, + 46186158000,-0.035378217697144,L, + 48110581250,-0.038676500320435,L, + 50035004500,-0.041871547698975,L, + 51959427750,-0.044958710670471,L, + 53883851000,-0.047932863235474,L, + 55808274250,-0.050789237022400,L, + 57732697500,-0.053523540496826,L, + 59657120750,-0.056131482124329,L, + 61581544000,-0.058609485626221,L, + 63505967250,-0.060954332351685,L, + 65430390500,-0.063163876533508,L, + 67354813750,-0.065236449241638,L, + 69279237000,-0.067170858383179,L, + 71203660250,-0.068967342376709,L, + 73128083500,-0.070626974105835,L, + 75052506750,-0.072151422500610,L, + 76976930000,-0.073543787002563,L, + 78901353250,-0.074807643890381,L, + 80825776500,-0.075947642326355,L, + 82750199750,-0.076969027519226,L, + 84674623000,-0.077877640724182,L, + 86599046250,-0.078679800033569,L, + 88523469500,-0.079382419586182,L, + 90447892750,-0.079992294311523,L, + 92372316000,-0.080517053604126,L, + 94296739250,-0.080963253974915,L, + 96221162500,-0.081338405609131,L, + 98145585750,-0.081649184226990,L, + 100070009000,-0.081902265548706,L, + 101994432250,-0.082104206085205,L, + 103918855500,-0.082261204719543,L, + 105843278750,-0.082378387451172,L, + 107767702000,-0.082461595535278,L, + 109692125250,-0.082515597343445,L, + 111616548500,-0.082544922828674,L, + 113540971750,-0.082553863525391,L, + 140482897250,-0.082553863525391,L, + 142407320500,-0.082717299461365,L, + 144331743750,-0.083211064338684,L, + 146256167000,-0.084028601646423,L, + 148180590250,-0.085142254829407,L, + 150105013500,-0.086497545242310,L, + 152029436750,-0.088012695312500,L, + 153953860000,-0.089583873748779,L, + 155878283250,-0.091099023818970,L, + 157802706500,-0.092454433441162,L, + 159727129750,-0.093567967414856,L, + 161651553000,-0.094385504722595,L, + 163575976250,-0.094879269599915,L, + 165500399500,-0.095042705535889,L, + 167424822750,-0.095029234886169,L, + 169349246000,-0.094988346099854,L, + 171273669250,-0.094920039176941,L, + 173198092500,-0.094824194908142,L, + 175122515750,-0.094700574874878,L, + 177046939000,-0.094549417495728,L, + 178971362250,-0.094370841979980,L, + 180895785500,-0.094164967536926,L, + 182820208750,-0.093932628631592,L, + 184744632000,-0.093674182891846,L, + 186669055250,-0.093390464782715,L, + 188593478500,-0.093082547187805,L, + 190517901750,-0.092751502990723,L, + 192442325000,-0.092398762702942,L, + 194366748250,-0.092025995254517,L, + 196291171500,-0.091634869575500,L, + 198215594750,-0.091227412223816,L, + 200140018000,-0.090805768966675,L, + 202064441250,-0.090372204780579,L, + 203988864500,-0.089929342269897,L, + 205913287750,-0.089479684829712,L, + 207837711000,-0.089025855064392,L, + 209762134250,-0.088570713996887,L, + 211686557500,-0.088117003440857,L, + 213610980750,-0.087667226791382,L, + 215535404000,-0.087224364280701,L, + 217459827250,-0.086790800094604,L, + 219384250500,-0.086369156837463,L, + 221308673750,-0.085961699485779,L, + 223233097000,-0.085570573806763,L, + 225157520250,-0.085197687149048,L, + 227081943500,-0.084845066070557,L, + 229006366750,-0.084514141082764,L, + 230930790000,-0.084206104278564,L, + 232855213250,-0.083922386169434,L, + 234779636500,-0.083664059638977,L, + 236704059750,-0.083431601524353,L, + 238628483000,-0.083225846290588,L, + 240552906250,-0.083047270774841,L, + 242477329500,-0.082895994186401,L, + 244401752750,-0.082772374153137,L, + 246326176000,-0.082676529884338,L, + 248250599250,-0.082608222961426,L, + 250175022500,-0.082567334175110,L, + 252099445750,-0.082553863525391,L, + 282890217750,-0.082553863525391,L, + 284814641000,-0.081858992576599,L, + 286739064250,-0.079759716987610,L, + 288663487500,-0.076245307922363,L, + 290587910750,-0.071321368217468,L, + 292512334000,-0.065014600753784,L, + 294436757250,-0.057376742362976,L, + 296361180500,-0.048488378524780,L, + 298285603750,-0.038462162017822,L, + 300210027000,-0.027443766593933,L, + 302134450250,-0.015611886978149,L, + 304058873500,-0.003174662590027,L, + 305983296750,0.009635925292969,L, + 307907720000,0.022572994232178,L, + 309832143250,0.035383582115173,L, + 311756566500,0.047820687294006,L, + 313680989750,0.059652686119080,L, + 315605413000,0.070671081542969,L, + 317529836250,0.080697298049927,L, + 319454259500,0.089585661888123,L, + 321378682750,0.097223520278931,L, + 323303106000,0.103530287742615,L, + 325227529250,0.108454227447510,L, + 327151952500,0.111968636512756,L, + 329076375750,0.114067912101746,L, + 331000799000,0.114762783050537,L, + 344471761750,0.114762783050537,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.105131685733795 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.105131685733795,L, + 1924423250,0.105484127998352,L, + 3848846500,0.106549859046936,L, + 5773269750,0.108330845832825,L, + 7697693000,0.110812246799469,L, + 9622116250,0.113957583904266,L, + 11546539500,0.117704033851624,L, + 13470962750,0.121960520744324,L, + 15395386000,0.126606941223145,L, + 17319809250,0.131498694419861,L, + 19244232500,0.136474311351776,L, + 21168655750,0.141366064548492,L, + 23093079000,0.146012485027313,L, + 25017502250,0.150268971920013,L, + 26941925500,0.154015421867371,L, + 28866348750,0.157160758972168,L, + 30790772000,0.159642159938812,L, + 32715195250,0.161423146724701,L, + 34639618500,0.162488877773285,L, + 36564041750,0.162841439247131,L, + 38488465000,0.162282049655914,L, + 40412888250,0.160591542720795,L, + 42337311500,0.157762885093689,L, + 44261734750,0.153807580471039,L, + 46186158000,0.148760497570038,L, + 48110581250,0.142684936523438,L, + 50035004500,0.135676324367523,L, + 51959427750,0.127864539623260,L, + 53883851000,0.119413316249847,L, + 55808274250,0.110516548156738,L, + 59657120750,0.092265248298645,L, + 61581544000,0.083368420600891,L, + 63505967250,0.074917197227478,L, + 65430390500,0.067105293273926,L, + 67354813750,0.060096800327301,L, + 69279237000,0.054021298885345,L, + 71203660250,0.048974215984344,L, + 73128083500,0.045018851757050,L, + 75052506750,0.042190194129944,L, + 76976930000,0.040499746799469,L, + 78901353250,0.039940297603607,L, + 80825776500,0.039941728115082,L, + 82750199750,0.039951801300049,L, + 84674623000,0.039981544017792,L, + 86599046250,0.040043890476227,L, + 88523469500,0.040154218673706,L, + 90447892750,0.040329635143280,L, + 92372316000,0.040588438510895,L, + 94296739250,0.040948629379272,L, + 96221162500,0.041426777839661,L, + 98145585750,0.042036294937134,L, + 100070009000,0.042786180973053,L, + 101994432250,0.043680846691132,L, + 103918855500,0.044719815254211,L, + 105843278750,0.045898437500000,L, + 107767702000,0.047209143638611,L, + 109692125250,0.048642098903656,L, + 111616548500,0.050186693668365,L, + 113540971750,0.051832079887390,L, + 115465395000,0.054098546504974,L, + 117389818250,0.057515859603882,L, + 119314241500,0.062049388885498,L, + 121238664750,0.067598223686218,L, + 123163088000,0.073979675769806,L, + 125087511250,0.080922961235046,L, + 127011934500,0.088082671165466,L, + 128936357750,0.095073819160461,L, + 130860781000,0.101520419120789,L, + 132785204250,0.107101678848267,L, + 134709627500,0.111583054065704,L, + 136634050750,0.114822149276733,L, + 138558474000,0.116759002208710,L, + 140482897250,0.117396473884583,L, + 142407320500,0.117056429386139,L, + 144331743750,0.116026341915131,L, + 146256167000,0.114315092563629,L, + 148180590250,0.111974000930786,L, + 150105013500,0.109108626842499,L, + 152029436750,0.105881810188293,L, + 153953860000,0.102502644062042,L, + 155878283250,0.099199295043945,L, + 157802706500,0.096185266971588,L, + 159727129750,0.093631684780121,L, + 161651553000,0.091653764247894,L, + 163575976250,0.090313017368317,L, + 165500399500,0.089627504348755,L, + 167424822750,0.089274942874908,L, + 169349246000,0.088938057422638,L, + 171273669250,0.088618099689484,L, + 173198092500,0.088316380977631,L, + 175122515750,0.088034152984619,L, + 177046939000,0.087772607803345,L, + 178971362250,0.087532937526703,L, + 180895785500,0.087315678596497,L, + 182820208750,0.087121546268463,L, + 184744632000,0.086950480937958,L, + 186669055250,0.086802363395691,L, + 188593478500,0.086676359176636,L, + 190517901750,0.086571395397186,L, + 192442325000,0.086485803127289,L, + 194366748250,0.086417734622955,L, + 196291171500,0.086365163326263,L, + 198215594750,0.086325943470001,L, + 200140018000,0.086297810077667,L, + 202064441250,0.086278676986694,L, + 203988864500,0.086266458034515,L, + 205913287750,0.086259484291077,L, + 207837711000,0.086256086826324,L, + 209762134250,0.086254954338074,L, + 211686557500,0.086254775524139,L, + 213610980750,0.086338698863983,L, + 215535404000,0.086592257022858,L, + 217459827250,0.087016463279724,L, + 219384250500,0.087608933448792,L, + 221308673750,0.088363707065582,L, + 223233097000,0.089269638061523,L, + 225157520250,0.090310454368591,L, + 227081943500,0.091463923454285,L, + 229006366750,0.092702746391296,L, + 230930790000,0.093994677066803,L, + 232855213250,0.095304727554321,L, + 234779636500,0.096596717834473,L, + 236704059750,0.097835421562195,L, + 238628483000,0.098989009857178,L, + 240552906250,0.100029766559601,L, + 242477329500,0.100935697555542,L, + 244401752750,0.101690471172333,L, + 246326176000,0.102283000946045,L, + 248250599250,0.102707207202911,L, + 250175022500,0.102960765361786,L, + 252099445750,0.103044629096985,L, + 254023869000,0.102549850940704,L, + 255948292250,0.101054072380066,L, + 257872715500,0.098561167716980,L, + 259797138750,0.095112442970276,L, + 261721562000,0.090796649456024,L, + 263645985250,0.085758447647095,L, + 265570408500,0.080198287963867,L, + 267494831750,0.074363768100739,L, + 269419255000,0.068529307842255,L, + 271343678250,0.062969207763672,L, + 273268101500,0.057930886745453,L, + 275192524750,0.053615212440491,L, + 277116948000,0.050166368484497,L, + 279041371250,0.047673523426056,L, + 280965794500,0.046177744865417,L, + 282890217750,0.045682966709137,L, + 284814641000,0.045799374580383,L, + 286739064250,0.046150982379913,L, + 288663487500,0.046739578247070,L, + 290587910750,0.047564387321472,L, + 292512334000,0.048620641231537,L, + 294436757250,0.049899935722351,L, + 296361180500,0.051388740539551,L, + 298285603750,0.053068041801453,L, + 300210027000,0.054913520812988,L, + 302134450250,0.056895256042480,L, + 304058873500,0.058978378772736,L, + 305983296750,0.061124086380005,L, + 307907720000,0.063290894031525,L, + 309832143250,0.065436601638794,L, + 311756566500,0.067519783973694,L, + 313680989750,0.069501519203186,L, + 315605413000,0.071346998214722,L, + 317529836250,0.073026359081268,L, + 319454259500,0.074515044689178,L, + 321378682750,0.075794339179993,L, + 323303106000,0.076850712299347,L, + 325227529250,0.077675402164459,L, + 327151952500,0.078264057636261,L, + 329076375750,0.078615605831146,L, + 331000799000,0.078732013702393,L, + 344471761750,0.078732013702393,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -4.750565614919000 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,-4.750565614919000,L, + 1924423250,-4.750565614919000,L, + 3848846500,-4.750566468692647,L, + 5773269750,-4.750565188032177,L, + 7697693000,-4.750566468692647,L, + 9622116250,-4.750565614919000,L, + 11546539500,-4.750566041805824,L, + 13470962750,-4.750566041805824,L, + 15395386000,-4.750565614919000,L, + 17319809250,-4.750566041805824,L, + 21168655750,-4.750566041805824,L, + 23093079000,-4.750565188032177,L, + 25017502250,-4.750566041805824,L, + 26941925500,-4.750565188032177,L, + 28866348750,-4.750566041805824,L, + 30790772000,-4.750565614919000,L, + 32715195250,-4.750566041805824,L, + 34639618500,-4.750565188032177,L, + 36564041750,-4.750565614919000,L, + 38488465000,-4.750565614919000,L, + 40412888250,-4.750565188032177,L, + 42337311500,-4.750566468692647,L, + 44261734750,-4.750565614919000,L, + 46186158000,-4.750565614919000,L, + 50035004500,-4.750564761145355,L, + 57732697500,-4.750566468692647,L, + 59657120750,-4.750565614919000,L, + 61581544000,-4.750566041805824,L, + 63505967250,-4.750565614919000,L, + 67354813750,-4.750565614919000,L, + 71203660250,-4.750566468692647,L, + 73128083500,-4.750565614919000,L, + 75052506750,-4.750566468692647,L, + 76976930000,-4.750566468692647,L, + 78901353250,-4.750566041805824,L, + 82750199750,-4.750566041805824,L, + 84674623000,-4.750565614919000,L, + 86599046250,-4.750566468692647,L, + 88523469500,-4.750565188032177,L, + 90447892750,-4.750566468692647,L, + 92372316000,-4.750566041805824,L, + 94296739250,-4.750566041805824,L, + 96221162500,-4.750565614919000,L, + 98145585750,-4.750565614919000,L, + 100070009000,-4.750564761145355,L, + 101994432250,-4.750565614919000,L, + 103918855500,-4.750565614919000,L, + 105843278750,-4.750565188032177,L, + 107767702000,-4.750566468692647,L, + 111616548500,-4.750565614919000,L, + 113540971750,-4.750566468692647,L, + 115465395000,-4.750565614919000,L, + 117389818250,-4.750566468692647,L, + 121238664750,-4.750565614919000,L, + 123163088000,-4.750565614919000,L, + 125087511250,-4.750566041805824,L, + 127011934500,-4.750565614919000,L, + 128936357750,-4.750566041805824,L, + 130860781000,-4.750565614919000,L, + 132785204250,-4.750566041805824,L, + 134709627500,-4.750566041805824,L, + 136634050750,-4.750565614919000,L, + 138558474000,-4.750565614919000,L, + 140482897250,-4.750567749353116,L, + 142407320500,-4.750567749353116,L, + 144331743750,-4.750566895579470,L, + 146256167000,-4.750567322466293,L, + 150105013500,-4.750567322466293,L, + 152029436750,-4.750566895579470,L, + 153953860000,-4.750567749353116,L, + 155878283250,-4.750566468692647,L, + 157802706500,-4.750566041805824,L, + 159727129750,-4.750567322466293,L, + 161651553000,-4.750566468692647,L, + 163575976250,-4.750567749353116,L, + 165500399500,-4.750567322466293,L, + 167424822750,-4.750566468692647,L, + 171273669250,-4.750566468692647,L, + 173198092500,-4.750567322466293,L, + 177046939000,-4.750567322466293,L, + 180895785500,-4.750566468692647,L, + 182820208750,-4.750567749353116,L, + 184744632000,-4.750567749353116,L, + 186669055250,-4.750566468692647,L, + 188593478500,-4.750567322466293,L, + 190517901750,-4.750566468692647,L, + 192442325000,-4.750567749353116,L, + 194366748250,-4.750567322466293,L, + 196291171500,-4.750567322466293,L, + 198215594750,-4.750566895579470,L, + 200140018000,-4.750567322466293,L, + 203988864500,-4.750567322466293,L, + 205913287750,-4.750566895579470,L, + 207837711000,-4.750567322466293,L, + 209762134250,-4.750566895579470,L, + 211686557500,-4.750567322466293,L, + 213610980750,-4.750566895579470,L, + 215535404000,-4.750567322466293,L, + 217459827250,-4.750566895579470,L, + 219384250500,-4.750567322466293,L, + 221308673750,-4.750566895579470,L, + 223233097000,-4.750567322466293,L, + 225157520250,-4.750566895579470,L, + 227081943500,-4.750566895579470,L, + 229006366750,-4.750567749353116,L, + 230930790000,-4.750567322466293,L, + 232855213250,-4.750567322466293,L, + 234779636500,-4.750566468692647,L, + 236704059750,-4.750567322466293,L, + 238628483000,-4.750566468692647,L, + 240552906250,-4.750566468692647,L, + 242477329500,-4.750567322466293,L, + 246326176000,-4.750566468692647,L, + 250175022500,-4.750566468692647,L, + 252099445750,-4.750567322466293,L, + 259797138750,-4.750567322466293,L, + 261721562000,-4.750567749353116,L, + 263645985250,-4.750566895579470,L, + 265570408500,-4.750567322466293,L, + 267494831750,-4.750566895579470,L, + 269419255000,-4.750566041805824,L, + 271343678250,-4.750567749353116,L, + 273268101500,-4.750567749353116,L, + 275192524750,-4.750566895579470,L, + 277116948000,-4.750566468692647,L, + 279041371250,-4.750568176239939,L, + 280965794500,-4.750567749353116,L, + 282890217750,-4.750566895579470,L, + 284814641000,-4.750567322466293,L, + 286739064250,-4.750567322466293,L, + 290587910750,-4.750566468692647,L, + 292512334000,-4.750567749353116,L, + 294436757250,-4.750567749353116,L, + 296361180500,-4.750566895579470,L, + 298285603750,-4.750566895579470,L, + 300210027000,-4.750567749353116,L, + 302134450250,-4.750567749353116,L, + 304058873500,-4.750566041805824,L, + 305983296750,-4.750566468692647,L, + 307907720000,-4.750567322466293,L, + 309832143250,-4.750567749353116,L, + 311756566500,-4.750567322466293,L, + 313680989750,-4.750567322466293,L, + 315605413000,-4.750566895579470,L, + 317529836250,-4.750568176239939,L, + 319454259500,-4.750566895579470,L, + 321378682750,-4.750567749353116,L, + 323303106000,-4.750567322466293,L, + 327151952500,-4.750567322466293,L, + 329076375750,-4.750566895579470,L, + 331000799000,-4.750567749353116,L, + 344471761750,-4.750567749353116,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -1.754852969248763 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,-1.754852969248763,L, + 1924423250,-1.754853396135586,L, + 3848846500,-1.754852755805351,L, + 5773269750,-1.754853502857292,L, + 7697693000,-1.754852969248763,L, + 9622116250,-1.754853289413880,L, + 11546539500,-1.754853075970469,L, + 13470962750,-1.754853396135586,L, + 15395386000,-1.754852969248763,L, + 17319809250,-1.754853289413880,L, + 19244232500,-1.754853075970469,L, + 21168655750,-1.754853182692175,L, + 25017502250,-1.754852969248763,L, + 26941925500,-1.754853075970469,L, + 30790772000,-1.754852862527057,L, + 32715195250,-1.754853182692175,L, + 34639618500,-1.754853182692175,L, + 36564041750,-1.754853075970469,L, + 38488465000,-1.754853289413880,L, + 40412888250,-1.754853289413880,L, + 44261734750,-1.754853075970469,L, + 46186158000,-1.754853182692175,L, + 50035004500,-1.754853182692175,L, + 53883851000,-1.754852969248763,L, + 55808274250,-1.754853182692175,L, + 63505967250,-1.754853182692175,L, + 65430390500,-1.754852969248763,L, + 67354813750,-1.754853075970469,L, + 69279237000,-1.754853396135586,L, + 71203660250,-1.754852969248763,L, + 75052506750,-1.754852969248763,L, + 76976930000,-1.754853075970469,L, + 78901353250,-1.754853075970469,L, + 80825776500,-1.754853289413880,L, + 82750199750,-1.754853075970469,L, + 84674623000,-1.754853182692175,L, + 88523469500,-1.754852969248763,L, + 90447892750,-1.754853289413880,L, + 92372316000,-1.754853289413880,L, + 94296739250,-1.754853075970469,L, + 96221162500,-1.754853182692175,L, + 98145585750,-1.754853182692175,L, + 100070009000,-1.754853075970469,L, + 101994432250,-1.754853182692175,L, + 105843278750,-1.754853182692175,L, + 107767702000,-1.754853075970469,L, + 109692125250,-1.754853289413880,L, + 111616548500,-1.754852969248763,L, + 113540971750,-1.754852862527057,L, + 115465395000,-1.754852969248763,L, + 117389818250,-1.754853289413880,L, + 119314241500,-1.754853289413880,L, + 121238664750,-1.754853182692175,L, + 125087511250,-1.754853396135586,L, + 127011934500,-1.754853182692175,L, + 128936357750,-1.754853289413880,L, + 130860781000,-1.754853182692175,L, + 132785204250,-1.754853289413880,L, + 134709627500,-1.754853075970469,L, + 136634050750,-1.754853075970469,L, + 138558474000,-1.754853182692175,L, + 140482897250,-1.754853716300704,L, + 142407320500,-1.754853929744115,L, + 144331743750,-1.754853929744115,L, + 146256167000,-1.754853823022409,L, + 148180590250,-1.754853823022409,L, + 150105013500,-1.754853716300704,L, + 152029436750,-1.754853716300704,L, + 153953860000,-1.754853929744115,L, + 155878283250,-1.754853823022409,L, + 157802706500,-1.754853823022409,L, + 159727129750,-1.754853929744115,L, + 161651553000,-1.754853716300704,L, + 163575976250,-1.754853929744115,L, + 165500399500,-1.754853823022409,L, + 167424822750,-1.754853609578998,L, + 169349246000,-1.754853716300704,L, + 171273669250,-1.754853929744115,L, + 175122515750,-1.754853929744115,L, + 177046939000,-1.754854036465821,L, + 180895785500,-1.754853823022409,L, + 182820208750,-1.754854036465821,L, + 184744632000,-1.754854036465821,L, + 188593478500,-1.754853823022409,L, + 190517901750,-1.754854036465821,L, + 192442325000,-1.754854036465821,L, + 194366748250,-1.754853929744115,L, + 196291171500,-1.754853716300704,L, + 198215594750,-1.754853929744115,L, + 200140018000,-1.754853502857292,L, + 205913287750,-1.754853823022409,L, + 207837711000,-1.754853716300704,L, + 209762134250,-1.754853929744115,L, + 211686557500,-1.754853823022409,L, + 213610980750,-1.754854036465821,L, + 215535404000,-1.754853716300704,L, + 217459827250,-1.754853716300704,L, + 221308673750,-1.754853502857292,L, + 223233097000,-1.754853716300704,L, + 227081943500,-1.754853716300704,L, + 229006366750,-1.754854036465821,L, + 230930790000,-1.754853823022409,L, + 232855213250,-1.754853929744115,L, + 234779636500,-1.754853929744115,L, + 236704059750,-1.754853716300704,L, + 238628483000,-1.754853929744115,L, + 240552906250,-1.754854036465821,L, + 242477329500,-1.754853716300704,L, + 246326176000,-1.754853716300704,L, + 250175022500,-1.754853929744115,L, + 252099445750,-1.754853823022409,L, + 254023869000,-1.754853823022409,L, + 255948292250,-1.754853716300704,L, + 259797138750,-1.754853929744115,L, + 261721562000,-1.754853823022409,L, + 263645985250,-1.754853823022409,L, + 265570408500,-1.754853716300704,L, + 267494831750,-1.754853823022409,L, + 269419255000,-1.754853716300704,L, + 271343678250,-1.754853716300704,L, + 273268101500,-1.754853823022409,L, + 275192524750,-1.754853716300704,L, + 277116948000,-1.754853929744115,L, + 279041371250,-1.754853716300704,L, + 280965794500,-1.754853929744115,L, + 282890217750,-1.754853823022409,L, + 284814641000,-1.754853823022409,L, + 286739064250,-1.754853929744115,L, + 288663487500,-1.754853823022409,L, + 290587910750,-1.754853929744115,L, + 298285603750,-1.754853929744115,L, + 300210027000,-1.754853716300704,L, + 304058873500,-1.754853929744115,L, + 305983296750,-1.754854143187527,L, + 307907720000,-1.754853716300704,L, + 309832143250,-1.754853823022409,L, + 311756566500,-1.754853716300704,L, + 313680989750,-1.754854143187527,L, + 315605413000,-1.754853823022409,L, + 317529836250,-1.754853929744115,L, + 319454259500,-1.754853823022409,L, + 321378682750,-1.754854036465821,L, + 323303106000,-1.754853823022409,L, + 329076375750,-1.754854143187527,L, + 331000799000,-1.754853823022409,L, + 344471761750,-1.754853823022409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 73.496933582733604 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,73.496933582733604,L, + 1924423250,73.283818020251175,L, + 3848846500,72.639574087168981,L, + 5773269750,71.562904047544748,L, + 7697693000,70.062775939758666,L, + 9622116250,68.161353727667390,L, + 11546539500,65.896462998894421,L, + 13470962750,63.323332663068385,L, + 15395386000,60.514424197093845,L, + 17319809250,57.557177682725182,L, + 19244232500,54.549268240188020,L, + 21168655750,51.592025140913947,L, + 23093079000,48.783113259844825,L, + 25017502250,46.209989754207960,L, + 26941925500,43.945095610340395,L, + 28866348750,42.043669983154544,L, + 30790772000,40.543541875368462,L, + 32715195250,39.466871835744215,L, + 34639618500,38.822627902662028,L, + 36564041750,38.609515755274181,L, + 38488465000,38.609522585463353,L, + 40412888250,38.609573811882129,L, + 42337311500,38.609700170381771,L, + 44261734750,38.609966547759406,L, + 46186158000,38.610420755339206,L, + 48110581250,38.611131095012887,L, + 50035004500,38.612145378104636,L, + 51959427750,38.613542151789900,L, + 53883851000,38.615403378338726,L, + 55808274250,38.617804189831979,L, + 57732697500,38.620823133445121,L, + 59657120750,38.624545586542773,L, + 61581544000,38.629074001962486,L, + 63505967250,38.634486926879717,L, + 65430390500,38.640890229226592,L, + 67354813750,38.648365871273157,L, + 69279237000,38.656999230384045,L, + 71203660250,38.666875683923870,L, + 73128083500,38.678084024351840,L, + 75052506750,38.690678893181328,L, + 76976930000,38.704732007398611,L, + 78901353250,38.720294593422459,L, + 80825776500,38.737393972009563,L, + 82750199750,38.756081369578695,L, + 84674623000,38.776370446508189,L, + 86599046250,38.798264617892627,L, + 88523469500,38.821763883732025,L, + 90447892750,38.846857998742614,L, + 92372316000,38.873519642167722,L, + 94296739250,38.901728323439833,L, + 96221162500,38.931443061423934,L, + 98145585750,38.962626290079584,L, + 100070009000,38.995226782988006,L, + 101994432250,39.029196728825013,L, + 103918855500,39.064488316266420,L, + 105843278750,39.101043488704278,L, + 107767702000,39.138804189530639,L, + 109692125250,39.177726022515898,L, + 111616548500,39.217747515957527,L, + 113540971750,39.258824273625926,L, + 115465395000,39.526082745658975,L, + 117389818250,40.249478325937737,L, + 119314241500,41.422573561169500,L, + 121238664750,43.014837505764341,L, + 123163088000,44.965013608151089,L, + 125087511250,47.178138333204608,L, + 127011934500,49.529519747437327,L, + 128936357750,51.876731331181766,L, + 130860781000,54.077664168566834,L, + 132785204250,56.008169326143971,L, + 134709627500,57.574205344325996,L, + 136634050750,58.715502633876810,L, + 138558474000,59.402524041730729,L, + 140482897250,59.629764435416725,L, + 142407320500,59.629757605227553,L, + 159727129750,59.629757605227553,L, + 161651553000,59.629764435416725,L, + 163575976250,59.629757605227553,L, + 173198092500,59.629757605227553,L, + 175122515750,59.629750775038382,L, + 177046939000,59.629757605227553,L, + 211686557500,59.629757605227553,L, + 213610980750,59.629750775038382,L, + 215535404000,59.629757605227553,L, + 282890217750,59.629757605227553,L, + 284814641000,59.707922290089066,L, + 286739064250,59.944035099506898,L, + 288663487500,60.339339127909987,L, + 290587910750,60.893178677138017,L, + 292512334000,61.602562124334519,L, + 294436757250,62.461656487948318,L, + 296361180500,63.461418597518332,L, + 298285603750,64.589164791755863,L, + 300210027000,65.828495786463719,L, + 302134450250,67.159337655671280,L, + 304058873500,68.558262850525438,L, + 305983296750,69.999193708775096,L, + 307907720000,71.454331360498372,L, + 309832143250,72.895269048937223,L, + 311756566500,74.294187413602202,L, + 313680989750,75.625036112998927,L, + 315605413000,76.864360277517619,L, + 317529836250,77.992113301944315,L, + 319454259500,78.991861751135986,L, + 321378682750,79.850969775128135,L, + 323303106000,80.560353222324636,L, + 325227529250,81.114179111174323,L, + 327151952500,81.509483139577412,L, + 329076375750,81.745602779184409,L, + 331000799000,81.823767464045929,L, + 344471761750,81.823767464045929,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.674333930015564 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.674333930015564,L, + 1924423250,0.675470530986786,L, + 3848846500,0.678906798362732,L, + 5773269750,0.684649288654327,L, + 7697693000,0.692650437355042,L, + 9622116250,0.702791929244995,L, + 11546539500,0.714872002601624,L, + 13470962750,0.728596031665802,L, + 15395386000,0.743577778339386,L, + 17319809250,0.759350597858429,L, + 19244232500,0.775393664836884,L, + 21168655750,0.791166484355927,L, + 23093079000,0.806148231029510,L, + 25017502250,0.819872319698334,L, + 26941925500,0.831952393054962,L, + 28866348750,0.842093944549561,L, + 30790772000,0.850095152854919,L, + 32715195250,0.855837523937225,L, + 34639618500,0.859273850917816,L, + 36564041750,0.860410392284393,L, + 38488465000,0.859652400016785,L, + 40412888250,0.857359886169434,L, + 42337311500,0.853519737720490,L, + 44261734750,0.848143458366394,L, + 46186158000,0.841273725032806,L, + 48110581250,0.832990765571594,L, + 50035004500,0.823418140411377,L, + 51959427750,0.812725424766541,L, + 53883851000,0.801128268241882,L, + 55808274250,0.788882970809937,L, + 57732697500,0.776277959346771,L, + 59657120750,0.763618707656860,L, + 61581544000,0.751211643218994,L, + 63505967250,0.739348351955414,L, + 65430390500,0.728290975093842,L, + 67354813750,0.718261897563934,L, + 69279237000,0.709438741207123,L, + 71203660250,0.701953470706940,L, + 73128083500,0.695894837379456,L, + 75052506750,0.691313564777374,L, + 76976930000,0.688229203224182,L, + 78901353250,0.686635494232178,L, + 80825776500,0.685843944549561,L, + 82750199750,0.685181856155396,L, + 84674623000,0.684649050235748,L, + 86599046250,0.684242486953735,L, + 88523469500,0.683954060077667,L, + 90447892750,0.683770418167114,L, + 92372316000,0.683672368526459,L, + 94296739250,0.683635294437408,L, + 96221162500,0.683629930019379,L, + 98145585750,0.683624505996704,L, + 100070009000,0.683587610721588,L, + 101994432250,0.683489501476288,L, + 103918855500,0.683305799961090,L, + 105843278750,0.683017313480377,L, + 107767702000,0.682610750198364,L, + 109692125250,0.682078003883362,L, + 111616548500,0.681415855884552,L, + 113540971750,0.680624425411224,L, + 115465395000,0.679479598999023,L, + 117389818250,0.677726089954376,L, + 119314241500,0.675328254699707,L, + 121238664750,0.672270417213440,L, + 123163088000,0.668565988540649,L, + 125087511250,0.664267301559448,L, + 127011934500,0.659467458724976,L, + 128936357750,0.654294371604919,L, + 130860781000,0.648896217346191,L, + 132785204250,0.643420696258545,L, + 134709627500,0.637999415397644,L, + 136634050750,0.632736384868622,L, + 138558474000,0.627705812454224,L, + 140482897250,0.622954726219177,L, + 142407320500,0.617972970008850,L, + 144331743750,0.612256109714508,L, + 146256167000,0.605882883071899,L, + 148180590250,0.598998248577118,L, + 150105013500,0.591822087764740,L, + 152029436750,0.584643244743347,L, + 153953860000,0.577791452407837,L, + 155878283250,0.571591436862946,L, + 157802706500,0.566314399242401,L, + 159727129750,0.562146782875061,L, + 161651553000,0.559182584285736,L, + 163575976250,0.557437539100647,L, + 165500399500,0.556871116161346,L, + 167424822750,0.557141304016113,L, + 169349246000,0.557957351207733,L, + 171273669250,0.559323668479919,L, + 173198092500,0.561236858367920,L, + 175122515750,0.563684821128845,L, + 177046939000,0.566644489765167,L, + 178971362250,0.570080280303955,L, + 180895785500,0.573942959308624,L, + 182820208750,0.578169465065002,L, + 184744632000,0.582683086395264,L, + 186669055250,0.587395131587982,L, + 188593478500,0.592208921909332,L, + 190517901750,0.597022593021393,L, + 192442325000,0.601734757423401,L, + 194366748250,0.606248319149017,L, + 196291171500,0.610474824905396,L, + 198215594750,0.614337563514709,L, + 200140018000,0.617773354053497,L, + 202064441250,0.620733022689819,L, + 203988864500,0.623180985450745,L, + 205913287750,0.625094175338745,L, + 207837711000,0.626460373401642,L, + 209762134250,0.627276480197906,L, + 211686557500,0.627546727657318,L, + 213610980750,0.626874625682831,L, + 215535404000,0.624843537807465,L, + 217459827250,0.621445775032043,L, + 219384250500,0.616699159145355,L, + 221308673750,0.610653460025787,L, + 223233097000,0.603396475315094,L, + 225157520250,0.595059454441071,L, + 227081943500,0.585819303989410,L, + 229006366750,0.575896203517914,L, + 230930790000,0.565547108650208,L, + 232855213250,0.555053114891052,L, + 234779636500,0.544703960418701,L, + 236704059750,0.534780979156494,L, + 238628483000,0.525540828704834,L, + 240552906250,0.517203748226166,L, + 242477329500,0.509946823120117,L, + 244401752750,0.503901004791260,L, + 246326176000,0.499154508113861,L, + 248250599250,0.495756745338440,L, + 250175022500,0.493725568056107,L, + 252099445750,0.493053495883942,L, + 254023869000,0.493055403232574,L, + 255948292250,0.493069976568222,L, + 257872715500,0.493112951517105,L, + 259797138750,0.493203818798065,L, + 261721562000,0.493365287780762,L, + 263645985250,0.493622720241547,L, + 265570408500,0.494001656770706,L, + 267494831750,0.494525879621506,L, + 269419255000,0.495214700698853,L, + 271343678250,0.496080458164215,L, + 273268101500,0.497127920389175,L, + 275192524750,0.498354524374008,L, + 277116948000,0.499751746654510,L, + 279041371250,0.501307070255280,L, + 280965794500,0.503005683422089,L, + 282890217750,0.504832386970520,L, + 284814641000,0.506922125816345,L, + 286739064250,0.509420752525330,L, + 288663487500,0.512325823307037,L, + 290587910750,0.515629112720490,L, + 292512334000,0.519315183162689,L, + 294436757250,0.523360073566437,L, + 296361180500,0.527730762958527,L, + 298285603750,0.532384216785431,L, + 300210027000,0.537266552448273,L, + 302134450250,0.542314767837524,L, + 304058873500,0.547457039356232,L, + 305983296750,0.552615702152252,L, + 307907720000,0.557709634304047,L, + 309832143250,0.562657713890076,L, + 311756566500,0.567382454872131,L, + 313680989750,0.571812868118286,L, + 315605413000,0.575887084007263,L, + 317529836250,0.579553604125977,L, + 319454259500,0.582772493362427,L, + 321378682750,0.585514664649963,L, + 323303106000,0.587761640548706,L, + 325227529250,0.589503884315491,L, + 327151952500,0.590739727020264,L, + 329076375750,0.591473937034607,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.643071591854095 + KeyVer: 4005 + KeyCount: 173 + Key: + 0,0.643071591854095,L, + 1924423250,0.644386053085327,L, + 3848846500,0.648359358310699,L, + 5773269750,0.654999792575836,L, + 7697693000,0.664251744747162,L, + 9622116250,0.675978839397430,L, + 11546539500,0.689947485923767,L, + 13470962750,0.705817341804504,L, + 15395386000,0.723141312599182,L, + 17319809250,0.741380095481873,L, + 19244232500,0.759931325912476,L, + 21168655750,0.778170168399811,L, + 23093079000,0.795494198799133,L, + 25017502250,0.811363875865936,L, + 26941925500,0.825332641601562,L, + 28866348750,0.837059617042542,L, + 30790772000,0.846311807632446,L, + 32715195250,0.852952182292938,L, + 34639618500,0.856925547122955,L, + 36564041750,0.858239829540253,L, + 38488465000,0.857487142086029,L, + 40412888250,0.855210900306702,L, + 42337311500,0.851398110389709,L, + 44261734750,0.846060574054718,L, + 46186158000,0.839241087436676,L, + 48110581250,0.831019759178162,L, + 50035004500,0.821519255638123,L, + 51959427750,0.810908675193787,L, + 53883851000,0.799402713775635,L, + 55808274250,0.787256360054016,L, + 57732697500,0.774756193161011,L, + 59657120750,0.762205600738525,L, + 61581544000,0.749909639358521,L, + 63505967250,0.738157808780670,L, + 65430390500,0.727210283279419,L, + 67354813750,0.717288196086884,L, + 69279237000,0.708567440509796,L, + 71203660250,0.701178967952728,L, + 73128083500,0.695210814476013,L, + 75052506750,0.690713047981262,L, + 76976930000,0.687704920768738,L, + 78901353250,0.686179816722870,L, + 80825776500,0.685448467731476,L, + 82750199750,0.684836506843567,L, + 84674623000,0.684344053268433,L, + 86599046250,0.683968186378479,L, + 88523469500,0.683701694011688,L, + 90447892750,0.683531880378723,L, + 92372316000,0.683441340923309,L, + 94296739250,0.683407068252563,L, + 96221162500,0.683402180671692,L, + 98145585750,0.683397233486176,L, + 100070009000,0.683362960815430,L, + 101994432250,0.683272361755371,L, + 103918855500,0.683102607727051,L, + 105843278750,0.682836174964905,L, + 107767702000,0.682460188865662,L, + 109692125250,0.681967914104462,L, + 111616548500,0.681355893611908,L, + 113540971750,0.680624365806580,L, + 115465395000,0.679548859596252,L, + 117389818250,0.677873134613037,L, + 119314241500,0.675560832023621,L, + 121238664750,0.672594487667084,L, + 123163088000,0.668985545635223,L, + 125087511250,0.664782881736755,L, + 127011934500,0.660076022148132,L, + 128936357750,0.654989421367645,L, + 130860781000,0.649667263031006,L, + 132785204250,0.644255340099335,L, + 134709627500,0.638883173465729,L, + 136634050750,0.633654117584229,L, + 138558474000,0.628642320632935,L, + 140482897250,0.623895525932312,L, + 142407320500,0.618899106979370,L, + 144331743750,0.613143444061279,L, + 146256167000,0.606707453727722,L, + 148180590250,0.599738359451294,L, + 150105013500,0.592460036277771,L, + 152029436750,0.585167586803436,L, + 153953860000,0.578198194503784,L, + 155878283250,0.571885049343109,L, + 157802706500,0.566507101058960,L, + 159727129750,0.562256515026093,L, + 161651553000,0.559231519699097,L, + 163575976250,0.557449758052826,L, + 165500399500,0.556871175765991,L, + 167424822750,0.557139098644257,L, + 169349246000,0.557948291301727,L, + 171273669250,0.559303164482117,L, + 173198092500,0.561200261116028,L, + 175122515750,0.563627719879150,L, + 177046939000,0.566562473773956,L, + 178971362250,0.569969415664673,L, + 180895785500,0.573799848556519,L, + 182820208750,0.577990829944611,L, + 184744632000,0.582466483116150,L, + 186669055250,0.587139129638672,L, + 188593478500,0.591912329196930,L, + 190517901750,0.596685767173767,L, + 192442325000,0.601358354091644,L, + 194366748250,0.605834066867828,L, + 196291171500,0.610024988651276,L, + 198215594750,0.613855421543121,L, + 200140018000,0.617262363433838,L, + 202064441250,0.620197117328644,L, + 203988864500,0.622624576091766,L, + 205913287750,0.624521672725677,L, + 207837711000,0.625876486301422,L, + 209762134250,0.626685798168182,L, + 211686557500,0.626953661441803,L, + 213610980750,0.626342117786407,L, + 215535404000,0.624493718147278,L, + 217459827250,0.621401727199554,L, + 219384250500,0.617082297801971,L, + 221308673750,0.611580610275269,L, + 223233097000,0.604976594448090,L, + 225157520250,0.597389757633209,L, + 227081943500,0.588981091976166,L, + 229006366750,0.579950869083405,L, + 230930790000,0.570532977581024,L, + 232855213250,0.560983240604401,L, + 234779636500,0.551565468311310,L, + 236704059750,0.542535305023193,L, + 238628483000,0.534126639366150,L, + 240552906250,0.526539802551270,L, + 242477329500,0.519935786724091,L, + 244401752750,0.514434099197388,L, + 246326176000,0.510114610195160,L, + 248250599250,0.507022678852081,L, + 250175022500,0.505174279212952,L, + 252099445750,0.504562616348267,L, + 254023869000,0.506176292896271,L, + 255948292250,0.511054694652557,L, + 257872715500,0.519185066223145,L, + 259797138750,0.530433237552643,L, + 261721562000,0.544508695602417,L, + 263645985250,0.560940802097321,L, + 265570408500,0.579074740409851,L, + 269419255000,0.617132663726807,L, + 271343678250,0.635266661643982,L, + 273268101500,0.651698648929596,L, + 275192524750,0.665774285793304,L, + 277116948000,0.677022278308868,L, + 279041371250,0.685152530670166,L, + 280965794500,0.690031051635742,L, + 282890217750,0.691644787788391,L, + 284814641000,0.691292762756348,L, + 286739064250,0.690229773521423,L, + 288663487500,0.688449919223785,L, + 290587910750,0.685956239700317,L, + 292512334000,0.682762145996094,L, + 294436757250,0.678893983364105,L, + 296361180500,0.674392640590668,L, + 298285603750,0.669314980506897,L, + 300210027000,0.663734793663025,L, + 302134450250,0.657742738723755,L, + 304058873500,0.651444137096405,L, + 305983296750,0.644956290721893,L, + 307907720000,0.638404428958893,L, + 309832143250,0.631916582584381,L, + 311756566500,0.625617861747742,L, + 313680989750,0.619625747203827,L, + 315605413000,0.614045739173889,L, + 317529836250,0.608967840671539,L, + 319454259500,0.604466617107391,L, + 321378682750,0.600598514080048,L, + 323303106000,0.597404479980469,L, + 325227529250,0.594910860061646,L, + 327151952500,0.593130946159363,L, + 329076375750,0.592067897319794,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.690616250038147 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.690616250038147,L, + 1924423250,0.690148472785950,L, + 3848846500,0.688734173774719,L, + 5773269750,0.686370491981506,L, + 7697693000,0.683077514171600,L, + 9622116250,0.678903162479401,L, + 11546539500,0.673931300640106,L, + 13470962750,0.668282508850098,L, + 15395386000,0.662116169929504,L, + 17319809250,0.655624210834503,L, + 19244232500,0.649021148681641,L, + 21168655750,0.642529129981995,L, + 23093079000,0.636362850666046,L, + 25017502250,0.630714058876038,L, + 26941925500,0.625742077827454,L, + 28866348750,0.621567785739899,L, + 30790772000,0.618274748325348,L, + 32715195250,0.615911126136780,L, + 34639618500,0.614496827125549,L, + 36564041750,0.614028990268707,L, + 38488465000,0.614427089691162,L, + 40412888250,0.615644574165344,L, + 42337311500,0.617711424827576,L, + 44261734750,0.620648622512817,L, + 46186158000,0.624465465545654,L, + 48110581250,0.629155874252319,L, + 50035004500,0.634694278240204,L, + 51959427750,0.641033411026001,L, + 53883851000,0.648102462291718,L, + 55808274250,0.655807495117188,L, + 57732697500,0.664034426212311,L, + 59657120750,0.672653436660767,L, + 61581544000,0.681526720523834,L, + 63505967250,0.690514862537384,L, + 65430390500,0.699485123157501,L, + 67354813750,0.708316266536713,L, + 69279237000,0.716904222965240,L, + 71203660250,0.725162506103516,L, + 73128083500,0.733023703098297,L, + 75052506750,0.740437328815460,L, + 76976930000,0.747368931770325,L, + 78901353250,0.753796815872192,L, + 80825776500,0.760236859321594,L, + 82750199750,0.767197132110596,L, + 84674623000,0.774639248847961,L, + 86599046250,0.782501161098480,L, + 88523469500,0.790692985057831,L, + 90447892750,0.799095392227173,L, + 92372316000,0.807559788227081,L, + 94296739250,0.815914571285248,L, + 96221162500,0.823974788188934,L, + 98145585750,0.831556081771851,L, + 100070009000,0.838489472866058,L, + 101994432250,0.844634652137756,L, + 103918855500,0.849887609481812,L, + 105843278750,0.854183197021484,L, + 107767702000,0.857492446899414,L, + 109692125250,0.859816670417786,L, + 111616548500,0.861180424690247,L, + 113540971750,0.861624240875244,L, + 115465395000,0.861622452735901,L, + 117389818250,0.861608803272247,L, + 119314241500,0.861567795276642,L, + 121238664750,0.861480474472046,L, + 123163088000,0.861324429512024,L, + 125087511250,0.861076116561890,L, + 127011934500,0.860712826251984,L, + 128936357750,0.860216796398163,L, + 130860781000,0.859576821327209,L, + 132785204250,0.858790099620819,L, + 134709627500,0.857861101627350,L, + 136634050750,0.856799662113190,L, + 138558474000,0.855618894100189,L, + 140482897250,0.854332864284515,L, + 142407320500,0.851194679737091,L, + 144331743750,0.844418942928314,L, + 146256167000,0.834094941616058,L, + 148180590250,0.820548474788666,L, + 150105013500,0.804402232170105,L, + 152029436750,0.786586463451385,L, + 153953860000,0.768268883228302,L, + 155878283250,0.750702798366547,L, + 157802706500,0.735041379928589,L, + 159727129750,0.722188293933868,L, + 161651553000,0.712734282016754,L, + 163575976250,0.706972241401672,L, + 165500399500,0.704960942268372,L, + 167424822750,0.704804599285126,L, + 169349246000,0.704655110836029,L, + 171273669250,0.704513132572174,L, + 173198092500,0.704379260540009,L, + 175122515750,0.704254150390625,L, + 177046939000,0.704138159751892,L, + 178971362250,0.704031765460968,L, + 180895785500,0.703935384750366,L, + 182820208750,0.703849315643311,L, + 184744632000,0.703773498535156,L, + 186669055250,0.703707695007324,L, + 188593478500,0.703651845455170,L, + 190517901750,0.703605234622955,L, + 192442325000,0.703567266464233,L, + 194366748250,0.703537106513977,L, + 196291171500,0.703513801097870,L, + 198215594750,0.703496396541595,L, + 200140018000,0.703483998775482,L, + 202064441250,0.703475356101990,L, + 203988864500,0.703470051288605,L, + 205913287750,0.703466951847076,L, + 207837711000,0.703465461730957,L, + 209762134250,0.703464806079865,L, + 211686557500,0.703464806079865,L, + 213610980750,0.704842150211334,L, + 215535404000,0.709004700183868,L, + 217459827250,0.715967655181885,L, + 219384250500,0.725694894790649,L, + 221308673750,0.738084554672241,L, + 223233097000,0.752956509590149,L, + 225157520250,0.770041644573212,L, + 227081943500,0.788977622985840,L, + 229006366750,0.809313237667084,L, + 230930790000,0.830521941184998,L, + 232855213250,0.852027535438538,L, + 234779636500,0.873236119747162,L, + 236704059750,0.893571555614471,L, + 238628483000,0.912507772445679,L, + 240552906250,0.929592847824097,L, + 242477329500,0.944464683532715,L, + 244401752750,0.956854522228241,L, + 246326176000,0.966581761837006,L, + 248250599250,0.973544836044312,L, + 250175022500,0.977707266807556,L, + 252099445750,0.979084491729736,L, + 254023869000,0.979084193706512,L, + 255948292250,0.979081749916077,L, + 257872715500,0.979074180126190,L, + 259797138750,0.979058206081390,L, + 261721562000,0.979029893875122,L, + 263645985250,0.978984832763672,L, + 265570408500,0.978918373584747,L, + 267494831750,0.978826463222504,L, + 269419255000,0.978705763816833,L, + 271343678250,0.978554069995880,L, + 273268101500,0.978370606899261,L, + 275192524750,0.978155612945557,L, + 277116948000,0.977910757064819,L, + 279041371250,0.977638244628906,L, + 280965794500,0.977340579032898,L, + 282890217750,0.977020502090454,L, + 284814641000,0.975905120372772,L, + 286739064250,0.973204195499420,L, + 288663487500,0.968906342983246,L, + 290587910750,0.963019013404846,L, + 292512334000,0.955573916435242,L, + 294436757250,0.946630775928497,L, + 296361180500,0.936282515525818,L, + 298285603750,0.924658000469208,L, + 300210027000,0.911923825740814,L, + 302134450250,0.898283541202545,L, + 304058873500,0.883973956108093,L, + 305983296750,0.869259178638458,L, + 307907720000,0.854419350624084,L, + 309832143250,0.839741408824921,L, + 311756566500,0.825505077838898,L, + 313680989750,0.811972975730896,L, + 315605413000,0.799380540847778,L, + 317529836250,0.787928760051727,L, + 319454259500,0.777782380580902,L, + 321378682750,0.769067585468292,L, + 323303106000,0.761874735355377,L, + 325227529250,0.756260991096497,L, + 327151952500,0.752255558967590,L, + 329076375750,0.749863743782043,L, + 331000799000,0.749072194099426,L, + 344471761750,0.749072194099426,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_053" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.004002332687378 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.004002332687378,L, + 1924423250,0.004497885704041,L, + 3848846500,0.006009221076965,L, + 5773269750,0.008558034896851,L, + 7697693000,0.012139439582825,L, + 9622116250,0.016712307929993,L, + 11546539500,0.022192001342773,L, + 13470962750,0.028444766998291,L, + 15395386000,0.035289883613586,L, + 17319809250,0.042509436607361,L, + 19244232500,0.049865841865540,L, + 21168655750,0.057123303413391,L, + 23093079000,0.064067125320435,L, + 25017502250,0.070518493652344,L, + 26941925500,0.076341986656189,L, + 28866348750,0.081444621086121,L, + 30790772000,0.085772156715393,L, + 32715195250,0.089300870895386,L, + 34639618500,0.092326164245605,L, + 36564041750,0.095128297805786,L, + 38488465000,0.097677946090698,L, + 40412888250,0.099947810173035,L, + 42337311500,0.101915121078491,L, + 44261734750,0.103566169738770,L, + 46186158000,0.104899406433105,L, + 48110581250,0.105929374694824,L, + 50035004500,0.106684446334839,L, + 51959427750,0.107204675674438,L, + 53883851000,0.107537031173706,L, + 55808274250,0.107728719711304,L, + 57732697500,0.107823133468628,L, + 59657120750,0.107858419418335,L, + 61581544000,0.107864379882812,L, + 63505967250,0.107332944869995,L, + 65430390500,0.105727910995483,L, + 67354813750,0.103081703186035,L, + 69279237000,0.099510073661804,L, + 71203660250,0.095233201980591,L, + 73128083500,0.090571761131287,L, + 75052506750,0.085910081863403,L, + 76976930000,0.081633090972900,L, + 78901353250,0.078061580657959,L, + 80825776500,0.075415372848511,L, + 82750199750,0.073810577392578,L, + 84674623000,0.073279023170471,L, + 180895785500,0.073279023170471,L, + 182820208750,0.072955131530762,L, + 184744632000,0.071977019309998,L, + 186669055250,0.070339202880859,L, + 188593478500,0.068043589591980,L, + 190517901750,0.065100669860840,L, + 192442325000,0.061531424522400,L, + 194366748250,0.057369470596313,L, + 196291171500,0.052661418914795,L, + 198215594750,0.047467947006226,L, + 200140018000,0.041864871978760,L, + 202064441250,0.035940647125244,L, + 203988864500,0.029795408248901,L, + 205913287750,0.023537516593933,L, + 207837711000,0.017279744148254,L, + 209762134250,0.011134505271912,L, + 211686557500,0.005210399627686,L, + 213610980750,-0.000392675399780,L, + 215535404000,-0.005586028099060,L, + 217459827250,-0.010294318199158,L, + 219384250500,-0.014456391334534,L, + 221308673750,-0.018025398254395,L, + 223233097000,-0.020968317985535,L, + 225157520250,-0.023263931274414,L, + 227081943500,-0.024901628494263,L, + 229006366750,-0.025879859924316,L, + 230930790000,-0.026203751564026,L, + 232855213250,-0.025465607643127,L, + 234779636500,-0.023234844207764,L, + 236704059750,-0.019503116607666,L, + 238628483000,-0.014290094375610,L, + 240552906250,-0.007650136947632,L, + 242477329500,0.000320076942444,L, + 244401752750,0.009476542472839,L, + 246326176000,0.019624948501587,L, + 248250599250,0.030523180961609,L, + 250175022500,0.041889548301697,L, + 252099445750,0.053414940834045,L, + 254023869000,0.064781188964844,L, + 255948292250,0.075679540634155,L, + 257872715500,0.085827827453613,L, + 259797138750,0.094984292984009,L, + 261721562000,0.102954387664795,L, + 263645985250,0.109594345092773,L, + 265570408500,0.114807605743408,L, + 267494831750,0.118539094924927,L, + 269419255000,0.120769977569580,L, + 271343678250,0.121508121490479,L, + 273268101500,0.121178150177002,L, + 275192524750,0.120169878005981,L, + 277116948000,0.118463277816772,L, + 279041371250,0.116049051284790,L, + 280965794500,0.112935304641724,L, + 282890217750,0.109150648117065,L, + 284814641000,0.104748487472534,L, + 286739064250,0.099807739257812,L, + 288663487500,0.094432711601257,L, + 290587910750,0.088746786117554,L, + 292512334000,0.082885861396790,L, + 294436757250,0.076988101005554,L, + 296361180500,0.071183562278748,L, + 298285603750,0.065586924552917,L, + 300210027000,0.060293316841125,L, + 302134450250,0.055375218391418,L, + 304058873500,0.050884246826172,L, + 305983296750,0.046852827072144,L, + 307907720000,0.043298363685608,L, + 309832143250,0.039924263954163,L, + 311756566500,0.036440730094910,L, + 313680989750,0.032871842384338,L, + 315605413000,0.029251456260681,L, + 317529836250,0.025623679161072,L, + 319454259500,0.022042274475098,L, + 321378682750,0.018570065498352,L, + 323303106000,0.015273571014404,L, + 325227529250,0.012218475341797,L, + 327151952500,0.009463906288147,L, + 329076375750,0.007055997848511,L, + 331000799000,0.005025744438171,L, + 332925222250,0.003387928009033,L, + 334849645500,0.002142906188965,L, + 336774068750,0.001279830932617,L, + 338698492000,0.000779747962952,L, + 340622915250,0.000618934631348,L, + 344471761750,0.000618934631348,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.032572627067566 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,-0.032572627067566,L, + 1924423250,-0.032571911811829,L, + 3848846500,-0.032565832138062,L, + 5773269750,-0.032548189163208,L, + 7697693000,-0.032510757446289,L, + 9622116250,-0.032444238662720,L, + 11546539500,-0.032338619232178,L, + 13470962750,-0.032182812690735,L, + 15395386000,-0.031966686248779,L, + 17319809250,-0.031680822372437,L, + 19244232500,-0.031318664550781,L, + 21168655750,-0.030876517295837,L, + 23093079000,-0.030353546142578,L, + 25017502250,-0.029751539230347,L, + 26941925500,-0.029074788093567,L, + 28866348750,-0.028329014778137,L, + 30790772000,-0.027519941329956,L, + 32715195250,-0.026654481887817,L, + 34639618500,-0.025224804878235,L, + 36564041750,-0.022711753845215,L, + 38488465000,-0.019132614135742,L, + 40412888250,-0.014554381370544,L, + 42337311500,-0.009107947349548,L, + 44261734750,-0.002994418144226,L, + 46186158000,0.003517746925354,L, + 48110581250,0.010113000869751,L, + 50035004500,0.016460299491882,L, + 51959427750,0.022251605987549,L, + 53883851000,0.027231812477112,L, + 55808274250,0.031217336654663,L, + 57732697500,0.034096598625183,L, + 59657120750,0.035820722579956,L, + 61581544000,0.036389589309692,L, + 63505967250,0.035830259323120,L, + 65430390500,0.034141778945923,L, + 67354813750,0.031357407569885,L, + 69279237000,0.027599573135376,L, + 71203660250,0.023099541664124,L, + 75052506750,0.013290047645569,L, + 76976930000,0.008789896965027,L, + 78901353250,0.005032062530518,L, + 80825776500,0.002247691154480,L, + 82750199750,0.000559210777283,L, + 84674623000,-0.000000119209290,L, + 180895785500,-0.000000119209290,L, + 182820208750,-0.000331878662109,L, + 184744632000,-0.001334071159363,L, + 186669055250,-0.003012061119080,L, + 188593478500,-0.005364060401917,L, + 190517901750,-0.008379101753235,L, + 192442325000,-0.012036085128784,L, + 194366748250,-0.016300201416016,L, + 196291171500,-0.021124005317688,L, + 198215594750,-0.026444911956787,L, + 200140018000,-0.032185673713684,L, + 202064441250,-0.038255333900452,L, + 203988864500,-0.044551491737366,L, + 205913287750,-0.050962924957275,L, + 207837711000,-0.057374477386475,L, + 209762134250,-0.063670516014099,L, + 211686557500,-0.069740295410156,L, + 213610980750,-0.075480937957764,L, + 215535404000,-0.080801844596863,L, + 217459827250,-0.085625648498535,L, + 219384250500,-0.089889883995056,L, + 221308673750,-0.093546748161316,L, + 223233097000,-0.096561908721924,L, + 225157520250,-0.098913908004761,L, + 227081943500,-0.100591897964478,L, + 229006366750,-0.101593971252441,L, + 230930790000,-0.101925849914551,L, + 232855213250,-0.101464629173279,L, + 234779636500,-0.100069165229797,L, + 236704059750,-0.097731590270996,L, + 238628483000,-0.094460725784302,L, + 240552906250,-0.090286850929260,L, + 242477329500,-0.085265994071960,L, + 244401752750,-0.079483389854431,L, + 246326176000,-0.073055386543274,L, + 248250599250,-0.066128015518188,L, + 250175022500,-0.058873176574707,L, + 252099445750,-0.051479458808899,L, + 254023869000,-0.044142484664917,L, + 255948292250,-0.037053108215332,L, + 257872715500,-0.030386686325073,L, + 259797138750,-0.024294257164001,L, + 261721562000,-0.018898487091064,L, + 263645985250,-0.014291286468506,L, + 265570408500,-0.010535240173340,L, + 267494831750,-0.007667183876038,L, + 269419255000,-0.005702137947083,L, + 271343678250,-0.004638075828552,L, + 273268101500,-0.004036307334900,L, + 275192524750,-0.003469347953796,L, + 277116948000,-0.002940535545349,L, + 279041371250,-0.002453565597534,L, + 280965794500,-0.002011537551880,L, + 282890217750,-0.001617193222046,L, + 284814641000,-0.001272439956665,L, + 286739064250,-0.000977873802185,L, + 288663487500,-0.000732779502869,L, + 290587910750,-0.000534772872925,L, + 292512334000,-0.000380158424377,L, + 294436757250,-0.000264048576355,L, + 296361180500,-0.000180840492249,L, + 298285603750,-0.000124335289001,L, + 300210027000,-0.000088691711426,L, + 302134450250,-0.000068545341492,L, + 304058873500,-0.000059008598328,L, + 305983296750,-0.000055551528931,L, + 307907720000,-0.000055193901062,L, + 309832143250,-0.000303626060486,L, + 311756566500,-0.001054644584656,L, + 313680989750,-0.002308130264282,L, + 315605413000,-0.004047036170959,L, + 317529836250,-0.006234765052795,L, + 319454259500,-0.008810162544250,L, + 321378682750,-0.011686563491821,L, + 323303106000,-0.014754414558411,L, + 325227529250,-0.017888188362122,L, + 327151952500,-0.020956039428711,L, + 329076375750,-0.023832559585571,L, + 331000799000,-0.026407837867737,L, + 332925222250,-0.028595566749573,L, + 334849645500,-0.030334472656250,L, + 336774068750,-0.031587719917297,L, + 338698492000,-0.032338976860046,L, + 340622915250,-0.032587409019470,L, + 344471761750,-0.032587409019470,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.068277060985565 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.068277060985565,L, + 1924423250,0.068401455879211,L, + 3848846500,0.068782091140747,L, + 5773269750,0.069426774978638,L, + 7697693000,0.070337176322937,L, + 9622116250,0.071506500244141,L, + 11546539500,0.072917163372040,L, + 13470962750,0.074539661407471,L, + 15395386000,0.076332569122314,L, + 17319809250,0.078244745731354,L, + 19244232500,0.080219089984894,L, + 21168655750,0.082197725772858,L, + 23093079000,0.084127485752106,L, + 25017502250,0.085962653160095,L, + 26941925500,0.087667942047119,L, + 28866348750,0.089218139648438,L, + 30790772000,0.090597093105316,L, + 32715195250,0.091796755790710,L, + 34639618500,0.092807233333588,L, + 36564041750,0.093624114990234,L, + 38488465000,0.094259262084961,L, + 40412888250,0.094735324382782,L, + 42337311500,0.095088720321655,L, + 44261734750,0.095369935035706,L, + 46186158000,0.095641613006592,L, + 48110581250,0.095973610877991,L, + 50035004500,0.096435308456421,L, + 51959427750,0.097087979316711,L, + 53883851000,0.097978532314301,L, + 55808274250,0.099137485027313,L, + 57732697500,0.100579202175140,L, + 59657120750,0.102305293083191,L, + 61581544000,0.104307711124420,L, + 63505967250,0.107642471790314,L, + 65430390500,0.113377869129181,L, + 67354813750,0.121406316757202,L, + 69279237000,0.131420731544495,L, + 71203660250,0.142872810363770,L, + 73128083500,0.154986858367920,L, + 75052506750,0.166853010654449,L, + 76976930000,0.177579164505005,L, + 78901353250,0.186437427997589,L, + 80825776500,0.192945480346680,L, + 82750199750,0.196866691112518,L, + 84674623000,0.198159396648407,L, + 86599046250,0.196213722229004,L, + 88523469500,0.190331995487213,L, + 90447892750,0.180545210838318,L, + 92372316000,0.167057096958160,L, + 94296739250,0.150293350219727,L, + 96221162500,0.130931496620178,L, + 98145585750,0.109890758991241,L, + 100070009000,0.088268578052521,L, + 101994432250,0.067227840423584,L, + 103918855500,0.047866046428680,L, + 105843278750,0.031102299690247,L, + 107767702000,0.017614126205444,L, + 109692125250,0.007827281951904,L, + 111616548500,0.001945674419403,L, + 113540971750,0.000000000000000,L, + 115465395000,0.000355362892151,L, + 117389818250,0.001437544822693,L, + 119314241500,0.003263890743256,L, + 121238664750,0.005839467048645,L, + 123163088000,0.009153068065643,L, + 125087511250,0.013173341751099,L, + 127011934500,0.017844796180725,L, + 128936357750,0.023086905479431,L, + 130860781000,0.028794169425964,L, + 132785204250,0.034839868545532,L, + 134709627500,0.041083574295044,L, + 136634050750,0.047379553318024,L, + 138558474000,0.053586006164551,L, + 140482897250,0.059574246406555,L, + 142407320500,0.065234124660492,L, + 144331743750,0.070477545261383,L, + 146256167000,0.075238883495331,L, + 148180590250,0.079473435878754,L, + 150105013500,0.083154678344727,L, + 152029436750,0.086271107196808,L, + 153953860000,0.089045822620392,L, + 155878283250,0.091687262058258,L, + 157802706500,0.094168543815613,L, + 159727129750,0.096461236476898,L, + 161651553000,0.098537445068359,L, + 163575976250,0.100372552871704,L, + 165500399500,0.101949393749237,L, + 167424822750,0.103261530399323,L, + 169349246000,0.104314386844635,L, + 171273669250,0.105125427246094,L, + 173198092500,0.105720341205597,L, + 175122515750,0.106130480766296,L, + 177046939000,0.106387734413147,L, + 178971362250,0.106522679328918,L, + 180895785500,0.106562316417694,L, + 182820208750,0.106556594371796,L, + 184744632000,0.106538951396942,L, + 186669055250,0.106508851051331,L, + 188593478500,0.106465876102448,L, + 190517901750,0.106409370899200,L, + 192442325000,0.106339216232300,L, + 194366748250,0.106255173683167,L, + 196291171500,0.106157243251801,L, + 198215594750,0.106045484542847,L, + 200140018000,0.105920493602753,L, + 202064441250,0.105782866477966,L, + 203988864500,0.105633616447449,L, + 205913287750,0.105473816394806,L, + 207837711000,0.105304777622223,L, + 209762134250,0.105128109455109,L, + 211686557500,0.104945480823517,L, + 213610980750,0.104758262634277,L, + 215535404000,0.104568123817444,L, + 217459827250,0.104376614093781,L, + 219384250500,0.104184985160828,L, + 221308673750,0.103994429111481,L, + 223233097000,0.103806078433990,L, + 225157520250,0.103620648384094,L, + 227081943500,0.103438973426819,L, + 229006366750,0.103261530399323,L, + 230930790000,0.103088796138763,L, + 232855213250,0.102907776832581,L, + 234779636500,0.102705478668213,L, + 236704059750,0.102482616901398,L, + 238628483000,0.102240264415741,L, + 240552906250,0.101980388164520,L, + 242477329500,0.101705491542816,L, + 244401752750,0.101419091224670,L, + 246326176000,0.101125240325928,L, + 248250599250,0.100829005241394,L, + 250175022500,0.100535690784454,L, + 252099445750,0.100250899791718,L, + 254023869000,0.099980175495148,L, + 255948292250,0.099728584289551,L, + 257872715500,0.099500536918640,L, + 259797138750,0.099299430847168,L, + 261721562000,0.099127888679504,L, + 263645985250,0.098987519741058,L, + 265570408500,0.098878920078278,L, + 267494831750,0.098802208900452,L, + 269419255000,0.098756909370422,L, + 271343678250,0.098742067813873,L, + 273268101500,0.099136471748352,L, + 275192524750,0.100328683853149,L, + 277116948000,0.102321088314056,L, + 279041371250,0.105097115039825,L, + 280965794500,0.108615756034851,L, + 282890217750,0.112807035446167,L, + 284814641000,0.117568671703339,L, + 286739064250,0.122766733169556,L, + 288663487500,0.128239214420319,L, + 290587910750,0.133805453777313,L, + 292512334000,0.139277935028076,L, + 294436757250,0.144475936889648,L, + 296361180500,0.149237632751465,L, + 298285603750,0.153428912162781,L, + 300210027000,0.156947553157806,L, + 302134450250,0.159723579883575,L, + 304058873500,0.161716043949127,L, + 305983296750,0.162908256053925,L, + 307907720000,0.163302600383759,L, + 309832143250,0.162570476531982,L, + 311756566500,0.160357117652893,L, + 313680989750,0.156664013862610,L, + 315605413000,0.151539623737335,L, + 317529836250,0.145092964172363,L, + 319454259500,0.137504279613495,L, + 321378682750,0.129028439521790,L, + 323303106000,0.119988083839417,L, + 325227529250,0.110753893852234,L, + 327151952500,0.101713657379150,L, + 329076375750,0.093237757682800,L, + 331000799000,0.085649013519287,L, + 332925222250,0.079202473163605,L, + 334849645500,0.074078023433685,L, + 336774068750,0.070384919643402,L, + 338698492000,0.068171501159668,L, + 340622915250,0.067439496517181,L, + 344471761750,0.067439496517181,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.026921190613567 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.026921190613567,L, + 1924423250,0.030825394111217,L, + 3848846500,0.042629244992505,L, + 5773269750,0.062324729124336,L, + 7697693000,0.089653036365032,L, + 9622116250,0.124033006995653,L, + 11546539500,0.164503932220757,L, + 13470962750,0.209705977405491,L, + 15395386000,0.257917974899654,L, + 17319809250,0.307163985660919,L, + 19244232500,0.355375969814869,L, + 21168655750,0.400578108381096,L, + 23093079000,0.441049086967052,L, + 25017502250,0.475428977556394,L, + 26941925500,0.502757311477517,L, + 28866348750,0.522452802279455,L, + 30790772000,0.534256649825689,L, + 32715195250,0.538160903349139,L, + 34639618500,0.532876844891643,L, + 36564041750,0.516903273578827,L, + 38488465000,0.490324339475701,L, + 40412888250,0.453693447987594,L, + 42337311500,0.408166395188116,L, + 44261734750,0.355583570213040,L, + 46186158000,0.298441273801870,L, + 48110581250,0.239719576186416,L, + 50035004500,0.182577253094820,L, + 51959427750,0.129994454800170,L, + 53883851000,0.084467608773997,L, + 55808274250,0.047836557203331,L, + 57732697500,0.021257573074406,L, + 59657120750,0.005284005096644,L, + 61581544000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.021346052038605 + KeyVer: 4005 + KeyCount: 34 + Key: + 0,0.021346052038605,L, + 1924423250,0.024441741898416,L, + 3848846500,0.033801165459316,L, + 5773269750,0.049417959439598,L, + 7697693000,0.071086914674311,L, + 9622116250,0.098347233518318,L, + 11546539500,0.130437176456391,L, + 13470962750,0.166278394022783,L, + 15395386000,0.204506269116202,L, + 17319809250,0.243554140435991,L, + 19244232500,0.281781962168557,L, + 21168655750,0.317623273116442,L, + 23093079000,0.349713156023555,L, + 25017502250,0.376973454857242,L, + 26941925500,0.398642470122914,L, + 28866348750,0.414259164051597,L, + 30790772000,0.423618657648617,L, + 32715195250,0.426714334168215,L, + 34639618500,0.422524573401373,L, + 36564041750,0.409858974761381,L, + 38488465000,0.388784132592646,L, + 40412888250,0.359739046631900,L, + 42337311500,0.323640216207965,L, + 44261734750,0.281946580399725,L, + 46186158000,0.236637773488570,L, + 48110581250,0.190076600700284,L, + 50035004500,0.144767727088063,L, + 51959427750,0.103074211341742,L, + 53883851000,0.066975374247701,L, + 55808274250,0.037930234926101,L, + 57732697500,0.016855411100160,L, + 59657120750,0.004189734086415,L, + 61581544000,-0.000000000000000,L, + 344471761750,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -1.393028927331441 + KeyVer: 4005 + KeyCount: 46 + Key: + 0,-1.393028927331441,L, + 1924423250,-1.598122966242233,L, + 3848846500,-2.220003365877949,L, + 5773269750,-3.261491741417742,L, + 7697693000,-4.712978657029651,L, + 9622116250,-6.548632123829314,L, + 11546539500,-8.723255499418352,L, + 13470962750,-11.170951118684577,L, + 15395386000,-13.806692944858385,L, + 17319809250,-16.531393716103249,L, + 19244232500,-19.239975240906908,L, + 21168655750,-21.830761615737401,L, + 23093079000,-24.213877796401249,L, + 25017502250,-26.317055258837939,L, + 26941925500,-28.087870593620412,L, + 28866348750,-29.493105175720352,L, + 30790772000,-30.516052362427939,L, + 32715195250,-31.153097276124942,L, + 34639618500,-31.583624590077736,L, + 36564041750,-31.981633373392150,L, + 38488465000,-32.343008437093246,L, + 40412888250,-32.663880479016228,L, + 42337311500,-32.941076876291632,L, + 44261734750,-33.172753477843543,L, + 46186158000,-33.358906868577392,L, + 48110581250,-33.501726124122150,L, + 50035004500,-33.605497188182007,L, + 51959427750,-33.676165740429440,L, + 53883851000,-33.720503913426519,L, + 55808274250,-33.745386292572839,L, + 57732697500,-33.757100066999392,L, + 59657120750,-33.761047916339656,L, + 61581544000,-33.761570425811158,L, + 63505967250,-33.242636558336429,L, + 65430390500,-31.676050709926216,L, + 67354813750,-29.092869750736522,L, + 69279237000,-25.606350170037040,L, + 71203660250,-21.431267266278514,L, + 73128083500,-16.880786920452874,L, + 75052506750,-12.330303159532646,L, + 76976930000,-8.155215133132241,L, + 78901353250,-4.668699821300992,L, + 80825776500,-2.085516514233769,L, + 82750199750,-0.518940697663898,L, + 84674623000,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.633204817771912 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.633204817771912,L, + 1924423250,0.633685231208801,L, + 3848846500,0.635137677192688,L, + 5773269750,0.637560963630676,L, + 7697693000,0.640923678874969,L, + 9622116250,0.645153880119324,L, + 11546539500,0.650133609771729,L, + 13470962750,0.655695438385010,L, + 15395386000,0.661627650260925,L, + 17319809250,0.667687118053436,L, + 19244232500,0.673619389533997,L, + 21168655750,0.679181277751923,L, + 23093079000,0.684160947799683,L, + 25017502250,0.688391208648682,L, + 26941925500,0.691753864288330,L, + 28866348750,0.694177210330963,L, + 30790772000,0.695629656314850,L, + 32715195250,0.696110010147095,L, + 34639618500,0.695350944995880,L, + 36564041750,0.693055927753448,L, + 38488465000,0.689237296581268,L, + 40412888250,0.683974266052246,L, + 42337311500,0.677433311939240,L, + 44261734750,0.669878542423248,L, + 46186158000,0.661668777465820,L, + 48110581250,0.653232097625732,L, + 50035004500,0.645022213459015,L, + 51959427750,0.637467384338379,L, + 53883851000,0.630926430225372,L, + 55808274250,0.625663518905640,L, + 57732697500,0.621844887733459,L, + 59657120750,0.619549870491028,L, + 61581544000,0.618790805339813,L, + 63505967250,0.618797004222870,L, + 65430390500,0.618846118450165,L, + 67354813750,0.618994534015656,L, + 69279237000,0.619313776493073,L, + 71203660250,0.619884848594666,L, + 73128083500,0.620787501335144,L, + 75052506750,0.622085809707642,L, + 76976930000,0.623815476894379,L, + 78901353250,0.625979900360107,L, + 80825776500,0.628554940223694,L, + 82750199750,0.631499648094177,L, + 84674623000,0.634765088558197,L, + 86599046250,0.640469014644623,L, + 88523469500,0.650795817375183,L, + 90447892750,0.665675461292267,L, + 92372316000,0.684826374053955,L, + 94296739250,0.707697153091431,L, + 96221162500,0.733435273170471,L, + 98145585750,0.760902941226959,L, + 100070009000,0.788758575916290,L, + 101994432250,0.815595567226410,L, + 103918855500,0.840101182460785,L, + 105843278750,0.861189603805542,L, + 107767702000,0.878074467182159,L, + 109692125250,0.890277624130249,L, + 111616548500,0.897587776184082,L, + 113540971750,0.899999916553497,L, + 115465395000,0.898905575275421,L, + 117389818250,0.895568370819092,L, + 119314241500,0.889927446842194,L, + 121238664750,0.881957888603210,L, + 123163088000,0.871683180332184,L, + 125087511250,0.859188437461853,L, + 127011934500,0.844630479812622,L, + 128936357750,0.828244388103485,L, + 130860781000,0.810341536998749,L, + 132785204250,0.791299283504486,L, + 134709627500,0.771540403366089,L, + 136634050750,0.751506626605988,L, + 138558474000,0.731630027294159,L, + 140482897250,0.712306499481201,L, + 142407320500,0.693877279758453,L, + 144331743750,0.676618278026581,L, + 146256167000,0.660737752914429,L, + 148180590250,0.646380662918091,L, + 150105013500,0.633636415004730,L, + 152029436750,0.622548758983612,L, + 153953860000,0.612249910831451,L, + 155878283250,0.601915240287781,L, + 157802706500,0.591645896434784,L, + 159727129750,0.581571578979492,L, + 161651553000,0.571849763393402,L, + 163575976250,0.562658429145813,L, + 165500399500,0.554180324077606,L, + 167424822750,0.546583950519562,L, + 169349246000,0.540002405643463,L, + 171273669250,0.534517645835876,L, + 173198092500,0.530156552791595,L, + 175122515750,0.526896119117737,L, + 177046939000,0.524676203727722,L, + 178971362250,0.523413419723511,L, + 180895785500,0.523013710975647,L, + 182820208750,0.523223757743835,L, + 184744632000,0.523866534233093,L, + 186669055250,0.524960398674011,L, + 188593478500,0.526521086692810,L, + 190517901750,0.528561353683472,L, + 192442325000,0.531089365482330,L, + 194366748250,0.534108042716980,L, + 196291171500,0.537613153457642,L, + 198215594750,0.541592776775360,L, + 200140018000,0.546026229858398,L, + 202064441250,0.550884068012238,L, + 203988864500,0.556127548217773,L, + 205913287750,0.561710238456726,L, + 207837711000,0.567579448223114,L, + 209762134250,0.573677539825439,L, + 211686557500,0.579944908618927,L, + 213610980750,0.586322188377380,L, + 215535404000,0.592751741409302,L, + 217459827250,0.599180817604065,L, + 219384250500,0.605561256408691,L, + 221308673750,0.611851513385773,L, + 223233097000,0.618016302585602,L, + 225157520250,0.624026656150818,L, + 227081943500,0.629859387874603,L, + 229006366750,0.635497152805328,L, + 230930790000,0.640926837921143,L, + 232855213250,0.646343588829041,L, + 234779636500,0.651950180530548,L, + 236704059750,0.657746493816376,L, + 238628483000,0.663728415966034,L, + 240552906250,0.669887304306030,L, + 242477329500,0.676208674907684,L, + 244401752750,0.682671964168549,L, + 246326176000,0.689249932765961,L, + 248250599250,0.695909500122070,L, + 250175022500,0.702612221240997,L, + 252099445750,0.709316909313202,L, + 254023869000,0.715981423854828,L, + 255948292250,0.722565233707428,L, + 257872715500,0.729031741619110,L, + 259797138750,0.735350310802460,L, + 261721562000,0.741496622562408,L, + 263645985250,0.747453033924103,L, + 265570408500,0.753208339214325,L, + 267494831750,0.758756816387177,L, + 269419255000,0.764097332954407,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161674022675,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093625068665,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143432140350,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227345943451,L, + 292512334000,0.827696084976196,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079273700714,L, + 300210027000,0.840432465076447,L, + 302134450250,0.842224657535553,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197571277618,L, + 307907720000,0.844432413578033,L, + 309832143250,0.842794001102448,L, + 311756566500,0.837840557098389,L, + 313680989750,0.829575419425964,L, + 315605413000,0.818107187747955,L, + 317529836250,0.803679764270782,L, + 319454259500,0.786696255207062,L, + 321378682750,0.767727494239807,L, + 323303106000,0.747495353221893,L, + 325227529250,0.726829469203949,L, + 327151952500,0.706597447395325,L, + 329076375750,0.687628626823425,L, + 331000799000,0.670645058155060,L, + 332925222250,0.656217694282532,L, + 334849645500,0.644749343395233,L, + 336774068750,0.636484265327454,L, + 338698492000,0.631530880928040,L, + 340622915250,0.629892468452454,L, + 344471761750,0.629892468452454,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.615131914615631 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.615131914615631,L, + 1924423250,0.615750312805176,L, + 3848846500,0.617619991302490,L, + 5773269750,0.620739638805389,L, + 7697693000,0.625068366527557,L, + 9622116250,0.630513966083527,L, + 11546539500,0.636924386024475,L, + 13470962750,0.644084215164185,L, + 15395386000,0.651720821857452,L, + 17319809250,0.659521162509918,L, + 19244232500,0.667157649993896,L, + 21168655750,0.674317479133606,L, + 23093079000,0.680727899074554,L, + 25017502250,0.686173617839813,L, + 26941925500,0.690502226352692,L, + 28866348750,0.693621933460236,L, + 30790772000,0.695491671562195,L, + 32715195250,0.696110010147095,L, + 34639618500,0.695760607719421,L, + 36564041750,0.694665551185608,L, + 38488465000,0.692759096622467,L, + 40412888250,0.689989149570465,L, + 42337311500,0.686327636241913,L, + 44261734750,0.681780815124512,L, + 46186158000,0.676399171352386,L, + 48110581250,0.670278131961823,L, + 50035004500,0.663551092147827,L, + 51959427750,0.656375169754028,L, + 53883851000,0.648911118507385,L, + 55808274250,0.641308009624481,L, + 57732697500,0.633691906929016,L, + 59657120750,0.626161873340607,L, + 61581544000,0.618790805339813,L, + 63505967250,0.610616207122803,L, + 65430390500,0.600686311721802,L, + 67354813750,0.589176833629608,L, + 69279237000,0.576439559459686,L, + 71203660250,0.563026010990143,L, + 73128083500,0.549658179283142,L, + 75052506750,0.537134289741516,L, + 76976930000,0.526192188262939,L, + 78901353250,0.517390966415405,L, + 80825776500,0.511057972908020,L, + 82750199750,0.507304728031158,L, + 84674623000,0.506082534790039,L, + 86599046250,0.509950339794159,L, + 88523469500,0.521642506122589,L, + 90447892750,0.541097462177277,L, + 92372316000,0.567910194396973,L, + 94296739250,0.601234495639801,L, + 96221162500,0.639723598957062,L, + 98145585750,0.681550025939941,L, + 100070009000,0.724532485008240,L, + 101994432250,0.766358852386475,L, + 103918855500,0.804847836494446,L, + 105843278750,0.838172256946564,L, + 107767702000,0.864985048770905,L, + 109692125250,0.884440124034882,L, + 111616548500,0.896132171154022,L, + 113540971750,0.899999916553497,L, + 115465395000,0.898470938205719,L, + 117389818250,0.893849134445190,L, + 119314241500,0.886120975017548,L, + 121238664750,0.875337600708008,L, + 123163088000,0.861632704734802,L, + 125087511250,0.845238983631134,L, + 127011934500,0.826499521732330,L, + 128936357750,0.805871367454529,L, + 130860781000,0.783915698528290,L, + 132785204250,0.761274278163910,L, + 134709627500,0.738632917404175,L, + 136634050750,0.716677367687225,L, + 138558474000,0.696049213409424,L, + 140482897250,0.677309751510620,L, + 142407320500,0.660915970802307,L, + 144331743750,0.647211194038391,L, + 146256167000,0.636427760124207,L, + 148180590250,0.628699660301208,L, + 150105013500,0.624077796936035,L, + 152029436750,0.622548758983612,L, + 153953860000,0.623327255249023,L, + 155878283250,0.625680923461914,L, + 157802706500,0.629597008228302,L, + 159727129750,0.634994149208069,L, + 161651553000,0.641702055931091,L, + 163575976250,0.649449527263641,L, + 165500399500,0.657868802547455,L, + 167424822750,0.666520774364471,L, + 169349246000,0.674940049648285,L, + 171273669250,0.682687640190125,L, + 173198092500,0.689395427703857,L, + 175122515750,0.694792628288269,L, + 177046939000,0.698708772659302,L, + 178971362250,0.701062321662903,L, + 180895785500,0.701840817928314,L, + 182820208750,0.701642453670502,L, + 184744632000,0.701043605804443,L, + 186669055250,0.700040757656097,L, + 188593478500,0.698635101318359,L, + 190517901750,0.696833193302155,L, + 192442325000,0.694647729396820,L, + 194366748250,0.692099332809448,L, + 196291171500,0.689216434955597,L, + 198215594750,0.686036467552185,L, + 200140018000,0.682605683803558,L, + 202064441250,0.678978264331818,L, + 203988864500,0.675215601921082,L, + 205913287750,0.671383798122406,L, + 207837711000,0.667552053928375,L, + 209762134250,0.663789272308350,L, + 211686557500,0.660161972045898,L, + 213610980750,0.656731069087982,L, + 215535404000,0.653551161289215,L, + 217459827250,0.650668263435364,L, + 219384250500,0.648119807243347,L, + 221308673750,0.645934402942657,L, + 223233097000,0.644132435321808,L, + 225157520250,0.642726838588715,L, + 227081943500,0.641724050045013,L, + 229006366750,0.641125082969666,L, + 230930790000,0.640926837921143,L, + 232855213250,0.641364634037018,L, + 234779636500,0.642700791358948,L, + 236704059750,0.644962728023529,L, + 238628483000,0.648165643215179,L, + 240552906250,0.652308404445648,L, + 242477329500,0.657369315624237,L, + 244401752750,0.663301646709442,L, + 246326176000,0.670030951499939,L, + 248250599250,0.677454471588135,L, + 250175022500,0.685443043708801,L, + 252099445750,0.693847179412842,L, + 254023869000,0.702503979206085,L, + 255948292250,0.711247920989990,L, + 257872715500,0.719919860363007,L, + 259797138750,0.728375434875488,L, + 261721562000,0.736490726470947,L, + 263645985250,0.744165003299713,L, + 265570408500,0.751321613788605,L, + 267494831750,0.757905840873718,L, + 269419255000,0.763882458209991,L, + 271343678250,0.769232511520386,L, + 273268101500,0.774365961551666,L, + 275192524750,0.779684901237488,L, + 277116948000,0.785161674022675,L, + 279041371250,0.790758013725281,L, + 280965794500,0.796422958374023,L, + 282890217750,0.802093625068665,L, + 284814641000,0.807695150375366,L, + 286739064250,0.813143432140350,L, + 288663487500,0.818349957466125,L, + 290587910750,0.823227345943451,L, + 292512334000,0.827696084976196,L, + 294436757250,0.831690430641174,L, + 296361180500,0.835161328315735,L, + 298285603750,0.838079273700714,L, + 300210027000,0.840432465076447,L, + 302134450250,0.842224657535553,L, + 304058873500,0.843471527099609,L, + 305983296750,0.844197571277618,L, + 307907720000,0.844432413578033,L, + 309832143250,0.842648804187775,L, + 311756566500,0.837256133556366,L, + 313680989750,0.828258037567139,L, + 315605413000,0.815772771835327,L, + 317529836250,0.800065994262695,L, + 319454259500,0.781576454639435,L, + 321378682750,0.760925412178040,L, + 323303106000,0.738899350166321,L, + 325227529250,0.716400802135468,L, + 327151952500,0.694374740123749,L, + 329076375750,0.673723757266998,L, + 331000799000,0.655234158039093,L, + 332925222250,0.639527380466461,L, + 334849645500,0.627042233943939,L, + 336774068750,0.618044137954712,L, + 338698492000,0.612651467323303,L, + 340622915250,0.610867798328400,L, + 344471761750,0.610867798328400,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.049851775169373 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,1.049851775169373,L, + 1924423250,1.048867225646973,L, + 3848846500,1.045857787132263,L, + 5773269750,1.040767312049866,L, + 7697693000,1.033589363098145,L, + 9622116250,1.024385809898376,L, + 11546539500,1.013304471969604,L, + 13470962750,1.000588417053223,L, + 15395386000,0.986575126647949,L, + 17319809250,0.971677839756012,L, + 19244232500,0.956354320049286,L, + 21168655750,0.941064715385437,L, + 23093079000,0.926233172416687,L, + 25017502250,0.912217795848846,L, + 26941925500,0.899296104907990,L, + 28866348750,0.887663245201111,L, + 30790772000,0.877439796924591,L, + 32715195250,0.868685722351074,L, + 34639618500,0.860881984233856,L, + 36564041750,0.853516280651093,L, + 38488465000,0.846616744995117,L, + 40412888250,0.840200901031494,L, + 42337311500,0.834269821643829,L, + 44261734750,0.828801989555359,L, + 46186158000,0.823749840259552,L, + 48110581250,0.819041371345520,L, + 50035004500,0.814585447311401,L, + 51959427750,0.810282588005066,L, + 53883851000,0.806036472320557,L, + 55808274250,0.801762282848358,L, + 57732697500,0.797392785549164,L, + 59657120750,0.792878448963165,L, + 61581544000,0.788186192512512,L, + 63505967250,0.783168077468872,L, + 65430390500,0.777729034423828,L, + 67354813750,0.771962821483612,L, + 69279237000,0.766021668910980,L, + 71203660250,0.760118186473846,L, + 73128083500,0.754508078098297,L, + 75052506750,0.749453544616699,L, + 76976930000,0.745177149772644,L, + 78901353250,0.741827487945557,L, + 80825776500,0.739469349384308,L, + 82750199750,0.738096892833710,L, + 84674623000,0.737656176090240,L, + 86599046250,0.741600096225739,L, + 88523469500,0.753522813320160,L, + 90447892750,0.773361325263977,L, + 92372316000,0.800702631473541,L, + 94296739250,0.834683895111084,L, + 96221162500,0.873931765556335,L, + 98145585750,0.916582584381104,L, + 100070009000,0.960412442684174,L, + 101994432250,1.003063321113586,L, + 103918855500,1.042311191558838,L, + 105843278750,1.076292514801025,L, + 107767702000,1.103633761405945,L, + 109692125250,1.123472094535828,L, + 111616548500,1.135394811630249,L, + 113540971750,1.139338970184326,L, + 115465395000,1.136821031570435,L, + 117389818250,1.129210233688354,L, + 119314241500,1.116483926773071,L, + 121238664750,1.098726868629456,L, + 123163088000,1.076158642768860,L, + 125087511250,1.049162745475769,L, + 127011934500,1.018303751945496,L, + 128936357750,0.984335005283356,L, + 130860781000,0.948180019855499,L, + 134709627500,0.873611629009247,L, + 136634050750,0.837456643581390,L, + 138558474000,0.803487777709961,L, + 140482897250,0.772629022598267,L, + 142407320500,0.745632946491241,L, + 144331743750,0.723064899444580,L, + 146256167000,0.705307662487030,L, + 148180590250,0.692581534385681,L, + 150105013500,0.684970676898956,L, + 152029436750,0.682452678680420,L, + 153953860000,0.687106132507324,L, + 155878283250,0.701173365116119,L, + 157802706500,0.724580407142639,L, + 159727129750,0.756839871406555,L, + 161651553000,0.796933531761169,L, + 163575976250,0.843241095542908,L, + 165500399500,0.893564045429230,L, + 167424822750,0.945277929306030,L, + 169349246000,0.995600700378418,L, + 171273669250,1.041908144950867,L, + 173198092500,1.082001805305481,L, + 175122515750,1.114261388778687,L, + 177046939000,1.137668609619141,L, + 178971362250,1.151735782623291,L, + 180895785500,1.156389117240906,L, + 182820208750,1.155352234840393,L, + 184744632000,1.152211546897888,L, + 186669055250,1.146934390068054,L, + 188593478500,1.139508485794067,L, + 190517901750,1.129947304725647,L, + 192442325000,1.118294835090637,L, + 194366748250,1.104632496833801,L, + 196291171500,1.089082360267639,L, + 198215594750,1.071810364723206,L, + 200140018000,1.053028464317322,L, + 202064441250,1.032991051673889,L, + 203988864500,1.011990666389465,L, + 205913287750,0.990349471569061,L, + 207837711000,0.968406677246094,L, + 209762134250,0.946506738662720,L, + 211686557500,0.924985170364380,L, + 213610980750,0.904156863689423,L, + 215535404000,0.884305596351624,L, + 217459827250,0.865676939487457,L, + 219384250500,0.848475277423859,L, + 221308673750,0.832862198352814,L, + 223233097000,0.818958580493927,L, + 225157520250,0.806848347187042,L, + 227081943500,0.796581923961639,L, + 229006366750,0.788182735443115,L, + 230930790000,0.781650483608246,L, + 232855213250,0.776405513286591,L, + 234779636500,0.771885395050049,L, + 236704059750,0.768094122409821,L, + 238628483000,0.765022277832031,L, + 240552906250,0.762643218040466,L, + 242477329500,0.760910332202911,L, + 244401752750,0.759753406047821,L, + 246326176000,0.759078145027161,L, + 248250599250,0.758767127990723,L, + 250175022500,0.758683443069458,L, + 252099445750,0.758676946163177,L, + 254023869000,0.758593201637268,L, + 255948292250,0.758282184600830,L, + 257872715500,0.757606983184814,L, + 259797138750,0.756450057029724,L, + 261721562000,0.754717051982880,L, + 263645985250,0.752338171005249,L, + 265570408500,0.749266207218170,L, + 267494831750,0.745474874973297,L, + 269419255000,0.740954816341400,L, + 271343678250,0.735709846019745,L, + 273268101500,0.728996336460114,L, + 275192524750,0.720055341720581,L, + 277116948000,0.708911359310150,L, + 279041371250,0.695649206638336,L, + 280965794500,0.680429279804230,L, + 282890217750,0.663499057292938,L, + 284814641000,0.645200848579407,L, + 286739064250,0.625967741012573,L, + 288663487500,0.606308519840240,L, + 290587910750,0.586778163909912,L, + 292512334000,0.567939996719360,L, + 294436757250,0.550325512886047,L, + 296361180500,0.534398913383484,L, + 298285603750,0.520532965660095,L, + 300210027000,0.508999526500702,L, + 302134450250,0.499972015619278,L, + 304058873500,0.493536502122879,L, + 305983296750,0.489708095788956,L, + 307907720000,0.488447606563568,L, + 309832143250,0.492785751819611,L, + 311756566500,0.505901575088501,L, + 313680989750,0.527786016464233,L, + 315605413000,0.558151721954346,L, + 317529836250,0.596352815628052,L, + 319454259500,0.641321837902069,L, + 321378682750,0.691547632217407,L, + 323303106000,0.745118141174316,L, + 325227529250,0.799837529659271,L, + 327151952500,0.853408098220825,L, + 329076375750,0.903633892536163,L, + 331000799000,0.948602914810181,L, + 332925222250,0.986804008483887,L, + 334849645500,1.017169833183289,L, + 336774068750,1.039054274559021,L, + 338698492000,1.052169919013977,L, + 340622915250,1.056508183479309,L, + 344471761750,1.056508183479309,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_052" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.015042066574097 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.015042066574097,L, + 1924423250,0.015033364295959,L, + 3848846500,0.015007257461548,L, + 5773269750,0.014963626861572,L, + 7697693000,0.014902234077454,L, + 9622116250,0.014823198318481,L, + 11546539500,0.014726400375366,L, + 13470962750,0.014611959457397,L, + 15395386000,0.014479756355286,L, + 17319809250,0.014329910278320,L, + 19244232500,0.014162778854370,L, + 21168655750,0.013978362083435,L, + 23093079000,0.013777017593384,L, + 25017502250,0.013558983802795,L, + 26941925500,0.013324856758118,L, + 28866348750,0.013074874877930,L, + 30790772000,0.012809634208679,L, + 32715195250,0.012529730796814,L, + 34639618500,0.012235879898071,L, + 36564041750,0.011929035186768,L, + 38488465000,0.011609792709351,L, + 40412888250,0.011278986930847,L, + 42337311500,0.010937690734863,L, + 44261734750,0.010587215423584,L, + 46186158000,0.010228157043457,L, + 48110581250,0.009862184524536,L, + 50035004500,0.009490132331848,L, + 51959427750,0.009113550186157,L, + 53883851000,0.008733630180359,L, + 55808274250,0.008351683616638,L, + 57732697500,0.007969141006470,L, + 59657120750,0.007587075233459,L, + 61581544000,0.007207274436951,L, + 63505967250,0.006830573081970,L, + 65430390500,0.006458640098572,L, + 67354813750,0.006092667579651,L, + 69279237000,0.005733609199524,L, + 71203660250,0.005383133888245,L, + 73128083500,0.005041837692261,L, + 75052506750,0.004711031913757,L, + 76976930000,0.004391670227051,L, + 78901353250,0.004084825515747,L, + 80825776500,0.003790974617004,L, + 82750199750,0.003511309623718,L, + 84674623000,0.003245949745178,L, + 86599046250,0.002995967864990,L, + 88523469500,0.002761840820312,L, + 90447892750,0.002543807029724,L, + 92372316000,0.002342343330383,L, + 94296739250,0.002158045768738,L, + 96221162500,0.001990914344788,L, + 98145585750,0.001840949058533,L, + 100070009000,0.001708865165710,L, + 101994432250,0.001594424247742,L, + 103918855500,0.001497507095337,L, + 105843278750,0.001418590545654,L, + 107767702000,0.001357197761536,L, + 109692125250,0.001313567161560,L, + 111616548500,0.001287460327148,L, + 113540971750,0.001278758049011,L, + 115465395000,0.001350760459900,L, + 117389818250,0.001568317413330,L, + 119314241500,0.001932621002197,L, + 121238664750,0.002444028854370,L, + 123163088000,0.003101110458374,L, + 125087511250,0.003901958465576,L, + 127011934500,0.004842162132263,L, + 128936357750,0.005915641784668,L, + 130860781000,0.007114171981812,L, + 132785204250,0.008427381515503,L, + 134709627500,0.009842634201050,L, + 136634050750,0.011344909667969,L, + 138558474000,0.012917518615723,L, + 140482897250,0.014541745185852,L, + 142407320500,0.016197323799133,L, + 144331743750,0.017863512039185,L, + 146256167000,0.019519209861755,L, + 148180590250,0.021143317222595,L, + 150105013500,0.022715926170349,L, + 152029436750,0.024218201637268,L, + 153953860000,0.025633573532104,L, + 155878283250,0.026946663856506,L, + 157802706500,0.028145194053650,L, + 159727129750,0.029218673706055,L, + 161651553000,0.030158877372742,L, + 163575976250,0.030959725379944,L, + 165500399500,0.031616926193237,L, + 167424822750,0.032128214836121,L, + 169349246000,0.032492518424988,L, + 171273669250,0.032710075378418,L, + 173198092500,0.032782196998596,L, + 342547338500,0.032782196998596,L, + 344471761750,0.015258669853210,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062712550163269 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,-0.062712550163269,L, + 1924423250,-0.062734484672546,L, + 3848846500,-0.062800288200378,L, + 5773269750,-0.062910318374634,L, + 7697693000,-0.063064932823181,L, + 9622116250,-0.063264012336731,L, + 11546539500,-0.063508033752441,L, + 13470962750,-0.063796639442444,L, + 15395386000,-0.064129710197449,L, + 17319809250,-0.064507126808167,L, + 19244232500,-0.064928531646729,L, + 21168655750,-0.065393328666687,L, + 23093079000,-0.065900802612305,L, + 25017502250,-0.066450119018555,L, + 26941925500,-0.067040443420410,L, + 28866348750,-0.067670345306396,L, + 30790772000,-0.068338871002197,L, + 32715195250,-0.069044113159180,L, + 34639618500,-0.069784522056580,L, + 36564041750,-0.070558190345764,L, + 38488465000,-0.071363091468811,L, + 40412888250,-0.072196602821350,L, + 42337311500,-0.073056459426880,L, + 44261734750,-0.073940157890320,L, + 46186158000,-0.074844837188721,L, + 48110581250,-0.075767397880554,L, + 50035004500,-0.076704859733582,L, + 51959427750,-0.077653884887695,L, + 53883851000,-0.078611493110657,L, + 55808274250,-0.079573988914490,L, + 57732697500,-0.080538392066956,L, + 59657120750,-0.081501126289368,L, + 61581544000,-0.082458496093750,L, + 63505967250,-0.083407759666443,L, + 65430390500,-0.084345102310181,L, + 67354813750,-0.085267663002014,L, + 69279237000,-0.086172223091125,L, + 71203660250,-0.087055921554565,L, + 73128083500,-0.087915897369385,L, + 75052506750,-0.088749527931213,L, + 76976930000,-0.089554309844971,L, + 78901353250,-0.090327858924866,L, + 80825776500,-0.091068387031555,L, + 82750199750,-0.091773629188538,L, + 84674623000,-0.092442035675049,L, + 86599046250,-0.093072056770325,L, + 88523469500,-0.093662261962891,L, + 90447892750,-0.094211697578430,L, + 92372316000,-0.094719171524048,L, + 94296739250,-0.095183968544006,L, + 96221162500,-0.095605254173279,L, + 98145585750,-0.095982670783997,L, + 100070009000,-0.096315860748291,L, + 101994432250,-0.096604466438293,L, + 103918855500,-0.096848368644714,L, + 105843278750,-0.097047567367554,L, + 107767702000,-0.097202181816101,L, + 109692125250,-0.097312211990356,L, + 111616548500,-0.097378015518188,L, + 113540971750,-0.097399830818176,L, + 115465395000,-0.097241640090942,L, + 117389818250,-0.096764087677002,L, + 119314241500,-0.095964431762695,L, + 121238664750,-0.094842195510864,L, + 123163088000,-0.093399286270142,L, + 125087511250,-0.091641426086426,L, + 127011934500,-0.089577555656433,L, + 128936357750,-0.087221145629883,L, + 130860781000,-0.084590077400208,L, + 132785204250,-0.081707477569580,L, + 134709627500,-0.078600645065308,L, + 136634050750,-0.075302600860596,L, + 138558474000,-0.071850657463074,L, + 140482897250,-0.068285346031189,L, + 142407320500,-0.064651131629944,L, + 144331743750,-0.060993432998657,L, + 146256167000,-0.057359218597412,L, + 148180590250,-0.053793907165527,L, + 150105013500,-0.050341725349426,L, + 152029436750,-0.047043919563293,L, + 153953860000,-0.043937087059021,L, + 155878283250,-0.041054248809814,L, + 157802706500,-0.038423418998718,L, + 159727129750,-0.036067008972168,L, + 161651553000,-0.034003138542175,L, + 163575976250,-0.032245278358459,L, + 165500399500,-0.030802369117737,L, + 167424822750,-0.029680132865906,L, + 169349246000,-0.028880357742310,L, + 171273669250,-0.028402805328369,L, + 173198092500,-0.028244614601135,L, + 342547338500,-0.028244614601135,L, + 344471761750,-0.062223196029663,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.003709495067596 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.003709495067596,L, + 1924423250,0.003965616226196,L, + 3848846500,0.004753053188324,L, + 5773269750,0.006098985671997,L, + 7697693000,0.008027493953705,L, + 9622116250,0.010557234287262,L, + 11546539500,0.013699412345886,L, + 13470962750,0.017456114292145,L, + 15395386000,0.021817803382874,L, + 17319809250,0.026761472225189,L, + 19244232500,0.032250225543976,L, + 21168655750,0.038233339786530,L, + 23093079000,0.044647634029388,L, + 25017502250,0.051420331001282,L, + 26941925500,0.058472514152527,L, + 28866348750,0.065723240375519,L, + 30790772000,0.073093652725220,L, + 32715195250,0.080509960651398,L, + 34639618500,0.087906002998352,L, + 36564041750,0.095224559307098,L, + 38488465000,0.102418065071106,L, + 40412888250,0.109448254108429,L, + 42337311500,0.116285443305969,L, + 44261734750,0.122907578945160,L, + 46186158000,0.129713952541351,L, + 48110581250,0.137114167213440,L, + 50035004500,0.145077943801880,L, + 51959427750,0.153524100780487,L, + 53883851000,0.162311315536499,L, + 55808274250,0.171241521835327,L, + 57732697500,0.180084407329559,L, + 59657120750,0.188615977764130,L, + 61581544000,0.196655094623566,L, + 63505967250,0.204083263874054,L, + 65430390500,0.210844755172729,L, + 67354813750,0.216931939125061,L, + 69279237000,0.222473621368408,L, + 71203660250,0.227625727653503,L, + 73128083500,0.232439160346985,L, + 75052506750,0.236955583095551,L, + 76976930000,0.241209626197815,L, + 78901353250,0.245230555534363,L, + 80825776500,0.249043583869934,L, + 82750199750,0.252670884132385,L, + 84674623000,0.256132125854492,L, + 86599046250,0.259445428848267,L, + 88523469500,0.262627243995667,L, + 90447892750,0.265693783760071,L, + 92372316000,0.268660545349121,L, + 94296739250,0.271543502807617,L, + 96221162500,0.274359107017517,L, + 98145585750,0.277126193046570,L, + 100070009000,0.279866337776184,L, + 101994432250,0.282606124877930,L, + 103918855500,0.285380840301514,L, + 105843278750,0.288241863250732,L, + 107767702000,0.291270613670349,L, + 109692125250,0.294619202613831,L, + 111616548500,0.298653244972229,L, + 113540971750,0.305199623107910,L, + 115465395000,0.316694140434265,L, + 117389818250,0.328217029571533,L, + 119314241500,0.339769959449768,L, + 121238664750,0.351353883743286,L, + 123163088000,0.362970232963562,L, + 125087511250,0.374620437622070,L, + 127011934500,0.386306285858154,L, + 128936357750,0.398029446601868,L, + 130860781000,0.409791707992554,L, + 132785204250,0.421595335006714,L, + 134709627500,0.433442473411560,L, + 136634050750,0.445335745811462,L, + 138558474000,0.457277655601501,L, + 140482897250,0.469271302223206,L, + 142407320500,0.481320023536682,L, + 144331743750,0.493427634239197,L, + 146256167000,0.505598068237305,L, + 148180590250,0.517835855484009,L, + 150105013500,0.530146002769470,L, + 152029436750,0.542533874511719,L, + 153953860000,0.555005073547363,L, + 155878283250,0.567565560340881,L, + 157802706500,0.580220222473145,L, + 159727129750,0.592971086502075,L, + 161651553000,0.605812549591064,L, + 163575976250,0.618717908859253,L, + 165500399500,0.631595373153687,L, + 167424822750,0.644122362136841,L, + 169349246000,0.654923200607300,L, + 171273669250,0.659229636192322,L, + 173198092500,0.007775783538818,L, + 342547338500,0.007775783538818,L, + 344471761750,0.003468930721283,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 4.999998146991984 + KeyVer: 4005 + KeyCount: 66 + Key: + 0,4.999998146991984,L, + 42337311500,4.999998146991984,L, + 44261734750,5.000001562086569,L, + 46186158000,5.000002415860215,L, + 50035004500,5.000002415860215,L, + 51959427750,5.000001988973392,L, + 53883851000,5.000002842747039,L, + 55808274250,5.000002415860215,L, + 57732697500,4.999998573878807,L, + 59657120750,4.999998146991984,L, + 61581544000,4.999998573878807,L, + 65430390500,4.999998573878807,L, + 67354813750,5.000002415860215,L, + 69279237000,5.000002415860215,L, + 73128083500,5.000001562086569,L, + 75052506750,5.000002415860215,L, + 76976930000,5.000002842747039,L, + 80825776500,5.000001988973392,L, + 82750199750,5.000002415860215,L, + 84674623000,5.000001988973392,L, + 86599046250,5.000001988973392,L, + 88523469500,5.000002415860215,L, + 90447892750,5.000001988973392,L, + 94296739250,5.000001988973392,L, + 96221162500,5.000002842747039,L, + 98145585750,5.000002415860215,L, + 100070009000,5.000002842747039,L, + 101994432250,5.000001988973392,L, + 103918855500,5.000002415860215,L, + 105843278750,5.000002415860215,L, + 107767702000,5.000001988973392,L, + 109692125250,5.000002842747039,L, + 111616548500,5.000002415860215,L, + 113540971750,4.999998573878807,L, + 117389818250,4.999998573878807,L, + 119314241500,4.999999000765630,L, + 121238664750,4.999998573878807,L, + 123163088000,4.999998573878807,L, + 125087511250,4.999999427652454,L, + 127011934500,4.999998573878807,L, + 128936357750,4.999999000765630,L, + 130860781000,4.999998573878807,L, + 132785204250,4.999999000765630,L, + 134709627500,4.999998573878807,L, + 136634050750,4.999998573878807,L, + 138558474000,4.999999427652454,L, + 140482897250,4.999998573878807,L, + 142407320500,4.999998573878807,L, + 144331743750,4.999999000765630,L, + 146256167000,4.999998573878807,L, + 148180590250,4.999999000765630,L, + 150105013500,4.999999000765630,L, + 152029436750,4.999998573878807,L, + 153953860000,4.999998573878807,L, + 155878283250,4.999999000765630,L, + 157802706500,4.999998146991984,L, + 159727129750,4.999999000765630,L, + 161651553000,4.999999000765630,L, + 163575976250,4.999998146991984,L, + 165500399500,4.999998573878807,L, + 167424822750,4.999999427652454,L, + 169349246000,4.999999000765630,L, + 171273669250,5.000001988973392,L, + 173198092500,5.000001135199746,L, + 342547338500,5.000001135199746,L, + 344471761750,4.999998146991984,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724447250366,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789961040019989,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165653705597,L, + 65430390500,0.844384014606476,L, + 67354813750,0.846774995326996,L, + 69279237000,0.846711575984955,L, + 71203660250,0.846496880054474,L, + 73128083500,0.846090912818909,L, + 75052506750,0.845448017120361,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246221542358,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443862438202,L, + 84674623000,0.836794614791870,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724133014679,L, + 90447892750,0.825212240219116,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457268238068,L, + 98145585750,0.800120592117310,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425152301788,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868937492371,L, + 109692125250,0.742985010147095,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932615756989,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114625453949,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841348648071,L, + 127011934500,0.615940690040588,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260389328003,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900276660919,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030580759048,L, + 144331743750,0.444688647985458,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353395223618,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324568033218,L, + 159727129750,0.276004135608673,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549909472466,L, + 171273669250,0.163711935281754,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603694438934,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724447250366,L, + 51959427750,0.728789210319519,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789961040019989,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165653705597,L, + 65430390500,0.844384014606476,L, + 67354813750,0.846774995326996,L, + 69279237000,0.846711575984955,L, + 71203660250,0.846496880054474,L, + 73128083500,0.846090912818909,L, + 75052506750,0.845448017120361,L, + 76976930000,0.844517946243286,L, + 78901353250,0.843246221542358,L, + 80825776500,0.841574668884277,L, + 82750199750,0.839443862438202,L, + 84674623000,0.836794614791870,L, + 86599046250,0.833571374416351,L, + 88523469500,0.829724133014679,L, + 90447892750,0.825212240219116,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088821411133,L, + 96221162500,0.807457268238068,L, + 98145585750,0.800120592117310,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425152301788,L, + 103918855500,0.774133324623108,L, + 105843278750,0.764266610145569,L, + 107767702000,0.753868937492371,L, + 109692125250,0.742985010147095,L, + 111616548500,0.731658995151520,L, + 113540971750,0.719932615756989,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114625453949,L, + 119314241500,0.679874062538147,L, + 121238664750,0.664867758750916,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841348648071,L, + 127011934500,0.615940690040588,L, + 128936357750,0.598515450954437,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260389328003,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900276660919,L, + 140482897250,0.485109865665436,L, + 142407320500,0.465030580759048,L, + 144331743750,0.444688647985458,L, + 146256167000,0.424110561609268,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353395223618,L, + 152029436750,0.361232221126556,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674474954605,L, + 157802706500,0.297324568033218,L, + 159727129750,0.276004135608673,L, + 161651553000,0.254796802997589,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288962841034,L, + 167424822750,0.193562671542168,L, + 169349246000,0.175549909472466,L, + 171273669250,0.163711935281754,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.470955967903137 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.470955967903137,L, + 1924423250,0.471168816089630,L, + 3848846500,0.471811860799789,L, + 5773269750,0.472888112068176,L, + 7697693000,0.474394261837006,L, + 9622116250,0.476318985223770,L, + 11546539500,0.478641420602798,L, + 13470962750,0.481329768896103,L, + 15395386000,0.484340310096741,L, + 17319809250,0.487617343664169,L, + 19244232500,0.491094112396240,L, + 21168655750,0.494694739580154,L, + 23093079000,0.498337268829346,L, + 25017502250,0.501937866210938,L, + 26941925500,0.505414605140686,L, + 28866348750,0.508691668510437,L, + 30790772000,0.511702179908752,L, + 32715195250,0.514390528202057,L, + 34639618500,0.516713023185730,L, + 36564041750,0.518637716770172,L, + 38488465000,0.520143806934357,L, + 40412888250,0.521220147609711,L, + 42337311500,0.521863162517548,L, + 44261734750,0.522076010704041,L, + 46186158000,0.519478261470795,L, + 48110581250,0.511636376380920,L, + 50035004500,0.498705565929413,L, + 51959427750,0.481252878904343,L, + 53883851000,0.460353404283524,L, + 55808274250,0.437574774026871,L, + 57732697500,0.414796084165573,L, + 59657120750,0.393896639347076,L, + 61581544000,0.376443952322006,L, + 63505967250,0.363513112068176,L, + 65430390500,0.355671197175980,L, + 67354813750,0.353073537349701,L, + 69279237000,0.353420913219452,L, + 71203660250,0.354470372200012,L, + 73128083500,0.356227159500122,L, + 75052506750,0.358687251806259,L, + 76976930000,0.361834883689880,L, + 78901353250,0.365640521049500,L, + 80825776500,0.370058417320251,L, + 82750199750,0.375025391578674,L, + 84674623000,0.380459994077682,L, + 86599046250,0.386263668537140,L, + 88523469500,0.392322778701782,L, + 90447892750,0.398512482643127,L, + 92372316000,0.404702246189117,L, + 94296739250,0.410761296749115,L, + 96221162500,0.416564971208572,L, + 98145585750,0.421999633312225,L, + 100070009000,0.426966518163681,L, + 101994432250,0.431384444236755,L, + 103918855500,0.435190111398697,L, + 105843278750,0.438337802886963,L, + 107767702000,0.440797805786133,L, + 109692125250,0.442554593086243,L, + 111616548500,0.443604022264481,L, + 113540971750,0.443951487541199,L, + 115465395000,0.443126082420349,L, + 117389818250,0.440772891044617,L, + 119314241500,0.437052309513092,L, + 121238664750,0.432098686695099,L, + 123163088000,0.426025807857513,L, + 125087511250,0.418931365013123,L, + 127011934500,0.410899817943573,L, + 128936357750,0.402005046606064,L, + 130860781000,0.392312228679657,L, + 132785204250,0.381879091262817,L, + 134709627500,0.370757669210434,L, + 136634050750,0.358994752168655,L, + 138558474000,0.346633046865463,L, + 140482897250,0.333712041378021,L, + 142407320500,0.320268183946609,L, + 144331743750,0.306336015462875,L, + 146256167000,0.291948527097702,L, + 148180590250,0.277137786149979,L, + 150105013500,0.261935621500015,L, + 152029436750,0.246374800801277,L, + 153953860000,0.230489835143089,L, + 155878283250,0.214318752288818,L, + 157802706500,0.197905763983727,L, + 159727129750,0.181305050849915,L, + 161651553000,0.164588317275047,L, + 163575976250,0.147858649492264,L, + 165500399500,0.131281450390816,L, + 167424822750,0.115166485309601,L, + 169349246000,0.100264906883240,L, + 171273669250,0.090337850153446,L, + 173198092500,0.325813710689545,L, + 342547338500,0.325813710689545,L, + 344471761750,0.468949675559998,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_051" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.083437442779541 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.083437442779541,L, + 1924423250,-0.083251357078552,L, + 3848846500,-0.082720637321472,L, + 5773269750,-0.081880688667297,L, + 7697693000,-0.080761432647705,L, + 9622116250,-0.079387664794922,L, + 11546539500,-0.077780961990356,L, + 13470962750,-0.075959920883179,L, + 15395386000,-0.073940634727478,L, + 17319809250,-0.071737170219421,L, + 19244232500,-0.069362163543701,L, + 21168655750,-0.066826462745667,L, + 23093079000,-0.064140200614929,L, + 25017502250,-0.061312198638916,L, + 26941925500,-0.058350443840027,L, + 28866348750,-0.055262327194214,L, + 30790772000,-0.052054643630981,L, + 32715195250,-0.048733472824097,L, + 34639618500,-0.045304775238037,L, + 36564041750,-0.041773796081543,L, + 38488465000,-0.038146138191223,L, + 40412888250,-0.034426689147949,L, + 42337311500,-0.030620932579041,L, + 44261734750,-0.026734352111816,L, + 46186158000,-0.022773027420044,L, + 48110581250,-0.018745303153992,L, + 50035004500,-0.014661192893982,L, + 51959427750,-0.010537266731262,L, + 53883851000,-0.006403803825378,L, + 55808274250,-0.002335667610168,L, + 57732697500,0.001278758049011,L, + 59657120750,0.003661751747131,L, + 61581544000,0.006383061408997,L, + 63505967250,0.009332895278931,L, + 65430390500,0.012299180030823,L, + 67354813750,0.015240430831909,L, + 69279237000,0.018139839172363,L, + 71203660250,0.020987987518311,L, + 73128083500,0.023778676986694,L, + 75052506750,0.026506900787354,L, + 76976930000,0.029168605804443,L, + 78901353250,0.031759858131409,L, + 80825776500,0.034276723861694,L, + 82750199750,0.036715388298035,L, + 84674623000,0.039071202278137,L, + 86599046250,0.041339993476868,L, + 88523469500,0.043516874313354,L, + 90447892750,0.045596599578857,L, + 92372316000,0.047573208808899,L, + 94296739250,0.049440145492554,L, + 96221162500,0.051190018653870,L, + 98145585750,0.052815079689026,L, + 100070009000,0.054305553436279,L, + 101994432250,0.055651187896729,L, + 103918855500,0.056839942932129,L, + 105843278750,0.057857871055603,L, + 107767702000,0.058688521385193,L, + 109692125250,0.059313058853149,L, + 111616548500,0.059708476066589,L, + 113540971750,0.059847474098206,L, + 115465395000,0.059847235679626,L, + 117389818250,0.059846878051758,L, + 119314241500,0.059845805168152,L, + 121238664750,0.059843301773071,L, + 123163088000,0.059839367866516,L, + 125087511250,0.059833168983459,L, + 127011934500,0.059824228286743,L, + 128936357750,0.059812068939209,L, + 130860781000,0.059796214103699,L, + 132785204250,0.059775710105896,L, + 134709627500,0.059749960899353,L, + 136634050750,0.059718251228333,L, + 138558474000,0.059679985046387,L, + 140482897250,0.059634327888489,L, + 142407320500,0.059580326080322,L, + 144331743750,0.059517383575439,L, + 146256167000,0.059444546699524,L, + 148180590250,0.059360861778259,L, + 150105013500,0.059265613555908,L, + 152029436750,0.059158086776733,L, + 153953860000,0.059037208557129,L, + 155878283250,0.058902263641357,L, + 157802706500,0.058752536773682,L, + 159727129750,0.058587431907654,L, + 161651553000,0.058405876159668,L, + 163575976250,0.058207511901855,L, + 165500399500,0.057991743087769,L, + 167424822750,0.057758212089539,L, + 169349246000,0.057506322860718,L, + 171273669250,0.057235598564148,L, + 173198092500,0.056946158409119,L, + 175122515750,0.056637763977051,L, + 177046939000,0.056309819221497,L, + 178971362250,0.055962800979614,L, + 180895785500,0.055596709251404,L, + 182820208750,0.055211424827576,L, + 184744632000,0.054807186126709,L, + 186669055250,0.054384469985962,L, + 188593478500,0.053943395614624,L, + 190517901750,0.053484201431274,L, + 192442325000,0.053007483482361,L, + 194366748250,0.052513480186462,L, + 196291171500,0.052002549171448,L, + 198215594750,0.051475405693054,L, + 200140018000,0.050932288169861,L, + 202064441250,0.050373792648315,L, + 203988864500,0.049800515174866,L, + 205913287750,0.049212932586670,L, + 207837711000,0.048611402511597,L, + 209762134250,0.047996520996094,L, + 211686557500,0.047368645668030,L, + 213610980750,0.046728610992432,L, + 215535404000,0.046006560325623,L, + 217459827250,0.045132040977478,L, + 219384250500,0.044104933738708,L, + 221308673750,0.042926549911499,L, + 223233097000,0.041599273681641,L, + 225157520250,0.040127277374268,L, + 227081943500,0.038517236709595,L, + 229006366750,0.036777377128601,L, + 230930790000,0.034918546676636,L, + 232855213250,0.032953977584839,L, + 234779636500,0.030899643898010,L, + 236704059750,0.028773307800293,L, + 238628483000,0.026595234870911,L, + 240552906250,0.024387478828430,L, + 242477329500,0.022173166275024,L, + 244401752750,0.019975900650024,L, + 246326176000,0.017819881439209,L, + 248250599250,0.015727877616882,L, + 250175022500,0.013722181320190,L, + 252099445750,0.011822581291199,L, + 254023869000,0.010047197341919,L, + 255948292250,0.008411407470703,L, + 257872715500,0.006927967071533,L, + 259797138750,0.005606889724731,L, + 261721562000,0.004455685615540,L, + 263645985250,0.003480076789856,L, + 265570408500,0.002682566642761,L, + 267494831750,0.002064704895020,L, + 269419255000,0.001626133918762,L, + 271343678250,0.001365065574646,L, + 273268101500,0.001278758049011,L, + 298285603750,0.001278758049011,L, + 300210027000,0.000954270362854,L, + 302134450250,-0.000026106834412,L, + 304058873500,-0.001667141914368,L, + 305983296750,-0.003965020179749,L, + 307907720000,-0.006905317306519,L, + 309832143250,-0.010460257530212,L, + 311756566500,-0.014587163925171,L, + 313680989750,-0.019227027893066,L, + 315605413000,-0.024303555488586,L, + 317529836250,-0.029724836349487,L, + 319454259500,-0.035384774208069,L, + 321378682750,-0.041166663169861,L, + 323303106000,-0.046948790550232,L, + 325227529250,-0.052608728408813,L, + 327151952500,-0.058029890060425,L, + 329076375750,-0.063106536865234,L, + 331000799000,-0.067746400833130,L, + 332925222250,-0.071873068809509,L, + 334849645500,-0.075428009033203,L, + 336774068750,-0.078368306159973,L, + 338698492000,-0.080666422843933,L, + 340622915250,-0.082307457923889,L, + 342547338500,-0.083287715911865,L, + 344471761750,-0.083612203598022,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.122710585594177 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.122710585594177,L, + 1924423250,-0.122655749320984,L, + 3848846500,-0.122499465942383,L, + 5773269750,-0.122252106666565,L, + 7697693000,-0.121922254562378,L, + 9622116250,-0.121517300605774,L, + 11546539500,-0.121043562889099,L, + 13470962750,-0.120506525039673,L, + 15395386000,-0.119910836219788,L, + 17319809250,-0.119260668754578,L, + 19244232500,-0.118559479713440,L, + 21168655750,-0.117810726165771,L, + 23093079000,-0.117017030715942,L, + 25017502250,-0.116181254386902,L, + 26941925500,-0.115305423736572,L, + 28866348750,-0.114391803741455,L, + 30790772000,-0.113442301750183,L, + 32715195250,-0.112458705902100,L, + 34639618500,-0.111442327499390,L, + 36564041750,-0.110395073890686,L, + 38488465000,-0.109318017959595,L, + 40412888250,-0.108212590217590,L, + 42337311500,-0.107080221176147,L, + 44261734750,-0.105922102928162,L, + 46186158000,-0.104739665985107,L, + 48110581250,-0.103534817695618,L, + 50035004500,-0.102309346199036,L, + 51959427750,-0.101066827774048,L, + 53883851000,-0.099813342094421,L, + 55808274250,-0.098563909530640,L, + 57732697500,-0.097399830818176,L, + 59657120750,-0.096333265304565,L, + 61581544000,-0.095028996467590,L, + 63505967250,-0.093658804893494,L, + 65430390500,-0.092274785041809,L, + 67354813750,-0.090887784957886,L, + 69279237000,-0.089501976966858,L, + 71203660250,-0.088119983673096,L, + 73128083500,-0.086743235588074,L, + 75052506750,-0.085372686386108,L, + 76976930000,-0.084009408950806,L, + 78901353250,-0.082654237747192,L, + 80825776500,-0.081307649612427,L, + 82750199750,-0.079970359802246,L, + 84674623000,-0.078643083572388,L, + 86599046250,-0.077326536178589,L, + 88523469500,-0.076021432876587,L, + 90447892750,-0.074728250503540,L, + 92372316000,-0.073448300361633,L, + 94296739250,-0.072182059288025,L, + 96221162500,-0.070930957794189,L, + 98145585750,-0.069695591926575,L, + 100070009000,-0.068477630615234,L, + 101994432250,-0.067278385162354,L, + 103918855500,-0.066099286079407,L, + 105843278750,-0.064942240715027,L, + 107767702000,-0.063809633255005,L, + 109692125250,-0.062703728675842,L, + 111616548500,-0.061627626419067,L, + 113540971750,-0.060585141181946,L, + 115465395000,-0.059554457664490,L, + 117389818250,-0.058511853218079,L, + 119314241500,-0.057457804679871,L, + 121238664750,-0.056393027305603,L, + 123163088000,-0.055317997932434,L, + 125087511250,-0.054233670234680,L, + 127011934500,-0.053140997886658,L, + 128936357750,-0.052040696144104,L, + 130860781000,-0.050934195518494,L, + 132785204250,-0.049822449684143,L, + 134709627500,-0.048706769943237,L, + 136634050750,-0.047588706016541,L, + 138558474000,-0.046469807624817,L, + 140482897250,-0.045351386070251,L, + 142407320500,-0.044235706329346,L, + 144331743750,-0.043124318122864,L, + 146256167000,-0.042019248008728,L, + 148180590250,-0.040922403335571,L, + 150105013500,-0.039835929870605,L, + 152029436750,-0.038762331008911,L, + 153953860000,-0.037703275680542,L, + 155878283250,-0.036661267280579,L, + 157802706500,-0.035638451576233,L, + 159727129750,-0.034637212753296,L, + 161651553000,-0.033659219741821,L, + 163575976250,-0.032707095146179,L, + 165500399500,-0.031782388687134,L, + 167424822750,-0.030887246131897,L, + 169349246000,-0.030023217201233,L, + 171273669250,-0.029191970825195,L, + 173198092500,-0.028395175933838,L, + 175122515750,-0.027633666992188,L, + 177046939000,-0.026908993721008,L, + 178971362250,-0.026221871376038,L, + 180895785500,-0.025573015213013,L, + 182820208750,-0.024963140487671,L, + 184744632000,-0.024392604827881,L, + 186669055250,-0.023861527442932,L, + 188593478500,-0.023370146751404,L, + 190517901750,-0.022918581962585,L, + 192442325000,-0.022506356239319,L, + 194366748250,-0.022133231163025,L, + 196291171500,-0.021798729896545,L, + 198215594750,-0.021502614021301,L, + 200140018000,-0.021244049072266,L, + 202064441250,-0.021022558212280,L, + 203988864500,-0.020837426185608,L, + 205913287750,-0.020687699317932,L, + 207837711000,-0.020572781562805,L, + 209762134250,-0.020491600036621,L, + 211686557500,-0.020443677902222,L, + 213610980750,-0.020427942276001,L, + 215535404000,-0.020604133605957,L, + 217459827250,-0.021135568618774,L, + 219384250500,-0.022025465965271,L, + 221308673750,-0.023274660110474,L, + 223233097000,-0.024880766868591,L, + 225157520250,-0.026837348937988,L, + 227081943500,-0.029134392738342,L, + 229006366750,-0.031757116317749,L, + 230930790000,-0.034685492515564,L, + 232855213250,-0.037894129753113,L, + 234779636500,-0.041351914405823,L, + 236704059750,-0.045022726058960,L, + 238628483000,-0.048864960670471,L, + 240552906250,-0.052833199501038,L, + 242477329500,-0.056878328323364,L, + 244401752750,-0.060949444770813,L, + 246326176000,-0.064994573593140,L, + 248250599250,-0.068962693214417,L, + 250175022500,-0.072804927825928,L, + 252099445750,-0.076475858688354,L, + 254023869000,-0.079933524131775,L, + 255948292250,-0.083142280578613,L, + 257872715500,-0.086070537567139,L, + 259797138750,-0.088693380355835,L, + 261721562000,-0.090990543365479,L, + 263645985250,-0.092947125434875,L, + 265570408500,-0.094553112983704,L, + 267494831750,-0.095802307128906,L, + 269419255000,-0.096692204475403,L, + 271343678250,-0.097223758697510,L, + 273268101500,-0.097399830818176,L, + 298285603750,-0.097399830818176,L, + 300210027000,-0.097496867179871,L, + 302134450250,-0.097789764404297,L, + 304058873500,-0.098279953002930,L, + 305983296750,-0.098966598510742,L, + 307907720000,-0.099844932556152,L, + 309832143250,-0.100907087326050,L, + 311756566500,-0.102139949798584,L, + 313680989750,-0.103526115417480,L, + 315605413000,-0.105042934417725,L, + 317529836250,-0.106662511825562,L, + 319454259500,-0.108353614807129,L, + 321378682750,-0.110080957412720,L, + 323303106000,-0.111808419227600,L, + 325227529250,-0.113499283790588,L, + 327151952500,-0.115118980407715,L, + 329076375750,-0.116635680198669,L, + 331000799000,-0.118021845817566,L, + 332925222250,-0.119254946708679,L, + 334849645500,-0.120316863059998,L, + 336774068750,-0.121195435523987,L, + 338698492000,-0.121881961822510,L, + 340622915250,-0.122372269630432,L, + 342547338500,-0.122665166854858,L, + 344471761750,-0.122762084007263,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.313043236732483 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.313043236732483,L, + 1924423250,0.313851237297058,L, + 3848846500,0.316155076026917,L, + 5773269750,0.319797515869141,L, + 7697693000,0.324647068977356,L, + 9622116250,0.330592393875122,L, + 11546539500,0.337537884712219,L, + 13470962750,0.345400691032410,L, + 15395386000,0.354108572006226,L, + 17319809250,0.363597869873047,L, + 19244232500,0.373811841011047,L, + 21168655750,0.384699821472168,L, + 23093079000,0.396215677261353,L, + 25017502250,0.408317685127258,L, + 26941925500,0.420967221260071,L, + 28866348750,0.434128761291504,L, + 30790772000,0.447768211364746,L, + 32715195250,0.461853504180908,L, + 34639618500,0.476353168487549,L, + 36564041750,0.491236090660095,L, + 38488465000,0.506470084190369,L, + 40412888250,0.522021412849426,L, + 42337311500,0.537852883338928,L, + 44261734750,0.553921222686768,L, + 46186158000,0.570173025131226,L, + 48110581250,0.586538910865784,L, + 50035004500,0.602917075157166,L, + 51959427750,0.619145989418030,L, + 53883851000,0.634922623634338,L, + 55808274250,0.649511218070984,L, + 57732697500,0.659229636192322,L, + 59657120750,0.034105956554413,L, + 111616548500,0.034105956554413,L, + 113540971750,0.007775783538818,L, + 211686557500,0.007775783538818,L, + 213610980750,-0.003737449645996,L, + 215535404000,-0.003602862358093,L, + 217459827250,-0.003190577030182,L, + 219384250500,-0.002487361431122,L, + 221308673750,-0.001480817794800,L, + 223233097000,-0.000159323215485,L, + 225157520250,0.001487612724304,L, + 227081943500,0.003468930721283,L, + 229006366750,0.005791187286377,L, + 230930790000,0.008458554744720,L, + 232855213250,0.011471807956696,L, + 234779636500,0.014828264713287,L, + 236704059750,0.018521249294281,L, + 238628483000,0.022539854049683,L, + 240552906250,0.026868939399719,L, + 242477329500,0.031489253044128,L, + 244401752750,0.036377847194672,L, + 246326176000,0.041508376598358,L, + 248250599250,0.046852290630341,L, + 250175022500,0.052379429340363,L, + 252099445750,0.058058559894562,L, + 254023869000,0.063858866691589,L, + 255948292250,0.069750249385834,L, + 257872715500,0.075704157352448,L, + 259797138750,0.081693947315216,L, + 261721562000,0.087695300579071,L, + 263645985250,0.093686521053314,L, + 265570408500,0.099648535251617,L, + 267494831750,0.105564653873444,L, + 269419255000,0.111420750617981,L, + 271343678250,0.117204964160919,L, + 273268101500,0.122907578945160,L, + 275192524750,0.128847539424896,L, + 277116948000,0.135353744029999,L, + 279041371250,0.142412185668945,L, + 280965794500,0.149971663951874,L, + 282890217750,0.157934725284576,L, + 284814641000,0.166156113147736,L, + 286739064250,0.174453496932983,L, + 288663487500,0.182631552219391,L, + 290587910750,0.190510511398315,L, + 292512334000,0.197949647903442,L, + 294436757250,0.204857110977173,L, + 296361180500,0.211187541484833,L, + 298285603750,0.216931939125061,L, + 300210027000,0.222417056560516,L, + 302134450250,0.227952182292938,L, + 304058873500,0.233519673347473,L, + 305983296750,0.239098072052002,L, + 307907720000,0.244661808013916,L, + 309832143250,0.250180602073669,L, + 311756566500,0.255620360374451,L, + 313680989750,0.260943055152893,L, + 315605413000,0.266107678413391,L, + 317529836250,0.271072030067444,L, + 319454259500,0.275794029235840,L, + 321378682750,0.280233860015869,L, + 323303106000,0.284355759620667,L, + 325227529250,0.288129925727844,L, + 327151952500,0.291533589363098,L, + 329076375750,0.294551730155945,L, + 331000799000,0.297177076339722,L, + 332925222250,0.299409866333008,L, + 334849645500,0.301256179809570,L, + 336774068750,0.302727460861206,L, + 338698492000,0.303838968276978,L, + 340622915250,0.304608345031738,L, + 342547338500,0.305055260658264,L, + 344471761750,0.305199623107910,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.865117763194306 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 97 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224199771881,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256903171539,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981647014618,L, + 15395386000,0.643294751644135,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325549125671,L, + 21168655750,0.595212221145630,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520785331726,L, + 30790772000,0.496082603931427,L, + 32715195250,0.473943561315536,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760750055313,L, + 38488465000,0.403816282749176,L, + 40412888250,0.379373013973236,L, + 42337311500,0.354489475488663,L, + 44261734750,0.329233765602112,L, + 46186158000,0.303689211606979,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222955226898,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711920380592,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128414511681,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390150427818,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101194381714,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067114353180,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529035091400,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230244636536,L, + 100070009000,0.636014401912689,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207318305969,L, + 105843278750,0.671346843242645,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452687263489,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208261966705,L, + 286739064250,0.778779327869415,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534842967987,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739079475403,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825327396393,L, + 304058873500,0.842373311519623,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234600067139,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135823726654,L, + 315605413000,0.808550477027893,L, + 317529836250,0.800450026988983,L, + 319454259500,0.791993081569672,L, + 323303106000,0.774714529514313,L, + 325227529250,0.766257584095001,L, + 327151952500,0.758157253265381,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161283493042,L, + 336774068750,0.727767825126648,L, + 338698492000,0.724334299564362,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932675361633,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.707840383052826 + KeyVer: 4005 + KeyCount: 97 + Key: + 0,0.707840383052826,L, + 1924423250,0.706570267677307,L, + 3848846500,0.702949166297913,L, + 5773269750,0.697224199771881,L, + 7697693000,0.689601659774780,L, + 9622116250,0.680256903171539,L, + 11546539500,0.669340312480927,L, + 13470962750,0.656981647014618,L, + 15395386000,0.643294751644135,L, + 17319809250,0.628379762172699,L, + 19244232500,0.612325549125671,L, + 21168655750,0.595212221145630,L, + 23093079000,0.577111899852753,L, + 25017502250,0.558090269565582,L, + 26941925500,0.538207769393921,L, + 28866348750,0.517520785331726,L, + 30790772000,0.496082603931427,L, + 32715195250,0.473943561315536,L, + 34639618500,0.451153278350830,L, + 36564041750,0.427760750055313,L, + 38488465000,0.403816282749176,L, + 40412888250,0.379373013973236,L, + 42337311500,0.354489475488663,L, + 44261734750,0.329233765602112,L, + 46186158000,0.303689211606979,L, + 48110581250,0.277965992689133,L, + 50035004500,0.252222955226898,L, + 51959427750,0.226714655756950,L, + 53883851000,0.201917380094528,L, + 55808274250,0.178987368941307,L, + 57732697500,0.163711920380592,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128414511681,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390150427818,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101194381714,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390063285828,L, + 82750199750,0.463067114353180,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529035091400,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230244636536,L, + 100070009000,0.636014401912689,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207318305969,L, + 105843278750,0.671346843242645,L, + 107767702000,0.679632782936096,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822435379028,L, + 113540971750,0.691212534904480,L, + 273268101500,0.691212534904480,L, + 275192524750,0.693248629570007,L, + 277116948000,0.699399232864380,L, + 279041371250,0.709582090377808,L, + 280965794500,0.723452687263489,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208261966705,L, + 286739064250,0.778779327869415,L, + 288663487500,0.797652363777161,L, + 290587910750,0.814534842967987,L, + 292512334000,0.828405380249023,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739079475403,L, + 298285603750,0.846774995326996,L, + 300210027000,0.846290111541748,L, + 302134450250,0.844825327396393,L, + 304058873500,0.842373311519623,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546327590942,L, + 309832143250,0.829234600067139,L, + 311756566500,0.823068439960480,L, + 313680989750,0.816135823726654,L, + 315605413000,0.808550477027893,L, + 317529836250,0.800450026988983,L, + 319454259500,0.791993081569672,L, + 323303106000,0.774714529514313,L, + 325227529250,0.766257584095001,L, + 327151952500,0.758157253265381,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639230728149,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161283493042,L, + 336774068750,0.727767825126648,L, + 338698492000,0.724334299564362,L, + 340622915250,0.721882283687592,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932675361633,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.443177700042725 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.443177700042725,L, + 1924423250,0.442354142665863,L, + 3848846500,0.440006107091904,L, + 5773269750,0.436293631792068,L, + 7697693000,0.431350827217102,L, + 9622116250,0.425291270017624,L, + 11546539500,0.418212383985519,L, + 13470962750,0.410198450088501,L, + 15395386000,0.401323109865189,L, + 17319809250,0.391651481389999,L, + 19244232500,0.381241202354431,L, + 21168655750,0.370144069194794,L, + 23093079000,0.358406931161880,L, + 25017502250,0.346072286367416,L, + 26941925500,0.333179533481598,L, + 28866348750,0.319765120744705,L, + 30790772000,0.305863469839096,L, + 32715195250,0.291507422924042,L, + 34639618500,0.276729047298431,L, + 36564041750,0.261560231447220,L, + 38488465000,0.246033415198326,L, + 40412888250,0.230183169245720,L, + 42337311500,0.214047491550446,L, + 44261734750,0.197670400142670,L, + 46186158000,0.181106030941010,L, + 48110581250,0.164425879716873,L, + 50035004500,0.147732794284821,L, + 51959427750,0.131191894412041,L, + 53883851000,0.115112125873566,L, + 55808274250,0.100243113934994,L, + 57732697500,0.090337842702866,L, + 59657120750,0.090913206338882,L, + 61581544000,0.096882514655590,L, + 63505967250,0.105280593037605,L, + 65430390500,0.114354126155376,L, + 67354813750,0.123738162219524,L, + 69279237000,0.133280366659164,L, + 71203660250,0.142899006605148,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778872609138,L, + 78901353250,0.181323498487473,L, + 80825776500,0.190795242786407,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460526704788,L, + 86599046250,0.218626752495766,L, + 88523469500,0.227664530277252,L, + 90447892750,0.236560538411140,L, + 92372316000,0.245301142334938,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441055297852,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286125987768173,L, + 103918855500,0.293583661317825,L, + 105843278750,0.300750553607941,L, + 107767702000,0.307596147060394,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174127817154,L, + 113540971750,0.325813710689545,L, + 115465395000,0.331132411956787,L, + 117389818250,0.336296021938324,L, + 119314241500,0.341301530599594,L, + 121238664750,0.346146106719971,L, + 123163088000,0.350827097892761,L, + 125087511250,0.355342209339142,L, + 127011934500,0.359689176082611,L, + 128936357750,0.363866358995438,L, + 130860781000,0.367872446775436,L, + 132785204250,0.371706426143646,L, + 134709627500,0.375367969274521,L, + 136634050750,0.378857314586639,L, + 138558474000,0.382175117731094,L, + 140482897250,0.385322928428650,L, + 142407320500,0.388302773237228,L, + 144331743750,0.391117691993713,L, + 146256167000,0.393771290779114,L, + 148180590250,0.396268099546432,L, + 150105013500,0.398613482713699,L, + 152029436750,0.400813579559326,L, + 153953860000,0.402875423431396,L, + 155878283250,0.404806673526764,L, + 157802706500,0.406615912914276,L, + 159727129750,0.408312350511551,L, + 161651553000,0.409905642271042,L, + 163575976250,0.411406338214874,L, + 165500399500,0.412825018167496,L, + 167424822750,0.414172887802124,L, + 169349246000,0.415461122989655,L, + 171273669250,0.416701316833496,L, + 173198092500,0.417904585599899,L, + 175122515750,0.419082522392273,L, + 177046939000,0.420245885848999,L, + 178971362250,0.421405613422394,L, + 180895785500,0.422571837902069,L, + 182820208750,0.423754483461380,L, + 184744632000,0.424963027238846,L, + 186669055250,0.426206082105637,L, + 188593478500,0.427491784095764,L, + 190517901750,0.428827673196793,L, + 192442325000,0.430220514535904,L, + 194366748250,0.431676805019379,L, + 196291171500,0.433201909065247,L, + 198215594750,0.434800833463669,L, + 200140018000,0.436477988958359,L, + 202064441250,0.438237279653549,L, + 203988864500,0.440081864595413,L, + 205913287750,0.442014694213867,L, + 207837711000,0.444037884473801,L, + 209762134250,0.446153581142426,L, + 211686557500,0.448363006114960,L, + 213610980750,0.450667560100555,L, + 215535404000,0.453080892562866,L, + 217459827250,0.455614835023880,L, + 219384250500,0.458265960216522,L, + 221308673750,0.461029708385468,L, + 223233097000,0.463899403810501,L, + 225157520250,0.466866850852966,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050653934479,L, + 230930790000,0.476239442825317,L, + 232855213250,0.479470580816269,L, + 234779636500,0.482724636793137,L, + 236704059750,0.485980242490768,L, + 238628483000,0.489214450120926,L, + 240552906250,0.492403209209442,L, + 242477329500,0.495522081851959,L, + 244401752750,0.498546540737152,L, + 246326176000,0.501453340053558,L, + 248250599250,0.504220187664032,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257435798645,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530373573303,L, + 257872715500,0.515353024005890,L, + 259797138750,0.516957759857178,L, + 261721562000,0.518341422080994,L, + 263645985250,0.519502997398376,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166741847992,L, + 269419255000,0.521676003932953,L, + 271343678250,0.521977126598358,L, + 273268101500,0.522076010704041,L, + 275192524750,0.519864141941071,L, + 277116948000,0.513182044029236,L, + 279041371250,0.502119302749634,L, + 280965794500,0.487050443887711,L, + 282890217750,0.468709260225296,L, + 284814641000,0.448205709457397,L, + 286739064250,0.426943808794022,L, + 288663487500,0.406440258026123,L, + 290587910750,0.388099074363708,L, + 292512334000,0.373030185699463,L, + 294436757250,0.361967444419861,L, + 296361180500,0.355285406112671,L, + 298285603750,0.353073537349701,L, + 300210027000,0.353420913219452,L, + 302134450250,0.354470372200012,L, + 304058873500,0.356227159500122,L, + 305983296750,0.358687251806259,L, + 307907720000,0.361834883689880,L, + 309832143250,0.365640521049500,L, + 311756566500,0.370058417320251,L, + 313680989750,0.375025391578674,L, + 315605413000,0.380459994077682,L, + 317529836250,0.386263668537140,L, + 319454259500,0.392322778701782,L, + 321378682750,0.398512482643127,L, + 323303106000,0.404702246189117,L, + 325227529250,0.410761266946793,L, + 327151952500,0.416564971208572,L, + 329076375750,0.421999633312225,L, + 331000799000,0.426966547966003,L, + 332925222250,0.431384444236755,L, + 334849645500,0.435190111398697,L, + 336774068750,0.438337802886963,L, + 338698492000,0.440797865390778,L, + 340622915250,0.442554622888565,L, + 342547338500,0.443604022264481,L, + 344471761750,0.443951487541199,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_050" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.112118959426880 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.112118959426880,L, + 1924423250,0.112092494964600,L, + 3848846500,0.112012624740601,L, + 5773269750,0.111878633499146,L, + 7697693000,0.111690759658813,L, + 9622116250,0.111448526382446,L, + 11546539500,0.111151933670044,L, + 13470962750,0.110800981521606,L, + 15395386000,0.110395669937134,L, + 17319809250,0.109936475753784,L, + 19244232500,0.109423637390137,L, + 21168655750,0.108857870101929,L, + 23093079000,0.108239889144897,L, + 25017502250,0.107570409774780,L, + 26941925500,0.106850624084473,L, + 28866348750,0.106081962585449,L, + 30790772000,0.105265617370605,L, + 32715195250,0.104403495788574,L, + 34639618500,0.103497505187988,L, + 36564041750,0.102549552917480,L, + 38488465000,0.101562261581421,L, + 40412888250,0.100537776947021,L, + 42337311500,0.099479436874390,L, + 44261734750,0.098389863967896,L, + 46186158000,0.097272157669067,L, + 48110581250,0.096129655838013,L, + 50035004500,0.094966173171997,L, + 51959427750,0.093785166740417,L, + 53883851000,0.092590332031250,L, + 55808274250,0.091385483741760,L, + 57732697500,0.090174794197083,L, + 59657120750,0.088962078094482,L, + 61581544000,0.087751269340515,L, + 63505967250,0.086546540260315,L, + 65430390500,0.085351705551147,L, + 67354813750,0.084170579910278,L, + 69279237000,0.083007097244263,L, + 71203660250,0.081864833831787,L, + 73128083500,0.080747127532959,L, + 75052506750,0.079657316207886,L, + 76976930000,0.078598976135254,L, + 78901353250,0.077574729919434,L, + 80825776500,0.076587200164795,L, + 82750199750,0.075639486312866,L, + 84674623000,0.074733257293701,L, + 86599046250,0.073871135711670,L, + 88523469500,0.073054909706116,L, + 90447892750,0.072286128997803,L, + 92372316000,0.071566343307495,L, + 94296739250,0.070896863937378,L, + 96221162500,0.070278763771057,L, + 98145585750,0.069713115692139,L, + 100070009000,0.069200396537781,L, + 101994432250,0.068741202354431,L, + 103918855500,0.068335890769958,L, + 105843278750,0.067984819412231,L, + 107767702000,0.067688345909119,L, + 109692125250,0.067445993423462,L, + 111616548500,0.067258238792419,L, + 113540971750,0.067124247550964,L, + 115465395000,0.067044258117676,L, + 117389818250,0.067017674446106,L, + 119314241500,0.067049384117126,L, + 121238664750,0.067146301269531,L, + 123163088000,0.067310214042664,L, + 125087511250,0.067541956901550,L, + 127011934500,0.067840576171875,L, + 128936357750,0.068202972412109,L, + 130860781000,0.068624138832092,L, + 132785204250,0.069096088409424,L, + 134709627500,0.069608807563782,L, + 136634050750,0.070150256156921,L, + 138558474000,0.070706963539124,L, + 140482897250,0.071265935897827,L, + 142407320500,0.071814417839050,L, + 144331743750,0.072341561317444,L, + 146256167000,0.072838068008423,L, + 148180590250,0.073297262191772,L, + 150105013500,0.073714017868042,L, + 152029436750,0.074085593223572,L, + 153953860000,0.074410080909729,L, + 155878283250,0.074677705764771,L, + 157802706500,0.074880003929138,L, + 159727129750,0.075023174285889,L, + 161651553000,0.075119733810425,L, + 163575976250,0.075189232826233,L, + 165500399500,0.075258135795593,L, + 167424822750,0.075355291366577,L, + 169349246000,0.075507998466492,L, + 171273669250,0.075736522674561,L, + 173198092500,0.076053500175476,L, + 175122515750,0.076463103294373,L, + 177046939000,0.076964139938354,L, + 178971362250,0.077580571174622,L, + 180895785500,0.078346729278564,L, + 182820208750,0.079273462295532,L, + 184744632000,0.080369830131531,L, + 186669055250,0.081642866134644,L, + 188593478500,0.083095908164978,L, + 190517901750,0.084728240966797,L, + 192442325000,0.086533665657043,L, + 194366748250,0.088499665260315,L, + 196291171500,0.090608835220337,L, + 198215594750,0.092838525772095,L, + 200140018000,0.095163583755493,L, + 202064441250,0.097557187080383,L, + 203988864500,0.099994063377380,L, + 205913287750,0.102450370788574,L, + 207837711000,0.104906320571899,L, + 209762134250,0.107344388961792,L, + 211686557500,0.109751939773560,L, + 213610980750,0.112118959426880,L, + 215535404000,0.114428997039795,L, + 217459827250,0.116683721542358,L, + 219384250500,0.118909358978271,L, + 221308673750,0.121143579483032,L, + 223233097000,0.123434543609619,L, + 225157520250,0.125838518142700,L, + 227081943500,0.128412008285522,L, + 229006366750,0.131203174591064,L, + 230930790000,0.134245634078979,L, + 232855213250,0.137554883956909,L, + 234779636500,0.141129016876221,L, + 236704059750,0.144954919815063,L, + 238628483000,0.149011611938477,L, + 240552906250,0.154437780380249,L, + 242477329500,0.161862134933472,L, + 244401752750,0.169423580169678,L, + 246326176000,0.174697875976562,L, + 248250599250,0.176466226577759,L, + 250175022500,0.176398754119873,L, + 252099445750,0.176190853118896,L, + 254023869000,0.175834417343140,L, + 255948292250,0.175323724746704,L, + 257872715500,0.174654483795166,L, + 259797138750,0.173827171325684,L, + 261721562000,0.172846555709839,L, + 263645985250,0.171722173690796,L, + 265570408500,0.170469045639038,L, + 267494831750,0.169107198715210,L, + 269419255000,0.167660474777222,L, + 271343678250,0.166154146194458,L, + 273268101500,0.164613723754883,L, + 275192524750,0.163063764572144,L, + 277116948000,0.161524772644043,L, + 279041371250,0.160014629364014,L, + 280965794500,0.158547163009644,L, + 282890217750,0.157132863998413,L, + 284814641000,0.155778884887695,L, + 286739064250,0.154421806335449,L, + 288663487500,0.152992725372314,L, + 290587910750,0.151492118835449,L, + 292512334000,0.149924755096436,L, + 294436757250,0.148303270339966,L, + 296361180500,0.146645307540894,L, + 298285603750,0.144973993301392,L, + 300210027000,0.143313646316528,L, + 302134450250,0.141685247421265,L, + 304058873500,0.140104055404663,L, + 305983296750,0.138578653335571,L, + 307907720000,0.137113094329834,L, + 309832143250,0.135627508163452,L, + 311756566500,0.134045362472534,L, + 313680989750,0.132373809814453,L, + 315605413000,0.130625486373901,L, + 317529836250,0.128816366195679,L, + 319454259500,0.126968860626221,L, + 321378682750,0.125109910964966,L, + 323303106000,0.123270273208618,L, + 325227529250,0.121484756469727,L, + 327151952500,0.119787693023682,L, + 329076375750,0.118212461471558,L, + 331000799000,0.116787672042847,L, + 332925222250,0.115536212921143,L, + 334849645500,0.114473819732666,L, + 336774068750,0.113609313964844,L, + 338698492000,0.112945556640625,L, + 340622915250,0.112480401992798,L, + 342547338500,0.112207651138306,L, + 344471761750,0.112118959426880,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.123124599456787 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.123124599456787,L, + 1924423250,-0.123087167739868,L, + 3848846500,-0.122974514961243,L, + 5773269750,-0.122786164283752,L, + 7697693000,-0.122521758079529,L, + 9622116250,-0.122180938720703,L, + 11546539500,-0.121763467788696,L, + 13470962750,-0.121269702911377,L, + 15395386000,-0.120699405670166,L, + 17319809250,-0.120053291320801,L, + 19244232500,-0.119331836700439,L, + 21168655750,-0.118535637855530,L, + 23093079000,-0.117666006088257,L, + 25017502250,-0.116724014282227,L, + 26941925500,-0.115711212158203,L, + 28866348750,-0.114629507064819,L, + 30790772000,-0.113480806350708,L, + 32715195250,-0.112267732620239,L, + 34639618500,-0.110992670059204,L, + 36564041750,-0.109658837318420,L, + 38488465000,-0.108269572257996,L, + 40412888250,-0.106828212738037,L, + 42337311500,-0.105338811874390,L, + 44261734750,-0.103805541992188,L, + 46186158000,-0.102232813835144,L, + 48110581250,-0.100625395774841,L, + 50035004500,-0.098988175392151,L, + 51959427750,-0.097326159477234,L, + 53883851000,-0.095644950866699,L, + 55808274250,-0.093949556350708,L, + 57732697500,-0.092245936393738,L, + 59657120750,-0.090539455413818,L, + 61581544000,-0.088835835456848,L, + 63505967250,-0.087140679359436,L, + 65430390500,-0.085459232330322,L, + 67354813750,-0.083797335624695,L, + 69279237000,-0.082159996032715,L, + 71203660250,-0.080552697181702,L, + 73128083500,-0.078979849815369,L, + 75052506750,-0.077446579933167,L, + 76976930000,-0.075957179069519,L, + 78901353250,-0.074515938758850,L, + 80825776500,-0.073126554489136,L, + 82750199750,-0.071792721748352,L, + 84674623000,-0.070517778396606,L, + 86599046250,-0.069304704666138,L, + 88523469500,-0.068156003952026,L, + 90447892750,-0.067074298858643,L, + 92372316000,-0.066061496734619,L, + 94296739250,-0.065119504928589,L, + 96221162500,-0.064249753952026,L, + 98145585750,-0.063453674316406,L, + 100070009000,-0.062732100486755,L, + 101994432250,-0.062085986137390,L, + 103918855500,-0.061515808105469,L, + 105843278750,-0.061021924018860,L, + 107767702000,-0.060604453086853,L, + 109692125250,-0.060263633728027,L, + 111616548500,-0.059999227523804,L, + 113540971750,-0.059810876846313,L, + 115465395000,-0.059698224067688,L, + 117389818250,-0.059661030769348,L, + 119314241500,-0.059695601463318,L, + 121238664750,-0.059802412986755,L, + 123163088000,-0.059985280036926,L, + 125087511250,-0.060246944427490,L, + 127011934500,-0.060589432716370,L, + 128936357750,-0.061011910438538,L, + 130860781000,-0.061511993408203,L, + 132785204250,-0.062084317207336,L, + 134709627500,-0.062720775604248,L, + 136634050750,-0.063410997390747,L, + 138558474000,-0.064142584800720,L, + 140482897250,-0.064901947975159,L, + 142407320500,-0.065676212310791,L, + 144331743750,-0.066453099250793,L, + 146256167000,-0.067221522331238,L, + 148180590250,-0.067972898483276,L, + 150105013500,-0.068700075149536,L, + 152029436750,-0.069397926330566,L, + 153953860000,-0.070062994956970,L, + 155878283250,-0.070667147636414,L, + 157802706500,-0.071190834045410,L, + 159727129750,-0.071651697158813,L, + 161651553000,-0.072077989578247,L, + 163575976250,-0.072509646415710,L, + 165500399500,-0.072994589805603,L, + 167424822750,-0.073582530021667,L, + 169349246000,-0.074315309524536,L, + 171273669250,-0.075221180915833,L, + 173198092500,-0.076312780380249,L, + 175122515750,-0.077589273452759,L, + 177046939000,-0.079040646553040,L, + 178971362250,-0.080668210983276,L, + 180895785500,-0.082484960556030,L, + 182820208750,-0.084490776062012,L, + 184744632000,-0.086681604385376,L, + 186669055250,-0.089047431945801,L, + 188593478500,-0.091570854187012,L, + 190517901750,-0.094227433204651,L, + 192442325000,-0.096984744071960,L, + 194366748250,-0.099804043769836,L, + 196291171500,-0.102642059326172,L, + 198215594750,-0.105453848838806,L, + 200140018000,-0.108196616172791,L, + 202064441250,-0.110831737518311,L, + 203988864500,-0.113327503204346,L, + 205913287750,-0.115659832954407,L, + 207837711000,-0.117812395095825,L, + 209762134250,-0.119775772094727,L, + 211686557500,-0.121546149253845,L, + 213610980750,-0.123124480247498,L, + 215535404000,-0.124561905860901,L, + 217459827250,-0.125895023345947,L, + 219384250500,-0.127105593681335,L, + 221308673750,-0.128175377845764,L, + 223233097000,-0.129089236259460,L, + 225157520250,-0.129839062690735,L, + 227081943500,-0.130425572395325,L, + 229006366750,-0.130859732627869,L, + 230930790000,-0.131161332130432,L, + 232855213250,-0.131355047225952,L, + 234779636500,-0.131466388702393,L, + 236704059750,-0.131519198417664,L, + 238628483000,-0.131533026695251,L, + 240552906250,-0.131093740463257,L, + 242477329500,-0.129856348037720,L, + 244401752750,-0.128267645835876,L, + 246326176000,-0.127030253410339,L, + 248250599250,-0.126590967178345,L, + 250175022500,-0.126704335212708,L, + 252099445750,-0.127049922943115,L, + 254023869000,-0.127633690834045,L, + 255948292250,-0.128457307815552,L, + 257872715500,-0.129516243934631,L, + 259797138750,-0.130798935890198,L, + 261721562000,-0.132285118103027,L, + 263645985250,-0.133945345878601,L, + 265570408500,-0.135742068290710,L, + 267494831750,-0.137631058692932,L, + 269419255000,-0.139564275741577,L, + 271343678250,-0.141493678092957,L, + 273268101500,-0.143374085426331,L, + 275192524750,-0.145166277885437,L, + 277116948000,-0.146838307380676,L, + 279041371250,-0.148365974426270,L, + 280965794500,-0.149732708930969,L, + 282890217750,-0.150928378105164,L, + 284814641000,-0.151948451995850,L, + 286739064250,-0.152871131896973,L, + 288663487500,-0.153767704963684,L, + 290587910750,-0.154622912406921,L, + 292512334000,-0.155418872833252,L, + 294436757250,-0.156136512756348,L, + 296361180500,-0.156758308410645,L, + 298285603750,-0.157271862030029,L, + 300210027000,-0.157672882080078,L, + 302134450250,-0.157964706420898,L, + 304058873500,-0.158156871795654,L, + 305983296750,-0.158262133598328,L, + 307907720000,-0.158294320106506,L, + 309832143250,-0.158079504966736,L, + 311756566500,-0.157430052757263,L, + 313680989750,-0.156344652175903,L, + 315605413000,-0.154832363128662,L, + 317529836250,-0.152915477752686,L, + 319454259500,-0.150632381439209,L, + 321378682750,-0.148038387298584,L, + 323303106000,-0.145206689834595,L, + 325227529250,-0.142225503921509,L, + 327151952500,-0.139193296432495,L, + 329076375750,-0.136212110519409,L, + 331000799000,-0.133380413055420,L, + 332925222250,-0.130786418914795,L, + 334849645500,-0.128503203392029,L, + 336774068750,-0.126586437225342,L, + 338698492000,-0.125074148178101,L, + 340622915250,-0.123988866806030,L, + 342547338500,-0.123339414596558,L, + 344471761750,-0.123124480247498,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.078456401824951 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.078456401824951,L, + 1924423250,0.078416883945465,L, + 3848846500,0.078297793865204,L, + 5773269750,0.078098714351654,L, + 7697693000,0.077819168567657,L, + 9622116250,0.077458858489990,L, + 11546539500,0.077017664909363,L, + 13470962750,0.076495587825775,L, + 15395386000,0.075892865657806,L, + 17319809250,0.075209796428680,L, + 19244232500,0.074447095394135,L, + 21168655750,0.073605537414551,L, + 23093079000,0.072686195373535,L, + 25017502250,0.071690440177917,L, + 26941925500,0.070619761943817,L, + 28866348750,0.069476366043091,L, + 30790772000,0.068262159824371,L, + 32715195250,0.066979706287384,L, + 34639618500,0.065631985664368,L, + 36564041750,0.064221978187561,L, + 38488465000,0.062753260135651,L, + 40412888250,0.061229646205902,L, + 42337311500,0.059655249118805,L, + 44261734750,0.058034420013428,L, + 46186158000,0.056371927261353,L, + 48110581250,0.054672718048096,L, + 50035004500,0.052941918373108,L, + 51959427750,0.051185131072998,L, + 53883851000,0.049407839775085,L, + 55808274250,0.047615766525269,L, + 57732697500,0.045814812183380,L, + 59657120750,0.044010937213898,L, + 61581544000,0.042210042476654,L, + 63505967250,0.040417969226837,L, + 65430390500,0.038640677928925,L, + 67354813750,0.036883771419525,L, + 69279237000,0.035153090953827,L, + 71203660250,0.033453881740570,L, + 73128083500,0.031791329383850,L, + 75052506750,0.030170559883118,L, + 76976930000,0.028596162796021,L, + 78901353250,0.027072489261627,L, + 80825776500,0.025603830814362,L, + 82750199750,0.024193823337555,L, + 84674623000,0.022846102714539,L, + 86599046250,0.021563649177551,L, + 88523469500,0.020349442958832,L, + 90447892750,0.019205927848816,L, + 92372316000,0.018135368824005,L, + 94296739250,0.017139613628387,L, + 96221162500,0.016220271587372,L, + 98145585750,0.015378654003143,L, + 100070009000,0.014616012573242,L, + 101994432250,0.013932883739471,L, + 103918855500,0.013330101966858,L, + 105843278750,0.012808084487915,L, + 107767702000,0.012366831302643,L, + 109692125250,0.012006580829620,L, + 111616548500,0.011727094650269,L, + 113540971750,0.011527955532074,L, + 115465395000,0.011408925056458,L, + 117389818250,0.011369347572327,L, + 121238664750,0.011369585990906,L, + 123163088000,0.011370122432709,L, + 125087511250,0.011371135711670,L, + 127011934500,0.011372983455658,L, + 128936357750,0.011375904083252,L, + 130860781000,0.011380255222321,L, + 132785204250,0.011386334896088,L, + 134709627500,0.011394500732422,L, + 136634050750,0.011404812335968,L, + 138558474000,0.011417627334595,L, + 140482897250,0.011433064937592,L, + 142407320500,0.011451125144958,L, + 144331743750,0.011471688747406,L, + 146256167000,0.011494874954224,L, + 148180590250,0.011520326137543,L, + 150105013500,0.011547982692719,L, + 152029436750,0.011577606201172,L, + 153953860000,0.011609137058258,L, + 155878283250,0.011642932891846,L, + 157802706500,0.011704742908478,L, + 159727129750,0.011841356754303,L, + 161651553000,0.012112498283386,L, + 163575976250,0.012586414813995,L, + 165500399500,0.013331174850464,L, + 167424822750,0.014402091503143,L, + 169349246000,0.015831232070923,L, + 171273669250,0.017623662948608,L, + 173198092500,0.019761085510254,L, + 175122515750,0.022210240364075,L, + 177046939000,0.024931490421295,L, + 178971362250,0.027827978134155,L, + 180895785500,0.030847072601318,L, + 182820208750,0.034016132354736,L, + 184744632000,0.037365794181824,L, + 186669055250,0.040929198265076,L, + 188593478500,0.044740498065948,L, + 190517901750,0.048833191394806,L, + 192442325000,0.053237199783325,L, + 194366748250,0.057976782321930,L, + 196291171500,0.063067555427551,L, + 198215594750,0.068515360355377,L, + 200140018000,0.074315249919891,L, + 202064441250,0.080453097820282,L, + 203988864500,0.086906969547272,L, + 205913287750,0.093649506568909,L, + 207837711000,0.100650846958160,L, + 209762134250,0.107880413532257,L, + 211686557500,0.115308582782745,L, + 213610980750,0.122907578945160,L, + 215535404000,0.131041586399078,L, + 217459827250,0.140097856521606,L, + 219384250500,0.150051832199097,L, + 221308673750,0.160817980766296,L, + 223233097000,0.172234952449799,L, + 225157520250,0.184063315391541,L, + 227081943500,0.196003675460815,L, + 229006366750,0.207735478878021,L, + 230930790000,0.218965351581573,L, + 232855213250,0.229463577270508,L, + 234779636500,0.239081621170044,L, + 236704059750,0.247746467590332,L, + 238628483000,0.255445122718811,L, + 240552906250,0.262040138244629,L, + 242477329500,0.267191767692566,L, + 244401752750,0.270941019058228,L, + 246326176000,0.273873686790466,L, + 248250599250,0.276693105697632,L, + 250175022500,0.279411315917969,L, + 252099445750,0.281716227531433,L, + 254023869000,0.283613562583923,L, + 255948292250,0.285119652748108,L, + 257872715500,0.286265254020691,L, + 259797138750,0.287097811698914,L, + 261721562000,0.287681698799133,L, + 263645985250,0.288099169731140,L, + 265570408500,0.288445472717285,L, + 267494831750,0.288824796676636,L, + 269419255000,0.289342641830444,L, + 271343678250,0.290098309516907,L, + 273268101500,0.291177868843079,L, + 275192524750,0.292650699615479,L, + 277116948000,0.294566631317139,L, + 279041371250,0.296957492828369,L, + 280965794500,0.299838542938232,L, + 282890217750,0.303211927413940,L, + 284814641000,0.307069420814514,L, + 286739064250,0.311380505561829,L, + 288663487500,0.316169142723083,L, + 290587910750,0.321501612663269,L, + 292512334000,0.327431797981262,L, + 294436757250,0.333986520767212,L, + 296361180500,0.341151356697083,L, + 298285603750,0.348865032196045,L, + 300210027000,0.357027530670166,L, + 302134450250,0.365518331527710,L, + 304058873500,0.374218344688416,L, + 305983296750,0.383025288581848,L, + 307907720000,0.391859292984009,L, + 309832143250,0.401284217834473,L, + 311756566500,0.411890864372253,L, + 313680989750,0.423633337020874,L, + 315605413000,0.436426401138306,L, + 317529836250,0.450137376785278,L, + 319454259500,0.464580297470093,L, + 321378682750,0.479514360427856,L, + 323303106000,0.494647979736328,L, + 325227529250,0.509652495384216,L, + 327151952500,0.524180412292480,L, + 329076375750,0.537891268730164,L, + 331000799000,0.550475358963013,L, + 332925222250,0.561673283576965,L, + 334849645500,0.571289300918579,L, + 336774068750,0.579193115234375,L, + 338698492000,0.585315704345703,L, + 340622915250,0.589640974998474,L, + 342547338500,0.592194080352783,L, + 344471761750,0.593029379844666,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -1.077436728358576 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,-1.077436728358576,L, + 1924423250,-1.077436621636870,L, + 3848846500,-1.077436728358576,L, + 5773269750,-1.077436941801987,L, + 7697693000,-1.077436728358576,L, + 9622116250,-1.077436835080282,L, + 13470962750,-1.077436621636870,L, + 15395386000,-1.077436835080282,L, + 17319809250,-1.077436728358576,L, + 21168655750,-1.077436728358576,L, + 23093079000,-1.077436941801987,L, + 26941925500,-1.077436728358576,L, + 28866348750,-1.077436835080282,L, + 30790772000,-1.077436835080282,L, + 32715195250,-1.077436728358576,L, + 34639618500,-1.077436728358576,L, + 36564041750,-1.077436835080282,L, + 38488465000,-1.077436835080282,L, + 40412888250,-1.077436621636870,L, + 42337311500,-1.077436835080282,L, + 44261734750,-1.077436728358576,L, + 46186158000,-1.077436835080282,L, + 48110581250,-1.077436728358576,L, + 51959427750,-1.077436728358576,L, + 53883851000,-1.077436941801987,L, + 55808274250,-1.077436728358576,L, + 57732697500,-1.077436728358576,L, + 59657120750,-1.077436621636870,L, + 61581544000,-1.077436835080282,L, + 63505967250,-1.077436621636870,L, + 65430390500,-1.077436621636870,L, + 67354813750,-1.077436835080282,L, + 69279237000,-1.077436941801987,L, + 71203660250,-1.077436621636870,L, + 73128083500,-1.077436621636870,L, + 76976930000,-1.077436835080282,L, + 78901353250,-1.077436728358576,L, + 80825776500,-1.077436835080282,L, + 82750199750,-1.077436621636870,L, + 84674623000,-1.077436835080282,L, + 86599046250,-1.077436835080282,L, + 90447892750,-1.077436621636870,L, + 92372316000,-1.077436835080282,L, + 94296739250,-1.077436835080282,L, + 96221162500,-1.077436514915164,L, + 98145585750,-1.077436835080282,L, + 100070009000,-1.077436621636870,L, + 101994432250,-1.077436835080282,L, + 103918855500,-1.077436728358576,L, + 105843278750,-1.077436835080282,L, + 107767702000,-1.077436621636870,L, + 109692125250,-1.077436835080282,L, + 111616548500,-1.077436621636870,L, + 113540971750,-1.077436728358576,L, + 115465395000,-1.077436621636870,L, + 117389818250,-1.077437368688811,L, + 153953860000,-1.077437368688811,L, + 155878283250,-1.077437155245399,L, + 157802706500,-1.077437261967105,L, + 159727129750,-1.077437155245399,L, + 161651553000,-1.077437261967105,L, + 163575976250,-1.077437261967105,L, + 165500399500,-1.077437155245399,L, + 167424822750,-1.077437155245399,L, + 169349246000,-1.077437261967105,L, + 173198092500,-1.077437048523693,L, + 177046939000,-1.077437048523693,L, + 178971362250,-1.077437261967105,L, + 180895785500,-1.077437048523693,L, + 186669055250,-1.077437368688811,L, + 188593478500,-1.077436941801987,L, + 190517901750,-1.077437155245399,L, + 192442325000,-1.077437155245399,L, + 194366748250,-1.077437261967105,L, + 196291171500,-1.077437261967105,L, + 198215594750,-1.077437048523693,L, + 200140018000,-1.077437155245399,L, + 202064441250,-1.077437475410516,L, + 203988864500,-1.077437048523693,L, + 205913287750,-1.077437261967105,L, + 207837711000,-1.077437155245399,L, + 209762134250,-1.077437261967105,L, + 211686557500,-1.077437261967105,L, + 215535404000,-1.077437048523693,L, + 217459827250,-1.077437155245399,L, + 221308673750,-1.077437155245399,L, + 223233097000,-1.077437048523693,L, + 225157520250,-1.077437048523693,L, + 227081943500,-1.077437261967105,L, + 229006366750,-1.077437048523693,L, + 230930790000,-1.077437155245399,L, + 232855213250,-1.077437155245399,L, + 234779636500,-1.077437048523693,L, + 238628483000,-1.077437261967105,L, + 242477329500,-1.077437261967105,L, + 244401752750,-1.077437155245399,L, + 246326176000,-1.077437261967105,L, + 252099445750,-1.077437261967105,L, + 254023869000,-1.077437048523693,L, + 255948292250,-1.077437048523693,L, + 257872715500,-1.077437368688811,L, + 259797138750,-1.077437261967105,L, + 261721562000,-1.077437048523693,L, + 263645985250,-1.077437048523693,L, + 265570408500,-1.077437155245399,L, + 267494831750,-1.077437155245399,L, + 269419255000,-1.077437048523693,L, + 271343678250,-1.077437261967105,L, + 273268101500,-1.077437261967105,L, + 277116948000,-1.077437048523693,L, + 279041371250,-1.077437155245399,L, + 280965794500,-1.077437048523693,L, + 282890217750,-1.077437155245399,L, + 286739064250,-1.077437155245399,L, + 288663487500,-1.077437048523693,L, + 292512334000,-1.077437048523693,L, + 294436757250,-1.077437261967105,L, + 296361180500,-1.077437048523693,L, + 298285603750,-1.077437048523693,L, + 300210027000,-1.077437155245399,L, + 304058873500,-1.077437155245399,L, + 305983296750,-1.077437048523693,L, + 307907720000,-1.077437048523693,L, + 309832143250,-1.077437155245399,L, + 311756566500,-1.077437155245399,L, + 313680989750,-1.077437048523693,L, + 315605413000,-1.077437261967105,L, + 317529836250,-1.077437155245399,L, + 319454259500,-1.077437368688811,L, + 321378682750,-1.077437155245399,L, + 323303106000,-1.077437261967105,L, + 325227529250,-1.077437155245399,L, + 329076375750,-1.077437155245399,L, + 331000799000,-1.077437048523693,L, + 332925222250,-1.077437155245399,L, + 334849645500,-1.077437048523693,L, + 336774068750,-1.077437048523693,L, + 338698492000,-1.077437155245399,L, + 340622915250,-1.077437155245399,L, + 342547338500,-1.077437048523693,L, + 344471761750,-1.077437155245399,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -2.888270141488094 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,-2.888270141488094,L, + 1924423250,-2.888270354931506,L, + 3848846500,-2.888270141488094,L, + 5773269750,-2.888270354931506,L, + 7697693000,-2.888270141488094,L, + 9622116250,-2.888270354931506,L, + 13470962750,-2.888269928044683,L, + 15395386000,-2.888270141488094,L, + 19244232500,-2.888270141488094,L, + 21168655750,-2.888270568374918,L, + 23093079000,-2.888270354931506,L, + 26941925500,-2.888270354931506,L, + 28866348750,-2.888269928044683,L, + 30790772000,-2.888269928044683,L, + 32715195250,-2.888270141488094,L, + 38488465000,-2.888270141488094,L, + 40412888250,-2.888269928044683,L, + 42337311500,-2.888270354931506,L, + 44261734750,-2.888270141488094,L, + 48110581250,-2.888270568374918,L, + 50035004500,-2.888270141488094,L, + 51959427750,-2.888270354931506,L, + 53883851000,-2.888270354931506,L, + 55808274250,-2.888269928044683,L, + 57732697500,-2.888270354931506,L, + 61581544000,-2.888269928044683,L, + 63505967250,-2.888270568374918,L, + 65430390500,-2.888269928044683,L, + 69279237000,-2.888270354931506,L, + 71203660250,-2.888270354931506,L, + 73128083500,-2.888269928044683,L, + 75052506750,-2.888270354931506,L, + 76976930000,-2.888270354931506,L, + 78901353250,-2.888269928044683,L, + 82750199750,-2.888270354931506,L, + 84674623000,-2.888269928044683,L, + 88523469500,-2.888270354931506,L, + 92372316000,-2.888270354931506,L, + 94296739250,-2.888269714601271,L, + 96221162500,-2.888270141488094,L, + 107767702000,-2.888270141488094,L, + 111616548500,-2.888270568374918,L, + 113540971750,-2.888269928044683,L, + 117389818250,-2.888270354931506,L, + 153953860000,-2.888270354931506,L, + 155878283250,-2.888269928044683,L, + 157802706500,-2.888270354931506,L, + 159727129750,-2.888269928044683,L, + 161651553000,-2.888270354931506,L, + 163575976250,-2.888269928044683,L, + 165500399500,-2.888269714601271,L, + 167424822750,-2.888270141488094,L, + 169349246000,-2.888270141488094,L, + 171273669250,-2.888269928044683,L, + 173198092500,-2.888269928044683,L, + 175122515750,-2.888270141488094,L, + 177046939000,-2.888269714601271,L, + 178971362250,-2.888269928044683,L, + 180895785500,-2.888270354931506,L, + 182820208750,-2.888269714601271,L, + 184744632000,-2.888270141488094,L, + 186669055250,-2.888269928044683,L, + 190517901750,-2.888269928044683,L, + 192442325000,-2.888270354931506,L, + 194366748250,-2.888269714601271,L, + 196291171500,-2.888269714601271,L, + 198215594750,-2.888270354931506,L, + 200140018000,-2.888269928044683,L, + 202064441250,-2.888269928044683,L, + 203988864500,-2.888270141488094,L, + 205913287750,-2.888269714601271,L, + 207837711000,-2.888269714601271,L, + 209762134250,-2.888270141488094,L, + 211686557500,-2.888269928044683,L, + 213610980750,-2.888270354931506,L, + 217459827250,-2.888269501157860,L, + 219384250500,-2.888269928044683,L, + 223233097000,-2.888269928044683,L, + 225157520250,-2.888269714601271,L, + 227081943500,-2.888269928044683,L, + 230930790000,-2.888269928044683,L, + 232855213250,-2.888270354931506,L, + 234779636500,-2.888269928044683,L, + 236704059750,-2.888270141488094,L, + 238628483000,-2.888269928044683,L, + 240552906250,-2.888269928044683,L, + 242477329500,-2.888270354931506,L, + 244401752750,-2.888269714601271,L, + 246326176000,-2.888270354931506,L, + 248250599250,-2.888270354931506,L, + 250175022500,-2.888269928044683,L, + 252099445750,-2.888269714601271,L, + 254023869000,-2.888270141488094,L, + 255948292250,-2.888269928044683,L, + 257872715500,-2.888269928044683,L, + 259797138750,-2.888270141488094,L, + 261721562000,-2.888269928044683,L, + 263645985250,-2.888270141488094,L, + 267494831750,-2.888269714601271,L, + 269419255000,-2.888269928044683,L, + 271343678250,-2.888269928044683,L, + 273268101500,-2.888269714601271,L, + 275192524750,-2.888270141488094,L, + 277116948000,-2.888269714601271,L, + 279041371250,-2.888270141488094,L, + 282890217750,-2.888270141488094,L, + 284814641000,-2.888269501157860,L, + 286739064250,-2.888270141488094,L, + 288663487500,-2.888269928044683,L, + 290587910750,-2.888270354931506,L, + 294436757250,-2.888269928044683,L, + 296361180500,-2.888270141488094,L, + 298285603750,-2.888269714601271,L, + 300210027000,-2.888269714601271,L, + 302134450250,-2.888270141488094,L, + 304058873500,-2.888269501157860,L, + 309832143250,-2.888270141488094,L, + 313680989750,-2.888270141488094,L, + 315605413000,-2.888269928044683,L, + 317529836250,-2.888270141488094,L, + 319454259500,-2.888269714601271,L, + 321378682750,-2.888269714601271,L, + 323303106000,-2.888269928044683,L, + 325227529250,-2.888269714601271,L, + 329076375750,-2.888270141488094,L, + 331000799000,-2.888269714601271,L, + 332925222250,-2.888270141488094,L, + 334849645500,-2.888269714601271,L, + 336774068750,-2.888269928044683,L, + 338698492000,-2.888269928044683,L, + 340622915250,-2.888269714601271,L, + 342547338500,-2.888270141488094,L, + 344471761750,-2.888269928044683,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 35.454415736123465 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,35.454415736123465,L, + 1924423250,35.454419151218048,L, + 3848846500,35.454415736123465,L, + 5773269750,35.454415736123465,L, + 7697693000,35.454419151218048,L, + 9622116250,35.454415736123465,L, + 11546539500,35.454419151218048,L, + 13470962750,35.454415736123465,L, + 15395386000,35.454419151218048,L, + 17319809250,35.454419151218048,L, + 19244232500,35.454412321028876,L, + 21168655750,35.454422566312630,L, + 23093079000,35.454415736123465,L, + 25017502250,35.454412321028876,L, + 26941925500,35.454419151218048,L, + 28866348750,35.454412321028876,L, + 32715195250,35.454419151218048,L, + 34639618500,35.454415736123465,L, + 36564041750,35.454419151218048,L, + 40412888250,35.454412321028876,L, + 42337311500,35.454415736123465,L, + 44261734750,35.454412321028876,L, + 46186158000,35.454415736123465,L, + 48110581250,35.454415736123465,L, + 50035004500,35.454419151218048,L, + 51959427750,35.454415736123465,L, + 55808274250,35.454415736123465,L, + 57732697500,35.454422566312630,L, + 59657120750,35.454415736123465,L, + 61581544000,35.454415736123465,L, + 63505967250,35.454419151218048,L, + 65430390500,35.454412321028876,L, + 69279237000,35.454419151218048,L, + 71203660250,35.454412321028876,L, + 73128083500,35.454415736123465,L, + 78901353250,35.454415736123465,L, + 80825776500,35.454419151218048,L, + 82750199750,35.454419151218048,L, + 84674623000,35.454415736123465,L, + 96221162500,35.454415736123465,L, + 98145585750,35.454419151218048,L, + 101994432250,35.454419151218048,L, + 103918855500,35.454415736123465,L, + 105843278750,35.454419151218048,L, + 111616548500,35.454419151218048,L, + 115465395000,35.454412321028876,L, + 117389818250,35.454419151218048,L, + 153953860000,35.454419151218048,L, + 155878283250,35.454412321028876,L, + 157802706500,35.454415736123465,L, + 163575976250,35.454415736123465,L, + 165500399500,35.454412321028876,L, + 167424822750,35.454419151218048,L, + 169349246000,35.454419151218048,L, + 171273669250,35.454415736123465,L, + 173198092500,35.454415736123465,L, + 175122515750,35.454419151218048,L, + 178971362250,35.454419151218048,L, + 180895785500,35.454415736123465,L, + 188593478500,35.454415736123465,L, + 190517901750,35.454412321028876,L, + 192442325000,35.454419151218048,L, + 196291171500,35.454412321028876,L, + 198215594750,35.454419151218048,L, + 200140018000,35.454415736123465,L, + 202064441250,35.454419151218048,L, + 203988864500,35.454415736123465,L, + 205913287750,35.454415736123465,L, + 207837711000,35.454419151218048,L, + 209762134250,35.454415736123465,L, + 211686557500,35.454415736123465,L, + 213610980750,35.454419151218048,L, + 215535404000,35.454415736123465,L, + 217459827250,35.454419151218048,L, + 219384250500,35.454415736123465,L, + 221308673750,35.454415736123465,L, + 223233097000,35.454419151218048,L, + 225157520250,35.454415736123465,L, + 227081943500,35.454415736123465,L, + 229006366750,35.454419151218048,L, + 230930790000,35.454419151218048,L, + 232855213250,35.454422566312630,L, + 234779636500,35.454419151218048,L, + 238628483000,35.454419151218048,L, + 240552906250,35.454415736123465,L, + 242477329500,35.454422566312630,L, + 244401752750,35.454415736123465,L, + 246326176000,35.454419151218048,L, + 248250599250,35.454419151218048,L, + 250175022500,35.454412321028876,L, + 255948292250,35.454412321028876,L, + 257872715500,35.454415736123465,L, + 261721562000,35.454415736123465,L, + 263645985250,35.454419151218048,L, + 265570408500,35.454412321028876,L, + 269419255000,35.454419151218048,L, + 271343678250,35.454419151218048,L, + 275192524750,35.454412321028876,L, + 277116948000,35.454419151218048,L, + 279041371250,35.454415736123465,L, + 280965794500,35.454415736123465,L, + 282890217750,35.454419151218048,L, + 284814641000,35.454415736123465,L, + 288663487500,35.454415736123465,L, + 290587910750,35.454419151218048,L, + 292512334000,35.454419151218048,L, + 294436757250,35.454415736123465,L, + 296361180500,35.454415736123465,L, + 298285603750,35.454419151218048,L, + 300210027000,35.454415736123465,L, + 307907720000,35.454415736123465,L, + 309832143250,35.454419151218048,L, + 311756566500,35.454415736123465,L, + 313680989750,35.454419151218048,L, + 315605413000,35.454419151218048,L, + 317529836250,35.454415736123465,L, + 319454259500,35.454419151218048,L, + 321378682750,35.454415736123465,L, + 323303106000,35.454419151218048,L, + 325227529250,35.454415736123465,L, + 329076375750,35.454415736123465,L, + 331000799000,35.454412321028876,L, + 334849645500,35.454419151218048,L, + 336774068750,35.454419151218048,L, + 338698492000,35.454412321028876,L, + 340622915250,35.454415736123465,L, + 342547338500,35.454412321028876,L, + 344471761750,35.454415736123465,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.137932732701302 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.137932732701302,L, + 1924423250,0.138149738311768,L, + 3848846500,0.138802990317345,L, + 5773269750,0.139895468950272,L, + 7697693000,0.141429543495178,L, + 9622116250,0.143406763672829,L, + 11546539500,0.145827949047089,L, + 13470962750,0.148692980408669,L, + 15395386000,0.152000755071640,L, + 17319809250,0.155749142169952,L, + 19244232500,0.159934833645821,L, + 21168655750,0.164553165435791,L, + 23093079000,0.169598340988159,L, + 25017502250,0.175062954425812,L, + 26941925500,0.180938094854355,L, + 28866348750,0.187213405966759,L, + 30790772000,0.193876713514328,L, + 32715195250,0.200914278626442,L, + 34639618500,0.208310499787331,L, + 36564041750,0.216048121452332,L, + 38488465000,0.224107950925827,L, + 40412888250,0.232469230890274,L, + 42337311500,0.241109296679497,L, + 44261734750,0.250003993511200,L, + 46186158000,0.259127467870712,L, + 48110581250,0.268452465534210,L, + 50035004500,0.277950376272202,L, + 51959427750,0.287591457366943,L, + 53883851000,0.297344952821732,L, + 55808274250,0.307179331779480,L, + 57732697500,0.317062377929688,L, + 59657120750,0.326961815357208,L, + 61581544000,0.336844891309738,L, + 63505967250,0.346679300069809,L, + 65430390500,0.356432795524597,L, + 67354813750,0.366073876619339,L, + 69279237000,0.375571757555008,L, + 71203660250,0.384896755218506,L, + 73128083500,0.394020289182663,L, + 75052506750,0.402914911508560,L, + 76976930000,0.411555022001266,L, + 78901353250,0.419916272163391,L, + 80825776500,0.427976101636887,L, + 82750199750,0.435713708400726,L, + 84674623000,0.443109929561615,L, + 86599046250,0.450147479772568,L, + 88523469500,0.456810891628265,L, + 90447892750,0.463086098432541,L, + 92372316000,0.468961358070374,L, + 94296739250,0.474426001310349,L, + 96221162500,0.479471057653427,L, + 98145585750,0.484089463949203,L, + 100070009000,0.488275170326233,L, + 101994432250,0.492023587226868,L, + 103918855500,0.495331287384033,L, + 105843278750,0.498196303844452,L, + 107767702000,0.500617504119873,L, + 109692125250,0.502594769001007,L, + 111616548500,0.504128873348236,L, + 113540971750,0.505221366882324,L, + 115465395000,0.505874514579773,L, + 117389818250,0.506091475486755,L, + 153953860000,0.506091475486755,L, + 155878283250,0.506617665290833,L, + 157802706500,0.508259236812592,L, + 159727129750,0.511085689067841,L, + 161651553000,0.515110850334167,L, + 163575976250,0.520265400409698,L, + 165500399500,0.526379704475403,L, + 167424822750,0.533194482326508,L, + 169349246000,0.540400505065918,L, + 171273669250,0.547692954540253,L, + 173198092500,0.554816126823425,L, + 175122515750,0.561584591865540,L, + 177046939000,0.567881822586060,L, + 178971362250,0.574291586875916,L, + 180895785500,0.581435441970825,L, + 182820208750,0.589281737804413,L, + 184744632000,0.597773611545563,L, + 186669055250,0.606824159622192,L, + 188593478500,0.616312861442566,L, + 190517901750,0.626084387302399,L, + 192442325000,0.635951817035675,L, + 194366748250,0.645705342292786,L, + 196291171500,0.655124306678772,L, + 198215594750,0.663992881774902,L, + 200140018000,0.672116398811340,L, + 202064441250,0.679332554340363,L, + 203988864500,0.685519635677338,L, + 205913287750,0.690598189830780,L, + 207837711000,0.694527506828308,L, + 209762134250,0.697300612926483,L, + 211686557500,0.698935806751251,L, + 213610980750,0.699470400810242,L, + 215535404000,0.699465990066528,L, + 217459827250,0.699452579021454,L, + 219384250500,0.699430525302887,L, + 221308673750,0.699400424957275,L, + 223233097000,0.699363768100739,L, + 225157520250,0.699322819709778,L, + 227081943500,0.699280440807343,L, + 229006366750,0.699239373207092,L, + 230930790000,0.699202835559845,L, + 232855213250,0.699172675609589,L, + 234779636500,0.699150621891022,L, + 236704059750,0.699137210845947,L, + 238628483000,0.699132800102234,L, + 240552906250,0.699135184288025,L, + 242477329500,0.699143350124359,L, + 244401752750,0.699158549308777,L, + 246326176000,0.699179351329803,L, + 248250599250,0.699202954769135,L, + 250175022500,0.699229717254639,L, + 252099445750,0.699260890483856,L, + 254023869000,0.699296474456787,L, + 255948292250,0.699336230754852,L, + 257872715500,0.699379622936249,L, + 259797138750,0.699426114559174,L, + 261721562000,0.699474930763245,L, + 263645985250,0.699524998664856,L, + 265570408500,0.699575245380402,L, + 267494831750,0.699624359607697,L, + 269419255000,0.699670791625977,L, + 271343678250,0.699713885784149,L, + 273268101500,0.699752449989319,L, + 275192524750,0.699785649776459,L, + 277116948000,0.699813067913055,L, + 279041371250,0.699834406375885,L, + 280965794500,0.699849545955658,L, + 282890217750,0.699858367443085,L, + 284814641000,0.699861466884613,L, + 286739064250,0.699283123016357,L, + 288663487500,0.697401344776154,L, + 290587910750,0.693992614746094,L, + 292512334000,0.688853621482849,L, + 294436757250,0.681844830513000,L, + 296361180500,0.672936737537384,L, + 298285603750,0.662237465381622,L, + 300210027000,0.649982869625092,L, + 302134450250,0.636489093303680,L, + 304058873500,0.622092723846436,L, + 305983296750,0.607100546360016,L, + 307907720000,0.591764628887177,L, + 309832143250,0.574890911579132,L, + 311756566500,0.555163383483887,L, + 313680989750,0.532660305500031,L, + 315605413000,0.507546961307526,L, + 317529836250,0.480095833539963,L, + 319454259500,0.450701296329498,L, + 321378682750,0.419885247945786,L, + 323303106000,0.388289541006088,L, + 325227529250,0.356649398803711,L, + 327151952500,0.325750142335892,L, + 329076375750,0.296372562646866,L, + 331000799000,0.269236713647842,L, + 332925222250,0.244955137372017,L, + 334849645500,0.224003136157990,L, + 336774068750,0.206709355115891,L, + 338698492000,0.193263024091721,L, + 340622915250,0.183732926845551,L, + 342547338500,0.178092062473297,L, + 344471761750,0.176242381334305,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.137614384293556 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.137614384293556,L, + 1924423250,0.137831822037697,L, + 3848846500,0.138486370444298,L, + 5773269750,0.139581009745598,L, + 7697693000,0.141118139028549,L, + 9622116250,0.143099263310432,L, + 11546539500,0.145525246858597,L, + 13470962750,0.148395970463753,L, + 15395386000,0.151710301637650,L, + 17319809250,0.155466124415398,L, + 19244232500,0.159660100936890,L, + 21168655750,0.164287641644478,L, + 23093079000,0.169342771172523,L, + 25017502250,0.174818217754364,L, + 26941925500,0.180705025792122,L, + 28866348750,0.186992779374123,L, + 30790772000,0.193669319152832,L, + 32715195250,0.200720831751823,L, + 34639618500,0.208131715655327,L, + 36564041750,0.215884670615196,L, + 38488465000,0.223960489034653,L, + 40412888250,0.232338324189186,L, + 42337311500,0.240995541214943,L, + 44261734750,0.249907881021500,L, + 46186158000,0.259049415588379,L, + 48110581250,0.268392950296402,L, + 50035004500,0.277909696102142,L, + 51959427750,0.287569910287857,L, + 53883851000,0.297342687845230,L, + 55808274250,0.307196557521820,L, + 57732697500,0.317099243402481,L, + 59657120750,0.327018320560455,L, + 61581544000,0.336920976638794,L, + 63505967250,0.346774876117706,L, + 65430390500,0.356547713279724,L, + 67354813750,0.366207927465439,L, + 69279237000,0.375724643468857,L, + 71203660250,0.385068178176880,L, + 73128083500,0.394209712743759,L, + 75052506750,0.403122007846832,L, + 76976930000,0.411779165267944,L, + 78901353250,0.420157134532928,L, + 80825776500,0.428232908248901,L, + 82750199750,0.435985893011093,L, + 84674623000,0.443396776914597,L, + 86599046250,0.450448215007782,L, + 88523469500,0.457124888896942,L, + 90447892750,0.463412582874298,L, + 92372316000,0.469299346208572,L, + 94296739250,0.474774777889252,L, + 96221162500,0.479829996824265,L, + 98145585750,0.484457552433014,L, + 100070009000,0.488651514053345,L, + 101994432250,0.492407321929932,L, + 103918855500,0.495721668004990,L, + 105843278750,0.498592376708984,L, + 107767702000,0.501018464565277,L, + 109692125250,0.502999484539032,L, + 111616548500,0.504536628723145,L, + 113540971750,0.505631208419800,L, + 115465395000,0.506285846233368,L, + 117389818250,0.506503164768219,L, + 153953860000,0.506503164768219,L, + 155878283250,0.507024765014648,L, + 157802706500,0.508651912212372,L, + 159727129750,0.511453688144684,L, + 161651553000,0.515443682670593,L, + 163575976250,0.520553231239319,L, + 165500399500,0.526614129543304,L, + 167424822750,0.533369362354279,L, + 169349246000,0.540512263774872,L, + 171273669250,0.547740995883942,L, + 173198092500,0.554802000522614,L, + 175122515750,0.561511337757111,L, + 177046939000,0.567753493785858,L, + 178971362250,0.574107229709625,L, + 180895785500,0.581188738346100,L, + 182820208750,0.588966369628906,L, + 184744632000,0.597384035587311,L, + 186669055250,0.606355547904968,L, + 188593478500,0.615761339664459,L, + 190517901750,0.625447332859039,L, + 192442325000,0.635228574275970,L, + 194366748250,0.644896805286407,L, + 196291171500,0.654233336448669,L, + 198215594750,0.663024604320526,L, + 200140018000,0.671076953411102,L, + 202064441250,0.678229928016663,L, + 203988864500,0.684363186359406,L, + 205913287750,0.689397215843201,L, + 207837711000,0.693292438983917,L, + 209762134250,0.696041107177734,L, + 211686557500,0.697662055492401,L, + 213610980750,0.698192000389099,L, + 215535404000,0.698191344738007,L, + 217459827250,0.698189437389374,L, + 219384250500,0.698186397552490,L, + 221308673750,0.698182284832001,L, + 223233097000,0.698177218437195,L, + 225157520250,0.698171555995941,L, + 227081943500,0.698165595531464,L, + 229006366750,0.698159992694855,L, + 230930790000,0.698154866695404,L, + 232855213250,0.698150753974915,L, + 234779636500,0.698147654533386,L, + 236704059750,0.698145806789398,L, + 238628483000,0.698145151138306,L, + 240552906250,0.698145449161530,L, + 242477329500,0.698146581649780,L, + 244401752750,0.698148727416992,L, + 246326176000,0.698151588439941,L, + 248250599250,0.698154866695404,L, + 250175022500,0.698158621788025,L, + 252099445750,0.698162913322449,L, + 254023869000,0.698167800903320,L, + 255948292250,0.698173403739929,L, + 257872715500,0.698179423809052,L, + 259797138750,0.698185861110687,L, + 261721562000,0.698192656040192,L, + 263645985250,0.698199629783630,L, + 265570408500,0.698206543922424,L, + 267494831750,0.698213219642639,L, + 269419255000,0.698219776153564,L, + 271343678250,0.698225736618042,L, + 273268101500,0.698231041431427,L, + 275192524750,0.698235690593719,L, + 277116948000,0.698239505290985,L, + 279041371250,0.698242425918579,L, + 280965794500,0.698244571685791,L, + 282890217750,0.698245823383331,L, + 284814641000,0.698246181011200,L, + 286739064250,0.697669208049774,L, + 288663487500,0.695791900157928,L, + 290587910750,0.692390978336334,L, + 292512334000,0.687263846397400,L, + 294436757250,0.680271208286285,L, + 296361180500,0.671383738517761,L, + 298285603750,0.660709142684937,L, + 300210027000,0.648482739925385,L, + 302134450250,0.635020256042480,L, + 304058873500,0.620657086372375,L, + 305983296750,0.605699419975281,L, + 307907720000,0.590398967266083,L, + 309832143250,0.573564112186432,L, + 311756566500,0.553882241249084,L, + 313680989750,0.531430959701538,L, + 315605413000,0.506375551223755,L, + 317529836250,0.478987842798233,L, + 319454259500,0.449661076068878,L, + 321378682750,0.418916225433350,L, + 323303106000,0.387393444776535,L, + 325227529250,0.355826348066330,L, + 327151952500,0.324998408555984,L, + 329076375750,0.295688599348068,L, + 331000799000,0.268615365028381,L, + 332925222250,0.244389817118645,L, + 334849645500,0.223486199975014,L, + 336774068750,0.206232339143753,L, + 338698492000,0.192817017436028,L, + 340622915250,0.183308929204941,L, + 342547338500,0.177681118249893,L, + 344471761750,0.175835639238358,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.111224763095379 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.111224763095379,L, + 1924423250,0.111311212182045,L, + 3848846500,0.111571475863457,L, + 5773269750,0.112006738781929,L, + 7697693000,0.112617909908295,L, + 9622116250,0.113405652344227,L, + 11546539500,0.114370264112949,L, + 13470962750,0.115511722862720,L, + 15395386000,0.116829566657543,L, + 17319809250,0.118322946131229,L, + 19244232500,0.119990549981594,L, + 21168655750,0.121830537915230,L, + 23093079000,0.123840570449829,L, + 25017502250,0.126017689704895,L, + 26941925500,0.128358364105225,L, + 28866348750,0.130858510732651,L, + 30790772000,0.133513242006302,L, + 32715195250,0.136317044496536,L, + 34639618500,0.139263764023781,L, + 36564041750,0.142346471548080,L, + 38488465000,0.145557567477226,L, + 40412888250,0.148888751864433,L, + 42337311500,0.152331024408340,L, + 44261734750,0.155874744057655,L, + 46186158000,0.159509599208832,L, + 48110581250,0.163224726915359,L, + 50035004500,0.167008757591248,L, + 51959427750,0.170849815011024,L, + 53883851000,0.174735695123672,L, + 55808274250,0.178653791546822,L, + 57732697500,0.182591274380684,L, + 59657120750,0.186535239219666,L, + 61581544000,0.190472766757011,L, + 63505967250,0.194390848278999,L, + 65430390500,0.198276683688164,L, + 67354813750,0.202117785811424,L, + 69279237000,0.205901786684990,L, + 71203660250,0.209616973996162,L, + 73128083500,0.213251799345016,L, + 75052506750,0.216795489192009,L, + 76976930000,0.220237761735916,L, + 78901353250,0.223568946123123,L, + 80825776500,0.226780071854591,L, + 82750199750,0.229862764477730,L, + 84674623000,0.232809469103813,L, + 86599046250,0.235613286495209,L, + 88523469500,0.238268032670021,L, + 90447892750,0.240768104791641,L, + 92372316000,0.243108868598938,L, + 94296739250,0.245285987854004,L, + 96221162500,0.247296005487442,L, + 98145585750,0.249136000871658,L, + 100070009000,0.250803560018539,L, + 101994432250,0.252296984195709,L, + 103918855500,0.253614813089371,L, + 105843278750,0.254756271839142,L, + 107767702000,0.255720913410187,L, + 109692125250,0.256508618593216,L, + 111616548500,0.257119864225388,L, + 113540971750,0.257555097341537,L, + 115465395000,0.257815301418304,L, + 117389818250,0.257901787757874,L, + 153953860000,0.257901787757874,L, + 155878283250,0.258644849061966,L, + 157802706500,0.260962992906570,L, + 159727129750,0.264954477548599,L, + 161651553000,0.270639002323151,L, + 163575976250,0.277918249368668,L, + 165500399500,0.286552906036377,L, + 167424822750,0.296176731586456,L, + 169349246000,0.306353062391281,L, + 171273669250,0.316651403903961,L, + 173198092500,0.326710820198059,L, + 175122515750,0.336269319057465,L, + 177046939000,0.345162242650986,L, + 178971362250,0.354214191436768,L, + 180895785500,0.364302814006805,L, + 182820208750,0.375383287668228,L, + 184744632000,0.387375593185425,L, + 186669055250,0.400156915187836,L, + 188593478500,0.413556784391403,L, + 190517901750,0.427356123924255,L, + 192442325000,0.441290974617004,L, + 194366748250,0.455064952373505,L, + 196291171500,0.468366324901581,L, + 198215594750,0.480890780687332,L, + 200140018000,0.492362767457962,L, + 202064441250,0.502553522586823,L, + 203988864500,0.511290848255157,L, + 205913287750,0.518462836742401,L, + 207837711000,0.524011969566345,L, + 209762134250,0.527928113937378,L, + 211686557500,0.530237197875977,L, + 213610980750,0.530992209911346,L, + 215535404000,0.529519140720367,L, + 217459827250,0.525068819522858,L, + 219384250500,0.517701089382172,L, + 221308673750,0.507665097713470,L, + 223233097000,0.495449841022491,L, + 225157520250,0.481794387102127,L, + 227081943500,0.467633932828903,L, + 229006366750,0.453978538513184,L, + 230930790000,0.441763192415237,L, + 232855213250,0.431727260351181,L, + 234779636500,0.424359470605850,L, + 236704059750,0.419909238815308,L, + 238628483000,0.418436080217361,L, + 240552906250,0.418899476528168,L, + 242477329500,0.420548617839813,L, + 244401752750,0.423589974641800,L, + 246326176000,0.427756607532501,L, + 248250599250,0.432503134012222,L, + 250175022500,0.437836319208145,L, + 252099445750,0.444078266620636,L, + 254023869000,0.451204359531403,L, + 255948292250,0.459162265062332,L, + 257872715500,0.467865407466888,L, + 259797138750,0.477188736200333,L, + 261721562000,0.486966341733932,L, + 263645985250,0.496994256973267,L, + 265570408500,0.507038772106171,L, + 267494831750,0.516850173473358,L, + 269419255000,0.526180088520050,L, + 271343678250,0.534799337387085,L, + 273268101500,0.542513072490692,L, + 275192524750,0.549169838428497,L, + 277116948000,0.554664909839630,L, + 279041371250,0.558937907218933,L, + 280965794500,0.561966538429260,L, + 282890217750,0.563759326934814,L, + 284814641000,0.564347028732300,L, + 286739064250,0.563880741596222,L, + 288663487500,0.562363445758820,L, + 290587910750,0.559614658355713,L, + 292512334000,0.555470705032349,L, + 294436757250,0.549819111824036,L, + 296361180500,0.542635917663574,L, + 298285603750,0.534008383750916,L, + 300210027000,0.524126589298248,L, + 302134450250,0.513245642185211,L, + 304058873500,0.501636743545532,L, + 305983296750,0.489547491073608,L, + 307907720000,0.477181136608124,L, + 309832143250,0.463574647903442,L, + 311756566500,0.447667062282562,L, + 313680989750,0.429521173238754,L, + 315605413000,0.409270495176315,L, + 317529836250,0.387134820222855,L, + 319454259500,0.363431841135025,L, + 321378682750,0.338582754135132,L, + 323303106000,0.313105016946793,L, + 325227529250,0.287591278553009,L, + 327151952500,0.262675076723099,L, + 329076375750,0.238985851407051,L, + 331000799000,0.217104360461235,L, + 332925222250,0.197524383664131,L, + 334849645500,0.180629342794418,L, + 336774068750,0.166684195399284,L, + 338698492000,0.155841425061226,L, + 340622915250,0.148156702518463,L, + 342547338500,0.143608063459396,L, + 344471761750,0.142116487026215,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_049" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.006819367408752 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.006819367408752,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000119209290,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775783538818 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.007775783538818,L, + 1924423250,0.007768929004669,L, + 3848846500,0.007748484611511,L, + 5773269750,0.007714331150055,L, + 7697693000,0.007666349411011,L, + 9622116250,0.007604539394379,L, + 11546539500,0.007528841495514,L, + 13470962750,0.007439196109772,L, + 15395386000,0.007335782051086,L, + 17319809250,0.007218539714813,L, + 19244232500,0.007087647914886,L, + 21168655750,0.006943225860596,L, + 23093079000,0.006785452365875,L, + 25017502250,0.006614565849304,L, + 26941925500,0.006430864334106,L, + 28866348750,0.006234586238861,L, + 30790772000,0.006026208400726,L, + 32715195250,0.005806148052216,L, + 34639618500,0.005574822425842,L, + 36564041750,0.005332887172699,L, + 38488465000,0.005080819129944,L, + 40412888250,0.004819393157959,L, + 42337311500,0.004549145698547,L, + 44261734750,0.004270970821381,L, + 46186158000,0.003985643386841,L, + 48110581250,0.003694057464600,L, + 50035004500,0.003396987915039,L, + 51959427750,0.003095507621765,L, + 53883851000,0.002790570259094,L, + 55808274250,0.002483010292053,L, + 57732697500,0.002173960208893,L, + 59657120750,0.001864314079285,L, + 61581544000,0.001555263996124,L, + 63505967250,0.001247704029083,L, + 65430390500,0.000942766666412,L, + 67354813750,0.000641226768494,L, + 69279237000,0.000344157218933,L, + 71203660250,0.000052630901337,L, + 73128083500,-0.000232696533203,L, + 75052506750,-0.000510931015015,L, + 76976930000,-0.000781118869781,L, + 78901353250,-0.001042544841766,L, + 80825776500,-0.001294672489166,L, + 82750199750,-0.001536548137665,L, + 84674623000,-0.001767873764038,L, + 86599046250,-0.001987934112549,L, + 88523469500,-0.002196371555328,L, + 90447892750,-0.002392649650574,L, + 92372316000,-0.002576351165771,L, + 94296739250,-0.002747237682343,L, + 96221162500,-0.002905011177063,L, + 98145585750,-0.003049373626709,L, + 100070009000,-0.003180325031281,L, + 101994432250,-0.003297507762909,L, + 103918855500,-0.003400981426239,L, + 105843278750,-0.003490567207336,L, + 107767702000,-0.003566265106201,L, + 109692125250,-0.003628075122833,L, + 111616548500,-0.003676116466522,L, + 113540971750,-0.003710269927979,L, + 115465395000,-0.003730714321136,L, + 117389818250,-0.003737449645996,L, + 119314241500,-0.003602862358093,L, + 121238664750,-0.003190577030182,L, + 123163088000,-0.002487361431122,L, + 125087511250,-0.001480817794800,L, + 127011934500,-0.000159323215485,L, + 128936357750,0.001487612724304,L, + 130860781000,0.003468930721283,L, + 132785204250,0.005791187286377,L, + 134709627500,0.008458554744720,L, + 136634050750,0.011471807956696,L, + 138558474000,0.014828264713287,L, + 140482897250,0.018521249294281,L, + 142407320500,0.022539854049683,L, + 144331743750,0.026868939399719,L, + 146256167000,0.031489253044128,L, + 148180590250,0.036377847194672,L, + 150105013500,0.041508376598358,L, + 152029436750,0.046852290630341,L, + 153953860000,0.052379429340363,L, + 155878283250,0.058058559894562,L, + 157802706500,0.063858866691589,L, + 159727129750,0.069750249385834,L, + 161651553000,0.075704157352448,L, + 163575976250,0.081693947315216,L, + 165500399500,0.087695300579071,L, + 167424822750,0.093686521053314,L, + 169349246000,0.099648535251617,L, + 171273669250,0.105564653873444,L, + 173198092500,0.111420750617981,L, + 175122515750,0.117204964160919,L, + 177046939000,0.122907578945160,L, + 178971362250,0.128847539424896,L, + 180895785500,0.135353744029999,L, + 182820208750,0.142412185668945,L, + 184744632000,0.149971663951874,L, + 186669055250,0.157934725284576,L, + 188593478500,0.166156113147736,L, + 190517901750,0.174453496932983,L, + 192442325000,0.182631552219391,L, + 194366748250,0.190510511398315,L, + 196291171500,0.197949647903442,L, + 198215594750,0.204857110977173,L, + 200140018000,0.211187541484833,L, + 202064441250,0.216931939125061,L, + 203988864500,0.222187817096710,L, + 205913287750,0.227042734622955,L, + 207837711000,0.231497108936310,L, + 209762134250,0.235557198524475,L, + 211686557500,0.239236652851105,L, + 213610980750,0.242557525634766,L, + 215535404000,0.245551824569702,L, + 217459827250,0.248262047767639,L, + 219384250500,0.250741124153137,L, + 221308673750,0.253051996231079,L, + 223233097000,0.255266189575195,L, + 225157520250,0.257460355758667,L, + 227081943500,0.259714484214783,L, + 229006366750,0.262106895446777,L, + 230930790000,0.264711380004883,L, + 232855213250,0.267594218254089,L, + 234779636500,0.270811676979065,L, + 236704059750,0.274409174919128,L, + 238628483000,0.278420925140381,L, + 240552906250,0.282870054244995,L, + 242477329500,0.287770390510559,L, + 244401752750,0.293127298355103,L, + 246326176000,0.298939228057861,L, + 248250599250,0.305199623107910,L, + 250175022500,0.311898589134216,L, + 252099445750,0.319000005722046,L, + 254023869000,0.326461076736450,L, + 255948292250,0.334245800971985,L, + 257872715500,0.342323064804077,L, + 259797138750,0.350666522979736,L, + 261721562000,0.359252929687500,L, + 263645985250,0.368061542510986,L, + 265570408500,0.377074241638184,L, + 267494831750,0.386274695396423,L, + 269419255000,0.395647764205933,L, + 271343678250,0.405179858207703,L, + 273268101500,0.414858222007751,L, + 275192524750,0.424670815467834,L, + 277116948000,0.434606313705444,L, + 279041371250,0.444653391838074,L, + 280965794500,0.454801321029663,L, + 282890217750,0.465038776397705,L, + 284814641000,0.475354433059692,L, + 286739064250,0.485736250877380,L, + 288663487500,0.496170759201050,L, + 290587910750,0.506642937660217,L, + 292512334000,0.517135024070740,L, + 294436757250,0.527624845504761,L, + 296361180500,0.538083910942078,L, + 298285603750,0.548473000526428,L, + 300210027000,0.558734297752380,L, + 302134450250,0.568772554397583,L, + 304058873500,0.578409671783447,L, + 305983296750,0.587213873863220,L, + 307907720000,0.593029379844666,L, + 309832143250,0.007775783538818,L, + 344471761750,0.007775783538818,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.362565189599991 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565189599991,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812727689743,L, + 7697693000,0.363011032342911,L, + 9622116250,0.363271087408066,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578383207321,L, + 21168655750,0.366257965564728,L, + 23093079000,0.367015808820724,L, + 25017502250,0.367854297161102,L, + 26941925500,0.368775635957718,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875865221024,L, + 32715195250,0.372058898210526,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700248241425,L, + 38488465000,0.376161903142929,L, + 40412888250,0.377719491720200,L, + 42337311500,0.379374206066132,L, + 44261734750,0.381127029657364,L, + 46186158000,0.382978647947311,L, + 48110581250,0.384929627180099,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129906892776,L, + 53883851000,0.391378849744797,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170884370804,L, + 59657120750,0.398711830377579,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895309686661,L, + 67354813750,0.409803241491318,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267794609070,L, + 76976930000,0.425577551126480,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812480688095,L, + 90447892750,0.450549811124802,L, + 92372316000,0.454334944486618,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945571660995,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868757486343,L, + 103918855500,0.477876693010330,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972374677658,L, + 109692125250,0.490055292844772,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279958963394,L, + 115465395000,0.502417564392090,L, + 117389818250,0.506569504737854,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852510929108,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213792800903,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595188617706,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118311405182,L, + 140482897250,0.587658941745758,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940116405487,L, + 146256167000,0.613523006439209,L, + 148180590250,0.621958911418915,L, + 150105013500,0.630166828632355,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593881607056,L, + 155878283250,0.652674913406372,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287196636200,L, + 161651553000,0.670731365680695,L, + 163575976250,0.675558388233185,L, + 165500399500,0.679747283458710,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393175601959,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068542957306,L, + 252099445750,0.686802864074707,L, + 254023869000,0.681633591651917,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289091110229,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788836956024,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842447996140,L, + 280965794500,0.478641301393509,L, + 282890217750,0.457829535007477,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111565828323,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298782974481583,L, + 298285603750,0.274840265512466,L, + 300210027000,0.250887542963028,L, + 302134450250,0.227154552936554,L, + 304058873500,0.204073235392570,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565189599991,L, + 344471761750,0.362565189599991,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.362565189599991 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.362565189599991,L, + 1924423250,0.362591981887817,L, + 3848846500,0.362673759460449,L, + 5773269750,0.362812727689743,L, + 7697693000,0.363011032342911,L, + 9622116250,0.363271087408066,L, + 11546539500,0.363595068454742,L, + 13470962750,0.363985389471054,L, + 15395386000,0.364444494247437,L, + 17319809250,0.364974677562714,L, + 19244232500,0.365578383207321,L, + 21168655750,0.366257965564728,L, + 23093079000,0.367015808820724,L, + 25017502250,0.367854297161102,L, + 26941925500,0.368775635957718,L, + 28866348750,0.369782149791718,L, + 30790772000,0.370875865221024,L, + 32715195250,0.372058898210526,L, + 34639618500,0.373333126306534,L, + 36564041750,0.374700248241425,L, + 38488465000,0.376161903142929,L, + 40412888250,0.377719491720200,L, + 42337311500,0.379374206066132,L, + 44261734750,0.381127029657364,L, + 46186158000,0.382978647947311,L, + 48110581250,0.384929627180099,L, + 50035004500,0.386980056762695,L, + 51959427750,0.389129906892776,L, + 53883851000,0.391378849744797,L, + 55808274250,0.393726140260696,L, + 57732697500,0.396170884370804,L, + 59657120750,0.398711830377579,L, + 61581544000,0.401347458362579,L, + 63505967250,0.404075980186462,L, + 65430390500,0.406895309686661,L, + 67354813750,0.409803241491318,L, + 69279237000,0.412797212600708,L, + 71203660250,0.415874600410461,L, + 73128083500,0.419032454490662,L, + 75052506750,0.422267794609070,L, + 76976930000,0.425577551126480,L, + 78901353250,0.428958356380463,L, + 80825776500,0.432406991720200,L, + 82750199750,0.435920029878616,L, + 84674623000,0.439494252204895,L, + 86599046250,0.443126201629639,L, + 88523469500,0.446812480688095,L, + 90447892750,0.450549811124802,L, + 92372316000,0.454334944486618,L, + 94296739250,0.458164691925049,L, + 96221162500,0.462035894393921,L, + 98145585750,0.465945571660995,L, + 100070009000,0.469890832901001,L, + 101994432250,0.473868757486343,L, + 103918855500,0.477876693010330,L, + 105843278750,0.481912076473236,L, + 107767702000,0.485972374677658,L, + 109692125250,0.490055292844772,L, + 111616548500,0.494158506393433,L, + 113540971750,0.498279958963394,L, + 115465395000,0.502417564392090,L, + 117389818250,0.506569504737854,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852510929108,L, + 123163088000,0.521214723587036,L, + 125087511250,0.527048349380493,L, + 127011934500,0.533340096473694,L, + 128936357750,0.540070712566376,L, + 130860781000,0.547213792800903,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595188617706,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118311405182,L, + 140482897250,0.587658941745758,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940116405487,L, + 146256167000,0.613523006439209,L, + 148180590250,0.621958911418915,L, + 150105013500,0.630166828632355,L, + 152029436750,0.638069331645966,L, + 153953860000,0.645593881607056,L, + 155878283250,0.652674913406372,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287196636200,L, + 161651553000,0.670731365680695,L, + 163575976250,0.675558388233185,L, + 165500399500,0.679747283458710,L, + 167424822750,0.683285593986511,L, + 169349246000,0.686167359352112,L, + 171273669250,0.688393175601959,L, + 173198092500,0.689968824386597,L, + 175122515750,0.690904259681702,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068542957306,L, + 252099445750,0.686802864074707,L, + 254023869000,0.681633591651917,L, + 255948292250,0.674743771553040,L, + 257872715500,0.666289091110229,L, + 259797138750,0.656403422355652,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788836956024,L, + 265570408500,0.619251251220703,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655081748962,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537239968776703,L, + 277116948000,0.518390178680420,L, + 279041371250,0.498842447996140,L, + 280965794500,0.478641301393509,L, + 282890217750,0.457829535007477,L, + 284814641000,0.436449110507965,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151832580566,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111565828323,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298782974481583,L, + 298285603750,0.274840265512466,L, + 300210027000,0.250887542963028,L, + 302134450250,0.227154552936554,L, + 304058873500,0.204073235392570,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364107608795,L, + 309832143250,0.362565189599991,L, + 344471761750,0.362565189599991,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.370854854583740 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.370854854583740,L, + 1924423250,0.370877712965012,L, + 3848846500,0.370947599411011,L, + 5773269750,0.371066659688950,L, + 7697693000,0.371237039566040,L, + 9622116250,0.371460884809494,L, + 11546539500,0.371740579605103,L, + 13470962750,0.372078359127045,L, + 15395386000,0.372476607561111,L, + 17319809250,0.372937679290771,L, + 19244232500,0.373464018106461,L, + 21168655750,0.374058008193970,L, + 23093079000,0.374722152948380,L, + 25017502250,0.375458836555481,L, + 26941925500,0.376270413398743,L, + 28866348750,0.377159237861633,L, + 30790772000,0.378127664327621,L, + 32715195250,0.379177868366241,L, + 34639618500,0.380311965942383,L, + 36564041750,0.381531983613968,L, + 38488465000,0.382839769124985,L, + 40412888250,0.384237110614777,L, + 42337311500,0.385725468397141,L, + 44261734750,0.387306183576584,L, + 46186158000,0.388980478048325,L, + 48110581250,0.390749156475067,L, + 50035004500,0.392612934112549,L, + 51959427750,0.394572198390961,L, + 53883851000,0.396627098321915,L, + 55808274250,0.398777484893799,L, + 57732697500,0.401022881269455,L, + 59657120750,0.403362691402435,L, + 61581544000,0.405795902013779,L, + 63505967250,0.408321231603622,L, + 65430390500,0.410937249660492,L, + 67354813750,0.413642197847366,L, + 69279237000,0.416434139013290,L, + 71203660250,0.419310808181763,L, + 73128083500,0.422269970178604,L, + 75052506750,0.425309032201767,L, + 76976930000,0.428425312042236,L, + 78901353250,0.431616097688675,L, + 80825776500,0.434878408908844,L, + 82750199750,0.438209325075150,L, + 84674623000,0.441605865955353,L, + 86599046250,0.445064932107925,L, + 88523469500,0.448583573102951,L, + 90447892750,0.452158629894257,L, + 92372316000,0.455787211656570,L, + 94296739250,0.459466218948364,L, + 96221162500,0.463192850351334,L, + 98145585750,0.466964155435562,L, + 100070009000,0.470777422189713,L, + 101994432250,0.474629938602448,L, + 103918855500,0.478519052267075,L, + 105843278750,0.482442289590836,L, + 107767702000,0.486397206783295,L, + 109692125250,0.490381538867950,L, + 111616548500,0.494392931461334,L, + 113540971750,0.498429447412491,L, + 115465395000,0.502488970756531,L, + 117389818250,0.506569504737854,L, + 119314241500,0.510674059391022,L, + 121238664750,0.514811515808105,L, + 123163088000,0.518990218639374,L, + 125087511250,0.523219525814056,L, + 127011934500,0.527509510517120,L, + 128936357750,0.531871020793915,L, + 130860781000,0.536316215991974,L, + 132785204250,0.540857493877411,L, + 134709627500,0.545508146286011,L, + 136634050750,0.550281405448914,L, + 138558474000,0.555191040039062,L, + 140482897250,0.560250222682953,L, + 142407320500,0.565471172332764,L, + 144331743750,0.570865750312805,L, + 146256167000,0.576443612575531,L, + 148180590250,0.582212865352631,L, + 150105013500,0.588179886341095,L, + 152029436750,0.594348371028900,L, + 153953860000,0.600719749927521,L, + 155878283250,0.607293605804443,L, + 157802706500,0.614066958427429,L, + 159727129750,0.621035277843475,L, + 161651553000,0.628192365169525,L, + 163575976250,0.635530650615692,L, + 165500399500,0.643041610717773,L, + 167424822750,0.650716304779053,L, + 169349246000,0.658545315265656,L, + 171273669250,0.666518926620483,L, + 173198092500,0.674627423286438,L, + 175122515750,0.682861745357513,L, + 177046939000,0.691212654113770,L, + 178971362250,0.700580954551697,L, + 180895785500,0.711831927299500,L, + 182820208750,0.724810838699341,L, + 184744632000,0.739207804203033,L, + 186669055250,0.754532456398010,L, + 188593478500,0.770122945308685,L, + 190517901750,0.785207509994507,L, + 192442325000,0.799009799957275,L, + 194366748250,0.810864686965942,L, + 196291171500,0.820297837257385,L, + 198215594750,0.827048599720001,L, + 200140018000,0.831043422222137,L, + 202064441250,0.832345306873322,L, + 203988864500,0.831680655479431,L, + 205913287750,0.829649627208710,L, + 207837711000,0.826202630996704,L, + 209762134250,0.821300983428955,L, + 211686557500,0.814921259880066,L, + 213610980750,0.807059705257416,L, + 215535404000,0.797736883163452,L, + 217459827250,0.787002444267273,L, + 219384250500,0.774937510490417,L, + 221308673750,0.761656522750854,L, + 223233097000,0.747306168079376,L, + 225157520250,0.732061028480530,L, + 227081943500,0.716117203235626,L, + 229006366750,0.699683904647827,L, + 230930790000,0.682973504066467,L, + 232855213250,0.666191935539246,L, + 234779636500,0.649530708789825,L, + 236704059750,0.633161067962646,L, + 238628483000,0.617229700088501,L, + 240552906250,0.601857483386993,L, + 242477329500,0.587140440940857,L, + 244401752750,0.573150396347046,L, + 246326176000,0.559938549995422,L, + 248250599250,0.547538399696350,L, + 250175022500,0.535492360591888,L, + 252099445750,0.523339092731476,L, + 254023869000,0.511092364788055,L, + 255948292250,0.498763769865036,L, + 257872715500,0.486363738775253,L, + 259797138750,0.473901331424713,L, + 261721562000,0.461384624242783,L, + 263645985250,0.448821067810059,L, + 265570408500,0.436217546463013,L, + 267494831750,0.423580318689346,L, + 269419255000,0.410915672779083,L, + 271343678250,0.398229479789734,L, + 273268101500,0.385527729988098,L, + 275192524750,0.372816354036331,L, + 277116948000,0.360101580619812,L, + 279041371250,0.347389698028564,L, + 280965794500,0.334687888622284,L, + 282890217750,0.322003543376923,L, + 284814641000,0.309345304965973,L, + 286739064250,0.296723067760468,L, + 288663487500,0.284148365259171,L, + 290587910750,0.271635293960571,L, + 292512334000,0.259201347827911,L, + 294436757250,0.246869221329689,L, + 296361180500,0.234669387340546,L, + 298285603750,0.222644716501236,L, + 300210027000,0.210859879851341,L, + 302134450250,0.199421197175980,L, + 304058873500,0.188528910279274,L, + 305983296750,0.178665339946747,L, + 307907720000,0.172213569283485,L, + 309832143250,0.370854854583740,L, + 344471761750,0.370854854583740,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireA_006" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.014073014259338 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.014073014259338,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000119209290,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.990143239498138 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.990143239498138,L, + 1924423250,0.990259826183319,L, + 3848846500,0.990611493587494,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695505619049,L, + 17319809250,0.999685704708099,L, + 19244232500,1.001892209053040,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912469863892,L, + 25017502250,1.009699821472168,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691151618958,L, + 36564041750,1.029144644737244,L, + 38488465000,1.032624483108521,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281456947327,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356995582581,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855855941772,L, + 67354813750,1.072157502174377,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016809463501,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183141708374,L, + 92372316000,1.058615088462830,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713688850403,L, + 101994432250,1.040445208549500,L, + 103918855500,1.037568211555481,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247590065002,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790925025940,L, + 115465395000,1.031739592552185,L, + 117389818250,1.034604549407959,L, + 119314241500,1.039401650428772,L, + 121238664750,1.046128273010254,L, + 123163088000,1.054758071899414,L, + 125087511250,1.065236568450928,L, + 127011934500,1.077477812767029,L, + 128936357750,1.091359019279480,L, + 130860781000,1.106719255447388,L, + 132785204250,1.123358488082886,L, + 134709627500,1.141039371490479,L, + 136634050750,1.159490466117859,L, + 138558474000,1.178415536880493,L, + 140482897250,1.197500228881836,L, + 142407320500,1.216425180435181,L, + 144331743750,1.234876632690430,L, + 146256167000,1.252557158470154,L, + 148180590250,1.269196510314941,L, + 150105013500,1.284556746482849,L, + 152029436750,1.298437833786011,L, + 153953860000,1.310678958892822,L, + 155878283250,1.321157932281494,L, + 157802706500,1.329787611961365,L, + 159727129750,1.336514234542847,L, + 161651553000,1.341311216354370,L, + 163575976250,1.344176173210144,L, + 165500399500,1.345124959945679,L, + 167424822750,1.344361186027527,L, + 169349246000,1.342055797576904,L, + 171273669250,1.338195085525513,L, + 173198092500,1.332778453826904,L, + 175122515750,1.325821161270142,L, + 177046939000,1.317357063293457,L, + 178971362250,1.307440996170044,L, + 180895785500,1.296152591705322,L, + 182820208750,1.283597350120544,L, + 184744632000,1.269908070564270,L, + 186669055250,1.255244970321655,L, + 188593478500,1.239793181419373,L, + 190517901750,1.223760485649109,L, + 192442325000,1.207371950149536,L, + 194366748250,1.190863490104675,L, + 196291171500,1.174474716186523,L, + 198215594750,1.158442258834839,L, + 200140018000,1.142990469932556,L, + 202064441250,1.128327250480652,L, + 203988864500,1.114638090133667,L, + 205913287750,1.102082848548889,L, + 207837711000,1.090794324874878,L, + 209762134250,1.080878376960754,L, + 211686557500,1.072414159774780,L, + 213610980750,1.065456867218018,L, + 215535404000,1.060040473937988,L, + 217459827250,1.056179523468018,L, + 219384250500,1.053874015808105,L, + 221308673750,1.053110361099243,L, + 223233097000,1.054614067077637,L, + 225157520250,1.059159874916077,L, + 227081943500,1.066745042800903,L, + 229006366750,1.077269673347473,L, + 230930790000,1.090510249137878,L, + 232855213250,1.106096386909485,L, + 234779636500,1.123504757881165,L, + 236704059750,1.142072319984436,L, + 238628483000,1.161037921905518,L, + 240552906250,1.179605364799500,L, + 242477329500,1.197013616561890,L, + 244401752750,1.212599873542786,L, + 246326176000,1.225840449333191,L, + 248250599250,1.236365079879761,L, + 250175022500,1.243950247764587,L, + 252099445750,1.248496174812317,L, + 254023869000,1.249999880790710,L, + 255948292250,1.248473048210144,L, + 257872715500,1.243856549263000,L, + 259797138750,1.236153960227966,L, + 261721562000,1.225466370582581,L, + 263645985250,1.212020754814148,L, + 265570408500,1.196193099021912,L, + 267494831750,1.178515076637268,L, + 269419255000,1.159660220146179,L, + 271343678250,1.140400767326355,L, + 273268101500,1.121545791625977,L, + 275192524750,1.103867769241333,L, + 277116948000,1.088040113449097,L, + 279041371250,1.074594736099243,L, + 280965794500,1.063906788825989,L, + 282890217750,1.056204319000244,L, + 284814641000,1.051587939262390,L, + 286739064250,1.050060987472534,L, + 288663487500,1.050616383552551,L, + 290587910750,1.052287220954895,L, + 292512334000,1.055004239082336,L, + 294436757250,1.058557868003845,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162892341614,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220491409302,L, + 311756566500,1.070851683616638,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345551490784,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253323554993,L, + 323303106000,1.039523243904114,L, + 325227529250,1.032583117485046,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590050697327,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820802688599,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529119968414,L, + 344471761750,0.990060448646545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.990143239498138 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.990143239498138,L, + 1924423250,0.990259826183319,L, + 3848846500,0.990611493587494,L, + 5773269750,0.991200089454651,L, + 7697693000,0.992026805877686,L, + 9622116250,0.993091583251953,L, + 11546539500,0.994393348693848,L, + 13470962750,0.995929360389709,L, + 15395386000,0.997695505619049,L, + 17319809250,0.999685704708099,L, + 19244232500,1.001892209053040,L, + 21168655750,1.004305243492126,L, + 23093079000,1.006912469863892,L, + 25017502250,1.009699821472168,L, + 26941925500,1.012650966644287,L, + 28866348750,1.015747189521790,L, + 30790772000,1.018967866897583,L, + 32715195250,1.022290587425232,L, + 34639618500,1.025691151618958,L, + 36564041750,1.029144644737244,L, + 38488465000,1.032624483108521,L, + 40412888250,1.036104559898376,L, + 42337311500,1.039558053016663,L, + 44261734750,1.042958736419678,L, + 46186158000,1.046281456947327,L, + 48110581250,1.049502134323120,L, + 50035004500,1.052598237991333,L, + 51959427750,1.055549383163452,L, + 53883851000,1.058336734771729,L, + 55808274250,1.060944080352783,L, + 57732697500,1.063356995582581,L, + 59657120750,1.065563440322876,L, + 61581544000,1.067553758621216,L, + 63505967250,1.069319725036621,L, + 65430390500,1.070855855941772,L, + 67354813750,1.072157502174377,L, + 69279237000,1.073222517967224,L, + 71203660250,1.074049234390259,L, + 73128083500,1.074637770652771,L, + 75052506750,1.074989318847656,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016809463501,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183141708374,L, + 92372316000,1.058615088462830,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713688850403,L, + 101994432250,1.040445208549500,L, + 103918855500,1.037568211555481,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247590065002,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790925025940,L, + 115465395000,1.031299352645874,L, + 117389818250,1.032834291458130,L, + 119314241500,1.035404682159424,L, + 121238664750,1.039008975028992,L, + 123163088000,1.043632984161377,L, + 125087511250,1.049247860908508,L, + 127011934500,1.055806875228882,L, + 128936357750,1.063244700431824,L, + 130860781000,1.071475267410278,L, + 132785204250,1.080391049385071,L, + 134709627500,1.089864730834961,L, + 136634050750,1.099751472473145,L, + 138558474000,1.109892010688782,L, + 140482897250,1.120118021965027,L, + 142407320500,1.130258560180664,L, + 144331743750,1.140145301818848,L, + 146256167000,1.149618983268738,L, + 148180590250,1.158534765243530,L, + 150105013500,1.166765093803406,L, + 152029436750,1.174202919006348,L, + 153953860000,1.180762171745300,L, + 155878283250,1.186376810073853,L, + 157802706500,1.191000819206238,L, + 159727129750,1.194605231285095,L, + 161651553000,1.197175502777100,L, + 163575976250,1.198710799217224,L, + 165500399500,1.199219107627869,L, + 167424822750,1.198836922645569,L, + 169349246000,1.197683453559875,L, + 171273669250,1.195751667022705,L, + 173198092500,1.193041682243347,L, + 175122515750,1.189560532569885,L, + 177046939000,1.185325384140015,L, + 178971362250,1.180364131927490,L, + 180895785500,1.174715876579285,L, + 182820208750,1.168433904647827,L, + 184744632000,1.161584615707397,L, + 186669055250,1.154247760772705,L, + 188593478500,1.146516680717468,L, + 190517901750,1.138494729995728,L, + 192442325000,1.130294680595398,L, + 194366748250,1.122034788131714,L, + 196291171500,1.113834738731384,L, + 198215594750,1.105813026428223,L, + 200140018000,1.098081707954407,L, + 202064441250,1.090744853019714,L, + 203988864500,1.083895564079285,L, + 205913287750,1.077613592147827,L, + 207837711000,1.071965575218201,L, + 209762134250,1.067004084587097,L, + 211686557500,1.062769055366516,L, + 213610980750,1.059287786483765,L, + 215535404000,1.056577801704407,L, + 217459827250,1.054646015167236,L, + 219384250500,1.053492546081543,L, + 221308673750,1.053110361099243,L, + 223233097000,1.053547382354736,L, + 225157520250,1.054868221282959,L, + 227081943500,1.057072043418884,L, + 229006366750,1.060130119323730,L, + 230930790000,1.063977122306824,L, + 232855213250,1.068505764007568,L, + 234779636500,1.073563694953918,L, + 236704059750,1.078958749771118,L, + 238628483000,1.084469199180603,L, + 240552906250,1.089864134788513,L, + 242477329500,1.094922065734863,L, + 244401752750,1.099450707435608,L, + 246326176000,1.103297710418701,L, + 248250599250,1.106355786323547,L, + 250175022500,1.108559608459473,L, + 252099445750,1.109880447387695,L, + 254023869000,1.110317468643188,L, + 255948292250,1.109857201576233,L, + 257872715500,1.108466029167175,L, + 259797138750,1.106144666671753,L, + 261721562000,1.102923631668091,L, + 263645985250,1.098871588706970,L, + 265570408500,1.094101548194885,L, + 267494831750,1.088773727416992,L, + 269419255000,1.083091378211975,L, + 271343678250,1.077287077903748,L, + 273268101500,1.071604728698730,L, + 275192524750,1.066276907920837,L, + 277116948000,1.061507105827332,L, + 279041371250,1.057454824447632,L, + 280965794500,1.054233789443970,L, + 282890217750,1.051912426948547,L, + 284814641000,1.050521254539490,L, + 286739064250,1.050060987472534,L, + 288663487500,1.050616383552551,L, + 290587910750,1.052287220954895,L, + 292512334000,1.055004239082336,L, + 294436757250,1.058557868003845,L, + 298285603750,1.066609263420105,L, + 300210027000,1.070162892341614,L, + 302134450250,1.072879910469055,L, + 304058873500,1.074550747871399,L, + 305983296750,1.075105905532837,L, + 307907720000,1.074637293815613,L, + 309832143250,1.073220491409302,L, + 311756566500,1.070851683616638,L, + 313680989750,1.067546367645264,L, + 315605413000,1.063345551490784,L, + 317529836250,1.058320403099060,L, + 319454259500,1.052576303482056,L, + 321378682750,1.046253323554993,L, + 323303106000,1.039523243904114,L, + 325227529250,1.032583117485046,L, + 327151952500,1.025643110275269,L, + 329076375750,1.018913149833679,L, + 331000799000,1.012590050697327,L, + 332925222250,1.006846070289612,L, + 334849645500,1.001820802688599,L, + 336774068750,0.997620046138763,L, + 338698492000,0.994314730167389,L, + 340622915250,0.991945862770081,L, + 342547338500,0.990529119968414,L, + 344471761750,0.990060448646545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.990969538688660 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.990969538688660,L, + 1924423250,0.991085112094879,L, + 3848846500,0.991433322429657,L, + 5773269750,0.992016196250916,L, + 7697693000,0.992834746837616,L, + 9622116250,0.993889212608337,L, + 11546539500,0.995178341865540,L, + 13470962750,0.996699392795563,L, + 15395386000,0.998448312282562,L, + 17319809250,1.000419259071350,L, + 19244232500,1.002604365348816,L, + 21168655750,1.004993796348572,L, + 23093079000,1.007575631141663,L, + 25017502250,1.010336041450500,L, + 26941925500,1.013258218765259,L, + 28866348750,1.016324520111084,L, + 30790772000,1.019513845443726,L, + 32715195250,1.022804141044617,L, + 34639618500,1.026171684265137,L, + 36564041750,1.029591679573059,L, + 40412888250,1.036483883857727,L, + 42337311500,1.039903759956360,L, + 44261734750,1.043271422386169,L, + 46186158000,1.046561717987061,L, + 48110581250,1.049751043319702,L, + 50035004500,1.052817225456238,L, + 51959427750,1.055739641189575,L, + 53883851000,1.058499932289124,L, + 55808274250,1.061081886291504,L, + 57732697500,1.063471078872681,L, + 59657120750,1.065656423568726,L, + 61581544000,1.067627191543579,L, + 63505967250,1.069376111030579,L, + 65430390500,1.070897221565247,L, + 67354813750,1.072186231613159,L, + 69279237000,1.073240756988525,L, + 71203660250,1.074059247970581,L, + 73128083500,1.074642300605774,L, + 75052506750,1.074990391731262,L, + 76976930000,1.075105905532837,L, + 78901353250,1.074835419654846,L, + 80825776500,1.074016809463501,L, + 82750199750,1.072649359703064,L, + 84674623000,1.070743799209595,L, + 86599046250,1.068328619003296,L, + 88523469500,1.065451622009277,L, + 90447892750,1.062183141708374,L, + 92372316000,1.058615088462830,L, + 94296739250,1.054858803749084,L, + 96221162500,1.051038026809692,L, + 98145585750,1.047281742095947,L, + 100070009000,1.043713688850403,L, + 101994432250,1.040445208549500,L, + 103918855500,1.037568211555481,L, + 105843278750,1.035153031349182,L, + 107767702000,1.033247590065002,L, + 109692125250,1.031880021095276,L, + 111616548500,1.031061649322510,L, + 113540971750,1.030790925025940,L, + 115465395000,1.031750082969666,L, + 117389818250,1.034646391868591,L, + 119314241500,1.039496064186096,L, + 121238664750,1.046296477317810,L, + 123163088000,1.055021047592163,L, + 125087511250,1.065614581108093,L, + 127011934500,1.077990055084229,L, + 128936357750,1.092023491859436,L, + 130860781000,1.107552170753479,L, + 132785204250,1.124374032020569,L, + 134709627500,1.142248749732971,L, + 136634050750,1.160902500152588,L, + 138558474000,1.180034995079041,L, + 140482897250,1.199329018592834,L, + 142407320500,1.218461632728577,L, + 144331743750,1.237115263938904,L, + 146256167000,1.254990100860596,L, + 148180590250,1.271811723709106,L, + 150105013500,1.287340760231018,L, + 152029436750,1.301373958587646,L, + 153953860000,1.313749432563782,L, + 155878283250,1.324343085289001,L, + 157802706500,1.333067655563354,L, + 159727129750,1.339867830276489,L, + 161651553000,1.344717741012573,L, + 163575976250,1.347614049911499,L, + 165500399500,1.348573207855225,L, + 167424822750,1.348004102706909,L, + 169349246000,1.346277356147766,L, + 171273669250,1.343367695808411,L, + 173198092500,1.339257359504700,L, + 175122515750,1.333938479423523,L, + 177046939000,1.327414035797119,L, + 178971362250,1.319701075553894,L, + 180895785500,1.310832619667053,L, + 182820208750,1.300859332084656,L, + 184744632000,1.289851546287537,L, + 186669055250,1.277898311614990,L, + 188593478500,1.265108823776245,L, + 190517901750,1.251609444618225,L, + 192442325000,1.237542510032654,L, + 194366748250,1.223060727119446,L, + 196291171500,1.208324313163757,L, + 198215594750,1.193494558334351,L, + 200140018000,1.178729653358459,L, + 202064441250,1.164180159568787,L, + 203988864500,1.149984359741211,L, + 205913287750,1.136265873908997,L, + 207837711000,1.123131990432739,L, + 209762134250,1.110672712326050,L, + 211686557500,1.098960995674133,L, + 213610980750,1.088053584098816,L, + 215535404000,1.077992081642151,L, + 217459827250,1.068804621696472,L, + 219384250500,1.060508370399475,L, + 221308673750,1.053110361099243,L, + 223233097000,1.046236395835876,L, + 225157520250,1.039541721343994,L, + 227081943500,1.033076763153076,L, + 229006366750,1.026898622512817,L, + 230930790000,1.021069526672363,L, + 232855213250,1.015653371810913,L, + 234779636500,1.010710358619690,L, + 236704059750,1.006291985511780,L, + 238628483000,1.002433657646179,L, + 240552906250,0.999151527881622,L, + 242477329500,0.996440768241882,L, + 244401752750,0.994277119636536,L, + 246326176000,0.992621421813965,L, + 248250599250,0.991424739360809,L, + 250175022500,0.990634024143219,L, + 252099445750,0.990196049213409,L, + 254023869000,0.990060448646545,L, + 255948292250,0.992901802062988,L, + 257872715500,1.001492142677307,L, + 259797138750,1.015825748443604,L, + 261721562000,1.035714149475098,L, + 263645985250,1.060734510421753,L, + 265570408500,1.090187549591064,L, + 267494831750,1.123083829879761,L, + 269419255000,1.158170461654663,L, + 271343678250,1.194009661674500,L, + 273268101500,1.229096412658691,L, + 275192524750,1.261992454528809,L, + 277116948000,1.291445493698120,L, + 279041371250,1.316465854644775,L, + 280965794500,1.336354255676270,L, + 282890217750,1.350687980651855,L, + 284814641000,1.359278321266174,L, + 286739064250,1.362119555473328,L, + 288663487500,1.356669902801514,L, + 290587910750,1.340123295783997,L, + 292512334000,1.312879800796509,L, + 294436757250,1.276628971099854,L, + 296361180500,1.234558701515198,L, + 298285603750,1.190976262092590,L, + 300210027000,1.150340914726257,L, + 302134450250,1.116236209869385,L, + 304058873500,1.090859174728394,L, + 305983296750,1.075105905532837,L, + 307907720000,1.064484238624573,L, + 309832143250,1.054439902305603,L, + 311756566500,1.045029997825623,L, + 313680989750,1.036310434341431,L, + 315605413000,1.028334379196167,L, + 317529836250,1.021147489547729,L, + 319454259500,1.014782786369324,L, + 321378682750,1.009258031845093,L, + 323303106000,1.004569411277771,L, + 325227529250,1.000691056251526,L, + 327151952500,0.997573912143707,L, + 329076375750,0.995148897171021,L, + 331000799000,0.993331670761108,L, + 332925222250,0.992029130458832,L, + 334849645500,0.991145491600037,L, + 336774068750,0.990588068962097,L, + 338698492000,0.990271568298340,L, + 340622915250,0.990119636058807,L, + 342547338500,0.990067481994629,L, + 344471761750,0.990060448646545,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_082" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792893409729 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.016792893409729,L, + 3848846500,0.016548514366150,L, + 5773269750,0.016426086425781,L, + 7697693000,0.016303777694702,L, + 13470962750,0.015937209129333,L, + 15395386000,0.015814781188965,L, + 17319809250,0.015692710876465,L, + 19244232500,0.015570521354675,L, + 21168655750,0.015448212623596,L, + 23093079000,0.015325784683228,L, + 30790772000,0.014837026596069,L, + 32715195250,0.014714598655701,L, + 34639618500,0.014592289924622,L, + 40412888250,0.014225721359253,L, + 42337311500,0.014103293418884,L, + 46186158000,0.013858914375305,L, + 50035004500,0.013614296913147,L, + 57732697500,0.013125538825989,L, + 59657120750,0.013003110885620,L, + 61581544000,0.012880921363831,L, + 63505967250,0.012758612632751,L, + 65430390500,0.012636423110962,L, + 67354813750,0.012513995170593,L, + 75052506750,0.012025237083435,L, + 76976930000,0.011902689933777,L, + 82750199750,0.011536121368408,L, + 84674623000,0.011414051055908,L, + 86599046250,0.011291623115540,L, + 88523469500,0.011169433593750,L, + 90447892750,0.011047124862671,L, + 92372316000,0.010924935340881,L, + 94296739250,0.010802507400513,L, + 96221162500,0.010680317878723,L, + 100070009000,-0.007775187492371,L, + 101994432250,-0.017002701759338,L, + 107767702000,-0.044685959815979,L, + 109692125250,-0.053913474082947,L, + 115465395000,-0.081596732139587,L, + 119314241500,-0.100051999092102,L, + 121238664750,-0.109279751777649,L, + 123163088000,-0.118507742881775,L, + 125087511250,-0.127735376358032,L, + 127011934500,-0.136963129043579,L, + 128936357750,-0.132229089736938,L, + 132785204250,-0.122761249542236,L, + 134709627500,-0.118027091026306,L, + 136634050750,-0.113293051719666,L, + 140482897250,-0.103825211524963,L, + 144331743750,-0.094357132911682,L, + 146256167000,-0.089622974395752,L, + 150105013500,-0.080155134201050,L, + 152029436750,-0.075421094894409,L, + 155878283250,-0.065953254699707,L, + 157802706500,-0.061219096183777,L, + 159727129750,-0.056485056877136,L, + 165500399500,-0.042283296585083,L, + 169349246000,-0.032814979553223,L, + 173198092500,-0.023347139358521,L, + 175122515750,-0.018613100051880,L, + 178971362250,-0.009145259857178,L, + 180895785500,-0.004411101341248,L, + 182820208750,0.000322937965393,L, + 184744632000,0.005056858062744,L, + 186669055250,0.004832744598389,L, + 188593478500,0.004608750343323,L, + 190517901750,0.004385113716125,L, + 194366748250,0.003937363624573,L, + 196291171500,0.003713607788086,L, + 198215594750,0.003489732742310,L, + 200140018000,0.003265738487244,L, + 202064441250,0.003041625022888,L, + 203988864500,0.002817988395691,L, + 205913287750,0.002594113349915,L, + 207837711000,0.002370119094849,L, + 209762134250,0.002146482467651,L, + 211686557500,0.001922488212585,L, + 215535404000,0.001474976539612,L, + 217459827250,0.001250863075256,L, + 219384250500,0.001026868820190,L, + 221308673750,0.000803232192993,L, + 223233097000,0.000579237937927,L, + 227081943500,0.000131726264954,L, + 230930790000,-0.000316023826599,L, + 232855213250,-0.000540256500244,L, + 234779636500,-0.000763893127441,L, + 238628483000,-0.001211643218994,L, + 240552906250,-0.001435399055481,L, + 244401752750,-0.001883149147034,L, + 246326176000,-0.002106785774231,L, + 248250599250,-0.002331018447876,L, + 250175022500,-0.002554893493652,L, + 252099445750,-0.002778887748718,L, + 254023869000,-0.003002524375916,L, + 257872715500,-0.003450274467468,L, + 259797138750,-0.003674030303955,L, + 261721562000,-0.003897905349731,L, + 263645985250,-0.004122138023376,L, + 267494831750,-0.004569649696350,L, + 269419255000,-0.004793524742126,L, + 271343678250,-0.005017518997192,L, + 273268101500,-0.005241155624390,L, + 277116948000,-0.005688905715942,L, + 279041371250,-0.005913138389587,L, + 280965794500,-0.006136775016785,L, + 282890217750,-0.006360769271851,L, + 284814641000,-0.006584644317627,L, + 286739064250,-0.006808280944824,L, + 288663487500,-0.007032155990601,L, + 290587910750,-0.007255911827087,L, + 292512334000,-0.007479786872864,L, + 294436757250,-0.007704019546509,L, + 298285603750,-0.008151531219482,L, + 300210027000,-0.008375406265259,L, + 302134450250,-0.008599400520325,L, + 304058873500,-0.008604407310486,L, + 305983296750,-0.007685899734497,L, + 307907720000,-0.006197571754456,L, + 309832143250,-0.004554986953735,L, + 311756566500,-0.002857804298401,L, + 313680989750,-0.001148581504822,L, + 315605413000,0.000547766685486,L, + 317529836250,0.002215504646301,L, + 319454259500,0.003842353820801,L, + 321378682750,0.005418658256531,L, + 323303106000,0.006934762001038,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039733886719,L, + 331000799000,0.012230634689331,L, + 332925222250,0.013316035270691,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015121459960938,L, + 338698492000,0.015811800956726,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016792893409729,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469803810120 + KeyVer: 4005 + KeyCount: 158 + Key: + 0,-0.000469803810120,L, + 1924423250,-0.003366291522980,L, + 3848846500,-0.006263256072998,L, + 5773269750,-0.009159684181213,L, + 7697693000,-0.012056171894073,L, + 9622116250,-0.014953076839447,L, + 11546539500,-0.017849564552307,L, + 13470962750,-0.020746529102325,L, + 15395386000,-0.023642480373383,L, + 19244232500,-0.029436290264130,L, + 21168655750,-0.032332777976990,L, + 23093079000,-0.035229206085205,L, + 25017502250,-0.038125693798065,L, + 26941925500,-0.041022658348083,L, + 28866348750,-0.043919086456299,L, + 30790772000,-0.046815991401672,L, + 32715195250,-0.049712538719177,L, + 34639618500,-0.052608966827393,L, + 36564041750,-0.055505871772766,L, + 38488465000,-0.058402419090271,L, + 40412888250,-0.061299324035645,L, + 42337311500,-0.064195752143860,L, + 44261734750,-0.067092299461365,L, + 46186158000,-0.069989204406738,L, + 51959427750,-0.078678488731384,L, + 53883851000,-0.081575512886047,L, + 55808274250,-0.084472417831421,L, + 59657120750,-0.090265274047852,L, + 61581544000,-0.093161821365356,L, + 63505967250,-0.096058726310730,L, + 65430390500,-0.098955154418945,L, + 67354813750,-0.101851701736450,L, + 69279237000,-0.104748606681824,L, + 71203660250,-0.107645034790039,L, + 73128083500,-0.110542058944702,L, + 76976930000,-0.116334915161133,L, + 78901353250,-0.119231462478638,L, + 82750199750,-0.125025272369385,L, + 88523469500,-0.133714556694031,L, + 90447892750,-0.136611580848694,L, + 92372316000,-0.139508485794067,L, + 94296739250,-0.142404437065125,L, + 96221162500,-0.145301461219788,L, + 98145585750,-0.144843220710754,L, + 100070009000,-0.144384503364563,L, + 101994432250,-0.143926143646240,L, + 103918855500,-0.143467903137207,L, + 105843278750,-0.143009781837463,L, + 107767702000,-0.142551541328430,L, + 109692125250,-0.142093181610107,L, + 113540971750,-0.141176700592041,L, + 115465395000,-0.140718579292297,L, + 117389818250,-0.140260219573975,L, + 119314241500,-0.139801502227783,L, + 121238664750,-0.139343261718750,L, + 123163088000,-0.138884544372559,L, + 127011934500,-0.137968063354492,L, + 128936357750,-0.137509584426880,L, + 130860781000,-0.137051582336426,L, + 134709627500,-0.136134624481201,L, + 136634050750,-0.135676622390747,L, + 138558474000,-0.135218143463135,L, + 140482897250,-0.134760141372681,L, + 142407320500,-0.134301543235779,L, + 144331743750,-0.133843064308167,L, + 146256167000,-0.133385062217712,L, + 150105013500,-0.132468104362488,L, + 152029436750,-0.132010102272034,L, + 155878283250,-0.131093144416809,L, + 157802706500,-0.130635142326355,L, + 159727129750,-0.130176663398743,L, + 161651553000,-0.129718661308289,L, + 165500399500,-0.128801703453064,L, + 167424822750,-0.128343582153320,L, + 171273669250,-0.127426624298096,L, + 173198092500,-0.126968622207642,L, + 175122515750,-0.126510143280029,L, + 177046939000,-0.126052141189575,L, + 180895785500,-0.125135183334351,L, + 182820208750,-0.124677181243896,L, + 184744632000,-0.124218702316284,L, + 186669055250,-0.123339772224426,L, + 188593478500,-0.122461795806885,L, + 190517901750,-0.121583223342896,L, + 192442325000,-0.120705366134644,L, + 194366748250,-0.119826793670654,L, + 196291171500,-0.118948340415955,L, + 198215594750,-0.118070363998413,L, + 200140018000,-0.117191910743713,L, + 202064441250,-0.116312980651855,L, + 203988864500,-0.115435004234314,L, + 205913287750,-0.114556431770325,L, + 207837711000,-0.113678455352783,L, + 211686557500,-0.111921548843384,L, + 213610980750,-0.111043572425842,L, + 219384250500,-0.108408212661743,L, + 221308673750,-0.107529640197754,L, + 223233097000,-0.106651663780212,L, + 225157520250,-0.105773210525513,L, + 227081943500,-0.104895234107971,L, + 229006366750,-0.104016780853271,L, + 230930790000,-0.103138208389282,L, + 232855213250,-0.102259755134583,L, + 234779636500,-0.101381421089172,L, + 236704059750,-0.100503325462341,L, + 240552906250,-0.098746418952942,L, + 242477329500,-0.097868323326111,L, + 244401752750,-0.096989989280701,L, + 246326176000,-0.096111893653870,L, + 248250599250,-0.095232963562012,L, + 250175022500,-0.094354510307312,L, + 252099445750,-0.093476533889771,L, + 255948292250,-0.091719627380371,L, + 257872715500,-0.090841531753540,L, + 259797138750,-0.089963197708130,L, + 261721562000,-0.089085102081299,L, + 263645985250,-0.088206171989441,L, + 265570408500,-0.087327718734741,L, + 267494831750,-0.086449742317200,L, + 269419255000,-0.085571289062500,L, + 271343678250,-0.084693312644958,L, + 273268101500,-0.083814740180969,L, + 275192524750,-0.082936406135559,L, + 277116948000,-0.082058310508728,L, + 279041371250,-0.081179380416870,L, + 280965794500,-0.080300927162170,L, + 282890217750,-0.079422950744629,L, + 284814641000,-0.078544497489929,L, + 286739064250,-0.077666521072388,L, + 288663487500,-0.076787948608398,L, + 290587910750,-0.075909614562988,L, + 292512334000,-0.075031518936157,L, + 294436757250,-0.074152588844299,L, + 296361180500,-0.073274612426758,L, + 300210027000,-0.071517705917358,L, + 302134450250,-0.070639729499817,L, + 304058873500,-0.070653557777405,L, + 305983296750,-0.068114876747131,L, + 307907720000,-0.064001798629761,L, + 309832143250,-0.059463858604431,L, + 311756566500,-0.054773211479187,L, + 313680989750,-0.050050258636475,L, + 315605413000,-0.045361638069153,L, + 317529836250,-0.040753126144409,L, + 319454259500,-0.036257505416870,L, + 321378682750,-0.031902551651001,L, + 323303106000,-0.027712464332581,L, + 325227529250,-0.023710608482361,L, + 327151952500,-0.019921123981476,L, + 329076375750,-0.016367852687836,L, + 331000799000,-0.013077139854431,L, + 332925222250,-0.010077834129333,L, + 334849645500,-0.007402956485748,L, + 336774068750,-0.005088865756989,L, + 338698492000,-0.003180682659149,L, + 340622915250,-0.001729965209961,L, + 342547338500,-0.000800490379333,L, + 344471761750,-0.000469803810120,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 110 + Key: + 0,0.062097311019897,L, + 1924423250,0.070350885391235,L, + 3848846500,0.078604221343994,L, + 7697693000,0.095111370086670,L, + 9622116250,0.103365182876587,L, + 11546539500,0.111618757247925,L, + 13470962750,0.119872093200684,L, + 15395386000,0.128125667572021,L, + 17319809250,0.136379480361938,L, + 21168655750,0.152886629104614,L, + 23093079000,0.161139965057373,L, + 25017502250,0.169393777847290,L, + 38488465000,0.227168798446655,L, + 40412888250,0.235422611236572,L, + 42337311500,0.243675947189331,L, + 46186158000,0.260183095932007,L, + 48110581250,0.268436908721924,L, + 50035004500,0.276690483093262,L, + 51959427750,0.284943819046021,L, + 53883851000,0.293197393417358,L, + 55808274250,0.301451206207275,L, + 59657120750,0.317958354949951,L, + 61581544000,0.326211690902710,L, + 63505967250,0.334465265274048,L, + 65430390500,0.342719078063965,L, + 69279237000,0.359226226806641,L, + 71203660250,0.367479562759399,L, + 73128083500,0.375733375549316,L, + 76976930000,0.392240524291992,L, + 78901353250,0.400494337081909,L, + 80825776500,0.408747673034668,L, + 84674623000,0.425254821777344,L, + 86599046250,0.433508634567261,L, + 88523469500,0.441762208938599,L, + 90447892750,0.450015544891357,L, + 94296739250,0.466522693634033,L, + 96221162500,0.474776506423950,L, + 101994432250,0.485375165939331,L, + 103918855500,0.488908290863037,L, + 111616548500,0.503039836883545,L, + 113540971750,0.506572961807251,L, + 121238664750,0.520704507827759,L, + 123163088000,0.524237632751465,L, + 127011934500,0.531303405761719,L, + 132785204250,0.534680843353271,L, + 134709627500,0.535806417465210,L, + 146256167000,0.542561292648315,L, + 148180590250,0.543686628341675,L, + 155878283250,0.548189878463745,L, + 157802706500,0.549315452575684,L, + 165500399500,0.553818702697754,L, + 167424822750,0.554944276809692,L, + 178971362250,0.561699151992798,L, + 180895785500,0.562824487686157,L, + 184744632000,0.565076112747192,L, + 188593478500,0.584237813949585,L, + 190517901750,0.593818902969360,L, + 194366748250,0.612980604171753,L, + 196291171500,0.622561693191528,L, + 203988864500,0.660885095596313,L, + 205913287750,0.670466423034668,L, + 207837711000,0.680047035217285,L, + 209762134250,0.689627885818481,L, + 211686557500,0.699209213256836,L, + 219384250500,0.737532615661621,L, + 221308673750,0.747113704681396,L, + 225157520250,0.766275405883789,L, + 227081943500,0.775856494903564,L, + 234779636500,0.814179897308350,L, + 236704059750,0.823760986328125,L, + 242477329500,0.852503538131714,L, + 244401752750,0.862084627151489,L, + 250175022500,0.890827178955078,L, + 252099445750,0.900408267974854,L, + 255948292250,0.919569969177246,L, + 257872715500,0.929151058197021,L, + 265570408500,0.967474460601807,L, + 267494831750,0.977055549621582,L, + 271343678250,0.996217250823975,L, + 273268101500,1.005798339843750,L, + 280965794500,1.044121742248535,L, + 282890217750,1.053702831268311,L, + 288663487500,1.082445383071899,L, + 290587910750,1.092026710510254,L, + 292512334000,1.101607322692871,L, + 298285603750,1.130349874496460,L, + 300210027000,1.139931201934814,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753572463989,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584243774414,L, + 315605413000,0.052578210830688,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972669601440,L, + 329076375750,0.058726072311401,L, + 331000799000,0.059423685073853,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836670356709249,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346630438327260,L, + 38488465000,61.856583689756100,L, + 42337311500,60.366550601563283,L, + 46186158000,58.876503852992116,L, + 48110581250,58.131487308895707,L, + 50035004500,57.386463934610127,L, + 51959427750,56.641443975419136,L, + 53883851000,55.896420601133549,L, + 57732697500,54.406380682751561,L, + 61581544000,52.916347594558744,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426300845987583,L, + 67354813750,50.681287716985757,L, + 69279237000,49.936260927605588,L, + 71203660250,49.191237553320008,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701204465127191,L, + 76976930000,46.956184505936193,L, + 78901353250,46.211161131650613,L, + 80825776500,45.466144587554204,L, + 82750199750,44.721124628363206,L, + 84674623000,43.976097838983044,L, + 86599046250,43.231084709981218,L, + 88523469500,42.486064750790220,L, + 90447892750,41.741034546315468,L, + 92372316000,40.996024832408231,L, + 94296739250,40.250998043028062,L, + 98145585750,38.760964954835245,L, + 101994432250,37.270918206264085,L, + 103918855500,36.525905077262259,L, + 109692125250,34.290834954405518,L, + 111616548500,33.545821825403692,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055778491927114,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565735158450540,L, + 121238664750,29.820718614354128,L, + 123163088000,29.075698655163134,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585653614139265,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350592029018987,L, + 134709627500,24.605578900017161,L, + 138558474000,23.115532151446001,L, + 140482897250,22.370513899802297,L, + 142407320500,21.625492233064008,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135454022229311,L, + 148180590250,19.390435770585608,L, + 150105013500,18.645410688752737,L, + 153953860000,17.155370770370745,L, + 155878283250,16.410354226274336,L, + 157802706500,15.665332559536047,L, + 159727129750,14.920312600345051,L, + 163575976250,13.430270974415768,L, + 167424822750,11.940231056033777,L, + 169349246000,11.195209389295490,L, + 171273669250,10.450189430104494,L, + 173198092500,9.705167763366205,L, + 175122515750,8.960149511722504,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725087926602225,L, + 182820208750,5.980067967411229,L, + 184744632000,5.235048435107057,L, + 186669055250,6.407538771710448,L, + 188593478500,7.580028681427016,L, + 190517901750,8.752519444917230,L, + 192442325000,9.925011062181090,L, + 194366748250,11.097500118124012,L, + 196291171500,12.269991735387872,L, + 198215594750,13.442484206425380,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787468294726747,L, + 203988864500,16.959959058216960,L, + 205913287750,18.132446406612591,L, + 207837711000,19.304938877650098,L, + 209762134250,20.477429641140311,L, + 211686557500,21.649915281988648,L, + 213610980750,22.822412875668032,L, + 215535404000,23.994900224063660,L, + 217459827250,25.167394402648462,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512372514534302,L, + 223233097000,28.684868400666396,L, + 225157520250,29.857355749062023,L, + 227081943500,31.029853342741408,L, + 229006366750,32.202333860947867,L, + 230930790000,33.374831454627255,L, + 234779636500,35.719812981607681,L, + 236704059750,36.892300330003309,L, + 238628483000,38.064794508588108,L, + 240552906250,39.237281856983742,L, + 242477329500,40.409772620473952,L, + 244401752750,41.582266799058750,L, + 246326176000,42.754757562548967,L, + 248250599250,43.927244910944594,L, + 252099445750,46.272233268114192,L, + 254023869000,47.444717201415237,L, + 255948292250,48.617211380000036,L, + 257872715500,49.789698728395663,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134683670470679,L, + 275192524750,60.342119014902181,L, + 277116948000,61.514602948203226,L, + 279041371250,62.687100541882607,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466888911217140 + KeyVer: 4005 + KeyCount: 140 + Key: + 0,39.466888911217140,L, + 1924423250,39.898737866774333,L, + 3848846500,40.330593652520690,L, + 5773269750,40.762442608077883,L, + 11546539500,42.057999720033209,L, + 13470962750,42.489848675590402,L, + 15395386000,42.921704461336766,L, + 17319809250,43.353556831988541,L, + 19244232500,43.785412617734899,L, + 21168655750,44.217254743102920,L, + 25017502250,45.080966314595642,L, + 30790772000,46.376523426550968,L, + 32715195250,46.808368967013571,L, + 36564041750,47.672073708317129,L, + 38488465000,48.103929494063486,L, + 40412888250,48.535781864715261,L, + 42337311500,48.967630820272454,L, + 44261734750,49.399486606018812,L, + 46186158000,49.831335561576005,L, + 51959427750,51.126892673531330,L, + 53883851000,51.558741629088523,L, + 57732697500,52.422453200581245,L, + 59657120750,52.854298741043849,L, + 61581544000,53.286154526790213,L, + 63505967250,53.718003482347399,L, + 65430390500,54.149862683188346,L, + 67354813750,54.581708223650949,L, + 71203660250,55.445412964954507,L, + 73128083500,55.877268750700864,L, + 75052506750,56.309114291163468,L, + 76976930000,56.740966661815243,L, + 78901353250,57.172822447561607,L, + 80825776500,57.604667988024211,L, + 82750199750,58.036520358675986,L, + 84674623000,58.468379559516933,L, + 86599046250,58.900231930168708,L, + 88523469500,59.332077470631312,L, + 98145585750,61.491339323890195,L, + 100070009000,61.923198524731141,L, + 101994432250,62.355044065193745,L, + 107767702000,63.650601177149071,L, + 109692125250,64.082460377990017,L, + 113540971750,64.946151458915224,L, + 115465395000,65.378003829567007,L, + 117389818250,65.809863030407953,L, + 119314241500,66.241708570870557,L, + 121238664750,66.673560941522325,L, + 123163088000,67.105420142363272,L, + 125087511250,67.537265682825890,L, + 127011934500,67.969118053477658,L, + 128936357750,68.400970424129440,L, + 130860781000,68.832829624970387,L, + 132785204250,69.264675165432990,L, + 138558474000,70.560232277388309,L, + 140482897250,70.992091478229256,L, + 142407320500,71.423937018691859,L, + 144331743750,71.855789389343641,L, + 146256167000,72.287648590184588,L, + 148180590250,72.719494130647192,L, + 150105013500,73.151346501298974,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 163575976250,76.174306265672229,L, + 165500399500,76.606165466513175,L, + 167424822750,77.038011006975779,L, + 169349246000,77.469863377627561,L, + 175122515750,78.765420489582880,L, + 177046939000,79.197279690423827,L, + 178971362250,79.629125230886430,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 190517901750,78.885782083136675,L, + 192442325000,78.206144109775536,L, + 194366748250,77.526499306225219,L, + 196291171500,76.846868163053244,L, + 198215594750,76.167230189692106,L, + 200140018000,75.487599046520131,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769053983264740,L, + 209762134250,72.089416009903587,L, + 213610980750,70.730140063181310,L, + 215535404000,70.050508920009335,L, + 217459827250,69.370870946648196,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 227081943500,65.972687910031652,L, + 229006366750,65.293063597048842,L, + 230930790000,64.613418793498539,L, + 234779636500,63.254156507154590,L, + 236704059750,62.574511703604280,L, + 238628483000,61.894873730243134,L, + 240552906250,61.215242587071167,L, + 242477329500,60.535597783520849,L, + 244401752750,59.855966640348882,L, + 246326176000,59.176328666987736,L, + 248250599250,58.496697523815769,L, + 250175022500,57.817059550454623,L, + 254023869000,56.457790433921510,L, + 255948292250,55.778149045465781,L, + 257872715500,55.098517902293807,L, + 259797138750,54.418879928932668,L, + 261721562000,53.739238540476940,L, + 263645985250,53.059610812399555,L, + 265570408500,52.379972839038409,L, + 267494831750,51.700341695866442,L, + 269419255000,51.020703722505296,L, + 271343678250,50.341058918954985,L, + 273268101500,49.661427775783011,L, + 275192524750,48.981789802421872,L, + 277116948000,48.302158659249898,L, + 279041371250,47.622517270794170,L, + 280965794500,46.942886127622195,L, + 282890217750,46.263241324071885,L, + 284814641000,45.583610180899910,L, + 286739064250,44.903975622633354,L, + 288663487500,44.224344479461386,L, + 290587910750,43.544703091005658,L, + 294436757250,42.185433974472538,L, + 296361180500,41.505792586016817,L, + 302134450250,39.466888911217140,L, + 307907720000,39.466888911217140,L, + 309832143250,39.466885496122558,L, + 311756566500,39.466888911217140,L, + 313680989750,39.466888911217140,L, + 315605413000,39.466885496122558,L, + 317529836250,39.466888911217140,L, + 319454259500,39.466888911217140,L, + 321378682750,39.466885496122558,L, + 323303106000,39.466892326311729,L, + 325227529250,39.466888911217140,L, + 327151952500,39.466888911217140,L, + 329076375750,39.466892326311729,L, + 331000799000,39.466888911217140,L, + 332925222250,39.466892326311729,L, + 334849645500,39.466885496122558,L, + 336774068750,39.466888911217140,L, + 338698492000,39.466885496122558,L, + 340622915250,39.466892326311729,L, + 342547338500,39.466885496122558,L, + 344471761750,39.466888911217140,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 143 + Key: + 0,0.999999940395355,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002107977867126,L, + 5773269750,1.003162145614624,L, + 9622116250,1.005270242691040,L, + 11546539500,1.006324172019958,L, + 13470962750,1.007378339767456,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567526817322,L, + 57732697500,1.031621456146240,L, + 59657120750,1.032675623893738,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945747375488,L, + 71203660250,1.038999915122986,L, + 73128083500,1.040053844451904,L, + 75052506750,1.041108012199402,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540281295776,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756475448608,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061134815216064,L, + 113540971750,1.062188982963562,L, + 117389818250,1.064297080039978,L, + 119314241500,1.065351009368896,L, + 121238664750,1.066405177116394,L, + 125087511250,1.068513274192810,L, + 127011934500,1.069567203521729,L, + 130860781000,1.071675300598145,L, + 132785204250,1.072729468345642,L, + 140482897250,1.076945662498474,L, + 142407320500,1.077999591827393,L, + 144331743750,1.079053759574890,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083269834518433,L, + 153953860000,1.084323883056641,L, + 155878283250,1.085378050804138,L, + 163575976250,1.089594244956970,L, + 165500399500,1.090648412704468,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918536186218,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557301521301,L, + 203988864500,0.946649432182312,L, + 207837711000,0.915741443634033,L, + 209762134250,0.900287568569183,L, + 213610980750,0.869379580020905,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109906673431,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748043060303,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024315834045,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 248250599250,0.591208577156067,L, + 250175022500,0.575754582881927,L, + 252099445750,0.560300648212433,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484879732132,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399348497391,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491419553757,L, + 282890217750,0.313037544488907,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129645347595,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951968550682,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544394969940,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978054046631,L, + 313680989750,0.354132473468781,L, + 315605413000,0.347257226705551,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285837650299,L, + 321378682750,0.341699957847595,L, + 323303106000,0.347291201353073,L, + 325227529250,0.357750505208969,L, + 327151952500,0.373822957277298,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293224096298,L, + 332925222250,0.464833468198776,L, + 334849645500,0.513409078121185,L, + 336774068750,0.573855221271515,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915834903717,L, + 342547338500,0.855605661869049,L, + 344471761750,0.999999940395355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002107977867126,L, + 9622116250,1.005270123481750,L, + 11546539500,1.006324410438538,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486317634583,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594414710999,L, + 26941925500,1.014756560325623,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023188948631287,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351213455200,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729553222656,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837769508362,L, + 67354813750,1.036891698837280,L, + 69279237000,1.037945866584778,L, + 73128083500,1.040053963661194,L, + 75052506750,1.041107892990112,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270038604736,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540519714355,L, + 92372316000,1.050594329833984,L, + 96221162500,1.052702426910400,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 105843278750,1.057972788810730,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061134815216064,L, + 113540971750,1.062188982963562,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783278465271,L, + 136634050750,1.074837565422058,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864606857300,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 211686557500,0.884833633899689,L, + 213610980750,0.869379520416260,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 223233097000,0.792109906673431,L, + 225157520250,0.776655912399292,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840114116669,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300648212433,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484879732132,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307277441025,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945354223251,L, + 282890217750,0.313037544488907,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129645347595,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221746206284,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951968550682,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544780254364,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839107513428,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525667667389,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690620422363,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073785305023,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999880790710 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.999999880790710,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 11546539500,1.006324172019958,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486317634583,L, + 19244232500,1.010540485382080,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297164916992,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567407608032,L, + 57732697500,1.031621575355530,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945866584778,L, + 71203660250,1.038999795913696,L, + 73128083500,1.040053963661194,L, + 75052506750,1.041107892990112,L, + 76976930000,1.042162060737610,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540281295776,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864572525024,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972788810730,L, + 107767702000,1.059026718139648,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513154983521,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 138558474000,1.075891613960266,L, + 140482897250,1.076945543289185,L, + 142407320500,1.077999591827393,L, + 144331743750,1.079053759574890,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083269834518433,L, + 153953860000,1.084323883056641,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 163575976250,1.089594244956970,L, + 165500399500,1.090648412704468,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756390571594,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 177046939000,1.096972584724426,L, + 178971362250,1.098026752471924,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070280909538269,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023918986320496,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011116981506,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649312973022,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833514690399,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563900947571,L, + 225157520250,0.776655912399292,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478310108185,L, + 240552906250,0.653024315834045,L, + 246326176000,0.606662511825562,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392719268799,L, + 257872715500,0.513938844203949,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669141054153,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399348497391,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221746206284,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544780254364,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418000221252,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766252517700,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380462646484,L, + 340622915250,0.991396188735962,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999880790710,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_081" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792893409729 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.016792893409729,L, + 1924423250,0.015352129936218,L, + 3848846500,0.013911128044128,L, + 9622116250,0.009588837623596,L, + 11546539500,0.008147835731506,L, + 13470962750,0.006706953048706,L, + 15395386000,0.005266189575195,L, + 17319809250,0.003824949264526,L, + 21168655750,0.000943422317505,L, + 23093079000,-0.000497579574585,L, + 26941925500,-0.003379106521606,L, + 28866348750,-0.004820108413696,L, + 30790772000,-0.006260871887207,L, + 36564041750,-0.010583519935608,L, + 38488465000,-0.012024164199829,L, + 44261734750,-0.016346812248230,L, + 46186158000,-0.017787456512451,L, + 48110581250,-0.019228816032410,L, + 51959427750,-0.022110342979431,L, + 53883851000,-0.023551344871521,L, + 57732697500,-0.026432871818542,L, + 59657120750,-0.027873873710632,L, + 65430390500,-0.032196164131165,L, + 67354813750,-0.033637285232544,L, + 69279237000,-0.035077929496765,L, + 71203660250,-0.036518812179565,L, + 73128083500,-0.037959933280945,L, + 76976930000,-0.040841221809387,L, + 78901353250,-0.042282581329346,L, + 80825776500,-0.043723225593567,L, + 82750199750,-0.045164108276367,L, + 84674623000,-0.046605110168457,L, + 88523469500,-0.049486637115479,L, + 90447892750,-0.050927639007568,L, + 96221162500,-0.055249929428101,L, + 98145585750,-0.056691050529480,L, + 100070009000,-0.058131694793701,L, + 101994432250,-0.059572577476501,L, + 103918855500,-0.061013698577881,L, + 105843278750,-0.062454581260681,L, + 107767702000,-0.063894987106323,L, + 109692125250,-0.065336346626282,L, + 111616548500,-0.066776990890503,L, + 113540971750,-0.068217873573303,L, + 115465395000,-0.069658875465393,L, + 119314241500,-0.072540402412415,L, + 121238664750,-0.073981404304504,L, + 125087511250,-0.076862931251526,L, + 128936357750,-0.079744696617126,L, + 130860781000,-0.081185460090637,L, + 132785204250,-0.082626342773438,L, + 134709627500,-0.084067583084106,L, + 136634050750,-0.085508346557617,L, + 138558474000,-0.086948990821838,L, + 140482897250,-0.088390111923218,L, + 144331743750,-0.091271638870239,L, + 150105013500,-0.095594286918640,L, + 152029436750,-0.097034931182861,L, + 153953860000,-0.098475933074951,L, + 155878283250,-0.099916696548462,L, + 161651553000,-0.104239344596863,L, + 163575976250,-0.105679988861084,L, + 165500399500,-0.107121348381042,L, + 169349246000,-0.110002875328064,L, + 171273669250,-0.111443877220154,L, + 175122515750,-0.114325404167175,L, + 177046939000,-0.115766406059265,L, + 178971362250,-0.117207169532776,L, + 180895785500,-0.118648052215576,L, + 182820208750,-0.120088696479797,L, + 184744632000,-0.121529817581177,L, + 186669055250,-0.119678378105164,L, + 188593478500,-0.117827057838440,L, + 190517901750,-0.115975856781006,L, + 192442325000,-0.114124417304993,L, + 194366748250,-0.112273097038269,L, + 196291171500,-0.110421657562256,L, + 198215594750,-0.108570694923401,L, + 203988864500,-0.103016376495361,L, + 205913287750,-0.101165413856506,L, + 209762134250,-0.097462534904480,L, + 211686557500,-0.095611333847046,L, + 213610980750,-0.093760013580322,L, + 215535404000,-0.091908812522888,L, + 217459827250,-0.090057253837585,L, + 219384250500,-0.088206052780151,L, + 221308673750,-0.086354613304138,L, + 223233097000,-0.084503293037415,L, + 225157520250,-0.082651853561401,L, + 227081943500,-0.080800890922546,L, + 232855213250,-0.075246572494507,L, + 234779636500,-0.073395609855652,L, + 238628483000,-0.069692730903625,L, + 240552906250,-0.067841529846191,L, + 242477329500,-0.065990209579468,L, + 244401752750,-0.064139008522034,L, + 246326176000,-0.062287449836731,L, + 248250599250,-0.060436248779297,L, + 250175022500,-0.058584809303284,L, + 252099445750,-0.056733489036560,L, + 255948292250,-0.053031086921692,L, + 261721562000,-0.047476768493652,L, + 263645985250,-0.045625805854797,L, + 269419255000,-0.040071487426758,L, + 271343678250,-0.038220643997192,L, + 273268101500,-0.036369204521179,L, + 275192524750,-0.034517645835876,L, + 277116948000,-0.032666444778442,L, + 279041371250,-0.030815005302429,L, + 280965794500,-0.028963685035706,L, + 284814641000,-0.025261282920837,L, + 286739064250,-0.023409843444824,L, + 288663487500,-0.021558523178101,L, + 290587910750,-0.019706964492798,L, + 292512334000,-0.017856001853943,L, + 296361180500,-0.014153122901917,L, + 298285603750,-0.012302160263062,L, + 300210027000,-0.010450839996338,L, + 302134450250,-0.008599400520325,L, + 304058873500,-0.008604407310486,L, + 305983296750,-0.007685899734497,L, + 307907720000,-0.006197571754456,L, + 309832143250,-0.004554986953735,L, + 311756566500,-0.002857804298401,L, + 313680989750,-0.001148581504822,L, + 315605413000,0.000547766685486,L, + 317529836250,0.002215504646301,L, + 319454259500,0.003842353820801,L, + 321378682750,0.005418658256531,L, + 323303106000,0.006934762001038,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039733886719,L, + 331000799000,0.012230634689331,L, + 332925222250,0.013316035270691,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015121459960938,L, + 338698492000,0.015811800956726,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016792893409729,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469803810120 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-0.000469803810120,L, + 1924423250,-0.000807881355286,L, + 3848846500,-0.001145064830780,L, + 5773269750,-0.001483142375946,L, + 7697693000,-0.001821339130402,L, + 9622116250,-0.002159357070923,L, + 11546539500,-0.002496600151062,L, + 13470962750,-0.002834737300873,L, + 15395386000,-0.003172814846039,L, + 17319809250,-0.003509998321533,L, + 19244232500,-0.003848075866699,L, + 21168655750,-0.004186213016510,L, + 23093079000,-0.004523813724518,L, + 25017502250,-0.004861474037170,L, + 26941925500,-0.005199551582336,L, + 28866348750,-0.005537211894989,L, + 30790772000,-0.005875289440155,L, + 32715195250,-0.006212949752808,L, + 34639618500,-0.006550550460815,L, + 36564041750,-0.006888747215271,L, + 38488465000,-0.007226705551147,L, + 40412888250,-0.007564425468445,L, + 42337311500,-0.007902026176453,L, + 44261734750,-0.008240222930908,L, + 46186158000,-0.008578300476074,L, + 48110581250,-0.008915424346924,L, + 50035004500,-0.009253501892090,L, + 51959427750,-0.009591698646545,L, + 53883851000,-0.009928822517395,L, + 57732697500,-0.010604977607727,L, + 59657120750,-0.010942697525024,L, + 61581544000,-0.011280298233032,L, + 65430390500,-0.011956453323364,L, + 67354813750,-0.012294173240662,L, + 69279237000,-0.012631773948669,L, + 71203660250,-0.012969851493835,L, + 73128083500,-0.013307452201843,L, + 75052506750,-0.013645648956299,L, + 78901353250,-0.014320850372314,L, + 80825776500,-0.014658927917480,L, + 82750199750,-0.014997124671936,L, + 84674623000,-0.015334248542786,L, + 88523469500,-0.016010403633118,L, + 90447892750,-0.016347646713257,L, + 96221162500,-0.017361879348755,L, + 98145585750,-0.017699122428894,L, + 100070009000,-0.018037199974060,L, + 101994432250,-0.018375396728516,L, + 103918855500,-0.018712878227234,L, + 105843278750,-0.019050598144531,L, + 107767702000,-0.019388675689697,L, + 109692125250,-0.019726395606995,L, + 111616548500,-0.020064473152161,L, + 115465395000,-0.020739674568176,L, + 117389818250,-0.021077871322632,L, + 119314241500,-0.021415948867798,L, + 121238664750,-0.021753072738647,L, + 123163088000,-0.022091150283813,L, + 125087511250,-0.022429347038269,L, + 128936357750,-0.023104548454285,L, + 130860781000,-0.023442625999451,L, + 132785204250,-0.023780822753906,L, + 134709627500,-0.024117946624756,L, + 138558474000,-0.024794101715088,L, + 140482897250,-0.025131821632385,L, + 142407320500,-0.025469422340393,L, + 144331743750,-0.025807499885559,L, + 146256167000,-0.026145100593567,L, + 148180590250,-0.026483297348022,L, + 150105013500,-0.026820898056030,L, + 152029436750,-0.027158975601196,L, + 153953860000,-0.027496576309204,L, + 155878283250,-0.027834296226501,L, + 157802706500,-0.028172492980957,L, + 159727129750,-0.028509974479675,L, + 161651553000,-0.028848171234131,L, + 163575976250,-0.029185771942139,L, + 165500399500,-0.029523491859436,L, + 169349246000,-0.030199646949768,L, + 171273669250,-0.030536770820618,L, + 173198092500,-0.030874967575073,L, + 175122515750,-0.031213045120239,L, + 178971362250,-0.031888246536255,L, + 180895785500,-0.032226443290710,L, + 182820208750,-0.032564520835876,L, + 184744632000,-0.032902121543884,L, + 186669055250,-0.033520698547363,L, + 188593478500,-0.034139633178711,L, + 190517901750,-0.034757733345032,L, + 192442325000,-0.035376787185669,L, + 194366748250,-0.035995244979858,L, + 196291171500,-0.036614298820496,L, + 198215594750,-0.037232398986816,L, + 200140018000,-0.037851452827454,L, + 202064441250,-0.038469910621643,L, + 203988864500,-0.039088964462280,L, + 205913287750,-0.039706945419312,L, + 207837711000,-0.040325522422791,L, + 209762134250,-0.040944576263428,L, + 211686557500,-0.041562676429749,L, + 213610980750,-0.042181611061096,L, + 215535404000,-0.042800188064575,L, + 217459827250,-0.043419122695923,L, + 219384250500,-0.044037222862244,L, + 221308673750,-0.044656276702881,L, + 223233097000,-0.045274853706360,L, + 225157520250,-0.045893788337708,L, + 227081943500,-0.046511888504028,L, + 229006366750,-0.047130942344666,L, + 230930790000,-0.047749519348145,L, + 232855213250,-0.048368453979492,L, + 234779636500,-0.048986554145813,L, + 236704059750,-0.049605488777161,L, + 242477329500,-0.051461219787598,L, + 244401752750,-0.052080154418945,L, + 246326176000,-0.052698612213135,L, + 250175022500,-0.053935766220093,L, + 252099445750,-0.054554820060730,L, + 254023869000,-0.055173397064209,L, + 255948292250,-0.055791854858398,L, + 257872715500,-0.056410431861877,L, + 259797138750,-0.057029485702515,L, + 261721562000,-0.057647943496704,L, + 263645985250,-0.058266520500183,L, + 265570408500,-0.058884978294373,L, + 267494831750,-0.059504032135010,L, + 273268101500,-0.061359763145447,L, + 275192524750,-0.061978697776794,L, + 277116948000,-0.062596678733826,L, + 279041371250,-0.063215732574463,L, + 280965794500,-0.063834309577942,L, + 282890217750,-0.064453363418579,L, + 284814641000,-0.065071344375610,L, + 286739064250,-0.065690398216248,L, + 288663487500,-0.066308975219727,L, + 290587910750,-0.066927909851074,L, + 292512334000,-0.067546010017395,L, + 294436757250,-0.068165063858032,L, + 296361180500,-0.068783521652222,L, + 300210027000,-0.070020675659180,L, + 302134450250,-0.070639729499817,L, + 304058873500,-0.070653557777405,L, + 305983296750,-0.068114876747131,L, + 307907720000,-0.064001798629761,L, + 309832143250,-0.059463858604431,L, + 311756566500,-0.054773211479187,L, + 313680989750,-0.050050258636475,L, + 315605413000,-0.045361638069153,L, + 317529836250,-0.040753126144409,L, + 319454259500,-0.036257505416870,L, + 321378682750,-0.031902551651001,L, + 323303106000,-0.027712464332581,L, + 325227529250,-0.023710608482361,L, + 327151952500,-0.019921123981476,L, + 329076375750,-0.016367852687836,L, + 331000799000,-0.013077139854431,L, + 332925222250,-0.010077834129333,L, + 334849645500,-0.007402956485748,L, + 336774068750,-0.005088865756989,L, + 338698492000,-0.003180682659149,L, + 340622915250,-0.001729965209961,L, + 342547338500,-0.000800490379333,L, + 344471761750,-0.000469803810120,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.062097311019897,L, + 1924423250,0.067336559295654,L, + 3848846500,0.072576045989990,L, + 5773269750,0.077815294265747,L, + 7697693000,0.083054780960083,L, + 9622116250,0.088294029235840,L, + 11546539500,0.093533515930176,L, + 13470962750,0.098772764205933,L, + 15395386000,0.104012250900269,L, + 21168655750,0.119729995727539,L, + 23093079000,0.124969482421875,L, + 25017502250,0.130208730697632,L, + 26941925500,0.135448217391968,L, + 28866348750,0.140687465667725,L, + 30790772000,0.145926952362061,L, + 32715195250,0.151166200637817,L, + 34639618500,0.156405687332153,L, + 36564041750,0.161644935607910,L, + 38488465000,0.166884422302246,L, + 40412888250,0.172123670578003,L, + 42337311500,0.177363157272339,L, + 44261734750,0.182602405548096,L, + 46186158000,0.187841892242432,L, + 48110581250,0.193081140518188,L, + 50035004500,0.198320627212524,L, + 51959427750,0.203559875488281,L, + 55808274250,0.214038848876953,L, + 57732697500,0.219278097152710,L, + 59657120750,0.224517583847046,L, + 61581544000,0.229756832122803,L, + 63505967250,0.234996318817139,L, + 65430390500,0.240235567092896,L, + 67354813750,0.245475053787231,L, + 69279237000,0.250714302062988,L, + 71203660250,0.255953788757324,L, + 73128083500,0.261193037033081,L, + 75052506750,0.266432523727417,L, + 76976930000,0.271671772003174,L, + 78901353250,0.276911258697510,L, + 80825776500,0.282150506973267,L, + 82750199750,0.287389993667603,L, + 88523469500,0.303107738494873,L, + 90447892750,0.308347225189209,L, + 92372316000,0.313586473464966,L, + 94296739250,0.318825960159302,L, + 96221162500,0.324065208435059,L, + 98145585750,0.329304695129395,L, + 100070009000,0.334543943405151,L, + 101994432250,0.339783430099487,L, + 103918855500,0.345022678375244,L, + 105843278750,0.350262165069580,L, + 107767702000,0.355501413345337,L, + 111616548500,0.365980386734009,L, + 113540971750,0.371219635009766,L, + 115465395000,0.376459121704102,L, + 117389818250,0.381698369979858,L, + 119314241500,0.386937856674194,L, + 121238664750,0.392177104949951,L, + 123163088000,0.397416591644287,L, + 125087511250,0.402655839920044,L, + 127011934500,0.407895326614380,L, + 128936357750,0.413134574890137,L, + 130860781000,0.418374061584473,L, + 132785204250,0.423613309860229,L, + 134709627500,0.428852796554565,L, + 136634050750,0.434092044830322,L, + 138558474000,0.439331531524658,L, + 140482897250,0.444570779800415,L, + 142407320500,0.449810266494751,L, + 144331743750,0.455049514770508,L, + 146256167000,0.460289001464844,L, + 148180590250,0.465528249740601,L, + 152029436750,0.476007223129272,L, + 153953860000,0.481246232986450,L, + 155878283250,0.486485958099365,L, + 157802706500,0.491724967956543,L, + 159727129750,0.496964693069458,L, + 161651553000,0.502203702926636,L, + 163575976250,0.507442951202393,L, + 165500399500,0.512682437896729,L, + 167424822750,0.517921686172485,L, + 171273669250,0.528400659561157,L, + 173198092500,0.533639907836914,L, + 175122515750,0.538879394531250,L, + 177046939000,0.544118642807007,L, + 178971362250,0.549358129501343,L, + 180895785500,0.554597377777100,L, + 182820208750,0.559836864471436,L, + 184744632000,0.565076112747192,L, + 188593478500,0.584237813949585,L, + 190517901750,0.593818902969360,L, + 194366748250,0.612980604171753,L, + 196291171500,0.622561693191528,L, + 203988864500,0.660885095596313,L, + 205913287750,0.670466423034668,L, + 207837711000,0.680047035217285,L, + 209762134250,0.689627885818481,L, + 211686557500,0.699209213256836,L, + 219384250500,0.737532615661621,L, + 221308673750,0.747113704681396,L, + 225157520250,0.766275405883789,L, + 227081943500,0.775856494903564,L, + 234779636500,0.814179897308350,L, + 236704059750,0.823760986328125,L, + 242477329500,0.852503538131714,L, + 244401752750,0.862084627151489,L, + 250175022500,0.890827178955078,L, + 252099445750,0.900408267974854,L, + 255948292250,0.919569969177246,L, + 257872715500,0.929151058197021,L, + 265570408500,0.967474460601807,L, + 267494831750,0.977055549621582,L, + 271343678250,0.996217250823975,L, + 273268101500,1.005798339843750,L, + 280965794500,1.044121742248535,L, + 282890217750,1.053702831268311,L, + 288663487500,1.082445383071899,L, + 290587910750,1.092026710510254,L, + 292512334000,1.101607322692871,L, + 298285603750,1.130349874496460,L, + 300210027000,1.139931201934814,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753572463989,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584243774414,L, + 315605413000,0.052578210830688,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972669601440,L, + 329076375750,0.058726072311401,L, + 331000799000,0.059423685073853,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 23093079000,67.816743363284061,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326703444902080,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836663526520084,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 38488465000,61.856590519945271,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 50035004500,57.386457104420955,L, + 51959427750,56.641443975419136,L, + 53883851000,55.896420601133549,L, + 55808274250,55.151400641942558,L, + 57732697500,54.406390928035314,L, + 59657120750,53.661364138655152,L, + 61581544000,52.916340764369572,L, + 65430390500,51.426307676176748,L, + 67354813750,50.681280886796586,L, + 69279237000,49.936267757794759,L, + 71203660250,49.191240968414597,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701204465127191,L, + 78901353250,46.211157716556031,L, + 80825776500,45.466137757365033,L, + 82750199750,44.721114383079453,L, + 84674623000,43.976097838983044,L, + 88523469500,42.486057920601048,L, + 90447892750,41.741031131220886,L, + 92372316000,40.996018002219060,L, + 94296739250,40.250998043028062,L, + 96221162500,39.505981498931654,L, + 98145585750,38.760954709551491,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270911376074913,L, + 103918855500,36.525898247073087,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035854913596509,L, + 111616548500,33.545814995214521,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055775076832532,L, + 119314241500,30.565735158450540,L, + 121238664750,29.820711784164960,L, + 123163088000,29.075695240068548,L, + 127011934500,27.585651906591973,L, + 128936357750,26.840633654948270,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350593736566278,L, + 136634050750,23.860550403089704,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370510484707712,L, + 142407320500,21.625492233064008,L, + 144331743750,20.880472273873014,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390428940396440,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900387314467157,L, + 153953860000,17.155372477918039,L, + 155878283250,16.410350811179750,L, + 157802706500,15.665327436894168,L, + 159727129750,14.920307477703174,L, + 161651553000,14.175290079833117,L, + 165500399500,12.685245038809249,L, + 167424822750,11.940228494712839,L, + 169349246000,11.195204266653612,L, + 171273669250,10.450191137651787,L, + 173198092500,9.705166909592560,L, + 175122515750,8.960148657948857,L, + 177046939000,8.215125283663276,L, + 178971362250,7.470108739566866,L, + 180895785500,6.725086219054932,L, + 182820208750,5.980061564108882,L, + 184744632000,5.235047581333411,L, + 186669055250,6.407538771710448,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752518591143584,L, + 192442325000,9.925011915954737,L, + 194366748250,11.097500971897659,L, + 196291171500,12.269994296708811,L, + 200140018000,14.614974116141948,L, + 202064441250,15.787466587179454,L, + 203988864500,16.959955643122377,L, + 205913287750,18.132449821707176,L, + 207837711000,19.304937170102804,L, + 209762134250,20.477426226045726,L, + 211686557500,21.649920404630524,L, + 213610980750,22.822411168120741,L, + 215535404000,23.994903639158245,L, + 217459827250,25.167390987553876,L, + 219384250500,26.339881751044089,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684864985571810,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202344106231621,L, + 230930790000,33.374834869721838,L, + 232855213250,34.547322218117465,L, + 236704059750,36.892303745097898,L, + 238628483000,38.064797923682697,L, + 240552906250,39.237285272078324,L, + 242477329500,40.409776035568541,L, + 244401752750,41.582270214153340,L, + 246326176000,42.754760977643549,L, + 250175022500,45.099735674434811,L, + 252099445750,46.272229853019610,L, + 255948292250,48.617211380000036,L, + 257872715500,49.789705558584835,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134680255376097,L, + 263645985250,53.307174433960895,L, + 265570408500,54.479665197451105,L, + 267494831750,55.652152545846739,L, + 269419255000,56.824646724431538,L, + 286739064250,67.377063595843467,L, + 288663487500,68.549561189522848,L, + 290587910750,69.722038292634721,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817949473515462 + KeyVer: 4005 + KeyCount: 154 + Key: + 0,-47.817949473515462,L, + 1924423250,-47.567626455529442,L, + 3848846500,-47.317310267732587,L, + 7697693000,-46.816671061949712,L, + 9622116250,-46.566358289247447,L, + 11546539500,-46.316035271261420,L, + 13470962750,-46.065715668369982,L, + 15395386000,-45.815402895667717,L, + 17319809250,-45.565079877681697,L, + 19244232500,-45.314767104979424,L, + 21168655750,-45.064447502087987,L, + 23093079000,-44.814124484101967,L, + 25017502250,-44.563804881210530,L, + 30790772000,-43.812856317819971,L, + 32715195250,-43.562533299833952,L, + 36564041750,-43.061894094051070,L, + 38488465000,-42.811577906254222,L, + 40412888250,-42.561258303362784,L, + 44261734750,-42.060625927769081,L, + 46186158000,-41.810302909783054,L, + 48110581250,-41.559983306891617,L, + 50035004500,-41.309667119094762,L, + 51959427750,-41.059347516203324,L, + 53883851000,-40.809024498217305,L, + 55808274250,-40.558718555704203,L, + 57732697500,-40.308395537718184,L, + 59657120750,-40.058075934826746,L, + 61581544000,-39.807752916840727,L, + 63505967250,-39.557440144138454,L, + 65430390500,-39.307120541247016,L, + 67354813750,-39.056797523260997,L, + 69279237000,-38.806481335464142,L, + 71203660250,-38.556161732572704,L, + 73128083500,-38.305845544775856,L, + 75052506750,-38.055525941884419,L, + 76976930000,-37.805209754087564,L, + 78901353250,-37.554886736101537,L, + 80825776500,-37.304573963399271,L, + 82750199750,-37.054250945413251,L, + 84674623000,-36.803934757616396,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802663176239818,L, + 94296739250,-35.552340158253791,L, + 96221162500,-35.302020555362354,L, + 98145585750,-35.051707782660088,L, + 100070009000,-34.801384764674069,L, + 103918855500,-34.300752389080358,L, + 105843278750,-34.050425955999756,L, + 107767702000,-33.800106353108312,L, + 109692125250,-33.549793580406046,L, + 111616548500,-33.299473977514609,L, + 113540971750,-33.049161204812343,L, + 115465395000,-32.798841601920905,L, + 117389818250,-32.548518583934879,L, + 119314241500,-32.298198981043441,L, + 121238664750,-32.047875963057422,L, + 123163088000,-31.797566605449738,L, + 127011934500,-31.296927399666863,L, + 128936357750,-31.046611211870012,L, + 130860781000,-30.796288193883989,L, + 132785204250,-30.545972006087137,L, + 134709627500,-30.295659233384868,L, + 136634050750,-30.045336215398844,L, + 140482897250,-29.544697009615970,L, + 142407320500,-29.294380821819118,L, + 146256167000,-28.793741616036243,L, + 148180590250,-28.543425428239388,L, + 150105013500,-28.293105825347951,L, + 152029436750,-28.042787930003808,L, + 153953860000,-27.792468327112370,L, + 157802706500,-27.291832536424078,L, + 159727129750,-27.041518056174517,L, + 161651553000,-26.791195038188498,L, + 163575976250,-26.540875435297057,L, + 165500399500,-26.290559247500205,L, + 169349246000,-25.789920041717330,L, + 171273669250,-25.539605561467770,L, + 173198092500,-25.289284251029041,L, + 175122515750,-25.038966355684895,L, + 178971362250,-24.538327149902020,L, + 180895785500,-24.288009254557874,L, + 182820208750,-24.037694774308314,L, + 184744632000,-23.787373463869585,L, + 186669055250,-24.181318284627842,L, + 188593478500,-24.575264812933394,L, + 192442325000,-25.363151039355330,L, + 194366748250,-25.757092445019005,L, + 196291171500,-26.151037265777262,L, + 198215594750,-26.544980378988232,L, + 202064441250,-27.332870020504750,L, + 203988864500,-27.726813133715716,L, + 205913287750,-28.120754539379391,L, + 207837711000,-28.514697652590357,L, + 209762134250,-28.908645888443203,L, + 211686557500,-29.302587294106875,L, + 213610980750,-29.696532114865136,L, + 215535404000,-30.090480350717979,L, + 217459827250,-30.484421756381654,L, + 219384250500,-30.878356331856160,L, + 221308673750,-31.272304567709003,L, + 223233097000,-31.666249388467264,L, + 225157520250,-32.060197624320104,L, + 229006366750,-32.848080435647454,L, + 230930790000,-33.242025256405718,L, + 232855213250,-33.635966662069393,L, + 234779636500,-34.029918313016822,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605687350766104,L, + 244401752750,-35.999628756429779,L, + 246326176000,-36.393576992282618,L, + 248250599250,-36.787518397946293,L, + 250175022500,-37.181470048893722,L, + 254023869000,-37.969352860221072,L, + 255948292250,-38.363297680979336,L, + 257872715500,-38.757235671548422,L, + 261721562000,-39.545125313064943,L, + 263645985250,-39.939073548917783,L, + 265570408500,-40.333018369676047,L, + 267494831750,-40.726959775339722,L, + 269419255000,-41.120897765908808,L, + 271343678250,-41.514846001761654,L, + 273268101500,-41.908783992330740,L, + 275192524750,-42.302735643278169,L, + 277116948000,-42.696677048941844,L, + 279041371250,-43.090621869700108,L, + 280965794500,-43.484570105552947,L, + 282890217750,-43.878508096122040,L, + 284814641000,-44.272452916880297,L, + 286739064250,-44.666394322543972,L, + 288663487500,-45.060345973491401,L, + 294436757250,-46.242170190482426,L, + 298285603750,-47.030059831998948,L, + 300210027000,-47.424001237662623,L, + 302134450250,-47.817949473515462,L, + 304058873500,-47.817949473515462,L, + 305983296750,-47.817952888610051,L, + 307907720000,-47.817952888610051,L, + 311756566500,-47.817946058420880,L, + 313680989750,-47.817949473515462,L, + 315605413000,-47.817949473515462,L, + 317529836250,-47.817946058420880,L, + 319454259500,-47.817949473515462,L, + 321378682750,-47.817949473515462,L, + 323303106000,-47.817952888610051,L, + 325227529250,-47.817952888610051,L, + 327151952500,-47.817949473515462,L, + 331000799000,-47.817949473515462,L, + 332925222250,-47.817952888610051,L, + 334849645500,-47.817949473515462,L, + 336774068750,-47.817949473515462,L, + 338698492000,-47.817946058420880,L, + 340622915250,-47.817952888610051,L, + 342547338500,-47.817942643326290,L, + 344471761750,-47.817949473515462,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887853459462164 + KeyVer: 4005 + KeyCount: 164 + Key: + 0,-21.887853459462164,L, + 1924423250,-21.455999381263094,L, + 3848846500,-21.024147010611319,L, + 5773269750,-20.592298055054130,L, + 7697693000,-20.160447391949646,L, + 11546539500,-19.296739235551509,L, + 13470962750,-18.864886864899734,L, + 15395386000,-18.433039616889836,L, + 17319809250,-18.001183831143475,L, + 19244232500,-17.569334875586282,L, + 21168655750,-17.137480797387216,L, + 23093079000,-16.705625011640855,L, + 25017502250,-16.273777763630957,L, + 26941925500,-15.841925392979180,L, + 28866348750,-15.410076437421990,L, + 30790772000,-14.978224066770213,L, + 32715195250,-14.546369988571145,L, + 34639618500,-14.114516764145723,L, + 36564041750,-13.682666101041240,L, + 38488465000,-13.250812022842172,L, + 40412888250,-12.818963921058627,L, + 42337311500,-12.387108989085913,L, + 44261734750,-11.955257472207784,L, + 46186158000,-11.523400832687777,L, + 48110581250,-11.091556999772463,L, + 50035004500,-10.659698652705163,L, + 51959427750,-10.227850550921620,L, + 55808274250,-9.364147517165360,L, + 57732697500,-8.932292585192647,L, + 59657120750,-8.500442775861810,L, + 61581544000,-8.068588697662742,L, + 63505967250,-7.636738888331904,L, + 65430390500,-7.204886517680128,L, + 67354813750,-6.773033293254707,L, + 69279237000,-6.341184337697515,L, + 71203660250,-5.909328978837978,L, + 73128083500,-5.477477035073026,L, + 76976930000,-4.613772293769475,L, + 78901353250,-4.181919496230876,L, + 80825776500,-3.750071394447331,L, + 82750199750,-3.318218383465320,L, + 84674623000,-2.886364091822841,L, + 86599046250,-2.454512361501300,L, + 88523469500,-2.022658496745643,L, + 90447892750,-1.590806339537279,L, + 92372316000,-1.158958878083969,L, + 94296739250,-0.727101758316286,L, + 96221162500,-0.295253469769756,L, + 98145585750,0.136597420118352,L, + 100070009000,0.568452205348721,L, + 101994432250,1.000307244043141,L, + 103918855500,1.432153424835981,L, + 105843278750,1.864007503035049,L, + 107767702000,2.295863715668233,L, + 109692125250,2.727711390564954,L, + 111616548500,3.159564614990376,L, + 113540971750,3.591413783990979,L, + 115465395000,4.023267862190047,L, + 117389818250,4.455116817747237,L, + 119314241500,4.886967907738544,L, + 121238664750,5.318824120371728,L, + 123163088000,5.750678198570796,L, + 125087511250,6.182528434788456,L, + 127011934500,6.614383793647994,L, + 128936357750,7.046234029865654,L, + 130860781000,7.478082985422844,L, + 132785204250,7.909931087206389,L, + 134709627500,8.341786019179104,L, + 138558474000,9.205492468029947,L, + 142407320500,10.069197209333499,L, + 144331743750,10.501047872437983,L, + 146256167000,10.932900243089758,L, + 148180590250,11.364750906194240,L, + 150105013500,11.796605838166956,L, + 152029436750,12.228456501271438,L, + 153953860000,12.660308018149568,L, + 155878283250,13.092165511443222,L, + 157802706500,13.524012759453120,L, + 159727129750,13.955865983878542,L, + 161651553000,14.387716646983025,L, + 163575976250,14.819570725182093,L, + 167424822750,15.683275466485645,L, + 169349246000,16.115126129590127,L, + 171273669250,16.546973377600025,L, + 173198092500,16.978829163346386,L, + 175122515750,17.410681533998162,L, + 177046939000,17.842535612197231,L, + 178971362250,18.274382860207130,L, + 184744632000,19.569939972162455,L, + 186669055250,18.890305413895899,L, + 188593478500,18.210672563176633,L, + 190517901750,17.531034589815491,L, + 198215594750,14.812489526560093,L, + 200140018000,14.132854114519889,L, + 202064441250,13.453216141158746,L, + 203988864500,12.773579021571251,L, + 205913287750,12.093942755757402,L, + 207837711000,11.414311612585429,L, + 209762134250,10.734673639224287,L, + 211686557500,10.055039080957728,L, + 213610980750,9.375399400049295,L, + 215535404000,8.695769110650968,L, + 217459827250,8.016131991063473,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656856471228011,L, + 225157520250,5.297583939600312,L, + 227081943500,4.617949808220577,L, + 229006366750,3.938314396180373,L, + 230930790000,3.258679197583582,L, + 232855213250,2.579039730118558,L, + 234779636500,1.899406239069059,L, + 236704059750,1.219767198490859,L, + 238628483000,0.540134614575859,L, + 240552906250,-0.139503265403791,L, + 242477329500,-0.819137863690988,L, + 244401752750,-1.498773382452897,L, + 246326176000,-2.178411782700863,L, + 248250599250,-2.858047194741066,L, + 250175022500,-3.537681966451035,L, + 252099445750,-4.217320366699001,L, + 254023869000,-4.896955351852381,L, + 255948292250,-5.576590763892584,L, + 257872715500,-6.256227029706434,L, + 259797138750,-6.935859453538876,L, + 261721562000,-7.615498707560487,L, + 263645985250,-8.295133265827046,L, + 265570408500,-8.974772946735479,L, + 267494831750,-9.654407505002037,L, + 269419255000,-10.334043770815887,L, + 271343678250,-11.013681744177029,L, + 275192524750,-12.372950860710143,L, + 277116948000,-13.052588834071285,L, + 279041371250,-13.732223392337843,L, + 280965794500,-14.411859658151693,L, + 282890217750,-15.091497631512835,L, + 284814641000,-15.771125359590222,L, + 286739064250,-16.450766748045950,L, + 288663487500,-17.130403013859798,L, + 290587910750,-17.810034157031772,L, + 292512334000,-18.489678960582083,L, + 294436757250,-19.169313518848639,L, + 298285603750,-20.528579220287170,L, + 300210027000,-21.208222316290190,L, + 302134450250,-21.887851751914869,L, + 304058873500,-21.887855167009455,L, + 305983296750,-21.887853459462164,L, + 307907720000,-21.887855167009455,L, + 309832143250,-21.887853459462164,L, + 311756566500,-21.887856874556746,L, + 313680989750,-21.887858582104041,L, + 315605413000,-21.887855167009455,L, + 317529836250,-21.887848336820284,L, + 319454259500,-21.887853459462164,L, + 323303106000,-21.887853459462164,L, + 325227529250,-21.887855167009455,L, + 327151952500,-21.887853459462164,L, + 329076375750,-21.887858582104041,L, + 331000799000,-21.887858582104041,L, + 334849645500,-21.887851751914869,L, + 336774068750,-21.887853459462164,L, + 338698492000,-21.887848336820284,L, + 340622915250,-21.887855167009455,L, + 342547338500,-21.887851751914869,L, + 344471761750,-21.887853459462164,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.999999940395355,L, + 1924423250,1.001053929328918,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432269096375,L, + 17319809250,1.009486436843872,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810608863831,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918825149536,L, + 34639618500,1.018972754478455,L, + 36564041750,1.020026922225952,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675504684448,L, + 61581544000,1.033729791641235,L, + 63505967250,1.034783720970154,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945747375488,L, + 71203660250,1.038999915122986,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270038604736,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378254890442,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756475448608,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918621063232,L, + 105843278750,1.057972788810730,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061134934425354,L, + 113540971750,1.062188863754272,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351009368896,L, + 121238664750,1.066405177116394,L, + 123163088000,1.067459106445312,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837684631348,L, + 140482897250,1.076945781707764,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053759574890,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081161856651306,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134730339050,L, + 184744632000,1.101188778877258,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373159408569,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011176586151,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195497512817,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379580020905,L, + 215535404000,0.853925585746765,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655852794647,L, + 227081943500,0.761201977729797,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662452220917,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030945062637,L, + 263645985250,0.467576920986176,L, + 265570408500,0.452122986316681,L, + 267494831750,0.436669081449509,L, + 269419255000,0.421215146780014,L, + 271343678250,0.405761152505875,L, + 273268101500,0.390307247638702,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583550214767,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767751932144,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951968550682,L, + 302134450250,0.158498048782349,L, + 304058873500,0.328915029764175,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308918714523,L, + 311756566500,0.361978054046631,L, + 313680989750,0.354132473468781,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285837650299,L, + 321378682750,0.341699957847595,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750505208969,L, + 327151952500,0.373822957277298,L, + 329076375750,0.396345824003220,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833438396454,L, + 334849645500,0.513409078121185,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915834903717,L, + 342547338500,0.855605721473694,L, + 344471761750,0.999999940395355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999880790710 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.999999880790710,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 5773269750,1.003162026405334,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594414710999,L, + 26941925500,1.014756560325623,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918705940247,L, + 34639618500,1.018972754478455,L, + 36564041750,1.020026922225952,L, + 38488465000,1.021080851554871,L, + 42337311500,1.023188948631287,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567407608032,L, + 59657120750,1.032675504684448,L, + 61581544000,1.033729672431946,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945747375488,L, + 71203660250,1.038999915122986,L, + 73128083500,1.040053963661194,L, + 75052506750,1.041107892990112,L, + 76976930000,1.042162060737610,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432184219360,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 96221162500,1.052702426910400,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 125087511250,1.068513274192810,L, + 127011934500,1.069567203521729,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783516883850,L, + 138558474000,1.075891613960266,L, + 140482897250,1.076945781707764,L, + 148180590250,1.081161975860596,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083269953727722,L, + 153953860000,1.084324121475220,L, + 155878283250,1.085378050804138,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864606857300,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 182820208750,1.100134968757629,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011236190796,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103307247162,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195378303528,L, + 207837711000,0.915741503238678,L, + 211686557500,0.884833633899689,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655912399292,L, + 227081943500,0.761202037334442,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024315834045,L, + 242477329500,0.637570440769196,L, + 246326176000,0.606662452220917,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938844203949,L, + 259797138750,0.498484879732132,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576920986176,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215146780014,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307277441025,L, + 277116948000,0.359399348497391,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129645347595,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951968550682,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544780254364,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839107513428,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525608062744,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690620422363,L, + 334849645500,0.951766252517700,L, + 336774068750,0.968073785305023,L, + 338698492000,0.981380522251129,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999880790710,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,1.000000000000000,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 5773269750,1.003162026405334,L, + 7697693000,1.004216194152832,L, + 9622116250,1.005270123481750,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378220558167,L, + 15395386000,1.008432269096375,L, + 17319809250,1.009486436843872,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594414710999,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702630996704,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 32715195250,1.017918825149536,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567407608032,L, + 57732697500,1.031621575355530,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270038604736,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864572525024,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972669601440,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 121238664750,1.066405177116394,L, + 123163088000,1.067459106445312,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783516883850,L, + 140482897250,1.076945662498474,L, + 142407320500,1.077999830245972,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081161856651306,L, + 150105013500,1.082216024398804,L, + 152029436750,1.083269953727722,L, + 169349246000,1.092756390571594,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918536186218,L, + 177046939000,1.096972703933716,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134730339050,L, + 184744632000,1.101188778877258,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373040199280,L, + 194366748250,1.023918986320496,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011236190796,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649372577667,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833574295044,L, + 213610980750,0.869379580020905,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471651077271,L, + 219384250500,0.823017776012421,L, + 223233097000,0.792109906673431,L, + 225157520250,0.776655852794647,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840054512024,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392719268799,L, + 257872715500,0.513938844203949,L, + 259797138750,0.498484909534454,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215146780014,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129615545273,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221716403961,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.406290769577026,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839226722717,L, + 321378682750,0.768024921417236,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032974720001,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766431331635,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_080" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 66 + Key: + 0,-0.063678026199341,L, + 207837711000,-0.063678026199341,L, + 209762134250,-0.063678145408630,L, + 211686557500,-0.063524961471558,L, + 213610980750,-0.063372015953064,L, + 215535404000,-0.063218832015991,L, + 217459827250,-0.063065528869629,L, + 221308673750,-0.062759399414062,L, + 223233097000,-0.062606215476990,L, + 225157520250,-0.062453389167786,L, + 227081943500,-0.062300086021423,L, + 229006366750,-0.062147021293640,L, + 230930790000,-0.061994075775146,L, + 232855213250,-0.061840891838074,L, + 234779636500,-0.061687469482422,L, + 236704059750,-0.061534881591797,L, + 238628483000,-0.061381340026855,L, + 240552906250,-0.061228275299072,L, + 242477329500,-0.061075091362000,L, + 246326176000,-0.060768961906433,L, + 248250599250,-0.060615777969360,L, + 250175022500,-0.060462951660156,L, + 252099445750,-0.060309410095215,L, + 254023869000,-0.060156345367432,L, + 255948292250,-0.060003399848938,L, + 259797138750,-0.059697031974792,L, + 261721562000,-0.059544205665588,L, + 263645985250,-0.059390902519226,L, + 265570408500,-0.059237837791443,L, + 267494831750,-0.059084892272949,L, + 269419255000,-0.058931827545166,L, + 271343678250,-0.058778285980225,L, + 273268101500,-0.058625459671021,L, + 279041371250,-0.058165907859802,L, + 280965794500,-0.058012962341309,L, + 282890217750,-0.057859778404236,L, + 284814641000,-0.058243513107300,L, + 286739064250,-0.058418750762939,L, + 288663487500,-0.058594346046448,L, + 290587910750,-0.058769464492798,L, + 294436757250,-0.059120178222656,L, + 296361180500,-0.059295415878296,L, + 298285603750,-0.059470534324646,L, + 300210027000,-0.059646010398865,L, + 302134450250,-0.059821248054504,L, + 304058873500,-0.059996724128723,L, + 305983296750,-0.060171842575073,L, + 307907720000,-0.060347437858582,L, + 309832143250,-0.060522675514221,L, + 311756566500,-0.060697793960571,L, + 313680989750,-0.060873389244080,L, + 317529836250,-0.061223626136780,L, + 319454259500,-0.061399102210999,L, + 321378682750,-0.061574220657349,L, + 323303106000,-0.061749815940857,L, + 325227529250,-0.061924934387207,L, + 327151952500,-0.062100172042847,L, + 329076375750,-0.062275767326355,L, + 331000799000,-0.062451004981995,L, + 332925222250,-0.062626361846924,L, + 334849645500,-0.062801599502563,L, + 336774068750,-0.062977075576782,L, + 338698492000,-0.063152194023132,L, + 340622915250,-0.063327431678772,L, + 342547338500,-0.063502788543701,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339758872986 + KeyVer: 4005 + KeyCount: 61 + Key: + 0,-0.087339758872986,L, + 207837711000,-0.087339758872986,L, + 209762134250,-0.167690634727478,L, + 211686557500,-0.165458798408508,L, + 213610980750,-0.163226485252380,L, + 215535404000,-0.160994648933411,L, + 217459827250,-0.158762931823730,L, + 219384250500,-0.156530499458313,L, + 221308673750,-0.154298782348633,L, + 223233097000,-0.152066826820374,L, + 225157520250,-0.149834632873535,L, + 234779636500,-0.138675451278687,L, + 236704059750,-0.136443138122559,L, + 242477329500,-0.129747629165649,L, + 244401752750,-0.127515316009521,L, + 248250599250,-0.123051643371582,L, + 250175022500,-0.120819330215454,L, + 254023869000,-0.116355657577515,L, + 255948292250,-0.114123344421387,L, + 257872715500,-0.111892104148865,L, + 259797138750,-0.109660148620605,L, + 261721562000,-0.107427954673767,L, + 263645985250,-0.105195999145508,L, + 265570408500,-0.102964282035828,L, + 267494831750,-0.100731849670410,L, + 269419255000,-0.098500132560730,L, + 271343678250,-0.096268296241760,L, + 273268101500,-0.094035983085632,L, + 279041371250,-0.087340474128723,L, + 280965794500,-0.085108160972595,L, + 282890217750,-0.082876801490784,L, + 284814641000,-0.082875847816467,L, + 286739064250,-0.083020210266113,L, + 288663487500,-0.083163619041443,L, + 290587910750,-0.083307385444641,L, + 292512334000,-0.083451867103577,L, + 294436757250,-0.083595633506775,L, + 296361180500,-0.083739638328552,L, + 298285603750,-0.083883881568909,L, + 300210027000,-0.084027886390686,L, + 302134450250,-0.084171652793884,L, + 304058873500,-0.084316134452820,L, + 305983296750,-0.084459900856018,L, + 311756566500,-0.084891557693481,L, + 313680989750,-0.085035920143127,L, + 315605413000,-0.085179805755615,L, + 317529836250,-0.085323572158813,L, + 319454259500,-0.085468053817749,L, + 321378682750,-0.085611820220947,L, + 323303106000,-0.085755825042725,L, + 325227529250,-0.085900068283081,L, + 327151952500,-0.086044073104858,L, + 329076375750,-0.086187362670898,L, + 331000799000,-0.086331844329834,L, + 332925222250,-0.086475610733032,L, + 334849645500,-0.086619496345520,L, + 336774068750,-0.086763858795166,L, + 338698492000,-0.086907744407654,L, + 340622915250,-0.087052106857300,L, + 342547338500,-0.087195992469788,L, + 344471761750,-0.087339758872986,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138483047485 + KeyVer: 4005 + KeyCount: 110 + Key: + 0,0.415138483047485,L, + 5773269750,0.433816671371460,L, + 7697693000,0.440042972564697,L, + 13470962750,0.458721160888672,L, + 15395386000,0.464947462081909,L, + 21168655750,0.483625650405884,L, + 23093079000,0.489851951599121,L, + 28866348750,0.508530139923096,L, + 30790772000,0.514756441116333,L, + 36564041750,0.533434629440308,L, + 38488465000,0.539660930633545,L, + 44261734750,0.558339118957520,L, + 46186158000,0.564565658569336,L, + 48110581250,0.570791721343994,L, + 50035004500,0.577017545700073,L, + 51959427750,0.583244085311890,L, + 59657120750,0.608148336410522,L, + 61581544000,0.614374637603760,L, + 65430390500,0.626826763153076,L, + 67354813750,0.633053064346313,L, + 75052506750,0.657957315444946,L, + 76976930000,0.664183616638184,L, + 80825776500,0.676635742187500,L, + 82750199750,0.682862043380737,L, + 90447892750,0.707766294479370,L, + 92372316000,0.713992595672607,L, + 96221162500,0.726444721221924,L, + 98145585750,0.732671260833740,L, + 105843278750,0.757575511932373,L, + 107767702000,0.763801813125610,L, + 111616548500,0.776253938674927,L, + 113540971750,0.782480239868164,L, + 119314241500,0.801158428192139,L, + 121238664750,0.807384729385376,L, + 127011934500,0.826062917709351,L, + 128936357750,0.832289218902588,L, + 132785204250,0.844741344451904,L, + 134709627500,0.850967645645142,L, + 136634050750,0.857193470001221,L, + 138558474000,0.863419771194458,L, + 142407320500,0.875871896743774,L, + 144331743750,0.882098436355591,L, + 148180590250,0.894550561904907,L, + 150105013500,0.900776386260986,L, + 152029436750,0.907002449035645,L, + 153953860000,0.913228988647461,L, + 157802706500,0.925681114196777,L, + 159727129750,0.931907415390015,L, + 167424822750,0.956811666488647,L, + 169349246000,0.963037967681885,L, + 173198092500,0.975490093231201,L, + 175122515750,0.981716394424438,L, + 178971362250,0.994168519973755,L, + 180895785500,1.000394821166992,L, + 186669055250,1.019073009490967,L, + 188593478500,1.025299549102783,L, + 190517901750,1.031525373458862,L, + 194366748250,1.043977499008179,L, + 196291171500,1.050204038619995,L, + 198215594750,1.056429624557495,L, + 200140018000,1.062656164169312,L, + 202064441250,1.068882465362549,L, + 203988864500,1.075108289718628,L, + 205913287750,1.081334590911865,L, + 207837711000,1.087560653686523,L, + 209762134250,-0.038915634155273,L, + 211686557500,-0.038899421691895,L, + 215535404000,-0.038866043090820,L, + 217459827250,-0.038849592208862,L, + 223233097000,-0.038799524307251,L, + 225157520250,-0.038783073425293,L, + 230930790000,-0.038733005523682,L, + 232855213250,-0.038716793060303,L, + 238628483000,-0.038666725158691,L, + 240552906250,-0.038650274276733,L, + 244401752750,-0.038616895675659,L, + 246326176000,-0.038600444793701,L, + 252099445750,-0.038550376892090,L, + 254023869000,-0.038534164428711,L, + 259797138750,-0.038484096527100,L, + 261721562000,-0.038467645645142,L, + 267494831750,-0.038417577743530,L, + 269419255000,-0.038401126861572,L, + 273268101500,-0.038367748260498,L, + 277116948000,-0.038334846496582,L, + 280965794500,-0.038301467895508,L, + 282890217750,-0.038285017013550,L, + 284814641000,0.028067827224731,L, + 286739064250,0.040554046630859,L, + 288663487500,0.053040504455566,L, + 292512334000,0.078012466430664,L, + 294436757250,0.090498685836792,L, + 296361180500,0.102984666824341,L, + 298285603750,0.115471124649048,L, + 300210027000,0.127957105636597,L, + 302134450250,0.140443325042725,L, + 305983296750,0.165415287017822,L, + 307907720000,0.177901744842529,L, + 309832143250,0.190387725830078,L, + 311756566500,0.202873945236206,L, + 313680989750,0.215359926223755,L, + 319454259500,0.252818584442139,L, + 323303106000,0.277790546417236,L, + 329076375750,0.315249204635620,L, + 331000799000,0.327735185623169,L, + 332925222250,0.340221405029297,L, + 334849645500,0.352707386016846,L, + 336774068750,0.365193843841553,L, + 338698492000,0.377679824829102,L, + 344471761750,0.415138483047485,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670459033899608 + KeyVer: 4005 + KeyCount: 156 + Key: + 0,30.670459033899608,L, + 3848846500,28.520001294480863,L, + 5773269750,27.444770717224198,L, + 7697693000,26.369541847514828,L, + 9622116250,25.294311270258163,L, + 11546539500,24.219084108096084,L, + 15395386000,22.068633198866507,L, + 17319809250,20.993399206515257,L, + 19244232500,19.918173751900472,L, + 23093079000,17.767716012481724,L, + 25017502250,16.692488850319645,L, + 26941925500,15.617256565515689,L, + 28866348750,14.542027695806317,L, + 30790772000,13.466801387417883,L, + 32715195250,12.391573371482156,L, + 34639618500,11.316346209320077,L, + 36564041750,10.241114778289765,L, + 38488465000,9.165886762354040,L, + 40412888250,8.090659600191959,L, + 42337311500,7.015429022935295,L, + 44261734750,5.940200580112745,L, + 46186158000,4.864973417950665,L, + 48110581250,3.789743694467647,L, + 51959427750,1.639286381935725,L, + 53883851000,0.564057458865500,L, + 55808274250,-0.511171357483020,L, + 59657120750,-2.661628883458353,L, + 61581544000,-3.736857539724314,L, + 63505967250,-4.812082567452278,L, + 65430390500,-5.887311864048474,L, + 67354813750,-6.962544148852431,L, + 69279237000,-8.037770884127688,L, + 71203660250,-9.112996338742475,L, + 73128083500,-10.188229477320078,L, + 75052506750,-11.263456639482159,L, + 76976930000,-12.338682094096946,L, + 78901353250,-13.413914378900904,L, + 80825776500,-14.489141541062983,L, + 82750199750,-15.564372118319648,L, + 86599046250,-17.714826442643808,L, + 88523469500,-18.790060434995059,L, + 90447892750,-19.865287597157138,L, + 92372316000,-20.940511344224632,L, + 94296739250,-22.015741921481297,L, + 100070009000,-25.241428530609415,L, + 101994432250,-26.316659107866080,L, + 105843278750,-28.467116847284824,L, + 107767702000,-29.542344009446904,L, + 109692125250,-30.617576294250863,L, + 111616548500,-31.692798333771066,L, + 113540971750,-32.768027203480436,L, + 115465395000,-33.843259488284396,L, + 119314241500,-35.993717227703137,L, + 121238664750,-37.068949512507096,L, + 123163088000,-38.144174967121884,L, + 125087511250,-39.219407251925844,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369864991344585,L, + 130860781000,-42.445080200675619,L, + 132785204250,-43.520312485479579,L, + 134709627500,-44.595548185378121,L, + 136634050750,-45.670766809803737,L, + 138558474000,-46.745999094607690,L, + 140482897250,-47.821238209600821,L, + 142407320500,-48.896456834026438,L, + 144331743750,-49.971685703735808,L, + 146256167000,-51.046921403634350,L, + 148180590250,-52.122140028059967,L, + 150105013500,-53.197368897769344,L, + 152029436750,-54.272601182573297,L, + 159727129750,-58.573516661410785,L, + 161651553000,-59.648738700930991,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175354449274934,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325798528315346,L, + 180895785500,-70.401041058403052,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626727667531171,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838161336417052,L, + 230930790000,-51.776566607003673,L, + 234779636500,-45.653342997231057,L, + 236704059750,-42.591748267817678,L, + 238628483000,-39.530136462931367,L, + 242477329500,-33.406919683347930,L, + 244401752750,-30.345314708650790,L, + 246326176000,-27.283708026406362,L, + 248250599250,-24.222097929067345,L, + 250175022500,-21.160489539275623,L, + 252099445750,-18.098891394767659,L, + 254023869000,-15.037283004975937,L, + 255948292250,-11.975678884052446,L, + 257872715500,-8.914072201808017,L, + 259797138750,-5.852461250695357,L, + 261721562000,-2.790856062554809,L, + 263645985250,0.270741841829320,L, + 265570408500,3.332353459952642,L, + 267494831750,6.393959074980013,L, + 269419255000,9.455570452979495,L, + 275192524750,18.640385377070906,L, + 277116948000,21.701997181957214,L, + 279041371250,24.763603864201642,L, + 280965794500,27.825207131351487,L, + 282890217750,30.886805275859452,L, + 284814641000,30.872540425777903,L, + 288663487500,30.859501594652365,L, + 290587910750,30.852985594184183,L, + 292512334000,30.846466178621416,L, + 294436757250,30.839950178153231,L, + 296361180500,30.833423932401296,L, + 298285603750,30.826911347027696,L, + 300210027000,30.820391931464929,L, + 302134450250,30.813865685712990,L, + 304058873500,30.807353100339395,L, + 305983296750,30.800837099871210,L, + 307907720000,30.794317684308442,L, + 309832143250,30.787801683840261,L, + 311756566500,30.781278853182908,L, + 313680989750,30.774759437620141,L, + 315605413000,30.768243437151956,L, + 317529836250,30.761717191400020,L, + 319454259500,30.755201190931835,L, + 323303106000,30.742162359806301,L, + 325227529250,30.735646359338119,L, + 327151952500,30.729126943775348,L, + 329076375750,30.722604113117995,L, + 331000799000,30.716088112649814,L, + 332925222250,30.709575527276215,L, + 334849645500,30.703049281524279,L, + 336774068750,30.696529865961512,L, + 338698492000,30.690017280587913,L, + 340622915250,30.683494449930560,L, + 342547338500,30.676975034367793,L, + 344471761750,30.670459033899608,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 34639618500,111.102903303637603,L, + 36564041750,112.037259521715654,L, + 38488465000,112.971602079415376,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 78901353250,132.592918734514598,L, + 80825776500,133.527261292214320,L, + 82750199750,134.461617510292371,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 248250599250,136.978159728844957,L, + 250175022500,134.067365331021477,L, + 252099445750,131.156543612441311,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489137646594495 + KeyVer: 4005 + KeyCount: 160 + Key: + 0,7.489137646594495,L, + 1924423250,6.812488734768874,L, + 3848846500,6.135842384264194,L, + 5773269750,5.459190484230812,L, + 7697693000,4.782545414386600,L, + 9622116250,4.105900771429212,L, + 11546539500,3.429251219273358,L, + 13470962750,2.752600599900445,L, + 15395386000,2.075953609065530,L, + 17319809250,1.399310140046905,L, + 19244232500,0.722657066074760,L, + 21168655750,0.046015914918182,L, + 23093079000,-0.630635101326074,L, + 25017502250,-1.307285293812163,L, + 26941925500,-1.983929616604434,L, + 28866348750,-2.660580876307581,L, + 30790772000,-3.337224238604500,L, + 32715195250,-4.013874644534001,L, + 34639618500,-4.690524410133267,L, + 36564041750,-5.367168626203832,L, + 38488465000,-6.043815830482159,L, + 40412888250,-6.720467303628718,L, + 42337311500,-7.397116215454338,L, + 44261734750,-8.073762565959019,L, + 46186158000,-8.750412331558284,L, + 50035004500,-10.103703325020353,L, + 51959427750,-10.780349675525034,L, + 53883851000,-11.457002002445240,L, + 55808274250,-12.133644937855335,L, + 57732697500,-12.810295557228248,L, + 59657120750,-13.486940200185636,L, + 61581544000,-14.163591673332194,L, + 63505967250,-14.840237170063229,L, + 65430390500,-15.516885228115203,L, + 67354813750,-16.193536701261760,L, + 69279237000,-16.870184759313734,L, + 71203660250,-17.546831109818417,L, + 73128083500,-18.223475752775805,L, + 76976930000,-19.576771868879753,L, + 78901353250,-20.253416511837141,L, + 80825776500,-20.930062862341821,L, + 82750199750,-21.606721165677548,L, + 84674623000,-22.283360685993060,L, + 86599046250,-22.960017281781496,L, + 88523469500,-23.636663632286176,L, + 90447892750,-24.313311690338150,L, + 92372316000,-24.989958040842833,L, + 94296739250,-25.666607806442098,L, + 96221162500,-26.343249034304900,L, + 98145585750,-27.019897092356874,L, + 100070009000,-27.696543442861557,L, + 101994432250,-28.373191500913528,L, + 103918855500,-29.049842974060088,L, + 107767702000,-30.403135675069450,L, + 109692125250,-31.079785440668715,L, + 111616548500,-31.756431791173398,L, + 113540971750,-32.433074726583492,L, + 115465395000,-33.109734737466511,L, + 117389818250,-33.786374257782022,L, + 119314241500,-34.463020608286705,L, + 121238664750,-35.139673788980559,L, + 123163088000,-35.816313309296071,L, + 125087511250,-36.492973320179090,L, + 127011934500,-37.169612840494601,L, + 128936357750,-37.846266021188448,L, + 130860781000,-38.522908956598549,L, + 132785204250,-39.199558722197814,L, + 134709627500,-39.876201657607908,L, + 136634050750,-40.552848008112591,L, + 138558474000,-41.229501188806438,L, + 142407320500,-42.582800720004975,L, + 144331743750,-43.259447070509651,L, + 146256167000,-43.936086590825163,L, + 148180590250,-44.612739771519017,L, + 150105013500,-45.289386122023693,L, + 152029436750,-45.966035887622965,L, + 153953860000,-46.642678823033059,L, + 155878283250,-47.319332003726906,L, + 157802706500,-47.995978354231589,L, + 159727129750,-48.672628119830854,L, + 161651553000,-49.349267640146365,L, + 163575976250,-50.025920820840220,L, + 167424822750,-51.379220352038750,L, + 171273669250,-52.732513053048109,L, + 173198092500,-53.409162818647381,L, + 175122515750,-54.085802338962885,L, + 178971362250,-55.439108700350594,L, + 180895785500,-56.115751635760688,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 192442325000,-60.175646814261697,L, + 194366748250,-60.852279504388036,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558871736595933,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256090616880670,L, + 213610980750,-60.481973968347162,L, + 215535404000,-58.594908813891237,L, + 219384250500,-54.820805825736073,L, + 221308673750,-52.933740671280155,L, + 223233097000,-51.046689177202573,L, + 227081943500,-47.272572528669066,L, + 229006366750,-45.385510789307730,L, + 230930790000,-43.498455880135566,L, + 236704059750,-37.837280907335312,L, + 240552906250,-34.063171088990977,L, + 242477329500,-32.176105934535059,L, + 244401752750,-30.289057855552059,L, + 246326176000,-28.401997823738018,L, + 248250599250,-26.514939499471264,L, + 250175022500,-24.627876052562637,L, + 252099445750,-22.740826266032347,L, + 254023869000,-20.853757696481839,L, + 255948292250,-18.966709617498843,L, + 257872715500,-17.079651293232093,L, + 259797138750,-15.192587846323464,L, + 261721562000,-13.305534644698589,L, + 263645985250,-11.418474612884545,L, + 267494831750,-7.644361379445628,L, + 269419255000,-5.757301347631583,L, + 271343678250,-3.870239608270247,L, + 273268101500,-1.983183845324434,L, + 275192524750,-0.096124947428514,L, + 277116948000,1.790923838585783,L, + 279041371250,3.677981309078889,L, + 280965794500,5.565043048440225,L, + 282890217750,7.452098384499215,L, + 284814641000,7.454200375216283,L, + 286739064250,7.455329917750272,L, + 288663487500,7.456457752736969,L, + 290587910750,7.457584733950020,L, + 292512334000,7.458710861389424,L, + 294436757250,7.459839550149767,L, + 296361180500,7.460962262494586,L, + 298285603750,7.462090951254929,L, + 300210027000,7.463216224920687,L, + 302134450250,7.464345767454676,L, + 304058873500,7.465471041120434,L, + 305983296750,7.466600583654423,L, + 307907720000,7.467725857320182,L, + 311756566500,7.469978112198990,L, + 313680989750,7.471106800959332,L, + 317529836250,7.473362470932726,L, + 319454259500,7.474488598372131,L, + 321378682750,7.475615579585181,L, + 323303106000,7.476739145703647,L, + 325227529250,7.477867834463989,L, + 329076375750,7.480123504437383,L, + 331000799000,7.481250485650434,L, + 332925222250,7.482378320637130,L, + 334849645500,7.483501886755596,L, + 336774068750,7.484628867968646,L, + 338698492000,7.485754995408050,L, + 342547338500,7.488012372928736,L, + 344471761750,7.489137646594495,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772139549255 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.753772139549255,L, + 1924423250,0.748255670070648,L, + 5773269750,0.737222492694855,L, + 7697693000,0.731705844402313,L, + 13470962750,0.715156257152557,L, + 17319809250,0.704123079776764,L, + 21168655750,0.693090021610260,L, + 23093079000,0.687573373317719,L, + 26941925500,0.676540315151215,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 32715195250,0.659990549087524,L, + 34639618500,0.654473960399628,L, + 36564041750,0.648957490921021,L, + 38488465000,0.643440902233124,L, + 40412888250,0.637924194335938,L, + 42337311500,0.632407724857330,L, + 44261734750,0.626891195774078,L, + 46186158000,0.621374487876892,L, + 48110581250,0.615858018398285,L, + 50035004500,0.610341489315033,L, + 51959427750,0.604824841022491,L, + 53883851000,0.599308311939240,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758605480194,L, + 61581544000,0.577242016792297,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692369937897,L, + 69279237000,0.555175721645355,L, + 71203660250,0.549659192562103,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109486103058,L, + 78901353250,0.527592897415161,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 86599046250,0.505526661872864,L, + 88523469500,0.500010073184967,L, + 90447892750,0.494493573904037,L, + 92372316000,0.488976985216141,L, + 98145585750,0.472427308559418,L, + 100070009000,0.466910690069199,L, + 107767702000,0.444844454526901,L, + 109692125250,0.439327865839005,L, + 111616548500,0.433811336755753,L, + 113540971750,0.428294748067856,L, + 117389818250,0.417261630296707,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228482723236,L, + 123163088000,0.400711894035339,L, + 125087511250,0.395195364952087,L, + 127011934500,0.389678806066513,L, + 130860781000,0.378645569086075,L, + 132785204250,0.373129069805145,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062804460526,L, + 142407320500,0.345546215772629,L, + 148180590250,0.328996539115906,L, + 150105013500,0.323479950428009,L, + 152029436750,0.317963421344757,L, + 155878283250,0.306930243968964,L, + 165500399500,0.279347449541092,L, + 171273669250,0.262797683477402,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764625310898,L, + 177046939000,0.246247991919518,L, + 178971362250,0.240731462836266,L, + 180895785500,0.235214874148369,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181741476059,L, + 186669055250,0.218665182590485,L, + 188593478500,0.213148638606071,L, + 190517901750,0.207632035017014,L, + 192442325000,0.202115491032600,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049166083336,L, + 202064441250,0.174532637000084,L, + 203988864500,0.169016063213348,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798300504684,L, + 215535404000,0.016179721802473,L, + 217459827250,0.016306860372424,L, + 219384250500,0.016434002667665,L, + 225157520250,0.016815423965454,L, + 227081943500,0.016942566260695,L, + 232855213250,0.017323981970549,L, + 234779636500,0.017451122403145,L, + 236704059750,0.017578266561031,L, + 238628483000,0.017705403268337,L, + 240552906250,0.017832545563579,L, + 242477329500,0.017959685996175,L, + 244401752750,0.018086824566126,L, + 248250599250,0.018341105431318,L, + 250175022500,0.018468247726560,L, + 254023869000,0.018722528591752,L, + 255948292250,0.018849667161703,L, + 257872715500,0.018976809456944,L, + 259797138750,0.019103946164250,L, + 261721562000,0.019231088459492,L, + 263645985250,0.019358227029443,L, + 265570408500,0.019485367462039,L, + 267494831750,0.019612506031990,L, + 271343678250,0.019866790622473,L, + 273268101500,0.019993929192424,L, + 280965794500,0.020502490922809,L, + 282890217750,0.020629635080695,L, + 284814641000,0.207228913903236,L, + 286739064250,0.224859341979027,L, + 288663487500,0.242489740252495,L, + 290587910750,0.260120183229446,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381039381027,L, + 296361180500,0.313011497259140,L, + 300210027000,0.348272353410721,L, + 302134450250,0.365902751684189,L, + 304058873500,0.383533209562302,L, + 305983296750,0.401163637638092,L, + 307907720000,0.418794035911560,L, + 309832143250,0.436424523591995,L, + 311756566500,0.454054921865463,L, + 313680989750,0.471685349941254,L, + 315605413000,0.489315837621689,L, + 317529836250,0.506946146488190,L, + 323303106000,0.559837520122528,L, + 325227529250,0.577467918395996,L, + 327151952500,0.595098376274109,L, + 329076375750,0.612728714942932,L, + 331000799000,0.630359232425690,L, + 334849645500,0.665620028972626,L, + 342547338500,0.736141860485077,L, + 344471761750,0.753772139549255,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772199153900 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,0.753772199153900,L, + 3848846500,0.742739140987396,L, + 5773269750,0.737222492694855,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654473960399628,L, + 36564041750,0.648957490921021,L, + 38488465000,0.643440842628479,L, + 42337311500,0.632407784461975,L, + 44261734750,0.626891136169434,L, + 48110581250,0.615858078002930,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692310333252,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109605312347,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076368331909,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043250560760,L, + 86599046250,0.505526721477509,L, + 88523469500,0.500010073184967,L, + 90447892750,0.494493514299393,L, + 94296739250,0.483460456132889,L, + 96221162500,0.477943837642670,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910749673843,L, + 101994432250,0.461394101381302,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 107767702000,0.444844454526901,L, + 109692125250,0.439327865839005,L, + 111616548500,0.433811336755753,L, + 113540971750,0.428294748067856,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261600494385,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195335149765,L, + 127011934500,0.389678776264191,L, + 128936357750,0.384162187576294,L, + 130860781000,0.378645628690720,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546245574951,L, + 144331743750,0.340029597282410,L, + 146256167000,0.334513098001480,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 153953860000,0.312446802854538,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 163575976250,0.284863978624344,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830831050873,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797683477402,L, + 173198092500,0.257281154394150,L, + 175122515750,0.251764565706253,L, + 177046939000,0.246247991919518,L, + 178971362250,0.240731462836266,L, + 180895785500,0.235214874148369,L, + 182820208750,0.229698330163956,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665152788162,L, + 188593478500,0.213148638606071,L, + 190517901750,0.207632035017014,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082343459129,L, + 198215594750,0.185565739870071,L, + 200140018000,0.180049166083336,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016048312187,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798300504684,L, + 215535404000,0.016429284587502,L, + 217459827250,0.016639614477754,L, + 219384250500,0.016849940642715,L, + 221308673750,0.017060272395611,L, + 223233097000,0.017270600423217,L, + 225157520250,0.017480930313468,L, + 227081943500,0.017691258341074,L, + 229006366750,0.017901590093970,L, + 230930790000,0.018111918121576,L, + 232855213250,0.018322248011827,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 244401752750,0.019584219902754,L, + 250175022500,0.020215209573507,L, + 252099445750,0.020425533875823,L, + 254023869000,0.020635865628719,L, + 255948292250,0.020846193656325,L, + 257872715500,0.021056523546576,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477181464434,L, + 267494831750,0.022108165547252,L, + 269419255000,0.022318497300148,L, + 273268101500,0.022739153355360,L, + 277116948000,0.023159813135862,L, + 279041371250,0.023370141163468,L, + 280965794500,0.023580471053720,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524722099304,L, + 286739064250,0.256113380193710,L, + 292512334000,0.305879265069962,L, + 294436757250,0.322467863559723,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645090341568,L, + 300210027000,0.372233778238297,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999663114548,L, + 307907720000,0.438588261604309,L, + 311756566500,0.471765577793121,L, + 321378682750,0.554708719253540,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885975837708,L, + 329076375750,0.621063232421875,L, + 331000799000,0.637651801109314,L, + 332925222250,0.654240489006042,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006314277649,L, + 340622915250,0.720595002174377,L, + 342547338500,0.737183630466461,L, + 344471761750,0.753772199153900,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772199153900 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.753772199153900,L, + 1924423250,0.748255729675293,L, + 3848846500,0.742739140987396,L, + 5773269750,0.737222492694855,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189315319061,L, + 11546539500,0.720672786235809,L, + 13470962750,0.715156197547913,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123020172119,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540315151215,L, + 28866348750,0.671023666858673,L, + 30790772000,0.665507197380066,L, + 32715195250,0.659990668296814,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407784461975,L, + 44261734750,0.626891136169434,L, + 46186158000,0.621374607086182,L, + 50035004500,0.610341429710388,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 63505967250,0.571725487709045,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692310333252,L, + 71203660250,0.549659252166748,L, + 73128083500,0.544142663478851,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109486103058,L, + 78901353250,0.527592897415161,L, + 80825776500,0.522076427936554,L, + 84674623000,0.511043250560760,L, + 86599046250,0.505526721477509,L, + 90447892750,0.494493544101715,L, + 98145585750,0.472427308559418,L, + 100070009000,0.466910690069199,L, + 103918855500,0.455877572298050,L, + 105843278750,0.450360953807831,L, + 107767702000,0.444844454526901,L, + 109692125250,0.439327895641327,L, + 111616548500,0.433811306953430,L, + 113540971750,0.428294748067856,L, + 115465395000,0.422778159379959,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711894035339,L, + 125087511250,0.395195364952087,L, + 128936357750,0.384162187576294,L, + 132785204250,0.373129069805145,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546245574951,L, + 144331743750,0.340029627084732,L, + 146256167000,0.334513098001480,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 163575976250,0.284863978624344,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830831050873,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797683477402,L, + 173198092500,0.257281154394150,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082343459129,L, + 198215594750,0.185565739870071,L, + 200140018000,0.180049166083336,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016048312187,L, + 205913287750,0.163499459624290,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 213610980750,0.016218956559896,L, + 215535404000,0.016429284587502,L, + 217459827250,0.016639616340399,L, + 221308673750,0.017060272395611,L, + 225157520250,0.017480932176113,L, + 229006366750,0.017901588231325,L, + 232855213250,0.018322248011827,L, + 234779636500,0.018532576039433,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 242477329500,0.019373891875148,L, + 244401752750,0.019584221765399,L, + 246326176000,0.019794547930360,L, + 250175022500,0.020215207710862,L, + 252099445750,0.020425535738468,L, + 257872715500,0.021056525409222,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477179601789,L, + 265570408500,0.021897839382291,L, + 267494831750,0.022108167409897,L, + 275192524750,0.022949486970901,L, + 277116948000,0.023159813135862,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524722099304,L, + 286739064250,0.256113350391388,L, + 288663487500,0.272702008485794,L, + 290587910750,0.289290606975555,L, + 292512334000,0.305879265069962,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056462049484,L, + 298285603750,0.355645149946213,L, + 302134450250,0.388822346925735,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999692916870,L, + 309832143250,0.455176949501038,L, + 313680989750,0.488354146480560,L, + 315605413000,0.504942834377289,L, + 327151952500,0.604474604129791,L, + 329076375750,0.621063113212585,L, + 332925222250,0.654240489006042,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006314277649,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183570861816,L, + 344471761750,0.753772199153900,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_079" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,0.016793012619019,L, + 1924423250,0.016793131828308,L, + 3848846500,0.016792774200439,L, + 5773269750,0.016792893409729,L, + 7697693000,0.016793131828308,L, + 9622116250,0.016792893409729,L, + 11546539500,0.016792774200439,L, + 13470962750,0.016792774200439,L, + 15395386000,0.016793012619019,L, + 17319809250,0.016792774200439,L, + 21168655750,0.016793012619019,L, + 25017502250,0.016793012619019,L, + 26941925500,0.016792893409729,L, + 30790772000,0.016793131828308,L, + 32715195250,0.016792893409729,L, + 36564041750,0.016793131828308,L, + 38488465000,0.016792893409729,L, + 44261734750,0.016792893409729,L, + 46186158000,0.016793131828308,L, + 50035004500,0.016792654991150,L, + 51959427750,0.016793012619019,L, + 53883851000,0.016792774200439,L, + 55808274250,0.016793012619019,L, + 59657120750,0.016793012619019,L, + 63505967250,0.016792774200439,L, + 65430390500,0.016793012619019,L, + 67354813750,0.016792774200439,L, + 69279237000,0.016792654991150,L, + 71203660250,0.016792893409729,L, + 73128083500,0.016792774200439,L, + 75052506750,0.016793012619019,L, + 78901353250,0.016792774200439,L, + 80825776500,0.016793012619019,L, + 82750199750,0.016792774200439,L, + 84674623000,0.016793012619019,L, + 86599046250,0.016793012619019,L, + 90447892750,0.016792774200439,L, + 92372316000,0.016792893409729,L, + 94296739250,0.016792893409729,L, + 96221162500,0.016793131828308,L, + 98145585750,0.016792893409729,L, + 100070009000,0.016792893409729,L, + 101994432250,0.016793012619019,L, + 103918855500,0.016793012619019,L, + 105843278750,0.016793131828308,L, + 107767702000,0.016793131828308,L, + 109692125250,0.016792654991150,L, + 111616548500,0.016792893409729,L, + 115465395000,0.016793131828308,L, + 117389818250,0.016792893409729,L, + 119314241500,0.016793012619019,L, + 121238664750,0.016792774200439,L, + 123163088000,0.016793012619019,L, + 127011934500,0.016793012619019,L, + 128936357750,0.016792893409729,L, + 130860781000,0.016793012619019,L, + 132785204250,0.016792774200439,L, + 136634050750,0.016793012619019,L, + 138558474000,0.016793012619019,L, + 140482897250,0.016793131828308,L, + 142407320500,0.016792893409729,L, + 144331743750,0.016792774200439,L, + 148180590250,0.016793012619019,L, + 152029436750,0.016792774200439,L, + 180895785500,0.016792774200439,L, + 182820208750,0.016793012619019,L, + 184744632000,0.016792774200439,L, + 188593478500,0.016792774200439,L, + 190517901750,0.016793131828308,L, + 192442325000,0.016793131828308,L, + 194366748250,0.016793012619019,L, + 196291171500,0.016793012619019,L, + 198215594750,0.016792893409729,L, + 205913287750,0.016792893409729,L, + 207837711000,0.016793251037598,L, + 209762134250,0.016792893409729,L, + 211686557500,0.016792774200439,L, + 213610980750,0.016793131828308,L, + 215535404000,0.016793012619019,L, + 217459827250,0.016792774200439,L, + 221308673750,0.016793012619019,L, + 223233097000,0.016793012619019,L, + 225157520250,0.016793131828308,L, + 229006366750,0.016793131828308,L, + 230930790000,0.016792654991150,L, + 232855213250,0.016792893409729,L, + 234779636500,0.016793012619019,L, + 236704059750,0.016792893409729,L, + 238628483000,0.016793012619019,L, + 240552906250,0.016792774200439,L, + 242477329500,0.016792893409729,L, + 250175022500,0.016792893409729,L, + 252099445750,0.016792774200439,L, + 255948292250,0.016793012619019,L, + 257872715500,0.016793012619019,L, + 259797138750,0.016792774200439,L, + 261721562000,0.016793131828308,L, + 263645985250,0.016792893409729,L, + 265570408500,0.016792774200439,L, + 267494831750,0.016793131828308,L, + 269419255000,0.016793012619019,L, + 271343678250,0.016792654991150,L, + 277116948000,0.016793012619019,L, + 279041371250,0.016792654991150,L, + 280965794500,0.016793131828308,L, + 282890217750,0.016792893409729,L, + 286739064250,0.016792893409729,L, + 288663487500,0.016792774200439,L, + 290587910750,0.016793012619019,L, + 292512334000,0.016792774200439,L, + 294436757250,0.016792893409729,L, + 296361180500,0.016792774200439,L, + 298285603750,0.016793012619019,L, + 302134450250,0.016793012619019,L, + 305983296750,0.016792774200439,L, + 307907720000,0.016792893409729,L, + 309832143250,0.016793131828308,L, + 311756566500,0.016793012619019,L, + 313680989750,0.016792774200439,L, + 317529836250,0.016793012619019,L, + 319454259500,0.016792774200439,L, + 321378682750,0.016792774200439,L, + 323303106000,0.016793012619019,L, + 325227529250,0.016793012619019,L, + 327151952500,0.016792893409729,L, + 329076375750,0.016793131828308,L, + 331000799000,0.016792774200439,L, + 334849645500,0.016792774200439,L, + 336774068750,0.016792893409729,L, + 338698492000,0.016792893409729,L, + 340622915250,0.016792774200439,L, + 342547338500,0.016792893409729,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058537244796753 + KeyVer: 4005 + KeyCount: 166 + Key: + 0,-0.058537244796753,L, + 1924423250,-0.058575510978699,L, + 3848846500,-0.058685183525085,L, + 5773269750,-0.058861970901489,L, + 7697693000,-0.059101223945618,L, + 9622116250,-0.059397578239441,L, + 11546539500,-0.059747934341431,L, + 13470962750,-0.060148835182190,L, + 15395386000,-0.060598254203796,L, + 17319809250,-0.061091899871826,L, + 19244232500,-0.061628341674805,L, + 21168655750,-0.062205553054810,L, + 23093079000,-0.062820196151733,L, + 25017502250,-0.063471674919128,L, + 26941925500,-0.064157366752625,L, + 28866348750,-0.064876675605774,L, + 30790772000,-0.065627455711365,L, + 32715195250,-0.066408038139343,L, + 34639618500,-0.067218065261841,L, + 36564041750,-0.068055629730225,L, + 38488465000,-0.068919539451599,L, + 40412888250,-0.069809079170227,L, + 42337311500,-0.070723414421082,L, + 44261734750,-0.071661233901978,L, + 46186158000,-0.072623014450073,L, + 48110581250,-0.073605418205261,L, + 50035004500,-0.074609756469727,L, + 51959427750,-0.075634241104126,L, + 53883851000,-0.076678872108459,L, + 55808274250,-0.077741861343384,L, + 57732697500,-0.078824043273926,L, + 59657120750,-0.079923272132874,L, + 61581544000,-0.081039786338806,L, + 63505967250,-0.082172155380249,L, + 65430390500,-0.083320856094360,L, + 67354813750,-0.084483981132507,L, + 69279237000,-0.085661649703979,L, + 71203660250,-0.086852788925171,L, + 73128083500,-0.088055610656738,L, + 75052506750,-0.089270353317261,L, + 76976930000,-0.090494632720947,L, + 78901353250,-0.091728091239929,L, + 80825776500,-0.092967152595520,L, + 82750199750,-0.094209551811218,L, + 84674623000,-0.095451116561890,L, + 86599046250,-0.096683382987976,L, + 88523469500,-0.097892045974731,L, + 90447892750,-0.099037170410156,L, + 92372316000,-0.099893450737000,L, + 94296739250,-0.099930286407471,L, + 96221162500,-0.099073290824890,L, + 98145585750,-0.097857952117920,L, + 100070009000,-0.096546411514282,L, + 101994432250,-0.095184326171875,L, + 103918855500,-0.093789935112000,L, + 105843278750,-0.092373490333557,L, + 107767702000,-0.090940952301025,L, + 109692125250,-0.089495778083801,L, + 111616548500,-0.088042020797729,L, + 113540971750,-0.086580514907837,L, + 115465395000,-0.085113763809204,L, + 117389818250,-0.083642244338989,L, + 119314241500,-0.082168459892273,L, + 121238664750,-0.080692410469055,L, + 123163088000,-0.079215884208679,L, + 125087511250,-0.077738404273987,L, + 127011934500,-0.076262712478638,L, + 128936357750,-0.074788451194763,L, + 130860781000,-0.073317527770996,L, + 132785204250,-0.071850180625916,L, + 134709627500,-0.070388674736023,L, + 136634050750,-0.068935036659241,L, + 138558474000,-0.067490339279175,L, + 140482897250,-0.066057682037354,L, + 142407320500,-0.064640760421753,L, + 144331743750,-0.063246369361877,L, + 146256167000,-0.061884284019470,L, + 148180590250,-0.060572743415833,L, + 150105013500,-0.059357404708862,L, + 152029436750,-0.058500409126282,L, + 180895785500,-0.058500409126282,L, + 182820208750,-0.057608842849731,L, + 184744632000,-0.054915785789490,L, + 186669055250,-0.050476074218750,L, + 188593478500,-0.044482946395874,L, + 190517901750,-0.037307143211365,L, + 192442325000,-0.029485344886780,L, + 194366748250,-0.021663606166840,L, + 196291171500,-0.014487206935883,L, + 198215594750,-0.008494675159454,L, + 200140018000,-0.004054367542267,L, + 202064441250,-0.001361906528473,L, + 203988864500,-0.000469803810120,L, + 205913287750,-0.000504851341248,L, + 207837711000,-0.000608921051025,L, + 209762134250,-0.000780463218689,L, + 211686557500,-0.001017868518829,L, + 213610980750,-0.001320123672485,L, + 215535404000,-0.001684606075287,L, + 217459827250,-0.002109587192535,L, + 219384250500,-0.002594172954559,L, + 221308673750,-0.003135323524475,L, + 223233097000,-0.003731667995453,L, + 225157520250,-0.004381060600281,L, + 227081943500,-0.005081474781036,L, + 229006366750,-0.005830943584442,L, + 230930790000,-0.006625950336456,L, + 232855213250,-0.007466733455658,L, + 234779636500,-0.008349299430847,L, + 236704059750,-0.009271144866943,L, + 238628483000,-0.010231137275696,L, + 240552906250,-0.011226058006287,L, + 242477329500,-0.012253999710083,L, + 244401752750,-0.013312220573425,L, + 246326176000,-0.014399051666260,L, + 248250599250,-0.015510976314545,L, + 250175022500,-0.016645908355713,L, + 252099445750,-0.017801582813263,L, + 254023869000,-0.018976032733917,L, + 255948292250,-0.020167052745819,L, + 257872715500,-0.021371066570282,L, + 259797138750,-0.022585928440094,L, + 261721562000,-0.023810088634491,L, + 263645985250,-0.025040447711945,L, + 265570408500,-0.026275277137756,L, + 267494831750,-0.027512252330780,L, + 269419255000,-0.028748512268066,L, + 271343678250,-0.029982268810272,L, + 273268101500,-0.031211793422699,L, + 275192524750,-0.032434046268463,L, + 277116948000,-0.033648073673248,L, + 279041371250,-0.034850835800171,L, + 280965794500,-0.036041259765625,L, + 282890217750,-0.037216484546661,L, + 284814641000,-0.038375377655029,L, + 286739064250,-0.039515614509583,L, + 288663487500,-0.040635704994202,L, + 290587910750,-0.041734635829926,L, + 292512334000,-0.042809009552002,L, + 294436757250,-0.043859004974365,L, + 296361180500,-0.044882178306580,L, + 298285603750,-0.045877218246460,L, + 300210027000,-0.046843051910400,L, + 302134450250,-0.047777533531189,L, + 304058873500,-0.048680305480957,L, + 305983296750,-0.049549221992493,L, + 307907720000,-0.050384044647217,L, + 309832143250,-0.051183223724365,L, + 311756566500,-0.051945090293884,L, + 313680989750,-0.052669644355774,L, + 315605413000,-0.053355932235718,L, + 317529836250,-0.054002046585083,L, + 319454259500,-0.054607272148132,L, + 321378682750,-0.055171966552734,L, + 323303106000,-0.055694818496704,L, + 325227529250,-0.056174278259277,L, + 327151952500,-0.056611061096191,L, + 329076375750,-0.057003617286682,L, + 331000799000,-0.057350754737854,L, + 332925222250,-0.057653903961182,L, + 334849645500,-0.057911396026611,L, + 336774068750,-0.058122992515564,L, + 338698492000,-0.058287739753723,L, + 340622915250,-0.058405637741089,L, + 342547338500,-0.058477282524109,L, + 344471761750,-0.058500409126282,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578061103820801 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,-0.578061103820801,L, + 90447892750,-0.578061103820801,L, + 92372316000,-0.557460784912109,L, + 94296739250,0.000370740890503,L, + 96221162500,0.007700681686401,L, + 98145585750,0.015030145645142,L, + 100070009000,0.022359848022461,L, + 101994432250,0.029689788818359,L, + 103918855500,0.037019491195679,L, + 105843278750,0.044349431991577,L, + 107767702000,0.051679134368896,L, + 109692125250,0.059009075164795,L, + 111616548500,0.066338539123535,L, + 113540971750,0.073668479919434,L, + 115465395000,0.080998182296753,L, + 117389818250,0.088328123092651,L, + 119314241500,0.095657825469971,L, + 121238664750,0.102987766265869,L, + 123163088000,0.110317468643188,L, + 125087511250,0.119968652725220,L, + 127011934500,0.129930019378662,L, + 128936357750,0.140168905258179,L, + 130860781000,0.150662422180176,L, + 132785204250,0.161394834518433,L, + 134709627500,0.172355175018311,L, + 136634050750,0.183540344238281,L, + 138558474000,0.194950580596924,L, + 140482897250,0.206594467163086,L, + 142407320500,0.218489646911621,L, + 144331743750,0.230666637420654,L, + 146256167000,0.243180751800537,L, + 148180590250,0.256135463714600,L, + 150105013500,0.269762277603149,L, + 152029436750,0.284850597381592,L, + 153953860000,0.306648254394531,L, + 155878283250,0.313348770141602,L, + 157802706500,0.320404529571533,L, + 159727129750,0.327870130538940,L, + 161651553000,0.335814952850342,L, + 163575976250,0.344329118728638,L, + 165500399500,0.353533267974854,L, + 167424822750,0.363593339920044,L, + 169349246000,0.374749183654785,L, + 171273669250,0.387361049652100,L, + 173198092500,0.402003765106201,L, + 175122515750,0.419637203216553,L, + 177046939000,0.441746711730957,L, + 178971362250,0.468573808670044,L, + 180895785500,0.492804765701294,L, + 182820208750,0.514571428298950,L, + 184744632000,0.539780855178833,L, + 186669055250,0.568211317062378,L, + 188593478500,0.599333524703979,L, + 190517901750,0.632256984710693,L, + 192442325000,0.665760517120361,L, + 194366748250,0.698447465896606,L, + 196291171500,0.728977918624878,L, + 198215594750,0.756290197372437,L, + 200140018000,0.779710054397583,L, + 202064441250,0.798940420150757,L, + 203988864500,0.813977241516113,L, + 205913287750,0.826800584793091,L, + 207837711000,0.839292049407959,L, + 209762134250,0.851451635360718,L, + 211686557500,0.863280534744263,L, + 213610980750,0.874779462814331,L, + 215535404000,0.885950088500977,L, + 217459827250,0.896793603897095,L, + 219384250500,0.907312393188477,L, + 221308673750,0.917508125305176,L, + 223233097000,0.927382946014404,L, + 225157520250,0.936939954757690,L, + 227081943500,0.946181535720825,L, + 229006366750,0.955111026763916,L, + 230930790000,0.963731765747070,L, + 232855213250,0.972047328948975,L, + 234779636500,0.980061292648315,L, + 236704059750,0.987777709960938,L, + 238628483000,0.995201110839844,L, + 240552906250,1.002335548400879,L, + 242477329500,1.009185791015625,L, + 244401752750,1.015757083892822,L, + 246326176000,1.022053718566895,L, + 248250599250,1.028081655502319,L, + 250175022500,1.033845663070679,L, + 252099445750,1.039351701736450,L, + 254023869000,1.044605016708374,L, + 255948292250,1.049612045288086,L, + 257872715500,1.054378032684326,L, + 259797138750,1.058909177780151,L, + 261721562000,1.063211679458618,L, + 263645985250,1.067291975021362,L, + 265570408500,1.071155786514282,L, + 267494831750,1.074810028076172,L, + 269419255000,1.078260421752930,L, + 271343678250,1.081513881683350,L, + 273268101500,1.084576606750488,L, + 275192524750,1.087455034255981,L, + 277116948000,1.090156078338623,L, + 279041371250,1.092685461044312,L, + 280965794500,1.095049858093262,L, + 282890217750,1.097256183624268,L, + 284814641000,1.099309682846069,L, + 286739064250,1.101217269897461,L, + 288663487500,1.102985620498657,L, + 290587910750,1.104620218276978,L, + 292512334000,1.106127262115479,L, + 294436757250,1.107513427734375,L, + 296361180500,1.108783721923828,L, + 298285603750,1.109944820404053,L, + 300210027000,1.111001968383789,L, + 302134450250,1.111961126327515,L, + 304058873500,1.112827301025391,L, + 305983296750,1.113606929779053,L, + 307907720000,1.114304780960083,L, + 309832143250,1.114925861358643,L, + 311756566500,1.115475177764893,L, + 313680989750,1.115958452224731,L, + 315605413000,1.116380214691162,L, + 317529836250,1.116745233535767,L, + 319454259500,1.117058277130127,L, + 321378682750,1.117323160171509,L, + 323303106000,1.117544889450073,L, + 325227529250,1.117727756500244,L, + 327151952500,1.117875576019287,L, + 329076375750,1.117992639541626,L, + 331000799000,1.118082761764526,L, + 332925222250,1.118149518966675,L, + 334849645500,1.118196964263916,L, + 336774068750,1.118228435516357,L, + 338698492000,1.118247032165527,L, + 340622915250,1.118256568908691,L, + 342547338500,1.118260145187378,L, + 344471761750,1.118260622024536,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543798508332110,L, + 11546539500,58.034833301950997,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800553232134348,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304837426552091,L, + 21168655750,54.467708951309021,L, + 23093079000,53.575122755100111,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634307426970850,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501727707704589,L, + 32715195250,48.368804230076201,L, + 34639618500,47.193967296606090,L, + 36564041750,45.978951775343440,L, + 38488465000,44.725366175837777,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108491893472461,L, + 44261734750,40.747962607037479,L, + 46186158000,39.354440091816798,L, + 48110581250,37.929140121482682,L, + 50035004500,36.473227243288612,L, + 51959427750,34.987797702596374,L, + 53883851000,33.473940914578577,L, + 55808274250,31.932688237799908,L, + 57732697500,30.365067615730439,L, + 59657120750,28.772083086178164,L, + 61581544000,27.154728441667316,L, + 63505967250,25.514028210573404,L, + 65430390500,23.851012043913794,L, + 67354813750,22.166762526671938,L, + 69279237000,20.462444206101324,L, + 71203660250,18.739317252103813,L, + 73128083500,16.998793806290305,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472535331226100,L, + 78901353250,11.691309080601252,L, + 80825776500,9.902203352995159,L, + 82750199750,8.109934394029708,L, + 84674623000,6.321668779691525,L, + 86599046250,4.549403737257721,L, + 88523469500,2.816497233029234,L, + 90447892750,1.182278424570828,L, + 92372316000,0.000309185392319,L, + 94296739250,0.000001885382537,L, + 96221162500,1.237622166754893,L, + 98145585750,2.992587193794726,L, + 100070009000,4.887325212009499,L, + 101994432250,6.855267063314249,L, + 103918855500,8.869397641994320,L, + 105843278750,10.915502043726468,L, + 107767702000,12.984963984872733,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172640903687096,L, + 113540971750,19.283683328953046,L, + 115465395000,21.402727320831655,L, + 117389818250,23.527768218801526,L, + 119314241500,25.657098475570162,L, + 121238664750,27.789201789141817,L, + 123163088000,29.922659187716423,L, + 125087511250,32.056113171196444,L, + 127011934500,34.188211362126225,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442596177243068,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672668934009288,L, + 136634050750,44.773273122676180,L, + 138558474000,46.860346706597298,L, + 140482897250,48.929808647743563,L, + 142407320500,50.975918172117588,L, + 144331743750,52.990041920608490,L, + 146256167000,54.957990175215585,L, + 148180590250,56.852725632109419,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866314376941432,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709849569625966,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932197382440918,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291795516750327,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371721224226732,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507401765897882,L, + 223233097000,106.004802295823211,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389624313727097,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012767460081221,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126548082891425,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210407979329766,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814208029954443,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925306720802752,L, + 342547338500,59.865351320268466,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443353827371165 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.443353827371165,L, + 1924423250,-20.458231686930727,L, + 3848846500,-20.501316520215102,L, + 5773269750,-20.570496091223479,L, + 7697693000,-20.663912588501610,L, + 9622116250,-20.779935304385155,L, + 11546539500,-20.917090625560693,L, + 13470962750,-21.074075693444041,L, + 15395386000,-21.249710592856079,L, + 17319809250,-21.442931521833586,L, + 19244232500,-21.652782253892756,L, + 21168655750,-21.878373156894199,L, + 23093079000,-22.118913636441484,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923115477243265,L, + 30790772000,-23.216629196445798,L, + 32715195250,-23.521933529703052,L, + 34639618500,-23.838533288300198,L, + 36564041750,-24.165958896731802,L, + 38488465000,-24.503776637985560,L, + 40412888250,-24.851585238447743,L, + 42337311500,-25.208986839599195,L, + 44261734750,-25.575626271603074,L, + 46186158000,-25.951156902359006,L, + 48110581250,-26.335254297881413,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127901166154839,L, + 53883851000,-27.535854704900775,L, + 55808274250,-27.951198508328652,L, + 57732697500,-28.373650831135212,L, + 59657120750,-28.802931635564480,L, + 61581544000,-29.238786497069878,L, + 63505967250,-29.680928547706262,L, + 65430390500,-30.129084579906838,L, + 67354813750,-30.582964310631873,L, + 69279237000,-31.042243305895795,L, + 71203660250,-31.506597131713029,L, + 73128083500,-31.975646712584641,L, + 75052506750,-32.448927595647071,L, + 76976930000,-32.925913856334226,L, + 78901353250,-33.405925890823688,L, + 80825776500,-33.888065529239611,L, + 82750199750,-34.371045280923447,L, + 84674623000,-34.852962938191347,L, + 86599046250,-35.330560500809213,L, + 88523469500,-35.797537119267730,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556459928514265,L, + 94296739250,-36.556541890784302,L, + 96221162500,-36.223023753613063,L, + 98145585750,-35.750087795103717,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709160135406101,L, + 103918855500,-34.166382077538891,L, + 105843278750,-33.614991151128308,L, + 107767702000,-33.057306205397573,L, + 109692125250,-32.494874278193677,L, + 111616548500,-31.928795029973006,L, + 113540971750,-31.359901743814291,L, + 115465395000,-30.788853532972439,L, + 117389818250,-30.216193397486467,L, + 119314241500,-29.642372129841597,L, + 121238664750,-29.067799541388027,L, + 123163088000,-28.492866660455736,L, + 125087511250,-27.917938902165325,L, + 127011934500,-27.343373143900923,L, + 128936357750,-26.769553583803344,L, + 130860781000,-26.196883203033615,L, + 132785204250,-25.625838407286349,L, + 134709627500,-25.056946828674928,L, + 136634050750,-24.490867580454253,L, + 138558474000,-23.928433945703070,L, + 140482897250,-23.370752415066914,L, + 142407320500,-22.819354658467162,L, + 144331743750,-22.276586845883710,L, + 146256167000,-21.746251685136954,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762714689940285,L, + 152029436750,-20.429199967863628,L, + 153953860000,-20.429199967863628,L, + 155878283250,-20.421560401276981,L, + 157802706500,-20.389154568759899,L, + 159727129750,-20.328215620985134,L, + 161651553000,-20.237249454071744,L, + 163575976250,-20.114739766023984,L, + 165500399500,-19.958842405765960,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537329233970276,L, + 171273669250,-19.265552591801274,L, + 173198092500,-18.947796823687106,L, + 175122515750,-18.578937580202975,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660579372708352,L, + 180895785500,-17.092456190378556,L, + 182820208750,-16.184840162901054,L, + 184744632000,-14.682714224782744,L, + 186669055250,-12.614079590299696,L, + 188593478500,-10.056814076368283,L, + 190517901750,-7.148863598560472,L, + 192442325000,-4.084526975082158,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499713521931,L, + 198215594750,3.836405839329814,L, + 200140018000,5.470570006274860,L, + 202064441250,6.454279036861247,L, + 203988864500,6.778357852599547,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713146194612120,L, + 209762134250,6.632681016660785,L, + 211686557500,6.521288315260854,L, + 213610980750,6.379742889996298,L, + 215535404000,6.208854118283763,L, + 217459827250,6.009455710088813,L, + 219384250500,5.782418087643800,L, + 221308673750,5.528639420824579,L, + 223233097000,5.249042212055923,L, + 225157520250,4.944579272727050,L, + 227081943500,4.616223904794682,L, + 229006366750,4.264976304085404,L, + 230930790000,3.891859291427422,L, + 232855213250,3.497911909348224,L, + 234779636500,3.084192410282336,L, + 236704059750,2.651776335580624,L, + 238628483000,2.201754381076171,L, + 240552906250,1.735226740833877,L, + 242477329500,1.253306415523335,L, + 244401752750,0.757112488951368,L, + 246326176000,0.247773623197893,L, + 248250599250,-0.273580879326940,L, + 250175022500,-0.805817500705601,L, + 252099445750,-1.347804430567853,L, + 254023869000,-1.898408818006827,L, + 255948292250,-2.456505069191648,L, + 257872715500,-3.020971538994555,L, + 259797138750,-3.590694479694013,L, + 261721562000,-4.164571669512714,L, + 263645985250,-4.741510491626869,L, + 265570408500,-5.320430495487148,L, + 267494831750,-5.900269159790792,L, + 269419255000,-6.479974208518798,L, + 271343678250,-7.058522820842959,L, + 273268101500,-7.634891322161418,L, + 275192524750,-8.208102141649221,L, + 277116948000,-8.777176427820940,L, + 279041371250,-9.341166491929240,L, + 280965794500,-9.899149404662520,L, + 282890217750,-10.450227849918575,L, + 284814641000,-10.993526709709997,L, + 286739064250,-11.528192210390534,L, + 288663487500,-12.053403875486142,L, + 290587910750,-12.568363426637573,L, + 292512334000,-13.072303321336852,L, + 294436757250,-13.564478215190801,L, + 296361180500,-14.044178622299388,L, + 298285603750,-14.510706155819975,L, + 300210027000,-14.963409386460476,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232347543673011,L, + 307907720000,-16.623676401979157,L, + 309832143250,-16.998279834555262,L, + 311756566500,-17.355662652686497,L, + 313680989750,-17.695350158225544,L, + 315605413000,-18.016891558687188,L, + 317529836250,-18.319863382342884,L, + 319454259500,-18.603872893315362,L, + 321378682750,-18.868537601011099,L, + 323303106000,-19.113517703518887,L, + 325227529250,-19.338468276285642,L, + 327151952500,-19.543080253251418,L, + 329076375750,-19.727088964585885,L, + 331000799000,-19.890207542343894,L, + 332925222250,-20.032208882735546,L, + 334849645500,-20.152843683856140,L, + 336774068750,-20.251939483429126,L, + 338698492000,-20.329277715401069,L, + 340622915250,-20.384706408062936,L, + 342547338500,-20.418051391590890,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741421658681098 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-23.741421658681098,L, + 1924423250,-23.712960260409695,L, + 3848846500,-23.630538660147977,L, + 5773269750,-23.498186669506246,L, + 7697693000,-23.319459401947487,L, + 9622116250,-23.097485084111561,L, + 11546539500,-22.835060678463584,L, + 13470962750,-22.534679204050612,L, + 15395386000,-22.198604868582493,L, + 17319809250,-21.828852577864385,L, + 19244232500,-21.427271605614063,L, + 21168655750,-20.995542178367348,L, + 23093079000,-20.535187428309147,L, + 25017502250,-20.047622912144952,L, + 26941925500,-19.534134412986006,L, + 28866348750,-18.995903553558730,L, + 30790772000,-18.434050484886995,L, + 32715195250,-17.849584367420672,L, + 34639618500,-17.243461427643567,L, + 36564041750,-16.616566175053187,L, + 38488465000,-15.969725062539105,L, + 40412888250,-15.303720146761290,L, + 42337311500,-14.619294210791974,L, + 44261734750,-13.917114051848884,L, + 46186158000,-13.197847320923385,L, + 48110581250,-12.462113857682654,L, + 50035004500,-11.710509596131775,L, + 51959427750,-10.943580951404350,L, + 53883851000,-10.161894829201486,L, + 55808274250,-9.365973738994690,L, + 57732697500,-8.556326529877127,L, + 59657120750,-7.733471442452070,L, + 61581544000,-6.897904092321170,L, + 63505967250,-6.050131621030296,L, + 65430390500,-5.190670988522255,L, + 67354813750,-4.320063914175593,L, + 69279237000,-3.438883066663531,L, + 71203660250,-2.547740174803609,L, + 73128083500,-1.647338534636924,L, + 75052506750,-0.738485068980889,L, + 76976930000,0.177852643159242,L, + 78901353250,1.100451904540547,L, + 80825776500,2.027708354419802,L, + 82750199750,2.957318231354947,L, + 84674623000,3.885834210805833,L, + 86599046250,4.807460663818302,L, + 88523469500,5.710880393824482,L, + 90447892750,6.567331901116313,L, + 92372316000,7.204925791267856,L, + 94296739250,7.229659613799729,L, + 96221162500,6.588604525286287,L, + 98145585750,5.679580198179297,L, + 100070009000,4.698154158322983,L, + 101994432250,3.678812884610336,L, + 103918855500,2.635549727103401,L, + 105843278750,1.575720479373152,L, + 107767702000,0.503792405301890,L, + 109692125250,-0.577256639353972,L, + 111616548500,-1.665315912697489,L, + 113540971750,-2.758780000108594,L, + 115465395000,-3.856382435104780,L, + 117389818250,-4.957099009475665,L, + 119314241500,-6.060038383534562,L, + 121238664750,-7.164409962885045,L, + 123163088000,-8.269483344172745,L, + 125087511250,-9.374555871686798,L, + 127011934500,-10.478928304810928,L, + 128936357750,-11.581864690662064,L, + 130860781000,-12.682583826353886,L, + 132785204250,-13.780193518426065,L, + 134709627500,-14.873650455482883,L, + 136634050750,-15.961711543095399,L, + 138558474000,-17.042759733977615,L, + 140482897250,-18.114686207223290,L, + 142407320500,-19.174516415448892,L, + 144331743750,-20.217776584748066,L, + 146256167000,-21.237119139121180,L, + 148180590250,-22.218542190769732,L, + 150105013500,-23.127568652310838,L, + 152029436750,-23.768629717239804,L, + 153953860000,-23.768628009692513,L, + 155878283250,-23.769410066352478,L, + 157802706500,-23.772721000552636,L, + 159727129750,-23.778943302886507,L, + 161651553000,-23.788227237515834,L, + 163575976250,-23.800736728980695,L, + 165500399500,-23.816664730125144,L, + 167424822750,-23.836219561718860,L, + 169349246000,-23.859701752085332,L, + 171273669250,-23.887463055966808,L, + 173198092500,-23.919911577166200,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001113988661071,L, + 178971362250,-24.051358567742906,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184120369734838,L, + 184744632000,-24.283371556111444,L, + 186669055250,-24.405343366762065,L, + 188593478500,-24.545997452339932,L, + 190517901750,-24.698659010478668,L, + 192442325000,-24.854324144304915,L, + 194366748250,-25.002752692705538,L, + 196291171500,-25.134232126680804,L, + 198215594750,-25.241148492853444,L, + 200140018000,-25.318754809750310,L, + 202064441250,-25.365072030059395,L, + 203988864500,-25.380231634922215,L, + 205913287750,-25.379254917870902,L, + 207837711000,-25.376369162946578,L, + 209762134250,-25.371601690905916,L, + 211686557500,-25.365008850809570,L, + 213610980750,-25.356616255866928,L, + 215535404000,-25.346499038158864,L, + 217459827250,-25.334682810894758,L, + 219384250500,-25.321235875966313,L, + 221308673750,-25.306204337150429,L, + 223233097000,-25.289641128413173,L, + 225157520250,-25.271606013909782,L, + 227081943500,-25.252157050248197,L, + 229006366750,-25.231352294036370,L, + 230930790000,-25.209249801882237,L, + 232855213250,-25.185922998319384,L, + 234779636500,-25.161412864482831,L, + 236704059750,-25.135794532453442,L, + 238628483000,-25.109141426764797,L, + 240552906250,-25.081511604024843,L, + 242477329500,-25.052957998199645,L, + 244401752750,-25.023571109295709,L, + 246326176000,-24.993395333542637,L, + 248250599250,-24.962519463399637,L, + 250175022500,-24.930991310190905,L, + 252099445750,-24.898887713544596,L, + 254023869000,-24.866275267805126,L, + 255948292250,-24.833213737127728,L, + 257872715500,-24.799781668687856,L, + 259797138750,-24.766033703998872,L, + 261721562000,-24.732039852499767,L, + 263645985250,-24.697870123629535,L, + 265570408500,-24.663568913617780,L, + 267494831750,-24.629228430018298,L, + 269419255000,-24.594889653966106,L, + 271343678250,-24.560626009994788,L, + 273268101500,-24.526487016975821,L, + 275192524750,-24.492530731517149,L, + 277116948000,-24.458823747963187,L, + 279041371250,-24.425413877638118,L, + 280965794500,-24.392357469602594,L, + 282890217750,-24.359719410653735,L, + 284814641000,-24.327537266831975,L, + 286739064250,-24.295870802292548,L, + 288663487500,-24.264757583075891,L, + 290587910750,-24.234253958242657,L, + 292512334000,-24.204402616475161,L, + 294436757250,-24.175253076644882,L, + 296361180500,-24.146839489697669,L, + 298285603750,-24.119201129221253,L, + 300210027000,-24.092385806539820,L, + 302134450250,-24.066429380146516,L, + 304058873500,-24.041362585892607,L, + 305983296750,-24.017222989818524,L, + 307907720000,-23.994044742870120,L, + 309832143250,-23.971858580898655,L, + 311756566500,-23.950683286924356,L, + 313680989750,-23.930564964724113,L, + 315605413000,-23.911520689770850,L, + 317529836250,-23.893570952632082,L, + 319454259500,-23.876753319348243,L, + 321378682750,-23.861072912561209,L, + 323303106000,-23.846563883216831,L, + 325227529250,-23.833238184146154,L, + 327151952500,-23.821118013463984,L, + 329076375750,-23.810217031548660,L, + 331000799000,-23.800555728967691,L, + 332925222250,-23.792139228362956,L, + 334849645500,-23.784999973133008,L, + 336774068750,-23.779129425541392,L, + 338698492000,-23.774542953513734,L, + 340622915250,-23.771266170259427,L, + 342547338500,-23.769287122947418,L, + 344471761750,-23.768628009692513,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941902161 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941902161,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853179133,L, + 5773269750,0.000044747303036,L, + 7697693000,0.000044604312279,L, + 9622116250,0.000044426742534,L, + 11546539500,0.000044216820243,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707721488,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377363570,L, + 25017502250,0.000041987466830,L, + 26941925500,0.000041576855438,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229970182,L, + 34639618500,0.000039745398681,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727201172,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647849240,L, + 44261734750,0.000037086694647,L, + 46186158000,0.000036511923099,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323544580,L, + 51959427750,0.000034710868931,L, + 53883851000,0.000034086471715,L, + 55808274250,0.000033450774936,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147163438,L, + 61581544000,0.000031480074540,L, + 63505967250,0.000030803363188,L, + 65430390500,0.000030117445931,L, + 67354813750,0.000029422768421,L, + 69279237000,0.000028719818147,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291232982,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836821806,L, + 78901353250,0.000025102157451,L, + 80825776500,0.000024364244382,L, + 82750199750,0.000023625036192,L, + 84674623000,0.000022887483283,L, + 86599046250,0.000022156531486,L, + 88523469500,0.000021441828721,L, + 90447892750,0.000020767845854,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565656304359,L, + 98145585750,0.245429649949074,L, + 100070009000,0.254731357097626,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518353700638,L, + 107767702000,0.278088837862015,L, + 109692125250,0.282116115093231,L, + 111616548500,0.285697191953659,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787862777710,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296752959489822,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840169191360,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681258440018,L, + 130860781000,0.307010620832443,L, + 132785204250,0.308217525482178,L, + 134709627500,0.309312194585800,L, + 136634050750,0.310304522514343,L, + 138558474000,0.311203896999359,L, + 140482897250,0.312020331621170,L, + 142407320500,0.312765032052994,L, + 144331743750,0.313452154397964,L, + 146256167000,0.314102560281754,L, + 148180590250,0.314752727746964,L, + 150105013500,0.315492540597916,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999119758606,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450148105621,L, + 163575976250,0.323262542486191,L, + 165500399500,0.322943329811096,L, + 167424822750,0.322556525468826,L, + 169349246000,0.322150528430939,L, + 171273669250,0.321765393018723,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198940277100,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136683225632,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961014747620,L, + 184744632000,0.351049661636353,L, + 186669055250,0.387221634387970,L, + 188593478500,0.435898780822754,L, + 190517901750,0.494094938039780,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323114871979,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784998953342438,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418446063995,L, + 209762134250,0.788208425045013,L, + 211686557500,0.785149097442627,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568055152893,L, + 217459827250,0.771091759204865,L, + 219384250500,0.764856100082397,L, + 221308673750,0.757886111736298,L, + 223233097000,0.750207126140594,L, + 225157520250,0.741845011711121,L, + 227081943500,0.732826888561249,L, + 229006366750,0.723180115222931,L, + 230930790000,0.712932407855988,L, + 232855213250,0.702112674713135,L, + 234779636500,0.690750002861023,L, + 236704059750,0.678873777389526,L, + 238628483000,0.666513979434967,L, + 240552906250,0.653700828552246,L, + 242477329500,0.640465080738068,L, + 244401752750,0.626837253570557,L, + 246326176000,0.612848341464996,L, + 248250599250,0.598529398441315,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026112556458,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523072898387909,L, + 259797138750,0.507425606250763,L, + 261721562000,0.491664141416550,L, + 263645985250,0.475818723440170,L, + 265570408500,0.459918767213821,L, + 267494831750,0.443993657827377,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182450294495,L, + 273268101500,0.396352589130402,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980041980743,L, + 279041371250,0.349490106105804,L, + 280965794500,0.334165245294571,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108411073685,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855823755264,L, + 292512334000,0.247015208005905,L, + 294436757250,0.233497738838196,L, + 296361180500,0.220322877168655,L, + 298285603750,0.207509815692902,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040350675583,L, + 304058873500,0.171418070793152,L, + 305983296750,0.160225316882133,L, + 307907720000,0.149477645754814,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373729228973,L, + 313680989750,0.120044343173504,L, + 315605413000,0.111213266849518,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091879367828,L, + 321378682750,0.087822906672955,L, + 323303106000,0.081094801425934,L, + 325227529250,0.074916541576385,L, + 327151952500,0.069296777248383,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763070195913,L, + 332925222250,0.055863019078970,L, + 334849645500,0.052549600601196,L, + 336774068750,0.049828283488750,L, + 338698492000,0.047704100608826,L, + 340622915250,0.046181913465261,L, + 342547338500,0.045265793800354,L, + 344471761750,0.044959720224142,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520820706 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520820706,L, + 1924423250,0.000028513211873,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455800930,L, + 7697693000,0.000028408019716,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278542231,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009615562,L, + 19244232500,0.000027902298825,L, + 21168655750,0.000027786923965,L, + 23093079000,0.000027663911169,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396428777,L, + 28866348750,0.000027252626751,L, + 30790772000,0.000027102518288,L, + 32715195250,0.000026946383514,L, + 34639618500,0.000026784467991,L, + 36564041750,0.000026617015465,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266372515,L, + 42337311500,0.000026083591365,L, + 44261734750,0.000025896091756,L, + 46186158000,0.000025704039217,L, + 48110581250,0.000025507604732,L, + 50035004500,0.000025306953830,L, + 51959427750,0.000025102235668,L, + 53883851000,0.000024893599402,L, + 55808274250,0.000024681188734,L, + 57732697500,0.000024465140086,L, + 59657120750,0.000024245600798,L, + 61581544000,0.000024022700018,L, + 63505967250,0.000023796586902,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100392355,L, + 71203660250,0.000022862914193,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891592041,L, + 80825776500,0.000021645026209,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151581677,L, + 86599046250,0.000020907342332,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443329049,L, + 92372316000,0.000020280478566,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919052243233,L, + 98145585750,0.245930269360542,L, + 100070009000,0.255280971527100,L, + 101994432250,0.262665122747421,L, + 103918855500,0.268771320581436,L, + 105843278750,0.273961156606674,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868585109711,L, + 113540971750,0.288967877626419,L, + 115465395000,0.291741728782654,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479731798172,L, + 121238664750,0.298507750034332,L, + 123163088000,0.300342172384262,L, + 125087511250,0.302003294229507,L, + 127011934500,0.303509086370468,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115329265594,L, + 132785204250,0.307243049144745,L, + 134709627500,0.308270871639252,L, + 136634050750,0.309211045503616,L, + 138558474000,0.310076832771301,L, + 140482897250,0.310882627964020,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149750232697,L, + 148180590250,0.313986361026764,L, + 150105013500,0.315037339925766,L, + 152029436750,0.316851377487183,L, + 153953860000,0.316844642162323,L, + 155878283250,0.317553371191025,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131357431412,L, + 161651553000,0.317930340766907,L, + 163575976250,0.317365020513535,L, + 165500399500,0.316432684659958,L, + 167424822750,0.315173476934433,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128514051437,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460788965225,L, + 177046939000,0.308580905199051,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893604040146,L, + 182820208750,0.314244985580444,L, + 184744632000,0.333418726921082,L, + 186669055250,0.365034848451614,L, + 188593478500,0.407707005739212,L, + 190517901750,0.458806812763214,L, + 192442325000,0.514501154422760,L, + 194366748250,0.570195436477661,L, + 196291171500,0.621295273303986,L, + 198215594750,0.663967430591583,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757263660431,L, + 203988864500,0.721108675003052,L, + 205913287750,0.720690727233887,L, + 207837711000,0.719448864459991,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565575122833,L, + 213610980750,0.710962712764740,L, + 215535404000,0.706613302230835,L, + 217459827250,0.701537966728210,L, + 219384250500,0.695759356021881,L, + 221308673750,0.689299941062927,L, + 223233097000,0.682183444499969,L, + 225157520250,0.674434006214142,L, + 227081943500,0.666076421737671,L, + 229006366750,0.657136321067810,L, + 230930790000,0.647639453411102,L, + 232855213250,0.637612402439117,L, + 234779636500,0.627082169055939,L, + 236704059750,0.616075992584229,L, + 238628483000,0.604621648788452,L, + 240552906250,0.592747330665588,L, + 242477329500,0.580481171607971,L, + 244401752750,0.567851662635803,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617691516876,L, + 250175022500,0.528070867061615,L, + 252099445750,0.514275789260864,L, + 254023869000,0.500261425971985,L, + 255948292250,0.486056387424469,L, + 257872715500,0.471689194440842,L, + 259797138750,0.457188189029694,L, + 261721562000,0.442581444978714,L, + 263645985250,0.427896797657013,L, + 265570408500,0.413161695003510,L, + 267494831750,0.398403316736221,L, + 269419255000,0.383648186922073,L, + 271343678250,0.368922621011734,L, + 273268101500,0.354252457618713,L, + 275192524750,0.339662700891495,L, + 277116948000,0.325178235769272,L, + 279041371250,0.310823112726212,L, + 280965794500,0.296620935201645,L, + 282890217750,0.282594442367554,L, + 284814641000,0.268766045570374,L, + 286739064250,0.255157351493835,L, + 288663487500,0.241789326071739,L, + 290587910750,0.228682175278664,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328356146812,L, + 296361180500,0.191118672490120,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721793055534,L, + 302134450250,0.156567439436913,L, + 304058873500,0.145796641707420,L, + 305983296750,0.135423943400383,L, + 307907720000,0.125463590025902,L, + 309832143250,0.115928873419762,L, + 311756566500,0.106832444667816,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002477169037,L, + 317529836250,0.082290872931480,L, + 319454259500,0.075062148272991,L, + 321378682750,0.068325690925121,L, + 323303106000,0.062090389430523,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156755536795,L, + 329076375750,0.046473439782858,L, + 331000799000,0.042321559041739,L, + 332925222250,0.038707252591848,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114545047283,L, + 338698492000,0.031146047636867,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886197134852,L, + 344471761750,0.028602685779333,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378902435 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378902435,L, + 1924423250,0.000042358493374,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204523197,L, + 7697693000,0.000042076400860,L, + 9622116250,0.000041917282942,L, + 11546539500,0.000041729173972,L, + 13470962750,0.000041513871111,L, + 15395386000,0.000041272985982,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720184188,L, + 21168655750,0.000040410781367,L, + 23093079000,0.000040080889448,L, + 25017502250,0.000039731516154,L, + 26941925500,0.000039363570977,L, + 28866348750,0.000038977937947,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156667870,L, + 34639618500,0.000037722456909,L, + 36564041750,0.000037273399357,L, + 38488465000,0.000036810080928,L, + 40412888250,0.000036333076423,L, + 42337311500,0.000035842902435,L, + 44261734750,0.000035340064642,L, + 46186158000,0.000034825028706,L, + 48110581250,0.000034298249375,L, + 50035004500,0.000033760159567,L, + 51959427750,0.000033211159462,L, + 53883851000,0.000032651645597,L, + 55808274250,0.000032082018151,L, + 57732697500,0.000031502637285,L, + 59657120750,0.000030913884984,L, + 61581544000,0.000030316128687,L, + 63505967250,0.000029709744922,L, + 65430390500,0.000029095113860,L, + 67354813750,0.000028472633858,L, + 69279237000,0.000027842737836,L, + 71203660250,0.000027205891456,L, + 73128083500,0.000026562618586,L, + 75052506750,0.000025913530408,L, + 76976930000,0.000025259367249,L, + 78901353250,0.000024601053155,L, + 80825776500,0.000023939830498,L, + 82750199750,0.000023277445507,L, + 84674623000,0.000022616544811,L, + 86599046250,0.000021961557650,L, + 88523469500,0.000021321131499,L, + 90447892750,0.000020717197913,L, + 92372316000,0.000020280478566,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232568234205246,L, + 98145585750,0.245435789227486,L, + 100070009000,0.254741221666336,L, + 101994432250,0.262134075164795,L, + 103918855500,0.268283218145370,L, + 105843278750,0.273539334535599,L, + 107767702000,0.278113335371017,L, + 109692125250,0.282144099473953,L, + 111616548500,0.285728573799133,L, + 113540971750,0.288937777280807,L, + 115465395000,0.291825532913208,L, + 117389818250,0.294433921575546,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940449953079,L, + 123163088000,0.300888657569885,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304270982742310,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066202163696,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369504451752,L, + 136634050750,0.310361951589584,L, + 138558474000,0.311260908842087,L, + 140482897250,0.312076240777969,L, + 142407320500,0.312819033861160,L, + 144331743750,0.313503116369247,L, + 146256167000,0.314148753881454,L, + 148180590250,0.314791947603226,L, + 150105013500,0.315520197153091,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319212555885315,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968772888184,L, + 159727129750,0.318790256977081,L, + 161651553000,0.318605095148087,L, + 163575976250,0.318420708179474,L, + 165500399500,0.318241685628891,L, + 167424822750,0.318071454763412,L, + 169349246000,0.317913055419922,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642748355865,L, + 175122515750,0.317536920309067,L, + 177046939000,0.317455202341080,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382931709290,L, + 182820208750,0.324425876140594,L, + 184744632000,0.345687210559845,L, + 186669055250,0.380745738744736,L, + 188593478500,0.428063988685608,L, + 190517901750,0.484727591276169,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244240283966,L, + 196291171500,0.664907813072205,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284650802612,L, + 202064441250,0.768545866012573,L, + 203988864500,0.775588870048523,L, + 205913287750,0.775146484375000,L, + 207837711000,0.773831486701965,L, + 209762134250,0.771663069725037,L, + 211686557500,0.768661379814148,L, + 213610980750,0.764846980571747,L, + 215535404000,0.760241687297821,L, + 217459827250,0.754868268966675,L, + 219384250500,0.748750030994415,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376370906830,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323005199432,L, + 229006366750,0.707857489585876,L, + 230930790000,0.697802543640137,L, + 232855213250,0.687186241149902,L, + 234779636500,0.676037251949310,L, + 236704059750,0.664384245872498,L, + 238628483000,0.652257025241852,L, + 240552906250,0.639684796333313,L, + 242477329500,0.626697838306427,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600434303284,L, + 248250599250,0.585550665855408,L, + 250175022500,0.571207880973816,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764199733734,L, + 255948292250,0.526724457740784,L, + 257872715500,0.511513054370880,L, + 259797138750,0.496159940958023,L, + 261721562000,0.480694830417633,L, + 263645985250,0.465147346258163,L, + 265570408500,0.449546307325363,L, + 267494831750,0.433920741081238,L, + 269419255000,0.418298542499542,L, + 271343678250,0.402707636356354,L, + 273268101500,0.387175440788269,L, + 275192524750,0.371728301048279,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194123029709,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665698289871,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103718757629,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240646004676819,L, + 294436757250,0.227382689714432,L, + 296361180500,0.214455604553223,L, + 298285603750,0.201883479952812,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874028682709,L, + 304058873500,0.166470348834991,L, + 305983296750,0.155488073825836,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847342967987,L, + 311756566500,0.125216528773308,L, + 313680989750,0.116062454879284,L, + 315605413000,0.107397489249706,L, + 317529836250,0.099232859909534,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446899592876,L, + 323303106000,0.077845335006714,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310529708862,L, + 331000799000,0.056914687156677,L, + 332925222250,0.053088184446096,L, + 334849645500,0.049837112426758,L, + 336774068750,0.047166701406240,L, + 338698492000,0.045082446187735,L, + 340622915250,0.043588876724243,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389750480652,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_078" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 120 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.012301921844482,L, + 3848846500,-0.010393023490906,L, + 7697693000,-0.006574749946594,L, + 9622116250,-0.004665851593018,L, + 11546539500,-0.002756714820862,L, + 13470962750,-0.000847697257996,L, + 15395386000,0.001060962677002,L, + 19244232500,0.004879236221313,L, + 21168655750,0.006788134574890,L, + 23093079000,0.008697271347046,L, + 25017502250,0.010606169700623,L, + 26941925500,0.012515187263489,L, + 28866348750,0.014424324035645,L, + 30790772000,0.016333341598511,L, + 32715195250,0.018242120742798,L, + 34639618500,0.020151019096375,L, + 36564041750,0.022060155868530,L, + 38488465000,0.023969173431396,L, + 40412888250,0.025878071784973,L, + 42337311500,0.027787327766418,L, + 44261734750,0.029696345329285,L, + 46186158000,0.031605243682861,L, + 48110581250,0.033514380455017,L, + 50035004500,0.035423159599304,L, + 51959427750,0.037332057952881,L, + 53883851000,0.039241313934326,L, + 55808274250,0.041150331497192,L, + 57732697500,0.043059229850769,L, + 59657120750,0.044968366622925,L, + 61581544000,0.046877384185791,L, + 63505967250,0.048786282539368,L, + 65430390500,0.050695538520813,L, + 67354813750,0.052604556083679,L, + 69279237000,0.054513216018677,L, + 71203660250,0.056422352790833,L, + 73128083500,0.058331251144409,L, + 76976930000,0.062149286270142,L, + 78901353250,0.064058423042297,L, + 80825776500,0.065967440605164,L, + 82750199750,0.067876100540161,L, + 84674623000,0.069785475730896,L, + 86599046250,0.071694254875183,L, + 88523469500,0.073603272438049,L, + 90447892750,0.075512409210205,L, + 92372316000,0.077421426773071,L, + 94296739250,0.079330325126648,L, + 96221162500,0.081239461898804,L, + 98145585750,0.081239700317383,L, + 100070009000,0.081239342689514,L, + 101994432250,0.081239342689514,L, + 103918855500,0.081239223480225,L, + 105843278750,0.081239461898804,L, + 107767702000,0.081239461898804,L, + 109692125250,0.081239581108093,L, + 111616548500,0.081239461898804,L, + 113540971750,0.081239461898804,L, + 115465395000,0.081239223480225,L, + 117389818250,0.081239342689514,L, + 121238664750,0.081239342689514,L, + 123163088000,0.081239461898804,L, + 125087511250,0.081239461898804,L, + 127011934500,0.081239581108093,L, + 128936357750,0.081239581108093,L, + 130860781000,0.081239342689514,L, + 132785204250,0.081239223480225,L, + 134709627500,0.081239342689514,L, + 138558474000,0.081239342689514,L, + 140482897250,0.081239461898804,L, + 142407320500,0.081239461898804,L, + 144331743750,0.081239223480225,L, + 146256167000,0.081239342689514,L, + 148180590250,0.081239342689514,L, + 150105013500,0.081239223480225,L, + 152029436750,0.081239461898804,L, + 153953860000,0.081066370010376,L, + 155878283250,0.080893039703369,L, + 157802706500,0.080719828605652,L, + 161651553000,0.080373167991638,L, + 163575976250,0.080200076103210,L, + 165500399500,0.080026865005493,L, + 167424822750,0.079853296279907,L, + 173198092500,0.079334020614624,L, + 175122515750,0.079160571098328,L, + 178971362250,0.078814387321472,L, + 180895785500,0.078640818595886,L, + 182820208750,0.078467726707458,L, + 184744632000,0.078294515609741,L, + 186669055250,0.078121185302734,L, + 190517901750,0.077775001525879,L, + 192442325000,0.077601313591003,L, + 198215594750,0.077082037925720,L, + 200140018000,0.076908707618713,L, + 202064441250,0.076735496520996,L, + 205913287750,0.076388835906982,L, + 207837711000,0.076215744018555,L, + 209762134250,0.072737693786621,L, + 211686557500,0.069259881973267,L, + 215535404000,0.062304019927979,L, + 217459827250,0.058825969696045,L, + 219384250500,0.055347800254822,L, + 221308673750,0.051870346069336,L, + 225157520250,0.044914007186890,L, + 227081943500,0.041436076164246,L, + 229006366750,0.037958383560181,L, + 230930790000,0.034480333328247,L, + 232855213250,0.031002402305603,L, + 234779636500,0.027524352073669,L, + 236704059750,0.024046659469604,L, + 238628483000,0.020568609237671,L, + 242477329500,0.013612747192383,L, + 244401752750,0.010134458541870,L, + 246326176000,0.006657004356384,L, + 248250599250,0.003178715705872,L, + 250175022500,-0.000299215316772,L, + 252099445750,-0.003777265548706,L, + 254023869000,-0.007254958152771,L, + 257872715500,-0.014210820198059,L, + 259797138750,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013481914997101 + KeyVer: 4005 + KeyCount: 118 + Key: + 0,0.013481914997101,L, + 1924423250,0.014848709106445,L, + 3848846500,0.016215920448303,L, + 5773269750,0.017582595348358,L, + 7697693000,0.018949389457703,L, + 9622116250,0.020316600799561,L, + 11546539500,0.021683275699615,L, + 13470962750,0.023050546646118,L, + 15395386000,0.024417281150818,L, + 17319809250,0.025783956050873,L, + 19244232500,0.027151226997375,L, + 21168655750,0.028518438339233,L, + 23093079000,0.029884636402130,L, + 26941925500,0.032619059085846,L, + 28866348750,0.033985316753387,L, + 34639618500,0.038086950778961,L, + 36564041750,0.039453148841858,L, + 38488465000,0.040820419788361,L, + 40412888250,0.042187631130219,L, + 42337311500,0.043553829193115,L, + 44261734750,0.044921100139618,L, + 46186158000,0.046288311481476,L, + 48110581250,0.047654986381531,L, + 50035004500,0.049021780490875,L, + 51959427750,0.050388991832733,L, + 53883851000,0.051755666732788,L, + 55808274250,0.053122460842133,L, + 57732697500,0.054489672183990,L, + 59657120750,0.055856347084045,L, + 61581544000,0.057223618030548,L, + 63505967250,0.058590352535248,L, + 65430390500,0.059957027435303,L, + 67354813750,0.061324298381805,L, + 69279237000,0.062691032886505,L, + 71203660250,0.064057707786560,L, + 73128083500,0.065424919128418,L, + 75052506750,0.066792190074921,L, + 76976930000,0.068158864974976,L, + 78901353250,0.069525599479675,L, + 80825776500,0.070892810821533,L, + 84674623000,0.073626279830933,L, + 88523469500,0.076360702514648,L, + 90447892750,0.077726900577545,L, + 92372316000,0.079094171524048,L, + 94296739250,0.080461382865906,L, + 96221162500,0.081827580928802,L, + 98145585750,0.078541576862335,L, + 100070009000,0.075256049633026,L, + 101994432250,0.071969985961914,L, + 103918855500,0.068683981895447,L, + 105843278750,0.065397500991821,L, + 107767702000,0.062111377716064,L, + 111616548500,0.055539369583130,L, + 113540971750,0.052253305912018,L, + 115465395000,0.048967778682709,L, + 117389818250,0.045681297779083,L, + 119314241500,0.042395174503326,L, + 123163088000,0.035823166370392,L, + 125087511250,0.032537102699280,L, + 127011934500,0.029250621795654,L, + 128936357750,0.025964617729187,L, + 130860781000,0.022678971290588,L, + 134709627500,0.016106963157654,L, + 136634050750,0.012820422649384,L, + 140482897250,0.006248414516449,L, + 142407320500,0.002962291240692,L, + 144331743750,-0.000323235988617,L, + 146256167000,-0.003609716892242,L, + 148180590250,-0.006895780563354,L, + 152029436750,-0.013467788696289,L, + 153953860000,-0.012369155883789,L, + 155878283250,-0.011269509792328,L, + 157802706500,-0.010170400142670,L, + 159727129750,-0.009071707725525,L, + 161651553000,-0.007972061634064,L, + 163575976250,-0.006873369216919,L, + 165500399500,-0.005774319171906,L, + 169349246000,-0.003575980663300,L, + 171273669250,-0.002477288246155,L, + 173198092500,-0.001378118991852,L, + 175122515750,-0.000279068946838,L, + 182820208750,0.004117608070374,L, + 184744632000,0.005216181278229,L, + 186669055250,0.006315827369690,L, + 188593478500,0.007414519786835,L, + 190517901750,0.008513689041138,L, + 192442325000,0.009612739086151,L, + 194366748250,0.010711908340454,L, + 196291171500,0.011810600757599,L, + 198215594750,0.012909770011902,L, + 200140018000,0.014009416103363,L, + 202064441250,0.015107989311218,L, + 207837711000,0.018405497074127,L, + 209762134250,0.019504606723785,L, + 211686557500,0.020603239536285,L, + 213610980750,0.021702349185944,L, + 215535404000,0.022801518440247,L, + 217459827250,0.023900628089905,L, + 221308673750,0.026098966598511,L, + 223233097000,0.027198076248169,L, + 225157520250,0.028297126293182,L, + 227081943500,0.029396295547485,L, + 229006366750,0.030494928359985,L, + 232855213250,0.032693266868591,L, + 234779636500,0.033792316913605,L, + 236704059750,0.034890949726105,L, + 238628483000,0.035990595817566,L, + 240552906250,0.037089765071869,L, + 242477329500,0.038188874721527,L, + 244401752750,0.039288043975830,L, + 246326176000,0.040386676788330,L, + 250175022500,0.042584896087646,L, + 252099445750,0.043684065341949,L, + 254023869000,0.044783174991608,L, + 255948292250,0.045882344245911,L, + 257872715500,0.046981453895569,L, + 259797138750,0.013481914997101,L, + 344471761750,0.013481914997101,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323318481445 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323318481445,L, + 1924423250,-0.023415327072144,L, + 3848846500,-0.020337581634521,L, + 5773269750,-0.017082929611206,L, + 7697693000,-0.013643264770508,L, + 9622116250,-0.010010957717896,L, + 11546539500,-0.006176233291626,L, + 13470962750,-0.002130270004272,L, + 15395386000,0.002137184143066,L, + 17319809250,0.006637096405029,L, + 19244232500,0.011380910873413,L, + 21168655750,0.016381740570068,L, + 23093079000,0.021652936935425,L, + 25017502250,0.027209043502808,L, + 26941925500,0.033066272735596,L, + 28866348750,0.039241790771484,L, + 30790772000,0.045753717422485,L, + 32715195250,0.052623271942139,L, + 34639618500,0.059871912002563,L, + 36564041750,0.067523002624512,L, + 38488465000,0.075603961944580,L, + 40412888250,0.084141731262207,L, + 42337311500,0.093168258666992,L, + 44261734750,0.102715969085693,L, + 46186158000,0.112821340560913,L, + 48110581250,0.123523712158203,L, + 50035004500,0.134864330291748,L, + 51959427750,0.146887063980103,L, + 53883851000,0.159638643264771,L, + 55808274250,0.173165798187256,L, + 57732697500,0.187515258789062,L, + 59657120750,0.202729940414429,L, + 61581544000,0.218845844268799,L, + 63505967250,0.235886573791504,L, + 65430390500,0.253855466842651,L, + 67354813750,0.272726774215698,L, + 69279237000,0.292433977127075,L, + 71203660250,0.312859535217285,L, + 73128083500,0.333828926086426,L, + 75052506750,0.355108976364136,L, + 76976930000,0.376419067382812,L, + 78901353250,0.397454738616943,L, + 80825776500,0.417917013168335,L, + 82750199750,0.437542438507080,L, + 84674623000,0.456126213073730,L, + 86599046250,0.473530292510986,L, + 88523469500,0.489682197570801,L, + 90447892750,0.504563808441162,L, + 92372316000,0.518197774887085,L, + 94296739250,0.530634641647339,L, + 96221162500,0.541941881179810,L, + 98145585750,0.552702665328979,L, + 100070009000,0.563450098037720,L, + 101994432250,0.574181556701660,L, + 103918855500,0.584893226623535,L, + 105843278750,0.595581769943237,L, + 107767702000,0.606242895126343,L, + 109692125250,0.616872310638428,L, + 111616548500,0.627465724945068,L, + 113540971750,0.638018369674683,L, + 115465395000,0.648525476455688,L, + 117389818250,0.658982515335083,L, + 119314241500,0.669385194778442,L, + 121238664750,0.679729223251343,L, + 123163088000,0.690011978149414,L, + 125087511250,0.700230360031128,L, + 127011934500,0.710382223129272,L, + 128936357750,0.720466852188110,L, + 130860781000,0.730484247207642,L, + 132785204250,0.740434646606445,L, + 134709627500,0.750319957733154,L, + 136634050750,0.760141849517822,L, + 138558474000,0.769903182983398,L, + 140482897250,0.779606819152832,L, + 142407320500,0.789255857467651,L, + 144331743750,0.798854112625122,L, + 146256167000,0.808405160903931,L, + 148180590250,0.817911386489868,L, + 150105013500,0.827377557754517,L, + 152029436750,0.836806297302246,L, + 153953860000,0.846144199371338,L, + 155878283250,0.855335950851440,L, + 157802706500,0.864380836486816,L, + 159727129750,0.873280048370361,L, + 161651553000,0.882037639617920,L, + 163575976250,0.890656948089600,L, + 165500399500,0.899146080017090,L, + 167424822750,0.907514095306396,L, + 169349246000,0.915773391723633,L, + 171273669250,0.923939228057861,L, + 173198092500,0.932028293609619,L, + 175122515750,0.940061569213867,L, + 177046939000,0.948060274124146,L, + 178971362250,0.956047773361206,L, + 180895785500,0.964049100875854,L, + 182820208750,0.972087621688843,L, + 184744632000,0.980187654495239,L, + 186669055250,0.988371133804321,L, + 188593478500,0.996658086776733,L, + 190517901750,1.005066871643066,L, + 192442325000,1.013611555099487,L, + 194366748250,1.022304534912109,L, + 196291171500,1.031154870986938,L, + 198215594750,1.040169715881348,L, + 200140018000,1.049351930618286,L, + 202064441250,1.058705091476440,L, + 203988864500,1.068228244781494,L, + 205913287750,1.077919960021973,L, + 207837711000,1.087778091430664,L, + 209762134250,1.097881078720093,L, + 211686557500,1.108280420303345,L, + 213610980750,1.118937969207764,L, + 215535404000,1.129822015762329,L, + 217459827250,1.140905618667603,L, + 219384250500,1.152165412902832,L, + 221308673750,1.163581371307373,L, + 223233097000,1.175134420394897,L, + 225157520250,1.186808347702026,L, + 227081943500,1.198587417602539,L, + 229006366750,1.210457324981689,L, + 230930790000,1.222403287887573,L, + 232855213250,1.234411239624023,L, + 234779636500,1.246466159820557,L, + 236704059750,1.258552789688110,L, + 238628483000,1.270654439926147,L, + 240552906250,1.282752037048340,L, + 242477329500,1.294822216033936,L, + 244401752750,1.306837558746338,L, + 246326176000,1.318760871887207,L, + 248250599250,1.330542564392090,L, + 250175022500,1.342109203338623,L, + 252099445750,1.353339672088623,L, + 254023869000,1.364011764526367,L, + 255948292250,1.373597145080566,L, + 257872715500,1.379659175872803,L, + 259797138750,-0.513281345367432,L, + 261721562000,-0.026323318481445,L, + 344471761750,-0.026323318481445,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802668840238027 + KeyVer: 4005 + KeyCount: 121 + Key: + 0,34.802668840238027,L, + 1924423250,35.280747931192380,L, + 3848846500,35.758840682525076,L, + 5773269750,36.236923188574018,L, + 9622116250,37.193101861050238,L, + 11546539500,37.671184367099180,L, + 13470962750,38.149270288242704,L, + 15395386000,38.627352794291646,L, + 17319809250,39.105445545624342,L, + 23093079000,40.539703309054921,L, + 25017502250,41.017792645293028,L, + 26941925500,41.495878566436552,L, + 30790772000,42.452043578534436,L, + 32715195250,42.930136329867132,L, + 34639618500,43.408218835916074,L, + 36564041750,43.886311587248770,L, + 38488465000,44.364394093297712,L, + 42337311500,45.320565935584760,L, + 44261734750,45.798648441633702,L, + 46186158000,46.276737777871809,L, + 50035004500,47.232909620158864,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189088292635084,L, + 55808274250,48.667170798684026,L, + 57732697500,49.145256719827550,L, + 59657120750,49.623349471160246,L, + 65430390500,51.057607234590819,L, + 67354813750,51.535689740639761,L, + 69279237000,52.013779076877874,L, + 71203660250,52.491861582926816,L, + 75052506750,53.448033425213865,L, + 76976930000,53.926122761451978,L, + 78901353250,54.404205267500913,L, + 80825776500,54.882291188644444,L, + 84674623000,55.838469861120664,L, + 88523469500,56.794641703407713,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750813545694768,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531686417508361,L, + 113540971750,63.009772338651885,L, + 115465395000,63.487851429606245,L, + 117389818250,63.965944180938941,L, + 119314241500,64.444030102082465,L, + 121238664750,64.922109193036817,L, + 125087511250,65.878281035323866,L, + 127011934500,66.356366956467397,L, + 128936357750,66.834452877610914,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683052739043305,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 169349246000,69.172290026719523,L, + 171273669250,68.794607886375047,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 194366748250,64.262347070160388,L, + 196291171500,63.884664929815905,L, + 202064441250,62.751598018214949,L, + 203988864500,62.373915877870466,L, + 205913287750,61.996220077147640,L, + 217459827250,59.730086253945728,L, + 219384250500,59.352404113601246,L, + 225157520250,58.219337202000290,L, + 227081943500,57.841655061655807,L, + 229006366750,57.463959260932981,L, + 230930790000,57.086273705493916,L, + 232855213250,56.708584734960262,L, + 234779636500,56.330892349332025,L, + 236704059750,55.953206793892960,L, + 238628483000,55.575517823359306,L, + 240552906250,55.197832267920241,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442457741947514,L, + 246326176000,54.064761941224695,L, + 248250599250,53.687076385785630,L, + 254023869000,52.554009474184667,L, + 255948292250,52.176323918745602,L, + 257872715500,51.798634948211948,L, + 259797138750,34.802665425143438,L, + 261721562000,34.802668840238027,L, + 263645985250,34.802665425143438,L, + 267494831750,34.802665425143438,L, + 269419255000,34.802668840238027,L, + 271343678250,34.802665425143438,L, + 273268101500,34.802665425143438,L, + 275192524750,34.802662010048856,L, + 277116948000,34.802662010048856,L, + 279041371250,34.802668840238027,L, + 280965794500,34.802662010048856,L, + 282890217750,34.802662010048856,L, + 284814641000,34.802665425143438,L, + 286739064250,34.802665425143438,L, + 288663487500,34.802668840238027,L, + 292512334000,34.802662010048856,L, + 294436757250,34.802662010048856,L, + 296361180500,34.802665425143438,L, + 298285603750,34.802662010048856,L, + 300210027000,34.802668840238027,L, + 302134450250,34.802665425143438,L, + 307907720000,34.802665425143438,L, + 309832143250,34.802668840238027,L, + 311756566500,34.802665425143438,L, + 313680989750,34.802665425143438,L, + 315605413000,34.802662010048856,L, + 321378682750,34.802662010048856,L, + 325227529250,34.802668840238027,L, + 327151952500,34.802668840238027,L, + 329076375750,34.802662010048856,L, + 332925222250,34.802662010048856,L, + 334849645500,34.802668840238027,L, + 336774068750,34.802662010048856,L, + 340622915250,34.802662010048856,L, + 342547338500,34.802668840238027,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132533698967659 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,-5.132533698967659,L, + 1924423250,-5.327042118603710,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716060238536283,L, + 7697693000,-5.910570365719626,L, + 9622116250,-6.105078358468854,L, + 13470962750,-6.494096051514603,L, + 17319809250,-6.883114598333997,L, + 19244232500,-7.077622591083226,L, + 21168655750,-7.272131437606100,L, + 23093079000,-7.466640711015797,L, + 26941925500,-7.855657550287900,L, + 28866348750,-8.050167677471244,L, + 30790772000,-8.244676950880940,L, + 34639618500,-8.633692082605750,L, + 36564041750,-8.828203063562741,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219049061196,L, + 42337311500,-9.411729176244540,L, + 44261734750,-9.606238449654237,L, + 48110581250,-9.995255288926339,L, + 50035004500,-10.189766269883329,L, + 51959427750,-10.384272128198441,L, + 53883851000,-10.578781401608140,L, + 55808274250,-10.773293236338775,L, + 57732697500,-10.967799094653888,L, + 59657120750,-11.162309221837232,L, + 61581544000,-11.356816787699636,L, + 65430390500,-11.745837042066324,L, + 67354813750,-11.940344607928729,L, + 69279237000,-12.134853027564780,L, + 71203660250,-12.329363154748123,L, + 73128083500,-12.523872428157821,L, + 75052506750,-12.718379994020225,L, + 76976930000,-12.912888413656276,L, + 78901353250,-13.107398540839620,L, + 80825776500,-13.301905252928378,L, + 82750199750,-13.496416233885370,L, + 84674623000,-13.690924653521421,L, + 86599046250,-13.885433926931118,L, + 90447892750,-14.274450766203220,L, + 92372316000,-14.468961747160209,L, + 96221162500,-14.857978586432312,L, + 98145585750,-15.052485298521070,L, + 101994432250,-15.441505552887758,L, + 103918855500,-15.636012264976516,L, + 107767702000,-16.025032519343203,L, + 109692125250,-16.219539231431963,L, + 111616548500,-16.414049358615305,L, + 113540971750,-16.608557778251356,L, + 115465395000,-16.803067905434702,L, + 117389818250,-16.997576325070753,L, + 119314241500,-17.192081329612218,L, + 121238664750,-17.386596579437441,L, + 123163088000,-17.581103291526198,L, + 128936357750,-18.164628550434351,L, + 130860781000,-18.359138677617697,L, + 132785204250,-18.553647097253748,L, + 134709627500,-18.748153809342504,L, + 136634050750,-18.942663936525850,L, + 138558474000,-19.137170648614607,L, + 140482897250,-19.331680775797953,L, + 142407320500,-19.526192610528586,L, + 144331743750,-19.720697615070055,L, + 146256167000,-19.915206034706106,L, + 148180590250,-20.109717869436739,L, + 150105013500,-20.304226289072790,L, + 152029436750,-20.498736416256136,L, + 153953860000,-20.345072527856701,L, + 157802706500,-20.037748166152419,L, + 159727129750,-19.884087692847572,L, + 161651553000,-19.730425511995431,L, + 163575976250,-19.576761623595996,L, + 165500399500,-19.423101150291149,L, + 173198092500,-18.808452426882582,L, + 175122515750,-18.654791953577735,L, + 182820208750,-18.040143230169171,L, + 184744632000,-17.886479341769736,L, + 186669055250,-17.732820576012180,L, + 188593478500,-17.579158395160039,L, + 190517901750,-17.425492799213313,L, + 192442325000,-17.271834033455757,L, + 194366748250,-17.118173560150908,L, + 196291171500,-16.964507964204184,L, + 200140018000,-16.657183602499902,L, + 202064441250,-16.503523129195052,L, + 205913287750,-16.196198767490770,L, + 207837711000,-16.042538294185920,L, + 209762134250,-15.888874405786488,L, + 211686557500,-15.735213932481638,L, + 213610980750,-15.581550044082206,L, + 215535404000,-15.427887863230065,L, + 217459827250,-15.274227389925215,L, + 219384250500,-15.120563501525782,L, + 221308673750,-14.966903028220933,L, + 223233097000,-14.813240847368792,L, + 225157520250,-14.659580374063944,L, + 227081943500,-14.505918193211803,L, + 229006366750,-14.352254304812369,L, + 230930790000,-14.198592123960228,L, + 232855213250,-14.044930796881733,L, + 234779636500,-13.891270323576885,L, + 236704059750,-13.737607288951098,L, + 238628483000,-13.583942546778017,L, + 240552906250,-13.430282073473169,L, + 242477329500,-13.276620746394675,L, + 244401752750,-13.122960273089825,L, + 246326176000,-12.969295530916746,L, + 248250599250,-12.815635057611898,L, + 250175022500,-12.661973730533402,L, + 252099445750,-12.508310695907616,L, + 254023869000,-12.354650222602766,L, + 255948292250,-12.200985480429686,L, + 257872715500,-12.047325007124838,L, + 259797138750,-5.132533698967659,L, + 261721562000,-5.132533698967659,L, + 263645985250,-5.132534125854483,L, + 267494831750,-5.132533272080837,L, + 269419255000,-5.132533272080837,L, + 271343678250,-5.132533698967659,L, + 275192524750,-5.132533698967659,L, + 277116948000,-5.132534125854483,L, + 279041371250,-5.132533272080837,L, + 280965794500,-5.132532845194014,L, + 284814641000,-5.132532845194014,L, + 286739064250,-5.132533698967659,L, + 288663487500,-5.132533698967659,L, + 290587910750,-5.132533272080837,L, + 294436757250,-5.132533272080837,L, + 296361180500,-5.132532845194014,L, + 298285603750,-5.132533698967659,L, + 300210027000,-5.132533272080837,L, + 302134450250,-5.132533272080837,L, + 305983296750,-5.132534125854483,L, + 307907720000,-5.132533698967659,L, + 313680989750,-5.132533698967659,L, + 315605413000,-5.132534125854483,L, + 317529836250,-5.132533272080837,L, + 319454259500,-5.132533698967659,L, + 325227529250,-5.132533698967659,L, + 329076375750,-5.132532845194014,L, + 331000799000,-5.132533698967659,L, + 334849645500,-5.132533698967659,L, + 336774068750,-5.132534125854483,L, + 338698492000,-5.132533698967659,L, + 340622915250,-5.132533698967659,L, + 342547338500,-5.132533272080837,L, + 344471761750,-5.132533698967659,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,33.449806441146372,L, + 1924423250,33.338962716200982,L, + 3848846500,33.228129236539345,L, + 5773269750,33.117285511593948,L, + 7697693000,33.006438371553976,L, + 9622116250,32.895601476797751,L, + 11546539500,32.784761166946943,L, + 13470962750,32.673914026906964,L, + 15395386000,32.563073717056156,L, + 19244232500,32.341386267165376,L, + 23093079000,32.119705647463761,L, + 25017502250,32.008861922518363,L, + 26941925500,31.898025027762142,L, + 32715195250,31.565493852925965,L, + 34639618500,31.454656958169743,L, + 40412888250,31.122125783333562,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900441748537364,L, + 46186158000,30.789604853781142,L, + 48110581250,30.678761128835749,L, + 50035004500,30.567920818984941,L, + 51959427750,30.457077094039548,L, + 53883851000,30.346236784188740,L, + 57732697500,30.124549334297956,L, + 59657120750,30.013712439541731,L, + 61581544000,29.902865299501755,L, + 63505967250,29.792031819840116,L, + 65430390500,29.681184679800140,L, + 69279237000,29.459504060098524,L, + 71203660250,29.348660335153131,L, + 73128083500,29.237813195113155,L, + 75052506750,29.126976300356930,L, + 76976930000,29.016135990506122,L, + 78901353250,28.905288850466146,L, + 80825776500,28.794455370804506,L, + 82750199750,28.683608230764531,L, + 86599046250,28.461927611062915,L, + 88523469500,28.351083886117522,L, + 90447892750,28.240238453624837,L, + 94296739250,28.018561249017807,L, + 96221162500,27.907715816525123,L, + 98145585750,27.796873799127020,L, + 100070009000,27.686033489276213,L, + 101994432250,27.575191471878114,L, + 103918855500,27.464347746932720,L, + 105843278750,27.353507437081912,L, + 109692125250,27.131823402285711,L, + 111616548500,27.020983092434903,L, + 113540971750,26.910135952394928,L, + 117389818250,26.688455332693312,L, + 119314241500,26.577608192653333,L, + 121238664750,26.466771297897111,L, + 123163088000,26.355929280499012,L, + 125087511250,26.245088970648204,L, + 127011934500,26.134246953250102,L, + 128936357750,26.023401520757417,L, + 134709627500,25.690880591204994,L, + 136634050750,25.580035158712310,L, + 138558474000,25.469188018672334,L, + 140482897250,25.358352831463403,L, + 142407320500,25.247509106518010,L, + 144331743750,25.136668796667202,L, + 146256167000,25.025825071721808,L, + 148180590250,24.914986469418295,L, + 150105013500,24.804144452020193,L, + 152029436750,24.693300727074803,L, + 155878283250,24.868430192488262,L, + 157802706500,24.955996632742284,L, + 159727129750,25.043561365449015,L, + 161651553000,25.131127805703038,L, + 163575976250,25.218690830862474,L, + 167424822750,25.393823711370519,L, + 169349246000,25.481386736529959,L, + 171273669250,25.568954884331273,L, + 173198092500,25.656517909490709,L, + 175122515750,25.744082642197441,L, + 177046939000,25.831645667356877,L, + 178971362250,25.919213815158194,L, + 180895785500,26.006771717675754,L, + 182820208750,26.094341573024362,L, + 184744632000,26.181904598183799,L, + 186669055250,26.269476161079698,L, + 188593478500,26.357039186239138,L, + 190517901750,26.444600503851284,L, + 192442325000,26.532163529010720,L, + 196291171500,26.707296409518765,L, + 198215594750,26.794859434678202,L, + 200140018000,26.882429290026810,L, + 202064441250,26.969995730280832,L, + 203988864500,27.057558755440272,L, + 205913287750,27.145123488147000,L, + 207837711000,27.232686513306440,L, + 209762134250,27.320251246013168,L, + 211686557500,27.407819393814485,L, + 215535404000,27.582948859227944,L, + 217459827250,27.670515299481966,L, + 221308673750,27.845641349800843,L, + 225157520250,28.020777645403474,L, + 227081943500,28.108342378110201,L, + 229006366750,28.195900280627765,L, + 230930790000,28.283468428429078,L, + 232855213250,28.371034868683100,L, + 234779636500,28.458599601389832,L, + 236704059750,28.546162626549268,L, + 238628483000,28.633729066803291,L, + 240552906250,28.721297214604608,L, + 242477329500,28.808860239764044,L, + 244401752750,28.896426680018067,L, + 246326176000,28.983989705177503,L, + 248250599250,29.071556145431526,L, + 250175022500,29.159119170590966,L, + 252099445750,29.246685610844988,L, + 254023869000,29.334255466193596,L, + 255948292250,29.421811661163861,L, + 257872715500,29.509378101417884,L, + 259797138750,33.449806441146372,L, + 261721562000,33.449806441146372,L, + 263645985250,33.449809856240961,L, + 265570408500,33.449806441146372,L, + 267494831750,33.449809856240961,L, + 269419255000,33.449806441146372,L, + 271343678250,33.449806441146372,L, + 273268101500,33.449809856240961,L, + 275192524750,33.449806441146372,L, + 277116948000,33.449809856240961,L, + 279041371250,33.449806441146372,L, + 280965794500,33.449809856240961,L, + 282890217750,33.449806441146372,L, + 288663487500,33.449806441146372,L, + 290587910750,33.449809856240961,L, + 292512334000,33.449806441146372,L, + 294436757250,33.449809856240961,L, + 300210027000,33.449809856240961,L, + 302134450250,33.449803026051789,L, + 305983296750,33.449809856240961,L, + 307907720000,33.449806441146372,L, + 311756566500,33.449806441146372,L, + 313680989750,33.449809856240961,L, + 315605413000,33.449806441146372,L, + 317529836250,33.449809856240961,L, + 319454259500,33.449806441146372,L, + 321378682750,33.449806441146372,L, + 323303106000,33.449813271335543,L, + 327151952500,33.449806441146372,L, + 331000799000,33.449806441146372,L, + 332925222250,33.449809856240961,L, + 334849645500,33.449806441146372,L, + 344471761750,33.449806441146372,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.156420111656189,L, + 3848846500,0.174917459487915,L, + 5773269750,0.184166103601456,L, + 7697693000,0.193414792418480,L, + 11546539500,0.211912110447884,L, + 13470962750,0.221160799264908,L, + 15395386000,0.230409473180771,L, + 17319809250,0.239658132195473,L, + 19244232500,0.248906806111336,L, + 21168655750,0.258155465126038,L, + 23093079000,0.267404109239578,L, + 25017502250,0.276652812957764,L, + 26941925500,0.285901457071304,L, + 28866348750,0.295150130987167,L, + 30790772000,0.304398834705353,L, + 32715195250,0.313647508621216,L, + 34639618500,0.322896212339401,L, + 36564041750,0.332144826650620,L, + 40412888250,0.350642174482346,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139552116394,L, + 46186158000,0.378388166427612,L, + 48110581250,0.387636840343475,L, + 50035004500,0.396885544061661,L, + 51959427750,0.406134217977524,L, + 53883851000,0.415382862091064,L, + 55808274250,0.424631536006927,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128854036331,L, + 65430390500,0.470874875783920,L, + 67354813750,0.480123579502106,L, + 69279237000,0.489372193813324,L, + 71203660250,0.498620897531509,L, + 73128083500,0.507869541645050,L, + 75052506750,0.517118275165558,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615563392639,L, + 80825776500,0.544864296913147,L, + 82750199750,0.554112911224365,L, + 86599046250,0.572610259056091,L, + 88523469500,0.581858992576599,L, + 92372316000,0.600356221199036,L, + 96221162500,0.618853569030762,L, + 98145585750,0.628102302551270,L, + 100070009000,0.637350976467133,L, + 101994432250,0.646599590778351,L, + 107767702000,0.674345612525940,L, + 109692125250,0.683594346046448,L, + 111616548500,0.692842960357666,L, + 117389818250,0.720588982105255,L, + 119314241500,0.729837715625763,L, + 121238664750,0.739086270332336,L, + 123163088000,0.748335003852844,L, + 128936357750,0.776081025600433,L, + 130860781000,0.785329639911652,L, + 132785204250,0.794578373432159,L, + 134709627500,0.803826987743378,L, + 136634050750,0.813075661659241,L, + 138558474000,0.822324395179749,L, + 140482897250,0.831573009490967,L, + 142407320500,0.840821743011475,L, + 144331743750,0.850070357322693,L, + 146256167000,0.859319090843201,L, + 148180590250,0.868567705154419,L, + 152029436750,0.887065052986145,L, + 153953860000,0.872388184070587,L, + 155878283250,0.857711374759674,L, + 157802706500,0.843034505844116,L, + 159727129750,0.828357577323914,L, + 161651553000,0.813680768013000,L, + 163575976250,0.799004018306732,L, + 167424822750,0.769650280475616,L, + 169349246000,0.754973351955414,L, + 171273669250,0.740296483039856,L, + 173198092500,0.725619554519653,L, + 178971362250,0.681588947772980,L, + 180895785500,0.666912138462067,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558519840240,L, + 186669055250,0.622881472110748,L, + 190517901750,0.593527853488922,L, + 192442325000,0.578850984573364,L, + 194366748250,0.564174056053162,L, + 196291171500,0.549497246742249,L, + 202064441250,0.505466639995575,L, + 203988864500,0.490789800882339,L, + 207837711000,0.461436063051224,L, + 209762134250,0.446759164333344,L, + 211686557500,0.432082295417786,L, + 213610980750,0.417405515909195,L, + 217459827250,0.388051718473434,L, + 219384250500,0.373374909162521,L, + 223233097000,0.344021111726761,L, + 227081943500,0.314667373895645,L, + 230930790000,0.285313695669174,L, + 232855213250,0.270636796951294,L, + 234779636500,0.255959957838058,L, + 236704059750,0.241283103823662,L, + 238628483000,0.226606234908104,L, + 240552906250,0.211929351091385,L, + 242477329500,0.197252497076988,L, + 244401752750,0.182575628161430,L, + 246326176000,0.167898789048195,L, + 248250599250,0.153221890330315,L, + 250175022500,0.138545036315918,L, + 252099445750,0.123868189752102,L, + 254023869000,0.109191320836544,L, + 255948292250,0.094514459371567,L, + 257872715500,0.079837590456009,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 263645985250,0.152782782912254,L, + 265570408500,0.149145483970642,L, + 271343678250,0.138233542442322,L, + 273268101500,0.134596213698387,L, + 275192524750,0.130958914756775,L, + 279041371250,0.123684287071228,L, + 282890217750,0.116409674286842,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 298285603750,0.087311148643494,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036543309689,L, + 305983296750,0.072761900722980,L, + 307907720000,0.069124594330788,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114142060280,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564884826541,L, + 338698492000,0.010927572846413,L, + 340622915250,0.007290273439139,L, + 344471761750,0.000015646219254,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420096755028 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.156420096755028,L, + 1924423250,0.162834361195564,L, + 3848846500,0.169248610734940,L, + 5773269750,0.175662904977798,L, + 7697693000,0.182077154517174,L, + 11546539500,0.194905683398247,L, + 15395386000,0.207734242081642,L, + 19244232500,0.220562741160393,L, + 21168655750,0.226977020502090,L, + 23093079000,0.233391270041466,L, + 26941925500,0.246219798922539,L, + 28866348750,0.252634078264236,L, + 30790772000,0.259048372507095,L, + 32715195250,0.265462636947632,L, + 34639618500,0.271876871585846,L, + 42337311500,0.297533929347992,L, + 44261734750,0.303948223590851,L, + 46186158000,0.310362458229065,L, + 48110581250,0.316776752471924,L, + 50035004500,0.323190957307816,L, + 51959427750,0.329605251550674,L, + 55808274250,0.342433780431747,L, + 57732697500,0.348848074674606,L, + 59657120750,0.355262309312820,L, + 61581544000,0.361676603555679,L, + 65430390500,0.374505072832108,L, + 67354813750,0.380919396877289,L, + 75052506750,0.406576454639435,L, + 76976930000,0.412990689277649,L, + 78901353250,0.419404953718185,L, + 80825776500,0.425819188356400,L, + 82750199750,0.432233542203903,L, + 86599046250,0.445062011480331,L, + 88523469500,0.451476305723190,L, + 90447892750,0.457890540361404,L, + 92372316000,0.464304834604263,L, + 98145585750,0.483547627925873,L, + 100070009000,0.489961862564087,L, + 105843278750,0.509204745292664,L, + 111616548500,0.528447449207306,L, + 113540971750,0.534861743450165,L, + 115465395000,0.541275978088379,L, + 117389818250,0.547690272331238,L, + 119314241500,0.554104506969452,L, + 121238664750,0.560518801212311,L, + 123163088000,0.566933035850525,L, + 125087511250,0.573347389698029,L, + 127011934500,0.579761564731598,L, + 128936357750,0.586175918579102,L, + 130860781000,0.592590093612671,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611832916736603,L, + 138558474000,0.618247210979462,L, + 142407320500,0.631075680255890,L, + 146256167000,0.643904268741608,L, + 148180590250,0.650318503379822,L, + 150105013500,0.656732797622681,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175009250641,L, + 155878283250,0.641202926635742,L, + 161651553000,0.608286857604980,L, + 163575976250,0.597314774990082,L, + 167424822750,0.575370728969574,L, + 169349246000,0.564398765563965,L, + 171273669250,0.553426623344421,L, + 180895785500,0.498566508293152,L, + 184744632000,0.476622402667999,L, + 186669055250,0.465650320053101,L, + 188593478500,0.454678326845169,L, + 190517901750,0.443706303834915,L, + 192442325000,0.432734221220016,L, + 194366748250,0.421762198209763,L, + 196291171500,0.410790145397186,L, + 198215594750,0.399818152189255,L, + 200140018000,0.388846129179001,L, + 202064441250,0.377874046564102,L, + 203988864500,0.366902023553848,L, + 205913287750,0.355930030345917,L, + 207837711000,0.344957947731018,L, + 209762134250,0.333985894918442,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041819095612,L, + 215535404000,0.301069796085358,L, + 217459827250,0.290097743272781,L, + 223233097000,0.257181674242020,L, + 225157520250,0.246209606528282,L, + 240552906250,0.158433303236961,L, + 242477329500,0.147461250424385,L, + 244401752750,0.136489227414131,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545166492462,L, + 250175022500,0.103573113679886,L, + 252099445750,0.092601083219051,L, + 255948292250,0.070656977593899,L, + 257872715500,0.059684954583645,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420096755028,L, + 263645985250,0.152782782912254,L, + 265570408500,0.149145483970642,L, + 267494831750,0.145508155226707,L, + 269419255000,0.141870841383934,L, + 271343678250,0.138233542442322,L, + 273268101500,0.134596213698387,L, + 275192524750,0.130958914756775,L, + 280965794500,0.120046973228455,L, + 282890217750,0.116409666836262,L, + 286739064250,0.109135039150715,L, + 288663487500,0.105497732758522,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 294436757250,0.094585783779621,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761900722980,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212656527758,L, + 315605413000,0.054575346410275,L, + 325227529250,0.036388777196407,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114140197635,L, + 331000799000,0.025476828217506,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564885757864,L, + 338698492000,0.010927572846413,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652959829196,L, + 344471761750,0.000015646219254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420126557350 + KeyVer: 4005 + KeyCount: 150 + Key: + 0,0.156420126557350,L, + 1924423250,0.165634125471115,L, + 3848846500,0.174848109483719,L, + 7697693000,0.193276166915894,L, + 9622116250,0.202490165829659,L, + 11546539500,0.211704179644585,L, + 13470962750,0.220918178558350,L, + 15395386000,0.230132162570953,L, + 17319809250,0.239346206188202,L, + 19244232500,0.248560205101967,L, + 21168655750,0.257774233818054,L, + 23093079000,0.266988217830658,L, + 25017502250,0.276202261447906,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844243288040,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272270917892,L, + 36564041750,0.331486284732819,L, + 38488465000,0.340700328350067,L, + 40412888250,0.349914342164993,L, + 44261734750,0.368342310190201,L, + 46186158000,0.377556353807449,L, + 48110581250,0.386770337820053,L, + 50035004500,0.395984381437302,L, + 51959427750,0.405198395252228,L, + 53883851000,0.414412438869476,L, + 55808274250,0.423626363277435,L, + 57732697500,0.432840377092361,L, + 59657120750,0.442054420709610,L, + 61581544000,0.451268404722214,L, + 63505967250,0.460482448339462,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910416364670,L, + 69279237000,0.488124489784241,L, + 71203660250,0.497338533401489,L, + 76976930000,0.524980485439301,L, + 78901353250,0.534194529056549,L, + 82750199750,0.552622497081757,L, + 86599046250,0.571050584316254,L, + 88523469500,0.580264568328857,L, + 90447892750,0.589478611946106,L, + 94296739250,0.607906579971313,L, + 96221162500,0.617120683193207,L, + 98145585750,0.626334547996521,L, + 100070009000,0.635548651218414,L, + 101994432250,0.644762575626373,L, + 103918855500,0.653976678848267,L, + 107767702000,0.672404646873474,L, + 111616548500,0.690832734107971,L, + 113540971750,0.700046718120575,L, + 115465395000,0.709260642528534,L, + 117389818250,0.718474745750427,L, + 119314241500,0.727688729763031,L, + 121238664750,0.736902773380280,L, + 123163088000,0.746116697788239,L, + 125087511250,0.755330801010132,L, + 128936357750,0.773758769035339,L, + 130860781000,0.782972812652588,L, + 132785204250,0.792186915874481,L, + 136634050750,0.810614764690399,L, + 140482897250,0.829042851924896,L, + 142407320500,0.838256776332855,L, + 144331743750,0.847470879554749,L, + 146256167000,0.856684744358063,L, + 148180590250,0.865898907184601,L, + 150105013500,0.875112771987915,L, + 152029436750,0.884326934814453,L, + 153953860000,0.869695305824280,L, + 155878283250,0.855063855648041,L, + 157802706500,0.840432345867157,L, + 159727129750,0.825800657272339,L, + 161651553000,0.811169147491455,L, + 163575976250,0.796537578105927,L, + 165500399500,0.781905949115753,L, + 167424822750,0.767274439334869,L, + 169349246000,0.752642810344696,L, + 171273669250,0.738011240959167,L, + 173198092500,0.723379790782928,L, + 175122515750,0.708748221397400,L, + 177046939000,0.694116592407227,L, + 178971362250,0.679485023021698,L, + 182820208750,0.650222003459930,L, + 184744632000,0.635590434074402,L, + 186669055250,0.620958805084229,L, + 190517901750,0.591695785522461,L, + 192442325000,0.577064096927643,L, + 196291171500,0.547801077365875,L, + 198215594750,0.533169448375702,L, + 200140018000,0.518537938594818,L, + 202064441250,0.503906369209290,L, + 203988864500,0.489274859428406,L, + 209762134250,0.445380151271820,L, + 211686557500,0.430748611688614,L, + 213610980750,0.416117042303085,L, + 215535404000,0.401485443115234,L, + 217459827250,0.386853903532028,L, + 219384250500,0.372222334146500,L, + 221308673750,0.357590794563293,L, + 223233097000,0.342959225177765,L, + 225157520250,0.328327625989914,L, + 227081943500,0.313696116209030,L, + 229006366750,0.299064576625824,L, + 232855213250,0.269801437854767,L, + 234779636500,0.255169838666916,L, + 238628483000,0.225906759500504,L, + 240552906250,0.211275190114975,L, + 242477329500,0.196643590927124,L, + 244401752750,0.182012081146240,L, + 246326176000,0.167380481958389,L, + 248250599250,0.152748942375183,L, + 250175022500,0.138117387890816,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222716987133,L, + 257872715500,0.079591147601604,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420126557350,L, + 265570408500,0.149145498871803,L, + 267494831750,0.145508170127869,L, + 273268101500,0.134596228599548,L, + 275192524750,0.130958929657936,L, + 279041371250,0.123684301972389,L, + 280965794500,0.120046980679035,L, + 282890217750,0.116409666836262,L, + 284814641000,0.112772360444069,L, + 286739064250,0.109135039150715,L, + 288663487500,0.105497725307941,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223097622395,L, + 294436757250,0.094585783779621,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311163544655,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761908173561,L, + 307907720000,0.069124601781368,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212652802467,L, + 315605413000,0.054575346410275,L, + 317529836250,0.050938028842211,L, + 323303106000,0.040026087313890,L, + 325227529250,0.036388777196407,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114155098796,L, + 331000799000,0.025476843118668,L, + 332925222250,0.021839527413249,L, + 334849645500,0.018202213570476,L, + 336774068750,0.014564900659025,L, + 338698492000,0.010927586816251,L, + 340622915250,0.007290273439139,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_077" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210820198059 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,-0.014210820198059,L, + 1924423250,-0.014211058616638,L, + 3848846500,-0.014210700988770,L, + 5773269750,-0.014210939407349,L, + 7697693000,-0.014210939407349,L, + 9622116250,-0.014210700988770,L, + 11546539500,-0.014210939407349,L, + 13470962750,-0.014210820198059,L, + 15395386000,-0.014211058616638,L, + 17319809250,-0.014210700988770,L, + 19244232500,-0.014210939407349,L, + 21168655750,-0.014210820198059,L, + 23093079000,-0.014211058616638,L, + 25017502250,-0.014210700988770,L, + 26941925500,-0.014210700988770,L, + 28866348750,-0.014210939407349,L, + 32715195250,-0.014210939407349,L, + 34639618500,-0.014210820198059,L, + 36564041750,-0.014211058616638,L, + 38488465000,-0.014210939407349,L, + 40412888250,-0.014210700988770,L, + 42337311500,-0.014210939407349,L, + 44261734750,-0.014210820198059,L, + 46186158000,-0.014211058616638,L, + 48110581250,-0.014210700988770,L, + 50035004500,-0.014210939407349,L, + 51959427750,-0.014210820198059,L, + 53883851000,-0.014211058616638,L, + 55808274250,-0.014210820198059,L, + 57732697500,-0.014210820198059,L, + 59657120750,-0.014211058616638,L, + 61581544000,-0.014211177825928,L, + 63505967250,-0.014210939407349,L, + 65430390500,-0.014210820198059,L, + 67354813750,-0.014211058616638,L, + 69279237000,-0.014210939407349,L, + 71203660250,-0.014210700988770,L, + 73128083500,-0.014210939407349,L, + 75052506750,-0.014211058616638,L, + 76976930000,-0.014210820198059,L, + 78901353250,-0.014210700988770,L, + 80825776500,-0.014211058616638,L, + 82750199750,-0.014210939407349,L, + 84674623000,-0.014210700988770,L, + 86599046250,-0.014210820198059,L, + 88523469500,-0.014211058616638,L, + 90447892750,-0.014211058616638,L, + 92372316000,-0.014210700988770,L, + 94296739250,-0.014210939407349,L, + 96221162500,-0.014210820198059,L, + 98145585750,-0.014211058616638,L, + 100070009000,-0.014210700988770,L, + 101994432250,-0.014210939407349,L, + 103918855500,-0.014210820198059,L, + 105843278750,-0.014210939407349,L, + 192442325000,-0.014210939407349,L, + 194366748250,-0.014210700988770,L, + 196291171500,-0.014210820198059,L, + 198215594750,-0.014210820198059,L, + 200140018000,-0.014210939407349,L, + 202064441250,-0.014210700988770,L, + 203988864500,-0.014210939407349,L, + 207837711000,-0.014210939407349,L, + 209762134250,-0.014210820198059,L, + 211686557500,-0.014210820198059,L, + 215535404000,-0.014211058616638,L, + 217459827250,-0.014210939407349,L, + 221308673750,-0.014210939407349,L, + 223233097000,-0.014211058616638,L, + 225157520250,-0.014210820198059,L, + 227081943500,-0.014211058616638,L, + 230930790000,-0.014211058616638,L, + 232855213250,-0.014210939407349,L, + 234779636500,-0.014210939407349,L, + 238628483000,-0.014211177825928,L, + 240552906250,-0.014211058616638,L, + 244401752750,-0.014211058616638,L, + 246326176000,-0.014210700988770,L, + 248250599250,-0.014210700988770,L, + 250175022500,-0.014210939407349,L, + 252099445750,-0.014210700988770,L, + 254023869000,-0.014210700988770,L, + 255948292250,-0.014210820198059,L, + 257872715500,-0.014210820198059,L, + 259797138750,-0.014210700988770,L, + 263645985250,-0.014210939407349,L, + 265570408500,-0.014210939407349,L, + 267494831750,-0.014210700988770,L, + 269419255000,-0.014210820198059,L, + 271343678250,-0.014210820198059,L, + 273268101500,-0.014211058616638,L, + 275192524750,-0.014210820198059,L, + 277116948000,-0.014210820198059,L, + 279041371250,-0.014210939407349,L, + 280965794500,-0.014210939407349,L, + 282890217750,-0.014210820198059,L, + 286739064250,-0.014211058616638,L, + 288663487500,-0.014211058616638,L, + 290587910750,-0.014210820198059,L, + 292512334000,-0.014210939407349,L, + 294436757250,-0.014210939407349,L, + 296361180500,-0.014211177825928,L, + 298285603750,-0.014210939407349,L, + 300210027000,-0.014211058616638,L, + 304058873500,-0.014211058616638,L, + 305983296750,-0.014210939407349,L, + 309832143250,-0.014211177825928,L, + 311756566500,-0.014211177825928,L, + 313680989750,-0.014210700988770,L, + 315605413000,-0.014210820198059,L, + 317529836250,-0.014210581779480,L, + 319454259500,-0.014210820198059,L, + 321378682750,-0.014210820198059,L, + 323303106000,-0.014210939407349,L, + 325227529250,-0.014210700988770,L, + 327151952500,-0.014210700988770,L, + 331000799000,-0.014210939407349,L, + 332925222250,-0.014210820198059,L, + 336774068750,-0.014210820198059,L, + 338698492000,-0.014210939407349,L, + 340622915250,-0.014210700988770,L, + 342547338500,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087180733680725 + KeyVer: 4005 + KeyCount: 109 + Key: + 0,0.087180733680725,L, + 1924423250,0.086436450481415,L, + 3848846500,0.085691750049591,L, + 5773269750,0.084947466850281,L, + 7697693000,0.084202766418457,L, + 9622116250,0.083458006381989,L, + 11546539500,0.082713663578033,L, + 13470962750,0.081969439983368,L, + 15395386000,0.081225156784058,L, + 17319809250,0.080480456352234,L, + 19244232500,0.079736173152924,L, + 21168655750,0.078991949558258,L, + 23093079000,0.078247666358948,L, + 25017502250,0.077502965927124,L, + 26941925500,0.076758682727814,L, + 28866348750,0.076013863086700,L, + 30790772000,0.075269639492035,L, + 32715195250,0.074524879455566,L, + 34639618500,0.073780655860901,L, + 36564041750,0.073036372661591,L, + 38488465000,0.072292149066925,L, + 40412888250,0.071547389030457,L, + 42337311500,0.070803105831146,L, + 44261734750,0.070058882236481,L, + 46186158000,0.069314539432526,L, + 48110581250,0.068569421768188,L, + 50035004500,0.067825078964233,L, + 51959427750,0.067080855369568,L, + 53883851000,0.066336572170258,L, + 55808274250,0.065591871738434,L, + 59657120750,0.064103305339813,L, + 61581544000,0.063359081745148,L, + 63505967250,0.062614262104034,L, + 65430390500,0.061870098114014,L, + 67354813750,0.061125755310059,L, + 69279237000,0.060381054878235,L, + 71203660250,0.059636294841766,L, + 73128083500,0.058892011642456,L, + 75052506750,0.058147788047791,L, + 76976930000,0.057403028011322,L, + 78901353250,0.056658804416656,L, + 80825776500,0.055914461612701,L, + 82750199750,0.055170297622681,L, + 84674623000,0.054425477981567,L, + 86599046250,0.053681254386902,L, + 88523469500,0.052936971187592,L, + 90447892750,0.052192211151123,L, + 92372316000,0.051447510719299,L, + 94296739250,0.050703227519989,L, + 96221162500,0.049959003925323,L, + 98145585750,0.049214720726013,L, + 100070009000,0.048470020294189,L, + 101994432250,0.047725677490234,L, + 103918855500,0.046981453895569,L, + 105843278750,0.013481914997101,L, + 192442325000,0.013481914997101,L, + 194366748250,0.014423906803131,L, + 200140018000,0.017251312732697,L, + 202064441250,0.018193304538727,L, + 203988864500,0.019135713577271,L, + 207837711000,0.021020650863647,L, + 209762134250,0.021962642669678,L, + 213610980750,0.023847579956055,L, + 215535404000,0.024789512157440,L, + 221308673750,0.027616918087006,L, + 223233097000,0.028558909893036,L, + 225157520250,0.029501378536224,L, + 227081943500,0.030443727970123,L, + 229006366750,0.031386196613312,L, + 230930790000,0.032328188419342,L, + 236704059750,0.035155594348907,L, + 238628483000,0.036097526550293,L, + 244401752750,0.038924932479858,L, + 246326176000,0.039866447448730,L, + 248250599250,0.040808916091919,L, + 250175022500,0.041751325130463,L, + 252099445750,0.042693316936493,L, + 257872715500,0.045520722866058,L, + 259797138750,0.046462714672089,L, + 261721562000,0.047405064105988,L, + 265570408500,0.049290001392365,L, + 267494831750,0.050231993198395,L, + 271343678250,0.052116930484772,L, + 273268101500,0.053059339523315,L, + 275192524750,0.054001331329346,L, + 280965794500,0.056828737258911,L, + 282890217750,0.057770729064941,L, + 284814641000,0.058713138103485,L, + 288663487500,0.060598075389862,L, + 290587910750,0.061540067195892,L, + 294436757250,0.063425004482269,L, + 296361180500,0.064366877079010,L, + 302134450250,0.067194283008575,L, + 304058873500,0.068136274814606,L, + 305983296750,0.069078743457794,L, + 307907720000,0.070021152496338,L, + 309832143250,0.070963621139526,L, + 313680989750,0.072847604751587,L, + 317529836250,0.074732542037964,L, + 319454259500,0.075674474239349,L, + 325227529250,0.078501880168915,L, + 327151952500,0.079443871974945,L, + 329076375750,0.080386340618134,L, + 331000799000,0.081328690052032,L, + 332925222250,0.082270681858063,L, + 338698492000,0.085098087787628,L, + 340622915250,0.086040079593658,L, + 342547338500,0.086982488632202,L, + 344471761750,0.087924957275391,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817197561264038 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817197561264038,L, + 1924423250,0.818611621856689,L, + 3848846500,0.820889949798584,L, + 5773269750,0.823977947235107,L, + 7697693000,0.827826023101807,L, + 9622116250,0.832388401031494,L, + 11546539500,0.837625980377197,L, + 13470962750,0.843501567840576,L, + 15395386000,0.849981069564819,L, + 17319809250,0.857034921646118,L, + 19244232500,0.864634752273560,L, + 21168655750,0.872755289077759,L, + 23093079000,0.881371736526489,L, + 25017502250,0.890463113784790,L, + 26941925500,0.900008678436279,L, + 28866348750,0.909990072250366,L, + 30790772000,0.920388936996460,L, + 32715195250,0.931189537048340,L, + 34639618500,0.942375898361206,L, + 36564041750,0.953934431076050,L, + 38488465000,0.965850830078125,L, + 40412888250,0.978112936019897,L, + 42337311500,0.990708589553833,L, + 44261734750,1.003626585006714,L, + 46186158000,1.016855955123901,L, + 48110581250,1.030386924743652,L, + 50035004500,1.044209718704224,L, + 51959427750,1.058314561843872,L, + 53883851000,1.072693586349487,L, + 55808274250,1.087337493896484,L, + 57732697500,1.102238893508911,L, + 59657120750,1.117389678955078,L, + 61581544000,1.132782220840454,L, + 63505967250,1.148408889770508,L, + 65430390500,1.164262533187866,L, + 67354813750,1.180336236953735,L, + 69279237000,1.196622848510742,L, + 71203660250,1.213114976882935,L, + 73128083500,1.229805469512939,L, + 75052506750,1.246686935424805,L, + 76976930000,1.263751268386841,L, + 78901353250,1.280990123748779,L, + 80825776500,1.298394918441772,L, + 82750199750,1.315954208374023,L, + 84674623000,1.333657741546631,L, + 86599046250,1.351490497589111,L, + 88523469500,1.369436264038086,L, + 90447892750,1.387471675872803,L, + 92372316000,1.405567646026611,L, + 94296739250,1.423682212829590,L, + 96221162500,1.441750049591064,L, + 98145585750,1.459661483764648,L, + 100070009000,1.477200984954834,L, + 101994432250,1.493816375732422,L, + 103918855500,1.506080150604248,L, + 105843278750,-0.513281345367432,L, + 107767702000,-0.026323318481445,L, + 109692125250,-0.023519992828369,L, + 111616548500,-0.020761489868164,L, + 113540971750,-0.018049716949463,L, + 115465395000,-0.015385389328003,L, + 117389818250,-0.012770652770996,L, + 119314241500,-0.010206937789917,L, + 121238664750,-0.007696390151978,L, + 123163088000,-0.005240678787231,L, + 125087511250,-0.002841949462891,L, + 127011934500,-0.000502347946167,L, + 128936357750,0.001775741577148,L, + 130860781000,0.003989934921265,L, + 132785204250,0.006136894226074,L, + 134709627500,0.008214473724365,L, + 136634050750,0.010219335556030,L, + 138558474000,0.012147903442383,L, + 140482897250,0.013996601104736,L, + 142407320500,0.015761137008667,L, + 144331743750,0.017437934875488,L, + 146256167000,0.019021034240723,L, + 148180590250,0.020506143569946,L, + 150105013500,0.021887063980103,L, + 152029436750,0.023157358169556,L, + 153953860000,0.024310111999512,L, + 155878283250,0.025336980819702,L, + 157802706500,0.026228904724121,L, + 159727129750,0.026976108551025,L, + 161651553000,0.027566909790039,L, + 163575976250,0.027987480163574,L, + 165500399500,0.028223037719727,L, + 167424822750,0.028254985809326,L, + 169349246000,0.028061866760254,L, + 171273669250,0.027618408203125,L, + 173198092500,0.026892662048340,L, + 175122515750,0.025846004486084,L, + 177046939000,0.024429559707642,L, + 178971362250,0.022578954696655,L, + 180895785500,0.020206928253174,L, + 182820208750,0.017192363739014,L, + 184744632000,0.013352394104004,L, + 186669055250,0.008388996124268,L, + 188593478500,0.001745462417603,L, + 190517901750,-0.007927656173706,L, + 192442325000,-0.026323318481445,L, + 194366748250,-0.023398160934448,L, + 196291171500,-0.020269632339478,L, + 198215594750,-0.016932487487793,L, + 200140018000,-0.013380527496338,L, + 202064441250,-0.009608030319214,L, + 203988864500,-0.005608320236206,L, + 205913287750,-0.001375198364258,L, + 207837711000,0.003097772598267,L, + 209762134250,0.007817983627319,L, + 211686557500,0.012792825698853,L, + 213610980750,0.018029689788818,L, + 215535404000,0.023536443710327,L, + 217459827250,0.029321432113647,L, + 219384250500,0.035392999649048,L, + 221308673750,0.041759967803955,L, + 223233097000,0.048431396484375,L, + 225157520250,0.055417060852051,L, + 227081943500,0.062726497650146,L, + 229006366750,0.070369958877563,L, + 230930790000,0.078357934951782,L, + 232855213250,0.086700916290283,L, + 234779636500,0.095410585403442,L, + 236704059750,0.104497432708740,L, + 238628483000,0.113974094390869,L, + 240552906250,0.123851299285889,L, + 242477329500,0.134141683578491,L, + 244401752750,0.144857168197632,L, + 246326176000,0.156009435653687,L, + 248250599250,0.167610168457031,L, + 250175022500,0.179671049118042,L, + 252099445750,0.192203044891357,L, + 254023869000,0.205216169357300,L, + 255948292250,0.218719482421875,L, + 257872715500,0.232721567153931,L, + 259797138750,0.247228145599365,L, + 261721562000,0.262243270874023,L, + 263645985250,0.277768373489380,L, + 265570408500,0.293801069259644,L, + 267494831750,0.310336112976074,L, + 269419255000,0.327362537384033,L, + 271343678250,0.344864368438721,L, + 273268101500,0.362818717956543,L, + 275192524750,0.381196737289429,L, + 277116948000,0.399960756301880,L, + 279041371250,0.419064283370972,L, + 280965794500,0.438453435897827,L, + 282890217750,0.458063602447510,L, + 284814641000,0.477822303771973,L, + 286739064250,0.497648000717163,L, + 288663487500,0.517452955245972,L, + 290587910750,0.537143468856812,L, + 292512334000,0.556622028350830,L, + 294436757250,0.575791120529175,L, + 296361180500,0.594553947448730,L, + 298285603750,0.612818241119385,L, + 300210027000,0.630498886108398,L, + 302134450250,0.647517919540405,L, + 304058873500,0.663808822631836,L, + 305983296750,0.679316759109497,L, + 307907720000,0.693997144699097,L, + 309832143250,0.707817554473877,L, + 311756566500,0.720757007598877,L, + 313680989750,0.732804059982300,L, + 315605413000,0.743956089019775,L, + 317529836250,0.754218578338623,L, + 319454259500,0.763603448867798,L, + 321378682750,0.772127389907837,L, + 323303106000,0.779812335968018,L, + 325227529250,0.786681890487671,L, + 327151952500,0.792763233184814,L, + 329076375750,0.798083543777466,L, + 331000799000,0.802672624588013,L, + 332925222250,0.806558609008789,L, + 334849645500,0.809771537780762,L, + 336774068750,0.812339544296265,L, + 338698492000,0.814290761947632,L, + 340622915250,0.815652370452881,L, + 342547338500,0.816451072692871,L, + 344471761750,0.816711425781250,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 124 + Key: + 0,72.193801790988744,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 11546539500,69.927674797975996,L, + 13470962750,69.549985827442356,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 40412888250,64.262347070160388,L, + 42337311500,63.884664929815905,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 48110581250,62.751598018214949,L, + 55808274250,61.240842136080339,L, + 57732697500,60.863146335357513,L, + 59657120750,60.485464195013030,L, + 65430390500,59.352397283412074,L, + 67354813750,58.974715143067591,L, + 76976930000,57.086270290399327,L, + 78901353250,56.708584734960262,L, + 80825776500,56.330892349332025,L, + 82750199750,55.953210208987542,L, + 84674623000,55.575517823359306,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442450911758350,L, + 92372316000,54.064765356319278,L, + 96221162500,53.309387415251976,L, + 98145585750,52.931701859812911,L, + 100070009000,52.554009474184667,L, + 101994432250,52.176330748934774,L, + 103918855500,51.798634948211948,L, + 105843278750,34.802665425143438,L, + 107767702000,34.802668840238027,L, + 109692125250,34.802665425143438,L, + 111616548500,34.802665425143438,L, + 113540971750,34.802662010048856,L, + 117389818250,34.802668840238027,L, + 119314241500,34.802668840238027,L, + 121238664750,34.802662010048856,L, + 125087511250,34.802668840238027,L, + 127011934500,34.802665425143438,L, + 132785204250,34.802665425143438,L, + 134709627500,34.802668840238027,L, + 136634050750,34.802665425143438,L, + 138558474000,34.802665425143438,L, + 140482897250,34.802662010048856,L, + 142407320500,34.802668840238027,L, + 144331743750,34.802662010048856,L, + 148180590250,34.802668840238027,L, + 155878283250,34.802668840238027,L, + 157802706500,34.802665425143438,L, + 159727129750,34.802665425143438,L, + 161651553000,34.802662010048856,L, + 165500399500,34.802668840238027,L, + 167424822750,34.802665425143438,L, + 169349246000,34.802665425143438,L, + 171273669250,34.802668840238027,L, + 173198092500,34.802668840238027,L, + 175122515750,34.802662010048856,L, + 177046939000,34.802665425143438,L, + 178971362250,34.802665425143438,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802662010048856,L, + 184744632000,34.802665425143438,L, + 186669055250,34.802662010048856,L, + 188593478500,34.802668840238027,L, + 190517901750,34.802665425143438,L, + 192442325000,34.802668840238027,L, + 194366748250,35.280747931192380,L, + 196291171500,35.758833852335904,L, + 202064441250,37.193101861050238,L, + 203988864500,37.671184367099180,L, + 207837711000,38.627356209386228,L, + 209762134250,39.105445545624342,L, + 211686557500,39.583531466767866,L, + 213610980750,40.061613972816808,L, + 215535404000,40.539706724149504,L, + 217459827250,41.017792645293028,L, + 221308673750,41.973957657390912,L, + 223233097000,42.452043578534436,L, + 225157520250,42.930132914772550,L, + 227081943500,43.408218835916074,L, + 229006366750,43.886301341965016,L, + 230930790000,44.364390678203122,L, + 232855213250,44.842483429535818,L, + 234779636500,45.320565935584760,L, + 236704059750,45.798651856728284,L, + 238628483000,46.276741192966398,L, + 242477329500,47.232906205064275,L, + 244401752750,47.710998956396971,L, + 246326176000,48.189088292635084,L, + 248250599250,48.667170798684026,L, + 250175022500,49.145260134922133,L, + 252099445750,49.623346056065657,L, + 254023869000,50.101435392303770,L, + 257872715500,51.057607234590819,L, + 259797138750,51.535689740639761,L, + 261721562000,52.013779076877874,L, + 263645985250,52.491858167832227,L, + 265570408500,52.969947504070340,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926122761451978,L, + 271343678250,54.404205267500913,L, + 273268101500,54.882294603739027,L, + 275192524750,55.360380524882551,L, + 279041371250,56.316559197358771,L, + 280965794500,56.794641703407713,L, + 286739064250,58.228899466838293,L, + 288663487500,58.706978557792645,L, + 290587910750,59.185071309125341,L, + 294436757250,60.141243151412390,L, + 296361180500,60.619335902745085,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 305983296750,63.009772338651885,L, + 307907720000,63.487851429606245,L, + 327151952500,68.268710641041494,L, + 329076375750,68.746803392374190,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345072527856701 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,-20.345072527856701,L, + 1924423250,-20.191408639457268,L, + 3848846500,-20.037751581247004,L, + 7697693000,-19.730423804448137,L, + 9622116250,-19.576765038690581,L, + 13470962750,-19.269440676986299,L, + 15395386000,-19.115776788586867,L, + 19244232500,-18.808452426882582,L, + 21168655750,-18.654791953577735,L, + 25017502250,-18.347467591873453,L, + 26941925500,-18.193803703474018,L, + 30790772000,-17.886482756864321,L, + 34639618500,-17.579158395160039,L, + 36564041750,-17.425492799213313,L, + 38488465000,-17.271834033455757,L, + 40412888250,-17.118173560150908,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810844075804749,L, + 46186158000,-16.657183602499902,L, + 48110581250,-16.503524836742343,L, + 50035004500,-16.349859240795620,L, + 51959427750,-16.196198767490770,L, + 53883851000,-16.042536586638629,L, + 55808274250,-15.888872698239195,L, + 61581544000,-15.427891278324649,L, + 63505967250,-15.274225682377924,L, + 69279237000,-14.813239139821500,L, + 71203660250,-14.659578666516651,L, + 73128083500,-14.505916485664510,L, + 75052506750,-14.352256012359662,L, + 76976930000,-14.198592123960228,L, + 78901353250,-14.044927381787149,L, + 82750199750,-13.737608142724744,L, + 84674623000,-13.583945961872603,L, + 86599046250,-13.430282073473169,L, + 92372316000,-12.969295530916746,L, + 94296739250,-12.815632496290959,L, + 96221162500,-12.661972022986109,L, + 98145585750,-12.508309842133968,L, + 100070009000,-12.354648515055475,L, + 101994432250,-12.200985480429686,L, + 103918855500,-12.047325860898484,L, + 105843278750,-5.132534125854483,L, + 107767702000,-5.132533272080837,L, + 109692125250,-5.132533272080837,L, + 111616548500,-5.132534125854483,L, + 113540971750,-5.132533272080837,L, + 117389818250,-5.132534125854483,L, + 121238664750,-5.132533272080837,L, + 123163088000,-5.132533698967659,L, + 125087511250,-5.132533272080837,L, + 128936357750,-5.132533272080837,L, + 130860781000,-5.132533698967659,L, + 132785204250,-5.132533698967659,L, + 134709627500,-5.132534125854483,L, + 138558474000,-5.132533272080837,L, + 140482897250,-5.132534125854483,L, + 142407320500,-5.132532845194014,L, + 144331743750,-5.132533272080837,L, + 146256167000,-5.132533272080837,L, + 148180590250,-5.132534552741306,L, + 150105013500,-5.132533272080837,L, + 152029436750,-5.132534125854483,L, + 153953860000,-5.132533698967659,L, + 157802706500,-5.132533698967659,L, + 159727129750,-5.132534125854483,L, + 163575976250,-5.132533272080837,L, + 165500399500,-5.132533698967659,L, + 171273669250,-5.132533698967659,L, + 173198092500,-5.132533272080837,L, + 175122515750,-5.132533272080837,L, + 178971362250,-5.132534125854483,L, + 182820208750,-5.132533272080837,L, + 184744632000,-5.132534125854483,L, + 188593478500,-5.132533272080837,L, + 190517901750,-5.132534125854483,L, + 192442325000,-5.132533272080837,L, + 194366748250,-5.327041691716888,L, + 196291171500,-5.521551818900232,L, + 198215594750,-5.716059811649459,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105078358468854,L, + 203988864500,-6.299587204991728,L, + 205913287750,-6.494096478401426,L, + 207837711000,-6.688604471150654,L, + 209762134250,-6.883114171447175,L, + 211686557500,-7.077623444856871,L, + 213610980750,-7.272130583832453,L, + 217459827250,-7.661149130651848,L, + 219384250500,-7.855656696514253,L, + 221308673750,-8.050167677471244,L, + 223233097000,-8.244676950880940,L, + 225157520250,-8.439184516743346,L, + 229006366750,-8.828201356015448,L, + 230930790000,-9.022712336972438,L, + 234779636500,-9.411729176244540,L, + 236704059750,-9.606238449654237,L, + 238628483000,-9.800746015516642,L, + 240552906250,-9.995256996473632,L, + 246326176000,-10.578782255381785,L, + 248250599250,-10.773291528791482,L, + 254023869000,-11.356816787699636,L, + 255948292250,-11.551326914882980,L, + 257872715500,-11.745837895839969,L, + 259797138750,-11.940344607928729,L, + 261721562000,-12.134853881338426,L, + 263645985250,-12.329361447200831,L, + 265570408500,-12.523871574384174,L, + 267494831750,-12.718380847793872,L, + 271343678250,-13.107397687065975,L, + 273268101500,-13.301906960475671,L, + 275192524750,-13.496417087659015,L, + 280965794500,-14.079942346567169,L, + 282890217750,-14.274449058655927,L, + 284814641000,-14.468958332065625,L, + 286739064250,-14.663468459248968,L, + 288663487500,-14.857980293979605,L, + 290587910750,-15.052487006068363,L, + 292512334000,-15.246998840799000,L, + 294436757250,-15.441503845340465,L, + 296361180500,-15.636012264976516,L, + 300210027000,-16.025032519343203,L, + 302134450250,-16.219537523884672,L, + 304058873500,-16.414047651068014,L, + 305983296750,-16.608559485798651,L, + 309832143250,-16.997576325070753,L, + 311756566500,-17.192083037159509,L, + 313680989750,-17.386593164342855,L, + 315605413000,-17.581099876431612,L, + 319454259500,-17.970120130798300,L, + 321378682750,-18.164628550434351,L, + 323303106000,-18.359140385164988,L, + 325227529250,-18.553643682159162,L, + 327151952500,-18.748152101795213,L, + 329076375750,-18.942663936525850,L, + 331000799000,-19.137170648614607,L, + 334849645500,-19.526190902981295,L, + 336774068750,-19.720697615070055,L, + 338698492000,-19.915207742253397,L, + 342547338500,-20.304224581525499,L, + 344471761750,-20.498736416256136,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551200723339925 + KeyVer: 4005 + KeyCount: 156 + Key: + 0,17.551200723339925,L, + 1924423250,17.638767163593947,L, + 5773269750,17.813896629007409,L, + 9622116250,17.989029509515454,L, + 13470962750,18.164155559834327,L, + 15395386000,18.251722000088350,L, + 17319809250,18.339285025247790,L, + 19244232500,18.426853173049103,L, + 21168655750,18.514417905755835,L, + 23093079000,18.601980930915271,L, + 25017502250,18.689549078716588,L, + 28866348750,18.864675129035462,L, + 34639618500,19.127374449797532,L, + 36564041750,19.214935767409674,L, + 38488465000,19.302503915210991,L, + 40412888250,19.390063525275842,L, + 42337311500,19.477633380624450,L, + 44261734750,19.565198113331181,L, + 46186158000,19.652764553585204,L, + 48110581250,19.740325871197349,L, + 50035004500,19.827892311451372,L, + 53883851000,20.003021776864831,L, + 55808274250,20.090588217118853,L, + 57732697500,20.178152949825584,L, + 59657120750,20.265721097626901,L, + 63505967250,20.440850563040360,L, + 65430390500,20.528413588199797,L, + 67354813750,20.615980028453819,L, + 69279237000,20.703544761160551,L, + 71203660250,20.791111201414573,L, + 73128083500,20.878675934121304,L, + 75052506750,20.966237251733450,L, + 76976930000,21.053803691987472,L, + 78901353250,21.141368424694203,L, + 80825776500,21.228934864948226,L, + 82750199750,21.316496182560371,L, + 84674623000,21.404066037908976,L, + 86599046250,21.491629063068416,L, + 88523469500,21.579195503322438,L, + 90447892750,21.666756820934584,L, + 92372316000,21.754324968735897,L, + 94296739250,21.841887993895334,L, + 98145585750,22.017017459308796,L, + 100070009000,22.104587314657405,L, + 101994432250,22.192146924722255,L, + 103918855500,22.279718487618155,L, + 105843278750,26.220141704704769,L, + 107767702000,26.220143412252060,L, + 109692125250,26.220138289610183,L, + 111616548500,26.220145119799355,L, + 113540971750,26.220143412252060,L, + 115465395000,26.220145119799355,L, + 117389818250,26.220145119799355,L, + 119314241500,26.220141704704769,L, + 125087511250,26.220141704704769,L, + 128936357750,26.220145119799355,L, + 130860781000,26.220139997157474,L, + 132785204250,26.220138289610183,L, + 134709627500,26.220146827346646,L, + 136634050750,26.220145119799355,L, + 138558474000,26.220146827346646,L, + 140482897250,26.220145119799355,L, + 142407320500,26.220145119799355,L, + 144331743750,26.220143412252060,L, + 148180590250,26.220146827346646,L, + 150105013500,26.220139997157474,L, + 152029436750,26.220145119799355,L, + 155878283250,26.220145119799355,L, + 157802706500,26.220143412252060,L, + 159727129750,26.220143412252060,L, + 161651553000,26.220145119799355,L, + 165500399500,26.220141704704769,L, + 167424822750,26.220141704704769,L, + 169349246000,26.220143412252060,L, + 171273669250,26.220139997157474,L, + 173198092500,26.220146827346646,L, + 177046939000,26.220143412252060,L, + 178971362250,26.220146827346646,L, + 180895785500,26.220139997157474,L, + 182820208750,26.220139997157474,L, + 184744632000,26.220145119799355,L, + 186669055250,26.220143412252060,L, + 188593478500,26.220143412252060,L, + 190517901750,26.220141704704769,L, + 192442325000,26.220143412252060,L, + 194366748250,26.109301394853961,L, + 196291171500,25.998457669908568,L, + 198215594750,25.887617360057760,L, + 200140018000,25.776775342659661,L, + 202064441250,25.665935032808854,L, + 203988864500,25.555091307863460,L, + 205913287750,25.444252705559943,L, + 207837711000,25.333408980614553,L, + 209762134250,25.222568670763746,L, + 211686557500,25.111723238271058,L, + 215535404000,24.890042618569442,L, + 217459827250,24.779204016265929,L, + 219384250500,24.668356876225950,L, + 221308673750,24.557518273922437,L, + 223233097000,24.446674548977043,L, + 225157520250,24.335837654220821,L, + 227081943500,24.224987099086256,L, + 230930790000,24.003309894479226,L, + 236704059750,23.670778719643049,L, + 238628483000,23.559936702244951,L, + 240552906250,23.449098099941434,L, + 242477329500,23.338257790090626,L, + 244401752750,23.227408942503356,L, + 246326176000,23.116572047747134,L, + 248250599250,23.005730030349035,L, + 250175022500,22.894889720498227,L, + 252099445750,22.784047703100125,L, + 254023869000,22.673207393249317,L, + 255948292250,22.562361960756633,L, + 257872715500,22.451519943358534,L, + 259797138750,22.340676218413140,L, + 263645985250,22.118992183616939,L, + 265570408500,22.008151873766131,L, + 267494831750,21.897313271462618,L, + 269419255000,21.786467838969930,L, + 271343678250,21.675629236666417,L, + 273268101500,21.564785511721023,L, + 275192524750,21.453943494322925,L, + 277116948000,21.343104892019408,L, + 279041371250,21.232262874621309,L, + 280965794500,21.121417442128624,L, + 282890217750,21.010573717183231,L, + 284814641000,20.899735114879714,L, + 286739064250,20.788894805028907,L, + 288663487500,20.678052787630808,L, + 290587910750,20.567207355138123,L, + 292512334000,20.456367045287315,L, + 294436757250,20.345521612794631,L, + 296361180500,20.234681302943823,L, + 298285603750,20.123842700640306,L, + 300210027000,20.013000683242208,L, + 302134450250,19.902155250749523,L, + 304058873500,19.791314940898715,L, + 305983296750,19.680471215953322,L, + 307907720000,19.569632613649805,L, + 309832143250,19.458788888704412,L, + 311756566500,19.347946871306313,L, + 313680989750,19.237109976550091,L, + 315605413000,19.126262836510111,L, + 317529836250,19.015419111564722,L, + 319454259500,18.904577094166619,L, + 321378682750,18.793736784315811,L, + 325227529250,18.572052749519610,L, + 327151952500,18.461212439668802,L, + 332925222250,18.128686387474502,L, + 334849645500,18.017846077623695,L, + 336774068750,17.907000645131010,L, + 338698492000,17.796163750374788,L, + 340622915250,17.685316610334809,L, + 342547338500,17.574479715578587,L, + 344471761750,17.463635990633193,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388184070587 + KeyVer: 4005 + KeyCount: 153 + Key: + 0,0.872388184070587,L, + 1924423250,0.857711374759674,L, + 3848846500,0.843034386634827,L, + 5773269750,0.828357636928558,L, + 13470962750,0.769650161266327,L, + 15395386000,0.754973351955414,L, + 17319809250,0.740296483039856,L, + 19244232500,0.725619554519653,L, + 23093079000,0.696265816688538,L, + 25017502250,0.681589007377625,L, + 30790772000,0.637558400630951,L, + 32715195250,0.622881472110748,L, + 34639618500,0.608204662799835,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578850984573364,L, + 40412888250,0.564174115657806,L, + 42337311500,0.549497187137604,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143508911133,L, + 48110581250,0.505466699600220,L, + 50035004500,0.490789711475372,L, + 51959427750,0.476112872362137,L, + 53883851000,0.461436063051224,L, + 55808274250,0.446759194135666,L, + 57732697500,0.432082355022430,L, + 59657120750,0.417405456304550,L, + 61581544000,0.402728587388992,L, + 63505967250,0.388051748275757,L, + 65430390500,0.373374849557877,L, + 67354813750,0.358698010444641,L, + 69279237000,0.344021201133728,L, + 71203660250,0.329344332218170,L, + 73128083500,0.314667373895645,L, + 75052506750,0.299990534782410,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636886358261,L, + 80825776500,0.255959987640381,L, + 82750199750,0.241283118724823,L, + 84674623000,0.226606220006943,L, + 88523469500,0.197252511978149,L, + 90447892750,0.182575702667236,L, + 94296739250,0.153221964836121,L, + 96221162500,0.138545081019402,L, + 98145585750,0.123868227005005,L, + 100070009000,0.109191298484802,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837583005428,L, + 105843278750,0.000015646217435,L, + 107767702000,0.156420111656189,L, + 109692125250,0.152782797813416,L, + 111616548500,0.149145469069481,L, + 113540971750,0.145508170127869,L, + 115465395000,0.141870841383934,L, + 119314241500,0.134596213698387,L, + 121238664750,0.130958914756775,L, + 125087511250,0.123684287071228,L, + 127011934500,0.120046965777874,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772352993488,L, + 132785204250,0.109135046601295,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 140482897250,0.094585783779621,L, + 142407320500,0.090948469936848,L, + 144331743750,0.087311148643494,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036528408527,L, + 150105013500,0.076399222016335,L, + 152029436750,0.072761900722980,L, + 153953860000,0.069124586880207,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849970370531,L, + 159727129750,0.058212656527758,L, + 161651553000,0.054575350135565,L, + 165500399500,0.047300714999437,L, + 167424822750,0.043663401156664,L, + 169349246000,0.040026091039181,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 177046939000,0.025476828217506,L, + 178971362250,0.021839512512088,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564886689186,L, + 184744632000,0.010927570983768,L, + 186669055250,0.007290273904800,L, + 188593478500,0.003652960294858,L, + 190517901750,0.000015646217435,L, + 192442325000,0.156420111656189,L, + 194366748250,0.165668800473213,L, + 196291171500,0.174917459487915,L, + 198215594750,0.184166133403778,L, + 202064441250,0.202663451433182,L, + 203988864500,0.211912140250206,L, + 205913287750,0.221160784363747,L, + 207837711000,0.230409488081932,L, + 209762134250,0.239658132195473,L, + 211686557500,0.248906791210175,L, + 213610980750,0.258155494928360,L, + 217459827250,0.276652842760086,L, + 221308673750,0.295150130987167,L, + 225157520250,0.313647478818893,L, + 227081943500,0.322896182537079,L, + 229006366750,0.332144856452942,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642174482346,L, + 234779636500,0.359890878200531,L, + 236704059750,0.369139522314072,L, + 238628483000,0.378388226032257,L, + 240552906250,0.387636840343475,L, + 242477329500,0.396885514259338,L, + 244401752750,0.406134217977524,L, + 246326176000,0.415382891893387,L, + 248250599250,0.424631536006927,L, + 250175022500,0.433880239725113,L, + 252099445750,0.443128913640976,L, + 254023869000,0.452377527952194,L, + 255948292250,0.461626172065735,L, + 257872715500,0.470874875783920,L, + 259797138750,0.480123549699783,L, + 261721562000,0.489372283220291,L, + 263645985250,0.498620897531509,L, + 265570408500,0.507869601249695,L, + 267494831750,0.517118215560913,L, + 269419255000,0.526366889476776,L, + 271343678250,0.535615622997284,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361585140228,L, + 279041371250,0.572610259056091,L, + 280965794500,0.581858992576599,L, + 282890217750,0.591107666492462,L, + 284814641000,0.600356280803680,L, + 286739064250,0.609604954719543,L, + 288663487500,0.618853569030762,L, + 290587910750,0.628102302551270,L, + 296361180500,0.655848324298859,L, + 300210027000,0.674345552921295,L, + 302134450250,0.683594405651093,L, + 304058873500,0.692843019962311,L, + 305983296750,0.702091693878174,L, + 307907720000,0.711340427398682,L, + 309832143250,0.720588982105255,L, + 311756566500,0.729837715625763,L, + 315605413000,0.748335063457489,L, + 319454259500,0.766832292079926,L, + 321378682750,0.776081025600433,L, + 329076375750,0.813075721263885,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573009490967,L, + 334849645500,0.840821683406830,L, + 336774068750,0.850070416927338,L, + 338698492000,0.859319090843201,L, + 340622915250,0.868567705154419,L, + 344471761750,0.887065052986145,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175009250641 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.652175009250641,L, + 1924423250,0.641202986240387,L, + 3848846500,0.630230903625488,L, + 5773269750,0.619258880615234,L, + 7697693000,0.608286917209625,L, + 9622116250,0.597314774990082,L, + 11546539500,0.586342811584473,L, + 13470962750,0.575370728969574,L, + 15395386000,0.564398705959320,L, + 17319809250,0.553426623344421,L, + 26941925500,0.498566508293152,L, + 28866348750,0.487594455480576,L, + 30790772000,0.476622462272644,L, + 32715195250,0.465650320053101,L, + 34639618500,0.454678326845169,L, + 38488465000,0.432734280824661,L, + 40412888250,0.421762228012085,L, + 42337311500,0.410790145397186,L, + 44261734750,0.399818152189255,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 50035004500,0.366902053356171,L, + 53883851000,0.344957947731018,L, + 57732697500,0.323013901710510,L, + 61581544000,0.301069796085358,L, + 63505967250,0.290097773075104,L, + 65430390500,0.279125720262527,L, + 67354813750,0.268153697252274,L, + 69279237000,0.257181644439697,L, + 73128083500,0.235237598419189,L, + 75052506750,0.224265530705452,L, + 76976930000,0.213293552398682,L, + 80825776500,0.191349446773529,L, + 82750199750,0.180377408862114,L, + 86599046250,0.158433303236961,L, + 88523469500,0.147461295127869,L, + 90447892750,0.136489272117615,L, + 92372316000,0.125517189502716,L, + 96221162500,0.103573143482208,L, + 98145585750,0.092601113021374,L, + 100070009000,0.081629030406475,L, + 101994432250,0.070657067000866,L, + 103918855500,0.059684958308935,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420096755028,L, + 109692125250,0.152782782912254,L, + 111616548500,0.149145483970642,L, + 117389818250,0.138233542442322,L, + 119314241500,0.134596213698387,L, + 121238664750,0.130958914756775,L, + 123163088000,0.127321586012840,L, + 125087511250,0.123684287071228,L, + 128936357750,0.116409659385681,L, + 130860781000,0.112772360444069,L, + 132785204250,0.109135039150715,L, + 134709627500,0.105497725307941,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223097622395,L, + 140482897250,0.094585791230202,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311156094074,L, + 148180590250,0.080036528408527,L, + 150105013500,0.076399222016335,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849974095821,L, + 159727129750,0.058212656527758,L, + 161651553000,0.054575346410275,L, + 163575976250,0.050938028842211,L, + 165500399500,0.047300714999437,L, + 167424822750,0.043663404881954,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 177046939000,0.025476826354861,L, + 178971362250,0.021839512512088,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564886689186,L, + 184744632000,0.010927571915090,L, + 186669055250,0.007290274370462,L, + 188593478500,0.003652960062027,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420096755028,L, + 194366748250,0.162834361195564,L, + 196291171500,0.169248640537262,L, + 198215594750,0.175662890076637,L, + 203988864500,0.194905683398247,L, + 205913287750,0.201319932937622,L, + 207837711000,0.207734227180481,L, + 209762134250,0.214148491621017,L, + 211686557500,0.220562741160393,L, + 213610980750,0.226977005600929,L, + 215535404000,0.233391284942627,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 227081943500,0.271876871585846,L, + 229006366750,0.278291165828705,L, + 230930790000,0.284705430269241,L, + 234779636500,0.297533899545670,L, + 236704059750,0.303948223590851,L, + 238628483000,0.310362458229065,L, + 240552906250,0.316776752471924,L, + 242477329500,0.323191016912460,L, + 244401752750,0.329605251550674,L, + 248250599250,0.342433780431747,L, + 250175022500,0.348848074674606,L, + 252099445750,0.355262279510498,L, + 254023869000,0.361676543951035,L, + 257872715500,0.374505132436752,L, + 259797138750,0.380919367074966,L, + 261721562000,0.387333661317825,L, + 263645985250,0.393747925758362,L, + 265570408500,0.400162160396576,L, + 267494831750,0.406576424837112,L, + 269419255000,0.412990719079971,L, + 271343678250,0.419404953718185,L, + 275192524750,0.432233542203903,L, + 277116948000,0.438647747039795,L, + 279041371250,0.445062041282654,L, + 280965794500,0.451476305723190,L, + 282890217750,0.457890540361404,L, + 284814641000,0.464304834604263,L, + 290587910750,0.483547627925873,L, + 292512334000,0.489961862564087,L, + 294436757250,0.496376186609268,L, + 296361180500,0.502790391445160,L, + 298285603750,0.509204745292664,L, + 300210027000,0.515618979930878,L, + 302134450250,0.522033154964447,L, + 305983296750,0.534861743450165,L, + 309832143250,0.547690212726593,L, + 313680989750,0.560518801212311,L, + 317529836250,0.573347270488739,L, + 323303106000,0.592590153217316,L, + 325227529250,0.599004328250885,L, + 327151952500,0.605418741703033,L, + 329076375750,0.611832916736603,L, + 331000799000,0.618247210979462,L, + 334849645500,0.631075680255890,L, + 336774068750,0.637489974498749,L, + 338698492000,0.643904209136963,L, + 342547338500,0.656732797622681,L, + 344471761750,0.663146972656250,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695246219635 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,0.869695246219635,L, + 1924423250,0.855063736438751,L, + 3848846500,0.840432167053223,L, + 5773269750,0.825800716876984,L, + 7697693000,0.811169147491455,L, + 11546539500,0.781905889511108,L, + 13470962750,0.767274379730225,L, + 15395386000,0.752642929553986,L, + 17319809250,0.738011300563812,L, + 19244232500,0.723379731178284,L, + 21168655750,0.708748221397400,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485023021698,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 30790772000,0.635590374469757,L, + 32715195250,0.620958924293518,L, + 34639618500,0.606327295303345,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064156532288,L, + 40412888250,0.562432587146759,L, + 42337311500,0.547801077365875,L, + 46186158000,0.518537938594818,L, + 48110581250,0.503906309604645,L, + 50035004500,0.489274799823761,L, + 51959427750,0.474643230438232,L, + 55808274250,0.445380151271820,L, + 57732697500,0.430748522281647,L, + 59657120750,0.416117012500763,L, + 61581544000,0.401485443115234,L, + 63505967250,0.386853843927383,L, + 65430390500,0.372222334146500,L, + 67354813750,0.357590794563293,L, + 69279237000,0.342959225177765,L, + 71203660250,0.328327625989914,L, + 76976930000,0.284433007240295,L, + 78901353250,0.269801348447800,L, + 80825776500,0.255169868469238,L, + 82750199750,0.240538284182549,L, + 84674623000,0.225906714797020,L, + 86599046250,0.211275219917297,L, + 88523469500,0.196643650531769,L, + 90447892750,0.182012006640434,L, + 92372316000,0.167380496859550,L, + 94296739250,0.152748942375183,L, + 96221162500,0.138117432594299,L, + 98145585750,0.123485863208771,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222716987133,L, + 103918855500,0.079591147601604,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420126557350,L, + 111616548500,0.149145498871803,L, + 113540971750,0.145508170127869,L, + 115465395000,0.141870856285095,L, + 117389818250,0.138233557343483,L, + 130860781000,0.112772360444069,L, + 132785204250,0.109135039150715,L, + 134709627500,0.105497725307941,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223105072975,L, + 140482897250,0.094585783779621,L, + 142407320500,0.090948477387428,L, + 146256167000,0.083673849701881,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 157802706500,0.061849974095821,L, + 159727129750,0.058212652802467,L, + 161651553000,0.054575346410275,L, + 163575976250,0.050938028842211,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663404881954,L, + 169349246000,0.040026087313890,L, + 171273669250,0.036388777196407,L, + 173198092500,0.032751459628344,L, + 175122515750,0.029114155098796,L, + 177046939000,0.025476843118668,L, + 178971362250,0.021839527413249,L, + 180895785500,0.018202215433121,L, + 182820208750,0.014564901590347,L, + 184744632000,0.010927586816251,L, + 186669055250,0.007290273439139,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420126557350,L, + 194366748250,0.165634125471115,L, + 196291171500,0.174848109483719,L, + 198215594750,0.184062138199806,L, + 205913287750,0.220918193459511,L, + 207837711000,0.230132177472115,L, + 209762134250,0.239346206188202,L, + 211686557500,0.248560205101967,L, + 213610980750,0.257774233818054,L, + 219384250500,0.285416275262833,L, + 223233097000,0.303844243288040,L, + 225157520250,0.313058286905289,L, + 227081943500,0.322272270917892,L, + 229006366750,0.331486314535141,L, + 232855213250,0.349914342164993,L, + 234779636500,0.359128326177597,L, + 236704059750,0.368342369794846,L, + 238628483000,0.377556383609772,L, + 240552906250,0.386770308017731,L, + 242477329500,0.395984381437302,L, + 244401752750,0.405198335647583,L, + 246326176000,0.414412438869476,L, + 248250599250,0.423626393079758,L, + 250175022500,0.432840377092361,L, + 252099445750,0.442054420709610,L, + 254023869000,0.451268404722214,L, + 255948292250,0.460482478141785,L, + 257872715500,0.469696462154388,L, + 261721562000,0.488124489784241,L, + 263645985250,0.497338473796844,L, + 265570408500,0.506552517414093,L, + 267494831750,0.515766501426697,L, + 269419255000,0.524980545043945,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408572673798,L, + 275192524750,0.552622497081757,L, + 279041371250,0.571050584316254,L, + 282890217750,0.589478552341461,L, + 284814641000,0.598692655563354,L, + 286739064250,0.607906579971313,L, + 288663487500,0.617120623588562,L, + 290587910750,0.626334607601166,L, + 294436757250,0.644762694835663,L, + 298285603750,0.663190662860870,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618630886078,L, + 304058873500,0.690832614898682,L, + 305983296750,0.700046718120575,L, + 307907720000,0.709260702133179,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688670158386,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116757392883,L, + 317529836250,0.755330681800842,L, + 319454259500,0.764544725418091,L, + 321378682750,0.773758828639984,L, + 325227529250,0.792186796665192,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042851924896,L, + 334849645500,0.838256835937500,L, + 336774068750,0.847470879554749,L, + 338698492000,0.856684863567352,L, + 340622915250,0.865898907184601,L, + 344471761750,0.884326875209808,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_076" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792774200439 + KeyVer: 4005 + KeyCount: 72 + Key: + 0,0.016792774200439,L, + 190517901750,0.016792774200439,L, + 192442325000,0.016793012619019,L, + 194366748250,0.016793012619019,L, + 196291171500,0.016792893409729,L, + 200140018000,0.016793131828308,L, + 202064441250,0.016792893409729,L, + 203988864500,0.016793131828308,L, + 205913287750,0.016792893409729,L, + 207837711000,0.016792774200439,L, + 209762134250,0.016793012619019,L, + 211686557500,0.016792774200439,L, + 213610980750,0.016793251037598,L, + 215535404000,0.016793012619019,L, + 217459827250,0.016793012619019,L, + 219384250500,0.016792774200439,L, + 221308673750,0.016792893409729,L, + 223233097000,0.016792774200439,L, + 227081943500,0.016793251037598,L, + 229006366750,0.016793131828308,L, + 230930790000,0.016792774200439,L, + 232855213250,0.016793012619019,L, + 234779636500,0.016792893409729,L, + 236704059750,0.016792893409729,L, + 238628483000,0.016793012619019,L, + 240552906250,0.016792893409729,L, + 242477329500,0.016793012619019,L, + 244401752750,0.016792893409729,L, + 246326176000,0.016793012619019,L, + 250175022500,0.016792774200439,L, + 252099445750,0.016793012619019,L, + 254023869000,0.016793131828308,L, + 255948292250,0.016792774200439,L, + 257872715500,0.016793012619019,L, + 259797138750,0.016792774200439,L, + 261721562000,0.016792893409729,L, + 263645985250,0.016792774200439,L, + 265570408500,0.016793012619019,L, + 267494831750,0.016792774200439,L, + 269419255000,0.016793012619019,L, + 273268101500,0.016792774200439,L, + 275192524750,0.016792893409729,L, + 277116948000,0.016793251037598,L, + 279041371250,0.016792774200439,L, + 282890217750,0.016793012619019,L, + 284814641000,0.016792893409729,L, + 286739064250,0.016792893409729,L, + 288663487500,0.016793131828308,L, + 290587910750,0.016792893409729,L, + 292512334000,0.016792893409729,L, + 294436757250,0.016793012619019,L, + 296361180500,0.016793012619019,L, + 298285603750,0.016793131828308,L, + 300210027000,0.016793131828308,L, + 302134450250,0.016792654991150,L, + 304058873500,0.016792893409729,L, + 307907720000,0.016793131828308,L, + 309832143250,0.016792893409729,L, + 311756566500,0.016793012619019,L, + 313680989750,0.016792774200439,L, + 315605413000,0.016793012619019,L, + 319454259500,0.016793012619019,L, + 321378682750,0.016792893409729,L, + 323303106000,0.016793012619019,L, + 325227529250,0.016792774200439,L, + 329076375750,0.016793012619019,L, + 331000799000,0.016793012619019,L, + 332925222250,0.016793131828308,L, + 334849645500,0.016792893409729,L, + 336774068750,0.016792774200439,L, + 340622915250,0.016793012619019,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058500409126282 + KeyVer: 4005 + KeyCount: 82 + Key: + 0,-0.058500409126282,L, + 190517901750,-0.058500409126282,L, + 192442325000,-0.058537244796753,L, + 194366748250,-0.059146881103516,L, + 196291171500,-0.059920668601990,L, + 198215594750,-0.060734152793884,L, + 200140018000,-0.061568975448608,L, + 202064441250,-0.062416315078735,L, + 203988864500,-0.063273906707764,L, + 205913287750,-0.064137816429138,L, + 207837711000,-0.065007209777832,L, + 209762134250,-0.065881609916687,L, + 211686557500,-0.066758990287781,L, + 213610980750,-0.067639470100403,L, + 215535404000,-0.068522334098816,L, + 217459827250,-0.069407582283020,L, + 219384250500,-0.070293903350830,L, + 221308673750,-0.071182489395142,L, + 223233097000,-0.072071909904480,L, + 225157520250,-0.072962641716003,L, + 227081943500,-0.073854565620422,L, + 229006366750,-0.074746727943420,L, + 230930790000,-0.075639605522156,L, + 232855213250,-0.076532959938049,L, + 234779636500,-0.077426552772522,L, + 236704059750,-0.078320622444153,L, + 238628483000,-0.079214811325073,L, + 240552906250,-0.080109357833862,L, + 242477329500,-0.081003427505493,L, + 244401752750,-0.081897020339966,L, + 246326176000,-0.082790493965149,L, + 248250599250,-0.083683252334595,L, + 250175022500,-0.084575414657593,L, + 252099445750,-0.085467338562012,L, + 254023869000,-0.086358070373535,L, + 255948292250,-0.087247490882874,L, + 257872715500,-0.088136196136475,L, + 259797138750,-0.089022517204285,L, + 261721562000,-0.089907765388489,L, + 263645985250,-0.090790510177612,L, + 265570408500,-0.091671109199524,L, + 267494831750,-0.092548370361328,L, + 269419255000,-0.093422889709473,L, + 271343678250,-0.094292283058167,L, + 273268101500,-0.095156192779541,L, + 275192524750,-0.096013784408569,L, + 277116948000,-0.096861600875854,L, + 279041371250,-0.097695946693420,L, + 280965794500,-0.098509430885315,L, + 282890217750,-0.099283695220947,L, + 284814641000,-0.099893450737000,L, + 286739064250,-0.099930286407471,L, + 288663487500,-0.099073290824890,L, + 290587910750,-0.097857952117920,L, + 292512334000,-0.096546411514282,L, + 294436757250,-0.095184326171875,L, + 296361180500,-0.093789935112000,L, + 298285603750,-0.092373490333557,L, + 300210027000,-0.090940952301025,L, + 302134450250,-0.089495778083801,L, + 304058873500,-0.088042020797729,L, + 305983296750,-0.086580514907837,L, + 307907720000,-0.085113763809204,L, + 309832143250,-0.083642244338989,L, + 311756566500,-0.082168459892273,L, + 313680989750,-0.080692410469055,L, + 315605413000,-0.079215884208679,L, + 317529836250,-0.077738404273987,L, + 319454259500,-0.076262712478638,L, + 321378682750,-0.074788451194763,L, + 323303106000,-0.073317527770996,L, + 325227529250,-0.071850180625916,L, + 327151952500,-0.070388674736023,L, + 329076375750,-0.068935036659241,L, + 331000799000,-0.067490339279175,L, + 332925222250,-0.066057682037354,L, + 334849645500,-0.064640760421753,L, + 336774068750,-0.063246369361877,L, + 338698492000,-0.061884284019470,L, + 340622915250,-0.060572743415833,L, + 342547338500,-0.059357404708862,L, + 344471761750,-0.058500409126282,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288230180740356 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.288230180740356,L, + 1924423250,0.298518419265747,L, + 3848846500,0.310405731201172,L, + 5773269750,0.323110580444336,L, + 7697693000,0.336395025253296,L, + 9622116250,0.350153923034668,L, + 11546539500,0.364334821701050,L, + 13470962750,0.378912687301636,L, + 15395386000,0.393878698348999,L, + 17319809250,0.409237146377563,L, + 19244232500,0.425001859664917,L, + 21168655750,0.441197872161865,L, + 23093079000,0.457860946655273,L, + 25017502250,0.475040674209595,L, + 26941925500,0.492804765701294,L, + 28866348750,0.511790275573730,L, + 30790772000,0.532561540603638,L, + 32715195250,0.555002927780151,L, + 34639618500,0.578838586807251,L, + 36564041750,0.603604555130005,L, + 38488465000,0.628665924072266,L, + 40412888250,0.653296709060669,L, + 42337311500,0.676801204681396,L, + 44261734750,0.698627710342407,L, + 46186158000,0.718426704406738,L, + 48110581250,0.736045360565186,L, + 50035004500,0.751482009887695,L, + 51959427750,0.765871047973633,L, + 53883851000,0.780287981033325,L, + 55808274250,0.794722080230713,L, + 57732697500,0.809162139892578,L, + 59657120750,0.823595285415649,L, + 61581544000,0.838007926940918,L, + 63505967250,0.852384567260742,L, + 65430390500,0.866708993911743,L, + 67354813750,0.880963802337646,L, + 69279237000,0.895130872726440,L, + 71203660250,0.909190177917480,L, + 73128083500,0.923121690750122,L, + 75052506750,0.936904668807983,L, + 76976930000,0.950517654418945,L, + 78901353250,0.963939428329468,L, + 80825776500,0.977148771286011,L, + 82750199750,0.990124702453613,L, + 84674623000,1.002847433090210,L, + 86599046250,1.015297412872314,L, + 88523469500,1.027456998825073,L, + 90447892750,1.039310216903687,L, + 92372316000,1.050842761993408,L, + 94296739250,1.062041759490967,L, + 96221162500,1.072897195816040,L, + 98145585750,1.083401203155518,L, + 100070009000,1.093547105789185,L, + 101994432250,1.103331804275513,L, + 103918855500,1.112752676010132,L, + 105843278750,1.121810674667358,L, + 107767702000,1.130506992340088,L, + 109692125250,1.138845920562744,L, + 111616548500,1.146831989288330,L, + 113540971750,1.154471874237061,L, + 115465395000,1.161772489547729,L, + 117389818250,1.168742418289185,L, + 119314241500,1.175390720367432,L, + 121238664750,1.181725978851318,L, + 123163088000,1.187759399414062,L, + 125087511250,1.193499565124512,L, + 127011934500,1.198957920074463,L, + 128936357750,1.204144001007080,L, + 130860781000,1.209068298339844,L, + 132785204250,1.213741302490234,L, + 134709627500,1.218172550201416,L, + 136634050750,1.222371816635132,L, + 138558474000,1.226349115371704,L, + 140482897250,1.230112791061401,L, + 142407320500,1.233672380447388,L, + 144331743750,1.237036228179932,L, + 146256167000,1.240212917327881,L, + 148180590250,1.243210315704346,L, + 150105013500,1.246036052703857,L, + 152029436750,1.248697280883789,L, + 153953860000,1.251200914382935,L, + 155878283250,1.253554344177246,L, + 157802706500,1.255763053894043,L, + 159727129750,1.257833480834961,L, + 161651553000,1.259771347045898,L, + 163575976250,1.261583089828491,L, + 165500399500,1.263272285461426,L, + 167424822750,1.264845371246338,L, + 169349246000,1.266306638717651,L, + 171273669250,1.267660379409790,L, + 173198092500,1.268911361694336,L, + 175122515750,1.270063638687134,L, + 177046939000,1.271121025085449,L, + 178971362250,1.272087335586548,L, + 180895785500,1.272965908050537,L, + 182820208750,1.273760080337524,L, + 184744632000,1.274473905563354,L, + 186669055250,1.275109767913818,L, + 188593478500,1.275670766830444,L, + 190517901750,1.276159524917603,L, + 192442325000,-0.578061103820801,L, + 282890217750,-0.578061103820801,L, + 284814641000,-0.557460784912109,L, + 286739064250,0.000370740890503,L, + 288663487500,0.007700681686401,L, + 290587910750,0.015030145645142,L, + 292512334000,0.022359848022461,L, + 294436757250,0.029689788818359,L, + 296361180500,0.037019491195679,L, + 298285603750,0.044349431991577,L, + 300210027000,0.051679134368896,L, + 302134450250,0.059009075164795,L, + 304058873500,0.066338539123535,L, + 305983296750,0.073668479919434,L, + 307907720000,0.080998182296753,L, + 309832143250,0.088328123092651,L, + 311756566500,0.095657825469971,L, + 313680989750,0.102987766265869,L, + 315605413000,0.110317468643188,L, + 317529836250,0.121187925338745,L, + 319454259500,0.134479522705078,L, + 321378682750,0.150350332260132,L, + 323303106000,0.168187856674194,L, + 325227529250,0.186522960662842,L, + 327151952500,0.203898429870605,L, + 329076375750,0.219612121582031,L, + 331000799000,0.233596086502075,L, + 332925222250,0.246043443679810,L, + 334849645500,0.257195472717285,L, + 336774068750,0.267271280288696,L, + 338698492000,0.276450395584106,L, + 340622915250,0.284874916076660,L, + 342547338500,0.292658567428589,L, + 344471761750,0.299892187118530,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467536114632736,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568996409327795,L, + 21168655750,66.373005297285516,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237294105746571,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348818600705343,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527314266666949,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098543889902942,L, + 196291171500,42.441661690996028,L, + 198215594750,38.276929938924646,L, + 200140018000,34.902167620972044,L, + 202064441250,32.037835584977515,L, + 203988864500,29.538734254470558,L, + 205913287750,27.317940934526415,L, + 207837711000,25.318532828602287,L, + 209762134250,23.500829952715037,L, + 211686557500,21.835856936858224,L, + 213610980750,20.301711071910937,L, + 215535404000,18.881328837779222,L, + 217459827250,17.561155724055205,L, + 219384250500,16.330164390323915,L, + 221308673750,15.179291175556759,L, + 223233097000,14.100945178264928,L, + 225157520250,13.088717119686017,L, + 227081943500,12.137130041879329,L, + 229006366750,11.241467699222980,L, + 230930790000,10.397630270667674,L, + 232855213250,9.602037029541039,L, + 234779636500,8.851523036936422,L, + 236704059750,8.143318651145389,L, + 238628483000,7.474936829536412,L, + 240552906250,6.844173555441695,L, + 242477329500,6.249048927775585,L, + 244401752750,5.687784109146117,L, + 246326176000,5.158796203213144,L, + 248250599250,4.660632941004395,L, + 250175022500,4.191998294124861,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776399093383,L, + 255948292250,2.952191960939448,L, + 257872715500,2.591109101268777,L, + 259797138750,2.254809369558050,L, + 261721562000,1.942609960333678,L, + 263645985250,1.653947276267431,L, + 265570408500,1.388353983009691,L, + 267494831750,1.145431474989367,L, + 269419255000,0.924908358908655,L, + 271343678250,0.726609184283252,L, + 273268101500,0.550526960841430,L, + 275192524750,0.396816915304246,L, + 277116948000,0.265868555217376,L, + 279041371250,0.158436483081973,L, + 280965794500,0.075941458286678,L, + 282890217750,0.021060886638177,L, + 284814641000,0.000309185314153,L, + 286739064250,0.000001885382537,L, + 288663487500,1.237622380198304,L, + 290587910750,2.992586766907903,L, + 292512334000,4.887325212009499,L, + 294436757250,6.855265782653780,L, + 296361180500,8.869395080673382,L, + 298285603750,10.915502043726468,L, + 300210027000,12.984963984872733,L, + 302134450250,15.072043545209374,L, + 304058873500,17.172640903687096,L, + 305983296750,19.283681621405755,L, + 307907720000,21.402722198189778,L, + 309832143250,23.527766511254235,L, + 311756566500,25.657098475570162,L, + 313680989750,27.789201789141817,L, + 315605413000,29.922652357527252,L, + 317529836250,32.056113171196444,L, + 319454259500,34.188211362126225,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442596177243068,L, + 325227529250,40.561628216290629,L, + 327151952500,42.672668934009288,L, + 329076375750,44.773273122676180,L, + 331000799000,46.860350121691880,L, + 332925222250,48.929812062838145,L, + 334849645500,50.975918172117588,L, + 336774068750,52.990041920608490,L, + 338698492000,54.957990175215585,L, + 340622915250,56.852725632109419,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845304715054503,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429198260316337 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429198260316337,L, + 1924423250,-20.421560401276981,L, + 3848846500,-20.389151153665317,L, + 5773269750,-20.328213913437843,L, + 7697693000,-20.237251161619035,L, + 9622116250,-20.114739766023984,L, + 11546539500,-19.958840698218669,L, + 13470962750,-19.767296580682398,L, + 15395386000,-19.537329233970276,L, + 17319809250,-19.265550884253983,L, + 19244232500,-18.947793408592521,L, + 21168655750,-18.578937580202975,L, + 23093079000,-18.152573266549297,L, + 25017502250,-17.660581080255646,L, + 26941925500,-17.092456190378556,L, + 28866348750,-16.398736074496160,L, + 30790772000,-15.538794767425280,L, + 32715195250,-14.521074382980039,L, + 34639618500,-13.368167479387516,L, + 36564041750,-12.119606337790040,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565859225054826,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346955306189836,L, + 46186158000,-6.476725172907993,L, + 48110581250,-5.792768385557293,L, + 50035004500,-5.297141684851554,L, + 51959427750,-4.905137064704398,L, + 53883851000,-4.534030688983336,L, + 55808274250,-4.181762401879965,L, + 57732697500,-3.846591358929581,L, + 59657120750,-3.527032420874531,L, + 61581544000,-3.221807915453202,L, + 63505967250,-2.929808150368879,L, + 65430390500,-2.650062598429188,L, + 67354813750,-2.381715991883997,L, + 69279237000,-2.124010606622259,L, + 71203660250,-1.876271534576613,L, + 73128083500,-1.637894197283808,L, + 75052506750,-1.408334954374594,L, + 76976930000,-1.187102032228731,L, + 78901353250,-0.973750401333112,L, + 80825776500,-0.767873825514678,L, + 82750199750,-0.569102887588869,L, + 84674623000,-0.377098052448741,L, + 86599046250,-0.191548346383861,L, + 88523469500,-0.012166514582906,L, + 90447892750,0.161312526331073,L, + 92372316000,0.329132995641543,L, + 94296739250,0.491522877592478,L, + 96221162500,0.648692147140004,L, + 98145585750,0.800838292800669,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779182737059,L, + 103918855500,1.228905031104971,L, + 105843278750,1.362670657461482,L, + 107767702000,1.492215760519460,L, + 109692125250,1.617674596184778,L, + 111616548500,1.739167546541557,L, + 113540971750,1.856813606291744,L, + 115465395000,1.970721738296941,L, + 117389818250,2.080994502116403,L, + 119314241500,2.187729227945804,L, + 121238664750,2.291019403999409,L, + 123163088000,2.390948486651137,L, + 125087511250,2.487600786048556,L, + 127011934500,2.581052501489594,L, + 128936357750,2.671375776847359,L, + 130860781000,2.758639554343786,L, + 132785204250,2.842909361106224,L, + 134709627500,2.924244747846500,L, + 136634050750,3.002704838389616,L, + 138558474000,3.078340005380702,L, + 140482897250,3.151206384436997,L, + 142407320500,3.221346023910580,L, + 144331743750,3.288804387248114,L, + 146256167000,3.353622882471442,L, + 148180590250,3.415842704158996,L, + 150105013500,3.475492453727924,L, + 152029436750,3.532608416558192,L, + 153953860000,3.587218340293305,L, + 155878283250,3.639347624699236,L, + 157802706500,3.689017187230321,L, + 159727129750,3.736245384019953,L, + 161651553000,3.781050571201525,L, + 163575976250,3.823440859624679,L, + 165500399500,3.863419237497176,L, + 167424822750,3.900994669442301,L, + 169349246000,3.936156483289476,L, + 171273669250,3.968896995075885,L, + 173198092500,3.999194433573549,L, + 175122515750,4.027024039346726,L, + 177046939000,4.052339281731695,L, + 178971362250,4.075086799875566,L, + 180895785500,4.095179935753246,L, + 182820208750,4.112515809640360,L, + 184744632000,4.126920678599896,L, + 186669055250,4.138140544972095,L, + 188593478500,4.145734007781846,L, + 190517901750,4.148649217896968,L, + 192442325000,-20.443355534918460,L, + 194366748250,-23.594762129275502,L, + 196291171500,-25.119198880317626,L, + 198215594750,-26.241530442090632,L, + 200140018000,-27.150971837623818,L, + 202064441250,-27.922865176104189,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194800078815060,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223450473479598,L, + 211686557500,-30.672132430246261,L, + 213610980750,-31.085560365611954,L, + 215535404000,-31.468330996888088,L, + 217459827250,-31.824098475280614,L, + 219384250500,-32.155823687794737,L, + 221308673750,-32.465975747815399,L, + 223233097000,-32.756566146053174,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285789693512513,L, + 229006366750,-33.527148088212904,L, + 230930790000,-33.754552406438982,L, + 232855213250,-33.968948629390788,L, + 234779636500,-34.171207606187501,L, + 236704059750,-34.362060167070304,L, + 238628483000,-34.542175670577869,L, + 240552906250,-34.712155173357147,L, + 242477329500,-34.872531430163399,L, + 244401752750,-35.023782554238529,L, + 246326176000,-35.166335432405660,L, + 248250599250,-35.300579385447485,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656801071419821,L, + 255948292250,-35.760981946829872,L, + 257872715500,-35.858281406651152,L, + 259797138750,-35.948911186747921,L, + 261721562000,-36.033042041849427,L, + 263645985250,-36.110834481401177,L, + 265570408500,-36.182408033713642,L, + 267494831750,-36.247865151624360,L, + 269419255000,-36.307294627592562,L, + 271343678250,-36.360740857847830,L, + 273268101500,-36.408190182011843,L, + 275192524750,-36.449611864233326,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513853208471787,L, + 280965794500,-36.536088889314733,L, + 282890217750,-36.550879663962377,L, + 284814641000,-36.556466758703436,L, + 286739064250,-36.556541890784302,L, + 288663487500,-36.223023753613063,L, + 290587910750,-35.750087795103717,L, + 292512334000,-35.239490173510980,L, + 294436757250,-34.709160135406101,L, + 296361180500,-34.166385492633481,L, + 298285603750,-33.614991151128308,L, + 300210027000,-33.057309620492155,L, + 302134450250,-32.494874278193677,L, + 304058873500,-31.928791614878421,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788853532972439,L, + 309832143250,-30.216189982391885,L, + 311756566500,-29.642365299652429,L, + 313680989750,-29.067806371577195,L, + 315605413000,-28.492870075550321,L, + 317529836250,-27.917938902165325,L, + 319454259500,-27.343371436353628,L, + 321378682750,-26.769553583803344,L, + 323303106000,-26.196884910580909,L, + 325227529250,-25.625840114833643,L, + 327151952500,-25.056946828674928,L, + 329076375750,-24.490867580454253,L, + 331000799000,-23.928433945703070,L, + 332925222250,-23.370750707519623,L, + 334849645500,-22.819356366014457,L, + 336774068750,-22.276580015694538,L, + 338698492000,-21.746255100231540,L, + 340622915250,-21.235648940902337,L, + 342547338500,-20.762716397487580,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998287623492242 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-30.998287623492242,L, + 1924423250,-30.999069680152207,L, + 3848846500,-31.002385736994242,L, + 5773269750,-31.008604624233531,L, + 7697693000,-31.017900511693902,L, + 9622116250,-31.030403172969596,L, + 11546539500,-31.046324343924873,L, + 13470962750,-31.065882590613175,L, + 15395386000,-31.089368196074229,L, + 17319809250,-31.117119254671952,L, + 19244232500,-31.149566068324052,L, + 21168655750,-31.187237976691200,L, + 23093079000,-31.230783847744554,L, + 25017502250,-31.281013058900758,L, + 26941925500,-31.339038930994516,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526640321832403,L, + 32715195250,-31.666027407319238,L, + 34639618500,-31.831024287098998,L, + 36564041750,-32.014206545543892,L, + 38488465000,-32.205120578129232,L, + 40412888250,-32.391632553794501,L, + 42337311500,-32.561905754708086,L, + 44261734750,-32.706350595275310,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895956646634595,L, + 50035004500,-32.937726668503743,L, + 51959427750,-32.961393273977805,L, + 53883851000,-32.983806539739170,L, + 55808274250,-33.005079163909144,L, + 57732697500,-33.025320429514444,L, + 59657120750,-33.044615713919704,L, + 61581544000,-33.063053809584126,L, + 63505967250,-33.080682527831904,L, + 65430390500,-33.097577000743911,L, + 67354813750,-33.113778209455155,L, + 69279237000,-33.129337380384420,L, + 71203660250,-33.144302324855900,L, + 73128083500,-33.158696948531677,L, + 75052506750,-33.172551987263027,L, + 76976930000,-33.185915252374144,L, + 78901353250,-33.198796989148768,L, + 80825776500,-33.211234763627346,L, + 82750199750,-33.223235405999034,L, + 84674623000,-33.234829652115117,L, + 86599046250,-33.246034577448505,L, + 88523469500,-33.256863842377548,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287278674751569,L, + 96221162500,-33.296776052792460,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314852148430873,L, + 101994432250,-33.323475262258000,L, + 103918855500,-33.331811508139992,L, + 105843278750,-33.339891621928103,L, + 107767702000,-33.347712188527758,L, + 109692125250,-33.355283453222704,L, + 111616548500,-33.362619076391290,L, + 113540971750,-33.369732718411846,L, + 115465395000,-33.376614134000626,L, + 117389818250,-33.383263323157621,L, + 119314241500,-33.389711021734101,L, + 121238664750,-33.395943569351729,L, + 123163088000,-33.401988286767185,L, + 125087511250,-33.407817853223783,L, + 127011934500,-33.413463004572790,L, + 128936357750,-33.418916910625036,L, + 130860781000,-33.424182986475110,L, + 132785204250,-33.429271477406758,L, + 134709627500,-33.434182383419994,L, + 136634050750,-33.438922534703977,L, + 138558474000,-33.443488516164123,L, + 140482897250,-33.447890573084187,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456196083114911,L, + 146256167000,-33.460116611698496,L, + 148180590250,-33.463873215741998,L, + 150105013500,-33.467472725434590,L, + 152029436750,-33.470921970965442,L, + 153953860000,-33.474217537239966,L, + 155878283250,-33.477366254447340,L, + 157802706500,-33.480364707492967,L, + 159727129750,-33.483223141660616,L, + 161651553000,-33.485924481477348,L, + 163575976250,-33.488492632605272,L, + 165500399500,-33.490900274287696,L, + 167424822750,-33.493171312186725,L, + 169349246000,-33.495295501018596,L, + 171273669250,-33.497266010594139,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500783558016693,L, + 177046939000,-33.502306690201600,L, + 178971362250,-33.503682973319357,L, + 180895785500,-33.504895331897032,L, + 182820208750,-33.505943765934632,L, + 184744632000,-33.506814615053806,L, + 186669055250,-33.507490803781636,L, + 188593478500,-33.507948426456025,L, + 190517901750,-33.508126011374443,L, + 192442325000,-30.971082980028118,L, + 194366748250,-29.975500946230152,L, + 196291171500,-29.170225058181391,L, + 198215594750,-28.412331899952232,L, + 200140018000,-27.679722394483132,L, + 202064441250,-26.963589012839371,L, + 203988864500,-26.259338452804123,L, + 205913287750,-25.564247176445850,L, + 207837711000,-24.876529089296593,L, + 209762134250,-24.194925729001781,L, + 211686557500,-23.518530387949099,L, + 213610980750,-22.846661754768835,L, + 215535404000,-22.178800735084071,L, + 217459827250,-21.514518734524387,L, + 219384250500,-20.853482781367749,L, + 221308673750,-20.195423083141936,L, + 223233097000,-19.540110828509761,L, + 225157520250,-18.887363309910921,L, + 227081943500,-18.237020017899919,L, + 229006366750,-17.588964839260871,L, + 230930790000,-16.943081660777885,L, + 232855213250,-16.299279982444453,L, + 234779636500,-15.657493209916176,L, + 236704059750,-15.017653041301347,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743677619575937,L, + 242477329500,-13.109486017404702,L, + 244401752750,-12.477130028572905,L, + 246326176000,-11.846626728553472,L, + 248250599250,-11.217981239988280,L, + 250175022500,-10.591220029860361,L, + 252099445750,-9.966381517983798,L, + 254023869000,-9.343516077003720,L, + 255948292250,-8.722710791832045,L, + 257872715500,-8.104035671907765,L, + 259797138750,-7.487617075730522,L, + 261721562000,-6.873606121235707,L, + 263645985250,-6.262176978247153,L, + 265570408500,-5.653575533574980,L, + 267494831750,-5.048106157524076,L, + 269419255000,-4.446149206253847,L, + 271343678250,-3.848252802445184,L, + 273268101500,-3.255134542847762,L, + 275192524750,-2.667855241217045,L, + 277116948000,-2.088026822197156,L, + 279041371250,-1.518361724662231,L, + 280965794500,-0.964059003231112,L, + 282890217750,-0.438162211464815,L, + 284814641000,-0.024736083698014,L, + 286739064250,-0.000002569760960,L, + 288663487500,-0.641057916638645,L, + 290587910750,-1.550083364323546,L, + 292512334000,-2.531512499109328,L, + 294436757250,-3.550850784614212,L, + 296361180500,-4.594114582451382,L, + 298285603750,-5.653942656242868,L, + 300210027000,-6.725873398356775,L, + 302134450250,-7.806922443012636,L, + 304058873500,-8.894982676851505,L, + 305983296750,-9.988442175229261,L, + 307907720000,-11.086044183338625,L, + 309832143250,-12.186763319030447,L, + 311756566500,-13.289703973749814,L, + 313680989750,-14.394078968194883,L, + 315605413000,-15.499148934387998,L, + 317529836250,-16.604220608128404,L, + 319454259500,-17.708592187478889,L, + 321378682750,-18.811532842198254,L, + 323303106000,-19.912250270342785,L, + 325227529250,-21.009861669962259,L, + 327151952500,-22.103318607019077,L, + 329076375750,-23.191372864442421,L, + 331000799000,-24.272426177966512,L, + 332925222250,-25.344345821023019,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447444736284258,L, + 338698492000,-28.466792413299249,L, + 340622915250,-29.448210342305924,L, + 342547338500,-30.357243634036198,L, + 344471761750,-30.998297868775996,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344997406006 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344997406006,L, + 1924423250,0.321910470724106,L, + 3848846500,0.322999149560928,L, + 5773269750,0.323413133621216,L, + 7697693000,0.323450118303299,L, + 9622116250,0.323262542486191,L, + 11546539500,0.322943389415741,L, + 13470962750,0.322556555271149,L, + 15395386000,0.322150558233261,L, + 17319809250,0.321765452623367,L, + 19244232500,0.321436911821365,L, + 21168655750,0.321198940277100,L, + 23093079000,0.321086347103119,L, + 25017502250,0.321136683225632,L, + 26941925500,0.321392476558685,L, + 28866348750,0.326478868722916,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890575408936,L, + 34639618500,0.396891266107559,L, + 36564041750,0.435117304325104,L, + 38488465000,0.476715803146362,L, + 40412888250,0.518270909786224,L, + 42337311500,0.556369721889496,L, + 44261734750,0.588167726993561,L, + 46186158000,0.611717343330383,L, + 48110581250,0.625994682312012,L, + 50035004500,0.630722999572754,L, + 51959427750,0.630567073822021,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406332969666,L, + 57732697500,0.628449618816376,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877678394318,L, + 63505967250,0.624292612075806,L, + 65430390500,0.622524619102478,L, + 67354813750,0.620584428310394,L, + 69279237000,0.618481397628784,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818407058716,L, + 75052506750,0.611272275447845,L, + 76976930000,0.608591020107269,L, + 78901353250,0.605779826641083,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610069274902,L, + 86599046250,0.593320608139038,L, + 88523469500,0.589919805526733,L, + 90447892750,0.586410522460938,L, + 92372316000,0.582794904708862,L, + 94296739250,0.579075157642365,L, + 96221162500,0.575253009796143,L, + 98145585750,0.571330070495605,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187003135681,L, + 103918855500,0.558968961238861,L, + 105843278750,0.554654419422150,L, + 107767702000,0.550243794918060,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135489940643,L, + 113540971750,0.536438047885895,L, + 115465395000,0.531644880771637,L, + 117389818250,0.526755690574646,L, + 119314241500,0.521769881248474,L, + 121238664750,0.516686558723450,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223499774933,L, + 127011934500,0.500841140747070,L, + 128936357750,0.495356082916260,L, + 130860781000,0.489766418933868,L, + 132785204250,0.484070003032684,L, + 134709627500,0.478264242410660,L, + 136634050750,0.472346276044846,L, + 138558474000,0.466313123703003,L, + 140482897250,0.460160970687866,L, + 142407320500,0.453885644674301,L, + 144331743750,0.447482734918594,L, + 146256167000,0.440947026014328,L, + 148180590250,0.434272527694702,L, + 150105013500,0.427452981472015,L, + 152029436750,0.420480579137802,L, + 153953860000,0.413346827030182,L, + 155878283250,0.406042039394379,L, + 157802706500,0.398555040359497,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979869842529,L, + 163575976250,0.374858826398849,L, + 165500399500,0.366488575935364,L, + 167424822750,0.357843667268753,L, + 169349246000,0.348893404006958,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915642738342,L, + 175122515750,0.319778889417648,L, + 177046939000,0.309108704328537,L, + 178971362250,0.297793805599213,L, + 180895785500,0.285674810409546,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887274026871,L, + 186669055250,0.241029396653175,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769356131554,L, + 192442325000,0.000044941902161,L, + 194366748250,0.000040118597099,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067653127,L, + 200140018000,0.000034675722418,L, + 202064441250,0.000033494310628,L, + 203988864500,0.000032463543903,L, + 205913287750,0.000031547566323,L, + 207837711000,0.000030722898373,L, + 209762134250,0.000029973174605,L, + 211686557500,0.000029286446079,L, + 213610980750,0.000028653679692,L, + 215535404000,0.000028067828680,L, + 217459827250,0.000027523314202,L, + 219384250500,0.000027015579690,L, + 221308673750,0.000026540890758,L, + 223233097000,0.000026096120564,L, + 225157520250,0.000025678615202,L, + 227081943500,0.000025286124583,L, + 229006366750,0.000024916706025,L, + 230930790000,0.000024568651497,L, + 232855213250,0.000024240498533,L, + 234779636500,0.000023930946554,L, + 236704059750,0.000023638838684,L, + 238628483000,0.000023363156288,L, + 240552906250,0.000023102995328,L, + 242477329500,0.000022857524527,L, + 244401752750,0.000022626025384,L, + 246326176000,0.000022407839424,L, + 248250599250,0.000022202364562,L, + 250175022500,0.000022009071472,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497706257,L, + 257872715500,0.000021348780137,L, + 259797138750,0.000021210073101,L, + 261721562000,0.000021081305022,L, + 263645985250,0.000020962250346,L, + 265570408500,0.000020852703528,L, + 267494831750,0.000020752522687,L, + 269419255000,0.000020661569579,L, + 271343678250,0.000020579789634,L, + 273268101500,0.000020507175577,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389798010,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311521439,L, + 282890217750,0.000020288925953,L, + 284814641000,0.000020280478566,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232565656304359,L, + 290587910750,0.245429649949074,L, + 292512334000,0.254731357097626,L, + 294436757250,0.262120455503464,L, + 296361180500,0.268265902996063,L, + 298285603750,0.273518353700638,L, + 300210027000,0.278088837862015,L, + 302134450250,0.282116115093231,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903176784515,L, + 307907720000,0.291787862777710,L, + 309832143250,0.294393271207809,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894375562668,L, + 315605413000,0.300840139389038,L, + 317529836250,0.302609354257584,L, + 319454259500,0.304218381643295,L, + 321378682750,0.305681288242340,L, + 323303106000,0.307010591030121,L, + 325227529250,0.308217495679855,L, + 327151952500,0.309312194585800,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203867197037,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452214002609,L, + 338698492000,0.314102500677109,L, + 340622915250,0.314752757549286,L, + 342547338500,0.315492510795593,L, + 344471761750,0.316851437091827,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844642162323 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.316844642162323,L, + 1924423250,0.317553371191025,L, + 3848846500,0.317994177341461,L, + 5773269750,0.318131417036057,L, + 7697693000,0.317930281162262,L, + 9622116250,0.317364990711212,L, + 11546539500,0.316432714462280,L, + 13470962750,0.315173476934433,L, + 15395386000,0.313687056303024,L, + 17319809250,0.312128484249115,L, + 19244232500,0.310671776533127,L, + 21168655750,0.309460788965225,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061301708221,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985611915588,L, + 30790772000,0.324338644742966,L, + 32715195250,0.344707995653152,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122399330139,L, + 38488465000,0.441004604101181,L, + 40412888250,0.476886838674545,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301242351532,L, + 46186158000,0.557670533657074,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115574359894,L, + 51959427750,0.573916673660278,L, + 53883851000,0.573346555233002,L, + 55808274250,0.572440445423126,L, + 57732697500,0.571227610111237,L, + 59657120750,0.569733440876007,L, + 61581544000,0.567979395389557,L, + 63505967250,0.565984249114990,L, + 65430390500,0.563764452934265,L, + 67354813750,0.561334073543549,L, + 69279237000,0.558706045150757,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900731563568,L, + 75052506750,0.549742341041565,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954742908478,L, + 80825776500,0.539339303970337,L, + 82750199750,0.535584390163422,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676701545715,L, + 88523469500,0.523533403873444,L, + 90447892750,0.519269287586212,L, + 92372316000,0.514888107776642,L, + 94296739250,0.510393142700195,L, + 96221162500,0.505787551403046,L, + 98145585750,0.501074075698853,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333276033401,L, + 103918855500,0.486310362815857,L, + 105843278750,0.481188207864761,L, + 107767702000,0.475968450307846,L, + 109692125250,0.470652610063553,L, + 111616548500,0.465241909027100,L, + 113540971750,0.459737360477448,L, + 115465395000,0.454139977693558,L, + 117389818250,0.448450386524200,L, + 119314241500,0.442669212818146,L, + 121238664750,0.436796754598618,L, + 123163088000,0.430833250284195,L, + 125087511250,0.424778789281845,L, + 127011934500,0.418633162975311,L, + 128936357750,0.412396043539047,L, + 130860781000,0.406066924333572,L, + 132785204250,0.399644970893860,L, + 134709627500,0.393129318952560,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811793565750,L, + 140482897250,0.373006731271744,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093666076660,L, + 146256167000,0.351980537176132,L, + 148180590250,0.344758898019791,L, + 150105013500,0.337425023317337,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402775287628,L, + 155878283250,0.314703762531281,L, + 157802706500,0.306871026754379,L, + 159727129750,0.298896670341492,L, + 161651553000,0.290771812200546,L, + 163575976250,0.282485544681549,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375286340714,L, + 169349246000,0.256517082452774,L, + 171273669250,0.247427463531494,L, + 173198092500,0.238077044487000,L, + 175122515750,0.228428348898888,L, + 177046939000,0.218431442975998,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090536355972,L, + 182820208750,0.185499235987663,L, + 184744632000,0.172995224595070,L, + 186669055250,0.159099206328392,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520820706,L, + 194366748250,0.000026909168810,L, + 196291171500,0.000026129555408,L, + 198215594750,0.000025555591492,L, + 200140018000,0.000025090486815,L, + 202064441250,0.000024695733373,L, + 203988864500,0.000024351316824,L, + 205913287750,0.000024045251848,L, + 207837711000,0.000023769700420,L, + 209762134250,0.000023519187380,L, + 211686557500,0.000023289729143,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882535632,L, + 217459827250,0.000022700589398,L, + 219384250500,0.000022530941351,L, + 221308673750,0.000022372327294,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084206648,L, + 227081943500,0.000021953061150,L, + 229006366750,0.000021829622710,L, + 230930790000,0.000021713323804,L, + 232855213250,0.000021603676942,L, + 234779636500,0.000021500241928,L, + 236704059750,0.000021402638595,L, + 238628483000,0.000021310521333,L, + 240552906250,0.000021223591830,L, + 242477329500,0.000021141571779,L, + 244401752750,0.000021064221073,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922658223,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797393518,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687202777,L, + 257872715500,0.000020637440684,L, + 259797138750,0.000020591092834,L, + 261721562000,0.000020548066459,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471681637,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407816919,L, + 271343678250,0.000020380492060,L, + 273268101500,0.000020356224923,L, + 275192524750,0.000020335046429,L, + 277116948000,0.000020317005692,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290852262,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803917884827,L, + 288663487500,0.232919037342072,L, + 290587910750,0.245930299162865,L, + 292512334000,0.255280971527100,L, + 294436757250,0.262665152549744,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961156606674,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234037399292,L, + 311756566500,0.296479731798172,L, + 313680989750,0.298507750034332,L, + 315605413000,0.300342172384262,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509056568146,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115299463272,L, + 325227529250,0.307243049144745,L, + 327151952500,0.308270871639252,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076832771301,L, + 332925222250,0.310882627964020,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149750232697,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037339925766,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212555885315 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212555885315,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968743085861,L, + 5773269750,0.318790227174759,L, + 7697693000,0.318605095148087,L, + 9622116250,0.318420708179474,L, + 11546539500,0.318241685628891,L, + 13470962750,0.318071484565735,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769199609756,L, + 19244232500,0.317642748355865,L, + 21168655750,0.317536920309067,L, + 23093079000,0.317455202341080,L, + 25017502250,0.317402094602585,L, + 26941925500,0.317382901906967,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921138525009,L, + 32715195250,0.358883082866669,L, + 34639618500,0.389874786138535,L, + 36564041750,0.426987320184708,L, + 38488465000,0.467436641454697,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998407363892,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952174186707,L, + 48110581250,0.612877547740936,L, + 50035004500,0.617490410804749,L, + 51959427750,0.617330253124237,L, + 53883851000,0.616870641708374,L, + 55808274250,0.616138458251953,L, + 57732697500,0.615156650543213,L, + 59657120750,0.613944590091705,L, + 61581544000,0.612519025802612,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082698822021,L, + 67354813750,0.607095539569855,L, + 69279237000,0.604942321777344,L, + 71203660250,0.602631628513336,L, + 73128083500,0.600171148777008,L, + 75052506750,0.597567498683929,L, + 76976930000,0.594826757907867,L, + 78901353250,0.591954171657562,L, + 80825776500,0.588954687118530,L, + 82750199750,0.585832834243774,L, + 84674623000,0.582592248916626,L, + 86599046250,0.579236507415771,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191834449768,L, + 92372316000,0.568508267402649,L, + 94296739250,0.564720034599304,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837975978851,L, + 100070009000,0.552747130393982,L, + 101994432250,0.548558354377747,L, + 103918855500,0.544272601604462,L, + 105843278750,0.539890766143799,L, + 107767702000,0.535413503646851,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174724102020,L, + 113540971750,0.521413743495941,L, + 115465395000,0.516558229923248,L, + 117389818250,0.511607944965363,L, + 119314241500,0.506562590599060,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183931827545,L, + 125087511250,0.490848720073700,L, + 127011934500,0.485414803028107,L, + 128936357750,0.479880511760712,L, + 130860781000,0.474244296550751,L, + 132785204250,0.468504101037979,L, + 134709627500,0.462657660245895,L, + 136634050750,0.456702321767807,L, + 138558474000,0.450635254383087,L, + 140482897250,0.444453001022339,L, + 142407320500,0.438151925802231,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175309181213,L, + 148180590250,0.418489575386047,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692530632019,L, + 153953860000,0.397566050291061,L, + 155878283250,0.390275955200195,L, + 157802706500,0.382811635732651,L, + 159727129750,0.375160872936249,L, + 161651553000,0.367309540510178,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935131311417,L, + 167424822750,0.342368513345718,L, + 169349246000,0.333512216806412,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778596162796,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371394395828,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325131177902,L, + 186669055250,0.228012204170227,L, + 188593478500,0.207745239138603,L, + 190517901750,0.171379089355469,L, + 192442325000,0.000042378902435,L, + 194366748250,0.000038056874473,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426928323,L, + 200140018000,0.000033179658203,L, + 202064441250,0.000032121028198,L, + 203988864500,0.000031197385397,L, + 205913287750,0.000030376602808,L, + 207837711000,0.000029637645639,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350479624,L, + 213610980750,0.000027783471523,L, + 215535404000,0.000027258511182,L, + 217459827250,0.000026770581826,L, + 219384250500,0.000026315619834,L, + 221308673750,0.000025890265533,L, + 223233097000,0.000025491714041,L, + 225157520250,0.000025117600671,L, + 227081943500,0.000024765900889,L, + 229006366750,0.000024434873922,L, + 230930790000,0.000024122993636,L, + 232855213250,0.000023828946723,L, + 234779636500,0.000023551561753,L, + 236704059750,0.000023289809178,L, + 238628483000,0.000023042779503,L, + 240552906250,0.000022809656002,L, + 242477329500,0.000022589700166,L, + 244401752750,0.000022382258976,L, + 246326176000,0.000022186748538,L, + 248250599250,0.000022002628612,L, + 250175022500,0.000021829426260,L, + 252099445750,0.000021666706743,L, + 254023869000,0.000021514082619,L, + 255948292250,0.000021371202820,L, + 257872715500,0.000021237750843,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998078980,L, + 263645985250,0.000020891397071,L, + 265570408500,0.000020793238946,L, + 267494831750,0.000020703464543,L, + 269419255000,0.000020621968361,L, + 271343678250,0.000020548684915,L, + 273268101500,0.000020483616026,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378431145,L, + 279041371250,0.000020338751710,L, + 280965794500,0.000020308290914,L, + 282890217750,0.000020288052838,L, + 284814641000,0.000020280476747,L, + 286739064250,0.206803917884827,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435789227486,L, + 292512334000,0.254741221666336,L, + 294436757250,0.262134075164795,L, + 296361180500,0.268283218145370,L, + 298285603750,0.273539334535599,L, + 300210027000,0.278113335371017,L, + 302134450250,0.282144129276276,L, + 304058873500,0.285728573799133,L, + 305983296750,0.288937777280807,L, + 307907720000,0.291825532913208,L, + 309832143250,0.294433921575546,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940449953079,L, + 315605413000,0.300888627767563,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304270982742310,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066202163696,L, + 325227529250,0.308274149894714,L, + 327151952500,0.309369504451752,L, + 329076375750,0.310361951589584,L, + 331000799000,0.311260938644409,L, + 332925222250,0.312076270580292,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503086566925,L, + 338698492000,0.314148753881454,L, + 340622915250,0.314791977405548,L, + 342547338500,0.315520226955414,L, + 344471761750,0.316851407289505,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_075" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,-0.063678026199341,L, + 51959427750,-0.063678026199341,L, + 53883851000,0.011904954910278,L, + 55808274250,0.011491060256958,L, + 57732697500,0.011004209518433,L, + 59657120750,0.010502457618713,L, + 61581544000,0.009992957115173,L, + 63505967250,0.009478211402893,L, + 65430390500,0.008960008621216,L, + 67354813750,0.008439183235168,L, + 69279237000,0.007916331291199,L, + 71203660250,0.007391691207886,L, + 73128083500,0.006865739822388,L, + 75052506750,0.006338357925415,L, + 76976930000,0.005810141563416,L, + 78901353250,0.005280852317810,L, + 80825776500,0.004750609397888,L, + 82750199750,0.004219889640808,L, + 84674623000,0.003688454627991,L, + 86599046250,0.003156542778015,L, + 88523469500,0.002623796463013,L, + 90447892750,0.002090692520142,L, + 92372316000,0.001557111740112,L, + 94296739250,0.001023173332214,L, + 96221162500,0.000488996505737,L, + 100070009000,-0.000580549240112,L, + 101994432250,-0.001115798950195,L, + 103918855500,-0.001651525497437,L, + 105843278750,-0.002187371253967,L, + 107767702000,-0.002723336219788,L, + 109692125250,-0.003259539604187,L, + 111616548500,-0.003796219825745,L, + 113540971750,-0.004333138465881,L, + 115465395000,-0.004869580268860,L, + 117389818250,-0.005406737327576,L, + 119314241500,-0.005944252014160,L, + 121238664750,-0.006481528282166,L, + 123163088000,-0.007019042968750,L, + 125087511250,-0.007556796073914,L, + 128936357750,-0.008632540702820,L, + 130860781000,-0.009170532226562,L, + 134709627500,-0.010247468948364,L, + 136634050750,-0.010785818099976,L, + 138558474000,-0.011324286460876,L, + 140482897250,-0.011863112449646,L, + 142407320500,-0.012401580810547,L, + 144331743750,-0.012940645217896,L, + 146256167000,-0.013479232788086,L, + 148180590250,-0.014018416404724,L, + 150105013500,-0.014557480812073,L, + 152029436750,-0.015096187591553,L, + 153953860000,-0.015635490417480,L, + 155878283250,-0.016174554824829,L, + 157802706500,-0.016713976860046,L, + 159727129750,-0.017253160476685,L, + 161651553000,-0.017792582511902,L, + 163575976250,-0.018331766128540,L, + 165500399500,-0.018871545791626,L, + 167424822750,-0.019411087036133,L, + 169349246000,-0.019950389862061,L, + 171273669250,-0.020490050315857,L, + 173198092500,-0.021029233932495,L, + 175122515750,-0.021569132804871,L, + 177046939000,-0.022108793258667,L, + 178971362250,-0.022648215293884,L, + 180895785500,-0.023188114166260,L, + 182820208750,-0.023727774620056,L, + 184744632000,-0.024267196655273,L, + 186669055250,-0.024807214736938,L, + 188593478500,-0.025346755981445,L, + 190517901750,-0.025886774063110,L, + 192442325000,-0.026426196098328,L, + 194366748250,-0.026965856552124,L, + 196291171500,-0.027505874633789,L, + 198215594750,-0.028045177459717,L, + 200140018000,-0.028584957122803,L, + 202064441250,-0.029124855995178,L, + 203988864500,-0.029664278030396,L, + 205913287750,-0.030203819274902,L, + 207837711000,-0.030743718147278,L, + 213610980750,-0.032361984252930,L, + 215535404000,-0.032901525497437,L, + 217459827250,-0.033441305160522,L, + 219384250500,-0.033980369567871,L, + 221308673750,-0.034519910812378,L, + 223233097000,-0.035059094429016,L, + 225157520250,-0.035598397254944,L, + 229006366750,-0.036676764488220,L, + 230930790000,-0.037215590476990,L, + 232855213250,-0.037754893302917,L, + 234779636500,-0.038293719291687,L, + 236704059750,-0.038832426071167,L, + 238628483000,-0.039371371269226,L, + 240552906250,-0.039910197257996,L, + 242477329500,-0.040448665618896,L, + 244401752750,-0.040987372398376,L, + 246326176000,-0.041525840759277,L, + 248250599250,-0.042064070701599,L, + 250175022500,-0.042602539062500,L, + 252099445750,-0.043140530586243,L, + 254023869000,-0.043678283691406,L, + 257872715500,-0.044754028320312,L, + 261721562000,-0.045829057693481,L, + 263645985250,-0.046366333961487,L, + 265570408500,-0.046903491020203,L, + 267494831750,-0.047440409660339,L, + 269419255000,-0.047976851463318,L, + 271343678250,-0.048513412475586,L, + 275192524750,-0.049585819244385,L, + 277116948000,-0.050121426582336,L, + 279041371250,-0.050657272338867,L, + 280965794500,-0.051192522048950,L, + 282890217750,-0.051727294921875,L, + 284814641000,-0.052261948585510,L, + 288663487500,-0.053330302238464,L, + 290587910750,-0.053863763809204,L, + 292512334000,-0.054396867752075,L, + 294436757250,-0.054929614067078,L, + 296361180500,-0.055461406707764,L, + 298285603750,-0.055992960929871,L, + 300210027000,-0.056523680686951,L, + 302134450250,-0.057053923606873,L, + 304058873500,-0.057583093643188,L, + 305983296750,-0.058111429214478,L, + 307907720000,-0.058638811111450,L, + 309832143250,-0.059164762496948,L, + 311756566500,-0.059689402580261,L, + 313680989750,-0.060212492942810,L, + 315605413000,-0.060733318328857,L, + 317529836250,-0.061251163482666,L, + 319454259500,-0.061766028404236,L, + 321378682750,-0.062275409698486,L, + 323303106000,-0.062777280807495,L, + 325227529250,-0.063264131546021,L, + 327151952500,-0.063678026199341,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339758872986 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,-0.087339758872986,L, + 51959427750,-0.087339758872986,L, + 53883851000,-0.087339520454407,L, + 55808274250,-0.087340116500854,L, + 57732697500,-0.087339401245117,L, + 59657120750,-0.087339758872986,L, + 61581544000,-0.087339878082275,L, + 63505967250,-0.087339520454407,L, + 65430390500,-0.087339639663696,L, + 69279237000,-0.087339639663696,L, + 73128083500,-0.087339401245117,L, + 75052506750,-0.087339520454407,L, + 76976930000,-0.087339520454407,L, + 78901353250,-0.087339639663696,L, + 80825776500,-0.087339520454407,L, + 82750199750,-0.087339758872986,L, + 84674623000,-0.087339758872986,L, + 86599046250,-0.087340116500854,L, + 88523469500,-0.087339758872986,L, + 90447892750,-0.087339520454407,L, + 92372316000,-0.087339520454407,L, + 94296739250,-0.087339758872986,L, + 96221162500,-0.087339639663696,L, + 100070009000,-0.087339878082275,L, + 103918855500,-0.087339878082275,L, + 105843278750,-0.087339997291565,L, + 107767702000,-0.087339639663696,L, + 109692125250,-0.087340116500854,L, + 111616548500,-0.087339520454407,L, + 113540971750,-0.087339639663696,L, + 115465395000,-0.087339639663696,L, + 117389818250,-0.087339878082275,L, + 121238664750,-0.087339639663696,L, + 123163088000,-0.087340116500854,L, + 125087511250,-0.087339639663696,L, + 130860781000,-0.087339997291565,L, + 132785204250,-0.087339878082275,L, + 134709627500,-0.087339639663696,L, + 136634050750,-0.087339639663696,L, + 138558474000,-0.087339878082275,L, + 140482897250,-0.087339520454407,L, + 142407320500,-0.087339997291565,L, + 144331743750,-0.087339520454407,L, + 146256167000,-0.087340116500854,L, + 148180590250,-0.087339639663696,L, + 150105013500,-0.087339401245117,L, + 152029436750,-0.087339997291565,L, + 153953860000,-0.087339758872986,L, + 155878283250,-0.087339997291565,L, + 157802706500,-0.087339758872986,L, + 159727129750,-0.087339997291565,L, + 161651553000,-0.087339878082275,L, + 163575976250,-0.087340116500854,L, + 165500399500,-0.087339520454407,L, + 167424822750,-0.087339401245117,L, + 169349246000,-0.087339758872986,L, + 171273669250,-0.087339639663696,L, + 173198092500,-0.087339997291565,L, + 175122515750,-0.087339520454407,L, + 177046939000,-0.087339878082275,L, + 180895785500,-0.087339878082275,L, + 182820208750,-0.087339758872986,L, + 186669055250,-0.087339758872986,L, + 188593478500,-0.087339639663696,L, + 190517901750,-0.087339758872986,L, + 192442325000,-0.087339639663696,L, + 194366748250,-0.087339997291565,L, + 196291171500,-0.087339639663696,L, + 198215594750,-0.087339520454407,L, + 200140018000,-0.087339997291565,L, + 202064441250,-0.087339520454407,L, + 203988864500,-0.087339878082275,L, + 205913287750,-0.087339878082275,L, + 207837711000,-0.087339758872986,L, + 209762134250,-0.087339758872986,L, + 211686557500,-0.087339520454407,L, + 213610980750,-0.087339997291565,L, + 215535404000,-0.087339878082275,L, + 217459827250,-0.087339639663696,L, + 219384250500,-0.087339520454407,L, + 221308673750,-0.087339758872986,L, + 223233097000,-0.087339520454407,L, + 225157520250,-0.087339878082275,L, + 227081943500,-0.087339639663696,L, + 229006366750,-0.087339282035828,L, + 230930790000,-0.087339997291565,L, + 232855213250,-0.087339639663696,L, + 236704059750,-0.087339878082275,L, + 238628483000,-0.087339878082275,L, + 240552906250,-0.087339401245117,L, + 242477329500,-0.087339878082275,L, + 248250599250,-0.087339520454407,L, + 250175022500,-0.087339758872986,L, + 252099445750,-0.087339401245117,L, + 254023869000,-0.087340116500854,L, + 255948292250,-0.087339639663696,L, + 257872715500,-0.087339758872986,L, + 259797138750,-0.087339758872986,L, + 261721562000,-0.087339520454407,L, + 263645985250,-0.087339401245117,L, + 265570408500,-0.087339639663696,L, + 267494831750,-0.087339758872986,L, + 271343678250,-0.087339758872986,L, + 273268101500,-0.087339639663696,L, + 275192524750,-0.087339878082275,L, + 277116948000,-0.087339520454407,L, + 279041371250,-0.087339520454407,L, + 280965794500,-0.087339878082275,L, + 282890217750,-0.087339520454407,L, + 284814641000,-0.087339639663696,L, + 286739064250,-0.087339997291565,L, + 288663487500,-0.087339282035828,L, + 290587910750,-0.087339878082275,L, + 292512334000,-0.087339639663696,L, + 294436757250,-0.087339758872986,L, + 296361180500,-0.087339520454407,L, + 300210027000,-0.087339758872986,L, + 305983296750,-0.087339758872986,L, + 307907720000,-0.087339878082275,L, + 309832143250,-0.087339878082275,L, + 311756566500,-0.087339639663696,L, + 315605413000,-0.087339639663696,L, + 317529836250,-0.087339878082275,L, + 319454259500,-0.087339878082275,L, + 321378682750,-0.087339997291565,L, + 323303106000,-0.087339878082275,L, + 325227529250,-0.087339639663696,L, + 327151952500,-0.087339758872986,L, + 344471761750,-0.087339758872986,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241689682007 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241689682007,L, + 51959427750,-0.570241689682007,L, + 53883851000,0.020681858062744,L, + 55808274250,0.022182703018188,L, + 57732697500,0.023703336715698,L, + 59657120750,0.025243759155273,L, + 61581544000,0.026805162429810,L, + 63505967250,0.028387784957886,L, + 65430390500,0.029992818832397,L, + 67354813750,0.031620502471924,L, + 69279237000,0.033271789550781,L, + 71203660250,0.034947633743286,L, + 73128083500,0.036648273468018,L, + 75052506750,0.038375616073608,L, + 76976930000,0.040130138397217,L, + 78901353250,0.041912555694580,L, + 80825776500,0.043724060058594,L, + 82750199750,0.045566320419312,L, + 84674623000,0.047440052032471,L, + 86599046250,0.049346208572388,L, + 88523469500,0.051286935806274,L, + 90447892750,0.053263425827026,L, + 92372316000,0.055277109146118,L, + 94296739250,0.057329654693604,L, + 96221162500,0.059423208236694,L, + 98145585750,0.061559200286865,L, + 100070009000,0.063740253448486,L, + 101994432250,0.065968036651611,L, + 103918855500,0.068245410919189,L, + 105843278750,0.070575237274170,L, + 107767702000,0.072959899902344,L, + 109692125250,0.075402736663818,L, + 111616548500,0.077907323837280,L, + 113540971750,0.080477237701416,L, + 115465395000,0.083116769790649,L, + 117389818250,0.085829973220825,L, + 119314241500,0.088622570037842,L, + 121238664750,0.091499805450439,L, + 123163088000,0.094467878341675,L, + 125087511250,0.097533702850342,L, + 127011934500,0.100704669952393,L, + 128936357750,0.103990554809570,L, + 130860781000,0.107399702072144,L, + 132785204250,0.110944509506226,L, + 134709627500,0.114637613296509,L, + 136634050750,0.118492841720581,L, + 138558474000,0.122527360916138,L, + 140482897250,0.126760721206665,L, + 142407320500,0.131215333938599,L, + 144331743750,0.135916709899902,L, + 146256167000,0.140894889831543,L, + 148180590250,0.146184206008911,L, + 150105013500,0.151823520660400,L, + 152029436750,0.157855272293091,L, + 153953860000,0.164322853088379,L, + 155878283250,0.171265363693237,L, + 157802706500,0.178704977035522,L, + 159727129750,0.186625242233276,L, + 161651553000,0.194945812225342,L, + 163575976250,0.203496932983398,L, + 165500399500,0.212026357650757,L, + 167424822750,0.220256805419922,L, + 169349246000,0.227962732315063,L, + 171273669250,0.235020399093628,L, + 173198092500,0.241793632507324,L, + 175122515750,0.248681783676147,L, + 177046939000,0.255687952041626,L, + 178971362250,0.262816905975342,L, + 180895785500,0.270072460174561,L, + 182820208750,0.277458190917969,L, + 184744632000,0.284978389739990,L, + 186669055250,0.292636394500732,L, + 188593478500,0.300436496734619,L, + 190517901750,0.308381795883179,L, + 192442325000,0.316475391387939,L, + 194366748250,0.324720621109009,L, + 196291171500,0.333120107650757,L, + 198215594750,0.341675519943237,L, + 200140018000,0.350389003753662,L, + 202064441250,0.359261989593506,L, + 203988864500,0.368295431137085,L, + 205913287750,0.377489089965820,L, + 207837711000,0.386842727661133,L, + 209762134250,0.396355152130127,L, + 211686557500,0.406023979187012,L, + 213610980750,0.415848016738892,L, + 215535404000,0.425822734832764,L, + 217459827250,0.435945034027100,L, + 219384250500,0.446209907531738,L, + 221308673750,0.456612348556519,L, + 223233097000,0.467146396636963,L, + 225157520250,0.477805852890015,L, + 227081943500,0.488584041595459,L, + 229006366750,0.499473333358765,L, + 230930790000,0.510466814041138,L, + 232855213250,0.521556615829468,L, + 234779636500,0.532734870910645,L, + 236704059750,0.543993473052979,L, + 238628483000,0.555325031280518,L, + 240552906250,0.566721439361572,L, + 242477329500,0.578175544738770,L, + 244401752750,0.589679718017578,L, + 246326176000,0.601226568222046,L, + 248250599250,0.612809658050537,L, + 250175022500,0.624422311782837,L, + 252099445750,0.636058330535889,L, + 254023869000,0.647712469100952,L, + 255948292250,0.659378290176392,L, + 257872715500,0.671051740646362,L, + 259797138750,0.682727575302124,L, + 261721562000,0.694401025772095,L, + 263645985250,0.706069469451904,L, + 265570408500,0.717728137969971,L, + 267494831750,0.729374408721924,L, + 269419255000,0.741004943847656,L, + 271343678250,0.752798318862915,L, + 273268101500,0.764907121658325,L, + 275192524750,0.777295351028442,L, + 277116948000,0.789932489395142,L, + 279041371250,0.802792549133301,L, + 280965794500,0.815852880477905,L, + 282890217750,0.829093694686890,L, + 284814641000,0.842496871948242,L, + 286739064250,0.856047153472900,L, + 288663487500,0.869729518890381,L, + 290587910750,0.883530616760254,L, + 292512334000,0.897437810897827,L, + 294436757250,0.911438465118408,L, + 296361180500,0.925521612167358,L, + 298285603750,0.939675092697144,L, + 300210027000,0.953887701034546,L, + 302134450250,0.968146324157715,L, + 304058873500,0.982438325881958,L, + 305983296750,0.996749162673950,L, + 307907720000,1.011063337326050,L, + 309832143250,1.025361776351929,L, + 311756566500,1.039621591567993,L, + 313680989750,1.053814172744751,L, + 315605413000,1.067902326583862,L, + 317529836250,1.081833362579346,L, + 319454259500,1.095528602600098,L, + 321378682750,1.108861207962036,L, + 323303106000,1.121590375900269,L, + 325227529250,1.133138418197632,L, + 327151952500,1.140673875808716,L, + 329076375750,-0.570241689682007,L, + 344471761750,-0.570241689682007,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,30.670462448994193,L, + 51959427750,30.670462448994193,L, + 53883851000,33.480948688667006,L, + 55808274250,33.465546612088644,L, + 57732697500,33.447453440977306,L, + 59657120750,33.428789949070278,L, + 61581544000,33.409843004312691,L, + 63505967250,33.390711644447507,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352080094501972,L, + 69279237000,33.332634545934972,L, + 71203660250,33.313120695476279,L, + 73128083500,33.293559033693384,L, + 75052506750,33.273959805870064,L, + 76976930000,33.254309351627967,L, + 78901353250,33.234628161534602,L, + 80825776500,33.214919650684557,L, + 82750199750,33.195176988888669,L, + 84674623000,33.175417251619848,L, + 86599046250,33.155630193594348,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116004851124579,L, + 92372316000,33.096169981774885,L, + 94296739250,33.076321452046862,L, + 96221162500,33.056449016656735,L, + 98145585750,33.036569751077444,L, + 100070009000,33.016680240214392,L, + 103918855500,32.976860237353279,L, + 105843278750,32.956936575544376,L, + 107767702000,32.937006083546308,L, + 109692125250,32.917065346264486,L, + 111616548500,32.897110948604322,L, + 115465395000,32.857188492905657,L, + 117389818250,32.837217019772567,L, + 119314241500,32.817242131544894,L, + 121238664750,32.797260413128051,L, + 123163088000,32.777268449427453,L, + 127011934500,32.737270861647914,L, + 130860781000,32.697266443679204,L, + 132785204250,32.677247159221928,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617185890755508,L, + 140482897250,32.597156361014470,L, + 144331743750,32.557090471343237,L, + 146256167000,32.537050696318445,L, + 150105013500,32.496977976458041,L, + 152029436750,32.476921125960324,L, + 153953860000,32.456874520746368,L, + 157802706500,32.416774480129277,L, + 159727129750,32.396721044726149,L, + 161651553000,32.376664194228439,L, + 163575976250,32.356614173919894,L, + 165500399500,32.336550493233013,L, + 169349246000,32.296429962048414,L, + 171273669250,32.276362866266943,L, + 173198092500,32.256299185580062,L, + 175122515750,32.236238919987763,L, + 177046939000,32.216175239300881,L, + 180895785500,32.176041047737939,L, + 182820208750,32.155977367051058,L, + 184744632000,32.135906856175005,L, + 188593478500,32.095772664612070,L, + 190517901750,32.075702153736010,L, + 192442325000,32.055638473049129,L, + 194366748250,32.035561131983904,L, + 198215594750,31.995433770610138,L, + 200140018000,31.975363259734085,L, + 202064441250,31.955302994141785,L, + 203988864500,31.935229068171150,L, + 205913287750,31.915168802578851,L, + 207837711000,31.895101706797380,L, + 209762134250,31.875041441205081,L, + 211686557500,31.854977760518199,L, + 213610980750,31.834920910020486,L, + 215535404000,31.814857229333601,L, + 217459827250,31.794796963741302,L, + 219384250500,31.774740113243588,L, + 223233097000,31.734633242437333,L, + 225157520250,31.714576391939620,L, + 227081943500,31.694526371631074,L, + 229006366750,31.674483181511700,L, + 230930790000,31.654436576297744,L, + 232855213250,31.634393386178370,L, + 234779636500,31.614353611153579,L, + 238628483000,31.574280891293174,L, + 242477329500,31.534221831811106,L, + 244401752750,31.514195717164657,L, + 246326176000,31.494173017612795,L, + 248250599250,31.474160563344686,L, + 250175022500,31.454144693981991,L, + 252099445750,31.434139069903054,L, + 254023869000,31.414126615634945,L, + 255948292250,31.394134651934344,L, + 257872715500,31.374135858044578,L, + 259797138750,31.354147309438563,L, + 261721562000,31.334165591021719,L, + 263645985250,31.314180457510290,L, + 267494831750,31.274258001811624,L, + 269419255000,31.254293358867706,L, + 271343678250,31.234345791396713,L, + 273268101500,31.214401639020302,L, + 275192524750,31.194471147022234,L, + 277116948000,31.174554315402506,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134724067257633,L, + 282890217750,31.114841386583755,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075089685614337,L, + 288663487500,31.055237740791725,L, + 290587910750,31.035396041252866,L, + 292512334000,31.015574832281519,L, + 294436757250,30.995774113877680,L, + 296361180500,30.975990470946765,L, + 298285603750,30.956227318583363,L, + 300210027000,30.936484656787467,L, + 302134450250,30.916782976126594,L, + 304058873500,30.897098370938647,L, + 305983296750,30.877451331791132,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838280196901167,L, + 311756566500,30.818769761537052,L, + 313680989750,30.799327628064638,L, + 315605413000,30.779964041767681,L, + 317529836250,30.760702908308275,L, + 319454259500,30.741554472970169,L, + 321378682750,30.722617773496339,L, + 323303106000,30.703961111778472,L, + 325227529250,30.685861110477965,L, + 327151952500,30.670462448994193,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044316268308890,L, + 57732697500,-30.232848813777522,L, + 59657120750,-29.396266753668051,L, + 61581544000,-28.546644154885755,L, + 63505967250,-27.688685310221466,L, + 65430390500,-26.824816644377837,L, + 67354813750,-25.956477619722438,L, + 69279237000,-25.084610802360732,L, + 71203660250,-24.209870182905750,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572628276435481,L, + 78901353250,-20.690155882840052,L, + 80825776500,-19.806336234430841,L, + 82750199750,-18.921305934991249,L, + 84674623000,-18.035194758115502,L, + 86599046250,-17.148106864188446,L, + 88523469500,-16.260137875858462,L, + 90447892750,-15.371356095017243,L, + 92372316000,-14.481833238651081,L, + 94296739250,-13.591631632236149,L, + 96221162500,-12.700800794643930,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917431572166993,L, + 101994432250,-10.024975149552315,L, + 103918855500,-9.132050005205844,L, + 105843278750,-8.238685167431555,L, + 107767702000,-7.344908810759773,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556225701108574,L, + 113540971750,-4.661364625019232,L, + 115465395000,-3.766180822491606,L, + 117389818250,-2.870696491640500,L, + 119314241500,-1.974926146617900,L, + 121238664750,-1.078885475514557,L, + 123163088000,-0.182591433741475,L, + 125087511250,0.713942545106629,L, + 127011934500,1.610706095684082,L, + 128936357750,2.507683890085891,L, + 130860781000,3.404866163275978,L, + 132785204250,4.302234559120946,L, + 134709627500,5.199793986819263,L, + 136634050750,6.097520327265423,L, + 138558474000,6.995414434233070,L, + 140482897250,7.893457524701988,L, + 142407320500,8.791656428861346,L, + 144331743750,9.689991083030460,L, + 146256167000,10.588453803246511,L, + 148180590250,11.487039466867619,L, + 150105013500,12.385742097478266,L, + 152029436750,13.284552303568340,L, + 153953860000,14.183467523816903,L, + 155878283250,15.082476659166554,L, + 157802706500,15.981582270938230,L, + 159727129750,16.880766429885362,L, + 161651553000,17.780030843555242,L, + 163575976250,18.679368681758699,L, + 165500399500,19.578773114306561,L, + 167424822750,20.478245848746127,L, + 169349246000,21.377766394509880,L, + 171273669250,22.277346704428872,L, + 173198092500,23.176971410577469,L, + 175122515750,24.076633682766502,L, + 177046939000,24.976333520995968,L, + 178971362250,25.876064095076700,L, + 180895785500,26.775828820103282,L, + 182820208750,27.675610620602789,L, + 184744632000,28.575416326764390,L, + 186669055250,29.475227155567872,L, + 188593478500,30.375053352296984,L, + 190517901750,31.274889794309850,L, + 192442325000,32.174722821228130,L, + 194366748250,33.074549017957246,L, + 196291171500,33.974364969402600,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773955891158295,L, + 202064441250,36.673713785995709,L, + 203988864500,37.573447775171026,L, + 205913287750,38.473147613400492,L, + 207837711000,39.372820130873279,L, + 209762134250,40.272427761548947,L, + 211686557500,41.172021731846279,L, + 213610980750,42.071543985157327,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870407491766414,L, + 219384250500,44.769748745064454,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568192195039593,L, + 225157520250,47.467287561527513,L, + 227081943500,48.366307795934567,L, + 229006366750,49.265222162409479,L, + 230930790000,50.164034076046846,L, + 232855213250,51.062746951941250,L, + 234779636500,51.961316393863079,L, + 236704059750,52.859790213136534,L, + 238628483000,53.758113768248244,L, + 240552906250,54.656321210144064,L, + 242477329500,55.554368142594392,L, + 244401752750,56.452254565599219,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144923457184063,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939070718171266,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106001874633691,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955193829079664 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-2.955193829079664,L, + 51959427750,-2.955193829079664,L, + 53883851000,0.259470001986405,L, + 55808274250,0.257314303570902,L, + 57732697500,0.254980379906745,L, + 59657120750,0.252467297179007,L, + 61581544000,0.249781005122786,L, + 63505967250,0.246915820807249,L, + 65430390500,0.243865661095167,L, + 67354813750,0.240638876960016,L, + 69279237000,0.237225409881028,L, + 71203660250,0.233625633384172,L, + 73128083500,0.229847578277808,L, + 75052506750,0.225882440021210,L, + 76976930000,0.221726776839366,L, + 78901353250,0.217376973534492,L, + 80825776500,0.212842514998190,L, + 82750199750,0.208121867105940,L, + 84674623000,0.203200769169805,L, + 86599046250,0.198085424388936,L, + 88523469500,0.192774285298598,L, + 90447892750,0.187270473508684,L, + 92372316000,0.181562316332626,L, + 94296739250,0.175657657815798,L, + 96221162500,0.169549654428817,L, + 98145585750,0.163236158397355,L, + 100070009000,0.156719651001069,L, + 101994432250,0.149997811042861,L, + 103918855500,0.143070345038038,L, + 105843278750,0.135929955889969,L, + 107767702000,0.128576283412895,L, + 109692125250,0.121013196268653,L, + 111616548500,0.113237519486494,L, + 113540971750,0.105243770238784,L, + 115465395000,0.097030794597079,L, + 117389818250,0.088599379633960,L, + 119314241500,0.079950012267209,L, + 121238664750,0.071072253779980,L, + 123163088000,0.061968372008519,L, + 125087511250,0.052640341304385,L, + 127011934500,0.043087654739475,L, + 128936357750,0.033297018791312,L, + 130860781000,0.023279997757234,L, + 132785204250,0.013022847882568,L, + 134709627500,0.002528163005023,L, + 136634050750,-0.008203911800583,L, + 138558474000,-0.019173618325614,L, + 140482897250,-0.030387601663782,L, + 142407320500,-0.041848769147806,L, + 144331743750,-0.053558391432996,L, + 146256167000,-0.065516188374873,L, + 148180590250,-0.077728206425081,L, + 150105013500,-0.090191100525155,L, + 152029436750,-0.102915642897271,L, + 153953860000,-0.115893569279339,L, + 155878283250,-0.129136585708460,L, + 157802706500,-0.142641310440584,L, + 159727129750,-0.156418415646289,L, + 161651553000,-0.170458002887362,L, + 163575976250,-0.184773665841078,L, + 165500399500,-0.199362402959462,L, + 167424822750,-0.214231431297868,L, + 169349246000,-0.229380804217147,L, + 171273669250,-0.244811402171374,L, + 173198092500,-0.260530362174622,L, + 175122515750,-0.276538057752861,L, + 177046939000,-0.292837423753000,L, + 178971362250,-0.309435743931459,L, + 180895785500,-0.326330243523888,L, + 182820208750,-0.343527966162868,L, + 184744632000,-0.361027551146650,L, + 186669055250,-0.378839777367519,L, + 188593478500,-0.396965151753576,L, + 190517901750,-0.415406982677701,L, + 192442325000,-0.434167511295716,L, + 194366748250,-0.453248418474486,L, + 196291171500,-0.472661523642927,L, + 198215594750,-0.492403331665174,L, + 200140018000,-0.512482113473426,L, + 202064441250,-0.532902351379325,L, + 203988864500,-0.553663725217754,L, + 205913287750,-0.574772905095324,L, + 207837711000,-0.596234480045383,L, + 209762134250,-0.618057521412925,L, + 211686557500,-0.640242135919653,L, + 213610980750,-0.662790938247360,L, + 215535404000,-0.685712519493361,L, + 217459827250,-0.709013122877444,L, + 219384250500,-0.732698831536839,L, + 221308673750,-0.756767671119989,L, + 223233097000,-0.781227805837386,L, + 225157520250,-0.806092575902253,L, + 227081943500,-0.831362835088235,L, + 229006366750,-0.857039917416657,L, + 230930790000,-0.883137003018180,L, + 232855213250,-0.909656973378862,L, + 234779636500,-0.936608152791753,L, + 236704059750,-0.963997958415405,L, + 238628483000,-0.991832259943637,L, + 240552906250,-1.020120875773379,L, + 242477329500,-1.048870209206979,L, + 244401752750,-1.078083248452199,L, + 246326176000,-1.107773547165673,L, + 248250599250,-1.137947295206336,L, + 250175022500,-1.168616125240119,L, + 252099445750,-1.199792096819774,L, + 254023869000,-1.231470620911953,L, + 255948292250,-1.263674322518282,L, + 257872715500,-1.296417502347336,L, + 259797138750,-1.329695784809177,L, + 261721562000,-1.363529020141081,L, + 263645985250,-1.397927240183391,L, + 265570408500,-1.432910295173382,L, + 267494831750,-1.468479465771525,L, + 269419255000,-1.504654922380210,L, + 271343678250,-1.541446163231254,L, + 273268101500,-1.578864714268881,L, + 275192524750,-1.616935761815654,L, + 277116948000,-1.655674353632089,L, + 279041371250,-1.695088707289532,L, + 280965794500,-1.735205716657838,L, + 282890217750,-1.776036907681233,L, + 284814641000,-1.817608960786162,L, + 286739064250,-1.859932868308320,L, + 288663487500,-1.903044382019143,L, + 290587910750,-1.946956095079915,L, + 292512334000,-1.991701731549662,L, + 294436757250,-2.037298793788133,L, + 296361180500,-2.083784207505527,L, + 298285603750,-2.131181238033704,L, + 300210027000,-2.179529585847216,L, + 302134450250,-2.228860200240739,L, + 304058873500,-2.279212141358589,L, + 305983296750,-2.330613583731092,L, + 307907720000,-2.383117247880905,L, + 309832143250,-2.436770518245394,L, + 311756566500,-2.491600715581239,L, + 313680989750,-2.547656291542864,L, + 315605413000,-2.604974812170706,L, + 317529836250,-2.663574633598158,L, + 319454259500,-2.723434838370887,L, + 321378682750,-2.784437819169121,L, + 323303106000,-2.846168855444196,L, + 325227529250,-2.907191046149472,L, + 327151952500,-2.955195963513780,L, + 329076375750,-2.955193829079664,L, + 344471761750,-2.955193829079664,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152128458023,L, + 57732697500,0.163903713226318,L, + 59657120750,0.164672151207924,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260391473770,L, + 65430390500,0.167080476880074,L, + 67354813750,0.167918160557747,L, + 69279237000,0.168773517012596,L, + 71203660250,0.169646799564362,L, + 73128083500,0.170538187026978,L, + 75052506750,0.171447843313217,L, + 76976930000,0.172375947237015,L, + 78901353250,0.173322722315788,L, + 80825776500,0.174288332462311,L, + 82750199750,0.175273016095161,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300304174423,L, + 88523469500,0.178343310952187,L, + 90447892750,0.179406240582466,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716503739357,L, + 98145585750,0.183861181139946,L, + 100070009000,0.185026884078979,L, + 101994432250,0.186213836073875,L, + 103918855500,0.187422245740891,L, + 105843278750,0.188652470707893,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179126501083,L, + 111616548500,0.192476168274879,L, + 113540971750,0.193796008825302,L, + 115465395000,0.195138916373253,L, + 117389818250,0.196505174040794,L, + 119314241500,0.197895124554634,L, + 121238664750,0.199308991432190,L, + 123163088000,0.200747177004814,L, + 125087511250,0.202209874987602,L, + 127011934500,0.203697487711906,L, + 128936357750,0.205210283398628,L, + 130860781000,0.206748619675636,L, + 132785204250,0.208312824368477,L, + 134709627500,0.209903284907341,L, + 136634050750,0.211520299315453,L, + 138558474000,0.213164269924164,L, + 140482897250,0.214835524559021,L, + 142407320500,0.216534480452538,L, + 144331743750,0.218261525034904,L, + 146256167000,0.220017045736313,L, + 148180590250,0.221801474690437,L, + 150105013500,0.223615199327469,L, + 152029436750,0.225458666682243,L, + 153953860000,0.227332338690758,L, + 155878283250,0.229236662387848,L, + 157802706500,0.231172040104866,L, + 159727129750,0.233139067888260,L, + 161651553000,0.235138088464737,L, + 163575976250,0.237169742584229,L, + 165500399500,0.239234507083893,L, + 167424822750,0.241332858800888,L, + 169349246000,0.243465408682823,L, + 171273669250,0.245632737874985,L, + 173198092500,0.247835367918015,L, + 175122515750,0.250073909759521,L, + 177046939000,0.252348959445953,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011353969574,L, + 182820208750,0.259399920701981,L, + 184744632000,0.261827766895294,L, + 186669055250,0.264295488595963,L, + 188593478500,0.266803830862045,L, + 190517901750,0.269353568553925,L, + 192442325000,0.271945595741272,L, + 194366748250,0.274580597877502,L, + 196291171500,0.277259528636932,L, + 198215594750,0.279983133077621,L, + 200140018000,0.282752454280853,L, + 202064441250,0.285568326711655,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305473566055,L, + 209762134250,0.297317802906036,L, + 211686557500,0.300381988286972,L, + 213610980750,0.303499162197113,L, + 215535404000,0.306670516729355,L, + 217459827250,0.309897422790527,L, + 219384250500,0.313181102275848,L, + 221308673750,0.316523045301437,L, + 223233097000,0.319924533367157,L, + 225157520250,0.323387145996094,L, + 227081943500,0.326912462711334,L, + 229006366750,0.330502152442932,L, + 230930790000,0.334157794713974,L, + 232855213250,0.337881296873093,L, + 234779636500,0.341674566268921,L, + 236704059750,0.345539480447769,L, + 238628483000,0.349478125572205,L, + 240552906250,0.353492766618729,L, + 242477329500,0.357585638761520,L, + 244401752750,0.361759155988693,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358586311340,L, + 250175022500,0.374789893627167,L, + 252099445750,0.379313051700592,L, + 254023869000,0.383931219577789,L, + 255948292250,0.388647675514221,L, + 257872715500,0.393466234207153,L, + 259797138750,0.398390620946884,L, + 261721562000,0.403425008058548,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841575384140,L, + 267494831750,0.419233649969101,L, + 269419255000,0.424755364656448,L, + 271343678250,0.430412679910660,L, + 273268101500,0.436211973428726,L, + 275192524750,0.442160099744797,L, + 277116948000,0.448264598846436,L, + 279041371250,0.454533725976944,L, + 280965794500,0.460976511240005,L, + 282890217750,0.467602789402008,L, + 284814641000,0.474423527717590,L, + 286739064250,0.481450796127319,L, + 288663487500,0.488698184490204,L, + 290587910750,0.496180593967438,L, + 292512334000,0.503915071487427,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219862461090,L, + 298285603750,0.528837502002716,L, + 300210027000,0.537802457809448,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918501853943,L, + 305983296750,0.567158520221710,L, + 307907720000,0.577928543090820,L, + 309832143250,0.589301884174347,L, + 311756566500,0.601371228694916,L, + 313680989750,0.614257454872131,L, + 315605413000,0.628122627735138,L, + 317529836250,0.643193542957306,L, + 319454259500,0.659805953502655,L, + 321378682750,0.678494989871979,L, + 323303106000,0.700209677219391,L, + 325227529250,0.726849436759949,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380186900 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380186900,L, + 51959427750,0.000075380186900,L, + 53883851000,0.162417232990265,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961194276810,L, + 59657120750,0.206696838140488,L, + 61581544000,0.215276315808296,L, + 63505967250,0.223114326596260,L, + 65430390500,0.230424374341965,L, + 67354813750,0.237333685159683,L, + 69279237000,0.243925228714943,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297689914703,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571647644043,L, + 84674623000,0.289855480194092,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141146183014,L, + 94296739250,0.315032541751862,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638782501221,L, + 105843278750,0.343213111162186,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235943078995,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150633811951,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298123359680,L, + 130860781000,0.399448484182358,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758363246918,L, + 138558474000,0.415817111730576,L, + 140482897250,0.419854879379272,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869677543640,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807704925537,L, + 150105013500,0.439749240875244,L, + 152029436750,0.443673223257065,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470345258713,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202438592911,L, + 161651553000,0.463045120239258,L, + 163575976250,0.466872811317444,L, + 165500399500,0.470685720443726,L, + 167424822750,0.474484294652939,L, + 169349246000,0.478268861770630,L, + 171273669250,0.482039690017700,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541321992874,L, + 177046939000,0.493272632360458,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697910785675,L, + 182820208750,0.504392087459564,L, + 184744632000,0.508074641227722,L, + 186669055250,0.511745333671570,L, + 188593478500,0.515404760837555,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689759731293,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931485652924,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715515613556,L, + 203988864500,0.544289946556091,L, + 205913287750,0.547854542732239,L, + 207837711000,0.551409304141998,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533936023712,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031088829041,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351781368256,L, + 232855213250,0.596790611743927,L, + 234779636500,0.600221037864685,L, + 236704059750,0.603643238544464,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463201999664,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633006095886,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373099327087,L, + 252099445750,0.630731463432312,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650718033313751,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317996025085,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159318923950,L, + 275192524750,0.670423865318298,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625361442566,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046927452087,L, + 290587910750,0.696244537830353,L, + 292512334000,0.699433028697968,L, + 294436757250,0.702612400054932,L, + 296361180500,0.705781936645508,L, + 298285603750,0.708941400051117,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228855609894,L, + 304058873500,0.718355655670166,L, + 305983296750,0.721470177173615,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659106254578,L, + 311756566500,0.730730950832367,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819684505463,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812931537628,L, + 321378682750,0.745757162570953,L, + 323303106000,0.748646736145020,L, + 325227529250,0.751438677310944,L, + 327151952500,0.753801822662354,L, + 329076375750,0.000075380186900,L, + 344471761750,0.000075380186900,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417232990265,L, + 55808274250,0.185008198022842,L, + 57732697500,0.196961194276810,L, + 59657120750,0.206696793437004,L, + 61581544000,0.215276286005974,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333640456200,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256687402725,L, + 73128083500,0.256370276212692,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687720298767,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571588039398,L, + 84674623000,0.289855450391769,L, + 86599046250,0.295046895742416,L, + 88523469500,0.300153940916061,L, + 90447892750,0.305183351039886,L, + 92372316000,0.310141116380692,L, + 94296739250,0.315032541751862,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634134769440,L, + 100070009000,0.329352051019669,L, + 101994432250,0.334019273519516,L, + 103918855500,0.338638782501221,L, + 105843278750,0.343213051557541,L, + 107767702000,0.347744792699814,L, + 109692125250,0.352235943078995,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104965209961,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298093557358,L, + 130860781000,0.399448454380035,L, + 132785204250,0.403574794530869,L, + 134709627500,0.407677829265594,L, + 136634050750,0.411758363246918,L, + 138558474000,0.415817111730576,L, + 140482897250,0.419854819774628,L, + 142407320500,0.423872083425522,L, + 144331743750,0.427869617938995,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807645320892,L, + 150105013500,0.439749211072922,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470315456390,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045060634613,L, + 163575976250,0.466872721910477,L, + 165500399500,0.470685660839081,L, + 167424822750,0.474484205245972,L, + 169349246000,0.478268772363663,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485796988010406,L, + 175122515750,0.489541232585907,L, + 177046939000,0.493272662162781,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392087459564,L, + 184744632000,0.508074522018433,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404641628265,L, + 190517901750,0.519052684307098,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315927505493,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854423522949,L, + 207837711000,0.551409304141998,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490216732025,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031088829041,L, + 223233097000,0.579512476921082,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449205875397,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351840972900,L, + 232855213250,0.596790492534637,L, + 234779636500,0.600220918655396,L, + 236704059750,0.603643119335175,L, + 238628483000,0.607057213783264,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617250919342041,L, + 246326176000,0.620632886886597,L, + 248250599250,0.624006927013397,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634081959724426,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759646892548,L, + 259797138750,0.644086837768555,L, + 261721562000,0.647406220436096,L, + 263645985250,0.650717854499817,L, + 265570408500,0.654021799564362,L, + 267494831750,0.657317876815796,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159199714661,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680484294891,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625242233276,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693047046661377,L, + 290587910750,0.696244478225708,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612280845642,L, + 296361180500,0.705781877040863,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228796005249,L, + 304058873500,0.718355774879456,L, + 305983296750,0.721470296382904,L, + 307907720000,0.724571824073792,L, + 309832143250,0.727659046649933,L, + 311756566500,0.730730831623077,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819922924042,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812871932983,L, + 321378682750,0.745757400989532,L, + 323303106000,0.748646974563599,L, + 325227529250,0.751438498497009,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_074" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063677966594696 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,-0.063677966594696,L, + 51959427750,-0.063677966594696,L, + 53883851000,0.011905431747437,L, + 55808274250,0.011491000652313,L, + 57732697500,0.011004328727722,L, + 59657120750,0.010502755641937,L, + 61581544000,0.009993016719818,L, + 63505967250,0.009478747844696,L, + 65430390500,0.008960604667664,L, + 67354813750,0.008439660072327,L, + 69279237000,0.007916688919067,L, + 71203660250,0.007391870021820,L, + 73128083500,0.006865739822388,L, + 75052506750,0.006338536739349,L, + 76976930000,0.005810201168060,L, + 78901353250,0.005281090736389,L, + 80825776500,0.004750788211823,L, + 82750199750,0.004219949245453,L, + 84674623000,0.003688454627991,L, + 86599046250,0.003156483173370,L, + 88523469500,0.002623915672302,L, + 90447892750,0.002090871334076,L, + 92372316000,0.001557230949402,L, + 94296739250,0.001023471355438,L, + 96221162500,0.000489056110382,L, + 98145585750,-0.000045716762543,L, + 100070009000,-0.000580549240112,L, + 101994432250,-0.001115977764130,L, + 103918855500,-0.001651227474213,L, + 105843278750,-0.002187132835388,L, + 107767702000,-0.002723336219788,L, + 109692125250,-0.003259360790253,L, + 111616548500,-0.003795921802521,L, + 113540971750,-0.004332780838013,L, + 115465395000,-0.004869520664215,L, + 117389818250,-0.005406975746155,L, + 119314241500,-0.005944073200226,L, + 121238664750,-0.006481468677521,L, + 123163088000,-0.007019042968750,L, + 125087511250,-0.007556796073914,L, + 127011934500,-0.008094489574432,L, + 128936357750,-0.008632302284241,L, + 130860781000,-0.009170591831207,L, + 132785204250,-0.009708762168884,L, + 134709627500,-0.010247111320496,L, + 136634050750,-0.010785579681396,L, + 138558474000,-0.011323988437653,L, + 140482897250,-0.011862933635712,L, + 142407320500,-0.012401521205902,L, + 144331743750,-0.012940287590027,L, + 146256167000,-0.013479113578796,L, + 148180590250,-0.014018177986145,L, + 150105013500,-0.014557003974915,L, + 152029436750,-0.015096366405487,L, + 153953860000,-0.015635311603546,L, + 155878283250,-0.016174733638763,L, + 161651553000,-0.017792284488678,L, + 163575976250,-0.018331766128540,L, + 165500399500,-0.018871486186981,L, + 167424822750,-0.019410967826843,L, + 169349246000,-0.019950270652771,L, + 171273669250,-0.020489811897278,L, + 173198092500,-0.021029531955719,L, + 175122515750,-0.021569013595581,L, + 177046939000,-0.022108614444733,L, + 178971362250,-0.022648155689240,L, + 182820208750,-0.023727715015411,L, + 184744632000,-0.024267315864563,L, + 186669055250,-0.024807095527649,L, + 188593478500,-0.025346934795380,L, + 190517901750,-0.025886297225952,L, + 192442325000,-0.026426017284393,L, + 194366748250,-0.026965856552124,L, + 196291171500,-0.027505397796631,L, + 198215594750,-0.028045237064362,L, + 200140018000,-0.028585016727448,L, + 202064441250,-0.029124319553375,L, + 203988864500,-0.029664158821106,L, + 205913287750,-0.030203700065613,L, + 207837711000,-0.030743479728699,L, + 209762134250,-0.031282782554626,L, + 211686557500,-0.031822264194489,L, + 213610980750,-0.032362043857574,L, + 215535404000,-0.032901465892792,L, + 217459827250,-0.033440709114075,L, + 219384250500,-0.033980190753937,L, + 221308673750,-0.034519612789154,L, + 223233097000,-0.035058856010437,L, + 225157520250,-0.035598278045654,L, + 227081943500,-0.036137223243713,L, + 229006366750,-0.036676585674286,L, + 230930790000,-0.037215471267700,L, + 232855213250,-0.037754595279694,L, + 234779636500,-0.038293659687042,L, + 236704059750,-0.038832664489746,L, + 238628483000,-0.039371252059937,L, + 240552906250,-0.039910018444061,L, + 242477329500,-0.040448486804962,L, + 244401752750,-0.040986895561218,L, + 246326176000,-0.041525363922119,L, + 248250599250,-0.042063772678375,L, + 250175022500,-0.042602121829987,L, + 254023869000,-0.043678224086761,L, + 255948292250,-0.044215917587280,L, + 257872715500,-0.044753670692444,L, + 259797138750,-0.045291602611542,L, + 261721562000,-0.045828640460968,L, + 263645985250,-0.046365976333618,L, + 265570408500,-0.046903014183044,L, + 267494831750,-0.047439932823181,L, + 269419255000,-0.047976613044739,L, + 271343678250,-0.048513174057007,L, + 273268101500,-0.049049615859985,L, + 275192524750,-0.049585640430450,L, + 277116948000,-0.050121486186981,L, + 279041371250,-0.050656974315643,L, + 280965794500,-0.051192164421082,L, + 282890217750,-0.051727294921875,L, + 284814641000,-0.052261769771576,L, + 286739064250,-0.052796185016632,L, + 288663487500,-0.053330183029175,L, + 290587910750,-0.053863644599915,L, + 292512334000,-0.054396867752075,L, + 294436757250,-0.054929256439209,L, + 296361180500,-0.055461406707764,L, + 298285603750,-0.055992662906647,L, + 300210027000,-0.056523561477661,L, + 302134450250,-0.057053565979004,L, + 304058873500,-0.057582914829254,L, + 305983296750,-0.058111250400543,L, + 307907720000,-0.058638691902161,L, + 309832143250,-0.059164822101593,L, + 311756566500,-0.059689283370972,L, + 313680989750,-0.060212135314941,L, + 315605413000,-0.060733079910278,L, + 317529836250,-0.061251223087311,L, + 319454259500,-0.061765730381012,L, + 321378682750,-0.062275290489197,L, + 323303106000,-0.062777042388916,L, + 325227529250,-0.063263952732086,L, + 327151952500,-0.063677966594696,L, + 344471761750,-0.063677966594696,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339878082275 + KeyVer: 4005 + KeyCount: 112 + Key: + 0,-0.087339878082275,L, + 51959427750,-0.087339878082275,L, + 53883851000,-0.087339758872986,L, + 59657120750,-0.087339758872986,L, + 61581544000,-0.087339878082275,L, + 63505967250,-0.087339758872986,L, + 65430390500,-0.087339878082275,L, + 67354813750,-0.087339639663696,L, + 69279237000,-0.087339758872986,L, + 73128083500,-0.087339758872986,L, + 75052506750,-0.087339878082275,L, + 76976930000,-0.087339639663696,L, + 78901353250,-0.087339878082275,L, + 80825776500,-0.087339639663696,L, + 86599046250,-0.087339639663696,L, + 88523469500,-0.087339758872986,L, + 90447892750,-0.087339758872986,L, + 92372316000,-0.087339639663696,L, + 94296739250,-0.087339878082275,L, + 96221162500,-0.087339639663696,L, + 98145585750,-0.087339758872986,L, + 100070009000,-0.087339758872986,L, + 101994432250,-0.087339639663696,L, + 103918855500,-0.087339878082275,L, + 105843278750,-0.087339639663696,L, + 109692125250,-0.087339878082275,L, + 111616548500,-0.087339878082275,L, + 113540971750,-0.087339758872986,L, + 115465395000,-0.087339758872986,L, + 117389818250,-0.087339639663696,L, + 119314241500,-0.087339758872986,L, + 125087511250,-0.087339758872986,L, + 127011934500,-0.087339878082275,L, + 128936357750,-0.087339878082275,L, + 130860781000,-0.087339758872986,L, + 132785204250,-0.087339878082275,L, + 138558474000,-0.087339878082275,L, + 140482897250,-0.087339639663696,L, + 142407320500,-0.087339878082275,L, + 144331743750,-0.087339758872986,L, + 150105013500,-0.087339758872986,L, + 152029436750,-0.087339878082275,L, + 153953860000,-0.087339878082275,L, + 155878283250,-0.087339758872986,L, + 157802706500,-0.087339758872986,L, + 159727129750,-0.087339878082275,L, + 161651553000,-0.087339758872986,L, + 167424822750,-0.087339758872986,L, + 169349246000,-0.087339878082275,L, + 171273669250,-0.087339878082275,L, + 173198092500,-0.087339639663696,L, + 177046939000,-0.087339878082275,L, + 178971362250,-0.087339878082275,L, + 182820208750,-0.087339639663696,L, + 184744632000,-0.087339758872986,L, + 188593478500,-0.087339758872986,L, + 190517901750,-0.087339878082275,L, + 192442325000,-0.087339639663696,L, + 194366748250,-0.087339639663696,L, + 196291171500,-0.087339878082275,L, + 200140018000,-0.087339639663696,L, + 202064441250,-0.087339758872986,L, + 203988864500,-0.087339639663696,L, + 205913287750,-0.087339878082275,L, + 207837711000,-0.087339758872986,L, + 209762134250,-0.087339878082275,L, + 213610980750,-0.087339639663696,L, + 215535404000,-0.087339878082275,L, + 219384250500,-0.087339878082275,L, + 223233097000,-0.087339639663696,L, + 225157520250,-0.087339639663696,L, + 229006366750,-0.087339878082275,L, + 230930790000,-0.087339878082275,L, + 232855213250,-0.087339997291565,L, + 234779636500,-0.087339758872986,L, + 236704059750,-0.087339639663696,L, + 238628483000,-0.087339758872986,L, + 246326176000,-0.087339758872986,L, + 248250599250,-0.087339878082275,L, + 250175022500,-0.087339758872986,L, + 252099445750,-0.087339878082275,L, + 255948292250,-0.087339639663696,L, + 257872715500,-0.087339878082275,L, + 259797138750,-0.087339758872986,L, + 261721562000,-0.087339878082275,L, + 263645985250,-0.087339758872986,L, + 267494831750,-0.087339758872986,L, + 269419255000,-0.087339878082275,L, + 273268101500,-0.087339639663696,L, + 275192524750,-0.087339639663696,L, + 277116948000,-0.087339878082275,L, + 279041371250,-0.087339758872986,L, + 286739064250,-0.087339758872986,L, + 288663487500,-0.087339639663696,L, + 290587910750,-0.087339878082275,L, + 292512334000,-0.087339758872986,L, + 294436757250,-0.087339878082275,L, + 296361180500,-0.087339758872986,L, + 300210027000,-0.087339758872986,L, + 302134450250,-0.087339878082275,L, + 304058873500,-0.087339639663696,L, + 305983296750,-0.087339878082275,L, + 307907720000,-0.087339758872986,L, + 309832143250,-0.087339758872986,L, + 311756566500,-0.087339878082275,L, + 315605413000,-0.087339878082275,L, + 317529836250,-0.087339758872986,L, + 319454259500,-0.087339878082275,L, + 323303106000,-0.087339878082275,L, + 325227529250,-0.087339639663696,L, + 327151952500,-0.087339878082275,L, + 344471761750,-0.087339878082275,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241689682007 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241689682007,L, + 51959427750,-0.570241689682007,L, + 53883851000,0.020681738853455,L, + 55808274250,0.022182703018188,L, + 57732697500,0.023703098297119,L, + 59657120750,0.025243520736694,L, + 61581544000,0.026805162429810,L, + 63505967250,0.028387904167175,L, + 65430390500,0.029992580413818,L, + 67354813750,0.031620383262634,L, + 69279237000,0.033271789550781,L, + 71203660250,0.034947514533997,L, + 73128083500,0.036648511886597,L, + 75052506750,0.038375735282898,L, + 76976930000,0.040130019187927,L, + 78901353250,0.041912555694580,L, + 80825776500,0.043724060058594,L, + 82750199750,0.045566201210022,L, + 84674623000,0.047439813613892,L, + 86599046250,0.049346208572388,L, + 88523469500,0.051286935806274,L, + 90447892750,0.053263306617737,L, + 92372316000,0.055277109146118,L, + 94296739250,0.057329654693604,L, + 96221162500,0.059422969818115,L, + 98145585750,0.061559200286865,L, + 100070009000,0.063739895820618,L, + 101994432250,0.065967917442322,L, + 103918855500,0.068245530128479,L, + 105843278750,0.070575118064880,L, + 107767702000,0.072959899902344,L, + 109692125250,0.075402736663818,L, + 111616548500,0.077907323837280,L, + 113540971750,0.080477237701416,L, + 115465395000,0.083116650581360,L, + 117389818250,0.085830211639404,L, + 119314241500,0.088622689247131,L, + 121238664750,0.091499924659729,L, + 123163088000,0.094467878341675,L, + 125087511250,0.097533583641052,L, + 127011934500,0.100704789161682,L, + 128936357750,0.103990316390991,L, + 130860781000,0.107399702072144,L, + 132785204250,0.110944628715515,L, + 134709627500,0.114637374877930,L, + 136634050750,0.118492722511292,L, + 138558474000,0.122527480125427,L, + 140482897250,0.126760840415955,L, + 142407320500,0.131215214729309,L, + 144331743750,0.135916709899902,L, + 146256167000,0.140894889831543,L, + 148180590250,0.146184206008911,L, + 150105013500,0.151823520660400,L, + 152029436750,0.157855272293091,L, + 153953860000,0.164323091506958,L, + 155878283250,0.171265482902527,L, + 157802706500,0.178704738616943,L, + 159727129750,0.186625123023987,L, + 161651553000,0.194945812225342,L, + 163575976250,0.203496813774109,L, + 165500399500,0.212026476860046,L, + 167424822750,0.220256686210632,L, + 169349246000,0.227962732315063,L, + 171273669250,0.235020160675049,L, + 173198092500,0.241793751716614,L, + 175122515750,0.248681664466858,L, + 177046939000,0.255687952041626,L, + 178971362250,0.262816905975342,L, + 180895785500,0.270072340965271,L, + 182820208750,0.277458071708679,L, + 184744632000,0.284978270530701,L, + 186669055250,0.292636513710022,L, + 188593478500,0.300436377525330,L, + 190517901750,0.308381676673889,L, + 192442325000,0.316475510597229,L, + 194366748250,0.324720501899719,L, + 196291171500,0.333119988441467,L, + 198215594750,0.341675639152527,L, + 200140018000,0.350389122962952,L, + 202064441250,0.359262108802795,L, + 203988864500,0.368295550346375,L, + 205913287750,0.377489209175110,L, + 207837711000,0.386842608451843,L, + 209762134250,0.396355032920837,L, + 211686557500,0.406024098396301,L, + 213610980750,0.415847897529602,L, + 215535404000,0.425822615623474,L, + 217459827250,0.435944914817810,L, + 219384250500,0.446209788322449,L, + 221308673750,0.456612467765808,L, + 223233097000,0.467146515846252,L, + 225157520250,0.477805972099304,L, + 227081943500,0.488583922386169,L, + 229006366750,0.499473452568054,L, + 230930790000,0.510466933250427,L, + 232855213250,0.521556496620178,L, + 234779636500,0.532734751701355,L, + 236704059750,0.543993592262268,L, + 238628483000,0.555325150489807,L, + 240552906250,0.566721558570862,L, + 242477329500,0.578175663948059,L, + 244401752750,0.589679837226868,L, + 246326176000,0.601226687431335,L, + 248250599250,0.612809777259827,L, + 250175022500,0.624422430992126,L, + 252099445750,0.636058688163757,L, + 254023869000,0.647712111473083,L, + 255948292250,0.659378409385681,L, + 257872715500,0.671051621437073,L, + 259797138750,0.682727217674255,L, + 261721562000,0.694401383399963,L, + 263645985250,0.706069588661194,L, + 265570408500,0.717728257179260,L, + 267494831750,0.729374527931213,L, + 269419255000,0.741005063056946,L, + 271343678250,0.752798438072205,L, + 273268101500,0.764907240867615,L, + 275192524750,0.777295231819153,L, + 277116948000,0.789932608604431,L, + 279041371250,0.802792668342590,L, + 280965794500,0.815852999687195,L, + 282890217750,0.829093813896179,L, + 284814641000,0.842496991157532,L, + 286739064250,0.856047272682190,L, + 288663487500,0.869729638099670,L, + 290587910750,0.883530497550964,L, + 292512334000,0.897437691688538,L, + 294436757250,0.911438584327698,L, + 296361180500,0.925521731376648,L, + 298285603750,0.939675450325012,L, + 300210027000,0.953887581825256,L, + 302134450250,0.968146204948425,L, + 304058873500,0.982438206672668,L, + 305983296750,0.996749281883240,L, + 307907720000,1.011063456535339,L, + 309832143250,1.025361657142639,L, + 311756566500,1.039621472358704,L, + 313680989750,1.053814291954041,L, + 315605413000,1.067901968955994,L, + 317529836250,1.081833243370056,L, + 319454259500,1.095528721809387,L, + 321378682750,1.108861327171326,L, + 323303106000,1.121590495109558,L, + 325227529250,1.133138537406921,L, + 327151952500,1.140673995018005,L, + 329076375750,-0.570241689682007,L, + 344471761750,-0.570241689682007,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670459033899608 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,30.670459033899608,L, + 51959427750,30.670459033899608,L, + 53883851000,33.480948688667006,L, + 55808274250,33.465546612088644,L, + 57732697500,33.447450025882723,L, + 59657120750,33.428789949070278,L, + 61581544000,33.409846419407273,L, + 63505967250,33.390708229352924,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352083509596561,L, + 69279237000,33.332631130840390,L, + 71203660250,33.313124110570861,L, + 73128083500,33.293559033693384,L, + 75052506750,33.273956390775481,L, + 76976930000,33.254309351627967,L, + 78901353250,33.234634991723773,L, + 80825776500,33.214923065779146,L, + 82750199750,33.195180403983251,L, + 84674623000,33.175420666714430,L, + 86599046250,33.155633608688930,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116008266219161,L, + 92372316000,33.096169981774885,L, + 94296739250,33.076318036952273,L, + 96221162500,33.056445601562153,L, + 98145585750,33.036569751077444,L, + 100070009000,33.016683655308981,L, + 101994432250,32.996773653878421,L, + 103918855500,32.976860237353279,L, + 105843278750,32.956936575544376,L, + 107767702000,32.937002668451726,L, + 109692125250,32.917061931169897,L, + 111616548500,32.897110948604322,L, + 113540971750,32.877149720754986,L, + 115465395000,32.857191908000239,L, + 117389818250,32.837223849961738,L, + 119314241500,32.817238716450305,L, + 121238664750,32.797260413128051,L, + 123163088000,32.777268449427453,L, + 127011934500,32.737270861647914,L, + 128936357750,32.717268652663563,L, + 130860781000,32.697263028584622,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617185890755508,L, + 140482897250,32.597156361014470,L, + 144331743750,32.557090471343237,L, + 146256167000,32.537054111413035,L, + 148180590250,32.517007506199072,L, + 150105013500,32.496974561363452,L, + 152029436750,32.476927956149495,L, + 153953860000,32.456877935840950,L, + 155878283250,32.436831330626994,L, + 159727129750,32.396717629631567,L, + 161651553000,32.376664194228439,L, + 163575976250,32.356614173919894,L, + 165500399500,32.336543663043841,L, + 169349246000,32.296429962048414,L, + 171273669250,32.276362866266943,L, + 173198092500,32.256306015769233,L, + 175122515750,32.236238919987763,L, + 177046939000,32.216178654395463,L, + 178971362250,32.196108143519410,L, + 180895785500,32.176041047737939,L, + 184744632000,32.135913686364177,L, + 186669055250,32.115836345298952,L, + 188593478500,32.095772664612070,L, + 190517901750,32.075698738641428,L, + 192442325000,32.055638473049129,L, + 194366748250,32.035567962173076,L, + 196291171500,32.015494036202440,L, + 198215594750,31.995433770610138,L, + 200140018000,31.975363259734085,L, + 203988864500,31.935235898360318,L, + 207837711000,31.895101706797380,L, + 209762134250,31.875044856299667,L, + 211686557500,31.854984590707367,L, + 217459827250,31.794793548646719,L, + 223233097000,31.734633242437333,L, + 225157520250,31.714576391939620,L, + 227081943500,31.694526371631074,L, + 229006366750,31.674483181511700,L, + 230930790000,31.654436576297744,L, + 234779636500,31.614350196058997,L, + 238628483000,31.574284306387757,L, + 240552906250,31.554254776646726,L, + 242477329500,31.534218416716520,L, + 244401752750,31.514199132259243,L, + 246326176000,31.494176432707377,L, + 248250599250,31.474160563344686,L, + 250175022500,31.454141278887406,L, + 252099445750,31.434135654808468,L, + 254023869000,31.414133445824113,L, + 255948292250,31.394134651934344,L, + 257872715500,31.374142688233746,L, + 261721562000,31.334165591021719,L, + 263645985250,31.314183872604875,L, + 265570408500,31.294219229660957,L, + 267494831750,31.274251171622453,L, + 269419255000,31.254293358867706,L, + 271343678250,31.234349206491299,L, + 273268101500,31.214408469209474,L, + 275192524750,31.194471147022234,L, + 277116948000,31.174554315402506,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134724067257633,L, + 282890217750,31.114834556394584,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075089685614337,L, + 288663487500,31.055230910602553,L, + 290587910750,31.035399456347452,L, + 292512334000,31.015574832281519,L, + 294436757250,30.995770698783094,L, + 296361180500,30.975987055852180,L, + 298285603750,30.956230733677948,L, + 300210027000,30.936488071882053,L, + 302134450250,30.916782976126594,L, + 304058873500,30.897101786033232,L, + 305983296750,30.877458161980304,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838276781806581,L, + 311756566500,30.818773176631638,L, + 313680989750,30.799327628064638,L, + 315605413000,30.779964041767681,L, + 317529836250,30.760696078119103,L, + 319454259500,30.741557888064754,L, + 321378682750,30.722614358401753,L, + 323303106000,30.703961111778472,L, + 325227529250,30.685864525572551,L, + 327151952500,30.670462448994193,L, + 329076375750,30.670459033899608,L, + 344471761750,30.670459033899608,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044319683403476,L, + 57732697500,-30.232845398682937,L, + 59657120750,-29.396266753668051,L, + 61581544000,-28.546645862433046,L, + 63505967250,-27.688688725316052,L, + 65430390500,-26.824816644377837,L, + 67354813750,-25.956479327269729,L, + 69279237000,-25.084610802360732,L, + 71203660250,-24.209870182905750,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572623153793604,L, + 78901353250,-20.690157590387344,L, + 80825776500,-19.806336234430841,L, + 82750199750,-18.921305934991249,L, + 84674623000,-18.035196465662796,L, + 86599046250,-17.148106864188446,L, + 88523469500,-16.260136168311167,L, + 90447892750,-15.371357802564535,L, + 92372316000,-14.481834946198372,L, + 94296739250,-13.591632486009795,L, + 96221162500,-12.700799940870285,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917433279714286,L, + 101994432250,-10.024975149552315,L, + 103918855500,-9.132048297658551,L, + 105843278750,-8.238684313657910,L, + 107767702000,-7.344909664533420,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556225274221751,L, + 113540971750,-4.661365478792877,L, + 115465395000,-3.766181249378429,L, + 117389818250,-2.870696064753677,L, + 119314241500,-1.974926146617900,L, + 121238664750,-1.078885688957969,L, + 123163088000,-0.182591447081689,L, + 125087511250,0.713942651828335,L, + 127011934500,1.610706309127494,L, + 128936357750,2.507684103529303,L, + 130860781000,3.404866376719389,L, + 132785204250,4.302234132234124,L, + 134709627500,5.199794413706087,L, + 136634050750,6.097520754152246,L, + 138558474000,6.995414861119893,L, + 140482897250,7.893458378475635,L, + 142407320500,8.791656428861346,L, + 144331743750,9.689991083030460,L, + 146256167000,10.588454657020156,L, + 148180590250,11.487039466867619,L, + 150105013500,12.385742951251913,L, + 152029436750,13.284553157341987,L, + 153953860000,14.183468377590549,L, + 155878283250,15.082474951619261,L, + 157802706500,15.981583978485522,L, + 159727129750,16.880766429885362,L, + 161651553000,17.780032551102533,L, + 163575976250,18.679368681758699,L, + 165500399500,19.578774821853855,L, + 167424822750,20.478245848746127,L, + 169349246000,21.377764686962589,L, + 171273669250,22.277348411976167,L, + 173198092500,23.176971410577469,L, + 175122515750,24.076633682766502,L, + 177046939000,24.976333520995968,L, + 178971362250,25.876065802623994,L, + 180895785500,26.775830527650573,L, + 182820208750,27.675610620602789,L, + 184744632000,28.575419741858976,L, + 186669055250,29.475230570662454,L, + 188593478500,30.375053352296984,L, + 190517901750,31.274886379215264,L, + 192442325000,32.174726236322719,L, + 194366748250,33.074549017957246,L, + 196291171500,33.974368384497183,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773955891158295,L, + 202064441250,36.673710370901119,L, + 203988864500,37.573447775171026,L, + 205913287750,38.473151028495074,L, + 207837711000,39.372820130873279,L, + 209762134250,40.272431176643536,L, + 211686557500,41.172021731846279,L, + 213610980750,42.071540570062744,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870410906861004,L, + 219384250500,44.769748745064454,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568195610134175,L, + 225157520250,47.467287561527513,L, + 227081943500,48.366307795934567,L, + 229006366750,49.265215332220308,L, + 230930790000,50.164030660952264,L, + 232855213250,51.062753782130422,L, + 234779636500,51.961319808957668,L, + 236704059750,52.859797043325699,L, + 238628483000,53.758113768248244,L, + 240552906250,54.656321210144064,L, + 242477329500,55.554368142594392,L, + 244401752750,56.452254565599219,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144916626994892,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939077548360437,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106008704822855,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955198524834719 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-2.955198524834719,L, + 51959427750,-2.955198524834719,L, + 53883851000,0.259474644380607,L, + 55808274250,0.257311235321861,L, + 57732697500,0.254977338338130,L, + 59657120750,0.252467243818154,L, + 61581544000,0.249781005122786,L, + 63505967250,0.246912939321193,L, + 65430390500,0.243865634414740,L, + 67354813750,0.240636048834813,L, + 69279237000,0.237222608436251,L, + 71203660250,0.233628354787669,L, + 73128083500,0.229847551597382,L, + 75052506750,0.225879718617713,L, + 76976930000,0.221721400733437,L, + 78901353250,0.217382242918715,L, + 80825776500,0.212845102999555,L, + 82750199750,0.208116704443423,L, + 84674623000,0.203198234529293,L, + 86599046250,0.198082889748424,L, + 88523469500,0.192776739897831,L, + 90447892750,0.187265524289579,L, + 92372316000,0.181562316332626,L, + 94296739250,0.175655243237205,L, + 96221162500,0.169544838611844,L, + 98145585750,0.163240894173049,L, + 100070009000,0.156719651001069,L, + 101994432250,0.149995463165334,L, + 103918855500,0.143070318357612,L, + 105843278750,0.135929929209542,L, + 107767702000,0.128578564589357,L, + 109692125250,0.121013182928439,L, + 111616548500,0.113235264990459,L, + 113540971750,0.105239354628207,L, + 115465395000,0.097032989062154,L, + 117389818250,0.088599366293747,L, + 119314241500,0.079947844482560,L, + 121238664750,0.071067964901428,L, + 123163088000,0.061968372008519,L, + 125087511250,0.052640341304385,L, + 127011934500,0.043083462577470,L, + 128936357750,0.033294934382996,L, + 130860781000,0.023273792890559,L, + 132785204250,0.013016680535243,L, + 134709627500,0.002526120910196,L, + 136634050750,-0.008205941180520,L, + 138558474000,-0.019173618325614,L, + 140482897250,-0.030393618099946,L, + 142407320500,-0.041852757871560,L, + 144331743750,-0.053560375789713,L, + 146256167000,-0.065518162726430,L, + 148180590250,-0.077728199754975,L, + 150105013500,-0.090191100525155,L, + 152029436750,-0.102915636227165,L, + 153953860000,-0.115893555939126,L, + 155878283250,-0.129134624697117,L, + 157802706500,-0.142645139081779,L, + 159727129750,-0.156418415646289,L, + 161651553000,-0.170461804848130,L, + 163575976250,-0.184773652500865,L, + 165500399500,-0.199368099230508,L, + 167424822750,-0.214235193237996,L, + 169349246000,-0.229382671846999,L, + 171273669250,-0.244811402171374,L, + 173198092500,-0.260532203124047,L, + 175122515750,-0.276538057752861,L, + 177046939000,-0.292839264702425,L, + 178971362250,-0.309435743931459,L, + 180895785500,-0.326332084473313,L, + 182820208750,-0.343526045172164,L, + 184744632000,-0.361029418776501,L, + 186669055250,-0.378843485946794,L, + 188593478500,-0.396965125073149,L, + 190517901750,-0.415406875955995,L, + 192442325000,-0.434167484615289,L, + 194366748250,-0.453250232743484,L, + 196291171500,-0.472663391272778,L, + 198215594750,-0.492406960203171,L, + 200140018000,-0.512485848733128,L, + 202064441250,-0.532902244657619,L, + 203988864500,-0.553665646208458,L, + 205913287750,-0.574774826086028,L, + 207837711000,-0.596238161944233,L, + 209762134250,-0.618059442403629,L, + 211686557500,-0.640242135919653,L, + 213610980750,-0.662794726867915,L, + 215535404000,-0.685716308113916,L, + 217459827250,-0.709014990507295,L, + 219384250500,-0.732696857185282,L, + 221308673750,-0.756769538749840,L, + 223233097000,-0.781233622170351,L, + 225157520250,-0.806092575902253,L, + 227081943500,-0.831362728366530,L, + 229006366750,-0.857041838407361,L, + 230930790000,-0.883138870648031,L, + 232855213250,-0.909656973378862,L, + 234779636500,-0.936612208216573,L, + 236704059750,-0.964002120561931,L, + 238628483000,-0.991832046500225,L, + 240552906250,-1.020123010207495,L, + 242477329500,-1.048869995763567,L, + 244401752750,-1.078083141730493,L, + 246326176000,-1.107775681599788,L, + 248250599250,-1.137949536362157,L, + 250175022500,-1.168620394108350,L, + 252099445750,-1.199794124532184,L, + 254023869000,-1.231475316667008,L, + 255948292250,-1.263678698108219,L, + 257872715500,-1.296419850224863,L, + 259797138750,-1.329698132686704,L, + 261721562000,-1.363533929339547,L, + 263645985250,-1.397934817424501,L, + 265570408500,-1.432910081729970,L, + 267494831750,-1.468482240535875,L, + 269419255000,-1.504655029101916,L, + 271343678250,-1.541443281745198,L, + 273268101500,-1.578867382311525,L, + 275192524750,-1.616941204622649,L, + 277116948000,-1.655674353632089,L, + 279041371250,-1.695091588775588,L, + 280965794500,-1.735205503214426,L, + 282890217750,-1.776035200133941,L, + 284814641000,-1.817607039795458,L, + 286739064250,-1.859932868308320,L, + 288663487500,-1.903044168575732,L, + 290587910750,-1.946958229514031,L, + 292512334000,-1.991701518106251,L, + 294436757250,-2.037300928222249,L, + 296361180500,-2.083784420948938,L, + 298285603750,-2.131186360675581,L, + 300210027000,-2.179529799290628,L, + 302134450250,-2.228861907788032,L, + 304058873500,-2.279210006924473,L, + 305983296750,-2.330615504721797,L, + 307907720000,-2.383122583966194,L, + 309832143250,-2.436766676263986,L, + 311756566500,-2.491600715581239,L, + 313680989750,-2.547658852863803,L, + 315605413000,-2.604978867595526,L, + 317529836250,-2.663579756240035,L, + 319454259500,-2.723439107239118,L, + 321378682750,-2.784437819169121,L, + 323303106000,-2.846170136104666,L, + 325227529250,-2.907191046149472,L, + 327151952500,-2.955197244174249,L, + 329076375750,-2.955198524834719,L, + 344471761750,-2.955198524834719,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380201451 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380201451,L, + 51959427750,0.000075380201451,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152128458023,L, + 57732697500,0.163903728127480,L, + 59657120750,0.164672195911407,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260406374931,L, + 65430390500,0.167080491781235,L, + 67354813750,0.167918175458908,L, + 69279237000,0.168773531913757,L, + 71203660250,0.169646814465523,L, + 73128083500,0.170538201928139,L, + 75052506750,0.171447858214378,L, + 76976930000,0.172375977039337,L, + 78901353250,0.173322722315788,L, + 80825776500,0.174288347363472,L, + 82750199750,0.175273030996323,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300304174423,L, + 88523469500,0.178343340754509,L, + 90447892750,0.179406270384789,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716533541679,L, + 98145585750,0.183861196041107,L, + 100070009000,0.185026898980141,L, + 101994432250,0.186213850975037,L, + 103918855500,0.187422275543213,L, + 105843278750,0.188652500510216,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179171204567,L, + 111616548500,0.192476198077202,L, + 113540971750,0.193796008825302,L, + 115465395000,0.195138916373253,L, + 117389818250,0.196505188941956,L, + 119314241500,0.197895139455795,L, + 121238664750,0.199309006333351,L, + 123163088000,0.200747177004814,L, + 125087511250,0.202209874987602,L, + 127011934500,0.203697487711906,L, + 128936357750,0.205210313200951,L, + 130860781000,0.206748619675636,L, + 132785204250,0.208312839269638,L, + 134709627500,0.209903284907341,L, + 136634050750,0.211520314216614,L, + 138558474000,0.213164269924164,L, + 140482897250,0.214835554361343,L, + 142407320500,0.216534480452538,L, + 144331743750,0.218261539936066,L, + 146256167000,0.220017045736313,L, + 148180590250,0.221801489591599,L, + 150105013500,0.223615199327469,L, + 152029436750,0.225458681583405,L, + 153953860000,0.227332353591919,L, + 155878283250,0.229236677289009,L, + 157802706500,0.231172055006027,L, + 159727129750,0.233139067888260,L, + 161651553000,0.235138118267059,L, + 163575976250,0.237169742584229,L, + 165500399500,0.239234507083893,L, + 167424822750,0.241332873702049,L, + 169349246000,0.243465438485146,L, + 171273669250,0.245632752776146,L, + 173198092500,0.247835382819176,L, + 175122515750,0.250073909759521,L, + 177046939000,0.252348989248276,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011383771896,L, + 182820208750,0.259399950504303,L, + 184744632000,0.261827766895294,L, + 186669055250,0.264295488595963,L, + 188593478500,0.266803860664368,L, + 190517901750,0.269353628158569,L, + 192442325000,0.271945625543594,L, + 194366748250,0.274580627679825,L, + 196291171500,0.277259558439255,L, + 198215594750,0.279983162879944,L, + 200140018000,0.282752484083176,L, + 202064441250,0.285568356513977,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305473566055,L, + 209762134250,0.297317802906036,L, + 211686557500,0.300381988286972,L, + 213610980750,0.303499191999435,L, + 215535404000,0.306670546531677,L, + 217459827250,0.309897452592850,L, + 219384250500,0.313181132078171,L, + 221308673750,0.316523075103760,L, + 223233097000,0.319924563169479,L, + 225157520250,0.323387145996094,L, + 227081943500,0.326912492513657,L, + 229006366750,0.330502152442932,L, + 230930790000,0.334157854318619,L, + 232855213250,0.337881326675415,L, + 234779636500,0.341674596071243,L, + 236704059750,0.345539510250092,L, + 238628483000,0.349478155374527,L, + 240552906250,0.353492766618729,L, + 242477329500,0.357585668563843,L, + 244401752750,0.361759185791016,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358586311340,L, + 250175022500,0.374789923429489,L, + 252099445750,0.379313111305237,L, + 254023869000,0.383931249380112,L, + 255948292250,0.388647735118866,L, + 257872715500,0.393466234207153,L, + 259797138750,0.398390650749207,L, + 261721562000,0.403425037860870,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841634988785,L, + 267494831750,0.419233679771423,L, + 269419255000,0.424755424261093,L, + 271343678250,0.430412739515305,L, + 273268101500,0.436212003231049,L, + 275192524750,0.442160159349442,L, + 277116948000,0.448264628648758,L, + 279041371250,0.454533785581589,L, + 280965794500,0.460976570844650,L, + 282890217750,0.467602849006653,L, + 284814641000,0.474423587322235,L, + 286739064250,0.481450825929642,L, + 288663487500,0.488698214292526,L, + 290587910750,0.496180623769760,L, + 292512334000,0.503915131092072,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219922065735,L, + 298285603750,0.528837561607361,L, + 300210027000,0.537802517414093,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918561458588,L, + 305983296750,0.567158579826355,L, + 307907720000,0.577928602695465,L, + 309832143250,0.589301943778992,L, + 311756566500,0.601371288299561,L, + 313680989750,0.614257514476776,L, + 315605413000,0.628122687339783,L, + 317529836250,0.643193602561951,L, + 319454259500,0.659806013107300,L, + 321378682750,0.678495049476624,L, + 323303106000,0.700209736824036,L, + 325227529250,0.726849555969238,L, + 327151952500,0.753802001476288,L, + 329076375750,0.000075380201451,L, + 344471761750,0.000075380201451,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417262792587,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961224079132,L, + 59657120750,0.206696838140488,L, + 61581544000,0.215276315808296,L, + 63505967250,0.223114326596260,L, + 65430390500,0.230424389243126,L, + 67354813750,0.237333685159683,L, + 69279237000,0.243925243616104,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571677446365,L, + 84674623000,0.289855509996414,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141175985336,L, + 94296739250,0.315032601356506,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019333124161,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213140964508,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352236002683640,L, + 111616548500,0.356688827276230,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150663614273,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298153162003,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574854135513,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817171335220,L, + 140482897250,0.419854909181595,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869707345963,L, + 146256167000,0.431848019361496,L, + 148180590250,0.435807734727859,L, + 150105013500,0.439749270677567,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470404863358,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045150041580,L, + 163575976250,0.466872811317444,L, + 165500399500,0.470685750246048,L, + 167424822750,0.474484324455261,L, + 169349246000,0.478268891572952,L, + 171273669250,0.482039690017700,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541351795197,L, + 177046939000,0.493272662162781,L, + 178971362250,0.496991485357285,L, + 180895785500,0.500697910785675,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074641227722,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404820442200,L, + 190517901750,0.519052803516388,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931545257568,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715575218201,L, + 203988864500,0.544289946556091,L, + 205913287750,0.547854602336884,L, + 207837711000,0.551409423351288,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490335941315,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533995628357,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512596130371,L, + 225157520250,0.582985222339630,L, + 227081943500,0.586449384689331,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351840972900,L, + 232855213250,0.596790671348572,L, + 234779636500,0.600221097469330,L, + 236704059750,0.603643298149109,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463201999664,L, + 242477329500,0.613861143589020,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633065700531,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406339645386,L, + 263645985250,0.650718033313751,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317996025085,L, + 269419255000,0.660606205463409,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159378528595,L, + 275192524750,0.670423865318298,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169403553009,L, + 282890217750,0.683401703834534,L, + 284814641000,0.686625361442566,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693047046661377,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433147907257,L, + 294436757250,0.702612459659576,L, + 296361180500,0.705781996250153,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228915214539,L, + 304058873500,0.718355715274811,L, + 305983296750,0.721470177173615,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659165859222,L, + 311756566500,0.730731010437012,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819744110107,L, + 317529836250,0.739830911159515,L, + 319454259500,0.742812991142273,L, + 321378682750,0.745757281780243,L, + 323303106000,0.748646855354309,L, + 325227529250,0.751438677310944,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696793437004,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114311695099,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333655357361,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256717205048,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687750101089,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571617841721,L, + 84674623000,0.289855480194092,L, + 86599046250,0.295046925544739,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141146183014,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634164571762,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213081359863,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834423065186,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122639179230,L, + 128936357750,0.395298093557358,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872113227844,L, + 144331743750,0.427869647741318,L, + 146256167000,0.431848019361496,L, + 148180590250,0.435807675123215,L, + 150105013500,0.439749270677567,L, + 152029436750,0.443673282861710,L, + 153953860000,0.447580158710480,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202498197556,L, + 161651553000,0.463045060634613,L, + 163575976250,0.466872751712799,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484264850616,L, + 169349246000,0.478268802165985,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485797017812729,L, + 175122515750,0.489541262388229,L, + 177046939000,0.493272721767426,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074581623077,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404701232910,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689878940582,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290065765381,L, + 205913287750,0.547854483127594,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954588413239,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351900577545,L, + 232855213250,0.596790552139282,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643178939819,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861143589020,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620632946491241,L, + 248250599250,0.624006927013397,L, + 250175022500,0.627373218536377,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317876815796,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159318923950,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680484294891,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046987056732,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612280845642,L, + 296361180500,0.705781877040863,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090611457825,L, + 302134450250,0.715228855609894,L, + 304058873500,0.718355834484100,L, + 305983296750,0.721470355987549,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659046649933,L, + 311756566500,0.730730891227722,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819922924042,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812991142273,L, + 321378682750,0.745757400989532,L, + 323303106000,0.748647034168243,L, + 325227529250,0.751438558101654,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_073" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793191432953 + KeyVer: 4005 + KeyCount: 67 + Key: + 0,0.016793191432953,L, + 190517901750,0.016793191432953,L, + 192442325000,0.016793072223663,L, + 194366748250,0.016792893409729,L, + 196291171500,0.016792953014374,L, + 198215594750,0.016793131828308,L, + 205913287750,0.016793131828308,L, + 209762134250,0.016792893409729,L, + 213610980750,0.016793251037598,L, + 215535404000,0.016792953014374,L, + 217459827250,0.016792893409729,L, + 219384250500,0.016793131828308,L, + 221308673750,0.016793131828308,L, + 225157520250,0.016792893409729,L, + 227081943500,0.016793012619019,L, + 230930790000,0.016793012619019,L, + 232855213250,0.016792953014374,L, + 234779636500,0.016793072223663,L, + 236704059750,0.016792953014374,L, + 240552906250,0.016793191432953,L, + 242477329500,0.016792953014374,L, + 244401752750,0.016793251037598,L, + 246326176000,0.016792953014374,L, + 248250599250,0.016792893409729,L, + 250175022500,0.016792893409729,L, + 252099445750,0.016793072223663,L, + 254023869000,0.016793131828308,L, + 255948292250,0.016793012619019,L, + 257872715500,0.016793072223663,L, + 259797138750,0.016792833805084,L, + 261721562000,0.016792953014374,L, + 263645985250,0.016793131828308,L, + 265570408500,0.016793131828308,L, + 267494831750,0.016793251037598,L, + 269419255000,0.016793131828308,L, + 271343678250,0.016793191432953,L, + 273268101500,0.016793012619019,L, + 277116948000,0.016792893409729,L, + 279041371250,0.016792893409729,L, + 280965794500,0.016793012619019,L, + 282890217750,0.016793072223663,L, + 284814641000,0.016793310642242,L, + 286739064250,0.016792893409729,L, + 288663487500,0.016793131828308,L, + 294436757250,0.016792953014374,L, + 296361180500,0.016793072223663,L, + 298285603750,0.016793131828308,L, + 300210027000,0.016793012619019,L, + 302134450250,0.016793012619019,L, + 304058873500,0.016793072223663,L, + 305983296750,0.016793012619019,L, + 311756566500,0.016793012619019,L, + 313680989750,0.016793251037598,L, + 315605413000,0.016793191432953,L, + 317529836250,0.016792833805084,L, + 319454259500,0.016793012619019,L, + 325227529250,0.016793012619019,L, + 327151952500,0.016793191432953,L, + 329076375750,0.016793251037598,L, + 331000799000,0.016793251037598,L, + 332925222250,0.016792893409729,L, + 334849645500,0.016793191432953,L, + 336774068750,0.016793131828308,L, + 338698492000,0.016793310642242,L, + 340622915250,0.016793072223663,L, + 342547338500,0.016792893409729,L, + 344471761750,0.016793191432953,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058501005172729 + KeyVer: 4005 + KeyCount: 80 + Key: + 0,-0.058501005172729,L, + 190517901750,-0.058501005172729,L, + 192442325000,-0.058537125587463,L, + 194366748250,-0.059146761894226,L, + 196291171500,-0.059920549392700,L, + 198215594750,-0.060734152793884,L, + 200140018000,-0.061568737030029,L, + 202064441250,-0.062416434288025,L, + 203988864500,-0.063273549079895,L, + 205913287750,-0.064137816429138,L, + 207837711000,-0.065007209777832,L, + 209762134250,-0.065881252288818,L, + 211686557500,-0.066758871078491,L, + 213610980750,-0.067639350891113,L, + 215535404000,-0.068522095680237,L, + 217459827250,-0.069407105445862,L, + 219384250500,-0.070294141769409,L, + 221308673750,-0.071182489395142,L, + 223233097000,-0.072072029113770,L, + 225157520250,-0.072962522506714,L, + 227081943500,-0.073854207992554,L, + 229006366750,-0.074746608734131,L, + 230930790000,-0.075639486312866,L, + 232855213250,-0.076532959938049,L, + 234779636500,-0.077426671981812,L, + 236704059750,-0.078320741653442,L, + 240552906250,-0.080109119415283,L, + 242477329500,-0.081003189086914,L, + 244401752750,-0.081897139549255,L, + 246326176000,-0.082790374755859,L, + 248250599250,-0.083683252334595,L, + 250175022500,-0.084575653076172,L, + 252099445750,-0.085467100143433,L, + 254023869000,-0.086358189582825,L, + 255948292250,-0.087247610092163,L, + 257872715500,-0.088136076927185,L, + 259797138750,-0.089022755622864,L, + 261721562000,-0.089907646179199,L, + 263645985250,-0.090790867805481,L, + 265570408500,-0.091671228408813,L, + 267494831750,-0.092548727989197,L, + 269419255000,-0.093422770500183,L, + 271343678250,-0.094292521476746,L, + 273268101500,-0.095156669616699,L, + 275192524750,-0.096013665199280,L, + 277116948000,-0.096861600875854,L, + 279041371250,-0.097696065902710,L, + 280965794500,-0.098509788513184,L, + 282890217750,-0.099283576011658,L, + 284814641000,-0.099893569946289,L, + 286739064250,-0.099929809570312,L, + 288663487500,-0.099073410034180,L, + 290587910750,-0.097858309745789,L, + 292512334000,-0.096546649932861,L, + 294436757250,-0.095184206962585,L, + 296361180500,-0.093789935112000,L, + 298285603750,-0.092373490333557,L, + 300210027000,-0.090940713882446,L, + 302134450250,-0.089496016502380,L, + 304058873500,-0.088041901588440,L, + 305983296750,-0.086580634117126,L, + 307907720000,-0.085113525390625,L, + 309832143250,-0.083642601966858,L, + 311756566500,-0.082168340682983,L, + 313680989750,-0.080692410469055,L, + 317529836250,-0.077738404273987,L, + 319454259500,-0.076262474060059,L, + 321378682750,-0.074788331985474,L, + 323303106000,-0.073317408561707,L, + 325227529250,-0.071850299835205,L, + 327151952500,-0.070389032363892,L, + 329076375750,-0.068934798240662,L, + 331000799000,-0.067489981651306,L, + 332925222250,-0.066057443618774,L, + 334849645500,-0.064640998840332,L, + 336774068750,-0.063246726989746,L, + 338698492000,-0.061884164810181,L, + 340622915250,-0.060572504997253,L, + 342547338500,-0.059357523918152,L, + 344471761750,-0.058501005172729,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288229823112488 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,0.288229823112488,L, + 1924423250,0.298518300056458,L, + 3848846500,0.310405611991882,L, + 5773269750,0.323110699653625,L, + 7697693000,0.336395144462585,L, + 9622116250,0.350154042243958,L, + 11546539500,0.364334940910339,L, + 13470962750,0.378912568092346,L, + 15395386000,0.393878817558289,L, + 17319809250,0.409237027168274,L, + 19244232500,0.425001740455627,L, + 21168655750,0.441197991371155,L, + 23093079000,0.457861065864563,L, + 25017502250,0.475040793418884,L, + 26941925500,0.492804884910583,L, + 28866348750,0.511790156364441,L, + 30790772000,0.532561659812927,L, + 32715195250,0.555003046989441,L, + 34639618500,0.578838467597961,L, + 36564041750,0.603604435920715,L, + 38488465000,0.628665804862976,L, + 40412888250,0.653296589851379,L, + 42337311500,0.676801085472107,L, + 44261734750,0.698627352714539,L, + 46186158000,0.718426823616028,L, + 48110581250,0.736045479774475,L, + 50035004500,0.751482129096985,L, + 51959427750,0.765871167182922,L, + 53883851000,0.780287861824036,L, + 55808274250,0.794722199440002,L, + 57732697500,0.809162259101868,L, + 59657120750,0.823595643043518,L, + 61581544000,0.838008046150208,L, + 63505967250,0.852384448051453,L, + 65430390500,0.866708874702454,L, + 67354813750,0.880963921546936,L, + 69279237000,0.895130991935730,L, + 71203660250,0.909190058708191,L, + 73128083500,0.923121571540833,L, + 75052506750,0.936904788017273,L, + 76976930000,0.950517773628235,L, + 78901353250,0.963939547538757,L, + 80825776500,0.977148890495300,L, + 82750199750,0.990125060081482,L, + 84674623000,1.002847313880920,L, + 86599046250,1.015297293663025,L, + 88523469500,1.027456879615784,L, + 90447892750,1.039310336112976,L, + 92372316000,1.050842881202698,L, + 94296739250,1.062041878700256,L, + 96221162500,1.072897315025330,L, + 98145585750,1.083401083946228,L, + 100070009000,1.093547224998474,L, + 101994432250,1.103331685066223,L, + 103918855500,1.112752556800842,L, + 105843278750,1.121810555458069,L, + 107767702000,1.130507111549377,L, + 109692125250,1.138845801353455,L, + 111616548500,1.146832108497620,L, + 113540971750,1.154471755027771,L, + 115465395000,1.161772608757019,L, + 117389818250,1.168742537498474,L, + 119314241500,1.175390601158142,L, + 121238664750,1.181726098060608,L, + 123163088000,1.187759280204773,L, + 125087511250,1.193499445915222,L, + 127011934500,1.198957800865173,L, + 128936357750,1.204143881797791,L, + 130860781000,1.209068655967712,L, + 132785204250,1.213741421699524,L, + 134709627500,1.218172669410706,L, + 136634050750,1.222371935844421,L, + 138558474000,1.226348996162415,L, + 140482897250,1.230112910270691,L, + 142407320500,1.233672499656677,L, + 144331743750,1.237036347389221,L, + 146256167000,1.240213036537170,L, + 148180590250,1.243210434913635,L, + 150105013500,1.246036171913147,L, + 152029436750,1.248697161674500,L, + 153953860000,1.251201033592224,L, + 155878283250,1.253554463386536,L, + 157802706500,1.255762934684753,L, + 159727129750,1.257833600044250,L, + 161651553000,1.259771704673767,L, + 163575976250,1.261582970619202,L, + 165500399500,1.263272404670715,L, + 167424822750,1.264845728874207,L, + 169349246000,1.266306757926941,L, + 171273669250,1.267660498619080,L, + 173198092500,1.268911480903625,L, + 175122515750,1.270063757896423,L, + 177046939000,1.271121144294739,L, + 178971362250,1.272087216377258,L, + 180895785500,1.272966027259827,L, + 182820208750,1.273760437965393,L, + 184744632000,1.274474024772644,L, + 186669055250,1.275109648704529,L, + 188593478500,1.275670647621155,L, + 190517901750,1.276159644126892,L, + 192442325000,-0.578061103820801,L, + 282890217750,-0.578061103820801,L, + 284814641000,-0.557460784912109,L, + 286739064250,0.000370621681213,L, + 288663487500,0.007700443267822,L, + 290587910750,0.015030145645142,L, + 296361180500,0.037019610404968,L, + 298285603750,0.044349193572998,L, + 305983296750,0.073668479919434,L, + 307907720000,0.080998063087463,L, + 315605413000,0.110317349433899,L, + 317529836250,0.121188044548035,L, + 319454259500,0.134479522705078,L, + 321378682750,0.150350213050842,L, + 323303106000,0.168187737464905,L, + 325227529250,0.186523079872131,L, + 327151952500,0.203898310661316,L, + 329076375750,0.219612002372742,L, + 331000799000,0.233596205711365,L, + 332925222250,0.246043324470520,L, + 334849645500,0.257195591926575,L, + 336774068750,0.267271637916565,L, + 338698492000,0.276450276374817,L, + 340622915250,0.284874796867371,L, + 342547338500,0.292658686637878,L, + 344471761750,0.299892067909241,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467529284443565,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568989579138631,L, + 21168655750,66.373005297285516,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237300935935750,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348811770516178,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527321096856127,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098543889902942,L, + 196291171500,42.441654860806864,L, + 198215594750,38.276929938924646,L, + 200140018000,34.902164205877462,L, + 202064441250,32.037835584977515,L, + 203988864500,29.538730839375972,L, + 205913287750,27.317940934526415,L, + 207837711000,25.318532828602287,L, + 209762134250,23.500828245167742,L, + 211686557500,21.835862059500101,L, + 213610980750,20.301711071910937,L, + 215535404000,18.881328837779222,L, + 217459827250,17.561154016507913,L, + 219384250500,16.330167805418501,L, + 221308673750,15.179286052914883,L, + 223233097000,14.100946885812220,L, + 225157520250,13.088719681006955,L, + 227081943500,12.137130041879329,L, + 229006366750,11.241467699222980,L, + 230930790000,10.397630270667674,L, + 232855213250,9.602036175767394,L, + 234779636500,8.851522183162777,L, + 236704059750,8.143317797371743,L, + 238628483000,7.474936829536412,L, + 240552906250,6.844173982328519,L, + 242477329500,6.249048927775585,L, + 244401752750,5.687783682259293,L, + 246326176000,5.158796630099967,L, + 248250599250,4.660632514117572,L, + 250175022500,4.191998294124861,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776612536794,L, + 255948292250,2.952192387826271,L, + 257872715500,2.591109101268777,L, + 259797138750,2.254808942671227,L, + 261721562000,1.942609960333678,L, + 263645985250,1.653947382989136,L, + 265570408500,1.388353769566280,L, + 267494831750,1.145431368267661,L, + 269419255000,0.924908465630361,L, + 271343678250,0.726609130922400,L, + 273268101500,0.550527014202283,L, + 275192524750,0.396816915304246,L, + 277116948000,0.265868501856523,L, + 279041371250,0.158436483081973,L, + 280965794500,0.075941451616571,L, + 282890217750,0.021060888305704,L, + 284814641000,0.000309185366264,L, + 286739064250,0.000001885382741,L, + 288663487500,1.237622273476599,L, + 290587910750,2.992587620681550,L, + 292512334000,4.887326065783146,L, + 294436757250,6.855265782653780,L, + 296361180500,8.869395080673382,L, + 298285603750,10.915502897500113,L, + 300210027000,12.984964838646379,L, + 302134450250,15.072045252756666,L, + 304058873500,17.172644318781682,L, + 305983296750,19.283683328953046,L, + 307907720000,21.402725613284364,L, + 309832143250,23.527766511254235,L, + 311756566500,25.657093352928282,L, + 313680989750,27.789198374047231,L, + 315605413000,29.922659187716423,L, + 317529836250,32.056109756101861,L, + 319454259500,34.188207947031636,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442592762148479,L, + 325227529250,40.561631631385211,L, + 327151952500,42.672672349103870,L, + 329076375750,44.773273122676180,L, + 331000799000,46.860343291502708,L, + 332925222250,48.929815477932735,L, + 334849645500,50.975918172117588,L, + 336774068750,52.990045335703073,L, + 338698492000,54.957993590310167,L, + 340622915250,56.852725632109419,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429199967863628 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429199967863628,L, + 1924423250,-20.421562108824272,L, + 3848846500,-20.389152861212608,L, + 5773269750,-20.328215620985134,L, + 7697693000,-20.237251161619035,L, + 9622116250,-20.114738058476693,L, + 11546539500,-19.958838990671374,L, + 13470962750,-19.767296580682398,L, + 15395386000,-19.537330941517570,L, + 17319809250,-19.265549176706688,L, + 19244232500,-18.947795116139812,L, + 21168655750,-18.578937580202975,L, + 23093079000,-18.152571559002002,L, + 25017502250,-17.660581080255646,L, + 26941925500,-17.092461313020433,L, + 28866348750,-16.398737782043451,L, + 30790772000,-15.538796474972573,L, + 32715195250,-14.521076090527332,L, + 34639618500,-13.368169186934809,L, + 36564041750,-12.119607191563686,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565860078828472,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346956159963482,L, + 46186158000,-6.476726026681639,L, + 48110581250,-5.792767958670470,L, + 50035004500,-5.297142111738377,L, + 51959427750,-4.905137491591221,L, + 53883851000,-4.534030688983336,L, + 55808274250,-4.181762401879965,L, + 57732697500,-3.846590932042758,L, + 59657120750,-3.527032420874531,L, + 61581544000,-3.221807702009790,L, + 63505967250,-2.929807936925467,L, + 65430390500,-2.650063238759422,L, + 67354813750,-2.381715991883997,L, + 69279237000,-2.124010606622259,L, + 71203660250,-1.876271748020024,L, + 73128083500,-1.637894197283808,L, + 75052506750,-1.408334954374594,L, + 76976930000,-1.187102032228731,L, + 78901353250,-0.973750508054817,L, + 80825776500,-0.767873878875531,L, + 82750199750,-0.569102887588869,L, + 84674623000,-0.377098079129168,L, + 86599046250,-0.191548386404501,L, + 88523469500,-0.012166514582906,L, + 90447892750,0.161312512990860,L, + 92372316000,0.329132995641543,L, + 94296739250,0.491522877592478,L, + 96221162500,0.648692200500857,L, + 98145585750,0.800838399522375,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779182737059,L, + 103918855500,1.228905137826677,L, + 105843278750,1.362670870904893,L, + 107767702000,1.492215760519460,L, + 109692125250,1.617674596184778,L, + 111616548500,1.739167653263263,L, + 113540971750,1.856813819735155,L, + 115465395000,1.970721738296941,L, + 117389818250,2.080994929003226,L, + 119314241500,2.187729441389216,L, + 121238664750,2.291019403999409,L, + 123163088000,2.390948486651137,L, + 125087511250,2.487600786048556,L, + 127011934500,2.581052501489594,L, + 128936357750,2.671375776847359,L, + 130860781000,2.758639981230609,L, + 132785204250,2.842909361106224,L, + 134709627500,2.924244961289912,L, + 136634050750,3.002704838389616,L, + 138558474000,3.078340005380702,L, + 140482897250,3.151206811323820,L, + 142407320500,3.221346237353992,L, + 144331743750,3.288804600691526,L, + 146256167000,3.353623309358265,L, + 148180590250,3.415842277272172,L, + 150105013500,3.475492667171335,L, + 152029436750,3.532608630001604,L, + 153953860000,3.587218767180127,L, + 155878283250,3.639347624699236,L, + 157802706500,3.689017187230321,L, + 159727129750,3.736245384019953,L, + 161651553000,3.781050571201525,L, + 163575976250,3.823440432737856,L, + 165500399500,3.863419237497176,L, + 167424822750,3.900994669442301,L, + 169349246000,3.936155629515830,L, + 171273669250,3.968897421962708,L, + 173198092500,3.999194860460372,L, + 175122515750,4.027023612459902,L, + 177046939000,4.052339708618518,L, + 178971362250,4.075086799875566,L, + 180895785500,4.095180362640069,L, + 182820208750,4.112515382753537,L, + 184744632000,4.126920678599896,L, + 186669055250,4.138140544972095,L, + 188593478500,4.145734434668669,L, + 190517901750,4.148649644783791,L, + 192442325000,-20.443357242465751,L, + 194366748250,-23.594763836822793,L, + 196291171500,-25.119202295412212,L, + 198215594750,-26.241530442090632,L, + 200140018000,-27.150971837623818,L, + 202064441250,-27.922868591198775,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194800078815060,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223447058385013,L, + 211686557500,-30.672135845340843,L, + 213610980750,-31.085563780706536,L, + 215535404000,-31.468330996888088,L, + 217459827250,-31.824101890375200,L, + 219384250500,-32.155833933078490,L, + 221308673750,-32.465979162909981,L, + 223233097000,-32.756569561147757,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285786278417923,L, + 229006366750,-33.527148088212904,L, + 230930790000,-33.754552406438982,L, + 232855213250,-33.968955459579959,L, + 234779636500,-34.171211021282083,L, + 236704059750,-34.362060167070304,L, + 238628483000,-34.542172255483287,L, + 240552906250,-34.712151758262564,L, + 242477329500,-34.872531430163399,L, + 244401752750,-35.023782554238529,L, + 246326176000,-35.166332017311078,L, + 248250599250,-35.300582800542074,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656797656325232,L, + 255948292250,-35.760981946829872,L, + 257872715500,-35.858281406651152,L, + 259797138750,-35.948911186747921,L, + 261721562000,-36.033042041849427,L, + 263645985250,-36.110837896495767,L, + 265570408500,-36.182408033713642,L, + 267494831750,-36.247868566718950,L, + 269419255000,-36.307294627592562,L, + 271343678250,-36.360737442753248,L, + 273268101500,-36.408190182011843,L, + 275192524750,-36.449615279327908,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513856623566369,L, + 280965794500,-36.536088889314733,L, + 282890217750,-36.550879663962377,L, + 284814641000,-36.556466758703436,L, + 286739064250,-36.556541890784302,L, + 288663487500,-36.223023753613063,L, + 290587910750,-35.750087795103717,L, + 292512334000,-35.239490173510980,L, + 294436757250,-34.709160135406101,L, + 296361180500,-34.166385492633481,L, + 298285603750,-33.614994566222897,L, + 300210027000,-33.057306205397573,L, + 302134450250,-32.494870863099095,L, + 304058873500,-31.928795029973006,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788856948067025,L, + 309832143250,-30.216193397486467,L, + 311756566500,-29.642368714747011,L, + 313680989750,-29.067802956482609,L, + 315605413000,-28.492875198192198,L, + 317529836250,-27.917935487070739,L, + 319454259500,-27.343371436353628,L, + 321378682750,-26.769550168708758,L, + 323303106000,-26.196888325675491,L, + 325227529250,-25.625840114833643,L, + 327151952500,-25.056950243769514,L, + 329076375750,-24.490870995548839,L, + 331000799000,-23.928435653250364,L, + 332925222250,-23.370752415066914,L, + 334849645500,-22.819359781109039,L, + 336774068750,-22.276580015694538,L, + 338698492000,-21.746255100231540,L, + 340622915250,-21.235652355996923,L, + 342547338500,-20.762718105034871,L, + 344471761750,-20.429201675410919,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998294453681410 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-30.998294453681410,L, + 1924423250,-30.999073095246789,L, + 3848846500,-31.002385736994242,L, + 5773269750,-31.008604624233531,L, + 7697693000,-31.017893681504734,L, + 9622116250,-31.030406588064178,L, + 11546539500,-31.046324343924873,L, + 13470962750,-31.065889420802346,L, + 15395386000,-31.089375026263401,L, + 17319809250,-31.117122669766538,L, + 19244232500,-31.149566068324052,L, + 21168655750,-31.187241391785786,L, + 23093079000,-31.230783847744554,L, + 25017502250,-31.281016473995344,L, + 26941925500,-31.339035515899933,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526643736926989,L, + 32715195250,-31.666020577130066,L, + 34639618500,-31.831027702193584,L, + 36564041750,-32.014206545543892,L, + 38488465000,-32.205127408318397,L, + 40412888250,-32.391635968889084,L, + 42337311500,-32.561902339613503,L, + 44261734750,-32.706350595275310,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895960061729177,L, + 50035004500,-32.937730083598332,L, + 51959427750,-32.961400104166977,L, + 53883851000,-32.983813369928342,L, + 55808274250,-33.005082579003727,L, + 57732697500,-33.025320429514444,L, + 59657120750,-33.044619129014293,L, + 61581544000,-33.063050394489544,L, + 63505967250,-33.080682527831904,L, + 65430390500,-33.097580415838493,L, + 67354813750,-33.113778209455155,L, + 69279237000,-33.129337380384420,L, + 71203660250,-33.144298909761311,L, + 73128083500,-33.158700363626266,L, + 75052506750,-33.172558817452199,L, + 76976930000,-33.185915252374144,L, + 78901353250,-33.198796989148768,L, + 80825776500,-33.211238178721928,L, + 82750199750,-33.223238821093624,L, + 84674623000,-33.234829652115117,L, + 86599046250,-33.246034577448505,L, + 88523469500,-33.256870672566720,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287282089846158,L, + 96221162500,-33.296776052792460,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314855563525455,L, + 101994432250,-33.323475262258000,L, + 103918855500,-33.331811508139992,L, + 105843278750,-33.339898452117275,L, + 107767702000,-33.347715603622341,L, + 109692125250,-33.355290283411875,L, + 111616548500,-33.362625906580455,L, + 113540971750,-33.369729303317257,L, + 115465395000,-33.376610718906036,L, + 117389818250,-33.383266738252203,L, + 119314241500,-33.389714436828690,L, + 121238664750,-33.395946984446319,L, + 123163088000,-33.401991701861768,L, + 125087511250,-33.407821268318365,L, + 127011934500,-33.413463004572790,L, + 128936357750,-33.418916910625036,L, + 130860781000,-33.424186401569692,L, + 132785204250,-33.429268062312175,L, + 134709627500,-33.434182383419994,L, + 136634050750,-33.438925949798559,L, + 138558474000,-33.443488516164123,L, + 140482897250,-33.447890573084187,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456202913304082,L, + 146256167000,-33.460116611698496,L, + 148180590250,-33.463869800647409,L, + 150105013500,-33.467472725434590,L, + 152029436750,-33.470925386060024,L, + 153953860000,-33.474224367429137,L, + 155878283250,-33.477366254447340,L, + 157802706500,-33.480368122587549,L, + 159727129750,-33.483223141660616,L, + 161651553000,-33.485927896571937,L, + 163575976250,-33.488489217510690,L, + 165500399500,-33.490900274287696,L, + 167424822750,-33.493171312186725,L, + 169349246000,-33.495292085924007,L, + 171273669250,-33.497266010594139,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500783558016693,L, + 177046939000,-33.502310105296189,L, + 178971362250,-33.503679558224775,L, + 180895785500,-33.504895331897032,L, + 182820208750,-33.505940350840042,L, + 184744632000,-33.506814615053806,L, + 186669055250,-33.507487388687046,L, + 188593478500,-33.507948426456025,L, + 190517901750,-33.508126011374443,L, + 192442325000,-30.971082980028118,L, + 194366748250,-29.975504361324735,L, + 196291171500,-29.170225058181391,L, + 198215594750,-28.412333607499523,L, + 200140018000,-27.679724102030423,L, + 202064441250,-26.963590720386662,L, + 203988864500,-26.259341867898709,L, + 205913287750,-25.564254006635018,L, + 207837711000,-24.876530796843884,L, + 209762134250,-24.194929144096367,L, + 211686557500,-23.518530387949099,L, + 213610980750,-22.846663462316126,L, + 215535404000,-22.178802442631362,L, + 217459827250,-21.514520442071678,L, + 219384250500,-20.853487904009626,L, + 221308673750,-20.195421375594645,L, + 223233097000,-19.540109120962470,L, + 225157520250,-18.887363309910921,L, + 227081943500,-18.237021725447214,L, + 229006366750,-17.588963131713580,L, + 230930790000,-16.943078245683299,L, + 232855213250,-16.299279982444453,L, + 234779636500,-15.657491502368883,L, + 236704059750,-15.017658163943226,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743681888444168,L, + 242477329500,-13.109485163631057,L, + 244401752750,-12.477132589893845,L, + 246326176000,-11.846630997421704,L, + 248250599250,-11.217988070177450,L, + 250175022500,-10.591220029860361,L, + 252099445750,-9.966385786852030,L, + 254023869000,-9.343520345871951,L, + 255948292250,-8.722713353152983,L, + 257872715500,-8.104037379455056,L, + 259797138750,-7.487621344598754,L, + 261721562000,-6.873609109443469,L, + 263645985250,-6.262179966454915,L, + 265570408500,-5.653579802443211,L, + 267494831750,-5.048107011297723,L, + 269419255000,-4.446150486914316,L, + 271343678250,-3.848253656218831,L, + 273268101500,-3.255132408413646,L, + 275192524750,-2.667856948764338,L, + 277116948000,-2.088028529744449,L, + 279041371250,-1.518363218766112,L, + 280965794500,-0.964062098160580,L, + 282890217750,-0.438165333074710,L, + 284814641000,-0.024742478662728,L, + 286739064250,-0.000005139521107,L, + 288663487500,-0.641057863277792,L, + 290587910750,-1.550085498757662,L, + 292512334000,-2.531512285665916,L, + 294436757250,-3.550852278718093,L, + 296361180500,-4.594119705093260,L, + 298285603750,-5.653947778884745,L, + 300210027000,-6.725872117696306,L, + 302134450250,-7.806925004333575,L, + 304058873500,-8.894977554209628,L, + 305983296750,-9.988442175229261,L, + 307907720000,-11.086048452206857,L, + 309832143250,-12.186764172804095,L, + 311756566500,-13.289702266202523,L, + 313680989750,-14.394073845553004,L, + 315605413000,-15.499147226840705,L, + 317529836250,-16.604217193033822,L, + 319454259500,-17.708588772384303,L, + 321378682750,-18.811531134650963,L, + 323303106000,-19.912250270342785,L, + 325227529250,-21.009861669962259,L, + 327151952500,-22.103316899471782,L, + 329076375750,-23.191374571989712,L, + 331000799000,-24.272424470419221,L, + 332925222250,-25.344349236117605,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447441321189672,L, + 338698492000,-28.466797535941126,L, + 340622915250,-29.448210342305924,L, + 342547338500,-30.357247049130784,L, + 344471761750,-30.998294453681410,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344967603683 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344967603683,L, + 1924423250,0.321910500526428,L, + 3848846500,0.322999149560928,L, + 5773269750,0.323413133621216,L, + 7697693000,0.323450148105621,L, + 9622116250,0.323262572288513,L, + 11546539500,0.322943419218063,L, + 13470962750,0.322556585073471,L, + 15395386000,0.322150588035583,L, + 17319809250,0.321765512228012,L, + 19244232500,0.321436911821365,L, + 21168655750,0.321198970079422,L, + 23093079000,0.321086436510086,L, + 25017502250,0.321136683225632,L, + 26941925500,0.321392446756363,L, + 28866348750,0.326478868722916,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890575408936,L, + 34639618500,0.396891295909882,L, + 36564041750,0.435117334127426,L, + 38488465000,0.476715862751007,L, + 40412888250,0.518270969390869,L, + 42337311500,0.556369781494141,L, + 44261734750,0.588167726993561,L, + 46186158000,0.611717343330383,L, + 48110581250,0.625994741916656,L, + 50035004500,0.630722939968109,L, + 51959427750,0.630567073822021,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406392574310,L, + 57732697500,0.628449678421021,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877737998962,L, + 63505967250,0.624292671680450,L, + 65430390500,0.622524559497833,L, + 67354813750,0.620584487915039,L, + 69279237000,0.618481457233429,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818466663361,L, + 75052506750,0.611272275447845,L, + 76976930000,0.608591079711914,L, + 78901353250,0.605779826641083,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610128879547,L, + 86599046250,0.593320548534393,L, + 88523469500,0.589919924736023,L, + 90447892750,0.586410582065582,L, + 92372316000,0.582794904708862,L, + 94296739250,0.579075217247009,L, + 96221162500,0.575253009796143,L, + 98145585750,0.571330070495605,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187062740326,L, + 103918855500,0.558969020843506,L, + 105843278750,0.554654419422150,L, + 107767702000,0.550243794918060,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135549545288,L, + 113540971750,0.536438047885895,L, + 115465395000,0.531644940376282,L, + 117389818250,0.526755750179291,L, + 119314241500,0.521769881248474,L, + 121238664750,0.516686558723450,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223559379578,L, + 127011934500,0.500841200351715,L, + 128936357750,0.495356082916260,L, + 130860781000,0.489766448736191,L, + 132785204250,0.484070032835007,L, + 134709627500,0.478264242410660,L, + 136634050750,0.472346365451813,L, + 138558474000,0.466313153505325,L, + 140482897250,0.460160970687866,L, + 142407320500,0.453885674476624,L, + 144331743750,0.447482764720917,L, + 146256167000,0.440947026014328,L, + 148180590250,0.434272557497025,L, + 150105013500,0.427452951669693,L, + 152029436750,0.420480549335480,L, + 153953860000,0.413346827030182,L, + 155878283250,0.406042069196701,L, + 157802706500,0.398555070161819,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979899644852,L, + 163575976250,0.374858886003494,L, + 165500399500,0.366488575935364,L, + 167424822750,0.357843667268753,L, + 169349246000,0.348893493413925,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915642738342,L, + 175122515750,0.319778949022293,L, + 177046939000,0.309108704328537,L, + 178971362250,0.297793835401535,L, + 180895785500,0.285674840211868,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887303829193,L, + 186669055250,0.241029426455498,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769356131554,L, + 192442325000,0.000044941902161,L, + 194366748250,0.000040118600737,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067656765,L, + 200140018000,0.000034675726056,L, + 202064441250,0.000033494314266,L, + 203988864500,0.000032463547541,L, + 205913287750,0.000031547569961,L, + 207837711000,0.000030722902011,L, + 209762134250,0.000029973178243,L, + 211686557500,0.000029286453355,L, + 213610980750,0.000028653679692,L, + 215535404000,0.000028067830499,L, + 217459827250,0.000027523314202,L, + 219384250500,0.000027015581509,L, + 221308673750,0.000026540892577,L, + 223233097000,0.000026096124202,L, + 225157520250,0.000025678618840,L, + 227081943500,0.000025286128221,L, + 229006366750,0.000024916706025,L, + 230930790000,0.000024568655135,L, + 232855213250,0.000024240502171,L, + 234779636500,0.000023930948373,L, + 236704059750,0.000023638838684,L, + 238628483000,0.000023363158107,L, + 240552906250,0.000023102997147,L, + 242477329500,0.000022857526346,L, + 244401752750,0.000022626027203,L, + 246326176000,0.000022407839424,L, + 248250599250,0.000022202368200,L, + 250175022500,0.000022009075110,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497706257,L, + 257872715500,0.000021348781956,L, + 259797138750,0.000021210074920,L, + 261721562000,0.000021081306841,L, + 263645985250,0.000020962252165,L, + 265570408500,0.000020852705347,L, + 267494831750,0.000020752522687,L, + 269419255000,0.000020661571398,L, + 271343678250,0.000020579791453,L, + 273268101500,0.000020507177396,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389799829,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311523258,L, + 282890217750,0.000020288927772,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232565671205521,L, + 290587910750,0.245429664850235,L, + 292512334000,0.254731386899948,L, + 294436757250,0.262120485305786,L, + 296361180500,0.268265932798386,L, + 298285603750,0.273518383502960,L, + 300210027000,0.278088867664337,L, + 302134450250,0.282116174697876,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903206586838,L, + 307907720000,0.291787862777710,L, + 309832143250,0.294393301010132,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894405364990,L, + 315605413000,0.300840169191360,L, + 317529836250,0.302609413862228,L, + 319454259500,0.304218411445618,L, + 321378682750,0.305681347846985,L, + 323303106000,0.307010591030121,L, + 325227529250,0.308217555284500,L, + 327151952500,0.309312224388123,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203896999359,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452214002609,L, + 338698492000,0.314102530479431,L, + 340622915250,0.314752757549286,L, + 342547338500,0.315492510795593,L, + 344471761750,0.316851407289505,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844671964645 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.316844671964645,L, + 1924423250,0.317553400993347,L, + 3848846500,0.317994207143784,L, + 5773269750,0.318131417036057,L, + 7697693000,0.317930310964584,L, + 9622116250,0.317365050315857,L, + 11546539500,0.316432744264603,L, + 13470962750,0.315173506736755,L, + 15395386000,0.313687086105347,L, + 17319809250,0.312128514051437,L, + 19244232500,0.310671806335449,L, + 21168655750,0.309460848569870,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061331510544,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985641717911,L, + 30790772000,0.324338674545288,L, + 32715195250,0.344708025455475,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122429132462,L, + 38488465000,0.441004663705826,L, + 40412888250,0.476886868476868,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301301956177,L, + 46186158000,0.557670593261719,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115633964539,L, + 51959427750,0.573916792869568,L, + 53883851000,0.573346614837646,L, + 55808274250,0.572440505027771,L, + 57732697500,0.571227669715881,L, + 59657120750,0.569733500480652,L, + 61581544000,0.567979454994202,L, + 63505967250,0.565984308719635,L, + 65430390500,0.563764512538910,L, + 67354813750,0.561334133148193,L, + 69279237000,0.558706104755402,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900791168213,L, + 75052506750,0.549742400646210,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954802513123,L, + 80825776500,0.539339423179626,L, + 82750199750,0.535584449768066,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676761150360,L, + 88523469500,0.523533463478088,L, + 90447892750,0.519269347190857,L, + 92372316000,0.514888167381287,L, + 94296739250,0.510393202304840,L, + 96221162500,0.505787611007690,L, + 98145585750,0.501074135303497,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333365440369,L, + 103918855500,0.486310422420502,L, + 105843278750,0.481188237667084,L, + 107767702000,0.475968509912491,L, + 109692125250,0.470652669668198,L, + 111616548500,0.465241938829422,L, + 113540971750,0.459737360477448,L, + 115465395000,0.454140007495880,L, + 117389818250,0.448450416326523,L, + 119314241500,0.442669242620468,L, + 121238664750,0.436796784400940,L, + 123163088000,0.430833309888840,L, + 125087511250,0.424778819084167,L, + 127011934500,0.418633222579956,L, + 128936357750,0.412396103143692,L, + 130860781000,0.406066954135895,L, + 132785204250,0.399645000696182,L, + 134709627500,0.393129348754883,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811793565750,L, + 140482897250,0.373006761074066,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093695878983,L, + 146256167000,0.351980566978455,L, + 148180590250,0.344758927822113,L, + 150105013500,0.337425053119659,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402834892273,L, + 155878283250,0.314703822135925,L, + 157802706500,0.306871086359024,L, + 159727129750,0.298896700143814,L, + 161651553000,0.290771842002869,L, + 163575976250,0.282485574483871,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375316143036,L, + 169349246000,0.256517112255096,L, + 171273669250,0.247427478432655,L, + 173198092500,0.238077089190483,L, + 175122515750,0.228428348898888,L, + 177046939000,0.218431472778320,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090566158295,L, + 182820208750,0.185499250888824,L, + 184744632000,0.172995254397392,L, + 186669055250,0.159099221229553,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520822525,L, + 194366748250,0.000026909170629,L, + 196291171500,0.000026129559046,L, + 198215594750,0.000025555595130,L, + 200140018000,0.000025090486815,L, + 202064441250,0.000024695738830,L, + 203988864500,0.000024351320462,L, + 205913287750,0.000024045253667,L, + 207837711000,0.000023769702238,L, + 209762134250,0.000023519189199,L, + 211686557500,0.000023289725505,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882539270,L, + 217459827250,0.000022700593036,L, + 219384250500,0.000022530941351,L, + 221308673750,0.000022372332751,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084206648,L, + 227081943500,0.000021953061150,L, + 229006366750,0.000021829624529,L, + 230930790000,0.000021713325623,L, + 232855213250,0.000021603680580,L, + 234779636500,0.000021500243747,L, + 236704059750,0.000021402642233,L, + 238628483000,0.000021310524971,L, + 240552906250,0.000021223593649,L, + 242477329500,0.000021141573598,L, + 244401752750,0.000021064222892,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922658223,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797395337,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687202777,L, + 257872715500,0.000020637440684,L, + 259797138750,0.000020591094653,L, + 261721562000,0.000020548068278,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471685275,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407818738,L, + 271343678250,0.000020380493879,L, + 273268101500,0.000020356224923,L, + 275192524750,0.000020335048248,L, + 277116948000,0.000020317009330,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290854081,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803947687149,L, + 288663487500,0.232919067144394,L, + 290587910750,0.245930299162865,L, + 292512334000,0.255280971527100,L, + 294436757250,0.262665182352066,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961156606674,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234037399292,L, + 311756566500,0.296479791402817,L, + 313680989750,0.298507779836655,L, + 315605413000,0.300342172384262,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509086370468,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115329265594,L, + 325227529250,0.307243078947067,L, + 327151952500,0.308270871639252,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076862573624,L, + 332925222250,0.310882627964020,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149780035019,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037369728088,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212585687637 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212585687637,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968743085861,L, + 5773269750,0.318790256977081,L, + 7697693000,0.318605124950409,L, + 9622116250,0.318420708179474,L, + 11546539500,0.318241715431213,L, + 13470962750,0.318071514368057,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769259214401,L, + 19244232500,0.317642778158188,L, + 21168655750,0.317536920309067,L, + 23093079000,0.317455232143402,L, + 25017502250,0.317402094602585,L, + 26941925500,0.317382961511612,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921168327332,L, + 32715195250,0.358883112668991,L, + 34639618500,0.389874786138535,L, + 36564041750,0.426987320184708,L, + 38488465000,0.467436701059341,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998466968536,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952233791351,L, + 48110581250,0.612877607345581,L, + 50035004500,0.617490470409393,L, + 51959427750,0.617330253124237,L, + 53883851000,0.616870701313019,L, + 55808274250,0.616138458251953,L, + 57732697500,0.615156769752502,L, + 59657120750,0.613944649696350,L, + 61581544000,0.612519085407257,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082698822021,L, + 67354813750,0.607095539569855,L, + 69279237000,0.604942440986633,L, + 71203660250,0.602631747722626,L, + 73128083500,0.600171148777008,L, + 75052506750,0.597567558288574,L, + 76976930000,0.594826757907867,L, + 78901353250,0.591954171657562,L, + 80825776500,0.588954746723175,L, + 82750199750,0.585832893848419,L, + 84674623000,0.582592308521271,L, + 86599046250,0.579236626625061,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191953659058,L, + 92372316000,0.568508327007294,L, + 94296739250,0.564720034599304,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837975978851,L, + 100070009000,0.552747189998627,L, + 101994432250,0.548558413982391,L, + 103918855500,0.544272601604462,L, + 105843278750,0.539890825748444,L, + 107767702000,0.535413563251495,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174783706665,L, + 113540971750,0.521413803100586,L, + 115465395000,0.516558229923248,L, + 117389818250,0.511608004570007,L, + 119314241500,0.506562650203705,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183991432190,L, + 125087511250,0.490848779678345,L, + 127011934500,0.485414832830429,L, + 128936357750,0.479880571365356,L, + 130860781000,0.474244356155396,L, + 132785204250,0.468504130840302,L, + 134709627500,0.462657719850540,L, + 136634050750,0.456702321767807,L, + 138558474000,0.450635254383087,L, + 140482897250,0.444453030824661,L, + 142407320500,0.438151925802231,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175368785858,L, + 148180590250,0.418489575386047,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692560434341,L, + 153953860000,0.397566080093384,L, + 155878283250,0.390275985002518,L, + 157802706500,0.382811665534973,L, + 159727129750,0.375160902738571,L, + 161651553000,0.367309570312500,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935190916061,L, + 167424822750,0.342368543148041,L, + 169349246000,0.333512216806412,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778625965118,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371424198151,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325160980225,L, + 186669055250,0.228012219071388,L, + 188593478500,0.207745254039764,L, + 190517901750,0.171379104256630,L, + 192442325000,0.000042378906073,L, + 194366748250,0.000038056881749,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426931961,L, + 200140018000,0.000033179661841,L, + 202064441250,0.000032121031836,L, + 203988864500,0.000031197389035,L, + 205913287750,0.000030376606446,L, + 207837711000,0.000029637649277,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350481443,L, + 213610980750,0.000027783473342,L, + 215535404000,0.000027258514820,L, + 217459827250,0.000026770585464,L, + 219384250500,0.000026315623472,L, + 221308673750,0.000025890267352,L, + 223233097000,0.000025491717679,L, + 225157520250,0.000025117604309,L, + 227081943500,0.000024765902708,L, + 229006366750,0.000024434873922,L, + 230930790000,0.000024122995455,L, + 232855213250,0.000023828948542,L, + 234779636500,0.000023551563572,L, + 236704059750,0.000023289810997,L, + 238628483000,0.000023042783141,L, + 240552906250,0.000022809657821,L, + 242477329500,0.000022589703804,L, + 244401752750,0.000022382260795,L, + 246326176000,0.000022186750357,L, + 248250599250,0.000022002630431,L, + 250175022500,0.000021829428078,L, + 252099445750,0.000021666708562,L, + 254023869000,0.000021514084438,L, + 255948292250,0.000021371204639,L, + 257872715500,0.000021237752662,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998080799,L, + 263645985250,0.000020891398890,L, + 265570408500,0.000020793240765,L, + 267494831750,0.000020703466362,L, + 269419255000,0.000020621968361,L, + 271343678250,0.000020548686734,L, + 273268101500,0.000020483619664,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378432964,L, + 279041371250,0.000020338753529,L, + 280965794500,0.000020308292733,L, + 282890217750,0.000020288054657,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435819029808,L, + 292512334000,0.254741251468658,L, + 294436757250,0.262134104967117,L, + 296361180500,0.268283247947693,L, + 298285603750,0.273539364337921,L, + 300210027000,0.278113365173340,L, + 302134450250,0.282144159078598,L, + 304058873500,0.285728603601456,L, + 305983296750,0.288937807083130,L, + 307907720000,0.291825592517853,L, + 309832143250,0.294433951377869,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940479755402,L, + 315605413000,0.300888657569885,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304271012544632,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066231966019,L, + 325227529250,0.308274179697037,L, + 327151952500,0.309369534254074,L, + 329076375750,0.310362011194229,L, + 331000799000,0.311260908842087,L, + 332925222250,0.312076300382614,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503116369247,L, + 338698492000,0.314148783683777,L, + 340622915250,0.314791977405548,L, + 342547338500,0.315520256757736,L, + 344471761750,0.316851437091827,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_072" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210700988770 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,-0.014210700988770,L, + 1924423250,-0.014210820198059,L, + 3848846500,-0.014210760593414,L, + 5773269750,-0.014210939407349,L, + 7697693000,-0.014210641384125,L, + 9622116250,-0.014210581779480,L, + 11546539500,-0.014210760593414,L, + 13470962750,-0.014210641384125,L, + 15395386000,-0.014210820198059,L, + 17319809250,-0.014210760593414,L, + 19244232500,-0.014210939407349,L, + 21168655750,-0.014210879802704,L, + 23093079000,-0.014210581779480,L, + 25017502250,-0.014210700988770,L, + 26941925500,-0.014210641384125,L, + 28866348750,-0.014210820198059,L, + 30790772000,-0.014210700988770,L, + 32715195250,-0.014210939407349,L, + 34639618500,-0.014210879802704,L, + 36564041750,-0.014210522174835,L, + 38488465000,-0.014210700988770,L, + 40412888250,-0.014210641384125,L, + 42337311500,-0.014210760593414,L, + 44261734750,-0.014210760593414,L, + 46186158000,-0.014210939407349,L, + 48110581250,-0.014210820198059,L, + 50035004500,-0.014210999011993,L, + 51959427750,-0.014210700988770,L, + 53883851000,-0.014210581779480,L, + 55808274250,-0.014210760593414,L, + 57732697500,-0.014210760593414,L, + 59657120750,-0.014210879802704,L, + 61581544000,-0.014210820198059,L, + 63505967250,-0.014210999011993,L, + 65430390500,-0.014210641384125,L, + 67354813750,-0.014210581779480,L, + 69279237000,-0.014210820198059,L, + 71203660250,-0.014210700988770,L, + 73128083500,-0.014210879802704,L, + 75052506750,-0.014210820198059,L, + 76976930000,-0.014210939407349,L, + 78901353250,-0.014210879802704,L, + 80825776500,-0.014210641384125,L, + 82750199750,-0.014210760593414,L, + 84674623000,-0.014210700988770,L, + 86599046250,-0.014210879802704,L, + 88523469500,-0.014210760593414,L, + 90447892750,-0.014210700988770,L, + 92372316000,-0.014210879802704,L, + 94296739250,-0.014210581779480,L, + 96221162500,-0.014210760593414,L, + 98145585750,-0.014210700988770,L, + 100070009000,-0.014210820198059,L, + 103918855500,-0.014210700988770,L, + 105843278750,-0.014210879802704,L, + 192442325000,-0.014210879802704,L, + 194366748250,-0.014210820198059,L, + 196291171500,-0.014210939407349,L, + 198215594750,-0.014210641384125,L, + 200140018000,-0.014210581779480,L, + 202064441250,-0.014210760593414,L, + 203988864500,-0.014210641384125,L, + 205913287750,-0.014210820198059,L, + 209762134250,-0.014210700988770,L, + 211686557500,-0.014210820198059,L, + 213610980750,-0.014210760593414,L, + 215535404000,-0.014210939407349,L, + 217459827250,-0.014210641384125,L, + 219384250500,-0.014210760593414,L, + 221308673750,-0.014210760593414,L, + 223233097000,-0.014210641384125,L, + 225157520250,-0.014210820198059,L, + 227081943500,-0.014210700988770,L, + 229006366750,-0.014210939407349,L, + 230930790000,-0.014210820198059,L, + 232855213250,-0.014210522174835,L, + 234779636500,-0.014210879802704,L, + 236704059750,-0.014210641384125,L, + 238628483000,-0.014210760593414,L, + 242477329500,-0.014210641384125,L, + 244401752750,-0.014210820198059,L, + 246326176000,-0.014210700988770,L, + 248250599250,-0.014210879802704,L, + 250175022500,-0.014210820198059,L, + 252099445750,-0.014210522174835,L, + 254023869000,-0.014210879802704,L, + 255948292250,-0.014210581779480,L, + 257872715500,-0.014210760593414,L, + 259797138750,-0.014210700988770,L, + 261721562000,-0.014210820198059,L, + 265570408500,-0.014210700988770,L, + 267494831750,-0.014210879802704,L, + 269419255000,-0.014210760593414,L, + 271343678250,-0.014210939407349,L, + 273268101500,-0.014210879802704,L, + 275192524750,-0.014210522174835,L, + 277116948000,-0.014210700988770,L, + 279041371250,-0.014210641384125,L, + 280965794500,-0.014210820198059,L, + 282890217750,-0.014210700988770,L, + 284814641000,-0.014210641384125,L, + 286739064250,-0.014210820198059,L, + 288663487500,-0.014210760593414,L, + 290587910750,-0.014210879802704,L, + 292512334000,-0.014210641384125,L, + 294436757250,-0.014210522174835,L, + 296361180500,-0.014210700988770,L, + 298285603750,-0.014210581779480,L, + 300210027000,-0.014210820198059,L, + 302134450250,-0.014210700988770,L, + 304058873500,-0.014210879802704,L, + 305983296750,-0.014210760593414,L, + 307907720000,-0.014210760593414,L, + 309832143250,-0.014210879802704,L, + 311756566500,-0.014210581779480,L, + 313680989750,-0.014210939407349,L, + 315605413000,-0.014210700988770,L, + 317529836250,-0.014210581779480,L, + 319454259500,-0.014210760593414,L, + 321378682750,-0.014210700988770,L, + 323303106000,-0.014210879802704,L, + 325227529250,-0.014210760593414,L, + 327151952500,-0.014210700988770,L, + 329076375750,-0.014210879802704,L, + 331000799000,-0.014210581779480,L, + 332925222250,-0.014210939407349,L, + 334849645500,-0.014210641384125,L, + 336774068750,-0.014210820198059,L, + 338698492000,-0.014210760593414,L, + 340622915250,-0.014210641384125,L, + 342547338500,-0.014210820198059,L, + 344471761750,-0.014210760593414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087180495262146 + KeyVer: 4005 + KeyCount: 112 + Key: + 0,0.087180495262146,L, + 1924423250,0.086436092853546,L, + 3848846500,0.085691750049591,L, + 5773269750,0.084947288036346,L, + 9622116250,0.083458244800568,L, + 11546539500,0.082713901996613,L, + 13470962750,0.081969499588013,L, + 15395386000,0.081225156784058,L, + 17319809250,0.080480694770813,L, + 21168655750,0.078991889953613,L, + 23093079000,0.078247308731079,L, + 25017502250,0.077502906322479,L, + 26941925500,0.076758444309235,L, + 30790772000,0.075269639492035,L, + 32715195250,0.074525296688080,L, + 34639618500,0.073780834674835,L, + 38488465000,0.072291791439056,L, + 40412888250,0.071547448635101,L, + 42337311500,0.070803046226501,L, + 44261734750,0.070058703422546,L, + 46186158000,0.069314181804657,L, + 48110581250,0.068569779396057,L, + 50035004500,0.067825436592102,L, + 51959427750,0.067080736160278,L, + 53883851000,0.066336452960968,L, + 55808274250,0.065591990947723,L, + 59657120750,0.064103186130524,L, + 61581544000,0.063358843326569,L, + 63505967250,0.062614381313324,L, + 67354813750,0.061125338077545,L, + 69279237000,0.060380995273590,L, + 71203660250,0.059636592864990,L, + 73128083500,0.058892130851746,L, + 76976930000,0.057403326034546,L, + 78901353250,0.056658983230591,L, + 80825776500,0.055914282798767,L, + 82750199750,0.055169939994812,L, + 84674623000,0.054425477981567,L, + 88523469500,0.052936792373657,L, + 98145585750,0.049214482307434,L, + 100070009000,0.048470139503479,L, + 101994432250,0.047725677490234,L, + 103918855500,0.046981334686279,L, + 105843278750,0.013481974601746,L, + 192442325000,0.013481974601746,L, + 194366748250,0.014424204826355,L, + 196291171500,0.015366673469543,L, + 198215594750,0.016308903694153,L, + 200140018000,0.017251014709473,L, + 202064441250,0.018193483352661,L, + 203988864500,0.019135713577271,L, + 205913287750,0.020078182220459,L, + 209762134250,0.021962642669678,L, + 211686557500,0.022905111312866,L, + 213610980750,0.023847341537476,L, + 215535404000,0.024789810180664,L, + 217459827250,0.025732040405273,L, + 219384250500,0.026674509048462,L, + 221308673750,0.027616620063782,L, + 227081943500,0.030443668365479,L, + 229006366750,0.031385898590088,L, + 230930790000,0.032328248023987,L, + 232855213250,0.033270359039307,L, + 234779636500,0.034212946891785,L, + 236704059750,0.035155057907104,L, + 238628483000,0.036097645759583,L, + 240552906250,0.037039756774902,L, + 244401752750,0.038924455642700,L, + 246326176000,0.039866685867310,L, + 248250599250,0.040809154510498,L, + 252099445750,0.042693614959717,L, + 254023869000,0.043636083602905,L, + 255948292250,0.044578313827515,L, + 257872715500,0.045520663261414,L, + 259797138750,0.046462893486023,L, + 261721562000,0.047405362129211,L, + 265570408500,0.049289822578430,L, + 267494831750,0.050232291221619,L, + 269419255000,0.051174521446228,L, + 271343678250,0.052116990089417,L, + 275192524750,0.054001450538635,L, + 277116948000,0.054943919181824,L, + 279041371250,0.055886149406433,L, + 280965794500,0.056828618049622,L, + 284814641000,0.058713078498840,L, + 286739064250,0.059655427932739,L, + 288663487500,0.060597658157349,L, + 290587910750,0.061540126800537,L, + 294436757250,0.063424587249756,L, + 296361180500,0.064366996288300,L, + 298285603750,0.065309286117554,L, + 300210027000,0.066251695156097,L, + 302134450250,0.067193984985352,L, + 304058873500,0.068136394023895,L, + 305983296750,0.069078683853149,L, + 307907720000,0.070020854473114,L, + 309832143250,0.070963382720947,L, + 311756566500,0.071905553340912,L, + 313680989750,0.072847962379456,L, + 315605413000,0.073790132999420,L, + 317529836250,0.074732363224030,L, + 319454259500,0.075674831867218,L, + 321378682750,0.076617062091827,L, + 323303106000,0.077559530735016,L, + 327151952500,0.079443991184235,L, + 329076375750,0.080386459827423,L, + 331000799000,0.081328630447388,L, + 332925222250,0.082271158695221,L, + 334849645500,0.083213329315186,L, + 336774068750,0.084155857563019,L, + 338698492000,0.085098028182983,L, + 344471761750,0.087924897670746,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817197918891907 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817197918891907,L, + 1924423250,0.818611264228821,L, + 3848846500,0.820889830589294,L, + 5773269750,0.823977828025818,L, + 7697693000,0.827825903892517,L, + 9622116250,0.832388520240784,L, + 11546539500,0.837626099586487,L, + 13470962750,0.843501448631287,L, + 15395386000,0.849981188774109,L, + 17319809250,0.857035040855408,L, + 19244232500,0.864634871482849,L, + 21168655750,0.872754931449890,L, + 23093079000,0.881371855735779,L, + 25017502250,0.890462994575500,L, + 26941925500,0.900008797645569,L, + 28866348750,0.909989953041077,L, + 30790772000,0.920389056205750,L, + 32715195250,0.931189656257629,L, + 34639618500,0.942376017570496,L, + 36564041750,0.953934550285339,L, + 38488465000,0.965850949287415,L, + 40412888250,0.978113055229187,L, + 42337311500,0.990708708763123,L, + 44261734750,1.003626704216003,L, + 46186158000,1.016856312751770,L, + 48110581250,1.030387043952942,L, + 50035004500,1.044209599494934,L, + 51959427750,1.058314681053162,L, + 53883851000,1.072693467140198,L, + 55808274250,1.087337613105774,L, + 57732697500,1.102239012718201,L, + 59657120750,1.117389798164368,L, + 61581544000,1.132782101631165,L, + 63505967250,1.148408770561218,L, + 65430390500,1.164262652397156,L, + 67354813750,1.180336117744446,L, + 69279237000,1.196622729301453,L, + 71203660250,1.213114857673645,L, + 73128083500,1.229805350303650,L, + 75052506750,1.246686816215515,L, + 76976930000,1.263751387596130,L, + 78901353250,1.280990004539490,L, + 80825776500,1.298394799232483,L, + 82750199750,1.315954566001892,L, + 84674623000,1.333657860755920,L, + 86599046250,1.351490855216980,L, + 88523469500,1.369436144828796,L, + 90447892750,1.387471556663513,L, + 92372316000,1.405567526817322,L, + 94296739250,1.423682332038879,L, + 96221162500,1.441750168800354,L, + 98145585750,1.459661364555359,L, + 100070009000,1.477200627326965,L, + 101994432250,1.493816971778870,L, + 103918855500,1.506080269813538,L, + 105843278750,-0.513281345367432,L, + 107767702000,-0.026323318481445,L, + 109692125250,-0.023520112037659,L, + 111616548500,-0.020761728286743,L, + 113540971750,-0.018049716949463,L, + 115465395000,-0.015385389328003,L, + 117389818250,-0.012770771980286,L, + 119314241500,-0.010207056999207,L, + 121238664750,-0.007696509361267,L, + 123163088000,-0.005240678787231,L, + 125087511250,-0.002842068672180,L, + 127011934500,-0.000502347946167,L, + 128936357750,0.001775622367859,L, + 130860781000,0.003989696502686,L, + 132785204250,0.006136894226074,L, + 134709627500,0.008214592933655,L, + 136634050750,0.010219335556030,L, + 138558474000,0.012147784233093,L, + 140482897250,0.013996481895447,L, + 142407320500,0.015761375427246,L, + 144331743750,0.017437577247620,L, + 146256167000,0.019020915031433,L, + 148180590250,0.020506143569946,L, + 150105013500,0.021886944770813,L, + 152029436750,0.023157358169556,L, + 153953860000,0.024309873580933,L, + 155878283250,0.025336742401123,L, + 157802706500,0.026228904724121,L, + 159727129750,0.026976108551025,L, + 161651553000,0.027566790580750,L, + 163575976250,0.027987718582153,L, + 165500399500,0.028222918510437,L, + 167424822750,0.028254866600037,L, + 169349246000,0.028061866760254,L, + 171273669250,0.027618288993835,L, + 173198092500,0.026892662048340,L, + 175122515750,0.025846123695374,L, + 177046939000,0.024429559707642,L, + 178971362250,0.022578597068787,L, + 180895785500,0.020207047462463,L, + 182820208750,0.017192244529724,L, + 184744632000,0.013352155685425,L, + 186669055250,0.008388996124268,L, + 188593478500,0.001745462417603,L, + 190517901750,-0.007927536964417,L, + 192442325000,-0.026323318481445,L, + 194366748250,-0.023398280143738,L, + 196291171500,-0.020269870758057,L, + 198215594750,-0.016932487487793,L, + 200140018000,-0.013380646705627,L, + 202064441250,-0.009607911109924,L, + 203988864500,-0.005608320236206,L, + 205913287750,-0.001375317573547,L, + 207837711000,0.003097653388977,L, + 209762134250,0.007817983627319,L, + 211686557500,0.012792825698853,L, + 213610980750,0.018029689788818,L, + 215535404000,0.023536443710327,L, + 217459827250,0.029321432113647,L, + 219384250500,0.035392880439758,L, + 221308673750,0.041759848594666,L, + 223233097000,0.048431515693665,L, + 225157520250,0.055416941642761,L, + 227081943500,0.062726497650146,L, + 229006366750,0.070369839668274,L, + 230930790000,0.078357696533203,L, + 232855213250,0.086700916290283,L, + 234779636500,0.095410346984863,L, + 236704059750,0.104497671127319,L, + 238628483000,0.113973975181580,L, + 240552906250,0.123851418495178,L, + 242477329500,0.134141921997070,L, + 244401752750,0.144857168197632,L, + 246326176000,0.156009197235107,L, + 248250599250,0.167610049247742,L, + 250175022500,0.179670929908752,L, + 252099445750,0.192202806472778,L, + 254023869000,0.205216050148010,L, + 255948292250,0.218719601631165,L, + 257872715500,0.232721567153931,L, + 259797138750,0.247228026390076,L, + 261721562000,0.262243151664734,L, + 263645985250,0.277768015861511,L, + 265570408500,0.293801188468933,L, + 267494831750,0.310335993766785,L, + 269419255000,0.327362656593323,L, + 271343678250,0.344864249229431,L, + 273268101500,0.362818598747253,L, + 275192524750,0.381196618080139,L, + 277116948000,0.399960637092590,L, + 279041371250,0.419064402580261,L, + 280965794500,0.438453555107117,L, + 282890217750,0.458063721656799,L, + 284814641000,0.477822184562683,L, + 286739064250,0.497648119926453,L, + 288663487500,0.517452836036682,L, + 290587910750,0.537143349647522,L, + 292512334000,0.556622147560120,L, + 294436757250,0.575791001319885,L, + 296361180500,0.594553828239441,L, + 298285603750,0.612818360328674,L, + 300210027000,0.630498528480530,L, + 302134450250,0.647517800331116,L, + 304058873500,0.663808941841125,L, + 305983296750,0.679316878318787,L, + 307907720000,0.693997025489807,L, + 309832143250,0.707817673683167,L, + 311756566500,0.720757126808167,L, + 313680989750,0.732804179191589,L, + 315605413000,0.743955969810486,L, + 317529836250,0.754218459129333,L, + 319454259500,0.763603568077087,L, + 321378682750,0.772127509117126,L, + 323303106000,0.779812455177307,L, + 325227529250,0.786682009696960,L, + 327151952500,0.792763113975525,L, + 329076375750,0.798083901405334,L, + 331000799000,0.802672505378723,L, + 332925222250,0.806558966636658,L, + 334849645500,0.809771895408630,L, + 336774068750,0.812339663505554,L, + 338698492000,0.814290642738342,L, + 340622915250,0.815652251243591,L, + 342547338500,0.816451191902161,L, + 344471761750,0.816711544990540,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,72.193801790988744,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 11546539500,69.927674797975996,L, + 13470962750,69.549985827442356,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 28866348750,66.528480893362300,L, + 30790772000,66.150785092639481,L, + 32715195250,65.773102952294991,L, + 34639618500,65.395413981761337,L, + 36564041750,65.017725011227697,L, + 38488465000,64.640029210504863,L, + 40412888250,64.262347070160388,L, + 42337311500,63.884658099626733,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 48110581250,62.751598018214949,L, + 55808274250,61.240842136080339,L, + 57732697500,60.863146335357513,L, + 59657120750,60.485464195013030,L, + 65430390500,59.352397283412074,L, + 67354813750,58.974715143067591,L, + 69279237000,58.597026172533937,L, + 71203660250,58.219330371811118,L, + 73128083500,57.841648231466635,L, + 75052506750,57.463959260932981,L, + 76976930000,57.086273705493916,L, + 80825776500,56.330895764426607,L, + 82750199750,55.953210208987542,L, + 84674623000,55.575517823359306,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442450911758350,L, + 92372316000,54.064768771413867,L, + 94296739250,53.687076385785630,L, + 96221162500,53.309387415251976,L, + 98145585750,52.931701859812911,L, + 100070009000,52.554006059090085,L, + 101994432250,52.176323918745602,L, + 103918855500,51.798631533117366,L, + 105843278750,34.802668840238027,L, + 107767702000,34.802662010048856,L, + 109692125250,34.802662010048856,L, + 111616548500,34.802665425143438,L, + 113540971750,34.802665425143438,L, + 115465395000,34.802668840238027,L, + 117389818250,34.802665425143438,L, + 119314241500,34.802665425143438,L, + 121238664750,34.802662010048856,L, + 123163088000,34.802662010048856,L, + 125087511250,34.802668840238027,L, + 127011934500,34.802665425143438,L, + 128936357750,34.802665425143438,L, + 130860781000,34.802668840238027,L, + 134709627500,34.802662010048856,L, + 136634050750,34.802668840238027,L, + 138558474000,34.802668840238027,L, + 140482897250,34.802665425143438,L, + 144331743750,34.802665425143438,L, + 146256167000,34.802668840238027,L, + 148180590250,34.802668840238027,L, + 150105013500,34.802672255332610,L, + 152029436750,34.802665425143438,L, + 153953860000,34.802662010048856,L, + 155878283250,34.802665425143438,L, + 157802706500,34.802665425143438,L, + 159727129750,34.802662010048856,L, + 161651553000,34.802668840238027,L, + 163575976250,34.802665425143438,L, + 165500399500,34.802668840238027,L, + 167424822750,34.802665425143438,L, + 169349246000,34.802665425143438,L, + 171273669250,34.802662010048856,L, + 173198092500,34.802665425143438,L, + 177046939000,34.802665425143438,L, + 178971362250,34.802662010048856,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802662010048856,L, + 184744632000,34.802665425143438,L, + 186669055250,34.802665425143438,L, + 188593478500,34.802668840238027,L, + 190517901750,34.802668840238027,L, + 192442325000,34.802662010048856,L, + 194366748250,35.280751346286969,L, + 196291171500,35.758833852335904,L, + 200140018000,36.715012524812131,L, + 211686557500,39.583528051673284,L, + 213610980750,40.061610557722226,L, + 215535404000,40.539703309054921,L, + 217459827250,41.017785815103856,L, + 219384250500,41.495878566436552,L, + 221308673750,41.973957657390912,L, + 225157520250,42.930136329867132,L, + 229006366750,43.886308172154180,L, + 230930790000,44.364390678203122,L, + 232855213250,44.842480014441236,L, + 234779636500,45.320565935584760,L, + 236704059750,45.798655271822874,L, + 238628483000,46.276737777871809,L, + 240552906250,46.754823699015340,L, + 244401752750,47.711002371491560,L, + 246326176000,48.189088292635084,L, + 248250599250,48.667170798684026,L, + 250175022500,49.145260134922133,L, + 252099445750,49.623342640971075,L, + 254023869000,50.101431977209188,L, + 255948292250,50.579517898352712,L, + 257872715500,51.057600404401654,L, + 259797138750,51.535689740639761,L, + 261721562000,52.013775661783285,L, + 263645985250,52.491864998021398,L, + 265570408500,52.969947504070340,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926115931262807,L, + 271343678250,54.404201852406331,L, + 273268101500,54.882294603739027,L, + 275192524750,55.360380524882551,L, + 277116948000,55.838469861120664,L, + 280965794500,56.794641703407713,L, + 282890217750,57.272731039645826,L, + 284814641000,57.750813545694768,L, + 286739064250,58.228899466838293,L, + 288663487500,58.706978557792645,L, + 290587910750,59.185071309125341,L, + 294436757250,60.141243151412390,L, + 296361180500,60.619335902745085,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 304058873500,62.531679587319189,L, + 309832143250,63.965937350749769,L, + 311756566500,64.444030102082465,L, + 313680989750,64.922109193036817,L, + 327151952500,68.268710641041494,L, + 329076375750,68.746796562185025,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345072527856701 + KeyVer: 4005 + KeyCount: 155 + Key: + 0,-20.345072527856701,L, + 1924423250,-20.191412054551854,L, + 3848846500,-20.037753288794296,L, + 7697693000,-19.730425511995431,L, + 9622116250,-19.576763331143290,L, + 11546539500,-19.423102857838440,L, + 13470962750,-19.269440676986299,L, + 15395386000,-19.115780203681449,L, + 17319809250,-18.962116315282017,L, + 19244232500,-18.808450719335291,L, + 21168655750,-18.654793661125026,L, + 23093079000,-18.501128065178300,L, + 25017502250,-18.347467591873453,L, + 28866348750,-18.040143230169171,L, + 32715195250,-17.732822283559472,L, + 34639618500,-17.579156687612748,L, + 38488465000,-17.271832325908466,L, + 40412888250,-17.118173560150908,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810844075804749,L, + 46186158000,-16.657185310047193,L, + 50035004500,-16.349860948342911,L, + 51959427750,-16.196197059943479,L, + 53883851000,-16.042536586638629,L, + 57732697500,-15.735212224934347,L, + 59657120750,-15.581551751629497,L, + 61581544000,-15.427887863230065,L, + 63505967250,-15.274227389925215,L, + 65430390500,-15.120565209073074,L, + 67354813750,-14.966901320673641,L, + 69279237000,-14.813239139821500,L, + 71203660250,-14.659578666516651,L, + 73128083500,-14.505916485664510,L, + 75052506750,-14.352257719906955,L, + 76976930000,-14.198592977733874,L, + 78901353250,-14.044929943108087,L, + 82750199750,-13.737607288951098,L, + 84674623000,-13.583945108098957,L, + 86599046250,-13.430281219699523,L, + 88523469500,-13.276620746394675,L, + 90447892750,-13.122958565542534,L, + 92372316000,-12.969297238464039,L, + 94296739250,-12.815634203838250,L, + 96221162500,-12.661972022986109,L, + 98145585750,-12.508311549681261,L, + 100070009000,-12.354647661281827,L, + 101994432250,-12.200986334203334,L, + 103918855500,-12.047325860898484,L, + 105843278750,-5.132533698967659,L, + 109692125250,-5.132533698967659,L, + 111616548500,-5.132534125854483,L, + 113540971750,-5.132533698967659,L, + 115465395000,-5.132533698967659,L, + 117389818250,-5.132534125854483,L, + 119314241500,-5.132533698967659,L, + 121238664750,-5.132533698967659,L, + 123163088000,-5.132533272080837,L, + 127011934500,-5.132534125854483,L, + 128936357750,-5.132533698967659,L, + 130860781000,-5.132534125854483,L, + 132785204250,-5.132533272080837,L, + 134709627500,-5.132533698967659,L, + 138558474000,-5.132533698967659,L, + 140482897250,-5.132534125854483,L, + 142407320500,-5.132533698967659,L, + 144331743750,-5.132532845194014,L, + 146256167000,-5.132533698967659,L, + 150105013500,-5.132533698967659,L, + 152029436750,-5.132534979628129,L, + 153953860000,-5.132534125854483,L, + 155878283250,-5.132534125854483,L, + 157802706500,-5.132533698967659,L, + 159727129750,-5.132534125854483,L, + 161651553000,-5.132533272080837,L, + 163575976250,-5.132533698967659,L, + 167424822750,-5.132533698967659,L, + 169349246000,-5.132533272080837,L, + 173198092500,-5.132534125854483,L, + 175122515750,-5.132533698967659,L, + 177046939000,-5.132534552741306,L, + 178971362250,-5.132533698967659,L, + 180895785500,-5.132534125854483,L, + 182820208750,-5.132533698967659,L, + 184744632000,-5.132534125854483,L, + 186669055250,-5.132533272080837,L, + 188593478500,-5.132533698967659,L, + 192442325000,-5.132533698967659,L, + 194366748250,-5.327042118603710,L, + 196291171500,-5.521551818900232,L, + 198215594750,-5.716060665423106,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105077931582031,L, + 203988864500,-6.299587631878552,L, + 205913287750,-6.494096051514603,L, + 209762134250,-6.883114598333997,L, + 211686557500,-7.077623444856871,L, + 213610980750,-7.272131437606100,L, + 217459827250,-7.661149984425495,L, + 219384250500,-7.855657550287900,L, + 223233097000,-8.244677804654588,L, + 225157520250,-8.439185370516991,L, + 227081943500,-8.633693790153043,L, + 229006366750,-8.828203917336387,L, + 230930790000,-9.022713190746083,L, + 232855213250,-9.217220756608489,L, + 234779636500,-9.411730883791833,L, + 236704059750,-9.606240157201530,L, + 238628483000,-9.800746869290288,L, + 242477329500,-10.189765416109683,L, + 248250599250,-10.773290675017837,L, + 250175022500,-10.967800802201181,L, + 252099445750,-11.162308368063584,L, + 254023869000,-11.356818495246928,L, + 255948292250,-11.551326061109334,L, + 257872715500,-11.745837895839969,L, + 259797138750,-11.940344607928729,L, + 261721562000,-12.134855588885719,L, + 263645985250,-12.329361447200831,L, + 265570408500,-12.523871574384174,L, + 267494831750,-12.718379994020225,L, + 269419255000,-12.912889267429923,L, + 271343678250,-13.107399394613267,L, + 273268101500,-13.301906960475671,L, + 275192524750,-13.496417941432661,L, + 277116948000,-13.690925507295066,L, + 280965794500,-14.079944054114462,L, + 282890217750,-14.274449912429574,L, + 284814641000,-14.468958332065625,L, + 286739064250,-14.663468459248968,L, + 288663487500,-14.857980293979605,L, + 290587910750,-15.052488713615656,L, + 292512334000,-15.246995425704414,L, + 294436757250,-15.441505552887758,L, + 296361180500,-15.636012264976516,L, + 300210027000,-16.025032519343203,L, + 302134450250,-16.219540938979254,L, + 304058873500,-16.414047651068014,L, + 305983296750,-16.608562900893237,L, + 307907720000,-16.803069612981993,L, + 309832143250,-16.997574617523458,L, + 311756566500,-17.192086452254095,L, + 313680989750,-17.386594871890146,L, + 315605413000,-17.581101583978906,L, + 319454259500,-17.970118423251009,L, + 321378682750,-18.164630257981646,L, + 327151952500,-18.748155516889799,L, + 329076375750,-18.942665644073141,L, + 331000799000,-19.137172356161901,L, + 332925222250,-19.331684190892535,L, + 334849645500,-19.526189195434004,L, + 336774068750,-19.720697615070055,L, + 338698492000,-19.915209449800688,L, + 340622915250,-20.109716161889448,L, + 342547338500,-20.304227996620085,L, + 344471761750,-20.498734708708842,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551199015792633 + KeyVer: 4005 + KeyCount: 155 + Key: + 0,17.551199015792633,L, + 1924423250,17.638763748499361,L, + 3848846500,17.726326773658801,L, + 5773269750,17.813893213912824,L, + 7697693000,17.901457946619555,L, + 9622116250,17.989027801968160,L, + 11546539500,18.076592534674891,L, + 13470962750,18.164153852287036,L, + 15395386000,18.251720292541059,L, + 17319809250,18.339281610153204,L, + 19244232500,18.426849757954518,L, + 21168655750,18.514412783113958,L, + 23093079000,18.601980930915271,L, + 25017502250,18.689547371169294,L, + 26941925500,18.777105273686853,L, + 30790772000,18.952241569289484,L, + 32715195250,19.039808009543506,L, + 34639618500,19.127371034702946,L, + 36564041750,19.214937474956969,L, + 38488465000,19.302497085021820,L, + 40412888250,19.390063525275842,L, + 42337311500,19.477631673077159,L, + 44261734750,19.565198113331181,L, + 46186158000,19.652759430943327,L, + 48110581250,19.740324163650058,L, + 50035004500,19.827890603904081,L, + 51959427750,19.915460459252685,L, + 55808274250,20.090583094476976,L, + 57732697500,20.178151242278293,L, + 59657120750,20.265717682532316,L, + 61581544000,20.353282415239047,L, + 63505967250,20.440843732851189,L, + 65430390500,20.528410173105215,L, + 67354813750,20.615978320906528,L, + 75052506750,20.966237251733450,L, + 76976930000,21.053805399534763,L, + 78901353250,21.141366717146909,L, + 80825776500,21.228931449853640,L, + 82750199750,21.316497890107662,L, + 84674623000,21.404066037908976,L, + 86599046250,21.491629063068416,L, + 88523469500,21.579198918417024,L, + 90447892750,21.666760236029166,L, + 92372316000,21.754324968735897,L, + 94296739250,21.841886286348043,L, + 98145585750,22.017019166856088,L, + 101994432250,22.192148632269550,L, + 103918855500,22.279715072523572,L, + 105843278750,26.220139997157474,L, + 107767702000,26.220141704704769,L, + 109692125250,26.220146827346646,L, + 111616548500,26.220143412252060,L, + 113540971750,26.220146827346646,L, + 117389818250,26.220143412252060,L, + 119314241500,26.220139997157474,L, + 121238664750,26.220145119799355,L, + 123163088000,26.220136582062892,L, + 125087511250,26.220138289610183,L, + 127011934500,26.220143412252060,L, + 128936357750,26.220138289610183,L, + 132785204250,26.220141704704769,L, + 136634050750,26.220141704704769,L, + 138558474000,26.220143412252060,L, + 140482897250,26.220143412252060,L, + 142407320500,26.220146827346646,L, + 144331743750,26.220139997157474,L, + 148180590250,26.220143412252060,L, + 150105013500,26.220139997157474,L, + 152029436750,26.220145119799355,L, + 153953860000,26.220139997157474,L, + 155878283250,26.220146827346646,L, + 159727129750,26.220143412252060,L, + 163575976250,26.220143412252060,L, + 165500399500,26.220136582062892,L, + 167424822750,26.220141704704769,L, + 169349246000,26.220138289610183,L, + 171273669250,26.220143412252060,L, + 173198092500,26.220143412252060,L, + 177046939000,26.220136582062892,L, + 178971362250,26.220139997157474,L, + 182820208750,26.220139997157474,L, + 184744632000,26.220146827346646,L, + 186669055250,26.220139997157474,L, + 190517901750,26.220139997157474,L, + 192442325000,26.220141704704769,L, + 194366748250,26.109292857117499,L, + 196291171500,25.998455962361277,L, + 198215594750,25.887613944963174,L, + 200140018000,25.776775342659661,L, + 202064441250,25.665929910166973,L, + 203988864500,25.555091307863460,L, + 207837711000,25.333410688161845,L, + 209762134250,25.222563548121865,L, + 211686557500,25.111724945818352,L, + 213610980750,25.000884635967545,L, + 215535404000,24.890039203474860,L, + 217459827250,24.779197186076757,L, + 221308673750,24.557516566375142,L, + 223233097000,24.446669426335166,L, + 225157520250,24.335832531578944,L, + 227081943500,24.224987099086256,L, + 229006366750,24.114145081688157,L, + 230930790000,24.003308186931935,L, + 232855213250,23.892464461986542,L, + 234779636500,23.781619029493857,L, + 238628483000,23.559938409792242,L, + 240552906250,23.449094684846848,L, + 242477329500,23.338252667448749,L, + 244401752750,23.227414065145233,L, + 246326176000,23.116573755294425,L, + 248250599250,23.005728322801740,L, + 252099445750,22.784040872910957,L, + 254023869000,22.673203978154731,L, + 255948292250,22.562358545662047,L, + 257872715500,22.451518235811239,L, + 259797138750,22.340676218413140,L, + 261721562000,22.229837616109624,L, + 263645985250,22.118992183616939,L, + 265570408500,22.008151873766131,L, + 269419255000,21.786467838969930,L, + 271343678250,21.675629236666417,L, + 273268101500,21.564785511721023,L, + 277116948000,21.343101476924822,L, + 279041371250,21.232262874621309,L, + 280965794500,21.121419149675916,L, + 282890217750,21.010572009635936,L, + 284814641000,20.899729992237837,L, + 286739064250,20.788893097481616,L, + 288663487500,20.678052787630808,L, + 290587910750,20.567209062685414,L, + 292512334000,20.456370460381901,L, + 294436757250,20.345519905247336,L, + 298285603750,20.123839285545721,L, + 300210027000,20.012997268147622,L, + 302134450250,19.902156958296814,L, + 305983296750,19.680472923500613,L, + 307907720000,19.569629198555219,L, + 309832143250,19.458787181157120,L, + 311756566500,19.347940041117141,L, + 313680989750,19.237106561455505,L, + 315605413000,19.126261128962820,L, + 317529836250,19.015422526659304,L, + 319454259500,18.904577094166619,L, + 321378682750,18.793738491863106,L, + 323303106000,18.682896474465004,L, + 325227529250,18.572052749519610,L, + 327151952500,18.461212439668802,L, + 329076375750,18.350367007176118,L, + 331000799000,18.239526697325310,L, + 332925222250,18.128682972379920,L, + 334849645500,18.017844370076403,L, + 336774068750,17.907000645131010,L, + 338698492000,17.796162042827497,L, + 340622915250,17.685316610334809,L, + 344471761750,17.463635990633193,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388303279877 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.872388303279877,L, + 3848846500,0.843034446239471,L, + 5773269750,0.828357636928558,L, + 7697693000,0.813680768013000,L, + 9622116250,0.799003958702087,L, + 13470962750,0.769650220870972,L, + 15395386000,0.754973411560059,L, + 17319809250,0.740296483039856,L, + 19244232500,0.725619673728943,L, + 21168655750,0.710942685604095,L, + 23093079000,0.696265935897827,L, + 25017502250,0.681589007377625,L, + 28866348750,0.652235269546509,L, + 30790772000,0.637558460235596,L, + 32715195250,0.622881531715393,L, + 34639618500,0.608204782009125,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578851044178009,L, + 40412888250,0.564174115657806,L, + 42337311500,0.549497246742249,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143508911133,L, + 48110581250,0.505466759204865,L, + 50035004500,0.490789771080017,L, + 51959427750,0.476112961769104,L, + 57732697500,0.432082355022430,L, + 59657120750,0.417405456304550,L, + 63505967250,0.388051778078079,L, + 65430390500,0.373374879360199,L, + 71203660250,0.329344362020493,L, + 73128083500,0.314667403697968,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636886358261,L, + 80825776500,0.255959987640381,L, + 82750199750,0.241283133625984,L, + 84674623000,0.226606249809265,L, + 86599046250,0.211929395794868,L, + 88523469500,0.197252511978149,L, + 90447892750,0.182575702667236,L, + 94296739250,0.153221964836121,L, + 96221162500,0.138545110821724,L, + 98145585750,0.123868234455585,L, + 100070009000,0.109191313385963,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837590456009,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 109692125250,0.152782812714577,L, + 111616548500,0.149145483970642,L, + 117389818250,0.138233542442322,L, + 119314241500,0.134596243500710,L, + 121238664750,0.130958914756775,L, + 123163088000,0.127321615815163,L, + 127011934500,0.120046973228455,L, + 128936357750,0.116409674286842,L, + 130860781000,0.112772352993488,L, + 132785204250,0.109135054051876,L, + 134709627500,0.105497747659683,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 140482897250,0.094585791230202,L, + 144331743750,0.087311163544655,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036543309689,L, + 152029436750,0.072761900722980,L, + 153953860000,0.069124594330788,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849981546402,L, + 159727129750,0.058212660253048,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300722450018,L, + 169349246000,0.040026094764471,L, + 175122515750,0.029114142060280,L, + 177046939000,0.025476828217506,L, + 178971362250,0.021839516237378,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564888551831,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290274370462,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 194366748250,0.165668800473213,L, + 196291171500,0.174917474389076,L, + 198215594750,0.184166118502617,L, + 200140018000,0.193414792418480,L, + 202064441250,0.202663481235504,L, + 203988864500,0.211912140250206,L, + 207837711000,0.230409488081932,L, + 209762134250,0.239658132195473,L, + 211686557500,0.248906835913658,L, + 213610980750,0.258155494928360,L, + 215535404000,0.267404198646545,L, + 217459827250,0.276652872562408,L, + 219384250500,0.285901486873627,L, + 221308673750,0.295150130987167,L, + 225157520250,0.313647538423538,L, + 227081943500,0.322896182537079,L, + 229006366750,0.332144856452942,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642204284668,L, + 234779636500,0.359890848398209,L, + 236704059750,0.369139522314072,L, + 240552906250,0.387636929750443,L, + 242477329500,0.396885573863983,L, + 246326176000,0.415382921695709,L, + 248250599250,0.424631565809250,L, + 259797138750,0.480123609304428,L, + 261721562000,0.489372253417969,L, + 263645985250,0.498620927333832,L, + 265570408500,0.507869660854340,L, + 267494831750,0.517118275165558,L, + 273268101500,0.544864296913147,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361644744873,L, + 279041371250,0.572610259056091,L, + 282890217750,0.591107726097107,L, + 284814641000,0.600356400012970,L, + 286739064250,0.609605014324188,L, + 288663487500,0.618853688240051,L, + 290587910750,0.628102302551270,L, + 292512334000,0.637351036071777,L, + 294436757250,0.646599709987640,L, + 296361180500,0.655848443508148,L, + 298285603750,0.665096998214722,L, + 300210027000,0.674345731735229,L, + 302134450250,0.683594346046448,L, + 309832143250,0.720589041709900,L, + 311756566500,0.729837834835052,L, + 313680989750,0.739086389541626,L, + 315605413000,0.748335123062134,L, + 317529836250,0.757583796977997,L, + 319454259500,0.766832351684570,L, + 321378682750,0.776081085205078,L, + 323303106000,0.785329759120941,L, + 325227529250,0.794578373432159,L, + 329076375750,0.813075721263885,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573069095612,L, + 334849645500,0.840821862220764,L, + 336774068750,0.850070476531982,L, + 338698492000,0.859319031238556,L, + 340622915250,0.868567824363708,L, + 342547338500,0.877816379070282,L, + 344471761750,0.887065172195435,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175128459930 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,0.652175128459930,L, + 3848846500,0.630230963230133,L, + 5773269750,0.619258940219879,L, + 7697693000,0.608286976814270,L, + 9622116250,0.597314834594727,L, + 11546539500,0.586342811584473,L, + 13470962750,0.575370848178864,L, + 17319809250,0.553426682949066,L, + 21168655750,0.531482636928558,L, + 23093079000,0.520510554313660,L, + 25017502250,0.509538590908051,L, + 26941925500,0.498566567897797,L, + 28866348750,0.487594515085220,L, + 30790772000,0.476622492074966,L, + 32715195250,0.465650349855423,L, + 34639618500,0.454678386449814,L, + 36564041750,0.443706333637238,L, + 40412888250,0.421762287616730,L, + 42337311500,0.410790205001831,L, + 44261734750,0.399818211793900,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 50035004500,0.366902083158493,L, + 53883851000,0.344957977533340,L, + 55808274250,0.333985954523087,L, + 57732697500,0.323013901710510,L, + 59657120750,0.312041878700256,L, + 61581544000,0.301069825887680,L, + 63505967250,0.290097802877426,L, + 65430390500,0.279125720262527,L, + 67354813750,0.268153727054596,L, + 69279237000,0.257181674242020,L, + 71203660250,0.246209636330605,L, + 73128083500,0.235237613320351,L, + 75052506750,0.224265560507774,L, + 76976930000,0.213293552398682,L, + 80825776500,0.191349446773529,L, + 82750199750,0.180377423763275,L, + 86599046250,0.158433318138123,L, + 90447892750,0.136489272117615,L, + 92372316000,0.125517189502716,L, + 94296739250,0.114545173943043,L, + 96221162500,0.103573143482208,L, + 98145585750,0.092601120471954,L, + 100070009000,0.081629037857056,L, + 101994432250,0.070657081902027,L, + 103918855500,0.059684962034225,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420126557350,L, + 109692125250,0.152782812714577,L, + 111616548500,0.149145483970642,L, + 115465395000,0.141870856285095,L, + 117389818250,0.138233557343483,L, + 119314241500,0.134596228599548,L, + 121238664750,0.130958929657936,L, + 123163088000,0.127321615815163,L, + 127011934500,0.120046973228455,L, + 130860781000,0.112772360444069,L, + 132785204250,0.109135046601295,L, + 134709627500,0.105497747659683,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223105072975,L, + 140482897250,0.094585798680782,L, + 142407320500,0.090948469936848,L, + 144331743750,0.087311163544655,L, + 150105013500,0.076399222016335,L, + 152029436750,0.072761915624142,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849977821112,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300722450018,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 171273669250,0.036388780921698,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114143922925,L, + 178971362250,0.021839516237378,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564887620509,L, + 184744632000,0.010927573777735,L, + 186669055250,0.007290274370462,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420126557350,L, + 194366748250,0.162834361195564,L, + 196291171500,0.169248655438423,L, + 198215594750,0.175662904977798,L, + 200140018000,0.182077169418335,L, + 202064441250,0.188491448760033,L, + 203988864500,0.194905683398247,L, + 205913287750,0.201319947838783,L, + 207837711000,0.207734242081642,L, + 209762134250,0.214148521423340,L, + 213610980750,0.226977020502090,L, + 215535404000,0.233391314744949,L, + 217459827250,0.239805579185486,L, + 219384250500,0.246219828724861,L, + 221308673750,0.252634108066559,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 229006366750,0.278291165828705,L, + 230930790000,0.284705460071564,L, + 232855213250,0.291119664907455,L, + 234779636500,0.297533899545670,L, + 236704059750,0.303948253393173,L, + 238628483000,0.310362488031387,L, + 240552906250,0.316776782274246,L, + 242477329500,0.323191046714783,L, + 246326176000,0.336019515991211,L, + 248250599250,0.342433810234070,L, + 250175022500,0.348848074674606,L, + 252099445750,0.355262309312820,L, + 254023869000,0.361676603555679,L, + 255948292250,0.368090867996216,L, + 257872715500,0.374505162239075,L, + 259797138750,0.380919396877289,L, + 261721562000,0.387333691120148,L, + 263645985250,0.393747925758362,L, + 267494831750,0.406576454639435,L, + 269419255000,0.412990778684616,L, + 271343678250,0.419405013322830,L, + 273268101500,0.425819277763367,L, + 275192524750,0.432233572006226,L, + 277116948000,0.438647776842117,L, + 279041371250,0.445062041282654,L, + 280965794500,0.451476365327835,L, + 284814641000,0.464304834604263,L, + 286739064250,0.470719128847122,L, + 296361180500,0.502790451049805,L, + 298285603750,0.509204745292664,L, + 302134450250,0.522033214569092,L, + 305983296750,0.534861803054810,L, + 307907720000,0.541275978088379,L, + 313680989750,0.560518860816956,L, + 315605413000,0.566933035850525,L, + 323303106000,0.592590212821960,L, + 325227529250,0.599004387855530,L, + 327151952500,0.605418682098389,L, + 329076375750,0.611833035945892,L, + 334849645500,0.631075739860535,L, + 336774068750,0.637490034103394,L, + 338698492000,0.643904268741608,L, + 342547338500,0.656732857227325,L, + 344471761750,0.663147032260895,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695365428925 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.869695365428925,L, + 3848846500,0.840432226657867,L, + 5773269750,0.825800836086273,L, + 7697693000,0.811169147491455,L, + 9622116250,0.796537578105927,L, + 11546539500,0.781906068325043,L, + 13470962750,0.767274439334869,L, + 15395386000,0.752642929553986,L, + 17319809250,0.738011360168457,L, + 19244232500,0.723379909992218,L, + 21168655750,0.708748221397400,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485142230988,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 30790772000,0.635590374469757,L, + 32715195250,0.620958924293518,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064096927643,L, + 40412888250,0.562432646751404,L, + 46186158000,0.518537938594818,L, + 48110581250,0.503906309604645,L, + 50035004500,0.489274799823761,L, + 53883851000,0.460011720657349,L, + 55808274250,0.445380151271820,L, + 57732697500,0.430748552083969,L, + 59657120750,0.416117012500763,L, + 61581544000,0.401485443115234,L, + 67354813750,0.357590824365616,L, + 69279237000,0.342959254980087,L, + 71203660250,0.328327625989914,L, + 73128083500,0.313696086406708,L, + 75052506750,0.299064576625824,L, + 76976930000,0.284433037042618,L, + 78901353250,0.269801378250122,L, + 80825776500,0.255169898271561,L, + 82750199750,0.240538299083710,L, + 84674623000,0.225906744599342,L, + 86599046250,0.211275234818459,L, + 88523469500,0.196643650531769,L, + 90447892750,0.182012021541595,L, + 92372316000,0.167380511760712,L, + 94296739250,0.152748957276344,L, + 96221162500,0.138117447495461,L, + 98145585750,0.123485870659351,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222724437714,L, + 103918855500,0.079591155052185,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420141458511,L, + 109692125250,0.152782812714577,L, + 119314241500,0.134596243500710,L, + 121238664750,0.130958944559097,L, + 123163088000,0.127321630716324,L, + 127011934500,0.120046988129616,L, + 128936357750,0.116409681737423,L, + 130860781000,0.112772367894650,L, + 132785204250,0.109135046601295,L, + 134709627500,0.105497732758522,L, + 136634050750,0.101860426366329,L, + 142407320500,0.090948484838009,L, + 144331743750,0.087311178445816,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487295389175,L, + 159727129750,0.058212660253048,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114156961441,L, + 180895785500,0.018202215433121,L, + 182820208750,0.014564902521670,L, + 184744632000,0.010927588678896,L, + 186669055250,0.007290274370462,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420141458511,L, + 196291171500,0.174848139286041,L, + 198215594750,0.184062153100967,L, + 200140018000,0.193276181817055,L, + 203988864500,0.211704179644585,L, + 205913287750,0.220918208360672,L, + 207837711000,0.230132207274437,L, + 209762134250,0.239346221089363,L, + 211686557500,0.248560220003128,L, + 213610980750,0.257774233818054,L, + 215535404000,0.266988277435303,L, + 217459827250,0.276202261447906,L, + 221308673750,0.294630289077759,L, + 223233097000,0.303844273090363,L, + 225157520250,0.313058316707611,L, + 227081943500,0.322272300720215,L, + 229006366750,0.331486344337463,L, + 230930790000,0.340700328350067,L, + 232855213250,0.349914342164993,L, + 234779636500,0.359128326177597,L, + 236704059750,0.368342399597168,L, + 238628483000,0.377556383609772,L, + 240552906250,0.386770337820053,L, + 242477329500,0.395984470844269,L, + 244401752750,0.405198395252228,L, + 246326176000,0.414412468671799,L, + 248250599250,0.423626422882080,L, + 250175022500,0.432840406894684,L, + 252099445750,0.442054450511932,L, + 254023869000,0.451268434524536,L, + 255948292250,0.460482478141785,L, + 261721562000,0.488124519586563,L, + 263645985250,0.497338563203812,L, + 265570408500,0.506552577018738,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408632278442,L, + 275192524750,0.552622556686401,L, + 277116948000,0.561836659908295,L, + 279041371250,0.571050584316254,L, + 280965794500,0.580264627933502,L, + 282890217750,0.589478611946106,L, + 284814641000,0.598692655563354,L, + 288663487500,0.617120623588562,L, + 290587910750,0.626334667205811,L, + 292512334000,0.635548651218414,L, + 294436757250,0.644762694835663,L, + 298285603750,0.663190662860870,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618690490723,L, + 304058873500,0.690832734107971,L, + 305983296750,0.700046718120575,L, + 307907720000,0.709260761737823,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688789367676,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116816997528,L, + 319454259500,0.764544785022736,L, + 321378682750,0.773758828639984,L, + 323303106000,0.782972812652588,L, + 325227529250,0.792186915874481,L, + 327151952500,0.801400840282440,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042911529541,L, + 334849645500,0.838256835937500,L, + 340622915250,0.865898966789246,L, + 344471761750,0.884326934814453,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_071" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210879802704 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,-0.014210879802704,L, + 1924423250,-0.012301683425903,L, + 3848846500,-0.010392785072327,L, + 5773269750,-0.008483648300171,L, + 7697693000,-0.006574749946594,L, + 9622116250,-0.004665613174438,L, + 11546539500,-0.002756714820862,L, + 13470962750,-0.000847578048706,L, + 15395386000,0.001061379909515,L, + 17319809250,0.002970516681671,L, + 19244232500,0.004879415035248,L, + 21168655750,0.006788551807404,L, + 23093079000,0.008697450160980,L, + 25017502250,0.010606110095978,L, + 26941925500,0.012515246868134,L, + 28866348750,0.014424145221710,L, + 30790772000,0.016333341598511,L, + 32715195250,0.018242239952087,L, + 34639618500,0.020151376724243,L, + 36564041750,0.022060275077820,L, + 38488465000,0.023969352245331,L, + 40412888250,0.025878310203552,L, + 42337311500,0.027787387371063,L, + 44261734750,0.029696404933929,L, + 46186158000,0.031605482101440,L, + 48110581250,0.033514440059662,L, + 50035004500,0.035423517227173,L, + 51959427750,0.037332475185394,L, + 53883851000,0.039241611957550,L, + 55808274250,0.041150510311127,L, + 57732697500,0.043059647083282,L, + 59657120750,0.044968307018280,L, + 61581544000,0.046877205371857,L, + 63505967250,0.048786342144012,L, + 65430390500,0.050695240497589,L, + 67354813750,0.052604436874390,L, + 69279237000,0.054513275623322,L, + 71203660250,0.056422412395477,L, + 73128083500,0.058331370353699,L, + 75052506750,0.060240507125854,L, + 76976930000,0.062149405479431,L, + 78901353250,0.064058542251587,L, + 80825776500,0.065967440605164,L, + 82750199750,0.067876577377319,L, + 84674623000,0.069785475730896,L, + 86599046250,0.071694672107697,L, + 88523469500,0.073603570461273,L, + 90447892750,0.075512707233429,L, + 92372316000,0.077421605587006,L, + 94296739250,0.079330265522003,L, + 96221162500,0.081239402294159,L, + 98145585750,0.081239640712738,L, + 100070009000,0.081239342689514,L, + 103918855500,0.081239819526672,L, + 105843278750,0.081239521503448,L, + 107767702000,0.081239759922028,L, + 109692125250,0.081239461898804,L, + 111616548500,0.081239700317383,L, + 113540971750,0.081239402294159,L, + 115465395000,0.081239581108093,L, + 117389818250,0.081239581108093,L, + 119314241500,0.081239521503448,L, + 121238664750,0.081239521503448,L, + 123163088000,0.081239461898804,L, + 125087511250,0.081239461898804,L, + 127011934500,0.081239700317383,L, + 128936357750,0.081239402294159,L, + 130860781000,0.081239640712738,L, + 132785204250,0.081239819526672,L, + 134709627500,0.081239581108093,L, + 136634050750,0.081239759922028,L, + 138558474000,0.081239461898804,L, + 140482897250,0.081239700317383,L, + 142407320500,0.081239402294159,L, + 144331743750,0.081239640712738,L, + 146256167000,0.081239342689514,L, + 148180590250,0.081239581108093,L, + 150105013500,0.081239581108093,L, + 152029436750,0.081239521503448,L, + 153953860000,0.081066429615021,L, + 155878283250,0.080893039703369,L, + 157802706500,0.080719947814941,L, + 161651553000,0.080373287200928,L, + 165500399500,0.080027103424072,L, + 167424822750,0.079853713512421,L, + 169349246000,0.079680383205414,L, + 173198092500,0.079334199428558,L, + 175122515750,0.079160630702972,L, + 178971362250,0.078814446926117,L, + 180895785500,0.078641295433044,L, + 182820208750,0.078467726707458,L, + 188593478500,0.077948451042175,L, + 190517901750,0.077774882316589,L, + 192442325000,0.077601730823517,L, + 194366748250,0.077428638935089,L, + 196291171500,0.077255070209503,L, + 202064441250,0.076735794544220,L, + 203988864500,0.076562225818634,L, + 205913287750,0.076389074325562,L, + 207837711000,0.076215982437134,L, + 209762134250,0.072737872600555,L, + 211686557500,0.069260060787201,L, + 213610980750,0.065782010555267,L, + 215535404000,0.062304198741913,L, + 217459827250,0.058826088905334,L, + 219384250500,0.055348277091980,L, + 221308673750,0.051870226860046,L, + 223233097000,0.048392415046692,L, + 225157520250,0.044914364814758,L, + 227081943500,0.041436433792114,L, + 229006366750,0.037958383560181,L, + 230930790000,0.034480571746826,L, + 232855213250,0.031002521514893,L, + 236704059750,0.024046897888184,L, + 238628483000,0.020568788051605,L, + 240552906250,0.017090976238251,L, + 242477329500,0.013612866401672,L, + 244401752750,0.010135054588318,L, + 246326176000,0.006657004356384,L, + 248250599250,0.003179132938385,L, + 250175022500,-0.000298917293549,L, + 252099445750,-0.003776729106903,L, + 254023869000,-0.007254779338837,L, + 255948292250,-0.010732591152191,L, + 257872715500,-0.014210641384125,L, + 259797138750,-0.014210879802704,L, + 344471761750,-0.014210879802704,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013481974601746 + KeyVer: 4005 + KeyCount: 113 + Key: + 0,0.013481974601746,L, + 1924423250,0.014848947525024,L, + 3848846500,0.016215801239014,L, + 5773269750,0.017582774162292,L, + 7697693000,0.018949508666992,L, + 9622116250,0.020316481590271,L, + 11546539500,0.021683335304260,L, + 13470962750,0.023050308227539,L, + 15395386000,0.024417161941528,L, + 17319809250,0.025784134864807,L, + 19244232500,0.027150988578796,L, + 21168655750,0.028517961502075,L, + 23093079000,0.029884815216064,L, + 25017502250,0.031252026557922,L, + 26941925500,0.032618880271912,L, + 28866348750,0.033985853195190,L, + 36564041750,0.039453506469727,L, + 38488465000,0.040820360183716,L, + 40412888250,0.042187333106995,L, + 46186158000,0.046287894248962,L, + 48110581250,0.047654867172241,L, + 50035004500,0.049021720886230,L, + 53883851000,0.051755666732788,L, + 55808274250,0.053122580051422,L, + 57732697500,0.054489374160767,L, + 59657120750,0.055856525897980,L, + 65430390500,0.059957265853882,L, + 67354813750,0.061324298381805,L, + 69279237000,0.062691092491150,L, + 71203660250,0.064058065414429,L, + 78901353250,0.069525718688965,L, + 80825776500,0.070892512798309,L, + 92372316000,0.079093992710114,L, + 94296739250,0.080461144447327,L, + 96221162500,0.081827938556671,L, + 98145585750,0.078541994094849,L, + 100070009000,0.075255990028381,L, + 101994432250,0.071969807147980,L, + 103918855500,0.068683505058289,L, + 105843278750,0.065397739410400,L, + 107767702000,0.062111556529999,L, + 109692125250,0.058825552463531,L, + 111616548500,0.055539369583130,L, + 113540971750,0.052253544330597,L, + 115465395000,0.048967301845551,L, + 117389818250,0.045681357383728,L, + 119314241500,0.042395114898682,L, + 121238664750,0.039109170436859,L, + 123163088000,0.035823106765747,L, + 125087511250,0.032537162303925,L, + 127011934500,0.029250919818878,L, + 128936357750,0.025964915752411,L, + 130860781000,0.022678971290588,L, + 132785204250,0.019392728805542,L, + 134709627500,0.016106784343719,L, + 136634050750,0.012820482254028,L, + 138558474000,0.009534478187561,L, + 140482897250,0.006248533725739,L, + 142407320500,0.002962529659271,L, + 144331743750,-0.000323653221130,L, + 146256167000,-0.003609716892242,L, + 148180590250,-0.006895720958710,L, + 150105013500,-0.010181665420532,L, + 152029436750,-0.013467907905579,L, + 153953860000,-0.012368798255920,L, + 157802706500,-0.010170698165894,L, + 159727129750,-0.009071588516235,L, + 161651553000,-0.007972300052643,L, + 163575976250,-0.006873488426208,L, + 165500399500,-0.005774378776550,L, + 167424822750,-0.004675328731537,L, + 169349246000,-0.003576219081879,L, + 171273669250,-0.002477169036865,L, + 173198092500,-0.001378059387207,L, + 175122515750,-0.000278770923615,L, + 177046939000,0.000820100307465,L, + 178971362250,0.001919150352478,L, + 180895785500,0.003018260002136,L, + 182820208750,0.004117310047150,L, + 184744632000,0.005216419696808,L, + 186669055250,0.006315469741821,L, + 188593478500,0.007414579391479,L, + 190517901750,0.008513629436493,L, + 192442325000,0.009612739086151,L, + 194366748250,0.010711789131165,L, + 196291171500,0.011810898780823,L, + 200140018000,0.014008998870850,L, + 202064441250,0.015108108520508,L, + 203988864500,0.016207158565521,L, + 205913287750,0.017306268215179,L, + 207837711000,0.018405318260193,L, + 209762134250,0.019504547119141,L, + 211686557500,0.020603299140930,L, + 213610980750,0.021702587604523,L, + 217459827250,0.023900687694550,L, + 219384250500,0.024999678134918,L, + 221308673750,0.026098966598511,L, + 223233097000,0.027198016643524,L, + 227081943500,0.029395997524261,L, + 229006366750,0.030495226383209,L, + 230930790000,0.031594157218933,L, + 232855213250,0.032693445682526,L, + 234779636500,0.033792376518250,L, + 236704059750,0.034891366958618,L, + 238628483000,0.035990536212921,L, + 244401752750,0.039287686347961,L, + 250175022500,0.042585015296936,L, + 252099445750,0.043684005737305,L, + 254023869000,0.044783234596252,L, + 255948292250,0.045882105827332,L, + 257872715500,0.046981334686279,L, + 259797138750,0.013481974601746,L, + 344471761750,0.013481974601746,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323318481445 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323318481445,L, + 1924423250,-0.023415446281433,L, + 3848846500,-0.020337820053101,L, + 5773269750,-0.017082929611206,L, + 7697693000,-0.013643383979797,L, + 9622116250,-0.010010719299316,L, + 11546539500,-0.006176233291626,L, + 13470962750,-0.002130270004272,L, + 15395386000,0.002137184143066,L, + 17319809250,0.006636977195740,L, + 19244232500,0.011381030082703,L, + 21168655750,0.016381859779358,L, + 23093079000,0.021652936935425,L, + 25017502250,0.027209162712097,L, + 26941925500,0.033066391944885,L, + 28866348750,0.039241671562195,L, + 30790772000,0.045753955841064,L, + 32715195250,0.052623271942139,L, + 34639618500,0.059871554374695,L, + 36564041750,0.067523121833801,L, + 38488465000,0.075603842735291,L, + 40412888250,0.084141850471497,L, + 42337311500,0.093168020248413,L, + 44261734750,0.102715849876404,L, + 46186158000,0.112821340560913,L, + 48110581250,0.123523473739624,L, + 50035004500,0.134863972663879,L, + 51959427750,0.146887063980103,L, + 53883851000,0.159638643264771,L, + 55808274250,0.173165798187256,L, + 57732697500,0.187515377998352,L, + 59657120750,0.202729940414429,L, + 61581544000,0.218845844268799,L, + 63505967250,0.235886693000793,L, + 65430390500,0.253855586051941,L, + 67354813750,0.272726655006409,L, + 69279237000,0.292433857917786,L, + 71203660250,0.312859654426575,L, + 73128083500,0.333829045295715,L, + 75052506750,0.355108857154846,L, + 76976930000,0.376418948173523,L, + 78901353250,0.397454857826233,L, + 80825776500,0.417916893959045,L, + 82750199750,0.437542796134949,L, + 84674623000,0.456126332283020,L, + 86599046250,0.473530411720276,L, + 88523469500,0.489682316780090,L, + 90447892750,0.504563689231873,L, + 92372316000,0.518197655677795,L, + 94296739250,0.530634522438049,L, + 96221162500,0.541941761970520,L, + 98145585750,0.552702546119690,L, + 100070009000,0.563450217247009,L, + 101994432250,0.574181437492371,L, + 103918855500,0.584893345832825,L, + 105843278750,0.595581650733948,L, + 107767702000,0.606242775917053,L, + 109692125250,0.616872429847717,L, + 111616548500,0.627465605735779,L, + 113540971750,0.638018488883972,L, + 115465395000,0.648525357246399,L, + 117389818250,0.658982396125793,L, + 119314241500,0.669385075569153,L, + 121238664750,0.679729580879211,L, + 123163088000,0.690011858940125,L, + 125087511250,0.700230240821838,L, + 127011934500,0.710382342338562,L, + 128936357750,0.720466971397400,L, + 130860781000,0.730484366416931,L, + 132785204250,0.740434765815735,L, + 134709627500,0.750320076942444,L, + 136634050750,0.760141968727112,L, + 138558474000,0.769903063774109,L, + 140482897250,0.779606699943542,L, + 142407320500,0.789255976676941,L, + 144331743750,0.798854231834412,L, + 146256167000,0.808404803276062,L, + 148180590250,0.817911505699158,L, + 150105013500,0.827377676963806,L, + 152029436750,0.836806416511536,L, + 153953860000,0.846144318580627,L, + 155878283250,0.855336070060730,L, + 157802706500,0.864380955696106,L, + 159727129750,0.873280405998230,L, + 161651553000,0.882037281990051,L, + 163575976250,0.890657067298889,L, + 165500399500,0.899145960807800,L, + 167424822750,0.907514214515686,L, + 169349246000,0.915773510932922,L, + 171273669250,0.923939108848572,L, + 173198092500,0.932028651237488,L, + 175122515750,0.940061450004578,L, + 177046939000,0.948060154914856,L, + 178971362250,0.956047892570496,L, + 180895785500,0.964048981666565,L, + 182820208750,0.972087979316711,L, + 184744632000,0.980187535285950,L, + 186669055250,0.988371253013611,L, + 188593478500,0.996658444404602,L, + 190517901750,1.005066990852356,L, + 192442325000,1.013611674308777,L, + 194366748250,1.022304415702820,L, + 196291171500,1.031154751777649,L, + 198215594750,1.040169596672058,L, + 200140018000,1.049352288246155,L, + 202064441250,1.058704972267151,L, + 203988864500,1.068227887153625,L, + 205913287750,1.077920079231262,L, + 207837711000,1.087777972221375,L, + 209762134250,1.097880959510803,L, + 211686557500,1.108280301094055,L, + 213610980750,1.118937849998474,L, + 215535404000,1.129821896553040,L, + 217459827250,1.140905499458313,L, + 219384250500,1.152165532112122,L, + 221308673750,1.163581252098083,L, + 223233097000,1.175134539604187,L, + 225157520250,1.186808466911316,L, + 227081943500,1.198587536811829,L, + 229006366750,1.210457444190979,L, + 230930790000,1.222403168678284,L, + 232855213250,1.234411120414734,L, + 234779636500,1.246466040611267,L, + 236704059750,1.258552908897400,L, + 238628483000,1.270654559135437,L, + 240552906250,1.282752156257629,L, + 242477329500,1.294822335243225,L, + 244401752750,1.306837677955627,L, + 246326176000,1.318761229515076,L, + 248250599250,1.330542922019958,L, + 250175022500,1.342108845710754,L, + 252099445750,1.353339791297913,L, + 254023869000,1.364012122154236,L, + 255948292250,1.373597502708435,L, + 257872715500,1.379659295082092,L, + 259797138750,-0.513281345367432,L, + 261721562000,-0.026323318481445,L, + 344471761750,-0.026323318481445,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802662010048856 + KeyVer: 4005 + KeyCount: 119 + Key: + 0,34.802662010048856,L, + 1924423250,35.280751346286969,L, + 5773269750,36.236923188574018,L, + 9622116250,37.193101861050238,L, + 11546539500,37.671187782193762,L, + 13470962750,38.149270288242704,L, + 15395386000,38.627349379197064,L, + 17319809250,39.105445545624342,L, + 19244232500,39.583524636578694,L, + 21168655750,40.061613972816808,L, + 23093079000,40.539699893960332,L, + 25017502250,41.017792645293028,L, + 26941925500,41.495878566436552,L, + 28866348750,41.973957657390912,L, + 30790772000,42.452043578534436,L, + 32715195250,42.930139744961714,L, + 34639618500,43.408222251010656,L, + 36564041750,43.886311587248770,L, + 40412888250,44.842476599346647,L, + 42337311500,45.320572765773932,L, + 44261734750,45.798651856728284,L, + 46186158000,46.276737777871809,L, + 48110581250,46.754820283920751,L, + 50035004500,47.232913035253446,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189084877540495,L, + 55808274250,48.667174213778608,L, + 57732697500,49.145256719827550,L, + 59657120750,49.623346056065657,L, + 61581544000,50.101431977209188,L, + 63505967250,50.579521313447295,L, + 65430390500,51.057603819496236,L, + 69279237000,52.013775661783285,L, + 71203660250,52.491864998021398,L, + 73128083500,52.969944088975751,L, + 75052506750,53.448030010119282,L, + 76976930000,53.926126176546560,L, + 78901353250,54.404205267500913,L, + 80825776500,54.882294603739027,L, + 82750199750,55.360380524882551,L, + 84674623000,55.838469861120664,L, + 86599046250,56.316552367169606,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750813545694768,L, + 94296739250,58.228906297027457,L, + 96221162500,58.706985387981817,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531679587319189,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683052739043305,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 188593478500,65.395413981761337,L, + 190517901750,65.017725011227697,L, + 192442325000,64.640029210504863,L, + 194366748250,64.262347070160388,L, + 196291171500,63.884658099626733,L, + 198215594750,63.506975959282251,L, + 217459827250,59.730086253945728,L, + 219384250500,59.352404113601246,L, + 230930790000,57.086270290399327,L, + 234779636500,56.330899179521197,L, + 236704059750,55.953206793892960,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442457741947514,L, + 246326176000,54.064768771413867,L, + 248250599250,53.687076385785630,L, + 250175022500,53.309387415251976,L, + 252099445750,52.931701859812911,L, + 254023869000,52.554006059090085,L, + 255948292250,52.176323918745602,L, + 257872715500,51.798631533117366,L, + 259797138750,34.802662010048856,L, + 261721562000,34.802662010048856,L, + 263645985250,34.802668840238027,L, + 265570408500,34.802662010048856,L, + 269419255000,34.802668840238027,L, + 271343678250,34.802668840238027,L, + 275192524750,34.802662010048856,L, + 277116948000,34.802662010048856,L, + 279041371250,34.802668840238027,L, + 280965794500,34.802665425143438,L, + 282890217750,34.802665425143438,L, + 284814641000,34.802668840238027,L, + 286739064250,34.802662010048856,L, + 288663487500,34.802665425143438,L, + 290587910750,34.802662010048856,L, + 294436757250,34.802668840238027,L, + 296361180500,34.802665425143438,L, + 298285603750,34.802668840238027,L, + 302134450250,34.802668840238027,L, + 304058873500,34.802672255332610,L, + 305983296750,34.802665425143438,L, + 307907720000,34.802662010048856,L, + 309832143250,34.802665425143438,L, + 311756566500,34.802665425143438,L, + 313680989750,34.802662010048856,L, + 315605413000,34.802668840238027,L, + 317529836250,34.802665425143438,L, + 319454259500,34.802668840238027,L, + 321378682750,34.802668840238027,L, + 323303106000,34.802662010048856,L, + 325227529250,34.802662010048856,L, + 327151952500,34.802668840238027,L, + 329076375750,34.802665425143438,L, + 334849645500,34.802665425143438,L, + 336774068750,34.802662010048856,L, + 338698492000,34.802665425143438,L, + 340622915250,34.802665425143438,L, + 342547338500,34.802668840238027,L, + 344471761750,34.802662010048856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132533698967659 + KeyVer: 4005 + KeyCount: 150 + Key: + 0,-5.132533698967659,L, + 1924423250,-5.327042118603710,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716059811649459,L, + 7697693000,-5.910570365719626,L, + 9622116250,-6.105077931582031,L, + 11546539500,-6.299587631878552,L, + 15395386000,-6.688605324924300,L, + 17319809250,-6.883114598333997,L, + 19244232500,-7.077622591083226,L, + 21168655750,-7.272131437606100,L, + 23093079000,-7.466640711015797,L, + 26941925500,-7.855657550287900,L, + 28866348750,-8.050167677471244,L, + 30790772000,-8.244676950880940,L, + 34639618500,-8.633693790153043,L, + 36564041750,-8.828203917336387,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219902834843,L, + 42337311500,-9.411730030018186,L, + 44261734750,-9.606238449654237,L, + 46186158000,-9.800747723063935,L, + 48110581250,-9.995255288926339,L, + 50035004500,-10.189767123656976,L, + 53883851000,-10.578782255381785,L, + 55808274250,-10.773293236338775,L, + 57732697500,-10.967799948427533,L, + 59657120750,-11.162308368063584,L, + 61581544000,-11.356818495246928,L, + 63505967250,-11.551326914882980,L, + 65430390500,-11.745837895839969,L, + 67354813750,-11.940344607928729,L, + 71203660250,-12.329363154748123,L, + 73128083500,-12.523873281931467,L, + 75052506750,-12.718379994020225,L, + 76976930000,-12.912890121203569,L, + 78901353250,-13.107398540839620,L, + 80825776500,-13.301906106702026,L, + 82750199750,-13.496416233885370,L, + 84674623000,-13.690925507295066,L, + 90447892750,-14.274450766203220,L, + 92372316000,-14.468961747160209,L, + 94296739250,-14.663468459248968,L, + 96221162500,-14.857980293979605,L, + 98145585750,-15.052487006068363,L, + 100070009000,-15.246995425704414,L, + 101994432250,-15.441505552887758,L, + 103918855500,-15.636012264976516,L, + 105843278750,-15.830522392159860,L, + 113540971750,-16.608556070704065,L, + 115465395000,-16.803067905434702,L, + 117389818250,-16.997576325070753,L, + 119314241500,-17.192081329612218,L, + 121238664750,-17.386596579437441,L, + 125087511250,-17.775610003614958,L, + 127011934500,-17.970118423251009,L, + 128936357750,-18.164630257981646,L, + 130860781000,-18.359136970070402,L, + 132785204250,-18.553647097253748,L, + 134709627500,-18.748153809342504,L, + 136634050750,-18.942665644073141,L, + 138558474000,-19.137172356161901,L, + 140482897250,-19.331682483345244,L, + 142407320500,-19.526196025623172,L, + 144331743750,-19.720697615070055,L, + 146256167000,-19.915206034706106,L, + 148180590250,-20.109717869436739,L, + 150105013500,-20.304227996620085,L, + 152029436750,-20.498736416256136,L, + 153953860000,-20.345072527856701,L, + 155878283250,-20.191410347004560,L, + 157802706500,-20.037751581247004,L, + 159727129750,-19.884089400394863,L, + 161651553000,-19.730423804448137,L, + 163575976250,-19.576761623595996,L, + 165500399500,-19.423102857838440,L, + 167424822750,-19.269438969439008,L, + 169349246000,-19.115778496134158,L, + 171273669250,-18.962116315282017,L, + 173198092500,-18.808452426882582,L, + 175122515750,-18.654791953577735,L, + 177046939000,-18.501129772725594,L, + 178971362250,-18.347469299420744,L, + 180895785500,-18.193805411021312,L, + 184744632000,-17.886481049317030,L, + 186669055250,-17.732822283559472,L, + 190517901750,-17.425494506760607,L, + 192442325000,-17.271834033455757,L, + 194366748250,-17.118171852603616,L, + 196291171500,-16.964506256656890,L, + 198215594750,-16.810847490899334,L, + 200140018000,-16.657185310047193,L, + 203988864500,-16.349864363437497,L, + 205913287750,-16.196198767490770,L, + 207837711000,-16.042538294185920,L, + 209762134250,-15.888872698239195,L, + 211686557500,-15.735213932481638,L, + 213610980750,-15.581548336534913,L, + 215535404000,-15.427887863230065,L, + 219384250500,-15.120563501525782,L, + 221308673750,-14.966904735768226,L, + 223233097000,-14.813242554916085,L, + 225157520250,-14.659578666516651,L, + 227081943500,-14.505916485664510,L, + 229006366750,-14.352256012359662,L, + 232855213250,-14.044931650655380,L, + 236704059750,-13.737605581403805,L, + 238628483000,-13.583943400551664,L, + 240552906250,-13.430282927246816,L, + 242477329500,-13.276620746394675,L, + 246326176000,-12.969298092237684,L, + 248250599250,-12.815634203838250,L, + 250175022500,-12.661972022986109,L, + 252099445750,-12.508312403454909,L, + 254023869000,-12.354649368829120,L, + 257872715500,-12.047325007124838,L, + 259797138750,-5.132534125854483,L, + 261721562000,-5.132533698967659,L, + 263645985250,-5.132533698967659,L, + 265570408500,-5.132534125854483,L, + 267494831750,-5.132533698967659,L, + 275192524750,-5.132533698967659,L, + 277116948000,-5.132533272080837,L, + 279041371250,-5.132533698967659,L, + 280965794500,-5.132533272080837,L, + 282890217750,-5.132534125854483,L, + 284814641000,-5.132533272080837,L, + 288663487500,-5.132534125854483,L, + 290587910750,-5.132533698967659,L, + 294436757250,-5.132533698967659,L, + 296361180500,-5.132533272080837,L, + 298285603750,-5.132533272080837,L, + 302134450250,-5.132534125854483,L, + 304058873500,-5.132533698967659,L, + 307907720000,-5.132533698967659,L, + 309832143250,-5.132533272080837,L, + 311756566500,-5.132534552741306,L, + 315605413000,-5.132533698967659,L, + 317529836250,-5.132533698967659,L, + 319454259500,-5.132534125854483,L, + 321378682750,-5.132532845194014,L, + 323303106000,-5.132533698967659,L, + 327151952500,-5.132533698967659,L, + 329076375750,-5.132533272080837,L, + 332925222250,-5.132534125854483,L, + 336774068750,-5.132533272080837,L, + 338698492000,-5.132534125854483,L, + 340622915250,-5.132534125854483,L, + 342547338500,-5.132533698967659,L, + 344471761750,-5.132534125854483,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 158 + Key: + 0,33.449806441146372,L, + 1924423250,33.338966131295564,L, + 3848846500,33.228118991255592,L, + 5773269750,33.117282096499366,L, + 7697693000,33.006441786648558,L, + 9622116250,32.895598061703168,L, + 11546539500,32.784757751852361,L, + 13470962750,32.673914026906964,L, + 15395386000,32.563073717056156,L, + 19244232500,32.341386267165376,L, + 21168655750,32.230545957314568,L, + 23093079000,32.119702232369171,L, + 25017502250,32.008861922518363,L, + 26941925500,31.898018197572974,L, + 28866348750,31.787177887722166,L, + 30790772000,31.676340992965940,L, + 32715195250,31.565497268020550,L, + 34639618500,31.454656958169743,L, + 36564041750,31.343806403035178,L, + 38488465000,31.232969508278956,L, + 40412888250,31.122125783333562,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900438333442779,L, + 46186158000,30.789601438686557,L, + 50035004500,30.567920818984941,L, + 51959427750,30.457077094039548,L, + 55808274250,30.235396474337932,L, + 57732697500,30.124545919203371,L, + 61581544000,29.902872129690923,L, + 63505967250,29.792024989650947,L, + 65430390500,29.681181264705554,L, + 69279237000,29.459500645003939,L, + 73128083500,29.237813195113155,L, + 75052506750,29.126976300356930,L, + 76976930000,29.016129160316954,L, + 78901353250,28.905295680655314,L, + 80825776500,28.794448540615338,L, + 82750199750,28.683604815669945,L, + 84674623000,28.572764505819137,L, + 86599046250,28.461922488421038,L, + 88523469500,28.351077055928354,L, + 90447892750,28.240243576266714,L, + 92372316000,28.129396436226738,L, + 94296739250,28.018559541470513,L, + 96221162500,27.907714108977828,L, + 100070009000,27.686033489276213,L, + 101994432250,27.575184641688942,L, + 103918855500,27.464346039385429,L, + 105843278750,27.353505729534621,L, + 107767702000,27.242656881947351,L, + 109692125250,27.131819987191129,L, + 111616548500,27.020977969793027,L, + 113540971750,26.910134244847637,L, + 115465395000,26.799295642544120,L, + 117389818250,26.688453625146021,L, + 119314241500,26.577609900200628,L, + 121238664750,26.466769590349820,L, + 123163088000,26.355925865404426,L, + 125087511250,26.245087263100910,L, + 128936357750,26.023399813210126,L, + 132785204250,25.801719193508511,L, + 134709627500,25.690880591204994,L, + 136634050750,25.580030036070433,L, + 138558474000,25.469193141314211,L, + 140482897250,25.358351123916108,L, + 142407320500,25.247510814065304,L, + 144331743750,25.136665381572616,L, + 146256167000,25.025823364174517,L, + 148180590250,24.914984761871001,L, + 150105013500,24.804142744472902,L, + 152029436750,24.693299019527508,L, + 153953860000,24.780867167328825,L, + 155878283250,24.868426777393676,L, + 157802706500,24.956000047836870,L, + 159727129750,25.043557950354430,L, + 161651553000,25.131126098155743,L, + 163575976250,25.218684000673306,L, + 165500399500,25.306252148474620,L, + 167424822750,25.393818588728642,L, + 169349246000,25.481381613888079,L, + 171273669250,25.568951469236687,L, + 175122515750,25.744080934650150,L, + 177046939000,25.831642252262295,L, + 178971362250,25.919212107610900,L, + 180895785500,26.006778547864926,L, + 184744632000,26.181904598183799,L, + 186669055250,26.269472745985116,L, + 188593478500,26.357034063597261,L, + 190517901750,26.444602211398575,L, + 192442325000,26.532163529010720,L, + 194366748250,26.619729969264743,L, + 196291171500,26.707298117066056,L, + 198215594750,26.794857727130911,L, + 200140018000,26.882427582479519,L, + 202064441250,26.969992315186246,L, + 203988864500,27.057555340345687,L, + 205913287750,27.145120073052414,L, + 207837711000,27.232686513306440,L, + 209762134250,27.320249538465877,L, + 211686557500,27.407817686267190,L, + 213610980750,27.495379003879336,L, + 215535404000,27.582948859227944,L, + 217459827250,27.670510176840089,L, + 219384250500,27.758073201999526,L, + 221308673750,27.845641349800843,L, + 223233097000,27.933207790054865,L, + 225157520250,28.020775937856179,L, + 227081943500,28.108338963015619,L, + 230930790000,28.283461598239906,L, + 232855213250,28.371034868683100,L, + 236704059750,28.546157503907391,L, + 240552906250,28.721297214604608,L, + 242477329500,28.808856824669459,L, + 244401752750,28.896426680018067,L, + 246326176000,28.983986290082917,L, + 248250599250,29.071549315242358,L, + 252099445750,29.246682195750402,L, + 254023869000,29.334252051099011,L, + 255948292250,29.421811661163861,L, + 257872715500,29.509378101417884,L, + 259797138750,33.449809856240961,L, + 261721562000,33.449806441146372,L, + 263645985250,33.449799610957207,L, + 265570408500,33.449806441146372,L, + 269419255000,33.449806441146372,L, + 271343678250,33.449809856240961,L, + 273268101500,33.449806441146372,L, + 275192524750,33.449809856240961,L, + 277116948000,33.449806441146372,L, + 279041371250,33.449809856240961,L, + 280965794500,33.449806441146372,L, + 286739064250,33.449806441146372,L, + 288663487500,33.449803026051789,L, + 290587910750,33.449809856240961,L, + 292512334000,33.449806441146372,L, + 294436757250,33.449809856240961,L, + 296361180500,33.449809856240961,L, + 298285603750,33.449806441146372,L, + 300210027000,33.449809856240961,L, + 302134450250,33.449803026051789,L, + 304058873500,33.449803026051789,L, + 305983296750,33.449806441146372,L, + 311756566500,33.449806441146372,L, + 313680989750,33.449809856240961,L, + 315605413000,33.449806441146372,L, + 317529836250,33.449809856240961,L, + 319454259500,33.449806441146372,L, + 321378682750,33.449806441146372,L, + 323303106000,33.449809856240961,L, + 325227529250,33.449809856240961,L, + 327151952500,33.449803026051789,L, + 329076375750,33.449803026051789,L, + 331000799000,33.449806441146372,L, + 334849645500,33.449806441146372,L, + 336774068750,33.449803026051789,L, + 338698492000,33.449806441146372,L, + 342547338500,33.449806441146372,L, + 344471761750,33.449809856240961,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 140 + Key: + 0,0.156420111656189,L, + 1924423250,0.165668815374374,L, + 3848846500,0.174917474389076,L, + 5773269750,0.184166118502617,L, + 7697693000,0.193414792418480,L, + 9622116250,0.202663496136665,L, + 11546539500,0.211912125349045,L, + 13470962750,0.221160799264908,L, + 15395386000,0.230409488081932,L, + 17319809250,0.239658132195473,L, + 19244232500,0.248906850814819,L, + 23093079000,0.267404139041901,L, + 25017502250,0.276652812957764,L, + 26941925500,0.285901516675949,L, + 28866348750,0.295150130987167,L, + 30790772000,0.304398834705353,L, + 32715195250,0.313647508621216,L, + 34639618500,0.322896152734756,L, + 36564041750,0.332144826650620,L, + 38488465000,0.341393530368805,L, + 40412888250,0.350642174482346,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139552116394,L, + 46186158000,0.378388196229935,L, + 48110581250,0.387636899948120,L, + 50035004500,0.396885544061661,L, + 51959427750,0.406134217977524,L, + 53883851000,0.415382862091064,L, + 55808274250,0.424631595611572,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128913640976,L, + 63505967250,0.461626261472702,L, + 65430390500,0.470874875783920,L, + 67354813750,0.480123579502106,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615563392639,L, + 80825776500,0.544864296913147,L, + 86599046250,0.572610318660736,L, + 88523469500,0.581859052181244,L, + 90447892750,0.591107666492462,L, + 92372316000,0.600356221199036,L, + 94296739250,0.609605014324188,L, + 96221162500,0.618853628635406,L, + 100070009000,0.637350976467133,L, + 101994432250,0.646599709987640,L, + 105843278750,0.665096938610077,L, + 109692125250,0.683594405651093,L, + 111616548500,0.692843079566956,L, + 113540971750,0.702091813087463,L, + 117389818250,0.720589041709900,L, + 119314241500,0.729837775230408,L, + 121238664750,0.739086329936981,L, + 123163088000,0.748335003852844,L, + 125087511250,0.757583796977997,L, + 127011934500,0.766832351684570,L, + 128936357750,0.776081025600433,L, + 130860781000,0.785329759120941,L, + 132785204250,0.794578433036804,L, + 134709627500,0.803827047348022,L, + 138558474000,0.822324395179749,L, + 140482897250,0.831573128700256,L, + 142407320500,0.840821683406830,L, + 144331743750,0.850070476531982,L, + 146256167000,0.859319150447845,L, + 148180590250,0.868567764759064,L, + 152029436750,0.887065112590790,L, + 155878283250,0.857711493968964,L, + 157802706500,0.843034505844116,L, + 159727129750,0.828357577323914,L, + 161651553000,0.813680827617645,L, + 163575976250,0.799004018306732,L, + 165500399500,0.784327089786530,L, + 167424822750,0.769650280475616,L, + 169349246000,0.754973411560059,L, + 171273669250,0.740296483039856,L, + 173198092500,0.725619614124298,L, + 175122515750,0.710942804813385,L, + 178971362250,0.681589066982269,L, + 180895785500,0.666912138462067,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558519840240,L, + 186669055250,0.622881531715393,L, + 188593478500,0.608204722404480,L, + 190517901750,0.593527972698212,L, + 192442325000,0.578850984573364,L, + 194366748250,0.564174115657806,L, + 196291171500,0.549497306346893,L, + 198215594750,0.534820377826691,L, + 202064441250,0.505466639995575,L, + 207837711000,0.461436122655869,L, + 209762134250,0.446759223937988,L, + 211686557500,0.432082355022430,L, + 213610980750,0.417405545711517,L, + 215535404000,0.402728617191315,L, + 217459827250,0.388051778078079,L, + 219384250500,0.373374909162521,L, + 221308673750,0.358698010444641,L, + 229006366750,0.299990534782410,L, + 230930790000,0.285313695669174,L, + 234779636500,0.255959957838058,L, + 236704059750,0.241283118724823,L, + 238628483000,0.226606234908104,L, + 240552906250,0.211929380893707,L, + 246326176000,0.167898774147034,L, + 248250599250,0.153221920132637,L, + 250175022500,0.138545051217079,L, + 252099445750,0.123868197202682,L, + 255948292250,0.094514459371567,L, + 257872715500,0.079837597906590,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 275192524750,0.130958914756775,L, + 277116948000,0.127321615815163,L, + 279041371250,0.123684294521809,L, + 280965794500,0.120046988129616,L, + 286739064250,0.109135046601295,L, + 288663487500,0.105497740209103,L, + 290587910750,0.101860418915749,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761915624142,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849970370531,L, + 313680989750,0.058212660253048,L, + 317529836250,0.050938032567501,L, + 319454259500,0.047300722450018,L, + 325227529250,0.036388780921698,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114143922925,L, + 331000799000,0.025476830080152,L, + 332925222250,0.021839514374733,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564887620509,L, + 338698492000,0.010927573777735,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652960527688,L, + 344471761750,0.000015646219254,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420126557350 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.156420126557350,L, + 1924423250,0.162834376096725,L, + 7697693000,0.182077169418335,L, + 9622116250,0.188491418957710,L, + 11546539500,0.194905683398247,L, + 13470962750,0.201319962739944,L, + 15395386000,0.207734256982803,L, + 17319809250,0.214148506522179,L, + 19244232500,0.220562785863876,L, + 21168655750,0.226977050304413,L, + 25017502250,0.239805549383163,L, + 28866348750,0.252634108066559,L, + 30790772000,0.259048402309418,L, + 32715195250,0.265462636947632,L, + 38488465000,0.284705430269241,L, + 40412888250,0.291119664907455,L, + 44261734750,0.303948253393173,L, + 46186158000,0.310362488031387,L, + 48110581250,0.316776782274246,L, + 50035004500,0.323190987110138,L, + 51959427750,0.329605281352997,L, + 55808274250,0.342433810234070,L, + 57732697500,0.348848104476929,L, + 61581544000,0.361676633358002,L, + 65430390500,0.374505102634430,L, + 67354813750,0.380919426679611,L, + 69279237000,0.387333691120148,L, + 71203660250,0.393747925758362,L, + 73128083500,0.400162220001221,L, + 75052506750,0.406576484441757,L, + 78901353250,0.419404953718185,L, + 80825776500,0.425819218158722,L, + 82750199750,0.432233572006226,L, + 86599046250,0.445062041282654,L, + 88523469500,0.451476365327835,L, + 90447892750,0.457890599966049,L, + 103918855500,0.502790451049805,L, + 105843278750,0.509204745292664,L, + 107767702000,0.515618979930878,L, + 109692125250,0.522033274173737,L, + 111616548500,0.528447508811951,L, + 113540971750,0.534861803054810,L, + 115465395000,0.541276037693024,L, + 117389818250,0.547690331935883,L, + 119314241500,0.554104566574097,L, + 121238664750,0.560518860816956,L, + 123163088000,0.566933095455170,L, + 125087511250,0.573347449302673,L, + 130860781000,0.592590153217316,L, + 132785204250,0.599004447460175,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611833035945892,L, + 142407320500,0.631075739860535,L, + 146256167000,0.643904328346252,L, + 148180590250,0.650318562984467,L, + 150105013500,0.656732857227325,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175068855286,L, + 155878283250,0.641202986240387,L, + 161651553000,0.608286917209625,L, + 163575976250,0.597314834594727,L, + 165500399500,0.586342811584473,L, + 167424822750,0.575370848178864,L, + 171273669250,0.553426682949066,L, + 175122515750,0.531482636928558,L, + 177046939000,0.520510554313660,L, + 178971362250,0.509538590908051,L, + 180895785500,0.498566567897797,L, + 182820208750,0.487594515085220,L, + 184744632000,0.476622402667999,L, + 186669055250,0.465650379657745,L, + 188593478500,0.454678386449814,L, + 194366748250,0.421762228012085,L, + 196291171500,0.410790205001831,L, + 198215594750,0.399818211793900,L, + 200140018000,0.388846129179001,L, + 202064441250,0.377874106168747,L, + 203988864500,0.366902053356171,L, + 205913287750,0.355930030345917,L, + 209762134250,0.333985924720764,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041848897934,L, + 215535404000,0.301069825887680,L, + 217459827250,0.290097773075104,L, + 219384250500,0.279125750064850,L, + 221308673750,0.268153697252274,L, + 223233097000,0.257181704044342,L, + 225157520250,0.246209621429443,L, + 229006366750,0.224265545606613,L, + 230930790000,0.213293522596359,L, + 232855213250,0.202321469783783,L, + 240552906250,0.158433318138123,L, + 242477329500,0.147461265325546,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545173943043,L, + 250175022500,0.103573128581047,L, + 252099445750,0.092601090669632,L, + 255948292250,0.070656985044479,L, + 257872715500,0.059684962034225,L, + 259797138750,0.000015646221073,L, + 261721562000,0.156420126557350,L, + 265570408500,0.149145498871803,L, + 267494831750,0.145508170127869,L, + 275192524750,0.130958914756775,L, + 277116948000,0.127321615815163,L, + 280965794500,0.120046973228455,L, + 284814641000,0.112772360444069,L, + 286739064250,0.109135061502457,L, + 288663487500,0.105497740209103,L, + 292512334000,0.098223112523556,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673849701881,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761915624142,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849977821112,L, + 315605413000,0.054575350135565,L, + 317529836250,0.050938032567501,L, + 321378682750,0.043663404881954,L, + 323303106000,0.040026094764471,L, + 325227529250,0.036388780921698,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114142060280,L, + 331000799000,0.025476830080152,L, + 332925222250,0.021839514374733,L, + 334849645500,0.018202202394605,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927573777735,L, + 340622915250,0.007290274370462,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646221073,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420141458511 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.156420141458511,L, + 3848846500,0.174848139286041,L, + 5773269750,0.184062153100967,L, + 7697693000,0.193276181817055,L, + 9622116250,0.202490180730820,L, + 11546539500,0.211704209446907,L, + 13470962750,0.220918208360672,L, + 15395386000,0.230132192373276,L, + 17319809250,0.239346221089363,L, + 19244232500,0.248560220003128,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844273090363,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272300720215,L, + 38488465000,0.340700328350067,L, + 40412888250,0.349914371967316,L, + 44261734750,0.368342339992523,L, + 46186158000,0.377556383609772,L, + 48110581250,0.386770367622375,L, + 50035004500,0.395984441041946,L, + 51959427750,0.405198425054550,L, + 53883851000,0.414412468671799,L, + 55808274250,0.423626452684402,L, + 57732697500,0.432840406894684,L, + 59657120750,0.442054480314255,L, + 61581544000,0.451268434524536,L, + 63505967250,0.460482507944107,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910475969315,L, + 71203660250,0.497338563203812,L, + 73128083500,0.506552517414093,L, + 75052506750,0.515766501426697,L, + 76976930000,0.524980604648590,L, + 78901353250,0.534194529056549,L, + 80825776500,0.543408632278442,L, + 82750199750,0.552622556686401,L, + 84674623000,0.561836600303650,L, + 88523469500,0.580264568328857,L, + 96221162500,0.617120742797852,L, + 98145585750,0.626334607601166,L, + 100070009000,0.635548710823059,L, + 101994432250,0.644762635231018,L, + 103918855500,0.653976738452911,L, + 105843278750,0.663190662860870,L, + 111616548500,0.690832793712616,L, + 113540971750,0.700046718120575,L, + 117389818250,0.718474805355072,L, + 119314241500,0.727688729763031,L, + 121238664750,0.736902773380280,L, + 123163088000,0.746116757392883,L, + 125087511250,0.755330860614777,L, + 130860781000,0.782972812652588,L, + 134709627500,0.801400899887085,L, + 136634050750,0.810614824295044,L, + 138558474000,0.819828927516937,L, + 140482897250,0.829042971134186,L, + 142407320500,0.838256955146790,L, + 144331743750,0.847470879554749,L, + 146256167000,0.856684982776642,L, + 148180590250,0.865898907184601,L, + 150105013500,0.875112891197205,L, + 152029436750,0.884326994419098,L, + 153953860000,0.869695365428925,L, + 157802706500,0.840432345867157,L, + 159727129750,0.825800657272339,L, + 161651553000,0.811169207096100,L, + 163575976250,0.796537578105927,L, + 165500399500,0.781906068325043,L, + 167424822750,0.767274439334869,L, + 169349246000,0.752642929553986,L, + 177046939000,0.694116652011871,L, + 178971362250,0.679485142230988,L, + 180895785500,0.664853692054749,L, + 182820208750,0.650222003459930,L, + 188593478500,0.606327295303345,L, + 190517901750,0.591695845127106,L, + 192442325000,0.577064096927643,L, + 194366748250,0.562432706356049,L, + 196291171500,0.547801136970520,L, + 198215594750,0.533169507980347,L, + 202064441250,0.503906369209290,L, + 203988864500,0.489274889230728,L, + 205913287750,0.474643290042877,L, + 209762134250,0.445380151271820,L, + 213610980750,0.416117072105408,L, + 215535404000,0.401485472917557,L, + 217459827250,0.386853933334351,L, + 223233097000,0.342959225177765,L, + 225157520250,0.328327685594559,L, + 227081943500,0.313696116209030,L, + 229006366750,0.299064576625824,L, + 234779636500,0.255169868469238,L, + 236704059750,0.240538328886032,L, + 242477329500,0.196643620729446,L, + 244401752750,0.182012081146240,L, + 246326176000,0.167380511760712,L, + 250175022500,0.138117402791977,L, + 252099445750,0.123485840857029,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222731888294,L, + 257872715500,0.079591155052185,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420141458511,L, + 263645985250,0.152782827615738,L, + 265570408500,0.149145498871803,L, + 273268101500,0.134596243500710,L, + 275192524750,0.130958944559097,L, + 277116948000,0.127321630716324,L, + 280965794500,0.120046988129616,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772367894650,L, + 286739064250,0.109135039150715,L, + 288663487500,0.105497732758522,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 296361180500,0.090948484838009,L, + 298285603750,0.087311178445816,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399229466915,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487295389175,L, + 313680989750,0.058212660253048,L, + 315605413000,0.054575350135565,L, + 317529836250,0.050938032567501,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114156961441,L, + 334849645500,0.018202215433121,L, + 336774068750,0.014564902521670,L, + 338698492000,0.010927588678896,L, + 340622915250,0.007290274370462,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_070" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793072223663 + KeyVer: 4005 + KeyCount: 151 + Key: + 0,0.016793072223663,L, + 1924423250,0.016792953014374,L, + 3848846500,0.016792953014374,L, + 7697693000,0.016793072223663,L, + 9622116250,0.016793072223663,L, + 11546539500,0.016793251037598,L, + 13470962750,0.016793251037598,L, + 15395386000,0.016793012619019,L, + 17319809250,0.016793131828308,L, + 19244232500,0.016792893409729,L, + 21168655750,0.016793072223663,L, + 23093079000,0.016793310642242,L, + 25017502250,0.016793131828308,L, + 26941925500,0.016793012619019,L, + 28866348750,0.016793251037598,L, + 30790772000,0.016793012619019,L, + 32715195250,0.016793012619019,L, + 36564041750,0.016793131828308,L, + 38488465000,0.016792953014374,L, + 42337311500,0.016793072223663,L, + 44261734750,0.016793072223663,L, + 46186158000,0.016793191432953,L, + 48110581250,0.016792953014374,L, + 50035004500,0.016793131828308,L, + 51959427750,0.016792893409729,L, + 53883851000,0.016793310642242,L, + 55808274250,0.016793012619019,L, + 57732697500,0.016792833805084,L, + 59657120750,0.016793131828308,L, + 61581544000,0.016792953014374,L, + 63505967250,0.016792953014374,L, + 65430390500,0.016793131828308,L, + 67354813750,0.016793191432953,L, + 69279237000,0.016792893409729,L, + 71203660250,0.016793072223663,L, + 73128083500,0.016793012619019,L, + 75052506750,0.016793072223663,L, + 76976930000,0.016793072223663,L, + 78901353250,0.016793191432953,L, + 80825776500,0.016793131828308,L, + 82750199750,0.016793191432953,L, + 84674623000,0.016793012619019,L, + 86599046250,0.016793012619019,L, + 88523469500,0.016793191432953,L, + 90447892750,0.016793072223663,L, + 92372316000,0.016793310642242,L, + 94296739250,0.016792893409729,L, + 96221162500,0.016793131828308,L, + 101994432250,0.016792953014374,L, + 103918855500,0.016793072223663,L, + 105843278750,0.016793131828308,L, + 107767702000,0.016793012619019,L, + 109692125250,0.016793012619019,L, + 111616548500,0.016793072223663,L, + 113540971750,0.016793012619019,L, + 119314241500,0.016793012619019,L, + 121238664750,0.016793251037598,L, + 123163088000,0.016793191432953,L, + 125087511250,0.016792833805084,L, + 127011934500,0.016793012619019,L, + 132785204250,0.016793012619019,L, + 134709627500,0.016793191432953,L, + 136634050750,0.016793251037598,L, + 138558474000,0.016793251037598,L, + 140482897250,0.016792893409729,L, + 142407320500,0.016793191432953,L, + 144331743750,0.016793131828308,L, + 146256167000,0.016793310642242,L, + 148180590250,0.016793072223663,L, + 150105013500,0.016792893409729,L, + 152029436750,0.016793191432953,L, + 180895785500,0.016793191432953,L, + 182820208750,0.016793012619019,L, + 184744632000,0.016793251037598,L, + 186669055250,0.016793370246887,L, + 188593478500,0.016792833805084,L, + 190517901750,0.016792833805084,L, + 192442325000,0.016793251037598,L, + 194366748250,0.016793072223663,L, + 196291171500,0.016793131828308,L, + 198215594750,0.016793131828308,L, + 200140018000,0.016793191432953,L, + 202064441250,0.016792953014374,L, + 203988864500,0.016793012619019,L, + 205913287750,0.016792833805084,L, + 207837711000,0.016792833805084,L, + 209762134250,0.016793251037598,L, + 211686557500,0.016792893409729,L, + 213610980750,0.016793191432953,L, + 215535404000,0.016793012619019,L, + 217459827250,0.016793012619019,L, + 219384250500,0.016793251037598,L, + 221308673750,0.016793251037598,L, + 223233097000,0.016793012619019,L, + 225157520250,0.016792893409729,L, + 227081943500,0.016793072223663,L, + 229006366750,0.016793310642242,L, + 230930790000,0.016793072223663,L, + 232855213250,0.016793251037598,L, + 234779636500,0.016793191432953,L, + 236704059750,0.016793310642242,L, + 240552906250,0.016793191432953,L, + 242477329500,0.016793072223663,L, + 244401752750,0.016792833805084,L, + 246326176000,0.016793131828308,L, + 248250599250,0.016792893409729,L, + 250175022500,0.016793131828308,L, + 252099445750,0.016793072223663,L, + 257872715500,0.016793251037598,L, + 259797138750,0.016793251037598,L, + 261721562000,0.016793370246887,L, + 263645985250,0.016792953014374,L, + 265570408500,0.016792953014374,L, + 267494831750,0.016793191432953,L, + 269419255000,0.016793131828308,L, + 271343678250,0.016793012619019,L, + 273268101500,0.016793191432953,L, + 275192524750,0.016793251037598,L, + 279041371250,0.016793012619019,L, + 280965794500,0.016792953014374,L, + 282890217750,0.016793191432953,L, + 284814641000,0.016793251037598,L, + 288663487500,0.016793131828308,L, + 290587910750,0.016793191432953,L, + 292512334000,0.016793012619019,L, + 294436757250,0.016793251037598,L, + 298285603750,0.016793131828308,L, + 300210027000,0.016793251037598,L, + 302134450250,0.016793191432953,L, + 304058873500,0.016792893409729,L, + 305983296750,0.016793131828308,L, + 307907720000,0.016793131828308,L, + 309832143250,0.016793072223663,L, + 311756566500,0.016793251037598,L, + 313680989750,0.016793191432953,L, + 315605413000,0.016792953014374,L, + 317529836250,0.016793131828308,L, + 319454259500,0.016793131828308,L, + 321378682750,0.016793191432953,L, + 323303106000,0.016793072223663,L, + 325227529250,0.016793072223663,L, + 327151952500,0.016793251037598,L, + 329076375750,0.016793072223663,L, + 331000799000,0.016793370246887,L, + 332925222250,0.016792953014374,L, + 334849645500,0.016793012619019,L, + 336774068750,0.016793191432953,L, + 338698492000,0.016793191432953,L, + 340622915250,0.016793131828308,L, + 342547338500,0.016793012619019,L, + 344471761750,0.016793191432953,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058537125587463 + KeyVer: 4005 + KeyCount: 165 + Key: + 0,-0.058537125587463,L, + 1924423250,-0.058575153350830,L, + 3848846500,-0.058685302734375,L, + 5773269750,-0.058861970901489,L, + 7697693000,-0.059100985527039,L, + 9622116250,-0.059397339820862,L, + 11546539500,-0.059748053550720,L, + 13470962750,-0.060149312019348,L, + 15395386000,-0.060598015785217,L, + 17319809250,-0.061092138290405,L, + 19244232500,-0.061628460884094,L, + 21168655750,-0.062205433845520,L, + 23093079000,-0.062820315361023,L, + 25017502250,-0.063471674919128,L, + 26941925500,-0.064157485961914,L, + 28866348750,-0.064876794815063,L, + 30790772000,-0.065627098083496,L, + 32715195250,-0.066408038139343,L, + 34639618500,-0.067217707633972,L, + 36564041750,-0.068055272102356,L, + 38488465000,-0.068919420242310,L, + 40412888250,-0.069809079170227,L, + 42337311500,-0.070723414421082,L, + 44261734750,-0.071661591529846,L, + 46186158000,-0.072622656822205,L, + 48110581250,-0.073605418205261,L, + 50035004500,-0.074609637260437,L, + 51959427750,-0.075634360313416,L, + 53883851000,-0.076678633689880,L, + 55808274250,-0.077741980552673,L, + 57732697500,-0.078823924064636,L, + 59657120750,-0.079923272132874,L, + 61581544000,-0.081039667129517,L, + 63505967250,-0.082172274589539,L, + 65430390500,-0.083320856094360,L, + 67354813750,-0.084484338760376,L, + 69279237000,-0.085661649703979,L, + 71203660250,-0.086852431297302,L, + 73128083500,-0.088055491447449,L, + 75052506750,-0.089270114898682,L, + 76976930000,-0.090494871139526,L, + 78901353250,-0.091727852821350,L, + 80825776500,-0.092967391014099,L, + 82750199750,-0.094210028648376,L, + 84674623000,-0.095451235771179,L, + 86599046250,-0.096683502197266,L, + 88523469500,-0.097891688346863,L, + 90447892750,-0.099037528038025,L, + 92372316000,-0.099893569946289,L, + 94296739250,-0.099929809570312,L, + 96221162500,-0.099073410034180,L, + 98145585750,-0.097858309745789,L, + 100070009000,-0.096546649932861,L, + 101994432250,-0.095184206962585,L, + 103918855500,-0.093789935112000,L, + 105843278750,-0.092373490333557,L, + 107767702000,-0.090940713882446,L, + 109692125250,-0.089496016502380,L, + 111616548500,-0.088041901588440,L, + 113540971750,-0.086580634117126,L, + 115465395000,-0.085113525390625,L, + 117389818250,-0.083642601966858,L, + 119314241500,-0.082168340682983,L, + 121238664750,-0.080692410469055,L, + 125087511250,-0.077738404273987,L, + 127011934500,-0.076262474060059,L, + 128936357750,-0.074788331985474,L, + 130860781000,-0.073317408561707,L, + 132785204250,-0.071850299835205,L, + 134709627500,-0.070389032363892,L, + 136634050750,-0.068934798240662,L, + 138558474000,-0.067489981651306,L, + 140482897250,-0.066057443618774,L, + 142407320500,-0.064640998840332,L, + 144331743750,-0.063246726989746,L, + 146256167000,-0.061884164810181,L, + 148180590250,-0.060572504997253,L, + 150105013500,-0.059357523918152,L, + 152029436750,-0.058501005172729,L, + 180895785500,-0.058501005172729,L, + 182820208750,-0.057608842849731,L, + 184744632000,-0.054916143417358,L, + 186669055250,-0.050476193428040,L, + 188593478500,-0.044483065605164,L, + 190517901750,-0.037306785583496,L, + 192442325000,-0.029485225677490,L, + 194366748250,-0.021663784980774,L, + 196291171500,-0.014487266540527,L, + 198215594750,-0.008494615554810,L, + 200140018000,-0.004054546356201,L, + 202064441250,-0.001361608505249,L, + 203988864500,-0.000469923019409,L, + 205913287750,-0.000504732131958,L, + 207837711000,-0.000608801841736,L, + 209762134250,-0.000780582427979,L, + 211686557500,-0.001017928123474,L, + 213610980750,-0.001320123672485,L, + 215535404000,-0.001684427261353,L, + 217459827250,-0.002109766006470,L, + 219384250500,-0.002594113349915,L, + 221308673750,-0.003135442733765,L, + 223233097000,-0.003731608390808,L, + 225157520250,-0.004380822181702,L, + 227081943500,-0.005081295967102,L, + 229006366750,-0.005830645561218,L, + 230930790000,-0.006626367568970,L, + 232855213250,-0.007466554641724,L, + 234779636500,-0.008349299430847,L, + 236704059750,-0.009271502494812,L, + 238628483000,-0.010231375694275,L, + 240552906250,-0.011226296424866,L, + 242477329500,-0.012254357337952,L, + 244401752750,-0.013312458992004,L, + 246326176000,-0.014398932456970,L, + 248250599250,-0.015510797500610,L, + 250175022500,-0.016646146774292,L, + 252099445750,-0.017802119255066,L, + 254023869000,-0.018976449966431,L, + 255948292250,-0.020166993141174,L, + 257872715500,-0.021370768547058,L, + 259797138750,-0.022585988044739,L, + 261721562000,-0.023810148239136,L, + 263645985250,-0.025040507316589,L, + 265570408500,-0.026275157928467,L, + 267494831750,-0.027512192726135,L, + 269419255000,-0.028748393058777,L, + 271343678250,-0.029982447624207,L, + 273268101500,-0.031211733818054,L, + 275192524750,-0.032434463500977,L, + 277116948000,-0.033648371696472,L, + 279041371250,-0.034851193428040,L, + 280965794500,-0.036041378974915,L, + 282890217750,-0.037216782569885,L, + 284814641000,-0.038375616073608,L, + 286739064250,-0.039515852928162,L, + 288663487500,-0.040636181831360,L, + 290587910750,-0.041734695434570,L, + 292512334000,-0.042809128761292,L, + 294436757250,-0.043859124183655,L, + 296361180500,-0.044882178306580,L, + 298285603750,-0.045877337455750,L, + 300210027000,-0.046842813491821,L, + 302134450250,-0.047777533531189,L, + 304058873500,-0.048680186271667,L, + 305983296750,-0.049549341201782,L, + 307907720000,-0.050384044647217,L, + 309832143250,-0.051182985305786,L, + 311756566500,-0.051945209503174,L, + 313680989750,-0.052670001983643,L, + 315605413000,-0.053355455398560,L, + 317529836250,-0.054001808166504,L, + 319454259500,-0.054607629776001,L, + 321378682750,-0.055172204971313,L, + 323303106000,-0.055694580078125,L, + 325227529250,-0.056174516677856,L, + 327151952500,-0.056610941886902,L, + 329076375750,-0.057003378868103,L, + 331000799000,-0.057351350784302,L, + 332925222250,-0.057654142379761,L, + 334849645500,-0.057911515235901,L, + 336774068750,-0.058122634887695,L, + 338698492000,-0.058287739753723,L, + 340622915250,-0.058406114578247,L, + 342547338500,-0.058477044105530,L, + 344471761750,-0.058501005172729,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578061103820801 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,-0.578061103820801,L, + 90447892750,-0.578061103820801,L, + 92372316000,-0.557460784912109,L, + 94296739250,0.000370621681213,L, + 96221162500,0.007700443267822,L, + 98145585750,0.015030145645142,L, + 103918855500,0.037019610404968,L, + 105843278750,0.044349193572998,L, + 113540971750,0.073668479919434,L, + 115465395000,0.080998063087463,L, + 123163088000,0.110317349433899,L, + 125087511250,0.119968533515930,L, + 127011934500,0.129929900169373,L, + 128936357750,0.140168786048889,L, + 130860781000,0.150662422180176,L, + 132785204250,0.161394596099854,L, + 134709627500,0.172355294227600,L, + 136634050750,0.183540105819702,L, + 138558474000,0.194950580596924,L, + 140482897250,0.206594705581665,L, + 142407320500,0.218489527702332,L, + 144331743750,0.230666756629944,L, + 146256167000,0.243180751800537,L, + 148180590250,0.256135582923889,L, + 150105013500,0.269762158393860,L, + 152029436750,0.284850716590881,L, + 153953860000,0.306648373603821,L, + 155878283250,0.313348650932312,L, + 157802706500,0.320404410362244,L, + 159727129750,0.327870011329651,L, + 161651553000,0.335814833641052,L, + 163575976250,0.344329237937927,L, + 165500399500,0.353533387184143,L, + 167424822750,0.363593697547913,L, + 169349246000,0.374749064445496,L, + 171273669250,0.387360930442810,L, + 173198092500,0.402003645896912,L, + 175122515750,0.419637322425842,L, + 177046939000,0.441746830940247,L, + 178971362250,0.468573927879333,L, + 180895785500,0.492804884910583,L, + 182820208750,0.514571547508240,L, + 184744632000,0.539780974388123,L, + 186669055250,0.568211436271667,L, + 188593478500,0.599333882331848,L, + 190517901750,0.632257103919983,L, + 192442325000,0.665760636329651,L, + 194366748250,0.698447108268738,L, + 196291171500,0.728978037834167,L, + 198215594750,0.756290316581726,L, + 200140018000,0.779709935188293,L, + 202064441250,0.798940539360046,L, + 203988864500,0.813977122306824,L, + 205913287750,0.826800942420959,L, + 207837711000,0.839291930198669,L, + 209762134250,0.851451754570007,L, + 211686557500,0.863280653953552,L, + 213610980750,0.874779582023621,L, + 215535404000,0.885950207710266,L, + 217459827250,0.896793723106384,L, + 219384250500,0.907312273979187,L, + 221308673750,0.917508006095886,L, + 223233097000,0.927383065223694,L, + 225157520250,0.936939835548401,L, + 227081943500,0.946181654930115,L, + 229006366750,0.955111384391785,L, + 230930790000,0.963731884956360,L, + 232855213250,0.972047209739685,L, + 234779636500,0.980061411857605,L, + 236704059750,0.987777829170227,L, + 238628483000,0.995201230049133,L, + 240552906250,1.002335667610168,L, + 242477329500,1.009185910224915,L, + 244401752750,1.015756964683533,L, + 246326176000,1.022053837776184,L, + 248250599250,1.028081774711609,L, + 250175022500,1.033845782279968,L, + 252099445750,1.039351820945740,L, + 254023869000,1.044605135917664,L, + 255948292250,1.049611926078796,L, + 257872715500,1.054377913475037,L, + 259797138750,1.058909296989441,L, + 261721562000,1.063211798667908,L, + 263645985250,1.067291855812073,L, + 265570408500,1.071155905723572,L, + 267494831750,1.074810147285461,L, + 269419255000,1.078260540962219,L, + 271343678250,1.081514000892639,L, + 273268101500,1.084576725959778,L, + 275192524750,1.087455391883850,L, + 277116948000,1.090155959129333,L, + 279041371250,1.092685580253601,L, + 280965794500,1.095049977302551,L, + 282890217750,1.097256064414978,L, + 284814641000,1.099309802055359,L, + 286739064250,1.101217389106750,L, + 288663487500,1.102985262870789,L, + 290587910750,1.104620099067688,L, + 292512334000,1.106127619743347,L, + 294436757250,1.107513546943665,L, + 296361180500,1.108783841133118,L, + 298285603750,1.109944701194763,L, + 300210027000,1.111002087593079,L, + 302134450250,1.111961245536804,L, + 304058873500,1.112827658653259,L, + 305983296750,1.113607048988342,L, + 307907720000,1.114304900169373,L, + 309832143250,1.114925980567932,L, + 311756566500,1.115475296974182,L, + 313680989750,1.115958571434021,L, + 315605413000,1.116380572319031,L, + 317529836250,1.116745352745056,L, + 319454259500,1.117058157920837,L, + 321378682750,1.117323279380798,L, + 323303106000,1.117544770240784,L, + 325227529250,1.117727637290955,L, + 327151952500,1.117875695228577,L, + 329076375750,1.117992758750916,L, + 331000799000,1.118082880973816,L, + 332925222250,1.118149638175964,L, + 334849645500,1.118197083473206,L, + 336774068750,1.118228316307068,L, + 338698492000,1.118247151374817,L, + 340622915250,1.118256688117981,L, + 342547338500,1.118260264396667,L, + 344471761750,1.118260741233826,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543798508332110,L, + 11546539500,58.034840132140168,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800556647228937,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304837426552091,L, + 21168655750,54.467708951309021,L, + 23093079000,53.575119340005521,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634304011876267,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501724292610000,L, + 32715195250,48.368804230076201,L, + 34639618500,47.193974126795261,L, + 36564041750,45.978951775343440,L, + 38488465000,44.725369590932367,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108488478377872,L, + 44261734750,40.747966022132061,L, + 46186158000,39.354446922005970,L, + 48110581250,37.929140121482682,L, + 50035004500,36.473230658383194,L, + 51959427750,34.987794287501785,L, + 53883851000,33.473937499483995,L, + 55808274250,31.932688237799908,L, + 57732697500,30.365067615730439,L, + 59657120750,28.772083086178164,L, + 61581544000,27.154728441667316,L, + 63505967250,25.514026503026109,L, + 65430390500,23.851013751461085,L, + 67354813750,22.166765941766524,L, + 69279237000,20.462445913648619,L, + 71203660250,18.739315544556522,L, + 73128083500,16.998795513837596,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472537038773392,L, + 78901353250,11.691309080601252,L, + 80825776500,9.902205060542451,L, + 82750199750,8.109934394029708,L, + 84674623000,6.321668779691525,L, + 86599046250,4.549405444805013,L, + 88523469500,2.816497446472646,L, + 90447892750,1.182278531292534,L, + 92372316000,0.000309185366264,L, + 94296739250,0.000001885382741,L, + 96221162500,1.237622273476599,L, + 98145585750,2.992587620681550,L, + 100070009000,4.887326065783146,L, + 101994432250,6.855266636427426,L, + 103918855500,8.869397641994320,L, + 105843278750,10.915502897500113,L, + 107767702000,12.984964838646379,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172642611234391,L, + 113540971750,19.283681621405755,L, + 115465395000,21.402723905737073,L, + 117389818250,23.527768218801526,L, + 119314241500,25.657095060475577,L, + 121238664750,27.789201789141817,L, + 125087511250,32.056109756101861,L, + 127011934500,34.188214777220807,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442589347053897,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672665518914698,L, + 136634050750,44.773273122676180,L, + 138558474000,46.860350121691880,L, + 140482897250,48.929808647743563,L, + 142407320500,50.975918172117588,L, + 144331743750,52.990048750797655,L, + 146256167000,54.957993590310167,L, + 148180590250,56.852725632109419,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866314376941432,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709849569625966,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932197382440918,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291802346939491,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371721224226732,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507408596087046,L, + 223233097000,106.004802295823211,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389617483537933,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012774290270400,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126541252702253,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210401149140594,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814208029954443,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925306720802752,L, + 342547338500,59.865351320268466,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443355534918460 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.443355534918460,L, + 1924423250,-20.458231686930727,L, + 3848846500,-20.501318227762397,L, + 5773269750,-20.570497798770770,L, + 7697693000,-20.663914296048901,L, + 9622116250,-20.779933596837864,L, + 11546539500,-20.917094040655279,L, + 13470962750,-21.074077400991332,L, + 15395386000,-21.249708885308788,L, + 17319809250,-21.442934936928172,L, + 19244232500,-21.652782253892756,L, + 21168655750,-21.878376571988785,L, + 23093079000,-22.118911928894192,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923117184790556,L, + 30790772000,-23.216630903993092,L, + 32715195250,-23.521933529703052,L, + 34639618500,-23.838533288300198,L, + 36564041750,-24.165962311826384,L, + 38488465000,-24.503780053080146,L, + 40412888250,-24.851585238447743,L, + 42337311500,-25.208985132051900,L, + 44261734750,-25.575626271603074,L, + 46186158000,-25.951160317453589,L, + 48110581250,-26.335252590334122,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127902873702130,L, + 53883851000,-27.535858119995360,L, + 55808274250,-27.951200215875946,L, + 57732697500,-28.373652538682503,L, + 59657120750,-28.802935050659066,L, + 61581544000,-29.238783081975292,L, + 63505967250,-29.680928547706262,L, + 65430390500,-30.129084579906838,L, + 67354813750,-30.582967725726458,L, + 69279237000,-31.042246720990381,L, + 71203660250,-31.506603961902201,L, + 73128083500,-31.975643297490056,L, + 75052506750,-32.448931010741653,L, + 76976930000,-32.925917271428808,L, + 78901353250,-33.405929305918278,L, + 80825776500,-33.888065529239611,L, + 82750199750,-34.371045280923447,L, + 84674623000,-34.852962938191347,L, + 86599046250,-35.330557085714631,L, + 88523469500,-35.797543949456902,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556459928514265,L, + 94296739250,-36.556545305878892,L, + 96221162500,-36.223027168707645,L, + 98145585750,-35.750087795103717,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709163550500683,L, + 103918855500,-34.166382077538891,L, + 105843278750,-33.614991151128308,L, + 107767702000,-33.057306205397573,L, + 109692125250,-32.494874278193677,L, + 111616548500,-31.928791614878421,L, + 113540971750,-31.359905158908877,L, + 115465395000,-30.788856948067025,L, + 117389818250,-30.216193397486467,L, + 119314241500,-29.642368714747011,L, + 121238664750,-29.067802956482609,L, + 123163088000,-28.492866660455736,L, + 125087511250,-27.917940609712616,L, + 127011934500,-27.343374851448214,L, + 128936357750,-26.769551876256049,L, + 130860781000,-26.196886618128200,L, + 132785204250,-25.625838407286349,L, + 134709627500,-25.056950243769514,L, + 136634050750,-24.490867580454253,L, + 138558474000,-23.928433945703070,L, + 140482897250,-23.370750707519623,L, + 142407320500,-22.819358073561748,L, + 144331743750,-22.276583430789124,L, + 146256167000,-21.746255100231540,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762718105034871,L, + 152029436750,-20.429199967863628,L, + 153953860000,-20.429199967863628,L, + 155878283250,-20.421562108824272,L, + 157802706500,-20.389152861212608,L, + 159727129750,-20.328217328532428,L, + 161651553000,-20.237252869166326,L, + 163575976250,-20.114738058476693,L, + 165500399500,-19.958840698218669,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537332649064862,L, + 171273669250,-19.265550884253983,L, + 173198092500,-18.947798531234398,L, + 175122515750,-18.578939287750266,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660579372708352,L, + 180895785500,-17.092459605473142,L, + 182820208750,-16.184840162901054,L, + 184744632000,-14.682714224782744,L, + 186669055250,-12.614080444073341,L, + 188593478500,-10.056813222594638,L, + 190517901750,-7.148863171673649,L, + 192442325000,-4.084527401968980,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499820243636,L, + 198215594750,3.836405839329814,L, + 200140018000,5.470570006274860,L, + 202064441250,6.454279036861247,L, + 203988864500,6.778357852599547,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713146194612120,L, + 209762134250,6.632681016660785,L, + 211686557500,6.521288315260854,L, + 213610980750,6.379743743769944,L, + 215535404000,6.208854545170587,L, + 217459827250,6.009455710088813,L, + 219384250500,5.782418514530623,L, + 221308673750,5.528639420824579,L, + 223233097000,5.249042638942747,L, + 225157520250,4.944578418953403,L, + 227081943500,4.616224758568328,L, + 229006366750,4.264978011632696,L, + 230930790000,3.891859291427422,L, + 232855213250,3.497912122791635,L, + 234779636500,3.084192837169160,L, + 236704059750,2.651776549024035,L, + 238628483000,2.201754381076171,L, + 240552906250,1.735226740833877,L, + 242477329500,1.253306308801629,L, + 244401752750,0.757112542312221,L, + 246326176000,0.247773649878319,L, + 248250599250,-0.273580852646514,L, + 250175022500,-0.805817447344748,L, + 252099445750,-1.347804644011265,L, + 254023869000,-1.898409031450239,L, + 255948292250,-2.456505069191648,L, + 257872715500,-3.020971325551143,L, + 259797138750,-3.590694906580836,L, + 261721562000,-4.164571669512714,L, + 263645985250,-4.741510491626869,L, + 265570408500,-5.320430495487148,L, + 267494831750,-5.900269159790792,L, + 269419255000,-6.479974635405622,L, + 271343678250,-7.058521967069312,L, + 273268101500,-7.634891322161418,L, + 275192524750,-8.208102995422868,L, + 277116948000,-8.777174720273647,L, + 279041371250,-9.341166491929240,L, + 280965794500,-9.899148550888874,L, + 282890217750,-10.450229557465867,L, + 284814641000,-10.993527563483642,L, + 286739064250,-11.528193064164180,L, + 288663487500,-12.053405583033433,L, + 290587910750,-12.568365134184866,L, + 292512334000,-13.072304175110499,L, + 294436757250,-13.564477361417156,L, + 296361180500,-14.044177768525740,L, + 298285603750,-14.510707863367267,L, + 300210027000,-14.963411094007769,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232349251220302,L, + 307907720000,-16.623674694431866,L, + 309832143250,-16.998279834555262,L, + 311756566500,-17.355664360233789,L, + 313680989750,-17.695351865772839,L, + 315605413000,-18.016893266234479,L, + 317529836250,-18.319865089890179,L, + 319454259500,-18.603872893315362,L, + 321378682750,-18.868541016105684,L, + 323303106000,-19.113519411066179,L, + 325227529250,-19.338469983832933,L, + 327151952500,-19.543081960798713,L, + 329076375750,-19.727088964585885,L, + 331000799000,-19.890209249891186,L, + 332925222250,-20.032208882735546,L, + 334849645500,-20.152845391403432,L, + 336774068750,-20.251937775881835,L, + 338698492000,-20.329277715401069,L, + 340622915250,-20.384704700515645,L, + 342547338500,-20.418051391590890,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741425073775684 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-23.741425073775684,L, + 1924423250,-23.712958552862403,L, + 3848846500,-23.630542075242563,L, + 5773269750,-23.498191792148123,L, + 7697693000,-23.319464524589364,L, + 9622116250,-23.097483376564266,L, + 11546539500,-22.835055555821707,L, + 13470962750,-22.534679204050612,L, + 15395386000,-22.198601453487910,L, + 17319809250,-21.828852577864385,L, + 19244232500,-21.427271605614063,L, + 21168655750,-20.995543885914639,L, + 23093079000,-20.535189135856442,L, + 25017502250,-20.047622912144952,L, + 26941925500,-19.534134412986006,L, + 28866348750,-18.995903553558730,L, + 30790772000,-18.434052192434287,L, + 32715195250,-17.849584367420672,L, + 34639618500,-17.243463135190858,L, + 36564041750,-16.616567882600478,L, + 38488465000,-15.969728477633691,L, + 40412888250,-15.303725269403166,L, + 42337311500,-14.619294210791974,L, + 44261734750,-13.917115759396177,L, + 46186158000,-13.197849028470676,L, + 48110581250,-12.462116419003593,L, + 50035004500,-11.710506181037191,L, + 51959427750,-10.943585220272581,L, + 53883851000,-10.161899098069718,L, + 55808274250,-9.365972885221044,L, + 57732697500,-8.556328237424420,L, + 59657120750,-7.733471442452070,L, + 61581544000,-6.897902384773877,L, + 63505967250,-6.050131194143473,L, + 65430390500,-5.190672696069548,L, + 67354813750,-4.320063914175593,L, + 69279237000,-3.438882853220119,L, + 71203660250,-2.547742522681136,L, + 73128083500,-1.647338427915218,L, + 75052506750,-0.738489658014238,L, + 76976930000,0.177852629819029,L, + 78901353250,1.100454359139780,L, + 80825776500,2.027705579655452,L, + 82750199750,2.957317591024712,L, + 84674623000,3.885832930145364,L, + 86599046250,4.807453833629132,L, + 88523469500,5.710875698069427,L, + 90447892750,6.567329766682198,L, + 92372316000,7.204927498815149,L, + 94296739250,7.229658760026083,L, + 96221162500,6.588599829531232,L, + 98145585750,5.679579771292474,L, + 100070009000,4.698153304549336,L, + 101994432250,3.678810750176221,L, + 103918855500,2.635545671678581,L, + 105843278750,1.575716637391744,L, + 107767702000,0.503790537672038,L, + 109692125250,-0.577261975439261,L, + 111616548500,-1.665319221070368,L, + 113540971750,-2.758781707655886,L, + 115465395000,-3.856385850199365,L, + 117389818250,-4.957102424570250,L, + 119314241500,-6.060042225515970,L, + 121238664750,-7.164409962885045,L, + 123163088000,-8.269489320588269,L, + 125087511250,-9.374557579234091,L, + 127011934500,-10.478930012358219,L, + 128936357750,-11.581868105756648,L, + 130860781000,-12.682581265032947,L, + 132785204250,-13.780196079747006,L, + 134709627500,-14.873652163030176,L, + 136634050750,-15.961713250642692,L, + 138558474000,-17.042764856619492,L, + 140482897250,-18.114689622317876,L, + 142407320500,-19.174519830543474,L, + 144331743750,-20.217774877200771,L, + 146256167000,-21.237124261763057,L, + 148180590250,-22.218543898317026,L, + 150105013500,-23.127575482500010,L, + 152029436750,-23.768631424787095,L, + 153953860000,-23.768631424787095,L, + 155878283250,-23.769408358805183,L, + 157802706500,-23.772724415647222,L, + 159727129750,-23.778945010433802,L, + 161651553000,-23.788228945063128,L, + 163575976250,-23.800746974264449,L, + 165500399500,-23.816663022577849,L, + 167424822750,-23.836221269266154,L, + 169349246000,-23.859708582274500,L, + 171273669250,-23.887461348419514,L, + 173198092500,-23.919909869618905,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001113988661071,L, + 178971362250,-24.051356860195614,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184122077282129,L, + 184744632000,-24.283374971206026,L, + 186669055250,-24.405345074309356,L, + 188593478500,-24.545999159887227,L, + 190517901750,-24.698664133120545,L, + 192442325000,-24.854322436757620,L, + 194366748250,-25.002756107800124,L, + 196291171500,-25.134235541775389,L, + 198215594750,-25.241150200400739,L, + 200140018000,-25.318758224844895,L, + 202064441250,-25.365073737606686,L, + 203988864500,-25.380231634922215,L, + 205913287750,-25.379258332965488,L, + 207837711000,-25.376367455399286,L, + 209762134250,-25.371606813547793,L, + 211686557500,-25.365007143262279,L, + 213610980750,-25.356617963414223,L, + 215535404000,-25.346502453253446,L, + 217459827250,-25.334684518442049,L, + 219384250500,-25.321235875966313,L, + 221308673750,-25.306206044697724,L, + 223233097000,-25.289644543507759,L, + 225157520250,-25.271609429004364,L, + 227081943500,-25.252160465342783,L, + 229006366750,-25.231359124225538,L, + 230930790000,-25.209253216976823,L, + 232855213250,-25.185922998319384,L, + 234779636500,-25.161416279577416,L, + 236704059750,-25.135794532453442,L, + 238628483000,-25.109144841859383,L, + 240552906250,-25.081508188930258,L, + 242477329500,-25.052963120841525,L, + 244401752750,-25.023574524390295,L, + 246326176000,-24.993402163731805,L, + 248250599250,-24.962516048305051,L, + 250175022500,-24.930994725285490,L, + 252099445750,-24.898889421091891,L, + 254023869000,-24.866276975352420,L, + 255948292250,-24.833217152222311,L, + 257872715500,-24.799785083782439,L, + 259797138750,-24.766035411546163,L, + 261721562000,-24.732043267594349,L, + 263645985250,-24.697871831176826,L, + 265570408500,-24.663577451354243,L, + 267494831750,-24.629236967754760,L, + 269419255000,-24.594891361513397,L, + 271343678250,-24.560624302447494,L, + 273268101500,-24.526485309428526,L, + 275192524750,-24.492535854159026,L, + 277116948000,-24.458822040415892,L, + 279041371250,-24.425415585185409,L, + 280965794500,-24.392360884697180,L, + 282890217750,-24.359722825748321,L, + 284814641000,-24.327538974379266,L, + 286739064250,-24.295872509839839,L, + 288663487500,-24.264757583075891,L, + 290587910750,-24.234255665789952,L, + 292512334000,-24.204404324022455,L, + 294436757250,-24.175251369097587,L, + 296361180500,-24.146837782150378,L, + 298285603750,-24.119204544315838,L, + 300210027000,-24.092390929181697,L, + 302134450250,-24.066431087693811,L, + 304058873500,-24.041362585892607,L, + 305983296750,-24.017224697365815,L, + 307907720000,-23.994044742870120,L, + 309832143250,-23.971860288445949,L, + 311756566500,-23.950684994471647,L, + 313680989750,-23.930566672271404,L, + 315605413000,-23.911518982223559,L, + 317529836250,-23.893576075273959,L, + 319454259500,-23.876753319348243,L, + 321378682750,-23.861072912561209,L, + 323303106000,-23.846563883216831,L, + 325227529250,-23.833239891693445,L, + 327151952500,-23.821119721011275,L, + 329076375750,-23.810218739095951,L, + 331000799000,-23.800557436514982,L, + 332925222250,-23.792146058552124,L, + 334849645500,-23.784999973133008,L, + 336774068750,-23.779132840635977,L, + 338698492000,-23.774551491250197,L, + 340622915250,-23.771266170259427,L, + 342547338500,-23.769287122947418,L, + 344471761750,-23.768631424787095,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941902161 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941902161,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853182771,L, + 5773269750,0.000044747306674,L, + 7697693000,0.000044604319555,L, + 9622116250,0.000044426746172,L, + 11546539500,0.000044216820243,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707728764,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377370846,L, + 25017502250,0.000041987470468,L, + 26941925500,0.000041576859076,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229973820,L, + 34639618500,0.000039745402319,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727204810,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647856516,L, + 44261734750,0.000037086698285,L, + 46186158000,0.000036511926737,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323548218,L, + 51959427750,0.000034710872569,L, + 53883851000,0.000034086471715,L, + 55808274250,0.000033450774936,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147163438,L, + 61581544000,0.000031480078178,L, + 63505967250,0.000030803366826,L, + 65430390500,0.000030117447750,L, + 67354813750,0.000029422772059,L, + 69279237000,0.000028719819966,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291234801,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836823625,L, + 78901353250,0.000025102159270,L, + 80825776500,0.000024364246201,L, + 82750199750,0.000023625038011,L, + 84674623000,0.000022887485102,L, + 86599046250,0.000022156533305,L, + 88523469500,0.000021441830540,L, + 90447892750,0.000020767847673,L, + 92372316000,0.000020280482204,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565671205521,L, + 98145585750,0.245429664850235,L, + 100070009000,0.254731416702271,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518383502960,L, + 107767702000,0.278088867664337,L, + 109692125250,0.282116174697876,L, + 111616548500,0.285697221755981,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787862777710,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296753019094467,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840228796005,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681318044662,L, + 130860781000,0.307010591030121,L, + 132785204250,0.308217555284500,L, + 134709627500,0.309312224388123,L, + 136634050750,0.310304552316666,L, + 138558474000,0.311203926801682,L, + 140482897250,0.312020391225815,L, + 142407320500,0.312765061855316,L, + 144331743750,0.313452184200287,L, + 146256167000,0.314102530479431,L, + 148180590250,0.314752757549286,L, + 150105013500,0.315492510795593,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999179363251,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450118303299,L, + 163575976250,0.323262572288513,L, + 165500399500,0.322943359613419,L, + 167424822750,0.322556555271149,L, + 169349246000,0.322150558233261,L, + 171273669250,0.321765452623367,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198970079422,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136713027954,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961044549942,L, + 184744632000,0.351049661636353,L, + 186669055250,0.387221664190292,L, + 188593478500,0.435898840427399,L, + 190517901750,0.494094997644424,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323174476624,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784999072551727,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418446063995,L, + 209762134250,0.788208425045013,L, + 211686557500,0.785149097442627,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568055152893,L, + 217459827250,0.771091759204865,L, + 219384250500,0.764856159687042,L, + 221308673750,0.757886171340942,L, + 223233097000,0.750207185745239,L, + 225157520250,0.741845130920410,L, + 227081943500,0.732826828956604,L, + 229006366750,0.723180055618286,L, + 230930790000,0.712932467460632,L, + 232855213250,0.702112674713135,L, + 234779636500,0.690750002861023,L, + 236704059750,0.678873777389526,L, + 238628483000,0.666514039039612,L, + 240552906250,0.653700888156891,L, + 242477329500,0.640465140342712,L, + 244401752750,0.626837253570557,L, + 246326176000,0.612848460674286,L, + 248250599250,0.598529517650604,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026172161102,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523073017597198,L, + 259797138750,0.507425606250763,L, + 261721562000,0.491664201021194,L, + 263645985250,0.475818753242493,L, + 265570408500,0.459918767213821,L, + 267494831750,0.443993628025055,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182509899139,L, + 273268101500,0.396352618932724,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980101585388,L, + 279041371250,0.349490165710449,L, + 280965794500,0.334165275096893,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108411073685,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855823755264,L, + 292512334000,0.247015208005905,L, + 294436757250,0.233497753739357,L, + 296361180500,0.220322906970978,L, + 298285603750,0.207509815692902,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040380477905,L, + 304058873500,0.171418070793152,L, + 305983296750,0.160225331783295,L, + 307907720000,0.149477675557137,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373729228973,L, + 313680989750,0.120044350624084,L, + 315605413000,0.111213266849518,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091886818409,L, + 321378682750,0.087822906672955,L, + 323303106000,0.081094801425934,L, + 325227529250,0.074916541576385,L, + 327151952500,0.069296777248383,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763070195913,L, + 332925222250,0.055863030254841,L, + 334849645500,0.052549600601196,L, + 336774068750,0.049828298389912,L, + 338698492000,0.047704104334116,L, + 340622915250,0.046181920915842,L, + 342547338500,0.045265797525644,L, + 344471761750,0.044959727674723,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520822525 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520822525,L, + 1924423250,0.000028513213692,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455802749,L, + 7697693000,0.000028408023354,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278544050,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009617381,L, + 19244232500,0.000027902300644,L, + 21168655750,0.000027786925784,L, + 23093079000,0.000027663912988,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396430596,L, + 28866348750,0.000027252630389,L, + 30790772000,0.000027102521926,L, + 32715195250,0.000026946385333,L, + 34639618500,0.000026784469810,L, + 36564041750,0.000026617017284,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266374334,L, + 42337311500,0.000026083595003,L, + 44261734750,0.000025896093575,L, + 46186158000,0.000025704039217,L, + 48110581250,0.000025507608370,L, + 50035004500,0.000025306955649,L, + 51959427750,0.000025102239306,L, + 53883851000,0.000024893603040,L, + 55808274250,0.000024681190553,L, + 57732697500,0.000024465143724,L, + 59657120750,0.000024245604436,L, + 61581544000,0.000024022703656,L, + 63505967250,0.000023796590540,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100392355,L, + 71203660250,0.000022862917831,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891592041,L, + 80825776500,0.000021645026209,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151583496,L, + 86599046250,0.000020907338694,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443329049,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919067144394,L, + 98145585750,0.245930299162865,L, + 100070009000,0.255280971527100,L, + 101994432250,0.262665212154388,L, + 103918855500,0.268771350383759,L, + 105843278750,0.273961126804352,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868614912033,L, + 113540971750,0.288967937231064,L, + 115465395000,0.291741758584976,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479761600494,L, + 121238664750,0.298507750034332,L, + 123163088000,0.300342202186584,L, + 125087511250,0.302003324031830,L, + 127011934500,0.303509086370468,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115359067917,L, + 132785204250,0.307243108749390,L, + 134709627500,0.308270901441574,L, + 136634050750,0.309211075305939,L, + 138558474000,0.310076862573624,L, + 140482897250,0.310882657766342,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149780035019,L, + 148180590250,0.313986390829086,L, + 150105013500,0.315037399530411,L, + 152029436750,0.316851437091827,L, + 153953860000,0.316844671964645,L, + 155878283250,0.317553371191025,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131417036057,L, + 161651553000,0.317930370569229,L, + 163575976250,0.317365050315857,L, + 165500399500,0.316432744264603,L, + 167424822750,0.315173506736755,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128514051437,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460848569870,L, + 177046939000,0.308580935001373,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893633842468,L, + 182820208750,0.314245015382767,L, + 184744632000,0.333418756723404,L, + 186669055250,0.365034878253937,L, + 188593478500,0.407707035541534,L, + 190517901750,0.458806842565536,L, + 192442325000,0.514501214027405,L, + 194366748250,0.570195496082306,L, + 196291171500,0.621295332908630,L, + 198215594750,0.663967490196228,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757382869720,L, + 203988864500,0.721108734607697,L, + 205913287750,0.720690846443176,L, + 207837711000,0.719448924064636,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565634727478,L, + 213610980750,0.710962831974030,L, + 215535404000,0.706613361835480,L, + 217459827250,0.701538145542145,L, + 219384250500,0.695759415626526,L, + 221308673750,0.689300000667572,L, + 223233097000,0.682183504104614,L, + 225157520250,0.674434065818787,L, + 227081943500,0.666076540946960,L, + 229006366750,0.657136380672455,L, + 230930790000,0.647639513015747,L, + 232855213250,0.637612462043762,L, + 234779636500,0.627082228660583,L, + 236704059750,0.616076052188873,L, + 238628483000,0.604621708393097,L, + 240552906250,0.592747390270233,L, + 242477329500,0.580481231212616,L, + 244401752750,0.567851722240448,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617751121521,L, + 250175022500,0.528070926666260,L, + 252099445750,0.514275848865509,L, + 254023869000,0.500261485576630,L, + 255948292250,0.486056417226791,L, + 257872715500,0.471689224243164,L, + 259797138750,0.457188218832016,L, + 261721562000,0.442581474781036,L, + 263645985250,0.427896797657013,L, + 265570408500,0.413161724805832,L, + 267494831750,0.398403346538544,L, + 269419255000,0.383648246526718,L, + 271343678250,0.368922650814056,L, + 273268101500,0.354252517223358,L, + 275192524750,0.339662730693817,L, + 277116948000,0.325178265571594,L, + 279041371250,0.310823142528534,L, + 280965794500,0.296620965003967,L, + 282890217750,0.282594501972198,L, + 284814641000,0.268766105175018,L, + 286739064250,0.255157351493835,L, + 288663487500,0.241789340972900,L, + 290587910750,0.228682190179825,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328385949135,L, + 296361180500,0.191118717193604,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721807956696,L, + 302134450250,0.156567454338074,L, + 304058873500,0.145796656608582,L, + 305983296750,0.135423958301544,L, + 307907720000,0.125463604927063,L, + 309832143250,0.115928895771503,L, + 311756566500,0.106832444667816,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002484619617,L, + 317529836250,0.082290887832642,L, + 319454259500,0.075062155723572,L, + 321378682750,0.068325698375702,L, + 323303106000,0.062090396881104,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156759262085,L, + 329076375750,0.046473443508148,L, + 331000799000,0.042321562767029,L, + 332925222250,0.038707256317139,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114548772573,L, + 338698492000,0.031146051362157,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886198997498,L, + 344471761750,0.028602691367269,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378902435 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378902435,L, + 1924423250,0.000042358497012,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204530473,L, + 7697693000,0.000042076404497,L, + 9622116250,0.000041917286580,L, + 11546539500,0.000041729181248,L, + 13470962750,0.000041513878386,L, + 15395386000,0.000041272989620,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720187826,L, + 21168655750,0.000040410788642,L, + 23093079000,0.000040080893086,L, + 25017502250,0.000039731519792,L, + 26941925500,0.000039363574615,L, + 28866348750,0.000038977941585,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156671508,L, + 34639618500,0.000037722464185,L, + 36564041750,0.000037273402995,L, + 38488465000,0.000036810084566,L, + 40412888250,0.000036333080061,L, + 42337311500,0.000035842906073,L, + 44261734750,0.000035340068280,L, + 46186158000,0.000034825032344,L, + 48110581250,0.000034298253013,L, + 50035004500,0.000033760163205,L, + 51959427750,0.000033211163100,L, + 53883851000,0.000032651649235,L, + 55808274250,0.000032082021789,L, + 57732697500,0.000031502640923,L, + 59657120750,0.000030913888622,L, + 61581544000,0.000030316130506,L, + 63505967250,0.000029709746741,L, + 65430390500,0.000029095113860,L, + 67354813750,0.000028472633858,L, + 69279237000,0.000027842741474,L, + 71203660250,0.000027205893275,L, + 73128083500,0.000026562620405,L, + 75052506750,0.000025913532227,L, + 76976930000,0.000025259367249,L, + 78901353250,0.000024601054974,L, + 80825776500,0.000023939832317,L, + 82750199750,0.000023277447326,L, + 84674623000,0.000022616546630,L, + 86599046250,0.000021961561288,L, + 88523469500,0.000021321133318,L, + 90447892750,0.000020717199732,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803947687149,L, + 96221162500,0.232568249106407,L, + 98145585750,0.245435819029808,L, + 100070009000,0.254741251468658,L, + 101994432250,0.262134134769440,L, + 103918855500,0.268283277750015,L, + 105843278750,0.273539334535599,L, + 107767702000,0.278113365173340,L, + 109692125250,0.282144129276276,L, + 111616548500,0.285728603601456,L, + 113540971750,0.288937807083130,L, + 115465395000,0.291825562715530,L, + 117389818250,0.294433951377869,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940479755402,L, + 123163088000,0.300888657569885,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304271042346954,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066202163696,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369504451752,L, + 136634050750,0.310361981391907,L, + 138558474000,0.311260968446732,L, + 140482897250,0.312076270580292,L, + 142407320500,0.312819063663483,L, + 144331743750,0.313503146171570,L, + 146256167000,0.314148783683777,L, + 148180590250,0.314791977405548,L, + 150105013500,0.315520226955414,L, + 152029436750,0.316851466894150,L, + 153953860000,0.319212585687637,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968743085861,L, + 159727129750,0.318790286779404,L, + 161651553000,0.318605154752731,L, + 163575976250,0.318420708179474,L, + 165500399500,0.318241685628891,L, + 167424822750,0.318071484565735,L, + 169349246000,0.317913085222244,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642778158188,L, + 175122515750,0.317536920309067,L, + 177046939000,0.317455232143402,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382931709290,L, + 182820208750,0.324425876140594,L, + 184744632000,0.345687240362167,L, + 186669055250,0.380745768547058,L, + 188593478500,0.428064078092575,L, + 190517901750,0.484727591276169,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244359493256,L, + 196291171500,0.664907872676849,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284710407257,L, + 202064441250,0.768545985221863,L, + 203988864500,0.775589048862457,L, + 205913287750,0.775146603584290,L, + 207837711000,0.773831665515900,L, + 209762134250,0.771663188934326,L, + 211686557500,0.768661379814148,L, + 213610980750,0.764847099781036,L, + 215535404000,0.760241806507111,L, + 217459827250,0.754868328571320,L, + 219384250500,0.748750090599060,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376490116119,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323005199432,L, + 229006366750,0.707857489585876,L, + 230930790000,0.697802603244781,L, + 232855213250,0.687186241149902,L, + 234779636500,0.676037311553955,L, + 236704059750,0.664384245872498,L, + 238628483000,0.652257084846497,L, + 240552906250,0.639684796333313,L, + 242477329500,0.626697897911072,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600434303284,L, + 248250599250,0.585550725460052,L, + 250175022500,0.571207940578461,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764259338379,L, + 255948292250,0.526724457740784,L, + 257872715500,0.511513113975525,L, + 259797138750,0.496159940958023,L, + 261721562000,0.480694890022278,L, + 263645985250,0.465147316455841,L, + 265570408500,0.449546337127686,L, + 267494831750,0.433920741081238,L, + 269419255000,0.418298542499542,L, + 271343678250,0.402707636356354,L, + 273268101500,0.387175440788269,L, + 275192524750,0.371728360652924,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194123029709,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665728092194,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103778362274,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240646004676819,L, + 294436757250,0.227382719516754,L, + 296361180500,0.214455619454384,L, + 298285603750,0.201883494853973,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874028682709,L, + 304058873500,0.166470363736153,L, + 305983296750,0.155488088726997,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847342967987,L, + 311756566500,0.125216528773308,L, + 313680989750,0.116062462329865,L, + 315605413000,0.107397496700287,L, + 317529836250,0.099232852458954,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446907043457,L, + 323303106000,0.077845335006714,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310533434153,L, + 331000799000,0.056914690881968,L, + 332925222250,0.053088188171387,L, + 334849645500,0.049837116152048,L, + 336774068750,0.047166705131531,L, + 338698492000,0.045082449913025,L, + 340622915250,0.043588884174824,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389750480652,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_069" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063677966594696 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,-0.063677966594696,L, + 207837711000,-0.063677966594696,L, + 209762134250,-0.063678205013275,L, + 211686557500,-0.063524723052979,L, + 213610980750,-0.063371717929840,L, + 215535404000,-0.063218891620636,L, + 217459827250,-0.063065409660339,L, + 219384250500,-0.062912404537201,L, + 221308673750,-0.062759160995483,L, + 225157520250,-0.062453150749207,L, + 227081943500,-0.062299907207489,L, + 229006366750,-0.062146842479706,L, + 230930790000,-0.061993658542633,L, + 232855213250,-0.061840593814850,L, + 234779636500,-0.061687350273132,L, + 238628483000,-0.061381340026855,L, + 240552906250,-0.061228096485138,L, + 242477329500,-0.061075091362000,L, + 244401752750,-0.060921847820282,L, + 246326176000,-0.060768783092499,L, + 248250599250,-0.060615837574005,L, + 250175022500,-0.060462534427643,L, + 252099445750,-0.060309529304504,L, + 254023869000,-0.060156285762787,L, + 257872715500,-0.059850275516510,L, + 259797138750,-0.059697031974792,L, + 261721562000,-0.059544026851654,L, + 263645985250,-0.059390723705292,L, + 267494831750,-0.059084713459015,L, + 269419255000,-0.058931469917297,L, + 271343678250,-0.058778464794159,L, + 273268101500,-0.058625221252441,L, + 277116948000,-0.058319211006165,L, + 279041371250,-0.058165729045868,L, + 280965794500,-0.058012902736664,L, + 282890217750,-0.057859420776367,L, + 284814641000,-0.058243393898010,L, + 286739064250,-0.058418750762939,L, + 288663487500,-0.058593928813934,L, + 294436757250,-0.059119999408722,L, + 296361180500,-0.059295117855072,L, + 298285603750,-0.059470474720001,L, + 300210027000,-0.059645891189575,L, + 304058873500,-0.059996604919434,L, + 305983296750,-0.060171723365784,L, + 307907720000,-0.060347080230713,L, + 309832143250,-0.060522496700287,L, + 311756566500,-0.060697615146637,L, + 313680989750,-0.060872972011566,L, + 315605413000,-0.061048388481140,L, + 317529836250,-0.061223685741425,L, + 319454259500,-0.061399102210999,L, + 323303106000,-0.061749815940857,L, + 325227529250,-0.061924755573273,L, + 327151952500,-0.062100052833557,L, + 329076375750,-0.062275469303131,L, + 332925222250,-0.062626183032990,L, + 334849645500,-0.062801599502563,L, + 336774068750,-0.062976896762848,L, + 338698492000,-0.063152313232422,L, + 340622915250,-0.063327193260193,L, + 342547338500,-0.063502550125122,L, + 344471761750,-0.063677966594696,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339878082275 + KeyVer: 4005 + KeyCount: 58 + Key: + 0,-0.087339878082275,L, + 207837711000,-0.087339878082275,L, + 209762134250,-0.167690396308899,L, + 211686557500,-0.165458679199219,L, + 215535404000,-0.160994529724121,L, + 217459827250,-0.158762812614441,L, + 219384250500,-0.156530737876892,L, + 221308673750,-0.154299020767212,L, + 223233097000,-0.152066826820374,L, + 225157520250,-0.149834752082825,L, + 227081943500,-0.147603034973145,L, + 229006366750,-0.145370960235596,L, + 230930790000,-0.143139243125916,L, + 232855213250,-0.140907168388367,L, + 234779636500,-0.138675332069397,L, + 236704059750,-0.136443138122559,L, + 238628483000,-0.134211182594299,L, + 240552906250,-0.131979346275330,L, + 242477329500,-0.129747390747070,L, + 244401752750,-0.127515673637390,L, + 246326176000,-0.125283479690552,L, + 250175022500,-0.120819807052612,L, + 252099445750,-0.118587493896484,L, + 254023869000,-0.116355776786804,L, + 255948292250,-0.114123821258545,L, + 257872715500,-0.111891746520996,L, + 259797138750,-0.109660029411316,L, + 261721562000,-0.107427835464478,L, + 263645985250,-0.105195999145508,L, + 265570408500,-0.102964043617249,L, + 267494831750,-0.100731968879700,L, + 269419255000,-0.098500132560730,L, + 271343678250,-0.096268177032471,L, + 273268101500,-0.094036340713501,L, + 275192524750,-0.091804385185242,L, + 277116948000,-0.089572310447693,L, + 279041371250,-0.087340474128723,L, + 280965794500,-0.085108399391174,L, + 282890217750,-0.082876563072205,L, + 284814641000,-0.082875967025757,L, + 286739064250,-0.083019852638245,L, + 290587910750,-0.083307862281799,L, + 294436757250,-0.083595633506775,L, + 296361180500,-0.083739876747131,L, + 302134450250,-0.084171891212463,L, + 304058873500,-0.084315776824951,L, + 309832143250,-0.084747791290283,L, + 311756566500,-0.084891915321350,L, + 315605413000,-0.085179924964905,L, + 317529836250,-0.085323810577393,L, + 323303106000,-0.085755825042725,L, + 325227529250,-0.085900068283081,L, + 327151952500,-0.086043834686279,L, + 331000799000,-0.086331844329834,L, + 332925222250,-0.086475729942322,L, + 338698492000,-0.086907744407654,L, + 340622915250,-0.087051868438721,L, + 344471761750,-0.087339878082275,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138125419617 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.415138125419617,L, + 3848846500,0.427590727806091,L, + 5773269750,0.433816790580750,L, + 7697693000,0.440042614936829,L, + 9622116250,0.446268916130066,L, + 11546539500,0.452494978904724,L, + 13470962750,0.458721280097961,L, + 19244232500,0.477399468421936,L, + 21168655750,0.483625769615173,L, + 23093079000,0.489851832389832,L, + 25017502250,0.496078133583069,L, + 30790772000,0.514756321907043,L, + 32715195250,0.520982623100281,L, + 36564041750,0.533434748649597,L, + 38488465000,0.539661049842834,L, + 44261734750,0.558339238166809,L, + 46186158000,0.564565539360046,L, + 48110581250,0.570791602134705,L, + 50035004500,0.577017903327942,L, + 57732697500,0.601922154426575,L, + 61581544000,0.614374756813049,L, + 63505967250,0.620600581169128,L, + 65430390500,0.626826643943787,L, + 67354813750,0.633052945137024,L, + 71203660250,0.645505070686340,L, + 73128083500,0.651731371879578,L, + 76976930000,0.664183497428894,L, + 78901353250,0.670409798622131,L, + 80825776500,0.676635861396790,L, + 82750199750,0.682862162590027,L, + 90447892750,0.707766413688660,L, + 92372316000,0.713992714881897,L, + 94296739250,0.720218777656555,L, + 96221162500,0.726445078849792,L, + 98145585750,0.732671141624451,L, + 100070009000,0.738896965980530,L, + 101994432250,0.745123267173767,L, + 103918855500,0.751349329948425,L, + 105843278750,0.757575631141663,L, + 111616548500,0.776253819465637,L, + 113540971750,0.782480120658875,L, + 115465395000,0.788706183433533,L, + 117389818250,0.794932484626770,L, + 123163088000,0.813610672950745,L, + 125087511250,0.819836974143982,L, + 128936357750,0.832289099693298,L, + 130860781000,0.838515400886536,L, + 136634050750,0.857193589210510,L, + 138558474000,0.863419890403748,L, + 142407320500,0.875872015953064,L, + 144331743750,0.882098317146301,L, + 150105013500,0.900776505470276,L, + 153953860000,0.913229107856750,L, + 155878283250,0.919454932212830,L, + 157802706500,0.925680994987488,L, + 161651553000,0.938133597373962,L, + 167424822750,0.956811785697937,L, + 169349246000,0.963038086891174,L, + 171273669250,0.969263911247253,L, + 175122515750,0.981716513633728,L, + 180895785500,1.000394701957703,L, + 182820208750,1.006621003150940,L, + 186669055250,1.019073128700256,L, + 188593478500,1.025299429893494,L, + 190517901750,1.031525492668152,L, + 192442325000,1.037751317024231,L, + 196291171500,1.050203919410706,L, + 202064441250,1.068882107734680,L, + 203988864500,1.075108408927917,L, + 205913287750,1.081334233283997,L, + 207837711000,1.087560534477234,L, + 209762134250,-0.038915872573853,L, + 211686557500,-0.038899183273315,L, + 213610980750,-0.038882732391357,L, + 215535404000,-0.038866162300110,L, + 219384250500,-0.038832783699036,L, + 221308673750,-0.038816332817078,L, + 223233097000,-0.038799762725830,L, + 225157520250,-0.038783073425293,L, + 227081943500,-0.038766503334045,L, + 229006366750,-0.038749814033508,L, + 230930790000,-0.038733363151550,L, + 232855213250,-0.038716673851013,L, + 234779636500,-0.038700103759766,L, + 236704059750,-0.038683414459229,L, + 242477329500,-0.038633704185486,L, + 244401752750,-0.038617014884949,L, + 246326176000,-0.038600444793701,L, + 248250599250,-0.038583755493164,L, + 250175022500,-0.038567304611206,L, + 252099445750,-0.038550615310669,L, + 254023869000,-0.038534045219421,L, + 255948292250,-0.038517355918884,L, + 257872715500,-0.038500785827637,L, + 259797138750,-0.038484334945679,L, + 263645985250,-0.038450956344604,L, + 265570408500,-0.038434386253357,L, + 267494831750,-0.038417696952820,L, + 269419255000,-0.038401246070862,L, + 271343678250,-0.038384675979614,L, + 275192524750,-0.038351297378540,L, + 277116948000,-0.038334727287292,L, + 279041371250,-0.038318276405334,L, + 280965794500,-0.038301587104797,L, + 282890217750,-0.038285017013550,L, + 284814641000,0.028067827224731,L, + 286739064250,0.040553927421570,L, + 288663487500,0.053040146827698,L, + 292512334000,0.078012347221375,L, + 294436757250,0.090498566627502,L, + 298285603750,0.115470767021179,L, + 300210027000,0.127956986427307,L, + 304058873500,0.152929186820984,L, + 305983296750,0.165415406227112,L, + 309832143250,0.190387606620789,L, + 311756566500,0.202873826026917,L, + 313680989750,0.215360164642334,L, + 315605413000,0.227846026420593,L, + 317529836250,0.240332245826721,L, + 319454259500,0.252818584442139,L, + 321378682750,0.265304446220398,L, + 323303106000,0.277790904045105,L, + 327151952500,0.302762866020203,L, + 331000799000,0.327735304832458,L, + 332925222250,0.340221285820007,L, + 336774068750,0.365193724632263,L, + 338698492000,0.377679705619812,L, + 340622915250,0.390165925025940,L, + 342547338500,0.402651906013489,L, + 344471761750,0.415138125419617,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,30.670462448994193,L, + 1924423250,29.595230164190237,L, + 3848846500,28.520004709575449,L, + 5773269750,27.444772424771493,L, + 7697693000,26.369543555062119,L, + 9622116250,25.294316392900040,L, + 11546539500,24.219084108096084,L, + 13470962750,23.143856945934004,L, + 15395386000,22.068634906413802,L, + 17319809250,20.993399206515257,L, + 19244232500,19.918170336805886,L, + 21168655750,18.842944882191098,L, + 23093079000,17.767716012481724,L, + 25017502250,16.692488850319645,L, + 26941925500,15.617256565515689,L, + 30790772000,13.466802241191528,L, + 32715195250,12.391573371482156,L, + 34639618500,11.316345355546430,L, + 36564041750,10.241114778289765,L, + 38488465000,9.165886762354040,L, + 40412888250,8.090659600191959,L, + 42337311500,7.015429449822117,L, + 44261734750,5.940199726339099,L, + 46186158000,4.864972564177019,L, + 50035004500,2.714515678531920,L, + 51959427750,1.639286275214019,L, + 53883851000,0.564057458865500,L, + 55808274250,-0.511171304122167,L, + 57732697500,-1.586400120470686,L, + 59657120750,-2.661629096901764,L, + 61581544000,-3.736857112837491,L, + 63505967250,-4.812081713678632,L, + 65430390500,-5.887311864048474,L, + 67354813750,-6.962542868191962,L, + 69279237000,-8.037770884127688,L, + 71203660250,-9.112999753837061,L, + 73128083500,-10.188231184867371,L, + 75052506750,-11.263456639482159,L, + 76976930000,-12.338683801644239,L, + 78901353250,-13.413915232674549,L, + 80825776500,-14.489139833515690,L, + 82750199750,-15.564372118319648,L, + 86599046250,-17.714826442643808,L, + 90447892750,-19.865291012251724,L, + 92372316000,-20.940511344224632,L, + 96221162500,-23.090969083643376,L, + 98145585750,-24.166204783541922,L, + 100070009000,-25.241428530609415,L, + 103918855500,-27.391886270028159,L, + 107767702000,-29.542340594352318,L, + 111616548500,-31.692805163960234,L, + 113540971750,-32.768030618575018,L, + 117389818250,-34.918488357993766,L, + 119314241500,-35.993720642797726,L, + 121238664750,-37.068946097412514,L, + 123163088000,-38.144174967121884,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369864991344585,L, + 130860781000,-42.445083615770201,L, + 132785204250,-43.520312485479579,L, + 134709627500,-44.595544770283531,L, + 136634050750,-45.670766809803737,L, + 138558474000,-46.745999094607690,L, + 140482897250,-47.821238209600821,L, + 142407320500,-48.896453418931856,L, + 144331743750,-49.971682288641226,L, + 146256167000,-51.046921403634350,L, + 150105013500,-53.197372312863926,L, + 153953860000,-55.347830052282674,L, + 155878283250,-56.423055506897462,L, + 157802706500,-57.498287791701415,L, + 159727129750,-58.573516661410785,L, + 161651553000,-59.648738700930991,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175354449274934,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325798528315346,L, + 180895785500,-70.401041058403052,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626720837342006,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 219384250500,-70.146199870281080,L, + 221308673750,-67.084588065394769,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838164751511634,L, + 230930790000,-51.776563191909084,L, + 232855213250,-48.714951387022779,L, + 236704059750,-42.591748267817678,L, + 238628483000,-39.530136462931367,L, + 240552906250,-36.468531488234234,L, + 242477329500,-33.406919683347930,L, + 244401752750,-30.345318123745376,L, + 246326176000,-27.283711441500945,L, + 248250599250,-24.222097929067345,L, + 250175022500,-21.160491246822918,L, + 252099445750,-18.098893102314950,L, + 254023869000,-15.037283004975937,L, + 255948292250,-11.975678884052446,L, + 257872715500,-8.914073909355309,L, + 259797138750,-5.852461677582180,L, + 261721562000,-2.790856062554809,L, + 263645985250,0.270741868509746,L, + 265570408500,3.332353886839464,L, + 267494831750,6.393959074980013,L, + 269419255000,9.455570452979495,L, + 273268101500,15.578780402373770,L, + 275192524750,18.640387084618197,L, + 277116948000,21.701997181957214,L, + 279041371250,24.763605571748933,L, + 280965794500,27.825203716256901,L, + 282890217750,30.886808690954037,L, + 284814641000,30.872540425777903,L, + 292512334000,30.846462763526830,L, + 296361180500,30.833430762590464,L, + 298285603750,30.826907931933111,L, + 300210027000,30.820395346559515,L, + 302134450250,30.813869100807576,L, + 304058873500,30.807349685244809,L, + 307907720000,30.794317684308442,L, + 313680989750,30.774759437620141,L, + 315605413000,30.768243437151956,L, + 317529836250,30.761717191400020,L, + 319454259500,30.755194360742667,L, + 321378682750,30.748681775369068,L, + 323303106000,30.742165774900887,L, + 331000799000,30.716088112649814,L, + 332925222250,30.709572112181633,L, + 334849645500,30.703052696618862,L, + 336774068750,30.696529865961512,L, + 340622915250,30.683497865025146,L, + 342547338500,30.676978449462379,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 80825776500,133.527274952592649,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489135939047202 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,7.489135939047202,L, + 1924423250,6.812488734768874,L, + 3848846500,6.135837688509139,L, + 5773269750,5.459193045551751,L, + 7697693000,4.782544560612954,L, + 9622116250,4.105894795013688,L, + 11546539500,3.429249084839242,L, + 13470962750,2.752600386457034,L, + 15395386000,2.075953609065530,L, + 17319809250,1.399304377074793,L, + 19244232500,0.722659680756551,L, + 21168655750,0.046008557790590,L, + 23093079000,-0.630637395842748,L, + 25017502250,-1.307285187090457,L, + 26941925500,-1.983933885472665,L, + 28866348750,-2.660580235977346,L, + 30790772000,-3.337229788133200,L, + 32715195250,-4.013876778968116,L, + 34639618500,-4.690526117680559,L, + 36564041750,-5.367172041298417,L, + 38488465000,-6.043821380010860,L, + 40412888250,-6.720463461647309,L, + 42337311500,-7.397115361680691,L, + 46186158000,-8.750411477784638,L, + 48110581250,-9.427062097157551,L, + 50035004500,-10.103705886341292,L, + 51959427750,-10.780355651940559,L, + 53883851000,-11.457003709992533,L, + 55808274250,-12.133650060497214,L, + 57732697500,-12.810293849680955,L, + 59657120750,-13.486944469053867,L, + 61581544000,-14.163594234653134,L, + 63505967250,-14.840240585157815,L, + 65430390500,-15.516890350757080,L, + 67354813750,-16.193534993714469,L, + 69279237000,-16.870183051766443,L, + 71203660250,-17.546829402271122,L, + 73128083500,-18.223479167870391,L, + 75052506750,-18.900123810827779,L, + 76976930000,-19.576770161332458,L, + 80825776500,-20.930066277436406,L, + 82750199750,-21.606719458130257,L, + 84674623000,-22.283364101087646,L, + 86599046250,-22.960012159139620,L, + 88523469500,-23.636663632286176,L, + 94296739250,-25.666607806442098,L, + 96221162500,-26.343252449399486,L, + 100070009000,-27.696545150408848,L, + 101994432250,-28.373194916008114,L, + 103918855500,-29.049846389154673,L, + 105843278750,-29.726496154753939,L, + 111616548500,-31.756435206267980,L, + 113540971750,-32.433078141678081,L, + 115465395000,-33.109727907277346,L, + 117389818250,-33.786374257782022,L, + 119314241500,-34.463027438475876,L, + 121238664750,-35.139673788980559,L, + 123163088000,-35.816323554579824,L, + 125087511250,-36.492966489989918,L, + 127011934500,-37.169619670683772,L, + 136634050750,-40.552851423207173,L, + 142407320500,-42.582800720004975,L, + 144331743750,-43.259447070509651,L, + 146256167000,-43.936090005919752,L, + 152029436750,-45.966039302717547,L, + 153953860000,-46.642682238127641,L, + 155878283250,-47.319332003726906,L, + 157802706500,-47.995978354231589,L, + 159727129750,-48.672628119830854,L, + 161651553000,-49.349274470335537,L, + 163575976250,-50.025917405745631,L, + 165500399500,-50.702570586439485,L, + 167424822750,-51.379220352038750,L, + 171273669250,-52.732513053048109,L, + 173198092500,-53.409166233741963,L, + 175122515750,-54.085809169152057,L, + 178971362250,-55.439108700350594,L, + 180895785500,-56.115755050855270,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 190517901750,-59.498993633567849,L, + 192442325000,-60.175653644450868,L, + 194366748250,-60.852286334577208,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558864906406761,L, + 203988864500,-64.235524917289780,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256083786691491,L, + 211686557500,-62.369032292613909,L, + 213610980750,-60.481973968347162,L, + 215535404000,-58.594908813891237,L, + 217459827250,-56.707857319813655,L, + 219384250500,-54.820802410641491,L, + 221308673750,-52.933744086374737,L, + 223233097000,-51.046689177202573,L, + 225157520250,-49.159630852935820,L, + 227081943500,-47.272569113574484,L, + 229006366750,-45.385514204402320,L, + 232855213250,-41.611397555868813,L, + 234779636500,-39.724342646696648,L, + 236704059750,-37.837284322429895,L, + 238628483000,-35.950229413257730,L, + 240552906250,-34.063164258801805,L, + 242477329500,-32.176112764724230,L, + 244401752750,-30.289054440457477,L, + 246326176000,-28.401999531285309,L, + 248250599250,-26.514936084376679,L, + 250175022500,-24.627881175204514,L, + 252099445750,-22.740824558485055,L, + 254023869000,-20.853761111576425,L, + 255948292250,-18.966707909951552,L, + 257872715500,-17.079651293232093,L, + 259797138750,-15.192591261418048,L, + 261721562000,-13.305534644698589,L, + 263645985250,-11.418477174205485,L, + 265570408500,-9.531418849938733,L, + 267494831750,-7.644363086992920,L, + 269419255000,-5.757300493857938,L, + 271343678250,-3.870246011572594,L, + 273268101500,-1.983187687305842,L, + 275192524750,-0.096127982327022,L, + 277116948000,1.790923625142372,L, + 279041371250,3.677979174644773,L, + 280965794500,5.565040060232463,L, + 282890217750,7.452098384499215,L, + 284814641000,7.454202936537222,L, + 286739064250,7.455329063976626,L, + 288663487500,7.456456898963323,L, + 292512334000,7.458707446294839,L, + 294436757250,7.459836988828828,L, + 296361180500,7.460958847400001,L, + 298285603750,7.462092658802222,L, + 300210027000,7.463216224920687,L, + 302134450250,7.464344913681030,L, + 304058873500,7.465468479799496,L, + 305983296750,7.466598876107131,L, + 307907720000,7.467723295999242,L, + 309832143250,7.468851984759586,L, + 311756566500,7.469978112198990,L, + 313680989750,7.471106800959332,L, + 315605413000,7.472230367077798,L, + 317529836250,7.473360763385434,L, + 319454259500,7.474485183277546,L, + 321378682750,7.475611310716950,L, + 323303106000,7.476735730609062,L, + 325227529250,7.477866980690343,L, + 327151952500,7.478994815677040,L, + 329076375750,7.480121796890090,L, + 331000799000,7.481249631876787,L, + 332925222250,7.482372344221607,L, + 334849645500,7.483501032981949,L, + 336774068750,7.484628867968646,L, + 338698492000,7.485755849181697,L, + 340622915250,7.486880269073809,L, + 342547338500,7.488006396513213,L, + 344471761750,7.489135939047202,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672845840454,L, + 13470962750,0.715156376361847,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123198986053,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507256984711,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654474020004272,L, + 38488465000,0.643440961837769,L, + 40412888250,0.637924253940582,L, + 42337311500,0.632407784461975,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758724689484,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493573904037,L, + 92372316000,0.488977044820786,L, + 94296739250,0.483460456132889,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 101994432250,0.461394190788269,L, + 105843278750,0.450361013412476,L, + 107767702000,0.444844484329224,L, + 109692125250,0.439327895641327,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778189182281,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195364952087,L, + 127011934500,0.389678835868835,L, + 128936357750,0.384162247180939,L, + 130860781000,0.378645628690720,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 142407320500,0.345546275377274,L, + 144331743750,0.340029686689377,L, + 150105013500,0.323480010032654,L, + 152029436750,0.317963421344757,L, + 153953860000,0.312446862459183,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897126197815,L, + 161651553000,0.290380597114563,L, + 163575976250,0.284864008426666,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281213998795,L, + 175122515750,0.251764625310898,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698374867439,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665197491646,L, + 188593478500,0.213148668408394,L, + 192442325000,0.202115491032600,L, + 194366748250,0.196598961949348,L, + 196291171500,0.191082373261452,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016078114510,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982960343361,L, + 209762134250,0.015798300504684,L, + 217459827250,0.016306862235069,L, + 219384250500,0.016434006392956,L, + 221308673750,0.016561141237617,L, + 225157520250,0.016815425828099,L, + 227081943500,0.016942566260695,L, + 230930790000,0.017196843400598,L, + 232855213250,0.017323985695839,L, + 234779636500,0.017451124265790,L, + 240552906250,0.017832545563579,L, + 242477329500,0.017959687858820,L, + 244401752750,0.018086826428771,L, + 254023869000,0.018722528591752,L, + 255948292250,0.018849670886993,L, + 259797138750,0.019103948026896,L, + 261721562000,0.019231090322137,L, + 263645985250,0.019358228892088,L, + 269419255000,0.019739650189877,L, + 271343678250,0.019866792485118,L, + 273268101500,0.019993929192424,L, + 275192524750,0.020121069625020,L, + 277116948000,0.020248211920261,L, + 280965794500,0.020502492785454,L, + 282890217750,0.020629635080695,L, + 284814641000,0.207228913903236,L, + 286739064250,0.224859356880188,L, + 290587910750,0.260120213031769,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381069183350,L, + 298285603750,0.330641984939575,L, + 302134450250,0.365902781486511,L, + 305983296750,0.401163697242737,L, + 307907720000,0.418794095516205,L, + 309832143250,0.436424553394318,L, + 311756566500,0.454054951667786,L, + 313680989750,0.471685379743576,L, + 315605413000,0.489315867424011,L, + 317529836250,0.506946206092834,L, + 319454259500,0.524576663970947,L, + 321378682750,0.542207062244415,L, + 323303106000,0.559837579727173,L, + 325227529250,0.577467978000641,L, + 327151952500,0.595098435878754,L, + 329076375750,0.612728774547577,L, + 331000799000,0.630359292030334,L, + 332925222250,0.647989690303802,L, + 334849645500,0.665620148181915,L, + 336774068750,0.683250546455383,L, + 338698492000,0.700881004333496,L, + 340622915250,0.718511521816254,L, + 342547338500,0.736141920089722,L, + 344471761750,0.753772258758545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739140987396,L, + 7697693000,0.731705963611603,L, + 11546539500,0.720672905445099,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606669902802,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540374755859,L, + 28866348750,0.671023726463318,L, + 32715195250,0.659990668296814,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 51959427750,0.604824900627136,L, + 55808274250,0.593791842460632,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725606918335,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692429542542,L, + 69279237000,0.555175840854645,L, + 71203660250,0.549659311771393,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626194000244,L, + 76976930000,0.533109605312347,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493514299393,L, + 92372316000,0.488977044820786,L, + 94296739250,0.483460485935211,L, + 96221162500,0.477943897247314,L, + 98145585750,0.472427368164062,L, + 100070009000,0.466910749673843,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877631902695,L, + 107767702000,0.444844514131546,L, + 109692125250,0.439327895641327,L, + 111616548500,0.433811366558075,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778218984604,L, + 117389818250,0.417261600494385,L, + 119314241500,0.411745071411133,L, + 121238664750,0.406228482723236,L, + 128936357750,0.384162247180939,L, + 130860781000,0.378645658493042,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095981836319,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062864065170,L, + 142407320500,0.345546245574951,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314331769943,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181771278381,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 215535404000,0.016429286450148,L, + 217459827250,0.016639616340399,L, + 219384250500,0.016849942505360,L, + 221308673750,0.017060274258256,L, + 223233097000,0.017270604148507,L, + 227081943500,0.017691260203719,L, + 229006366750,0.017901591956615,L, + 234779636500,0.018532576039433,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953233957291,L, + 242477329500,0.019373893737793,L, + 244401752750,0.019584219902754,L, + 248250599250,0.020004879683256,L, + 250175022500,0.020215211436152,L, + 252099445750,0.020425533875823,L, + 254023869000,0.020635865628719,L, + 257872715500,0.021056525409222,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477183327079,L, + 263645985250,0.021687509492040,L, + 265570408500,0.021897841244936,L, + 269419255000,0.022318497300148,L, + 271343678250,0.022528827190399,L, + 273268101500,0.022739153355360,L, + 275192524750,0.022949483245611,L, + 277116948000,0.023159814998507,L, + 279041371250,0.023370141163468,L, + 282890217750,0.023790800943971,L, + 284814641000,0.239524751901627,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 300210027000,0.372233808040619,L, + 304058873500,0.405411064624786,L, + 305983296750,0.421999722719193,L, + 307907720000,0.438588291406631,L, + 309832143250,0.455176979303360,L, + 313680989750,0.488354235887527,L, + 315605413000,0.504942834377289,L, + 317529836250,0.521531462669373,L, + 319454259500,0.538120150566101,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885975837708,L, + 327151952500,0.604474604129791,L, + 329076375750,0.621063292026520,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829117298126,L, + 336774068750,0.687417805194855,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183630466461,L, + 344471761750,0.753772258758545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772318363190 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,0.753772318363190,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739200592041,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639847278595,L, + 17319809250,0.704123079776764,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 26941925500,0.676540374755859,L, + 28866348750,0.671023786067963,L, + 30790772000,0.665507256984711,L, + 32715195250,0.659990668296814,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891195774078,L, + 46186158000,0.621374607086182,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758724689484,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626194000244,L, + 76976930000,0.533109545707703,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 86599046250,0.505526781082153,L, + 88523469500,0.500010132789612,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 107767702000,0.444844454526901,L, + 109692125250,0.439327925443649,L, + 111616548500,0.433811366558075,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261660099030,L, + 119314241500,0.411745071411133,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195364952087,L, + 127011934500,0.389678835868835,L, + 128936357750,0.384162217378616,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513157606125,L, + 148180590250,0.328996539115906,L, + 152029436750,0.317963421344757,L, + 153953860000,0.312446832656860,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897185802460,L, + 161651553000,0.290380567312241,L, + 167424822750,0.273830890655518,L, + 169349246000,0.268314301967621,L, + 175122515750,0.251764625310898,L, + 177046939000,0.246248036623001,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181786179543,L, + 186669055250,0.218665197491646,L, + 190517901750,0.207632079720497,L, + 192442325000,0.202115491032600,L, + 194366748250,0.196598947048187,L, + 196291171500,0.191082373261452,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049195885658,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016063213348,L, + 205913287750,0.163499489426613,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008632257581,L, + 213610980750,0.016218958422542,L, + 215535404000,0.016429286450148,L, + 217459827250,0.016639616340399,L, + 219384250500,0.016849948093295,L, + 221308673750,0.017060272395611,L, + 223233097000,0.017270604148507,L, + 225157520250,0.017480932176113,L, + 227081943500,0.017691263929009,L, + 229006366750,0.017901590093970,L, + 230930790000,0.018111918121576,L, + 232855213250,0.018322248011827,L, + 234779636500,0.018532579764724,L, + 238628483000,0.018953235819936,L, + 240552906250,0.019163565710187,L, + 242477329500,0.019373893737793,L, + 244401752750,0.019584223628044,L, + 246326176000,0.019794549793005,L, + 248250599250,0.020004879683256,L, + 250175022500,0.020215211436152,L, + 252099445750,0.020425537601113,L, + 254023869000,0.020635865628719,L, + 255948292250,0.020846197381616,L, + 257872715500,0.021056527271867,L, + 261721562000,0.021477179601789,L, + 263645985250,0.021687511354685,L, + 267494831750,0.022108171135187,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528829053044,L, + 273268101500,0.022739157080650,L, + 275192524750,0.022949488833547,L, + 277116948000,0.023159814998507,L, + 279041371250,0.023370144888759,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790802806616,L, + 284814641000,0.239524737000465,L, + 286739064250,0.256113380193710,L, + 288663487500,0.272702008485794,L, + 290587910750,0.289290606975555,L, + 292512334000,0.305879265069962,L, + 298285603750,0.355645149946213,L, + 300210027000,0.372233808040619,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999722719193,L, + 307907720000,0.438588321208954,L, + 309832143250,0.455176949501038,L, + 311756566500,0.471765607595444,L, + 313680989750,0.488354206085205,L, + 319454259500,0.538120090961456,L, + 321378682750,0.554708778858185,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885975837708,L, + 327151952500,0.604474663734436,L, + 329076375750,0.621063232421875,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829176902771,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006433486938,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183630466461,L, + 344471761750,0.753772318363190,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_068" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.016793012619019,L, + 3848846500,0.013911485671997,L, + 5773269750,0.012470483779907,L, + 7697693000,0.011029720306396,L, + 9622116250,0.009588718414307,L, + 11546539500,0.008147954940796,L, + 13470962750,0.006706953048706,L, + 17319809250,0.003825426101685,L, + 19244232500,0.002384424209595,L, + 21168655750,0.000943601131439,L, + 23093079000,-0.000497400760651,L, + 25017502250,-0.001938164234161,L, + 26941925500,-0.003379166126251,L, + 30790772000,-0.006260693073273,L, + 32715195250,-0.007701694965363,L, + 34639618500,-0.009142458438873,L, + 36564041750,-0.010583460330963,L, + 38488465000,-0.012024223804474,L, + 40412888250,-0.013465225696564,L, + 42337311500,-0.014905989170074,L, + 44261734750,-0.016346514225006,L, + 46186158000,-0.017787516117096,L, + 50035004500,-0.020669043064117,L, + 51959427750,-0.022110044956207,L, + 53883851000,-0.023550808429718,L, + 55808274250,-0.024991869926453,L, + 57732697500,-0.026432633399963,L, + 59657120750,-0.027873635292053,L, + 61581544000,-0.029314398765564,L, + 63505967250,-0.030755400657654,L, + 67354813750,-0.033636927604675,L, + 69279237000,-0.035077929496765,L, + 71203660250,-0.036518692970276,L, + 73128083500,-0.037959754467010,L, + 75052506750,-0.039400458335876,L, + 76976930000,-0.040841460227966,L, + 80825776500,-0.043722987174988,L, + 82750199750,-0.045163989067078,L, + 84674623000,-0.046604752540588,L, + 86599046250,-0.048045754432678,L, + 88523469500,-0.049486517906189,L, + 90447892750,-0.050927579402924,L, + 94296739250,-0.053809106349945,L, + 96221162500,-0.055250108242035,L, + 98145585750,-0.056690871715546,L, + 100070009000,-0.058131873607635,L, + 101994432250,-0.059572637081146,L, + 103918855500,-0.061013638973236,L, + 107767702000,-0.063895165920258,L, + 109692125250,-0.065336167812347,L, + 111616548500,-0.066776931285858,L, + 113540971750,-0.068217456340790,L, + 115465395000,-0.069658458232880,L, + 117389818250,-0.071099221706390,L, + 119314241500,-0.072540223598480,L, + 121238664750,-0.073980987071991,L, + 123163088000,-0.075422048568726,L, + 127011934500,-0.078303575515747,L, + 128936357750,-0.079744577407837,L, + 130860781000,-0.081185340881348,L, + 132785204250,-0.082626342773438,L, + 134709627500,-0.084067106246948,L, + 136634050750,-0.085508108139038,L, + 138558474000,-0.086948871612549,L, + 140482897250,-0.088389694690704,L, + 142407320500,-0.089830696582794,L, + 144331743750,-0.091271400451660,L, + 146256167000,-0.092712402343750,L, + 148180590250,-0.094153165817261,L, + 150105013500,-0.095594167709351,L, + 153953860000,-0.098475694656372,L, + 155878283250,-0.099916696548462,L, + 157802706500,-0.101357519626617,L, + 159727129750,-0.102798521518707,L, + 161651553000,-0.104239284992218,L, + 163575976250,-0.105680286884308,L, + 167424822750,-0.108561813831329,L, + 169349246000,-0.110002815723419,L, + 171273669250,-0.111443579196930,L, + 173198092500,-0.112884581089020,L, + 175122515750,-0.114325344562531,L, + 177046939000,-0.115766346454620,L, + 180895785500,-0.118647873401642,L, + 182820208750,-0.120088875293732,L, + 184744632000,-0.121529638767242,L, + 188593478500,-0.117826759815216,L, + 190517901750,-0.115975856781006,L, + 192442325000,-0.114124417304993,L, + 194366748250,-0.112273156642914,L, + 198215594750,-0.108570277690887,L, + 200140018000,-0.106719076633453,L, + 202064441250,-0.104867637157440,L, + 203988864500,-0.103016436100006,L, + 207837711000,-0.099313557147980,L, + 209762134250,-0.097462594509125,L, + 211686557500,-0.095611155033112,L, + 213610980750,-0.093759953975677,L, + 215535404000,-0.091908454895020,L, + 217459827250,-0.090057015419006,L, + 219384250500,-0.088205873966217,L, + 221308673750,-0.086354434490204,L, + 223233097000,-0.084503233432770,L, + 225157520250,-0.082651793956757,L, + 227081943500,-0.080800294876099,L, + 229006366750,-0.078949332237244,L, + 230930790000,-0.077097892761230,L, + 232855213250,-0.075246751308441,L, + 234779636500,-0.073395311832428,L, + 236704059750,-0.071544051170349,L, + 240552906250,-0.067841172218323,L, + 242477329500,-0.065989971160889,L, + 244401752750,-0.064138531684875,L, + 246326176000,-0.062287628650665,L, + 248250599250,-0.060436189174652,L, + 250175022500,-0.058584690093994,L, + 252099445750,-0.056733489036560,L, + 254023869000,-0.054882049560547,L, + 255948292250,-0.053030848503113,L, + 259797138750,-0.049327969551086,L, + 261721562000,-0.047476768493652,L, + 263645985250,-0.045625329017639,L, + 265570408500,-0.043774366378784,L, + 267494831750,-0.041922926902771,L, + 269419255000,-0.040071427822113,L, + 271343678250,-0.038220226764679,L, + 273268101500,-0.036368787288666,L, + 275192524750,-0.034517645835876,L, + 277116948000,-0.032666206359863,L, + 279041371250,-0.030815243721008,L, + 280965794500,-0.028963744640350,L, + 282890217750,-0.027112305164337,L, + 284814641000,-0.025261104106903,L, + 286739064250,-0.023409664630890,L, + 288663487500,-0.021558523178101,L, + 290587910750,-0.019707083702087,L, + 292512334000,-0.017855584621429,L, + 294436757250,-0.016004383563995,L, + 296361180500,-0.014152944087982,L, + 298285603750,-0.012301981449127,L, + 300210027000,-0.010450541973114,L, + 302134450250,-0.008599162101746,L, + 304058873500,-0.008604228496552,L, + 305983296750,-0.007685661315918,L, + 307907720000,-0.006197392940521,L, + 309832143250,-0.004554927349091,L, + 311756566500,-0.002857625484467,L, + 313680989750,-0.001148700714111,L, + 315605413000,0.000547945499420,L, + 317529836250,0.002215921878815,L, + 319454259500,0.003842532634735,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934762001038,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009754240512848,L, + 329076375750,0.011040151119232,L, + 331000799000,0.012231111526489,L, + 332925222250,0.013316214084625,L, + 334849645500,0.014284193515778,L, + 336774068750,0.015121579170227,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016337037086487,L, + 342547338500,0.016673386096954,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469923019409 + KeyVer: 4005 + KeyCount: 100 + Key: + 0,-0.000469923019409,L, + 3848846500,-0.001145601272583,L, + 5773269750,-0.001483321189880,L, + 7697693000,-0.001821160316467,L, + 9622116250,-0.002158880233765,L, + 38488465000,-0.007226467132568,L, + 40412888250,-0.007564187049866,L, + 42337311500,-0.007902026176453,L, + 44261734750,-0.008240103721619,L, + 67354813750,-0.012294173240662,L, + 69279237000,-0.012631893157959,L, + 96221162500,-0.017361640930176,L, + 98145585750,-0.017699360847473,L, + 107767702000,-0.019388556480408,L, + 109692125250,-0.019726276397705,L, + 111616548500,-0.020064115524292,L, + 113540971750,-0.020402193069458,L, + 123163088000,-0.022091388702393,L, + 125087511250,-0.022429108619690,L, + 152029436750,-0.027158856391907,L, + 153953860000,-0.027496576309204,L, + 180895785500,-0.032226324081421,L, + 182820208750,-0.032564043998718,L, + 184744632000,-0.032901883125305,L, + 188593478500,-0.034139513969421,L, + 190517901750,-0.034757971763611,L, + 192442325000,-0.035376667976379,L, + 194366748250,-0.035995125770569,L, + 196291171500,-0.036613821983337,L, + 198215594750,-0.037232637405396,L, + 200140018000,-0.037851095199585,L, + 202064441250,-0.038469910621643,L, + 203988864500,-0.039088368415833,L, + 205913287750,-0.039707064628601,L, + 207837711000,-0.040325880050659,L, + 209762134250,-0.040944457054138,L, + 211686557500,-0.041563153266907,L, + 213610980750,-0.042181730270386,L, + 217459827250,-0.043419122695923,L, + 219384250500,-0.044037699699402,L, + 221308673750,-0.044656395912170,L, + 223233097000,-0.045274972915649,L, + 227081943500,-0.046512365341187,L, + 229006366750,-0.047130942344666,L, + 230930790000,-0.047749638557434,L, + 232855213250,-0.048368215560913,L, + 234779636500,-0.048987030982971,L, + 236704059750,-0.049605488777161,L, + 240552906250,-0.050842881202698,L, + 242477329500,-0.051461338996887,L, + 244401752750,-0.052080154418945,L, + 246326176000,-0.052698612213135,L, + 248250599250,-0.053317427635193,L, + 250175022500,-0.053936123847961,L, + 252099445750,-0.054554581642151,L, + 254023869000,-0.055173397064209,L, + 255948292250,-0.055791974067688,L, + 259797138750,-0.057029366493225,L, + 261721562000,-0.057647943496704,L, + 263645985250,-0.058266639709473,L, + 265570408500,-0.058885216712952,L, + 269419255000,-0.060122609138489,L, + 271343678250,-0.060741186141968,L, + 273268101500,-0.061359882354736,L, + 275192524750,-0.061978459358215,L, + 277116948000,-0.062597274780273,L, + 279041371250,-0.063215732574463,L, + 280965794500,-0.063834428787231,L, + 282890217750,-0.064453244209290,L, + 284814641000,-0.065071702003479,L, + 286739064250,-0.065690398216248,L, + 288663487500,-0.066308856010437,L, + 290587910750,-0.066927671432495,L, + 292512334000,-0.067546367645264,L, + 294436757250,-0.068164825439453,L, + 296361180500,-0.068783640861511,L, + 298285603750,-0.069402098655701,L, + 302134450250,-0.070639729499817,L, + 304058873500,-0.070653200149536,L, + 305983296750,-0.068115234375000,L, + 307907720000,-0.064002275466919,L, + 309832143250,-0.059463739395142,L, + 311756566500,-0.054773211479187,L, + 313680989750,-0.050050020217896,L, + 315605413000,-0.045361876487732,L, + 317529836250,-0.040753364562988,L, + 319454259500,-0.036257505416870,L, + 321378682750,-0.031902432441711,L, + 323303106000,-0.027712106704712,L, + 325227529250,-0.023710846900940,L, + 327151952500,-0.019921183586121,L, + 329076375750,-0.016368031501770,L, + 331000799000,-0.013077378273010,L, + 332925222250,-0.010077834129333,L, + 334849645500,-0.007402658462524,L, + 336774068750,-0.005089163780212,L, + 338698492000,-0.003180742263794,L, + 340622915250,-0.001730203628540,L, + 342547338500,-0.000800251960754,L, + 344471761750,-0.000469923019409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097072601318 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.062097072601318,L, + 11546539500,0.093533277511597,L, + 13470962750,0.098772525787354,L, + 15395386000,0.104011893272400,L, + 17319809250,0.109251499176025,L, + 19244232500,0.114490866661072,L, + 21168655750,0.119730114936829,L, + 32715195250,0.151166319847107,L, + 34639618500,0.156405568122864,L, + 38488465000,0.166884303092957,L, + 40412888250,0.172123908996582,L, + 42337311500,0.177363157272339,L, + 53883851000,0.208799362182617,L, + 55808274250,0.214038610458374,L, + 61581544000,0.229756712913513,L, + 63505967250,0.234996199607849,L, + 75052506750,0.266432404518127,L, + 76976930000,0.271671652793884,L, + 78901353250,0.276911139488220,L, + 80825776500,0.282150387763977,L, + 82750199750,0.287389874458313,L, + 86599046250,0.297868371009827,L, + 88523469500,0.303108096122742,L, + 92372316000,0.313586592674255,L, + 94296739250,0.318826079368591,L, + 96221162500,0.324065327644348,L, + 98145585750,0.329304814338684,L, + 100070009000,0.334544062614441,L, + 101994432250,0.339783549308777,L, + 105843278750,0.350262045860291,L, + 111616548500,0.365980505943298,L, + 115465395000,0.376459002494812,L, + 117389818250,0.381698489189148,L, + 119314241500,0.386937737464905,L, + 121238664750,0.392177224159241,L, + 123163088000,0.397416472434998,L, + 125087511250,0.402655959129333,L, + 128936357750,0.413134455680847,L, + 130860781000,0.418373942375183,L, + 132785204250,0.423613190650940,L, + 136634050750,0.434092164039612,L, + 138558474000,0.439331412315369,L, + 140482897250,0.444570899009705,L, + 142407320500,0.449810147285461,L, + 144331743750,0.455049633979797,L, + 148180590250,0.465528130531311,L, + 150105013500,0.470767617225647,L, + 152029436750,0.476006865501404,L, + 153953860000,0.481246352195740,L, + 155878283250,0.486485600471497,L, + 159727129750,0.496964573860168,L, + 161651553000,0.502203583717346,L, + 163575976250,0.507443308830261,L, + 165500399500,0.512682557106018,L, + 167424822750,0.517922043800354,L, + 171273669250,0.528400540351868,L, + 173198092500,0.533640027046204,L, + 175122515750,0.538879275321960,L, + 177046939000,0.544118762016296,L, + 178971362250,0.549358010292053,L, + 180895785500,0.554597496986389,L, + 182820208750,0.559836745262146,L, + 184744632000,0.565076231956482,L, + 188593478500,0.584237933158875,L, + 190517901750,0.593819022178650,L, + 192442325000,0.603399634361267,L, + 194366748250,0.612980723381042,L, + 196291171500,0.622561573982239,L, + 198215594750,0.632142663002014,L, + 203988864500,0.660885214805603,L, + 205913287750,0.670466303825378,L, + 207837711000,0.680047154426575,L, + 209762134250,0.689628243446350,L, + 211686557500,0.699208855628967,L, + 213610980750,0.708789944648743,L, + 217459827250,0.727951645851135,L, + 219384250500,0.737532734870911,L, + 223233097000,0.756694436073303,L, + 225157520250,0.766275525093079,L, + 227081943500,0.775856375694275,L, + 229006366750,0.785437464714050,L, + 230930790000,0.795018076896667,L, + 232855213250,0.804599165916443,L, + 238628483000,0.833341717720032,L, + 240552906250,0.842922806739807,L, + 242477329500,0.852503418922424,L, + 244401752750,0.862084746360779,L, + 246326176000,0.871665358543396,L, + 248250599250,0.881246447563171,L, + 252099445750,0.900408148765564,L, + 254023869000,0.909989237785339,L, + 257872715500,0.929150938987732,L, + 259797138750,0.938732028007507,L, + 265570408500,0.967474579811096,L, + 267494831750,0.977055668830872,L, + 271343678250,0.996217370033264,L, + 273268101500,1.005798459053040,L, + 280965794500,1.044121861457825,L, + 282890217750,1.053702950477600,L, + 286739064250,1.072864651679993,L, + 288663487500,1.082445740699768,L, + 292512334000,1.101607441902161,L, + 294436757250,1.111188530921936,L, + 300210027000,1.139931082725525,L, + 302134450250,1.149512171745300,L, + 304058873500,0.047215580940247,L, + 305983296750,0.047753691673279,L, + 307907720000,0.048625826835632,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582766532898,L, + 313680989750,0.051584124565125,L, + 315605413000,0.052578330039978,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432200431824,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972669601440,L, + 329076375750,0.058726191520691,L, + 331000799000,0.059423804283142,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061829924583435,L, + 342547338500,0.062026858329773,L, + 344471761750,0.062097072601318,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 17319809250,70.051813486140802,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816736533094897,L, + 25017502250,67.071726819187660,L, + 28866348750,65.581680070616500,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 36564041750,62.601607064041680,L, + 38488465000,61.856583689756100,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 48110581250,58.131480478706536,L, + 50035004500,57.386463934610127,L, + 53883851000,55.896424016228138,L, + 55808274250,55.151407472131730,L, + 57732697500,54.406387512940732,L, + 61581544000,52.916340764369572,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426307676176748,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936264342700177,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701201050032601,L, + 76976930000,46.956181090841611,L, + 78901353250,46.211154301461441,L, + 80825776500,45.466141172459615,L, + 84674623000,43.976101254077626,L, + 86599046250,43.231074464697464,L, + 88523469500,42.486057920601048,L, + 92372316000,40.996018002219060,L, + 94296739250,40.251001458122651,L, + 96221162500,39.505981498931654,L, + 98145585750,38.760954709551491,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270914791169496,L, + 103918855500,36.525894831978505,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035851498501927,L, + 109692125250,34.290838369500101,L, + 111616548500,33.545814995214521,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055771661737943,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565731743355954,L, + 121238664750,29.820711784164960,L, + 123163088000,29.075695240068548,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585651906591973,L, + 128936357750,26.840637070042856,L, + 130860781000,26.095613695757276,L, + 132785204250,25.350595444113573,L, + 134709627500,24.605572069827993,L, + 136634050750,23.860550403089704,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370512192255006,L, + 142407320500,21.625492233064008,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390427232849145,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900385606919862,L, + 153953860000,17.155374185465330,L, + 155878283250,16.410347396085164,L, + 157802706500,15.665325729346877,L, + 159727129750,14.920307477703174,L, + 161651553000,14.175292641154057,L, + 163575976250,13.430270120642122,L, + 165500399500,12.685244185035602,L, + 167424822750,11.940229348486485,L, + 169349246000,11.195205974200904,L, + 171273669250,10.450189430104494,L, + 173198092500,9.705166909592560,L, + 175122515750,8.960148657948857,L, + 177046939000,8.215126137436922,L, + 178971362250,7.470110447114159,L, + 180895785500,6.725086219054932,L, + 182820208750,5.980063271656174,L, + 184744632000,5.235048008220234,L, + 186669055250,6.407538344823624,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752519444917230,L, + 192442325000,9.925012769728383,L, + 194366748250,11.097501825671305,L, + 196291171500,12.269993442935165,L, + 198215594750,13.442482498878087,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787466587179454,L, + 203988864500,16.959953935575083,L, + 205913287750,18.132448114159882,L, + 207837711000,19.304937170102804,L, + 209762134250,20.477427933593020,L, + 211686557500,21.649922112177819,L, + 215535404000,23.994903639158245,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684864985571810,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202344106231621,L, + 230930790000,33.374828039532666,L, + 232855213250,34.547322218117465,L, + 240552906250,39.237285272078324,L, + 242477329500,40.409779450663123,L, + 246326176000,42.754760977643549,L, + 248250599250,43.927244910944594,L, + 250175022500,45.099739089529393,L, + 254023869000,47.444720616509827,L, + 255948292250,48.617214795094625,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134683670470679,L, + 265570408500,54.479665197451105,L, + 267494831750,55.652152545846739,L, + 269419255000,56.824646724431538,L, + 277116948000,61.514609778392391,L, + 279041371250,62.687107372071779,L, + 280965794500,63.859591305372824,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817949473515462 + KeyVer: 4005 + KeyCount: 137 + Key: + 0,-47.817949473515462,L, + 1924423250,-47.567626455529442,L, + 5773269750,-47.066994079935739,L, + 9622116250,-46.566354874152857,L, + 11546539500,-46.316038686356009,L, + 13470962750,-46.065715668369982,L, + 15395386000,-45.815402895667717,L, + 19244232500,-45.314763689884842,L, + 21168655750,-45.064447502087987,L, + 23093079000,-44.814121069007385,L, + 25017502250,-44.563804881210530,L, + 26941925500,-44.313492108508264,L, + 28866348750,-44.063169090522237,L, + 30790772000,-43.812856317819971,L, + 32715195250,-43.562533299833952,L, + 36564041750,-43.061894094051070,L, + 38488465000,-42.811577906254222,L, + 40412888250,-42.561258303362784,L, + 42337311500,-42.310945530660518,L, + 46186158000,-41.810306324877637,L, + 48110581250,-41.559983306891617,L, + 50035004500,-41.309663704000180,L, + 51959427750,-41.059350931297914,L, + 53883851000,-40.809027913311887,L, + 55808274250,-40.558715140609621,L, + 57732697500,-40.308398952812766,L, + 59657120750,-40.058072519732164,L, + 61581544000,-39.807756331935309,L, + 63505967250,-39.557436729043872,L, + 65430390500,-39.307120541247016,L, + 69279237000,-38.806481335464142,L, + 73128083500,-38.305848959870438,L, + 75052506750,-38.055529356979001,L, + 76976930000,-37.805206338992974,L, + 80825776500,-37.304573963399271,L, + 82750199750,-37.054247530318662,L, + 84674623000,-36.803934757616396,L, + 86599046250,-36.553615154724959,L, + 88523469500,-36.303292136738939,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802663176239818,L, + 98145585750,-35.051704367565506,L, + 101994432250,-34.551071991971796,L, + 103918855500,-34.300752389080358,L, + 105843278750,-34.050425955999756,L, + 107767702000,-33.800113183297483,L, + 109692125250,-33.549796995500635,L, + 111616548500,-33.299477392609198,L, + 113540971750,-33.049164619906925,L, + 115465395000,-32.798845017015488,L, + 117389818250,-32.548518583934879,L, + 119314241500,-32.298202396138031,L, + 121238664750,-32.047879378152004,L, + 123163088000,-31.797566605449738,L, + 125087511250,-31.547250417652887,L, + 130860781000,-30.796291608978574,L, + 132785204250,-30.545975421181723,L, + 134709627500,-30.295655818290282,L, + 136634050750,-30.045339630493430,L, + 138558474000,-29.795016612507407,L, + 142407320500,-29.294384236913704,L, + 144331743750,-29.044061218927681,L, + 146256167000,-28.793741616036243,L, + 148180590250,-28.543425428239388,L, + 150105013500,-28.293107532895245,L, + 152029436750,-28.042786222456513,L, + 153953860000,-27.792470034659662,L, + 155878283250,-27.542150431768224,L, + 157802706500,-27.291834243971373,L, + 159727129750,-27.041512933532641,L, + 161651553000,-26.791196745735789,L, + 165500399500,-26.290560955047500,L, + 167424822750,-26.040239644608768,L, + 169349246000,-25.789920041717330,L, + 171273669250,-25.539603853920479,L, + 173198092500,-25.289284251029041,L, + 177046939000,-24.788648460340749,L, + 178971362250,-24.538328857449311,L, + 182820208750,-24.037693066761022,L, + 184744632000,-23.787373463869585,L, + 186669055250,-24.181314869533260,L, + 188593478500,-24.575261397838812,L, + 192442325000,-25.363151039355330,L, + 194366748250,-25.757092445019005,L, + 196291171500,-26.151035558229971,L, + 200140018000,-26.938925199746489,L, + 202064441250,-27.332866605410164,L, + 203988864500,-27.726811426168425,L, + 207837711000,-28.514697652590357,L, + 209762134250,-28.908645888443203,L, + 211686557500,-29.302590709201461,L, + 213610980750,-29.696532114865136,L, + 215535404000,-30.090476935623396,L, + 219384250500,-30.878359746950743,L, + 221308673750,-31.272307982803589,L, + 223233097000,-31.666249388467264,L, + 225157520250,-32.060197624320104,L, + 227081943500,-32.454135614889196,L, + 232855213250,-33.635970077163975,L, + 234779636500,-34.029911482827650,L, + 236704059750,-34.423859718680497,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605690765860686,L, + 246326176000,-36.393573577188036,L, + 248250599250,-36.787521813040883,L, + 252099445750,-37.575411454557397,L, + 254023869000,-37.969349445126490,L, + 255948292250,-38.363294265884747,L, + 257872715500,-38.757235671548422,L, + 259797138750,-39.151180492306679,L, + 261721562000,-39.545128728159526,L, + 265570408500,-40.333018369676047,L, + 267494831750,-40.726959775339722,L, + 269419255000,-41.120897765908808,L, + 271343678250,-41.514846001761654,L, + 273268101500,-41.908790822519912,L, + 275192524750,-42.302732228183586,L, + 277116948000,-42.696680464036433,L, + 280965794500,-43.484570105552947,L, + 282890217750,-43.878511511216622,L, + 284814641000,-44.272456331974887,L, + 286739064250,-44.666397737638562,L, + 288663487500,-45.060342558396819,L, + 290587910750,-45.454283964060494,L, + 294436757250,-46.242173605577008,L, + 296361180500,-46.636115011240683,L, + 302134450250,-47.817949473515462,L, + 304058873500,-47.817946058420880,L, + 305983296750,-47.817949473515462,L, + 317529836250,-47.817949473515462,L, + 319454259500,-47.817946058420880,L, + 321378682750,-47.817949473515462,L, + 329076375750,-47.817949473515462,L, + 331000799000,-47.817952888610051,L, + 334849645500,-47.817946058420880,L, + 336774068750,-47.817949473515462,L, + 344471761750,-47.817949473515462,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887856874556746 + KeyVer: 4005 + KeyCount: 165 + Key: + 0,-21.887856874556746,L, + 3848846500,-21.024152133253196,L, + 7697693000,-20.160450807044231,L, + 9622116250,-19.728591606203285,L, + 11546539500,-19.296746065740678,L, + 13470962750,-18.864888572447025,L, + 15395386000,-18.433041324437127,L, + 17319809250,-18.001188953785352,L, + 19244232500,-17.569334875586282,L, + 21168655750,-17.137484212481798,L, + 23093079000,-16.705631841830023,L, + 25017502250,-16.273774348536371,L, + 26941925500,-15.841930515621058,L, + 30790772000,-14.978222359222920,L, + 32715195250,-14.546375111213022,L, + 34639618500,-14.114520179240309,L, + 36564041750,-13.682669516135824,L, + 38488465000,-13.250816291710404,L, + 40412888250,-12.818963921058627,L, + 42337311500,-12.387114111727790,L, + 44261734750,-11.955260033528722,L, + 46186158000,-11.523403394008715,L, + 48110581250,-11.091553584677879,L, + 50035004500,-10.659702067799749,L, + 51959427750,-10.227853112242558,L, + 55808274250,-9.364148370939008,L, + 57732697500,-8.932294292739940,L, + 59657120750,-8.500445337182748,L, + 61581544000,-8.068591258983680,L, + 63505967250,-7.636735473237319,L, + 65430390500,-7.204889079001068,L, + 67354813750,-6.773035427688822,L, + 69279237000,-6.341183910810693,L, + 71203660250,-5.909331113272094,L, + 73128083500,-5.477479169507141,L, + 75052506750,-5.045626798855365,L, + 76976930000,-4.613771439995828,L, + 78901353250,-4.181925472646399,L, + 80825776500,-3.750073101994623,L, + 82750199750,-3.318217529691674,L, + 84674623000,-2.886368147247660,L, + 86599046250,-2.454512148057888,L, + 88523469500,-2.022660204292936,L, + 90447892750,-1.590810288240393,L, + 92372316000,-1.158958771362263,L, + 94296739250,-0.727105760380253,L, + 96221162500,-0.295253443089330,L, + 98145585750,0.136597393437925,L, + 100070009000,0.568454233061130,L, + 101994432250,1.000305323052437,L, + 103918855500,1.432151290401866,L, + 105843278750,1.864003447610230,L, + 107767702000,2.295854110714713,L, + 109692125250,2.727711390564954,L, + 111616548500,3.159562480556261,L, + 113540971750,3.591415491538271,L, + 115465395000,4.023269569737340,L, + 117389818250,4.455118525294530,L, + 119314241500,4.886971322833129,L, + 121238664750,5.318820278390320,L, + 123163088000,5.750675210363034,L, + 127011934500,6.614378244119293,L, + 128936357750,7.046237444960239,L, + 130860781000,7.478082985422844,L, + 132785204250,7.909933648527327,L, + 134709627500,8.341787726726396,L, + 136634050750,8.773639243604526,L, + 140482897250,9.637343984908076,L, + 142407320500,10.069194648012560,L, + 144331743750,10.501046164890690,L, + 146256167000,10.932901096863404,L, + 148180590250,11.364751759967888,L, + 150105013500,11.796605838166956,L, + 152029436750,12.228458208818731,L, + 153953860000,12.660307164375922,L, + 155878283250,13.092163803895929,L, + 157802706500,13.524009344358534,L, + 159727129750,13.955859153689371,L, + 161651553000,14.387716646983025,L, + 163575976250,14.819565602540216,L, + 167424822750,15.683273758938352,L, + 169349246000,16.115122714495541,L, + 171273669250,16.546975085147320,L, + 173198092500,16.978832578440972,L, + 175122515750,17.410678118903576,L, + 177046939000,17.842532197102646,L, + 178971362250,18.274382860207130,L, + 180895785500,18.706238645953491,L, + 182820208750,19.138085893963389,L, + 184744632000,19.569945094804332,L, + 188593478500,18.210665732987465,L, + 190517901750,17.531029467173614,L, + 194366748250,16.171760350640501,L, + 196291171500,15.492122377279356,L, + 198215594750,14.812491234107386,L, + 200140018000,14.132853260746243,L, + 202064441250,13.453216141158746,L, + 203988864500,12.773579875344897,L, + 205913287750,12.093944463304693,L, + 207837711000,11.414309905038136,L, + 209762134250,10.734674492997932,L, + 211686557500,10.055034812089497,L, + 213610980750,9.375398546275648,L, + 215535404000,8.695765695556384,L, + 217459827250,8.016126868421594,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656856471228011,L, + 223233097000,5.977218070980046,L, + 225157520250,5.297580097618903,L, + 227081943500,4.617949381333754,L, + 229006366750,3.938314396180373,L, + 230930790000,3.258673434611469,L, + 232855213250,2.579042931769732,L, + 234779636500,1.899402823974474,L, + 236704059750,1.219765704386978,L, + 238628483000,0.540129918820804,L, + 240552906250,-0.139506467054965,L, + 242477329500,-0.819142772889454,L, + 244401752750,-1.498775090000190,L, + 246326176000,-2.178411142370628,L, + 248250599250,-2.858046981297655,L, + 250175022500,-3.537681539564212,L, + 252099445750,-4.217321647359470,L, + 254023869000,-4.896957059399673,L, + 255948292250,-5.576590763892584,L, + 257872715500,-6.256230017914196,L, + 259797138750,-6.935863722407107,L, + 261721562000,-7.615499561334134,L, + 263645985250,-8.295134119600691,L, + 265570408500,-8.974772092961834,L, + 267494831750,-9.654408358775683,L, + 271343678250,-11.013682597950675,L, + 273268101500,-11.693318009990879,L, + 275192524750,-12.372954275804728,L, + 277116948000,-13.052587980297639,L, + 279041371250,-13.732227661206075,L, + 280965794500,-14.411861365698986,L, + 282890217750,-15.091495923965542,L, + 284814641000,-15.771133897326685,L, + 286739064250,-16.450773578235118,L, + 288663487500,-17.130404721407093,L, + 292512334000,-18.489677253034792,L, + 294436757250,-19.169310103754057,L, + 296361180500,-19.848948077115200,L, + 298285603750,-20.528587758023633,L, + 300210027000,-21.208222316290190,L, + 302134450250,-21.887853459462164,L, + 304058873500,-21.887855167009455,L, + 305983296750,-21.887855167009455,L, + 307907720000,-21.887858582104041,L, + 309832143250,-21.887853459462164,L, + 313680989750,-21.887856874556746,L, + 315605413000,-21.887855167009455,L, + 317529836250,-21.887855167009455,L, + 319454259500,-21.887858582104041,L, + 321378682750,-21.887853459462164,L, + 327151952500,-21.887853459462164,L, + 329076375750,-21.887855167009455,L, + 331000799000,-21.887858582104041,L, + 332925222250,-21.887855167009455,L, + 334849645500,-21.887848336820284,L, + 336774068750,-21.887853459462164,L, + 338698492000,-21.887855167009455,L, + 340622915250,-21.887853459462164,L, + 344471761750,-21.887856874556746,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 119 + Key: + 0,1.000000000000000,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378458976746,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 32715195250,1.017918825149536,L, + 34639618500,1.018972992897034,L, + 36564041750,1.020026922225952,L, + 46186158000,1.025297164916992,L, + 50035004500,1.027405500411987,L, + 51959427750,1.028459429740906,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675743103027,L, + 61581544000,1.033729672431946,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324325561523,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756713867188,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061135053634644,L, + 113540971750,1.062188982963562,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783636093140,L, + 136634050750,1.074837684631348,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945781707764,L, + 150105013500,1.082216024398804,L, + 152029436750,1.083270192146301,L, + 153953860000,1.084324240684509,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486386299133,L, + 161651553000,1.088540315628052,L, + 165500399500,1.090648412704468,L, + 167424822750,1.091702580451965,L, + 169349246000,1.092756509780884,L, + 173198092500,1.094864606857300,L, + 175122515750,1.095918774604797,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026871681213,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 194366748250,1.023919224739075,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011295795441,L, + 200140018000,0.977557361125946,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 205913287750,0.931195497512817,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202096939087,L, + 229006366750,0.745748102664948,L, + 234779636500,0.699386298656464,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662571430206,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761212110519,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399408102036,L, + 279041371250,0.343945413827896,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767796635628,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.368794709444046,L, + 307907720000,0.373544454574585,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978113651276,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257286310196,L, + 317529836250,0.342373579740524,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291260957718,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833498001099,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605781078339,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 118 + Key: + 0,1.000000000000000,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216313362122,L, + 9622116250,1.005270242691040,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378458976746,L, + 15395386000,1.008432507514954,L, + 17319809250,1.009486436843872,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810847282410,L, + 30790772000,1.016864895820618,L, + 32715195250,1.017918825149536,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513597488403,L, + 55808274250,1.030567526817322,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042162179946899,L, + 78901353250,1.043216228485107,L, + 80825776500,1.044270157814026,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756713867188,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 121238664750,1.066405177116394,L, + 123163088000,1.067459344863892,L, + 125087511250,1.068513274192810,L, + 127011934500,1.069567441940308,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837803840637,L, + 138558474000,1.075891733169556,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081162095069885,L, + 150105013500,1.082216024398804,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648531913757,L, + 167424822750,1.091702461242676,L, + 173198092500,1.094864606857300,L, + 175122515750,1.095918774604797,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827213287354,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011295795441,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 205913287750,0.931195557117462,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202096939087,L, + 229006366750,0.745748102664948,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484939336777,L, + 261721562000,0.483031004667282,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307337045670,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037604093552,L, + 284814641000,0.297583609819412,L, + 286739064250,0.282129645347595,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498078584671,L, + 304058873500,0.328915089368820,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158507347107,L, + 313680989750,0.613338172435760,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839226722717,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032974720001,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756779193878,L, + 344471761750,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 122 + Key: + 0,1.000000000000000,L, + 9622116250,1.005270242691040,L, + 11546539500,1.006324410438538,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918944358826,L, + 34639618500,1.018972873687744,L, + 40412888250,1.022135019302368,L, + 42337311500,1.023189187049866,L, + 44261734750,1.024243116378784,L, + 48110581250,1.026351451873779,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513597488403,L, + 59657120750,1.032675743103027,L, + 61581544000,1.033729672431946,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837888717651,L, + 67354813750,1.036891937255859,L, + 69279237000,1.037945866584778,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324325561523,L, + 84674623000,1.046378254890442,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540519714355,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648616790771,L, + 96221162500,1.052702665328979,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810762405396,L, + 101994432250,1.055864691734314,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060081005096436,L, + 113540971750,1.062189102172852,L, + 115465395000,1.063243031501770,L, + 134709627500,1.073783516883850,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945900917053,L, + 142407320500,1.077999830245972,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486267089844,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026871681213,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134968757629,L, + 184744632000,1.101188898086548,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011295795441,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103486061096,L, + 207837711000,0.915741503238678,L, + 211686557500,0.884833633899689,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294108390808,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932363986969,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116565704346,L, + 246326176000,0.606662511825562,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300767421722,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 265570408500,0.452123045921326,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761212110519,L, + 273268101500,0.390307337045670,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945413827896,L, + 280965794500,0.328491419553757,L, + 282890217750,0.313037633895874,L, + 284814641000,0.297583609819412,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767796635628,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.406290829181671,L, + 307907720000,0.466422379016876,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158507347107,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839226722717,L, + 321378682750,0.768024921417236,L, + 323303106000,0.801031410694122,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690799236298,L, + 334849645500,0.951766431331635,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380641460419,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756719589233,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_067" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 171 + Key: + 0,0.016793012619019,L, + 1924423250,0.016670823097229,L, + 3848846500,0.016548812389374,L, + 5773269750,0.016426324844360,L, + 7697693000,0.016303896903992,L, + 9622116250,0.016181886196136,L, + 11546539500,0.016059398651123,L, + 13470962750,0.015937447547913,L, + 15395386000,0.015815198421478,L, + 17319809250,0.015692710876465,L, + 19244232500,0.015570759773254,L, + 23093079000,0.015325784683228,L, + 25017502250,0.015203833580017,L, + 28866348750,0.014959335327148,L, + 30790772000,0.014837145805359,L, + 32715195250,0.014714658260345,L, + 34639618500,0.014592707157135,L, + 36564041750,0.014470279216766,L, + 40412888250,0.014225780963898,L, + 42337311500,0.014103591442108,L, + 46186158000,0.013859093189240,L, + 48110581250,0.013736665248871,L, + 50035004500,0.013614654541016,L, + 51959427750,0.013492166996002,L, + 53883851000,0.013369977474213,L, + 55808274250,0.013247966766357,L, + 57732697500,0.013125479221344,L, + 59657120750,0.013003051280975,L, + 61581544000,0.012881040573120,L, + 63505967250,0.012758553028107,L, + 65430390500,0.012636601924896,L, + 67354813750,0.012514352798462,L, + 69279237000,0.012391865253448,L, + 71203660250,0.012269914150238,L, + 73128083500,0.012147426605225,L, + 75052506750,0.012025415897369,L, + 76976930000,0.011902987957001,L, + 78901353250,0.011780738830566,L, + 82750199750,0.011536359786987,L, + 84674623000,0.011413872241974,L, + 86599046250,0.011291861534119,L, + 88523469500,0.011169433593750,L, + 92372316000,0.010924935340881,L, + 94296739250,0.010802745819092,L, + 96221162500,0.010680496692657,L, + 98145585750,0.001452684402466,L, + 100070009000,-0.007774829864502,L, + 101994432250,-0.017002642154694,L, + 103918855500,-0.026230394840240,L, + 105843278750,-0.035457968711853,L, + 107767702000,-0.044685721397400,L, + 111616548500,-0.063141345977783,L, + 113540971750,-0.072369098663330,L, + 115465395000,-0.081596374511719,L, + 119314241500,-0.100051999092102,L, + 121238664750,-0.109279751777649,L, + 123163088000,-0.118507564067841,L, + 125087511250,-0.127735078334808,L, + 127011934500,-0.136962831020355,L, + 128936357750,-0.132229030132294,L, + 130860781000,-0.127494990825653,L, + 132785204250,-0.122761130332947,L, + 134709627500,-0.118026793003082,L, + 136634050750,-0.113292753696442,L, + 138558474000,-0.108558952808380,L, + 140482897250,-0.103824913501740,L, + 142407320500,-0.099091112613678,L, + 144331743750,-0.094357013702393,L, + 146256167000,-0.089623212814331,L, + 148180590250,-0.084888875484467,L, + 150105013500,-0.080155074596405,L, + 152029436750,-0.075420975685120,L, + 153953860000,-0.070686936378479,L, + 155878283250,-0.065953075885773,L, + 157802706500,-0.061219036579132,L, + 159727129750,-0.056485235691071,L, + 161651553000,-0.051750898361206,L, + 163575976250,-0.047017037868500,L, + 165500399500,-0.042282998561859,L, + 167424822750,-0.037549197673798,L, + 169349246000,-0.032815098762512,L, + 171273669250,-0.028081059455872,L, + 173198092500,-0.023347198963165,L, + 175122515750,-0.018612921237946,L, + 177046939000,-0.013879060745239,L, + 178971362250,-0.009145021438599,L, + 180895785500,-0.004411160945892,L, + 182820208750,0.000322878360748,L, + 184744632000,0.005056679248810,L, + 186669055250,0.004832863807678,L, + 188593478500,0.004609107971191,L, + 190517901750,0.004385292530060,L, + 192442325000,0.004161298274994,L, + 194366748250,0.003937482833862,L, + 196291171500,0.003713488578796,L, + 198215594750,0.003489673137665,L, + 202064441250,0.003042161464691,L, + 203988864500,0.002818048000336,L, + 205913287750,0.002594292163849,L, + 207837711000,0.002370238304138,L, + 209762134250,0.002146482467651,L, + 211686557500,0.001922488212585,L, + 213610980750,0.001698911190033,L, + 215535404000,0.001474916934967,L, + 217459827250,0.001251101493835,L, + 219384250500,0.001027107238770,L, + 221308673750,0.000803291797638,L, + 223233097000,0.000579297542572,L, + 225157520250,0.000355720520020,L, + 227081943500,0.000131666660309,L, + 229006366750,-0.000092089176178,L, + 230930790000,-0.000316143035889,L, + 232855213250,-0.000539898872375,L, + 234779636500,-0.000763952732086,L, + 236704059750,-0.000987470149994,L, + 238628483000,-0.001211464405060,L, + 240552906250,-0.001435279846191,L, + 242477329500,-0.001659274101257,L, + 244401752750,-0.001883149147034,L, + 246326176000,-0.002107143402100,L, + 248250599250,-0.002330720424652,L, + 250175022500,-0.002554714679718,L, + 252099445750,-0.002778470516205,L, + 254023869000,-0.003002524375916,L, + 255948292250,-0.003226280212402,L, + 257872715500,-0.003450334072113,L, + 259797138750,-0.003673851490021,L, + 261721562000,-0.003897905349731,L, + 263645985250,-0.004121661186218,L, + 265570408500,-0.004345715045929,L, + 267494831750,-0.004569530487061,L, + 269419255000,-0.004793524742126,L, + 271343678250,-0.005017101764679,L, + 273268101500,-0.005241096019745,L, + 275192524750,-0.005464911460876,L, + 277116948000,-0.005688905715942,L, + 279041371250,-0.005912661552429,L, + 280965794500,-0.006136715412140,L, + 282890217750,-0.006360292434692,L, + 284814641000,-0.006584346294403,L, + 286739064250,-0.006808102130890,L, + 288663487500,-0.007032155990601,L, + 290587910750,-0.007255911827087,L, + 292512334000,-0.007479906082153,L, + 294436757250,-0.007703483104706,L, + 296361180500,-0.007927477359772,L, + 298285603750,-0.008151292800903,L, + 300210027000,-0.008375287055969,L, + 302134450250,-0.008599162101746,L, + 304058873500,-0.008604228496552,L, + 305983296750,-0.007685661315918,L, + 307907720000,-0.006197392940521,L, + 309832143250,-0.004554927349091,L, + 311756566500,-0.002857625484467,L, + 313680989750,-0.001148700714111,L, + 315605413000,0.000547945499420,L, + 317529836250,0.002215921878815,L, + 319454259500,0.003842532634735,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934762001038,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009754240512848,L, + 329076375750,0.011040151119232,L, + 331000799000,0.012231111526489,L, + 332925222250,0.013316214084625,L, + 334849645500,0.014284193515778,L, + 336774068750,0.015121579170227,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016337037086487,L, + 342547338500,0.016673386096954,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469923019409 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-0.000469923019409,L, + 1924423250,-0.003366231918335,L, + 3848846500,-0.006263136863708,L, + 7697693000,-0.012056231498718,L, + 9622116250,-0.014953017234802,L, + 15395386000,-0.023643016815186,L, + 17319809250,-0.026539325714111,L, + 19244232500,-0.029436111450195,L, + 23093079000,-0.035229206085205,L, + 25017502250,-0.038125991821289,L, + 26941925500,-0.041022658348083,L, + 28866348750,-0.043919444084167,L, + 32715195250,-0.049712538719177,L, + 34639618500,-0.052609324455261,L, + 36564041750,-0.055505871772766,L, + 38488465000,-0.058402299880981,L, + 40412888250,-0.061299085617065,L, + 42337311500,-0.064195632934570,L, + 44261734750,-0.067092418670654,L, + 48110581250,-0.072885513305664,L, + 50035004500,-0.075782299041748,L, + 51959427750,-0.078678965568542,L, + 53883851000,-0.081575512886047,L, + 55808274250,-0.084472298622131,L, + 57732697500,-0.087368845939636,L, + 59657120750,-0.090265154838562,L, + 61581544000,-0.093161940574646,L, + 67354813750,-0.101851940155029,L, + 69279237000,-0.104748487472534,L, + 71203660250,-0.107645273208618,L, + 73128083500,-0.110541820526123,L, + 75052506750,-0.113438725471497,L, + 76976930000,-0.116335153579712,L, + 78901353250,-0.119231820106506,L, + 84674623000,-0.127921462059021,L, + 86599046250,-0.130818367004395,L, + 88523469500,-0.133714795112610,L, + 90447892750,-0.136611461639404,L, + 92372316000,-0.139508247375488,L, + 94296739250,-0.142404794692993,L, + 96221162500,-0.145301580429077,L, + 101994432250,-0.143926501274109,L, + 103918855500,-0.143467903137207,L, + 105843278750,-0.143009901046753,L, + 107767702000,-0.142551422119141,L, + 109692125250,-0.142093062400818,L, + 111616548500,-0.141634821891785,L, + 113540971750,-0.141176342964172,L, + 115465395000,-0.140718221664429,L, + 117389818250,-0.140259981155396,L, + 119314241500,-0.139801621437073,L, + 121238664750,-0.139343142509460,L, + 125087511250,-0.138426661491394,L, + 127011934500,-0.137968182563782,L, + 128936357750,-0.137509822845459,L, + 130860781000,-0.137051582336426,L, + 132785204250,-0.136593103408813,L, + 136634050750,-0.135676622390747,L, + 138558474000,-0.135218262672424,L, + 140482897250,-0.134760022163391,L, + 142407320500,-0.134301543235779,L, + 144331743750,-0.133843302726746,L, + 150105013500,-0.132468223571777,L, + 152029436750,-0.132009983062744,L, + 153953860000,-0.131551861763000,L, + 155878283250,-0.131093382835388,L, + 157802706500,-0.130635142326355,L, + 159727129750,-0.130176782608032,L, + 161651553000,-0.129718542098999,L, + 163575976250,-0.129260063171387,L, + 165500399500,-0.128801822662354,L, + 167424822750,-0.128343343734741,L, + 169349246000,-0.127885103225708,L, + 171273669250,-0.127426981925964,L, + 173198092500,-0.126968502998352,L, + 175122515750,-0.126510262489319,L, + 177046939000,-0.126051783561707,L, + 178971362250,-0.125593543052673,L, + 180895785500,-0.125135064125061,L, + 182820208750,-0.124676942825317,L, + 184744632000,-0.124218344688416,L, + 186669055250,-0.123340249061584,L, + 188593478500,-0.122461795806885,L, + 190517901750,-0.121583580970764,L, + 192442325000,-0.120705127716064,L, + 194366748250,-0.119826912879944,L, + 196291171500,-0.118948340415955,L, + 198215594750,-0.118070125579834,L, + 200140018000,-0.117191672325134,L, + 202064441250,-0.116313457489014,L, + 203988864500,-0.115435123443604,L, + 205913287750,-0.114556908607483,L, + 207837711000,-0.113678336143494,L, + 209762134250,-0.112800121307373,L, + 211686557500,-0.111921668052673,L, + 213610980750,-0.111043453216553,L, + 215535404000,-0.110164999961853,L, + 217459827250,-0.109286785125732,L, + 219384250500,-0.108408331871033,L, + 221308673750,-0.107530117034912,L, + 223233097000,-0.106651663780212,L, + 225157520250,-0.105773448944092,L, + 227081943500,-0.104894995689392,L, + 229006366750,-0.104016780853271,L, + 232855213250,-0.102259874343872,L, + 234779636500,-0.101381659507751,L, + 236704059750,-0.100503206253052,L, + 238628483000,-0.099624633789062,L, + 240552906250,-0.098746418952942,L, + 242477329500,-0.097867965698242,L, + 244401752750,-0.096989870071411,L, + 246326176000,-0.096111416816711,L, + 248250599250,-0.095233201980591,L, + 250175022500,-0.094354629516602,L, + 252099445750,-0.093476414680481,L, + 254023869000,-0.092597961425781,L, + 255948292250,-0.091719746589661,L, + 257872715500,-0.090841293334961,L, + 259797138750,-0.089963078498840,L, + 261721562000,-0.089084625244141,L, + 263645985250,-0.088206410408020,L, + 265570408500,-0.087327957153320,L, + 267494831750,-0.086449742317200,L, + 269419255000,-0.085571289062500,L, + 271343678250,-0.084693074226379,L, + 273268101500,-0.083814620971680,L, + 275192524750,-0.082936406135559,L, + 277116948000,-0.082057952880859,L, + 279041371250,-0.081179738044739,L, + 280965794500,-0.080301165580750,L, + 282890217750,-0.079423069953918,L, + 284814641000,-0.078544616699219,L, + 286739064250,-0.077666401863098,L, + 288663487500,-0.076787948608398,L, + 290587910750,-0.075909733772278,L, + 292512334000,-0.075031161308289,L, + 294436757250,-0.074152946472168,L, + 296361180500,-0.073274493217468,L, + 298285603750,-0.072396278381348,L, + 300210027000,-0.071517825126648,L, + 302134450250,-0.070639729499817,L, + 304058873500,-0.070653200149536,L, + 305983296750,-0.068115234375000,L, + 307907720000,-0.064002275466919,L, + 309832143250,-0.059463739395142,L, + 311756566500,-0.054773211479187,L, + 313680989750,-0.050050020217896,L, + 315605413000,-0.045361876487732,L, + 317529836250,-0.040753364562988,L, + 319454259500,-0.036257505416870,L, + 321378682750,-0.031902432441711,L, + 323303106000,-0.027712106704712,L, + 325227529250,-0.023710846900940,L, + 327151952500,-0.019921183586121,L, + 329076375750,-0.016368031501770,L, + 331000799000,-0.013077378273010,L, + 332925222250,-0.010077834129333,L, + 334849645500,-0.007402658462524,L, + 336774068750,-0.005089163780212,L, + 338698492000,-0.003180742263794,L, + 340622915250,-0.001730203628540,L, + 342547338500,-0.000800251960754,L, + 344471761750,-0.000469923019409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097072601318 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.062097072601318,L, + 13470962750,0.119872093200684,L, + 15395386000,0.128125905990601,L, + 21168655750,0.152886629104614,L, + 23093079000,0.161140084266663,L, + 36564041750,0.218915104866028,L, + 38488465000,0.227168917655945,L, + 80825776500,0.408747553825378,L, + 82750199750,0.417001366615295,L, + 96221162500,0.474776387214661,L, + 100070009000,0.481842160224915,L, + 101994432250,0.485375285148621,L, + 103918855500,0.488908171653748,L, + 105843278750,0.492441296577454,L, + 107767702000,0.495973944664001,L, + 109692125250,0.499507069587708,L, + 113540971750,0.506572842597961,L, + 115465395000,0.510105967521667,L, + 121238664750,0.520704627037048,L, + 123163088000,0.524237751960754,L, + 127011934500,0.531303524971008,L, + 130860781000,0.533555150032043,L, + 134709627500,0.535806298255920,L, + 136634050750,0.536932349205017,L, + 138558474000,0.538057923316956,L, + 140482897250,0.539183974266052,L, + 142407320500,0.540309548377991,L, + 144331743750,0.541435360908508,L, + 146256167000,0.542560935020447,L, + 148180590250,0.543686985969543,L, + 150105013500,0.544812560081482,L, + 152029436750,0.545938372612000,L, + 153953860000,0.547063946723938,L, + 161651553000,0.551567196846008,L, + 163575976250,0.552692770957947,L, + 171273669250,0.557196021080017,L, + 173198092500,0.558321595191956,L, + 180895785500,0.562824845314026,L, + 182820208750,0.563950419425964,L, + 184744632000,0.565076231956482,L, + 188593478500,0.584237933158875,L, + 190517901750,0.593819022178650,L, + 192442325000,0.603399634361267,L, + 194366748250,0.612980723381042,L, + 196291171500,0.622561573982239,L, + 198215594750,0.632142663002014,L, + 203988864500,0.660885214805603,L, + 205913287750,0.670466303825378,L, + 207837711000,0.680047154426575,L, + 209762134250,0.689628243446350,L, + 211686557500,0.699208855628967,L, + 213610980750,0.708789944648743,L, + 217459827250,0.727951645851135,L, + 219384250500,0.737532734870911,L, + 223233097000,0.756694436073303,L, + 225157520250,0.766275525093079,L, + 227081943500,0.775856375694275,L, + 229006366750,0.785437464714050,L, + 230930790000,0.795018076896667,L, + 232855213250,0.804599165916443,L, + 238628483000,0.833341717720032,L, + 240552906250,0.842922806739807,L, + 242477329500,0.852503418922424,L, + 244401752750,0.862084746360779,L, + 246326176000,0.871665358543396,L, + 248250599250,0.881246447563171,L, + 252099445750,0.900408148765564,L, + 254023869000,0.909989237785339,L, + 257872715500,0.929150938987732,L, + 259797138750,0.938732028007507,L, + 265570408500,0.967474579811096,L, + 267494831750,0.977055668830872,L, + 271343678250,0.996217370033264,L, + 273268101500,1.005798459053040,L, + 280965794500,1.044121861457825,L, + 282890217750,1.053702950477600,L, + 286739064250,1.072864651679993,L, + 288663487500,1.082445740699768,L, + 292512334000,1.101607441902161,L, + 294436757250,1.111188530921936,L, + 300210027000,1.139931082725525,L, + 302134450250,1.149512171745300,L, + 304058873500,0.047215580940247,L, + 305983296750,0.047753691673279,L, + 307907720000,0.048625826835632,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582766532898,L, + 313680989750,0.051584124565125,L, + 315605413000,0.052578330039978,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432200431824,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972669601440,L, + 329076375750,0.058726191520691,L, + 331000799000,0.059423804283142,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061829924583435,L, + 342547338500,0.062026858329773,L, + 344471761750,0.062097072601318,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 121 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 30790772000,64.836663526520084,L, + 34639618500,63.346630438327260,L, + 36564041750,62.601600233852508,L, + 42337311500,60.366550601563283,L, + 44261734750,59.621527227277703,L, + 48110581250,58.131494139084879,L, + 50035004500,57.386463934610127,L, + 53883851000,55.896424016228138,L, + 55808274250,55.151407472131730,L, + 59657120750,53.661360723560570,L, + 61581544000,52.916347594558744,L, + 63505967250,52.171324220273164,L, + 65430390500,51.426311091271337,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936260927605588,L, + 73128083500,48.446221009223599,L, + 76976930000,46.956187921030775,L, + 78901353250,46.211161131650613,L, + 80825776500,45.466144587554204,L, + 82750199750,44.721121213268624,L, + 84674623000,43.976101254077626,L, + 86599046250,43.231084709981218,L, + 88523469500,42.486061335695638,L, + 90447892750,41.741041376504640,L, + 92372316000,40.996024832408231,L, + 94296739250,40.250998043028062,L, + 96221162500,39.505981498931654,L, + 101994432250,37.270921621358667,L, + 103918855500,36.525905077262259,L, + 107767702000,35.035858328691099,L, + 111616548500,33.545818410309103,L, + 113540971750,32.800801866212694,L, + 115465395000,32.055778491927114,L, + 117389818250,31.310758532736120,L, + 119314241500,30.565741988639708,L, + 121238664750,29.820722029448714,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585655321686559,L, + 128936357750,26.840637070042856,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350592029018987,L, + 134709627500,24.605578900017161,L, + 136634050750,23.860558940826166,L, + 138558474000,23.115533858993292,L, + 140482897250,22.370513899802297,L, + 142407320500,21.625497355705889,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135452314682020,L, + 150105013500,18.645412396300028,L, + 152029436750,17.900394144656325,L, + 153953860000,17.155370770370745,L, + 155878283250,16.410355933821627,L, + 157802706500,15.665332559536047,L, + 159727129750,14.920310892797758,L, + 161651553000,14.175290933606764,L, + 163575976250,13.430271828189415,L, + 165500399500,12.685251868998419,L, + 169349246000,11.195210243069136,L, + 171273669250,10.450188576330847,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215130406305153,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725088353489047,L, + 182820208750,5.980067540524406,L, + 184744632000,5.235048435107057,L, + 186669055250,6.407537491049979,L, + 188593478500,7.580028681427016,L, + 190517901750,8.752520298690877,L, + 192442325000,9.925011062181090,L, + 194366748250,11.097502679444951,L, + 198215594750,13.442482498878087,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787468294726747,L, + 203988864500,16.959955643122377,L, + 207837711000,19.304940585197389,L, + 211686557500,21.649918697083233,L, + 213610980750,22.822411168120741,L, + 215535404000,23.994900224063660,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512379344723474,L, + 223233097000,28.684864985571810,L, + 225157520250,29.857348918872855,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202337276042456,L, + 232855213250,34.547325633212054,L, + 234779636500,35.719809566513099,L, + 236704059750,36.892300330003309,L, + 238628483000,38.064794508588108,L, + 240552906250,39.237281856983742,L, + 242477329500,40.409772620473952,L, + 244401752750,41.582270214153340,L, + 246326176000,42.754754147454378,L, + 248250599250,43.927251741133766,L, + 250175022500,45.099739089529393,L, + 252099445750,46.272233268114192,L, + 254023869000,47.444713786320655,L, + 255948292250,48.617218210189208,L, + 257872715500,49.789702143490253,L, + 261721562000,52.134683670470679,L, + 263645985250,53.307171018866306,L, + 265570408500,54.479668612545694,L, + 267494831750,55.652155960941322,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466888911217140 + KeyVer: 4005 + KeyCount: 122 + Key: + 0,39.466888911217140,L, + 1924423250,39.898737866774333,L, + 11546539500,42.057999720033209,L, + 15395386000,42.921697631147595,L, + 17319809250,43.353553416893952,L, + 19244232500,43.785412617734899,L, + 21168655750,44.217254743102920,L, + 25017502250,45.080966314595642,L, + 26941925500,45.512815270152835,L, + 28866348750,45.944671055899192,L, + 30790772000,46.376516596361796,L, + 32715195250,46.808365551918989,L, + 34639618500,47.240221337665353,L, + 36564041750,47.672066878127957,L, + 40412888250,48.535778449620679,L, + 44261734750,49.399483190924229,L, + 46186158000,49.831332146481422,L, + 48110581250,50.263184517133197,L, + 50035004500,50.695043717974144,L, + 51959427750,51.126889258436748,L, + 53883851000,51.558745044183105,L, + 57732697500,52.422449785486656,L, + 59657120750,52.854298741043849,L, + 61581544000,53.286154526790213,L, + 63505967250,53.718003482347399,L, + 75052506750,56.309117706258057,L, + 76976930000,56.740963246720661,L, + 78901353250,57.172822447561607,L, + 80825776500,57.604667988024211,L, + 111616548500,64.514305918452621,L, + 113540971750,64.946151458915224,L, + 121238664750,66.673560941522325,L, + 125087511250,67.537265682825890,L, + 134709627500,69.696527536084758,L, + 136634050750,70.128379906736541,L, + 142407320500,71.423937018691859,L, + 144331743750,71.855789389343641,L, + 146256167000,72.287648590184588,L, + 148180590250,72.719494130647192,L, + 150105013500,73.151346501298974,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 159727129750,75.310601524368678,L, + 165500399500,76.606158636323997,L, + 167424822750,77.038011006975779,L, + 169349246000,77.469870207816726,L, + 171273669250,77.901715748279329,L, + 173198092500,78.333568118931112,L, + 178971362250,79.629125230886430,L, + 180895785500,80.060977601538212,L, + 182820208750,80.492836802379159,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 188593478500,79.565413226308650,L, + 190517901750,78.885775252947511,L, + 194366748250,77.526499306225219,L, + 196291171500,76.846868163053244,L, + 200140018000,75.487592216330967,L, + 202064441250,74.807961073158992,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769053983264740,L, + 209762134250,72.089416009903587,L, + 211686557500,71.409778036542448,L, + 213610980750,70.730133232992131,L, + 215535404000,70.050508920009335,L, + 217459827250,69.370870946648196,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 227081943500,65.972687910031652,L, + 229006366750,65.293056766859678,L, + 232855213250,63.933780820137393,L, + 234779636500,63.254156507154590,L, + 236704059750,62.574511703604280,L, + 238628483000,61.894873730243134,L, + 240552906250,61.215242587071167,L, + 242477329500,60.535597783520849,L, + 244401752750,59.855966640348882,L, + 248250599250,58.496690693626597,L, + 250175022500,57.817059550454623,L, + 252099445750,57.137424992188066,L, + 254023869000,56.457783603732338,L, + 255948292250,55.778145630371199,L, + 257872715500,55.098514487199225,L, + 259797138750,54.418876513838079,L, + 261721562000,53.739245370666112,L, + 263645985250,53.059610812399555,L, + 265570408500,52.379972839038409,L, + 267494831750,51.700338280771852,L, + 269419255000,51.020693477221542,L, + 271343678250,50.341055503860396,L, + 275192524750,48.981793217516454,L, + 277116948000,48.302151829060726,L, + 279041371250,47.622517270794170,L, + 282890217750,46.263241324071885,L, + 284814641000,45.583610180899910,L, + 286739064250,44.903968792444182,L, + 288663487500,44.224341064366797,L, + 290587910750,43.544703091005658,L, + 292512334000,42.865068532739102,L, + 296361180500,41.505792586016817,L, + 298285603750,40.826158027750260,L, + 300210027000,40.146526884578286,L, + 302134450250,39.466885496122558,L, + 304058873500,39.466885496122558,L, + 305983296750,39.466888911217140,L, + 307907720000,39.466885496122558,L, + 313680989750,39.466885496122558,L, + 315605413000,39.466888911217140,L, + 317529836250,39.466885496122558,L, + 319454259500,39.466885496122558,L, + 321378682750,39.466888911217140,L, + 323303106000,39.466882081027975,L, + 325227529250,39.466888911217140,L, + 327151952500,39.466892326311729,L, + 331000799000,39.466885496122558,L, + 332925222250,39.466888911217140,L, + 334849645500,39.466882081027975,L, + 336774068750,39.466888911217140,L, + 338698492000,39.466888911217140,L, + 340622915250,39.466885496122558,L, + 342547338500,39.466885496122558,L, + 344471761750,39.466888911217140,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 120 + Key: + 0,1.000000000000000,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594653129578,L, + 23093079000,1.012648582458496,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810847282410,L, + 30790772000,1.016864776611328,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513597488403,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 76976930000,1.042162060737610,L, + 78901353250,1.043216228485107,L, + 80825776500,1.044270157814026,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 94296739250,1.051648497581482,L, + 96221162500,1.052702665328979,L, + 98145585750,1.053756594657898,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060081005096436,L, + 111616548500,1.061134934425354,L, + 113540971750,1.062189102172852,L, + 115465395000,1.063243031501770,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567441940308,L, + 128936357750,1.070621371269226,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837684631348,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945662498474,L, + 144331743750,1.079053759574890,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081161856651306,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 163575976250,1.089594483375549,L, + 169349246000,1.092756628990173,L, + 171273669250,1.093810558319092,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 192442325000,1.039373278617859,L, + 194366748250,1.023919105529785,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 211686557500,0.884833753108978,L, + 213610980750,0.869379699230194,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776656031608582,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478429317474,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 246326176000,0.606662511825562,L, + 252099445750,0.560300707817078,L, + 254023869000,0.544846832752228,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583609819412,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767796635628,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498078584671,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794709444046,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978113651276,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373579740524,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341700017452240,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373823016881943,L, + 329076375750,0.396345883607864,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833527803421,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605721473694,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,1.000000000000000,L, + 1924423250,1.001054167747498,L, + 3848846500,1.002108097076416,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810847282410,L, + 30790772000,1.016864776611328,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020027041435242,L, + 38488465000,1.021081089973450,L, + 40412888250,1.022135019302368,L, + 42337311500,1.023189187049866,L, + 46186158000,1.025297045707703,L, + 51959427750,1.028459548950195,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675743103027,L, + 61581544000,1.033729672431946,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378374099731,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540519714355,L, + 92372316000,1.050594449043274,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064297199249268,L, + 119314241500,1.065351128578186,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675658226013,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783397674561,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945781707764,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053878784180,L, + 146256167000,1.080107808113098,L, + 152029436750,1.083269953727722,L, + 153953860000,1.084324121475220,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648412704468,L, + 167424822750,1.091702580451965,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810677528381,L, + 173198092500,1.094864606857300,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134968757629,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085735082626343,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 200140018000,0.977557420730591,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792110025882721,L, + 225157520250,0.776656031608582,L, + 229006366750,0.745748162269592,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386298656464,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478429317474,L, + 240552906250,0.653024435043335,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 252099445750,0.560300707817078,L, + 254023869000,0.544846832752228,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484939336777,L, + 261721562000,0.483031004667282,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669141054153,L, + 269419255000,0.421215236186981,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399408102036,L, + 279041371250,0.343945413827896,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498078584671,L, + 304058873500,0.328915089368820,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338172435760,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418179035187,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768025040626526,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766431331635,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380641460419,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756779193878,L, + 344471761750,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378458976746,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864895820618,L, + 32715195250,1.017918825149536,L, + 36564041750,1.020026922225952,L, + 38488465000,1.021081089973450,L, + 40412888250,1.022135138511658,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297284126282,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 73128083500,1.040053963661194,L, + 75052506750,1.041108131408691,L, + 80825776500,1.044270277023315,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540519714355,L, + 92372316000,1.050594568252563,L, + 94296739250,1.051648497581482,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064297199249268,L, + 121238664750,1.066405296325684,L, + 123163088000,1.067459225654602,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675539016724,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783636093140,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945662498474,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053878784180,L, + 146256167000,1.080107808113098,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648531913757,L, + 167424822750,1.091702580451965,L, + 169349246000,1.092756509780884,L, + 184744632000,1.101188898086548,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 211686557500,0.884833693504333,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 223233097000,0.792110025882721,L, + 225157520250,0.776655972003937,L, + 232855213250,0.714840233325958,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 248250599250,0.591208636760712,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300767421722,L, + 254023869000,0.544846773147583,L, + 257872715500,0.513938903808594,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 269419255000,0.421215236186981,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037604093552,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768025040626526,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940240859985,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380522251129,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_061" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792654991150 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,0.016792654991150,L, + 1924423250,0.016670703887939,L, + 7697693000,0.016303777694702,L, + 9622116250,0.016181588172913,L, + 11546539500,0.016059279441833,L, + 13470962750,0.015937209129333,L, + 15395386000,0.015814900398254,L, + 17319809250,0.015692710876465,L, + 19244232500,0.015570402145386,L, + 21168655750,0.015448212623596,L, + 23093079000,0.015325784683228,L, + 25017502250,0.015203595161438,L, + 26941925500,0.015081524848938,L, + 30790772000,0.014836668968201,L, + 32715195250,0.014714717864990,L, + 34639618500,0.014592409133911,L, + 36564041750,0.014470219612122,L, + 38488465000,0.014347791671753,L, + 40412888250,0.014225602149963,L, + 42337311500,0.014103293418884,L, + 46186158000,0.013858914375305,L, + 48110581250,0.013736486434937,L, + 50035004500,0.013614177703857,L, + 51959427750,0.013492226600647,L, + 57732697500,0.013125300407410,L, + 59657120750,0.013003110885620,L, + 63505967250,0.012758493423462,L, + 65430390500,0.012636423110962,L, + 67354813750,0.012513875961304,L, + 69279237000,0.012391924858093,L, + 75052506750,0.012024998664856,L, + 76976930000,0.011902809143066,L, + 80825776500,0.011658191680908,L, + 82750199750,0.011536121368408,L, + 84674623000,0.011413931846619,L, + 86599046250,0.011291384696960,L, + 88523469500,0.011169314384460,L, + 90447892750,0.011047005653381,L, + 92372316000,0.010924816131592,L, + 96221162500,0.010680198669434,L, + 98145585750,0.001452684402466,L, + 103918855500,-0.026230573654175,L, + 105843278750,-0.035458445549011,L, + 107767702000,-0.044686079025269,L, + 109692125250,-0.053913831710815,L, + 111616548500,-0.063141345977783,L, + 115465395000,-0.081596851348877,L, + 117389818250,-0.090824484825134,L, + 121238664750,-0.109279990196228,L, + 123163088000,-0.118507504463196,L, + 127011934500,-0.136963009834290,L, + 128936357750,-0.132229208946228,L, + 130860781000,-0.127495050430298,L, + 132785204250,-0.122761249542236,L, + 134709627500,-0.118027091026306,L, + 136634050750,-0.113293051719666,L, + 140482897250,-0.103825211524963,L, + 142407320500,-0.099091172218323,L, + 144331743750,-0.094357013702393,L, + 146256167000,-0.089623212814331,L, + 148180590250,-0.084889054298401,L, + 150105013500,-0.080155253410339,L, + 152029436750,-0.075421333312988,L, + 153953860000,-0.070687174797058,L, + 155878283250,-0.065953135490417,L, + 157802706500,-0.061219215393066,L, + 159727129750,-0.056485176086426,L, + 161651553000,-0.051751255989075,L, + 163575976250,-0.047017216682434,L, + 165500399500,-0.042283296585083,L, + 167424822750,-0.037549138069153,L, + 169349246000,-0.032815337181091,L, + 171273669250,-0.028081417083740,L, + 173198092500,-0.023347377777100,L, + 175122515750,-0.018613219261169,L, + 177046939000,-0.013879418373108,L, + 178971362250,-0.009145259857178,L, + 180895785500,-0.004411339759827,L, + 182820208750,0.000322461128235,L, + 184744632000,0.005056619644165,L, + 186669055250,0.004832863807678,L, + 188593478500,0.004608869552612,L, + 190517901750,0.004385232925415,L, + 194366748250,0.003937244415283,L, + 196291171500,0.003713488578796,L, + 198215594750,0.003489494323730,L, + 200140018000,0.003265738487244,L, + 202064441250,0.003041744232178,L, + 203988864500,0.002818107604980,L, + 207837711000,0.002370119094849,L, + 209762134250,0.002146363258362,L, + 211686557500,0.001922369003296,L, + 213610980750,0.001698732376099,L, + 215535404000,0.001474618911743,L, + 217459827250,0.001250982284546,L, + 219384250500,0.001026988029480,L, + 221308673750,0.000803232192993,L, + 225157520250,0.000355243682861,L, + 227081943500,0.000131607055664,L, + 229006366750,-0.000092387199402,L, + 232855213250,-0.000540137290955,L, + 234779636500,-0.000763893127441,L, + 236704059750,-0.000987529754639,L, + 238628483000,-0.001211881637573,L, + 240552906250,-0.001435518264771,L, + 242477329500,-0.001659512519836,L, + 246326176000,-0.002107024192810,L, + 248250599250,-0.002331018447876,L, + 250175022500,-0.002554655075073,L, + 252099445750,-0.002779006958008,L, + 254023869000,-0.003002762794495,L, + 255948292250,-0.003226399421692,L, + 257872715500,-0.003450393676758,L, + 259797138750,-0.003674149513245,L, + 261721562000,-0.003898143768311,L, + 263645985250,-0.004121899604797,L, + 265570408500,-0.004345774650574,L, + 267494831750,-0.004569888114929,L, + 269419255000,-0.004793524742126,L, + 271343678250,-0.005017518997192,L, + 273268101500,-0.005241274833679,L, + 275192524750,-0.005465269088745,L, + 277116948000,-0.005689024925232,L, + 279041371250,-0.005912899971008,L, + 280965794500,-0.006136894226074,L, + 282890217750,-0.006360650062561,L, + 284814641000,-0.006584644317627,L, + 286739064250,-0.006808400154114,L, + 288663487500,-0.007032394409180,L, + 290587910750,-0.007256150245667,L, + 292512334000,-0.007480025291443,L, + 294436757250,-0.007703781127930,L, + 298285603750,-0.008151769638062,L, + 300210027000,-0.008375525474548,L, + 302134450250,-0.008599400520325,L, + 304058873500,-0.008604288101196,L, + 305983296750,-0.007685780525208,L, + 307907720000,-0.006197690963745,L, + 309832143250,-0.004555225372314,L, + 311756566500,-0.002857923507690,L, + 313680989750,-0.001148819923401,L, + 315605413000,0.000547766685486,L, + 317529836250,0.002215504646301,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934642791748,L, + 325227529250,0.008382558822632,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039853096008,L, + 331000799000,0.012230753898621,L, + 332925222250,0.013315916061401,L, + 334849645500,0.014284014701843,L, + 336774068750,0.015121221542358,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336679458618,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016792654991150,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469744205475 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,-0.000469744205475,L, + 1924423250,-0.003366529941559,L, + 3848846500,-0.006263077259064,L, + 5773269750,-0.009159743785858,L, + 9622116250,-0.014952838420868,L, + 11546539500,-0.017849624156952,L, + 13470962750,-0.020746290683746,L, + 15395386000,-0.023642838001251,L, + 17319809250,-0.026539623737335,L, + 19244232500,-0.029436171054840,L, + 21168655750,-0.032332837581635,L, + 23093079000,-0.035229384899139,L, + 25017502250,-0.038126170635223,L, + 26941925500,-0.041022717952728,L, + 28866348750,-0.043919146060944,L, + 32715195250,-0.049712717533112,L, + 34639618500,-0.052609264850616,L, + 36564041750,-0.055505931377411,L, + 40412888250,-0.061299026012421,L, + 42337311500,-0.064195811748505,L, + 44261734750,-0.067092478275299,L, + 48110581250,-0.072885572910309,L, + 50035004500,-0.075782358646393,L, + 51959427750,-0.078678786754608,L, + 55808274250,-0.084472358226776,L, + 57732697500,-0.087368667125702,L, + 59657120750,-0.090265333652496,L, + 61581544000,-0.093162119388580,L, + 63505967250,-0.096058666706085,L, + 65430390500,-0.098955452442169,L, + 67354813750,-0.101851999759674,L, + 69279237000,-0.104748427867889,L, + 73128083500,-0.110541999340057,L, + 75052506750,-0.113438546657562,L, + 76976930000,-0.116334974765778,L, + 80825776500,-0.122128546237946,L, + 82750199750,-0.125025093555450,L, + 84674623000,-0.127921760082245,L, + 88523469500,-0.133714854717255,L, + 90447892750,-0.136611640453339,L, + 94296739250,-0.142404973506927,L, + 96221162500,-0.145301401615143,L, + 98145585750,-0.144843161106110,L, + 100070009000,-0.144384682178497,L, + 101994432250,-0.143926441669464,L, + 103918855500,-0.143468081951141,L, + 105843278750,-0.143009841442108,L, + 107767702000,-0.142551720142365,L, + 109692125250,-0.142093241214752,L, + 111616548500,-0.141635000705719,L, + 113540971750,-0.141176521778107,L, + 115465395000,-0.140718162059784,L, + 119314241500,-0.139801681041718,L, + 121238664750,-0.139343202114105,L, + 123163088000,-0.138884961605072,L, + 125087511250,-0.138426601886749,L, + 127011934500,-0.137968361377716,L, + 128936357750,-0.137509882450104,L, + 132785204250,-0.136593401432037,L, + 134709627500,-0.136135041713715,L, + 136634050750,-0.135676562786102,L, + 138558474000,-0.135218322277069,L, + 140482897250,-0.134759843349457,L, + 142407320500,-0.134301483631134,L, + 144331743750,-0.133843362331390,L, + 146256167000,-0.133385002613068,L, + 148180590250,-0.132926881313324,L, + 150105013500,-0.132468283176422,L, + 152029436750,-0.132010161876678,L, + 153953860000,-0.131551802158356,L, + 155878283250,-0.131093561649323,L, + 157802706500,-0.130635082721710,L, + 163575976250,-0.129260003566742,L, + 169349246000,-0.127885282039642,L, + 171273669250,-0.127426803112030,L, + 173198092500,-0.126968562602997,L, + 178971362250,-0.125593483448029,L, + 180895785500,-0.125135004520416,L, + 184744632000,-0.124218523502350,L, + 186669055250,-0.123340189456940,L, + 188593478500,-0.122461974620819,L, + 192442325000,-0.120705306529999,L, + 194366748250,-0.119826853275299,L, + 198215594750,-0.118070185184479,L, + 200140018000,-0.117191970348358,L, + 202064441250,-0.116313397884369,L, + 205913287750,-0.114556729793549,L, + 207837711000,-0.113678276538849,L, + 213610980750,-0.111043274402618,L, + 215535404000,-0.110165059566498,L, + 219384250500,-0.108408391475677,L, + 221308673750,-0.107530176639557,L, + 223233097000,-0.106651604175568,L, + 225157520250,-0.105773389339447,L, + 229006366750,-0.104016721248627,L, + 230930790000,-0.103138506412506,L, + 232855213250,-0.102259933948517,L, + 236704059750,-0.100503265857697,L, + 238628483000,-0.099624812602997,L, + 244401752750,-0.096989810466766,L, + 246326176000,-0.096111595630646,L, + 250175022500,-0.094354927539825,L, + 252099445750,-0.093476474285126,L, + 254023869000,-0.092598140239716,L, + 255948292250,-0.091719925403595,L, + 257872715500,-0.090841591358185,L, + 259797138750,-0.089963376522064,L, + 261721562000,-0.089084804058075,L, + 265570408500,-0.087328135967255,L, + 267494831750,-0.086449682712555,L, + 273268101500,-0.083814680576324,L, + 275192524750,-0.082936465740204,L, + 279041371250,-0.081179797649384,L, + 280965794500,-0.080301225185394,L, + 282890217750,-0.079423010349274,L, + 284814641000,-0.078544676303864,L, + 286739064250,-0.077666461467743,L, + 288663487500,-0.076788127422333,L, + 290587910750,-0.075909912586212,L, + 292512334000,-0.075031340122223,L, + 294436757250,-0.074153006076813,L, + 296361180500,-0.073274433612823,L, + 298285603750,-0.072396218776703,L, + 302134450250,-0.070639550685883,L, + 304058873500,-0.070653498172760,L, + 305983296750,-0.068115293979645,L, + 307907720000,-0.064002096652985,L, + 309832143250,-0.059463918209076,L, + 311756566500,-0.054773271083832,L, + 313680989750,-0.050050199031830,L, + 315605413000,-0.045361816883087,L, + 317529836250,-0.040753185749054,L, + 319454259500,-0.036257565021515,L, + 321378682750,-0.031902611255646,L, + 323303106000,-0.027712404727936,L, + 325227529250,-0.023710787296295,L, + 327151952500,-0.019921243190765,L, + 329076375750,-0.016367971897125,L, + 331000799000,-0.013077318668365,L, + 332925222250,-0.010078012943268,L, + 334849645500,-0.007402837276459,L, + 336774068750,-0.005089104175568,L, + 338698492000,-0.003181040287018,L, + 340622915250,-0.001730263233185,L, + 342547338500,-0.000800549983978,L, + 344471761750,-0.000469744205475,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097191810608 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.062097191810608,L, + 5773269750,0.086857914924622,L, + 7697693000,0.095111608505249,L, + 9622116250,0.103365063667297,L, + 11546539500,0.111618757247925,L, + 13470962750,0.119872331619263,L, + 15395386000,0.128125786781311,L, + 17319809250,0.136379480361938,L, + 23093079000,0.161140203475952,L, + 25017502250,0.169393897056580,L, + 26941925500,0.177647352218628,L, + 28866348750,0.185901045799255,L, + 30790772000,0.194154620170593,L, + 32715195250,0.202408075332642,L, + 34639618500,0.210661768913269,L, + 36564041750,0.218915224075317,L, + 38488465000,0.227168917655945,L, + 46186158000,0.260183215141296,L, + 48110581250,0.268436908721924,L, + 50035004500,0.276690363883972,L, + 51959427750,0.284943938255310,L, + 53883851000,0.293197631835938,L, + 57732697500,0.309704780578613,L, + 59657120750,0.317958235740662,L, + 61581544000,0.326211929321289,L, + 67354813750,0.350972652435303,L, + 69279237000,0.359226346015930,L, + 71203660250,0.367479801177979,L, + 73128083500,0.375733494758606,L, + 75052506750,0.383986949920654,L, + 76976930000,0.392240524291992,L, + 78901353250,0.400494217872620,L, + 80825776500,0.408747673034668,L, + 82750199750,0.417001366615295,L, + 84674623000,0.425254940986633,L, + 86599046250,0.433508396148682,L, + 88523469500,0.441762089729309,L, + 90447892750,0.450015664100647,L, + 92372316000,0.458269357681274,L, + 94296739250,0.466522812843323,L, + 96221162500,0.474776506423950,L, + 100070009000,0.481842279434204,L, + 103918855500,0.488908290863037,L, + 109692125250,0.499506950378418,L, + 111616548500,0.503040075302124,L, + 115465395000,0.510105848312378,L, + 117389818250,0.513638973236084,L, + 125087511250,0.527770519256592,L, + 127011934500,0.531303644180298,L, + 128936357750,0.532429218292236,L, + 130860781000,0.533555150032043,L, + 134709627500,0.535806536674500,L, + 138558474000,0.538058161735535,L, + 140482897250,0.539183855056763,L, + 144331743750,0.541435480117798,L, + 146256167000,0.542561173439026,L, + 148180590250,0.543686985969543,L, + 152029436750,0.545938372612000,L, + 155878283250,0.548189997673035,L, + 159727129750,0.550441384315491,L, + 161651553000,0.551567316055298,L, + 163575976250,0.552692890167236,L, + 167424822750,0.554944515228271,L, + 169349246000,0.556070208549500,L, + 173198092500,0.558321833610535,L, + 177046939000,0.560573220252991,L, + 178971362250,0.561699151992798,L, + 180895785500,0.562824726104736,L, + 184744632000,0.565076351165771,L, + 188593478500,0.584238052368164,L, + 192442325000,0.603399991989136,L, + 194366748250,0.612980842590332,L, + 196291171500,0.622561812400818,L, + 198215594750,0.632142663002014,L, + 202064441250,0.651304602622986,L, + 205913287750,0.670466303825378,L, + 207837711000,0.680047273635864,L, + 209762134250,0.689628124237061,L, + 213610980750,0.708790063858032,L, + 217459827250,0.727951765060425,L, + 219384250500,0.737532854080200,L, + 221308673750,0.747113585472107,L, + 223233097000,0.756694674491882,L, + 229006366750,0.785437226295471,L, + 230930790000,0.795018315315247,L, + 232855213250,0.804599165916443,L, + 234779636500,0.814180135726929,L, + 238628483000,0.833341836929321,L, + 240552906250,0.842922925949097,L, + 242477329500,0.852503657341003,L, + 244401752750,0.862084746360779,L, + 250175022500,0.890827298164368,L, + 252099445750,0.900408387184143,L, + 254023869000,0.909989237785339,L, + 255948292250,0.919570207595825,L, + 259797138750,0.938731908798218,L, + 261721562000,0.948312997817993,L, + 267494831750,0.977055549621582,L, + 269419255000,0.986636638641357,L, + 275192524750,1.015379190444946,L, + 277116948000,1.024960279464722,L, + 280965794500,1.044121980667114,L, + 282890217750,1.053703069686890,L, + 290587910750,1.092026472091675,L, + 292512334000,1.101607561111450,L, + 294436757250,1.111188411712646,L, + 296361180500,1.120769500732422,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588322639465,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584362983704,L, + 315605413000,0.052578330039978,L, + 317529836250,0.053555607795715,L, + 319454259500,0.054508805274963,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320786476135,L, + 325227529250,0.057169318199158,L, + 327151952500,0.057972788810730,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059905052185,L, + 334849645500,0.060627102851868,L, + 336774068750,0.061117768287659,L, + 338698492000,0.061522364616394,L, + 340622915250,0.061829924583435,L, + 342547338500,0.062027096748352,L, + 344471761750,0.062097191810608,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 114 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 30790772000,64.836663526520084,L, + 34639618500,63.346630438327260,L, + 38488465000,61.856583689756100,L, + 42337311500,60.366550601563283,L, + 46186158000,58.876503852992116,L, + 48110581250,58.131487308895707,L, + 50035004500,57.386463934610127,L, + 57732697500,54.406384097846150,L, + 61581544000,52.916351009653326,L, + 63505967250,52.171324220273164,L, + 65430390500,51.426300845987583,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936264342700177,L, + 71203660250,49.191240968414597,L, + 73128083500,48.446221009223599,L, + 75052506750,47.701207880221773,L, + 78901353250,46.211161131650613,L, + 82750199750,44.721121213268624,L, + 84674623000,43.976111499361380,L, + 86599046250,43.231081294886629,L, + 88523469500,42.486061335695638,L, + 90447892750,41.741034546315468,L, + 92372316000,40.996021417313642,L, + 94296739250,40.250998043028062,L, + 98145585750,38.760964954835245,L, + 100070009000,38.015941580549665,L, + 101994432250,37.270925036453249,L, + 103918855500,36.525901662167669,L, + 105843278750,35.780885118071261,L, + 107767702000,35.035858328691099,L, + 115465395000,32.055778491927114,L, + 117389818250,31.310761947830706,L, + 119314241500,30.565738573545126,L, + 123163088000,29.075698655163134,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585658736781141,L, + 128936357750,26.840637070042856,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350595444113573,L, + 134709627500,24.605577192469870,L, + 136634050750,23.860553818184290,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370519022444174,L, + 142407320500,21.625495648158594,L, + 144331743750,20.880475688967600,L, + 146256167000,20.135452314682020,L, + 152029436750,17.900392437109033,L, + 153953860000,17.155370770370745,L, + 155878283250,16.410354226274336,L, + 161651553000,14.175289226059471,L, + 163575976250,13.430273535736706,L, + 165500399500,12.685251015224773,L, + 167424822750,11.940232763581070,L, + 169349246000,11.195209389295490,L, + 171273669250,10.450188576330847,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215130406305153,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725087499715402,L, + 182820208750,5.980068394298052,L, + 184744632000,5.235048435107057,L, + 186669055250,6.407538771710448,L, + 188593478500,7.580028681427016,L, + 190517901750,8.752520298690877,L, + 192442325000,9.925010208407445,L, + 194366748250,11.097502679444951,L, + 196291171500,12.269992589161520,L, + 198215594750,13.442485060199026,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787468294726747,L, + 203988864500,16.959955643122377,L, + 205913287750,18.132446406612591,L, + 207837711000,19.304940585197389,L, + 209762134250,20.477431348687603,L, + 211686557500,21.649916989535939,L, + 213610980750,22.822409460573446,L, + 219384250500,26.339881751044089,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684871815760982,L, + 225157520250,29.857352333967441,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202337276042456,L, + 232855213250,34.547325633212054,L, + 236704059750,36.892300330003309,L, + 238628483000,38.064797923682697,L, + 240552906250,39.237288687172907,L, + 242477329500,40.409772620473952,L, + 250175022500,45.099735674434811,L, + 252099445750,46.272229853019610,L, + 259797138750,50.962192906980462,L, + 261721562000,52.134687085565268,L, + 263645985250,53.307177849055478,L, + 265570408500,54.479665197451105,L, + 292512334000,70.894535886314102,L, + 294436757250,72.067033479993498,L, + 296361180500,73.239517413294536,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 5 + Key: + 0,-132.125214700909481,L, + 44261734750,-132.125214700909481,L, + 46186158000,-132.125228361287810,L, + 48110581250,-132.125214700909481,L, + 344471761750,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466885496122558 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,39.466885496122558,L, + 9622116250,41.626147349381434,L, + 11546539500,42.057996304938627,L, + 13470962750,42.489852090684984,L, + 15395386000,42.921701046242177,L, + 17319809250,43.353553416893952,L, + 19244232500,43.785402372451145,L, + 21168655750,44.217258158197502,L, + 23093079000,44.649110528849278,L, + 25017502250,45.080966314595642,L, + 26941925500,45.512815270152835,L, + 28866348750,45.944671055899192,L, + 30790772000,46.376516596361796,L, + 32715195250,46.808372382108161,L, + 34639618500,47.240221337665353,L, + 36564041750,47.672066878127957,L, + 38488465000,48.103926078968904,L, + 40412888250,48.535781864715261,L, + 42337311500,48.967630820272454,L, + 44261734750,49.399483190924229,L, + 46186158000,49.831338976670587,L, + 48110581250,50.263191347322362,L, + 50035004500,50.695040302879555,L, + 51959427750,51.126885843342158,L, + 55808274250,51.990597414834880,L, + 57732697500,52.422446370392073,L, + 59657120750,52.854302156138438,L, + 61581544000,53.286151111695624,L, + 63505967250,53.718006897441988,L, + 65430390500,54.149855852999174,L, + 69279237000,55.013560594302731,L, + 71203660250,55.445409549859917,L, + 73128083500,55.877265335606282,L, + 75052506750,56.309114291163468,L, + 76976930000,56.740966661815243,L, + 78901353250,57.172815617372436,L, + 80825776500,57.604667988024211,L, + 82750199750,58.036527188865158,L, + 84674623000,58.468379559516933,L, + 86599046250,58.900225099979536,L, + 111616548500,64.514305918452621,L, + 113540971750,64.946151458915224,L, + 121238664750,66.673560941522325,L, + 123163088000,67.105420142363272,L, + 125087511250,67.537265682825890,L, + 127011934500,67.969124883666822,L, + 128936357750,68.400970424129440,L, + 130860781000,68.832829624970387,L, + 132785204250,69.264675165432990,L, + 140482897250,70.992084648040091,L, + 142407320500,71.423943848881038,L, + 144331743750,71.855789389343641,L, + 146256167000,72.287648590184588,L, + 148180590250,72.719494130647192,L, + 150105013500,73.151346501298974,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 159727129750,75.310601524368678,L, + 165500399500,76.606158636323997,L, + 169349246000,77.469863377627561,L, + 175122515750,78.765420489582880,L, + 177046939000,79.197279690423827,L, + 178971362250,79.629125230886430,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 188593478500,79.565420056497814,L, + 190517901750,78.885775252947511,L, + 194366748250,77.526499306225219,L, + 196291171500,76.846868163053244,L, + 198215594750,76.167230189692106,L, + 200140018000,75.487599046520131,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769053983264740,L, + 209762134250,72.089416009903587,L, + 213610980750,70.730140063181310,L, + 215535404000,70.050508920009335,L, + 217459827250,69.370870946648196,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 227081943500,65.972687910031652,L, + 229006366750,65.293056766859678,L, + 232855213250,63.933780820137393,L, + 234779636500,63.254156507154590,L, + 236704059750,62.574511703604280,L, + 244401752750,59.855959810159710,L, + 248250599250,58.496697523815769,L, + 250175022500,57.817059550454623,L, + 252099445750,57.137424992188066,L, + 254023869000,56.457787018826927,L, + 255948292250,55.778145630371199,L, + 257872715500,55.098517902293807,L, + 259797138750,54.418873098743497,L, + 261721562000,53.739238540476940,L, + 263645985250,53.059610812399555,L, + 265570408500,52.379972839038409,L, + 267494831750,51.700338280771852,L, + 271343678250,50.341055503860396,L, + 273268101500,49.661427775783011,L, + 275192524750,48.981793217516454,L, + 277116948000,48.302155244155308,L, + 279041371250,47.622513855699587,L, + 280965794500,46.942882712527613,L, + 282890217750,46.263244739166467,L, + 284814641000,45.583613595994500,L, + 286739064250,44.903972207538771,L, + 292512334000,42.865068532739102,L, + 296361180500,41.505792586016817,L, + 298285603750,40.826158027750260,L, + 300210027000,40.146526884578286,L, + 302134450250,39.466882081027975,L, + 304058873500,39.466882081027975,L, + 307907720000,39.466888911217140,L, + 309832143250,39.466885496122558,L, + 311756566500,39.466885496122558,L, + 313680989750,39.466888911217140,L, + 315605413000,39.466888911217140,L, + 317529836250,39.466885496122558,L, + 319454259500,39.466888911217140,L, + 321378682750,39.466885496122558,L, + 323303106000,39.466885496122558,L, + 325227529250,39.466888911217140,L, + 327151952500,39.466888911217140,L, + 329076375750,39.466885496122558,L, + 331000799000,39.466885496122558,L, + 332925222250,39.466888911217140,L, + 334849645500,39.466885496122558,L, + 336774068750,39.466885496122558,L, + 338698492000,39.466888911217140,L, + 340622915250,39.466882081027975,L, + 342547338500,39.466885496122558,L, + 344471761750,39.466885496122558,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 105 + Key: + 0,1.000000000000000,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918705940247,L, + 34639618500,1.018972873687744,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 61581544000,1.033729672431946,L, + 63505967250,1.034783840179443,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675300598145,L, + 132785204250,1.072729468345642,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134849548340,L, + 184744632000,1.101189017295837,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 205913287750,0.931195437908173,L, + 207837711000,0.915741443634033,L, + 209762134250,0.900287628173828,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379580020905,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017776012421,L, + 223233097000,0.792110025882721,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129645347595,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132473468781,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699957847595,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833527803421,L, + 334849645500,0.513409078121185,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605661869049,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702630996704,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459548950195,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729553222656,L, + 63505967250,1.034783720970154,L, + 73128083500,1.040053963661194,L, + 75052506750,1.041107892990112,L, + 76976930000,1.042162060737610,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540519714355,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972788810730,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891613960266,L, + 140482897250,1.076945543289185,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053640365601,L, + 146256167000,1.080107808113098,L, + 152029436750,1.083269953727722,L, + 153953860000,1.084324121475220,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810677528381,L, + 173198092500,1.094864606857300,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833633899689,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 221308673750,0.807563841342926,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840173721313,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024256229401,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 246326176000,0.606662511825562,L, + 248250599250,0.591208636760712,L, + 250175022500,0.575754642486572,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 288663487500,0.266675710678101,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544780254364,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338172435760,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940240859985,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766252517700,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380522251129,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810847282410,L, + 30790772000,1.016864776611328,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270277023315,L, + 82750199750,1.045324206352234,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864810943604,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 111616548500,1.061134934425354,L, + 113540971750,1.062188863754272,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064297080039978,L, + 119314241500,1.065351247787476,L, + 121238664750,1.066405177116394,L, + 123163088000,1.067459344863892,L, + 125087511250,1.068513274192810,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 140482897250,1.076945662498474,L, + 142407320500,1.077999591827393,L, + 144331743750,1.079053878784180,L, + 146256167000,1.080107808113098,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540196418762,L, + 163575976250,1.089594364166260,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756390571594,L, + 171273669250,1.093810558319092,L, + 184744632000,1.101188898086548,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195497512817,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 223233097000,0.792109966278076,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123045921326,L, + 267494831750,0.436669141054153,L, + 271343678250,0.405761212110519,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037604093552,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422349214554,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940240859985,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380462646484,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999940395355,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_060" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792654991150 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,0.016792654991150,L, + 3848846500,0.013911128044128,L, + 5773269750,0.012470126152039,L, + 7697693000,0.011029362678528,L, + 9622116250,0.009588360786438,L, + 11546539500,0.008147716522217,L, + 13470962750,0.006706833839417,L, + 15395386000,0.005265831947327,L, + 19244232500,0.002384305000305,L, + 21168655750,0.000943303108215,L, + 23093079000,-0.000497460365295,L, + 25017502250,-0.001938462257385,L, + 28866348750,-0.004819989204407,L, + 30790772000,-0.006260991096497,L, + 34639618500,-0.009142518043518,L, + 36564041750,-0.010583639144897,L, + 38488465000,-0.012024402618408,L, + 40412888250,-0.013465046882629,L, + 42337311500,-0.014906048774719,L, + 44261734750,-0.016346812248230,L, + 46186158000,-0.017787814140320,L, + 50035004500,-0.020669341087341,L, + 51959427750,-0.022110342979431,L, + 53883851000,-0.023551225662231,L, + 55808274250,-0.024991989135742,L, + 57732697500,-0.026432991027832,L, + 59657120750,-0.027873754501343,L, + 61581544000,-0.029314756393433,L, + 65430390500,-0.032196283340454,L, + 67354813750,-0.033637285232544,L, + 71203660250,-0.036518812179565,L, + 73128083500,-0.037959814071655,L, + 75052506750,-0.039400577545166,L, + 76976930000,-0.040841579437256,L, + 78901353250,-0.042282342910767,L, + 80825776500,-0.043723344802856,L, + 82750199750,-0.045164108276367,L, + 84674623000,-0.046605110168457,L, + 86599046250,-0.048045873641968,L, + 88523469500,-0.049486875534058,L, + 92372316000,-0.052368402481079,L, + 94296739250,-0.053809523582458,L, + 96221162500,-0.055250287055969,L, + 98145585750,-0.056691288948059,L, + 100070009000,-0.058132052421570,L, + 101994432250,-0.059572696685791,L, + 103918855500,-0.061013698577881,L, + 107767702000,-0.063895225524902,L, + 109692125250,-0.065336227416992,L, + 111616548500,-0.066777110099792,L, + 113540971750,-0.068218111991882,L, + 117389818250,-0.071099638938904,L, + 119314241500,-0.072540640830994,L, + 123163088000,-0.075422167778015,L, + 125087511250,-0.076863169670105,L, + 127011934500,-0.078303933143616,L, + 128936357750,-0.079744935035706,L, + 132785204250,-0.082626461982727,L, + 134709627500,-0.084067463874817,L, + 138558474000,-0.086948990821838,L, + 140482897250,-0.088389992713928,L, + 142407320500,-0.089830756187439,L, + 144331743750,-0.091271758079529,L, + 148180590250,-0.094153285026550,L, + 150105013500,-0.095594286918640,L, + 152029436750,-0.097035169601440,L, + 153953860000,-0.098475933074951,L, + 155878283250,-0.099916934967041,L, + 159727129750,-0.102798461914062,L, + 161651553000,-0.104239463806152,L, + 163575976250,-0.105680108070374,L, + 165500399500,-0.107121109962463,L, + 167424822750,-0.108561873435974,L, + 169349246000,-0.110002875328064,L, + 171273669250,-0.111443758010864,L, + 173198092500,-0.112884759902954,L, + 177046939000,-0.115766286849976,L, + 178971362250,-0.117207288742065,L, + 180895785500,-0.118648052215576,L, + 182820208750,-0.120089054107666,L, + 184744632000,-0.121529817581177,L, + 190517901750,-0.115975856781006,L, + 192442325000,-0.114124655723572,L, + 202064441250,-0.104868054389954,L, + 205913287750,-0.101165175437927,L, + 213610980750,-0.093759894371033,L, + 215535404000,-0.091908693313599,L, + 236704059750,-0.071544170379639,L, + 238628483000,-0.069692730903625,L, + 240552906250,-0.067841649055481,L, + 242477329500,-0.065990090370178,L, + 244401752750,-0.064139008522034,L, + 246326176000,-0.062287449836731,L, + 248250599250,-0.060436367988586,L, + 250175022500,-0.058584809303284,L, + 252099445750,-0.056733727455139,L, + 254023869000,-0.054882168769836,L, + 255948292250,-0.053031086921692,L, + 257872715500,-0.051179528236389,L, + 259797138750,-0.049328446388245,L, + 261721562000,-0.047477006912231,L, + 263645985250,-0.045625925064087,L, + 265570408500,-0.043774366378784,L, + 267494831750,-0.041923284530640,L, + 269419255000,-0.040071725845337,L, + 280965794500,-0.028963804244995,L, + 282890217750,-0.027112603187561,L, + 298285603750,-0.012302041053772,L, + 300210027000,-0.010450482368469,L, + 302134450250,-0.008599400520325,L, + 304058873500,-0.008604288101196,L, + 305983296750,-0.007685780525208,L, + 307907720000,-0.006197690963745,L, + 309832143250,-0.004555225372314,L, + 311756566500,-0.002857923507690,L, + 313680989750,-0.001148819923401,L, + 315605413000,0.000547766685486,L, + 317529836250,0.002215504646301,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934642791748,L, + 325227529250,0.008382558822632,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039853096008,L, + 331000799000,0.012230753898621,L, + 332925222250,0.013315916061401,L, + 334849645500,0.014284014701843,L, + 336774068750,0.015121221542358,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336679458618,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016792654991150,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469744205475 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,-0.000469744205475,L, + 1924423250,-0.000807583332062,L, + 3848846500,-0.001145780086517,L, + 5773269750,-0.001483380794525,L, + 9622116250,-0.002159059047699,L, + 11546539500,-0.002496778964996,L, + 13470962750,-0.002834618091583,L, + 15395386000,-0.003172576427460,L, + 19244232500,-0.003848254680634,L, + 21168655750,-0.004185855388641,L, + 23093079000,-0.004523932933807,L, + 25017502250,-0.004861533641815,L, + 26941925500,-0.005199372768402,L, + 28866348750,-0.005537569522858,L, + 30790772000,-0.005875170230865,L, + 32715195250,-0.006213009357452,L, + 34639618500,-0.006551086902618,L, + 36564041750,-0.006888687610626,L, + 50035004500,-0.009253561496735,L, + 51959427750,-0.009591281414032,L, + 53883851000,-0.009929358959198,L, + 55808274250,-0.010267198085785,L, + 57732697500,-0.010604798793793,L, + 59657120750,-0.010942876338959,L, + 61581544000,-0.011280477046967,L, + 63505967250,-0.011618316173553,L, + 65430390500,-0.011956512928009,L, + 67354813750,-0.012294113636017,L, + 69279237000,-0.012631952762604,L, + 71203660250,-0.012969672679901,L, + 75052506750,-0.013645350933075,L, + 76976930000,-0.013983309268951,L, + 80825776500,-0.014658987522125,L, + 82750199750,-0.014996588230133,L, + 84674623000,-0.015334665775299,L, + 86599046250,-0.015672504901886,L, + 88523469500,-0.016010105609894,L, + 90447892750,-0.016348302364349,L, + 92372316000,-0.016685903072357,L, + 94296739250,-0.017023742198944,L, + 96221162500,-0.017361819744110,L, + 98145585750,-0.017699420452118,L, + 111616548500,-0.020064294338226,L, + 113540971750,-0.020402014255524,L, + 115465395000,-0.020740091800690,L, + 117389818250,-0.021077930927277,L, + 119314241500,-0.021415531635284,L, + 121238664750,-0.021753609180450,L, + 123163088000,-0.022091448307037,L, + 125087511250,-0.022429049015045,L, + 127011934500,-0.022767245769501,L, + 128936357750,-0.023104846477509,L, + 130860781000,-0.023442685604095,L, + 132785204250,-0.023780405521393,L, + 136634050750,-0.024456083774567,L, + 138558474000,-0.024794042110443,L, + 142407320500,-0.025469720363617,L, + 144331743750,-0.025807321071625,L, + 146256167000,-0.026145398616791,L, + 148180590250,-0.026483237743378,L, + 150105013500,-0.026820838451385,L, + 152029436750,-0.027159035205841,L, + 153953860000,-0.027496874332428,L, + 155878283250,-0.027834475040436,L, + 157802706500,-0.028172552585602,L, + 159727129750,-0.028510391712189,L, + 161651553000,-0.028847992420197,L, + 173198092500,-0.030875027179718,L, + 175122515750,-0.031212985515594,L, + 178971362250,-0.031888663768768,L, + 180895785500,-0.032226264476776,L, + 182820208750,-0.032564342021942,L, + 184744632000,-0.032902181148529,L, + 186669055250,-0.033520638942719,L, + 188593478500,-0.034139573574066,L, + 190517901750,-0.034757912158966,L, + 192442325000,-0.035376727581024,L, + 194366748250,-0.035995304584503,L, + 198215594750,-0.037232697010040,L, + 200140018000,-0.037851274013519,L, + 202064441250,-0.038469731807709,L, + 203988864500,-0.039088666439056,L, + 205913287750,-0.039707362651825,L, + 207837711000,-0.040325820446014,L, + 209762134250,-0.040944755077362,L, + 211686557500,-0.041563093662262,L, + 219384250500,-0.044037878513336,L, + 221308673750,-0.044656455516815,L, + 223233097000,-0.045274913311005,L, + 225157520250,-0.045893847942352,L, + 227081943500,-0.046512305736542,L, + 229006366750,-0.047131001949310,L, + 230930790000,-0.047749578952789,L, + 240552906250,-0.050843060016632,L, + 242477329500,-0.051461637020111,L, + 244401752750,-0.052080094814301,L, + 246326176000,-0.052699029445648,L, + 248250599250,-0.053317368030548,L, + 250175022500,-0.053936183452606,L, + 252099445750,-0.054554760456085,L, + 254023869000,-0.055173456668854,L, + 255948292250,-0.055791914463043,L, + 257872715500,-0.056410729885101,L, + 259797138750,-0.057029187679291,L, + 261721562000,-0.057648003101349,L, + 263645985250,-0.058266580104828,L, + 267494831750,-0.059503972530365,L, + 269419255000,-0.060122549533844,L, + 271343678250,-0.060741364955902,L, + 273268101500,-0.061359941959381,L, + 275192524750,-0.061978638172150,L, + 277116948000,-0.062597095966339,L, + 279041371250,-0.063215911388397,L, + 280965794500,-0.063834369182587,L, + 282890217750,-0.064453184604645,L, + 284814641000,-0.065071761608124,L, + 288663487500,-0.066309154033661,L, + 290587910750,-0.066927731037140,L, + 292512334000,-0.067546188831329,L, + 294436757250,-0.068165123462677,L, + 296361180500,-0.068783581256866,L, + 298285603750,-0.069402277469635,L, + 300210027000,-0.070021092891693,L, + 302134450250,-0.070639550685883,L, + 304058873500,-0.070653498172760,L, + 305983296750,-0.068115293979645,L, + 307907720000,-0.064002096652985,L, + 309832143250,-0.059463918209076,L, + 311756566500,-0.054773271083832,L, + 313680989750,-0.050050199031830,L, + 315605413000,-0.045361816883087,L, + 317529836250,-0.040753185749054,L, + 319454259500,-0.036257565021515,L, + 321378682750,-0.031902611255646,L, + 323303106000,-0.027712404727936,L, + 325227529250,-0.023710787296295,L, + 327151952500,-0.019921243190765,L, + 329076375750,-0.016367971897125,L, + 331000799000,-0.013077318668365,L, + 332925222250,-0.010078012943268,L, + 334849645500,-0.007402837276459,L, + 336774068750,-0.005089104175568,L, + 338698492000,-0.003181040287018,L, + 340622915250,-0.001730263233185,L, + 342547338500,-0.000800549983978,L, + 344471761750,-0.000469744205475,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097191810608 + KeyVer: 4005 + KeyCount: 79 + Key: + 0,0.062097191810608,L, + 19244232500,0.114490866661072,L, + 21168655750,0.119730114936829,L, + 25017502250,0.130208849906921,L, + 26941925500,0.135448336601257,L, + 61581544000,0.229756951332092,L, + 63505967250,0.234996199607849,L, + 96221162500,0.324065446853638,L, + 98145585750,0.329304933547974,L, + 103918855500,0.345023036003113,L, + 105843278750,0.350262284278870,L, + 138558474000,0.439331531524658,L, + 140482897250,0.444571018218994,L, + 142407320500,0.449810385704041,L, + 144331743750,0.455049514770508,L, + 148180590250,0.465528249740601,L, + 150105013500,0.470767736434937,L, + 184744632000,0.565076351165771,L, + 188593478500,0.584238052368164,L, + 192442325000,0.603399991989136,L, + 194366748250,0.612980842590332,L, + 196291171500,0.622561812400818,L, + 198215594750,0.632142663002014,L, + 202064441250,0.651304602622986,L, + 205913287750,0.670466303825378,L, + 207837711000,0.680047273635864,L, + 209762134250,0.689628124237061,L, + 213610980750,0.708790063858032,L, + 217459827250,0.727951765060425,L, + 219384250500,0.737532854080200,L, + 221308673750,0.747113585472107,L, + 223233097000,0.756694674491882,L, + 229006366750,0.785437226295471,L, + 230930790000,0.795018315315247,L, + 232855213250,0.804599165916443,L, + 234779636500,0.814180135726929,L, + 238628483000,0.833341836929321,L, + 240552906250,0.842922925949097,L, + 242477329500,0.852503657341003,L, + 244401752750,0.862084746360779,L, + 250175022500,0.890827298164368,L, + 252099445750,0.900408387184143,L, + 254023869000,0.909989237785339,L, + 255948292250,0.919570207595825,L, + 259797138750,0.938731908798218,L, + 261721562000,0.948312997817993,L, + 267494831750,0.977055549621582,L, + 269419255000,0.986636638641357,L, + 275192524750,1.015379190444946,L, + 277116948000,1.024960279464722,L, + 280965794500,1.044121980667114,L, + 282890217750,1.053703069686890,L, + 290587910750,1.092026472091675,L, + 292512334000,1.101607561111450,L, + 294436757250,1.111188411712646,L, + 296361180500,1.120769500732422,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588322639465,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584362983704,L, + 315605413000,0.052578330039978,L, + 317529836250,0.053555607795715,L, + 319454259500,0.054508805274963,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320786476135,L, + 325227529250,0.057169318199158,L, + 327151952500,0.057972788810730,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059905052185,L, + 334849645500,0.060627102851868,L, + 336774068750,0.061117768287659,L, + 338698492000,0.061522364616394,L, + 340622915250,0.061829924583435,L, + 342547338500,0.062027096748352,L, + 344471761750,0.062097191810608,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 23093079000,67.816743363284061,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326703444902080,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836663526520084,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 38488465000,61.856590519945271,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 50035004500,57.386457104420955,L, + 51959427750,56.641443975419136,L, + 53883851000,55.896417186038967,L, + 57732697500,54.406384097846150,L, + 59657120750,53.661360723560570,L, + 61581544000,52.916344179464154,L, + 63505967250,52.171317390083992,L, + 65430390500,51.426311091271337,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936264342700177,L, + 71203660250,49.191237553320008,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701201050032601,L, + 76976930000,46.956181090841611,L, + 78901353250,46.211157716556031,L, + 80825776500,45.466141172459615,L, + 84674623000,43.976101254077626,L, + 86599046250,43.231074464697464,L, + 88523469500,42.486061335695638,L, + 90447892750,41.741034546315468,L, + 92372316000,40.996021417313642,L, + 94296739250,40.250998043028062,L, + 101994432250,37.270918206264085,L, + 103918855500,36.525891416883915,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035848083407345,L, + 109692125250,34.290834954405518,L, + 113540971750,32.800801866212694,L, + 115465395000,32.055775076832532,L, + 117389818250,31.310751702546948,L, + 119314241500,30.565731743355954,L, + 121238664750,29.820715199259546,L, + 123163088000,29.075695240068548,L, + 125087511250,28.330676988424845,L, + 127011934500,27.585651906591973,L, + 128936357750,26.840631947400979,L, + 130860781000,26.095615403304567,L, + 132785204250,25.350593736566278,L, + 134709627500,24.605573777375284,L, + 136634050750,23.860548695542413,L, + 138558474000,23.115533858993292,L, + 140482897250,22.370512192255006,L, + 144331743750,20.880472273873014,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390428940396440,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900385606919862,L, + 153953860000,17.155372477918039,L, + 155878283250,16.410349103632456,L, + 157802706500,15.665327436894168,L, + 159727129750,14.920310892797758,L, + 161651553000,14.175291787380409,L, + 163575976250,13.430269266868475,L, + 165500399500,12.685244185035602,L, + 167424822750,11.940230202260132,L, + 169349246000,11.195204266653612,L, + 171273669250,10.450191137651787,L, + 173198092500,9.705166909592560,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215124429889631,L, + 178971362250,7.470108739566866,L, + 180895785500,6.725085792168109,L, + 182820208750,5.980063271656174,L, + 184744632000,5.235048008220234,L, + 186669055250,6.407537917936802,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752519444917230,L, + 192442325000,9.925011915954737,L, + 194366748250,11.097501825671305,L, + 196291171500,12.269996004256104,L, + 198215594750,13.442483352651733,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787466587179454,L, + 203988864500,16.959953935575083,L, + 205913287750,18.132446406612591,L, + 207837711000,19.304940585197389,L, + 211686557500,21.649922112177819,L, + 213610980750,22.822411168120741,L, + 215535404000,23.994905346705540,L, + 217459827250,25.167394402648462,L, + 219384250500,26.339881751044089,L, + 221308673750,27.512381052270765,L, + 223233097000,28.684864985571810,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202344106231621,L, + 230930790000,33.374828039532666,L, + 232855213250,34.547322218117465,L, + 236704059750,36.892303745097898,L, + 238628483000,38.064797923682697,L, + 240552906250,39.237285272078324,L, + 244401752750,41.582266799058750,L, + 246326176000,42.754760977643549,L, + 248250599250,43.927248326039184,L, + 250175022500,45.099739089529393,L, + 252099445750,46.272226437925021,L, + 255948292250,48.617214795094625,L, + 257872715500,49.789705558584835,L, + 259797138750,50.962192906980462,L, + 277116948000,61.514609778392391,L, + 279041371250,62.687107372071779,L, + 280965794500,63.859591305372824,L, + 286739064250,67.377063595843467,L, + 288663487500,68.549561189522848,L, + 290587910750,69.722045122823900,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817949473515462 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,-47.817949473515462,L, + 5773269750,-47.066990664841150,L, + 9622116250,-46.566358289247447,L, + 11546539500,-46.316038686356009,L, + 13470962750,-46.065712253275400,L, + 15395386000,-45.815402895667717,L, + 17319809250,-45.565079877681697,L, + 19244232500,-45.314767104979424,L, + 21168655750,-45.064444086993404,L, + 25017502250,-44.563804881210530,L, + 26941925500,-44.313495523602846,L, + 28866348750,-44.063172505616826,L, + 30790772000,-43.812856317819971,L, + 34639618500,-43.312217112037096,L, + 36564041750,-43.061894094051070,L, + 38488465000,-42.811581321348804,L, + 40412888250,-42.561258303362784,L, + 42337311500,-42.310942115565929,L, + 44261734750,-42.060629342863663,L, + 46186158000,-41.810302909783054,L, + 48110581250,-41.559986721986199,L, + 51959427750,-41.059347516203324,L, + 53883851000,-40.809031328406476,L, + 55808274250,-40.558718555704203,L, + 57732697500,-40.308395537718184,L, + 59657120750,-40.058079349921329,L, + 61581544000,-39.807756331935309,L, + 63505967250,-39.557440144138454,L, + 65430390500,-39.307120541247016,L, + 67354813750,-39.056797523260997,L, + 69279237000,-38.806481335464142,L, + 71203660250,-38.556168562761876,L, + 73128083500,-38.305845544775856,L, + 75052506750,-38.055525941884419,L, + 76976930000,-37.805209754087564,L, + 78901353250,-37.554886736101537,L, + 80825776500,-37.304573963399271,L, + 82750199750,-37.054250945413251,L, + 84674623000,-36.803931342521814,L, + 86599046250,-36.553621984914130,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802663176239818,L, + 100070009000,-34.801384764674069,L, + 101994432250,-34.551071991971796,L, + 103918855500,-34.300755804174948,L, + 105843278750,-34.050425955999756,L, + 107767702000,-33.800113183297483,L, + 109692125250,-33.549793580406046,L, + 111616548500,-33.299477392609198,L, + 113540971750,-33.049164619906925,L, + 117389818250,-32.548518583934879,L, + 121238664750,-32.047879378152004,L, + 123163088000,-31.797570020544324,L, + 125087511250,-31.547247002558301,L, + 127011934500,-31.296930814761449,L, + 128936357750,-31.046607796775426,L, + 130860781000,-30.796288193883989,L, + 132785204250,-30.545975421181723,L, + 134709627500,-30.295655818290282,L, + 136634050750,-30.045339630493430,L, + 140482897250,-29.544700424710555,L, + 142407320500,-29.294384236913704,L, + 144331743750,-29.044057803833095,L, + 146256167000,-28.793745031130829,L, + 148180590250,-28.543427135786683,L, + 150105013500,-28.293102410253368,L, + 152029436750,-28.042784514909222,L, + 153953860000,-27.792470034659662,L, + 155878283250,-27.542153846862810,L, + 157802706500,-27.291832536424078,L, + 159727129750,-27.041516348627226,L, + 161651553000,-26.791195038188498,L, + 163575976250,-26.540875435297057,L, + 165500399500,-26.290559247500205,L, + 169349246000,-25.789920041717330,L, + 171273669250,-25.539605561467770,L, + 173198092500,-25.289284251029041,L, + 175122515750,-25.038964648137604,L, + 177046939000,-24.788646752793458,L, + 180895785500,-24.288014377199751,L, + 184744632000,-23.787375171416876,L, + 190517901750,-24.969204511049778,L, + 192442325000,-25.363152746902621,L, + 194366748250,-25.757092445019005,L, + 196291171500,-26.151037265777262,L, + 198215594750,-26.544980378988232,L, + 200140018000,-26.938926907293784,L, + 202064441250,-27.332868312957455,L, + 205913287750,-28.120754539379391,L, + 207837711000,-28.514701067684943,L, + 209762134250,-28.908645888443203,L, + 211686557500,-29.302587294106875,L, + 217459827250,-30.484421756381654,L, + 219384250500,-30.878359746950743,L, + 223233097000,-31.666249388467264,L, + 225157520250,-32.060197624320104,L, + 229006366750,-32.848080435647454,L, + 230930790000,-33.242028671500300,L, + 232855213250,-33.635966662069393,L, + 234779636500,-34.029918313016822,L, + 236704059750,-34.423859718680497,L, + 238628483000,-34.817807954533336,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605694180955268,L, + 244401752750,-35.999628756429779,L, + 248250599250,-36.787518397946293,L, + 250175022500,-37.181470048893722,L, + 252099445750,-37.575411454557397,L, + 254023869000,-37.969349445126490,L, + 255948292250,-38.363297680979336,L, + 257872715500,-38.757235671548422,L, + 261721562000,-39.545125313064943,L, + 263645985250,-39.939073548917783,L, + 265570408500,-40.333018369676047,L, + 267494831750,-40.726959775339722,L, + 269419255000,-41.120897765908808,L, + 271343678250,-41.514842586667065,L, + 273268101500,-41.908790822519912,L, + 277116948000,-42.696680464036433,L, + 279041371250,-43.090621869700108,L, + 280965794500,-43.484570105552947,L, + 282890217750,-43.878514926311212,L, + 284814641000,-44.272452916880297,L, + 286739064250,-44.666394322543972,L, + 288663487500,-45.060345973491401,L, + 290587910750,-45.454287379155076,L, + 292512334000,-45.848232199913333,L, + 294436757250,-46.242173605577008,L, + 296361180500,-46.636118426335273,L, + 298285603750,-47.030056416904358,L, + 300210027000,-47.424008067851787,L, + 302134450250,-47.817949473515462,L, + 304058873500,-47.817946058420880,L, + 305983296750,-47.817952888610051,L, + 307907720000,-47.817949473515462,L, + 311756566500,-47.817949473515462,L, + 313680989750,-47.817952888610051,L, + 315605413000,-47.817949473515462,L, + 327151952500,-47.817949473515462,L, + 329076375750,-47.817946058420880,L, + 331000799000,-47.817949473515462,L, + 336774068750,-47.817949473515462,L, + 338698492000,-47.817946058420880,L, + 340622915250,-47.817949473515462,L, + 344471761750,-47.817949473515462,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887853459462164 + KeyVer: 4005 + KeyCount: 171 + Key: + 0,-21.887853459462164,L, + 1924423250,-21.456002796357680,L, + 3848846500,-21.024153840800487,L, + 5773269750,-20.592298055054130,L, + 9622116250,-19.728596728845162,L, + 11546539500,-19.296742650646092,L, + 15395386000,-18.433041324437127,L, + 19244232500,-17.569336583133577,L, + 21168655750,-17.137485920029093,L, + 23093079000,-16.705628426735441,L, + 25017502250,-16.273779471178248,L, + 26941925500,-15.841928808073765,L, + 28866348750,-15.410074729874697,L, + 30790772000,-14.978225774317506,L, + 32715195250,-14.546373403665731,L, + 34639618500,-14.114517617919370,L, + 36564041750,-13.682663539720302,L, + 38488465000,-13.250815437936756,L, + 40412888250,-12.818963921058627,L, + 42337311500,-12.387111550406852,L, + 44261734750,-11.955258325981429,L, + 46186158000,-11.523409370424240,L, + 48110581250,-11.091554438451524,L, + 50035004500,-10.659704629120688,L, + 51959427750,-10.227851404695265,L, + 53883851000,-9.795999034043490,L, + 55808274250,-9.364147517165360,L, + 57732697500,-8.932292585192647,L, + 59657120750,-8.500447044730041,L, + 61581544000,-8.068591258983680,L, + 63505967250,-7.636738888331904,L, + 65430390500,-7.204890786548360,L, + 67354813750,-6.773033293254707,L, + 69279237000,-6.341181776376577,L, + 71203660250,-5.909331540158917,L, + 73128083500,-5.477478742620318,L, + 75052506750,-5.045628933289481,L, + 76976930000,-4.613772293769475,L, + 78901353250,-4.181923338212283,L, + 80825776500,-3.750070967560508,L, + 82750199750,-3.318218383465320,L, + 84674623000,-2.886363878379429,L, + 86599046250,-2.454510440510596,L, + 88523469500,-2.022660631179758,L, + 90447892750,-1.590812315952802,L, + 92372316000,-1.158962720065377,L, + 94296739250,-0.727105760380253,L, + 96221162500,-0.295253443089330,L, + 98145585750,0.136599394469908,L, + 100070009000,0.568448310006460,L, + 101994432250,1.000305323052437,L, + 103918855500,1.432153531557687,L, + 105843278750,1.864003661053641,L, + 107767702000,2.295856245148828,L, + 109692125250,2.727711390564954,L, + 111616548500,3.159560773008968,L, + 113540971750,3.591415918425095,L, + 115465395000,4.023267862190047,L, + 117389818250,4.455118952181353,L, + 119314241500,4.886967480851721,L, + 121238664750,5.318821985937612,L, + 123163088000,5.750676064136680,L, + 125087511250,6.182526300354341,L, + 127011934500,6.614379524779762,L, + 128936357750,7.046233602978830,L, + 130860781000,7.478081277875552,L, + 132785204250,7.909930233432743,L, + 134709627500,8.341787726726396,L, + 136634050750,8.773637536057233,L, + 138558474000,9.205492468029947,L, + 140482897250,9.637344838681724,L, + 142407320500,10.069196355559853,L, + 144331743750,10.501048726211629,L, + 146256167000,10.932895974221527,L, + 148180590250,11.364750906194240,L, + 150105013500,11.796604984393309,L, + 152029436750,12.228457355045085,L, + 153953860000,12.660307164375922,L, + 155878283250,13.092162096348636,L, + 157802706500,13.524014467000413,L, + 159727129750,13.955862568783957,L, + 161651553000,14.387714939435732,L, + 163575976250,14.819570725182093,L, + 165500399500,15.251421388286577,L, + 167424822750,15.683270343843766,L, + 169349246000,16.115124422042836,L, + 171273669250,16.546971670052734,L, + 173198092500,16.978829163346386,L, + 175122515750,17.410676411356285,L, + 177046939000,17.842533904649937,L, + 178971362250,18.274382860207130,L, + 180895785500,18.706235230858905,L, + 182820208750,19.138084186416094,L, + 184744632000,19.569938264615164,L, + 186669055250,18.890307121443190,L, + 188593478500,18.210669148082047,L, + 190517901750,17.531036297362785,L, + 192442325000,16.851394908907057,L, + 196291171500,15.492125792373942,L, + 198215594750,14.812486111465507,L, + 200140018000,14.132849845651657,L, + 202064441250,13.453214433611453,L, + 203988864500,12.773579875344897,L, + 205913287750,12.093944463304693,L, + 207837711000,11.414307343717198,L, + 211686557500,10.055034812089497,L, + 213610980750,9.375396838728356,L, + 215535404000,8.695763134235445,L, + 217459827250,8.016127722195241,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656858605662126,L, + 223233097000,5.977220205414161,L, + 225157520250,5.297583085826665,L, + 227081943500,4.617946820012815,L, + 229006366750,3.938311407972612,L, + 230930790000,3.258679197583582,L, + 232855213250,2.579036955354208,L, + 234779636500,1.899403250861297,L, + 236704059750,1.219768799316446,L, + 238628483000,0.540133173832831,L, + 240552906250,-0.139503265403791,L, + 242477329500,-0.819141332146426,L, + 244401752750,-1.498775090000190,L, + 246326176000,-2.178413276804744,L, + 248250599250,-2.858048902288359,L, + 250175022500,-3.537683673998328,L, + 252099445750,-4.217321647359470,L, + 254023869000,-4.896955351852381,L, + 255948292250,-5.576592898326700,L, + 257872715500,-6.256228310366904,L, + 259797138750,-6.935861587972991,L, + 261721562000,-7.615500415107780,L, + 263645985250,-8.295134973374337,L, + 265570408500,-8.974770385414541,L, + 267494831750,-9.654409212549329,L, + 269419255000,-10.334046332136825,L, + 271343678250,-11.013684305497968,L, + 273268101500,-11.693317156217232,L, + 275192524750,-12.372950860710143,L, + 277116948000,-13.052585418976701,L, + 279041371250,-13.732222538564196,L, + 280965794500,-14.411857950604400,L, + 282890217750,-15.091495923965542,L, + 286739064250,-16.450768455593241,L, + 288663487500,-17.130406428954384,L, + 290587910750,-17.810039279673649,L, + 292512334000,-18.489678960582083,L, + 294436757250,-19.169308396206763,L, + 296361180500,-19.848948077115200,L, + 298285603750,-20.528582635381756,L, + 300210027000,-21.208220608742899,L, + 302134450250,-21.887851751914869,L, + 304058873500,-21.887856874556746,L, + 307907720000,-21.887853459462164,L, + 309832143250,-21.887853459462164,L, + 311756566500,-21.887858582104041,L, + 317529836250,-21.887853459462164,L, + 319454259500,-21.887853459462164,L, + 321378682750,-21.887855167009455,L, + 323303106000,-21.887853459462164,L, + 325227529250,-21.887853459462164,L, + 327151952500,-21.887851751914869,L, + 329076375750,-21.887853459462164,L, + 331000799000,-21.887853459462164,L, + 332925222250,-21.887855167009455,L, + 334849645500,-21.887850044367578,L, + 336774068750,-21.887855167009455,L, + 338698492000,-21.887851751914869,L, + 340622915250,-21.887858582104041,L, + 342547338500,-21.887853459462164,L, + 344471761750,-21.887853459462164,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 114 + Key: + 0,1.000000000000000,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002107977867126,L, + 5773269750,1.003162145614624,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 26941925500,1.014756560325623,L, + 28866348750,1.015810728073120,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378254890442,L, + 105843278750,1.057972788810730,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061134934425354,L, + 113540971750,1.062188863754272,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729349136353,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945781707764,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324240684509,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432337760925,L, + 159727129750,1.087486267089844,L, + 173198092500,1.094864606857300,L, + 175122515750,1.095918774604797,L, + 177046939000,1.096972703933716,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011355400085,L, + 200140018000,0.977557241916656,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287628173828,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 227081943500,0.761201977729797,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478310108185,L, + 244401752750,0.622116506099701,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300707817078,L, + 254023869000,0.544846713542938,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484879732132,L, + 261721562000,0.483030945062637,L, + 263645985250,0.467576950788498,L, + 269419255000,0.421215146780014,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308918714523,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132503271103,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373579740524,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291260957718,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345824003220,L, + 331000799000,0.426293283700943,L, + 332925222250,0.464833468198776,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605781078339,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002108216285706,L, + 5773269750,1.003162264823914,L, + 7697693000,1.004216194152832,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594414710999,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918705940247,L, + 34639618500,1.018972873687744,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513597488403,L, + 55808274250,1.030567526817322,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675504684448,L, + 63505967250,1.034783601760864,L, + 65430390500,1.035837769508362,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042162179946899,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837803840637,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945781707764,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053878784180,L, + 148180590250,1.081161975860596,L, + 150105013500,1.082215905189514,L, + 153953860000,1.084324240684509,L, + 155878283250,1.085378050804138,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 175122515750,1.095918536186218,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 194366748250,1.023919224739075,L, + 196291171500,1.008465051651001,L, + 200140018000,0.977557301521301,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741443634033,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655852794647,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748043060303,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483031004667282,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544899463654,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525667667389,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380522251129,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,1.000000000000000,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 9622116250,1.005270242691040,L, + 11546539500,1.006324172019958,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432269096375,L, + 17319809250,1.009486436843872,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022135019302368,L, + 42337311500,1.023188948631287,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567407608032,L, + 57732697500,1.031621575355530,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837888717651,L, + 67354813750,1.036891818046570,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 105843278750,1.057972788810730,L, + 107767702000,1.059026718139648,L, + 111616548500,1.061135053634644,L, + 113540971750,1.062188982963562,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675300598145,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891733169556,L, + 142407320500,1.077999830245972,L, + 144331743750,1.079053997993469,L, + 146256167000,1.080107927322388,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486267089844,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648293495178,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756390571594,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 184744632000,1.101188898086548,L, + 188593478500,1.070281028747559,L, + 190517901750,1.054826974868774,L, + 198215594750,0.993011236190796,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649372577667,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833574295044,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840114116669,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 263645985250,0.467577010393143,L, + 267494831750,0.436669141054153,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525786876678,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756719589233,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_059" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678383827209 + KeyVer: 4005 + KeyCount: 57 + Key: + 0,-0.063678383827209,L, + 209762134250,-0.063678383827209,L, + 211686557500,-0.063525080680847,L, + 215535404000,-0.063218951225281,L, + 217459827250,-0.063065648078918,L, + 219384250500,-0.062912464141846,L, + 221308673750,-0.062759399414062,L, + 223233097000,-0.062606692314148,L, + 225157520250,-0.062453269958496,L, + 227081943500,-0.062300205230713,L, + 230930790000,-0.061993837356567,L, + 238628483000,-0.061381578445435,L, + 240552906250,-0.061228275299072,L, + 244401752750,-0.060922145843506,L, + 246326176000,-0.060768842697144,L, + 248250599250,-0.060616016387939,L, + 250175022500,-0.060462951660156,L, + 252099445750,-0.060309648513794,L, + 254023869000,-0.060156583786011,L, + 255948292250,-0.060003399848938,L, + 257872715500,-0.059850454330444,L, + 259797138750,-0.059697151184082,L, + 261721562000,-0.059543967247009,L, + 263645985250,-0.059391140937805,L, + 267494831750,-0.059084773063660,L, + 269419255000,-0.058931708335876,L, + 273268101500,-0.058625340461731,L, + 280965794500,-0.058013081550598,L, + 282890217750,-0.057859778404236,L, + 284814641000,-0.058243393898010,L, + 288663487500,-0.058594346046448,L, + 290587910750,-0.058769583702087,L, + 292512334000,-0.058944702148438,L, + 294436757250,-0.059120178222656,L, + 296361180500,-0.059295296669006,L, + 298285603750,-0.059470772743225,L, + 300210027000,-0.059646010398865,L, + 302134450250,-0.059821486473083,L, + 304058873500,-0.059996724128723,L, + 305983296750,-0.060172080993652,L, + 309832143250,-0.060522556304932,L, + 311756566500,-0.060697913169861,L, + 313680989750,-0.060873389244080,L, + 315605413000,-0.061048388481140,L, + 317529836250,-0.061223864555359,L, + 319454259500,-0.061399221420288,L, + 323303106000,-0.061749696731567,L, + 325227529250,-0.061925172805786,L, + 327151952500,-0.062100291252136,L, + 329076375750,-0.062275767326355,L, + 331000799000,-0.062451004981995,L, + 332925222250,-0.062626361846924,L, + 334849645500,-0.062801599502563,L, + 336774068750,-0.062977075576782,L, + 340622915250,-0.063327550888062,L, + 342547338500,-0.063503026962280,L, + 344471761750,-0.063678383827209,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339818477631 + KeyVer: 4005 + KeyCount: 59 + Key: + 0,-0.087339818477631,L, + 207837711000,-0.087339818477631,L, + 209762134250,-0.167690575122833,L, + 211686557500,-0.165458738803864,L, + 213610980750,-0.163226783275604,L, + 215535404000,-0.160994708538055,L, + 217459827250,-0.158762872219086,L, + 221308673750,-0.154298722743988,L, + 223233097000,-0.152066767215729,L, + 225157520250,-0.149834930896759,L, + 227081943500,-0.147602856159210,L, + 229006366750,-0.145371139049530,L, + 230930790000,-0.143139302730560,L, + 232855213250,-0.140907227993011,L, + 234779636500,-0.138675391674042,L, + 236704059750,-0.136443436145782,L, + 238628483000,-0.134211361408234,L, + 240552906250,-0.131979525089264,L, + 244401752750,-0.127515375614166,L, + 246326176000,-0.125283539295197,L, + 248250599250,-0.123051464557648,L, + 250175022500,-0.120819747447968,L, + 252099445750,-0.118587911128998,L, + 255948292250,-0.114123761653900,L, + 257872715500,-0.111891806125641,L, + 259797138750,-0.109659969806671,L, + 263645985250,-0.105195820331573,L, + 265570408500,-0.102964103221893,L, + 267494831750,-0.100732028484344,L, + 269419255000,-0.098500192165375,L, + 271343678250,-0.096268475055695,L, + 275192524750,-0.091804325580597,L, + 277116948000,-0.089572489261627,L, + 279041371250,-0.087340533733368,L, + 280965794500,-0.085108458995819,L, + 282890217750,-0.082876622676849,L, + 284814641000,-0.082875907421112,L, + 304058873500,-0.084315955638885,L, + 305983296750,-0.084459841251373,L, + 307907720000,-0.084603846073151,L, + 309832143250,-0.084747970104218,L, + 311756566500,-0.084891974925995,L, + 313680989750,-0.085035741329193,L, + 315605413000,-0.085179984569550,L, + 317529836250,-0.085323989391327,L, + 319454259500,-0.085467875003815,L, + 321378682750,-0.085611641407013,L, + 323303106000,-0.085755884647369,L, + 325227529250,-0.085899889469147,L, + 327151952500,-0.086044013500214,L, + 329076375750,-0.086187779903412,L, + 331000799000,-0.086332023143768,L, + 332925222250,-0.086475908756256,L, + 334849645500,-0.086619675159454,L, + 336774068750,-0.086763679981232,L, + 338698492000,-0.086907923221588,L, + 340622915250,-0.087051928043365,L, + 342547338500,-0.087195694446564,L, + 344471761750,-0.087339818477631,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138363838196 + KeyVer: 4005 + KeyCount: 120 + Key: + 0,0.415138363838196,L, + 1924423250,0.421364426612854,L, + 3848846500,0.427590727806091,L, + 9622116250,0.446268916130066,L, + 11546539500,0.452495217323303,L, + 13470962750,0.458721280097961,L, + 15395386000,0.464947462081909,L, + 17319809250,0.471173524856567,L, + 19244232500,0.477399706840515,L, + 21168655750,0.483625769615173,L, + 26941925500,0.502304315567017,L, + 30790772000,0.514756441116333,L, + 34639618500,0.527208805084229,L, + 38488465000,0.539660930633545,L, + 40412888250,0.545887231826782,L, + 46186158000,0.564565420150757,L, + 48110581250,0.570791721343994,L, + 50035004500,0.577017903327942,L, + 51959427750,0.583243966102600,L, + 53883851000,0.589470148086548,L, + 57732697500,0.601922273635864,L, + 59657120750,0.608148455619812,L, + 61581544000,0.614374756813049,L, + 67354813750,0.633052945137024,L, + 69279237000,0.639279127120972,L, + 71203660250,0.645505189895630,L, + 73128083500,0.651731491088867,L, + 75052506750,0.657957673072815,L, + 80825776500,0.676635861396790,L, + 82750199750,0.682862162590027,L, + 84674623000,0.689088225364685,L, + 86599046250,0.695314407348633,L, + 88523469500,0.701540470123291,L, + 90447892750,0.707766652107239,L, + 92372316000,0.713992714881897,L, + 94296739250,0.720218896865845,L, + 96221162500,0.726444959640503,L, + 98145585750,0.732671260833740,L, + 103918855500,0.751349449157715,L, + 107767702000,0.763801813125610,L, + 109692125250,0.770027875900269,L, + 111616548500,0.776254177093506,L, + 117389818250,0.794932365417480,L, + 119314241500,0.801158666610718,L, + 121238664750,0.807384848594666,L, + 125087511250,0.819836974143982,L, + 127011934500,0.826063156127930,L, + 130860781000,0.838515281677246,L, + 132785204250,0.844741463661194,L, + 134709627500,0.850967764854431,L, + 140482897250,0.869645953178406,L, + 144331743750,0.882098317146301,L, + 146256167000,0.888324379920959,L, + 148180590250,0.894550681114197,L, + 153953860000,0.913228869438171,L, + 155878283250,0.919455051422119,L, + 157802706500,0.925681352615356,L, + 165500399500,0.950585603713989,L, + 169349246000,0.963038206100464,L, + 178971362250,0.994168519973755,L, + 182820208750,1.006621122360229,L, + 186669055250,1.019073247909546,L, + 188593478500,1.025299549102783,L, + 190517901750,1.031525611877441,L, + 192442325000,1.037751436233521,L, + 194366748250,1.043977975845337,L, + 200140018000,1.062656164169312,L, + 202064441250,1.068882465362549,L, + 207837711000,1.087560653686523,L, + 209762134250,-0.038915753364563,L, + 211686557500,-0.038899183273315,L, + 213610980750,-0.038882493972778,L, + 215535404000,-0.038866043090820,L, + 217459827250,-0.038849353790283,L, + 221308673750,-0.038816213607788,L, + 223233097000,-0.038799524307251,L, + 229006366750,-0.038749814033508,L, + 230930790000,-0.038733124732971,L, + 232855213250,-0.038716554641724,L, + 234779636500,-0.038699865341187,L, + 236704059750,-0.038683414459229,L, + 238628483000,-0.038666725158691,L, + 240552906250,-0.038650155067444,L, + 242477329500,-0.038633465766907,L, + 250175022500,-0.038567185401917,L, + 252099445750,-0.038550496101379,L, + 254023869000,-0.038533926010132,L, + 255948292250,-0.038517236709595,L, + 261721562000,-0.038467526435852,L, + 263645985250,-0.038450837135315,L, + 267494831750,-0.038417696952820,L, + 269419255000,-0.038401007652283,L, + 275192524750,-0.038351297378540,L, + 277116948000,-0.038334608078003,L, + 282890217750,-0.038284897804260,L, + 284814641000,0.028068065643311,L, + 288663487500,0.053040266036987,L, + 290587910750,0.065526485443115,L, + 292512334000,0.078012585639954,L, + 294436757250,0.090498805046082,L, + 296361180500,0.102984786033630,L, + 298285603750,0.115471005439758,L, + 300210027000,0.127957105636597,L, + 302134450250,0.140443325042725,L, + 305983296750,0.165415525436401,L, + 307907720000,0.177901744842529,L, + 311756566500,0.202873945236206,L, + 313680989750,0.215360164642334,L, + 315605413000,0.227846264839172,L, + 317529836250,0.240332484245300,L, + 321378682750,0.265304684638977,L, + 323303106000,0.277790904045105,L, + 329076375750,0.315249204635620,L, + 332925222250,0.340221643447876,L, + 334849645500,0.352707624435425,L, + 336774068750,0.365193843841553,L, + 338698492000,0.377679944038391,L, + 340622915250,0.390166163444519,L, + 342547338500,0.402652144432068,L, + 344471761750,0.415138363838196,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,30.670462448994193,L, + 1924423250,29.595226749095652,L, + 3848846500,28.520001294480863,L, + 5773269750,27.444770717224198,L, + 7697693000,26.369541847514828,L, + 9622116250,25.294318100447331,L, + 11546539500,24.219082400548789,L, + 13470962750,23.143858653481296,L, + 15395386000,22.068629783771922,L, + 17319809250,20.993399206515257,L, + 21168655750,18.842944882191098,L, + 23093079000,17.767716012481724,L, + 25017502250,16.692490557866940,L, + 26941925500,15.617256565515689,L, + 28866348750,14.542027695806317,L, + 30790772000,13.466801387417883,L, + 32715195250,12.391573371482156,L, + 34639618500,11.316343647999137,L, + 36564041750,10.241115632063412,L, + 38488465000,9.165885054806747,L, + 40412888250,8.090659600191959,L, + 42337311500,7.015429022935295,L, + 44261734750,5.940201006999568,L, + 46186158000,4.864973844837488,L, + 48110581250,3.789744121354470,L, + 50035004500,2.714515678531920,L, + 51959427750,1.639286488657431,L, + 53883851000,0.564057405504647,L, + 55808274250,-0.511171304122167,L, + 57732697500,-1.586400654079215,L, + 59657120750,-2.661629096901764,L, + 61581544000,-3.736857112837491,L, + 63505967250,-4.812082994339101,L, + 65430390500,-5.887312717822120,L, + 67354813750,-6.962544148852431,L, + 69279237000,-8.037771737901334,L, + 71203660250,-9.112997192516122,L, + 73128083500,-10.188230331093726,L, + 76976930000,-12.338682947870593,L, + 78901353250,-13.413915232674549,L, + 80825776500,-14.489139833515690,L, + 82750199750,-15.564372118319648,L, + 86599046250,-17.714826442643808,L, + 90447892750,-19.865291012251724,L, + 92372316000,-20.940509636677341,L, + 96221162500,-23.090970791190671,L, + 98145585750,-24.166203075994627,L, + 100070009000,-25.241428530609415,L, + 101994432250,-26.316657400318785,L, + 103918855500,-27.391887977575450,L, + 105843278750,-28.467111724642947,L, + 111616548500,-31.692808579054820,L, + 113540971750,-32.768034033669608,L, + 115465395000,-33.843256073189806,L, + 117389818250,-34.918488357993766,L, + 121238664750,-37.068946097412514,L, + 123163088000,-38.144178382216467,L, + 125087511250,-39.219400421736673,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369861576250003,L, + 130860781000,-42.445083615770201,L, + 132785204250,-43.520312485479579,L, + 134709627500,-44.595544770283531,L, + 136634050750,-45.670770224898320,L, + 138558474000,-46.746002509702279,L, + 140482897250,-47.821238209600821,L, + 142407320500,-48.896456834026438,L, + 144331743750,-49.971682288641226,L, + 146256167000,-51.046924818728939,L, + 148180590250,-52.122140028059967,L, + 150105013500,-53.197372312863926,L, + 152029436750,-54.272601182573297,L, + 153953860000,-55.347826637188085,L, + 155878283250,-56.423055506897462,L, + 157802706500,-57.498287791701415,L, + 159727129750,-58.573516661410785,L, + 161651553000,-59.648738700930991,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175347619085770,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325805358504510,L, + 180895785500,-70.401041058403052,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626720837342006,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838161336417052,L, + 230930790000,-51.776563191909084,L, + 234779636500,-45.653346412325639,L, + 238628483000,-39.530136462931367,L, + 240552906250,-36.468528073139645,L, + 242477329500,-33.406923098442512,L, + 244401752750,-30.345314708650790,L, + 246326176000,-27.283709733953653,L, + 248250599250,-24.222096221520054,L, + 250175022500,-21.160491246822918,L, + 252099445750,-18.098894809862244,L, + 254023869000,-15.037283004975937,L, + 255948292250,-11.975681445373384,L, + 257872715500,-8.914074763128957,L, + 259797138750,-5.852461677582180,L, + 261721562000,-2.790856275998220,L, + 263645985250,0.270741868509746,L, + 265570408500,3.332353033065818,L, + 267494831750,6.393957794319544,L, + 269419255000,9.455570452979495,L, + 271343678250,12.517174573902986,L, + 273268101500,15.578782109921063,L, + 275192524750,18.640387084618197,L, + 277116948000,21.701997181957214,L, + 279041371250,24.763605571748933,L, + 280965794500,27.825205423804192,L, + 282890217750,30.886808690954037,L, + 284814641000,30.872537010683317,L, + 286739064250,30.866021010215135,L, + 288663487500,30.859498179557782,L, + 290587910750,30.852982179089597,L, + 294436757250,30.839943347964063,L, + 296361180500,30.833427347495881,L, + 298285603750,30.826907931933111,L, + 300210027000,30.820395346559515,L, + 302134450250,30.813869100807576,L, + 304058873500,30.807359930528563,L, + 305983296750,30.800833684776627,L, + 307907720000,30.794317684308442,L, + 309832143250,30.787805098934847,L, + 311756566500,30.781278853182908,L, + 313680989750,30.774762852714723,L, + 315605413000,30.768243437151956,L, + 317529836250,30.761717191400020,L, + 319454259500,30.755197775837249,L, + 321378682750,30.748688605558240,L, + 323303106000,30.742162359806301,L, + 325227529250,30.735646359338119,L, + 329076375750,30.722607528212581,L, + 332925222250,30.709575527276215,L, + 334849645500,30.703049281524279,L, + 336774068750,30.696533281056094,L, + 338698492000,30.690020695682499,L, + 340622915250,30.683497865025146,L, + 342547338500,30.676978449462379,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 78901353250,132.592918734514598,L, + 80825776500,133.527261292214320,L, + 82750199750,134.461617510292371,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 248250599250,136.978159728844957,L, + 250175022500,134.067365331021477,L, + 252099445750,131.156543612441311,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489138500368140 + KeyVer: 4005 + KeyCount: 158 + Key: + 0,7.489138500368140,L, + 1924423250,6.812490442316167,L, + 3848846500,6.135838115395963,L, + 5773269750,5.459193045551751,L, + 7697693000,4.782547548820716,L, + 9622116250,4.105899063881919,L, + 11546539500,3.429247163848538,L, + 13470962750,2.752598892353153,L, + 15395386000,2.075953609065530,L, + 17319809250,1.399304590518204,L, + 19244232500,0.722659680756551,L, + 21168655750,0.046006113196517,L, + 23093079000,-0.630637449203601,L, + 25017502250,-1.307280704778814,L, + 26941925500,-1.983929830047845,L, + 28866348750,-2.660580876307581,L, + 30790772000,-3.337226159595204,L, + 32715195250,-4.013872936986708,L, + 34639618500,-4.690524410133267,L, + 36564041750,-5.367172041298417,L, + 38488465000,-6.043820099350390,L, + 40412888250,-6.720464742307779,L, + 42337311500,-7.397115361680691,L, + 44261734750,-8.073760004638080,L, + 46186158000,-8.750409770237345,L, + 48110581250,-9.427060389610258,L, + 50035004500,-10.103704178794001,L, + 51959427750,-10.780353944393266,L, + 53883851000,-11.457004563766178,L, + 55808274250,-12.133651768044505,L, + 57732697500,-12.810295557228248,L, + 59657120750,-13.486941907732929,L, + 61581544000,-14.163594234653134,L, + 63505967250,-14.840244000252399,L, + 65430390500,-15.516885228115203,L, + 67354813750,-16.193531578619883,L, + 69279237000,-16.870181344219151,L, + 73128083500,-18.223477460323096,L, + 75052506750,-18.900123810827779,L, + 76976930000,-19.576771868879753,L, + 78901353250,-20.253423342026309,L, + 80825776500,-20.930064569889112,L, + 82750199750,-21.606716043035672,L, + 84674623000,-22.283365808634937,L, + 86599046250,-22.960012159139620,L, + 88523469500,-23.636663632286176,L, + 90447892750,-24.313309982790859,L, + 92372316000,-24.989959748390124,L, + 100070009000,-27.696545150408848,L, + 101994432250,-28.373196623555408,L, + 107767702000,-30.403135675069450,L, + 109692125250,-31.079792270857887,L, + 111616548500,-31.756431791173398,L, + 113540971750,-32.433074726583492,L, + 115465395000,-33.109731322371928,L, + 119314241500,-34.463017193192123,L, + 121238664750,-35.139670373885970,L, + 125087511250,-36.492969905084500,L, + 127011934500,-37.169612840494601,L, + 128936357750,-37.846266021188448,L, + 130860781000,-38.522912371693131,L, + 132785204250,-39.199562137292396,L, + 136634050750,-40.552848008112591,L, + 138558474000,-41.229501188806438,L, + 142407320500,-42.582800720004975,L, + 146256167000,-43.936093421014334,L, + 150105013500,-45.289392952212864,L, + 152029436750,-45.966035887622965,L, + 153953860000,-46.642682238127641,L, + 155878283250,-47.319332003726906,L, + 157802706500,-47.995974939137007,L, + 159727129750,-48.672628119830854,L, + 161651553000,-49.349274470335537,L, + 163575976250,-50.025917405745631,L, + 165500399500,-50.702567171344896,L, + 167424822750,-51.379220352038750,L, + 171273669250,-52.732513053048109,L, + 173198092500,-53.409166233741963,L, + 175122515750,-54.085809169152057,L, + 177046939000,-54.762458934751322,L, + 178971362250,-55.439105285256005,L, + 180895785500,-56.115755050855270,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 192442325000,-60.175646814261697,L, + 194366748250,-60.852286334577208,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558871736595933,L, + 203988864500,-64.235531747478959,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256090616880670,L, + 217459827250,-56.707857319813655,L, + 219384250500,-54.820802410641491,L, + 221308673750,-52.933740671280155,L, + 223233097000,-51.046689177202573,L, + 225157520250,-49.159627437841237,L, + 227081943500,-47.272572528669066,L, + 229006366750,-45.385521034591484,L, + 230930790000,-43.498455880135566,L, + 234779636500,-39.724339231602066,L, + 236704059750,-37.837284322429895,L, + 242477329500,-32.176109349629641,L, + 244401752750,-30.289054440457477,L, + 250175022500,-24.627879467657220,L, + 252099445750,-22.740826266032347,L, + 254023869000,-20.853761111576425,L, + 255948292250,-18.966711325046138,L, + 257872715500,-17.079651293232093,L, + 259797138750,-15.192589553870755,L, + 261721562000,-13.305538059793175,L, + 263645985250,-11.418473759110899,L, + 265570408500,-9.531421411259672,L, + 267494831750,-7.644363086992920,L, + 269419255000,-5.757301347631583,L, + 271343678250,-3.870244304025301,L, + 273268101500,-1.983185979758550,L, + 275192524750,-0.096127982327022,L, + 277116948000,1.790926399906722,L, + 279041371250,3.677982162852535,L, + 280965794500,5.565042621553402,L, + 282890217750,7.452096676951922,L, + 284814641000,7.454201228989930,L, + 286739064250,7.455330771523919,L, + 288663487500,7.456455191416031,L, + 290587910750,7.457582172629081,L, + 292512334000,7.458707446294839,L, + 294436757250,7.459839550149767,L, + 296361180500,7.460962262494586,L, + 298285603750,7.462087536160344,L, + 300210027000,7.463216224920687,L, + 302134450250,7.464343206133737,L, + 304058873500,7.465468479799496,L, + 305983296750,7.466598876107131,L, + 307907720000,7.467719880904657,L, + 309832143250,7.468851984759586,L, + 311756566500,7.469979819746283,L, + 313680989750,7.471108508506625,L, + 315605413000,7.472229513304153,L, + 317529836250,7.473360763385434,L, + 319454259500,7.474483475730253,L, + 321378682750,7.475609603169658,L, + 323303106000,7.476738291930000,L, + 325227529250,7.477867834463989,L, + 327151952500,7.478992254356101,L, + 329076375750,7.480121796890090,L, + 331000799000,7.481244509234910,L, + 332925222250,7.482380028184423,L, + 334849645500,7.483504448076534,L, + 336774068750,7.484625452874061,L, + 338698492000,7.485753287860758,L, + 340622915250,7.486883684168394,L, + 342547338500,7.488012372928736,L, + 344471761750,7.489138500368140,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772139549255 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,0.753772139549255,L, + 1924423250,0.748255670070648,L, + 7697693000,0.731705904006958,L, + 11546539500,0.720672845840454,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606610298157,L, + 21168655750,0.693089962005615,L, + 23093079000,0.687573373317719,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540255546570,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 38488465000,0.643440961837769,L, + 40412888250,0.637924194335938,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374487876892,L, + 48110581250,0.615858078002930,L, + 50035004500,0.610341489315033,L, + 51959427750,0.604824841022491,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242016792297,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 80825776500,0.522076368331909,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 96221162500,0.477943897247314,L, + 98145585750,0.472427278757095,L, + 100070009000,0.466910690069199,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450360983610153,L, + 107767702000,0.444844454526901,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778159379959,L, + 117389818250,0.417261630296707,L, + 119314241500,0.411745071411133,L, + 121238664750,0.406228542327881,L, + 123163088000,0.400711953639984,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162247180939,L, + 130860781000,0.378645658493042,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095981836319,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996568918228,L, + 152029436750,0.317963391542435,L, + 153953860000,0.312446832656860,L, + 155878283250,0.306930243968964,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764625310898,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 188593478500,0.213148638606071,L, + 190517901750,0.207632064819336,L, + 192442325000,0.202115476131439,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016078114510,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798302367330,L, + 211686557500,0.015925440937281,L, + 213610980750,0.016052581369877,L, + 215535404000,0.016179723665118,L, + 217459827250,0.016306862235069,L, + 219384250500,0.016434004530311,L, + 221308673750,0.016561143100262,L, + 225157520250,0.016815423965454,L, + 227081943500,0.016942566260695,L, + 229006366750,0.017069702968001,L, + 257872715500,0.018976809456944,L, + 259797138750,0.019103948026896,L, + 261721562000,0.019231090322137,L, + 265570408500,0.019485367462039,L, + 267494831750,0.019612509757280,L, + 269419255000,0.019739648327231,L, + 271343678250,0.019866792485118,L, + 273268101500,0.019993929192424,L, + 275192524750,0.020121069625020,L, + 277116948000,0.020248211920261,L, + 279041371250,0.020375352352858,L, + 280965794500,0.020502490922809,L, + 282890217750,0.020629635080695,L, + 284814641000,0.207228913903236,L, + 286739064250,0.224859356880188,L, + 288663487500,0.242489755153656,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381069183350,L, + 296361180500,0.313011527061462,L, + 298285603750,0.330641925334930,L, + 302134450250,0.365902781486511,L, + 305983296750,0.401163697242737,L, + 307907720000,0.418794095516205,L, + 313680989750,0.471685379743576,L, + 315605413000,0.489315837621689,L, + 317529836250,0.506946146488190,L, + 319454259500,0.524576663970947,L, + 321378682750,0.542207062244415,L, + 325227529250,0.577467978000641,L, + 329076375750,0.612728774547577,L, + 331000799000,0.630359292030334,L, + 332925222250,0.647989630699158,L, + 334849645500,0.665620148181915,L, + 336774068750,0.683250486850739,L, + 340622915250,0.718511521816254,L, + 342547338500,0.736141920089722,L, + 344471761750,0.753772139549255,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739200592041,L, + 5773269750,0.737222552299500,L, + 7697693000,0.731705963611603,L, + 11546539500,0.720672905445099,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606669902802,L, + 21168655750,0.693090081214905,L, + 23093079000,0.687573432922363,L, + 26941925500,0.676540374755859,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 38488465000,0.643440961837769,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891136169434,L, + 46186158000,0.621374607086182,L, + 50035004500,0.610341429710388,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109605312347,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076368331909,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493514299393,L, + 92372316000,0.488977044820786,L, + 94296739250,0.483460426330566,L, + 96221162500,0.477943867444992,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877631902695,L, + 107767702000,0.444844454526901,L, + 109692125250,0.439327836036682,L, + 111616548500,0.433811306953430,L, + 113540971750,0.428294748067856,L, + 115465395000,0.422778218984604,L, + 117389818250,0.417261600494385,L, + 119314241500,0.411745071411133,L, + 121238664750,0.406228482723236,L, + 125087511250,0.395195364952087,L, + 127011934500,0.389678776264191,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546245574951,L, + 144331743750,0.340029627084732,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 153953860000,0.312446802854538,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731462836266,L, + 180895785500,0.235214874148369,L, + 182820208750,0.229698345065117,L, + 184744632000,0.224181771278381,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148638606071,L, + 190517901750,0.207632035017014,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 198215594750,0.185565754771233,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532637000084,L, + 203988864500,0.169016063213348,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008628532290,L, + 213610980750,0.016218958422542,L, + 215535404000,0.016429284587502,L, + 217459827250,0.016639614477754,L, + 219384250500,0.016849942505360,L, + 221308673750,0.017060274258256,L, + 223233097000,0.017270602285862,L, + 225157520250,0.017480932176113,L, + 227081943500,0.017691260203719,L, + 229006366750,0.017901590093970,L, + 230930790000,0.018111918121576,L, + 232855213250,0.018322248011827,L, + 234779636500,0.018532576039433,L, + 236704059750,0.018742907792330,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 244401752750,0.019584219902754,L, + 250175022500,0.020215209573507,L, + 252099445750,0.020425533875823,L, + 254023869000,0.020635863766074,L, + 255948292250,0.020846191793680,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477183327079,L, + 263645985250,0.021687509492040,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108169272542,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528827190399,L, + 273268101500,0.022739153355360,L, + 277116948000,0.023159813135862,L, + 279041371250,0.023370141163468,L, + 280965794500,0.023580471053720,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524737000465,L, + 286739064250,0.256113380193710,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645120143890,L, + 300210027000,0.372233778238297,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999722719193,L, + 307907720000,0.438588261604309,L, + 311756566500,0.471765577793121,L, + 321378682750,0.554708719253540,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885975837708,L, + 329076375750,0.621063232421875,L, + 331000799000,0.637651920318604,L, + 332925222250,0.654240489006042,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006314277649,L, + 340622915250,0.720595002174377,L, + 344471761750,0.753772258758545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772318363190 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,0.753772318363190,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739200592041,L, + 5773269750,0.737222552299500,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189494132996,L, + 11546539500,0.720672786235809,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123079776764,L, + 19244232500,0.698606610298157,L, + 21168655750,0.693090081214905,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407784461975,L, + 44261734750,0.626891195774078,L, + 46186158000,0.621374666690826,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 86599046250,0.505526781082153,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493573904037,L, + 92372316000,0.488976985216141,L, + 94296739250,0.483460426330566,L, + 96221162500,0.477943897247314,L, + 101994432250,0.461394131183624,L, + 103918855500,0.455877572298050,L, + 105843278750,0.450360983610153,L, + 107767702000,0.444844454526901,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778159379959,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711894035339,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162187576294,L, + 130860781000,0.378645658493042,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996539115906,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413655281067,L, + 159727129750,0.295897156000137,L, + 163575976250,0.284863978624344,L, + 165500399500,0.279347449541092,L, + 169349246000,0.268314272165298,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731492638588,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181786179543,L, + 186669055250,0.218665182590485,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 194366748250,0.196598961949348,L, + 196291171500,0.191082343459129,L, + 198215594750,0.185565739870071,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 215535404000,0.016429286450148,L, + 219384250500,0.016849946230650,L, + 223233097000,0.017270602285862,L, + 227081943500,0.017691262066364,L, + 229006366750,0.017901588231325,L, + 234779636500,0.018532577902079,L, + 238628483000,0.018953233957291,L, + 242477329500,0.019373893737793,L, + 246326176000,0.019794549793005,L, + 250175022500,0.020215209573507,L, + 254023869000,0.020635865628719,L, + 255948292250,0.020846197381616,L, + 257872715500,0.021056523546576,L, + 259797138750,0.021266853436828,L, + 261721562000,0.021477181464434,L, + 263645985250,0.021687511354685,L, + 265570408500,0.021897839382291,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528827190399,L, + 275192524750,0.022949486970901,L, + 277116948000,0.023159813135862,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790800943971,L, + 284814641000,0.239524722099304,L, + 286739064250,0.256113380193710,L, + 288663487500,0.272702008485794,L, + 290587910750,0.289290606975555,L, + 292512334000,0.305879265069962,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 300210027000,0.372233808040619,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999692916870,L, + 309832143250,0.455176949501038,L, + 311756566500,0.471765607595444,L, + 313680989750,0.488354206085205,L, + 319454259500,0.538120090961456,L, + 321378682750,0.554708778858185,L, + 323303106000,0.571297347545624,L, + 334849645500,0.670829117298126,L, + 336774068750,0.687417805194855,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183570861816,L, + 344471761750,0.753772318363190,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_058" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,0.016793012619019,L, + 1924423250,0.016792774200439,L, + 3848846500,0.016792893409729,L, + 5773269750,0.016792893409729,L, + 7697693000,0.016792774200439,L, + 9622116250,0.016792893409729,L, + 13470962750,0.016792893409729,L, + 15395386000,0.016792774200439,L, + 21168655750,0.016792774200439,L, + 23093079000,0.016793012619019,L, + 25017502250,0.016793012619019,L, + 26941925500,0.016792893409729,L, + 28866348750,0.016792893409729,L, + 30790772000,0.016793012619019,L, + 32715195250,0.016793012619019,L, + 34639618500,0.016792893409729,L, + 36564041750,0.016792654991150,L, + 38488465000,0.016792893409729,L, + 40412888250,0.016792774200439,L, + 44261734750,0.016793012619019,L, + 48110581250,0.016792774200439,L, + 50035004500,0.016792893409729,L, + 53883851000,0.016792893409729,L, + 55808274250,0.016792774200439,L, + 57732697500,0.016792893409729,L, + 61581544000,0.016792893409729,L, + 63505967250,0.016793012619019,L, + 65430390500,0.016792893409729,L, + 67354813750,0.016792893409729,L, + 69279237000,0.016792774200439,L, + 71203660250,0.016792774200439,L, + 73128083500,0.016792654991150,L, + 75052506750,0.016792893409729,L, + 84674623000,0.016792893409729,L, + 86599046250,0.016792774200439,L, + 88523469500,0.016792893409729,L, + 90447892750,0.016792893409729,L, + 92372316000,0.016793012619019,L, + 94296739250,0.016792774200439,L, + 96221162500,0.016792893409729,L, + 98145585750,0.016792774200439,L, + 100070009000,0.016793012619019,L, + 101994432250,0.016792893409729,L, + 103918855500,0.016793012619019,L, + 105843278750,0.016792774200439,L, + 109692125250,0.016792774200439,L, + 111616548500,0.016792654991150,L, + 113540971750,0.016792774200439,L, + 115465395000,0.016792774200439,L, + 117389818250,0.016792893409729,L, + 121238664750,0.016792893409729,L, + 123163088000,0.016792654991150,L, + 125087511250,0.016792654991150,L, + 127011934500,0.016793012619019,L, + 130860781000,0.016793012619019,L, + 132785204250,0.016792774200439,L, + 134709627500,0.016792774200439,L, + 136634050750,0.016792893409729,L, + 138558474000,0.016792774200439,L, + 140482897250,0.016792774200439,L, + 142407320500,0.016792893409729,L, + 148180590250,0.016792893409729,L, + 150105013500,0.016793012619019,L, + 182820208750,0.016793012619019,L, + 184744632000,0.016792893409729,L, + 186669055250,0.016792893409729,L, + 188593478500,0.016792774200439,L, + 190517901750,0.016792893409729,L, + 192442325000,0.016792654991150,L, + 194366748250,0.016792893409729,L, + 196291171500,0.016792774200439,L, + 202064441250,0.016792774200439,L, + 203988864500,0.016792654991150,L, + 205913287750,0.016792893409729,L, + 207837711000,0.016792774200439,L, + 209762134250,0.016792893409729,L, + 211686557500,0.016792774200439,L, + 213610980750,0.016792893409729,L, + 215535404000,0.016792774200439,L, + 217459827250,0.016792893409729,L, + 219384250500,0.016792893409729,L, + 221308673750,0.016792774200439,L, + 223233097000,0.016793012619019,L, + 227081943500,0.016792774200439,L, + 229006366750,0.016793012619019,L, + 232855213250,0.016792774200439,L, + 234779636500,0.016793131828308,L, + 236704059750,0.016792893409729,L, + 242477329500,0.016792893409729,L, + 244401752750,0.016792774200439,L, + 246326176000,0.016793012619019,L, + 250175022500,0.016792774200439,L, + 254023869000,0.016793012619019,L, + 255948292250,0.016792774200439,L, + 257872715500,0.016792893409729,L, + 259797138750,0.016792774200439,L, + 261721562000,0.016792774200439,L, + 265570408500,0.016793012619019,L, + 267494831750,0.016792893409729,L, + 275192524750,0.016792893409729,L, + 277116948000,0.016792774200439,L, + 279041371250,0.016792893409729,L, + 288663487500,0.016792893409729,L, + 290587910750,0.016792654991150,L, + 292512334000,0.016792893409729,L, + 294436757250,0.016792654991150,L, + 296361180500,0.016792774200439,L, + 298285603750,0.016793012619019,L, + 300210027000,0.016793012619019,L, + 302134450250,0.016792893409729,L, + 304058873500,0.016792893409729,L, + 305983296750,0.016792774200439,L, + 307907720000,0.016792893409729,L, + 313680989750,0.016792893409729,L, + 315605413000,0.016792774200439,L, + 317529836250,0.016792893409729,L, + 319454259500,0.016792893409729,L, + 321378682750,0.016792774200439,L, + 323303106000,0.016793012619019,L, + 325227529250,0.016793012619019,L, + 327151952500,0.016792774200439,L, + 332925222250,0.016792774200439,L, + 334849645500,0.016793012619019,L, + 336774068750,0.016792654991150,L, + 338698492000,0.016792774200439,L, + 340622915250,0.016793012619019,L, + 342547338500,0.016792774200439,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058537185192108 + KeyVer: 4005 + KeyCount: 165 + Key: + 0,-0.058537185192108,L, + 1924423250,-0.058575212955475,L, + 3848846500,-0.058685243129730,L, + 5773269750,-0.058862268924713,L, + 7697693000,-0.059100806713104,L, + 9622116250,-0.059397399425507,L, + 11546539500,-0.059748113155365,L, + 13470962750,-0.060149252414703,L, + 15395386000,-0.060598313808441,L, + 17319809250,-0.061092197895050,L, + 19244232500,-0.061628758907318,L, + 21168655750,-0.062205374240875,L, + 23093079000,-0.062820494174957,L, + 25017502250,-0.063471734523773,L, + 26941925500,-0.064157664775848,L, + 28866348750,-0.064876616001129,L, + 30790772000,-0.065627276897430,L, + 32715195250,-0.066408216953278,L, + 34639618500,-0.067217767238617,L, + 36564041750,-0.068055331707001,L, + 38488465000,-0.068919599056244,L, + 40412888250,-0.069809257984161,L, + 42337311500,-0.070723712444305,L, + 44261734750,-0.071661651134491,L, + 46186158000,-0.072622597217560,L, + 48110581250,-0.073605358600616,L, + 50035004500,-0.074609816074371,L, + 51959427750,-0.075634300708771,L, + 53883851000,-0.076678812503815,L, + 55808274250,-0.077742159366608,L, + 57732697500,-0.078823864459991,L, + 59657120750,-0.079923331737518,L, + 61581544000,-0.081039726734161,L, + 63505967250,-0.082172572612762,L, + 65430390500,-0.083320915699005,L, + 67354813750,-0.084484159946442,L, + 69279237000,-0.085661709308624,L, + 71203660250,-0.086852610111237,L, + 73128083500,-0.088055670261383,L, + 75052506750,-0.089270293712616,L, + 76976930000,-0.090495049953461,L, + 78901353250,-0.091727912425995,L, + 80825776500,-0.092967092990875,L, + 82750199750,-0.094209849834442,L, + 84674623000,-0.095451295375824,L, + 86599046250,-0.096683561801910,L, + 88523469500,-0.097891747951508,L, + 90447892750,-0.099037826061249,L, + 92372316000,-0.099893391132355,L, + 94296739250,-0.099930107593536,L, + 96221162500,-0.099073231220245,L, + 98145585750,-0.097858369350433,L, + 100070009000,-0.096546709537506,L, + 101994432250,-0.095184385776520,L, + 103918855500,-0.093790113925934,L, + 105843278750,-0.092373430728912,L, + 107767702000,-0.090941131114960,L, + 109692125250,-0.089496076107025,L, + 111616548500,-0.088041841983795,L, + 113540971750,-0.086580455303192,L, + 115465395000,-0.085113465785980,L, + 117389818250,-0.083642303943634,L, + 119314241500,-0.082168400287628,L, + 121238664750,-0.080692589282990,L, + 123163088000,-0.079215228557587,L, + 125087511250,-0.077738463878632,L, + 127011934500,-0.076262652873993,L, + 128936357750,-0.074788630008698,L, + 130860781000,-0.073317587375641,L, + 132785204250,-0.071850478649139,L, + 134709627500,-0.070388972759247,L, + 136634050750,-0.068934977054596,L, + 138558474000,-0.067490041255951,L, + 140482897250,-0.066057384014130,L, + 142407320500,-0.064640939235687,L, + 144331743750,-0.063246428966522,L, + 146256167000,-0.061884224414825,L, + 148180590250,-0.060572564601898,L, + 150105013500,-0.059357702732086,L, + 152029436750,-0.058500945568085,L, + 180895785500,-0.058500945568085,L, + 182820208750,-0.057609021663666,L, + 184744632000,-0.054916083812714,L, + 186669055250,-0.050476253032684,L, + 188593478500,-0.044483363628387,L, + 190517901750,-0.037306964397430,L, + 194366748250,-0.021663844585419,L, + 196291171500,-0.014487445354462,L, + 198215594750,-0.008494794368744,L, + 200140018000,-0.004054605960846,L, + 202064441250,-0.001361668109894,L, + 203988864500,-0.000469744205475,L, + 205913287750,-0.000504910945892,L, + 207837711000,-0.000608861446381,L, + 209762134250,-0.000780522823334,L, + 211686557500,-0.001018226146698,L, + 213610980750,-0.001319944858551,L, + 215535404000,-0.001684486865997,L, + 217459827250,-0.002109706401825,L, + 219384250500,-0.002593934535980,L, + 221308673750,-0.003135383129120,L, + 223233097000,-0.003731787204742,L, + 225157520250,-0.004381120204926,L, + 227081943500,-0.005081474781036,L, + 229006366750,-0.005830585956573,L, + 230930790000,-0.006626307964325,L, + 232855213250,-0.007466733455658,L, + 234779636500,-0.008349120616913,L, + 236704059750,-0.009271323680878,L, + 238628483000,-0.010231196880341,L, + 240552906250,-0.011226356029510,L, + 242477329500,-0.012254297733307,L, + 244401752750,-0.013312518596649,L, + 246326176000,-0.014398753643036,L, + 248250599250,-0.015510976314545,L, + 250175022500,-0.016646087169647,L, + 252099445750,-0.017802059650421,L, + 254023869000,-0.018976628780365,L, + 255948292250,-0.020166814327240,L, + 257872715500,-0.021370708942413,L, + 259797138750,-0.022586166858673,L, + 261721562000,-0.023810088634491,L, + 263645985250,-0.025040566921234,L, + 265570408500,-0.026275455951691,L, + 267494831750,-0.027512013912201,L, + 269419255000,-0.028748691082001,L, + 271343678250,-0.029982507228851,L, + 273268101500,-0.031211912631989,L, + 275192524750,-0.032434523105621,L, + 277116948000,-0.033648192882538,L, + 279041371250,-0.034851253032684,L, + 280965794500,-0.036041319370270,L, + 282890217750,-0.037216842174530,L, + 284814641000,-0.038375437259674,L, + 286739064250,-0.039515912532806,L, + 288663487500,-0.040636241436005,L, + 290587910750,-0.041734397411346,L, + 292512334000,-0.042809188365936,L, + 294436757250,-0.043859183788300,L, + 296361180500,-0.044882237911224,L, + 298285603750,-0.045877516269684,L, + 300210027000,-0.046842992305756,L, + 302134450250,-0.047777593135834,L, + 304058873500,-0.048680126667023,L, + 305983296750,-0.049549639225006,L, + 307907720000,-0.050383985042572,L, + 309832143250,-0.051183164119720,L, + 311756566500,-0.051945507526398,L, + 313680989750,-0.052669942378998,L, + 315605413000,-0.053355753421783,L, + 317529836250,-0.054001867771149,L, + 319454259500,-0.054607570171356,L, + 321378682750,-0.055172145366669,L, + 323303106000,-0.055694639682770,L, + 325227529250,-0.056174576282501,L, + 327151952500,-0.056610763072968,L, + 329076375750,-0.057003438472748,L, + 331000799000,-0.057351291179657,L, + 332925222250,-0.057654201984406,L, + 334849645500,-0.057911455631256,L, + 336774068750,-0.058122694492340,L, + 338698492000,-0.058287680149078,L, + 340622915250,-0.058405935764313,L, + 342547338500,-0.058476984500885,L, + 344471761750,-0.058500945568085,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578060984611511 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,-0.578060984611511,L, + 90447892750,-0.578060984611511,L, + 92372316000,-0.557460665702820,L, + 94296739250,0.000370740890503,L, + 96221162500,0.007700562477112,L, + 98145585750,0.015030264854431,L, + 100070009000,0.022360086441040,L, + 101994432250,0.029689788818359,L, + 109692125250,0.059009075164795,L, + 111616548500,0.066338777542114,L, + 113540971750,0.073668599128723,L, + 115465395000,0.080998301506042,L, + 117389818250,0.088328123092651,L, + 119314241500,0.095657825469971,L, + 123163088000,0.110317468643188,L, + 125087511250,0.119968771934509,L, + 127011934500,0.129930019378662,L, + 128936357750,0.140169024467468,L, + 130860781000,0.150662541389465,L, + 132785204250,0.161394715309143,L, + 134709627500,0.172355413436890,L, + 136634050750,0.183540225028992,L, + 138558474000,0.194950580596924,L, + 140482897250,0.206594705581665,L, + 142407320500,0.218489646911621,L, + 144331743750,0.230666756629944,L, + 146256167000,0.243180871009827,L, + 148180590250,0.256135582923889,L, + 150105013500,0.269762277603149,L, + 152029436750,0.284850835800171,L, + 153953860000,0.306648254394531,L, + 155878283250,0.313348770141602,L, + 157802706500,0.320404529571533,L, + 159727129750,0.327870249748230,L, + 161651553000,0.335815072059631,L, + 163575976250,0.344329357147217,L, + 165500399500,0.353533267974854,L, + 167424822750,0.363593578338623,L, + 169349246000,0.374749302864075,L, + 171273669250,0.387361168861389,L, + 173198092500,0.402003765106201,L, + 175122515750,0.419637441635132,L, + 177046939000,0.441746830940247,L, + 178971362250,0.468574047088623,L, + 180895785500,0.492805004119873,L, + 182820208750,0.514571547508240,L, + 184744632000,0.539780974388123,L, + 186669055250,0.568211317062378,L, + 188593478500,0.599333763122559,L, + 190517901750,0.632256984710693,L, + 192442325000,0.665760755538940,L, + 194366748250,0.698447346687317,L, + 196291171500,0.728978157043457,L, + 198215594750,0.756290435791016,L, + 200140018000,0.779710054397583,L, + 202064441250,0.798940539360046,L, + 203988864500,0.813977122306824,L, + 205913287750,0.826800823211670,L, + 207837711000,0.839292168617249,L, + 209762134250,0.851451754570007,L, + 211686557500,0.863280653953552,L, + 213610980750,0.874779701232910,L, + 215535404000,0.885950207710266,L, + 217459827250,0.896793842315674,L, + 219384250500,0.907312393188477,L, + 221308673750,0.917508125305176,L, + 223233097000,0.927383065223694,L, + 225157520250,0.936940193176270,L, + 227081943500,0.946181774139404,L, + 229006366750,0.955111265182495,L, + 230930790000,0.963732004165649,L, + 232855213250,0.972047567367554,L, + 234779636500,0.980061292648315,L, + 236704059750,0.987777709960938,L, + 238628483000,0.995201110839844,L, + 240552906250,1.002335548400879,L, + 242477329500,1.009185791015625,L, + 244401752750,1.015757083892822,L, + 246326176000,1.022053956985474,L, + 248250599250,1.028081655502319,L, + 250175022500,1.033845663070679,L, + 252099445750,1.039351940155029,L, + 254023869000,1.044605255126953,L, + 255948292250,1.049612045288086,L, + 257872715500,1.054378032684326,L, + 259797138750,1.058909416198730,L, + 261721562000,1.063211679458618,L, + 263645985250,1.067291975021362,L, + 265570408500,1.071156024932861,L, + 267494831750,1.074810266494751,L, + 269419255000,1.078260660171509,L, + 271343678250,1.081513881683350,L, + 273268101500,1.084576845169067,L, + 275192524750,1.087455272674561,L, + 277116948000,1.090156078338623,L, + 279041371250,1.092685699462891,L, + 280965794500,1.095049858093262,L, + 282890217750,1.097255945205688,L, + 284814641000,1.099309682846069,L, + 286739064250,1.101217508316040,L, + 288663487500,1.102985620498657,L, + 290587910750,1.104620218276978,L, + 292512334000,1.106127500534058,L, + 294436757250,1.107513666152954,L, + 296361180500,1.108783960342407,L, + 298285603750,1.109944820404053,L, + 300210027000,1.111002206802368,L, + 302134450250,1.111961364746094,L, + 304058873500,1.112827539443970,L, + 305983296750,1.113607168197632,L, + 307907720000,1.114304780960083,L, + 309832143250,1.114925861358643,L, + 311756566500,1.115475416183472,L, + 313680989750,1.115958452224731,L, + 315605413000,1.116380453109741,L, + 317529836250,1.116745471954346,L, + 319454259500,1.117058277130127,L, + 321378682750,1.117323160171509,L, + 323303106000,1.117544889450073,L, + 325227529250,1.117727756500244,L, + 327151952500,1.117875814437866,L, + 329076375750,1.117992639541626,L, + 331000799000,1.118083000183105,L, + 332925222250,1.118149518966675,L, + 334849645500,1.118196964263916,L, + 336774068750,1.118228673934937,L, + 338698492000,1.118247270584106,L, + 340622915250,1.118256807327271,L, + 342547338500,1.118260383605957,L, + 344471761750,1.118260860443115,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543798508332110,L, + 11546539500,58.034840132140168,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800553232134348,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304837426552091,L, + 21168655750,54.467708951309021,L, + 23093079000,53.575115924910939,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634304011876267,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501724292610000,L, + 32715195250,48.368807645170783,L, + 34639618500,47.193970711700672,L, + 36564041750,45.978951775343440,L, + 38488465000,44.725369590932367,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108488478377872,L, + 44261734750,40.747966022132061,L, + 46186158000,39.354443506911387,L, + 48110581250,37.929140121482682,L, + 50035004500,36.473223828194023,L, + 51959427750,34.987790872407203,L, + 53883851000,33.473937499483995,L, + 55808274250,31.932691652894491,L, + 57732697500,30.365064200635853,L, + 59657120750,28.772086501272749,L, + 61581544000,27.154730149214611,L, + 63505967250,25.514029918120695,L, + 65430390500,23.851012043913794,L, + 67354813750,22.166765941766524,L, + 69279237000,20.462447621195910,L, + 71203660250,18.739315544556522,L, + 73128083500,16.998793806290305,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472537892547038,L, + 78901353250,11.691307373053959,L, + 80825776500,9.902204206768804,L, + 82750199750,8.109933540256062,L, + 84674623000,6.321668779691525,L, + 86599046250,4.549404164144543,L, + 88523469500,2.816497446472646,L, + 90447892750,1.182278424570828,L, + 92372316000,0.000309185366264,L, + 94296739250,0.000001885382537,L, + 96221162500,1.237622380198304,L, + 98145585750,2.992587193794726,L, + 100070009000,4.887326065783146,L, + 101994432250,6.855265355766957,L, + 103918855500,8.869396788220675,L, + 105843278750,10.915502897500113,L, + 107767702000,12.984963984872733,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172644318781682,L, + 113540971750,19.283679913858464,L, + 115465395000,21.402729028378950,L, + 117389818250,23.527768218801526,L, + 119314241500,25.657098475570162,L, + 121238664750,27.789201789141817,L, + 123163088000,29.922655772621837,L, + 125087511250,32.056113171196444,L, + 127011934500,34.188207947031636,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442589347053897,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672668934009288,L, + 136634050750,44.773269707581598,L, + 138558474000,46.860346706597298,L, + 140482897250,48.929812062838145,L, + 142407320500,50.975918172117588,L, + 144331743750,52.990041920608490,L, + 146256167000,54.957990175215585,L, + 148180590250,56.852729047204001,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866321207130603,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709849569625966,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932204212630083,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291802346939491,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371721224226732,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507408596087046,L, + 223233097000,106.004802295823211,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389624313727097,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012767460081221,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126541252702253,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210401149140594,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814208029954443,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925306720802752,L, + 342547338500,59.865358150457631,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443357242465751 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,-20.443357242465751,L, + 1924423250,-20.458233394478018,L, + 3848846500,-20.501316520215102,L, + 5773269750,-20.570494383676188,L, + 7697693000,-20.663914296048901,L, + 9622116250,-20.779935304385155,L, + 11546539500,-20.917094040655279,L, + 13470962750,-21.074077400991332,L, + 15395386000,-21.249710592856079,L, + 17319809250,-21.442934936928172,L, + 19244232500,-21.652782253892756,L, + 21168655750,-21.878378279536076,L, + 23093079000,-22.118911928894192,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923113769695970,L, + 30790772000,-23.216630903993092,L, + 32715195250,-23.521933529703052,L, + 34639618500,-23.838533288300198,L, + 36564041750,-24.165962311826384,L, + 38488465000,-24.503780053080146,L, + 40412888250,-24.851585238447743,L, + 42337311500,-25.208988547146486,L, + 44261734750,-25.575629686697660,L, + 46186158000,-25.951160317453589,L, + 48110581250,-26.335252590334122,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127902873702130,L, + 53883851000,-27.535854704900775,L, + 55808274250,-27.951200215875946,L, + 57732697500,-28.373652538682503,L, + 59657120750,-28.802935050659066,L, + 61581544000,-29.238789912164464,L, + 63505967250,-29.680928547706262,L, + 65430390500,-30.129084579906838,L, + 67354813750,-30.582964310631873,L, + 69279237000,-31.042246720990381,L, + 71203660250,-31.506603961902201,L, + 73128083500,-31.975646712584641,L, + 75052506750,-32.448927595647071,L, + 76976930000,-32.925910441239637,L, + 78901353250,-33.405929305918278,L, + 80825776500,-33.888068944334201,L, + 82750199750,-34.371048696018029,L, + 84674623000,-34.852962938191347,L, + 86599046250,-35.330553670620041,L, + 88523469500,-35.797540534362312,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556463343608854,L, + 94296739250,-36.556541890784302,L, + 96221162500,-36.223023753613063,L, + 98145585750,-35.750091210198306,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709160135406101,L, + 103918855500,-34.166382077538891,L, + 105843278750,-33.614994566222897,L, + 107767702000,-33.057306205397573,L, + 109692125250,-32.494877693288267,L, + 111616548500,-31.928791614878421,L, + 113540971750,-31.359905158908877,L, + 115465395000,-30.788853532972439,L, + 117389818250,-30.216193397486467,L, + 119314241500,-29.642372129841597,L, + 121238664750,-29.067802956482609,L, + 125087511250,-27.917937194618030,L, + 127011934500,-27.343373143900923,L, + 128936357750,-26.769551876256049,L, + 130860781000,-26.196886618128200,L, + 132785204250,-25.625840114833643,L, + 134709627500,-25.056950243769514,L, + 136634050750,-24.490870995548839,L, + 138558474000,-23.928437360797655,L, + 140482897250,-23.370750707519623,L, + 142407320500,-22.819356366014457,L, + 144331743750,-22.276583430789124,L, + 146256167000,-21.746255100231540,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762716397487580,L, + 152029436750,-20.429199967863628,L, + 153953860000,-20.429198260316337,L, + 155878283250,-20.421560401276981,L, + 157802706500,-20.389151153665317,L, + 159727129750,-20.328217328532428,L, + 161651553000,-20.237251161619035,L, + 163575976250,-20.114738058476693,L, + 165500399500,-19.958842405765960,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537330941517570,L, + 171273669250,-19.265549176706688,L, + 173198092500,-18.947798531234398,L, + 175122515750,-18.578937580202975,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660581080255646,L, + 180895785500,-17.092459605473142,L, + 182820208750,-16.184840162901054,L, + 184744632000,-14.682714224782744,L, + 186669055250,-12.614079590299696,L, + 188593478500,-10.056813222594638,L, + 190517901750,-7.148864025447295,L, + 192442325000,-4.084527401968980,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499713521931,L, + 198215594750,3.836406266216637,L, + 200140018000,5.470570006274860,L, + 202064441250,6.454279890634893,L, + 203988864500,6.778357425712723,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713145767725297,L, + 209762134250,6.632681016660785,L, + 211686557500,6.521289595921323,L, + 213610980750,6.379744170656767,L, + 215535404000,6.208853691396940,L, + 217459827250,6.009455283201990,L, + 219384250500,5.782418941417446,L, + 221308673750,5.528638993937756,L, + 223233097000,5.249042638942747,L, + 225157520250,4.944578845840226,L, + 227081943500,4.616223904794682,L, + 229006366750,4.264977584745873,L, + 230930790000,3.891858864540599,L, + 232855213250,3.497912122791635,L, + 234779636500,3.084192196838925,L, + 236704059750,2.651776975910859,L, + 238628483000,2.201754381076171,L, + 240552906250,1.735226740833877,L, + 242477329500,1.253306522245041,L, + 244401752750,0.757112595673074,L, + 246326176000,0.247773623197893,L, + 248250599250,-0.273580879326940,L, + 250175022500,-0.805817500705601,L, + 252099445750,-1.347804430567853,L, + 254023869000,-1.898408818006827,L, + 255948292250,-2.456505282635059,L, + 257872715500,-3.020971538994555,L, + 259797138750,-3.590694906580836,L, + 261721562000,-4.164571669512714,L, + 263645985250,-4.741510918513693,L, + 265570408500,-5.320430495487148,L, + 267494831750,-5.900267879130323,L, + 269419255000,-6.479974208518798,L, + 271343678250,-7.058522820842959,L, + 273268101500,-7.634889614614126,L, + 275192524750,-8.208103849196513,L, + 277116948000,-8.777175574047295,L, + 279041371250,-9.341164784381947,L, + 280965794500,-9.899148550888874,L, + 282890217750,-10.450228703692222,L, + 284814641000,-10.993527563483642,L, + 286739064250,-11.528192210390534,L, + 288663487500,-12.053405583033433,L, + 290587910750,-12.568364280411220,L, + 292512334000,-13.072304175110499,L, + 294436757250,-13.564478215190801,L, + 296361180500,-14.044178622299388,L, + 298285603750,-14.510706155819975,L, + 300210027000,-14.963409386460476,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232349251220302,L, + 307907720000,-16.623674694431866,L, + 309832143250,-16.998279834555262,L, + 311756566500,-17.355666067781080,L, + 313680989750,-17.695350158225544,L, + 315605413000,-18.016894973781774,L, + 317529836250,-18.319865089890179,L, + 319454259500,-18.603874600862657,L, + 321378682750,-18.868541016105684,L, + 323303106000,-19.113519411066179,L, + 325227529250,-19.338469983832933,L, + 327151952500,-19.543081960798713,L, + 329076375750,-19.727087257038590,L, + 331000799000,-19.890207542343894,L, + 332925222250,-20.032210590282840,L, + 334849645500,-20.152845391403432,L, + 336774068750,-20.251937775881835,L, + 338698492000,-20.329279422948364,L, + 340622915250,-20.384706408062936,L, + 342547338500,-20.418053099138184,L, + 344471761750,-20.429203382958214,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741419951133803 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-23.741419951133803,L, + 1924423250,-23.712960260409695,L, + 3848846500,-23.630542075242563,L, + 5773269750,-23.498188377053538,L, + 7697693000,-23.319462817042069,L, + 9622116250,-23.097483376564266,L, + 11546539500,-22.835060678463584,L, + 13470962750,-22.534679204050612,L, + 15395386000,-22.198603161035201,L, + 17319809250,-21.828852577864385,L, + 19244232500,-21.427271605614063,L, + 21168655750,-20.995540470820053,L, + 23093079000,-20.535187428309147,L, + 25017502250,-20.047621204597657,L, + 26941925500,-19.534130997891424,L, + 28866348750,-18.995901846011435,L, + 30790772000,-18.434052192434287,L, + 32715195250,-17.849584367420672,L, + 34639618500,-17.243461427643567,L, + 36564041750,-16.616567882600478,L, + 38488465000,-15.969725062539105,L, + 40412888250,-15.303725269403166,L, + 42337311500,-14.619294210791974,L, + 44261734750,-13.917112344301591,L, + 46186158000,-13.197849028470676,L, + 48110581250,-12.462116419003593,L, + 50035004500,-11.710507888584484,L, + 51959427750,-10.943581805177995,L, + 53883851000,-10.161899098069718,L, + 55808274250,-9.365971177673751,L, + 57732697500,-8.556326529877127,L, + 59657120750,-7.733473149999363,L, + 61581544000,-6.897904092321170,L, + 63505967250,-6.050131621030296,L, + 65430390500,-5.190668854088139,L, + 67354813750,-4.320066048609708,L, + 69279237000,-3.438881145672827,L, + 71203660250,-2.547740388247020,L, + 73128083500,-1.647338534636924,L, + 75052506750,-0.738485068980889,L, + 76976930000,0.177850215240435,L, + 78901353250,1.100454359139780,L, + 80825776500,2.027705793098864,L, + 82750199750,2.957317804468123,L, + 84674623000,3.885835918353125,L, + 86599046250,4.807456821836894,L, + 88523469500,5.710879113164012,L, + 90447892750,6.567328912908551,L, + 92372316000,7.204920668625978,L, + 94296739250,7.229656198705144,L, + 96221162500,6.588602390852172,L, + 98145585750,5.679580198179297,L, + 100070009000,4.698155865870276,L, + 101994432250,3.678810750176221,L, + 103918855500,2.635545885121993,L, + 105843278750,1.575716744113450,L, + 107767702000,0.503788723403040,L, + 109692125250,-0.577260267891968,L, + 111616548500,-1.665317513523076,L, + 113540971750,-2.758774664023305,L, + 115465395000,-3.856385850199365,L, + 117389818250,-4.957102424570250,L, + 119314241500,-6.060039664195032,L, + 121238664750,-7.164409962885045,L, + 123163088000,-8.269484197946392,L, + 125087511250,-9.374560140555030,L, + 127011934500,-10.478926597263635,L, + 128936357750,-11.581866398209355,L, + 130860781000,-12.682583826353886,L, + 132785204250,-13.780195225973358,L, + 134709627500,-14.873648747935592,L, + 136634050750,-15.961711543095399,L, + 138558474000,-17.042758026430320,L, + 140482897250,-18.114689622317876,L, + 142407320500,-19.174518122996183,L, + 144331743750,-20.217774877200771,L, + 146256167000,-21.237125969310352,L, + 148180590250,-22.218547313411609,L, + 150105013500,-23.127570359858129,L, + 152029436750,-23.768629717239804,L, + 153953860000,-23.768631424787095,L, + 155878283250,-23.769410066352478,L, + 157802706500,-23.772724415647222,L, + 159727129750,-23.778943302886507,L, + 161651553000,-23.788230652610419,L, + 163575976250,-23.800743559169867,L, + 165500399500,-23.816661315030558,L, + 167424822750,-23.836222976813445,L, + 169349246000,-23.859706874727209,L, + 171273669250,-23.887461348419514,L, + 173198092500,-23.919909869618905,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001115696208362,L, + 178971362250,-24.051356860195614,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184122077282129,L, + 184744632000,-24.283371556111444,L, + 186669055250,-24.405345074309356,L, + 188593478500,-24.545995744792641,L, + 190517901750,-24.698664133120545,L, + 192442325000,-24.854322436757620,L, + 194366748250,-25.002756107800124,L, + 196291171500,-25.134232126680804,L, + 198215594750,-25.241153615495321,L, + 200140018000,-25.318756517297604,L, + 202064441250,-25.365072030059395,L, + 203988864500,-25.380233342469506,L, + 205913287750,-25.379258332965488,L, + 207837711000,-25.376369162946578,L, + 209762134250,-25.371610228642378,L, + 211686557500,-25.365005435714984,L, + 213610980750,-25.356621378508805,L, + 215535404000,-25.346500745706155,L, + 217459827250,-25.334684518442049,L, + 219384250500,-25.321237583513607,L, + 221308673750,-25.306204337150429,L, + 223233097000,-25.289647958602345,L, + 225157520250,-25.271611136551659,L, + 227081943500,-25.252160465342783,L, + 229006366750,-25.231355709130952,L, + 230930790000,-25.209256632071408,L, + 232855213250,-25.185921290772093,L, + 234779636500,-25.161411156935539,L, + 236704059750,-25.135797947548028,L, + 238628483000,-25.109144841859383,L, + 240552906250,-25.081511604024843,L, + 242477329500,-25.052961413294231,L, + 244401752750,-25.023571109295709,L, + 246326176000,-24.993397041089928,L, + 248250599250,-24.962522878494223,L, + 250175022500,-24.930991310190905,L, + 252099445750,-24.898887713544596,L, + 254023869000,-24.866273560257834,L, + 255948292250,-24.833213737127728,L, + 257872715500,-24.799779961140562,L, + 259797138750,-24.766035411546163,L, + 261721562000,-24.732043267594349,L, + 263645985250,-24.697868416082240,L, + 265570408500,-24.663574036259657,L, + 267494831750,-24.629233552660175,L, + 269419255000,-24.594894776607983,L, + 271343678250,-24.560626009994788,L, + 273268101500,-24.526485309428526,L, + 275192524750,-24.492532439064444,L, + 277116948000,-24.458822040415892,L, + 279041371250,-24.425413877638118,L, + 280965794500,-24.392360884697180,L, + 282890217750,-24.359719410653735,L, + 284814641000,-24.327542389473852,L, + 286739064250,-24.295869094745257,L, + 288663487500,-24.264760998170477,L, + 290587910750,-24.234259080884538,L, + 292512334000,-24.204406031569746,L, + 294436757250,-24.175253076644882,L, + 296361180500,-24.146834367055792,L, + 298285603750,-24.119204544315838,L, + 300210027000,-24.092385806539820,L, + 302134450250,-24.066429380146516,L, + 304058873500,-24.041362585892607,L, + 305983296750,-24.017224697365815,L, + 307907720000,-23.994046450417411,L, + 309832143250,-23.971855165804072,L, + 311756566500,-23.950686702018938,L, + 313680989750,-23.930568379818695,L, + 315605413000,-23.911520689770850,L, + 317529836250,-23.893576075273959,L, + 319454259500,-23.876755026895534,L, + 321378682750,-23.861074620108500,L, + 323303106000,-23.846562175669536,L, + 325227529250,-23.833239891693445,L, + 327151952500,-23.821121428558570,L, + 329076375750,-23.810215324001366,L, + 331000799000,-23.800562559156859,L, + 332925222250,-23.792144351004833,L, + 334849645500,-23.784999973133008,L, + 336774068750,-23.779131133088683,L, + 338698492000,-23.774549783702906,L, + 340622915250,-23.771267877806718,L, + 342547338500,-23.769283707852832,L, + 344471761750,-23.768629717239804,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941898523 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941898523,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853182771,L, + 5773269750,0.000044747310312,L, + 7697693000,0.000044604319555,L, + 9622116250,0.000044426746172,L, + 11546539500,0.000044216820243,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707725126,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377367208,L, + 25017502250,0.000041987466830,L, + 26941925500,0.000041576859076,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229973820,L, + 34639618500,0.000039745402319,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727204810,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647852878,L, + 44261734750,0.000037086694647,L, + 46186158000,0.000036511926737,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323548218,L, + 51959427750,0.000034710872569,L, + 53883851000,0.000034086471715,L, + 55808274250,0.000033450771298,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147163438,L, + 61581544000,0.000031480074540,L, + 63505967250,0.000030803363188,L, + 65430390500,0.000030117445931,L, + 67354813750,0.000029422770240,L, + 69279237000,0.000028719819966,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291232982,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836825444,L, + 78901353250,0.000025102159270,L, + 80825776500,0.000024364246201,L, + 82750199750,0.000023625038011,L, + 84674623000,0.000022887483283,L, + 86599046250,0.000022156533305,L, + 88523469500,0.000021441828721,L, + 90447892750,0.000020767845854,L, + 92372316000,0.000020280482204,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565656304359,L, + 98145585750,0.245429664850235,L, + 100070009000,0.254731386899948,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518383502960,L, + 107767702000,0.278088837862015,L, + 109692125250,0.282116144895554,L, + 111616548500,0.285697221755981,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787862777710,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296753019094467,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840198993683,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681318044662,L, + 130860781000,0.307010620832443,L, + 132785204250,0.308217525482178,L, + 134709627500,0.309312224388123,L, + 136634050750,0.310304522514343,L, + 138558474000,0.311203896999359,L, + 140482897250,0.312020361423492,L, + 142407320500,0.312765061855316,L, + 144331743750,0.313452214002609,L, + 146256167000,0.314102530479431,L, + 148180590250,0.314752757549286,L, + 150105013500,0.315492510795593,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999179363251,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450118303299,L, + 163575976250,0.323262572288513,L, + 165500399500,0.322943359613419,L, + 167424822750,0.322556555271149,L, + 169349246000,0.322150558233261,L, + 171273669250,0.321765452623367,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198940277100,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136683225632,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961044549942,L, + 184744632000,0.351049661636353,L, + 186669055250,0.387221634387970,L, + 188593478500,0.435898840427399,L, + 190517901750,0.494094938039780,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323055267334,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784998953342438,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418565273285,L, + 209762134250,0.788208484649658,L, + 211686557500,0.785148978233337,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568055152893,L, + 217459827250,0.771091759204865,L, + 219384250500,0.764856100082397,L, + 221308673750,0.757886171340942,L, + 223233097000,0.750207185745239,L, + 225157520250,0.741845130920410,L, + 227081943500,0.732826888561249,L, + 229006366750,0.723180055618286,L, + 230930790000,0.712932407855988,L, + 232855213250,0.702112674713135,L, + 234779636500,0.690750002861023,L, + 236704059750,0.678873717784882,L, + 238628483000,0.666514039039612,L, + 240552906250,0.653700828552246,L, + 242477329500,0.640465080738068,L, + 244401752750,0.626837253570557,L, + 246326176000,0.612848460674286,L, + 248250599250,0.598529458045959,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026112556458,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523072957992554,L, + 259797138750,0.507425606250763,L, + 261721562000,0.491664171218872,L, + 263645985250,0.475818693637848,L, + 265570408500,0.459918767213821,L, + 267494831750,0.443993687629700,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182480096817,L, + 273268101500,0.396352648735046,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980071783066,L, + 279041371250,0.349490195512772,L, + 280965794500,0.334165275096893,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108411073685,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855793952942,L, + 292512334000,0.247015208005905,L, + 294436757250,0.233497738838196,L, + 296361180500,0.220322877168655,L, + 298285603750,0.207509815692902,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040350675583,L, + 304058873500,0.171418070793152,L, + 305983296750,0.160225331783295,L, + 307907720000,0.149477675557137,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373714327812,L, + 313680989750,0.120044350624084,L, + 315605413000,0.111213259398937,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091879367828,L, + 321378682750,0.087822906672955,L, + 323303106000,0.081094793975353,L, + 325227529250,0.074916541576385,L, + 327151952500,0.069296777248383,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763077646494,L, + 332925222250,0.055863019078970,L, + 334849645500,0.052549600601196,L, + 336774068750,0.049828290939331,L, + 338698492000,0.047704100608826,L, + 340622915250,0.046181917190552,L, + 342547338500,0.045265793800354,L, + 344471761750,0.044959723949432,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520820706 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520820706,L, + 1924423250,0.000028513213692,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455800930,L, + 7697693000,0.000028408023354,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278542231,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009615562,L, + 19244232500,0.000027902298825,L, + 21168655750,0.000027786925784,L, + 23093079000,0.000027663912988,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396430596,L, + 28866348750,0.000027252628570,L, + 30790772000,0.000027102518288,L, + 32715195250,0.000026946381695,L, + 34639618500,0.000026784469810,L, + 36564041750,0.000026617017284,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266374334,L, + 42337311500,0.000026083595003,L, + 44261734750,0.000025896089937,L, + 46186158000,0.000025704039217,L, + 48110581250,0.000025507608370,L, + 50035004500,0.000025306957468,L, + 51959427750,0.000025102237487,L, + 53883851000,0.000024893601221,L, + 55808274250,0.000024681188734,L, + 57732697500,0.000024465143724,L, + 59657120750,0.000024245602617,L, + 61581544000,0.000024022701837,L, + 63505967250,0.000023796586902,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100392355,L, + 71203660250,0.000022862917831,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891593860,L, + 80825776500,0.000021645026209,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151583496,L, + 86599046250,0.000020907342332,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443329049,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919067144394,L, + 98145585750,0.245930299162865,L, + 100070009000,0.255280971527100,L, + 101994432250,0.262665212154388,L, + 103918855500,0.268771350383759,L, + 105843278750,0.273961126804352,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868585109711,L, + 113540971750,0.288967907428741,L, + 115465395000,0.291741728782654,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479731798172,L, + 121238664750,0.298507750034332,L, + 123163088000,0.300342202186584,L, + 125087511250,0.302003294229507,L, + 127011934500,0.303509086370468,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115359067917,L, + 132785204250,0.307243078947067,L, + 134709627500,0.308270901441574,L, + 136634050750,0.309211075305939,L, + 138558474000,0.310076832771301,L, + 140482897250,0.310882627964020,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149750232697,L, + 148180590250,0.313986390829086,L, + 150105013500,0.315037369728088,L, + 152029436750,0.316851437091827,L, + 153953860000,0.316844671964645,L, + 155878283250,0.317553371191025,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131357431412,L, + 161651553000,0.317930370569229,L, + 163575976250,0.317365050315857,L, + 165500399500,0.316432714462280,L, + 167424822750,0.315173506736755,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128514051437,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460818767548,L, + 177046939000,0.308580935001373,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893604040146,L, + 182820208750,0.314245015382767,L, + 184744632000,0.333418756723404,L, + 186669055250,0.365034848451614,L, + 188593478500,0.407707035541534,L, + 190517901750,0.458806842565536,L, + 192442325000,0.514501214027405,L, + 194366748250,0.570195436477661,L, + 196291171500,0.621295332908630,L, + 198215594750,0.663967490196228,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757382869720,L, + 203988864500,0.721108734607697,L, + 205913287750,0.720690786838531,L, + 207837711000,0.719448924064636,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565634727478,L, + 213610980750,0.710962831974030,L, + 215535404000,0.706613302230835,L, + 217459827250,0.701538026332855,L, + 219384250500,0.695759415626526,L, + 221308673750,0.689300000667572,L, + 223233097000,0.682183504104614,L, + 225157520250,0.674434065818787,L, + 227081943500,0.666076540946960,L, + 229006366750,0.657136380672455,L, + 230930790000,0.647639513015747,L, + 232855213250,0.637612402439117,L, + 234779636500,0.627082228660583,L, + 236704059750,0.616075992584229,L, + 238628483000,0.604621708393097,L, + 240552906250,0.592747330665588,L, + 242477329500,0.580481171607971,L, + 244401752750,0.567851662635803,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617691516876,L, + 250175022500,0.528070926666260,L, + 252099445750,0.514275848865509,L, + 254023869000,0.500261485576630,L, + 255948292250,0.486056417226791,L, + 257872715500,0.471689194440842,L, + 259797138750,0.457188189029694,L, + 261721562000,0.442581474781036,L, + 263645985250,0.427896797657013,L, + 265570408500,0.413161695003510,L, + 267494831750,0.398403316736221,L, + 269419255000,0.383648246526718,L, + 271343678250,0.368922650814056,L, + 273268101500,0.354252517223358,L, + 275192524750,0.339662730693817,L, + 277116948000,0.325178265571594,L, + 279041371250,0.310823112726212,L, + 280965794500,0.296620965003967,L, + 282890217750,0.282594501972198,L, + 284814641000,0.268766105175018,L, + 286739064250,0.255157381296158,L, + 288663487500,0.241789340972900,L, + 290587910750,0.228682175278664,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328385949135,L, + 296361180500,0.191118702292442,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721807956696,L, + 302134450250,0.156567439436913,L, + 304058873500,0.145796656608582,L, + 305983296750,0.135423958301544,L, + 307907720000,0.125463604927063,L, + 309832143250,0.115928888320923,L, + 311756566500,0.106832444667816,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002484619617,L, + 317529836250,0.082290880382061,L, + 319454259500,0.075062155723572,L, + 321378682750,0.068325690925121,L, + 323303106000,0.062090396881104,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156755536795,L, + 329076375750,0.046473443508148,L, + 331000799000,0.042321559041739,L, + 332925222250,0.038707252591848,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114548772573,L, + 338698492000,0.031146047636867,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886198997498,L, + 344471761750,0.028602691367269,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378898797 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378898797,L, + 1924423250,0.000042358493374,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204526835,L, + 7697693000,0.000042076408135,L, + 9622116250,0.000041917282942,L, + 11546539500,0.000041729177610,L, + 13470962750,0.000041513874748,L, + 15395386000,0.000041272989620,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720187826,L, + 21168655750,0.000040410785004,L, + 23093079000,0.000040080889448,L, + 25017502250,0.000039731516154,L, + 26941925500,0.000039363574615,L, + 28866348750,0.000038977941585,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156671508,L, + 34639618500,0.000037722460547,L, + 36564041750,0.000037273399357,L, + 38488465000,0.000036810084566,L, + 40412888250,0.000036333080061,L, + 42337311500,0.000035842902435,L, + 44261734750,0.000035340064642,L, + 46186158000,0.000034825028706,L, + 48110581250,0.000034298253013,L, + 50035004500,0.000033760159567,L, + 51959427750,0.000033211155824,L, + 53883851000,0.000032651645597,L, + 55808274250,0.000032082018151,L, + 57732697500,0.000031502637285,L, + 59657120750,0.000030913888622,L, + 61581544000,0.000030316130506,L, + 63505967250,0.000029709744922,L, + 65430390500,0.000029095113860,L, + 67354813750,0.000028472632039,L, + 69279237000,0.000027842739655,L, + 71203660250,0.000027205891456,L, + 73128083500,0.000026562620405,L, + 75052506750,0.000025913530408,L, + 76976930000,0.000025259367249,L, + 78901353250,0.000024601053155,L, + 80825776500,0.000023939830498,L, + 82750199750,0.000023277447326,L, + 84674623000,0.000022616546630,L, + 86599046250,0.000021961561288,L, + 88523469500,0.000021321133318,L, + 90447892750,0.000020717199732,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232568234205246,L, + 98145585750,0.245435789227486,L, + 100070009000,0.254741221666336,L, + 101994432250,0.262134104967117,L, + 103918855500,0.268283247947693,L, + 105843278750,0.273539334535599,L, + 107767702000,0.278113365173340,L, + 109692125250,0.282144129276276,L, + 111616548500,0.285728603601456,L, + 113540971750,0.288937807083130,L, + 115465395000,0.291825562715530,L, + 117389818250,0.294433921575546,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940479755402,L, + 123163088000,0.300888657569885,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304270982742310,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066202163696,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369504451752,L, + 136634050750,0.310361951589584,L, + 138558474000,0.311260908842087,L, + 140482897250,0.312076240777969,L, + 142407320500,0.312819033861160,L, + 144331743750,0.313503116369247,L, + 146256167000,0.314148783683777,L, + 148180590250,0.314791977405548,L, + 150105013500,0.315520226955414,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319212585687637,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968772888184,L, + 159727129750,0.318790256977081,L, + 161651553000,0.318605124950409,L, + 163575976250,0.318420708179474,L, + 165500399500,0.318241655826569,L, + 167424822750,0.318071484565735,L, + 169349246000,0.317913085222244,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642778158188,L, + 175122515750,0.317536950111389,L, + 177046939000,0.317455202341080,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382961511612,L, + 182820208750,0.324425935745239,L, + 184744632000,0.345687240362167,L, + 186669055250,0.380745738744736,L, + 188593478500,0.428064048290253,L, + 190517901750,0.484727621078491,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244419097900,L, + 196291171500,0.664907813072205,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284650802612,L, + 202064441250,0.768545985221863,L, + 203988864500,0.775588989257812,L, + 205913287750,0.775146484375000,L, + 207837711000,0.773831605911255,L, + 209762134250,0.771663129329681,L, + 211686557500,0.768661379814148,L, + 213610980750,0.764847040176392,L, + 215535404000,0.760241746902466,L, + 217459827250,0.754868268966675,L, + 219384250500,0.748750090599060,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376430511475,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323064804077,L, + 229006366750,0.707857489585876,L, + 230930790000,0.697802484035492,L, + 232855213250,0.687186300754547,L, + 234779636500,0.676037192344666,L, + 236704059750,0.664384305477142,L, + 238628483000,0.652257084846497,L, + 240552906250,0.639684796333313,L, + 242477329500,0.626697897911072,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600434303284,L, + 248250599250,0.585550725460052,L, + 250175022500,0.571207880973816,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764259338379,L, + 255948292250,0.526724517345428,L, + 257872715500,0.511513113975525,L, + 259797138750,0.496159940958023,L, + 261721562000,0.480694860219955,L, + 263645985250,0.465147286653519,L, + 265570408500,0.449546307325363,L, + 267494831750,0.433920741081238,L, + 269419255000,0.418298512697220,L, + 271343678250,0.402707606554031,L, + 273268101500,0.387175410985947,L, + 275192524750,0.371728330850601,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194123029709,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665757894516,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103748559952,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240645989775658,L, + 294436757250,0.227382734417915,L, + 296361180500,0.214455604553223,L, + 298285603750,0.201883479952812,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874028682709,L, + 304058873500,0.166470363736153,L, + 305983296750,0.155488088726997,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847342967987,L, + 311756566500,0.125216528773308,L, + 313680989750,0.116062462329865,L, + 315605413000,0.107397496700287,L, + 317529836250,0.099232845008373,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446899592876,L, + 323303106000,0.077845335006714,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310529708862,L, + 331000799000,0.056914687156677,L, + 332925222250,0.053088188171387,L, + 334849645500,0.049837116152048,L, + 336774068750,0.047166701406240,L, + 338698492000,0.045082446187735,L, + 340622915250,0.043588876724243,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389750480652,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_057" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.012301921844482,L, + 3848846500,-0.010392785072327,L, + 7697693000,-0.006574988365173,L, + 11546539500,-0.002756953239441,L, + 13470962750,-0.000847816467285,L, + 15395386000,0.001061201095581,L, + 17319809250,0.002970099449158,L, + 19244232500,0.004879117012024,L, + 21168655750,0.006788015365601,L, + 23093079000,0.008697152137756,L, + 25017502250,0.010606169700623,L, + 26941925500,0.012515068054199,L, + 28866348750,0.014424085617065,L, + 30790772000,0.016332983970642,L, + 32715195250,0.018242239952087,L, + 34639618500,0.020151138305664,L, + 38488465000,0.023969173431396,L, + 40412888250,0.025878310203552,L, + 44261734750,0.029696106910706,L, + 46186158000,0.031605124473572,L, + 48110581250,0.033514022827148,L, + 50035004500,0.035423278808594,L, + 51959427750,0.037332296371460,L, + 53883851000,0.039241194725037,L, + 55808274250,0.041150212287903,L, + 57732697500,0.043059110641479,L, + 59657120750,0.044968247413635,L, + 61581544000,0.046877145767212,L, + 63505967250,0.048786401748657,L, + 65430390500,0.050695180892944,L, + 67354813750,0.052604079246521,L, + 69279237000,0.054513335227966,L, + 71203660250,0.056422233581543,L, + 73128083500,0.058331489562988,L, + 75052506750,0.060240149497986,L, + 76976930000,0.062149286270142,L, + 78901353250,0.064058303833008,L, + 80825776500,0.065967202186584,L, + 82750199750,0.067876458168030,L, + 84674623000,0.069785118103027,L, + 86599046250,0.071694374084473,L, + 88523469500,0.073603272438049,L, + 90447892750,0.075512290000916,L, + 92372316000,0.077421426773071,L, + 94296739250,0.079330444335938,L, + 96221162500,0.081239342689514,L, + 98145585750,0.081239461898804,L, + 100070009000,0.081239342689514,L, + 101994432250,0.081239461898804,L, + 103918855500,0.081239223480225,L, + 105843278750,0.081239342689514,L, + 107767702000,0.081239223480225,L, + 109692125250,0.081239461898804,L, + 111616548500,0.081239223480225,L, + 113540971750,0.081239342689514,L, + 115465395000,0.081239223480225,L, + 117389818250,0.081239342689514,L, + 119314241500,0.081239104270935,L, + 125087511250,0.081239461898804,L, + 127011934500,0.081239223480225,L, + 130860781000,0.081239461898804,L, + 132785204250,0.081239342689514,L, + 134709627500,0.081239342689514,L, + 136634050750,0.081239223480225,L, + 140482897250,0.081239461898804,L, + 142407320500,0.081239461898804,L, + 144331743750,0.081239342689514,L, + 146256167000,0.081239461898804,L, + 148180590250,0.081239223480225,L, + 150105013500,0.081239342689514,L, + 152029436750,0.081239223480225,L, + 155878283250,0.080892801284790,L, + 157802706500,0.080719828605652,L, + 159727129750,0.080546617507935,L, + 161651553000,0.080373048782349,L, + 163575976250,0.080199837684631,L, + 165500399500,0.080026745796204,L, + 173198092500,0.079333901405334,L, + 175122515750,0.079160571098328,L, + 177046939000,0.078987360000610,L, + 178971362250,0.078813910484314,L, + 180895785500,0.078640818595886,L, + 188593478500,0.077947974205017,L, + 190517901750,0.077774643898010,L, + 196291171500,0.077255010604858,L, + 198215594750,0.077081918716431,L, + 202064441250,0.076735496520996,L, + 203988864500,0.076562166213989,L, + 205913287750,0.076388716697693,L, + 207837711000,0.076215505599976,L, + 209762134250,0.072737693786621,L, + 211686557500,0.069259643554688,L, + 213610980750,0.065781950950623,L, + 215535404000,0.062303900718689,L, + 217459827250,0.058825969696045,L, + 219384250500,0.055347919464111,L, + 221308673750,0.051870107650757,L, + 223233097000,0.048391938209534,L, + 227081943500,0.041436314582825,L, + 229006366750,0.037958264350891,L, + 230930790000,0.034480333328247,L, + 232855213250,0.031002163887024,L, + 234779636500,0.027524352073669,L, + 236704059750,0.024046301841736,L, + 238628483000,0.020568728446960,L, + 240552906250,0.017090559005737,L, + 246326176000,0.006656765937805,L, + 248250599250,0.003178715705872,L, + 250175022500,-0.000299215316772,L, + 252099445750,-0.003777027130127,L, + 254023869000,-0.007255077362061,L, + 255948292250,-0.010733008384705,L, + 257872715500,-0.014211058616638,L, + 259797138750,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013481676578522 + KeyVer: 4005 + KeyCount: 119 + Key: + 0,0.013481676578522,L, + 1924423250,0.014848768711090,L, + 3848846500,0.016215503215790,L, + 7697693000,0.018949687480927,L, + 9622116250,0.020316421985626,L, + 11546539500,0.021683514118195,L, + 13470962750,0.023050367832184,L, + 15395386000,0.024417102336884,L, + 17319809250,0.025783956050873,L, + 19244232500,0.027151048183441,L, + 21168655750,0.028518021106720,L, + 23093079000,0.029884874820709,L, + 25017502250,0.031251966953278,L, + 26941925500,0.032618701457977,L, + 28866348750,0.033985793590546,L, + 30790772000,0.035352766513824,L, + 32715195250,0.036719620227814,L, + 34639618500,0.038086354732513,L, + 36564041750,0.039453208446503,L, + 38488465000,0.040820300579071,L, + 40412888250,0.042187035083771,L, + 42337311500,0.043554127216339,L, + 44261734750,0.044921100139618,L, + 46186158000,0.046287953853607,L, + 48110581250,0.047654926776886,L, + 50035004500,0.049021780490875,L, + 51959427750,0.050388872623444,L, + 53883851000,0.051755607128143,L, + 55808274250,0.053122460842133,L, + 57732697500,0.054489433765411,L, + 59657120750,0.055856287479401,L, + 61581544000,0.057223260402679,L, + 63505967250,0.058590114116669,L, + 65430390500,0.059957206249237,L, + 67354813750,0.061324179172516,L, + 69279237000,0.062691032886505,L, + 71203660250,0.064058005809784,L, + 73128083500,0.065424859523773,L, + 75052506750,0.066791832447052,L, + 78901353250,0.069525539875031,L, + 80825776500,0.070892512798309,L, + 82750199750,0.072259366512299,L, + 84674623000,0.073626339435577,L, + 86599046250,0.074993193149567,L, + 88523469500,0.076360285282135,L, + 90447892750,0.077727258205414,L, + 92372316000,0.079094111919403,L, + 94296739250,0.080461204051971,L, + 96221162500,0.081827938556671,L, + 98145585750,0.078541815280914,L, + 100070009000,0.075255811214447,L, + 101994432250,0.071969926357269,L, + 103918855500,0.068683683872223,L, + 105843278750,0.065397799015045,L, + 109692125250,0.058825314044952,L, + 111616548500,0.055539309978485,L, + 113540971750,0.052253425121307,L, + 115465395000,0.048967182636261,L, + 117389818250,0.045681178569794,L, + 119314241500,0.042395293712616,L, + 121238664750,0.039109051227570,L, + 123163088000,0.035823166370392,L, + 125087511250,0.032536923885345,L, + 127011934500,0.029250800609589,L, + 128936357750,0.025964796543121,L, + 130860781000,0.022678911685944,L, + 132785204250,0.019392669200897,L, + 134709627500,0.016106665134430,L, + 136634050750,0.012820780277252,L, + 138558474000,0.009534537792206,L, + 140482897250,0.006248414516449,L, + 142407320500,0.002962410449982,L, + 144331743750,-0.000323712825775,L, + 148180590250,-0.006895720958710,L, + 150105013500,-0.010181844234467,L, + 152029436750,-0.013467848300934,L, + 155878283250,-0.011269629001617,L, + 157802706500,-0.010170876979828,L, + 161651553000,-0.007972657680511,L, + 163575976250,-0.006873667240143,L, + 165500399500,-0.005774438381195,L, + 167424822750,-0.004675447940826,L, + 171273669250,-0.002477228641510,L, + 173198092500,-0.001378238201141,L, + 175122515750,-0.000278890132904,L, + 177046939000,0.000820219516754,L, + 178971362250,0.001919209957123,L, + 180895785500,0.003018438816071,L, + 182820208750,0.004117429256439,L, + 186669055250,0.006315648555756,L, + 188593478500,0.007414638996124,L, + 190517901750,0.008513510227203,L, + 192442325000,0.009612500667572,L, + 200140018000,0.014008939266205,L, + 202064441250,0.015107929706573,L, + 205913287750,0.017306149005890,L, + 207837711000,0.018405139446259,L, + 209762134250,0.019504249095917,L, + 211686557500,0.020603477954865,L, + 213610980750,0.021702349185944,L, + 215535404000,0.022801458835602,L, + 217459827250,0.023900687694550,L, + 221308673750,0.026098906993866,L, + 223233097000,0.027197778224945,L, + 225157520250,0.028296768665314,L, + 229006366750,0.030494987964630,L, + 230930790000,0.031594216823578,L, + 236704059750,0.034891545772552,L, + 238628483000,0.035990536212921,L, + 240552906250,0.037089645862579,L, + 242477329500,0.038188517093658,L, + 244401752750,0.039287745952606,L, + 248250599250,0.041485965251923,L, + 250175022500,0.042584836483002,L, + 252099445750,0.043684065341949,L, + 255948292250,0.045882284641266,L, + 257872715500,0.046981155872345,L, + 259797138750,0.013481676578522,L, + 344471761750,0.013481676578522,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323199272156 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323199272156,L, + 1924423250,-0.023415327072144,L, + 3848846500,-0.020337700843811,L, + 5773269750,-0.017082929611206,L, + 7697693000,-0.013643264770508,L, + 9622116250,-0.010010719299316,L, + 11546539500,-0.006176114082336,L, + 13470962750,-0.002130150794983,L, + 15395386000,0.002137303352356,L, + 17319809250,0.006637096405029,L, + 19244232500,0.011381149291992,L, + 21168655750,0.016381978988647,L, + 23093079000,0.021653056144714,L, + 25017502250,0.027209281921387,L, + 26941925500,0.033066511154175,L, + 28866348750,0.039241790771484,L, + 30790772000,0.045753955841064,L, + 32715195250,0.052623271942139,L, + 34639618500,0.059871673583984,L, + 36564041750,0.067523241043091,L, + 38488465000,0.075603961944580,L, + 40412888250,0.084141969680786,L, + 42337311500,0.093168258666992,L, + 44261734750,0.102715969085693,L, + 46186158000,0.112821459770203,L, + 48110581250,0.123523712158203,L, + 50035004500,0.134864211082458,L, + 51959427750,0.146887183189392,L, + 53883851000,0.159638762474060,L, + 55808274250,0.173166036605835,L, + 57732697500,0.187515497207642,L, + 59657120750,0.202729940414429,L, + 61581544000,0.218846082687378,L, + 63505967250,0.235886812210083,L, + 65430390500,0.253855705261230,L, + 67354813750,0.272726774215698,L, + 69279237000,0.292433857917786,L, + 71203660250,0.312859654426575,L, + 73128083500,0.333829045295715,L, + 75052506750,0.355108976364136,L, + 76976930000,0.376419186592102,L, + 78901353250,0.397454738616943,L, + 80825776500,0.417917013168335,L, + 82750199750,0.437542796134949,L, + 84674623000,0.456126451492310,L, + 86599046250,0.473530530929565,L, + 88523469500,0.489682316780090,L, + 90447892750,0.504563808441162,L, + 92372316000,0.518197774887085,L, + 94296739250,0.530634760856628,L, + 96221162500,0.541941881179810,L, + 98145585750,0.552702665328979,L, + 100070009000,0.563450217247009,L, + 101994432250,0.574181675910950,L, + 103918855500,0.584893465042114,L, + 105843278750,0.595581889152527,L, + 107767702000,0.606242895126343,L, + 109692125250,0.616872429847717,L, + 111616548500,0.627465844154358,L, + 113540971750,0.638018488883972,L, + 115465395000,0.648525595664978,L, + 117389818250,0.658982396125793,L, + 119314241500,0.669385194778442,L, + 121238664750,0.679729461669922,L, + 123163088000,0.690012097358704,L, + 125087511250,0.700230360031128,L, + 127011934500,0.710382223129272,L, + 128936357750,0.720467209815979,L, + 130860781000,0.730484485626221,L, + 132785204250,0.740434885025024,L, + 134709627500,0.750320196151733,L, + 136634050750,0.760142087936401,L, + 138558474000,0.769903182983398,L, + 140482897250,0.779606819152832,L, + 142407320500,0.789255976676941,L, + 144331743750,0.798854351043701,L, + 146256167000,0.808405041694641,L, + 148180590250,0.817911624908447,L, + 150105013500,0.827377676963806,L, + 152029436750,0.836806416511536,L, + 153953860000,0.846144318580627,L, + 155878283250,0.855336070060730,L, + 157802706500,0.864380836486816,L, + 159727129750,0.873280405998230,L, + 161651553000,0.882037520408630,L, + 163575976250,0.890657186508179,L, + 165500399500,0.899145960807800,L, + 167424822750,0.907514214515686,L, + 169349246000,0.915773510932922,L, + 171273669250,0.923939228057861,L, + 173198092500,0.932028532028198,L, + 175122515750,0.940061569213867,L, + 177046939000,0.948060274124146,L, + 178971362250,0.956048011779785,L, + 180895785500,0.964049100875854,L, + 182820208750,0.972087860107422,L, + 184744632000,0.980187654495239,L, + 186669055250,0.988371133804321,L, + 188593478500,0.996658325195312,L, + 190517901750,1.005066871643066,L, + 192442325000,1.013611555099487,L, + 194366748250,1.022304534912109,L, + 196291171500,1.031155109405518,L, + 198215594750,1.040169715881348,L, + 200140018000,1.049352169036865,L, + 202064441250,1.058705091476440,L, + 203988864500,1.068228244781494,L, + 205913287750,1.077920198440552,L, + 207837711000,1.087778091430664,L, + 209762134250,1.097881078720093,L, + 211686557500,1.108280420303345,L, + 213610980750,1.118937969207764,L, + 215535404000,1.129822015762329,L, + 217459827250,1.140905618667603,L, + 219384250500,1.152165651321411,L, + 221308673750,1.163581371307373,L, + 223233097000,1.175134658813477,L, + 225157520250,1.186808586120605,L, + 227081943500,1.198587656021118,L, + 229006366750,1.210457324981689,L, + 230930790000,1.222403287887573,L, + 232855213250,1.234411239624023,L, + 234779636500,1.246466159820557,L, + 236704059750,1.258553028106689,L, + 238628483000,1.270654678344727,L, + 240552906250,1.282752275466919,L, + 242477329500,1.294822454452515,L, + 244401752750,1.306837558746338,L, + 246326176000,1.318761110305786,L, + 248250599250,1.330542802810669,L, + 250175022500,1.342108964920044,L, + 252099445750,1.353339672088623,L, + 254023869000,1.364012241363525,L, + 255948292250,1.373597383499146,L, + 257872715500,1.379659175872803,L, + 259797138750,-0.513281285762787,L, + 261721562000,-0.026323199272156,L, + 344471761750,-0.026323199272156,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802662010048856 + KeyVer: 4005 + KeyCount: 117 + Key: + 0,34.802662010048856,L, + 1924423250,35.280747931192380,L, + 3848846500,35.758837267430494,L, + 5773269750,36.236919773479435,L, + 7697693000,36.715012524812131,L, + 9622116250,37.193095030861066,L, + 11546539500,37.671184367099180,L, + 13470962750,38.149270288242704,L, + 15395386000,38.627352794291646,L, + 17319809250,39.105448960718924,L, + 19244232500,39.583524636578694,L, + 23093079000,40.539703309054921,L, + 25017502250,41.017785815103856,L, + 26941925500,41.495878566436552,L, + 28866348750,41.973957657390912,L, + 32715195250,42.930136329867132,L, + 42337311500,45.320565935584760,L, + 44261734750,45.798648441633702,L, + 46186158000,46.276734362777226,L, + 48110581250,46.754823699015340,L, + 50035004500,47.232909620158864,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189084877540495,L, + 55808274250,48.667170798684026,L, + 59657120750,49.623349471160246,L, + 61581544000,50.101431977209188,L, + 65430390500,51.057603819496236,L, + 67354813750,51.535686325545178,L, + 71203660250,52.491864998021398,L, + 73128083500,52.969944088975751,L, + 76976930000,53.926122761451978,L, + 78901353250,54.404205267500913,L, + 82750199750,55.360383939977140,L, + 84674623000,55.838469861120664,L, + 86599046250,56.316552367169606,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750813545694768,L, + 94296739250,58.228906297027457,L, + 96221162500,58.706985387981817,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531679587319189,L, + 113540971750,63.009765508462714,L, + 115465395000,63.487844599417073,L, + 117389818250,63.965937350749769,L, + 119314241500,64.444023271893300,L, + 123163088000,65.400195114180349,L, + 125087511250,65.878287865513045,L, + 127011934500,66.356366956467397,L, + 128936357750,66.834452877610914,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683059569232483,L, + 163575976250,70.305363768509650,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 188593478500,65.395413981761337,L, + 190517901750,65.017725011227697,L, + 196291171500,63.884658099626733,L, + 198215594750,63.506975959282251,L, + 217459827250,59.730086253945728,L, + 219384250500,59.352404113601246,L, + 230930790000,57.086270290399327,L, + 232855213250,56.708577904771090,L, + 236704059750,55.953206793892960,L, + 238628483000,55.575517823359306,L, + 240552906250,55.197832267920241,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442457741947514,L, + 248250599250,53.687072970691041,L, + 250175022500,53.309387415251976,L, + 252099445750,52.931698444718322,L, + 254023869000,52.554006059090085,L, + 255948292250,52.176327333840185,L, + 257872715500,51.798638363306537,L, + 259797138750,34.802665425143438,L, + 261721562000,34.802662010048856,L, + 263645985250,34.802668840238027,L, + 265570408500,34.802665425143438,L, + 267494831750,34.802665425143438,L, + 269419255000,34.802668840238027,L, + 271343678250,34.802668840238027,L, + 273268101500,34.802665425143438,L, + 279041371250,34.802665425143438,L, + 280965794500,34.802668840238027,L, + 284814641000,34.802668840238027,L, + 286739064250,34.802665425143438,L, + 288663487500,34.802668840238027,L, + 290587910750,34.802665425143438,L, + 292512334000,34.802665425143438,L, + 294436757250,34.802668840238027,L, + 296361180500,34.802662010048856,L, + 300210027000,34.802668840238027,L, + 302134450250,34.802668840238027,L, + 304058873500,34.802665425143438,L, + 305983296750,34.802668840238027,L, + 307907720000,34.802662010048856,L, + 309832143250,34.802662010048856,L, + 311756566500,34.802668840238027,L, + 313680989750,34.802662010048856,L, + 315605413000,34.802662010048856,L, + 317529836250,34.802665425143438,L, + 321378682750,34.802665425143438,L, + 323303106000,34.802662010048856,L, + 325227529250,34.802665425143438,L, + 331000799000,34.802665425143438,L, + 332925222250,34.802668840238027,L, + 334849645500,34.802668840238027,L, + 336774068750,34.802662010048856,L, + 338698492000,34.802665425143438,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132533698967659 + KeyVer: 4005 + KeyCount: 156 + Key: + 0,-5.132533698967659,L, + 1924423250,-5.327042972377357,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716059384762636,L, + 7697693000,-5.910569938832803,L, + 9622116250,-6.105077504695208,L, + 11546539500,-6.299586778104906,L, + 13470962750,-6.494096478401426,L, + 15395386000,-6.688604044263831,L, + 17319809250,-6.883114171447175,L, + 19244232500,-7.077623017970049,L, + 21168655750,-7.272131437606100,L, + 23093079000,-7.466640711015797,L, + 26941925500,-7.855657550287900,L, + 30790772000,-8.244677804654588,L, + 34639618500,-8.633692936379397,L, + 36564041750,-8.828203063562741,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219902834843,L, + 42337311500,-9.411730030018186,L, + 46186158000,-9.800746869290288,L, + 48110581250,-9.995254435152694,L, + 50035004500,-10.189766269883329,L, + 51959427750,-10.384272128198441,L, + 53883851000,-10.578782255381785,L, + 55808274250,-10.773291528791482,L, + 57732697500,-10.967799094653888,L, + 59657120750,-11.162307514289939,L, + 61581544000,-11.356817641473283,L, + 63505967250,-11.551326061109334,L, + 65430390500,-11.745837895839969,L, + 67354813750,-11.940344607928729,L, + 69279237000,-12.134853027564780,L, + 71203660250,-12.329364008521770,L, + 75052506750,-12.718380847793872,L, + 76976930000,-12.912888413656276,L, + 78901353250,-13.107399394613267,L, + 80825776500,-13.301906960475671,L, + 82750199750,-13.496417087659015,L, + 84674623000,-13.690926361068712,L, + 86599046250,-13.885433926931118,L, + 88523469500,-14.079944054114462,L, + 90447892750,-14.274449912429574,L, + 92372316000,-14.468961747160209,L, + 94296739250,-14.663471874343553,L, + 96221162500,-14.857980293979605,L, + 98145585750,-15.052485298521070,L, + 100070009000,-15.246997133251707,L, + 101994432250,-15.441507260435051,L, + 103918855500,-15.636012264976516,L, + 107767702000,-16.025032519343203,L, + 109692125250,-16.219537523884672,L, + 111616548500,-16.414047651068014,L, + 113540971750,-16.608556070704065,L, + 117389818250,-16.997576325070753,L, + 119314241500,-17.192083037159509,L, + 121238664750,-17.386594871890146,L, + 123163088000,-17.581101583978906,L, + 125087511250,-17.775611711162249,L, + 127011934500,-17.970118423251009,L, + 128936357750,-18.164630257981646,L, + 130860781000,-18.359140385164988,L, + 132785204250,-18.553647097253748,L, + 140482897250,-19.331680775797953,L, + 142407320500,-19.526194318075881,L, + 144331743750,-19.720702737711932,L, + 146256167000,-19.915206034706106,L, + 148180590250,-20.109717869436739,L, + 152029436750,-20.498734708708842,L, + 153953860000,-20.345072527856701,L, + 155878283250,-20.191408639457268,L, + 157802706500,-20.037751581247004,L, + 159727129750,-19.884091107942155,L, + 161651553000,-19.730428927090014,L, + 163575976250,-19.576763331143290,L, + 165500399500,-19.423102857838440,L, + 167424822750,-19.269440676986299,L, + 169349246000,-19.115776788586867,L, + 173198092500,-18.808452426882582,L, + 175122515750,-18.654791953577735,L, + 177046939000,-18.501128065178300,L, + 178971362250,-18.347465884326159,L, + 182820208750,-18.040144937716462,L, + 184744632000,-17.886479341769736,L, + 186669055250,-17.732820576012180,L, + 188593478500,-17.579160102707331,L, + 190517901750,-17.425494506760607,L, + 192442325000,-17.271832325908466,L, + 194366748250,-17.118171852603616,L, + 196291171500,-16.964507964204184,L, + 198215594750,-16.810845783352043,L, + 202064441250,-16.503524836742343,L, + 203988864500,-16.349860948342911,L, + 205913287750,-16.196200475038061,L, + 207837711000,-16.042538294185920,L, + 209762134250,-15.888874405786488,L, + 211686557500,-15.735213932481638,L, + 213610980750,-15.581550044082206,L, + 215535404000,-15.427887863230065,L, + 217459827250,-15.274227389925215,L, + 219384250500,-15.120563501525782,L, + 221308673750,-14.966904735768226,L, + 223233097000,-14.813242554916085,L, + 225157520250,-14.659576958969359,L, + 227081943500,-14.505914778117218,L, + 229006366750,-14.352256012359662,L, + 232855213250,-14.044929943108087,L, + 234779636500,-13.891269469803239,L, + 236704059750,-13.737607288951098,L, + 238628483000,-13.583943400551664,L, + 240552906250,-13.430282927246816,L, + 242477329500,-13.276620746394675,L, + 244401752750,-13.122959419316180,L, + 246326176000,-12.969297238464039,L, + 248250599250,-12.815631642517312,L, + 250175022500,-12.661973730533402,L, + 254023869000,-12.354649368829120,L, + 255948292250,-12.200985480429686,L, + 257872715500,-12.047325007124838,L, + 259797138750,-5.132533698967659,L, + 261721562000,-5.132533698967659,L, + 263645985250,-5.132533272080837,L, + 265570408500,-5.132534125854483,L, + 269419255000,-5.132534125854483,L, + 271343678250,-5.132533272080837,L, + 273268101500,-5.132534125854483,L, + 277116948000,-5.132534125854483,L, + 279041371250,-5.132533698967659,L, + 280965794500,-5.132533698967659,L, + 282890217750,-5.132534125854483,L, + 284814641000,-5.132533698967659,L, + 286739064250,-5.132533698967659,L, + 288663487500,-5.132534125854483,L, + 292512334000,-5.132533272080837,L, + 294436757250,-5.132534552741306,L, + 296361180500,-5.132533698967659,L, + 300210027000,-5.132532845194014,L, + 302134450250,-5.132533272080837,L, + 307907720000,-5.132533272080837,L, + 309832143250,-5.132533698967659,L, + 311756566500,-5.132532845194014,L, + 313680989750,-5.132533698967659,L, + 315605413000,-5.132534125854483,L, + 317529836250,-5.132534125854483,L, + 319454259500,-5.132534552741306,L, + 321378682750,-5.132533698967659,L, + 323303106000,-5.132533272080837,L, + 325227529250,-5.132533698967659,L, + 327151952500,-5.132533272080837,L, + 329076375750,-5.132534125854483,L, + 332925222250,-5.132534125854483,L, + 334849645500,-5.132534552741306,L, + 336774068750,-5.132534125854483,L, + 340622915250,-5.132534125854483,L, + 342547338500,-5.132533698967659,L, + 344471761750,-5.132533698967659,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,33.449806441146372,L, + 1924423250,33.338966131295564,L, + 3848846500,33.228118991255592,L, + 5773269750,33.117282096499366,L, + 7697693000,33.006441786648558,L, + 11546539500,32.784754336757771,L, + 13470962750,32.673914026906964,L, + 15395386000,32.563070301961574,L, + 17319809250,32.452229992110766,L, + 21168655750,32.230542542219979,L, + 23093079000,32.119709062558343,L, + 25017502250,32.008861922518363,L, + 28866348750,31.787181302816748,L, + 30790772000,31.676337577871358,L, + 32715195250,31.565497268020550,L, + 34639618500,31.454660373264328,L, + 36564041750,31.343809818129763,L, + 38488465000,31.232972923373541,L, + 40412888250,31.122125783333562,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900441748537364,L, + 46186158000,30.789604853781142,L, + 48110581250,30.678754298646577,L, + 50035004500,30.567920818984941,L, + 53883851000,30.346233369094154,L, + 55808274250,30.235393059243346,L, + 57732697500,30.124549334297956,L, + 59657120750,30.013709024447149,L, + 61581544000,29.902865299501755,L, + 67354813750,29.570344369949332,L, + 71203660250,29.348656920058545,L, + 73128083500,29.237809780018569,L, + 75052506750,29.126976300356930,L, + 78901353250,28.905288850466146,L, + 80825776500,28.794455370804506,L, + 82750199750,28.683608230764531,L, + 84674623000,28.572766213366428,L, + 86599046250,28.461925903515620,L, + 92372316000,28.129399851321320,L, + 94296739250,28.018559541470513,L, + 96221162500,27.907714108977828,L, + 98145585750,27.796870384032434,L, + 100070009000,27.686031781728921,L, + 101994432250,27.575186349236237,L, + 103918855500,27.464349454480015,L, + 105843278750,27.353509144629207,L, + 109692125250,27.131818279643834,L, + 111616548500,27.020977969793027,L, + 113540971750,26.910135952394928,L, + 117389818250,26.688455332693312,L, + 119314241500,26.577608192653333,L, + 121238664750,26.466771297897111,L, + 123163088000,26.355927572951718,L, + 125087511250,26.245087263100910,L, + 127011934500,26.134241830608225,L, + 130860781000,25.912557795812027,L, + 134709627500,25.690877176110412,L, + 136634050750,25.580030036070433,L, + 138558474000,25.469188018672334,L, + 140482897250,25.358352831463403,L, + 142407320500,25.247510814065304,L, + 144331743750,25.136665381572616,L, + 146256167000,25.025825071721808,L, + 148180590250,24.914983054323709,L, + 150105013500,24.804144452020193,L, + 152029436750,24.693302434622094,L, + 153953860000,24.780867167328825,L, + 155878283250,24.868428484940971,L, + 157802706500,24.955994925194993,L, + 159727129750,25.043557950354430,L, + 163575976250,25.218690830862474,L, + 165500399500,25.306252148474620,L, + 167424822750,25.393823711370519,L, + 169349246000,25.481386736529959,L, + 173198092500,25.656516201943418,L, + 175122515750,25.744082642197441,L, + 178971362250,25.919212107610900,L, + 180895785500,26.006771717675754,L, + 182820208750,26.094336450382485,L, + 186669055250,26.269472745985116,L, + 188593478500,26.357039186239138,L, + 190517901750,26.444603918945866,L, + 192442325000,26.532161821463426,L, + 194366748250,26.619731676812034,L, + 196291171500,26.707299824613351,L, + 198215594750,26.794859434678202,L, + 200140018000,26.882429290026810,L, + 202064441250,26.969992315186246,L, + 203988864500,27.057557047892978,L, + 205913287750,27.145123488147000,L, + 207837711000,27.232688220853731,L, + 209762134250,27.320251246013168,L, + 215535404000,27.582945444133358,L, + 217459827250,27.670515299481966,L, + 219384250500,27.758073201999526,L, + 221308673750,27.845637934706257,L, + 223233097000,27.933207790054865,L, + 225157520250,28.020775937856179,L, + 227081943500,28.108338963015619,L, + 229006366750,28.195903695722347,L, + 230930790000,28.283463305787201,L, + 232855213250,28.371034868683100,L, + 234779636500,28.458597893842537,L, + 236704059750,28.546164334096559,L, + 238628483000,28.633725651708705,L, + 240552906250,28.721293799510022,L, + 242477329500,28.808856824669459,L, + 244401752750,28.896426680018067,L, + 246326176000,28.983986290082917,L, + 252099445750,29.246685610844988,L, + 254023869000,29.334248636004425,L, + 255948292250,29.421804830974693,L, + 257872715500,29.509374686323302,L, + 259797138750,33.449803026051789,L, + 263645985250,33.449809856240961,L, + 265570408500,33.449806441146372,L, + 267494831750,33.449806441146372,L, + 269419255000,33.449809856240961,L, + 271343678250,33.449806441146372,L, + 288663487500,33.449806441146372,L, + 290587910750,33.449809856240961,L, + 292512334000,33.449806441146372,L, + 294436757250,33.449809856240961,L, + 296361180500,33.449806441146372,L, + 302134450250,33.449806441146372,L, + 304058873500,33.449803026051789,L, + 305983296750,33.449809856240961,L, + 307907720000,33.449809856240961,L, + 309832143250,33.449806441146372,L, + 311756566500,33.449806441146372,L, + 313680989750,33.449809856240961,L, + 315605413000,33.449806441146372,L, + 319454259500,33.449806441146372,L, + 321378682750,33.449809856240961,L, + 323303106000,33.449809856240961,L, + 325227529250,33.449806441146372,L, + 327151952500,33.449806441146372,L, + 329076375750,33.449809856240961,L, + 331000799000,33.449806441146372,L, + 332925222250,33.449809856240961,L, + 334849645500,33.449803026051789,L, + 336774068750,33.449806441146372,L, + 340622915250,33.449806441146372,L, + 342547338500,33.449803026051789,L, + 344471761750,33.449803026051789,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 139 + Key: + 0,0.156420111656189,L, + 1924423250,0.165668785572052,L, + 3848846500,0.174917474389076,L, + 5773269750,0.184166118502617,L, + 7697693000,0.193414807319641,L, + 9622116250,0.202663466334343,L, + 11546539500,0.211912140250206,L, + 13470962750,0.221160799264908,L, + 15395386000,0.230409502983093,L, + 17319809250,0.239658132195473,L, + 19244232500,0.248906806111336,L, + 21168655750,0.258155494928360,L, + 23093079000,0.267404139041901,L, + 38488465000,0.341393530368805,L, + 40412888250,0.350642174482346,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139552116394,L, + 46186158000,0.378388196229935,L, + 48110581250,0.387636899948120,L, + 50035004500,0.396885544061661,L, + 51959427750,0.406134217977524,L, + 53883851000,0.415382862091064,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128913640976,L, + 61581544000,0.452377527952194,L, + 63505967250,0.461626261472702,L, + 65430390500,0.470874875783920,L, + 67354813750,0.480123579502106,L, + 69279237000,0.489372223615646,L, + 71203660250,0.498620927333832,L, + 73128083500,0.507869541645050,L, + 75052506750,0.517118275165558,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615563392639,L, + 82750199750,0.554112911224365,L, + 84674623000,0.563361644744873,L, + 86599046250,0.572610259056091,L, + 88523469500,0.581858992576599,L, + 92372316000,0.600356221199036,L, + 94296739250,0.609604895114899,L, + 96221162500,0.618853628635406,L, + 98145585750,0.628102302551270,L, + 100070009000,0.637350916862488,L, + 101994432250,0.646599590778351,L, + 103918855500,0.655848324298859,L, + 107767702000,0.674345672130585,L, + 109692125250,0.683594405651093,L, + 111616548500,0.692843019962311,L, + 113540971750,0.702091753482819,L, + 115465395000,0.711340427398682,L, + 117389818250,0.720589041709900,L, + 125087511250,0.757583737373352,L, + 127011934500,0.766832351684570,L, + 128936357750,0.776081025600433,L, + 130860781000,0.785329759120941,L, + 132785204250,0.794578433036804,L, + 134709627500,0.803827047348022,L, + 140482897250,0.831573069095612,L, + 142407320500,0.840821683406830,L, + 148180590250,0.868567705154419,L, + 150105013500,0.877816438674927,L, + 152029436750,0.887065112590790,L, + 153953860000,0.872388184070587,L, + 155878283250,0.857711434364319,L, + 159727129750,0.828357577323914,L, + 161651553000,0.813680768013000,L, + 163575976250,0.799004018306732,L, + 165500399500,0.784327089786530,L, + 167424822750,0.769650280475616,L, + 169349246000,0.754973351955414,L, + 173198092500,0.725619614124298,L, + 175122515750,0.710942685604095,L, + 177046939000,0.696265876293182,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558519840240,L, + 186669055250,0.622881531715393,L, + 188593478500,0.608204662799835,L, + 190517901750,0.593527913093567,L, + 192442325000,0.578851044178009,L, + 194366748250,0.564174056053162,L, + 196291171500,0.549497246742249,L, + 202064441250,0.505466639995575,L, + 203988864500,0.490789800882339,L, + 205913287750,0.476112931966782,L, + 207837711000,0.461436092853546,L, + 209762134250,0.446759223937988,L, + 211686557500,0.432082325220108,L, + 213610980750,0.417405515909195,L, + 215535404000,0.402728617191315,L, + 217459827250,0.388051778078079,L, + 219384250500,0.373374879360199,L, + 229006366750,0.299990534782410,L, + 230930790000,0.285313695669174,L, + 234779636500,0.255959957838058,L, + 236704059750,0.241283103823662,L, + 240552906250,0.211929365992546,L, + 242477329500,0.197252511978149,L, + 246326176000,0.167898774147034,L, + 248250599250,0.153221920132637,L, + 250175022500,0.138545036315918,L, + 252099445750,0.123868189752102,L, + 254023869000,0.109191328287125,L, + 255948292250,0.094514459371567,L, + 257872715500,0.079837583005428,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 271343678250,0.138233542442322,L, + 273268101500,0.134596213698387,L, + 275192524750,0.130958914756775,L, + 277116948000,0.127321600914001,L, + 279041371250,0.123684294521809,L, + 280965794500,0.120046973228455,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772352993488,L, + 286739064250,0.109135046601295,L, + 288663487500,0.105497725307941,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223105072975,L, + 294436757250,0.094585783779621,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673849701881,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399222016335,L, + 307907720000,0.069124594330788,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849977821112,L, + 313680989750,0.058212663978338,L, + 317529836250,0.050938028842211,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114140197635,L, + 331000799000,0.025476830080152,L, + 334849645500,0.018202198669314,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927572846413,L, + 340622915250,0.007290273439139,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646219254,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.156420111656189,L, + 1924423250,0.162834390997887,L, + 3848846500,0.169248625636101,L, + 5773269750,0.175662904977798,L, + 13470962750,0.201319962739944,L, + 15395386000,0.207734256982803,L, + 17319809250,0.214148506522179,L, + 19244232500,0.220562785863876,L, + 21168655750,0.226977020502090,L, + 23093079000,0.233391284942627,L, + 25017502250,0.239805564284325,L, + 26941925500,0.246219813823700,L, + 28866348750,0.252634108066559,L, + 44261734750,0.303948223590851,L, + 46186158000,0.310362517833710,L, + 48110581250,0.316776752471924,L, + 50035004500,0.323190957307816,L, + 51959427750,0.329605281352997,L, + 57732697500,0.348848074674606,L, + 59657120750,0.355262309312820,L, + 61581544000,0.361676603555679,L, + 63505967250,0.368090867996216,L, + 65430390500,0.374505072832108,L, + 67354813750,0.380919396877289,L, + 69279237000,0.387333691120148,L, + 71203660250,0.393747925758362,L, + 76976930000,0.412990719079971,L, + 78901353250,0.419404953718185,L, + 80825776500,0.425819218158722,L, + 82750199750,0.432233542203903,L, + 86599046250,0.445062011480331,L, + 88523469500,0.451476305723190,L, + 92372316000,0.464304834604263,L, + 94296739250,0.470719128847122,L, + 96221162500,0.477133363485336,L, + 98145585750,0.483547627925873,L, + 100070009000,0.489961922168732,L, + 103918855500,0.502790451049805,L, + 105843278750,0.509204745292664,L, + 109692125250,0.522033214569092,L, + 113540971750,0.534861803054810,L, + 117389818250,0.547690272331238,L, + 121238664750,0.560518860816956,L, + 125087511250,0.573347330093384,L, + 128936357750,0.586175918579102,L, + 130860781000,0.592590153217316,L, + 132785204250,0.599004447460175,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611833035945892,L, + 138558474000,0.618247210979462,L, + 140482897250,0.624661505222321,L, + 144331743750,0.637489974498749,L, + 150105013500,0.656732857227325,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175009250641,L, + 155878283250,0.641202926635742,L, + 157802706500,0.630230963230133,L, + 159727129750,0.619258880615234,L, + 161651553000,0.608286917209625,L, + 163575976250,0.597314834594727,L, + 169349246000,0.564398765563965,L, + 171273669250,0.553426623344421,L, + 173198092500,0.542454600334167,L, + 175122515750,0.531482636928558,L, + 177046939000,0.520510554313660,L, + 178971362250,0.509538531303406,L, + 180895785500,0.498566538095474,L, + 184744632000,0.476622432470322,L, + 186669055250,0.465650349855423,L, + 188593478500,0.454678386449814,L, + 190517901750,0.443706333637238,L, + 192442325000,0.432734251022339,L, + 196291171500,0.410790205001831,L, + 198215594750,0.399818152189255,L, + 200140018000,0.388846129179001,L, + 203988864500,0.366902023553848,L, + 205913287750,0.355930030345917,L, + 209762134250,0.333985924720764,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041848897934,L, + 215535404000,0.301069825887680,L, + 219384250500,0.279125720262527,L, + 223233097000,0.257181674242020,L, + 225157520250,0.246209606528282,L, + 227081943500,0.235237583518028,L, + 229006366750,0.224265530705452,L, + 230930790000,0.213293522596359,L, + 232855213250,0.202321484684944,L, + 234779636500,0.191349416971207,L, + 236704059750,0.180377379059792,L, + 238628483000,0.169405356049538,L, + 240552906250,0.158433318138123,L, + 244401752750,0.136489212512970,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545173943043,L, + 250175022500,0.103573128581047,L, + 252099445750,0.092601090669632,L, + 254023869000,0.081629037857056,L, + 255948292250,0.070656977593899,L, + 257872715500,0.059684958308935,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 265570408500,0.149145483970642,L, + 267494831750,0.145508155226707,L, + 269419255000,0.141870841383934,L, + 271343678250,0.138233542442322,L, + 273268101500,0.134596228599548,L, + 275192524750,0.130958899855614,L, + 279041371250,0.123684301972389,L, + 280965794500,0.120046973228455,L, + 282890217750,0.116409659385681,L, + 286739064250,0.109135046601295,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223097622395,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 305983296750,0.072761908173561,L, + 307907720000,0.069124601781368,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212663978338,L, + 315605413000,0.054575350135565,L, + 317529836250,0.050938032567501,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663401156664,L, + 323303106000,0.040026091039181,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114143922925,L, + 331000799000,0.025476830080152,L, + 332925222250,0.021839512512088,L, + 334849645500,0.018202200531960,L, + 338698492000,0.010927572846413,L, + 340622915250,0.007290274370462,L, + 344471761750,0.000015646219254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420141458511 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.156420141458511,L, + 1924423250,0.165634140372276,L, + 3848846500,0.174848124384880,L, + 7697693000,0.193276181817055,L, + 9622116250,0.202490165829659,L, + 11546539500,0.211704209446907,L, + 13470962750,0.220918193459511,L, + 15395386000,0.230132192373276,L, + 21168655750,0.257774233818054,L, + 23093079000,0.266988217830658,L, + 25017502250,0.276202261447906,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844273090363,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272270917892,L, + 36564041750,0.331486284732819,L, + 40412888250,0.349914371967316,L, + 44261734750,0.368342339992523,L, + 46186158000,0.377556383609772,L, + 48110581250,0.386770367622375,L, + 51959427750,0.405198395252228,L, + 53883851000,0.414412468671799,L, + 55808274250,0.423626393079758,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910416364670,L, + 69279237000,0.488124519586563,L, + 71203660250,0.497338533401489,L, + 75052506750,0.515766501426697,L, + 76976930000,0.524980545043945,L, + 78901353250,0.534194529056549,L, + 80825776500,0.543408572673798,L, + 82750199750,0.552622556686401,L, + 84674623000,0.561836600303650,L, + 88523469500,0.580264568328857,L, + 90447892750,0.589478611946106,L, + 92372316000,0.598692595958710,L, + 94296739250,0.607906699180603,L, + 96221162500,0.617120683193207,L, + 98145585750,0.626334547996521,L, + 100070009000,0.635548651218414,L, + 101994432250,0.644762575626373,L, + 103918855500,0.653976678848267,L, + 105843278750,0.663190662860870,L, + 107767702000,0.672404706478119,L, + 109692125250,0.681618690490723,L, + 111616548500,0.690832734107971,L, + 113540971750,0.700046718120575,L, + 115465395000,0.709260642528534,L, + 117389818250,0.718474745750427,L, + 121238664750,0.736902713775635,L, + 123163088000,0.746116816997528,L, + 125087511250,0.755330801010132,L, + 127011934500,0.764544844627380,L, + 128936357750,0.773758769035339,L, + 130860781000,0.782972812652588,L, + 132785204250,0.792186915874481,L, + 136634050750,0.810614764690399,L, + 138558474000,0.819828808307648,L, + 140482897250,0.829042911529541,L, + 144331743750,0.847470879554749,L, + 146256167000,0.856684923171997,L, + 152029436750,0.884326875209808,L, + 153953860000,0.869695365428925,L, + 155878283250,0.855063796043396,L, + 159727129750,0.825800776481628,L, + 161651553000,0.811169207096100,L, + 163575976250,0.796537578105927,L, + 165500399500,0.781906008720398,L, + 167424822750,0.767274498939514,L, + 177046939000,0.694116652011871,L, + 178971362250,0.679485142230988,L, + 188593478500,0.606327295303345,L, + 190517901750,0.591695785522461,L, + 192442325000,0.577064156532288,L, + 194366748250,0.562432646751404,L, + 196291171500,0.547801077365875,L, + 198215594750,0.533169448375702,L, + 200140018000,0.518537938594818,L, + 202064441250,0.503906369209290,L, + 205913287750,0.474643290042877,L, + 209762134250,0.445380151271820,L, + 211686557500,0.430748611688614,L, + 213610980750,0.416117042303085,L, + 215535404000,0.401485443115234,L, + 217459827250,0.386853933334351,L, + 219384250500,0.372222334146500,L, + 221308673750,0.357590794563293,L, + 225157520250,0.328327655792236,L, + 229006366750,0.299064576625824,L, + 230930790000,0.284433007240295,L, + 232855213250,0.269801408052444,L, + 234779636500,0.255169868469238,L, + 238628483000,0.225906759500504,L, + 242477329500,0.196643620729446,L, + 244401752750,0.182012081146240,L, + 246326176000,0.167380496859550,L, + 248250599250,0.152748942375183,L, + 250175022500,0.138117402791977,L, + 252099445750,0.123485825955868,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222724437714,L, + 257872715500,0.079591155052185,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420141458511,L, + 263645985250,0.152782812714577,L, + 271343678250,0.138233557343483,L, + 273268101500,0.134596228599548,L, + 275192524750,0.130958929657936,L, + 277116948000,0.127321615815163,L, + 279041371250,0.123684309422970,L, + 280965794500,0.120046988129616,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772367894650,L, + 286739064250,0.109135046601295,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 296361180500,0.090948484838009,L, + 298285603750,0.087311163544655,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399229466915,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212656527758,L, + 315605413000,0.054575342684984,L, + 317529836250,0.050938032567501,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663401156664,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388777196407,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114156961441,L, + 331000799000,0.025476843118668,L, + 332925222250,0.021839527413249,L, + 334849645500,0.018202215433121,L, + 336774068750,0.014564902521670,L, + 338698492000,0.010927588678896,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652959829196,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_056" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 122 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.014210820198059,L, + 3848846500,-0.014211058616638,L, + 5773269750,-0.014210939407349,L, + 7697693000,-0.014211058616638,L, + 11546539500,-0.014210820198059,L, + 13470962750,-0.014210939407349,L, + 15395386000,-0.014210939407349,L, + 17319809250,-0.014211058616638,L, + 19244232500,-0.014210939407349,L, + 21168655750,-0.014211058616638,L, + 25017502250,-0.014210820198059,L, + 26941925500,-0.014210939407349,L, + 28866348750,-0.014210820198059,L, + 32715195250,-0.014211058616638,L, + 34639618500,-0.014211058616638,L, + 36564041750,-0.014211177825928,L, + 40412888250,-0.014210939407349,L, + 42337311500,-0.014211058616638,L, + 44261734750,-0.014210939407349,L, + 46186158000,-0.014211058616638,L, + 50035004500,-0.014210820198059,L, + 51959427750,-0.014211058616638,L, + 53883851000,-0.014210939407349,L, + 55808274250,-0.014211058616638,L, + 59657120750,-0.014210820198059,L, + 61581544000,-0.014210939407349,L, + 63505967250,-0.014210820198059,L, + 65430390500,-0.014211058616638,L, + 67354813750,-0.014210939407349,L, + 69279237000,-0.014211058616638,L, + 73128083500,-0.014210820198059,L, + 75052506750,-0.014210939407349,L, + 76976930000,-0.014210939407349,L, + 78901353250,-0.014211058616638,L, + 82750199750,-0.014210820198059,L, + 84674623000,-0.014210939407349,L, + 86599046250,-0.014210820198059,L, + 88523469500,-0.014211058616638,L, + 90447892750,-0.014211177825928,L, + 92372316000,-0.014211058616638,L, + 94296739250,-0.014211177825928,L, + 98145585750,-0.014210939407349,L, + 100070009000,-0.014211058616638,L, + 101994432250,-0.014210939407349,L, + 103918855500,-0.014211058616638,L, + 105843278750,-0.014210939407349,L, + 192442325000,-0.014210939407349,L, + 194366748250,-0.014211058616638,L, + 196291171500,-0.014210939407349,L, + 198215594750,-0.014210939407349,L, + 200140018000,-0.014211058616638,L, + 202064441250,-0.014210939407349,L, + 203988864500,-0.014210939407349,L, + 205913287750,-0.014211058616638,L, + 207837711000,-0.014210939407349,L, + 209762134250,-0.014211058616638,L, + 213610980750,-0.014210820198059,L, + 215535404000,-0.014210939407349,L, + 217459827250,-0.014210939407349,L, + 219384250500,-0.014210820198059,L, + 221308673750,-0.014210939407349,L, + 223233097000,-0.014210939407349,L, + 225157520250,-0.014210820198059,L, + 227081943500,-0.014210939407349,L, + 229006366750,-0.014210820198059,L, + 230930790000,-0.014210939407349,L, + 232855213250,-0.014210820198059,L, + 234779636500,-0.014210939407349,L, + 236704059750,-0.014210939407349,L, + 238628483000,-0.014211058616638,L, + 240552906250,-0.014210939407349,L, + 242477329500,-0.014211058616638,L, + 244401752750,-0.014211058616638,L, + 246326176000,-0.014210939407349,L, + 248250599250,-0.014211058616638,L, + 250175022500,-0.014210939407349,L, + 252099445750,-0.014211058616638,L, + 254023869000,-0.014210939407349,L, + 255948292250,-0.014210939407349,L, + 257872715500,-0.014211058616638,L, + 261721562000,-0.014210820198059,L, + 263645985250,-0.014211058616638,L, + 267494831750,-0.014210820198059,L, + 269419255000,-0.014211058616638,L, + 271343678250,-0.014210820198059,L, + 273268101500,-0.014210700988770,L, + 275192524750,-0.014210820198059,L, + 277116948000,-0.014210820198059,L, + 279041371250,-0.014210939407349,L, + 280965794500,-0.014210820198059,L, + 282890217750,-0.014211058616638,L, + 284814641000,-0.014210939407349,L, + 286739064250,-0.014211058616638,L, + 288663487500,-0.014211058616638,L, + 290587910750,-0.014211177825928,L, + 292512334000,-0.014211058616638,L, + 294436757250,-0.014210820198059,L, + 296361180500,-0.014211058616638,L, + 298285603750,-0.014210939407349,L, + 300210027000,-0.014211058616638,L, + 302134450250,-0.014211058616638,L, + 304058873500,-0.014210939407349,L, + 305983296750,-0.014211058616638,L, + 307907720000,-0.014211058616638,L, + 309832143250,-0.014210939407349,L, + 311756566500,-0.014211058616638,L, + 315605413000,-0.014210820198059,L, + 317529836250,-0.014210939407349,L, + 319454259500,-0.014210820198059,L, + 321378682750,-0.014211058616638,L, + 325227529250,-0.014210820198059,L, + 327151952500,-0.014210939407349,L, + 329076375750,-0.014210939407349,L, + 331000799000,-0.014210820198059,L, + 332925222250,-0.014210939407349,L, + 334849645500,-0.014210820198059,L, + 336774068750,-0.014210939407349,L, + 338698492000,-0.014210820198059,L, + 340622915250,-0.014211058616638,L, + 342547338500,-0.014210939407349,L, + 344471761750,-0.014211058616638,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087180674076080 + KeyVer: 4005 + KeyCount: 105 + Key: + 0,0.087180674076080,L, + 1924423250,0.086435973644257,L, + 3848846500,0.085691511631012,L, + 7697693000,0.084202826023102,L, + 9622116250,0.083458364009857,L, + 11546539500,0.082713782787323,L, + 13470962750,0.081969439983368,L, + 17319809250,0.080480515956879,L, + 21168655750,0.078991830348969,L, + 23093079000,0.078247129917145,L, + 26941925500,0.076758444309235,L, + 30790772000,0.075269520282745,L, + 34639618500,0.073780834674835,L, + 36564041750,0.073036372661591,L, + 38488465000,0.072292029857635,L, + 40412888250,0.071547567844391,L, + 42337311500,0.070802986621857,L, + 44261734750,0.070058524608612,L, + 48110581250,0.068569839000702,L, + 50035004500,0.067825376987457,L, + 51959427750,0.067080676555634,L, + 55808274250,0.065591990947723,L, + 57732697500,0.064847528934479,L, + 61581544000,0.063358843326569,L, + 63505967250,0.062614142894745,L, + 65430390500,0.061869680881500,L, + 69279237000,0.060380995273590,L, + 71203660250,0.059636533260345,L, + 73128083500,0.058892190456390,L, + 75052506750,0.058147609233856,L, + 78901353250,0.056658685207367,L, + 82750199750,0.055169999599457,L, + 84674623000,0.054425299167633,L, + 86599046250,0.053680956363678,L, + 88523469500,0.052936494350433,L, + 90447892750,0.052192389965057,L, + 92372316000,0.051447927951813,L, + 94296739250,0.050703346729279,L, + 96221162500,0.049959003925323,L, + 98145585750,0.049214541912079,L, + 100070009000,0.048470199108124,L, + 101994432250,0.047725737094879,L, + 103918855500,0.046981155872345,L, + 105843278750,0.013481676578522,L, + 192442325000,0.013481676578522,L, + 194366748250,0.014424383640289,L, + 196291171500,0.015366494655609,L, + 198215594750,0.016308724880219,L, + 200140018000,0.017251193523407,L, + 202064441250,0.018193542957306,L, + 203988864500,0.019135534763336,L, + 205913287750,0.020078003406525,L, + 211686557500,0.022905051708221,L, + 213610980750,0.023847162723541,L, + 215535404000,0.024789750576019,L, + 217459827250,0.025731861591339,L, + 223233097000,0.028558909893036,L, + 225157520250,0.029501020908356,L, + 227081943500,0.030443727970123,L, + 229006366750,0.031385838985443,L, + 230930790000,0.032328307628632,L, + 232855213250,0.033270537853241,L, + 234779636500,0.034212887287140,L, + 236704059750,0.035155117511749,L, + 238628483000,0.036097586154938,L, + 240552906250,0.037039697170258,L, + 248250599250,0.040809094905853,L, + 250175022500,0.041751205921173,L, + 252099445750,0.042693793773651,L, + 254023869000,0.043635904788971,L, + 259797138750,0.046462953090668,L, + 261721562000,0.047405183315277,L, + 263645985250,0.048347651958466,L, + 265570408500,0.049289882183075,L, + 267494831750,0.050232231616974,L, + 269419255000,0.051174461841583,L, + 271343678250,0.052116930484772,L, + 273268101500,0.053059041500092,L, + 275192524750,0.054001629352570,L, + 277116948000,0.054943740367889,L, + 284814641000,0.058713138103485,L, + 286739064250,0.059655249118805,L, + 292512334000,0.062482297420502,L, + 294436757250,0.063424527645111,L, + 296361180500,0.064366996288300,L, + 298285603750,0.065309107303619,L, + 300210027000,0.066251814365387,L, + 302134450250,0.067193806171417,L, + 304058873500,0.068136274814606,L, + 305983296750,0.069078624248505,L, + 309832143250,0.070963084697723,L, + 311756566500,0.071905672550201,L, + 313680989750,0.072847783565521,L, + 321378682750,0.076617181301117,L, + 323303106000,0.077559292316437,L, + 325227529250,0.078501641750336,L, + 327151952500,0.079444110393524,L, + 329076375750,0.080386340618134,L, + 331000799000,0.081328451633453,L, + 332925222250,0.082271158695221,L, + 334849645500,0.083213150501251,L, + 336774068750,0.084155499935150,L, + 338698492000,0.085097968578339,L, + 342547338500,0.086982429027557,L, + 344471761750,0.087925016880035,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817197918891907 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817197918891907,L, + 1924423250,0.818611502647400,L, + 3848846500,0.820890069007874,L, + 5773269750,0.823978066444397,L, + 7697693000,0.827826023101807,L, + 9622116250,0.832388758659363,L, + 11546539500,0.837626099586487,L, + 13470962750,0.843501448631287,L, + 15395386000,0.849981307983398,L, + 17319809250,0.857035160064697,L, + 19244232500,0.864634990692139,L, + 21168655750,0.872755169868469,L, + 23093079000,0.881371855735779,L, + 25017502250,0.890463232994080,L, + 26941925500,0.900008916854858,L, + 28866348750,0.909990072250366,L, + 30790772000,0.920389056205750,L, + 32715195250,0.931189775466919,L, + 34639618500,0.942376375198364,L, + 36564041750,0.953934431076050,L, + 38488465000,0.965851068496704,L, + 40412888250,0.978112936019897,L, + 42337311500,0.990708827972412,L, + 44261734750,1.003626823425293,L, + 46186158000,1.016856193542480,L, + 48110581250,1.030386924743652,L, + 50035004500,1.044209718704224,L, + 51959427750,1.058314800262451,L, + 53883851000,1.072693824768066,L, + 55808274250,1.087337732315063,L, + 57732697500,1.102239131927490,L, + 59657120750,1.117389917373657,L, + 61581544000,1.132781982421875,L, + 63505967250,1.148408889770508,L, + 65430390500,1.164262771606445,L, + 67354813750,1.180336236953735,L, + 69279237000,1.196622848510742,L, + 71203660250,1.213115215301514,L, + 73128083500,1.229805707931519,L, + 75052506750,1.246686935424805,L, + 76976930000,1.263751506805420,L, + 78901353250,1.280990123748779,L, + 80825776500,1.298394918441772,L, + 82750199750,1.315954446792603,L, + 84674623000,1.333657741546631,L, + 86599046250,1.351490736007690,L, + 88523469500,1.369436264038086,L, + 90447892750,1.387471675872803,L, + 92372316000,1.405567884445190,L, + 94296739250,1.423682451248169,L, + 96221162500,1.441750288009644,L, + 98145585750,1.459661483764648,L, + 100070009000,1.477200746536255,L, + 101994432250,1.493816852569580,L, + 103918855500,1.506080389022827,L, + 105843278750,-0.513281285762787,L, + 107767702000,-0.026323199272156,L, + 109692125250,-0.023519992828369,L, + 111616548500,-0.020761609077454,L, + 113540971750,-0.018049597740173,L, + 115465395000,-0.015385270118713,L, + 117389818250,-0.012770533561707,L, + 119314241500,-0.010206937789917,L, + 121238664750,-0.007696270942688,L, + 123163088000,-0.005240559577942,L, + 125087511250,-0.002841830253601,L, + 127011934500,-0.000502228736877,L, + 128936357750,0.001775741577148,L, + 130860781000,0.003989815711975,L, + 132785204250,0.006137013435364,L, + 134709627500,0.008214592933655,L, + 136634050750,0.010219454765320,L, + 138558474000,0.012148022651672,L, + 140482897250,0.013996601104736,L, + 142407320500,0.015761375427246,L, + 144331743750,0.017437815666199,L, + 146256167000,0.019021153450012,L, + 148180590250,0.020506143569946,L, + 150105013500,0.021887063980103,L, + 152029436750,0.023157477378845,L, + 153953860000,0.024310111999512,L, + 155878283250,0.025336980819702,L, + 157802706500,0.026229143142700,L, + 159727129750,0.026976346969604,L, + 161651553000,0.027567028999329,L, + 163575976250,0.027987599372864,L, + 165500399500,0.028223156929016,L, + 167424822750,0.028255105018616,L, + 169349246000,0.028062105178833,L, + 171273669250,0.027618408203125,L, + 173198092500,0.026892781257629,L, + 175122515750,0.025846362113953,L, + 177046939000,0.024429678916931,L, + 178971362250,0.022578835487366,L, + 180895785500,0.020207047462463,L, + 182820208750,0.017192363739014,L, + 184744632000,0.013352394104004,L, + 186669055250,0.008389115333557,L, + 188593478500,0.001745581626892,L, + 190517901750,-0.007927417755127,L, + 192442325000,-0.026323199272156,L, + 194366748250,-0.023398160934448,L, + 196291171500,-0.020269751548767,L, + 198215594750,-0.016932487487793,L, + 200140018000,-0.013380527496338,L, + 202064441250,-0.009607911109924,L, + 203988864500,-0.005608320236206,L, + 205913287750,-0.001375317573547,L, + 207837711000,0.003097772598267,L, + 209762134250,0.007818102836609,L, + 211686557500,0.012792944908142,L, + 213610980750,0.018029808998108,L, + 215535404000,0.023536562919617,L, + 217459827250,0.029321551322937,L, + 219384250500,0.035393118858337,L, + 221308673750,0.041760087013245,L, + 223233097000,0.048431515693665,L, + 225157520250,0.055417060852051,L, + 227081943500,0.062726497650146,L, + 229006366750,0.070369958877563,L, + 230930790000,0.078357934951782,L, + 232855213250,0.086701035499573,L, + 234779636500,0.095410466194153,L, + 236704059750,0.104497671127319,L, + 238628483000,0.113974094390869,L, + 240552906250,0.123851537704468,L, + 242477329500,0.134141921997070,L, + 244401752750,0.144857287406921,L, + 246326176000,0.156009435653687,L, + 248250599250,0.167610168457031,L, + 250175022500,0.179671168327332,L, + 252099445750,0.192202925682068,L, + 254023869000,0.205216050148010,L, + 255948292250,0.218719601631165,L, + 257872715500,0.232721686363220,L, + 259797138750,0.247228264808655,L, + 261721562000,0.262243270874023,L, + 263645985250,0.277768254280090,L, + 265570408500,0.293801307678223,L, + 267494831750,0.310336112976074,L, + 269419255000,0.327362537384033,L, + 271343678250,0.344864249229431,L, + 273268101500,0.362818717956543,L, + 275192524750,0.381196618080139,L, + 277116948000,0.399960637092590,L, + 279041371250,0.419064521789551,L, + 280965794500,0.438453555107117,L, + 282890217750,0.458063840866089,L, + 284814641000,0.477822303771973,L, + 286739064250,0.497648239135742,L, + 288663487500,0.517453074455261,L, + 290587910750,0.537143468856812,L, + 292512334000,0.556622147560120,L, + 294436757250,0.575791120529175,L, + 296361180500,0.594554066658020,L, + 298285603750,0.612818479537964,L, + 300210027000,0.630498766899109,L, + 302134450250,0.647517800331116,L, + 304058873500,0.663809180259705,L, + 305983296750,0.679316997528076,L, + 307907720000,0.693997263908386,L, + 309832143250,0.707817792892456,L, + 311756566500,0.720757246017456,L, + 313680989750,0.732804179191589,L, + 315605413000,0.743956089019775,L, + 317529836250,0.754218578338623,L, + 319454259500,0.763603448867798,L, + 321378682750,0.772127628326416,L, + 323303106000,0.779812455177307,L, + 325227529250,0.786682009696960,L, + 327151952500,0.792763352394104,L, + 329076375750,0.798083901405334,L, + 331000799000,0.802672743797302,L, + 332925222250,0.806558966636658,L, + 334849645500,0.809771895408630,L, + 336774068750,0.812339782714844,L, + 338698492000,0.814290642738342,L, + 340622915250,0.815652370452881,L, + 342547338500,0.816451072692871,L, + 344471761750,0.816711544990540,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,72.193801790988744,L, + 3848846500,71.438423849921435,L, + 5773269750,71.060728049198616,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 17319809250,68.794607886375047,L, + 19244232500,68.416925746030557,L, + 21168655750,68.039223115118574,L, + 23093079000,67.661540974774084,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 34639618500,65.395413981761337,L, + 36564041750,65.017725011227697,L, + 42337311500,63.884658099626733,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 48110581250,62.751598018214949,L, + 53883851000,61.618531106613986,L, + 55808274250,61.240848966269503,L, + 57732697500,60.863153165546684,L, + 65430390500,59.352397283412074,L, + 67354813750,58.974715143067591,L, + 80825776500,56.330892349332025,L, + 82750199750,55.953210208987542,L, + 84674623000,55.575517823359306,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442454326852932,L, + 94296739250,53.687076385785630,L, + 96221162500,53.309384000157387,L, + 98145585750,52.931701859812911,L, + 100070009000,52.554009474184667,L, + 103918855500,51.798638363306537,L, + 105843278750,34.802665425143438,L, + 111616548500,34.802665425143438,L, + 113540971750,34.802662010048856,L, + 115465395000,34.802668840238027,L, + 117389818250,34.802668840238027,L, + 119314241500,34.802672255332610,L, + 121238664750,34.802665425143438,L, + 123163088000,34.802668840238027,L, + 130860781000,34.802668840238027,L, + 132785204250,34.802665425143438,L, + 134709627500,34.802668840238027,L, + 136634050750,34.802665425143438,L, + 140482897250,34.802665425143438,L, + 142407320500,34.802668840238027,L, + 144331743750,34.802662010048856,L, + 146256167000,34.802668840238027,L, + 148180590250,34.802668840238027,L, + 150105013500,34.802665425143438,L, + 152029436750,34.802668840238027,L, + 153953860000,34.802662010048856,L, + 155878283250,34.802668840238027,L, + 157802706500,34.802665425143438,L, + 159727129750,34.802665425143438,L, + 161651553000,34.802668840238027,L, + 163575976250,34.802665425143438,L, + 165500399500,34.802665425143438,L, + 167424822750,34.802662010048856,L, + 169349246000,34.802662010048856,L, + 171273669250,34.802665425143438,L, + 178971362250,34.802665425143438,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802662010048856,L, + 184744632000,34.802665425143438,L, + 186669055250,34.802665425143438,L, + 188593478500,34.802668840238027,L, + 190517901750,34.802665425143438,L, + 192442325000,34.802665425143438,L, + 198215594750,36.236923188574018,L, + 200140018000,36.715012524812131,L, + 202064441250,37.193098445955656,L, + 203988864500,37.671180952004597,L, + 205913287750,38.149270288242704,L, + 213610980750,40.061613972816808,L, + 215535404000,40.539703309054921,L, + 217459827250,41.017785815103856,L, + 219384250500,41.495878566436552,L, + 221308673750,41.973957657390912,L, + 223233097000,42.452046993629018,L, + 225157520250,42.930132914772550,L, + 227081943500,43.408225666105245,L, + 229006366750,43.886308172154180,L, + 230930790000,44.364394093297712,L, + 232855213250,44.842483429535818,L, + 234779636500,45.320562520490178,L, + 236704059750,45.798651856728284,L, + 238628483000,46.276737777871809,L, + 240552906250,46.754827114109922,L, + 242477329500,47.232909620158864,L, + 244401752750,47.710995541302388,L, + 246326176000,48.189088292635084,L, + 248250599250,48.667170798684026,L, + 250175022500,49.145260134922133,L, + 255948292250,50.579517898352712,L, + 257872715500,51.057600404401654,L, + 259797138750,51.535689740639761,L, + 261721562000,52.013772246688703,L, + 263645985250,52.491861582926816,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926115931262807,L, + 271343678250,54.404201852406331,L, + 273268101500,54.882294603739027,L, + 275192524750,55.360383939977140,L, + 280965794500,56.794641703407713,L, + 282890217750,57.272731039645826,L, + 284814641000,57.750813545694768,L, + 292512334000,59.663157230268865,L, + 294436757250,60.141249981601561,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 304058873500,62.531679587319189,L, + 309832143250,63.965937350749769,L, + 311756566500,64.444030102082465,L, + 313680989750,64.922109193036817,L, + 317529836250,65.878281035323866,L, + 319454259500,66.356366956467397,L, + 321378682750,66.834446047421750,L, + 323303106000,67.312538798754446,L, + 327151952500,68.268710641041494,L, + 329076375750,68.746796562185025,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345070820309409 + KeyVer: 4005 + KeyCount: 150 + Key: + 0,-20.345070820309409,L, + 1924423250,-20.191410347004560,L, + 3848846500,-20.037751581247004,L, + 5773269750,-19.884089400394863,L, + 7697693000,-19.730423804448137,L, + 9622116250,-19.576763331143290,L, + 11546539500,-19.423104565385731,L, + 15395386000,-19.115776788586867,L, + 21168655750,-18.654790246030441,L, + 23093079000,-18.501129772725594,L, + 25017502250,-18.347467591873453,L, + 26941925500,-18.193803703474018,L, + 28866348750,-18.040144937716462,L, + 34639618500,-17.579158395160039,L, + 36564041750,-17.425494506760607,L, + 38488465000,-17.271834033455757,L, + 40412888250,-17.118171852603616,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810845783352043,L, + 46186158000,-16.657185310047193,L, + 48110581250,-16.503523129195052,L, + 50035004500,-16.349859240795620,L, + 51959427750,-16.196197059943479,L, + 55808274250,-15.888876113333779,L, + 57732697500,-15.735213932481638,L, + 59657120750,-15.581550044082206,L, + 63505967250,-15.274225682377924,L, + 65430390500,-15.120561793978490,L, + 67354813750,-14.966904735768226,L, + 69279237000,-14.813239139821500,L, + 71203660250,-14.659578666516651,L, + 73128083500,-14.505916485664510,L, + 75052506750,-14.352257719906955,L, + 78901353250,-14.044929943108087,L, + 80825776500,-13.891268616029592,L, + 82750199750,-13.737606435177451,L, + 84674623000,-13.583943400551664,L, + 86599046250,-13.430282927246816,L, + 88523469500,-13.276621600168321,L, + 90447892750,-13.122958565542534,L, + 92372316000,-12.969297238464039,L, + 96221162500,-12.661971169212464,L, + 98145585750,-12.508310695907616,L, + 100070009000,-12.354649368829120,L, + 101994432250,-12.200985480429686,L, + 103918855500,-12.047325007124838,L, + 105843278750,-5.132534125854483,L, + 109692125250,-5.132533272080837,L, + 111616548500,-5.132534125854483,L, + 113540971750,-5.132533698967659,L, + 115465395000,-5.132534125854483,L, + 117389818250,-5.132533698967659,L, + 119314241500,-5.132533698967659,L, + 121238664750,-5.132533272080837,L, + 125087511250,-5.132534125854483,L, + 127011934500,-5.132533698967659,L, + 128936357750,-5.132533698967659,L, + 130860781000,-5.132533272080837,L, + 132785204250,-5.132533272080837,L, + 134709627500,-5.132534125854483,L, + 138558474000,-5.132533272080837,L, + 140482897250,-5.132534125854483,L, + 142407320500,-5.132534125854483,L, + 144331743750,-5.132533272080837,L, + 146256167000,-5.132533272080837,L, + 148180590250,-5.132533698967659,L, + 150105013500,-5.132533272080837,L, + 153953860000,-5.132533272080837,L, + 155878283250,-5.132534552741306,L, + 157802706500,-5.132533272080837,L, + 159727129750,-5.132534125854483,L, + 161651553000,-5.132534125854483,L, + 163575976250,-5.132533698967659,L, + 165500399500,-5.132534125854483,L, + 171273669250,-5.132532845194014,L, + 175122515750,-5.132533698967659,L, + 177046939000,-5.132534552741306,L, + 178971362250,-5.132534552741306,L, + 182820208750,-5.132533698967659,L, + 184744632000,-5.132534552741306,L, + 188593478500,-5.132533698967659,L, + 190517901750,-5.132534125854483,L, + 192442325000,-5.132533698967659,L, + 194366748250,-5.327042545490534,L, + 196291171500,-5.521551818900232,L, + 198215594750,-5.716060238536283,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105077504695208,L, + 203988864500,-6.299587204991728,L, + 205913287750,-6.494097332175072,L, + 207837711000,-6.688604471150654,L, + 209762134250,-6.883114171447175,L, + 211686557500,-7.077622591083226,L, + 213610980750,-7.272132291379746,L, + 215535404000,-7.466639857242151,L, + 217459827250,-7.661150838199140,L, + 219384250500,-7.855659257835192,L, + 221308673750,-8.050166823697596,L, + 223233097000,-8.244677804654588,L, + 225157520250,-8.439186224290639,L, + 227081943500,-8.633692936379397,L, + 230930790000,-9.022713190746083,L, + 232855213250,-9.217220756608489,L, + 236704059750,-9.606239303427884,L, + 238628483000,-9.800747723063935,L, + 240552906250,-9.995257850247278,L, + 242477329500,-10.189765416109683,L, + 244401752750,-10.384274689519380,L, + 246326176000,-10.578782255381785,L, + 248250599250,-10.773291528791482,L, + 252099445750,-11.162308368063584,L, + 254023869000,-11.356818495246928,L, + 255948292250,-11.551326914882980,L, + 257872715500,-11.745837895839969,L, + 259797138750,-11.940343754155082,L, + 261721562000,-12.134853881338426,L, + 263645985250,-12.329362300974477,L, + 265570408500,-12.523871574384174,L, + 267494831750,-12.718382555341165,L, + 269419255000,-12.912888413656276,L, + 271343678250,-13.107398540839620,L, + 273268101500,-13.301906106702026,L, + 275192524750,-13.496417941432661,L, + 277116948000,-13.690925507295066,L, + 280965794500,-14.079944054114462,L, + 282890217750,-14.274450766203220,L, + 284814641000,-14.468958332065625,L, + 286739064250,-14.663468459248968,L, + 288663487500,-14.857976878885019,L, + 294436757250,-15.441507260435051,L, + 296361180500,-15.636012264976516,L, + 300210027000,-16.025032519343203,L, + 302134450250,-16.219539231431963,L, + 304058873500,-16.414049358615305,L, + 305983296750,-16.608561193345942,L, + 309832143250,-16.997574617523458,L, + 311756566500,-17.192083037159509,L, + 315605413000,-17.581103291526198,L, + 317529836250,-17.775611711162249,L, + 319454259500,-17.970118423251009,L, + 321378682750,-18.164630257981646,L, + 323303106000,-18.359138677617697,L, + 325227529250,-18.553650512348330,L, + 327151952500,-18.748155516889799,L, + 334849645500,-19.526189195434004,L, + 336774068750,-19.720701030164637,L, + 338698492000,-19.915206034706106,L, + 340622915250,-20.109716161889448,L, + 342547338500,-20.304224581525499,L, + 344471761750,-20.498736416256136,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551202430887219 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,17.551202430887219,L, + 1924423250,17.638765456046656,L, + 3848846500,17.726330188753387,L, + 5773269750,17.813898336554701,L, + 7697693000,17.901461361714137,L, + 9622116250,17.989022679326283,L, + 11546539500,18.076590827127600,L, + 13470962750,18.164157267381622,L, + 17319809250,18.339283317700495,L, + 19244232500,18.426849757954518,L, + 23093079000,18.601979223367980,L, + 25017502250,18.689550786263879,L, + 26941925500,18.777110396328734,L, + 28866348750,18.864676836582756,L, + 30790772000,18.952239861742193,L, + 36564041750,19.214934059862383,L, + 38488465000,19.302502207663700,L, + 40412888250,19.390065232823137,L, + 42337311500,19.477633380624450,L, + 44261734750,19.565194698236596,L, + 46186158000,19.652761138490618,L, + 50035004500,19.827890603904081,L, + 51959427750,19.915460459252685,L, + 53883851000,20.003016654222954,L, + 55808274250,20.090584802024271,L, + 57732697500,20.178147827183707,L, + 59657120750,20.265719390079607,L, + 63505967250,20.440845440398483,L, + 65430390500,20.528415295747092,L, + 67354813750,20.615978320906528,L, + 71203660250,20.791107786319987,L, + 73128083500,20.878679349215890,L, + 75052506750,20.966235544186155,L, + 76976930000,21.053803691987472,L, + 78901353250,21.141363302052323,L, + 80825776500,21.228931449853640,L, + 82750199750,21.316496182560371,L, + 84674623000,21.404066037908976,L, + 86599046250,21.491622232879244,L, + 88523469500,21.579193795775144,L, + 90447892750,21.666756820934584,L, + 92372316000,21.754324968735897,L, + 94296739250,21.841886286348043,L, + 96221162500,21.929454434149356,L, + 98145585750,22.017019166856088,L, + 100070009000,22.104587314657405,L, + 101994432250,22.192145217174964,L, + 103918855500,22.279716780070864,L, + 105843278750,26.220139997157474,L, + 107767702000,26.220143412252060,L, + 109692125250,26.220138289610183,L, + 111616548500,26.220143412252060,L, + 113540971750,26.220143412252060,L, + 115465395000,26.220139997157474,L, + 117389818250,26.220139997157474,L, + 119314241500,26.220143412252060,L, + 121238664750,26.220143412252060,L, + 123163088000,26.220139997157474,L, + 125087511250,26.220143412252060,L, + 127011934500,26.220145119799355,L, + 128936357750,26.220138289610183,L, + 130860781000,26.220145119799355,L, + 132785204250,26.220145119799355,L, + 134709627500,26.220143412252060,L, + 136634050750,26.220138289610183,L, + 138558474000,26.220146827346646,L, + 140482897250,26.220143412252060,L, + 142407320500,26.220145119799355,L, + 144331743750,26.220139997157474,L, + 146256167000,26.220145119799355,L, + 148180590250,26.220145119799355,L, + 150105013500,26.220141704704769,L, + 152029436750,26.220145119799355,L, + 155878283250,26.220141704704769,L, + 159727129750,26.220141704704769,L, + 161651553000,26.220143412252060,L, + 167424822750,26.220138289610183,L, + 169349246000,26.220141704704769,L, + 171273669250,26.220139997157474,L, + 173198092500,26.220143412252060,L, + 175122515750,26.220145119799355,L, + 177046939000,26.220138289610183,L, + 178971362250,26.220143412252060,L, + 180895785500,26.220139997157474,L, + 182820208750,26.220139997157474,L, + 186669055250,26.220143412252060,L, + 190517901750,26.220139997157474,L, + 192442325000,26.220143412252060,L, + 194366748250,26.109301394853961,L, + 196291171500,25.998457669908568,L, + 200140018000,25.776777050206952,L, + 202064441250,25.665931617714268,L, + 205913287750,25.444254413107238,L, + 207837711000,25.333407273067259,L, + 211686557500,25.111723238271058,L, + 213610980750,25.000879513325668,L, + 215535404000,24.890040911022151,L, + 217459827250,24.779200601171343,L, + 221308673750,24.557516566375142,L, + 223233097000,24.446672841429752,L, + 225157520250,24.335837654220821,L, + 227081943500,24.224987099086256,L, + 229006366750,24.114143374140866,L, + 230930790000,24.003308186931935,L, + 232855213250,23.892466169533833,L, + 234779636500,23.781620737041148,L, + 236704059750,23.670780427190341,L, + 238628483000,23.559933287150365,L, + 240552906250,23.449094684846848,L, + 242477329500,23.338250959901455,L, + 244401752750,23.227408942503356,L, + 246326176000,23.116570340199839,L, + 248250599250,23.005728322801740,L, + 250175022500,22.894889720498227,L, + 252099445750,22.784044288005539,L, + 254023869000,22.673205685702026,L, + 255948292250,22.562361960756633,L, + 257872715500,22.451523358453116,L, + 259797138750,22.340676218413140,L, + 261721562000,22.229834201015041,L, + 265570408500,22.008153581313426,L, + 269419255000,21.786469546517225,L, + 271343678250,21.675625821571831,L, + 273268101500,21.564783804173732,L, + 275192524750,21.453945201870216,L, + 277116948000,21.343098061830240,L, + 279041371250,21.232261167074014,L, + 282890217750,21.010573717183231,L, + 284814641000,20.899731699785129,L, + 286739064250,20.788887974839739,L, + 288663487500,20.678051080083513,L, + 290587910750,20.567205647590828,L, + 292512334000,20.456365337740021,L, + 294436757250,20.345523320341922,L, + 296361180500,20.234679595396528,L, + 298285603750,20.123842700640306,L, + 300210027000,20.013000683242208,L, + 302134450250,19.902155250749523,L, + 304058873500,19.791314940898715,L, + 305983296750,19.680471215953322,L, + 307907720000,19.569629198555219,L, + 309832143250,19.458788888704412,L, + 317529836250,19.015420819112013,L, + 319454259500,18.904575386619328,L, + 321378682750,18.793738491863106,L, + 331000799000,18.239528404872605,L, + 332925222250,18.128684679927211,L, + 334849645500,18.017846077623695,L, + 336774068750,17.907002352678305,L, + 340622915250,17.685318317882103,L, + 342547338500,17.574478008031296,L, + 344471761750,17.463635990633193,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388184070587 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.872388184070587,L, + 1924423250,0.857711374759674,L, + 7697693000,0.813680768013000,L, + 9622116250,0.799003958702087,L, + 11546539500,0.784327030181885,L, + 13470962750,0.769650161266327,L, + 15395386000,0.754973351955414,L, + 32715195250,0.622881531715393,L, + 34639618500,0.608204722404480,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578850984573364,L, + 42337311500,0.549497246742249,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143449306488,L, + 48110581250,0.505466699600220,L, + 50035004500,0.490789741277695,L, + 51959427750,0.476112961769104,L, + 53883851000,0.461436092853546,L, + 55808274250,0.446759194135666,L, + 59657120750,0.417405515909195,L, + 61581544000,0.402728617191315,L, + 63505967250,0.388051778078079,L, + 67354813750,0.358697980642319,L, + 69279237000,0.344021201133728,L, + 71203660250,0.329344332218170,L, + 73128083500,0.314667373895645,L, + 75052506750,0.299990534782410,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636856555939,L, + 80825776500,0.255959987640381,L, + 82750199750,0.241283133625984,L, + 84674623000,0.226606234908104,L, + 86599046250,0.211929380893707,L, + 88523469500,0.197252511978149,L, + 90447892750,0.182575702667236,L, + 94296739250,0.153221964836121,L, + 96221162500,0.138545110821724,L, + 98145585750,0.123868227005005,L, + 100070009000,0.109191298484802,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837590456009,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 119314241500,0.134596228599548,L, + 121238664750,0.130958929657936,L, + 123163088000,0.127321600914001,L, + 127011934500,0.120046973228455,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772352993488,L, + 132785204250,0.109135054051876,L, + 134709627500,0.105497725307941,L, + 138558474000,0.098223112523556,L, + 140482897250,0.094585791230202,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311156094074,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849974095821,L, + 159727129750,0.058212660253048,L, + 161651553000,0.054575342684984,L, + 163575976250,0.050938032567501,L, + 169349246000,0.040026091039181,L, + 171273669250,0.036388780921698,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 177046939000,0.025476828217506,L, + 178971362250,0.021839512512088,L, + 180895785500,0.018202200531960,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290273904800,L, + 188593478500,0.003652960527688,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 194366748250,0.165668800473213,L, + 196291171500,0.174917459487915,L, + 198215594750,0.184166133403778,L, + 200140018000,0.193414792418480,L, + 203988864500,0.211912140250206,L, + 205913287750,0.221160784363747,L, + 207837711000,0.230409488081932,L, + 209762134250,0.239658147096634,L, + 215535404000,0.267404168844223,L, + 217459827250,0.276652872562408,L, + 219384250500,0.285901457071304,L, + 221308673750,0.295150160789490,L, + 223233097000,0.304398834705353,L, + 225157520250,0.313647478818893,L, + 227081943500,0.322896182537079,L, + 229006366750,0.332144856452942,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642204284668,L, + 236704059750,0.369139492511749,L, + 238628483000,0.378388226032257,L, + 240552906250,0.387636840343475,L, + 242477329500,0.396885573863983,L, + 244401752750,0.406134217977524,L, + 246326176000,0.415382921695709,L, + 248250599250,0.424631536006927,L, + 250175022500,0.433880239725113,L, + 254023869000,0.452377587556839,L, + 255948292250,0.461626231670380,L, + 257872715500,0.470874935388565,L, + 259797138750,0.480123579502106,L, + 261721562000,0.489372283220291,L, + 263645985250,0.498620897531509,L, + 265570408500,0.507869601249695,L, + 267494831750,0.517118215560913,L, + 269419255000,0.526366949081421,L, + 273268101500,0.544864296913147,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361644744873,L, + 279041371250,0.572610259056091,L, + 280965794500,0.581858992576599,L, + 282890217750,0.591107666492462,L, + 284814641000,0.600356400012970,L, + 286739064250,0.609604954719543,L, + 288663487500,0.618853747844696,L, + 290587910750,0.628102302551270,L, + 292512334000,0.637350916862488,L, + 294436757250,0.646599650382996,L, + 296361180500,0.655848443508148,L, + 298285603750,0.665096998214722,L, + 302134450250,0.683594346046448,L, + 304058873500,0.692842900753021,L, + 305983296750,0.702091693878174,L, + 317529836250,0.757583737373352,L, + 319454259500,0.766832351684570,L, + 321378682750,0.776081085205078,L, + 323303106000,0.785329759120941,L, + 325227529250,0.794578254222870,L, + 327151952500,0.803827047348022,L, + 329076375750,0.813075721263885,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573009490967,L, + 334849645500,0.840821743011475,L, + 336774068750,0.850070416927338,L, + 338698492000,0.859319031238556,L, + 340622915250,0.868567764759064,L, + 342547338500,0.877816379070282,L, + 344471761750,0.887065112590790,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175009250641 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.652175009250641,L, + 3848846500,0.630230963230133,L, + 5773269750,0.619258880615234,L, + 7697693000,0.608286976814270,L, + 9622116250,0.597314834594727,L, + 11546539500,0.586342811584473,L, + 13470962750,0.575370848178864,L, + 15395386000,0.564398705959320,L, + 17319809250,0.553426682949066,L, + 19244232500,0.542454600334167,L, + 21168655750,0.531482636928558,L, + 23093079000,0.520510554313660,L, + 25017502250,0.509538531303406,L, + 26941925500,0.498566538095474,L, + 28866348750,0.487594485282898,L, + 30790772000,0.476622462272644,L, + 32715195250,0.465650349855423,L, + 34639618500,0.454678386449814,L, + 38488465000,0.432734280824661,L, + 40412888250,0.421762257814407,L, + 44261734750,0.399818152189255,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 50035004500,0.366902053356171,L, + 53883851000,0.344957947731018,L, + 55808274250,0.333985924720764,L, + 57732697500,0.323013871908188,L, + 59657120750,0.312041878700256,L, + 61581544000,0.301069825887680,L, + 63505967250,0.290097802877426,L, + 67354813750,0.268153697252274,L, + 69279237000,0.257181674242020,L, + 71203660250,0.246209606528282,L, + 73128083500,0.235237598419189,L, + 75052506750,0.224265530705452,L, + 76976930000,0.213293552398682,L, + 78901353250,0.202321514487267,L, + 80825776500,0.191349431872368,L, + 82750199750,0.180377408862114,L, + 84674623000,0.169405356049538,L, + 86599046250,0.158433318138123,L, + 90447892750,0.136489272117615,L, + 92372316000,0.125517189502716,L, + 94296739250,0.114545173943043,L, + 98145585750,0.092601113021374,L, + 100070009000,0.081629030406475,L, + 101994432250,0.070657074451447,L, + 103918855500,0.059684958308935,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420096755028,L, + 109692125250,0.152782812714577,L, + 111616548500,0.149145483970642,L, + 119314241500,0.134596228599548,L, + 121238664750,0.130958899855614,L, + 123163088000,0.127321600914001,L, + 125087511250,0.123684294521809,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772360444069,L, + 138558474000,0.098223105072975,L, + 140482897250,0.094585798680782,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311163544655,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 152029436750,0.072761908173561,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849977821112,L, + 159727129750,0.058212660253048,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114143922925,L, + 177046939000,0.025476828217506,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290274370462,L, + 188593478500,0.003652960062027,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420096755028,L, + 200140018000,0.182077154517174,L, + 202064441250,0.188491448760033,L, + 205913287750,0.201319947838783,L, + 207837711000,0.207734227180481,L, + 209762134250,0.214148521423340,L, + 211686557500,0.220562770962715,L, + 213610980750,0.226977005600929,L, + 217459827250,0.239805564284325,L, + 219384250500,0.246219828724861,L, + 221308673750,0.252634108066559,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 227081943500,0.271876871585846,L, + 229006366750,0.278291165828705,L, + 230930790000,0.284705430269241,L, + 232855213250,0.291119664907455,L, + 234779636500,0.297533929347992,L, + 236704059750,0.303948223590851,L, + 240552906250,0.316776752471924,L, + 242477329500,0.323191046714783,L, + 246326176000,0.336019515991211,L, + 248250599250,0.342433810234070,L, + 250175022500,0.348848074674606,L, + 252099445750,0.355262279510498,L, + 254023869000,0.361676603555679,L, + 259797138750,0.380919396877289,L, + 261721562000,0.387333691120148,L, + 265570408500,0.400162160396576,L, + 267494831750,0.406576454639435,L, + 269419255000,0.412990778684616,L, + 271343678250,0.419404983520508,L, + 275192524750,0.432233572006226,L, + 277116948000,0.438647747039795,L, + 279041371250,0.445062041282654,L, + 284814641000,0.464304834604263,L, + 286739064250,0.470719128847122,L, + 288663487500,0.477133363485336,L, + 290587910750,0.483547627925873,L, + 292512334000,0.489961922168732,L, + 294436757250,0.496376156806946,L, + 298285603750,0.509204745292664,L, + 304058873500,0.528447449207306,L, + 305983296750,0.534861803054810,L, + 309832143250,0.547690272331238,L, + 313680989750,0.560518860816956,L, + 315605413000,0.566933095455170,L, + 317529836250,0.573347270488739,L, + 319454259500,0.579761624336243,L, + 321378682750,0.586175858974457,L, + 323303106000,0.592590153217316,L, + 325227529250,0.599004387855530,L, + 327151952500,0.605418682098389,L, + 329076375750,0.611833035945892,L, + 331000799000,0.618247210979462,L, + 332925222250,0.624661505222321,L, + 338698492000,0.643904209136963,L, + 340622915250,0.650318503379822,L, + 342547338500,0.656732857227325,L, + 344471761750,0.663147032260895,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695365428925 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.869695365428925,L, + 5773269750,0.825800657272339,L, + 7697693000,0.811169147491455,L, + 13470962750,0.767274439334869,L, + 15395386000,0.752642929553986,L, + 17319809250,0.738011360168457,L, + 19244232500,0.723379909992218,L, + 21168655750,0.708748161792755,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485082626343,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 30790772000,0.635590374469757,L, + 32715195250,0.620958924293518,L, + 34639618500,0.606327295303345,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064156532288,L, + 40412888250,0.562432587146759,L, + 42337311500,0.547801077365875,L, + 46186158000,0.518537938594818,L, + 48110581250,0.503906309604645,L, + 50035004500,0.489274799823761,L, + 51959427750,0.474643230438232,L, + 55808274250,0.445380151271820,L, + 57732697500,0.430748552083969,L, + 59657120750,0.416117012500763,L, + 61581544000,0.401485443115234,L, + 65430390500,0.372222363948822,L, + 67354813750,0.357590794563293,L, + 69279237000,0.342959195375443,L, + 71203660250,0.328327655792236,L, + 73128083500,0.313696086406708,L, + 75052506750,0.299064576625824,L, + 76976930000,0.284433007240295,L, + 78901353250,0.269801378250122,L, + 80825776500,0.255169868469238,L, + 84674623000,0.225906729698181,L, + 86599046250,0.211275205016136,L, + 88523469500,0.196643665432930,L, + 90447892750,0.182012021541595,L, + 92372316000,0.167380511760712,L, + 94296739250,0.152748957276344,L, + 96221162500,0.138117432594299,L, + 98145585750,0.123485863208771,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222724437714,L, + 103918855500,0.079591155052185,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420141458511,L, + 109692125250,0.152782812714577,L, + 121238664750,0.130958929657936,L, + 123163088000,0.127321630716324,L, + 127011934500,0.120046988129616,L, + 128936357750,0.116409674286842,L, + 130860781000,0.112772367894650,L, + 132785204250,0.109135046601295,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 142407320500,0.090948484838009,L, + 144331743750,0.087311163544655,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663401156664,L, + 169349246000,0.040026091039181,L, + 171273669250,0.036388777196407,L, + 173198092500,0.032751459628344,L, + 175122515750,0.029114156961441,L, + 177046939000,0.025476843118668,L, + 178971362250,0.021839527413249,L, + 180895785500,0.018202215433121,L, + 182820208750,0.014564902521670,L, + 184744632000,0.010927588678896,L, + 186669055250,0.007290274370462,L, + 188593478500,0.003652959829196,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420141458511,L, + 196291171500,0.174848109483719,L, + 198215594750,0.184062153100967,L, + 200140018000,0.193276181817055,L, + 203988864500,0.211704179644585,L, + 205913287750,0.220918193459511,L, + 207837711000,0.230132192373276,L, + 213610980750,0.257774233818054,L, + 215535404000,0.266988217830658,L, + 217459827250,0.276202261447906,L, + 221308673750,0.294630289077759,L, + 223233097000,0.303844273090363,L, + 225157520250,0.313058316707611,L, + 227081943500,0.322272300720215,L, + 229006366750,0.331486344337463,L, + 230930790000,0.340700328350067,L, + 232855213250,0.349914342164993,L, + 234779636500,0.359128326177597,L, + 236704059750,0.368342369794846,L, + 238628483000,0.377556383609772,L, + 240552906250,0.386770308017731,L, + 242477329500,0.395984411239624,L, + 244401752750,0.405198335647583,L, + 246326176000,0.414412468671799,L, + 248250599250,0.423626422882080,L, + 250175022500,0.432840406894684,L, + 252099445750,0.442054450511932,L, + 254023869000,0.451268404722214,L, + 255948292250,0.460482478141785,L, + 257872715500,0.469696462154388,L, + 259797138750,0.478910535573959,L, + 261721562000,0.488124459981918,L, + 263645985250,0.497338473796844,L, + 265570408500,0.506552577018738,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408572673798,L, + 275192524750,0.552622556686401,L, + 277116948000,0.561836600303650,L, + 279041371250,0.571050524711609,L, + 284814641000,0.598692655563354,L, + 286739064250,0.607906639575958,L, + 288663487500,0.617120683193207,L, + 292512334000,0.635548651218414,L, + 294436757250,0.644762754440308,L, + 296361180500,0.653976678848267,L, + 298285603750,0.663190662860870,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618690490723,L, + 304058873500,0.690832734107971,L, + 305983296750,0.700046718120575,L, + 307907720000,0.709260761737823,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688789367676,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116816997528,L, + 317529836250,0.755330741405487,L, + 319454259500,0.764544785022736,L, + 321378682750,0.773758769035339,L, + 325227529250,0.792186856269836,L, + 327151952500,0.801400840282440,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042971134186,L, + 334849645500,0.838256835937500,L, + 338698492000,0.856684923171997,L, + 340622915250,0.865898907184601,L, + 342547338500,0.875112950801849,L, + 344471761750,0.884326934814453,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_055" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 67 + Key: + 0,0.016793012619019,L, + 194366748250,0.016793012619019,L, + 196291171500,0.016792774200439,L, + 198215594750,0.016792893409729,L, + 200140018000,0.016792774200439,L, + 203988864500,0.016793012619019,L, + 205913287750,0.016792774200439,L, + 207837711000,0.016793012619019,L, + 209762134250,0.016792774200439,L, + 211686557500,0.016792893409729,L, + 213610980750,0.016792893409729,L, + 215535404000,0.016792774200439,L, + 217459827250,0.016792893409729,L, + 219384250500,0.016792654991150,L, + 223233097000,0.016792893409729,L, + 225157520250,0.016792774200439,L, + 227081943500,0.016792893409729,L, + 229006366750,0.016792893409729,L, + 230930790000,0.016793012619019,L, + 234779636500,0.016792774200439,L, + 236704059750,0.016793012619019,L, + 240552906250,0.016792774200439,L, + 242477329500,0.016793012619019,L, + 246326176000,0.016792774200439,L, + 248250599250,0.016792893409729,L, + 250175022500,0.016792893409729,L, + 252099445750,0.016793012619019,L, + 254023869000,0.016792893409729,L, + 255948292250,0.016792893409729,L, + 257872715500,0.016792774200439,L, + 261721562000,0.016793012619019,L, + 263645985250,0.016793012619019,L, + 265570408500,0.016792774200439,L, + 267494831750,0.016792893409729,L, + 271343678250,0.016792893409729,L, + 273268101500,0.016792654991150,L, + 275192524750,0.016793012619019,L, + 279041371250,0.016792774200439,L, + 280965794500,0.016792893409729,L, + 282890217750,0.016792893409729,L, + 284814641000,0.016793012619019,L, + 286739064250,0.016792774200439,L, + 288663487500,0.016792893409729,L, + 290587910750,0.016792774200439,L, + 292512334000,0.016793012619019,L, + 294436757250,0.016792893409729,L, + 296361180500,0.016793012619019,L, + 298285603750,0.016792774200439,L, + 302134450250,0.016792774200439,L, + 304058873500,0.016792654991150,L, + 305983296750,0.016792774200439,L, + 307907720000,0.016792774200439,L, + 309832143250,0.016792893409729,L, + 313680989750,0.016792893409729,L, + 315605413000,0.016792654991150,L, + 317529836250,0.016792654991150,L, + 319454259500,0.016793012619019,L, + 323303106000,0.016793012619019,L, + 325227529250,0.016792774200439,L, + 327151952500,0.016792774200439,L, + 329076375750,0.016792893409729,L, + 331000799000,0.016792774200439,L, + 332925222250,0.016792774200439,L, + 334849645500,0.016792893409729,L, + 340622915250,0.016792893409729,L, + 342547338500,0.016793012619019,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058500945568085 + KeyVer: 4005 + KeyCount: 81 + Key: + 0,-0.058500945568085,L, + 190517901750,-0.058500945568085,L, + 192442325000,-0.058537185192108,L, + 194366748250,-0.059146940708160,L, + 196291171500,-0.059920608997345,L, + 198215594750,-0.060734450817108,L, + 200140018000,-0.061568558216095,L, + 202064441250,-0.062416613101959,L, + 203988864500,-0.063273727893829,L, + 205913287750,-0.064137756824493,L, + 207837711000,-0.065007627010345,L, + 209762134250,-0.065881550312042,L, + 211686557500,-0.066759049892426,L, + 213610980750,-0.067639410495758,L, + 215535404000,-0.068522393703461,L, + 217459827250,-0.069407284259796,L, + 219384250500,-0.070294082164764,L, + 221308673750,-0.071182548999786,L, + 223233097000,-0.072072088718414,L, + 225157520250,-0.072962820529938,L, + 227081943500,-0.073854267597198,L, + 229006366750,-0.074746668338776,L, + 230930790000,-0.075639545917511,L, + 232855213250,-0.076533138751984,L, + 234779636500,-0.077426850795746,L, + 236704059750,-0.078320920467377,L, + 238628483000,-0.079215109348297,L, + 242477329500,-0.081003248691559,L, + 244401752750,-0.081897079944611,L, + 246326176000,-0.082790434360504,L, + 248250599250,-0.083683431148529,L, + 250175022500,-0.084575831890106,L, + 252099445750,-0.085467278957367,L, + 254023869000,-0.086358129978180,L, + 255948292250,-0.087247788906097,L, + 257872715500,-0.088136017322540,L, + 259797138750,-0.089022934436798,L, + 261721562000,-0.089907944202423,L, + 263645985250,-0.090790927410126,L, + 265570408500,-0.091671288013458,L, + 267494831750,-0.092548787593842,L, + 269419255000,-0.093422830104828,L, + 271343678250,-0.094292461872101,L, + 273268101500,-0.095156610012054,L, + 275192524750,-0.096013963222504,L, + 277116948000,-0.096861660480499,L, + 279041371250,-0.097696244716644,L, + 280965794500,-0.098509728908539,L, + 282890217750,-0.099283635616302,L, + 284814641000,-0.099893391132355,L, + 286739064250,-0.099930107593536,L, + 288663487500,-0.099073231220245,L, + 290587910750,-0.097858369350433,L, + 292512334000,-0.096546709537506,L, + 294436757250,-0.095184385776520,L, + 296361180500,-0.093790113925934,L, + 298285603750,-0.092373430728912,L, + 300210027000,-0.090941131114960,L, + 302134450250,-0.089496076107025,L, + 304058873500,-0.088041841983795,L, + 305983296750,-0.086580455303192,L, + 307907720000,-0.085113465785980,L, + 309832143250,-0.083642303943634,L, + 311756566500,-0.082168400287628,L, + 313680989750,-0.080692589282990,L, + 315605413000,-0.079215228557587,L, + 317529836250,-0.077738463878632,L, + 319454259500,-0.076262652873993,L, + 321378682750,-0.074788630008698,L, + 323303106000,-0.073317587375641,L, + 325227529250,-0.071850478649139,L, + 327151952500,-0.070388972759247,L, + 329076375750,-0.068934977054596,L, + 331000799000,-0.067490041255951,L, + 332925222250,-0.066057384014130,L, + 334849645500,-0.064640939235687,L, + 336774068750,-0.063246428966522,L, + 338698492000,-0.061884224414825,L, + 340622915250,-0.060572564601898,L, + 342547338500,-0.059357702732086,L, + 344471761750,-0.058500945568085,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288230180740356 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.288230180740356,L, + 1924423250,0.298518419265747,L, + 3848846500,0.310405850410461,L, + 5773269750,0.323110699653625,L, + 7697693000,0.336395263671875,L, + 9622116250,0.350154161453247,L, + 11546539500,0.364334940910339,L, + 13470962750,0.378912687301636,L, + 15395386000,0.393878698348999,L, + 17319809250,0.409237146377563,L, + 19244232500,0.425001978874207,L, + 21168655750,0.441198110580444,L, + 23093079000,0.457861185073853,L, + 25017502250,0.475041031837463,L, + 26941925500,0.492805004119873,L, + 28866348750,0.511790275573730,L, + 30790772000,0.532561659812927,L, + 32715195250,0.555003046989441,L, + 34639618500,0.578838586807251,L, + 36564041750,0.603604555130005,L, + 38488465000,0.628666043281555,L, + 40412888250,0.653296709060669,L, + 42337311500,0.676801085472107,L, + 44261734750,0.698627471923828,L, + 46186158000,0.718426823616028,L, + 48110581250,0.736045598983765,L, + 50035004500,0.751482129096985,L, + 51959427750,0.765871167182922,L, + 53883851000,0.780288100242615,L, + 55808274250,0.794722318649292,L, + 57732697500,0.809162259101868,L, + 59657120750,0.823595523834229,L, + 61581544000,0.838008165359497,L, + 63505967250,0.852384805679321,L, + 65430390500,0.866709113121033,L, + 67354813750,0.880964159965515,L, + 69279237000,0.895130991935730,L, + 71203660250,0.909190297126770,L, + 73128083500,0.923121690750122,L, + 75052506750,0.936904668807983,L, + 76976930000,0.950517892837524,L, + 78901353250,0.963939666748047,L, + 80825776500,0.977149009704590,L, + 82750199750,0.990124940872192,L, + 84674623000,1.002847433090210,L, + 86599046250,1.015297412872314,L, + 88523469500,1.027456998825073,L, + 90447892750,1.039310216903687,L, + 92372316000,1.050842761993408,L, + 94296739250,1.062041759490967,L, + 96221162500,1.072897434234619,L, + 98145585750,1.083401203155518,L, + 100070009000,1.093547105789185,L, + 101994432250,1.103331804275513,L, + 103918855500,1.112752676010132,L, + 105843278750,1.121810674667358,L, + 107767702000,1.130507230758667,L, + 109692125250,1.138845920562744,L, + 111616548500,1.146832227706909,L, + 113540971750,1.154471874237061,L, + 115465395000,1.161772966384888,L, + 117389818250,1.168742656707764,L, + 119314241500,1.175390720367432,L, + 121238664750,1.181726455688477,L, + 123163088000,1.187759399414062,L, + 125087511250,1.193499803543091,L, + 127011934500,1.198957920074463,L, + 128936357750,1.204144001007080,L, + 130860781000,1.209068775177002,L, + 132785204250,1.213741540908813,L, + 134709627500,1.218172550201416,L, + 136634050750,1.222372055053711,L, + 138558474000,1.226348876953125,L, + 140482897250,1.230113029479980,L, + 142407320500,1.233672380447388,L, + 144331743750,1.237036466598511,L, + 146256167000,1.240213155746460,L, + 148180590250,1.243210077285767,L, + 150105013500,1.246036052703857,L, + 152029436750,1.248697280883789,L, + 153953860000,1.251201152801514,L, + 155878283250,1.253554344177246,L, + 157802706500,1.255763053894043,L, + 159727129750,1.257833719253540,L, + 161651553000,1.259771585464478,L, + 163575976250,1.261583089828491,L, + 165500399500,1.263272523880005,L, + 167424822750,1.264845848083496,L, + 169349246000,1.266306877136230,L, + 171273669250,1.267660617828369,L, + 173198092500,1.268911600112915,L, + 175122515750,1.270063638687134,L, + 177046939000,1.271121025085449,L, + 178971362250,1.272087574005127,L, + 180895785500,1.272966146469116,L, + 182820208750,1.273760318756104,L, + 184744632000,1.274474382400513,L, + 186669055250,1.275109767913818,L, + 188593478500,1.275670766830444,L, + 190517901750,1.276159524917603,L, + 192442325000,-0.578060984611511,L, + 282890217750,-0.578060984611511,L, + 284814641000,-0.557460665702820,L, + 286739064250,0.000370740890503,L, + 288663487500,0.007700562477112,L, + 290587910750,0.015030264854431,L, + 292512334000,0.022360086441040,L, + 294436757250,0.029689788818359,L, + 302134450250,0.059009075164795,L, + 304058873500,0.066338777542114,L, + 305983296750,0.073668599128723,L, + 307907720000,0.080998301506042,L, + 309832143250,0.088328123092651,L, + 311756566500,0.095657825469971,L, + 315605413000,0.110317468643188,L, + 317529836250,0.121188163757324,L, + 319454259500,0.134479522705078,L, + 321378682750,0.150350213050842,L, + 323303106000,0.168187856674194,L, + 325227529250,0.186523199081421,L, + 327151952500,0.203898429870605,L, + 329076375750,0.219612121582031,L, + 331000799000,0.233596205711365,L, + 332925222250,0.246043443679810,L, + 334849645500,0.257195591926575,L, + 336774068750,0.267271637916565,L, + 338698492000,0.276450395584106,L, + 340622915250,0.284874916076660,L, + 342547338500,0.292658686637878,L, + 344471761750,0.299892187118530,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467529284443565,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568989579138631,L, + 21168655750,66.372998467096352,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237300935935750,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348818600705343,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527321096856127,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098537059713770,L, + 196291171500,42.441658275901446,L, + 198215594750,38.276933354019228,L, + 200140018000,34.902167620972044,L, + 202064441250,32.037832169882932,L, + 203988864500,29.538737669565144,L, + 205913287750,27.317940934526415,L, + 207837711000,25.318534536149578,L, + 209762134250,23.500828245167742,L, + 211686557500,21.835862059500101,L, + 213610980750,20.301711071910937,L, + 215535404000,18.881328837779222,L, + 217459827250,17.561152308960619,L, + 219384250500,16.330167805418501,L, + 221308673750,15.179289468009468,L, + 223233097000,14.100945178264928,L, + 225157520250,13.088717119686017,L, + 227081943500,12.137130041879329,L, + 229006366750,11.241467699222980,L, + 230930790000,10.397629416894029,L, + 232855213250,9.602038737088332,L, + 234779636500,8.851523036936422,L, + 236704059750,8.143319504919036,L, + 238628483000,7.474936829536412,L, + 240552906250,6.844174409215341,L, + 242477329500,6.249048927775585,L, + 244401752750,5.687784536032940,L, + 246326176000,5.158796203213144,L, + 248250599250,4.660632514117572,L, + 250175022500,4.191998294124861,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776399093383,L, + 255948292250,2.952191960939448,L, + 257872715500,2.591109101268777,L, + 259797138750,2.254808942671227,L, + 261721562000,1.942610173777090,L, + 263645985250,1.653947489710842,L, + 265570408500,1.388353769566280,L, + 267494831750,1.145431474989367,L, + 269419255000,0.924908465630361,L, + 271343678250,0.726609130922400,L, + 273268101500,0.550526960841430,L, + 275192524750,0.396816941984672,L, + 277116948000,0.265868555217376,L, + 279041371250,0.158436483081973,L, + 280965794500,0.075941458286678,L, + 282890217750,0.021060886638177,L, + 284814641000,0.000309185366264,L, + 286739064250,0.000001885382537,L, + 288663487500,1.237622593641716,L, + 290587910750,2.992587407238138,L, + 292512334000,4.887326065783146,L, + 294436757250,6.855265355766957,L, + 296361180500,8.869395934447027,L, + 298285603750,10.915502043726468,L, + 300210027000,12.984963984872733,L, + 302134450250,15.072043545209374,L, + 304058873500,17.172644318781682,L, + 305983296750,19.283679913858464,L, + 307907720000,21.402723905737073,L, + 309832143250,23.527766511254235,L, + 311756566500,25.657095060475577,L, + 313680989750,27.789203496689108,L, + 315605413000,29.922659187716423,L, + 317529836250,32.056113171196444,L, + 319454259500,34.188207947031636,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442592762148479,L, + 325227529250,40.561628216290629,L, + 327151952500,42.672668934009288,L, + 329076375750,44.773269707581598,L, + 331000799000,46.860350121691880,L, + 332925222250,48.929812062838145,L, + 334849645500,50.975918172117588,L, + 336774068750,52.990041920608490,L, + 338698492000,54.957990175215585,L, + 340622915250,56.852729047204001,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429198260316337 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429198260316337,L, + 1924423250,-20.421560401276981,L, + 3848846500,-20.389151153665317,L, + 5773269750,-20.328217328532428,L, + 7697693000,-20.237252869166326,L, + 9622116250,-20.114739766023984,L, + 11546539500,-19.958842405765960,L, + 13470962750,-19.767296580682398,L, + 15395386000,-19.537329233970276,L, + 17319809250,-19.265550884253983,L, + 19244232500,-18.947798531234398,L, + 21168655750,-18.578939287750266,L, + 23093079000,-18.152571559002002,L, + 25017502250,-17.660582787802937,L, + 26941925500,-17.092461313020433,L, + 28866348750,-16.398736074496160,L, + 30790772000,-15.538794767425280,L, + 32715195250,-14.521074382980039,L, + 34639618500,-13.368167479387516,L, + 36564041750,-12.119608045337333,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565860078828472,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346955306189836,L, + 46186158000,-6.476725172907993,L, + 48110581250,-5.792768812444116,L, + 50035004500,-5.297142111738377,L, + 51959427750,-4.905137491591221,L, + 53883851000,-4.534031115870159,L, + 55808274250,-4.181762828766789,L, + 57732697500,-3.846592212703227,L, + 59657120750,-3.527032207431120,L, + 61581544000,-3.221808128896613,L, + 63505967250,-2.929808363812290,L, + 65430390500,-2.650063025316011,L, + 67354813750,-2.381715991883997,L, + 69279237000,-2.124010820065670,L, + 71203660250,-1.876271748020024,L, + 73128083500,-1.637894304005514,L, + 75052506750,-1.408335061096300,L, + 76976930000,-1.187102138950437,L, + 78901353250,-0.973750401333112,L, + 80825776500,-0.767873932236384,L, + 82750199750,-0.569102887588869,L, + 84674623000,-0.377098079129168,L, + 86599046250,-0.191548373064288,L, + 88523469500,-0.012166512915379,L, + 90447892750,0.161312539671287,L, + 92372316000,0.329133049002396,L, + 94296739250,0.491522877592478,L, + 96221162500,0.648692093779151,L, + 98145585750,0.800838292800669,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779076015354,L, + 103918855500,1.228905031104971,L, + 105843278750,1.362670657461482,L, + 107767702000,1.492215973962871,L, + 109692125250,1.617674596184778,L, + 111616548500,1.739167653263263,L, + 113540971750,1.856813819735155,L, + 115465395000,1.970721738296941,L, + 117389818250,2.080994502116403,L, + 119314241500,2.187729441389216,L, + 121238664750,2.291019403999409,L, + 123163088000,2.390948273207725,L, + 125087511250,2.487600572605144,L, + 127011934500,2.581052501489594,L, + 128936357750,2.671375990290771,L, + 130860781000,2.758639767787197,L, + 132785204250,2.842909574549636,L, + 134709627500,2.924245174733323,L, + 136634050750,3.002704411502793,L, + 138558474000,3.078340218824113,L, + 140482897250,3.151206597880408,L, + 142407320500,3.221346450797403,L, + 144331743750,3.288804387248114,L, + 146256167000,3.353623095914854,L, + 148180590250,3.415842490715584,L, + 150105013500,3.475492667171335,L, + 152029436750,3.532609056888427,L, + 153953860000,3.587218767180127,L, + 155878283250,3.639347197812413,L, + 157802706500,3.689017187230321,L, + 159727129750,3.736244957133129,L, + 161651553000,3.781050144314702,L, + 163575976250,3.823440859624679,L, + 165500399500,3.863419237497176,L, + 167424822750,3.900994669442301,L, + 169349246000,3.936155629515830,L, + 171273669250,3.968896995075885,L, + 173198092500,3.999194433573549,L, + 175122515750,4.027024039346726,L, + 177046939000,4.052340135505341,L, + 178971362250,4.075086372988744,L, + 180895785500,4.095180789526892,L, + 182820208750,4.112515382753537,L, + 184744632000,4.126920678599896,L, + 186669055250,4.138140544972095,L, + 188593478500,4.145734434668669,L, + 190517901750,4.148649644783791,L, + 192442325000,-20.443357242465751,L, + 194366748250,-23.594760421728211,L, + 196291171500,-25.119202295412212,L, + 198215594750,-26.241530442090632,L, + 200140018000,-27.150973545171109,L, + 202064441250,-27.922865176104189,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194800078815060,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223450473479598,L, + 211686557500,-30.672135845340843,L, + 213610980750,-31.085560365611954,L, + 215535404000,-31.468327581793503,L, + 217459827250,-31.824098475280614,L, + 219384250500,-32.155830517983901,L, + 221308673750,-32.465975747815399,L, + 223233097000,-32.756566146053174,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285789693512513,L, + 229006366750,-33.527148088212904,L, + 230930790000,-33.754555821533565,L, + 232855213250,-33.968952044485370,L, + 234779636500,-34.171207606187501,L, + 236704059750,-34.362060167070304,L, + 238628483000,-34.542175670577869,L, + 240552906250,-34.712155173357147,L, + 242477329500,-34.872528015068816,L, + 244401752750,-35.023785969333119,L, + 246326176000,-35.166335432405660,L, + 248250599250,-35.300579385447485,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656801071419821,L, + 255948292250,-35.760985361924462,L, + 257872715500,-35.858288236840323,L, + 259797138750,-35.948911186747921,L, + 261721562000,-36.033042041849427,L, + 263645985250,-36.110837896495767,L, + 265570408500,-36.182408033713642,L, + 267494831750,-36.247868566718950,L, + 269419255000,-36.307294627592562,L, + 271343678250,-36.360737442753248,L, + 273268101500,-36.408190182011843,L, + 275192524750,-36.449611864233326,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513856623566369,L, + 280965794500,-36.536085474220144,L, + 282890217750,-36.550876248867787,L, + 284814641000,-36.556466758703436,L, + 286739064250,-36.556541890784302,L, + 288663487500,-36.223027168707645,L, + 290587910750,-35.750091210198306,L, + 292512334000,-35.239493588605562,L, + 294436757250,-34.709160135406101,L, + 296361180500,-34.166388907728063,L, + 298285603750,-33.614994566222897,L, + 300210027000,-33.057306205397573,L, + 302134450250,-32.494877693288267,L, + 304058873500,-31.928791614878421,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788853532972439,L, + 309832143250,-30.216189982391885,L, + 311756566500,-29.642368714747011,L, + 313680989750,-29.067802956482609,L, + 315605413000,-28.492875198192198,L, + 317529836250,-27.917935487070739,L, + 319454259500,-27.343371436353628,L, + 321378682750,-26.769551876256049,L, + 323303106000,-26.196886618128200,L, + 325227529250,-25.625841822380934,L, + 327151952500,-25.056950243769514,L, + 329076375750,-24.490870995548839,L, + 331000799000,-23.928439068344947,L, + 332925222250,-23.370750707519623,L, + 334849645500,-22.819358073561748,L, + 336774068750,-22.276578308147247,L, + 338698492000,-21.746255100231540,L, + 340622915250,-21.235650648449628,L, + 342547338500,-20.762714689940285,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998294453681410 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,-30.998294453681410,L, + 1924423250,-30.999073095246789,L, + 3848846500,-31.002385736994242,L, + 5773269750,-31.008604624233531,L, + 7697693000,-31.017897096599320,L, + 9622116250,-31.030403172969596,L, + 11546539500,-31.046324343924873,L, + 13470962750,-31.065882590613175,L, + 15395386000,-31.089371611168815,L, + 17319809250,-31.117119254671952,L, + 19244232500,-31.149566068324052,L, + 21168655750,-31.187237976691200,L, + 23093079000,-31.230787262839140,L, + 25017502250,-31.281013058900758,L, + 26941925500,-31.339035515899933,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526640321832403,L, + 32715195250,-31.666020577130066,L, + 34639618500,-31.831024287098998,L, + 36564041750,-32.014203130449310,L, + 38488465000,-32.205120578129232,L, + 40412888250,-32.391632553794501,L, + 42337311500,-32.561905754708086,L, + 44261734750,-32.706354010369893,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895956646634595,L, + 50035004500,-32.937726668503743,L, + 51959427750,-32.961396689072387,L, + 53883851000,-32.983806539739170,L, + 55808274250,-33.005082579003727,L, + 57732697500,-33.025323844609034,L, + 59657120750,-33.044619129014293,L, + 61581544000,-33.063053809584126,L, + 63505967250,-33.080682527831904,L, + 65430390500,-33.097573585649322,L, + 67354813750,-33.113785039644327,L, + 69279237000,-33.129340795479010,L, + 71203660250,-33.144298909761311,L, + 73128083500,-33.158696948531677,L, + 75052506750,-33.172551987263027,L, + 76976930000,-33.185915252374144,L, + 78901353250,-33.198796989148768,L, + 80825776500,-33.211234763627346,L, + 82750199750,-33.223238821093624,L, + 84674623000,-33.234833067209699,L, + 86599046250,-33.246037992543094,L, + 88523469500,-33.256870672566720,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287278674751569,L, + 96221162500,-33.296776052792460,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314852148430873,L, + 101994432250,-33.323471847163418,L, + 103918855500,-33.331811508139992,L, + 105843278750,-33.339891621928103,L, + 107767702000,-33.347712188527758,L, + 109692125250,-33.355290283411875,L, + 111616548500,-33.362619076391290,L, + 113540971750,-33.369732718411846,L, + 115465395000,-33.376610718906036,L, + 117389818250,-33.383273568441375,L, + 119314241500,-33.389714436828690,L, + 121238664750,-33.395943569351729,L, + 123163088000,-33.401991701861768,L, + 125087511250,-33.407821268318365,L, + 127011934500,-33.413466419667373,L, + 128936357750,-33.418916910625036,L, + 130860781000,-33.424186401569692,L, + 132785204250,-33.429278307595929,L, + 134709627500,-33.434185798514577,L, + 136634050750,-33.438922534703977,L, + 138558474000,-33.443491931258706,L, + 140482897250,-33.447890573084187,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456199498209500,L, + 146256167000,-33.460109781509324,L, + 148180590250,-33.463873215741998,L, + 150105013500,-33.467469310340000,L, + 152029436750,-33.470925386060024,L, + 153953860000,-33.474220952334548,L, + 155878283250,-33.477366254447340,L, + 157802706500,-33.480371537682139,L, + 159727129750,-33.483223141660616,L, + 161651553000,-33.485931311666519,L, + 163575976250,-33.488485802416101,L, + 165500399500,-33.490896859193114,L, + 167424822750,-33.493171312186725,L, + 169349246000,-33.495295501018596,L, + 171273669250,-33.497266010594139,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500786973111275,L, + 177046939000,-33.502310105296189,L, + 178971362250,-33.503679558224775,L, + 180895785500,-33.504898746991621,L, + 182820208750,-33.505943765934632,L, + 184744632000,-33.506814615053806,L, + 186669055250,-33.507487388687046,L, + 188593478500,-33.507948426456025,L, + 190517901750,-33.508122596279861,L, + 192442325000,-30.971079564933532,L, + 194366748250,-29.975500946230152,L, + 196291171500,-29.170225058181391,L, + 198215594750,-28.412338730141400,L, + 200140018000,-27.679725809577715,L, + 202064441250,-26.963590720386662,L, + 203988864500,-26.259338452804123,L, + 205913287750,-25.564250591540432,L, + 207837711000,-24.876535919485764,L, + 209762134250,-24.194927436549076,L, + 211686557500,-23.518533803043685,L, + 213610980750,-22.846663462316126,L, + 215535404000,-22.178802442631362,L, + 217459827250,-21.514522149618973,L, + 219384250500,-20.853481073820454,L, + 221308673750,-20.195421375594645,L, + 223233097000,-19.540107413415175,L, + 225157520250,-18.887361602363626,L, + 227081943500,-18.237018310352628,L, + 229006366750,-17.588964839260871,L, + 230930790000,-16.943081660777885,L, + 232855213250,-16.299278274897162,L, + 234779636500,-15.657491502368883,L, + 236704059750,-15.017656456395933,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743680180896877,L, + 242477329500,-13.109489432499288,L, + 244401752750,-12.477131736120198,L, + 246326176000,-11.846630143648056,L, + 248250599250,-11.217984655082864,L, + 250175022500,-10.591220029860361,L, + 252099445750,-9.966385786852030,L, + 254023869000,-9.343522053419244,L, + 255948292250,-8.722710791832045,L, + 257872715500,-8.104035671907765,L, + 259797138750,-7.487616221956876,L, + 261721562000,-6.873604413688414,L, + 263645985250,-6.262179966454915,L, + 265570408500,-5.653581509990504,L, + 267494831750,-5.048106157524076,L, + 269419255000,-4.446154328895725,L, + 271343678250,-3.848248960463776,L, + 273268101500,-3.255129206762473,L, + 275192524750,-2.667856948764338,L, + 277116948000,-2.088030023848329,L, + 279041371250,-1.518363218766112,L, + 280965794500,-0.964058896509406,L, + 282890217750,-0.438165333074710,L, + 284814641000,-0.024742478662728,L, + 286739064250,-0.000005139521921,L, + 288663487500,-0.641060264516172,L, + 290587910750,-1.550085605479367,L, + 292512334000,-2.531508230241097,L, + 294436757250,-3.550852492161505,L, + 296361180500,-4.594117997545967,L, + 298285603750,-5.653944363790160,L, + 300210027000,-6.725872971469951,L, + 302134450250,-7.806923296786282,L, + 304058873500,-8.894978407983274,L, + 305983296750,-9.988440467681968,L, + 307907720000,-11.086049305980502,L, + 309832143250,-12.186763319030447,L, + 311756566500,-13.289702266202523,L, + 313680989750,-14.394073845553004,L, + 317529836250,-16.604220608128404,L, + 319454259500,-17.708592187478889,L, + 321378682750,-18.811532842198254,L, + 323303106000,-19.912251977890080,L, + 325227529250,-21.009863377509550,L, + 327151952500,-22.103316899471782,L, + 329076375750,-23.191374571989712,L, + 331000799000,-24.272424470419221,L, + 332925222250,-25.344349236117605,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447443028736963,L, + 338698492000,-28.466794120846540,L, + 340622915250,-29.448206927211338,L, + 342547338500,-30.357240218941616,L, + 344471761750,-30.998294453681410,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344967603683 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344967603683,L, + 1924423250,0.321910500526428,L, + 3848846500,0.322999149560928,L, + 5773269750,0.323413133621216,L, + 7697693000,0.323450118303299,L, + 9622116250,0.323262542486191,L, + 11546539500,0.322943389415741,L, + 13470962750,0.322556555271149,L, + 15395386000,0.322150558233261,L, + 17319809250,0.321765452623367,L, + 19244232500,0.321436882019043,L, + 21168655750,0.321198970079422,L, + 23093079000,0.321086406707764,L, + 25017502250,0.321136683225632,L, + 26941925500,0.321392446756363,L, + 28866348750,0.326478868722916,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890575408936,L, + 34639618500,0.396891266107559,L, + 36564041750,0.435117304325104,L, + 38488465000,0.476715862751007,L, + 40412888250,0.518270909786224,L, + 42337311500,0.556369721889496,L, + 44261734750,0.588167786598206,L, + 46186158000,0.611717343330383,L, + 48110581250,0.625994682312012,L, + 50035004500,0.630722999572754,L, + 51959427750,0.630567073822021,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406332969666,L, + 57732697500,0.628449499607086,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877678394318,L, + 63505967250,0.624292612075806,L, + 65430390500,0.622524559497833,L, + 67354813750,0.620584487915039,L, + 69279237000,0.618481397628784,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818407058716,L, + 75052506750,0.611272275447845,L, + 76976930000,0.608591020107269,L, + 78901353250,0.605779826641083,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610069274902,L, + 86599046250,0.593320608139038,L, + 88523469500,0.589919924736023,L, + 90447892750,0.586410522460938,L, + 92372316000,0.582794845104218,L, + 94296739250,0.579075157642365,L, + 96221162500,0.575253069400787,L, + 98145585750,0.571330130100250,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187122344971,L, + 103918855500,0.558969020843506,L, + 105843278750,0.554654419422150,L, + 107767702000,0.550243735313416,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135489940643,L, + 113540971750,0.536438047885895,L, + 115465395000,0.531644940376282,L, + 117389818250,0.526755809783936,L, + 119314241500,0.521769881248474,L, + 121238664750,0.516686558723450,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223499774933,L, + 127011934500,0.500841140747070,L, + 128936357750,0.495356082916260,L, + 130860781000,0.489766448736191,L, + 132785204250,0.484069973230362,L, + 134709627500,0.478264242410660,L, + 136634050750,0.472346395254135,L, + 138558474000,0.466313123703003,L, + 140482897250,0.460160881280899,L, + 142407320500,0.453885614871979,L, + 144331743750,0.447482734918594,L, + 146256167000,0.440946996212006,L, + 148180590250,0.434272557497025,L, + 150105013500,0.427452981472015,L, + 152029436750,0.420480519533157,L, + 153953860000,0.413346797227859,L, + 155878283250,0.406042069196701,L, + 157802706500,0.398555040359497,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979869842529,L, + 163575976250,0.374858856201172,L, + 165500399500,0.366488575935364,L, + 167424822750,0.357843667268753,L, + 169349246000,0.348893463611603,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915642738342,L, + 175122515750,0.319778949022293,L, + 177046939000,0.309108674526215,L, + 178971362250,0.297793835401535,L, + 180895785500,0.285674840211868,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887303829193,L, + 186669055250,0.241029411554337,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769341230392,L, + 192442325000,0.000044941902161,L, + 194366748250,0.000040118604375,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067656765,L, + 200140018000,0.000034675722418,L, + 202064441250,0.000033494314266,L, + 203988864500,0.000032463547541,L, + 205913287750,0.000031547569961,L, + 207837711000,0.000030722902011,L, + 209762134250,0.000029973174605,L, + 211686557500,0.000029286447898,L, + 213610980750,0.000028653677873,L, + 215535404000,0.000028067834137,L, + 217459827250,0.000027523314202,L, + 219384250500,0.000027015581509,L, + 221308673750,0.000026540892577,L, + 223233097000,0.000026096120564,L, + 225157520250,0.000025678618840,L, + 227081943500,0.000025286126402,L, + 229006366750,0.000024916704206,L, + 230930790000,0.000024568653316,L, + 232855213250,0.000024240500352,L, + 234779636500,0.000023930946554,L, + 236704059750,0.000023638840503,L, + 238628483000,0.000023363156288,L, + 240552906250,0.000023102995328,L, + 242477329500,0.000022857526346,L, + 244401752750,0.000022626025384,L, + 246326176000,0.000022407839424,L, + 248250599250,0.000022202364562,L, + 250175022500,0.000022009071472,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497706257,L, + 257872715500,0.000021348780137,L, + 259797138750,0.000021210074920,L, + 261721562000,0.000021081306841,L, + 263645985250,0.000020962252165,L, + 265570408500,0.000020852705347,L, + 267494831750,0.000020752522687,L, + 269419255000,0.000020661569579,L, + 271343678250,0.000020579791453,L, + 273268101500,0.000020507177396,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389798010,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311521439,L, + 282890217750,0.000020288927772,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232565641403198,L, + 290587910750,0.245429649949074,L, + 292512334000,0.254731386899948,L, + 294436757250,0.262120485305786,L, + 296361180500,0.268265932798386,L, + 298285603750,0.273518383502960,L, + 300210027000,0.278088837862015,L, + 302134450250,0.282116144895554,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903206586838,L, + 307907720000,0.291787862777710,L, + 309832143250,0.294393271207809,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894405364990,L, + 315605413000,0.300840169191360,L, + 317529836250,0.302609384059906,L, + 319454259500,0.304218381643295,L, + 321378682750,0.305681318044662,L, + 323303106000,0.307010591030121,L, + 325227529250,0.308217525482178,L, + 327151952500,0.309312224388123,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203867197037,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452243804932,L, + 338698492000,0.314102530479431,L, + 340622915250,0.314752787351608,L, + 342547338500,0.315492540597916,L, + 344471761750,0.316851437091827,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844671964645 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.316844671964645,L, + 1924423250,0.317553371191025,L, + 3848846500,0.317994207143784,L, + 5773269750,0.318131387233734,L, + 7697693000,0.317930310964584,L, + 9622116250,0.317365050315857,L, + 11546539500,0.316432714462280,L, + 13470962750,0.315173476934433,L, + 15395386000,0.313687086105347,L, + 17319809250,0.312128514051437,L, + 19244232500,0.310671806335449,L, + 21168655750,0.309460848569870,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061301708221,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985611915588,L, + 30790772000,0.324338644742966,L, + 32715195250,0.344708025455475,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122399330139,L, + 38488465000,0.441004633903503,L, + 40412888250,0.476886838674545,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301301956177,L, + 46186158000,0.557670533657074,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115574359894,L, + 51959427750,0.573916673660278,L, + 53883851000,0.573346555233002,L, + 55808274250,0.572440505027771,L, + 57732697500,0.571227610111237,L, + 59657120750,0.569733500480652,L, + 61581544000,0.567979395389557,L, + 63505967250,0.565984308719635,L, + 65430390500,0.563764512538910,L, + 67354813750,0.561334133148193,L, + 69279237000,0.558706045150757,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900731563568,L, + 75052506750,0.549742341041565,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954802513123,L, + 80825776500,0.539339423179626,L, + 82750199750,0.535584449768066,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676701545715,L, + 88523469500,0.523533463478088,L, + 90447892750,0.519269347190857,L, + 92372316000,0.514888167381287,L, + 94296739250,0.510393202304840,L, + 96221162500,0.505787551403046,L, + 98145585750,0.501074135303497,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333305835724,L, + 103918855500,0.486310362815857,L, + 105843278750,0.481188207864761,L, + 107767702000,0.475968480110168,L, + 109692125250,0.470652669668198,L, + 111616548500,0.465241938829422,L, + 113540971750,0.459737390279770,L, + 115465395000,0.454139977693558,L, + 117389818250,0.448450386524200,L, + 119314241500,0.442669242620468,L, + 121238664750,0.436796784400940,L, + 123163088000,0.430833280086517,L, + 125087511250,0.424778819084167,L, + 127011934500,0.418633192777634,L, + 128936357750,0.412396073341370,L, + 130860781000,0.406066924333572,L, + 132785204250,0.399644970893860,L, + 134709627500,0.393129318952560,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811793565750,L, + 140482897250,0.373006731271744,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093695878983,L, + 146256167000,0.351980537176132,L, + 148180590250,0.344758927822113,L, + 150105013500,0.337425053119659,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402834892273,L, + 155878283250,0.314703822135925,L, + 157802706500,0.306871086359024,L, + 159727129750,0.298896700143814,L, + 161651553000,0.290771842002869,L, + 163575976250,0.282485574483871,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375286340714,L, + 169349246000,0.256517112255096,L, + 171273669250,0.247427463531494,L, + 173198092500,0.238077089190483,L, + 175122515750,0.228428348898888,L, + 177046939000,0.218431457877159,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090566158295,L, + 182820208750,0.185499250888824,L, + 184744632000,0.172995239496231,L, + 186669055250,0.159099236130714,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520820706,L, + 194366748250,0.000026909170629,L, + 196291171500,0.000026129557227,L, + 198215594750,0.000025555593311,L, + 200140018000,0.000025090486815,L, + 202064441250,0.000024695735192,L, + 203988864500,0.000024351316824,L, + 205913287750,0.000024045251848,L, + 207837711000,0.000023769700420,L, + 209762134250,0.000023519189199,L, + 211686557500,0.000023289725505,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882535632,L, + 217459827250,0.000022700594855,L, + 219384250500,0.000022530941351,L, + 221308673750,0.000022372329113,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084210286,L, + 227081943500,0.000021953061150,L, + 229006366750,0.000021829624529,L, + 230930790000,0.000021713325623,L, + 232855213250,0.000021603676942,L, + 234779636500,0.000021500243747,L, + 236704059750,0.000021402638595,L, + 238628483000,0.000021310521333,L, + 240552906250,0.000021223591830,L, + 242477329500,0.000021141571779,L, + 244401752750,0.000021064221073,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922658223,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797395337,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687202777,L, + 257872715500,0.000020637440684,L, + 259797138750,0.000020591092834,L, + 261721562000,0.000020548066459,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471683456,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407818738,L, + 271343678250,0.000020380492060,L, + 273268101500,0.000020356224923,L, + 275192524750,0.000020335046429,L, + 277116948000,0.000020317005692,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290854081,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232919037342072,L, + 290587910750,0.245930269360542,L, + 292512334000,0.255280971527100,L, + 294436757250,0.262665182352066,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961156606674,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234037399292,L, + 311756566500,0.296479791402817,L, + 313680989750,0.298507720232010,L, + 315605413000,0.300342172384262,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509086370468,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115329265594,L, + 325227529250,0.307243078947067,L, + 327151952500,0.308270871639252,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076832771301,L, + 332925222250,0.310882627964020,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149780035019,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037369728088,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212585687637 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212585687637,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968743085861,L, + 5773269750,0.318790256977081,L, + 7697693000,0.318605095148087,L, + 9622116250,0.318420708179474,L, + 11546539500,0.318241685628891,L, + 13470962750,0.318071514368057,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769199609756,L, + 19244232500,0.317642748355865,L, + 21168655750,0.317536890506744,L, + 23093079000,0.317455232143402,L, + 25017502250,0.317402094602585,L, + 26941925500,0.317382931709290,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921138525009,L, + 32715195250,0.358883112668991,L, + 34639618500,0.389874815940857,L, + 36564041750,0.426987320184708,L, + 38488465000,0.467436671257019,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998466968536,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952174186707,L, + 48110581250,0.612877607345581,L, + 50035004500,0.617490351200104,L, + 51959427750,0.617330193519592,L, + 53883851000,0.616870701313019,L, + 55808274250,0.616138458251953,L, + 57732697500,0.615156650543213,L, + 59657120750,0.613944649696350,L, + 61581544000,0.612519085407257,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082639217377,L, + 67354813750,0.607095539569855,L, + 69279237000,0.604942381381989,L, + 71203660250,0.602631688117981,L, + 73128083500,0.600171208381653,L, + 75052506750,0.597567498683929,L, + 76976930000,0.594826698303223,L, + 78901353250,0.591954171657562,L, + 80825776500,0.588954746723175,L, + 82750199750,0.585832893848419,L, + 84674623000,0.582592248916626,L, + 86599046250,0.579236567020416,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191953659058,L, + 92372316000,0.568508267402649,L, + 94296739250,0.564720034599304,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837916374207,L, + 100070009000,0.552747189998627,L, + 101994432250,0.548558354377747,L, + 103918855500,0.544272601604462,L, + 105843278750,0.539890766143799,L, + 107767702000,0.535413563251495,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174783706665,L, + 113540971750,0.521413803100586,L, + 115465395000,0.516558289527893,L, + 117389818250,0.511608004570007,L, + 119314241500,0.506562650203705,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183931827545,L, + 125087511250,0.490848749876022,L, + 127011934500,0.485414803028107,L, + 128936357750,0.479880541563034,L, + 130860781000,0.474244326353073,L, + 132785204250,0.468504160642624,L, + 134709627500,0.462657660245895,L, + 136634050750,0.456702321767807,L, + 138558474000,0.450635224580765,L, + 140482897250,0.444453001022339,L, + 142407320500,0.438151925802231,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175338983536,L, + 148180590250,0.418489575386047,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692530632019,L, + 153953860000,0.397566080093384,L, + 155878283250,0.390275985002518,L, + 157802706500,0.382811665534973,L, + 159727129750,0.375160872936249,L, + 161651553000,0.367309540510178,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935190916061,L, + 167424822750,0.342368543148041,L, + 169349246000,0.333512187004089,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778625965118,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371424198151,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325160980225,L, + 186669055250,0.228012204170227,L, + 188593478500,0.207745239138603,L, + 190517901750,0.171379074454308,L, + 192442325000,0.000042378902435,L, + 194366748250,0.000038056878111,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426931961,L, + 200140018000,0.000033179658203,L, + 202064441250,0.000032121028198,L, + 203988864500,0.000031197389035,L, + 205913287750,0.000030376606446,L, + 207837711000,0.000029637649277,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350481443,L, + 213610980750,0.000027783471523,L, + 215535404000,0.000027258511182,L, + 217459827250,0.000026770581826,L, + 219384250500,0.000026315621653,L, + 221308673750,0.000025890265533,L, + 223233097000,0.000025491715860,L, + 225157520250,0.000025117600671,L, + 227081943500,0.000024765902708,L, + 229006366750,0.000024434872103,L, + 230930790000,0.000024122995455,L, + 232855213250,0.000023828948542,L, + 234779636500,0.000023551561753,L, + 236704059750,0.000023289810997,L, + 238628483000,0.000023042783141,L, + 240552906250,0.000022809656002,L, + 242477329500,0.000022589701985,L, + 244401752750,0.000022382260795,L, + 246326176000,0.000022186750357,L, + 248250599250,0.000022002630431,L, + 250175022500,0.000021829426260,L, + 252099445750,0.000021666706743,L, + 254023869000,0.000021514082619,L, + 255948292250,0.000021371204639,L, + 257872715500,0.000021237750843,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998078980,L, + 263645985250,0.000020891397071,L, + 265570408500,0.000020793238946,L, + 267494831750,0.000020703464543,L, + 269419255000,0.000020621966542,L, + 271343678250,0.000020548686734,L, + 273268101500,0.000020483617845,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378432964,L, + 279041371250,0.000020338753529,L, + 280965794500,0.000020308290914,L, + 282890217750,0.000020288054657,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435789227486,L, + 292512334000,0.254741221666336,L, + 294436757250,0.262134075164795,L, + 296361180500,0.268283247947693,L, + 298285603750,0.273539334535599,L, + 300210027000,0.278113365173340,L, + 302134450250,0.282144129276276,L, + 304058873500,0.285728603601456,L, + 305983296750,0.288937807083130,L, + 307907720000,0.291825562715530,L, + 309832143250,0.294433921575546,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940479755402,L, + 315605413000,0.300888657569885,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304270982742310,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066202163696,L, + 325227529250,0.308274149894714,L, + 327151952500,0.309369474649429,L, + 329076375750,0.310361951589584,L, + 331000799000,0.311260938644409,L, + 332925222250,0.312076270580292,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503116369247,L, + 338698492000,0.314148783683777,L, + 340622915250,0.314791977405548,L, + 342547338500,0.315520226955414,L, + 344471761750,0.316851437091827,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_054" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678383827209 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,-0.063678383827209,L, + 51959427750,-0.063678383827209,L, + 53883851000,0.011904954910278,L, + 55808274250,0.011490821838379,L, + 57732697500,0.011004090309143,L, + 59657120750,0.010502338409424,L, + 61581544000,0.009992837905884,L, + 63505967250,0.009478211402893,L, + 65430390500,0.008960127830505,L, + 67354813750,0.008439302444458,L, + 69279237000,0.007916331291199,L, + 71203660250,0.007391571998596,L, + 73128083500,0.006865501403809,L, + 75052506750,0.006338477134705,L, + 76976930000,0.005810022354126,L, + 78901353250,0.005280613899231,L, + 80825776500,0.004750728607178,L, + 82750199750,0.004219770431519,L, + 84674623000,0.003688335418701,L, + 86599046250,0.003156185150146,L, + 88523469500,0.002623677253723,L, + 90447892750,0.002090692520142,L, + 92372316000,0.001557111740112,L, + 94296739250,0.001023173332214,L, + 96221162500,0.000488877296448,L, + 98145585750,-0.000045537948608,L, + 101994432250,-0.001116037368774,L, + 103918855500,-0.001651525497437,L, + 105843278750,-0.002187252044678,L, + 107767702000,-0.002723455429077,L, + 111616548500,-0.003796100616455,L, + 113540971750,-0.004332900047302,L, + 115465395000,-0.004869937896729,L, + 117389818250,-0.005406856536865,L, + 119314241500,-0.005944132804871,L, + 121238664750,-0.006481766700745,L, + 123163088000,-0.007019162178040,L, + 125087511250,-0.007556915283203,L, + 127011934500,-0.008094787597656,L, + 128936357750,-0.008632898330688,L, + 130860781000,-0.009170770645142,L, + 132785204250,-0.009709000587463,L, + 134709627500,-0.010247588157654,L, + 136634050750,-0.010785818099976,L, + 138558474000,-0.011324286460876,L, + 142407320500,-0.012401700019836,L, + 146256167000,-0.013479351997375,L, + 150105013500,-0.014557242393494,L, + 157802706500,-0.016713976860046,L, + 159727129750,-0.017253279685974,L, + 161651553000,-0.017792820930481,L, + 163575976250,-0.018332123756409,L, + 165500399500,-0.018871545791626,L, + 167424822750,-0.019411087036133,L, + 169349246000,-0.019950509071350,L, + 171273669250,-0.020490050315857,L, + 173198092500,-0.021029472351074,L, + 175122515750,-0.021569371223450,L, + 177046939000,-0.022108793258667,L, + 182820208750,-0.023727774620056,L, + 184744632000,-0.024267315864563,L, + 186669055250,-0.024807214736938,L, + 188593478500,-0.025346755981445,L, + 190517901750,-0.025886654853821,L, + 192442325000,-0.026426196098328,L, + 194366748250,-0.026966094970703,L, + 196291171500,-0.027505517005920,L, + 198215594750,-0.028045296669006,L, + 202064441250,-0.029124617576599,L, + 203988864500,-0.029664397239685,L, + 205913287750,-0.030204057693481,L, + 207837711000,-0.030743360519409,L, + 211686557500,-0.031822681427002,L, + 213610980750,-0.032362222671509,L, + 219384250500,-0.033980488777161,L, + 223233097000,-0.035059094429016,L, + 225157520250,-0.035598278045654,L, + 227081943500,-0.036137580871582,L, + 229006366750,-0.036676764488220,L, + 230930790000,-0.037215709686279,L, + 232855213250,-0.037754774093628,L, + 234779636500,-0.038293957710266,L, + 236704059750,-0.038832783699036,L, + 240552906250,-0.039910197257996,L, + 242477329500,-0.040448665618896,L, + 246326176000,-0.041525840759277,L, + 248250599250,-0.042064070701599,L, + 250175022500,-0.042602181434631,L, + 252099445750,-0.043140530586243,L, + 255948292250,-0.044216275215149,L, + 257872715500,-0.044753909111023,L, + 259797138750,-0.045291662216187,L, + 263645985250,-0.046366214752197,L, + 265570408500,-0.046903371810913,L, + 267494831750,-0.047440290451050,L, + 271343678250,-0.048513412475586,L, + 273268101500,-0.049049735069275,L, + 275192524750,-0.049585938453674,L, + 277116948000,-0.050121665000916,L, + 280965794500,-0.051192402839661,L, + 282890217750,-0.051727533340454,L, + 284814641000,-0.052262067794800,L, + 286739064250,-0.052796244621277,L, + 288663487500,-0.053330183029175,L, + 290587910750,-0.053863883018494,L, + 292512334000,-0.054396867752075,L, + 294436757250,-0.054929614067078,L, + 296361180500,-0.055461525917053,L, + 298285603750,-0.055992960929871,L, + 300210027000,-0.056523799896240,L, + 302134450250,-0.057053804397583,L, + 304058873500,-0.057583212852478,L, + 305983296750,-0.058111548423767,L, + 307907720000,-0.058638691902161,L, + 309832143250,-0.059165000915527,L, + 311756566500,-0.059689640998840,L, + 313680989750,-0.060212612152100,L, + 315605413000,-0.060733199119568,L, + 317529836250,-0.061251401901245,L, + 319454259500,-0.061766028404236,L, + 321378682750,-0.062275648117065,L, + 323303106000,-0.062777280807495,L, + 325227529250,-0.063264012336731,L, + 327151952500,-0.063678383827209,L, + 344471761750,-0.063678383827209,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339818477631 + KeyVer: 4005 + KeyCount: 114 + Key: + 0,-0.087339818477631,L, + 55808274250,-0.087339818477631,L, + 57732697500,-0.087339699268341,L, + 59657120750,-0.087339818477631,L, + 61581544000,-0.087339699268341,L, + 63505967250,-0.087339818477631,L, + 65430390500,-0.087339699268341,L, + 67354813750,-0.087339937686920,L, + 69279237000,-0.087339937686920,L, + 71203660250,-0.087339818477631,L, + 73128083500,-0.087339818477631,L, + 75052506750,-0.087339937686920,L, + 78901353250,-0.087339699268341,L, + 80825776500,-0.087339699268341,L, + 82750199750,-0.087339937686920,L, + 84674623000,-0.087339699268341,L, + 88523469500,-0.087339937686920,L, + 90447892750,-0.087339818477631,L, + 92372316000,-0.087339937686920,L, + 94296739250,-0.087339818477631,L, + 96221162500,-0.087339818477631,L, + 98145585750,-0.087339937686920,L, + 100070009000,-0.087339818477631,L, + 109692125250,-0.087339818477631,L, + 111616548500,-0.087340056896210,L, + 113540971750,-0.087339818477631,L, + 115465395000,-0.087339699268341,L, + 117389818250,-0.087339937686920,L, + 119314241500,-0.087339937686920,L, + 121238664750,-0.087339818477631,L, + 123163088000,-0.087339818477631,L, + 125087511250,-0.087339580059052,L, + 127011934500,-0.087339818477631,L, + 130860781000,-0.087340056896210,L, + 132785204250,-0.087339818477631,L, + 134709627500,-0.087339699268341,L, + 136634050750,-0.087339818477631,L, + 138558474000,-0.087339818477631,L, + 140482897250,-0.087339937686920,L, + 142407320500,-0.087339699268341,L, + 144331743750,-0.087339937686920,L, + 148180590250,-0.087339699268341,L, + 150105013500,-0.087339937686920,L, + 152029436750,-0.087339937686920,L, + 153953860000,-0.087339818477631,L, + 155878283250,-0.087339818477631,L, + 157802706500,-0.087339699268341,L, + 159727129750,-0.087339818477631,L, + 161651553000,-0.087339818477631,L, + 163575976250,-0.087339937686920,L, + 173198092500,-0.087339937686920,L, + 175122515750,-0.087339818477631,L, + 178971362250,-0.087339818477631,L, + 180895785500,-0.087339699268341,L, + 182820208750,-0.087339699268341,L, + 188593478500,-0.087340056896210,L, + 190517901750,-0.087339818477631,L, + 192442325000,-0.087339937686920,L, + 194366748250,-0.087339818477631,L, + 196291171500,-0.087339818477631,L, + 198215594750,-0.087339699268341,L, + 200140018000,-0.087339818477631,L, + 202064441250,-0.087339580059052,L, + 205913287750,-0.087339818477631,L, + 207837711000,-0.087339699268341,L, + 209762134250,-0.087339818477631,L, + 217459827250,-0.087339818477631,L, + 219384250500,-0.087339699268341,L, + 221308673750,-0.087339818477631,L, + 223233097000,-0.087339699268341,L, + 225157520250,-0.087339818477631,L, + 227081943500,-0.087339699268341,L, + 229006366750,-0.087339818477631,L, + 230930790000,-0.087339818477631,L, + 232855213250,-0.087339699268341,L, + 234779636500,-0.087339699268341,L, + 236704059750,-0.087339937686920,L, + 238628483000,-0.087339699268341,L, + 242477329500,-0.087339937686920,L, + 244401752750,-0.087339818477631,L, + 246326176000,-0.087339818477631,L, + 248250599250,-0.087339699268341,L, + 250175022500,-0.087340056896210,L, + 252099445750,-0.087339699268341,L, + 254023869000,-0.087339937686920,L, + 255948292250,-0.087339818477631,L, + 259797138750,-0.087339818477631,L, + 261721562000,-0.087340056896210,L, + 263645985250,-0.087339818477631,L, + 265570408500,-0.087339818477631,L, + 267494831750,-0.087339699268341,L, + 269419255000,-0.087340056896210,L, + 271343678250,-0.087339937686920,L, + 273268101500,-0.087339699268341,L, + 277116948000,-0.087339699268341,L, + 279041371250,-0.087339818477631,L, + 280965794500,-0.087339699268341,L, + 282890217750,-0.087339818477631,L, + 284814641000,-0.087339818477631,L, + 286739064250,-0.087339699268341,L, + 288663487500,-0.087339818477631,L, + 290587910750,-0.087339699268341,L, + 294436757250,-0.087339937686920,L, + 296361180500,-0.087339699268341,L, + 298285603750,-0.087339937686920,L, + 300210027000,-0.087339937686920,L, + 304058873500,-0.087339699268341,L, + 307907720000,-0.087339937686920,L, + 313680989750,-0.087339937686920,L, + 315605413000,-0.087339818477631,L, + 323303106000,-0.087339818477631,L, + 325227529250,-0.087339937686920,L, + 327151952500,-0.087339818477631,L, + 344471761750,-0.087339818477631,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241570472717 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241570472717,L, + 51959427750,-0.570241570472717,L, + 53883851000,0.020681858062744,L, + 55808274250,0.022182703018188,L, + 57732697500,0.023703217506409,L, + 59657120750,0.025243759155273,L, + 61581544000,0.026805043220520,L, + 63505967250,0.028387904167175,L, + 65430390500,0.029992818832397,L, + 67354813750,0.031620502471924,L, + 69279237000,0.033271789550781,L, + 71203660250,0.034947514533997,L, + 73128083500,0.036648631095886,L, + 75052506750,0.038375854492188,L, + 76976930000,0.040130138397217,L, + 78901353250,0.041912674903870,L, + 80825776500,0.043724298477173,L, + 82750199750,0.045566320419312,L, + 84674623000,0.047439932823181,L, + 86599046250,0.049346327781677,L, + 88523469500,0.051287055015564,L, + 90447892750,0.053263425827026,L, + 92372316000,0.055277109146118,L, + 94296739250,0.057329654693604,L, + 96221162500,0.059423208236694,L, + 98145585750,0.061559319496155,L, + 100070009000,0.063740134239197,L, + 101994432250,0.065968155860901,L, + 103918855500,0.068245649337769,L, + 105843278750,0.070575237274170,L, + 107767702000,0.072959899902344,L, + 109692125250,0.075402975082397,L, + 111616548500,0.077907443046570,L, + 113540971750,0.080477356910706,L, + 115465395000,0.083116769790649,L, + 117389818250,0.085830330848694,L, + 119314241500,0.088622808456421,L, + 121238664750,0.091499924659729,L, + 123163088000,0.094467997550964,L, + 125087511250,0.097533702850342,L, + 127011934500,0.100705027580261,L, + 128936357750,0.103990435600281,L, + 130860781000,0.107399940490723,L, + 132785204250,0.110944747924805,L, + 134709627500,0.114637374877930,L, + 136634050750,0.118492841720581,L, + 138558474000,0.122527480125427,L, + 140482897250,0.126760959625244,L, + 142407320500,0.131215333938599,L, + 144331743750,0.135916709899902,L, + 146256167000,0.140894889831543,L, + 148180590250,0.146184325218201,L, + 150105013500,0.151823639869690,L, + 152029436750,0.157855391502380,L, + 153953860000,0.164323091506958,L, + 155878283250,0.171265721321106,L, + 157802706500,0.178704857826233,L, + 159727129750,0.186625242233276,L, + 161651553000,0.194946050643921,L, + 163575976250,0.203497052192688,L, + 165500399500,0.212026476860046,L, + 167424822750,0.220256805419922,L, + 169349246000,0.227962732315063,L, + 171273669250,0.235020399093628,L, + 173198092500,0.241793751716614,L, + 175122515750,0.248681664466858,L, + 177046939000,0.255688071250916,L, + 178971362250,0.262817025184631,L, + 180895785500,0.270072460174561,L, + 182820208750,0.277458190917969,L, + 184744632000,0.284978270530701,L, + 186669055250,0.292636513710022,L, + 188593478500,0.300436496734619,L, + 190517901750,0.308381795883179,L, + 192442325000,0.316475629806519,L, + 194366748250,0.324720740318298,L, + 196291171500,0.333120107650757,L, + 198215594750,0.341675639152527,L, + 200140018000,0.350389242172241,L, + 202064441250,0.359262228012085,L, + 203988864500,0.368295550346375,L, + 205913287750,0.377489328384399,L, + 207837711000,0.386842727661133,L, + 209762134250,0.396355032920837,L, + 211686557500,0.406024336814880,L, + 213610980750,0.415847897529602,L, + 215535404000,0.425822854042053,L, + 217459827250,0.435945034027100,L, + 219384250500,0.446210026741028,L, + 221308673750,0.456612467765808,L, + 223233097000,0.467146515846252,L, + 225157520250,0.477805972099304,L, + 227081943500,0.488584041595459,L, + 229006366750,0.499473452568054,L, + 230930790000,0.510466814041138,L, + 232855213250,0.521556615829468,L, + 234779636500,0.532734870910645,L, + 236704059750,0.543993592262268,L, + 238628483000,0.555325269699097,L, + 240552906250,0.566721677780151,L, + 242477329500,0.578175783157349,L, + 244401752750,0.589679718017578,L, + 246326176000,0.601226806640625,L, + 248250599250,0.612809896469116,L, + 250175022500,0.624422550201416,L, + 252099445750,0.636058688163757,L, + 254023869000,0.647712469100952,L, + 255948292250,0.659378528594971,L, + 257872715500,0.671051740646362,L, + 259797138750,0.682727336883545,L, + 261721562000,0.694401264190674,L, + 263645985250,0.706069707870483,L, + 265570408500,0.717728495597839,L, + 267494831750,0.729374527931213,L, + 269419255000,0.741005182266235,L, + 271343678250,0.752798557281494,L, + 273268101500,0.764907240867615,L, + 275192524750,0.777295470237732,L, + 277116948000,0.789932608604431,L, + 279041371250,0.802792787551880,L, + 280965794500,0.815852999687195,L, + 282890217750,0.829093694686890,L, + 284814641000,0.842497110366821,L, + 286739064250,0.856047391891479,L, + 288663487500,0.869729638099670,L, + 290587910750,0.883530735969543,L, + 292512334000,0.897437691688538,L, + 294436757250,0.911438703536987,L, + 296361180500,0.925521850585938,L, + 298285603750,0.939675331115723,L, + 300210027000,0.953887701034546,L, + 302134450250,0.968146324157715,L, + 304058873500,0.982438325881958,L, + 305983296750,0.996749401092529,L, + 307907720000,1.011063337326050,L, + 309832143250,1.025361537933350,L, + 311756566500,1.039621591567993,L, + 313680989750,1.053814172744751,L, + 315605413000,1.067902326583862,L, + 317529836250,1.081833362579346,L, + 319454259500,1.095528841018677,L, + 321378682750,1.108861207962036,L, + 323303106000,1.121590614318848,L, + 325227529250,1.133138656616211,L, + 327151952500,1.140674114227295,L, + 329076375750,-0.570241570472717,L, + 344471761750,-0.570241570472717,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,30.670462448994193,L, + 51959427750,30.670462448994193,L, + 53883851000,33.480952103761588,L, + 55808274250,33.465546612088644,L, + 57732697500,33.447446610788141,L, + 59657120750,33.428793364164861,L, + 61581544000,33.409843004312691,L, + 63505967250,33.390711644447507,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352076679407389,L, + 69279237000,33.332634545934972,L, + 71203660250,33.313124110570861,L, + 73128083500,33.293559033693384,L, + 75052506750,33.273956390775481,L, + 76976930000,33.254312766722549,L, + 78901353250,33.234631576629184,L, + 80825776500,33.214923065779146,L, + 82750199750,33.195183819077833,L, + 84674623000,33.175417251619848,L, + 86599046250,33.155633608688930,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116008266219161,L, + 92372316000,33.096169981774885,L, + 94296739250,33.076321452046862,L, + 96221162500,33.056445601562153,L, + 98145585750,33.036562920888272,L, + 100070009000,33.016676825119809,L, + 101994432250,32.996773653878421,L, + 103918855500,32.976860237353279,L, + 105843278750,32.956936575544376,L, + 107767702000,32.937006083546308,L, + 109692125250,32.917065346264486,L, + 111616548500,32.897110948604322,L, + 113540971750,32.877149720754986,L, + 115465395000,32.857191908000239,L, + 117389818250,32.837220434867149,L, + 119314241500,32.817242131544894,L, + 121238664750,32.797260413128051,L, + 127011934500,32.737274276742497,L, + 130860781000,32.697263028584622,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617185890755508,L, + 142407320500,32.577126831273439,L, + 144331743750,32.557090471343237,L, + 146256167000,32.537050696318445,L, + 148180590250,32.517014336388243,L, + 150105013500,32.496974561363452,L, + 152029436750,32.476921125960324,L, + 153953860000,32.456877935840950,L, + 155878283250,32.436827915532412,L, + 157802706500,32.416774480129277,L, + 159727129750,32.396724459820739,L, + 161651553000,32.376667609323022,L, + 163575976250,32.356607343730722,L, + 165500399500,32.336550493233013,L, + 169349246000,32.296429962048414,L, + 171273669250,32.276362866266943,L, + 173198092500,32.256302600674644,L, + 175122515750,32.236238919987763,L, + 177046939000,32.216178654395463,L, + 178971362250,32.196104728424828,L, + 180895785500,32.176041047737939,L, + 182820208750,32.155973951956476,L, + 184744632000,32.135910271269587,L, + 186669055250,32.115839760393534,L, + 192442325000,32.055638473049129,L, + 194366748250,32.035564547078494,L, + 198215594750,31.995430355515555,L, + 200140018000,31.975359844639499,L, + 205913287750,31.915168802578851,L, + 207837711000,31.895101706797380,L, + 209762134250,31.875038026110499,L, + 211686557500,31.854981175612785,L, + 213610980750,31.834920910020486,L, + 215535404000,31.814853814239015,L, + 217459827250,31.794793548646719,L, + 223233097000,31.734633242437333,L, + 225157520250,31.714576391939620,L, + 229006366750,31.674483181511700,L, + 232855213250,31.634396801272953,L, + 234779636500,31.614360441342750,L, + 236704059750,31.594317251223377,L, + 238628483000,31.574287721482342,L, + 240552906250,31.554251361552140,L, + 242477329500,31.534218416716520,L, + 244401752750,31.514192302070072,L, + 246326176000,31.494179847801963,L, + 248250599250,31.474160563344686,L, + 252099445750,31.434128824619297,L, + 255948292250,31.394131236839762,L, + 257872715500,31.374142688233746,L, + 259797138750,31.354147309438563,L, + 261721562000,31.334169006116305,L, + 263645985250,31.314180457510290,L, + 265570408500,31.294219229660957,L, + 267494831750,31.274251171622453,L, + 269419255000,31.254293358867706,L, + 271343678250,31.234345791396713,L, + 273268101500,31.214411884304059,L, + 275192524750,31.194471147022234,L, + 277116948000,31.174554315402506,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134724067257633,L, + 282890217750,31.114837971489170,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075089685614337,L, + 288663487500,31.055234325697139,L, + 290587910750,31.035396041252866,L, + 292512334000,31.015574832281519,L, + 294436757250,30.995774113877680,L, + 296361180500,30.975987055852180,L, + 298285603750,30.956230733677948,L, + 300210027000,30.936488071882053,L, + 302134450250,30.916782976126594,L, + 304058873500,30.897098370938647,L, + 305983296750,30.877458161980304,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838280196901167,L, + 311756566500,30.818776591726223,L, + 313680989750,30.799327628064638,L, + 315605413000,30.779964041767681,L, + 317529836250,30.760699493213689,L, + 319454259500,30.741554472970169,L, + 321378682750,30.722617773496339,L, + 323303106000,30.703954281589304,L, + 325227529250,30.685861110477965,L, + 327151952500,30.670462448994193,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044319683403476,L, + 57732697500,-30.232848813777522,L, + 59657120750,-29.396266753668051,L, + 61581544000,-28.546645862433046,L, + 63505967250,-27.688687017768761,L, + 65430390500,-26.824818351925128,L, + 67354813750,-25.956477619722438,L, + 69279237000,-25.084610802360732,L, + 71203660250,-24.209868475358455,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572626568888186,L, + 78901353250,-20.690159297934638,L, + 80825776500,-19.806336234430841,L, + 82750199750,-18.921305934991249,L, + 84674623000,-18.035196465662796,L, + 86599046250,-17.148108571735740,L, + 88523469500,-16.260134460763876,L, + 90447892750,-15.371357802564535,L, + 92372316000,-14.481833238651081,L, + 94296739250,-13.591632486009795,L, + 96221162500,-12.700801648417578,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917433279714286,L, + 101994432250,-10.024976003325961,L, + 103918855500,-9.132050858979492,L, + 105843278750,-8.238686021205202,L, + 107767702000,-7.344908810759773,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556226554882221,L, + 113540971750,-4.661365478792877,L, + 115465395000,-3.766180822491606,L, + 117389818250,-2.870696064753677,L, + 119314241500,-1.974926360061312,L, + 121238664750,-1.078885582236263,L, + 123163088000,-0.182591447081689,L, + 125087511250,0.713942651828335,L, + 127011934500,1.610706309127494,L, + 128936357750,2.507684103529303,L, + 130860781000,3.404866376719389,L, + 132785204250,4.302234132234124,L, + 134709627500,5.199794413706087,L, + 136634050750,6.097521181039069,L, + 138558474000,6.995414861119893,L, + 140482897250,7.893457524701988,L, + 142407320500,8.791655575087701,L, + 144331743750,9.689990229256813,L, + 146256167000,10.588453803246511,L, + 148180590250,11.487040320641267,L, + 150105013500,12.385742951251913,L, + 152029436750,13.284552303568340,L, + 153953860000,14.183466670043257,L, + 155878283250,15.082476659166554,L, + 157802706500,15.981583978485522,L, + 159727129750,16.880764722338068,L, + 161651553000,17.780032551102533,L, + 163575976250,18.679368681758699,L, + 165500399500,19.578774821853855,L, + 167424822750,20.478245848746127,L, + 169349246000,21.377764686962589,L, + 171273669250,22.277348411976167,L, + 173198092500,23.176973118124764,L, + 175122515750,24.076633682766502,L, + 177046939000,24.976333520995968,L, + 178971362250,25.876065802623994,L, + 180895785500,26.775828820103282,L, + 182820208750,27.675612328150081,L, + 184744632000,28.575419741858976,L, + 186669055250,29.475230570662454,L, + 188593478500,30.375056767391566,L, + 190517901750,31.274889794309850,L, + 192442325000,32.174726236322719,L, + 194366748250,33.074552433051828,L, + 196291171500,33.974368384497183,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773949060969123,L, + 202064441250,36.673710370901119,L, + 203988864500,37.573440944981854,L, + 205913287750,38.473151028495074,L, + 207837711000,39.372820130873279,L, + 209762134250,40.272431176643536,L, + 211686557500,41.172021731846279,L, + 213610980750,42.071543985157327,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870407491766414,L, + 219384250500,44.769748745064454,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568192195039593,L, + 225157520250,47.467287561527513,L, + 227081943500,48.366307795934567,L, + 229006366750,49.265215332220308,L, + 230930790000,50.164030660952264,L, + 232855213250,51.062753782130422,L, + 234779636500,51.961319808957668,L, + 236704059750,52.859790213136534,L, + 238628483000,53.758113768248244,L, + 240552906250,54.656321210144064,L, + 242477329500,55.554368142594392,L, + 244401752750,56.452254565599219,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144923457184063,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939077548360437,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106008704822855,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955198524834719 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-2.955198524834719,L, + 51959427750,-2.955198524834719,L, + 53883851000,0.259471576131566,L, + 55808274250,0.257314303570902,L, + 57732697500,0.254977365018557,L, + 59657120750,0.252467297179007,L, + 61581544000,0.249778043595450,L, + 63505967250,0.246912939321193,L, + 65430390500,0.243865661095167,L, + 67354813750,0.240636048834813,L, + 69279237000,0.237222608436251,L, + 71203660250,0.233628354787669,L, + 73128083500,0.229847551597382,L, + 75052506750,0.225879718617713,L, + 76976930000,0.221726763499153,L, + 78901353250,0.217382256258928,L, + 80825776500,0.212845129679982,L, + 82750199750,0.208119292444788,L, + 84674623000,0.203200769169805,L, + 86599046250,0.198082916428850,L, + 88523469500,0.192771750658085,L, + 90447892750,0.187267992229025,L, + 92372316000,0.181559861733393,L, + 94296739250,0.175655243237205,L, + 96221162500,0.169547253190437,L, + 98145585750,0.163236145057141,L, + 100070009000,0.156722012218810,L, + 101994432250,0.149997811042861,L, + 103918855500,0.143070345038038,L, + 105843278750,0.135929955889969,L, + 107767702000,0.128578564589357,L, + 109692125250,0.121015437424474,L, + 111616548500,0.113235291670885,L, + 113540971750,0.105243770238784,L, + 115465395000,0.097030781256866,L, + 117389818250,0.088601554088715,L, + 119314241500,0.079947851152667,L, + 121238664750,0.071070106005651,L, + 123163088000,0.061968372008519,L, + 125087511250,0.052642452393128,L, + 127011934500,0.043081361493887,L, + 128936357750,0.033297018791312,L, + 130860781000,0.023275860623608,L, + 132785204250,0.013022846215042,L, + 134709627500,0.002526120910196,L, + 136634050750,-0.008203911800583,L, + 138558474000,-0.019173618325614,L, + 140482897250,-0.030395625802036,L, + 142407320500,-0.041850763509683,L, + 144331743750,-0.053562353476323,L, + 146256167000,-0.065516188374873,L, + 148180590250,-0.077726252083844,L, + 150105013500,-0.090193048196285,L, + 152029436750,-0.102915642897271,L, + 153953860000,-0.115891621608208,L, + 155878283250,-0.129136585708460,L, + 157802706500,-0.142641310440584,L, + 159727129750,-0.156416507995798,L, + 161651553000,-0.170463712498621,L, + 163575976250,-0.184773639160652,L, + 165500399500,-0.199364310609953,L, + 167424822750,-0.214233285587506,L, + 169349246000,-0.229384539476850,L, + 171273669250,-0.244815137431076,L, + 173198092500,-0.260534124114751,L, + 175122515750,-0.276539925382712,L, + 177046939000,-0.292841132332276,L, + 178971362250,-0.309432008671757,L, + 180895785500,-0.326332111153739,L, + 182820208750,-0.343527939482441,L, + 184744632000,-0.361033127355777,L, + 186669055250,-0.378839804047945,L, + 188593478500,-0.396965178434002,L, + 190517901750,-0.415408796946699,L, + 192442325000,-0.434165643665865,L, + 194366748250,-0.453250286104337,L, + 196291171500,-0.472661523642927,L, + 198215594750,-0.492403278304321,L, + 200140018000,-0.512483927742424,L, + 202064441250,-0.532900377027768,L, + 203988864500,-0.553665539486752,L, + 205913287750,-0.574774826086028,L, + 207837711000,-0.596240136295790,L, + 209762134250,-0.618059442403629,L, + 211686557500,-0.640242135919653,L, + 213610980750,-0.662794780228768,L, + 215535404000,-0.685716308113916,L, + 217459827250,-0.709016911497999,L, + 219384250500,-0.732698724815133,L, + 221308673750,-0.756771513101397,L, + 223233097000,-0.781229726828090,L, + 225157520250,-0.806094550253810,L, + 227081943500,-0.831362728366530,L, + 229006366750,-0.857041838407361,L, + 230930790000,-0.883142926072851,L, + 232855213250,-0.909659001091272,L, + 234779636500,-0.936612208216573,L, + 236704059750,-0.964004148274340,L, + 238628483000,-0.991836208646750,L, + 240552906250,-1.020120769051673,L, + 242477329500,-1.048872343641095,L, + 244401752750,-1.078085382886315,L, + 246326176000,-1.107773547165673,L, + 248250599250,-1.137947295206336,L, + 250175022500,-1.168620607551761,L, + 252099445750,-1.199787507786425,L, + 254023869000,-1.231472968789480,L, + 255948292250,-1.263678804829925,L, + 257872715500,-1.296417502347336,L, + 259797138750,-1.329698132686704,L, + 261721562000,-1.363531474740314,L, + 263645985250,-1.397932256103562,L, + 265570408500,-1.432910188451676,L, + 267494831750,-1.468479572493230,L, + 269419255000,-1.504652254337566,L, + 271343678250,-1.541445949787843,L, + 273268101500,-1.578870263797581,L, + 275192524750,-1.616938536580004,L, + 277116948000,-1.655674246910383,L, + 279041371250,-1.695093403044586,L, + 280965794500,-1.735205503214426,L, + 282890217750,-1.776038721950231,L, + 284814641000,-1.817608747342750,L, + 286739064250,-1.859934575855612,L, + 288663487500,-1.903047797113728,L, + 290587910750,-1.946956095079915,L, + 292512334000,-1.991703652540366,L, + 294436757250,-2.037300928222249,L, + 296361180500,-2.083784634392349,L, + 298285603750,-2.131183799354643,L, + 300210027000,-2.179532787498390,L, + 302134450250,-2.228861907788032,L, + 304058873500,-2.279208299377181,L, + 305983296750,-2.330617639155912,L, + 307907720000,-2.383119809201844,L, + 309832143250,-2.436767103150809,L, + 311756566500,-2.491600715581239,L, + 313680989750,-2.547659066307215,L, + 315605413000,-2.604981002029641,L, + 317529836250,-2.663576981475685,L, + 319454259500,-2.723439107239118,L, + 321378682750,-2.784437819169121,L, + 323303106000,-2.846171843651959,L, + 325227529250,-2.907193394026999,L, + 327151952500,-2.955197671061073,L, + 329076375750,-2.955198524834719,L, + 344471761750,-2.955198524834719,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152128458023,L, + 57732697500,0.163903713226318,L, + 59657120750,0.164672151207924,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260391473770,L, + 65430390500,0.167080491781235,L, + 67354813750,0.167918160557747,L, + 69279237000,0.168773531913757,L, + 71203660250,0.169646814465523,L, + 73128083500,0.170538201928139,L, + 75052506750,0.171447858214378,L, + 76976930000,0.172375962138176,L, + 78901353250,0.173322707414627,L, + 80825776500,0.174288332462311,L, + 82750199750,0.175273016095161,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300289273262,L, + 88523469500,0.178343340754509,L, + 90447892750,0.179406270384789,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716533541679,L, + 98145585750,0.183861196041107,L, + 100070009000,0.185026884078979,L, + 101994432250,0.186213836073875,L, + 103918855500,0.187422245740891,L, + 105843278750,0.188652470707893,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179171204567,L, + 111616548500,0.192476168274879,L, + 113540971750,0.193796008825302,L, + 115465395000,0.195138916373253,L, + 117389818250,0.196505188941956,L, + 119314241500,0.197895124554634,L, + 121238664750,0.199309006333351,L, + 123163088000,0.200747177004814,L, + 125087511250,0.202209874987602,L, + 127011934500,0.203697487711906,L, + 128936357750,0.205210283398628,L, + 130860781000,0.206748619675636,L, + 132785204250,0.208312824368477,L, + 134709627500,0.209903284907341,L, + 136634050750,0.211520299315453,L, + 138558474000,0.213164269924164,L, + 140482897250,0.214835539460182,L, + 142407320500,0.216534495353699,L, + 144331743750,0.218261554837227,L, + 146256167000,0.220017045736313,L, + 148180590250,0.221801459789276,L, + 150105013500,0.223615199327469,L, + 152029436750,0.225458666682243,L, + 153953860000,0.227332368493080,L, + 155878283250,0.229236662387848,L, + 157802706500,0.231172055006027,L, + 159727129750,0.233139052987099,L, + 161651553000,0.235138118267059,L, + 163575976250,0.237169757485390,L, + 165500399500,0.239234507083893,L, + 167424822750,0.241332888603210,L, + 169349246000,0.243465438485146,L, + 171273669250,0.245632752776146,L, + 173198092500,0.247835367918015,L, + 175122515750,0.250073909759521,L, + 177046939000,0.252348989248276,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011353969574,L, + 182820208750,0.259399950504303,L, + 184744632000,0.261827766895294,L, + 186669055250,0.264295488595963,L, + 188593478500,0.266803830862045,L, + 190517901750,0.269353598356247,L, + 192442325000,0.271945595741272,L, + 194366748250,0.274580597877502,L, + 196291171500,0.277259558439255,L, + 198215594750,0.279983162879944,L, + 200140018000,0.282752484083176,L, + 202064441250,0.285568356513977,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305473566055,L, + 209762134250,0.297317802906036,L, + 211686557500,0.300381988286972,L, + 213610980750,0.303499162197113,L, + 215535404000,0.306670546531677,L, + 217459827250,0.309897452592850,L, + 219384250500,0.313181132078171,L, + 221308673750,0.316523045301437,L, + 223233097000,0.319924533367157,L, + 225157520250,0.323387145996094,L, + 227081943500,0.326912462711334,L, + 229006366750,0.330502122640610,L, + 230930790000,0.334157794713974,L, + 232855213250,0.337881326675415,L, + 234779636500,0.341674596071243,L, + 236704059750,0.345539480447769,L, + 238628483000,0.349478125572205,L, + 240552906250,0.353492796421051,L, + 242477329500,0.357585638761520,L, + 244401752750,0.361759155988693,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358586311340,L, + 250175022500,0.374789893627167,L, + 252099445750,0.379313081502914,L, + 254023869000,0.383931249380112,L, + 255948292250,0.388647735118866,L, + 257872715500,0.393466234207153,L, + 259797138750,0.398390650749207,L, + 261721562000,0.403425008058548,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841634988785,L, + 267494831750,0.419233679771423,L, + 269419255000,0.424755394458771,L, + 271343678250,0.430412709712982,L, + 273268101500,0.436211973428726,L, + 275192524750,0.442160099744797,L, + 277116948000,0.448264628648758,L, + 279041371250,0.454533755779266,L, + 280965794500,0.460976541042328,L, + 282890217750,0.467602849006653,L, + 284814641000,0.474423557519913,L, + 286739064250,0.481450796127319,L, + 288663487500,0.488698214292526,L, + 290587910750,0.496180623769760,L, + 292512334000,0.503915131092072,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219922065735,L, + 298285603750,0.528837561607361,L, + 300210027000,0.537802517414093,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918501853943,L, + 305983296750,0.567158520221710,L, + 307907720000,0.577928543090820,L, + 309832143250,0.589301884174347,L, + 311756566500,0.601371228694916,L, + 313680989750,0.614257514476776,L, + 315605413000,0.628122687339783,L, + 317529836250,0.643193602561951,L, + 319454259500,0.659805953502655,L, + 321378682750,0.678494989871979,L, + 323303106000,0.700209736824036,L, + 325227529250,0.726849555969238,L, + 327151952500,0.753802001476288,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008242726326,L, + 57732697500,0.196961224079132,L, + 59657120750,0.206696838140488,L, + 61581544000,0.215276330709457,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424374341965,L, + 67354813750,0.237333685159683,L, + 69279237000,0.243925228714943,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571647644043,L, + 84674623000,0.289855509996414,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141175985336,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638782501221,L, + 105843278750,0.343213140964508,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688827276230,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150604009628,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298123359680,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869707345963,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807704925537,L, + 150105013500,0.439749240875244,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202438592911,L, + 161651553000,0.463045090436935,L, + 163575976250,0.466872811317444,L, + 165500399500,0.470685720443726,L, + 167424822750,0.474484294652939,L, + 169349246000,0.478268831968307,L, + 171273669250,0.482039690017700,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541321992874,L, + 177046939000,0.493272632360458,L, + 178971362250,0.496991455554962,L, + 180895785500,0.500697910785675,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074641227722,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404760837555,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715634822845,L, + 203988864500,0.544289946556091,L, + 205913287750,0.547854542732239,L, + 207837711000,0.551409304141998,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533936023712,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031088829041,L, + 223233097000,0.579512596130371,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449384689331,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351781368256,L, + 232855213250,0.596790611743927,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643238544464,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463261604309,L, + 242477329500,0.613861143589020,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633006095886,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731582641602,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650718033313751,L, + 265570408500,0.654021918773651,L, + 267494831750,0.657317996025085,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159318923950,L, + 275192524750,0.670423865318298,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676928997039795,L, + 280965794500,0.680169403553009,L, + 282890217750,0.683401584625244,L, + 284814641000,0.686625361442566,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046987056732,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433088302612,L, + 294436757250,0.702612400054932,L, + 296361180500,0.705781996250153,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090611457825,L, + 302134450250,0.715228915214539,L, + 304058873500,0.718355715274811,L, + 305983296750,0.721470177173615,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659046649933,L, + 311756566500,0.730730950832367,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819684505463,L, + 317529836250,0.739830851554871,L, + 319454259500,0.742812991142273,L, + 321378682750,0.745757281780243,L, + 323303106000,0.748646736145020,L, + 325227529250,0.751438677310944,L, + 327151952500,0.753801941871643,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380201451 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380201451,L, + 51959427750,0.000075380201451,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008198022842,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696793437004,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333655357361,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256687402725,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687750101089,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571617841721,L, + 84674623000,0.289855450391769,L, + 86599046250,0.295046925544739,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141146183014,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634134769440,L, + 100070009000,0.329352051019669,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213081359863,L, + 107767702000,0.347744792699814,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104965209961,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834393262863,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298063755035,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574794530869,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872143030167,L, + 144331743750,0.427869617938995,L, + 146256167000,0.431847959756851,L, + 148180590250,0.435807645320892,L, + 150105013500,0.439749240875244,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580158710480,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344349145889,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045060634613,L, + 163575976250,0.466872721910477,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484235048294,L, + 169349246000,0.478268802165985,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485797017812729,L, + 175122515750,0.489541202783585,L, + 177046939000,0.493272691965103,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074581623077,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404701232910,L, + 190517901750,0.519052803516388,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854483127594,L, + 207837711000,0.551409304141998,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031088829041,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449265480042,L, + 229006366750,0.589904725551605,L, + 230930790000,0.593351900577545,L, + 232855213250,0.596790552139282,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643119335175,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861143589020,L, + 244401752750,0.617250919342041,L, + 246326176000,0.620632946491241,L, + 248250599250,0.624006927013397,L, + 250175022500,0.627373218536377,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634081959724426,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086837768555,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021799564362,L, + 267494831750,0.657317936420441,L, + 269419255000,0.660606205463409,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159259319305,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693047106266022,L, + 290587910750,0.696244478225708,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612280845642,L, + 296361180500,0.705781877040863,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090611457825,L, + 302134450250,0.715228796005249,L, + 304058873500,0.718355774879456,L, + 305983296750,0.721470355987549,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659046649933,L, + 311756566500,0.730730950832367,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819922924042,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812871932983,L, + 321378682750,0.745757400989532,L, + 323303106000,0.748646855354309,L, + 325227529250,0.751438498497009,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380201451,L, + 344471761750,0.000075380201451,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_053" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678622245789 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,-0.063678622245789,L, + 51959427750,-0.063678622245789,L, + 53883851000,0.011904656887054,L, + 55808274250,0.011490702629089,L, + 57732697500,0.011003792285919,L, + 59657120750,0.010502040386200,L, + 61581544000,0.009992480278015,L, + 63505967250,0.009477972984314,L, + 65430390500,0.008959531784058,L, + 67354813750,0.008439004421234,L, + 69279237000,0.007916629314423,L, + 71203660250,0.007391273975372,L, + 73128083500,0.006864905357361,L, + 75052506750,0.006338596343994,L, + 76976930000,0.005810260772705,L, + 78901353250,0.005280911922455,L, + 80825776500,0.004750669002533,L, + 82750199750,0.004219412803650,L, + 84674623000,0.003688097000122,L, + 86599046250,0.003155827522278,L, + 88523469500,0.002623617649078,L, + 90447892750,0.002090275287628,L, + 92372316000,0.001557052135468,L, + 94296739250,0.001022815704346,L, + 96221162500,0.000488638877869,L, + 98145585750,-0.000046551227570,L, + 100070009000,-0.000580847263336,L, + 101994432250,-0.001116096973419,L, + 103918855500,-0.001652240753174,L, + 105843278750,-0.002187550067902,L, + 107767702000,-0.002723693847656,L, + 109692125250,-0.003259897232056,L, + 111616548500,-0.003796160221100,L, + 115465395000,-0.004870474338531,L, + 117389818250,-0.005406737327576,L, + 119314241500,-0.005944848060608,L, + 121238664750,-0.006482064723969,L, + 123163088000,-0.007020235061646,L, + 125087511250,-0.007557392120361,L, + 127011934500,-0.008094668388367,L, + 128936357750,-0.008633732795715,L, + 130860781000,-0.009171009063721,L, + 132785204250,-0.009709119796753,L, + 134709627500,-0.010247349739075,L, + 136634050750,-0.010786473751068,L, + 138558474000,-0.011324703693390,L, + 140482897250,-0.011863827705383,L, + 142407320500,-0.012402057647705,L, + 144331743750,-0.012941122055054,L, + 146256167000,-0.013479351997375,L, + 148180590250,-0.014018476009369,L, + 150105013500,-0.014557719230652,L, + 152029436750,-0.015096843242645,L, + 153953860000,-0.015636026859283,L, + 155878283250,-0.016175150871277,L, + 157802706500,-0.016714334487915,L, + 159727129750,-0.017254412174225,L, + 165500399500,-0.018871963024139,L, + 167424822750,-0.019411087036133,L, + 169349246000,-0.019951283931732,L, + 171273669250,-0.020490467548370,L, + 173198092500,-0.021030545234680,L, + 177046939000,-0.022108912467957,L, + 178971362250,-0.022649049758911,L, + 180895785500,-0.023188233375549,L, + 182820208750,-0.023728370666504,L, + 184744632000,-0.024267494678497,L, + 186669055250,-0.024807691574097,L, + 188593478500,-0.025346875190735,L, + 190517901750,-0.025886952877045,L, + 192442325000,-0.026427149772644,L, + 194366748250,-0.026966273784637,L, + 196291171500,-0.027505457401276,L, + 200140018000,-0.028585731983185,L, + 203988864500,-0.029664099216461,L, + 205913287750,-0.030204176902771,L, + 207837711000,-0.030743420124054,L, + 209762134250,-0.031283557415009,L, + 211686557500,-0.031823635101318,L, + 213610980750,-0.032362878322601,L, + 215535404000,-0.032902002334595,L, + 217459827250,-0.033441185951233,L, + 219384250500,-0.033980309963226,L, + 221308673750,-0.034520447254181,L, + 225157520250,-0.035598814487457,L, + 227081943500,-0.036137938499451,L, + 229006366750,-0.036677122116089,L, + 230930790000,-0.037216246128082,L, + 232855213250,-0.037755429744720,L, + 234779636500,-0.038294553756714,L, + 236704059750,-0.038832783699036,L, + 238628483000,-0.039371907711029,L, + 240552906250,-0.039910137653351,L, + 242477329500,-0.040449261665344,L, + 244401752750,-0.040987491607666,L, + 246326176000,-0.041525661945343,L, + 248250599250,-0.042064785957336,L, + 250175022500,-0.042602956295013,L, + 252099445750,-0.043141186237335,L, + 254023869000,-0.043678343296051,L, + 255948292250,-0.044216573238373,L, + 257872715500,-0.044754683971405,L, + 259797138750,-0.045291841030121,L, + 261721562000,-0.045829117298126,L, + 263645985250,-0.046366274356842,L, + 265570408500,-0.046903491020203,L, + 267494831750,-0.047440648078918,L, + 269419255000,-0.047976851463318,L, + 271343678250,-0.048514068126678,L, + 273268101500,-0.049050271511078,L, + 275192524750,-0.049586415290833,L, + 277116948000,-0.050121724605560,L, + 279041371250,-0.050657868385315,L, + 280965794500,-0.051193058490753,L, + 282890217750,-0.051727354526520,L, + 284814641000,-0.052262544631958,L, + 288663487500,-0.053331017494202,L, + 290587910750,-0.053864240646362,L, + 292512334000,-0.054397523403168,L, + 296361180500,-0.055462062358856,L, + 300210027000,-0.056524574756622,L, + 304058873500,-0.057583272457123,L, + 305983296750,-0.058112502098083,L, + 309832143250,-0.059165239334106,L, + 311756566500,-0.059689640998840,L, + 313680989750,-0.060212969779968,L, + 315605413000,-0.060734391212463,L, + 317529836250,-0.061251878738403,L, + 319454259500,-0.061766445636749,L, + 321378682750,-0.062275946140289,L, + 323303106000,-0.062777698040009,L, + 325227529250,-0.063263654708862,L, + 327151952500,-0.063678622245789,L, + 344471761750,-0.063678622245789,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339639663696 + KeyVer: 4005 + KeyCount: 124 + Key: + 0,-0.087339639663696,L, + 51959427750,-0.087339639663696,L, + 53883851000,-0.087339401245117,L, + 55808274250,-0.087339639663696,L, + 57732697500,-0.087339639663696,L, + 59657120750,-0.087339520454407,L, + 61581544000,-0.087339639663696,L, + 63505967250,-0.087339639663696,L, + 65430390500,-0.087339758872986,L, + 67354813750,-0.087339520454407,L, + 69279237000,-0.087339401245117,L, + 71203660250,-0.087339639663696,L, + 73128083500,-0.087339401245117,L, + 75052506750,-0.087339639663696,L, + 78901353250,-0.087339401245117,L, + 80825776500,-0.087339639663696,L, + 86599046250,-0.087339282035828,L, + 88523469500,-0.087339639663696,L, + 90447892750,-0.087339282035828,L, + 92372316000,-0.087339639663696,L, + 94296739250,-0.087339401245117,L, + 96221162500,-0.087339758872986,L, + 98145585750,-0.087339758872986,L, + 100070009000,-0.087339639663696,L, + 101994432250,-0.087339401245117,L, + 103918855500,-0.087339520454407,L, + 105843278750,-0.087339282035828,L, + 107767702000,-0.087339639663696,L, + 109692125250,-0.087339639663696,L, + 111616548500,-0.087339520454407,L, + 117389818250,-0.087339520454407,L, + 119314241500,-0.087339639663696,L, + 121238664750,-0.087339878082275,L, + 123163088000,-0.087339520454407,L, + 125087511250,-0.087339639663696,L, + 127011934500,-0.087339282035828,L, + 128936357750,-0.087339639663696,L, + 130860781000,-0.087339520454407,L, + 132785204250,-0.087339758872986,L, + 134709627500,-0.087339639663696,L, + 136634050750,-0.087339401245117,L, + 142407320500,-0.087339401245117,L, + 144331743750,-0.087339878082275,L, + 146256167000,-0.087339639663696,L, + 148180590250,-0.087339639663696,L, + 150105013500,-0.087339282035828,L, + 152029436750,-0.087339520454407,L, + 153953860000,-0.087339401245117,L, + 155878283250,-0.087339639663696,L, + 157802706500,-0.087339520454407,L, + 161651553000,-0.087339758872986,L, + 163575976250,-0.087339520454407,L, + 167424822750,-0.087339520454407,L, + 169349246000,-0.087339401245117,L, + 175122515750,-0.087339758872986,L, + 177046939000,-0.087339401245117,L, + 178971362250,-0.087339639663696,L, + 180895785500,-0.087339401245117,L, + 182820208750,-0.087339520454407,L, + 184744632000,-0.087339758872986,L, + 186669055250,-0.087339401245117,L, + 190517901750,-0.087339639663696,L, + 192442325000,-0.087339520454407,L, + 194366748250,-0.087339520454407,L, + 196291171500,-0.087339758872986,L, + 198215594750,-0.087339520454407,L, + 200140018000,-0.087339639663696,L, + 202064441250,-0.087339282035828,L, + 203988864500,-0.087339401245117,L, + 205913287750,-0.087339758872986,L, + 207837711000,-0.087339401245117,L, + 209762134250,-0.087339520454407,L, + 211686557500,-0.087339758872986,L, + 213610980750,-0.087339282035828,L, + 215535404000,-0.087339639663696,L, + 217459827250,-0.087339520454407,L, + 219384250500,-0.087339758872986,L, + 221308673750,-0.087339758872986,L, + 223233097000,-0.087339520454407,L, + 225157520250,-0.087339401245117,L, + 227081943500,-0.087339639663696,L, + 229006366750,-0.087339520454407,L, + 230930790000,-0.087339758872986,L, + 232855213250,-0.087339639663696,L, + 236704059750,-0.087339639663696,L, + 238628483000,-0.087339520454407,L, + 240552906250,-0.087339639663696,L, + 244401752750,-0.087339401245117,L, + 246326176000,-0.087339401245117,L, + 248250599250,-0.087339639663696,L, + 250175022500,-0.087339520454407,L, + 252099445750,-0.087339520454407,L, + 254023869000,-0.087339639663696,L, + 255948292250,-0.087339401245117,L, + 257872715500,-0.087339639663696,L, + 259797138750,-0.087339639663696,L, + 261721562000,-0.087339282035828,L, + 263645985250,-0.087339520454407,L, + 271343678250,-0.087339520454407,L, + 273268101500,-0.087339401245117,L, + 275192524750,-0.087339520454407,L, + 277116948000,-0.087339282035828,L, + 279041371250,-0.087339639663696,L, + 282890217750,-0.087339639663696,L, + 284814641000,-0.087339520454407,L, + 286739064250,-0.087339639663696,L, + 288663487500,-0.087339282035828,L, + 290587910750,-0.087339520454407,L, + 292512334000,-0.087339639663696,L, + 296361180500,-0.087339401245117,L, + 298285603750,-0.087339639663696,L, + 300210027000,-0.087339758872986,L, + 302134450250,-0.087339520454407,L, + 304058873500,-0.087339401245117,L, + 305983296750,-0.087339639663696,L, + 309832143250,-0.087339401245117,L, + 311756566500,-0.087339401245117,L, + 313680989750,-0.087339639663696,L, + 317529836250,-0.087339639663696,L, + 319454259500,-0.087339520454407,L, + 321378682750,-0.087339758872986,L, + 325227529250,-0.087339520454407,L, + 327151952500,-0.087339639663696,L, + 344471761750,-0.087339639663696,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241689682007 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241689682007,L, + 51959427750,-0.570241689682007,L, + 53883851000,0.020681858062744,L, + 55808274250,0.022182703018188,L, + 57732697500,0.023703336715698,L, + 59657120750,0.025243759155273,L, + 61581544000,0.026805162429810,L, + 63505967250,0.028387784957886,L, + 65430390500,0.029992818832397,L, + 67354813750,0.031620502471924,L, + 69279237000,0.033271789550781,L, + 71203660250,0.034947395324707,L, + 73128083500,0.036648511886597,L, + 75052506750,0.038375854492188,L, + 76976930000,0.040130138397217,L, + 78901353250,0.041912555694580,L, + 80825776500,0.043724298477173,L, + 82750199750,0.045566320419312,L, + 84674623000,0.047440052032471,L, + 86599046250,0.049346208572388,L, + 88523469500,0.051287174224854,L, + 90447892750,0.053263425827026,L, + 92372316000,0.055277109146118,L, + 94296739250,0.057329654693604,L, + 96221162500,0.059423208236694,L, + 98145585750,0.061559200286865,L, + 100070009000,0.063740015029907,L, + 101994432250,0.065968036651611,L, + 103918855500,0.068245649337769,L, + 105843278750,0.070575237274170,L, + 107767702000,0.072959899902344,L, + 109692125250,0.075402975082397,L, + 111616548500,0.077907562255859,L, + 113540971750,0.080477476119995,L, + 115465395000,0.083116769790649,L, + 117389818250,0.085830211639404,L, + 119314241500,0.088622808456421,L, + 121238664750,0.091500043869019,L, + 123163088000,0.094467878341675,L, + 125087511250,0.097533702850342,L, + 127011934500,0.100704908370972,L, + 128936357750,0.103990316390991,L, + 130860781000,0.107399940490723,L, + 132785204250,0.110944747924805,L, + 134709627500,0.114637613296509,L, + 136634050750,0.118492841720581,L, + 138558474000,0.122527599334717,L, + 140482897250,0.126760959625244,L, + 142407320500,0.131215333938599,L, + 144331743750,0.135916709899902,L, + 146256167000,0.140894889831543,L, + 148180590250,0.146184444427490,L, + 150105013500,0.151823759078979,L, + 152029436750,0.157855272293091,L, + 153953860000,0.164323091506958,L, + 155878283250,0.171265602111816,L, + 157802706500,0.178704977035522,L, + 159727129750,0.186625242233276,L, + 161651553000,0.194946050643921,L, + 163575976250,0.203496932983398,L, + 165500399500,0.212026596069336,L, + 167424822750,0.220256805419922,L, + 169349246000,0.227962732315063,L, + 171273669250,0.235020160675049,L, + 173198092500,0.241793632507324,L, + 175122515750,0.248681545257568,L, + 177046939000,0.255688190460205,L, + 178971362250,0.262816905975342,L, + 180895785500,0.270072460174561,L, + 182820208750,0.277458190917969,L, + 184744632000,0.284978389739990,L, + 186669055250,0.292636632919312,L, + 188593478500,0.300436496734619,L, + 190517901750,0.308381795883179,L, + 192442325000,0.316475629806519,L, + 194366748250,0.324720859527588,L, + 196291171500,0.333120107650757,L, + 198215594750,0.341675758361816,L, + 200140018000,0.350389242172241,L, + 202064441250,0.359262228012085,L, + 203988864500,0.368295669555664,L, + 205913287750,0.377489328384399,L, + 207837711000,0.386842727661133,L, + 209762134250,0.396355152130127,L, + 211686557500,0.406024217605591,L, + 213610980750,0.415848016738892,L, + 215535404000,0.425822734832764,L, + 217459827250,0.435945272445679,L, + 219384250500,0.446209907531738,L, + 221308673750,0.456612348556519,L, + 223233097000,0.467146635055542,L, + 225157520250,0.477806091308594,L, + 227081943500,0.488583803176880,L, + 229006366750,0.499473333358765,L, + 230930790000,0.510467052459717,L, + 232855213250,0.521556615829468,L, + 234779636500,0.532734870910645,L, + 236704059750,0.543993473052979,L, + 238628483000,0.555325269699097,L, + 240552906250,0.566721916198730,L, + 242477329500,0.578175544738770,L, + 244401752750,0.589679718017578,L, + 246326176000,0.601226806640625,L, + 248250599250,0.612809896469116,L, + 250175022500,0.624422550201416,L, + 252099445750,0.636058568954468,L, + 254023869000,0.647712469100952,L, + 255948292250,0.659378290176392,L, + 257872715500,0.671051740646362,L, + 259797138750,0.682727336883545,L, + 261721562000,0.694401502609253,L, + 263645985250,0.706069469451904,L, + 265570408500,0.717728376388550,L, + 267494831750,0.729374647140503,L, + 269419255000,0.741005182266235,L, + 271343678250,0.752798318862915,L, + 273268101500,0.764907121658325,L, + 275192524750,0.777295589447021,L, + 277116948000,0.789932727813721,L, + 279041371250,0.802792549133301,L, + 280965794500,0.815852880477905,L, + 282890217750,0.829093694686890,L, + 284814641000,0.842497110366821,L, + 286739064250,0.856047153472900,L, + 288663487500,0.869729518890381,L, + 290587910750,0.883530855178833,L, + 292512334000,0.897437810897827,L, + 294436757250,0.911438941955566,L, + 296361180500,0.925521850585938,L, + 298285603750,0.939675569534302,L, + 300210027000,0.953887701034546,L, + 302134450250,0.968146324157715,L, + 304058873500,0.982438325881958,L, + 305983296750,0.996749401092529,L, + 307907720000,1.011063814163208,L, + 309832143250,1.025361776351929,L, + 311756566500,1.039621591567993,L, + 313680989750,1.053814172744751,L, + 315605413000,1.067902326583862,L, + 317529836250,1.081833362579346,L, + 319454259500,1.095528602600098,L, + 321378682750,1.108861684799194,L, + 323303106000,1.121590614318848,L, + 325227529250,1.133138895034790,L, + 327151952500,1.140674114227295,L, + 329076375750,-0.570241689682007,L, + 344471761750,-0.570241689682007,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670459033899608 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,30.670459033899608,L, + 51959427750,30.670459033899608,L, + 53883851000,33.480948688667006,L, + 55808274250,33.465543196994062,L, + 57732697500,33.447453440977306,L, + 59657120750,33.428786533975689,L, + 61581544000,33.409846419407273,L, + 63505967250,33.390711644447507,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352080094501972,L, + 69279237000,33.332631130840390,L, + 71203660250,33.313124110570861,L, + 73128083500,33.293562448787974,L, + 75052506750,33.273956390775481,L, + 76976930000,33.254312766722549,L, + 78901353250,33.234631576629184,L, + 80825776500,33.214923065779146,L, + 82750199750,33.195183819077833,L, + 84674623000,33.175417251619848,L, + 86599046250,33.155633608688930,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116008266219161,L, + 92372316000,33.096166566680303,L, + 94296739250,33.076321452046862,L, + 96221162500,33.056445601562153,L, + 98145585750,33.036566335982855,L, + 100070009000,33.016680240214392,L, + 101994432250,32.996773653878421,L, + 103918855500,32.976860237353279,L, + 105843278750,32.956936575544376,L, + 107767702000,32.937002668451726,L, + 109692125250,32.917065346264486,L, + 111616548500,32.897110948604322,L, + 113540971750,32.877149720754986,L, + 115465395000,32.857191908000239,L, + 117389818250,32.837223849961738,L, + 119314241500,32.817245546639477,L, + 121238664750,32.797260413128051,L, + 123163088000,32.777268449427453,L, + 125087511250,32.757273070632266,L, + 127011934500,32.737270861647914,L, + 128936357750,32.717272067758145,L, + 130860781000,32.697263028584622,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617185890755508,L, + 140482897250,32.597156361014470,L, + 146256167000,32.537057526507617,L, + 148180590250,32.517010921293661,L, + 150105013500,32.496967731174287,L, + 152029436750,32.476927956149495,L, + 153953860000,32.456877935840950,L, + 155878283250,32.436831330626994,L, + 157802706500,32.416774480129277,L, + 159727129750,32.396721044726149,L, + 163575976250,32.356607343730722,L, + 167424822750,32.316486812546124,L, + 169349246000,32.296433377142996,L, + 171273669250,32.276362866266943,L, + 173198092500,32.256302600674644,L, + 177046939000,32.216175239300881,L, + 178971362250,32.196104728424828,L, + 180895785500,32.176044462832529,L, + 182820208750,32.155977367051058,L, + 184744632000,32.135906856175005,L, + 188593478500,32.095772664612070,L, + 190517901750,32.075702153736010,L, + 192442325000,32.055638473049129,L, + 194366748250,32.035564547078494,L, + 198215594750,31.995430355515555,L, + 200140018000,31.975359844639499,L, + 202064441250,31.955299579047203,L, + 203988864500,31.935229068171150,L, + 205913287750,31.915168802578851,L, + 207837711000,31.895101706797380,L, + 213610980750,31.834920910020486,L, + 217459827250,31.794793548646719,L, + 219384250500,31.774743528338174,L, + 227081943500,31.694529786725660,L, + 229006366750,31.674483181511700,L, + 230930790000,31.654433161203158,L, + 236704059750,31.594313836128791,L, + 240552906250,31.554254776646726,L, + 242477329500,31.534221831811106,L, + 244401752750,31.514199132259243,L, + 250175022500,31.454141278887406,L, + 254023869000,31.414130030729531,L, + 255948292250,31.394134651934344,L, + 257872715500,31.374142688233746,L, + 259797138750,31.354147309438563,L, + 261721562000,31.334165591021719,L, + 263645985250,31.314190702794047,L, + 265570408500,31.294219229660957,L, + 267494831750,31.274251171622453,L, + 269419255000,31.254296773962292,L, + 273268101500,31.214408469209474,L, + 275192524750,31.194477977211406,L, + 277116948000,31.174557730497092,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134727482352218,L, + 282890217750,31.114834556394584,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075093100708923,L, + 288663487500,31.055237740791725,L, + 290587910750,31.035396041252866,L, + 292512334000,31.015574832281519,L, + 294436757250,30.995774113877680,L, + 296361180500,30.975990470946765,L, + 298285603750,30.956230733677948,L, + 300210027000,30.936488071882053,L, + 302134450250,30.916779561032012,L, + 304058873500,30.897098370938647,L, + 305983296750,30.877458161980304,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838280196901167,L, + 311756566500,30.818773176631638,L, + 313680989750,30.799327628064638,L, + 315605413000,30.779960626673098,L, + 317529836250,30.760699493213689,L, + 319454259500,30.741554472970169,L, + 321378682750,30.722614358401753,L, + 323303106000,30.703957696683890,L, + 325227529250,30.685864525572551,L, + 327151952500,30.670462448994193,L, + 329076375750,30.670459033899608,L, + 344471761750,30.670459033899608,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044316268308890,L, + 57732697500,-30.232848813777522,L, + 59657120750,-29.396270168762637,L, + 61581544000,-28.546645862433046,L, + 63505967250,-27.688688725316052,L, + 65430390500,-26.824818351925128,L, + 67354813750,-25.956479327269729,L, + 69279237000,-25.084610802360732,L, + 71203660250,-24.209871890453041,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572626568888186,L, + 78901353250,-20.690157590387344,L, + 80825776500,-19.806336234430841,L, + 82750199750,-18.921309350085835,L, + 84674623000,-18.035196465662796,L, + 86599046250,-17.148108571735740,L, + 88523469500,-16.260137875858462,L, + 90447892750,-15.371357802564535,L, + 92372316000,-14.481834946198372,L, + 94296739250,-13.591632486009795,L, + 96221162500,-12.700801648417578,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917433279714286,L, + 101994432250,-10.024976003325961,L, + 103918855500,-9.132050005205844,L, + 105843278750,-8.238685167431555,L, + 107767702000,-7.344909664533420,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556226554882221,L, + 113540971750,-4.661365478792877,L, + 115465395000,-3.766180395604783,L, + 117389818250,-2.870696491640500,L, + 119314241500,-1.974926573504724,L, + 121238664750,-1.078885582236263,L, + 123163088000,-0.182591447081689,L, + 125087511250,0.713942598467482,L, + 127011934500,1.610706309127494,L, + 128936357750,2.507684103529303,L, + 130860781000,3.404866590162801,L, + 132785204250,4.302234132234124,L, + 134709627500,5.199794413706087,L, + 136634050750,6.097521181039069,L, + 138558474000,6.995415714893539,L, + 140482897250,7.893458378475635,L, + 142407320500,8.791657282634993,L, + 144331743750,9.689991936804105,L, + 146256167000,10.588453803246511,L, + 148180590250,11.487040320641267,L, + 150105013500,12.385742951251913,L, + 152029436750,13.284550596021047,L, + 153953860000,14.183468377590549,L, + 155878283250,15.082476659166554,L, + 157802706500,15.981585686032815,L, + 159727129750,16.880766429885362,L, + 161651553000,17.780032551102533,L, + 163575976250,18.679368681758699,L, + 165500399500,19.578774821853855,L, + 167424822750,20.478245848746127,L, + 169349246000,21.377764686962589,L, + 171273669250,22.277348411976167,L, + 173198092500,23.176973118124764,L, + 175122515750,24.076635390313793,L, + 177046939000,24.976333520995968,L, + 178971362250,25.876067510171286,L, + 180895785500,26.775828820103282,L, + 182820208750,27.675612328150081,L, + 184744632000,28.575419741858976,L, + 186669055250,29.475233985757040,L, + 188593478500,30.375053352296984,L, + 192442325000,32.174726236322719,L, + 194366748250,33.074549017957246,L, + 196291171500,33.974368384497183,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773955891158295,L, + 202064441250,36.673713785995709,L, + 203988864500,37.573444360076437,L, + 205913287750,38.473151028495074,L, + 207837711000,39.372820130873279,L, + 209762134250,40.272431176643536,L, + 211686557500,41.172021731846279,L, + 213610980750,42.071540570062744,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870410906861004,L, + 219384250500,44.769748745064454,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568199025228758,L, + 225157520250,47.467294391716685,L, + 227081943500,48.366307795934567,L, + 229006366750,49.265218747314897,L, + 230930790000,50.164030660952264,L, + 232855213250,51.062746951941250,L, + 234779636500,51.961319808957668,L, + 236704059750,52.859797043325699,L, + 238628483000,53.758117183342826,L, + 240552906250,54.656321210144064,L, + 242477329500,55.554371557688974,L, + 244401752750,56.452257980693808,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144923457184063,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939077548360437,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106008704822855,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955198524834719 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-2.955198524834719,L, + 51959427750,-2.955198524834719,L, + 53883851000,0.259470802399199,L, + 55808274250,0.257312729425742,L, + 57732697500,0.254978859122437,L, + 59657120750,0.252468017550521,L, + 61581544000,0.249779511018905,L, + 63505967250,0.246912192269252,L, + 65430390500,0.243862806289537,L, + 67354813750,0.240633914400697,L, + 69279237000,0.237223302127339,L, + 71203660250,0.233626994085921,L, + 73128083500,0.229844830193884,L, + 75052506750,0.225877717585729,L, + 76976930000,0.221723441786060,L, + 78901353250,0.217378947886049,L, + 80825776500,0.212843795658660,L, + 82750199750,0.208117998444105,L, + 84674623000,0.203197580858845,L, + 86599046250,0.198084784058701,L, + 88523469500,0.192774885608193,L, + 90447892750,0.187266764929408,L, + 92372316000,0.181561089033010,L, + 94296739250,0.175654642927610,L, + 96221162500,0.169547253190437,L, + 98145585750,0.163236145057141,L, + 100070009000,0.156719651001069,L, + 101994432250,0.149996637104097,L, + 103918855500,0.143067997160511,L, + 105843278750,0.135927661373295,L, + 107767702000,0.128577417331019,L, + 109692125250,0.121014316846563,L, + 111616548500,0.113236398908583,L, + 113540971750,0.105242669671193,L, + 115465395000,0.097029687359382,L, + 117389818250,0.088598292406582,L, + 119314241500,0.079945703378338,L, + 121238664750,0.071070099335544,L, + 123163088000,0.061968365338413,L, + 125087511250,0.052640337969332,L, + 127011934500,0.043082415370732,L, + 128936357750,0.033294934382996,L, + 130860781000,0.023273791223032,L, + 132785204250,0.013017708565424,L, + 134709627500,0.002526120910196,L, + 136634050750,-0.008203911800583,L, + 138558474000,-0.019177655407641,L, + 140482897250,-0.030391610397856,L, + 142407320500,-0.041852761206613,L, + 144331743750,-0.053561369635598,L, + 146256167000,-0.065519143232102,L, + 148180590250,-0.077729186930753,L, + 150105013500,-0.090194028701957,L, + 152029436750,-0.102915629557058,L, + 153953860000,-0.115894529774691,L, + 155878283250,-0.129137519523386,L, + 157802706500,-0.142644191926640,L, + 159727129750,-0.156417441810723,L, + 161651553000,-0.170460844352778,L, + 163575976250,-0.184775560151356,L, + 165500399500,-0.199365257765092,L, + 167424822750,-0.214233285587506,L, + 169349246000,-0.229382645166572,L, + 171273669250,-0.244814176935724,L, + 173198092500,-0.260532229804473,L, + 175122515750,-0.276539925382712,L, + 177046939000,-0.292840198517350,L, + 178971362250,-0.309435743931459,L, + 180895785500,-0.326331123977961,L, + 182820208750,-0.343527939482441,L, + 184744632000,-0.361030325911000,L, + 186669055250,-0.378842578812295,L, + 188593478500,-0.396966966022574,L, + 190517901750,-0.415406929316848,L, + 192442325000,-0.434166577480790,L, + 194366748250,-0.453250232743484,L, + 196291171500,-0.472663391272778,L, + 198215594750,-0.492405999707819,L, + 200140018000,-0.512483927742424,L, + 202064441250,-0.532903258513824,L, + 203988864500,-0.553665539486752,L, + 205913287750,-0.574776640355026,L, + 207837711000,-0.596239069078732,L, + 209762134250,-0.618060349538128,L, + 211686557500,-0.640244056910357,L, + 213610980750,-0.662793766372563,L, + 215535404000,-0.685716308113916,L, + 217459827250,-0.709015897641794,L, + 219384250500,-0.732698724815133,L, + 221308673750,-0.756769592110693,L, + 223233097000,-0.781232661674999,L, + 225157520250,-0.806094603614663,L, + 227081943500,-0.831362728366530,L, + 229006366750,-0.857040931272862,L, + 230930790000,-0.883138870648031,L, + 232855213250,-0.909659854864918,L, + 234779636500,-0.936612208216573,L, + 236704059750,-0.964002120561931,L, + 238628483000,-0.991836208646750,L, + 240552906250,-1.020123970702846,L, + 242477329500,-1.048870209206979,L, + 244401752750,-1.078085382886315,L, + 246326176000,-1.107774721104436,L, + 248250599250,-1.137952844735037,L, + 250175022500,-1.168619326891292,L, + 252099445750,-1.199789642220541,L, + 254023869000,-1.231474142728244,L, + 255948292250,-1.263679978768689,L, + 257872715500,-1.296416328408572,L, + 259797138750,-1.329697599078175,L, + 261721562000,-1.363531581462019,L, + 263645985250,-1.397932896433797,L, + 265570408500,-1.432911895998969,L, + 267494831750,-1.468481706927346,L, + 269419255000,-1.504653748441447,L, + 271343678250,-1.541445309457608,L, + 273268101500,-1.578869516745641,L, + 275192524750,-1.616939176910239,L, + 277116948000,-1.655675954457676,L, + 279041371250,-1.695089987950001,L, + 280965794500,-1.735205289771015,L, + 282890217750,-1.776037761454879,L, + 284814641000,-1.817608747342750,L, + 286739064250,-1.859935643072670,L, + 288663487500,-1.903045235792790,L, + 290587910750,-1.946958229514031,L, + 292512334000,-1.991701518106251,L, + 294436757250,-2.037300928222249,L, + 296361180500,-2.083785274722584,L, + 298285603750,-2.131185080015112,L, + 300210027000,-2.179532147168155,L, + 302134450250,-2.228861907788032,L, + 304058873500,-2.279211074141531,L, + 305983296750,-2.330616571938855,L, + 307907720000,-2.383121730192548,L, + 309832143250,-2.436767956924455,L, + 311756566500,-2.491600502137827,L, + 313680989750,-2.547658212533568,L, + 315605413000,-2.604980148255995,L, + 317529836250,-2.663579115909800,L, + 319454259500,-2.723439107239118,L, + 321378682750,-2.784437819169121,L, + 323303106000,-2.846172697425605,L, + 325227529250,-2.907192326809942,L, + 327151952500,-2.955198097947895,L, + 329076375750,-2.955198524834719,L, + 344471761750,-2.955198524834719,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380201451 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380201451,L, + 51959427750,0.000075380201451,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152143359184,L, + 57732697500,0.163903713226318,L, + 59657120750,0.164672181010246,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260406374931,L, + 65430390500,0.167080491781235,L, + 67354813750,0.167918175458908,L, + 69279237000,0.168773531913757,L, + 71203660250,0.169646799564362,L, + 73128083500,0.170538201928139,L, + 75052506750,0.171447858214378,L, + 76976930000,0.172375962138176,L, + 78901353250,0.173322722315788,L, + 80825776500,0.174288347363472,L, + 82750199750,0.175273016095161,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300319075584,L, + 88523469500,0.178343340754509,L, + 90447892750,0.179406270384789,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716533541679,L, + 98145585750,0.183861196041107,L, + 100070009000,0.185026884078979,L, + 101994432250,0.186213836073875,L, + 103918855500,0.187422275543213,L, + 105843278750,0.188652470707893,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179171204567,L, + 111616548500,0.192476168274879,L, + 113540971750,0.193796008825302,L, + 115465395000,0.195138916373253,L, + 117389818250,0.196505174040794,L, + 119314241500,0.197895109653473,L, + 121238664750,0.199309021234512,L, + 123163088000,0.200747191905975,L, + 125087511250,0.202209889888763,L, + 127011934500,0.203697487711906,L, + 128936357750,0.205210313200951,L, + 130860781000,0.206748634576797,L, + 132785204250,0.208312824368477,L, + 134709627500,0.209903284907341,L, + 136634050750,0.211520299315453,L, + 138558474000,0.213164255023003,L, + 140482897250,0.214835554361343,L, + 142407320500,0.216534465551376,L, + 144331743750,0.218261525034904,L, + 146256167000,0.220017060637474,L, + 148180590250,0.221801474690437,L, + 150105013500,0.223615199327469,L, + 152029436750,0.225458696484566,L, + 153953860000,0.227332383394241,L, + 155878283250,0.229236677289009,L, + 157802706500,0.231172040104866,L, + 159727129750,0.233139067888260,L, + 161651553000,0.235138118267059,L, + 163575976250,0.237169742584229,L, + 165500399500,0.239234507083893,L, + 167424822750,0.241332888603210,L, + 169349246000,0.243465453386307,L, + 171273669250,0.245632767677307,L, + 173198092500,0.247835367918015,L, + 175122515750,0.250073909759521,L, + 177046939000,0.252348989248276,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011383771896,L, + 182820208750,0.259399950504303,L, + 184744632000,0.261827766895294,L, + 186669055250,0.264295458793640,L, + 188593478500,0.266803860664368,L, + 190517901750,0.269353598356247,L, + 192442325000,0.271945625543594,L, + 194366748250,0.274580627679825,L, + 196291171500,0.277259558439255,L, + 198215594750,0.279983162879944,L, + 200140018000,0.282752484083176,L, + 202064441250,0.285568356513977,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305503368378,L, + 209762134250,0.297317832708359,L, + 211686557500,0.300381988286972,L, + 213610980750,0.303499191999435,L, + 215535404000,0.306670546531677,L, + 217459827250,0.309897482395172,L, + 219384250500,0.313181132078171,L, + 221308673750,0.316523045301437,L, + 223233097000,0.319924533367157,L, + 225157520250,0.323387175798416,L, + 227081943500,0.326912492513657,L, + 229006366750,0.330502152442932,L, + 230930790000,0.334157854318619,L, + 232855213250,0.337881356477737,L, + 234779636500,0.341674596071243,L, + 236704059750,0.345539510250092,L, + 238628483000,0.349478155374527,L, + 240552906250,0.353492766618729,L, + 242477329500,0.357585668563843,L, + 244401752750,0.361759185791016,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358556509018,L, + 250175022500,0.374789923429489,L, + 252099445750,0.379313111305237,L, + 254023869000,0.383931249380112,L, + 255948292250,0.388647735118866,L, + 257872715500,0.393466234207153,L, + 259797138750,0.398390650749207,L, + 261721562000,0.403425037860870,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841634988785,L, + 267494831750,0.419233679771423,L, + 269419255000,0.424755424261093,L, + 271343678250,0.430412739515305,L, + 273268101500,0.436211973428726,L, + 275192524750,0.442160099744797,L, + 277116948000,0.448264628648758,L, + 279041371250,0.454533785581589,L, + 280965794500,0.460976541042328,L, + 282890217750,0.467602849006653,L, + 284814641000,0.474423617124557,L, + 286739064250,0.481450825929642,L, + 288663487500,0.488698214292526,L, + 290587910750,0.496180623769760,L, + 292512334000,0.503915131092072,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219922065735,L, + 298285603750,0.528837561607361,L, + 300210027000,0.537802517414093,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918561458588,L, + 305983296750,0.567158579826355,L, + 307907720000,0.577928602695465,L, + 309832143250,0.589301943778992,L, + 311756566500,0.601371288299561,L, + 313680989750,0.614257514476776,L, + 315605413000,0.628122687339783,L, + 317529836250,0.643193602561951,L, + 319454259500,0.659806013107300,L, + 321378682750,0.678495049476624,L, + 323303106000,0.700209736824036,L, + 325227529250,0.726849555969238,L, + 327151952500,0.753802001476288,L, + 329076375750,0.000075380201451,L, + 344471761750,0.000075380201451,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417262792587,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696867942810,L, + 61581544000,0.215276315808296,L, + 63505967250,0.223114326596260,L, + 65430390500,0.230424389243126,L, + 67354813750,0.237333685159683,L, + 69279237000,0.243925243616104,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571647644043,L, + 84674623000,0.289855509996414,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141175985336,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019333124161,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213140964508,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688827276230,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150633811951,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298123359680,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677888870239,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854879379272,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869737148285,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807734727859,L, + 150105013500,0.439749330282211,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470404863358,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202438592911,L, + 161651553000,0.463045120239258,L, + 163575976250,0.466872841119766,L, + 165500399500,0.470685720443726,L, + 167424822750,0.474484324455261,L, + 169349246000,0.478268861770630,L, + 171273669250,0.482039719820023,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541351795197,L, + 177046939000,0.493272632360458,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697910785675,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074700832367,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404760837555,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931485652924,L, + 198215594750,0.533536493778229,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715575218201,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854542732239,L, + 207837711000,0.551409423351288,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490335941315,L, + 213610980750,0.562016785144806,L, + 215535404000,0.565533936023712,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031088829041,L, + 223233097000,0.579512596130371,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351900577545,L, + 232855213250,0.596790611743927,L, + 234779636500,0.600221037864685,L, + 236704059750,0.603643298149109,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463201999664,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633006095886,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657318055629730,L, + 269419255000,0.660606205463409,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159318923950,L, + 275192524750,0.670423805713654,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401644229889,L, + 284814641000,0.686625421047211,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046987056732,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433088302612,L, + 294436757250,0.702612400054932,L, + 296361180500,0.705781936645508,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228974819183,L, + 304058873500,0.718355655670166,L, + 305983296750,0.721470236778259,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659225463867,L, + 311756566500,0.730731010437012,L, + 313680989750,0.733785450458527,L, + 315605413000,0.736819744110107,L, + 317529836250,0.739830851554871,L, + 319454259500,0.742812991142273,L, + 321378682750,0.745757281780243,L, + 323303106000,0.748646795749664,L, + 325227529250,0.751438677310944,L, + 327151952500,0.753801941871643,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380186900 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380186900,L, + 51959427750,0.000075380186900,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008212924004,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696793437004,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333655357361,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256717205048,L, + 73128083500,0.256370335817337,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063694238663,L, + 78901353250,0.273687750101089,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571617841721,L, + 84674623000,0.289855480194092,L, + 86599046250,0.295046925544739,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183410644531,L, + 92372316000,0.310141116380692,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634134769440,L, + 100070009000,0.329352051019669,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213081359863,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834423065186,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122639179230,L, + 128936357750,0.395298093557358,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872113227844,L, + 144331743750,0.427869647741318,L, + 146256167000,0.431848019361496,L, + 148180590250,0.435807675123215,L, + 150105013500,0.439749240875244,L, + 152029436750,0.443673282861710,L, + 153953860000,0.447580158710480,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045060634613,L, + 163575976250,0.466872721910477,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484264850616,L, + 169349246000,0.478268802165985,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485797047615051,L, + 175122515750,0.489541232585907,L, + 177046939000,0.493272691965103,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392087459564,L, + 184744632000,0.508074581623077,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404701232910,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854423522949,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016785144806,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985222339630,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351960182190,L, + 232855213250,0.596790552139282,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643119335175,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617250978946686,L, + 246326176000,0.620632946491241,L, + 248250599250,0.624006927013397,L, + 250175022500,0.627373218536377,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634081959724426,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086837768555,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317936420441,L, + 269419255000,0.660606205463409,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159259319305,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840614795685,L, + 288663487500,0.693047046661377,L, + 290587910750,0.696244537830353,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612280845642,L, + 296361180500,0.705781936645508,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228855609894,L, + 304058873500,0.718355774879456,L, + 305983296750,0.721470355987549,L, + 307907720000,0.724571824073792,L, + 309832143250,0.727659106254578,L, + 311756566500,0.730730891227722,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819863319397,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812871932983,L, + 321378682750,0.745757400989532,L, + 323303106000,0.748646914958954,L, + 325227529250,0.751438558101654,L, + 327151952500,0.753801941871643,L, + 329076375750,0.000075380186900,L, + 344471761750,0.000075380186900,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_052" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792416572571 + KeyVer: 4005 + KeyCount: 81 + Key: + 0,0.016792416572571,L, + 190517901750,0.016792416572571,L, + 192442325000,0.016793072223663,L, + 194366748250,0.016792416572571,L, + 196291171500,0.016792237758636,L, + 198215594750,0.016792416572571,L, + 200140018000,0.016792476177216,L, + 202064441250,0.016793012619019,L, + 203988864500,0.016792356967926,L, + 205913287750,0.016792893409729,L, + 207837711000,0.016792476177216,L, + 209762134250,0.016792893409729,L, + 211686557500,0.016791999340057,L, + 213610980750,0.016792595386505,L, + 215535404000,0.016792654991150,L, + 217459827250,0.016793131828308,L, + 219384250500,0.016792953014374,L, + 221308673750,0.016792058944702,L, + 223233097000,0.016792356967926,L, + 225157520250,0.016792893409729,L, + 227081943500,0.016792535781860,L, + 229006366750,0.016792356967926,L, + 230930790000,0.016792297363281,L, + 232855213250,0.016792356967926,L, + 236704059750,0.016792595386505,L, + 238628483000,0.016792774200439,L, + 240552906250,0.016792893409729,L, + 242477329500,0.016792058944702,L, + 244401752750,0.016793131828308,L, + 246326176000,0.016792178153992,L, + 248250599250,0.016793072223663,L, + 250175022500,0.016791939735413,L, + 252099445750,0.016792654991150,L, + 254023869000,0.016793131828308,L, + 255948292250,0.016792476177216,L, + 257872715500,0.016792595386505,L, + 259797138750,0.016792356967926,L, + 261721562000,0.016791880130768,L, + 263645985250,0.016791939735413,L, + 265570408500,0.016792535781860,L, + 267494831750,0.016792654991150,L, + 269419255000,0.016792058944702,L, + 271343678250,0.016792595386505,L, + 273268101500,0.016792237758636,L, + 275192524750,0.016792535781860,L, + 277116948000,0.016793012619019,L, + 279041371250,0.016792178153992,L, + 280965794500,0.016792356967926,L, + 282890217750,0.016793131828308,L, + 284814641000,0.016792535781860,L, + 286739064250,0.016793251037598,L, + 288663487500,0.016792058944702,L, + 290587910750,0.016792297363281,L, + 292512334000,0.016792595386505,L, + 294436757250,0.016792356967926,L, + 296361180500,0.016792297363281,L, + 298285603750,0.016792058944702,L, + 300210027000,0.016792774200439,L, + 302134450250,0.016793251037598,L, + 304058873500,0.016792118549347,L, + 305983296750,0.016792535781860,L, + 307907720000,0.016792893409729,L, + 309832143250,0.016792476177216,L, + 311756566500,0.016792535781860,L, + 313680989750,0.016792297363281,L, + 315605413000,0.016792833805084,L, + 317529836250,0.016792416572571,L, + 319454259500,0.016793072223663,L, + 321378682750,0.016792118549347,L, + 323303106000,0.016792774200439,L, + 325227529250,0.016792178153992,L, + 327151952500,0.016792595386505,L, + 329076375750,0.016793310642242,L, + 331000799000,0.016792833805084,L, + 332925222250,0.016792654991150,L, + 334849645500,0.016792416572571,L, + 336774068750,0.016792297363281,L, + 338698492000,0.016792118549347,L, + 340622915250,0.016792356967926,L, + 342547338500,0.016792535781860,L, + 344471761750,0.016792416572571,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058500885963440 + KeyVer: 4005 + KeyCount: 80 + Key: + 0,-0.058500885963440,L, + 190517901750,-0.058500885963440,L, + 192442325000,-0.058536767959595,L, + 194366748250,-0.059146642684937,L, + 196291171500,-0.059920430183411,L, + 198215594750,-0.060733795166016,L, + 200140018000,-0.061568498611450,L, + 202064441250,-0.062416195869446,L, + 203988864500,-0.063273429870605,L, + 205913287750,-0.064137578010559,L, + 207837711000,-0.065006971359253,L, + 209762134250,-0.065881133079529,L, + 211686557500,-0.066758632659912,L, + 213610980750,-0.067638993263245,L, + 215535404000,-0.068522214889526,L, + 217459827250,-0.069406986236572,L, + 219384250500,-0.070293903350830,L, + 221308673750,-0.071182250976562,L, + 223233097000,-0.072071790695190,L, + 225157520250,-0.072962641716003,L, + 227081943500,-0.073854088783264,L, + 229006366750,-0.074746131896973,L, + 230930790000,-0.075639247894287,L, + 234779636500,-0.077426671981812,L, + 236704059750,-0.078320741653442,L, + 238628483000,-0.079214930534363,L, + 240552906250,-0.080109000205994,L, + 244401752750,-0.081896662712097,L, + 246326176000,-0.082790255546570,L, + 248250599250,-0.083683252334595,L, + 250175022500,-0.084575414657593,L, + 252099445750,-0.085467338562012,L, + 254023869000,-0.086357831954956,L, + 255948292250,-0.087247490882874,L, + 257872715500,-0.088135719299316,L, + 259797138750,-0.089022397994995,L, + 261721562000,-0.089907765388489,L, + 263645985250,-0.090790510177612,L, + 265570408500,-0.091670870780945,L, + 267494831750,-0.092548727989197,L, + 269419255000,-0.093422770500183,L, + 271343678250,-0.094292044639587,L, + 273268101500,-0.095156311988831,L, + 275192524750,-0.096013545989990,L, + 277116948000,-0.096861481666565,L, + 279041371250,-0.097695946693420,L, + 280965794500,-0.098509550094604,L, + 282890217750,-0.099283218383789,L, + 284814641000,-0.099893450737000,L, + 286739064250,-0.099929809570312,L, + 288663487500,-0.099072813987732,L, + 290587910750,-0.097858071327209,L, + 292512334000,-0.096546530723572,L, + 294436757250,-0.095184087753296,L, + 296361180500,-0.093789815902710,L, + 298285603750,-0.092373490333557,L, + 300210027000,-0.090940594673157,L, + 302134450250,-0.089495778083801,L, + 304058873500,-0.088041663169861,L, + 305983296750,-0.086580395698547,L, + 307907720000,-0.085113406181335,L, + 309832143250,-0.083642125129700,L, + 311756566500,-0.082168102264404,L, + 313680989750,-0.080692291259766,L, + 315605413000,-0.079215168952942,L, + 317529836250,-0.077738404273987,L, + 319454259500,-0.076262116432190,L, + 321378682750,-0.074788093566895,L, + 323303106000,-0.073317289352417,L, + 325227529250,-0.071850299835205,L, + 327151952500,-0.070388793945312,L, + 329076375750,-0.068934559822083,L, + 331000799000,-0.067489743232727,L, + 332925222250,-0.066057205200195,L, + 334849645500,-0.064640879631042,L, + 336774068750,-0.063246130943298,L, + 338698492000,-0.061883926391602,L, + 340622915250,-0.060572147369385,L, + 342547338500,-0.059357404708862,L, + 344471761750,-0.058500885963440,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288230180740356 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.288230180740356,L, + 1924423250,0.298518419265747,L, + 3848846500,0.310405731201172,L, + 5773269750,0.323110580444336,L, + 7697693000,0.336395263671875,L, + 9622116250,0.350154161453247,L, + 11546539500,0.364335060119629,L, + 13470962750,0.378912687301636,L, + 15395386000,0.393878698348999,L, + 17319809250,0.409237146377563,L, + 19244232500,0.425001859664917,L, + 21168655750,0.441198110580444,L, + 23093079000,0.457861185073853,L, + 25017502250,0.475041151046753,L, + 26941925500,0.492805004119873,L, + 28866348750,0.511790037155151,L, + 30790772000,0.532561540603638,L, + 32715195250,0.555002927780151,L, + 34639618500,0.578838825225830,L, + 36564041750,0.603604555130005,L, + 38488465000,0.628666162490845,L, + 40412888250,0.653296709060669,L, + 42337311500,0.676800966262817,L, + 44261734750,0.698627710342407,L, + 46186158000,0.718426942825317,L, + 48110581250,0.736045360565186,L, + 50035004500,0.751482248306274,L, + 51959427750,0.765871286392212,L, + 53883851000,0.780287981033325,L, + 55808274250,0.794722318649292,L, + 57732697500,0.809162139892578,L, + 59657120750,0.823595762252808,L, + 61581544000,0.838007926940918,L, + 63505967250,0.852384805679321,L, + 65430390500,0.866709232330322,L, + 67354813750,0.880964279174805,L, + 69279237000,0.895131111145020,L, + 71203660250,0.909190416336060,L, + 73128083500,0.923121929168701,L, + 75052506750,0.936904430389404,L, + 76976930000,0.950517892837524,L, + 78901353250,0.963939905166626,L, + 80825776500,0.977149248123169,L, + 82750199750,0.990125179290771,L, + 84674623000,1.002847433090210,L, + 86599046250,1.015297651290894,L, + 88523469500,1.027456998825073,L, + 90447892750,1.039310455322266,L, + 92372316000,1.050843000411987,L, + 94296739250,1.062041997909546,L, + 96221162500,1.072897434234619,L, + 98145585750,1.083401203155518,L, + 100070009000,1.093547105789185,L, + 101994432250,1.103331565856934,L, + 103918855500,1.112752676010132,L, + 105843278750,1.121810674667358,L, + 107767702000,1.130506753921509,L, + 109692125250,1.138845920562744,L, + 111616548500,1.146832227706909,L, + 113540971750,1.154471874237061,L, + 115465395000,1.161772966384888,L, + 117389818250,1.168742656707764,L, + 119314241500,1.175390720367432,L, + 121238664750,1.181726455688477,L, + 123163088000,1.187759160995483,L, + 125087511250,1.193499803543091,L, + 127011934500,1.198958158493042,L, + 128936357750,1.204144001007080,L, + 130860781000,1.209068775177002,L, + 132785204250,1.213741540908813,L, + 134709627500,1.218172550201416,L, + 136634050750,1.222372055053711,L, + 138558474000,1.226348876953125,L, + 140482897250,1.230113029479980,L, + 142407320500,1.233672380447388,L, + 144331743750,1.237036466598511,L, + 146256167000,1.240213394165039,L, + 148180590250,1.243210315704346,L, + 150105013500,1.246036291122437,L, + 152029436750,1.248697519302368,L, + 153953860000,1.251201152801514,L, + 155878283250,1.253554582595825,L, + 157802706500,1.255763053894043,L, + 159727129750,1.257833480834961,L, + 161651553000,1.259771823883057,L, + 163575976250,1.261583089828491,L, + 165500399500,1.263272523880005,L, + 167424822750,1.264845371246338,L, + 169349246000,1.266306877136230,L, + 171273669250,1.267660617828369,L, + 173198092500,1.268911600112915,L, + 175122515750,1.270064115524292,L, + 177046939000,1.271121263504028,L, + 178971362250,1.272087335586548,L, + 180895785500,1.272966146469116,L, + 182820208750,1.273760557174683,L, + 184744632000,1.274474143981934,L, + 186669055250,1.275110244750977,L, + 188593478500,1.275671005249023,L, + 190517901750,1.276159524917603,L, + 192442325000,-0.578061103820801,L, + 282890217750,-0.578061103820801,L, + 284814641000,-0.557460784912109,L, + 286739064250,0.000370740890503,L, + 290587910750,0.015030145645142,L, + 292512334000,0.022360086441040,L, + 296361180500,0.037019491195679,L, + 298285603750,0.044349431991577,L, + 300210027000,0.051679134368896,L, + 302134450250,0.059009075164795,L, + 304058873500,0.066338777542114,L, + 305983296750,0.073668718338013,L, + 311756566500,0.095657825469971,L, + 313680989750,0.102987766265869,L, + 315605413000,0.110317468643188,L, + 317529836250,0.121187925338745,L, + 319454259500,0.134479522705078,L, + 321378682750,0.150350332260132,L, + 323303106000,0.168187856674194,L, + 325227529250,0.186523199081421,L, + 327151952500,0.203898429870605,L, + 329076375750,0.219612121582031,L, + 331000799000,0.233596324920654,L, + 332925222250,0.246043443679810,L, + 334849645500,0.257195472717285,L, + 336774068750,0.267271518707275,L, + 338698492000,0.276450395584106,L, + 340622915250,0.284874916076660,L, + 342547338500,0.292658805847168,L, + 344471761750,0.299892187118530,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467529284443565,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568996409327795,L, + 21168655750,66.373005297285516,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237300935935750,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348818600705343,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527321096856127,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098540474808352,L, + 196291171500,42.441661690996028,L, + 198215594750,38.276933354019228,L, + 200140018000,34.902164205877462,L, + 202064441250,32.037835584977515,L, + 203988864500,29.538737669565144,L, + 205913287750,27.317940934526415,L, + 207837711000,25.318529413507701,L, + 209762134250,23.500828245167742,L, + 211686557500,21.835863767047393,L, + 213610980750,20.301711071910937,L, + 215535404000,18.881328837779222,L, + 217459827250,17.561152308960619,L, + 219384250500,16.330166097871206,L, + 221308673750,15.179289468009468,L, + 223233097000,14.100946885812220,L, + 225157520250,13.088717119686017,L, + 227081943500,12.137130041879329,L, + 229006366750,11.241469406770273,L, + 230930790000,10.397628563120383,L, + 232855213250,9.602037029541039,L, + 234779636500,8.851522183162777,L, + 236704059750,8.143319504919036,L, + 238628483000,7.474936829536412,L, + 240552906250,6.844173982328519,L, + 242477329500,6.249049781549230,L, + 244401752750,5.687783682259293,L, + 246326176000,5.158796630099967,L, + 248250599250,4.660633367891218,L, + 250175022500,4.191998294124861,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776612536794,L, + 255948292250,2.952192387826271,L, + 257872715500,2.591109741599011,L, + 259797138750,2.254809369558050,L, + 261721562000,1.942610173777090,L, + 263645985250,1.653947382989136,L, + 265570408500,1.388353983009691,L, + 267494831750,1.145431368267661,L, + 269419255000,0.924908465630361,L, + 271343678250,0.726609184283252,L, + 273268101500,0.550526960841430,L, + 275192524750,0.396816941984672,L, + 277116948000,0.265868555217376,L, + 279041371250,0.158436483081973,L, + 280965794500,0.075941458286678,L, + 282890217750,0.021060886638177,L, + 284814641000,0.000309185366264,L, + 286739064250,0.000001885382741,L, + 288663487500,1.237622273476599,L, + 290587910750,2.992587834124961,L, + 292512334000,4.887326065783146,L, + 294436757250,6.855266636427426,L, + 296361180500,8.869395934447027,L, + 298285603750,10.915502897500113,L, + 300210027000,12.984963984872733,L, + 302134450250,15.072043545209374,L, + 304058873500,17.172642611234391,L, + 305983296750,19.283683328953046,L, + 307907720000,21.402723905737073,L, + 309832143250,23.527769926348821,L, + 311756566500,25.657101890664745,L, + 313680989750,27.789198374047231,L, + 315605413000,29.922655772621837,L, + 317529836250,32.056109756101861,L, + 319454259500,34.188214777220807,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442592762148479,L, + 325227529250,40.561628216290629,L, + 327151952500,42.672665518914698,L, + 329076375750,44.773269707581598,L, + 331000799000,46.860346706597298,L, + 332925222250,48.929808647743563,L, + 334849645500,50.975914757022998,L, + 336774068750,52.990045335703073,L, + 338698492000,54.957990175215585,L, + 340622915250,56.852725632109419,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429199967863628 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429199967863628,L, + 1924423250,-20.421563816371563,L, + 3848846500,-20.389152861212608,L, + 5773269750,-20.328215620985134,L, + 7697693000,-20.237252869166326,L, + 9622116250,-20.114738058476693,L, + 11546539500,-19.958844113313255,L, + 13470962750,-19.767296580682398,L, + 15395386000,-19.537330941517570,L, + 17319809250,-19.265550884253983,L, + 19244232500,-18.947798531234398,L, + 21168655750,-18.578937580202975,L, + 23093079000,-18.152573266549297,L, + 25017502250,-17.660581080255646,L, + 26941925500,-17.092459605473142,L, + 28866348750,-16.398737782043451,L, + 30790772000,-15.538796474972573,L, + 32715195250,-14.521077798074625,L, + 34639618500,-13.368168333161163,L, + 36564041750,-12.119607191563686,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565860078828472,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346955306189836,L, + 46186158000,-6.476726026681639,L, + 48110581250,-5.792768385557293,L, + 50035004500,-5.297142111738377,L, + 51959427750,-4.905137491591221,L, + 53883851000,-4.534031115870159,L, + 55808274250,-4.181762828766789,L, + 57732697500,-3.846591358929581,L, + 59657120750,-3.527032420874531,L, + 61581544000,-3.221807702009790,L, + 63505967250,-2.929808150368879,L, + 65430390500,-2.650063025316011,L, + 67354813750,-2.381716418770820,L, + 69279237000,-2.124010820065670,L, + 71203660250,-1.876271748020024,L, + 73128083500,-1.637894197283808,L, + 75052506750,-1.408334954374594,L, + 76976930000,-1.187101925507026,L, + 78901353250,-0.973750401333112,L, + 80825776500,-0.767873878875531,L, + 82750199750,-0.569102940949722,L, + 84674623000,-0.377098105809594,L, + 86599046250,-0.191548373064288,L, + 88523469500,-0.012166515416669,L, + 90447892750,0.161312526331073,L, + 92372316000,0.329133049002396,L, + 94296739250,0.491522930953331,L, + 96221162500,0.648692253861710,L, + 98145585750,0.800838346161522,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779182737059,L, + 103918855500,1.228905137826677,L, + 105843278750,1.362670550739776,L, + 107767702000,1.492215867241166,L, + 109692125250,1.617674809628189,L, + 111616548500,1.739167759984969,L, + 113540971750,1.856814033178567,L, + 115465395000,1.970721951740352,L, + 117389818250,2.080994715559815,L, + 119314241500,2.187729441389216,L, + 121238664750,2.291019403999409,L, + 123163088000,2.390948486651137,L, + 125087511250,2.487600786048556,L, + 127011934500,2.581052714933005,L, + 128936357750,2.671375563403947,L, + 130860781000,2.758639981230609,L, + 132785204250,2.842909361106224,L, + 134709627500,2.924244961289912,L, + 136634050750,3.002704624946205,L, + 138558474000,3.078340005380702,L, + 140482897250,3.151206811323820,L, + 142407320500,3.221346450797403,L, + 144331743750,3.288804600691526,L, + 146256167000,3.353623309358265,L, + 148180590250,3.415842277272172,L, + 150105013500,3.475492667171335,L, + 152029436750,3.532608843445015,L, + 153953860000,3.587218767180127,L, + 155878283250,3.639348051586059,L, + 157802706500,3.689017187230321,L, + 159727129750,3.736245384019953,L, + 161651553000,3.781050998088348,L, + 163575976250,3.823440859624679,L, + 165500399500,3.863418810610353,L, + 167424822750,3.900995096329124,L, + 169349246000,3.936156056402653,L, + 171273669250,3.968897421962708,L, + 173198092500,3.999194860460372,L, + 175122515750,4.027024466233549,L, + 177046939000,4.052339281731695,L, + 178971362250,4.075086799875566,L, + 180895785500,4.095180362640069,L, + 182820208750,4.112515809640360,L, + 184744632000,4.126920678599896,L, + 186669055250,4.138140971858919,L, + 188593478500,4.145734007781846,L, + 190517901750,4.148650071670614,L, + 192442325000,-20.443355534918460,L, + 194366748250,-23.594763836822793,L, + 196291171500,-25.119200587864920,L, + 198215594750,-26.241532149637926,L, + 200140018000,-27.150971837623818,L, + 202064441250,-27.922868591198775,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194800078815060,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223447058385013,L, + 211686557500,-30.672132430246261,L, + 213610980750,-31.085563780706536,L, + 215535404000,-31.468330996888088,L, + 217459827250,-31.824101890375200,L, + 219384250500,-32.155830517983901,L, + 221308673750,-32.465975747815399,L, + 223233097000,-32.756566146053174,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285789693512513,L, + 229006366750,-33.527154918402076,L, + 230930790000,-33.754555821533565,L, + 232855213250,-33.968952044485370,L, + 234779636500,-34.171204191092912,L, + 236704059750,-34.362060167070304,L, + 238628483000,-34.542172255483287,L, + 240552906250,-34.712155173357147,L, + 242477329500,-34.872531430163399,L, + 244401752750,-35.023779139143947,L, + 246326176000,-35.166338847500249,L, + 248250599250,-35.300579385447485,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656804486514403,L, + 255948292250,-35.760988777019044,L, + 257872715500,-35.858284821745734,L, + 259797138750,-35.948911186747921,L, + 261721562000,-36.033042041849427,L, + 263645985250,-36.110837896495767,L, + 265570408500,-36.182404618619053,L, + 267494831750,-36.247865151624360,L, + 269419255000,-36.307298042687144,L, + 271343678250,-36.360737442753248,L, + 273268101500,-36.408190182011843,L, + 275192524750,-36.449615279327908,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513856623566369,L, + 280965794500,-36.536088889314733,L, + 282890217750,-36.550883079056959,L, + 284814641000,-36.556470173798019,L, + 286739064250,-36.556541890784302,L, + 288663487500,-36.223027168707645,L, + 290587910750,-35.750087795103717,L, + 292512334000,-35.239493588605562,L, + 294436757250,-34.709160135406101,L, + 296361180500,-34.166388907728063,L, + 298285603750,-33.614994566222897,L, + 300210027000,-33.057309620492155,L, + 302134450250,-32.494877693288267,L, + 304058873500,-31.928795029973006,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788853532972439,L, + 309832143250,-30.216193397486467,L, + 311756566500,-29.642368714747011,L, + 313680989750,-29.067802956482609,L, + 315605413000,-28.492875198192198,L, + 317529836250,-27.917938902165325,L, + 319454259500,-27.343373143900923,L, + 321378682750,-26.769551876256049,L, + 323303106000,-26.196886618128200,L, + 325227529250,-25.625841822380934,L, + 327151952500,-25.056950243769514,L, + 329076375750,-24.490870995548839,L, + 331000799000,-23.928437360797655,L, + 332925222250,-23.370750707519623,L, + 334849645500,-22.819359781109039,L, + 336774068750,-22.276581723241833,L, + 338698492000,-21.746255100231540,L, + 340622915250,-21.235652355996923,L, + 342547338500,-20.762718105034871,L, + 344471761750,-20.429201675410919,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998294453681410 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-30.998294453681410,L, + 1924423250,-30.999076510341375,L, + 3848846500,-31.002385736994242,L, + 5773269750,-31.008604624233531,L, + 7697693000,-31.017900511693902,L, + 9622116250,-31.030406588064178,L, + 11546539500,-31.046327759019455,L, + 13470962750,-31.065882590613175,L, + 15395386000,-31.089375026263401,L, + 17319809250,-31.117122669766538,L, + 19244232500,-31.149572898513220,L, + 21168655750,-31.187241391785786,L, + 23093079000,-31.230783847744554,L, + 25017502250,-31.281016473995344,L, + 26941925500,-31.339038930994516,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526640321832403,L, + 32715195250,-31.666020577130066,L, + 34639618500,-31.831031117288170,L, + 36564041750,-32.014209960638475,L, + 38488465000,-32.205117163034643,L, + 40412888250,-32.391635968889084,L, + 42337311500,-32.561905754708086,L, + 44261734750,-32.706347180180728,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895963476823759,L, + 50035004500,-32.937730083598332,L, + 51959427750,-32.961396689072387,L, + 53883851000,-32.983809954833752,L, + 55808274250,-33.005082579003727,L, + 57732697500,-33.025320429514444,L, + 59657120750,-33.044619129014293,L, + 61581544000,-33.063050394489544,L, + 63505967250,-33.080685942926493,L, + 65430390500,-33.097577000743911,L, + 67354813750,-33.113778209455155,L, + 69279237000,-33.129337380384420,L, + 71203660250,-33.144302324855900,L, + 73128083500,-33.158696948531677,L, + 75052506750,-33.172558817452199,L, + 76976930000,-33.185918667468727,L, + 78901353250,-33.198793574054179,L, + 80825776500,-33.211238178721928,L, + 82750199750,-33.223242236188206,L, + 84674623000,-33.234836482304289,L, + 86599046250,-33.246034577448505,L, + 88523469500,-33.256867257472130,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287282089846158,L, + 96221162500,-33.296772637697877,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314855563525455,L, + 101994432250,-33.323471847163418,L, + 103918855500,-33.331814923234575,L, + 105843278750,-33.339891621928103,L, + 107767702000,-33.347712188527758,L, + 109692125250,-33.355290283411875,L, + 111616548500,-33.362622491485872,L, + 113540971750,-33.369729303317257,L, + 115465395000,-33.376617549095208,L, + 117389818250,-33.383270153346793,L, + 119314241500,-33.389714436828690,L, + 121238664750,-33.395950399540901,L, + 123163088000,-33.401988286767185,L, + 125087511250,-33.407821268318365,L, + 127011934500,-33.413466419667373,L, + 128936357750,-33.418916910625036,L, + 130860781000,-33.424189816664281,L, + 132785204250,-33.429274892501347,L, + 134709627500,-33.434189213609166,L, + 136634050750,-33.438929364893148,L, + 138558474000,-33.443488516164123,L, + 140482897250,-33.447893988178777,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456202913304082,L, + 146256167000,-33.460113196603906,L, + 148180590250,-33.463866385552826,L, + 150105013500,-33.467469310340000,L, + 152029436750,-33.470921970965442,L, + 153953860000,-33.474220952334548,L, + 155878283250,-33.477369669541922,L, + 157802706500,-33.480368122587549,L, + 159727129750,-33.483223141660616,L, + 161651553000,-33.485924481477348,L, + 163575976250,-33.488485802416101,L, + 165500399500,-33.490896859193114,L, + 167424822750,-33.493174727281307,L, + 169349246000,-33.495295501018596,L, + 171273669250,-33.497269425688728,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500783558016693,L, + 177046939000,-33.502303275107018,L, + 178971362250,-33.503679558224775,L, + 180895785500,-33.504898746991621,L, + 182820208750,-33.505940350840042,L, + 184744632000,-33.506818030148388,L, + 186669055250,-33.507490803781636,L, + 188593478500,-33.507951841550607,L, + 190517901750,-33.508129426469033,L, + 192442325000,-30.971082980028118,L, + 194366748250,-29.975504361324735,L, + 196291171500,-29.170228473275973,L, + 198215594750,-28.412331899952232,L, + 200140018000,-27.679720686935838,L, + 202064441250,-26.963590720386662,L, + 203988864500,-26.259340160351414,L, + 205913287750,-25.564247176445850,L, + 207837711000,-24.876530796843884,L, + 209762134250,-24.194929144096367,L, + 211686557500,-23.518528680401808,L, + 213610980750,-22.846663462316126,L, + 215535404000,-22.178802442631362,L, + 217459827250,-21.514522149618973,L, + 219384250500,-20.853484488915040,L, + 221308673750,-20.195419668047354,L, + 223233097000,-19.540110828509761,L, + 225157520250,-18.887363309910921,L, + 227081943500,-18.237020017899919,L, + 229006366750,-17.588964839260871,L, + 230930790000,-16.943076538136005,L, + 232855213250,-16.299281689991748,L, + 234779636500,-15.657491502368883,L, + 236704059750,-15.017656456395933,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743681888444168,L, + 242477329500,-13.109489432499288,L, + 244401752750,-12.477135151214783,L, + 246326176000,-11.846631851195349,L, + 248250599250,-11.217983801309218,L, + 250175022500,-10.591220883634007,L, + 252099445750,-9.966383225531091,L, + 254023869000,-9.343521199645599,L, + 255948292250,-8.722710791832045,L, + 257872715500,-8.104037379455056,L, + 259797138750,-7.487617075730522,L, + 261721562000,-6.873606975009354,L, + 263645985250,-6.262182100889031,L, + 265570408500,-5.653579375556388,L, + 267494831750,-5.048104023089961,L, + 269419255000,-4.446153048235255,L, + 271343678250,-3.848253656218831,L, + 273268101500,-3.255133048743881,L, + 275192524750,-2.667856948764338,L, + 277116948000,-2.088030023848329,L, + 279041371250,-1.518364072539758,L, + 280965794500,-0.964060604056699,L, + 282890217750,-0.438163812290402,L, + 284814641000,-0.024739282014135,L, + 286739064250,-0.000006424401689,L, + 288663487500,-0.641060157794467,L, + 290587910750,-1.550085498757662,L, + 292512334000,-2.531511431892270,L, + 294436757250,-3.550852492161505,L, + 296361180500,-4.594116716885498,L, + 298285603750,-5.653946498224276,L, + 300210027000,-6.725874252130422,L, + 302134450250,-7.806924150559928,L, + 304058873500,-8.894980969304212,L, + 305983296750,-9.988444736550200,L, + 307907720000,-11.086047598433209,L, + 309832143250,-12.186765026577740,L, + 311756566500,-13.289706535070755,L, + 313680989750,-14.394073845553004,L, + 315605413000,-15.499150641935291,L, + 317529836250,-16.604220608128404,L, + 319454259500,-17.708593895026180,L, + 321378682750,-18.811532842198254,L, + 323303106000,-19.912248562795494,L, + 325227529250,-21.009863377509550,L, + 327151952500,-22.103318607019077,L, + 329076375750,-23.191376279537007,L, + 331000799000,-24.272427885513807,L, + 332925222250,-25.344349236117605,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447444736284258,L, + 338698492000,-28.466794120846540,L, + 340622915250,-29.448210342305924,L, + 342547338500,-30.357243634036198,L, + 344471761750,-30.998294453681410,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344967603683 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344967603683,L, + 1924423250,0.321910470724106,L, + 3848846500,0.322999149560928,L, + 5773269750,0.323413133621216,L, + 7697693000,0.323450118303299,L, + 9622116250,0.323262572288513,L, + 11546539500,0.322943389415741,L, + 13470962750,0.322556555271149,L, + 15395386000,0.322150588035583,L, + 17319809250,0.321765452623367,L, + 19244232500,0.321436911821365,L, + 21168655750,0.321198970079422,L, + 23093079000,0.321086376905441,L, + 25017502250,0.321136683225632,L, + 26941925500,0.321392476558685,L, + 28866348750,0.326478868722916,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890545606613,L, + 34639618500,0.396891295909882,L, + 36564041750,0.435117304325104,L, + 38488465000,0.476715832948685,L, + 40412888250,0.518270969390869,L, + 42337311500,0.556369721889496,L, + 44261734750,0.588167726993561,L, + 46186158000,0.611717343330383,L, + 48110581250,0.625994682312012,L, + 50035004500,0.630722999572754,L, + 51959427750,0.630567073822021,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406332969666,L, + 57732697500,0.628449618816376,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877737998962,L, + 63505967250,0.624292612075806,L, + 65430390500,0.622524678707123,L, + 67354813750,0.620584428310394,L, + 69279237000,0.618481397628784,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818466663361,L, + 75052506750,0.611272335052490,L, + 76976930000,0.608591020107269,L, + 78901353250,0.605779886245728,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610128879547,L, + 86599046250,0.593320608139038,L, + 88523469500,0.589919924736023,L, + 90447892750,0.586410522460938,L, + 92372316000,0.582794904708862,L, + 94296739250,0.579075098037720,L, + 96221162500,0.575253009796143,L, + 98145585750,0.571330070495605,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187122344971,L, + 103918855500,0.558969020843506,L, + 105843278750,0.554654479026794,L, + 107767702000,0.550243794918060,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135489940643,L, + 113540971750,0.536438107490540,L, + 115465395000,0.531644940376282,L, + 117389818250,0.526755690574646,L, + 119314241500,0.521769881248474,L, + 121238664750,0.516686558723450,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223499774933,L, + 127011934500,0.500841140747070,L, + 128936357750,0.495356112718582,L, + 130860781000,0.489766478538513,L, + 132785204250,0.484070032835007,L, + 134709627500,0.478264302015305,L, + 136634050750,0.472346395254135,L, + 138558474000,0.466313123703003,L, + 140482897250,0.460160881280899,L, + 142407320500,0.453885614871979,L, + 144331743750,0.447482764720917,L, + 146256167000,0.440947055816650,L, + 148180590250,0.434272587299347,L, + 150105013500,0.427452981472015,L, + 152029436750,0.420480579137802,L, + 153953860000,0.413346827030182,L, + 155878283250,0.406042069196701,L, + 157802706500,0.398555070161819,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979869842529,L, + 163575976250,0.374858886003494,L, + 165500399500,0.366488635540009,L, + 167424822750,0.357843697071075,L, + 169349246000,0.348893463611603,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915642738342,L, + 175122515750,0.319778919219971,L, + 177046939000,0.309108734130859,L, + 178971362250,0.297793835401535,L, + 180895785500,0.285674810409546,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887303829193,L, + 186669055250,0.241029396653175,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769341230392,L, + 192442325000,0.000044941905799,L, + 194366748250,0.000040118600737,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067653127,L, + 200140018000,0.000034675722418,L, + 202064441250,0.000033494314266,L, + 203988864500,0.000032463547541,L, + 205913287750,0.000031547569961,L, + 207837711000,0.000030722902011,L, + 209762134250,0.000029973178243,L, + 211686557500,0.000029286451536,L, + 213610980750,0.000028653679692,L, + 215535404000,0.000028067830499,L, + 217459827250,0.000027523314202,L, + 219384250500,0.000027015579690,L, + 221308673750,0.000026540892577,L, + 223233097000,0.000026096122383,L, + 225157520250,0.000025678617021,L, + 227081943500,0.000025286126402,L, + 229006366750,0.000024916706025,L, + 230930790000,0.000024568655135,L, + 232855213250,0.000024240498533,L, + 234779636500,0.000023930950192,L, + 236704059750,0.000023638838684,L, + 238628483000,0.000023363158107,L, + 240552906250,0.000023102995328,L, + 242477329500,0.000022857526346,L, + 244401752750,0.000022626025384,L, + 246326176000,0.000022407839424,L, + 248250599250,0.000022202368200,L, + 250175022500,0.000022009071472,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497708076,L, + 257872715500,0.000021348780137,L, + 259797138750,0.000021210074920,L, + 261721562000,0.000021081306841,L, + 263645985250,0.000020962252165,L, + 265570408500,0.000020852705347,L, + 267494831750,0.000020752524506,L, + 269419255000,0.000020661571398,L, + 271343678250,0.000020579791453,L, + 273268101500,0.000020507177396,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389799829,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311521439,L, + 282890217750,0.000020288927772,L, + 284814641000,0.000020280478566,L, + 286739064250,0.206803947687149,L, + 288663487500,0.232565656304359,L, + 290587910750,0.245429664850235,L, + 292512334000,0.254731386899948,L, + 294436757250,0.262120485305786,L, + 296361180500,0.268265932798386,L, + 298285603750,0.273518383502960,L, + 300210027000,0.278088837862015,L, + 302134450250,0.282116144895554,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903206586838,L, + 307907720000,0.291787892580032,L, + 309832143250,0.294393241405487,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894405364990,L, + 315605413000,0.300840169191360,L, + 317529836250,0.302609384059906,L, + 319454259500,0.304218381643295,L, + 321378682750,0.305681318044662,L, + 323303106000,0.307010620832443,L, + 325227529250,0.308217525482178,L, + 327151952500,0.309312224388123,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203896999359,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452214002609,L, + 338698492000,0.314102530479431,L, + 340622915250,0.314752757549286,L, + 342547338500,0.315492510795593,L, + 344471761750,0.316851437091827,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844671964645 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.316844671964645,L, + 1924423250,0.317553371191025,L, + 3848846500,0.317994207143784,L, + 5773269750,0.318131417036057,L, + 7697693000,0.317930340766907,L, + 9622116250,0.317365050315857,L, + 11546539500,0.316432714462280,L, + 13470962750,0.315173506736755,L, + 15395386000,0.313687086105347,L, + 17319809250,0.312128514051437,L, + 19244232500,0.310671806335449,L, + 21168655750,0.309460848569870,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061331510544,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985641717911,L, + 30790772000,0.324338674545288,L, + 32715195250,0.344708025455475,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122429132462,L, + 38488465000,0.441004633903503,L, + 40412888250,0.476886898279190,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301301956177,L, + 46186158000,0.557670593261719,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115633964539,L, + 51959427750,0.573916792869568,L, + 53883851000,0.573346614837646,L, + 55808274250,0.572440505027771,L, + 57732697500,0.571227669715881,L, + 59657120750,0.569733500480652,L, + 61581544000,0.567979454994202,L, + 63505967250,0.565984308719635,L, + 65430390500,0.563764512538910,L, + 67354813750,0.561334133148193,L, + 69279237000,0.558706104755402,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900791168213,L, + 75052506750,0.549742400646210,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954802513123,L, + 80825776500,0.539339423179626,L, + 82750199750,0.535584449768066,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676761150360,L, + 88523469500,0.523533463478088,L, + 90447892750,0.519269347190857,L, + 92372316000,0.514888167381287,L, + 94296739250,0.510393202304840,L, + 96221162500,0.505787611007690,L, + 98145585750,0.501074135303497,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333335638046,L, + 103918855500,0.486310392618179,L, + 105843278750,0.481188237667084,L, + 107767702000,0.475968480110168,L, + 109692125250,0.470652669668198,L, + 111616548500,0.465241938829422,L, + 113540971750,0.459737420082092,L, + 115465395000,0.454140067100525,L, + 117389818250,0.448450416326523,L, + 119314241500,0.442669272422791,L, + 121238664750,0.436796814203262,L, + 123163088000,0.430833280086517,L, + 125087511250,0.424778819084167,L, + 127011934500,0.418633222579956,L, + 128936357750,0.412396103143692,L, + 130860781000,0.406066954135895,L, + 132785204250,0.399645000696182,L, + 134709627500,0.393129348754883,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811793565750,L, + 140482897250,0.373006761074066,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093695878983,L, + 146256167000,0.351980566978455,L, + 148180590250,0.344758927822113,L, + 150105013500,0.337425053119659,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402834892273,L, + 155878283250,0.314703822135925,L, + 157802706500,0.306871086359024,L, + 159727129750,0.298896700143814,L, + 161651553000,0.290771842002869,L, + 163575976250,0.282485574483871,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375286340714,L, + 169349246000,0.256517142057419,L, + 171273669250,0.247427463531494,L, + 173198092500,0.238077089190483,L, + 175122515750,0.228428363800049,L, + 177046939000,0.218431472778320,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090566158295,L, + 182820208750,0.185499250888824,L, + 184744632000,0.172995239496231,L, + 186669055250,0.159099221229553,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520822525,L, + 194366748250,0.000026909170629,L, + 196291171500,0.000026129557227,L, + 198215594750,0.000025555593311,L, + 200140018000,0.000025090488634,L, + 202064441250,0.000024695737011,L, + 203988864500,0.000024351316824,L, + 205913287750,0.000024045253667,L, + 207837711000,0.000023769702238,L, + 209762134250,0.000023519189199,L, + 211686557500,0.000023289725505,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882537451,L, + 217459827250,0.000022700593036,L, + 219384250500,0.000022530941351,L, + 221308673750,0.000022372329113,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084210286,L, + 227081943500,0.000021953061150,L, + 229006366750,0.000021829622710,L, + 230930790000,0.000021713329261,L, + 232855213250,0.000021603678761,L, + 234779636500,0.000021500243747,L, + 236704059750,0.000021402638595,L, + 238628483000,0.000021310523152,L, + 240552906250,0.000021223591830,L, + 242477329500,0.000021141571779,L, + 244401752750,0.000021064221073,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922656404,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797395337,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687204596,L, + 257872715500,0.000020637438865,L, + 259797138750,0.000020591092834,L, + 261721562000,0.000020548066459,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471681637,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407818738,L, + 271343678250,0.000020380492060,L, + 273268101500,0.000020356224923,L, + 275192524750,0.000020335046429,L, + 277116948000,0.000020317005692,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290852262,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803947687149,L, + 288663487500,0.232919052243233,L, + 290587910750,0.245930254459381,L, + 292512334000,0.255281001329422,L, + 294436757250,0.262665152549744,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961126804352,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234007596970,L, + 311756566500,0.296479701995850,L, + 313680989750,0.298507779836655,L, + 315605413000,0.300342172384262,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509086370468,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115329265594,L, + 325227529250,0.307243078947067,L, + 327151952500,0.308270901441574,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076862573624,L, + 332925222250,0.310882627964020,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149780035019,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037369728088,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212555885315 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212555885315,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968772888184,L, + 5773269750,0.318790227174759,L, + 7697693000,0.318605095148087,L, + 9622116250,0.318420708179474,L, + 11546539500,0.318241685628891,L, + 13470962750,0.318071514368057,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769229412079,L, + 19244232500,0.317642778158188,L, + 21168655750,0.317536950111389,L, + 23093079000,0.317455232143402,L, + 25017502250,0.317402124404907,L, + 26941925500,0.317382931709290,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921168327332,L, + 32715195250,0.358883082866669,L, + 34639618500,0.389874815940857,L, + 36564041750,0.426987320184708,L, + 38488465000,0.467436641454697,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998466968536,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952174186707,L, + 48110581250,0.612877607345581,L, + 50035004500,0.617490410804749,L, + 51959427750,0.617330253124237,L, + 53883851000,0.616870701313019,L, + 55808274250,0.616138458251953,L, + 57732697500,0.615156769752502,L, + 59657120750,0.613944590091705,L, + 61581544000,0.612519085407257,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082698822021,L, + 67354813750,0.607095539569855,L, + 69279237000,0.604942381381989,L, + 71203660250,0.602631688117981,L, + 73128083500,0.600171148777008,L, + 75052506750,0.597567558288574,L, + 76976930000,0.594826757907867,L, + 78901353250,0.591954171657562,L, + 80825776500,0.588954806327820,L, + 82750199750,0.585832834243774,L, + 84674623000,0.582592248916626,L, + 86599046250,0.579236567020416,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191834449768,L, + 92372316000,0.568508327007294,L, + 94296739250,0.564720034599304,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837916374207,L, + 100070009000,0.552747189998627,L, + 101994432250,0.548558354377747,L, + 103918855500,0.544272661209106,L, + 105843278750,0.539890766143799,L, + 107767702000,0.535413563251495,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174783706665,L, + 113540971750,0.521413803100586,L, + 115465395000,0.516558229923248,L, + 117389818250,0.511608004570007,L, + 119314241500,0.506562650203705,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183931827545,L, + 125087511250,0.490848749876022,L, + 127011934500,0.485414803028107,L, + 128936357750,0.479880541563034,L, + 130860781000,0.474244326353073,L, + 132785204250,0.468504160642624,L, + 134709627500,0.462657690048218,L, + 136634050750,0.456702351570129,L, + 138558474000,0.450635224580765,L, + 140482897250,0.444453001022339,L, + 142407320500,0.438151866197586,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175338983536,L, + 148180590250,0.418489605188370,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692530632019,L, + 153953860000,0.397566080093384,L, + 155878283250,0.390275985002518,L, + 157802706500,0.382811695337296,L, + 159727129750,0.375160872936249,L, + 161651553000,0.367309570312500,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935161113739,L, + 167424822750,0.342368543148041,L, + 169349246000,0.333512216806412,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778625965118,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371394395828,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325160980225,L, + 186669055250,0.228012204170227,L, + 188593478500,0.207745254039764,L, + 190517901750,0.171379104256630,L, + 192442325000,0.000042378902435,L, + 194366748250,0.000038056878111,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426931961,L, + 200140018000,0.000033179661841,L, + 202064441250,0.000032121028198,L, + 203988864500,0.000031197389035,L, + 205913287750,0.000030376606446,L, + 207837711000,0.000029637647458,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350481443,L, + 213610980750,0.000027783473342,L, + 215535404000,0.000027258514820,L, + 217459827250,0.000026770583645,L, + 219384250500,0.000026315621653,L, + 221308673750,0.000025890267352,L, + 223233097000,0.000025491717679,L, + 225157520250,0.000025117604309,L, + 227081943500,0.000024765902708,L, + 229006366750,0.000024434873922,L, + 230930790000,0.000024122995455,L, + 232855213250,0.000023828946723,L, + 234779636500,0.000023551563572,L, + 236704059750,0.000023289810997,L, + 238628483000,0.000023042783141,L, + 240552906250,0.000022809656002,L, + 242477329500,0.000022589701985,L, + 244401752750,0.000022382260795,L, + 246326176000,0.000022186750357,L, + 248250599250,0.000022002628612,L, + 250175022500,0.000021829428078,L, + 252099445750,0.000021666708562,L, + 254023869000,0.000021514084438,L, + 255948292250,0.000021371204639,L, + 257872715500,0.000021237752662,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998080799,L, + 263645985250,0.000020891398890,L, + 265570408500,0.000020793240765,L, + 267494831750,0.000020703466362,L, + 269419255000,0.000020621968361,L, + 271343678250,0.000020548686734,L, + 273268101500,0.000020483617845,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378432964,L, + 279041371250,0.000020338753529,L, + 280965794500,0.000020308292733,L, + 282890217750,0.000020288054657,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435819029808,L, + 292512334000,0.254741221666336,L, + 294436757250,0.262134104967117,L, + 296361180500,0.268283247947693,L, + 298285603750,0.273539364337921,L, + 300210027000,0.278113394975662,L, + 302134450250,0.282144129276276,L, + 304058873500,0.285728573799133,L, + 305983296750,0.288937836885452,L, + 307907720000,0.291825532913208,L, + 309832143250,0.294433951377869,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940479755402,L, + 315605413000,0.300888657569885,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304271042346954,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066231966019,L, + 325227529250,0.308274149894714,L, + 327151952500,0.309369504451752,L, + 329076375750,0.310361981391907,L, + 331000799000,0.311260938644409,L, + 332925222250,0.312076270580292,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503116369247,L, + 338698492000,0.314148783683777,L, + 340622915250,0.314791947603226,L, + 342547338500,0.315520226955414,L, + 344471761750,0.316851437091827,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_051" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014211356639862 + KeyVer: 4005 + KeyCount: 102 + Key: + 0,-0.014211356639862,L, + 1924423250,-0.014211118221283,L, + 3848846500,-0.014211714267731,L, + 5773269750,-0.014211356639862,L, + 7697693000,-0.014211058616638,L, + 9622116250,-0.014211654663086,L, + 13470962750,-0.014211058616638,L, + 15395386000,-0.014210700988770,L, + 17319809250,-0.014211297035217,L, + 19244232500,-0.014212012290955,L, + 23093079000,-0.014211297035217,L, + 25017502250,-0.014210999011993,L, + 26941925500,-0.014211654663086,L, + 30790772000,-0.014210939407349,L, + 32715195250,-0.014211595058441,L, + 34639618500,-0.014211297035217,L, + 36564041750,-0.014211893081665,L, + 38488465000,-0.014210641384125,L, + 40412888250,-0.014211237430573,L, + 42337311500,-0.014211893081665,L, + 44261734750,-0.014211595058441,L, + 48110581250,-0.014210879802704,L, + 50035004500,-0.014211595058441,L, + 53883851000,-0.014210879802704,L, + 55808274250,-0.014211535453796,L, + 57732697500,-0.014211237430573,L, + 59657120750,-0.014211833477020,L, + 61581544000,-0.014211535453796,L, + 65430390500,-0.014210820198059,L, + 67354813750,-0.014211535453796,L, + 71203660250,-0.014210820198059,L, + 73128083500,-0.014211416244507,L, + 75052506750,-0.014211177825928,L, + 76976930000,-0.014211773872375,L, + 78901353250,-0.014210462570190,L, + 82750199750,-0.014211773872375,L, + 84674623000,-0.014211416244507,L, + 86599046250,-0.014211118221283,L, + 88523469500,-0.014210760593414,L, + 92372316000,-0.014212071895599,L, + 96221162500,-0.014211356639862,L, + 98145585750,-0.014211118221283,L, + 100070009000,-0.014211714267731,L, + 101994432250,-0.014211356639862,L, + 103918855500,-0.014211058616638,L, + 105843278750,-0.014211714267731,L, + 192442325000,-0.014211714267731,L, + 194366748250,-0.014211833477020,L, + 196291171500,-0.014210999011993,L, + 198215594750,-0.014211118221283,L, + 200140018000,-0.014211177825928,L, + 205913287750,-0.014211535453796,L, + 207837711000,-0.014210700988770,L, + 209762134250,-0.014210820198059,L, + 211686557500,-0.014211833477020,L, + 213610980750,-0.014210999011993,L, + 223233097000,-0.014211595058441,L, + 225157520250,-0.014211654663086,L, + 227081943500,-0.014210820198059,L, + 229006366750,-0.014210939407349,L, + 230930790000,-0.014212012290955,L, + 232855213250,-0.014211177825928,L, + 236704059750,-0.014211297035217,L, + 242477329500,-0.014211654663086,L, + 244401752750,-0.014210820198059,L, + 248250599250,-0.014211058616638,L, + 250175022500,-0.014212071895599,L, + 252099445750,-0.014211237430573,L, + 255948292250,-0.014211475849152,L, + 257872715500,-0.014210641384125,L, + 259797138750,-0.014211714267731,L, + 261721562000,-0.014211833477020,L, + 263645985250,-0.014210939407349,L, + 273268101500,-0.014211535453796,L, + 275192524750,-0.014210700988770,L, + 277116948000,-0.014210760593414,L, + 279041371250,-0.014211833477020,L, + 280965794500,-0.014211952686310,L, + 282890217750,-0.014211118221283,L, + 286739064250,-0.014211356639862,L, + 288663487500,-0.014211416244507,L, + 292512334000,-0.014211654663086,L, + 294436757250,-0.014210820198059,L, + 296361180500,-0.014210939407349,L, + 298285603750,-0.014212012290955,L, + 300210027000,-0.014211177825928,L, + 302134450250,-0.014211237430573,L, + 304058873500,-0.014211356639862,L, + 305983296750,-0.014210522174835,L, + 307907720000,-0.014211595058441,L, + 309832143250,-0.014211714267731,L, + 311756566500,-0.014211773872375,L, + 313680989750,-0.014210879802704,L, + 323303106000,-0.014211475849152,L, + 325227529250,-0.014210641384125,L, + 327151952500,-0.014211654663086,L, + 329076375750,-0.014211773872375,L, + 331000799000,-0.014210939407349,L, + 338698492000,-0.014211416244507,L, + 340622915250,-0.014211475849152,L, + 342547338500,-0.014211595058441,L, + 344471761750,-0.014210760593414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087180614471436 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,0.087180614471436,L, + 1924423250,0.086436510086060,L, + 3848846500,0.085692048072815,L, + 5773269750,0.084947228431702,L, + 7697693000,0.084202885627747,L, + 9622116250,0.083458423614502,L, + 11546539500,0.082714319229126,L, + 13470962750,0.081969618797302,L, + 15395386000,0.081225275993347,L, + 17319809250,0.080480813980103,L, + 21168655750,0.078992128372192,L, + 23093079000,0.078247427940369,L, + 25017502250,0.077503085136414,L, + 26941925500,0.076758861541748,L, + 28866348750,0.076014518737793,L, + 30790772000,0.075269818305969,L, + 32715195250,0.074525237083435,L, + 34639618500,0.073781132698059,L, + 36564041750,0.073036670684814,L, + 38488465000,0.072292089462280,L, + 40412888250,0.071547627449036,L, + 42337311500,0.070803403854370,L, + 44261734750,0.070059061050415,L, + 46186158000,0.069314241409302,L, + 48110581250,0.068569898605347,L, + 50035004500,0.067825675010681,L, + 51959427750,0.067081332206726,L, + 53883851000,0.066336631774902,L, + 55808274250,0.065592169761658,L, + 57732697500,0.064848065376282,L, + 61581544000,0.063358902931213,L, + 63505967250,0.062614440917969,L, + 65430390500,0.061869859695435,L, + 67354813750,0.061125874519348,L, + 69279237000,0.060381174087524,L, + 71203660250,0.059636831283569,L, + 73128083500,0.058892250061035,L, + 75052506750,0.058148145675659,L, + 76976930000,0.057403445243835,L, + 78901353250,0.056659102439880,L, + 80825776500,0.055914640426636,L, + 82750199750,0.055170416831970,L, + 86599046250,0.053681254386902,L, + 88523469500,0.052936911582947,L, + 90447892750,0.052192687988281,L, + 92372316000,0.051447987556458,L, + 94296739250,0.050703644752502,L, + 96221162500,0.049959182739258,L, + 98145585750,0.049215078353882,L, + 100070009000,0.048470258712769,L, + 101994432250,0.047725915908813,L, + 103918855500,0.046981453895569,L, + 105843278750,0.013481974601746,L, + 192442325000,0.013481974601746,L, + 194366748250,0.014424443244934,L, + 198215594750,0.016309142112732,L, + 200140018000,0.017251372337341,L, + 203988864500,0.019136071205139,L, + 205913287750,0.020078301429749,L, + 209762134250,0.021963000297546,L, + 211686557500,0.022905230522156,L, + 213610980750,0.023847818374634,L, + 215535404000,0.024790048599243,L, + 217459827250,0.025732398033142,L, + 219384250500,0.026674628257751,L, + 223233097000,0.028559327125549,L, + 225157520250,0.029501557350159,L, + 227081943500,0.030443906784058,L, + 229006366750,0.031386137008667,L, + 230930790000,0.032328724861145,L, + 232855213250,0.033271074295044,L, + 234779636500,0.034212827682495,L, + 238628483000,0.036097526550293,L, + 240552906250,0.037039756774902,L, + 244401752750,0.038924694061279,L, + 248250599250,0.040809154510498,L, + 252099445750,0.042693853378296,L, + 255948292250,0.044578313827515,L, + 259797138750,0.046463251113892,L, + 261721562000,0.047405481338501,L, + 263645985250,0.048347949981689,L, + 267494831750,0.050232410430908,L, + 269419255000,0.051174879074097,L, + 273268101500,0.053059339523315,L, + 275192524750,0.054001808166504,L, + 277116948000,0.054944038391113,L, + 279041371250,0.055886507034302,L, + 280965794500,0.056828737258911,L, + 282890217750,0.057771205902100,L, + 286739064250,0.059655666351318,L, + 288663487500,0.060598134994507,L, + 292512334000,0.062482595443726,L, + 296361180500,0.064367294311523,L, + 298285603750,0.065309762954712,L, + 302134450250,0.067194461822510,L, + 304058873500,0.068136692047119,L, + 305983296750,0.069079041481018,L, + 307907720000,0.070021271705627,L, + 309832143250,0.070963621139526,L, + 311756566500,0.071905612945557,L, + 315605413000,0.073790311813354,L, + 317529836250,0.074732542037964,L, + 321378682750,0.076617240905762,L, + 323303106000,0.077559471130371,L, + 325227529250,0.078501820564270,L, + 327151952500,0.079444289207458,L, + 331000799000,0.081328988075256,L, + 332925222250,0.082271218299866,L, + 336774068750,0.084155917167664,L, + 340622915250,0.086040377616882,L, + 344471761750,0.087925076484680,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817197799682617 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817197799682617,L, + 1924423250,0.818611621856689,L, + 3848846500,0.820889949798584,L, + 5773269750,0.823978185653687,L, + 7697693000,0.827825784683228,L, + 9622116250,0.832388639450073,L, + 11546539500,0.837626218795776,L, + 13470962750,0.843501329421997,L, + 15395386000,0.849981546401978,L, + 17319809250,0.857035398483276,L, + 19244232500,0.864634990692139,L, + 21168655750,0.872755289077759,L, + 23093079000,0.881371974945068,L, + 25017502250,0.890463352203369,L, + 26941925500,0.900009155273438,L, + 28866348750,0.909989833831787,L, + 30790772000,0.920388936996460,L, + 32715195250,0.931189537048340,L, + 34639618500,0.942376375198364,L, + 36564041750,0.953934669494629,L, + 38488465000,0.965851068496704,L, + 40412888250,0.978112936019897,L, + 42337311500,0.990708827972412,L, + 44261734750,1.003626823425293,L, + 46186158000,1.016856431961060,L, + 48110581250,1.030387163162231,L, + 50035004500,1.044209718704224,L, + 51959427750,1.058315038681030,L, + 53883851000,1.072693586349487,L, + 55808274250,1.087337732315063,L, + 57732697500,1.102239131927490,L, + 59657120750,1.117389678955078,L, + 61581544000,1.132782220840454,L, + 63505967250,1.148408889770508,L, + 65430390500,1.164262771606445,L, + 67354813750,1.180336475372314,L, + 69279237000,1.196623086929321,L, + 71203660250,1.213114976882935,L, + 73128083500,1.229805707931519,L, + 75052506750,1.246686697006226,L, + 76976930000,1.263751268386841,L, + 78901353250,1.280990600585938,L, + 80825776500,1.298394918441772,L, + 82750199750,1.315954446792603,L, + 84674623000,1.333657979965210,L, + 86599046250,1.351490736007690,L, + 88523469500,1.369436502456665,L, + 90447892750,1.387471914291382,L, + 92372316000,1.405567884445190,L, + 94296739250,1.423682451248169,L, + 96221162500,1.441750288009644,L, + 98145585750,1.459661722183228,L, + 100070009000,1.477201223373413,L, + 101994432250,1.493816614151001,L, + 103918855500,1.506080389022827,L, + 105843278750,-0.513281345367432,L, + 107767702000,-0.026323080062866,L, + 109692125250,-0.023519992828369,L, + 111616548500,-0.020761728286743,L, + 113540971750,-0.018049478530884,L, + 115465395000,-0.015385389328003,L, + 117389818250,-0.012770652770996,L, + 119314241500,-0.010206937789917,L, + 121238664750,-0.007696390151978,L, + 123163088000,-0.005240440368652,L, + 125087511250,-0.002841711044312,L, + 127011934500,-0.000502109527588,L, + 128936357750,0.001775979995728,L, + 130860781000,0.003989934921265,L, + 132785204250,0.006137132644653,L, + 134709627500,0.008214473724365,L, + 136634050750,0.010219335556030,L, + 138558474000,0.012147903442383,L, + 140482897250,0.013996601104736,L, + 142407320500,0.015761375427246,L, + 144331743750,0.017437934875488,L, + 146256167000,0.019021034240723,L, + 148180590250,0.020506143569946,L, + 150105013500,0.021887063980103,L, + 152029436750,0.023157358169556,L, + 153953860000,0.024310111999512,L, + 155878283250,0.025336980819702,L, + 157802706500,0.026229143142700,L, + 159727129750,0.026976108551025,L, + 161651553000,0.027566909790039,L, + 163575976250,0.027987718582153,L, + 165500399500,0.028223037719727,L, + 167424822750,0.028254985809326,L, + 169349246000,0.028062105178833,L, + 171273669250,0.027618408203125,L, + 173198092500,0.026892662048340,L, + 175122515750,0.025846242904663,L, + 177046939000,0.024429798126221,L, + 178971362250,0.022578716278076,L, + 180895785500,0.020206928253174,L, + 182820208750,0.017192363739014,L, + 184744632000,0.013352394104004,L, + 186669055250,0.008389234542847,L, + 188593478500,0.001745462417603,L, + 190517901750,-0.007927417755127,L, + 192442325000,-0.026323080062866,L, + 194366748250,-0.023398160934448,L, + 196291171500,-0.020269632339478,L, + 198215594750,-0.016932487487793,L, + 200140018000,-0.013380527496338,L, + 202064441250,-0.009607791900635,L, + 203988864500,-0.005608320236206,L, + 205913287750,-0.001375198364258,L, + 207837711000,0.003097772598267,L, + 209762134250,0.007818222045898,L, + 211686557500,0.012792825698853,L, + 213610980750,0.018029689788818,L, + 215535404000,0.023536443710327,L, + 217459827250,0.029321432113647,L, + 219384250500,0.035392999649048,L, + 221308673750,0.041759967803955,L, + 223233097000,0.048431634902954,L, + 225157520250,0.055417060852051,L, + 227081943500,0.062726497650146,L, + 229006366750,0.070369958877563,L, + 230930790000,0.078357934951782,L, + 232855213250,0.086701154708862,L, + 234779636500,0.095410585403442,L, + 236704059750,0.104497671127319,L, + 238628483000,0.113974094390869,L, + 240552906250,0.123851537704468,L, + 242477329500,0.134141921997070,L, + 244401752750,0.144857168197632,L, + 246326176000,0.156009435653687,L, + 248250599250,0.167610168457031,L, + 250175022500,0.179671049118042,L, + 252099445750,0.192203044891357,L, + 254023869000,0.205215930938721,L, + 255948292250,0.218719720840454,L, + 257872715500,0.232721567153931,L, + 259797138750,0.247228145599365,L, + 261721562000,0.262243270874023,L, + 263645985250,0.277768373489380,L, + 265570408500,0.293801307678223,L, + 267494831750,0.310336112976074,L, + 269419255000,0.327362537384033,L, + 271343678250,0.344864130020142,L, + 273268101500,0.362818717956543,L, + 275192524750,0.381196737289429,L, + 277116948000,0.399960517883301,L, + 279041371250,0.419064521789551,L, + 280965794500,0.438453674316406,L, + 282890217750,0.458063840866089,L, + 284814641000,0.477822542190552,L, + 286739064250,0.497648239135742,L, + 288663487500,0.517453193664551,L, + 290587910750,0.537143468856812,L, + 292512334000,0.556622266769409,L, + 294436757250,0.575791358947754,L, + 296361180500,0.594553947448730,L, + 298285603750,0.612818479537964,L, + 300210027000,0.630498647689819,L, + 302134450250,0.647517919540405,L, + 304058873500,0.663809061050415,L, + 305983296750,0.679316997528076,L, + 307907720000,0.693997383117676,L, + 309832143250,0.707818031311035,L, + 311756566500,0.720757246017456,L, + 313680989750,0.732804059982300,L, + 315605413000,0.743956089019775,L, + 317529836250,0.754218578338623,L, + 319454259500,0.763603448867798,L, + 321378682750,0.772127866744995,L, + 323303106000,0.779812574386597,L, + 325227529250,0.786682367324829,L, + 327151952500,0.792763471603394,L, + 329076375750,0.798083782196045,L, + 331000799000,0.802672863006592,L, + 332925222250,0.806558847427368,L, + 334849645500,0.809772014617920,L, + 336774068750,0.812339782714844,L, + 338698492000,0.814290761947632,L, + 340622915250,0.815652370452881,L, + 342547338500,0.816451311111450,L, + 344471761750,0.816711425781250,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,72.193801790988744,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 11546539500,69.927674797975996,L, + 13470962750,69.549985827442356,L, + 19244232500,68.416918915841393,L, + 21168655750,68.039223115118574,L, + 23093079000,67.661540974774084,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 28866348750,66.528480893362300,L, + 30790772000,66.150785092639481,L, + 32715195250,65.773102952294991,L, + 34639618500,65.395413981761337,L, + 36564041750,65.017725011227697,L, + 38488465000,64.640029210504863,L, + 40412888250,64.262347070160388,L, + 42337311500,63.884658099626733,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 48110581250,62.751598018214949,L, + 50035004500,62.373902217492123,L, + 51959427750,61.996220077147640,L, + 53883851000,61.618531106613986,L, + 55808274250,61.240835305891167,L, + 57732697500,60.863153165546684,L, + 65430390500,59.352397283412074,L, + 67354813750,58.974715143067591,L, + 69279237000,58.597026172533937,L, + 71203660250,58.219330371811118,L, + 73128083500,57.841648231466635,L, + 76976930000,57.086270290399327,L, + 78901353250,56.708584734960262,L, + 82750199750,55.953206793892960,L, + 84674623000,55.575521238453888,L, + 86599046250,55.197828852825651,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442450911758350,L, + 92372316000,54.064768771413867,L, + 96221162500,53.309384000157387,L, + 98145585750,52.931701859812911,L, + 100070009000,52.554009474184667,L, + 101994432250,52.176323918745602,L, + 103918855500,51.798631533117366,L, + 105843278750,34.802668840238027,L, + 107767702000,34.802662010048856,L, + 109692125250,34.802665425143438,L, + 111616548500,34.802662010048856,L, + 113540971750,34.802665425143438,L, + 115465395000,34.802665425143438,L, + 117389818250,34.802668840238027,L, + 119314241500,34.802668840238027,L, + 121238664750,34.802662010048856,L, + 123163088000,34.802665425143438,L, + 125087511250,34.802665425143438,L, + 127011934500,34.802672255332610,L, + 128936357750,34.802665425143438,L, + 130860781000,34.802668840238027,L, + 132785204250,34.802665425143438,L, + 134709627500,34.802668840238027,L, + 136634050750,34.802668840238027,L, + 138558474000,34.802665425143438,L, + 146256167000,34.802665425143438,L, + 148180590250,34.802668840238027,L, + 152029436750,34.802668840238027,L, + 155878283250,34.802662010048856,L, + 159727129750,34.802668840238027,L, + 163575976250,34.802662010048856,L, + 165500399500,34.802668840238027,L, + 167424822750,34.802665425143438,L, + 177046939000,34.802665425143438,L, + 178971362250,34.802662010048856,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802662010048856,L, + 184744632000,34.802665425143438,L, + 188593478500,34.802665425143438,L, + 190517901750,34.802668840238027,L, + 192442325000,34.802662010048856,L, + 194366748250,35.280751346286969,L, + 196291171500,35.758833852335904,L, + 198215594750,36.236926603668600,L, + 200140018000,36.715012524812131,L, + 202064441250,37.193101861050238,L, + 203988864500,37.671180952004597,L, + 207837711000,38.627359624480818,L, + 209762134250,39.105442130529759,L, + 211686557500,39.583531466767866,L, + 213610980750,40.061613972816808,L, + 215535404000,40.539703309054921,L, + 217459827250,41.017785815103856,L, + 219384250500,41.495878566436552,L, + 221308673750,41.973964487580083,L, + 223233097000,42.452046993629018,L, + 225157520250,42.930132914772550,L, + 227081943500,43.408222251010656,L, + 236704059750,45.798651856728284,L, + 238628483000,46.276734362777226,L, + 244401752750,47.711002371491560,L, + 250175022500,49.145260134922133,L, + 252099445750,49.623339225876492,L, + 254023869000,50.101435392303770,L, + 257872715500,51.057600404401654,L, + 259797138750,51.535689740639761,L, + 263645985250,52.491861582926816,L, + 265570408500,52.969944088975751,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926119346357389,L, + 271343678250,54.404201852406331,L, + 273268101500,54.882294603739027,L, + 277116948000,55.838466446026075,L, + 279041371250,56.316555782264189,L, + 280965794500,56.794641703407713,L, + 282890217750,57.272731039645826,L, + 284814641000,57.750813545694768,L, + 294436757250,60.141243151412390,L, + 296361180500,60.619335902745085,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 304058873500,62.531679587319189,L, + 309832143250,63.965937350749769,L, + 311756566500,64.444030102082465,L, + 313680989750,64.922109193036817,L, + 327151952500,68.268710641041494,L, + 329076375750,68.746796562185025,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345074235403995 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,-20.345074235403995,L, + 1924423250,-20.191412054551854,L, + 3848846500,-20.037751581247004,L, + 5773269750,-19.884089400394863,L, + 7697693000,-19.730425511995431,L, + 9622116250,-19.576763331143290,L, + 11546539500,-19.423102857838440,L, + 17319809250,-18.962116315282017,L, + 19244232500,-18.808450719335291,L, + 23093079000,-18.501129772725594,L, + 25017502250,-18.347467591873453,L, + 26941925500,-18.193808826115898,L, + 28866348750,-18.040143230169171,L, + 32715195250,-17.732822283559472,L, + 36564041750,-17.425494506760607,L, + 38488465000,-17.271834033455757,L, + 40412888250,-17.118171852603616,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810845783352043,L, + 46186158000,-16.657185310047193,L, + 48110581250,-16.503523129195052,L, + 50035004500,-16.349859240795620,L, + 51959427750,-16.196198767490770,L, + 53883851000,-16.042540001733215,L, + 57732697500,-15.735212224934347,L, + 61581544000,-15.427887863230065,L, + 63505967250,-15.274227389925215,L, + 71203660250,-14.659578666516651,L, + 75052506750,-14.352257719906955,L, + 76976930000,-14.198593831507521,L, + 78901353250,-14.044929089334442,L, + 80825776500,-13.891267762255946,L, + 82750199750,-13.737609850272037,L, + 84674623000,-13.583945108098957,L, + 88523469500,-13.276622453941966,L, + 90447892750,-13.122958565542534,L, + 92372316000,-12.969296384690391,L, + 94296739250,-12.815632496290959,L, + 96221162500,-12.661970315438818,L, + 98145585750,-12.508311549681261,L, + 100070009000,-12.354648515055475,L, + 101994432250,-12.200986334203334,L, + 103918855500,-12.047325860898484,L, + 105843278750,-5.132534125854483,L, + 107767702000,-5.132533272080837,L, + 109692125250,-5.132533698967659,L, + 111616548500,-5.132533698967659,L, + 113540971750,-5.132534552741306,L, + 115465395000,-5.132533272080837,L, + 117389818250,-5.132534552741306,L, + 119314241500,-5.132533698967659,L, + 125087511250,-5.132533698967659,L, + 127011934500,-5.132534125854483,L, + 128936357750,-5.132533698967659,L, + 130860781000,-5.132534125854483,L, + 132785204250,-5.132533272080837,L, + 134709627500,-5.132534125854483,L, + 136634050750,-5.132533698967659,L, + 138558474000,-5.132533698967659,L, + 140482897250,-5.132534125854483,L, + 142407320500,-5.132533698967659,L, + 152029436750,-5.132533698967659,L, + 153953860000,-5.132534552741306,L, + 155878283250,-5.132533698967659,L, + 157802706500,-5.132533698967659,L, + 159727129750,-5.132534125854483,L, + 161651553000,-5.132533272080837,L, + 163575976250,-5.132534125854483,L, + 165500399500,-5.132534125854483,L, + 167424822750,-5.132533698967659,L, + 171273669250,-5.132533698967659,L, + 173198092500,-5.132534125854483,L, + 175122515750,-5.132533698967659,L, + 178971362250,-5.132534552741306,L, + 182820208750,-5.132533698967659,L, + 184744632000,-5.132534552741306,L, + 186669055250,-5.132533272080837,L, + 190517901750,-5.132534125854483,L, + 192442325000,-5.132533272080837,L, + 194366748250,-5.327042972377357,L, + 196291171500,-5.521551818900232,L, + 198215594750,-5.716060238536283,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105077931582031,L, + 203988864500,-6.299587631878552,L, + 205913287750,-6.494096051514603,L, + 207837711000,-6.688605751811123,L, + 209762134250,-6.883114598333997,L, + 211686557500,-7.077623017970049,L, + 213610980750,-7.272132291379746,L, + 215535404000,-7.466640711015797,L, + 217459827250,-7.661149984425495,L, + 219384250500,-7.855657550287900,L, + 221308673750,-8.050167677471244,L, + 223233097000,-8.244676950880940,L, + 227081943500,-8.633693790153043,L, + 229006366750,-8.828203063562741,L, + 230930790000,-9.022713190746083,L, + 232855213250,-9.217219049061196,L, + 234779636500,-9.411730030018186,L, + 236704059750,-9.606240157201530,L, + 238628483000,-9.800746015516642,L, + 240552906250,-9.995256996473632,L, + 242477329500,-10.189765416109683,L, + 244401752750,-10.384274689519380,L, + 246326176000,-10.578783109155431,L, + 252099445750,-11.162310929384525,L, + 254023869000,-11.356817641473283,L, + 255948292250,-11.551328622430272,L, + 257872715500,-11.745837895839969,L, + 259797138750,-11.940345461702375,L, + 261721562000,-12.134855588885719,L, + 263645985250,-12.329361447200831,L, + 265570408500,-12.523874135705114,L, + 267494831750,-12.718379994020225,L, + 269419255000,-12.912889267429923,L, + 271343678250,-13.107400248386913,L, + 273268101500,-13.301907814249319,L, + 275192524750,-13.496417941432661,L, + 277116948000,-13.690925507295066,L, + 280965794500,-14.079944054114462,L, + 282890217750,-14.274450766203220,L, + 284814641000,-14.468960039612917,L, + 286739064250,-14.663468459248968,L, + 290587910750,-15.052488713615656,L, + 292512334000,-15.246995425704414,L, + 294436757250,-15.441507260435051,L, + 296361180500,-15.636012264976516,L, + 298285603750,-15.830522392159860,L, + 300210027000,-16.025034226890497,L, + 302134450250,-16.219539231431963,L, + 304058873500,-16.414049358615305,L, + 305983296750,-16.608561193345942,L, + 309832143250,-16.997574617523458,L, + 311756566500,-17.192084744706804,L, + 313680989750,-17.386593164342855,L, + 315605413000,-17.581103291526198,L, + 317529836250,-17.775610003614958,L, + 319454259500,-17.970118423251009,L, + 321378682750,-18.164630257981646,L, + 323303106000,-18.359136970070402,L, + 325227529250,-18.553648804801039,L, + 327151952500,-18.748155516889799,L, + 329076375750,-18.942665644073141,L, + 331000799000,-19.137172356161901,L, + 332925222250,-19.331685898439829,L, + 334849645500,-19.526190902981295,L, + 336774068750,-19.720702737711932,L, + 338698492000,-19.915209449800688,L, + 340622915250,-20.109717869436739,L, + 342547338500,-20.304227996620085,L, + 344471761750,-20.498736416256136,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551200723339925 + KeyVer: 4005 + KeyCount: 154 + Key: + 0,17.551200723339925,L, + 1924423250,17.638762040952070,L, + 3848846500,17.726328481206092,L, + 5773269750,17.813898336554701,L, + 7697693000,17.901459654166846,L, + 11546539500,18.076589119580305,L, + 13470962750,18.164155559834327,L, + 15395386000,18.251720292541059,L, + 17319809250,18.339283317700495,L, + 19244232500,18.426848050407227,L, + 21168655750,18.514414490661249,L, + 23093079000,18.601979223367980,L, + 25017502250,18.689547371169294,L, + 26941925500,18.777110396328734,L, + 30790772000,18.952239861742193,L, + 32715195250,19.039808009543506,L, + 34639618500,19.127371034702946,L, + 36564041750,19.214935767409674,L, + 38488465000,19.302503915210991,L, + 40412888250,19.390065232823137,L, + 42337311500,19.477631673077159,L, + 44261734750,19.565196405783890,L, + 46186158000,19.652759430943327,L, + 50035004500,19.827888896356786,L, + 51959427750,19.915457044158103,L, + 53883851000,20.003020069317540,L, + 57732697500,20.178149534730998,L, + 61581544000,20.353282415239047,L, + 65430390500,20.528411880652506,L, + 67354813750,20.615980028453819,L, + 69279237000,20.703541346065965,L, + 71203660250,20.791106078772696,L, + 73128083500,20.878674226574010,L, + 75052506750,20.966235544186155,L, + 76976930000,21.053803691987472,L, + 78901353250,21.141365009599618,L, + 80825776500,21.228933157400931,L, + 82750199750,21.316496182560371,L, + 84674623000,21.404066037908976,L, + 86599046250,21.491627355521121,L, + 88523469500,21.579195503322438,L, + 90447892750,21.666756820934584,L, + 92372316000,21.754321553641311,L, + 96221162500,21.929447603960188,L, + 98145585750,22.017017459308796,L, + 100070009000,22.104583899562819,L, + 101994432250,22.192146924722255,L, + 103918855500,22.279715072523572,L, + 105843278750,26.220139997157474,L, + 107767702000,26.220143412252060,L, + 109692125250,26.220141704704769,L, + 111616548500,26.220143412252060,L, + 115465395000,26.220136582062892,L, + 117389818250,26.220145119799355,L, + 119314241500,26.220141704704769,L, + 121238664750,26.220141704704769,L, + 123163088000,26.220138289610183,L, + 125087511250,26.220138289610183,L, + 127011934500,26.220139997157474,L, + 128936357750,26.220139997157474,L, + 130860781000,26.220143412252060,L, + 132785204250,26.220141704704769,L, + 134709627500,26.220145119799355,L, + 136634050750,26.220136582062892,L, + 138558474000,26.220143412252060,L, + 142407320500,26.220143412252060,L, + 144331743750,26.220139997157474,L, + 146256167000,26.220141704704769,L, + 148180590250,26.220141704704769,L, + 150105013500,26.220139997157474,L, + 152029436750,26.220141704704769,L, + 153953860000,26.220141704704769,L, + 155878283250,26.220145119799355,L, + 157802706500,26.220141704704769,L, + 159727129750,26.220143412252060,L, + 161651553000,26.220143412252060,L, + 163575976250,26.220138289610183,L, + 165500399500,26.220139997157474,L, + 167424822750,26.220139997157474,L, + 169349246000,26.220141704704769,L, + 171273669250,26.220139997157474,L, + 173198092500,26.220143412252060,L, + 175122515750,26.220143412252060,L, + 177046939000,26.220141704704769,L, + 178971362250,26.220141704704769,L, + 180895785500,26.220138289610183,L, + 182820208750,26.220143412252060,L, + 184744632000,26.220141704704769,L, + 186669055250,26.220138289610183,L, + 188593478500,26.220139997157474,L, + 190517901750,26.220139997157474,L, + 192442325000,26.220143412252060,L, + 196291171500,25.998455962361277,L, + 198215594750,25.887615652510469,L, + 200140018000,25.776777050206952,L, + 202064441250,25.665931617714268,L, + 207837711000,25.333410688161845,L, + 209762134250,25.222561840574574,L, + 211686557500,25.111723238271058,L, + 213610980750,25.000879513325668,L, + 215535404000,24.890040911022151,L, + 217459827250,24.779197186076757,L, + 219384250500,24.668355168678659,L, + 221308673750,24.557516566375142,L, + 223233097000,24.446669426335166,L, + 225157520250,24.335830824031650,L, + 229006366750,24.114143374140866,L, + 230930790000,24.003308186931935,L, + 234779636500,23.781620737041148,L, + 238628483000,23.559936702244951,L, + 240552906250,23.449092977299557,L, + 242477329500,23.338254374996040,L, + 244401752750,23.227408942503356,L, + 246326176000,23.116572047747134,L, + 248250599250,23.005726615254449,L, + 252099445750,22.784045995552834,L, + 254023869000,22.673203978154731,L, + 255948292250,22.562360253209341,L, + 257872715500,22.451518235811239,L, + 259797138750,22.340677925960431,L, + 261721562000,22.229835908562332,L, + 263645985250,22.118992183616939,L, + 265570408500,22.008153581313426,L, + 267494831750,21.897309856368032,L, + 277116948000,21.343099769377531,L, + 279041371250,21.232259459526723,L, + 280965794500,21.121417442128624,L, + 282890217750,21.010570302088645,L, + 284814641000,20.899731699785129,L, + 286739064250,20.788887974839739,L, + 290587910750,20.567207355138123,L, + 292512334000,20.456365337740021,L, + 296361180500,20.234677887849237,L, + 298285603750,20.123839285545721,L, + 300210027000,20.012997268147622,L, + 302134450250,19.902151835654937,L, + 304058873500,19.791311525804129,L, + 305983296750,19.680472923500613,L, + 307907720000,19.569629198555219,L, + 309832143250,19.458788888704412,L, + 311756566500,19.347946871306313,L, + 313680989750,19.237106561455505,L, + 317529836250,19.015419111564722,L, + 319454259500,18.904577094166619,L, + 321378682750,18.793736784315811,L, + 323303106000,18.682894766917713,L, + 325227529250,18.572056164614196,L, + 329076375750,18.350368714723412,L, + 331000799000,18.239526697325310,L, + 332925222250,18.128686387474502,L, + 336774068750,17.907002352678305,L, + 338698492000,17.796162042827497,L, + 340622915250,17.685316610334809,L, + 344471761750,17.463635990633193,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388243675232 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.872388243675232,L, + 7697693000,0.813680768013000,L, + 9622116250,0.799003958702087,L, + 17319809250,0.740296483039856,L, + 19244232500,0.725619673728943,L, + 21168655750,0.710942804813385,L, + 23093079000,0.696265876293182,L, + 25017502250,0.681589007377625,L, + 26941925500,0.666912078857422,L, + 30790772000,0.637558460235596,L, + 32715195250,0.622881472110748,L, + 34639618500,0.608204722404480,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578850984573364,L, + 42337311500,0.549497246742249,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143508911133,L, + 48110581250,0.505466759204865,L, + 50035004500,0.490789800882339,L, + 51959427750,0.476112902164459,L, + 53883851000,0.461436063051224,L, + 55808274250,0.446759194135666,L, + 59657120750,0.417405515909195,L, + 61581544000,0.402728617191315,L, + 67354813750,0.358698010444641,L, + 69279237000,0.344021201133728,L, + 71203660250,0.329344362020493,L, + 73128083500,0.314667373895645,L, + 75052506750,0.299990534782410,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636856555939,L, + 82750199750,0.241283118724823,L, + 84674623000,0.226606234908104,L, + 86599046250,0.211929380893707,L, + 88523469500,0.197252497076988,L, + 90447892750,0.182575702667236,L, + 92372316000,0.167898848652840,L, + 96221162500,0.138545110821724,L, + 98145585750,0.123868227005005,L, + 100070009000,0.109191298484802,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837590456009,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 113540971750,0.145508170127869,L, + 115465395000,0.141870871186256,L, + 117389818250,0.138233542442322,L, + 121238664750,0.130958914756775,L, + 123163088000,0.127321615815163,L, + 125087511250,0.123684294521809,L, + 127011934500,0.120046965777874,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772338092327,L, + 132785204250,0.109135054051876,L, + 134709627500,0.105497732758522,L, + 136634050750,0.101860426366329,L, + 138558474000,0.098223112523556,L, + 142407320500,0.090948469936848,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 153953860000,0.069124594330788,L, + 155878283250,0.065487287938595,L, + 171273669250,0.036388777196407,L, + 175122515750,0.029114142060280,L, + 178971362250,0.021839514374733,L, + 180895785500,0.018202202394605,L, + 182820208750,0.014564885757864,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290274370462,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 194366748250,0.165668785572052,L, + 196291171500,0.174917474389076,L, + 200140018000,0.193414792418480,L, + 202064441250,0.202663466334343,L, + 203988864500,0.211912155151367,L, + 207837711000,0.230409473180771,L, + 215535404000,0.267404168844223,L, + 217459827250,0.276652872562408,L, + 219384250500,0.285901486873627,L, + 221308673750,0.295150130987167,L, + 223233097000,0.304398864507675,L, + 225157520250,0.313647508621216,L, + 227081943500,0.322896182537079,L, + 229006366750,0.332144886255264,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642234086990,L, + 234779636500,0.359890848398209,L, + 236704059750,0.369139522314072,L, + 238628483000,0.378388255834579,L, + 240552906250,0.387636899948120,L, + 244401752750,0.406134247779846,L, + 248250599250,0.424631536006927,L, + 252099445750,0.443128883838654,L, + 254023869000,0.452377617359161,L, + 255948292250,0.461626201868057,L, + 257872715500,0.470874905586243,L, + 269419255000,0.526366949081421,L, + 271343678250,0.535615563392639,L, + 273268101500,0.544864296913147,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361644744873,L, + 279041371250,0.572610259056091,L, + 280965794500,0.581858992576599,L, + 284814641000,0.600356340408325,L, + 286739064250,0.609604954719543,L, + 288663487500,0.618853747844696,L, + 290587910750,0.628102302551270,L, + 292512334000,0.637351095676422,L, + 294436757250,0.646599650382996,L, + 296361180500,0.655848443508148,L, + 298285603750,0.665096998214722,L, + 300210027000,0.674345672130585,L, + 302134450250,0.683594405651093,L, + 304058873500,0.692843019962311,L, + 315605413000,0.748335063457489,L, + 317529836250,0.757583796977997,L, + 319454259500,0.766832351684570,L, + 323303106000,0.785329818725586,L, + 325227529250,0.794578254222870,L, + 327151952500,0.803827047348022,L, + 329076375750,0.813075721263885,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573009490967,L, + 334849645500,0.840821743011475,L, + 336774068750,0.850070357322693,L, + 338698492000,0.859319031238556,L, + 340622915250,0.868567764759064,L, + 342547338500,0.877816379070282,L, + 344471761750,0.887065112590790,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175068855286 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.652175068855286,L, + 1924423250,0.641203045845032,L, + 3848846500,0.630230963230133,L, + 5773269750,0.619258940219879,L, + 7697693000,0.608286976814270,L, + 9622116250,0.597314834594727,L, + 15395386000,0.564398765563965,L, + 17319809250,0.553426682949066,L, + 25017502250,0.509538590908051,L, + 26941925500,0.498566538095474,L, + 28866348750,0.487594455480576,L, + 30790772000,0.476622492074966,L, + 32715195250,0.465650349855423,L, + 34639618500,0.454678326845169,L, + 36564041750,0.443706333637238,L, + 38488465000,0.432734310626984,L, + 42337311500,0.410790205001831,L, + 44261734750,0.399818211793900,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 50035004500,0.366902083158493,L, + 53883851000,0.344957977533340,L, + 55808274250,0.333985954523087,L, + 57732697500,0.323013901710510,L, + 59657120750,0.312041878700256,L, + 61581544000,0.301069825887680,L, + 63505967250,0.290097802877426,L, + 67354813750,0.268153697252274,L, + 69279237000,0.257181674242020,L, + 73128083500,0.235237598419189,L, + 75052506750,0.224265545606613,L, + 76976930000,0.213293552398682,L, + 80825776500,0.191349446773529,L, + 82750199750,0.180377423763275,L, + 84674623000,0.169405356049538,L, + 86599046250,0.158433318138123,L, + 88523469500,0.147461295127869,L, + 90447892750,0.136489287018776,L, + 92372316000,0.125517189502716,L, + 94296739250,0.114545173943043,L, + 96221162500,0.103573143482208,L, + 98145585750,0.092601120471954,L, + 100070009000,0.081629030406475,L, + 101994432250,0.070657074451447,L, + 103918855500,0.059684962034225,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420126557350,L, + 109692125250,0.152782797813416,L, + 111616548500,0.149145498871803,L, + 113540971750,0.145508170127869,L, + 115465395000,0.141870871186256,L, + 117389818250,0.138233542442322,L, + 125087511250,0.123684287071228,L, + 127011934500,0.120046965777874,L, + 128936357750,0.116409659385681,L, + 130860781000,0.112772360444069,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 140482897250,0.094585798680782,L, + 142407320500,0.090948469936848,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 153953860000,0.069124594330788,L, + 155878283250,0.065487287938595,L, + 157802706500,0.061849974095821,L, + 159727129750,0.058212656527758,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938036292791,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 177046939000,0.025476828217506,L, + 178971362250,0.021839518100023,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564887620509,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290273904800,L, + 188593478500,0.003652960294858,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420126557350,L, + 194366748250,0.162834376096725,L, + 198215594750,0.175662904977798,L, + 200140018000,0.182077154517174,L, + 202064441250,0.188491418957710,L, + 203988864500,0.194905713200569,L, + 205913287750,0.201319947838783,L, + 207837711000,0.207734212279320,L, + 209762134250,0.214148521423340,L, + 211686557500,0.220562741160393,L, + 213610980750,0.226977005600929,L, + 215535404000,0.233391299843788,L, + 219384250500,0.246219828724861,L, + 221308673750,0.252634108066559,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 230930790000,0.284705430269241,L, + 232855213250,0.291119664907455,L, + 234779636500,0.297533929347992,L, + 238628483000,0.310362517833710,L, + 240552906250,0.316776752471924,L, + 242477329500,0.323191046714783,L, + 246326176000,0.336019515991211,L, + 248250599250,0.342433810234070,L, + 252099445750,0.355262339115143,L, + 254023869000,0.361676573753357,L, + 257872715500,0.374505162239075,L, + 259797138750,0.380919396877289,L, + 261721562000,0.387333691120148,L, + 263645985250,0.393747925758362,L, + 267494831750,0.406576454639435,L, + 269419255000,0.412990778684616,L, + 271343678250,0.419405043125153,L, + 273268101500,0.425819277763367,L, + 275192524750,0.432233572006226,L, + 277116948000,0.438647776842117,L, + 279041371250,0.445062041282654,L, + 280965794500,0.451476365327835,L, + 284814641000,0.464304834604263,L, + 286739064250,0.470719128847122,L, + 288663487500,0.477133363485336,L, + 290587910750,0.483547687530518,L, + 292512334000,0.489961922168732,L, + 296361180500,0.502790451049805,L, + 298285603750,0.509204745292664,L, + 300210027000,0.515618979930878,L, + 302134450250,0.522033274173737,L, + 304058873500,0.528447508811951,L, + 305983296750,0.534861803054810,L, + 309832143250,0.547690272331238,L, + 311756566500,0.554104626178741,L, + 317529836250,0.573347330093384,L, + 321378682750,0.586175918579102,L, + 325227529250,0.599004387855530,L, + 327151952500,0.605418682098389,L, + 329076375750,0.611833035945892,L, + 334849645500,0.631075739860535,L, + 336774068750,0.637490034103394,L, + 338698492000,0.643904268741608,L, + 342547338500,0.656732857227325,L, + 344471761750,0.663147032260895,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695365428925 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,0.869695365428925,L, + 3848846500,0.840432226657867,L, + 5773269750,0.825800776481628,L, + 7697693000,0.811169147491455,L, + 13470962750,0.767274439334869,L, + 15395386000,0.752642929553986,L, + 17319809250,0.738011360168457,L, + 19244232500,0.723379731178284,L, + 21168655750,0.708748161792755,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485082626343,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 32715195250,0.620958805084229,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064096927643,L, + 40412888250,0.562432706356049,L, + 42337311500,0.547801077365875,L, + 44261734750,0.533169507980347,L, + 46186158000,0.518537998199463,L, + 48110581250,0.503906309604645,L, + 53883851000,0.460011690855026,L, + 55808274250,0.445380121469498,L, + 57732697500,0.430748581886292,L, + 61581544000,0.401485443115234,L, + 63505967250,0.386853903532028,L, + 65430390500,0.372222334146500,L, + 67354813750,0.357590794563293,L, + 73128083500,0.313696086406708,L, + 76976930000,0.284433007240295,L, + 78901353250,0.269801378250122,L, + 80825776500,0.255169898271561,L, + 82750199750,0.240538284182549,L, + 84674623000,0.225906759500504,L, + 86599046250,0.211275219917297,L, + 88523469500,0.196643665432930,L, + 90447892750,0.182012021541595,L, + 92372316000,0.167380511760712,L, + 94296739250,0.152748957276344,L, + 96221162500,0.138117432594299,L, + 98145585750,0.123485870659351,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222716987133,L, + 103918855500,0.079591155052185,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420141458511,L, + 109692125250,0.152782812714577,L, + 119314241500,0.134596243500710,L, + 121238664750,0.130958944559097,L, + 123163088000,0.127321630716324,L, + 125087511250,0.123684309422970,L, + 127011934500,0.120047003030777,L, + 128936357750,0.116409681737423,L, + 130860781000,0.112772367894650,L, + 132785204250,0.109135039150715,L, + 136634050750,0.101860426366329,L, + 146256167000,0.083673857152462,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487295389175,L, + 157802706500,0.061849981546402,L, + 159727129750,0.058212663978338,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114156961441,L, + 177046939000,0.025476843118668,L, + 178971362250,0.021839531138539,L, + 180895785500,0.018202217295766,L, + 182820208750,0.014564902521670,L, + 184744632000,0.010927588678896,L, + 188593478500,0.003652960062027,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420141458511,L, + 196291171500,0.174848139286041,L, + 202064441250,0.202490180730820,L, + 203988864500,0.211704179644585,L, + 205913287750,0.220918208360672,L, + 207837711000,0.230132207274437,L, + 209762134250,0.239346221089363,L, + 211686557500,0.248560220003128,L, + 219384250500,0.285416275262833,L, + 221308673750,0.294630318880081,L, + 223233097000,0.303844243288040,L, + 225157520250,0.313058316707611,L, + 229006366750,0.331486344337463,L, + 230930790000,0.340700328350067,L, + 234779636500,0.359128355979919,L, + 236704059750,0.368342399597168,L, + 238628483000,0.377556383609772,L, + 240552906250,0.386770337820053,L, + 242477329500,0.395984470844269,L, + 244401752750,0.405198395252228,L, + 246326176000,0.414412438869476,L, + 248250599250,0.423626452684402,L, + 250175022500,0.432840406894684,L, + 252099445750,0.442054450511932,L, + 254023869000,0.451268434524536,L, + 255948292250,0.460482478141785,L, + 257872715500,0.469696462154388,L, + 259797138750,0.478910505771637,L, + 261721562000,0.488124489784241,L, + 265570408500,0.506552517414093,L, + 269419255000,0.524980604648590,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408632278442,L, + 275192524750,0.552622556686401,L, + 277116948000,0.561836600303650,L, + 279041371250,0.571050584316254,L, + 280965794500,0.580264627933502,L, + 282890217750,0.589478611946106,L, + 284814641000,0.598692715167999,L, + 286739064250,0.607906639575958,L, + 288663487500,0.617120683193207,L, + 292512334000,0.635548651218414,L, + 294436757250,0.644762694835663,L, + 296361180500,0.653976678848267,L, + 298285603750,0.663190603256226,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618690490723,L, + 304058873500,0.690832734107971,L, + 305983296750,0.700046658515930,L, + 307907720000,0.709260761737823,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688789367676,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116816997528,L, + 317529836250,0.755330741405487,L, + 319454259500,0.764544785022736,L, + 321378682750,0.773758769035339,L, + 323303106000,0.782972812652588,L, + 325227529250,0.792186915874481,L, + 327151952500,0.801400840282440,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042851924896,L, + 334849645500,0.838256835937500,L, + 336774068750,0.847470879554749,L, + 338698492000,0.856684982776642,L, + 340622915250,0.865898907184601,L, + 344471761750,0.884326994419098,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_050" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014211714267731 + KeyVer: 4005 + KeyCount: 122 + Key: + 0,-0.014211714267731,L, + 1924423250,-0.012302458286285,L, + 3848846500,-0.010393321514130,L, + 5773269750,-0.008484065532684,L, + 7697693000,-0.006575763225555,L, + 11546539500,-0.002757370471954,L, + 13470962750,-0.000848114490509,L, + 15395386000,0.001061081886292,L, + 17319809250,0.002969384193420,L, + 21168655750,0.006787776947021,L, + 23093079000,0.008697032928467,L, + 25017502250,0.010606229305267,L, + 26941925500,0.012514472007751,L, + 30790772000,0.016332983970642,L, + 32715195250,0.018242120742798,L, + 34639618500,0.020151376724243,L, + 36564041750,0.022059679031372,L, + 38488465000,0.023968815803528,L, + 42337311500,0.027787327766418,L, + 44261734750,0.029696464538574,L, + 46186158000,0.031604766845703,L, + 48110581250,0.033514022827148,L, + 50035004500,0.035423219203949,L, + 51959427750,0.037331461906433,L, + 53883851000,0.039240717887878,L, + 55808274250,0.041149914264679,L, + 57732697500,0.043058216571808,L, + 61581544000,0.046876609325409,L, + 63505967250,0.048785865306854,L, + 65430390500,0.050695061683655,L, + 67354813750,0.052603304386139,L, + 71203660250,0.056421816349030,L, + 73128083500,0.058330953121185,L, + 75052506750,0.060240209102631,L, + 76976930000,0.062148511409760,L, + 78901353250,0.064057648181915,L, + 82750199750,0.067876160144806,L, + 84674623000,0.069785356521606,L, + 86599046250,0.071693599224091,L, + 88523469500,0.073602855205536,L, + 92372316000,0.077421247959137,L, + 94296739250,0.079330503940582,L, + 96221162500,0.081239700317383,L, + 98145585750,0.081239342689514,L, + 100070009000,0.081239104270935,L, + 101994432250,0.081238746643066,L, + 103918855500,0.081239342689514,L, + 105843278750,0.081239044666290,L, + 107767702000,0.081238687038422,L, + 109692125250,0.081239342689514,L, + 111616548500,0.081239044666290,L, + 113540971750,0.081238687038422,L, + 115465395000,0.081239342689514,L, + 119314241500,0.081238627433777,L, + 121238664750,0.081239342689514,L, + 123163088000,0.081238985061646,L, + 125087511250,0.081238687038422,L, + 127011934500,0.081239283084869,L, + 128936357750,0.081238925457001,L, + 132785204250,0.081238329410553,L, + 134709627500,0.081238985061646,L, + 138558474000,0.081238269805908,L, + 140482897250,0.081238925457001,L, + 144331743750,0.081238329410553,L, + 146256167000,0.081238925457001,L, + 148180590250,0.081238567829132,L, + 150105013500,0.081239223480225,L, + 152029436750,0.081238865852356,L, + 153953860000,0.081066131591797,L, + 155878283250,0.080892443656921,L, + 157802706500,0.080719709396362,L, + 159727129750,0.080546021461487,L, + 161651553000,0.080373227596283,L, + 163575976250,0.080199539661407,L, + 165500399500,0.080026745796204,L, + 169349246000,0.079679369926453,L, + 171273669250,0.079506635665894,L, + 173198092500,0.079332947731018,L, + 175122515750,0.079160153865814,L, + 177046939000,0.078986465930939,L, + 178971362250,0.078813672065735,L, + 180895785500,0.078640043735504,L, + 182820208750,0.078467249870300,L, + 184744632000,0.078293561935425,L, + 186669055250,0.078120827674866,L, + 188593478500,0.077947080135345,L, + 190517901750,0.077774405479431,L, + 192442325000,0.077600657939911,L, + 194366748250,0.077427923679352,L, + 196291171500,0.077254176139832,L, + 198215594750,0.077081441879272,L, + 200140018000,0.076907753944397,L, + 202064441250,0.076735019683838,L, + 203988864500,0.076561331748962,L, + 205913287750,0.076388537883759,L, + 207837711000,0.076214849948883,L, + 209762134250,0.072737157344818,L, + 211686557500,0.069259405136108,L, + 213610980750,0.065781712532043,L, + 215535404000,0.062304079532623,L, + 217459827250,0.058825433254242,L, + 219384250500,0.055347681045532,L, + 221308673750,0.051869988441467,L, + 223233097000,0.048391342163086,L, + 225157520250,0.044913589954376,L, + 227081943500,0.041435956954956,L, + 229006366750,0.037957310676575,L, + 230930790000,0.034479558467865,L, + 234779636500,0.027524173259735,L, + 236704059750,0.024046540260315,L, + 238628483000,0.020568788051605,L, + 240552906250,0.017090141773224,L, + 242477329500,0.013612449169159,L, + 244401752750,0.010133743286133,L, + 246326176000,0.006656110286713,L, + 250175022500,-0.000299274921417,L, + 252099445750,-0.003777027130127,L, + 254023869000,-0.007255673408508,L, + 255948292250,-0.010733306407928,L, + 257872715500,-0.014211058616638,L, + 259797138750,-0.014211714267731,L, + 344471761750,-0.014211714267731,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013481974601746 + KeyVer: 4005 + KeyCount: 119 + Key: + 0,0.013481974601746,L, + 1924423250,0.014848828315735,L, + 3848846500,0.016216039657593,L, + 7697693000,0.018949747085571,L, + 9622116250,0.020316839218140,L, + 11546539500,0.021683573722839,L, + 13470962750,0.023050427436829,L, + 15395386000,0.024417638778687,L, + 19244232500,0.027151107788086,L, + 21168655750,0.028518438339233,L, + 23093079000,0.029885172843933,L, + 25017502250,0.031252026557922,L, + 26941925500,0.032619118690491,L, + 28866348750,0.033985972404480,L, + 30790772000,0.035352706909180,L, + 32715195250,0.036719799041748,L, + 34639618500,0.038086771965027,L, + 36564041750,0.039453506469727,L, + 38488465000,0.040820598602295,L, + 40412888250,0.042187333106995,L, + 42337311500,0.043554186820984,L, + 44261734750,0.044921398162842,L, + 46186158000,0.046288251876831,L, + 48110581250,0.047654867172241,L, + 50035004500,0.049022197723389,L, + 51959427750,0.050388932228088,L, + 53883851000,0.051755785942078,L, + 55808274250,0.053122997283936,L, + 59657120750,0.055856466293335,L, + 61581544000,0.057223558425903,L, + 63505967250,0.058590531349182,L, + 65430390500,0.059957385063171,L, + 67354813750,0.061324477195740,L, + 69279237000,0.062691330909729,L, + 71203660250,0.064058065414429,L, + 73128083500,0.065425157546997,L, + 75052506750,0.066792130470276,L, + 76976930000,0.068158864974976,L, + 78901353250,0.069525957107544,L, + 80825776500,0.070892691612244,L, + 82750199750,0.072259545326233,L, + 84674623000,0.073626756668091,L, + 88523469500,0.076360225677490,L, + 90447892750,0.077727556228638,L, + 92372316000,0.079094290733337,L, + 94296739250,0.080461144447327,L, + 96221162500,0.081828355789185,L, + 98145585750,0.078542351722717,L, + 100070009000,0.075255751609802,L, + 101994432250,0.071969747543335,L, + 103918855500,0.068683862686157,L, + 107767702000,0.062111854553223,L, + 109692125250,0.058825969696045,L, + 111616548500,0.055539488792419,L, + 113540971750,0.052253365516663,L, + 115465395000,0.048967480659485,L, + 119314241500,0.042395472526550,L, + 121238664750,0.039109349250793,L, + 123163088000,0.035823345184326,L, + 125087511250,0.032537221908569,L, + 127011934500,0.029251337051392,L, + 128936357750,0.025965094566345,L, + 130860781000,0.022679090499878,L, + 132785204250,0.019392848014832,L, + 134709627500,0.016106963157654,L, + 136634050750,0.012820959091187,L, + 138558474000,0.009534835815430,L, + 140482897250,0.006248950958252,L, + 142407320500,0.002962470054626,L, + 144331743750,-0.000323534011841,L, + 146256167000,-0.003609418869019,L, + 148180590250,-0.006895422935486,L, + 150105013500,-0.010181546211243,L, + 152029436750,-0.013467431068420,L, + 155878283250,-0.011269688606262,L, + 157802706500,-0.010170340538025,L, + 159727129750,-0.009071350097656,L, + 163575976250,-0.006873130798340,L, + 165500399500,-0.005773782730103,L, + 167424822750,-0.004675149917603,L, + 169349246000,-0.003575801849365,L, + 173198092500,-0.001378059387207,L, + 175122515750,-0.000278711318970,L, + 177046939000,0.000820040702820,L, + 178971362250,0.001919388771057,L, + 182820208750,0.004117608070374,L, + 184744632000,0.005216598510742,L, + 186669055250,0.006315469741821,L, + 188593478500,0.007414817810059,L, + 190517901750,0.008513689041138,L, + 192442325000,0.009612917900085,L, + 194366748250,0.010711789131165,L, + 196291171500,0.011811137199402,L, + 198215594750,0.012910246849060,L, + 200140018000,0.014009118080139,L, + 202064441250,0.015108346939087,L, + 203988864500,0.016207218170166,L, + 205913287750,0.017306566238403,L, + 207837711000,0.018405437469482,L, + 209762134250,0.019504666328430,L, + 211686557500,0.020603775978088,L, + 215535404000,0.022801756858826,L, + 217459827250,0.023900628089905,L, + 225157520250,0.028297543525696,L, + 227081943500,0.029396295547485,L, + 229006366750,0.030495405197144,L, + 230930790000,0.031594276428223,L, + 234779636500,0.033792734146118,L, + 236704059750,0.034891486167908,L, + 240552906250,0.037089943885803,L, + 242477329500,0.038188815116882,L, + 244401752750,0.039288043975830,L, + 246326176000,0.040386795997620,L, + 252099445750,0.043684482574463,L, + 254023869000,0.044783473014832,L, + 255948292250,0.045882225036621,L, + 257872715500,0.046981453895569,L, + 259797138750,0.013481974601746,L, + 344471761750,0.013481974601746,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323080062866 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323080062866,L, + 1924423250,-0.023415327072144,L, + 3848846500,-0.020337581634521,L, + 5773269750,-0.017082929611206,L, + 7697693000,-0.013643264770508,L, + 9622116250,-0.010010480880737,L, + 11546539500,-0.006176233291626,L, + 13470962750,-0.002130270004272,L, + 15395386000,0.002137184143066,L, + 17319809250,0.006637096405029,L, + 19244232500,0.011381149291992,L, + 21168655750,0.016381978988647,L, + 23093079000,0.021652936935425,L, + 25017502250,0.027209281921387,L, + 26941925500,0.033066511154175,L, + 28866348750,0.039241790771484,L, + 30790772000,0.045753955841064,L, + 32715195250,0.052623271942139,L, + 34639618500,0.059871912002563,L, + 36564041750,0.067523241043091,L, + 38488465000,0.075603961944580,L, + 40412888250,0.084141969680786,L, + 42337311500,0.093168258666992,L, + 44261734750,0.102715969085693,L, + 46186158000,0.112821578979492,L, + 48110581250,0.123523473739624,L, + 50035004500,0.134864091873169,L, + 51959427750,0.146887063980103,L, + 53883851000,0.159638643264771,L, + 55808274250,0.173166036605835,L, + 57732697500,0.187515497207642,L, + 59657120750,0.202730178833008,L, + 61581544000,0.218846082687378,L, + 63505967250,0.235886812210083,L, + 65430390500,0.253855705261230,L, + 67354813750,0.272726774215698,L, + 69279237000,0.292433977127075,L, + 71203660250,0.312859535217285,L, + 73128083500,0.333829164505005,L, + 75052506750,0.355108976364136,L, + 76976930000,0.376419067382812,L, + 78901353250,0.397454738616943,L, + 80825776500,0.417917251586914,L, + 82750199750,0.437542915344238,L, + 84674623000,0.456126451492310,L, + 86599046250,0.473530530929565,L, + 88523469500,0.489682197570801,L, + 90447892750,0.504563808441162,L, + 92372316000,0.518197774887085,L, + 94296739250,0.530634880065918,L, + 96221162500,0.541941881179810,L, + 98145585750,0.552702903747559,L, + 100070009000,0.563450336456299,L, + 101994432250,0.574181795120239,L, + 103918855500,0.584893465042114,L, + 105843278750,0.595581769943237,L, + 107767702000,0.606243133544922,L, + 109692125250,0.616872549057007,L, + 111616548500,0.627465963363647,L, + 113540971750,0.638018608093262,L, + 115465395000,0.648525476455688,L, + 117389818250,0.658982515335083,L, + 119314241500,0.669384956359863,L, + 121238664750,0.679729700088501,L, + 123163088000,0.690012216567993,L, + 125087511250,0.700230121612549,L, + 127011934500,0.710382461547852,L, + 128936357750,0.720467090606689,L, + 130860781000,0.730484724044800,L, + 132785204250,0.740434885025024,L, + 134709627500,0.750320196151733,L, + 136634050750,0.760142326354980,L, + 138558474000,0.769903182983398,L, + 140482897250,0.779606819152832,L, + 142407320500,0.789256095886230,L, + 144331743750,0.798854112625122,L, + 146256167000,0.808405160903931,L, + 148180590250,0.817911863327026,L, + 150105013500,0.827377557754517,L, + 152029436750,0.836806535720825,L, + 153953860000,0.846144437789917,L, + 155878283250,0.855336189270020,L, + 157802706500,0.864381074905396,L, + 159727129750,0.873280525207520,L, + 161651553000,0.882037401199341,L, + 163575976250,0.890657186508179,L, + 165500399500,0.899146080017090,L, + 167424822750,0.907514333724976,L, + 169349246000,0.915773630142212,L, + 171273669250,0.923938989639282,L, + 173198092500,0.932028770446777,L, + 175122515750,0.940061807632446,L, + 177046939000,0.948060274124146,L, + 178971362250,0.956048011779785,L, + 180895785500,0.964049100875854,L, + 182820208750,0.972087860107422,L, + 184744632000,0.980187892913818,L, + 186669055250,0.988371372222900,L, + 188593478500,0.996658325195312,L, + 190517901750,1.005066871643066,L, + 192442325000,1.013611316680908,L, + 194366748250,1.022304534912109,L, + 196291171500,1.031155109405518,L, + 198215594750,1.040169715881348,L, + 200140018000,1.049352169036865,L, + 202064441250,1.058705329895020,L, + 203988864500,1.068228244781494,L, + 205913287750,1.077919960021973,L, + 207837711000,1.087778091430664,L, + 209762134250,1.097881078720093,L, + 211686557500,1.108280420303345,L, + 213610980750,1.118937969207764,L, + 215535404000,1.129822015762329,L, + 217459827250,1.140905618667603,L, + 219384250500,1.152165412902832,L, + 221308673750,1.163581609725952,L, + 223233097000,1.175134658813477,L, + 225157520250,1.186808824539185,L, + 227081943500,1.198587656021118,L, + 229006366750,1.210457563400269,L, + 230930790000,1.222403526306152,L, + 232855213250,1.234411478042603,L, + 234779636500,1.246466398239136,L, + 236704059750,1.258552789688110,L, + 238628483000,1.270654916763306,L, + 240552906250,1.282752513885498,L, + 242477329500,1.294822454452515,L, + 244401752750,1.306837797164917,L, + 246326176000,1.318761587142944,L, + 248250599250,1.330542802810669,L, + 250175022500,1.342108964920044,L, + 252099445750,1.353339910507202,L, + 254023869000,1.364012479782104,L, + 255948292250,1.373597383499146,L, + 257872715500,1.379659414291382,L, + 259797138750,-0.513281345367432,L, + 261721562000,-0.026323080062866,L, + 344471761750,-0.026323080062866,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802665425143438 + KeyVer: 4005 + KeyCount: 117 + Key: + 0,34.802665425143438,L, + 3848846500,35.758837267430494,L, + 5773269750,36.236926603668600,L, + 7697693000,36.715012524812131,L, + 9622116250,37.193095030861066,L, + 11546539500,37.671184367099180,L, + 13470962750,38.149266873148122,L, + 17319809250,39.105445545624342,L, + 19244232500,39.583528051673284,L, + 21168655750,40.061617387911390,L, + 23093079000,40.539699893960332,L, + 25017502250,41.017792645293028,L, + 26941925500,41.495878566436552,L, + 28866348750,41.973957657390912,L, + 32715195250,42.930136329867132,L, + 34639618500,43.408215420821485,L, + 36564041750,43.886308172154180,L, + 46186158000,46.276737777871809,L, + 48110581250,46.754820283920751,L, + 50035004500,47.232913035253446,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189084877540495,L, + 55808274250,48.667170798684026,L, + 57732697500,49.145249889638379,L, + 59657120750,49.623346056065657,L, + 61581544000,50.101435392303770,L, + 63505967250,50.579517898352712,L, + 69279237000,52.013775661783285,L, + 71203660250,52.491864998021398,L, + 73128083500,52.969944088975751,L, + 76976930000,53.926122761451978,L, + 78901353250,54.404205267500913,L, + 80825776500,54.882291188644444,L, + 82750199750,55.360380524882551,L, + 86599046250,56.316552367169606,L, + 88523469500,56.794645118502302,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750813545694768,L, + 96221162500,58.706985387981817,L, + 98145585750,59.185064478936170,L, + 100070009000,59.663157230268865,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531679587319189,L, + 113540971750,63.009765508462714,L, + 115465395000,63.487844599417073,L, + 119314241500,64.444030102082465,L, + 121238664750,64.922102362847653,L, + 123163088000,65.400195114180349,L, + 125087511250,65.878281035323866,L, + 127011934500,66.356366956467397,L, + 128936357750,66.834452877610914,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683052739043305,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 188593478500,65.395413981761337,L, + 190517901750,65.017725011227697,L, + 192442325000,64.640029210504863,L, + 194366748250,64.262347070160388,L, + 196291171500,63.884658099626733,L, + 198215594750,63.506975959282251,L, + 217459827250,59.730086253945728,L, + 221308673750,58.974721973256763,L, + 225157520250,58.219330371811118,L, + 227081943500,57.841648231466635,L, + 230930790000,57.086270290399327,L, + 234779636500,56.330899179521197,L, + 236704059750,55.953206793892960,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442457741947514,L, + 248250599250,53.687072970691041,L, + 254023869000,52.554006059090085,L, + 255948292250,52.176323918745602,L, + 257872715500,51.798631533117366,L, + 259797138750,34.802668840238027,L, + 261721562000,34.802665425143438,L, + 263645985250,34.802665425143438,L, + 265570408500,34.802662010048856,L, + 267494831750,34.802668840238027,L, + 273268101500,34.802668840238027,L, + 275192524750,34.802662010048856,L, + 277116948000,34.802665425143438,L, + 282890217750,34.802665425143438,L, + 284814641000,34.802668840238027,L, + 286739064250,34.802668840238027,L, + 288663487500,34.802665425143438,L, + 292512334000,34.802665425143438,L, + 294436757250,34.802668840238027,L, + 296361180500,34.802665425143438,L, + 298285603750,34.802668840238027,L, + 305983296750,34.802668840238027,L, + 307907720000,34.802662010048856,L, + 309832143250,34.802668840238027,L, + 313680989750,34.802662010048856,L, + 315605413000,34.802665425143438,L, + 317529836250,34.802665425143438,L, + 319454259500,34.802668840238027,L, + 321378682750,34.802668840238027,L, + 323303106000,34.802665425143438,L, + 325227529250,34.802668840238027,L, + 327151952500,34.802665425143438,L, + 329076375750,34.802665425143438,L, + 331000799000,34.802662010048856,L, + 332925222250,34.802662010048856,L, + 334849645500,34.802665425143438,L, + 336774068750,34.802662010048856,L, + 338698492000,34.802662010048856,L, + 342547338500,34.802668840238027,L, + 344471761750,34.802668840238027,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132533272080837 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,-5.132533272080837,L, + 1924423250,-5.327042972377357,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716060238536283,L, + 7697693000,-5.910570365719626,L, + 9622116250,-6.105077931582031,L, + 11546539500,-6.299587631878552,L, + 13470962750,-6.494096478401426,L, + 15395386000,-6.688604898037477,L, + 17319809250,-6.883115025220820,L, + 19244232500,-7.077623017970049,L, + 21168655750,-7.272132291379746,L, + 26941925500,-7.855657550287900,L, + 30790772000,-8.244677804654588,L, + 32715195250,-8.439185370516991,L, + 34639618500,-8.633694643926690,L, + 36564041750,-8.828203063562741,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219902834843,L, + 44261734750,-9.606240157201530,L, + 48110581250,-9.995255288926339,L, + 50035004500,-10.189767123656976,L, + 51959427750,-10.384273835745734,L, + 53883851000,-10.578782255381785,L, + 55808274250,-10.773293236338775,L, + 57732697500,-10.967799948427533,L, + 59657120750,-11.162309221837232,L, + 61581544000,-11.356817641473283,L, + 63505967250,-11.551326914882980,L, + 65430390500,-11.745837895839969,L, + 67354813750,-11.940345461702375,L, + 69279237000,-12.134854735112071,L, + 71203660250,-12.329363154748123,L, + 73128083500,-12.523873281931467,L, + 76976930000,-12.912888413656276,L, + 78901353250,-13.107400248386913,L, + 80825776500,-13.301906960475671,L, + 82750199750,-13.496415380111722,L, + 84674623000,-13.690925507295066,L, + 86599046250,-13.885436488252056,L, + 88523469500,-14.079942346567169,L, + 90447892750,-14.274451619976865,L, + 92372316000,-14.468961747160209,L, + 94296739250,-14.663470166796261,L, + 96221162500,-14.857980293979605,L, + 98145585750,-15.052487006068363,L, + 101994432250,-15.441507260435051,L, + 103918855500,-15.636012264976516,L, + 105843278750,-15.830522392159860,L, + 107767702000,-16.025030811795911,L, + 109692125250,-16.219540938979254,L, + 115465395000,-16.803066197887407,L, + 117389818250,-16.997576325070753,L, + 119314241500,-17.192081329612218,L, + 121238664750,-17.386593164342855,L, + 123163088000,-17.581103291526198,L, + 127011934500,-17.970120130798300,L, + 128936357750,-18.164631965528937,L, + 130860781000,-18.359140385164988,L, + 134709627500,-18.748153809342504,L, + 136634050750,-18.942663936525850,L, + 138558474000,-19.137170648614607,L, + 142407320500,-19.526194318075881,L, + 144331743750,-19.720699322617346,L, + 146256167000,-19.915207742253397,L, + 148180590250,-20.109719576984034,L, + 152029436750,-20.498736416256136,L, + 155878283250,-20.191412054551854,L, + 157802706500,-20.037751581247004,L, + 161651553000,-19.730427219542722,L, + 163575976250,-19.576763331143290,L, + 165500399500,-19.423102857838440,L, + 167424822750,-19.269438969439008,L, + 171273669250,-18.962118022829308,L, + 173198092500,-18.808452426882582,L, + 175122515750,-18.654791953577735,L, + 178971362250,-18.347467591873453,L, + 180895785500,-18.193807118568603,L, + 184744632000,-17.886479341769736,L, + 186669055250,-17.732822283559472,L, + 188593478500,-17.579160102707331,L, + 190517901750,-17.425494506760607,L, + 192442325000,-17.271834033455757,L, + 200140018000,-16.657185310047193,L, + 202064441250,-16.503526544289638,L, + 203988864500,-16.349864363437497,L, + 205913287750,-16.196200475038061,L, + 207837711000,-16.042538294185920,L, + 209762134250,-15.888872698239195,L, + 211686557500,-15.735213932481638,L, + 213610980750,-15.581550044082206,L, + 215535404000,-15.427887863230065,L, + 217459827250,-15.274227389925215,L, + 219384250500,-15.120563501525782,L, + 221308673750,-14.966904735768226,L, + 223233097000,-14.813242554916085,L, + 225157520250,-14.659578666516651,L, + 227081943500,-14.505916485664510,L, + 229006366750,-14.352256012359662,L, + 230930790000,-14.198593831507521,L, + 232855213250,-14.044930796881733,L, + 234779636500,-13.891269469803239,L, + 236704059750,-13.737607288951098,L, + 238628483000,-13.583943400551664,L, + 240552906250,-13.430283781020462,L, + 242477329500,-13.276620746394675,L, + 246326176000,-12.969298092237684,L, + 248250599250,-12.815635057611898,L, + 250175022500,-12.661973730533402,L, + 252099445750,-12.508310695907616,L, + 254023869000,-12.354648515055475,L, + 257872715500,-12.047325860898484,L, + 259797138750,-5.132533698967659,L, + 261721562000,-5.132533272080837,L, + 265570408500,-5.132534125854483,L, + 271343678250,-5.132534125854483,L, + 273268101500,-5.132533698967659,L, + 275192524750,-5.132533698967659,L, + 277116948000,-5.132534125854483,L, + 279041371250,-5.132534125854483,L, + 280965794500,-5.132533698967659,L, + 282890217750,-5.132534125854483,L, + 284814641000,-5.132533698967659,L, + 286739064250,-5.132534125854483,L, + 288663487500,-5.132534125854483,L, + 290587910750,-5.132533698967659,L, + 296361180500,-5.132533698967659,L, + 298285603750,-5.132533272080837,L, + 300210027000,-5.132533698967659,L, + 309832143250,-5.132533698967659,L, + 311756566500,-5.132534125854483,L, + 313680989750,-5.132533698967659,L, + 315605413000,-5.132534125854483,L, + 317529836250,-5.132533698967659,L, + 319454259500,-5.132534125854483,L, + 321378682750,-5.132533698967659,L, + 327151952500,-5.132533698967659,L, + 329076375750,-5.132534125854483,L, + 332925222250,-5.132534125854483,L, + 334849645500,-5.132534552741306,L, + 336774068750,-5.132534125854483,L, + 338698492000,-5.132534552741306,L, + 340622915250,-5.132533698967659,L, + 342547338500,-5.132534125854483,L, + 344471761750,-5.132533698967659,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 139 + Key: + 0,33.449806441146372,L, + 3848846500,33.228125821444756,L, + 5773269750,33.117278681404784,L, + 11546539500,32.784757751852361,L, + 13470962750,32.673914026906964,L, + 15395386000,32.563073717056156,L, + 17319809250,32.452229992110766,L, + 19244232500,32.341389682259958,L, + 23093079000,32.119702232369171,L, + 26941925500,31.898021612667556,L, + 28866348750,31.787174472627580,L, + 30790772000,31.676340992965940,L, + 32715195250,31.565493852925965,L, + 34639618500,31.454656958169743,L, + 36564041750,31.343806403035178,L, + 38488465000,31.232969508278956,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900441748537364,L, + 46186158000,30.789601438686557,L, + 48110581250,30.678754298646577,L, + 50035004500,30.567920818984941,L, + 53883851000,30.346233369094154,L, + 55808274250,30.235393059243346,L, + 57732697500,30.124545919203371,L, + 59657120750,30.013709024447149,L, + 61581544000,29.902865299501755,L, + 65430390500,29.681184679800140,L, + 67354813750,29.570337539760160,L, + 69279237000,29.459500645003939,L, + 71203660250,29.348653504963963,L, + 76976930000,29.016132575411540,L, + 78901353250,28.905288850466146,L, + 80825776500,28.794448540615338,L, + 82750199750,28.683604815669945,L, + 84674623000,28.572764505819137,L, + 86599046250,28.461925903515620,L, + 88523469500,28.351080471022936,L, + 92372316000,28.129396436226738,L, + 94296739250,28.018557833923222,L, + 96221162500,27.907715816525123,L, + 98145585750,27.796870384032434,L, + 100070009000,27.686030074181630,L, + 103918855500,27.464346039385429,L, + 105843278750,27.353509144629207,L, + 107767702000,27.242658589494642,L, + 111616548500,27.020977969793027,L, + 113540971750,26.910132537300342,L, + 115465395000,26.799293934996829,L, + 117389818250,26.688453625146021,L, + 119314241500,26.577608192653333,L, + 121238664750,26.466767882802525,L, + 123163088000,26.355924157857135,L, + 125087511250,26.245087263100910,L, + 127011934500,26.134246953250102,L, + 128936357750,26.023399813210126,L, + 132785204250,25.801715778413925,L, + 134709627500,25.690875468563117,L, + 136634050750,25.580030036070433,L, + 142407320500,25.247509106518010,L, + 144331743750,25.136665381572616,L, + 146256167000,25.025825071721808,L, + 148180590250,24.914979639229124,L, + 150105013500,24.804142744472902,L, + 152029436750,24.693299019527508,L, + 153953860000,24.780865459781531,L, + 155878283250,24.868423362299090,L, + 157802706500,24.955994925194993,L, + 159727129750,25.043561365449015,L, + 163575976250,25.218690830862474,L, + 165500399500,25.306252148474620,L, + 171273669250,25.568951469236687,L, + 173198092500,25.656514494396127,L, + 175122515750,25.744082642197441,L, + 177046939000,25.831643959809586,L, + 178971362250,25.919208692516317,L, + 180895785500,26.006771717675754,L, + 182820208750,26.094338157929776,L, + 184744632000,26.181901183089213,L, + 186669055250,26.269472745985116,L, + 188593478500,26.357039186239138,L, + 190517901750,26.444598796303989,L, + 192442325000,26.532163529010720,L, + 194366748250,26.619731676812034,L, + 198215594750,26.794861142225496,L, + 200140018000,26.882427582479519,L, + 202064441250,26.969997437828127,L, + 203988864500,27.057562170534855,L, + 205913287750,27.145121780599709,L, + 207837711000,27.232683098211854,L, + 209762134250,27.320247830918582,L, + 211686557500,27.407815978719899,L, + 217459827250,27.670510176840089,L, + 219384250500,27.758078324641403,L, + 221308673750,27.845641349800843,L, + 225157520250,28.020774230308888,L, + 227081943500,28.108337255468324,L, + 229006366750,28.195896865533179,L, + 232855213250,28.371033161135809,L, + 234779636500,28.458597893842537,L, + 236704059750,28.546160919001977,L, + 238628483000,28.633725651708705,L, + 240552906250,28.721293799510022,L, + 242477329500,28.808856824669459,L, + 244401752750,28.896426680018067,L, + 246326176000,28.983982874988335,L, + 248250599250,29.071552730336943,L, + 250175022500,29.159119170590966,L, + 252099445750,29.246678780655817,L, + 254023869000,29.334248636004425,L, + 257872715500,29.509374686323302,L, + 259797138750,33.449806441146372,L, + 265570408500,33.449806441146372,L, + 267494831750,33.449803026051789,L, + 271343678250,33.449809856240961,L, + 273268101500,33.449806441146372,L, + 279041371250,33.449806441146372,L, + 280965794500,33.449799610957207,L, + 282890217750,33.449806441146372,L, + 288663487500,33.449806441146372,L, + 290587910750,33.449809856240961,L, + 292512334000,33.449806441146372,L, + 302134450250,33.449806441146372,L, + 304058873500,33.449803026051789,L, + 305983296750,33.449806441146372,L, + 307907720000,33.449803026051789,L, + 309832143250,33.449806441146372,L, + 321378682750,33.449806441146372,L, + 323303106000,33.449809856240961,L, + 325227529250,33.449806441146372,L, + 327151952500,33.449806441146372,L, + 329076375750,33.449809856240961,L, + 331000799000,33.449806441146372,L, + 332925222250,33.449806441146372,L, + 334849645500,33.449803026051789,L, + 336774068750,33.449806441146372,L, + 338698492000,33.449806441146372,L, + 340622915250,33.449803026051789,L, + 342547338500,33.449806441146372,L, + 344471761750,33.449806441146372,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.156420111656189,L, + 3848846500,0.174917459487915,L, + 5773269750,0.184166118502617,L, + 9622116250,0.202663466334343,L, + 11546539500,0.211912125349045,L, + 13470962750,0.221160799264908,L, + 15395386000,0.230409488081932,L, + 17319809250,0.239658132195473,L, + 19244232500,0.248906821012497,L, + 21168655750,0.258155494928360,L, + 23093079000,0.267404139041901,L, + 26941925500,0.285901486873627,L, + 28866348750,0.295150130987167,L, + 30790772000,0.304398804903030,L, + 32715195250,0.313647508621216,L, + 34639618500,0.322896182537079,L, + 36564041750,0.332144886255264,L, + 38488465000,0.341393530368805,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139522314072,L, + 50035004500,0.396885544061661,L, + 51959427750,0.406134247779846,L, + 53883851000,0.415382921695709,L, + 55808274250,0.424631565809250,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128883838654,L, + 61581544000,0.452377527952194,L, + 63505967250,0.461626231670380,L, + 65430390500,0.470874875783920,L, + 67354813750,0.480123609304428,L, + 69279237000,0.489372253417969,L, + 71203660250,0.498620957136154,L, + 73128083500,0.507869601249695,L, + 75052506750,0.517118215560913,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615503787994,L, + 82750199750,0.554112970829010,L, + 84674623000,0.563361644744873,L, + 86599046250,0.572610199451447,L, + 88523469500,0.581859052181244,L, + 90447892750,0.591107606887817,L, + 92372316000,0.600356221199036,L, + 94296739250,0.609604954719543,L, + 96221162500,0.618853569030762,L, + 98145585750,0.628102302551270,L, + 105843278750,0.665096998214722,L, + 107767702000,0.674345731735229,L, + 109692125250,0.683594346046448,L, + 111616548500,0.692843019962311,L, + 113540971750,0.702091753482819,L, + 115465395000,0.711340427398682,L, + 117389818250,0.720589041709900,L, + 125087511250,0.757583737373352,L, + 127011934500,0.766832351684570,L, + 130860781000,0.785329699516296,L, + 132785204250,0.794578433036804,L, + 134709627500,0.803827106952667,L, + 136634050750,0.813075721263885,L, + 138558474000,0.822324454784393,L, + 140482897250,0.831573128700256,L, + 142407320500,0.840821743011475,L, + 144331743750,0.850070476531982,L, + 148180590250,0.868567705154419,L, + 150105013500,0.877816438674927,L, + 152029436750,0.887065112590790,L, + 161651553000,0.813680768013000,L, + 163575976250,0.799004018306732,L, + 165500399500,0.784327089786530,L, + 167424822750,0.769650280475616,L, + 171273669250,0.740296423435211,L, + 173198092500,0.725619614124298,L, + 177046939000,0.696265876293182,L, + 178971362250,0.681589126586914,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558579444885,L, + 186669055250,0.622881531715393,L, + 188593478500,0.608204662799835,L, + 190517901750,0.593527913093567,L, + 192442325000,0.578850984573364,L, + 203988864500,0.490789771080017,L, + 207837711000,0.461436092853546,L, + 209762134250,0.446759223937988,L, + 211686557500,0.432082295417786,L, + 213610980750,0.417405515909195,L, + 215535404000,0.402728617191315,L, + 217459827250,0.388051748275757,L, + 219384250500,0.373374909162521,L, + 221308673750,0.358698010444641,L, + 223233097000,0.344021141529083,L, + 225157520250,0.329344242811203,L, + 229006366750,0.299990564584732,L, + 234779636500,0.255959957838058,L, + 236704059750,0.241283118724823,L, + 238628483000,0.226606234908104,L, + 240552906250,0.211929380893707,L, + 250175022500,0.138545036315918,L, + 252099445750,0.123868204653263,L, + 254023869000,0.109191335737705,L, + 255948292250,0.094514459371567,L, + 257872715500,0.079837590456009,L, + 259797138750,0.000015646221073,L, + 261721562000,0.156420111656189,L, + 267494831750,0.145508170127869,L, + 269419255000,0.141870841383934,L, + 271343678250,0.138233542442322,L, + 273268101500,0.134596228599548,L, + 275192524750,0.130958929657936,L, + 277116948000,0.127321600914001,L, + 279041371250,0.123684287071228,L, + 284814641000,0.112772367894650,L, + 286739064250,0.109135046601295,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948469936848,L, + 298285603750,0.087311163544655,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761915624142,L, + 307907720000,0.069124594330788,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849977821112,L, + 313680989750,0.058212663978338,L, + 315605413000,0.054575342684984,L, + 319454259500,0.047300722450018,L, + 321378682750,0.043663404881954,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388780921698,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114140197635,L, + 331000799000,0.025476830080152,L, + 332925222250,0.021839514374733,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927571915090,L, + 340622915250,0.007290274370462,L, + 342547338500,0.003652959829196,L, + 344471761750,0.000015646221073,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.156420111656189,L, + 1924423250,0.162834376096725,L, + 3848846500,0.169248625636101,L, + 5773269750,0.175662904977798,L, + 7697693000,0.182077154517174,L, + 9622116250,0.188491433858871,L, + 11546539500,0.194905698299408,L, + 13470962750,0.201319947838783,L, + 15395386000,0.207734256982803,L, + 17319809250,0.214148506522179,L, + 23093079000,0.233391299843788,L, + 25017502250,0.239805549383163,L, + 28866348750,0.252634108066559,L, + 38488465000,0.284705430269241,L, + 40412888250,0.291119664907455,L, + 42337311500,0.297533959150314,L, + 48110581250,0.316776752471924,L, + 50035004500,0.323190987110138,L, + 51959427750,0.329605281352997,L, + 55808274250,0.342433810234070,L, + 57732697500,0.348848134279251,L, + 59657120750,0.355262339115143,L, + 61581544000,0.361676633358002,L, + 65430390500,0.374505102634430,L, + 69279237000,0.387333691120148,L, + 71203660250,0.393747925758362,L, + 73128083500,0.400162249803543,L, + 75052506750,0.406576454639435,L, + 76976930000,0.412990719079971,L, + 78901353250,0.419404953718185,L, + 82750199750,0.432233542203903,L, + 84674623000,0.438647806644440,L, + 86599046250,0.445062041282654,L, + 88523469500,0.451476335525513,L, + 96221162500,0.477133393287659,L, + 98145585750,0.483547687530518,L, + 100070009000,0.489961922168732,L, + 103918855500,0.502790451049805,L, + 105843278750,0.509204745292664,L, + 107767702000,0.515618979930878,L, + 109692125250,0.522033274173737,L, + 111616548500,0.528447508811951,L, + 113540971750,0.534861803054810,L, + 115465395000,0.541276037693024,L, + 119314241500,0.554104626178741,L, + 123163088000,0.566933095455170,L, + 125087511250,0.573347389698029,L, + 127011934500,0.579761624336243,L, + 128936357750,0.586175918579102,L, + 130860781000,0.592590153217316,L, + 132785204250,0.599004447460175,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611833035945892,L, + 142407320500,0.631075739860535,L, + 146256167000,0.643904328346252,L, + 148180590250,0.650318562984467,L, + 150105013500,0.656732857227325,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175068855286,L, + 155878283250,0.641202986240387,L, + 161651553000,0.608286917209625,L, + 163575976250,0.597314834594727,L, + 165500399500,0.586342811584473,L, + 167424822750,0.575370848178864,L, + 171273669250,0.553426682949066,L, + 178971362250,0.509538590908051,L, + 180895785500,0.498566538095474,L, + 182820208750,0.487594455480576,L, + 184744632000,0.476622492074966,L, + 186669055250,0.465650349855423,L, + 188593478500,0.454678326845169,L, + 190517901750,0.443706333637238,L, + 194366748250,0.421762228012085,L, + 196291171500,0.410790205001831,L, + 198215594750,0.399818211793900,L, + 200140018000,0.388846129179001,L, + 202064441250,0.377874106168747,L, + 203988864500,0.366902053356171,L, + 205913287750,0.355930030345917,L, + 209762134250,0.333985924720764,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041848897934,L, + 215535404000,0.301069825887680,L, + 217459827250,0.290097773075104,L, + 219384250500,0.279125750064850,L, + 221308673750,0.268153697252274,L, + 223233097000,0.257181674242020,L, + 225157520250,0.246209636330605,L, + 227081943500,0.235237583518028,L, + 229006366750,0.224265545606613,L, + 230930790000,0.213293522596359,L, + 232855213250,0.202321469783783,L, + 234779636500,0.191349431872368,L, + 236704059750,0.180377379059792,L, + 238628483000,0.169405356049538,L, + 240552906250,0.158433318138123,L, + 242477329500,0.147461265325546,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545173943043,L, + 250175022500,0.103573128581047,L, + 252099445750,0.092601090669632,L, + 255948292250,0.070656985044479,L, + 257872715500,0.059684962034225,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 263645985250,0.152782797813416,L, + 265570408500,0.149145498871803,L, + 267494831750,0.145508170127869,L, + 277116948000,0.127321600914001,L, + 279041371250,0.123684294521809,L, + 280965794500,0.120046973228455,L, + 284814641000,0.112772360444069,L, + 286739064250,0.109135046601295,L, + 288663487500,0.105497740209103,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673849701881,L, + 305983296750,0.072761908173561,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212663978338,L, + 315605413000,0.054575346410275,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114143922925,L, + 332925222250,0.021839516237378,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927573777735,L, + 340622915250,0.007290274370462,L, + 344471761750,0.000015646219254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420141458511 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.156420141458511,L, + 3848846500,0.174848139286041,L, + 5773269750,0.184062153100967,L, + 7697693000,0.193276181817055,L, + 9622116250,0.202490165829659,L, + 11546539500,0.211704209446907,L, + 13470962750,0.220918193459511,L, + 17319809250,0.239346221089363,L, + 19244232500,0.248560205101967,L, + 21168655750,0.257774233818054,L, + 23093079000,0.266988217830658,L, + 25017502250,0.276202261447906,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844273090363,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272270917892,L, + 36564041750,0.331486314535141,L, + 38488465000,0.340700328350067,L, + 40412888250,0.349914371967316,L, + 42337311500,0.359128355979919,L, + 46186158000,0.377556383609772,L, + 48110581250,0.386770367622375,L, + 50035004500,0.395984441041946,L, + 51959427750,0.405198395252228,L, + 53883851000,0.414412468671799,L, + 55808274250,0.423626393079758,L, + 57732697500,0.432840377092361,L, + 59657120750,0.442054450511932,L, + 63505967250,0.460482478141785,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910475969315,L, + 71203660250,0.497338563203812,L, + 73128083500,0.506552517414093,L, + 75052506750,0.515766501426697,L, + 76976930000,0.524980545043945,L, + 78901353250,0.534194529056549,L, + 80825776500,0.543408572673798,L, + 82750199750,0.552622497081757,L, + 86599046250,0.571050584316254,L, + 88523469500,0.580264568328857,L, + 92372316000,0.598692655563354,L, + 94296739250,0.607906639575958,L, + 96221162500,0.617120683193207,L, + 98145585750,0.626334547996521,L, + 100070009000,0.635548651218414,L, + 101994432250,0.644762575626373,L, + 103918855500,0.653976678848267,L, + 105843278750,0.663190662860870,L, + 107767702000,0.672404706478119,L, + 109692125250,0.681618690490723,L, + 111616548500,0.690832793712616,L, + 115465395000,0.709260642528534,L, + 117389818250,0.718474745750427,L, + 119314241500,0.727688789367676,L, + 121238664750,0.736902713775635,L, + 123163088000,0.746116816997528,L, + 125087511250,0.755330860614777,L, + 127011934500,0.764544785022736,L, + 128936357750,0.773758769035339,L, + 134709627500,0.801400899887085,L, + 136634050750,0.810614764690399,L, + 138558474000,0.819828867912292,L, + 140482897250,0.829042911529541,L, + 142407320500,0.838256895542145,L, + 144331743750,0.847470939159393,L, + 150105013500,0.875112891197205,L, + 152029436750,0.884326934814453,L, + 155878283250,0.855063796043396,L, + 157802706500,0.840432405471802,L, + 159727129750,0.825800716876984,L, + 161651553000,0.811169207096100,L, + 163575976250,0.796537578105927,L, + 169349246000,0.752642869949341,L, + 171273669250,0.738011360168457,L, + 175122515750,0.708748221397400,L, + 177046939000,0.694116592407227,L, + 178971362250,0.679485142230988,L, + 186669055250,0.620958864688873,L, + 188593478500,0.606327354907990,L, + 190517901750,0.591695785522461,L, + 192442325000,0.577064096927643,L, + 194366748250,0.562432646751404,L, + 196291171500,0.547801136970520,L, + 198215594750,0.533169507980347,L, + 202064441250,0.503906369209290,L, + 203988864500,0.489274859428406,L, + 205913287750,0.474643260240555,L, + 209762134250,0.445380181074142,L, + 215535404000,0.401485472917557,L, + 217459827250,0.386853933334351,L, + 219384250500,0.372222363948822,L, + 221308673750,0.357590824365616,L, + 223233097000,0.342959225177765,L, + 225157520250,0.328327655792236,L, + 227081943500,0.313696116209030,L, + 229006366750,0.299064606428146,L, + 230930790000,0.284433007240295,L, + 236704059750,0.240538299083710,L, + 238628483000,0.225906774401665,L, + 240552906250,0.211275205016136,L, + 242477329500,0.196643620729446,L, + 244401752750,0.182012096047401,L, + 246326176000,0.167380496859550,L, + 252099445750,0.123485833406448,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222724437714,L, + 257872715500,0.079591147601604,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420141458511,L, + 263645985250,0.152782812714577,L, + 265570408500,0.149145498871803,L, + 267494831750,0.145508199930191,L, + 269419255000,0.141870871186256,L, + 273268101500,0.134596243500710,L, + 275192524750,0.130958944559097,L, + 277116948000,0.127321630716324,L, + 279041371250,0.123684309422970,L, + 280965794500,0.120046995580196,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772367894650,L, + 286739064250,0.109135046601295,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 296361180500,0.090948484838009,L, + 298285603750,0.087311178445816,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399229466915,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849981546402,L, + 313680989750,0.058212656527758,L, + 315605413000,0.054575346410275,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388780921698,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114158824086,L, + 331000799000,0.025476843118668,L, + 334849645500,0.018202215433121,L, + 336774068750,0.014564902521670,L, + 338698492000,0.010927588678896,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_049" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793072223663 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.016793072223663,L, + 1924423250,0.016793131828308,L, + 3848846500,0.016792595386505,L, + 5773269750,0.016792476177216,L, + 7697693000,0.016792833805084,L, + 9622116250,0.016791999340057,L, + 11546539500,0.016793072223663,L, + 13470962750,0.016792654991150,L, + 15395386000,0.016793131828308,L, + 17319809250,0.016791939735413,L, + 19244232500,0.016792595386505,L, + 21168655750,0.016792774200439,L, + 23093079000,0.016792118549347,L, + 25017502250,0.016792118549347,L, + 26941925500,0.016792595386505,L, + 28866348750,0.016792237758636,L, + 30790772000,0.016792714595795,L, + 32715195250,0.016792774200439,L, + 34639618500,0.016792237758636,L, + 36564041750,0.016792893409729,L, + 38488465000,0.016792476177216,L, + 40412888250,0.016792833805084,L, + 42337311500,0.016792714595795,L, + 44261734750,0.016793072223663,L, + 46186158000,0.016792654991150,L, + 48110581250,0.016792356967926,L, + 50035004500,0.016792953014374,L, + 51959427750,0.016792356967926,L, + 53883851000,0.016792416572571,L, + 55808274250,0.016793012619019,L, + 57732697500,0.016792058944702,L, + 59657120750,0.016792356967926,L, + 61581544000,0.016791880130768,L, + 63505967250,0.016792356967926,L, + 65430390500,0.016792714595795,L, + 67354813750,0.016792893409729,L, + 69279237000,0.016792774200439,L, + 71203660250,0.016792058944702,L, + 73128083500,0.016792595386505,L, + 75052506750,0.016792356967926,L, + 76976930000,0.016792893409729,L, + 78901353250,0.016792058944702,L, + 80825776500,0.016792416572571,L, + 82750199750,0.016792297363281,L, + 84674623000,0.016792953014374,L, + 86599046250,0.016792953014374,L, + 88523469500,0.016792476177216,L, + 90447892750,0.016792476177216,L, + 92372316000,0.016792535781860,L, + 94296739250,0.016793251037598,L, + 96221162500,0.016792058944702,L, + 98145585750,0.016792297363281,L, + 100070009000,0.016792595386505,L, + 101994432250,0.016792356967926,L, + 103918855500,0.016792297363281,L, + 105843278750,0.016792058944702,L, + 107767702000,0.016792774200439,L, + 109692125250,0.016793251037598,L, + 111616548500,0.016792118549347,L, + 113540971750,0.016792535781860,L, + 115465395000,0.016792893409729,L, + 117389818250,0.016792476177216,L, + 119314241500,0.016792535781860,L, + 121238664750,0.016792297363281,L, + 123163088000,0.016792833805084,L, + 125087511250,0.016792416572571,L, + 127011934500,0.016793072223663,L, + 128936357750,0.016792118549347,L, + 130860781000,0.016792774200439,L, + 132785204250,0.016792178153992,L, + 134709627500,0.016792595386505,L, + 136634050750,0.016793310642242,L, + 138558474000,0.016792833805084,L, + 140482897250,0.016792654991150,L, + 142407320500,0.016792416572571,L, + 144331743750,0.016792297363281,L, + 146256167000,0.016792118549347,L, + 148180590250,0.016792356967926,L, + 150105013500,0.016792535781860,L, + 152029436750,0.016792416572571,L, + 180895785500,0.016792416572571,L, + 182820208750,0.016792595386505,L, + 184744632000,0.016792237758636,L, + 186669055250,0.016792118549347,L, + 190517901750,0.016792833805084,L, + 192442325000,0.016792297363281,L, + 194366748250,0.016792774200439,L, + 196291171500,0.016793131828308,L, + 198215594750,0.016792535781860,L, + 200140018000,0.016792416572571,L, + 202064441250,0.016793012619019,L, + 203988864500,0.016792237758636,L, + 205913287750,0.016792714595795,L, + 207837711000,0.016793131828308,L, + 209762134250,0.016792058944702,L, + 211686557500,0.016792118549347,L, + 213610980750,0.016792297363281,L, + 215535404000,0.016792058944702,L, + 217459827250,0.016793012619019,L, + 219384250500,0.016792953014374,L, + 221308673750,0.016792595386505,L, + 223233097000,0.016792416572571,L, + 225157520250,0.016793072223663,L, + 227081943500,0.016793251037598,L, + 229006366750,0.016792476177216,L, + 230930790000,0.016792356967926,L, + 232855213250,0.016792476177216,L, + 234779636500,0.016792535781860,L, + 236704059750,0.016792893409729,L, + 238628483000,0.016792297363281,L, + 240552906250,0.016792178153992,L, + 242477329500,0.016792178153992,L, + 244401752750,0.016792833805084,L, + 246326176000,0.016792714595795,L, + 248250599250,0.016792416572571,L, + 250175022500,0.016792356967926,L, + 252099445750,0.016792178153992,L, + 254023869000,0.016792416572571,L, + 255948292250,0.016792595386505,L, + 257872715500,0.016792416572571,L, + 259797138750,0.016792178153992,L, + 261721562000,0.016792654991150,L, + 263645985250,0.016792297363281,L, + 265570408500,0.016792774200439,L, + 269419255000,0.016792416572571,L, + 271343678250,0.016792714595795,L, + 273268101500,0.016792178153992,L, + 275192524750,0.016792356967926,L, + 277116948000,0.016792893409729,L, + 279041371250,0.016792416572571,L, + 280965794500,0.016792595386505,L, + 282890217750,0.016793012619019,L, + 284814641000,0.016792416572571,L, + 286739064250,0.016792356967926,L, + 290587910750,0.016792595386505,L, + 292512334000,0.016792416572571,L, + 294436757250,0.016792416572571,L, + 296361180500,0.016792535781860,L, + 298285603750,0.016792476177216,L, + 300210027000,0.016792893409729,L, + 302134450250,0.016792595386505,L, + 304058873500,0.016792356967926,L, + 305983296750,0.016792833805084,L, + 307907720000,0.016792058944702,L, + 309832143250,0.016792476177216,L, + 311756566500,0.016793131828308,L, + 313680989750,0.016792714595795,L, + 315605413000,0.016793191432953,L, + 317529836250,0.016792356967926,L, + 319454259500,0.016792833805084,L, + 321378682750,0.016791820526123,L, + 323303106000,0.016791880130768,L, + 325227529250,0.016793012619019,L, + 327151952500,0.016792118549347,L, + 329076375750,0.016793012619019,L, + 331000799000,0.016792774200439,L, + 332925222250,0.016792953014374,L, + 334849645500,0.016792833805084,L, + 336774068750,0.016793072223663,L, + 338698492000,0.016792714595795,L, + 340622915250,0.016792774200439,L, + 342547338500,0.016791999340057,L, + 344471761750,0.016792416572571,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058536767959595 + KeyVer: 4005 + KeyCount: 166 + Key: + 0,-0.058536767959595,L, + 1924423250,-0.058574676513672,L, + 3848846500,-0.058684945106506,L, + 5773269750,-0.058861851692200,L, + 7697693000,-0.059100627899170,L, + 9622116250,-0.059397339820862,L, + 11546539500,-0.059747695922852,L, + 13470962750,-0.060148835182190,L, + 15395386000,-0.060598015785217,L, + 17319809250,-0.061092019081116,L, + 19244232500,-0.061628341674805,L, + 21168655750,-0.062205195426941,L, + 23093079000,-0.062820315361023,L, + 25017502250,-0.063471436500549,L, + 26941925500,-0.064157366752625,L, + 28866348750,-0.064876437187195,L, + 30790772000,-0.065627098083496,L, + 32715195250,-0.066407680511475,L, + 34639618500,-0.067217588424683,L, + 36564041750,-0.068054914474487,L, + 38488465000,-0.068919181823730,L, + 40412888250,-0.069809198379517,L, + 42337311500,-0.070723414421082,L, + 44261734750,-0.071661472320557,L, + 46186158000,-0.072622299194336,L, + 48110581250,-0.073605298995972,L, + 50035004500,-0.074609637260437,L, + 51959427750,-0.075634360313416,L, + 53883851000,-0.076678395271301,L, + 55808274250,-0.077741861343384,L, + 57732697500,-0.078823447227478,L, + 59657120750,-0.079922914505005,L, + 61581544000,-0.081039786338806,L, + 63505967250,-0.082172274589539,L, + 65430390500,-0.083320617675781,L, + 67354813750,-0.084483861923218,L, + 69279237000,-0.085661411285400,L, + 71203660250,-0.086852192878723,L, + 73128083500,-0.088055491447449,L, + 75052506750,-0.089270114898682,L, + 76976930000,-0.090494751930237,L, + 78901353250,-0.091727614402771,L, + 80825776500,-0.092967152595520,L, + 82750199750,-0.094209790229797,L, + 84674623000,-0.095450997352600,L, + 86599046250,-0.096683263778687,L, + 88523469500,-0.097891569137573,L, + 90447892750,-0.099037528038025,L, + 92372316000,-0.099893450737000,L, + 94296739250,-0.099929809570312,L, + 96221162500,-0.099072813987732,L, + 98145585750,-0.097858071327209,L, + 100070009000,-0.096546530723572,L, + 101994432250,-0.095184087753296,L, + 103918855500,-0.093789815902710,L, + 105843278750,-0.092373490333557,L, + 107767702000,-0.090940594673157,L, + 109692125250,-0.089495778083801,L, + 111616548500,-0.088041663169861,L, + 113540971750,-0.086580395698547,L, + 115465395000,-0.085113406181335,L, + 117389818250,-0.083642125129700,L, + 119314241500,-0.082168102264404,L, + 121238664750,-0.080692291259766,L, + 123163088000,-0.079215168952942,L, + 125087511250,-0.077738404273987,L, + 127011934500,-0.076262116432190,L, + 128936357750,-0.074788093566895,L, + 130860781000,-0.073317289352417,L, + 132785204250,-0.071850299835205,L, + 134709627500,-0.070388793945312,L, + 136634050750,-0.068934559822083,L, + 138558474000,-0.067489743232727,L, + 140482897250,-0.066057205200195,L, + 142407320500,-0.064640879631042,L, + 144331743750,-0.063246130943298,L, + 146256167000,-0.061883926391602,L, + 148180590250,-0.060572147369385,L, + 150105013500,-0.059357404708862,L, + 152029436750,-0.058500885963440,L, + 180895785500,-0.058500885963440,L, + 182820208750,-0.057608485221863,L, + 184744632000,-0.054916024208069,L, + 186669055250,-0.050475835800171,L, + 188593478500,-0.044483065605164,L, + 190517901750,-0.037306666374207,L, + 192442325000,-0.029484868049622,L, + 194366748250,-0.021663546562195,L, + 196291171500,-0.014487147331238,L, + 198215594750,-0.008494615554810,L, + 200140018000,-0.004054427146912,L, + 202064441250,-0.001361727714539,L, + 203988864500,-0.000469446182251,L, + 205913287750,-0.000504374504089,L, + 207837711000,-0.000608801841736,L, + 209762134250,-0.000780463218689,L, + 211686557500,-0.001017689704895,L, + 213610980750,-0.001319885253906,L, + 215535404000,-0.001684546470642,L, + 217459827250,-0.002109527587891,L, + 219384250500,-0.002593755722046,L, + 221308673750,-0.003135204315186,L, + 223233097000,-0.003731608390808,L, + 225157520250,-0.004380822181702,L, + 227081943500,-0.005081057548523,L, + 229006366750,-0.005830287933350,L, + 230930790000,-0.006626129150391,L, + 232855213250,-0.007466316223145,L, + 234779636500,-0.008349180221558,L, + 236704059750,-0.009271264076233,L, + 238628483000,-0.010231137275696,L, + 240552906250,-0.011226058006287,L, + 242477329500,-0.012253880500793,L, + 244401752750,-0.013312458992004,L, + 246326176000,-0.014398694038391,L, + 248250599250,-0.015510559082031,L, + 250175022500,-0.016645789146423,L, + 252099445750,-0.017802000045776,L, + 254023869000,-0.018976092338562,L, + 255948292250,-0.020166277885437,L, + 257872715500,-0.021370887756348,L, + 259797138750,-0.022585749626160,L, + 261721562000,-0.023809671401978,L, + 263645985250,-0.025040268898010,L, + 265570408500,-0.026275277137756,L, + 267494831750,-0.027511835098267,L, + 269419255000,-0.028748273849487,L, + 271343678250,-0.029982447624207,L, + 273268101500,-0.031211614608765,L, + 275192524750,-0.032434344291687,L, + 277116948000,-0.033647775650024,L, + 279041371250,-0.034850716590881,L, + 280965794500,-0.036041140556335,L, + 282890217750,-0.037216424942017,L, + 284814641000,-0.038375139236450,L, + 286739064250,-0.039515614509583,L, + 288663487500,-0.040635824203491,L, + 290587910750,-0.041734099388123,L, + 292512334000,-0.042809128761292,L, + 294436757250,-0.043858766555786,L, + 296361180500,-0.044881820678711,L, + 298285603750,-0.045876860618591,L, + 300210027000,-0.046842575073242,L, + 302134450250,-0.047777295112610,L, + 304058873500,-0.048680186271667,L, + 305983296750,-0.049548983573914,L, + 307907720000,-0.050383925437927,L, + 309832143250,-0.051182746887207,L, + 311756566500,-0.051945090293884,L, + 313680989750,-0.052669644355774,L, + 315605413000,-0.053355574607849,L, + 317529836250,-0.054001688957214,L, + 319454259500,-0.054607391357422,L, + 321378682750,-0.055172085762024,L, + 323303106000,-0.055694460868835,L, + 325227529250,-0.056174159049988,L, + 327151952500,-0.056610584259033,L, + 329076375750,-0.057003021240234,L, + 331000799000,-0.057350993156433,L, + 332925222250,-0.057653665542603,L, + 334849645500,-0.057911157608032,L, + 336774068750,-0.058122515678406,L, + 338698492000,-0.058287382125854,L, + 340622915250,-0.058405995368958,L, + 342547338500,-0.058476924896240,L, + 344471761750,-0.058500885963440,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578061103820801 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,-0.578061103820801,L, + 90447892750,-0.578061103820801,L, + 92372316000,-0.557460784912109,L, + 94296739250,0.000370740890503,L, + 98145585750,0.015030145645142,L, + 100070009000,0.022360086441040,L, + 103918855500,0.037019491195679,L, + 105843278750,0.044349431991577,L, + 107767702000,0.051679134368896,L, + 109692125250,0.059009075164795,L, + 111616548500,0.066338777542114,L, + 113540971750,0.073668718338013,L, + 119314241500,0.095657825469971,L, + 121238664750,0.102987766265869,L, + 123163088000,0.110317468643188,L, + 125087511250,0.119968652725220,L, + 127011934500,0.129930019378662,L, + 128936357750,0.140168905258179,L, + 130860781000,0.150662422180176,L, + 132785204250,0.161394596099854,L, + 134709627500,0.172355413436890,L, + 136634050750,0.183540344238281,L, + 138558474000,0.194950580596924,L, + 140482897250,0.206594705581665,L, + 142407320500,0.218489646911621,L, + 144331743750,0.230666637420654,L, + 146256167000,0.243180990219116,L, + 148180590250,0.256135702133179,L, + 150105013500,0.269762277603149,L, + 152029436750,0.284850835800171,L, + 153953860000,0.306648254394531,L, + 155878283250,0.313348770141602,L, + 157802706500,0.320404529571533,L, + 159727129750,0.327870368957520,L, + 161651553000,0.335815191268921,L, + 163575976250,0.344329118728638,L, + 165500399500,0.353533267974854,L, + 167424822750,0.363593578338623,L, + 169349246000,0.374749183654785,L, + 171273669250,0.387361049652100,L, + 173198092500,0.402003765106201,L, + 175122515750,0.419637203216553,L, + 177046939000,0.441746711730957,L, + 178971362250,0.468574047088623,L, + 180895785500,0.492805004119873,L, + 182820208750,0.514571666717529,L, + 184744632000,0.539781093597412,L, + 186669055250,0.568211555480957,L, + 188593478500,0.599333763122559,L, + 190517901750,0.632257223129272,L, + 192442325000,0.665760755538940,L, + 194366748250,0.698447465896606,L, + 196291171500,0.728978157043457,L, + 198215594750,0.756290435791016,L, + 200140018000,0.779710054397583,L, + 202064441250,0.798940420150757,L, + 203988864500,0.813977003097534,L, + 205913287750,0.826800584793091,L, + 207837711000,0.839292287826538,L, + 209762134250,0.851451873779297,L, + 211686557500,0.863280773162842,L, + 213610980750,0.874779701232910,L, + 215535404000,0.885950088500977,L, + 217459827250,0.896794080734253,L, + 219384250500,0.907312631607056,L, + 221308673750,0.917508125305176,L, + 223233097000,0.927382946014404,L, + 225157520250,0.936939954757690,L, + 227081943500,0.946181774139404,L, + 229006366750,0.955111503601074,L, + 230930790000,0.963732242584229,L, + 232855213250,0.972047328948975,L, + 234779636500,0.980061292648315,L, + 236704059750,0.987777948379517,L, + 238628483000,0.995201110839844,L, + 240552906250,1.002335309982300,L, + 242477329500,1.009186029434204,L, + 244401752750,1.015757322311401,L, + 246326176000,1.022053956985474,L, + 248250599250,1.028081893920898,L, + 250175022500,1.033845663070679,L, + 252099445750,1.039351940155029,L, + 254023869000,1.044605255126953,L, + 255948292250,1.049612045288086,L, + 257872715500,1.054378032684326,L, + 259797138750,1.058909654617310,L, + 261721562000,1.063211679458618,L, + 263645985250,1.067291975021362,L, + 265570408500,1.071155786514282,L, + 267494831750,1.074810028076172,L, + 269419255000,1.078260660171509,L, + 271343678250,1.081514120101929,L, + 273268101500,1.084576845169067,L, + 275192524750,1.087455511093140,L, + 277116948000,1.090156316757202,L, + 279041371250,1.092685699462891,L, + 280965794500,1.095049858093262,L, + 282890217750,1.097256183624268,L, + 284814641000,1.099309921264648,L, + 286739064250,1.101217508316040,L, + 288663487500,1.102985858917236,L, + 290587910750,1.104620456695557,L, + 292512334000,1.106127500534058,L, + 294436757250,1.107513427734375,L, + 296361180500,1.108783960342407,L, + 298285603750,1.109945058822632,L, + 300210027000,1.111002206802368,L, + 302134450250,1.111961364746094,L, + 304058873500,1.112827777862549,L, + 305983296750,1.113607168197632,L, + 307907720000,1.114305019378662,L, + 309832143250,1.114925622940063,L, + 311756566500,1.115475416183472,L, + 313680989750,1.115958690643311,L, + 315605413000,1.116380691528320,L, + 317529836250,1.116745471954346,L, + 319454259500,1.117058038711548,L, + 321378682750,1.117323398590088,L, + 323303106000,1.117545127868652,L, + 325227529250,1.117727756500244,L, + 327151952500,1.117875576019287,L, + 329076375750,1.117992401123047,L, + 331000799000,1.118083000183105,L, + 332925222250,1.118149757385254,L, + 334849645500,1.118197202682495,L, + 336774068750,1.118228435516357,L, + 338698492000,1.118247270584106,L, + 340622915250,1.118256807327271,L, + 342547338500,1.118260383605957,L, + 344471761750,1.118260622024536,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543798508332110,L, + 11546539500,58.034833301950997,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800556647228937,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304834011457501,L, + 21168655750,54.467712366403603,L, + 23093079000,53.575122755100111,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634304011876267,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501724292610000,L, + 32715195250,48.368804230076201,L, + 34639618500,47.193967296606090,L, + 36564041750,45.978951775343440,L, + 38488465000,44.725366175837777,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108491893472461,L, + 44261734750,40.747969437226651,L, + 46186158000,39.354440091816798,L, + 48110581250,37.929143536577264,L, + 50035004500,36.473227243288612,L, + 51959427750,34.987790872407203,L, + 53883851000,33.473937499483995,L, + 55808274250,31.932691652894491,L, + 57732697500,30.365067615730439,L, + 59657120750,28.772086501272749,L, + 61581544000,27.154728441667316,L, + 63505967250,25.514028210573404,L, + 65430390500,23.851013751461085,L, + 67354813750,22.166765941766524,L, + 69279237000,20.462445913648619,L, + 71203660250,18.739317252103813,L, + 73128083500,16.998795513837596,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472537892547038,L, + 78901353250,11.691307373053959,L, + 80825776500,9.902204206768804,L, + 82750199750,8.109934394029708,L, + 84674623000,6.321668779691525,L, + 86599046250,4.549404591031366,L, + 88523469500,2.816497446472646,L, + 90447892750,1.182278424570828,L, + 92372316000,0.000309185366264,L, + 94296739250,0.000001885382741,L, + 96221162500,1.237622273476599,L, + 98145585750,2.992587407238138,L, + 100070009000,4.887326065783146,L, + 101994432250,6.855265355766957,L, + 103918855500,8.869398495767967,L, + 105843278750,10.915502043726468,L, + 107767702000,12.984963131099086,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172646026328977,L, + 113540971750,19.283678206311169,L, + 115465395000,21.402729028378950,L, + 117389818250,23.527769926348821,L, + 119314241500,25.657101890664745,L, + 121238664750,27.789205204236399,L, + 123163088000,29.922659187716423,L, + 125087511250,32.056109756101861,L, + 127011934500,34.188207947031636,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442589347053897,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672668934009288,L, + 136634050750,44.773269707581598,L, + 138558474000,46.860346706597298,L, + 140482897250,48.929808647743563,L, + 142407320500,50.975914757022998,L, + 144331743750,52.990048750797655,L, + 146256167000,54.957990175215585,L, + 148180590250,56.852725632109419,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866314376941432,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709849569625966,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932197382440918,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291802346939491,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371728054415911,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507408596087046,L, + 223233097000,106.004802295823211,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389617483537933,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012767460081221,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126541252702253,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210401149140594,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814201199765272,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925306720802752,L, + 342547338500,59.865351320268466,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443358950013042 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.443358950013042,L, + 1924423250,-20.458233394478018,L, + 3848846500,-20.501318227762397,L, + 5773269750,-20.570497798770770,L, + 7697693000,-20.663914296048901,L, + 9622116250,-20.779935304385155,L, + 11546539500,-20.917094040655279,L, + 13470962750,-21.074077400991332,L, + 15395386000,-21.249710592856079,L, + 17319809250,-21.442934936928172,L, + 19244232500,-21.652783961440051,L, + 21168655750,-21.878376571988785,L, + 23093079000,-22.118911928894192,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923117184790556,L, + 30790772000,-23.216630903993092,L, + 32715195250,-23.521933529703052,L, + 34639618500,-23.838533288300198,L, + 36564041750,-24.165958896731802,L, + 38488465000,-24.503780053080146,L, + 40412888250,-24.851588653542326,L, + 42337311500,-25.208988547146486,L, + 44261734750,-25.575631394244951,L, + 46186158000,-25.951160317453589,L, + 48110581250,-26.335254297881413,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127902873702130,L, + 53883851000,-27.535856412448066,L, + 55808274250,-27.951200215875946,L, + 57732697500,-28.373652538682503,L, + 59657120750,-28.802935050659066,L, + 61581544000,-29.238789912164464,L, + 63505967250,-29.680928547706262,L, + 65430390500,-30.129081164812252,L, + 67354813750,-30.582971140821041,L, + 69279237000,-31.042250136084963,L, + 71203660250,-31.506603961902201,L, + 73128083500,-31.975646712584641,L, + 75052506750,-32.448931010741653,L, + 76976930000,-32.925917271428808,L, + 78901353250,-33.405929305918278,L, + 80825776500,-33.888058699050440,L, + 82750199750,-34.371052111112618,L, + 84674623000,-34.852959523096757,L, + 86599046250,-35.330557085714631,L, + 88523469500,-35.797540534362312,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556463343608854,L, + 94296739250,-36.556545305878892,L, + 96221162500,-36.223027168707645,L, + 98145585750,-35.750091210198306,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709163550500683,L, + 103918855500,-34.166385492633481,L, + 105843278750,-33.614994566222897,L, + 107767702000,-33.057306205397573,L, + 109692125250,-32.494874278193677,L, + 111616548500,-31.928795029973006,L, + 113540971750,-31.359905158908877,L, + 115465395000,-30.788856948067025,L, + 117389818250,-30.216196812581053,L, + 119314241500,-29.642368714747011,L, + 121238664750,-29.067802956482609,L, + 123163088000,-28.492870075550321,L, + 125087511250,-27.917940609712616,L, + 127011934500,-27.343374851448214,L, + 128936357750,-26.769551876256049,L, + 130860781000,-26.196886618128200,L, + 132785204250,-25.625840114833643,L, + 134709627500,-25.056950243769514,L, + 136634050750,-24.490872703096134,L, + 138558474000,-23.928435653250364,L, + 140482897250,-23.370750707519623,L, + 142407320500,-22.819358073561748,L, + 144331743750,-22.276583430789124,L, + 146256167000,-21.746255100231540,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762716397487580,L, + 152029436750,-20.429201675410919,L, + 153953860000,-20.429199967863628,L, + 155878283250,-20.421562108824272,L, + 157802706500,-20.389152861212608,L, + 159727129750,-20.328217328532428,L, + 161651553000,-20.237252869166326,L, + 163575976250,-20.114736350929402,L, + 165500399500,-19.958842405765960,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537334356612153,L, + 171273669250,-19.265550884253983,L, + 173198092500,-18.947800238781692,L, + 175122515750,-18.578937580202975,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660581080255646,L, + 180895785500,-17.092459605473142,L, + 182820208750,-16.184840162901054,L, + 184744632000,-14.682715932330037,L, + 186669055250,-12.614081297846989,L, + 188593478500,-10.056814076368283,L, + 190517901750,-7.148864025447295,L, + 192442325000,-4.084527401968980,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499820243636,L, + 198215594750,3.836406266216637,L, + 200140018000,5.470570006274860,L, + 202064441250,6.454279036861247,L, + 203988864500,6.778357852599547,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713146194612120,L, + 209762134250,6.632681016660785,L, + 211686557500,6.521288742147677,L, + 213610980750,6.379744170656767,L, + 215535404000,6.208853691396940,L, + 217459827250,6.009455710088813,L, + 219384250500,5.782418941417446,L, + 221308673750,5.528639420824579,L, + 223233097000,5.249042638942747,L, + 225157520250,4.944578845840226,L, + 227081943500,4.616225185455152,L, + 229006366750,4.264977584745873,L, + 230930790000,3.891859718314245,L, + 232855213250,3.497912122791635,L, + 234779636500,3.084192837169160,L, + 236704059750,2.651776549024035,L, + 238628483000,2.201754381076171,L, + 240552906250,1.735227060998994,L, + 242477329500,1.253306522245041,L, + 244401752750,0.757112595673074,L, + 246326176000,0.247773623197893,L, + 248250599250,-0.273580852646514,L, + 250175022500,-0.805817447344748,L, + 252099445750,-1.347804644011265,L, + 254023869000,-1.898409031450239,L, + 255948292250,-2.456505069191648,L, + 257872715500,-3.020971325551143,L, + 259797138750,-3.590695333467659,L, + 261721562000,-4.164572096399537,L, + 263645985250,-4.741510491626869,L, + 265570408500,-5.320430495487148,L, + 267494831750,-5.900268306017146,L, + 269419255000,-6.479974208518798,L, + 271343678250,-7.058522820842959,L, + 273268101500,-7.634891322161418,L, + 275192524750,-8.208102995422868,L, + 277116948000,-8.777175574047295,L, + 279041371250,-9.341165638155593,L, + 280965794500,-9.899148550888874,L, + 282890217750,-10.450230411239515,L, + 284814641000,-10.993527563483642,L, + 286739064250,-11.528193064164180,L, + 288663487500,-12.053405583033433,L, + 290587910750,-12.568365134184866,L, + 292512334000,-13.072303321336852,L, + 294436757250,-13.564479068964449,L, + 296361180500,-14.044177768525740,L, + 298285603750,-14.510706155819975,L, + 300210027000,-14.963412801555062,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232349251220302,L, + 307907720000,-16.623678109526452,L, + 309832143250,-16.998281542102553,L, + 311756566500,-17.355664360233789,L, + 313680989750,-17.695351865772839,L, + 315605413000,-18.016893266234479,L, + 317529836250,-18.319865089890179,L, + 319454259500,-18.603874600862657,L, + 321378682750,-18.868541016105684,L, + 323303106000,-19.113519411066179,L, + 325227529250,-19.338466568738347,L, + 327151952500,-19.543081960798713,L, + 329076375750,-19.727088964585885,L, + 331000799000,-19.890207542343894,L, + 332925222250,-20.032212297830132,L, + 334849645500,-20.152847098950723,L, + 336774068750,-20.251941190976421,L, + 338698492000,-20.329277715401069,L, + 340622915250,-20.384706408062936,L, + 342547338500,-20.418051391590890,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741425073775684 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,-23.741425073775684,L, + 1924423250,-23.712960260409695,L, + 3848846500,-23.630540367695268,L, + 5773269750,-23.498191792148123,L, + 7697693000,-23.319462817042069,L, + 9622116250,-23.097483376564266,L, + 11546539500,-22.835055555821707,L, + 13470962750,-22.534679204050612,L, + 15395386000,-22.198604868582493,L, + 17319809250,-21.828852577864385,L, + 19244232500,-21.427273313161354,L, + 21168655750,-20.995543885914639,L, + 23093079000,-20.535190843403733,L, + 25017502250,-20.047624619692243,L, + 26941925500,-19.534130997891424,L, + 28866348750,-18.995905261106021,L, + 30790772000,-18.434052192434287,L, + 32715195250,-17.849582659873381,L, + 34639618500,-17.243461427643567,L, + 36564041750,-16.616567882600478,L, + 38488465000,-15.969730185180982,L, + 40412888250,-15.303728684497750,L, + 42337311500,-14.619290795697390,L, + 44261734750,-13.917119174490761,L, + 46186158000,-13.197852443565262,L, + 48110581250,-12.462116419003593,L, + 50035004500,-11.710506181037191,L, + 51959427750,-10.943585220272581,L, + 53883851000,-10.161899951843363,L, + 55808274250,-9.365972031447397,L, + 57732697500,-8.556330798745359,L, + 59657120750,-7.733472296225717,L, + 61581544000,-6.897904092321170,L, + 63505967250,-6.050131194143473,L, + 65430390500,-5.190671842295902,L, + 67354813750,-4.320066048609708,L, + 69279237000,-3.438883280106943,L, + 71203660250,-2.547742522681136,L, + 73128083500,-1.647338534636924,L, + 75052506750,-0.738487416858416,L, + 76976930000,0.177850228580649,L, + 78901353250,1.100453185201016,L, + 80825776500,2.027704725881806,L, + 82750199750,2.957316310364243,L, + 84674623000,3.885835064579479,L, + 86599046250,4.807455114289601,L, + 88523469500,5.710877832503543,L, + 90447892750,6.567328486021728,L, + 92372316000,7.204924937494209,L, + 94296739250,7.229657052478791,L, + 96221162500,6.588604952173110,L, + 98145585750,5.679578490632005,L, + 100070009000,4.698154585209806,L, + 101994432250,3.678811603949867,L, + 103918855500,2.635545885121993,L, + 105843278750,1.575716744113450,L, + 107767702000,0.503789683898392,L, + 109692125250,-0.577260161170262,L, + 111616548500,-1.665317513523076,L, + 113540971750,-2.758779146334948,L, + 115465395000,-3.856386703973012,L, + 117389818250,-4.957104132117542,L, + 119314241500,-6.060040517968678,L, + 121238664750,-7.164411670432338,L, + 125087511250,-9.374560140555030,L, + 127011934500,-10.478928304810928,L, + 128936357750,-11.581868105756648,L, + 130860781000,-12.682582972580240,L, + 132785204250,-13.780195225973358,L, + 134709627500,-14.873653870577469,L, + 136634050750,-15.961714958189985,L, + 138558474000,-17.042766564166783,L, + 140482897250,-18.114689622317876,L, + 142407320500,-19.174521538090769,L, + 144331743750,-20.217779999842648,L, + 146256167000,-21.237124261763057,L, + 148180590250,-22.218545605864318,L, + 150105013500,-23.127573774952715,L, + 152029436750,-23.768631424787095,L, + 153953860000,-23.768631424787095,L, + 155878283250,-23.769410066352478,L, + 157802706500,-23.772722708099927,L, + 159727129750,-23.778945010433802,L, + 161651553000,-23.788230652610419,L, + 163575976250,-23.800741851622572,L, + 165500399500,-23.816663022577849,L, + 167424822750,-23.836222976813445,L, + 169349246000,-23.859705167179914,L, + 171273669250,-23.887461348419514,L, + 173198092500,-23.919911577166200,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001113988661071,L, + 178971362250,-24.051358567742906,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184123784829424,L, + 184744632000,-24.283380093847907,L, + 186669055250,-24.405348489403941,L, + 188593478500,-24.546000867434518,L, + 190517901750,-24.698667548215131,L, + 192442325000,-24.854322436757620,L, + 194366748250,-25.002756107800124,L, + 196291171500,-25.134235541775389,L, + 198215594750,-25.241153615495321,L, + 200140018000,-25.318758224844895,L, + 202064441250,-25.365072030059395,L, + 203988864500,-25.380233342469506,L, + 205913287750,-25.379261748060074,L, + 207837711000,-25.376365747851992,L, + 209762134250,-25.371606813547793,L, + 211686557500,-25.365003728167693,L, + 213610980750,-25.356621378508805,L, + 215535404000,-25.346500745706155,L, + 217459827250,-25.334686225989341,L, + 219384250500,-25.321237583513607,L, + 221308673750,-25.306207752245015,L, + 223233097000,-25.289646251055050,L, + 225157520250,-25.271611136551659,L, + 227081943500,-25.252163880437365,L, + 229006366750,-25.231350586489075,L, + 230930790000,-25.209254924524117,L, + 232855213250,-25.185922998319384,L, + 234779636500,-25.161412864482831,L, + 236704059750,-25.135794532453442,L, + 238628483000,-25.109146549406674,L, + 240552906250,-25.081516726666720,L, + 242477329500,-25.052961413294231,L, + 244401752750,-25.023571109295709,L, + 246326176000,-24.993403871279099,L, + 248250599250,-24.962516048305051,L, + 250175022500,-24.930994725285490,L, + 252099445750,-24.898886005997305,L, + 254023869000,-24.866273560257834,L, + 255948292250,-24.833217152222311,L, + 257872715500,-24.799783376235148,L, + 259797138750,-24.766035411546163,L, + 261721562000,-24.732039852499767,L, + 263645985250,-24.697868416082240,L, + 265570408500,-24.663577451354243,L, + 267494831750,-24.629233552660175,L, + 269419255000,-24.594893069060692,L, + 271343678250,-24.560629425089370,L, + 273268101500,-24.526487016975821,L, + 275192524750,-24.492532439064444,L, + 277116948000,-24.458816917774016,L, + 279041371250,-24.425415585185409,L, + 280965794500,-24.392360884697180,L, + 282890217750,-24.359722825748321,L, + 284814641000,-24.327535559284680,L, + 286739064250,-24.295872509839839,L, + 288663487500,-24.264760998170477,L, + 290587910750,-24.234257373337243,L, + 292512334000,-24.204406031569746,L, + 294436757250,-24.175256491739468,L, + 296361180500,-24.146837782150378,L, + 298285603750,-24.119202836768544,L, + 300210027000,-24.092390929181697,L, + 302134450250,-24.066432795241102,L, + 304058873500,-24.041362585892607,L, + 305983296750,-24.017224697365815,L, + 307907720000,-23.994046450417411,L, + 309832143250,-23.971858580898655,L, + 311756566500,-23.950684994471647,L, + 313680989750,-23.930566672271404,L, + 315605413000,-23.911522397318144,L, + 317529836250,-23.893574367726668,L, + 319454259500,-23.876758441990120,L, + 321378682750,-23.861072912561209,L, + 323303106000,-23.846562175669536,L, + 325227529250,-23.833238184146154,L, + 327151952500,-23.821121428558570,L, + 329076375750,-23.810215324001366,L, + 331000799000,-23.800557436514982,L, + 332925222250,-23.792149473646710,L, + 334849645500,-23.785003388227594,L, + 336774068750,-23.779132840635977,L, + 338698492000,-23.774553198797488,L, + 340622915250,-23.771267877806718,L, + 342547338500,-23.769287122947418,L, + 344471761750,-23.768628009692513,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941898523 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941898523,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853182771,L, + 5773269750,0.000044747306674,L, + 7697693000,0.000044604319555,L, + 9622116250,0.000044426746172,L, + 11546539500,0.000044216820243,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707721488,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377363570,L, + 25017502250,0.000041987466830,L, + 26941925500,0.000041576859076,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229973820,L, + 34639618500,0.000039745402319,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727204810,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647852878,L, + 44261734750,0.000037086691009,L, + 46186158000,0.000036511926737,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323548218,L, + 51959427750,0.000034710872569,L, + 53883851000,0.000034086475353,L, + 55808274250,0.000033450774936,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147163438,L, + 61581544000,0.000031480074540,L, + 63505967250,0.000030803366826,L, + 65430390500,0.000030117447750,L, + 67354813750,0.000029422770240,L, + 69279237000,0.000028719818147,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291232982,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836823625,L, + 78901353250,0.000025102159270,L, + 80825776500,0.000024364248020,L, + 82750199750,0.000023625036192,L, + 84674623000,0.000022887486921,L, + 86599046250,0.000022156533305,L, + 88523469500,0.000021441828721,L, + 90447892750,0.000020767847673,L, + 92372316000,0.000020280482204,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565656304359,L, + 98145585750,0.245429664850235,L, + 100070009000,0.254731416702271,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518353700638,L, + 107767702000,0.278088837862015,L, + 109692125250,0.282116174697876,L, + 111616548500,0.285697221755981,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787862777710,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296753019094467,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840198993683,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681318044662,L, + 130860781000,0.307010620832443,L, + 132785204250,0.308217525482178,L, + 134709627500,0.309312224388123,L, + 136634050750,0.310304492712021,L, + 138558474000,0.311203896999359,L, + 140482897250,0.312020361423492,L, + 142407320500,0.312765061855316,L, + 144331743750,0.313452214002609,L, + 146256167000,0.314102530479431,L, + 148180590250,0.314752757549286,L, + 150105013500,0.315492510795593,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999179363251,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450118303299,L, + 163575976250,0.323262572288513,L, + 165500399500,0.322943419218063,L, + 167424822750,0.322556555271149,L, + 169349246000,0.322150558233261,L, + 171273669250,0.321765452623367,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198970079422,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136683225632,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961044549942,L, + 184744632000,0.351049631834030,L, + 186669055250,0.387221664190292,L, + 188593478500,0.435898840427399,L, + 190517901750,0.494094938039780,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323055267334,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784999072551727,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418446063995,L, + 209762134250,0.788208425045013,L, + 211686557500,0.785149037837982,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568174362183,L, + 217459827250,0.771091818809509,L, + 219384250500,0.764856100082397,L, + 221308673750,0.757886171340942,L, + 223233097000,0.750207185745239,L, + 225157520250,0.741845130920410,L, + 227081943500,0.732826888561249,L, + 229006366750,0.723180055618286,L, + 230930790000,0.712932407855988,L, + 232855213250,0.702112674713135,L, + 234779636500,0.690750002861023,L, + 236704059750,0.678873777389526,L, + 238628483000,0.666514039039612,L, + 240552906250,0.653700828552246,L, + 242477329500,0.640465080738068,L, + 244401752750,0.626837253570557,L, + 246326176000,0.612848401069641,L, + 248250599250,0.598529517650604,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026112556458,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523072957992554,L, + 259797138750,0.507425546646118,L, + 261721562000,0.491664201021194,L, + 263645985250,0.475818753242493,L, + 265570408500,0.459918767213821,L, + 267494831750,0.443993687629700,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182480096817,L, + 273268101500,0.396352618932724,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980101585388,L, + 279041371250,0.349490195512772,L, + 280965794500,0.334165275096893,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108440876007,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855823755264,L, + 292512334000,0.247015208005905,L, + 294436757250,0.233497738838196,L, + 296361180500,0.220322892069817,L, + 298285603750,0.207509815692902,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040380477905,L, + 304058873500,0.171418070793152,L, + 305983296750,0.160225331783295,L, + 307907720000,0.149477660655975,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373729228973,L, + 313680989750,0.120044350624084,L, + 315605413000,0.111213266849518,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091879367828,L, + 321378682750,0.087822906672955,L, + 323303106000,0.081094793975353,L, + 325227529250,0.074916549026966,L, + 327151952500,0.069296777248383,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763073921204,L, + 332925222250,0.055863022804260,L, + 334849645500,0.052549593150616,L, + 336774068750,0.049828290939331,L, + 338698492000,0.047704104334116,L, + 340622915250,0.046181917190552,L, + 342547338500,0.045265797525644,L, + 344471761750,0.044959727674723,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520824344 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520824344,L, + 1924423250,0.000028513213692,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455802749,L, + 7697693000,0.000028408023354,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278542231,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009615562,L, + 19244232500,0.000027902298825,L, + 21168655750,0.000027786923965,L, + 23093079000,0.000027663911169,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396430596,L, + 28866348750,0.000027252628570,L, + 30790772000,0.000027102521926,L, + 32715195250,0.000026946383514,L, + 34639618500,0.000026784469810,L, + 36564041750,0.000026617017284,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266374334,L, + 42337311500,0.000026083595003,L, + 44261734750,0.000025896089937,L, + 46186158000,0.000025704039217,L, + 48110581250,0.000025507608370,L, + 50035004500,0.000025306953830,L, + 51959427750,0.000025102237487,L, + 53883851000,0.000024893601221,L, + 55808274250,0.000024681188734,L, + 57732697500,0.000024465143724,L, + 59657120750,0.000024245602617,L, + 61581544000,0.000024022701837,L, + 63505967250,0.000023796586902,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100392355,L, + 71203660250,0.000022862917831,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891593860,L, + 80825776500,0.000021645026209,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151583496,L, + 86599046250,0.000020907342332,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443327230,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919067144394,L, + 98145585750,0.245930299162865,L, + 100070009000,0.255280971527100,L, + 101994432250,0.262665212154388,L, + 103918855500,0.268771320581436,L, + 105843278750,0.273961156606674,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868555307388,L, + 113540971750,0.288967937231064,L, + 115465395000,0.291741728782654,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479701995850,L, + 121238664750,0.298507750034332,L, + 123163088000,0.300342172384262,L, + 125087511250,0.302003324031830,L, + 127011934500,0.303509086370468,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115359067917,L, + 132785204250,0.307243108749390,L, + 134709627500,0.308270871639252,L, + 136634050750,0.309211075305939,L, + 138558474000,0.310076862573624,L, + 140482897250,0.310882627964020,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149780035019,L, + 148180590250,0.313986390829086,L, + 150105013500,0.315037369728088,L, + 152029436750,0.316851437091827,L, + 153953860000,0.316844671964645,L, + 155878283250,0.317553371191025,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131387233734,L, + 161651553000,0.317930370569229,L, + 163575976250,0.317365050315857,L, + 165500399500,0.316432714462280,L, + 167424822750,0.315173506736755,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128543853760,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460818767548,L, + 177046939000,0.308580935001373,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893633842468,L, + 182820208750,0.314245015382767,L, + 184744632000,0.333418756723404,L, + 186669055250,0.365034908056259,L, + 188593478500,0.407707035541534,L, + 190517901750,0.458806842565536,L, + 192442325000,0.514501214027405,L, + 194366748250,0.570195496082306,L, + 196291171500,0.621295332908630,L, + 198215594750,0.663967490196228,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757382869720,L, + 203988864500,0.721108734607697,L, + 205913287750,0.720690846443176,L, + 207837711000,0.719448924064636,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565634727478,L, + 213610980750,0.710962831974030,L, + 215535404000,0.706613302230835,L, + 217459827250,0.701538145542145,L, + 219384250500,0.695759415626526,L, + 221308673750,0.689300000667572,L, + 223233097000,0.682183504104614,L, + 225157520250,0.674434065818787,L, + 227081943500,0.666076540946960,L, + 229006366750,0.657136380672455,L, + 230930790000,0.647639513015747,L, + 232855213250,0.637612462043762,L, + 234779636500,0.627082228660583,L, + 236704059750,0.616076052188873,L, + 238628483000,0.604621708393097,L, + 240552906250,0.592747390270233,L, + 242477329500,0.580481231212616,L, + 244401752750,0.567851722240448,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617751121521,L, + 250175022500,0.528070926666260,L, + 252099445750,0.514275848865509,L, + 254023869000,0.500261545181274,L, + 255948292250,0.486056447029114,L, + 257872715500,0.471689194440842,L, + 259797138750,0.457188218832016,L, + 261721562000,0.442581474781036,L, + 263645985250,0.427896857261658,L, + 265570408500,0.413161784410477,L, + 267494831750,0.398403376340866,L, + 269419255000,0.383648246526718,L, + 271343678250,0.368922650814056,L, + 273268101500,0.354252517223358,L, + 275192524750,0.339662730693817,L, + 277116948000,0.325178265571594,L, + 279041371250,0.310823142528534,L, + 280965794500,0.296620965003967,L, + 282890217750,0.282594501972198,L, + 284814641000,0.268766105175018,L, + 286739064250,0.255157381296158,L, + 288663487500,0.241789326071739,L, + 290587910750,0.228682175278664,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328385949135,L, + 296361180500,0.191118702292442,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721793055534,L, + 302134450250,0.156567454338074,L, + 304058873500,0.145796656608582,L, + 305983296750,0.135423958301544,L, + 307907720000,0.125463604927063,L, + 309832143250,0.115928888320923,L, + 311756566500,0.106832437217236,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002477169037,L, + 317529836250,0.082290887832642,L, + 319454259500,0.075062155723572,L, + 321378682750,0.068325698375702,L, + 323303106000,0.062090400606394,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156759262085,L, + 329076375750,0.046473443508148,L, + 331000799000,0.042321562767029,L, + 332925222250,0.038707256317139,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114552497864,L, + 338698492000,0.031146051362157,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886198997498,L, + 344471761750,0.028602691367269,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378902435 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378902435,L, + 1924423250,0.000042358497012,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204526835,L, + 7697693000,0.000042076404497,L, + 9622116250,0.000041917286580,L, + 11546539500,0.000041729177610,L, + 13470962750,0.000041513874748,L, + 15395386000,0.000041272989620,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720184188,L, + 21168655750,0.000040410785004,L, + 23093079000,0.000040080893086,L, + 25017502250,0.000039731516154,L, + 26941925500,0.000039363574615,L, + 28866348750,0.000038977941585,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156671508,L, + 34639618500,0.000037722460547,L, + 36564041750,0.000037273402995,L, + 38488465000,0.000036810080928,L, + 40412888250,0.000036333080061,L, + 42337311500,0.000035842906073,L, + 44261734750,0.000035340068280,L, + 46186158000,0.000034825028706,L, + 48110581250,0.000034298256651,L, + 50035004500,0.000033760159567,L, + 51959427750,0.000033211159462,L, + 53883851000,0.000032651645597,L, + 55808274250,0.000032082021789,L, + 57732697500,0.000031502640923,L, + 59657120750,0.000030913888622,L, + 61581544000,0.000030316130506,L, + 63505967250,0.000029709746741,L, + 65430390500,0.000029095113860,L, + 67354813750,0.000028472633858,L, + 69279237000,0.000027842741474,L, + 71203660250,0.000027205895094,L, + 73128083500,0.000026562620405,L, + 75052506750,0.000025913532227,L, + 76976930000,0.000025259369067,L, + 78901353250,0.000024601054974,L, + 80825776500,0.000023939832317,L, + 82750199750,0.000023277447326,L, + 84674623000,0.000022616546630,L, + 86599046250,0.000021961561288,L, + 88523469500,0.000021321133318,L, + 90447892750,0.000020717197913,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803947687149,L, + 96221162500,0.232568249106407,L, + 98145585750,0.245435819029808,L, + 100070009000,0.254741221666336,L, + 101994432250,0.262134104967117,L, + 103918855500,0.268283247947693,L, + 105843278750,0.273539364337921,L, + 107767702000,0.278113365173340,L, + 109692125250,0.282144129276276,L, + 111616548500,0.285728573799133,L, + 113540971750,0.288937807083130,L, + 115465395000,0.291825532913208,L, + 117389818250,0.294433951377869,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940509557724,L, + 123163088000,0.300888687372208,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304271012544632,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066231966019,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369504451752,L, + 136634050750,0.310361981391907,L, + 138558474000,0.311260938644409,L, + 140482897250,0.312076270580292,L, + 142407320500,0.312819033861160,L, + 144331743750,0.313503146171570,L, + 146256167000,0.314148783683777,L, + 148180590250,0.314791977405548,L, + 150105013500,0.315520226955414,L, + 152029436750,0.316851466894150,L, + 153953860000,0.319212555885315,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968743085861,L, + 159727129750,0.318790256977081,L, + 161651553000,0.318605124950409,L, + 163575976250,0.318420708179474,L, + 165500399500,0.318241685628891,L, + 167424822750,0.318071484565735,L, + 169349246000,0.317913055419922,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642778158188,L, + 175122515750,0.317536920309067,L, + 177046939000,0.317455232143402,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382931709290,L, + 182820208750,0.324425876140594,L, + 184744632000,0.345687210559845,L, + 186669055250,0.380745738744736,L, + 188593478500,0.428064048290253,L, + 190517901750,0.484727591276169,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244359493256,L, + 196291171500,0.664907813072205,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284650802612,L, + 202064441250,0.768545985221863,L, + 203988864500,0.775588989257812,L, + 205913287750,0.775146484375000,L, + 207837711000,0.773831605911255,L, + 209762134250,0.771663188934326,L, + 211686557500,0.768661379814148,L, + 213610980750,0.764846980571747,L, + 215535404000,0.760241806507111,L, + 217459827250,0.754868268966675,L, + 219384250500,0.748750090599060,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376490116119,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323064804077,L, + 229006366750,0.707857429981232,L, + 230930790000,0.697802543640137,L, + 232855213250,0.687186300754547,L, + 234779636500,0.676037251949310,L, + 236704059750,0.664384245872498,L, + 238628483000,0.652257084846497,L, + 240552906250,0.639684855937958,L, + 242477329500,0.626697957515717,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600374698639,L, + 248250599250,0.585550725460052,L, + 250175022500,0.571207880973816,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764318943024,L, + 255948292250,0.526724517345428,L, + 257872715500,0.511513113975525,L, + 259797138750,0.496159940958023,L, + 261721562000,0.480694860219955,L, + 263645985250,0.465147346258163,L, + 265570408500,0.449546366930008,L, + 267494831750,0.433920741081238,L, + 269419255000,0.418298542499542,L, + 271343678250,0.402707636356354,L, + 273268101500,0.387175381183624,L, + 275192524750,0.371728360652924,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194093227386,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665728092194,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103718757629,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240645989775658,L, + 294436757250,0.227382734417915,L, + 296361180500,0.214455619454384,L, + 298285603750,0.201883494853973,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874028682709,L, + 304058873500,0.166470348834991,L, + 305983296750,0.155488088726997,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847342967987,L, + 311756566500,0.125216543674469,L, + 313680989750,0.116062462329865,L, + 315605413000,0.107397496700287,L, + 317529836250,0.099232852458954,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446907043457,L, + 323303106000,0.077845335006714,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310533434153,L, + 331000799000,0.056914687156677,L, + 332925222250,0.053088188171387,L, + 334849645500,0.049837112426758,L, + 336774068750,0.047166701406240,L, + 338698492000,0.045082449913025,L, + 340622915250,0.043588876724243,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389750480652,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_048" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678622245789 + KeyVer: 4005 + KeyCount: 51 + Key: + 0,-0.063678622245789,L, + 207837711000,-0.063678622245789,L, + 209762134250,-0.063678741455078,L, + 213610980750,-0.063372731208801,L, + 215535404000,-0.063218712806702,L, + 217459827250,-0.063065767288208,L, + 229006366750,-0.062147736549377,L, + 230930790000,-0.061994671821594,L, + 232855213250,-0.061840713024139,L, + 240552906250,-0.061228692531586,L, + 242477329500,-0.061075747013092,L, + 244401752750,-0.060922622680664,L, + 246326176000,-0.060769677162170,L, + 252099445750,-0.060310661792755,L, + 254023869000,-0.060156702995300,L, + 257872715500,-0.059850692749023,L, + 259797138750,-0.059697628021240,L, + 263645985250,-0.059391617774963,L, + 265570408500,-0.059237658977509,L, + 269419255000,-0.058931648731232,L, + 271343678250,-0.058778703212738,L, + 273268101500,-0.058625638484955,L, + 282890217750,-0.057860612869263,L, + 284814641000,-0.058244168758392,L, + 286739064250,-0.058418869972229,L, + 288663487500,-0.058594524860382,L, + 290587910750,-0.058770239353180,L, + 292512334000,-0.058944940567017,L, + 296361180500,-0.059296250343323,L, + 298285603750,-0.059471011161804,L, + 300210027000,-0.059646666049957,L, + 302134450250,-0.059821367263794,L, + 304058873500,-0.059997081756592,L, + 305983296750,-0.060172736644745,L, + 307907720000,-0.060347437858582,L, + 309832143250,-0.060523152351379,L, + 311756566500,-0.060697853565216,L, + 315605413000,-0.061049163341522,L, + 317529836250,-0.061223924160004,L, + 321378682750,-0.061575233936310,L, + 323303106000,-0.061749994754791,L, + 325227529250,-0.061925649642944,L, + 327151952500,-0.062100350856781,L, + 329076375750,-0.062276124954224,L, + 331000799000,-0.062451779842377,L, + 332925222250,-0.062626481056213,L, + 334849645500,-0.062802195549011,L, + 336774068750,-0.062976896762848,L, + 340622915250,-0.063328206539154,L, + 342547338500,-0.063502967357635,L, + 344471761750,-0.063678622245789,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339639663696 + KeyVer: 4005 + KeyCount: 61 + Key: + 0,-0.087339639663696,L, + 207837711000,-0.087339639663696,L, + 209762134250,-0.167690396308899,L, + 211686557500,-0.165458321571350,L, + 217459827250,-0.158762454986572,L, + 219384250500,-0.156530737876892,L, + 221308673750,-0.154298663139343,L, + 225157520250,-0.149834752082825,L, + 227081943500,-0.147602677345276,L, + 229006366750,-0.145370721817017,L, + 230930790000,-0.143138885498047,L, + 234779636500,-0.138674974441528,L, + 236704059750,-0.136442899703979,L, + 240552906250,-0.131978988647461,L, + 242477329500,-0.129747152328491,L, + 244401752750,-0.127515435218811,L, + 246326176000,-0.125283479690552,L, + 248250599250,-0.123051404953003,L, + 250175022500,-0.120819449424744,L, + 254023869000,-0.116355299949646,L, + 255948292250,-0.114123344421387,L, + 257872715500,-0.111891269683838,L, + 259797138750,-0.109659790992737,L, + 261721562000,-0.107427835464478,L, + 263645985250,-0.105195760726929,L, + 265570408500,-0.102963805198669,L, + 267494831750,-0.100731730461121,L, + 271343678250,-0.096267819404602,L, + 273268101500,-0.094036221504211,L, + 277116948000,-0.089572310447693,L, + 279041371250,-0.087340235710144,L, + 282890217750,-0.082876324653625,L, + 284814641000,-0.082875609397888,L, + 286739064250,-0.083019495010376,L, + 288663487500,-0.083163738250732,L, + 290587910750,-0.083307504653931,L, + 292512334000,-0.083451390266418,L, + 294436757250,-0.083595752716064,L, + 296361180500,-0.083739757537842,L, + 298285603750,-0.083883404731750,L, + 300210027000,-0.084027647972107,L, + 302134450250,-0.084171652793884,L, + 304058873500,-0.084315419197083,L, + 305983296750,-0.084459662437439,L, + 309832143250,-0.084747433662415,L, + 311756566500,-0.084891557693481,L, + 313680989750,-0.085035562515259,L, + 315605413000,-0.085179805755615,L, + 317529836250,-0.085323452949524,L, + 319454259500,-0.085467576980591,L, + 321378682750,-0.085611820220947,L, + 323303106000,-0.085755467414856,L, + 325227529250,-0.085899472236633,L, + 327151952500,-0.086043715476990,L, + 329076375750,-0.086187481880188,L, + 331000799000,-0.086331486701965,L, + 332925222250,-0.086475610733032,L, + 336774068750,-0.086763381958008,L, + 340622915250,-0.087051868438721,L, + 342547338500,-0.087195277214050,L, + 344471761750,-0.087339639663696,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138244628906 + KeyVer: 4005 + KeyCount: 154 + Key: + 0,0.415138244628906,L, + 1924423250,0.421364545822144,L, + 3848846500,0.427590608596802,L, + 5773269750,0.433816909790039,L, + 7697693000,0.440042734146118,L, + 9622116250,0.446268796920776,L, + 11546539500,0.452495098114014,L, + 13470962750,0.458721160888672,L, + 15395386000,0.464947462081909,L, + 17319809250,0.471173524856567,L, + 19244232500,0.477399826049805,L, + 21168655750,0.483625888824463,L, + 23093079000,0.489852190017700,L, + 25017502250,0.496078252792358,L, + 26941925500,0.502304553985596,L, + 28866348750,0.508530378341675,L, + 30790772000,0.514756441116333,L, + 32715195250,0.520982742309570,L, + 34639618500,0.527208805084229,L, + 36564041750,0.533435106277466,L, + 38488465000,0.539660692214966,L, + 40412888250,0.545887231826782,L, + 42337311500,0.552113056182861,L, + 44261734750,0.558339357376099,L, + 46186158000,0.564565420150757,L, + 48110581250,0.570791721343994,L, + 50035004500,0.577017784118652,L, + 51959427750,0.583244085311890,L, + 53883851000,0.589470148086548,L, + 55808274250,0.595696449279785,L, + 57732697500,0.601922273635864,L, + 59657120750,0.608148336410522,L, + 61581544000,0.614374637603760,L, + 63505967250,0.620600700378418,L, + 65430390500,0.626827001571655,L, + 67354813750,0.633053064346313,L, + 69279237000,0.639279365539551,L, + 71203660250,0.645505189895630,L, + 75052506750,0.657957315444946,L, + 76976930000,0.664183616638184,L, + 78901353250,0.670409679412842,L, + 80825776500,0.676635980606079,L, + 82750199750,0.682862043380737,L, + 84674623000,0.689088344573975,L, + 86599046250,0.695314407348633,L, + 88523469500,0.701540708541870,L, + 90447892750,0.707766532897949,L, + 92372316000,0.713992595672607,L, + 94296739250,0.720218896865845,L, + 96221162500,0.726444959640503,L, + 98145585750,0.732671260833740,L, + 100070009000,0.738897323608398,L, + 101994432250,0.745123624801636,L, + 103918855500,0.751349449157715,L, + 105843278750,0.757575511932373,L, + 107767702000,0.763801813125610,L, + 109692125250,0.770027875900269,L, + 111616548500,0.776254177093506,L, + 115465395000,0.788706302642822,L, + 117389818250,0.794932603836060,L, + 119314241500,0.801158666610718,L, + 121238664750,0.807384967803955,L, + 123163088000,0.813610792160034,L, + 125087511250,0.819836854934692,L, + 127011934500,0.826063156127930,L, + 128936357750,0.832289218902588,L, + 130860781000,0.838515520095825,L, + 132785204250,0.844741582870483,L, + 134709627500,0.850967884063721,L, + 136634050750,0.857193708419800,L, + 138558474000,0.863419771194458,L, + 140482897250,0.869646072387695,L, + 142407320500,0.875872135162354,L, + 144331743750,0.882098436355591,L, + 146256167000,0.888324499130249,L, + 148180590250,0.894550800323486,L, + 150105013500,0.900776863098145,L, + 152029436750,0.907003164291382,L, + 153953860000,0.913229227066040,L, + 155878283250,0.919455051422119,L, + 157802706500,0.925681114196777,L, + 159727129750,0.931907415390015,L, + 161651553000,0.938133478164673,L, + 163575976250,0.944359779357910,L, + 165500399500,0.950585842132568,L, + 167424822750,0.956811666488647,L, + 169349246000,0.963037967681885,L, + 171273669250,0.969264030456543,L, + 173198092500,0.975490331649780,L, + 175122515750,0.981716394424438,L, + 177046939000,0.987942695617676,L, + 178971362250,0.994168758392334,L, + 180895785500,1.000395059585571,L, + 182820208750,1.006621122360229,L, + 184744632000,1.012847423553467,L, + 186669055250,1.019073247909546,L, + 188593478500,1.025299787521362,L, + 190517901750,1.031525373458862,L, + 192442325000,1.037751674652100,L, + 194366748250,1.043977737426758,L, + 196291171500,1.050204038619995,L, + 198215594750,1.056429862976074,L, + 200140018000,1.062655925750732,L, + 202064441250,1.068882465362549,L, + 203988864500,1.075108289718628,L, + 205913287750,1.081334590911865,L, + 207837711000,1.087560653686523,L, + 209762134250,-0.038915634155273,L, + 213610980750,-0.038882732391357,L, + 217459827250,-0.038849353790283,L, + 219384250500,-0.038832902908325,L, + 223233097000,-0.038799524307251,L, + 225157520250,-0.038783073425293,L, + 230930790000,-0.038733005523682,L, + 232855213250,-0.038716554641724,L, + 234779636500,-0.038699865341187,L, + 236704059750,-0.038683414459229,L, + 238628483000,-0.038666725158691,L, + 240552906250,-0.038650274276733,L, + 244401752750,-0.038616895675659,L, + 246326176000,-0.038600444793701,L, + 252099445750,-0.038550376892090,L, + 254023869000,-0.038533926010132,L, + 257872715500,-0.038500547409058,L, + 261721562000,-0.038467645645142,L, + 265570408500,-0.038434267044067,L, + 267494831750,-0.038417816162109,L, + 273268101500,-0.038367748260498,L, + 275192524750,-0.038351297378540,L, + 279041371250,-0.038317918777466,L, + 280965794500,-0.038301467895508,L, + 282890217750,-0.038284778594971,L, + 284814641000,0.028068065643311,L, + 286739064250,0.040554046630859,L, + 292512334000,0.078012704849243,L, + 294436757250,0.090498685836792,L, + 298285603750,0.115471124649048,L, + 300210027000,0.127957105636597,L, + 304058873500,0.152929544448853,L, + 305983296750,0.165415525436401,L, + 307907720000,0.177901744842529,L, + 309832143250,0.190387725830078,L, + 313680989750,0.215360164642334,L, + 315605413000,0.227846145629883,L, + 321378682750,0.265304803848267,L, + 323303106000,0.277790784835815,L, + 327151952500,0.302763223648071,L, + 329076375750,0.315249204635620,L, + 331000799000,0.327735424041748,L, + 332925222250,0.340221405029297,L, + 336774068750,0.365193843841553,L, + 338698492000,0.377679824829102,L, + 342547338500,0.402652263641357,L, + 344471761750,0.415138244628906,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 153 + Key: + 0,30.670462448994193,L, + 3848846500,28.520004709575449,L, + 5773269750,27.444772424771493,L, + 9622116250,25.294314685352749,L, + 11546539500,24.219082400548789,L, + 13470962750,23.143860361028587,L, + 17319809250,20.993399206515257,L, + 19244232500,19.918173751900472,L, + 21168655750,18.842946589738389,L, + 23093079000,17.767716012481724,L, + 25017502250,16.692488850319645,L, + 28866348750,14.542027695806317,L, + 30790772000,13.466801387417883,L, + 32715195250,12.391572517708511,L, + 34639618500,11.316341940451846,L, + 36564041750,10.241112216968826,L, + 38488465000,9.165887616127685,L, + 40412888250,8.090660453965606,L, + 42337311500,7.015429449822117,L, + 44261734750,5.940201006999568,L, + 46186158000,4.864972991063842,L, + 48110581250,3.789743694467647,L, + 50035004500,2.714515251645097,L, + 51959427750,1.639286275214019,L, + 53883851000,0.564057458865500,L, + 55808274250,-0.511171410843873,L, + 57732697500,-1.586400440635804,L, + 59657120750,-2.661629310345176,L, + 61581544000,-3.736857112837491,L, + 63505967250,-4.812081713678632,L, + 65430390500,-5.887311864048474,L, + 67354813750,-6.962545002626078,L, + 69279237000,-8.037770884127688,L, + 71203660250,-9.112998046289768,L, + 73128083500,-10.188232892414664,L, + 75052506750,-11.263456639482159,L, + 76976930000,-12.338681240323300,L, + 78901353250,-13.413915232674549,L, + 80825776500,-14.489141541062983,L, + 82750199750,-15.564372118319648,L, + 84674623000,-16.639600988029020,L, + 86599046250,-17.714826442643808,L, + 90447892750,-19.865291012251724,L, + 92372316000,-20.940513051771926,L, + 94296739250,-22.015741921481297,L, + 96221162500,-23.090969083643376,L, + 98145585750,-24.166203075994627,L, + 100070009000,-25.241428530609415,L, + 103918855500,-27.391886270028159,L, + 105843278750,-28.467108309548362,L, + 107767702000,-29.542340594352318,L, + 109692125250,-30.617576294250863,L, + 111616548500,-31.692801748865648,L, + 117389818250,-34.918488357993766,L, + 119314241500,-35.993720642797726,L, + 121238664750,-37.068946097412514,L, + 123163088000,-38.144174967121884,L, + 125087511250,-39.219407251925844,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369864991344585,L, + 130860781000,-42.445083615770201,L, + 132785204250,-43.520309070384990,L, + 134709627500,-44.595544770283531,L, + 136634050750,-45.670766809803737,L, + 138558474000,-46.745999094607690,L, + 140482897250,-47.821234794506232,L, + 142407320500,-48.896456834026438,L, + 144331743750,-49.971685703735808,L, + 146256167000,-51.046921403634350,L, + 150105013500,-53.197372312863926,L, + 153953860000,-55.347830052282674,L, + 155878283250,-56.423055506897462,L, + 157802706500,-57.498294621890587,L, + 161651553000,-59.648738700930991,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175347619085770,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325798528315346,L, + 180895785500,-70.401034228213888,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626720837342006,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838164751511634,L, + 230930790000,-51.776559776814501,L, + 232855213250,-48.714947971928197,L, + 236704059750,-42.591744852723089,L, + 240552906250,-36.468528073139645,L, + 244401752750,-30.345318123745376,L, + 246326176000,-27.283711441500945,L, + 248250599250,-24.222096221520054,L, + 250175022500,-21.160489539275623,L, + 252099445750,-18.098894809862244,L, + 254023869000,-15.037286420070522,L, + 255948292250,-11.975678884052446,L, + 257872715500,-8.914072201808017,L, + 259797138750,-5.852461677582180,L, + 261721562000,-2.790855635667985,L, + 263645985250,0.270741868509746,L, + 265570408500,3.332353459952642,L, + 267494831750,6.393958648093189,L, + 269419255000,9.455570452979495,L, + 271343678250,12.517174573902986,L, + 273268101500,15.578780402373770,L, + 275192524750,18.640385377070906,L, + 277116948000,21.701997181957214,L, + 279041371250,24.763607279296227,L, + 280965794500,27.825210546446073,L, + 282890217750,30.886805275859452,L, + 284814641000,30.872543840872485,L, + 286739064250,30.866027840404303,L, + 288663487500,30.859501594652365,L, + 290587910750,30.852985594184183,L, + 294436757250,30.839946763058649,L, + 296361180500,30.833423932401296,L, + 298285603750,30.826911347027696,L, + 300210027000,30.820391931464929,L, + 304058873500,30.807359930528563,L, + 305983296750,30.800833684776627,L, + 309832143250,30.787801683840261,L, + 313680989750,30.774762852714723,L, + 319454259500,30.755194360742667,L, + 321378682750,30.748681775369068,L, + 323303106000,30.742162359806301,L, + 325227529250,30.735653189527287,L, + 327151952500,30.729126943775348,L, + 329076375750,30.722607528212581,L, + 331000799000,30.716091527744400,L, + 332925222250,30.709572112181633,L, + 334849645500,30.703049281524279,L, + 338698492000,30.690017280587913,L, + 342547338500,30.676978449462379,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 80825776500,133.527274952592649,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489135085273555 + KeyVer: 4005 + KeyCount: 155 + Key: + 0,7.489135085273555,L, + 1924423250,6.812488307882052,L, + 3848846500,6.135839396056432,L, + 5773269750,5.459191764891282,L, + 7697693000,4.782543279952485,L, + 9622116250,4.105895648787334,L, + 11546539500,3.429248444509007,L, + 13470962750,2.752599532683388,L, + 15395386000,2.075952114961649,L, + 17319809250,1.399306511508908,L, + 19244232500,0.722657706404994,L, + 21168655750,0.046009174775451,L, + 23093079000,-0.630638623142364,L, + 25017502250,-1.307285187090457,L, + 26941925500,-1.983932604812196,L, + 28866348750,-2.660581516637815,L, + 30790772000,-3.337228720916142,L, + 32715195250,-4.013876352081293,L, + 34639618500,-4.690523129472797,L, + 36564041750,-5.367170760637947,L, + 38488465000,-6.043819245576744,L, + 40412888250,-6.720468584289187,L, + 42337311500,-7.397114507907045,L, + 44261734750,-8.073764273506312,L, + 46186158000,-8.750413185331931,L, + 48110581250,-9.427059535836612,L, + 50035004500,-10.103705032567646,L, + 51959427750,-10.780354798166913,L, + 53883851000,-11.457002856218885,L, + 55808274250,-12.133650060497214,L, + 57732697500,-12.810299826096479,L, + 59657120750,-13.486943615280222,L, + 61581544000,-14.163591673332194,L, + 63505967250,-14.840242292705106,L, + 65430390500,-15.516885228115203,L, + 67354813750,-16.193533286167177,L, + 69279237000,-16.870184759313734,L, + 73128083500,-18.223477460323096,L, + 75052506750,-18.900127225922361,L, + 80825776500,-20.930066277436406,L, + 82750199750,-21.606721165677548,L, + 84674623000,-22.283365808634937,L, + 86599046250,-22.960012159139620,L, + 88523469500,-23.636660217191594,L, + 90447892750,-24.313306567696273,L, + 92372316000,-24.989959748390124,L, + 94296739250,-25.666609513989389,L, + 96221162500,-26.343255864494072,L, + 98145585750,-27.019898799904166,L, + 101994432250,-28.373194916008114,L, + 103918855500,-29.049846389154673,L, + 105843278750,-29.726496154753939,L, + 107767702000,-30.403135675069450,L, + 109692125250,-31.079792270857887,L, + 113540971750,-32.433078141678081,L, + 115465395000,-33.109731322371928,L, + 117389818250,-33.786374257782022,L, + 121238664750,-35.139673788980559,L, + 123163088000,-35.816320139485235,L, + 125087511250,-36.492973320179090,L, + 127011934500,-37.169612840494601,L, + 128936357750,-37.846266021188448,L, + 130860781000,-38.522912371693131,L, + 132785204250,-39.199562137292396,L, + 134709627500,-39.876205072702490,L, + 136634050750,-40.552851423207173,L, + 138558474000,-41.229504603901027,L, + 142407320500,-42.582797304910386,L, + 144331743750,-43.259450485604241,L, + 146256167000,-43.936096836108916,L, + 148180590250,-44.612739771519017,L, + 150105013500,-45.289396367307454,L, + 152029436750,-45.966035887622965,L, + 155878283250,-47.319328588632324,L, + 159727129750,-48.672628119830854,L, + 161651553000,-49.349271055240955,L, + 163575976250,-50.025917405745631,L, + 165500399500,-50.702570586439485,L, + 167424822750,-51.379220352038750,L, + 169349246000,-52.055866702543433,L, + 171273669250,-52.732516468142698,L, + 177046939000,-54.762455519656740,L, + 178971362250,-55.439108700350594,L, + 180895785500,-56.115758465949860,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 192442325000,-60.175646814261697,L, + 194366748250,-60.852286334577208,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558871736595933,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256090616880670,L, + 215535404000,-58.594915644080409,L, + 217459827250,-56.707864150002827,L, + 219384250500,-54.820802410641491,L, + 221308673750,-52.933744086374737,L, + 223233097000,-51.046689177202573,L, + 225157520250,-49.159627437841237,L, + 227081943500,-47.272572528669066,L, + 229006366750,-45.385514204402320,L, + 230930790000,-43.498452465040984,L, + 234779636500,-39.724342646696648,L, + 240552906250,-34.063167673896395,L, + 242477329500,-32.176105934535059,L, + 244401752750,-30.289051025362891,L, + 246326176000,-28.401999531285309,L, + 248250599250,-26.514937791923973,L, + 250175022500,-24.627882882751805,L, + 252099445750,-22.740824558485055,L, + 254023869000,-20.853764526671011,L, + 255948292250,-18.966707909951552,L, + 257872715500,-17.079649585684798,L, + 259797138750,-15.192589553870755,L, + 261721562000,-13.305538913566821,L, + 263645985250,-11.418476320431838,L, + 265570408500,-9.531416288617795,L, + 267494831750,-7.644364794540213,L, + 269419255000,-5.757303482065699,L, + 271343678250,-3.870246011572594,L, + 273268101500,-1.983186833532196,L, + 275192524750,-0.096127221934868,L, + 277116948000,1.790923625142372,L, + 279041371250,3.677980882192065,L, + 280965794500,5.565040060232463,L, + 282890217750,7.452098384499215,L, + 284814641000,7.454200375216283,L, + 286739064250,7.455328210202980,L, + 288663487500,7.456456898963323,L, + 290587910750,7.457582172629081,L, + 292512334000,7.458709153842131,L, + 294436757250,7.459836988828828,L, + 298285603750,7.462089243707636,L, + 304058873500,7.465470187346788,L, + 305983296750,7.466596314786192,L, + 307907720000,7.467724149772889,L, + 311756566500,7.469978112198990,L, + 313680989750,7.471104239638394,L, + 315605413000,7.472232074625091,L, + 317529836250,7.473358202064495,L, + 321378682750,7.475612164490596,L, + 323303106000,7.476739999477293,L, + 325227529250,7.477866980690343,L, + 327151952500,7.478992254356101,L, + 329076375750,7.480120089342798,L, + 334849645500,7.483501032981949,L, + 336774068750,7.484626306647708,L, + 338698492000,7.485753287860758,L, + 340622915250,7.486881976621101,L, + 342547338500,7.488008957834151,L, + 344471761750,7.489135085273555,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 140 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672845840454,L, + 13470962750,0.715156376361847,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123198986053,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507256984711,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654474079608917,L, + 36564041750,0.648957490921021,L, + 38488465000,0.643440961837769,L, + 40412888250,0.637924253940582,L, + 42337311500,0.632407724857330,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242016792297,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626194000244,L, + 76976930000,0.533109545707703,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493603706360,L, + 92372316000,0.488977015018463,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910690069199,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778189182281,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162187576294,L, + 130860781000,0.378645628690720,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996568918228,L, + 150105013500,0.323479950428009,L, + 153953860000,0.312446832656860,L, + 155878283250,0.306930243968964,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 163575976250,0.284863978624344,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281213998795,L, + 175122515750,0.251764625310898,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731462836266,L, + 180895785500,0.235214903950691,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 188593478500,0.213148638606071,L, + 192442325000,0.202115491032600,L, + 194366748250,0.196598932147026,L, + 198215594750,0.185565784573555,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798302367330,L, + 211686557500,0.015925440937281,L, + 215535404000,0.016179721802473,L, + 217459827250,0.016306860372424,L, + 219384250500,0.016434004530311,L, + 221308673750,0.016561143100262,L, + 225157520250,0.016815423965454,L, + 227081943500,0.016942566260695,L, + 230930790000,0.017196843400598,L, + 238628483000,0.017705405130982,L, + 240552906250,0.017832543700933,L, + 242477329500,0.017959685996175,L, + 246326176000,0.018213966861367,L, + 248250599250,0.018341105431318,L, + 250175022500,0.018468247726560,L, + 257872715500,0.018976809456944,L, + 259797138750,0.019103948026896,L, + 261721562000,0.019231090322137,L, + 263645985250,0.019358228892088,L, + 269419255000,0.019739650189877,L, + 271343678250,0.019866792485118,L, + 273268101500,0.019993929192424,L, + 275192524750,0.020121069625020,L, + 277116948000,0.020248211920261,L, + 280965794500,0.020502492785454,L, + 282890217750,0.020629635080695,L, + 284814641000,0.207228913903236,L, + 286739064250,0.224859356880188,L, + 290587910750,0.260120213031769,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381069183350,L, + 298285603750,0.330641984939575,L, + 302134450250,0.365902781486511,L, + 305983296750,0.401163697242737,L, + 307907720000,0.418794095516205,L, + 309832143250,0.436424553394318,L, + 311756566500,0.454054951667786,L, + 313680989750,0.471685379743576,L, + 315605413000,0.489315897226334,L, + 317529836250,0.506946206092834,L, + 319454259500,0.524576663970947,L, + 321378682750,0.542207062244415,L, + 323303106000,0.559837579727173,L, + 325227529250,0.577467978000641,L, + 327151952500,0.595098435878754,L, + 329076375750,0.612728774547577,L, + 331000799000,0.630359292030334,L, + 332925222250,0.647989690303802,L, + 334849645500,0.665620148181915,L, + 336774068750,0.683250546455383,L, + 338698492000,0.700881004333496,L, + 340622915250,0.718511521816254,L, + 342547338500,0.736141920089722,L, + 344471761750,0.753772258758545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255610466003,L, + 3848846500,0.742739140987396,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189494132996,L, + 11546539500,0.720672905445099,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606669902802,L, + 21168655750,0.693090021610260,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540255546570,L, + 30790772000,0.665507197380066,L, + 32715195250,0.659990608692169,L, + 36564041750,0.648957550525665,L, + 38488465000,0.643440842628479,L, + 40412888250,0.637924253940582,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891136169434,L, + 46186158000,0.621374607086182,L, + 48110581250,0.615858137607574,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791723251343,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725606918335,L, + 65430390500,0.566208958625793,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659371376038,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109664916992,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076368331909,L, + 84674623000,0.511043310165405,L, + 90447892750,0.494493544101715,L, + 92372316000,0.488977015018463,L, + 94296739250,0.483460426330566,L, + 96221162500,0.477943867444992,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 101994432250,0.461394160985947,L, + 105843278750,0.450361102819443,L, + 107767702000,0.444844514131546,L, + 109692125250,0.439327865839005,L, + 111616548500,0.433811366558075,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778159379959,L, + 117389818250,0.417261600494385,L, + 119314241500,0.411745071411133,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678776264191,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546275377274,L, + 144331743750,0.340029627084732,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 163575976250,0.284864008426666,L, + 165500399500,0.279347479343414,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246247991919518,L, + 178971362250,0.240731492638588,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698345065117,L, + 186669055250,0.218665197491646,L, + 188593478500,0.213148638606071,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 215535404000,0.016429286450148,L, + 217459827250,0.016639616340399,L, + 219384250500,0.016849942505360,L, + 221308673750,0.017060274258256,L, + 223233097000,0.017270602285862,L, + 225157520250,0.017480932176113,L, + 227081943500,0.017691260203719,L, + 232855213250,0.018322249874473,L, + 234779636500,0.018532576039433,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 244401752750,0.019584219902754,L, + 250175022500,0.020215209573507,L, + 252099445750,0.020425533875823,L, + 254023869000,0.020635863766074,L, + 255948292250,0.020846195518970,L, + 257872715500,0.021056525409222,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477183327079,L, + 263645985250,0.021687509492040,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108169272542,L, + 269419255000,0.022318499162793,L, + 275192524750,0.022949483245611,L, + 277116948000,0.023159813135862,L, + 279041371250,0.023370139300823,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524722099304,L, + 286739064250,0.256113380193710,L, + 290587910750,0.289290636777878,L, + 292512334000,0.305879235267639,L, + 296361180500,0.339056551456451,L, + 298285603750,0.355645120143890,L, + 300210027000,0.372233778238297,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999722719193,L, + 307907720000,0.438588291406631,L, + 309832143250,0.455176919698715,L, + 315605413000,0.504942893981934,L, + 317529836250,0.521531462669373,L, + 319454259500,0.538120150566101,L, + 321378682750,0.554708719253540,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885916233063,L, + 327151952500,0.604474604129791,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829117298126,L, + 344471761750,0.753772258758545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772318363190 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.753772318363190,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739200592041,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123079776764,L, + 19244232500,0.698606669902802,L, + 21168655750,0.693090021610260,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654473960399628,L, + 38488465000,0.643440902233124,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374607086182,L, + 48110581250,0.615858078002930,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758724689484,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692429542542,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 73128083500,0.544142782688141,L, + 75052506750,0.538626134395599,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 86599046250,0.505526781082153,L, + 88523469500,0.500010132789612,L, + 92372316000,0.488977015018463,L, + 94296739250,0.483460426330566,L, + 96221162500,0.477943897247314,L, + 100070009000,0.466910719871521,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261660099030,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711894035339,L, + 125087511250,0.395195364952087,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162217378616,L, + 130860781000,0.378645658493042,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996539115906,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 169349246000,0.268314272165298,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246248021721840,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181801080704,L, + 186669055250,0.218665197491646,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632079720497,L, + 192442325000,0.202115476131439,L, + 194366748250,0.196598947048187,L, + 196291171500,0.191082373261452,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982930541039,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008632257581,L, + 213610980750,0.016218958422542,L, + 215535404000,0.016429286450148,L, + 217459827250,0.016639616340399,L, + 219384250500,0.016849948093295,L, + 221308673750,0.017060274258256,L, + 223233097000,0.017270602285862,L, + 227081943500,0.017691262066364,L, + 230930790000,0.018111918121576,L, + 234779636500,0.018532577902079,L, + 238628483000,0.018953233957291,L, + 242477329500,0.019373893737793,L, + 246326176000,0.019794549793005,L, + 250175022500,0.020215209573507,L, + 254023869000,0.020635865628719,L, + 255948292250,0.020846197381616,L, + 259797138750,0.021266853436828,L, + 261721562000,0.021477177739143,L, + 263645985250,0.021687511354685,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108169272542,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528827190399,L, + 273268101500,0.022739157080650,L, + 277116948000,0.023159813135862,L, + 279041371250,0.023370144888759,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524737000465,L, + 286739064250,0.256113409996033,L, + 288663487500,0.272702008485794,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645179748535,L, + 300210027000,0.372233748435974,L, + 304058873500,0.405411064624786,L, + 309832143250,0.455176949501038,L, + 311756566500,0.471765607595444,L, + 313680989750,0.488354206085205,L, + 319454259500,0.538120090961456,L, + 321378682750,0.554708778858185,L, + 323303106000,0.571297347545624,L, + 325227529250,0.587885975837708,L, + 327151952500,0.604474663734436,L, + 329076375750,0.621063232421875,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829117298126,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006433486938,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183570861816,L, + 344471761750,0.753772318363190,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_047" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792237758636 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.016792237758636,L, + 1924423250,0.015351951122284,L, + 3848846500,0.013910710811615,L, + 5773269750,0.012469410896301,L, + 7697693000,0.011029183864594,L, + 9622116250,0.009587943553925,L, + 11546539500,0.008147597312927,L, + 13470962750,0.006706357002258,L, + 15395386000,0.005266070365906,L, + 17319809250,0.003824770450592,L, + 19244232500,0.002384483814240,L, + 21168655750,0.000943243503571,L, + 23093079000,-0.000498056411743,L, + 25017502250,-0.001938343048096,L, + 26941925500,-0.003379523754120,L, + 28866348750,-0.004819869995117,L, + 30790772000,-0.006262063980103,L, + 32715195250,-0.007702350616455,L, + 34639618500,-0.009143650531769,L, + 36564041750,-0.010583937168121,L, + 38488465000,-0.012025177478790,L, + 40412888250,-0.013465523719788,L, + 42337311500,-0.014906764030457,L, + 44261734750,-0.016347050666809,L, + 46186158000,-0.017788350582123,L, + 48110581250,-0.019229590892792,L, + 50035004500,-0.020669817924500,L, + 51959427750,-0.022111058235168,L, + 53883851000,-0.023551404476166,L, + 55808274250,-0.024992644786835,L, + 57732697500,-0.026432931423187,L, + 59657120750,-0.027874231338501,L, + 61581544000,-0.029314517974854,L, + 63505967250,-0.030755758285522,L, + 65430390500,-0.032197058200836,L, + 67354813750,-0.033637344837189,L, + 69279237000,-0.035078585147858,L, + 71203660250,-0.036518931388855,L, + 73128083500,-0.037960112094879,L, + 75052506750,-0.039400398731232,L, + 76976930000,-0.040842652320862,L, + 78901353250,-0.042282938957214,L, + 80825776500,-0.043724179267883,L, + 82750199750,-0.045164525508881,L, + 84674623000,-0.046605765819550,L, + 86599046250,-0.048046052455902,L, + 88523469500,-0.049487352371216,L, + 90447892750,-0.050928592681885,L, + 92372316000,-0.052368819713593,L, + 94296739250,-0.053810119628906,L, + 96221162500,-0.055250406265259,L, + 98145585750,-0.056691646575928,L, + 100070009000,-0.058131992816925,L, + 101994432250,-0.059573233127594,L, + 103918855500,-0.061013519763947,L, + 105843278750,-0.062454760074615,L, + 107767702000,-0.063896059989929,L, + 109692125250,-0.065336346626282,L, + 111616548500,-0.066777586936951,L, + 113540971750,-0.068217933177948,L, + 115465395000,-0.069659113883972,L, + 117389818250,-0.071099400520325,L, + 119314241500,-0.072540700435638,L, + 121238664750,-0.073980987071991,L, + 123163088000,-0.075422227382660,L, + 125087511250,-0.076863527297974,L, + 127011934500,-0.078304767608643,L, + 128936357750,-0.079745054244995,L, + 130860781000,-0.081186354160309,L, + 132785204250,-0.082627594470978,L, + 134709627500,-0.084067881107330,L, + 136634050750,-0.085509181022644,L, + 138558474000,-0.086949408054352,L, + 140482897250,-0.088390648365021,L, + 142407320500,-0.089830994606018,L, + 144331743750,-0.091272234916687,L, + 146256167000,-0.092712521553040,L, + 148180590250,-0.094153821468353,L, + 150105013500,-0.095595061779022,L, + 152029436750,-0.097035348415375,L, + 153953860000,-0.098476588726044,L, + 155878283250,-0.099916934967041,L, + 157802706500,-0.101358115673065,L, + 159727129750,-0.102798402309418,L, + 161651553000,-0.104239702224731,L, + 163575976250,-0.105679988861084,L, + 165500399500,-0.107121229171753,L, + 167424822750,-0.108562529087067,L, + 169349246000,-0.110002815723419,L, + 171273669250,-0.111444056034088,L, + 173198092500,-0.112885355949402,L, + 175122515750,-0.114326596260071,L, + 177046939000,-0.115766882896423,L, + 178971362250,-0.117208182811737,L, + 180895785500,-0.118648409843445,L, + 182820208750,-0.120089650154114,L, + 184744632000,-0.121529996395111,L, + 188593478500,-0.117827832698822,L, + 190517901750,-0.115975856781006,L, + 192442325000,-0.114124774932861,L, + 194366748250,-0.112272739410400,L, + 196291171500,-0.110422670841217,L, + 198215594750,-0.108571588993073,L, + 200140018000,-0.106719613075256,L, + 202064441250,-0.104868471622467,L, + 203988864500,-0.103016436100006,L, + 205913287750,-0.101165413856506,L, + 209762134250,-0.097463250160217,L, + 211686557500,-0.095612227916718,L, + 213610980750,-0.093760192394257,L, + 215535404000,-0.091909110546112,L, + 217459827250,-0.090058088302612,L, + 219384250500,-0.088206052780151,L, + 221308673750,-0.086355030536652,L, + 223233097000,-0.084503889083862,L, + 225157520250,-0.082652807235718,L, + 227081943500,-0.080800831317902,L, + 230930790000,-0.077098667621613,L, + 232855213250,-0.075246691703796,L, + 236704059750,-0.071544528007507,L, + 238628483000,-0.069693505764008,L, + 240552906250,-0.067842423915863,L, + 242477329500,-0.065990447998047,L, + 244401752750,-0.064139306545258,L, + 246326176000,-0.062288224697113,L, + 248250599250,-0.060436248779297,L, + 252099445750,-0.056734085083008,L, + 254023869000,-0.054883062839508,L, + 255948292250,-0.053031027317047,L, + 257872715500,-0.051179945468903,L, + 259797138750,-0.049328923225403,L, + 261721562000,-0.047476887702942,L, + 263645985250,-0.045625865459442,L, + 265570408500,-0.043774783611298,L, + 267494831750,-0.041923642158508,L, + 269419255000,-0.040072619915009,L, + 271343678250,-0.038220584392548,L, + 273268101500,-0.036369502544403,L, + 275192524750,-0.034518480300903,L, + 277116948000,-0.032666444778442,L, + 279041371250,-0.030815362930298,L, + 280965794500,-0.028964340686798,L, + 282890217750,-0.027113258838654,L, + 284814641000,-0.025261282920837,L, + 286739064250,-0.023410201072693,L, + 288663487500,-0.021559059619904,L, + 290587910750,-0.019707083702087,L, + 294436757250,-0.016004920005798,L, + 296361180500,-0.014153897762299,L, + 298285603750,-0.012302815914154,L, + 300210027000,-0.010450780391693,L, + 302134450250,-0.008599758148193,L, + 304058873500,-0.008605062961578,L, + 305983296750,-0.007686138153076,L, + 307907720000,-0.006198048591614,L, + 309832143250,-0.004555404186249,L, + 311756566500,-0.002857685089111,L, + 313680989750,-0.001149237155914,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215147018433,L, + 319454259500,0.003842115402222,L, + 321378682750,0.005417823791504,L, + 323303106000,0.006934106349945,L, + 325227529250,0.008382439613342,L, + 327151952500,0.009753286838531,L, + 329076375750,0.011040270328522,L, + 331000799000,0.012230455875397,L, + 332925222250,0.013315320014954,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015120983123779,L, + 338698492000,0.015811383724213,L, + 340622915250,0.016336143016815,L, + 342547338500,0.016673386096954,L, + 344471761750,0.016792237758636,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469446182251 + KeyVer: 4005 + KeyCount: 167 + Key: + 0,-0.000469446182251,L, + 1924423250,-0.000807523727417,L, + 3848846500,-0.001145362854004,L, + 5773269750,-0.001482963562012,L, + 7697693000,-0.001820802688599,L, + 9622116250,-0.002158880233765,L, + 11546539500,-0.002496480941772,L, + 13470962750,-0.002834320068359,L, + 15395386000,-0.003172397613525,L, + 17319809250,-0.003509998321533,L, + 21168655750,-0.004185676574707,L, + 23093079000,-0.004523277282715,L, + 25017502250,-0.004861354827881,L, + 26941925500,-0.005199313163757,L, + 28866348750,-0.005536913871765,L, + 30790772000,-0.005875110626221,L, + 32715195250,-0.006212949752808,L, + 34639618500,-0.006550550460815,L, + 36564041750,-0.006888389587402,L, + 38488465000,-0.007226467132568,L, + 40412888250,-0.007564067840576,L, + 42337311500,-0.007901906967163,L, + 44261734750,-0.008239984512329,L, + 46186158000,-0.008577346801758,L, + 48110581250,-0.008915424346924,L, + 50035004500,-0.009253263473511,L, + 51959427750,-0.009591341018677,L, + 53883851000,-0.009928941726685,L, + 55808274250,-0.010266780853271,L, + 57732697500,-0.010604858398438,L, + 59657120750,-0.010942459106445,L, + 63505967250,-0.011618137359619,L, + 65430390500,-0.011955738067627,L, + 67354813750,-0.012293815612793,L, + 69279237000,-0.012631654739380,L, + 71203660250,-0.012969255447388,L, + 73128083500,-0.013307332992554,L, + 78901353250,-0.014320850372314,L, + 80825776500,-0.014658927917480,L, + 82750199750,-0.014996528625488,L, + 84674623000,-0.015334367752075,L, + 86599046250,-0.015672445297241,L, + 88523469500,-0.016009807586670,L, + 90447892750,-0.016347885131836,L, + 92372316000,-0.016685724258423,L, + 94296739250,-0.017023324966431,L, + 96221162500,-0.017361402511597,L, + 98145585750,-0.017699241638184,L, + 100070009000,-0.018036842346191,L, + 101994432250,-0.018374681472778,L, + 103918855500,-0.018712759017944,L, + 105843278750,-0.019050598144531,L, + 107767702000,-0.019388198852539,L, + 109692125250,-0.019726276397705,L, + 111616548500,-0.020064115524292,L, + 113540971750,-0.020401716232300,L, + 115465395000,-0.020739555358887,L, + 117389818250,-0.021077632904053,L, + 119314241500,-0.021415233612061,L, + 121238664750,-0.021753072738647,L, + 123163088000,-0.022091150283813,L, + 127011934500,-0.022766828536987,L, + 128936357750,-0.023104906082153,L, + 130860781000,-0.023442268371582,L, + 132785204250,-0.023780345916748,L, + 134709627500,-0.024118185043335,L, + 136634050750,-0.024455785751343,L, + 138558474000,-0.024793863296509,L, + 140482897250,-0.025131702423096,L, + 142407320500,-0.025469303131104,L, + 144331743750,-0.025807142257690,L, + 146256167000,-0.026145219802856,L, + 148180590250,-0.026482820510864,L, + 150105013500,-0.026820659637451,L, + 152029436750,-0.027158737182617,L, + 153953860000,-0.027496576309204,L, + 155878283250,-0.027834177017212,L, + 157802706500,-0.028172016143799,L, + 159727129750,-0.028510093688965,L, + 161651553000,-0.028847694396973,L, + 163575976250,-0.029185533523560,L, + 165500399500,-0.029523611068726,L, + 167424822750,-0.029861211776733,L, + 169349246000,-0.030199050903320,L, + 171273669250,-0.030537009239197,L, + 173198092500,-0.030874609947205,L, + 175122515750,-0.031212806701660,L, + 177046939000,-0.031550645828247,L, + 178971362250,-0.031888246536255,L, + 180895785500,-0.032226324081421,L, + 182820208750,-0.032564163208008,L, + 184744632000,-0.032901763916016,L, + 188593478500,-0.034139156341553,L, + 190517901750,-0.034757614135742,L, + 192442325000,-0.035376548767090,L, + 194366748250,-0.035995244979858,L, + 196291171500,-0.036613821983337,L, + 198215594750,-0.037232518196106,L, + 200140018000,-0.037850975990295,L, + 203988864500,-0.039088368415833,L, + 205913287750,-0.039706826210022,L, + 207837711000,-0.040325522422791,L, + 209762134250,-0.040944337844849,L, + 211686557500,-0.041562795639038,L, + 213610980750,-0.042181491851807,L, + 215535404000,-0.042800426483154,L, + 217459827250,-0.043418645858765,L, + 219384250500,-0.044037580490112,L, + 221308673750,-0.044655799865723,L, + 223233097000,-0.045274853706360,L, + 225157520250,-0.045893549919128,L, + 227081943500,-0.046512007713318,L, + 229006366750,-0.047130703926086,L, + 230930790000,-0.047749519348145,L, + 232855213250,-0.048367977142334,L, + 236704059750,-0.049605369567871,L, + 238628483000,-0.050223946571350,L, + 240552906250,-0.050842642784119,L, + 242477329500,-0.051461100578308,L, + 244401752750,-0.052079796791077,L, + 246326176000,-0.052698731422424,L, + 248250599250,-0.053316950798035,L, + 250175022500,-0.053935885429382,L, + 252099445750,-0.054554700851440,L, + 254023869000,-0.055173158645630,L, + 257872715500,-0.056410551071167,L, + 259797138750,-0.057029008865356,L, + 261721562000,-0.057647705078125,L, + 263645985250,-0.058266162872314,L, + 265570408500,-0.058884859085083,L, + 267494831750,-0.059503912925720,L, + 269419255000,-0.060122132301331,L, + 271343678250,-0.060741066932678,L, + 273268101500,-0.061359763145447,L, + 275192524750,-0.061978220939636,L, + 282890217750,-0.064453005790710,L, + 284814641000,-0.065071463584900,L, + 288663487500,-0.066308856010437,L, + 290587910750,-0.066927313804626,L, + 292512334000,-0.067546010017395,L, + 294436757250,-0.068165063858032,L, + 296361180500,-0.068783283233643,L, + 298285603750,-0.069402217864990,L, + 300210027000,-0.070020914077759,L, + 302134450250,-0.070639371871948,L, + 304058873500,-0.070653080940247,L, + 305983296750,-0.068114995956421,L, + 307907720000,-0.064002037048340,L, + 309832143250,-0.059463500976562,L, + 311756566500,-0.054772973060608,L, + 313680989750,-0.050049781799316,L, + 315605413000,-0.045361995697021,L, + 317529836250,-0.040753006935120,L, + 319454259500,-0.036257266998291,L, + 321378682750,-0.031902313232422,L, + 323303106000,-0.027711868286133,L, + 325227529250,-0.023710489273071,L, + 327151952500,-0.019920706748962,L, + 329076375750,-0.016367673873901,L, + 331000799000,-0.013076901435852,L, + 332925222250,-0.010077953338623,L, + 334849645500,-0.007402539253235,L, + 336774068750,-0.005088925361633,L, + 338698492000,-0.003180861473083,L, + 340622915250,-0.001729965209961,L, + 342547338500,-0.000800132751465,L, + 344471761750,-0.000469446182251,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,0.062097311019897,L, + 3848846500,0.072575807571411,L, + 7697693000,0.083054780960083,L, + 9622116250,0.088294029235840,L, + 11546539500,0.093533515930176,L, + 15395386000,0.104012012481689,L, + 19244232500,0.114490985870361,L, + 23093079000,0.124969482421875,L, + 25017502250,0.130208969116211,L, + 26941925500,0.135448217391968,L, + 30790772000,0.145927190780640,L, + 34639618500,0.156405687332153,L, + 36564041750,0.161645174026489,L, + 38488465000,0.166884422302246,L, + 42337311500,0.177363395690918,L, + 46186158000,0.187841892242432,L, + 48110581250,0.193081378936768,L, + 51959427750,0.203559875488281,L, + 53883851000,0.208799600601196,L, + 57732697500,0.219278097152710,L, + 59657120750,0.224517583847046,L, + 61581544000,0.229756832122803,L, + 63505967250,0.234996318817139,L, + 65430390500,0.240235567092896,L, + 67354813750,0.245475053787231,L, + 69279237000,0.250714302062988,L, + 71203660250,0.255953788757324,L, + 73128083500,0.261193037033081,L, + 75052506750,0.266432523727417,L, + 76976930000,0.271671772003174,L, + 78901353250,0.276911258697510,L, + 82750199750,0.287389755249023,L, + 86599046250,0.297868728637695,L, + 88523469500,0.303107976913452,L, + 90447892750,0.308347463607788,L, + 94296739250,0.318825960159302,L, + 98145585750,0.329304933547974,L, + 100070009000,0.334544181823730,L, + 101994432250,0.339783668518066,L, + 103918855500,0.345022916793823,L, + 105843278750,0.350262403488159,L, + 107767702000,0.355501651763916,L, + 109692125250,0.360741138458252,L, + 113540971750,0.371219635009766,L, + 115465395000,0.376459121704102,L, + 117389818250,0.381698369979858,L, + 121238664750,0.392177343368530,L, + 125087511250,0.402655839920044,L, + 128936357750,0.413134813308716,L, + 130860781000,0.418373823165894,L, + 132785204250,0.423613548278809,L, + 134709627500,0.428852558135986,L, + 138558474000,0.439331531524658,L, + 140482897250,0.444570779800415,L, + 142407320500,0.449810266494751,L, + 144331743750,0.455049514770508,L, + 148180590250,0.465528488159180,L, + 150105013500,0.470767736434937,L, + 152029436750,0.476007223129272,L, + 153953860000,0.481246232986450,L, + 155878283250,0.486485719680786,L, + 157802706500,0.491725444793701,L, + 159727129750,0.496964454650879,L, + 161651553000,0.502203941345215,L, + 163575976250,0.507443189620972,L, + 167424822750,0.517922163009644,L, + 169349246000,0.523161411285400,L, + 171273669250,0.528400897979736,L, + 173198092500,0.533639907836914,L, + 175122515750,0.538879632949829,L, + 177046939000,0.544118642807007,L, + 180895785500,0.554597616195679,L, + 182820208750,0.559836864471436,L, + 184744632000,0.565076351165771,L, + 188593478500,0.584238052368164,L, + 190517901750,0.593819141387939,L, + 200140018000,0.641723394393921,L, + 202064441250,0.651304483413696,L, + 203988864500,0.660885334014893,L, + 205913287750,0.670466661453247,L, + 215535404000,0.718370914459229,L, + 217459827250,0.727952003479004,L, + 229006366750,0.785437107086182,L, + 230930790000,0.795018434524536,L, + 232855213250,0.804599046707153,L, + 234779636500,0.814180374145508,L, + 236704059750,0.823760747909546,L, + 238628483000,0.833342075347900,L, + 244401752750,0.862084627151489,L, + 246326176000,0.871665716171265,L, + 255948292250,0.919569969177246,L, + 259797138750,0.938732147216797,L, + 261721562000,0.948312759399414,L, + 263645985250,0.957894086837769,L, + 273268101500,1.005798339843750,L, + 275192524750,1.015379428863525,L, + 284814641000,1.063283681869507,L, + 286739064250,1.072864770889282,L, + 290587910750,1.092026472091675,L, + 292512334000,1.101607799530029,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584482192993,L, + 315605413000,0.052578210830688,L, + 317529836250,0.053555727005005,L, + 319454259500,0.054508924484253,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060627222061157,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 121 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 17319809250,70.051813486140802,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816736533094897,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326703444902080,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836663526520084,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 36564041750,62.601607064041680,L, + 38488465000,61.856583689756100,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 50035004500,57.386457104420955,L, + 51959427750,56.641440560324547,L, + 53883851000,55.896420601133549,L, + 55808274250,55.151404057037141,L, + 57732697500,54.406380682751561,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426311091271337,L, + 67354813750,50.681280886796586,L, + 69279237000,49.936264342700177,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701201050032601,L, + 76976930000,46.956181090841611,L, + 78901353250,46.211154301461441,L, + 80825776500,45.466144587554204,L, + 82750199750,44.721117798174035,L, + 84674623000,43.976101254077626,L, + 86599046250,43.231074464697464,L, + 88523469500,42.486057920601048,L, + 96221162500,39.505978083837071,L, + 98145585750,38.760954709551491,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270914791169496,L, + 103918855500,36.525898247073087,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035851498501927,L, + 111616548500,33.545811580119938,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055771661737943,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565735158450540,L, + 121238664750,29.820711784164960,L, + 123163088000,29.075695240068548,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585653614139265,L, + 128936357750,26.840638777590147,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350592029018987,L, + 136634050750,23.860552110636995,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370510484707712,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390427232849145,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900389022014448,L, + 153953860000,17.155375893012621,L, + 155878283250,16.410347396085164,L, + 157802706500,15.665327436894168,L, + 159727129750,14.920310892797758,L, + 161651553000,14.175291787380409,L, + 163575976250,13.430269266868475,L, + 165500399500,12.685245038809249,L, + 167424822750,11.940230202260132,L, + 169349246000,11.195206827974550,L, + 171273669250,10.450190283878140,L, + 173198092500,9.705166909592560,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215125283663276,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725086219054932,L, + 182820208750,5.980063698542998,L, + 184744632000,5.235048435107057,L, + 186669055250,6.407538344823624,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752520298690877,L, + 192442325000,9.925011915954737,L, + 194366748250,11.097501825671305,L, + 196291171500,12.269996004256104,L, + 198215594750,13.442485060199026,L, + 211686557500,21.649920404630524,L, + 213610980750,22.822412875668032,L, + 215535404000,23.994903639158245,L, + 219384250500,26.339881751044089,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684864985571810,L, + 225157520250,29.857355749062023,L, + 229006366750,32.202344106231621,L, + 230930790000,33.374831454627255,L, + 232855213250,34.547322218117465,L, + 234779636500,35.719809566513099,L, + 236704059750,36.892303745097898,L, + 242477329500,40.409776035568541,L, + 244401752750,41.582273629247922,L, + 246326176000,42.754760977643549,L, + 248250599250,43.927244910944594,L, + 250175022500,45.099739089529393,L, + 254023869000,47.444720616509827,L, + 255948292250,48.617214795094625,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134683670470679,L, + 263645985250,53.307174433960895,L, + 265570408500,54.479661782356523,L, + 267494831750,55.652152545846739,L, + 269419255000,56.824650139526121,L, + 271343678250,57.997137487921748,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817949473515462 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,-47.817949473515462,L, + 1924423250,-47.567626455529442,L, + 3848846500,-47.317313682827177,L, + 9622116250,-46.566354874152857,L, + 11546539500,-46.316038686356009,L, + 13470962750,-46.065715668369982,L, + 15395386000,-45.815402895667717,L, + 17319809250,-45.565079877681697,L, + 19244232500,-45.314767104979424,L, + 21168655750,-45.064447502087987,L, + 23093079000,-44.814124484101967,L, + 25017502250,-44.563804881210530,L, + 26941925500,-44.313492108508264,L, + 28866348750,-44.063175920711409,L, + 30790772000,-43.812856317819971,L, + 32715195250,-43.562533299833952,L, + 34639618500,-43.312217112037096,L, + 36564041750,-43.061894094051070,L, + 42337311500,-42.310945530660518,L, + 48110581250,-41.559986721986199,L, + 51959427750,-41.059354346392496,L, + 53883851000,-40.809027913311887,L, + 55808274250,-40.558715140609621,L, + 57732697500,-40.308398952812766,L, + 59657120750,-40.058075934826746,L, + 63505967250,-39.557436729043872,L, + 65430390500,-39.307123956341606,L, + 67354813750,-39.056800938355579,L, + 69279237000,-38.806481335464142,L, + 73128083500,-38.305848959870438,L, + 75052506750,-38.055529356979001,L, + 76976930000,-37.805213169182146,L, + 78901353250,-37.554890151196126,L, + 80825776500,-37.304573963399271,L, + 86599046250,-36.553615154724959,L, + 88523469500,-36.303298966928104,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802663176239818,L, + 94296739250,-35.552340158253791,L, + 96221162500,-35.302027385551526,L, + 101994432250,-34.551068576877213,L, + 103918855500,-34.300752389080358,L, + 107767702000,-33.800113183297483,L, + 109692125250,-33.549796995500635,L, + 111616548500,-33.299477392609198,L, + 113540971750,-33.049164619906925,L, + 115465395000,-32.798845017015488,L, + 117389818250,-32.548518583934879,L, + 121238664750,-32.047879378152004,L, + 123163088000,-31.797570020544324,L, + 132785204250,-30.545972006087137,L, + 134709627500,-30.295659233384868,L, + 136634050750,-30.045336215398844,L, + 140482897250,-29.544703839805141,L, + 142407320500,-29.294380821819118,L, + 144331743750,-29.044061218927681,L, + 146256167000,-28.793745031130829,L, + 148180590250,-28.543427135786683,L, + 152029436750,-28.042787930003808,L, + 155878283250,-27.542152139315515,L, + 157802706500,-27.291835951518664,L, + 159727129750,-27.041512933532641,L, + 161651553000,-26.791196745735789,L, + 167424822750,-26.040243059703354,L, + 169349246000,-25.789921749264622,L, + 171273669250,-25.539603853920479,L, + 173198092500,-25.289284251029041,L, + 175122515750,-25.038968063232186,L, + 177046939000,-24.788648460340749,L, + 178971362250,-24.538327149902020,L, + 180895785500,-24.288007547010583,L, + 182820208750,-24.037696481855608,L, + 184744632000,-23.787378586511462,L, + 186669055250,-24.181319992175137,L, + 188593478500,-24.575263105386103,L, + 190517901750,-24.969204511049778,L, + 192442325000,-25.363151039355330,L, + 194366748250,-25.757095860113591,L, + 196291171500,-26.151037265777262,L, + 198215594750,-26.544982086535523,L, + 200140018000,-26.938928614841075,L, + 205913287750,-28.120757954473977,L, + 207837711000,-28.514699360137651,L, + 209762134250,-28.908645888443203,L, + 211686557500,-29.302587294106875,L, + 215535404000,-30.090476935623396,L, + 219384250500,-30.878359746950743,L, + 221308673750,-31.272304567709003,L, + 223233097000,-31.666252803561846,L, + 227081943500,-32.454142445078368,L, + 229006366750,-32.848080435647454,L, + 230930790000,-33.242025256405718,L, + 232855213250,-33.635973492258557,L, + 234779636500,-34.029911482827650,L, + 236704059750,-34.423859718680497,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605690765860686,L, + 246326176000,-36.393573577188036,L, + 250175022500,-37.181470048893722,L, + 252099445750,-37.575411454557397,L, + 254023869000,-37.969349445126490,L, + 255948292250,-38.363297680979336,L, + 257872715500,-38.757235671548422,L, + 259797138750,-39.151180492306679,L, + 261721562000,-39.545132143254108,L, + 263645985250,-39.939073548917783,L, + 267494831750,-40.726963190434304,L, + 269419255000,-41.120901181003397,L, + 271343678250,-41.514849416856237,L, + 273268101500,-41.908790822519912,L, + 279041371250,-43.090625284794690,L, + 280965794500,-43.484566690458365,L, + 282890217750,-43.878514926311212,L, + 284814641000,-44.272452916880297,L, + 286739064250,-44.666401152733144,L, + 288663487500,-45.060345973491401,L, + 292512334000,-45.848228784818751,L, + 294436757250,-46.242173605577008,L, + 296361180500,-46.636121841429855,L, + 298285603750,-47.030056416904358,L, + 300210027000,-47.424004652757205,L, + 302134450250,-47.817949473515462,L, + 307907720000,-47.817949473515462,L, + 309832143250,-47.817952888610051,L, + 311756566500,-47.817949473515462,L, + 315605413000,-47.817949473515462,L, + 317529836250,-47.817952888610051,L, + 319454259500,-47.817949473515462,L, + 329076375750,-47.817949473515462,L, + 331000799000,-47.817952888610051,L, + 332925222250,-47.817949473515462,L, + 338698492000,-47.817949473515462,L, + 340622915250,-47.817952888610051,L, + 342547338500,-47.817949473515462,L, + 344471761750,-47.817949473515462,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887855167009455 + KeyVer: 4005 + KeyCount: 164 + Key: + 0,-21.887855167009455,L, + 1924423250,-21.456006211452266,L, + 3848846500,-21.024152133253196,L, + 5773269750,-20.592299762601421,L, + 7697693000,-20.160449099496937,L, + 9622116250,-19.728593313750576,L, + 11546539500,-19.296744358193386,L, + 13470962750,-18.864890279994317,L, + 15395386000,-18.433041324437127,L, + 17319809250,-18.001187246238057,L, + 19244232500,-17.569338290680868,L, + 21168655750,-17.137484212481798,L, + 23093079000,-16.705631841830023,L, + 25017502250,-16.273776056083662,L, + 26941925500,-15.841928808073765,L, + 28866348750,-15.410078144969281,L, + 30790772000,-14.978225774317506,L, + 32715195250,-14.546375111213022,L, + 36564041750,-13.682668662362179,L, + 38488465000,-13.250813730389465,L, + 40412888250,-12.818965628605920,L, + 44261734750,-11.955257472207784,L, + 46186158000,-11.523407662876947,L, + 48110581250,-11.091556999772463,L, + 50035004500,-10.659705482894335,L, + 51959427750,-10.227853112242558,L, + 53883851000,-9.795999887817137,L, + 57732697500,-8.932295146513585,L, + 59657120750,-8.500444483409101,L, + 61581544000,-8.068590405210033,L, + 63505967250,-7.636738888331904,L, + 65430390500,-7.204888225227421,L, + 67354813750,-6.773035427688822,L, + 69279237000,-6.341183910810693,L, + 71203660250,-5.909332820819386,L, + 73128083500,-5.477479596393964,L, + 75052506750,-5.045626798855365,L, + 76976930000,-4.613775281977236,L, + 78901353250,-4.181923338212283,L, + 80825776500,-3.750071821334154,L, + 82750199750,-3.318219237238967,L, + 84674623000,-2.886366226256956,L, + 86599046250,-2.454514282492004,L, + 88523469500,-2.022661698396816,L, + 90447892750,-1.590810181518687,L, + 92372316000,-1.158957704145205,L, + 94296739250,-0.727104746524048,L, + 96221162500,-0.295253496450183,L, + 98145585750,0.136598393953917,L, + 100070009000,0.568450230997164,L, + 101994432250,1.000304255835379,L, + 103918855500,1.432153424835981,L, + 105843278750,1.864003661053641,L, + 107767702000,2.295857525809298,L, + 109692125250,2.727709042687427,L, + 111616548500,3.159561413339203,L, + 113540971750,3.591414637764625,L, + 115465395000,4.023266581529578,L, + 117389818250,4.455117244634061,L, + 119314241500,4.886969188399013,L, + 121238664750,5.318822412824435,L, + 123163088000,5.750674356589388,L, + 125087511250,6.182525873467517,L, + 127011934500,6.614379097892940,L, + 128936357750,7.046231895431538,L, + 130860781000,7.478080424101906,L, + 132785204250,7.909931940980035,L, + 134709627500,8.341785165405458,L, + 136634050750,8.773636682283588,L, + 138558474000,9.205489052935363,L, + 140482897250,9.637342277360785,L, + 142407320500,10.069193794238913,L, + 144331743750,10.501047018664336,L, + 146256167000,10.932901096863404,L, + 148180590250,11.364750906194240,L, + 150105013500,11.796604130619663,L, + 152029436750,12.228455647497793,L, + 153953860000,12.660308871923215,L, + 155878283250,13.092161242574990,L, + 157802706500,13.524010198132181,L, + 159727129750,13.955860861236664,L, + 161651553000,14.387713231888441,L, + 163575976250,14.819569017634800,L, + 167424822750,15.683270343843766,L, + 169349246000,16.115124422042836,L, + 171273669250,16.546971670052734,L, + 173198092500,16.978829163346386,L, + 175122515750,17.410678118903576,L, + 177046939000,17.842532197102646,L, + 178971362250,18.274382860207130,L, + 180895785500,18.706236938406196,L, + 182820208750,19.138087601510680,L, + 184744632000,19.569941679709750,L, + 186669055250,18.890305413895899,L, + 188593478500,18.210667440534756,L, + 190517901750,17.531032882268200,L, + 192442325000,16.851394908907057,L, + 194366748250,16.171762058187792,L, + 198215594750,14.812486111465507,L, + 200140018000,14.132851553198950,L, + 202064441250,13.453215287385101,L, + 203988864500,12.773580729118542,L, + 205913287750,12.093941901983754,L, + 207837711000,11.414308197490843,L, + 209762134250,10.734672785450639,L, + 211686557500,10.055036519636790,L, + 213610980750,9.375399400049295,L, + 215535404000,8.695763134235445,L, + 217459827250,8.016128575968887,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656856471228011,L, + 227081943500,4.617946393125992,L, + 229006366750,3.938310554198965,L, + 230930790000,3.258677703479701,L, + 232855213250,2.579039943561970,L, + 234779636500,1.899404318078355,L, + 236704059750,1.219766451438918,L, + 238628483000,0.540130719233598,L, + 240552906250,-0.139505666642171,L, + 242477329500,-0.819141972476661,L, + 244401752750,-1.498775837052130,L, + 246326176000,-2.178411355814040,L, + 248250599250,-2.858048902288359,L, + 250175022500,-3.537684741215386,L, + 252099445750,-4.217321220472646,L, + 254023869000,-4.896955778739204,L, + 255948292250,-5.576593325213524,L, + 257872715500,-6.256226175932788,L, + 261721562000,-7.615501268881427,L, + 263645985250,-8.295133265827046,L, + 265570408500,-8.974773800509126,L, + 267494831750,-9.654409212549329,L, + 269419255000,-10.334046332136825,L, + 271343678250,-11.013680890403382,L, + 273268101500,-11.693318009990879,L, + 275192524750,-12.372954275804728,L, + 277116948000,-13.052587126523994,L, + 279041371250,-13.732225953658782,L, + 280965794500,-14.411857950604400,L, + 282890217750,-15.091499339060128,L, + 284814641000,-15.771133897326685,L, + 286739064250,-16.450770163140536,L, + 288663487500,-17.130404721407093,L, + 292512334000,-18.489677253034792,L, + 294436757250,-19.169310103754057,L, + 296361180500,-19.848953199757077,L, + 300210027000,-21.208222316290190,L, + 302134450250,-21.887850044367578,L, + 304058873500,-21.887858582104041,L, + 305983296750,-21.887855167009455,L, + 309832143250,-21.887855167009455,L, + 311756566500,-21.887858582104041,L, + 313680989750,-21.887855167009455,L, + 321378682750,-21.887855167009455,L, + 323303106000,-21.887853459462164,L, + 325227529250,-21.887856874556746,L, + 327151952500,-21.887851751914869,L, + 329076375750,-21.887855167009455,L, + 332925222250,-21.887855167009455,L, + 334849645500,-21.887850044367578,L, + 338698492000,-21.887856874556746,L, + 340622915250,-21.887858582104041,L, + 342547338500,-21.887855167009455,L, + 344471761750,-21.887855167009455,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,1.000000000000000,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648616790771,L, + 96221162500,1.052702426910400,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864810943604,L, + 103918855500,1.056918740272522,L, + 117389818250,1.064297080039978,L, + 119314241500,1.065351247787476,L, + 121238664750,1.066405296325684,L, + 125087511250,1.068513154983521,L, + 127011934500,1.069567322731018,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729587554932,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837803840637,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945781707764,L, + 150105013500,1.082216024398804,L, + 152029436750,1.083270192146301,L, + 153953860000,1.084324121475220,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486386299133,L, + 161651553000,1.088540315628052,L, + 182820208750,1.100134849548340,L, + 184744632000,1.101188778877258,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195497512817,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792110025882721,L, + 225157520250,0.776656031608582,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748043060303,L, + 230930790000,0.730294167995453,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386298656464,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123075723648,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399408102036,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767796635628,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498078584671,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794709444046,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132503271103,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341700017452240,L, + 323303106000,0.347291260957718,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833498001099,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605781078339,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002108216285706,L, + 5773269750,1.003162145614624,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378458976746,L, + 15395386000,1.008432388305664,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864895820618,L, + 32715195250,1.017918825149536,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042162179946899,L, + 78901353250,1.043216228485107,L, + 80825776500,1.044270157814026,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540281295776,L, + 92372316000,1.050594449043274,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756713867188,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061135053634644,L, + 113540971750,1.062189102172852,L, + 115465395000,1.063243031501770,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675300598145,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837684631348,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945900917053,L, + 142407320500,1.077999830245972,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081162095069885,L, + 152029436750,1.083269953727722,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378289222717,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756390571594,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134849548340,L, + 184744632000,1.101188778877258,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 196291171500,1.008465051651001,L, + 200140018000,0.977557301521301,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792110025882721,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748043060303,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386298656464,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300648212433,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123045921326,L, + 267494831750,0.436669111251831,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 11546539500,1.006324291229248,L, + 13470962750,1.007378458976746,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 21168655750,1.011594414710999,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702630996704,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 32715195250,1.017918825149536,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024243235588074,L, + 46186158000,1.025297284126282,L, + 48110581250,1.026351451873779,L, + 50035004500,1.027405381202698,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837888717651,L, + 67354813750,1.036891818046570,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270277023315,L, + 82750199750,1.045324206352234,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972788810730,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783636093140,L, + 136634050750,1.074837684631348,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945781707764,L, + 142407320500,1.077999949455261,L, + 144331743750,1.079053878784180,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081161856651306,L, + 150105013500,1.082216024398804,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918774604797,L, + 177046939000,1.096972703933716,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134968757629,L, + 184744632000,1.101188898086548,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011295795441,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833574295044,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294108390808,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116565704346,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483031004667282,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761152505875,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544899463654,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031470298767,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525846481323,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032974720001,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_046" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792237758636 + KeyVer: 4005 + KeyCount: 161 + Key: + 0,0.016792237758636,L, + 1924423250,0.016670346260071,L, + 3848846500,0.016548335552216,L, + 5773269750,0.016425490379333,L, + 7697693000,0.016303539276123,L, + 9622116250,0.016180634498596,L, + 11546539500,0.016059637069702,L, + 13470962750,0.015936791896820,L, + 15395386000,0.015814781188965,L, + 17319809250,0.015691876411438,L, + 21168655750,0.015447974205017,L, + 23093079000,0.015325069427490,L, + 25017502250,0.015203118324280,L, + 26941925500,0.015081226825714,L, + 28866348750,0.014959216117859,L, + 30790772000,0.014836370944977,L, + 32715195250,0.014713406562805,L, + 34639618500,0.014592468738556,L, + 36564041750,0.014469563961029,L, + 38488465000,0.014347612857819,L, + 40412888250,0.014224708080292,L, + 42337311500,0.014102816581726,L, + 44261734750,0.013980805873871,L, + 46186158000,0.013857960700989,L, + 48110581250,0.013735949993134,L, + 50035004500,0.013614058494568,L, + 51959427750,0.013492047786713,L, + 53883851000,0.013369202613831,L, + 55808274250,0.013247251510620,L, + 57732697500,0.013125240802765,L, + 59657120750,0.013002395629883,L, + 61581544000,0.012880384922028,L, + 63505967250,0.012757539749146,L, + 65430390500,0.012636542320251,L, + 67354813750,0.012513637542725,L, + 69279237000,0.012391686439514,L, + 71203660250,0.012269794940948,L, + 73128083500,0.012146830558777,L, + 75052506750,0.012024939060211,L, + 76976930000,0.011901974678040,L, + 78901353250,0.011780083179474,L, + 80825776500,0.011658072471619,L, + 82750199750,0.011535227298737,L, + 88523469500,0.011169373989105,L, + 90447892750,0.011046528816223,L, + 92372316000,0.010924518108368,L, + 94296739250,0.010802626609802,L, + 96221162500,0.010679662227631,L, + 98145585750,0.001452624797821,L, + 101994432250,-0.017003357410431,L, + 103918855500,-0.026231467723846,L, + 105843278750,-0.035458505153656,L, + 107767702000,-0.044686496257782,L, + 109692125250,-0.053913593292236,L, + 113540971750,-0.072369575500488,L, + 115465395000,-0.081596672534943,L, + 117389818250,-0.090824663639069,L, + 119314241500,-0.100052714347839,L, + 121238664750,-0.109280705451965,L, + 123163088000,-0.118507802486420,L, + 127011934500,-0.136963784694672,L, + 128936357750,-0.132229745388031,L, + 130860781000,-0.127494871616364,L, + 132785204250,-0.122761785984039,L, + 136634050750,-0.113293707370758,L, + 138558474000,-0.108558833599091,L, + 140482897250,-0.103825747966766,L, + 142407320500,-0.099090754985809,L, + 144331743750,-0.094357669353485,L, + 146256167000,-0.089622795581818,L, + 152029436750,-0.075420677661896,L, + 153953860000,-0.070687711238861,L, + 159727129750,-0.056485593318939,L, + 161651553000,-0.051751673221588,L, + 167424822750,-0.037549555301666,L, + 169349246000,-0.032815635204315,L, + 175122515750,-0.018613517284393,L, + 177046939000,-0.013879597187042,L, + 182820208750,0.000322520732880,L, + 184744632000,0.005056440830231,L, + 186669055250,0.004832506179810,L, + 188593478500,0.004608511924744,L, + 190517901750,0.004384577274323,L, + 192442325000,0.004160583019257,L, + 194366748250,0.003936648368835,L, + 196291171500,0.003713667392731,L, + 198215594750,0.003489673137665,L, + 200140018000,0.003265738487244,L, + 202064441250,0.003041744232178,L, + 203988864500,0.002817809581757,L, + 205913287750,0.002593815326691,L, + 207837711000,0.002369880676270,L, + 209762134250,0.002145886421204,L, + 211686557500,0.001921951770782,L, + 213610980750,0.001697957515717,L, + 215535404000,0.001474022865295,L, + 217459827250,0.001250028610229,L, + 219384250500,0.001027047634125,L, + 221308673750,0.000802993774414,L, + 223233097000,0.000579059123993,L, + 225157520250,0.000355064868927,L, + 227081943500,0.000131130218506,L, + 229006366750,-0.000092864036560,L, + 230930790000,-0.000316798686981,L, + 232855213250,-0.000540792942047,L, + 234779636500,-0.000764727592468,L, + 236704059750,-0.000987768173218,L, + 240552906250,-0.001435637474060,L, + 242477329500,-0.001659631729126,L, + 244401752750,-0.001883566379547,L, + 246326176000,-0.002107560634613,L, + 248250599250,-0.002331495285034,L, + 250175022500,-0.002555489540100,L, + 252099445750,-0.002779424190521,L, + 254023869000,-0.003002464771271,L, + 255948292250,-0.003226399421692,L, + 257872715500,-0.003450453281403,L, + 259797138750,-0.003674387931824,L, + 261721562000,-0.003898382186890,L, + 263645985250,-0.004122316837311,L, + 265570408500,-0.004346311092377,L, + 267494831750,-0.004570245742798,L, + 269419255000,-0.004794239997864,L, + 271343678250,-0.005018174648285,L, + 273268101500,-0.005242168903351,L, + 275192524750,-0.005466103553772,L, + 277116948000,-0.005689144134521,L, + 279041371250,-0.005913078784943,L, + 280965794500,-0.006137073040009,L, + 284814641000,-0.006584942340851,L, + 286739064250,-0.006808936595917,L, + 288663487500,-0.007031917572021,L, + 290587910750,-0.007255911827087,L, + 292512334000,-0.007479846477509,L, + 294436757250,-0.007703900337219,L, + 296361180500,-0.007927834987640,L, + 298285603750,-0.008151829242706,L, + 300210027000,-0.008375763893127,L, + 302134450250,-0.008599758148193,L, + 304058873500,-0.008605062961578,L, + 305983296750,-0.007686138153076,L, + 307907720000,-0.006198048591614,L, + 309832143250,-0.004555404186249,L, + 311756566500,-0.002857685089111,L, + 313680989750,-0.001149237155914,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215147018433,L, + 319454259500,0.003842115402222,L, + 321378682750,0.005417823791504,L, + 323303106000,0.006934106349945,L, + 325227529250,0.008382439613342,L, + 327151952500,0.009753286838531,L, + 329076375750,0.011040270328522,L, + 331000799000,0.012230455875397,L, + 332925222250,0.013315320014954,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015120983123779,L, + 338698492000,0.015811383724213,L, + 340622915250,0.016336143016815,L, + 342547338500,0.016673386096954,L, + 344471761750,0.016792237758636,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469446182251 + KeyVer: 4005 + KeyCount: 171 + Key: + 0,-0.000469446182251,L, + 1924423250,-0.003366351127625,L, + 3848846500,-0.006262660026550,L, + 5773269750,-0.009159445762634,L, + 7697693000,-0.012056112289429,L, + 9622116250,-0.014953017234802,L, + 11546539500,-0.017849326133728,L, + 13470962750,-0.020746231079102,L, + 15395386000,-0.023642539978027,L, + 17319809250,-0.026539206504822,L, + 19244232500,-0.029435753822327,L, + 21168655750,-0.032332420349121,L, + 23093079000,-0.035229325294495,L, + 25017502250,-0.038125634193420,L, + 26941925500,-0.041022419929504,L, + 28866348750,-0.043918848037720,L, + 30790772000,-0.046815752983093,L, + 32715195250,-0.049712419509888,L, + 34639618500,-0.052608847618103,L, + 36564041750,-0.055505514144897,L, + 38488465000,-0.058402419090271,L, + 40412888250,-0.061298847198486,L, + 42337311500,-0.064195632934570,L, + 44261734750,-0.067091941833496,L, + 46186158000,-0.069988846778870,L, + 48110581250,-0.072885513305664,L, + 50035004500,-0.075782060623169,L, + 51959427750,-0.078678727149963,L, + 53883851000,-0.081575512886047,L, + 55808274250,-0.084471940994263,L, + 57732697500,-0.087368249893188,L, + 59657120750,-0.090265154838562,L, + 61581544000,-0.093161821365356,L, + 63505967250,-0.096058607101440,L, + 65430390500,-0.098954916000366,L, + 67354813750,-0.101851820945740,L, + 69279237000,-0.104748249053955,L, + 71203660250,-0.107644915580750,L, + 73128083500,-0.110541343688965,L, + 75052506750,-0.113438248634338,L, + 76976930000,-0.116334915161133,L, + 78901353250,-0.119231700897217,L, + 80825776500,-0.122128009796143,L, + 82750199750,-0.125024914741516,L, + 84674623000,-0.127921342849731,L, + 86599046250,-0.130818128585815,L, + 88523469500,-0.133714556694031,L, + 90447892750,-0.136611342430115,L, + 92372316000,-0.139508008956909,L, + 94296739250,-0.142404794692993,L, + 96221162500,-0.145301222801208,L, + 98145585750,-0.144842982292175,L, + 100070009000,-0.144384622573853,L, + 101994432250,-0.143926382064819,L, + 103918855500,-0.143467664718628,L, + 107767702000,-0.142551183700562,L, + 111616548500,-0.141634464263916,L, + 117389818250,-0.140259742736816,L, + 119314241500,-0.139801263809204,L, + 121238664750,-0.139343023300171,L, + 123163088000,-0.138884663581848,L, + 127011934500,-0.137968182563782,L, + 128936357750,-0.137509822845459,L, + 130860781000,-0.137051224708557,L, + 132785204250,-0.136592984199524,L, + 134709627500,-0.136134862899780,L, + 136634050750,-0.135676622390747,L, + 138558474000,-0.135217905044556,L, + 140482897250,-0.134759664535522,L, + 142407320500,-0.134301543235779,L, + 144331743750,-0.133843302726746,L, + 146256167000,-0.133384585380554,L, + 148180590250,-0.132926344871521,L, + 150105013500,-0.132468223571777,L, + 152029436750,-0.132009863853455,L, + 153953860000,-0.131551384925842,L, + 157802706500,-0.130634665489197,L, + 159727129750,-0.130176663398743,L, + 161651553000,-0.129718065261841,L, + 163575976250,-0.129259705543518,L, + 165500399500,-0.128801465034485,L, + 167424822750,-0.128343343734741,L, + 169349246000,-0.127884745597839,L, + 171273669250,-0.127426385879517,L, + 173198092500,-0.126968145370483,L, + 175122515750,-0.126510024070740,L, + 177046939000,-0.126051425933838,L, + 178971362250,-0.125593185424805,L, + 180895785500,-0.125134825706482,L, + 182820208750,-0.124676704406738,L, + 184744632000,-0.124217987060547,L, + 186669055250,-0.123339772224426,L, + 188593478500,-0.122461438179016,L, + 190517901750,-0.121583342552185,L, + 192442325000,-0.120704770088196,L, + 194366748250,-0.119826555252075,L, + 196291171500,-0.118948459625244,L, + 198215594750,-0.118069887161255,L, + 200140018000,-0.117191672325134,L, + 202064441250,-0.116313099861145,L, + 203988864500,-0.115435004234314,L, + 205913287750,-0.114556312561035,L, + 207837711000,-0.113678216934204,L, + 209762134250,-0.112799882888794,L, + 211686557500,-0.111921787261963,L, + 213610980750,-0.111043095588684,L, + 215535404000,-0.110164999961853,L, + 217459827250,-0.109286427497864,L, + 219384250500,-0.108408093452454,L, + 221308673750,-0.107529520988464,L, + 223233097000,-0.106651425361633,L, + 225157520250,-0.105772972106934,L, + 229006366750,-0.104016304016113,L, + 230930790000,-0.103138089179993,L, + 232855213250,-0.102259516716003,L, + 234779636500,-0.101381421089172,L, + 236704059750,-0.100502729415894,L, + 240552906250,-0.098746538162231,L, + 242477329500,-0.097867965698242,L, + 244401752750,-0.096989750862122,L, + 246326176000,-0.096111416816711,L, + 248250599250,-0.095233321189880,L, + 250175022500,-0.094354629516602,L, + 252099445750,-0.093476533889771,L, + 254023869000,-0.092597842216492,L, + 255948292250,-0.091719627380371,L, + 257872715500,-0.090841054916382,L, + 259797138750,-0.089962959289551,L, + 261721562000,-0.089084506034851,L, + 265570408500,-0.087327837944031,L, + 267494831750,-0.086449623107910,L, + 269419255000,-0.085571050643921,L, + 271343678250,-0.084692955017090,L, + 273268101500,-0.083814382553101,L, + 275192524750,-0.082936167716980,L, + 277116948000,-0.082057595252991,L, + 279041371250,-0.081179499626160,L, + 280965794500,-0.080301046371460,L, + 282890217750,-0.079422950744629,L, + 284814641000,-0.078544616699219,L, + 286739064250,-0.077666163444519,L, + 288663487500,-0.076787948608398,L, + 290587910750,-0.075909376144409,L, + 292512334000,-0.075031161308289,L, + 294436757250,-0.074152588844299,L, + 296361180500,-0.073274493217468,L, + 298285603750,-0.072395801544189,L, + 300210027000,-0.071517705917358,L, + 302134450250,-0.070639371871948,L, + 304058873500,-0.070653080940247,L, + 305983296750,-0.068114995956421,L, + 307907720000,-0.064002037048340,L, + 309832143250,-0.059463500976562,L, + 311756566500,-0.054772973060608,L, + 313680989750,-0.050049781799316,L, + 315605413000,-0.045361995697021,L, + 317529836250,-0.040753006935120,L, + 319454259500,-0.036257266998291,L, + 321378682750,-0.031902313232422,L, + 323303106000,-0.027711868286133,L, + 325227529250,-0.023710489273071,L, + 327151952500,-0.019920706748962,L, + 329076375750,-0.016367673873901,L, + 331000799000,-0.013076901435852,L, + 332925222250,-0.010077953338623,L, + 334849645500,-0.007402539253235,L, + 336774068750,-0.005088925361633,L, + 338698492000,-0.003180861473083,L, + 340622915250,-0.001729965209961,L, + 342547338500,-0.000800132751465,L, + 344471761750,-0.000469446182251,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,0.062097311019897,L, + 1924423250,0.070350646972656,L, + 3848846500,0.078604221343994,L, + 5773269750,0.086858034133911,L, + 30790772000,0.194154500961304,L, + 32715195250,0.202408313751221,L, + 34639618500,0.210661649703979,L, + 36564041750,0.218915462493896,L, + 38488465000,0.227168798446655,L, + 40412888250,0.235422372817993,L, + 42337311500,0.243676185607910,L, + 44261734750,0.251929759979248,L, + 46186158000,0.260183095932007,L, + 48110581250,0.268436908721924,L, + 67354813750,0.350972652435303,L, + 69279237000,0.359226465225220,L, + 71203660250,0.367479801177979,L, + 78901353250,0.400494098663330,L, + 80825776500,0.408747911453247,L, + 82750199750,0.417001485824585,L, + 84674623000,0.425254821777344,L, + 88523469500,0.441761970520020,L, + 90447892750,0.450015783309937,L, + 94296739250,0.466522932052612,L, + 96221162500,0.474776744842529,L, + 98145585750,0.478309392929077,L, + 101994432250,0.485375165939331,L, + 103918855500,0.488908290863037,L, + 109692125250,0.499506950378418,L, + 111616548500,0.503040075302124,L, + 117389818250,0.513638734817505,L, + 119314241500,0.517171859741211,L, + 123163088000,0.524237632751465,L, + 125087511250,0.527770757675171,L, + 127011934500,0.531303644180298,L, + 128936357750,0.532429218292236,L, + 130860781000,0.533555269241333,L, + 132785204250,0.534680843353271,L, + 134709627500,0.535806894302368,L, + 138558474000,0.538058042526245,L, + 140482897250,0.539183855056763,L, + 142407320500,0.540309906005859,L, + 146256167000,0.542561054229736,L, + 148180590250,0.543686866760254,L, + 150105013500,0.544812440872192,L, + 152029436750,0.545938491821289,L, + 153953860000,0.547064065933228,L, + 155878283250,0.548190116882324,L, + 157802706500,0.549315690994263,L, + 159727129750,0.550441503524780,L, + 161651553000,0.551567077636719,L, + 163575976250,0.552693128585815,L, + 165500399500,0.553818702697754,L, + 167424822750,0.554944753646851,L, + 169349246000,0.556070327758789,L, + 171273669250,0.557196140289307,L, + 173198092500,0.558321714401245,L, + 175122515750,0.559447765350342,L, + 178971362250,0.561698913574219,L, + 180895785500,0.562824964523315,L, + 182820208750,0.563950538635254,L, + 184744632000,0.565076351165771,L, + 188593478500,0.584238052368164,L, + 190517901750,0.593819141387939,L, + 200140018000,0.641723394393921,L, + 202064441250,0.651304483413696,L, + 203988864500,0.660885334014893,L, + 205913287750,0.670466661453247,L, + 215535404000,0.718370914459229,L, + 217459827250,0.727952003479004,L, + 229006366750,0.785437107086182,L, + 230930790000,0.795018434524536,L, + 232855213250,0.804599046707153,L, + 234779636500,0.814180374145508,L, + 236704059750,0.823760747909546,L, + 238628483000,0.833342075347900,L, + 244401752750,0.862084627151489,L, + 246326176000,0.871665716171265,L, + 255948292250,0.919569969177246,L, + 259797138750,0.938732147216797,L, + 261721562000,0.948312759399414,L, + 263645985250,0.957894086837769,L, + 273268101500,1.005798339843750,L, + 275192524750,1.015379428863525,L, + 284814641000,1.063283681869507,L, + 286739064250,1.072864770889282,L, + 290587910750,1.092026472091675,L, + 292512334000,1.101607799530029,L, + 302134450250,1.149512052536011,L, + 304058873500,0.047215700149536,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588203430176,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584482192993,L, + 315605413000,0.052578210830688,L, + 317529836250,0.053555727005005,L, + 319454259500,0.054508924484253,L, + 321378682750,0.055432319641113,L, + 323303106000,0.056320667266846,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060627222061157,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 30790772000,64.836663526520084,L, + 34639618500,63.346630438327260,L, + 36564041750,62.601600233852508,L, + 38488465000,61.856590519945271,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366550601563283,L, + 46186158000,58.876503852992116,L, + 48110581250,58.131487308895707,L, + 50035004500,57.386463934610127,L, + 63505967250,52.171324220273164,L, + 65430390500,51.426307676176748,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936264342700177,L, + 71203660250,49.191240968414597,L, + 73128083500,48.446221009223599,L, + 75052506750,47.701204465127191,L, + 76976930000,46.956184505936193,L, + 78901353250,46.211161131650613,L, + 80825776500,45.466148002648787,L, + 82750199750,44.721117798174035,L, + 84674623000,43.976104669172209,L, + 86599046250,43.231084709981218,L, + 88523469500,42.486061335695638,L, + 92372316000,40.996021417313642,L, + 94296739250,40.250998043028062,L, + 96221162500,39.505984914026236,L, + 98145585750,38.760961539740656,L, + 100070009000,38.015941580549665,L, + 101994432250,37.270931866642421,L, + 103918855500,36.525898247073087,L, + 105843278750,35.780885118071261,L, + 107767702000,35.035854913596509,L, + 109692125250,34.290838369500101,L, + 111616548500,33.545818410309103,L, + 113540971750,32.800801866212694,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565741988639708,L, + 121238664750,29.820718614354128,L, + 123163088000,29.075698655163134,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585655321686559,L, + 128936357750,26.840631947400979,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350592029018987,L, + 134709627500,24.605573777375284,L, + 136634050750,23.860553818184290,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370513899802297,L, + 142407320500,21.625497355705889,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135457437323897,L, + 148180590250,19.390434063038317,L, + 150105013500,18.645412396300028,L, + 153953860000,17.155372477918039,L, + 155878283250,16.410354226274336,L, + 157802706500,15.665332559536047,L, + 159727129750,14.920314307892344,L, + 161651553000,14.175290933606764,L, + 163575976250,13.430273535736706,L, + 165500399500,12.685251868998419,L, + 169349246000,11.195210243069136,L, + 173198092500,9.705166909592560,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215130406305153,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725088353489047,L, + 182820208750,5.980068821184876,L, + 184744632000,5.235048008220234,L, + 186669055250,6.407537064163155,L, + 188593478500,7.580027827653370,L, + 194366748250,11.097502679444951,L, + 196291171500,12.269992589161520,L, + 198215594750,13.442485060199026,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787468294726747,L, + 203988864500,16.959959058216960,L, + 205913287750,18.132448114159882,L, + 207837711000,19.304942292744681,L, + 209762134250,20.477427933593020,L, + 211686557500,21.649918697083233,L, + 213610980750,22.822411168120741,L, + 215535404000,23.994895101421783,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512374222081597,L, + 223233097000,28.684864985571810,L, + 225157520250,29.857352333967441,L, + 227081943500,31.029849927646826,L, + 229006366750,32.202337276042456,L, + 230930790000,33.374828039532666,L, + 232855213250,34.547325633212054,L, + 236704059750,36.892300330003309,L, + 238628483000,38.064801338777279,L, + 240552906250,39.237285272078324,L, + 242477329500,40.409772620473952,L, + 244401752750,41.582270214153340,L, + 246326176000,42.754750732359796,L, + 248250599250,43.927248326039184,L, + 255948292250,48.617211380000036,L, + 257872715500,49.789698728395663,L, + 259797138750,50.962192906980462,L, + 265570408500,54.479665197451105,L, + 267494831750,55.652159376035911,L, + 269419255000,56.824646724431538,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466885496122558 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,39.466885496122558,L, + 1924423250,39.898737866774333,L, + 3848846500,40.330586822331526,L, + 5773269750,40.762446023172473,L, + 9622116250,41.626143934286851,L, + 11546539500,42.057996304938627,L, + 13470962750,42.489845260495819,L, + 15395386000,42.921701046242177,L, + 17319809250,43.353553416893952,L, + 19244232500,43.785409202640317,L, + 21168655750,44.217258158197502,L, + 23093079000,44.649110528849278,L, + 25017502250,45.080969729690224,L, + 26941925500,45.512818685247417,L, + 28866348750,45.944671055899192,L, + 30790772000,46.376516596361796,L, + 32715195250,46.808372382108161,L, + 34639618500,47.240217922570764,L, + 36564041750,47.672073708317129,L, + 38488465000,48.103926078968904,L, + 40412888250,48.535781864715261,L, + 44261734750,49.399479775829647,L, + 46186158000,49.831335561576005,L, + 48110581250,50.263177686944026,L, + 50035004500,50.695040302879555,L, + 51959427750,51.126885843342158,L, + 53883851000,51.558745044183105,L, + 55808274250,51.990600829929470,L, + 57732697500,52.422442955297491,L, + 59657120750,52.854295325949266,L, + 61581544000,53.286157941884795,L, + 63505967250,53.718003482347399,L, + 65430390500,54.149855852999174,L, + 67354813750,54.581704808556367,L, + 69279237000,55.013560594302731,L, + 71203660250,55.445406134765335,L, + 73128083500,55.877265335606282,L, + 75052506750,56.309117706258057,L, + 78901353250,57.172815617372436,L, + 80825776500,57.604667988024211,L, + 82750199750,58.036527188865158,L, + 84674623000,58.468372729327761,L, + 101994432250,62.355044065193745,L, + 103918855500,62.786889605656349,L, + 105843278750,63.218748806497295,L, + 107767702000,63.650601177149071,L, + 109692125250,64.082446717611674,L, + 111616548500,64.514305918452621,L, + 113540971750,64.946151458915224,L, + 117389818250,65.809856200218775,L, + 119314241500,66.241701740681393,L, + 121238664750,66.673560941522325,L, + 125087511250,67.537265682825890,L, + 130860781000,68.832822794781208,L, + 132785204250,69.264681995622155,L, + 134709627500,69.696527536084758,L, + 140482897250,70.992084648040091,L, + 142407320500,71.423930188502695,L, + 144331743750,71.855789389343641,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 159727129750,75.310601524368678,L, + 165500399500,76.606158636323997,L, + 173198092500,78.333568118931112,L, + 178971362250,79.629125230886430,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 188593478500,79.565413226308650,L, + 190517901750,78.885775252947511,L, + 194366748250,77.526499306225219,L, + 196291171500,76.846868163053244,L, + 200140018000,75.487592216330967,L, + 202064441250,74.807961073158992,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769060813453905,L, + 209762134250,72.089409179714423,L, + 211686557500,71.409778036542448,L, + 213610980750,70.730140063181310,L, + 215535404000,70.050508920009335,L, + 217459827250,69.370870946648196,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 227081943500,65.972687910031652,L, + 229006366750,65.293056766859678,L, + 230930790000,64.613411963309360,L, + 234779636500,63.254149676965419,L, + 242477329500,60.535597783520849,L, + 244401752750,59.855966640348882,L, + 248250599250,58.496690693626597,L, + 250175022500,57.817059550454623,L, + 252099445750,57.137424992188066,L, + 254023869000,56.457783603732338,L, + 255948292250,55.778145630371199,L, + 257872715500,55.098514487199225,L, + 259797138750,54.418876513838079,L, + 261721562000,53.739241955571522,L, + 263645985250,53.059610812399555,L, + 271343678250,50.341058918954985,L, + 277116948000,48.302155244155308,L, + 279041371250,47.622513855699587,L, + 280965794500,46.942886127622195,L, + 282890217750,46.263244739166467,L, + 284814641000,45.583610180899910,L, + 286739064250,44.903968792444182,L, + 288663487500,44.224337649272215,L, + 290587910750,43.544703091005658,L, + 292512334000,42.865065117644512,L, + 294436757250,42.185430559377956,L, + 296361180500,41.505789170922228,L, + 300210027000,40.146526884578286,L, + 302134450250,39.466885496122558,L, + 304058873500,39.466885496122558,L, + 305983296750,39.466888911217140,L, + 307907720000,39.466885496122558,L, + 311756566500,39.466885496122558,L, + 313680989750,39.466888911217140,L, + 315605413000,39.466882081027975,L, + 317529836250,39.466885496122558,L, + 319454259500,39.466885496122558,L, + 321378682750,39.466888911217140,L, + 323303106000,39.466885496122558,L, + 325227529250,39.466885496122558,L, + 327151952500,39.466888911217140,L, + 329076375750,39.466888911217140,L, + 331000799000,39.466885496122558,L, + 332925222250,39.466885496122558,L, + 334849645500,39.466888911217140,L, + 336774068750,39.466888911217140,L, + 340622915250,39.466882081027975,L, + 342547338500,39.466888911217140,L, + 344471761750,39.466885496122558,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,1.000000000000000,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513597488403,L, + 55808274250,1.030567526817322,L, + 76976930000,1.042162060737610,L, + 78901353250,1.043216228485107,L, + 80825776500,1.044270157814026,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 94296739250,1.051648497581482,L, + 96221162500,1.052702665328979,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061135053634644,L, + 113540971750,1.062188982963562,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053878784180,L, + 146256167000,1.080107688903809,L, + 148180590250,1.081161856651306,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648531913757,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756628990173,L, + 171273669250,1.093810558319092,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134968757629,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 192442325000,1.039373278617859,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011236190796,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776656031608582,L, + 229006366750,0.745748043060303,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116565704346,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123045921326,L, + 267494831750,0.436669141054153,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307277441025,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583609819412,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373823016881943,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833527803421,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605721473694,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 105 + Key: + 0,1.000000000000000,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189187049866,L, + 44261734750,1.024243116378784,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459548950195,L, + 53883851000,1.029513478279114,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270038604736,L, + 82750199750,1.045324206352234,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864572525024,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972788810730,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621490478516,L, + 130860781000,1.071675539016724,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783636093140,L, + 136634050750,1.074837684631348,L, + 138558474000,1.075891613960266,L, + 148180590250,1.081161856651306,L, + 150105013500,1.082216024398804,L, + 152029436750,1.083269953727722,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594244956970,L, + 165500399500,1.090648412704468,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864726066589,L, + 175122515750,1.095918655395508,L, + 180895785500,1.099080801010132,L, + 182820208750,1.100134730339050,L, + 184744632000,1.101189017295837,L, + 186669055250,1.085735082626343,L, + 188593478500,1.070281267166138,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741384029388,L, + 211686557500,0.884833753108978,L, + 213610980750,0.869379699230194,L, + 215535404000,0.853925824165344,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 246326176000,0.606662571430206,L, + 248250599250,0.591208577156067,L, + 257872715500,0.513938903808594,L, + 263645985250,0.467577010393143,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951998353004,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290769577026,L, + 307907720000,0.466422349214554,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418179035187,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032974720001,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766431331635,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756779193878,L, + 344471761750,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,1.000000000000000,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021081089973450,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405500411987,L, + 51959427750,1.028459429740906,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270277023315,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378374099731,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864810943604,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 117389818250,1.064297080039978,L, + 119314241500,1.065351247787476,L, + 121238664750,1.066405177116394,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675539016724,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783636093140,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945543289185,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053759574890,L, + 146256167000,1.080107927322388,L, + 148180590250,1.081161856651306,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648531913757,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741562843323,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 221308673750,0.807563960552216,L, + 227081943500,0.761201977729797,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478429317474,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669141054153,L, + 269419255000,0.421215236186981,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498048782349,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525667667389,L, + 329076375750,0.886940181255341,L, + 331000799000,0.911032974720001,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380462646484,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_045" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792774200439 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,0.016792774200439,L, + 1924423250,0.016670703887939,L, + 3848846500,0.016548156738281,L, + 9622116250,0.016181945800781,L, + 11546539500,0.016059398651123,L, + 13470962750,0.015937328338623,L, + 19244232500,0.015570402145386,L, + 21168655750,0.015448331832886,L, + 23093079000,0.015326023101807,L, + 25017502250,0.015203237533569,L, + 28866348750,0.014959096908569,L, + 30790772000,0.014836549758911,L, + 34639618500,0.014592409133911,L, + 36564041750,0.014469861984253,L, + 42337311500,0.014103651046753,L, + 44261734750,0.013981103897095,L, + 46186158000,0.013859033584595,L, + 51959427750,0.013492107391357,L, + 53883851000,0.013370037078857,L, + 55808274250,0.013247489929199,L, + 59657120750,0.013003349304199,L, + 61581544000,0.012880802154541,L, + 67354813750,0.012514591217041,L, + 69279237000,0.012392044067383,L, + 73128083500,0.012147903442383,L, + 75052506750,0.012024879455566,L, + 78901353250,0.011780738830566,L, + 80825776500,0.011657953262329,L, + 84674623000,0.011413335800171,L, + 86599046250,0.011291265487671,L, + 88523469500,0.011168718338013,L, + 92372316000,0.010924577713013,L, + 94296739250,0.010802030563354,L, + 96221162500,0.010679960250854,L, + 101994432250,-0.017002582550049,L, + 103918855500,-0.026230573654175,L, + 105843278750,-0.035458087921143,L, + 107767702000,-0.044686079025269,L, + 109692125250,-0.053913831710815,L, + 111616548500,-0.063141822814941,L, + 117389818250,-0.090824365615845,L, + 119314241500,-0.100052356719971,L, + 125087511250,-0.127734899520874,L, + 127011934500,-0.136963367462158,L, + 128936357750,-0.132229328155518,L, + 130860781000,-0.127495527267456,L, + 132785204250,-0.122761249542236,L, + 134709627500,-0.118027210235596,L, + 136634050750,-0.113292932510376,L, + 138558474000,-0.108559131622314,L, + 140482897250,-0.103825092315674,L, + 142407320500,-0.099090814590454,L, + 144331743750,-0.094357252120972,L, + 146256167000,-0.089623451232910,L, + 148180590250,-0.084889173507690,L, + 150105013500,-0.080155134201050,L, + 152029436750,-0.075421333312988,L, + 153953860000,-0.070687055587769,L, + 155878283250,-0.065953493118286,L, + 157802706500,-0.061219215393066,L, + 159727129750,-0.056485414505005,L, + 161651553000,-0.051751375198364,L, + 163575976250,-0.047017574310303,L, + 165500399500,-0.042283296585083,L, + 167424822750,-0.037549257278442,L, + 169349246000,-0.032814979553223,L, + 171273669250,-0.028081178665161,L, + 173198092500,-0.023347139358521,L, + 175122515750,-0.018612861633301,L, + 177046939000,-0.013879299163818,L, + 180895785500,-0.004411697387695,L, + 182820208750,0.000322580337524,L, + 184744632000,0.005056619644165,L, + 186669055250,0.004832983016968,L, + 188593478500,0.004609107971191,L, + 190517901750,0.004384994506836,L, + 192442325000,0.004161119461060,L, + 194366748250,0.003937482833862,L, + 196291171500,0.003713130950928,L, + 198215594750,0.003489971160889,L, + 200140018000,0.003265619277954,L, + 202064441250,0.003041505813599,L, + 203988864500,0.002817630767822,L, + 205913287750,0.002593517303467,L, + 207837711000,0.002370595932007,L, + 209762134250,0.002146482467651,L, + 211686557500,0.001922607421875,L, + 215535404000,0.001474380493164,L, + 217459827250,0.001250505447388,L, + 219384250500,0.001027345657349,L, + 221308673750,0.000803470611572,L, + 223233097000,0.000579357147217,L, + 225157520250,0.000355005264282,L, + 227081943500,0.000131368637085,L, + 229006366750,-0.000092506408691,L, + 230930790000,-0.000316143035889,L, + 232855213250,-0.000540018081665,L, + 234779636500,-0.000764131546021,L, + 236704059750,-0.000988006591797,L, + 240552906250,-0.001435279846191,L, + 242477329500,-0.001659631729126,L, + 244401752750,-0.001883268356323,L, + 246326176000,-0.002107143402100,L, + 248250599250,-0.002331256866455,L, + 250175022500,-0.002554655075073,L, + 252099445750,-0.002778768539429,L, + 254023869000,-0.003002643585205,L, + 257872715500,-0.003450870513916,L, + 259797138750,-0.003673791885376,L, + 261721562000,-0.003897905349731,L, + 263645985250,-0.004121780395508,L, + 265570408500,-0.004345893859863,L, + 267494831750,-0.004569768905640,L, + 269419255000,-0.004793405532837,L, + 271343678250,-0.005017757415771,L, + 273268101500,-0.005240917205811,L, + 275192524750,-0.005465269088745,L, + 277116948000,-0.005688905715942,L, + 279041371250,-0.005913257598877,L, + 280965794500,-0.006136894226074,L, + 282890217750,-0.006360769271851,L, + 284814641000,-0.006584882736206,L, + 286739064250,-0.006808280944824,L, + 288663487500,-0.007032394409180,L, + 290587910750,-0.007255792617798,L, + 294436757250,-0.007704019546509,L, + 296361180500,-0.007927894592285,L, + 298285603750,-0.008152008056641,L, + 300210027000,-0.008375406265259,L, + 302134450250,-0.008599042892456,L, + 304058873500,-0.008604526519775,L, + 305983296750,-0.007686138153076,L, + 307907720000,-0.006197452545166,L, + 309832143250,-0.004555463790894,L, + 311756566500,-0.002857923507690,L, + 313680989750,-0.001148939132690,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215862274170,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934404373169,L, + 325227529250,0.008382558822632,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039257049561,L, + 331000799000,0.012230396270752,L, + 332925222250,0.013316154479980,L, + 334849645500,0.014284372329712,L, + 336774068750,0.015121221542358,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016672611236572,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000470638275146 + KeyVer: 4005 + KeyCount: 131 + Key: + 0,-0.000470638275146,L, + 1924423250,-0.003366947174072,L, + 5773269750,-0.009160518646240,L, + 9622116250,-0.014953136444092,L, + 11546539500,-0.017850399017334,L, + 13470962750,-0.020747184753418,L, + 15395386000,-0.023643493652344,L, + 17319809250,-0.026540279388428,L, + 19244232500,-0.029436588287354,L, + 25017502250,-0.038126945495605,L, + 28866348750,-0.043919563293457,L, + 30790772000,-0.046816825866699,L, + 34639618500,-0.052609443664551,L, + 36564041750,-0.055506229400635,L, + 38488465000,-0.058403491973877,L, + 42337311500,-0.064196109771729,L, + 46186158000,-0.069989681243896,L, + 48110581250,-0.072885990142822,L, + 50035004500,-0.075783252716064,L, + 51959427750,-0.078679561614990,L, + 55808274250,-0.084473133087158,L, + 59657120750,-0.090265750885010,L, + 61581544000,-0.093163013458252,L, + 63505967250,-0.096059799194336,L, + 67354813750,-0.101852416992188,L, + 69279237000,-0.104749679565430,L, + 73128083500,-0.110542297363281,L, + 75052506750,-0.113439559936523,L, + 76976930000,-0.116335868835449,L, + 78901353250,-0.119232654571533,L, + 80825776500,-0.122128486633301,L, + 88523469500,-0.133715629577637,L, + 92372316000,-0.139508247375488,L, + 94296739250,-0.142405509948730,L, + 96221162500,-0.145301818847656,L, + 100070009000,-0.144385337829590,L, + 101994432250,-0.143927574157715,L, + 105843278750,-0.143010139465332,L, + 113540971750,-0.141177177429199,L, + 115465395000,-0.140718460083008,L, + 123163088000,-0.138885498046875,L, + 125087511250,-0.138426780700684,L, + 127011934500,-0.137968540191650,L, + 128936357750,-0.137510776519775,L, + 130860781000,-0.137052059173584,L, + 132785204250,-0.136594295501709,L, + 134709627500,-0.136135578155518,L, + 136634050750,-0.135677337646484,L, + 138558474000,-0.135218620300293,L, + 140482897250,-0.134761333465576,L, + 142407320500,-0.134302139282227,L, + 146256167000,-0.133385658264160,L, + 148180590250,-0.132927894592285,L, + 150105013500,-0.132468700408936,L, + 157802706500,-0.130635738372803,L, + 159727129750,-0.130177021026611,L, + 161651553000,-0.129719257354736,L, + 163575976250,-0.129260540008545,L, + 165500399500,-0.128802776336670,L, + 167424822750,-0.128343582153320,L, + 169349246000,-0.127885818481445,L, + 173198092500,-0.126969337463379,L, + 175122515750,-0.126510143280029,L, + 177046939000,-0.126052379608154,L, + 178971362250,-0.125594139099121,L, + 180895785500,-0.125135421752930,L, + 182820208750,-0.124678134918213,L, + 184744632000,-0.124218940734863,L, + 186669055250,-0.123341083526611,L, + 188593478500,-0.122462272644043,L, + 202064441250,-0.116313934326172,L, + 203988864500,-0.115435123443604,L, + 205913287750,-0.114557743072510,L, + 207837711000,-0.113678932189941,L, + 209762134250,-0.112801074981689,L, + 211686557500,-0.111922264099121,L, + 215535404000,-0.110165596008301,L, + 217459827250,-0.109286785125732,L, + 219384250500,-0.108409404754639,L, + 221308673750,-0.107530593872070,L, + 225157520250,-0.105773925781250,L, + 227081943500,-0.104895114898682,L, + 229006366750,-0.104017257690430,L, + 234779636500,-0.101382255554199,L, + 236704059750,-0.100503444671631,L, + 238628483000,-0.099625587463379,L, + 240552906250,-0.098746776580811,L, + 242477329500,-0.097868919372559,L, + 252099445750,-0.093477249145508,L, + 254023869000,-0.092598438262939,L, + 255948292250,-0.091720581054688,L, + 261721562000,-0.089085578918457,L, + 263645985250,-0.088206768035889,L, + 265570408500,-0.087328433990479,L, + 267494831750,-0.086449623107910,L, + 269419255000,-0.085572242736816,L, + 271343678250,-0.084693908691406,L, + 273268101500,-0.083815097808838,L, + 279041371250,-0.081180095672607,L, + 280965794500,-0.080302715301514,L, + 282890217750,-0.079423904418945,L, + 284814641000,-0.078545570373535,L, + 286739064250,-0.077666759490967,L, + 292512334000,-0.075031757354736,L, + 294436757250,-0.074153900146484,L, + 296361180500,-0.073275089263916,L, + 298285603750,-0.072396755218506,L, + 300210027000,-0.071517944335938,L, + 302134450250,-0.070640087127686,L, + 304058873500,-0.070654392242432,L, + 305983296750,-0.068115711212158,L, + 307907720000,-0.064002990722656,L, + 309832143250,-0.059464454650879,L, + 311756566500,-0.054773330688477,L, + 313680989750,-0.050050735473633,L, + 315605413000,-0.045362472534180,L, + 317529836250,-0.040754318237305,L, + 319454259500,-0.036257743835449,L, + 321378682750,-0.031902790069580,L, + 323303106000,-0.027713298797607,L, + 325227529250,-0.023711204528809,L, + 327151952500,-0.019922256469727,L, + 329076375750,-0.016368389129639,L, + 331000799000,-0.013077259063721,L, + 332925222250,-0.010078907012939,L, + 334849645500,-0.007403373718262,L, + 336774068750,-0.005089759826660,L, + 338698492000,-0.003181457519531,L, + 340622915250,-0.001730918884277,L, + 342547338500,-0.000801086425781,L, + 344471761750,-0.000470638275146,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097072601318 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.062097072601318,L, + 1924423250,0.070350885391235,L, + 3848846500,0.078604221343994,L, + 5773269750,0.086858034133911,L, + 11546539500,0.111618757247925,L, + 13470962750,0.119872570037842,L, + 17319809250,0.136379241943359,L, + 19244232500,0.144633054733276,L, + 21168655750,0.152886390686035,L, + 23093079000,0.161140203475952,L, + 26941925500,0.177647352218628,L, + 28866348750,0.185900688171387,L, + 30790772000,0.194154739379883,L, + 40412888250,0.235422611236572,L, + 42337311500,0.243675708770752,L, + 44261734750,0.251929759979248,L, + 80825776500,0.408747673034668,L, + 82750199750,0.417001724243164,L, + 84674623000,0.425254821777344,L, + 94296739250,0.466522693634033,L, + 96221162500,0.474776744842529,L, + 98145585750,0.478309154510498,L, + 100070009000,0.481842041015625,L, + 101994432250,0.485375404357910,L, + 105843278750,0.492441177368164,L, + 107767702000,0.495974540710449,L, + 109692125250,0.499506950378418,L, + 113540971750,0.506572723388672,L, + 115465395000,0.510106086730957,L, + 127011934500,0.531303405761719,L, + 144331743750,0.541435718536377,L, + 146256167000,0.542561054229736,L, + 153953860000,0.547064304351807,L, + 155878283250,0.548189640045166,L, + 178971362250,0.561699390411377,L, + 180895785500,0.562824726104736,L, + 184744632000,0.565076351165771,L, + 186669055250,0.574657440185547,L, + 188593478500,0.584238052368164,L, + 190517901750,0.593819141387939,L, + 192442325000,0.603399753570557,L, + 196291171500,0.622561931610107,L, + 198215594750,0.632142543792725,L, + 200140018000,0.641723632812500,L, + 202064441250,0.651304244995117,L, + 205913287750,0.670466423034668,L, + 207837711000,0.680047035217285,L, + 211686557500,0.699209213256836,L, + 213610980750,0.708789825439453,L, + 217459827250,0.727952003479004,L, + 219384250500,0.737532615661621,L, + 223233097000,0.756694793701172,L, + 225157520250,0.766275405883789,L, + 229006366750,0.785437583923340,L, + 230930790000,0.795018196105957,L, + 234779636500,0.814180374145508,L, + 236704059750,0.823760986328125,L, + 240552906250,0.842923164367676,L, + 242477329500,0.852503776550293,L, + 244401752750,0.862084865570068,L, + 246326176000,0.871665477752686,L, + 248250599250,0.881246566772461,L, + 250175022500,0.890827178955078,L, + 254023869000,0.909989356994629,L, + 255948292250,0.919569969177246,L, + 257872715500,0.929151058197021,L, + 259797138750,0.938731670379639,L, + 263645985250,0.957893848419189,L, + 265570408500,0.967474460601807,L, + 269419255000,0.986636638641357,L, + 271343678250,0.996217250823975,L, + 275192524750,1.015379428863525,L, + 277116948000,1.024960041046143,L, + 280965794500,1.044122219085693,L, + 282890217750,1.053702831268311,L, + 286739064250,1.072865009307861,L, + 288663487500,1.082445621490479,L, + 292512334000,1.101607799530029,L, + 294436757250,1.111188411712646,L, + 298285603750,1.130350589752197,L, + 300210027000,1.139931201934814,L, + 302134450250,1.149512290954590,L, + 304058873500,0.047215461730957,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588441848755,L, + 311756566500,0.050582647323608,L, + 313680989750,0.051584243774414,L, + 315605413000,0.052578449249268,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432558059692,L, + 323303106000,0.056320905685425,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061829805374146,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097072601318,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836656696330905,L, + 32715195250,64.091646982423669,L, + 36564041750,62.601600233852508,L, + 42337311500,60.366550601563283,L, + 46186158000,58.876503852992116,L, + 48110581250,58.131487308895707,L, + 50035004500,57.386463934610127,L, + 51959427750,56.641447390513719,L, + 53883851000,55.896424016228138,L, + 55808274250,55.151407472131730,L, + 57732697500,54.406384097846150,L, + 59657120750,53.661364138655152,L, + 61581544000,52.916347594558744,L, + 63505967250,52.171324220273164,L, + 65430390500,51.426307676176748,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936264342700177,L, + 71203660250,49.191240968414597,L, + 73128083500,48.446221009223599,L, + 75052506750,47.701204465127191,L, + 76976930000,46.956184505936193,L, + 80825776500,45.466137757365033,L, + 82750199750,44.721121213268624,L, + 90447892750,41.741041376504640,L, + 92372316000,40.996024832408231,L, + 94296739250,40.250994627933480,L, + 96221162500,39.505984914026236,L, + 98145585750,38.760961539740656,L, + 100070009000,38.015941580549665,L, + 101994432250,37.270925036453249,L, + 103918855500,36.525901662167669,L, + 105843278750,35.780885118071261,L, + 107767702000,35.035854913596509,L, + 111616548500,33.545821825403692,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055778491927114,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565735158450540,L, + 121238664750,29.820718614354128,L, + 123163088000,29.075698655163134,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585653614139265,L, + 128936357750,26.840637070042856,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350595444113573,L, + 134709627500,24.605577192469870,L, + 136634050750,23.860555525731581,L, + 138558474000,23.115538981635172,L, + 140482897250,22.370515607349589,L, + 142407320500,21.625499063253180,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135455729776606,L, + 148180590250,19.390432355491022,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900392437109033,L, + 153953860000,17.155372477918039,L, + 155878283250,16.410354226274336,L, + 161651553000,14.175289226059471,L, + 163575976250,13.430271828189415,L, + 165500399500,12.685251015224773,L, + 167424822750,11.940231056033777,L, + 171273669250,10.450189430104494,L, + 173198092500,9.705167763366205,L, + 178971362250,7.470110447114159,L, + 180895785500,6.725087926602225,L, + 184744632000,5.235048861993880,L, + 186669055250,6.407538344823624,L, + 188593478500,7.580028681427016,L, + 190517901750,8.752522006238168,L, + 192442325000,9.925011062181090,L, + 194366748250,11.097502679444951,L, + 196291171500,12.269992589161520,L, + 198215594750,13.442485060199026,L, + 202064441250,15.787466587179454,L, + 203988864500,16.959959058216960,L, + 205913287750,18.132448114159882,L, + 209762134250,20.477429641140311,L, + 211686557500,21.649916989535939,L, + 213610980750,22.822411168120741,L, + 215535404000,23.994900224063660,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684871815760982,L, + 225157520250,29.857355749062023,L, + 227081943500,31.029849927646826,L, + 229006366750,32.202337276042456,L, + 230930790000,33.374831454627255,L, + 232855213250,34.547322218117465,L, + 234779636500,35.719809566513099,L, + 236704059750,36.892307160192480,L, + 240552906250,39.237288687172907,L, + 242477329500,40.409772620473952,L, + 244401752750,41.582266799058750,L, + 246326176000,42.754754147454378,L, + 248250599250,43.927248326039184,L, + 254023869000,47.444720616509827,L, + 255948292250,48.617214795094625,L, + 257872715500,49.789698728395663,L, + 259797138750,50.962189491885880,L, + 261721562000,52.134683670470679,L, + 263645985250,53.307171018866306,L, + 265570408500,54.479665197451105,L, + 267494831750,55.652155960941322,L, + 269419255000,56.824643309336949,L, + 271343678250,57.997137487921748,L, + 273268101500,59.169621421222793,L, + 275192524750,60.342119014902181,L, + 288663487500,68.549554359333683,L, + 290587910750,69.722051953013064,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466885496122558 + KeyVer: 4005 + KeyCount: 119 + Key: + 0,39.466885496122558,L, + 1924423250,39.898737866774333,L, + 3848846500,40.330586822331526,L, + 5773269750,40.762442608077883,L, + 7697693000,41.194291563635076,L, + 9622116250,41.626147349381434,L, + 11546539500,42.057999720033209,L, + 13470962750,42.489845260495819,L, + 19244232500,43.785412617734899,L, + 21168655750,44.217254743102920,L, + 23093079000,44.649107113754695,L, + 25017502250,45.080966314595642,L, + 28866348750,45.944671055899192,L, + 30790772000,46.376516596361796,L, + 38488465000,48.103926078968904,L, + 40412888250,48.535775034526090,L, + 44261734750,49.399486606018812,L, + 48110581250,50.263184517133197,L, + 50035004500,50.695040302879555,L, + 51959427750,51.126889258436748,L, + 53883851000,51.558741629088523,L, + 55808274250,51.990597414834880,L, + 57732697500,52.422446370392073,L, + 61581544000,53.286151111695624,L, + 63505967250,53.718006897441988,L, + 65430390500,54.149852437904592,L, + 67354813750,54.581711638745539,L, + 69279237000,55.013564009397314,L, + 71203660250,55.445412964954507,L, + 73128083500,55.877268750700864,L, + 75052506750,56.309114291163468,L, + 76976930000,56.740970076909832,L, + 78901353250,57.172815617372436,L, + 111616548500,64.514305918452621,L, + 113540971750,64.946151458915224,L, + 115465395000,65.378003829567007,L, + 117389818250,65.809863030407953,L, + 119314241500,66.241708570870557,L, + 121238664750,66.673567771711504,L, + 123163088000,67.105413312174107,L, + 125087511250,67.537265682825890,L, + 127011934500,67.969118053477658,L, + 140482897250,70.992084648040091,L, + 142407320500,71.423943848881038,L, + 144331743750,71.855789389343641,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 159727129750,75.310601524368678,L, + 165500399500,76.606158636323997,L, + 173198092500,78.333568118931112,L, + 178971362250,79.629125230886430,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 188593478500,79.565420056497814,L, + 190517901750,78.885775252947511,L, + 192442325000,78.206137279586358,L, + 194366748250,77.526506136414383,L, + 200140018000,75.487592216330967,L, + 202064441250,74.807961073158992,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769060813453905,L, + 209762134250,72.089416009903587,L, + 215535404000,70.050502089820171,L, + 217459827250,69.370877776837361,L, + 219384250500,68.691232973287043,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 225157520250,66.652325883392791,L, + 227081943500,65.972694740220817,L, + 230930790000,64.613418793498539,L, + 234779636500,63.254156507154590,L, + 236704059750,62.574511703604280,L, + 242477329500,60.535597783520849,L, + 244401752750,59.855966640348882,L, + 248250599250,58.496690693626597,L, + 250175022500,57.817059550454623,L, + 252099445750,57.137424992188066,L, + 254023869000,56.457787018826927,L, + 255948292250,55.778145630371199,L, + 257872715500,55.098514487199225,L, + 259797138750,54.418879928932668,L, + 261721562000,53.739241955571522,L, + 263645985250,53.059610812399555,L, + 265570408500,52.379969423943827,L, + 267494831750,51.700341695866442,L, + 269419255000,51.020703722505296,L, + 271343678250,50.341055503860396,L, + 273268101500,49.661424360688429,L, + 277116948000,48.302155244155308,L, + 279041371250,47.622513855699587,L, + 280965794500,46.942886127622195,L, + 282890217750,46.263244739166467,L, + 284814641000,45.583610180899910,L, + 286739064250,44.903972207538771,L, + 288663487500,44.224341064366797,L, + 290587910750,43.544703091005658,L, + 294436757250,42.185433974472538,L, + 296361180500,41.505792586016817,L, + 298285603750,40.826158027750260,L, + 300210027000,40.146526884578286,L, + 302134450250,39.466885496122558,L, + 304058873500,39.466885496122558,L, + 305983296750,39.466892326311729,L, + 307907720000,39.466888911217140,L, + 309832143250,39.466882081027975,L, + 313680989750,39.466888911217140,L, + 315605413000,39.466888911217140,L, + 317529836250,39.466892326311729,L, + 319454259500,39.466885496122558,L, + 323303106000,39.466885496122558,L, + 325227529250,39.466888911217140,L, + 327151952500,39.466888911217140,L, + 329076375750,39.466892326311729,L, + 332925222250,39.466892326311729,L, + 336774068750,39.466885496122558,L, + 338698492000,39.466885496122558,L, + 340622915250,39.466888911217140,L, + 342547338500,39.466882081027975,L, + 344471761750,39.466885496122558,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002107977867126,L, + 5773269750,1.003162145614624,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 32715195250,1.017918825149536,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 94296739250,1.051648497581482,L, + 96221162500,1.052702665328979,L, + 98145585750,1.053756475448608,L, + 101994432250,1.055864572525024,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783516883850,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083269834518433,L, + 153953860000,1.084323883056641,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540196418762,L, + 163575976250,1.089594364166260,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756628990173,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918536186218,L, + 177046939000,1.096972823143005,L, + 178971362250,1.098026752471924,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373278617859,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465051651001,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 227081943500,0.761201977729797,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405992627144,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.368794709444046,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132503271103,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373823016881943,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833468198776,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605721473694,L, + 344471761750,0.999999940395355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,1.000000000000000,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486317634583,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 30790772000,1.016864776611328,L, + 32715195250,1.017918705940247,L, + 34639618500,1.018972873687744,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729553222656,L, + 63505967250,1.034783601760864,L, + 65430390500,1.035837769508362,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378254890442,L, + 94296739250,1.051648497581482,L, + 96221162500,1.052702426910400,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810643196106,L, + 101994432250,1.055864572525024,L, + 103918855500,1.056918740272522,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060080766677856,L, + 111616548500,1.061134815216064,L, + 113540971750,1.062188982963562,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891494750977,L, + 142407320500,1.077999591827393,L, + 144331743750,1.079053759574890,L, + 146256167000,1.080107688903809,L, + 148180590250,1.081161856651306,L, + 157802706500,1.086432099342346,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103307247162,L, + 203988864500,0.946649432182312,L, + 207837711000,0.915741562843323,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563841342926,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840173721313,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024315834045,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 246326176000,0.606662511825562,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300648212433,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491419553757,L, + 282890217750,0.313037544488907,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129675149918,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313832163811,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.406290769577026,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158388137817,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756779193878,L, + 344471761750,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 124 + Key: + 0,0.999999940395355,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432269096375,L, + 17319809250,1.009486436843872,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756560325623,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864657402039,L, + 32715195250,1.017918825149536,L, + 34639618500,1.018972754478455,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297164916992,L, + 50035004500,1.027405261993408,L, + 51959427750,1.028459429740906,L, + 53883851000,1.029513478279114,L, + 55808274250,1.030567646026611,L, + 57732697500,1.031621575355530,L, + 80825776500,1.044270157814026,L, + 82750199750,1.045324087142944,L, + 84674623000,1.046378254890442,L, + 92372316000,1.050594449043274,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756475448608,L, + 100070009000,1.054810643196106,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 125087511250,1.068513274192810,L, + 127011934500,1.069567203521729,L, + 128936357750,1.070621371269226,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945543289185,L, + 142407320500,1.077999711036682,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540196418762,L, + 163575976250,1.089594364166260,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918536186218,L, + 177046939000,1.096972703933716,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557301521301,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741562843323,L, + 209762134250,0.900287628173828,L, + 211686557500,0.884833574295044,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792109966278076,L, + 227081943500,0.761201977729797,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938844203949,L, + 259797138750,0.498484879732132,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307277441025,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498048782349,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422259807587,L, + 309832143250,0.519544780254364,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380522251129,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999940395355,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_044" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792774200439 + KeyVer: 4005 + KeyCount: 170 + Key: + 0,0.016792774200439,L, + 1924423250,0.015352249145508,L, + 3848846500,0.013910531997681,L, + 5773269750,0.012470483779907,L, + 7697693000,0.011029243469238,L, + 9622116250,0.009588718414307,L, + 11546539500,0.008147716522217,L, + 13470962750,0.006706476211548,L, + 15395386000,0.005266427993774,L, + 17319809250,0.003824710845947,L, + 21168655750,0.000943660736084,L, + 23093079000,-0.000498056411743,L, + 25017502250,-0.001938104629517,L, + 26941925500,-0.003379344940186,L, + 28866348750,-0.004819869995117,L, + 30790772000,-0.006260871887207,L, + 32715195250,-0.007702112197876,L, + 34639618500,-0.009142398834229,L, + 36564041750,-0.010583877563477,L, + 38488465000,-0.012024402618408,L, + 40412888250,-0.013465166091919,L, + 42337311500,-0.014906644821167,L, + 44261734750,-0.016346931457520,L, + 46186158000,-0.017787933349609,L, + 48110581250,-0.019228458404541,L, + 50035004500,-0.020669698715210,L, + 51959427750,-0.022110700607300,L, + 53883851000,-0.023550987243652,L, + 55808274250,-0.024992465972900,L, + 57732697500,-0.026432991027832,L, + 59657120750,-0.027873754501343,L, + 61581544000,-0.029315233230591,L, + 63505967250,-0.030755519866943,L, + 65430390500,-0.032196521759033,L, + 67354813750,-0.033637046813965,L, + 69279237000,-0.035078287124634,L, + 71203660250,-0.036519289016724,L, + 73128083500,-0.037959575653076,L, + 75052506750,-0.039401054382324,L, + 76976930000,-0.040841579437256,L, + 78901353250,-0.042282342910767,L, + 80825776500,-0.043723821640015,L, + 82750199750,-0.045164108276367,L, + 84674623000,-0.046605110168457,L, + 86599046250,-0.048045873641968,L, + 90447892750,-0.050927877426147,L, + 92372316000,-0.052368164062500,L, + 94296739250,-0.053809642791748,L, + 96221162500,-0.055250406265259,L, + 98145585750,-0.056690931320190,L, + 100070009000,-0.058132410049438,L, + 101994432250,-0.059572696685791,L, + 103918855500,-0.061013221740723,L, + 105843278750,-0.062454462051392,L, + 109692125250,-0.065336465835571,L, + 111616548500,-0.066776752471924,L, + 113540971750,-0.068218231201172,L, + 115465395000,-0.069658994674683,L, + 117389818250,-0.071099519729614,L, + 119314241500,-0.072540521621704,L, + 121238664750,-0.073981285095215,L, + 123163088000,-0.075421810150146,L, + 125087511250,-0.076863050460815,L, + 128936357750,-0.079745054244995,L, + 130860781000,-0.081185340881348,L, + 132785204250,-0.082626819610596,L, + 134709627500,-0.084067583084106,L, + 136634050750,-0.085508108139038,L, + 138558474000,-0.086949586868286,L, + 140482897250,-0.088389873504639,L, + 142407320500,-0.089830636978149,L, + 146256167000,-0.092712640762329,L, + 148180590250,-0.094153881072998,L, + 150105013500,-0.095593929290771,L, + 152029436750,-0.097035169601440,L, + 153953860000,-0.098476171493530,L, + 155878283250,-0.099916696548462,L, + 157802706500,-0.101358413696289,L, + 159727129750,-0.102798461914062,L, + 161651553000,-0.104239225387573,L, + 165500399500,-0.107121229171753,L, + 167424822750,-0.108562469482422,L, + 169349246000,-0.110002517700195,L, + 171273669250,-0.111443758010864,L, + 173198092500,-0.112884759902954,L, + 175122515750,-0.114325284957886,L, + 177046939000,-0.115767002105713,L, + 178971362250,-0.117207050323486,L, + 180895785500,-0.118647813796997,L, + 184744632000,-0.121529817581177,L, + 186669055250,-0.119678258895874,L, + 188593478500,-0.117826938629150,L, + 190517901750,-0.115976095199585,L, + 192442325000,-0.114124536514282,L, + 194366748250,-0.112273216247559,L, + 196291171500,-0.110422372817993,L, + 198215594750,-0.108570098876953,L, + 200140018000,-0.106719255447388,L, + 202064441250,-0.104868173599243,L, + 203988864500,-0.103016376495361,L, + 205913287750,-0.101165533065796,L, + 207837711000,-0.099313497543335,L, + 211686557500,-0.095611810684204,L, + 213610980750,-0.093759536743164,L, + 215535404000,-0.091908693313599,L, + 217459827250,-0.090057611465454,L, + 219384250500,-0.088205814361572,L, + 221308673750,-0.086354970932007,L, + 223233097000,-0.084503173828125,L, + 225157520250,-0.082652091979980,L, + 227081943500,-0.080801248550415,L, + 229006366750,-0.078949451446533,L, + 230930790000,-0.077098131179810,L, + 232855213250,-0.075246572494507,L, + 234779636500,-0.073395729064941,L, + 236704059750,-0.071544408798218,L, + 238628483000,-0.069692611694336,L, + 240552906250,-0.067841768264771,L, + 242477329500,-0.065990209579468,L, + 244401752750,-0.064138889312744,L, + 246326176000,-0.062288045883179,L, + 248250599250,-0.060436010360718,L, + 250175022500,-0.058585166931152,L, + 252099445750,-0.056733369827271,L, + 254023869000,-0.054882049560547,L, + 255948292250,-0.053031206130981,L, + 257872715500,-0.051179409027100,L, + 259797138750,-0.049328327178955,L, + 261721562000,-0.047477483749390,L, + 263645985250,-0.045625448226929,L, + 265570408500,-0.043774604797363,L, + 267494831750,-0.041923284530640,L, + 269419255000,-0.040071487426758,L, + 271343678250,-0.038220643997192,L, + 273268101500,-0.036369323730469,L, + 275192524750,-0.034517765045166,L, + 279041371250,-0.030815124511719,L, + 280965794500,-0.028964042663574,L, + 282890217750,-0.027112722396851,L, + 284814641000,-0.025260925292969,L, + 286739064250,-0.023409605026245,L, + 288663487500,-0.021558761596680,L, + 290587910750,-0.019707202911377,L, + 294436757250,-0.016004562377930,L, + 296361180500,-0.014152765274048,L, + 298285603750,-0.012302160263062,L, + 300210027000,-0.010450839996338,L, + 302134450250,-0.008599042892456,L, + 304058873500,-0.008604526519775,L, + 305983296750,-0.007686138153076,L, + 307907720000,-0.006197452545166,L, + 309832143250,-0.004555463790894,L, + 311756566500,-0.002857923507690,L, + 313680989750,-0.001148939132690,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215862274170,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934404373169,L, + 325227529250,0.008382558822632,L, + 327151952500,0.009753942489624,L, + 329076375750,0.011039257049561,L, + 331000799000,0.012230396270752,L, + 332925222250,0.013316154479980,L, + 334849645500,0.014284372329712,L, + 336774068750,0.015121221542358,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016672611236572,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000470638275146 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,-0.000470638275146,L, + 1924423250,-0.000808715820312,L, + 3848846500,-0.001145839691162,L, + 7697693000,-0.001821994781494,L, + 11546539500,-0.002497196197510,L, + 13470962750,-0.002835750579834,L, + 15395386000,-0.003172874450684,L, + 17319809250,-0.003510475158691,L, + 19244232500,-0.003849029541016,L, + 23093079000,-0.004524230957031,L, + 25017502250,-0.004862308502197,L, + 26941925500,-0.005199909210205,L, + 32715195250,-0.006214141845703,L, + 34639618500,-0.006551265716553,L, + 38488465000,-0.007227420806885,L, + 42337311500,-0.007902622222900,L, + 44261734750,-0.008240699768066,L, + 46186158000,-0.008578300476074,L, + 50035004500,-0.009254455566406,L, + 53883851000,-0.009929656982422,L, + 55808274250,-0.010267734527588,L, + 57732697500,-0.010605335235596,L, + 61581544000,-0.011281490325928,L, + 63505967250,-0.011618614196777,L, + 69279237000,-0.012632846832275,L, + 73128083500,-0.013308048248291,L, + 75052506750,-0.013646125793457,L, + 76976930000,-0.013983726501465,L, + 80825776500,-0.014659881591797,L, + 82750199750,-0.014997005462646,L, + 86599046250,-0.015673160552979,L, + 88523469500,-0.016010761260986,L, + 90447892750,-0.016348838806152,L, + 94296739250,-0.017024040222168,L, + 98145585750,-0.017700195312500,L, + 101994432250,-0.018375396728516,L, + 103918855500,-0.018713474273682,L, + 105843278750,-0.019051074981689,L, + 109692125250,-0.019727230072021,L, + 111616548500,-0.020064353942871,L, + 119314241500,-0.021416664123535,L, + 121238664750,-0.021753787994385,L, + 125087511250,-0.022429943084717,L, + 127011934500,-0.022767543792725,L, + 128936357750,-0.023105621337891,L, + 130860781000,-0.023442745208740,L, + 134709627500,-0.024118900299072,L, + 136634050750,-0.024456501007080,L, + 138558474000,-0.024794578552246,L, + 142407320500,-0.025469779968262,L, + 144331743750,-0.025808334350586,L, + 146256167000,-0.026145935058594,L, + 148180590250,-0.026484012603760,L, + 152029436750,-0.027159214019775,L, + 155878283250,-0.027835369110107,L, + 161651553000,-0.028848171234131,L, + 163575976250,-0.029186725616455,L, + 167424822750,-0.029861927032471,L, + 169349246000,-0.030200004577637,L, + 173198092500,-0.030875205993652,L, + 175122515750,-0.031213760375977,L, + 177046939000,-0.031551361083984,L, + 178971362250,-0.031888484954834,L, + 180895785500,-0.032227039337158,L, + 182820208750,-0.032565116882324,L, + 184744632000,-0.032902717590332,L, + 188593478500,-0.034139633178711,L, + 190517901750,-0.034758567810059,L, + 192442325000,-0.035377025604248,L, + 194366748250,-0.035995960235596,L, + 196291171500,-0.036614418029785,L, + 198215594750,-0.037233352661133,L, + 202064441250,-0.038470268249512,L, + 205913287750,-0.039708137512207,L, + 207837711000,-0.040326118469238,L, + 209762134250,-0.040945053100586,L, + 211686557500,-0.041563510894775,L, + 213610980750,-0.042182445526123,L, + 217459827250,-0.043419361114502,L, + 221308673750,-0.044657230377197,L, + 223233097000,-0.045275211334229,L, + 225157520250,-0.045894622802734,L, + 229006366750,-0.047131538391113,L, + 230930790000,-0.047750473022461,L, + 234779636500,-0.048987388610840,L, + 236704059750,-0.049606323242188,L, + 238628483000,-0.050224304199219,L, + 242477329500,-0.051462173461914,L, + 246326176000,-0.052699089050293,L, + 248250599250,-0.053318023681641,L, + 250175022500,-0.053936481475830,L, + 252099445750,-0.054555892944336,L, + 254023869000,-0.055173873901367,L, + 257872715500,-0.056411743164062,L, + 261721562000,-0.057648658752441,L, + 263645985250,-0.058266639709473,L, + 267494831750,-0.059504508972168,L, + 271343678250,-0.060741424560547,L, + 273268101500,-0.061360359191895,L, + 275192524750,-0.061978816986084,L, + 277116948000,-0.062597751617432,L, + 279041371250,-0.063215732574463,L, + 280965794500,-0.063835144042969,L, + 282890217750,-0.064453601837158,L, + 284814641000,-0.065072536468506,L, + 286739064250,-0.065690994262695,L, + 288663487500,-0.066309928894043,L, + 290587910750,-0.066928386688232,L, + 292512334000,-0.067547321319580,L, + 294436757250,-0.068165302276611,L, + 296361180500,-0.068784236907959,L, + 300210027000,-0.070021152496338,L, + 302134450250,-0.070640087127686,L, + 304058873500,-0.070654392242432,L, + 305983296750,-0.068115711212158,L, + 307907720000,-0.064002990722656,L, + 309832143250,-0.059464454650879,L, + 311756566500,-0.054773330688477,L, + 313680989750,-0.050050735473633,L, + 315605413000,-0.045362472534180,L, + 317529836250,-0.040754318237305,L, + 319454259500,-0.036257743835449,L, + 321378682750,-0.031902790069580,L, + 323303106000,-0.027713298797607,L, + 325227529250,-0.023711204528809,L, + 327151952500,-0.019922256469727,L, + 329076375750,-0.016368389129639,L, + 331000799000,-0.013077259063721,L, + 332925222250,-0.010078907012939,L, + 334849645500,-0.007403373718262,L, + 336774068750,-0.005089759826660,L, + 338698492000,-0.003181457519531,L, + 340622915250,-0.001730918884277,L, + 342547338500,-0.000801086425781,L, + 344471761750,-0.000470638275146,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097072601318 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,0.062097072601318,L, + 1924423250,0.067336320877075,L, + 3848846500,0.072576045989990,L, + 7697693000,0.083054542541504,L, + 11546539500,0.093533515930176,L, + 15395386000,0.104012012481689,L, + 17319809250,0.109251499176025,L, + 19244232500,0.114490747451782,L, + 21168655750,0.119730234146118,L, + 23093079000,0.124969482421875,L, + 25017502250,0.130208969116211,L, + 26941925500,0.135448217391968,L, + 30790772000,0.145927190780640,L, + 34639618500,0.156405687332153,L, + 38488465000,0.166884660720825,L, + 42337311500,0.177363157272339,L, + 44261734750,0.182602882385254,L, + 46186158000,0.187841892242432,L, + 50035004500,0.198320865631104,L, + 51959427750,0.203559875488281,L, + 57732697500,0.219278335571289,L, + 59657120750,0.224517345428467,L, + 65430390500,0.240235805511475,L, + 67354813750,0.245474815368652,L, + 73128083500,0.261193275451660,L, + 75052506750,0.266432285308838,L, + 80825776500,0.282150745391846,L, + 82750199750,0.287389755249023,L, + 88523469500,0.303108215332031,L, + 90447892750,0.308347225189209,L, + 96221162500,0.324065685272217,L, + 98145585750,0.329304695129395,L, + 103918855500,0.345023155212402,L, + 105843278750,0.350262165069580,L, + 111616548500,0.365980625152588,L, + 113540971750,0.371219635009766,L, + 117389818250,0.381698608398438,L, + 119314241500,0.386937618255615,L, + 125087511250,0.402656078338623,L, + 127011934500,0.407895088195801,L, + 128936357750,0.413135051727295,L, + 130860781000,0.418374061584473,L, + 132785204250,0.423613548278809,L, + 134709627500,0.428852558135986,L, + 136634050750,0.434092521667480,L, + 138558474000,0.439331531524658,L, + 140482897250,0.444571018218994,L, + 142407320500,0.449810028076172,L, + 148180590250,0.465528488159180,L, + 150105013500,0.470767498016357,L, + 155878283250,0.486485958099365,L, + 157802706500,0.491724967956543,L, + 163575976250,0.507443428039551,L, + 165500399500,0.512682437896729,L, + 173198092500,0.533640384674072,L, + 175122515750,0.538879394531250,L, + 180895785500,0.554597854614258,L, + 182820208750,0.559836864471436,L, + 184744632000,0.565076351165771,L, + 186669055250,0.574657440185547,L, + 188593478500,0.584238052368164,L, + 190517901750,0.593819141387939,L, + 192442325000,0.603399753570557,L, + 196291171500,0.622561931610107,L, + 198215594750,0.632142543792725,L, + 200140018000,0.641723632812500,L, + 202064441250,0.651304244995117,L, + 205913287750,0.670466423034668,L, + 207837711000,0.680047035217285,L, + 211686557500,0.699209213256836,L, + 213610980750,0.708789825439453,L, + 217459827250,0.727952003479004,L, + 219384250500,0.737532615661621,L, + 223233097000,0.756694793701172,L, + 225157520250,0.766275405883789,L, + 229006366750,0.785437583923340,L, + 230930790000,0.795018196105957,L, + 234779636500,0.814180374145508,L, + 236704059750,0.823760986328125,L, + 240552906250,0.842923164367676,L, + 242477329500,0.852503776550293,L, + 244401752750,0.862084865570068,L, + 246326176000,0.871665477752686,L, + 248250599250,0.881246566772461,L, + 250175022500,0.890827178955078,L, + 254023869000,0.909989356994629,L, + 255948292250,0.919569969177246,L, + 257872715500,0.929151058197021,L, + 259797138750,0.938731670379639,L, + 263645985250,0.957893848419189,L, + 265570408500,0.967474460601807,L, + 269419255000,0.986636638641357,L, + 271343678250,0.996217250823975,L, + 275192524750,1.015379428863525,L, + 277116948000,1.024960041046143,L, + 280965794500,1.044122219085693,L, + 282890217750,1.053702831268311,L, + 286739064250,1.072865009307861,L, + 288663487500,1.082445621490479,L, + 292512334000,1.101607799530029,L, + 294436757250,1.111188411712646,L, + 298285603750,1.130350589752197,L, + 300210027000,1.139931201934814,L, + 302134450250,1.149512290954590,L, + 304058873500,0.047215461730957,L, + 305983296750,0.047753810882568,L, + 307907720000,0.048625946044922,L, + 309832143250,0.049588441848755,L, + 311756566500,0.050582647323608,L, + 313680989750,0.051584243774414,L, + 315605413000,0.052578449249268,L, + 317529836250,0.053555488586426,L, + 319454259500,0.054508686065674,L, + 321378682750,0.055432558059692,L, + 323303106000,0.056320905685425,L, + 325227529250,0.057169198989868,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059423923492432,L, + 332925222250,0.060059785842896,L, + 334849645500,0.060626983642578,L, + 336774068750,0.061117649078369,L, + 338698492000,0.061522245407104,L, + 340622915250,0.061829805374146,L, + 342547338500,0.062026977539062,L, + 344471761750,0.062097072601318,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816736533094897,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326703444902080,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836663526520084,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 36564041750,62.601607064041680,L, + 38488465000,61.856583689756100,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 48110581250,58.131480478706536,L, + 50035004500,57.386463934610127,L, + 57732697500,54.406384097846150,L, + 59657120750,53.661360723560570,L, + 61581544000,52.916347594558744,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426311091271337,L, + 67354813750,50.681280886796586,L, + 69279237000,49.936267757794759,L, + 71203660250,49.191240968414597,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701201050032601,L, + 76976930000,46.956177675747021,L, + 78901353250,46.211157716556031,L, + 80825776500,45.466148002648787,L, + 82750199750,44.721117798174035,L, + 84674623000,43.976097838983044,L, + 86599046250,43.231074464697464,L, + 88523469500,42.486061335695638,L, + 90447892750,41.741034546315468,L, + 92372316000,40.996018002219060,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270914791169496,L, + 103918855500,36.525898247073087,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035854913596509,L, + 109692125250,34.290834954405518,L, + 111616548500,33.545811580119938,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055771661737943,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565735158450540,L, + 121238664750,29.820711784164960,L, + 123163088000,29.075695240068548,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585653614139265,L, + 130860781000,26.095617110851858,L, + 132785204250,25.350593736566278,L, + 136634050750,23.860550403089704,L, + 138558474000,23.115537274087878,L, + 142407320500,21.625490525516717,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390428940396440,L, + 150105013500,18.645415811394614,L, + 152029436750,17.900387314467157,L, + 153953860000,17.155375893012621,L, + 155878283250,16.410350811179750,L, + 157802706500,15.665327436894168,L, + 159727129750,14.920309185250467,L, + 161651553000,14.175291787380409,L, + 165500399500,12.685245038809249,L, + 167424822750,11.940231056033777,L, + 169349246000,11.195205120427259,L, + 171273669250,10.450190283878140,L, + 173198092500,9.705166055818914,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215125283663276,L, + 178971362250,7.470109593340513,L, + 182820208750,5.980062844769352,L, + 184744632000,5.235048008220234,L, + 186669055250,6.407538344823624,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752518591143584,L, + 192442325000,9.925011915954737,L, + 198215594750,13.442484206425380,L, + 200140018000,14.614975823689241,L, + 205913287750,18.132448114159882,L, + 207837711000,19.304942292744681,L, + 209762134250,20.477431348687603,L, + 211686557500,21.649922112177819,L, + 213610980750,22.822414583215323,L, + 215535404000,23.994903639158245,L, + 217459827250,25.167394402648462,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512379344723474,L, + 223233097000,28.684864985571810,L, + 227081943500,31.029846512552240,L, + 229006366750,32.202344106231621,L, + 232855213250,34.547325633212054,L, + 234779636500,35.719812981607681,L, + 236704059750,36.892303745097898,L, + 238628483000,38.064791093493525,L, + 240552906250,39.237288687172907,L, + 242477329500,40.409779450663123,L, + 244401752750,41.582263383964168,L, + 246326176000,42.754760977643549,L, + 248250599250,43.927244910944594,L, + 250175022500,45.099739089529393,L, + 252099445750,46.272226437925021,L, + 255948292250,48.617214795094625,L, + 257872715500,49.789702143490253,L, + 259797138750,50.962192906980462,L, + 261721562000,52.134680255376097,L, + 265570408500,54.479668612545694,L, + 267494831750,55.652152545846739,L, + 269419255000,56.824650139526121,L, + 271343678250,57.997137487921748,L, + 277116948000,61.514609778392391,L, + 279041371250,62.687107372071779,L, + 280965794500,63.859591305372824,L, + 282890217750,65.032082068863033,L, + 288663487500,68.549554359333683,L, + 290587910750,69.722038292634721,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817952888610051 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-47.817952888610051,L, + 1924423250,-47.567626455529442,L, + 3848846500,-47.317313682827177,L, + 5773269750,-47.066994079935739,L, + 7697693000,-46.816671061949712,L, + 11546539500,-46.316038686356009,L, + 13470962750,-46.065715668369982,L, + 15395386000,-45.815402895667717,L, + 17319809250,-45.565083292776279,L, + 19244232500,-45.314767104979424,L, + 23093079000,-44.814127899196549,L, + 25017502250,-44.563804881210530,L, + 26941925500,-44.313492108508264,L, + 28866348750,-44.063172505616826,L, + 30790772000,-43.812859732914553,L, + 32715195250,-43.562536714928534,L, + 34639618500,-43.312223942226268,L, + 36564041750,-43.061894094051070,L, + 38488465000,-42.811581321348804,L, + 40412888250,-42.561261718457366,L, + 44261734750,-42.060629342863663,L, + 46186158000,-41.810306324877637,L, + 50035004500,-41.309667119094762,L, + 51959427750,-41.059354346392496,L, + 53883851000,-40.809031328406476,L, + 55808274250,-40.558718555704203,L, + 59657120750,-40.058079349921329,L, + 61581544000,-39.807752916840727,L, + 63505967250,-39.557440144138454,L, + 65430390500,-39.307123956341606,L, + 67354813750,-39.056800938355579,L, + 69279237000,-38.806484750558731,L, + 71203660250,-38.556165147667294,L, + 73128083500,-38.305848959870438,L, + 78901353250,-37.554890151196126,L, + 80825776500,-37.304573963399271,L, + 84674623000,-36.803934757616396,L, + 86599046250,-36.553618569819541,L, + 88523469500,-36.303298966928104,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802666591334400,L, + 94296739250,-35.552343573348381,L, + 96221162500,-35.302027385551526,L, + 100070009000,-34.801388179768651,L, + 101994432250,-34.551071991971796,L, + 107767702000,-33.800113183297483,L, + 113540971750,-33.049164619906925,L, + 115465395000,-32.798845017015488,L, + 117389818250,-32.548518583934879,L, + 119314241500,-32.298202396138031,L, + 121238664750,-32.047879378152004,L, + 123163088000,-31.797570020544324,L, + 130860781000,-30.796291608978574,L, + 134709627500,-30.295659233384868,L, + 140482897250,-29.544700424710555,L, + 142407320500,-29.294384236913704,L, + 144331743750,-29.044061218927681,L, + 146256167000,-28.793745031130829,L, + 148180590250,-28.543427135786683,L, + 150105013500,-28.293107532895245,L, + 152029436750,-28.042789637551099,L, + 153953860000,-27.792470034659662,L, + 161651553000,-26.791198453283080,L, + 163575976250,-26.540877142844352,L, + 165500399500,-26.290560955047500,L, + 167424822750,-26.040241352156063,L, + 169349246000,-25.789920041717330,L, + 171273669250,-25.539607269015065,L, + 173198092500,-25.289284251029041,L, + 177046939000,-24.788648460340749,L, + 178971362250,-24.538328857449311,L, + 180895785500,-24.288010962105169,L, + 182820208750,-24.037694774308314,L, + 184744632000,-23.787375171416876,L, + 186669055250,-24.181314869533260,L, + 188593478500,-24.575263105386103,L, + 190517901750,-24.969204511049778,L, + 192442325000,-25.363152746902621,L, + 194366748250,-25.757092445019005,L, + 200140018000,-26.938926907293784,L, + 202064441250,-27.332868312957455,L, + 203988864500,-27.726814841263007,L, + 205913287750,-28.120754539379391,L, + 207837711000,-28.514699360137651,L, + 209762134250,-28.908645888443203,L, + 211686557500,-29.302587294106875,L, + 217459827250,-30.484421756381654,L, + 219384250500,-30.878359746950743,L, + 223233097000,-31.666256218656432,L, + 225157520250,-32.060201039414693,L, + 227081943500,-32.454142445078368,L, + 229006366750,-32.848080435647454,L, + 232855213250,-33.635970077163975,L, + 234779636500,-34.029918313016822,L, + 236704059750,-34.423859718680497,L, + 238628483000,-34.817807954533336,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605690765860686,L, + 246326176000,-36.393573577188036,L, + 248250599250,-36.787518397946293,L, + 250175022500,-37.181470048893722,L, + 252099445750,-37.575411454557397,L, + 254023869000,-37.969349445126490,L, + 255948292250,-38.363297680979336,L, + 259797138750,-39.151180492306679,L, + 261721562000,-39.545132143254108,L, + 263645985250,-39.939073548917783,L, + 265570408500,-40.333021784770629,L, + 267494831750,-40.726963190434304,L, + 269419255000,-41.120901181003397,L, + 271343678250,-41.514852831950826,L, + 273268101500,-41.908790822519912,L, + 275192524750,-42.302735643278169,L, + 277116948000,-42.696683879131015,L, + 279041371250,-43.090625284794690,L, + 280965794500,-43.484570105552947,L, + 282890217750,-43.878511511216622,L, + 288663487500,-45.060345973491401,L, + 290587910750,-45.454283964060494,L, + 292512334000,-45.848232199913333,L, + 294436757250,-46.242173605577008,L, + 296361180500,-46.636118426335273,L, + 298285603750,-47.030066662188112,L, + 300210027000,-47.424008067851787,L, + 302134450250,-47.817952888610051,L, + 304058873500,-47.817949473515462,L, + 305983296750,-47.817952888610051,L, + 311756566500,-47.817952888610051,L, + 313680989750,-47.817949473515462,L, + 315605413000,-47.817949473515462,L, + 317529836250,-47.817952888610051,L, + 319454259500,-47.817949473515462,L, + 321378682750,-47.817949473515462,L, + 323303106000,-47.817952888610051,L, + 325227529250,-47.817949473515462,L, + 327151952500,-47.817952888610051,L, + 329076375750,-47.817949473515462,L, + 331000799000,-47.817952888610051,L, + 332925222250,-47.817952888610051,L, + 334849645500,-47.817949473515462,L, + 338698492000,-47.817949473515462,L, + 340622915250,-47.817952888610051,L, + 342547338500,-47.817949473515462,L, + 344471761750,-47.817952888610051,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887855167009455 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-21.887855167009455,L, + 5773269750,-20.592298055054130,L, + 7697693000,-20.160447391949646,L, + 11546539500,-19.296742650646092,L, + 13470962750,-18.864893695088902,L, + 15395386000,-18.433039616889836,L, + 17319809250,-18.001187246238057,L, + 19244232500,-17.569333168038991,L, + 21168655750,-17.137484212481798,L, + 23093079000,-16.705631841830023,L, + 25017502250,-16.273777763630957,L, + 28866348750,-15.410076437421990,L, + 32715195250,-14.546371696118438,L, + 38488465000,-13.250812022842172,L, + 42337311500,-12.387115819275083,L, + 44261734750,-11.955259179755076,L, + 46186158000,-11.523407662876947,L, + 48110581250,-11.091554438451524,L, + 50035004500,-10.659704629120688,L, + 51959427750,-10.227853112242558,L, + 53883851000,-9.795999034043490,L, + 55808274250,-9.364149224712653,L, + 57732697500,-8.932292585192647,L, + 59657120750,-8.500445337182748,L, + 61581544000,-8.068590405210033,L, + 63505967250,-7.636740595879196,L, + 65430390500,-7.204887371453775,L, + 67354813750,-6.773031158820591,L, + 69279237000,-6.341182203263400,L, + 71203660250,-5.909334101479856,L, + 73128083500,-5.477477035073026,L, + 75052506750,-5.045622529987134,L, + 76976930000,-4.613774001316767,L, + 80825776500,-3.750069260013215,L, + 82750199750,-3.318216035587793,L, + 84674623000,-2.886364091822841,L, + 88523469500,-2.022660631179758,L, + 90447892750,-1.590810288240393,L, + 92372316000,-1.158954715937444,L, + 94296739250,-0.727101758316286,L, + 96221162500,-0.295251495418200,L, + 98145585750,0.136597406778138,L, + 100070009000,0.568450230997164,L, + 101994432250,1.000303402061733,L, + 103918855500,1.432151503845277,L, + 105843278750,1.864007716478461,L, + 107767702000,2.295857952696121,L, + 109692125250,2.727709469574251,L, + 111616548500,3.159562693999673,L, + 113540971750,3.591415491538271,L, + 115465395000,4.023266154642754,L, + 117389818250,4.455118952181353,L, + 119314241500,4.886970042172660,L, + 121238664750,5.318821985937612,L, + 123163088000,5.750672222155273,L, + 125087511250,6.182526727241163,L, + 127011934500,6.614379524779762,L, + 128936357750,7.046233602978830,L, + 130860781000,7.478081277875552,L, + 132785204250,7.909931087206389,L, + 134709627500,8.341781750310872,L, + 136634050750,8.773639243604526,L, + 138558474000,9.205489052935363,L, + 140482897250,9.637343984908076,L, + 142407320500,10.069194648012560,L, + 144331743750,10.501043603569752,L, + 146256167000,10.932898535542465,L, + 150105013500,11.796606691940601,L, + 152029436750,12.228455647497793,L, + 153953860000,12.660308871923215,L, + 155878283250,13.092161242574990,L, + 157802706500,13.524011051905827,L, + 159727129750,13.955859153689371,L, + 161651553000,14.387711524341148,L, + 163575976250,14.819567310087509,L, + 165500399500,15.251421388286577,L, + 167424822750,15.683272051391059,L, + 169349246000,16.115126129590127,L, + 171273669250,16.546973377600025,L, + 173198092500,16.978830870893677,L, + 175122515750,17.410678118903576,L, + 177046939000,17.842533904649937,L, + 178971362250,18.274381152659835,L, + 180895785500,18.706236938406196,L, + 182820208750,19.138089309057971,L, + 184744632000,19.569938264615164,L, + 186669055250,18.890305413895899,L, + 188593478500,18.210667440534756,L, + 190517901750,17.531034589815491,L, + 192442325000,16.851400031548934,L, + 194366748250,16.171760350640501,L, + 196291171500,15.492122377279356,L, + 200140018000,14.132856675840827,L, + 202064441250,13.453216141158746,L, + 203988864500,12.773580729118542,L, + 205913287750,12.093944463304693,L, + 209762134250,10.734673639224287,L, + 211686557500,10.055036519636790,L, + 213610980750,9.375398546275648,L, + 215535404000,8.695765695556384,L, + 217459827250,8.016127722195241,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656853909907072,L, + 223233097000,5.977218497866868,L, + 225157520250,5.297584366487134,L, + 227081943500,4.617946820012815,L, + 229006366750,3.938311407972612,L, + 230930790000,3.258676636262643,L, + 232855213250,2.579036955354208,L, + 234779636500,1.899403250861297,L, + 236704059750,1.219768799316446,L, + 238628483000,0.540133173832831,L, + 240552906250,-0.139503265403791,L, + 242477329500,-0.819141225424720,L, + 244401752750,-1.498773489174603,L, + 246326176000,-2.178411355814040,L, + 248250599250,-2.858047194741066,L, + 250175022500,-3.537681966451035,L, + 252099445750,-4.217322074246293,L, + 254023869000,-4.896957059399673,L, + 255948292250,-5.576593325213524,L, + 257872715500,-6.256225322159142,L, + 259797138750,-6.935863722407107,L, + 261721562000,-7.615497853786842,L, + 263645985250,-8.295134973374337,L, + 265570408500,-8.974775508056418,L, + 267494831750,-9.654404943681097,L, + 269419255000,-10.334047185910471,L, + 271343678250,-11.013681744177029,L, + 273268101500,-11.693321425085463,L, + 275192524750,-12.372950006936497,L, + 277116948000,-13.052586272750347,L, + 279041371250,-13.732219123469612,L, + 280965794500,-14.411859658151693,L, + 282890217750,-15.091494216418250,L, + 284814641000,-15.771132189779392,L, + 288663487500,-17.130404721407093,L, + 290587910750,-17.810039279673649,L, + 292512334000,-18.489678960582083,L, + 294436757250,-19.169310103754057,L, + 296361180500,-19.848944662020614,L, + 298285603750,-20.528584342929047,L, + 300210027000,-21.208222316290190,L, + 302134450250,-21.887855167009455,L, + 307907720000,-21.887855167009455,L, + 309832143250,-21.887853459462164,L, + 311756566500,-21.887858582104041,L, + 313680989750,-21.887853459462164,L, + 315605413000,-21.887855167009455,L, + 317529836250,-21.887853459462164,L, + 323303106000,-21.887853459462164,L, + 325227529250,-21.887855167009455,L, + 327151952500,-21.887853459462164,L, + 329076375750,-21.887855167009455,L, + 331000799000,-21.887855167009455,L, + 332925222250,-21.887853459462164,L, + 334849645500,-21.887850044367578,L, + 336774068750,-21.887853459462164,L, + 338698492000,-21.887855167009455,L, + 340622915250,-21.887858582104041,L, + 342547338500,-21.887851751914869,L, + 344471761750,-21.887855167009455,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 3848846500,1.002107977867126,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 13470962750,1.007378339767456,L, + 15395386000,1.008432269096375,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702630996704,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 48110581250,1.026351332664490,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729791641235,L, + 63505967250,1.034783720970154,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945747375488,L, + 71203660250,1.038999915122986,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513154983521,L, + 127011934500,1.069567322731018,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837684631348,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540196418762,L, + 163575976250,1.089594364166260,L, + 165500399500,1.090648293495178,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864606857300,L, + 184744632000,1.101188898086548,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373040199280,L, + 194366748250,1.023919224739075,L, + 196291171500,1.008465051651001,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649372577667,L, + 205913287750,0.931195497512817,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 221308673750,0.807563900947571,L, + 225157520250,0.776655912399292,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478310108185,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 246326176000,0.606662511825562,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123045921326,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129615545273,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978054046631,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833468198776,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605721473694,L, + 344471761750,0.999999940395355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,0.999999940395355,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002108097076416,L, + 28866348750,1.015810728073120,L, + 30790772000,1.016864895820618,L, + 34639618500,1.018972754478455,L, + 36564041750,1.020026922225952,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024242997169495,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729553222656,L, + 63505967250,1.034783601760864,L, + 65430390500,1.035837769508362,L, + 67354813750,1.036891818046570,L, + 69279237000,1.037945747375488,L, + 71203660250,1.038999915122986,L, + 78901353250,1.043216109275818,L, + 80825776500,1.044270038604736,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 88523469500,1.048486232757568,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026718139648,L, + 109692125250,1.060080885887146,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 127011934500,1.069567322731018,L, + 130860781000,1.071675181388855,L, + 132785204250,1.072729349136353,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837803840637,L, + 138558474000,1.075891733169556,L, + 148180590250,1.081161975860596,L, + 150105013500,1.082215905189514,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 165500399500,1.090648412704468,L, + 167424822750,1.091702342033386,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864606857300,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827213287354,L, + 196291171500,1.008465051651001,L, + 200140018000,0.977557301521301,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741384029388,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833633899689,L, + 213610980750,0.869379580020905,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471651077271,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840114116669,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024315834045,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116506099701,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491419553757,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129645347595,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525667667389,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,1.000000000000000,L, + 1924423250,1.001053929328918,L, + 3848846500,1.002107977867126,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702630996704,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021080970764160,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 61581544000,1.033729672431946,L, + 63505967250,1.034783601760864,L, + 65430390500,1.035837888717651,L, + 67354813750,1.036891818046570,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042161941528320,L, + 78901353250,1.043216109275818,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648497581482,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972669601440,L, + 107767702000,1.059026837348938,L, + 109692125250,1.060080885887146,L, + 111616548500,1.061134815216064,L, + 113540971750,1.062188982963562,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 121238664750,1.066405177116394,L, + 123163088000,1.067459106445312,L, + 125087511250,1.068513274192810,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675300598145,L, + 132785204250,1.072729349136353,L, + 138558474000,1.075891852378845,L, + 140482897250,1.076945781707764,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486267089844,L, + 171273669250,1.093810558319092,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373159408569,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011236190796,L, + 200140018000,0.977557241916656,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833574295044,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109966278076,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840114116669,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478310108185,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938844203949,L, + 259797138750,0.498484879732132,L, + 261721562000,0.483030945062637,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307277441025,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221716403961,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915029764175,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544899463654,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024921417236,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766312122345,L, + 336774068750,0.968073785305023,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_043" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 60 + Key: + 0,-0.063678026199341,L, + 207837711000,-0.063678026199341,L, + 209762134250,-0.063678264617920,L, + 211686557500,-0.063524961471558,L, + 213610980750,-0.063371896743774,L, + 215535404000,-0.063219070434570,L, + 219384250500,-0.062912464141846,L, + 221308673750,-0.062759637832642,L, + 223233097000,-0.062606573104858,L, + 225157520250,-0.062453269958496,L, + 227081943500,-0.062300443649292,L, + 230930790000,-0.061993837356567,L, + 232855213250,-0.061840772628784,L, + 234779636500,-0.061687469482422,L, + 236704059750,-0.061534643173218,L, + 238628483000,-0.061381340026855,L, + 240552906250,-0.061228990554810,L, + 242477329500,-0.061075448989868,L, + 244401752750,-0.060921669006348,L, + 250175022500,-0.060463190078735,L, + 252099445750,-0.060309886932373,L, + 254023869000,-0.060156822204590,L, + 255948292250,-0.060003042221069,L, + 259797138750,-0.059697389602661,L, + 261721562000,-0.059544086456299,L, + 263645985250,-0.059391021728516,L, + 265570408500,-0.059237718582153,L, + 267494831750,-0.059085369110107,L, + 269419255000,-0.058931589126587,L, + 271343678250,-0.058778285980225,L, + 273268101500,-0.058625221252441,L, + 275192524750,-0.058471918106079,L, + 277116948000,-0.058319568634033,L, + 279041371250,-0.058166265487671,L, + 280965794500,-0.058013439178467,L, + 282890217750,-0.057859420776367,L, + 284814641000,-0.058243989944458,L, + 286739064250,-0.058418989181519,L, + 290587910750,-0.058769464492798,L, + 292512334000,-0.058945178985596,L, + 294436757250,-0.059119939804077,L, + 296361180500,-0.059295177459717,L, + 298285603750,-0.059470891952515,L, + 300210027000,-0.059646129608154,L, + 302134450250,-0.059820890426636,L, + 304058873500,-0.059996843338013,L, + 305983296750,-0.060172080993652,L, + 309832143250,-0.060523033142090,L, + 311756566500,-0.060697793960571,L, + 313680989750,-0.060873031616211,L, + 315605413000,-0.061048746109009,L, + 317529836250,-0.061223983764648,L, + 319454259500,-0.061398744583130,L, + 321378682750,-0.061574935913086,L, + 325227529250,-0.061925411224365,L, + 327151952500,-0.062100410461426,L, + 336774068750,-0.062976598739624,L, + 340622915250,-0.063328027725220,L, + 342547338500,-0.063503265380859,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339878082275 + KeyVer: 4005 + KeyCount: 55 + Key: + 0,-0.087339878082275,L, + 207837711000,-0.087339878082275,L, + 209762134250,-0.167691230773926,L, + 211686557500,-0.165458679199219,L, + 213610980750,-0.163227081298828,L, + 217459827250,-0.158762931823730,L, + 221308673750,-0.154299736022949,L, + 225157520250,-0.149835586547852,L, + 227081943500,-0.147603034973145,L, + 232855213250,-0.140908241271973,L, + 234779636500,-0.138675689697266,L, + 238628483000,-0.134211540222168,L, + 240552906250,-0.131979942321777,L, + 242477329500,-0.129747867584229,L, + 244401752750,-0.127516269683838,L, + 246326176000,-0.125284194946289,L, + 248250599250,-0.123052597045898,L, + 250175022500,-0.120820045471191,L, + 252099445750,-0.118588447570801,L, + 254023869000,-0.116355895996094,L, + 255948292250,-0.114124774932861,L, + 257872715500,-0.111892700195312,L, + 259797138750,-0.109661102294922,L, + 261721562000,-0.107428550720215,L, + 265570408500,-0.102964401245117,L, + 269419255000,-0.098501205444336,L, + 271343678250,-0.096268653869629,L, + 275192524750,-0.091804504394531,L, + 279041371250,-0.087341308593750,L, + 280965794500,-0.085108757019043,L, + 282890217750,-0.082877159118652,L, + 284814641000,-0.082876205444336,L, + 290587910750,-0.083308219909668,L, + 292512334000,-0.083452701568604,L, + 294436757250,-0.083596706390381,L, + 296361180500,-0.083740234375000,L, + 298285603750,-0.083884716033936,L, + 300210027000,-0.084028720855713,L, + 302134450250,-0.084172248840332,L, + 307907720000,-0.084604263305664,L, + 309832143250,-0.084748744964600,L, + 311756566500,-0.084892272949219,L, + 313680989750,-0.085036277770996,L, + 315605413000,-0.085180759429932,L, + 317529836250,-0.085324764251709,L, + 319454259500,-0.085468292236328,L, + 321378682750,-0.085612773895264,L, + 323303106000,-0.085756301879883,L, + 332925222250,-0.086476325988770,L, + 334849645500,-0.086620807647705,L, + 336774068750,-0.086764812469482,L, + 338698492000,-0.086908340454102,L, + 340622915250,-0.087052822113037,L, + 342547338500,-0.087195873260498,L, + 344471761750,-0.087339878082275,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138244628906 + KeyVer: 4005 + KeyCount: 91 + Key: + 0,0.415138244628906,L, + 1924423250,0.421364307403564,L, + 3848846500,0.427590847015381,L, + 15395386000,0.464947223663330,L, + 17319809250,0.471173763275146,L, + 28866348750,0.508530139923096,L, + 30790772000,0.514756679534912,L, + 42337311500,0.552113056182861,L, + 44261734750,0.558339595794678,L, + 53883851000,0.589469909667969,L, + 55808274250,0.595696449279785,L, + 67354813750,0.633052825927734,L, + 69279237000,0.639279365539551,L, + 80825776500,0.676635742187500,L, + 82750199750,0.682862281799316,L, + 94296739250,0.720218658447266,L, + 96221162500,0.726445198059082,L, + 105843278750,0.757575511932373,L, + 107767702000,0.763802051544189,L, + 109692125250,0.770028114318848,L, + 111616548500,0.776253700256348,L, + 113540971750,0.782480239868164,L, + 119314241500,0.801158428192139,L, + 121238664750,0.807384967803955,L, + 123163088000,0.813611030578613,L, + 125087511250,0.819836616516113,L, + 127011934500,0.826063156127930,L, + 132785204250,0.844741344451904,L, + 134709627500,0.850967884063721,L, + 136634050750,0.857193946838379,L, + 138558474000,0.863419532775879,L, + 140482897250,0.869646072387695,L, + 146256167000,0.888324260711670,L, + 148180590250,0.894550800323486,L, + 157802706500,0.925681114196777,L, + 159727129750,0.931907653808594,L, + 171273669250,0.969264030456543,L, + 173198092500,0.975490570068359,L, + 184744632000,1.012846946716309,L, + 186669055250,1.019073486328125,L, + 198215594750,1.056429862976074,L, + 200140018000,1.062656402587891,L, + 207837711000,1.087560653686523,L, + 209762134250,-0.038915872573853,L, + 211686557500,-0.038899183273315,L, + 213610980750,-0.038882732391357,L, + 219384250500,-0.038832664489746,L, + 221308673750,-0.038816213607788,L, + 227081943500,-0.038766145706177,L, + 230930790000,-0.038733243942261,L, + 232855213250,-0.038716554641724,L, + 234779636500,-0.038700103759766,L, + 238628483000,-0.038666725158691,L, + 240552906250,-0.038650274276733,L, + 246326176000,-0.038600206375122,L, + 248250599250,-0.038583755493164,L, + 254023869000,-0.038533687591553,L, + 257872715500,-0.038500785827637,L, + 259797138750,-0.038484096527100,L, + 261721562000,-0.038467645645142,L, + 265570408500,-0.038434267044067,L, + 267494831750,-0.038417816162109,L, + 273268101500,-0.038367748260498,L, + 275192524750,-0.038351297378540,L, + 280965794500,-0.038301229476929,L, + 282890217750,-0.038285017013550,L, + 284814641000,0.028068065643311,L, + 286739064250,0.040554046630859,L, + 288663487500,0.053040266036987,L, + 290587910750,0.065526247024536,L, + 292512334000,0.078012466430664,L, + 294436757250,0.090498924255371,L, + 296361180500,0.102984905242920,L, + 298285603750,0.115471124649048,L, + 300210027000,0.127957105636597,L, + 304058873500,0.152929544448853,L, + 305983296750,0.165415525436401,L, + 307907720000,0.177901744842529,L, + 309832143250,0.190387725830078,L, + 311756566500,0.202874183654785,L, + 315605413000,0.227846145629883,L, + 317529836250,0.240332603454590,L, + 321378682750,0.265304565429688,L, + 323303106000,0.277791023254395,L, + 329076375750,0.315248966217041,L, + 331000799000,0.327735424041748,L, + 334849645500,0.352707386016846,L, + 336774068750,0.365193843841553,L, + 338698492000,0.377679824829102,L, + 340622915250,0.390166282653809,L, + 344471761750,0.415138244628906,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670455618805025 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,30.670455618805025,L, + 1924423250,29.595230164190237,L, + 5773269750,27.444772424771493,L, + 7697693000,26.369541847514828,L, + 9622116250,25.294318100447331,L, + 13470962750,23.143856945934004,L, + 15395386000,22.068629783771922,L, + 17319809250,20.993399206515257,L, + 19244232500,19.918173751900472,L, + 21168655750,18.842943174643807,L, + 23093079000,17.767716012481724,L, + 25017502250,16.692492265414231,L, + 26941925500,15.617256565515689,L, + 28866348750,14.542031110900901,L, + 38488465000,9.165886762354040,L, + 40412888250,8.090659600191959,L, + 42337311500,7.015429022935295,L, + 44261734750,5.940200580112745,L, + 46186158000,4.864972991063842,L, + 48110581250,3.789744121354470,L, + 50035004500,2.714516105418744,L, + 51959427750,1.639286275214019,L, + 53883851000,0.564057458865500,L, + 55808274250,-0.511171410843873,L, + 57732697500,-1.586400440635804,L, + 59657120750,-2.661629096901764,L, + 61581544000,-3.736857112837491,L, + 63505967250,-4.812082567452278,L, + 65430390500,-5.887311864048474,L, + 67354813750,-6.962544148852431,L, + 69279237000,-8.037770884127688,L, + 71203660250,-9.112997192516122,L, + 73128083500,-10.188232038641017,L, + 75052506750,-11.263456639482159,L, + 76976930000,-12.338683801644239,L, + 78901353250,-13.413915232674549,L, + 80825776500,-14.489139833515690,L, + 82750199750,-15.564372118319648,L, + 84674623000,-16.639600988029020,L, + 86599046250,-17.714824735096517,L, + 88523469500,-18.790057019900473,L, + 90447892750,-19.865291012251724,L, + 92372316000,-20.940511344224632,L, + 94296739250,-22.015741921481297,L, + 96221162500,-23.090969083643376,L, + 98145585750,-24.166206491089213,L, + 100070009000,-25.241428530609415,L, + 105843278750,-28.467115139737533,L, + 107767702000,-29.542347424541489,L, + 109692125250,-30.617572879156278,L, + 117389818250,-34.918488357993766,L, + 119314241500,-35.993720642797726,L, + 121238664750,-37.068946097412514,L, + 125087511250,-39.219403836831255,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369864991344585,L, + 130860781000,-42.445083615770201,L, + 132785204250,-43.520315900574161,L, + 134709627500,-44.595544770283531,L, + 136634050750,-45.670770224898320,L, + 138558474000,-46.745999094607690,L, + 140482897250,-47.821234794506232,L, + 142407320500,-48.896456834026438,L, + 144331743750,-49.971685703735808,L, + 146256167000,-51.046921403634350,L, + 148180590250,-52.122143443154556,L, + 153953860000,-55.347830052282674,L, + 155878283250,-56.423055506897462,L, + 157802706500,-57.498294621890587,L, + 159727129750,-58.573516661410785,L, + 161651553000,-59.648731870741820,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175347619085770,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325798528315346,L, + 180895785500,-70.401034228213888,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626720837342006,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838161336417052,L, + 230930790000,-51.776566607003673,L, + 232855213250,-48.714951387022779,L, + 234779636500,-45.653342997231057,L, + 236704059750,-42.591744852723089,L, + 240552906250,-36.468528073139645,L, + 242477329500,-33.406926513537094,L, + 244401752750,-30.345321538839961,L, + 246326176000,-27.283714856595530,L, + 248250599250,-24.222097929067345,L, + 250175022500,-21.160494661917504,L, + 252099445750,-18.098894809862244,L, + 254023869000,-15.037284712523229,L, + 255948292250,-11.975678030278800,L, + 257872715500,-8.914073055581664,L, + 259797138750,-5.852461677582180,L, + 261721562000,-2.790856275998220,L, + 263645985250,0.270741868509746,L, + 265570408500,3.332353246509230,L, + 267494831750,6.393959928753659,L, + 269419255000,9.455570452979495,L, + 271343678250,12.517173720129341,L, + 273268101500,15.578782109921063,L, + 275192524750,18.640385377070906,L, + 277116948000,21.701998889504505,L, + 279041371250,24.763603864201642,L, + 280965794500,27.825205423804192,L, + 282890217750,30.886805275859452,L, + 284814641000,30.872537010683317,L, + 286739064250,30.866021010215135,L, + 288663487500,30.859498179557782,L, + 290587910750,30.852985594184183,L, + 292512334000,30.846462763526830,L, + 294436757250,30.839946763058649,L, + 296361180500,30.833427347495881,L, + 298285603750,30.826911347027696,L, + 300210027000,30.820391931464929,L, + 302134450250,30.813869100807576,L, + 304058873500,30.807349685244809,L, + 307907720000,30.794317684308442,L, + 309832143250,30.787805098934847,L, + 311756566500,30.781282268277494,L, + 313680989750,30.774756022525555,L, + 315605413000,30.768240022057373,L, + 317529836250,30.761717191400020,L, + 319454259500,30.755197775837249,L, + 321378682750,30.748685190463654,L, + 323303106000,30.742162359806301,L, + 325227529250,30.735649774432702,L, + 327151952500,30.729126943775348,L, + 329076375750,30.722607528212581,L, + 331000799000,30.716094942838986,L, + 332925222250,30.709568697087047,L, + 336774068750,30.696529865961512,L, + 338698492000,30.690017280587913,L, + 342547338500,30.676978449462379,L, + 344471761750,30.670455618805025,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 78901353250,132.592918734514598,L, + 80825776500,133.527261292214320,L, + 82750199750,134.461617510292371,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489134231499909 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,7.489134231499909,L, + 1924423250,6.812487027221582,L, + 3848846500,6.135841103603724,L, + 5773269750,5.459193045551751,L, + 7697693000,4.782543706839308,L, + 9622116250,4.105894795013688,L, + 11546539500,3.429249084839242,L, + 13470962750,2.752602094004326,L, + 15395386000,2.075953609065530,L, + 17319809250,1.399310140046905,L, + 19244232500,0.722659680756551,L, + 21168655750,0.046011012389823,L, + 23093079000,-0.630639690359422,L, + 25017502250,-1.307282945934636,L, + 26941925500,-1.983931751038549,L, + 28866348750,-2.660578741873465,L, + 30790772000,-3.337228080585908,L, + 32715195250,-4.013876778968116,L, + 34639618500,-4.690522702585974,L, + 36564041750,-5.367172041298417,L, + 38488465000,-6.043819245576744,L, + 40412888250,-6.720468584289187,L, + 42337311500,-7.397115361680691,L, + 44261734750,-8.073765127279957,L, + 46186158000,-8.750411477784638,L, + 48110581250,-9.427059535836612,L, + 50035004500,-10.103705032567646,L, + 51959427750,-10.780352236845973,L, + 53883851000,-11.457002002445240,L, + 55808274250,-12.133650060497214,L, + 57732697500,-12.810298972322833,L, + 59657120750,-13.486941907732929,L, + 61581544000,-14.163594234653134,L, + 63505967250,-14.840242292705106,L, + 65430390500,-15.516885228115203,L, + 67354813750,-16.193531578619883,L, + 69279237000,-16.870181344219151,L, + 71203660250,-17.546825987176540,L, + 73128083500,-18.223475752775805,L, + 75052506750,-18.900127225922361,L, + 76976930000,-19.576771868879753,L, + 78901353250,-20.253419926931723,L, + 80825776500,-20.930069692530992,L, + 82750199750,-21.606717750582963,L, + 84674623000,-22.283364101087646,L, + 86599046250,-22.960015574234205,L, + 88523469500,-23.636663632286176,L, + 90447892750,-24.313308275243564,L, + 92372316000,-24.989958040842833,L, + 96221162500,-26.343254156946777,L, + 98145585750,-27.019897092356874,L, + 100070009000,-27.696545150408848,L, + 101994432250,-28.373194916008114,L, + 103918855500,-29.049846389154673,L, + 105843278750,-29.726492739659353,L, + 107767702000,-30.403135675069450,L, + 109692125250,-31.079788855763301,L, + 111616548500,-31.756438621362566,L, + 113540971750,-32.433074726583492,L, + 115465395000,-33.109731322371928,L, + 117389818250,-33.786374257782022,L, + 119314241500,-34.463020608286705,L, + 121238664750,-35.139677204075142,L, + 125087511250,-36.492969905084500,L, + 127011934500,-37.169609425400012,L, + 128936357750,-37.846262606093866,L, + 132785204250,-39.199562137292396,L, + 134709627500,-39.876201657607908,L, + 136634050750,-40.552854838301762,L, + 138558474000,-41.229504603901027,L, + 140482897250,-41.906147539311121,L, + 142407320500,-42.582800720004975,L, + 146256167000,-43.936093421014334,L, + 152029436750,-45.966042717812130,L, + 153953860000,-46.642682238127641,L, + 157802706500,-47.995981769326178,L, + 159727129750,-48.672628119830854,L, + 161651553000,-49.349271055240955,L, + 167424822750,-51.379220352038750,L, + 169349246000,-52.055866702543433,L, + 171273669250,-52.732516468142698,L, + 175122515750,-54.085809169152057,L, + 177046939000,-54.762462349845912,L, + 178971362250,-55.439108700350594,L, + 180895785500,-56.115751635760688,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 192442325000,-60.175646814261697,L, + 194366748250,-60.852279504388036,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558871736595933,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256083786691491,L, + 211686557500,-62.369032292613909,L, + 215535404000,-58.594915644080409,L, + 219384250500,-54.820805825736073,L, + 221308673750,-52.933744086374737,L, + 223233097000,-51.046689177202573,L, + 225157520250,-49.159627437841237,L, + 227081943500,-47.272572528669066,L, + 234779636500,-39.724339231602066,L, + 238628483000,-35.950229413257730,L, + 240552906250,-34.063167673896395,L, + 244401752750,-30.289051025362891,L, + 246326176000,-28.401997823738018,L, + 250175022500,-24.627877760109929,L, + 252099445750,-22.740827973579638,L, + 254023869000,-20.853761111576425,L, + 255948292250,-18.966707909951552,L, + 257872715500,-17.079651293232093,L, + 259797138750,-15.192589553870755,L, + 261721562000,-13.305538059793175,L, + 263645985250,-11.418478881752776,L, + 265570408500,-9.531420557486026,L, + 267494831750,-7.644365648313858,L, + 269419255000,-5.757305616499814,L, + 271343678250,-3.870243023364832,L, + 273268101500,-1.983185979758550,L, + 275192524750,-0.096128002337342,L, + 277116948000,1.790920850378021,L, + 279041371250,3.677982589739358,L, + 280965794500,5.565038352685170,L, + 282890217750,7.452100945820153,L, + 284814641000,7.454199521442637,L, + 286739064250,7.455329063976626,L, + 288663487500,7.456456045189676,L, + 290587910750,7.457580465081788,L, + 292512334000,7.458707446294839,L, + 294436757250,7.459839550149767,L, + 296361180500,7.460961408720940,L, + 298285603750,7.462090097481282,L, + 300210027000,7.463215371147041,L, + 302134450250,7.464341498586445,L, + 305983296750,7.466598876107131,L, + 307907720000,7.467723295999242,L, + 309832143250,7.468851984759586,L, + 311756566500,7.469978965972636,L, + 313680989750,7.471105093412040,L, + 315605413000,7.472229513304153,L, + 317529836250,7.473359055838142,L, + 321378682750,7.475611310716950,L, + 325227529250,7.477865273143051,L, + 327151952500,7.478994815677040,L, + 329076375750,7.480121796890090,L, + 331000799000,7.481244509234910,L, + 332925222250,7.482374051768899,L, + 334849645500,7.483502740529242,L, + 336774068750,7.484626306647708,L, + 338698492000,7.485751580313465,L, + 340622915250,7.486881122847454,L, + 342547338500,7.488009811607798,L, + 344471761750,7.489134231499909,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739140987396,L, + 5773269750,0.737222492694855,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 13470962750,0.715156376361847,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507256984711,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 38488465000,0.643440902233124,L, + 40412888250,0.637924253940582,L, + 42337311500,0.632407724857330,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 63505967250,0.571725487709045,L, + 65430390500,0.566208958625793,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 76976930000,0.533109545707703,L, + 78901353250,0.527592897415161,L, + 84674623000,0.511043310165405,L, + 86599046250,0.505526721477509,L, + 88523469500,0.500010073184967,L, + 90447892750,0.494493573904037,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910690069199,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 107767702000,0.444844514131546,L, + 109692125250,0.439327836036682,L, + 111616548500,0.433811336755753,L, + 113540971750,0.428294748067856,L, + 117389818250,0.417261630296707,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678835868835,L, + 128936357750,0.384162247180939,L, + 130860781000,0.378645628690720,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612540721893,L, + 136634050750,0.362095922231674,L, + 138558474000,0.356579333543777,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 153953860000,0.312446832656860,L, + 155878283250,0.306930243968964,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830831050873,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246247991919518,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214874148369,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148638606071,L, + 192442325000,0.202115491032600,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049166083336,L, + 202064441250,0.174532651901245,L, + 203988864500,0.169016048312187,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.015925440937281,L, + 213610980750,0.016052583232522,L, + 215535404000,0.016179719939828,L, + 217459827250,0.016306860372424,L, + 219384250500,0.016434004530311,L, + 221308673750,0.016561143100262,L, + 225157520250,0.016815423965454,L, + 227081943500,0.016942566260695,L, + 229006366750,0.017069702968001,L, + 230930790000,0.017196841537952,L, + 232855213250,0.017323981970549,L, + 234779636500,0.017451120540500,L, + 236704059750,0.017578264698386,L, + 242477329500,0.017959685996175,L, + 244401752750,0.018086824566126,L, + 246326176000,0.018213966861367,L, + 257872715500,0.018976809456944,L, + 259797138750,0.019103948026896,L, + 261721562000,0.019231090322137,L, + 265570408500,0.019485367462039,L, + 267494831750,0.019612509757280,L, + 269419255000,0.019739650189877,L, + 271343678250,0.019866792485118,L, + 273268101500,0.019993929192424,L, + 275192524750,0.020121069625020,L, + 277116948000,0.020248211920261,L, + 282890217750,0.020629633218050,L, + 284814641000,0.207228913903236,L, + 286739064250,0.224859356880188,L, + 288663487500,0.242489755153656,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381069183350,L, + 298285603750,0.330641984939575,L, + 300210027000,0.348272353410721,L, + 304058873500,0.383533209562302,L, + 305983296750,0.401163697242737,L, + 307907720000,0.418794035911560,L, + 309832143250,0.436424523591995,L, + 313680989750,0.471685379743576,L, + 315605413000,0.489315867424011,L, + 317529836250,0.506946206092834,L, + 319454259500,0.524576663970947,L, + 321378682750,0.542207062244415,L, + 323303106000,0.559837579727173,L, + 325227529250,0.577467978000641,L, + 327151952500,0.595098435878754,L, + 329076375750,0.612728774547577,L, + 331000799000,0.630359292030334,L, + 332925222250,0.647989690303802,L, + 334849645500,0.665620148181915,L, + 338698492000,0.700880944728851,L, + 340622915250,0.718511402606964,L, + 342547338500,0.736141920089722,L, + 344471761750,0.753772258758545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 139 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255610466003,L, + 3848846500,0.742739140987396,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 15395386000,0.709639728069305,L, + 19244232500,0.698606550693512,L, + 21168655750,0.693090021610260,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056784629822,L, + 26941925500,0.676540374755859,L, + 28866348750,0.671023666858673,L, + 30790772000,0.665507197380066,L, + 38488465000,0.643440842628479,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891136169434,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 50035004500,0.610341429710388,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791723251343,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 65430390500,0.566208958625793,L, + 67354813750,0.560692310333252,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 73128083500,0.544142723083496,L, + 75052506750,0.538626074790955,L, + 76976930000,0.533109605312347,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076368331909,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043250560760,L, + 86599046250,0.505526721477509,L, + 90447892750,0.494493544101715,L, + 92372316000,0.488977044820786,L, + 96221162500,0.477943867444992,L, + 100070009000,0.466910749673843,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877631902695,L, + 105843278750,0.450360983610153,L, + 107767702000,0.444844454526901,L, + 111616548500,0.433811336755753,L, + 115465395000,0.422778159379959,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711894035339,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678776264191,L, + 128936357750,0.384162187576294,L, + 130860781000,0.378645658493042,L, + 132785204250,0.373129069805145,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546245574951,L, + 144331743750,0.340029627084732,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181771278381,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 219384250500,0.016849942505360,L, + 221308673750,0.017060274258256,L, + 225157520250,0.017480930313468,L, + 229006366750,0.017901590093970,L, + 232855213250,0.018322246149182,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953233957291,L, + 240552906250,0.019163563847542,L, + 242477329500,0.019373890012503,L, + 244401752750,0.019584218040109,L, + 246326176000,0.019794547930360,L, + 248250599250,0.020004879683256,L, + 250175022500,0.020215207710862,L, + 252099445750,0.020425533875823,L, + 255948292250,0.020846193656325,L, + 257872715500,0.021056521683931,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477183327079,L, + 263645985250,0.021687509492040,L, + 265570408500,0.021897839382291,L, + 267494831750,0.022108165547252,L, + 269419255000,0.022318497300148,L, + 271343678250,0.022528827190399,L, + 273268101500,0.022739153355360,L, + 275192524750,0.022949483245611,L, + 277116948000,0.023159811273217,L, + 280965794500,0.023580471053720,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524737000465,L, + 286739064250,0.256113380193710,L, + 294436757250,0.322467893362045,L, + 298285603750,0.355645090341568,L, + 300210027000,0.372233808040619,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999692916870,L, + 307907720000,0.438588291406631,L, + 309832143250,0.455176860094070,L, + 311756566500,0.471765547990799,L, + 313680989750,0.488354206085205,L, + 321378682750,0.554708719253540,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885916233063,L, + 327151952500,0.604474604129791,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829117298126,L, + 344471761750,0.753772258758545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255610466003,L, + 3848846500,0.742739081382751,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189494132996,L, + 11546539500,0.720672726631165,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123079776764,L, + 21168655750,0.693090021610260,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540315151215,L, + 28866348750,0.671023666858673,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407784461975,L, + 44261734750,0.626891195774078,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308311939240,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758724689484,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 76976930000,0.533109545707703,L, + 78901353250,0.527592897415161,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 88523469500,0.500010132789612,L, + 92372316000,0.488977015018463,L, + 94296739250,0.483460396528244,L, + 96221162500,0.477943897247314,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 101994432250,0.461394131183624,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 107767702000,0.444844484329224,L, + 109692125250,0.439327895641327,L, + 111616548500,0.433811336755753,L, + 113540971750,0.428294748067856,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261660099030,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162217378616,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 142407320500,0.345546245574951,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963361740112,L, + 153953860000,0.312446802854538,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413714885712,L, + 161651553000,0.290380537509918,L, + 163575976250,0.284864008426666,L, + 165500399500,0.279347419738770,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214889049530,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148623704910,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598947048187,L, + 196291171500,0.191082343459129,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532637000084,L, + 203988864500,0.169016063213348,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 215535404000,0.016429286450148,L, + 219384250500,0.016849946230650,L, + 225157520250,0.017480930313468,L, + 227081943500,0.017691262066364,L, + 229006366750,0.017901588231325,L, + 234779636500,0.018532577902079,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 242477329500,0.019373893737793,L, + 246326176000,0.019794549793005,L, + 250175022500,0.020215209573507,L, + 255948292250,0.020846193656325,L, + 259797138750,0.021266853436828,L, + 261721562000,0.021477181464434,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108169272542,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528825327754,L, + 273268101500,0.022739157080650,L, + 275192524750,0.022949486970901,L, + 277116948000,0.023159813135862,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524722099304,L, + 286739064250,0.256113380193710,L, + 288663487500,0.272701978683472,L, + 290587910750,0.289290636777878,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645179748535,L, + 300210027000,0.372233748435974,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405410975217819,L, + 305983296750,0.421999692916870,L, + 307907720000,0.438588321208954,L, + 309832143250,0.455176889896393,L, + 311756566500,0.471765637397766,L, + 313680989750,0.488354176282883,L, + 315605413000,0.504942774772644,L, + 317529836250,0.521531462669373,L, + 319454259500,0.538120031356812,L, + 321378682750,0.554708778858185,L, + 323303106000,0.571297347545624,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240429401398,L, + 336774068750,0.687417685985565,L, + 338698492000,0.704006433486938,L, + 342547338500,0.737183570861816,L, + 344471761750,0.753772258758545,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_042" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792774200439 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.016792774200439,L, + 1924423250,0.016792535781860,L, + 5773269750,0.016793012619019,L, + 7697693000,0.016792774200439,L, + 9622116250,0.016792774200439,L, + 11546539500,0.016792535781860,L, + 13470962750,0.016792774200439,L, + 15395386000,0.016792774200439,L, + 17319809250,0.016792535781860,L, + 19244232500,0.016793012619019,L, + 21168655750,0.016793251037598,L, + 23093079000,0.016793012619019,L, + 25017502250,0.016793012619019,L, + 26941925500,0.016792774200439,L, + 30790772000,0.016793251037598,L, + 32715195250,0.016793251037598,L, + 34639618500,0.016792535781860,L, + 36564041750,0.016792774200439,L, + 38488465000,0.016792774200439,L, + 40412888250,0.016793012619019,L, + 42337311500,0.016792774200439,L, + 44261734750,0.016792774200439,L, + 46186158000,0.016792535781860,L, + 48110581250,0.016792774200439,L, + 50035004500,0.016792297363281,L, + 51959427750,0.016792774200439,L, + 53883851000,0.016793012619019,L, + 57732697500,0.016792535781860,L, + 59657120750,0.016793251037598,L, + 61581544000,0.016792297363281,L, + 63505967250,0.016793251037598,L, + 65430390500,0.016792774200439,L, + 71203660250,0.016792774200439,L, + 73128083500,0.016792535781860,L, + 76976930000,0.016793012619019,L, + 78901353250,0.016793012619019,L, + 80825776500,0.016792297363281,L, + 84674623000,0.016792774200439,L, + 86599046250,0.016793251037598,L, + 88523469500,0.016792774200439,L, + 90447892750,0.016793012619019,L, + 94296739250,0.016793012619019,L, + 98145585750,0.016792535781860,L, + 100070009000,0.016792774200439,L, + 101994432250,0.016792535781860,L, + 103918855500,0.016792774200439,L, + 105843278750,0.016792774200439,L, + 107767702000,0.016792535781860,L, + 109692125250,0.016792535781860,L, + 111616548500,0.016792774200439,L, + 113540971750,0.016792774200439,L, + 115465395000,0.016793012619019,L, + 117389818250,0.016792535781860,L, + 119314241500,0.016792774200439,L, + 123163088000,0.016792774200439,L, + 125087511250,0.016793251037598,L, + 127011934500,0.016792774200439,L, + 128936357750,0.016793012619019,L, + 132785204250,0.016792535781860,L, + 134709627500,0.016793251037598,L, + 136634050750,0.016792774200439,L, + 138558474000,0.016792535781860,L, + 140482897250,0.016792535781860,L, + 142407320500,0.016793012619019,L, + 144331743750,0.016792774200439,L, + 146256167000,0.016793012619019,L, + 148180590250,0.016793012619019,L, + 150105013500,0.016793251037598,L, + 152029436750,0.016792774200439,L, + 186669055250,0.016792774200439,L, + 188593478500,0.016792535781860,L, + 190517901750,0.016793251037598,L, + 192442325000,0.016792774200439,L, + 194366748250,0.016792774200439,L, + 196291171500,0.016792535781860,L, + 198215594750,0.016793012619019,L, + 200140018000,0.016792774200439,L, + 202064441250,0.016793251037598,L, + 203988864500,0.016792774200439,L, + 205913287750,0.016792535781860,L, + 207837711000,0.016793251037598,L, + 211686557500,0.016792774200439,L, + 213610980750,0.016793012619019,L, + 215535404000,0.016792535781860,L, + 217459827250,0.016792774200439,L, + 219384250500,0.016793251037598,L, + 221308673750,0.016792774200439,L, + 223233097000,0.016793251037598,L, + 225157520250,0.016793012619019,L, + 227081943500,0.016792535781860,L, + 229006366750,0.016793251037598,L, + 230930790000,0.016792774200439,L, + 232855213250,0.016793012619019,L, + 234779636500,0.016792774200439,L, + 236704059750,0.016793251037598,L, + 238628483000,0.016792774200439,L, + 240552906250,0.016793012619019,L, + 242477329500,0.016793012619019,L, + 244401752750,0.016792774200439,L, + 246326176000,0.016793012619019,L, + 248250599250,0.016793012619019,L, + 250175022500,0.016792774200439,L, + 252099445750,0.016792774200439,L, + 255948292250,0.016793251037598,L, + 257872715500,0.016793251037598,L, + 259797138750,0.016792535781860,L, + 261721562000,0.016793012619019,L, + 265570408500,0.016792535781860,L, + 267494831750,0.016792774200439,L, + 271343678250,0.016792774200439,L, + 275192524750,0.016793251037598,L, + 277116948000,0.016792535781860,L, + 279041371250,0.016793251037598,L, + 280965794500,0.016792535781860,L, + 282890217750,0.016793012619019,L, + 284814641000,0.016792774200439,L, + 288663487500,0.016792774200439,L, + 290587910750,0.016793012619019,L, + 292512334000,0.016792774200439,L, + 294436757250,0.016793012619019,L, + 296361180500,0.016792774200439,L, + 300210027000,0.016792774200439,L, + 302134450250,0.016793012619019,L, + 304058873500,0.016792535781860,L, + 305983296750,0.016793012619019,L, + 307907720000,0.016792774200439,L, + 309832143250,0.016792774200439,L, + 311756566500,0.016792535781860,L, + 313680989750,0.016793012619019,L, + 317529836250,0.016792535781860,L, + 319454259500,0.016792774200439,L, + 321378682750,0.016792297363281,L, + 323303106000,0.016793012619019,L, + 329076375750,0.016793012619019,L, + 331000799000,0.016792535781860,L, + 332925222250,0.016792774200439,L, + 334849645500,0.016792535781860,L, + 336774068750,0.016793012619019,L, + 338698492000,0.016793012619019,L, + 340622915250,0.016792774200439,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058537483215332 + KeyVer: 4005 + KeyCount: 166 + Key: + 0,-0.058537483215332,L, + 1924423250,-0.058576107025146,L, + 3848846500,-0.058686256408691,L, + 5773269750,-0.058863162994385,L, + 7697693000,-0.059102058410645,L, + 9622116250,-0.059398174285889,L, + 11546539500,-0.059748172760010,L, + 13470962750,-0.060149669647217,L, + 15395386000,-0.060598373413086,L, + 17319809250,-0.061092376708984,L, + 19244232500,-0.061629295349121,L, + 21168655750,-0.062205791473389,L, + 23093079000,-0.062820434570312,L, + 25017502250,-0.063472270965576,L, + 26941925500,-0.064158916473389,L, + 28866348750,-0.064877033233643,L, + 30790772000,-0.065627574920654,L, + 32715195250,-0.066408634185791,L, + 34639618500,-0.067218303680420,L, + 36564041750,-0.068055629730225,L, + 38488465000,-0.068919658660889,L, + 40412888250,-0.069809913635254,L, + 42337311500,-0.070724487304688,L, + 44261734750,-0.071662425994873,L, + 46186158000,-0.072623252868652,L, + 48110581250,-0.073606014251709,L, + 50035004500,-0.074610233306885,L, + 51959427750,-0.075635433197021,L, + 53883851000,-0.076679706573486,L, + 55808274250,-0.077742576599121,L, + 57732697500,-0.078824520111084,L, + 59657120750,-0.079924106597900,L, + 61581544000,-0.081040382385254,L, + 63505967250,-0.082173347473145,L, + 65430390500,-0.083321094512939,L, + 67354813750,-0.084484577178955,L, + 69279237000,-0.085662364959717,L, + 71203660250,-0.086853027343750,L, + 73128083500,-0.088056087493896,L, + 75052506750,-0.089270591735840,L, + 76976930000,-0.090495586395264,L, + 78901353250,-0.091728687286377,L, + 80825776500,-0.092967987060547,L, + 82750199750,-0.094210147857666,L, + 84674623000,-0.095451831817627,L, + 86599046250,-0.096683979034424,L, + 88523469500,-0.097891807556152,L, + 90447892750,-0.099038124084473,L, + 92372316000,-0.099894046783447,L, + 94296739250,-0.099931240081787,L, + 96221162500,-0.099073886871338,L, + 98145585750,-0.097858905792236,L, + 100070009000,-0.096547126770020,L, + 101994432250,-0.095184803009033,L, + 103918855500,-0.093791007995605,L, + 105843278750,-0.092374324798584,L, + 107767702000,-0.090941429138184,L, + 109692125250,-0.089496612548828,L, + 111616548500,-0.088041782379150,L, + 113540971750,-0.086581230163574,L, + 115465395000,-0.085114002227783,L, + 117389818250,-0.083642959594727,L, + 119314241500,-0.082169055938721,L, + 121238664750,-0.080692768096924,L, + 123163088000,-0.079215526580811,L, + 125087511250,-0.077739238739014,L, + 127011934500,-0.076263427734375,L, + 128936357750,-0.074789047241211,L, + 130860781000,-0.073317527770996,L, + 132785204250,-0.071850776672363,L, + 134709627500,-0.070389747619629,L, + 136634050750,-0.068935871124268,L, + 138558474000,-0.067490577697754,L, + 140482897250,-0.066058158874512,L, + 142407320500,-0.064641952514648,L, + 144331743750,-0.063247203826904,L, + 146256167000,-0.061884403228760,L, + 148180590250,-0.060573101043701,L, + 150105013500,-0.059358596801758,L, + 152029436750,-0.058501720428467,L, + 180895785500,-0.058501720428467,L, + 182820208750,-0.057609081268311,L, + 184744632000,-0.054916858673096,L, + 186669055250,-0.050476074218750,L, + 188593478500,-0.044483661651611,L, + 190517901750,-0.037307739257812,L, + 192442325000,-0.029485702514648,L, + 194366748250,-0.021664619445801,L, + 196291171500,-0.014487266540527,L, + 198215594750,-0.008494853973389,L, + 200140018000,-0.004055023193359,L, + 202064441250,-0.001362800598145,L, + 203988864500,-0.000470638275146,L, + 205913287750,-0.000504970550537,L, + 207837711000,-0.000609397888184,L, + 209762134250,-0.000781536102295,L, + 211686557500,-0.001018524169922,L, + 213610980750,-0.001320838928223,L, + 215535404000,-0.001685619354248,L, + 217459827250,-0.002110481262207,L, + 219384250500,-0.002594470977783,L, + 221308673750,-0.003136157989502,L, + 223233097000,-0.003732204437256,L, + 225157520250,-0.004381656646729,L, + 227081943500,-0.005082130432129,L, + 229006366750,-0.005831241607666,L, + 230930790000,-0.006627082824707,L, + 232855213250,-0.007467269897461,L, + 234779636500,-0.008349418640137,L, + 236704059750,-0.009272098541260,L, + 238628483000,-0.010231971740723,L, + 240552906250,-0.011227130889893,L, + 242477329500,-0.012254714965820,L, + 244401752750,-0.013312816619873,L, + 246326176000,-0.014399051666260,L, + 248250599250,-0.015511512756348,L, + 250175022500,-0.016646862030029,L, + 252099445750,-0.017802715301514,L, + 254023869000,-0.018977165222168,L, + 255948292250,-0.020167350769043,L, + 257872715500,-0.021371364593506,L, + 259797138750,-0.022587299346924,L, + 261721562000,-0.023810863494873,L, + 263645985250,-0.025041103363037,L, + 265570408500,-0.026276111602783,L, + 267494831750,-0.027513027191162,L, + 269419255000,-0.028748989105225,L, + 271343678250,-0.029983043670654,L, + 273268101500,-0.031212329864502,L, + 275192524750,-0.032434940338135,L, + 277116948000,-0.033648490905762,L, + 279041371250,-0.034852027893066,L, + 280965794500,-0.036041736602783,L, + 282890217750,-0.037217617034912,L, + 284814641000,-0.038376331329346,L, + 286739064250,-0.039515972137451,L, + 288663487500,-0.040636539459229,L, + 290587910750,-0.041735172271729,L, + 292512334000,-0.042809963226318,L, + 294436757250,-0.043859481811523,L, + 296361180500,-0.044882774353027,L, + 298285603750,-0.045877933502197,L, + 300210027000,-0.046843051910400,L, + 302134450250,-0.047778129577637,L, + 304058873500,-0.048681259155273,L, + 305983296750,-0.049549579620361,L, + 307907720000,-0.050384521484375,L, + 309832143250,-0.051183223724365,L, + 311756566500,-0.051945686340332,L, + 313680989750,-0.052670478820801,L, + 315605413000,-0.053356170654297,L, + 317529836250,-0.054002285003662,L, + 319454259500,-0.054608345031738,L, + 321378682750,-0.055172920227051,L, + 323303106000,-0.055695533752441,L, + 325227529250,-0.056175231933594,L, + 327151952500,-0.056611537933350,L, + 329076375750,-0.057003498077393,L, + 331000799000,-0.057351589202881,L, + 332925222250,-0.057654380798340,L, + 334849645500,-0.057911396026611,L, + 336774068750,-0.058123111724854,L, + 338698492000,-0.058288574218750,L, + 340622915250,-0.058406829833984,L, + 342547338500,-0.058477401733398,L, + 344471761750,-0.058501720428467,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578061103820801 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,-0.578061103820801,L, + 90447892750,-0.578061103820801,L, + 92372316000,-0.557460546493530,L, + 94296739250,0.000370740890503,L, + 98145585750,0.015030145645142,L, + 100070009000,0.022360086441040,L, + 101994432250,0.029689788818359,L, + 103918855500,0.037019729614258,L, + 107767702000,0.051679134368896,L, + 109692125250,0.059009075164795,L, + 113540971750,0.073668479919434,L, + 115465395000,0.080998420715332,L, + 119314241500,0.095657825469971,L, + 121238664750,0.102987766265869,L, + 123163088000,0.110317468643188,L, + 125087511250,0.119968652725220,L, + 127011934500,0.129930019378662,L, + 128936357750,0.140169143676758,L, + 130860781000,0.150662660598755,L, + 132785204250,0.161394596099854,L, + 134709627500,0.172355413436890,L, + 136634050750,0.183540344238281,L, + 138558474000,0.194950580596924,L, + 140482897250,0.206594467163086,L, + 142407320500,0.218489646911621,L, + 144331743750,0.230666637420654,L, + 146256167000,0.243180751800537,L, + 148180590250,0.256135940551758,L, + 150105013500,0.269762039184570,L, + 152029436750,0.284850597381592,L, + 153953860000,0.306648254394531,L, + 155878283250,0.313348770141602,L, + 157802706500,0.320404529571533,L, + 159727129750,0.327870368957520,L, + 161651553000,0.335814952850342,L, + 163575976250,0.344329357147217,L, + 165500399500,0.353533267974854,L, + 167424822750,0.363593578338623,L, + 169349246000,0.374749660491943,L, + 171273669250,0.387361049652100,L, + 173198092500,0.402003765106201,L, + 175122515750,0.419637680053711,L, + 177046939000,0.441746711730957,L, + 178971362250,0.468574047088623,L, + 180895785500,0.492805004119873,L, + 182820208750,0.514571666717529,L, + 184744632000,0.539781093597412,L, + 186669055250,0.568211078643799,L, + 188593478500,0.599333763122559,L, + 190517901750,0.632256984710693,L, + 192442325000,0.665760517120361,L, + 194366748250,0.698447227478027,L, + 196291171500,0.728978157043457,L, + 198215594750,0.756290435791016,L, + 200140018000,0.779710292816162,L, + 202064441250,0.798940181732178,L, + 203988864500,0.813977241516113,L, + 205913287750,0.826800823211670,L, + 207837711000,0.839292049407959,L, + 209762134250,0.851451873779297,L, + 211686557500,0.863280773162842,L, + 213610980750,0.874779701232910,L, + 215535404000,0.885950565338135,L, + 217459827250,0.896793842315674,L, + 219384250500,0.907312393188477,L, + 221308673750,0.917508125305176,L, + 223233097000,0.927382946014404,L, + 225157520250,0.936940193176270,L, + 227081943500,0.946181774139404,L, + 229006366750,0.955111026763916,L, + 230930790000,0.963732242584229,L, + 232855213250,0.972047328948975,L, + 234779636500,0.980061531066895,L, + 236704059750,0.987777709960938,L, + 238628483000,0.995201110839844,L, + 240552906250,1.002335548400879,L, + 242477329500,1.009186267852783,L, + 244401752750,1.015757083892822,L, + 246326176000,1.022053718566895,L, + 248250599250,1.028081893920898,L, + 250175022500,1.033845901489258,L, + 252099445750,1.039351940155029,L, + 254023869000,1.044605255126953,L, + 255948292250,1.049612045288086,L, + 257872715500,1.054378032684326,L, + 259797138750,1.058909416198730,L, + 261721562000,1.063211917877197,L, + 263645985250,1.067291736602783,L, + 265570408500,1.071156024932861,L, + 267494831750,1.074810028076172,L, + 269419255000,1.078260898590088,L, + 271343678250,1.081513881683350,L, + 273268101500,1.084576606750488,L, + 275192524750,1.087455272674561,L, + 277116948000,1.090156078338623,L, + 279041371250,1.092685699462891,L, + 280965794500,1.095049858093262,L, + 282890217750,1.097256183624268,L, + 284814641000,1.099309921264648,L, + 286739064250,1.101217269897461,L, + 288663487500,1.102985382080078,L, + 290587910750,1.104619979858398,L, + 292512334000,1.106127738952637,L, + 294436757250,1.107513427734375,L, + 296361180500,1.108784198760986,L, + 298285603750,1.109944820404053,L, + 300210027000,1.111001968383789,L, + 302134450250,1.111961364746094,L, + 304058873500,1.112827777862549,L, + 305983296750,1.113606929779053,L, + 307907720000,1.114305019378662,L, + 309832143250,1.114925861358643,L, + 311756566500,1.115475654602051,L, + 313680989750,1.115958690643311,L, + 315605413000,1.116380691528320,L, + 317529836250,1.116745471954346,L, + 319454259500,1.117058277130127,L, + 321378682750,1.117323398590088,L, + 323303106000,1.117545127868652,L, + 325227529250,1.117727756500244,L, + 327151952500,1.117876052856445,L, + 329076375750,1.117992401123047,L, + 331000799000,1.118083000183105,L, + 332925222250,1.118149757385254,L, + 334849645500,1.118197441101074,L, + 336774068750,1.118228435516357,L, + 338698492000,1.118247032165527,L, + 340622915250,1.118256568908691,L, + 342547338500,1.118260383605957,L, + 344471761750,1.118260860443115,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543798508332110,L, + 11546539500,58.034833301950997,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800556647228937,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304834011457501,L, + 21168655750,54.467708951309021,L, + 23093079000,53.575119340005521,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634304011876267,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501724292610000,L, + 32715195250,48.368804230076201,L, + 34639618500,47.193970711700672,L, + 36564041750,45.978948360248850,L, + 38488465000,44.725366175837777,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108488478377872,L, + 44261734750,40.747966022132061,L, + 46186158000,39.354440091816798,L, + 48110581250,37.929140121482682,L, + 50035004500,36.473227243288612,L, + 51959427750,34.987794287501785,L, + 53883851000,33.473940914578577,L, + 55808274250,31.932688237799908,L, + 57732697500,30.365064200635853,L, + 59657120750,28.772083086178164,L, + 61581544000,27.154728441667316,L, + 63505967250,25.514029918120695,L, + 65430390500,23.851013751461085,L, + 67354813750,22.166765941766524,L, + 69279237000,20.462449328743201,L, + 71203660250,18.739313837009227,L, + 73128083500,16.998795513837596,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472537038773392,L, + 78901353250,11.691309934374898,L, + 80825776500,9.902205060542451,L, + 82750199750,8.109934394029708,L, + 84674623000,6.321669206578348,L, + 86599046250,4.549404591031366,L, + 88523469500,2.816497233029234,L, + 90447892750,1.182278531292534,L, + 92372316000,0.000309185366264,L, + 94296739250,0.000001885382741,L, + 96221162500,1.237622273476599,L, + 98145585750,2.992587834124961,L, + 100070009000,4.887326065783146,L, + 101994432250,6.855267917087896,L, + 103918855500,8.869396788220675,L, + 105843278750,10.915504605047406,L, + 107767702000,12.984964838646379,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172644318781682,L, + 113540971750,19.283683328953046,L, + 115465395000,21.402729028378950,L, + 117389818250,23.527766511254235,L, + 119314241500,25.657098475570162,L, + 121238664750,27.789205204236399,L, + 125087511250,32.056113171196444,L, + 127011934500,34.188214777220807,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442592762148479,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672672349103870,L, + 136634050750,44.773269707581598,L, + 138558474000,46.860350121691880,L, + 140482897250,48.929808647743563,L, + 142407320500,50.975918172117588,L, + 144331743750,52.990041920608490,L, + 146256167000,54.957990175215585,L, + 148180590250,56.852725632109419,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866314376941432,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709842739436795,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932197382440918,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291802346939491,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371721224226732,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507408596087046,L, + 223233097000,106.004809126012390,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389617483537933,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012767460081221,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126541252702253,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210401149140594,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814208029954443,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925306720802752,L, + 342547338500,59.865351320268466,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443355534918460 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.443355534918460,L, + 1924423250,-20.458233394478018,L, + 3848846500,-20.501318227762397,L, + 5773269750,-20.570499506318065,L, + 7697693000,-20.663916003596192,L, + 9622116250,-20.779937011932450,L, + 11546539500,-20.917095748202570,L, + 13470962750,-21.074077400991332,L, + 15395386000,-21.249710592856079,L, + 17319809250,-21.442934936928172,L, + 19244232500,-21.652782253892756,L, + 21168655750,-21.878378279536076,L, + 23093079000,-22.118911928894192,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923117184790556,L, + 30790772000,-23.216630903993092,L, + 32715195250,-23.521935237250347,L, + 34639618500,-23.838534995847493,L, + 36564041750,-24.165962311826384,L, + 38488465000,-24.503780053080146,L, + 40412888250,-24.851585238447743,L, + 42337311500,-25.208988547146486,L, + 44261734750,-25.575629686697660,L, + 46186158000,-25.951160317453589,L, + 48110581250,-26.335254297881413,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127906288796716,L, + 53883851000,-27.535858119995360,L, + 55808274250,-27.951201923423238,L, + 57732697500,-28.373652538682503,L, + 59657120750,-28.802938465753652,L, + 61581544000,-29.238789912164464,L, + 63505967250,-29.680931962800848,L, + 65430390500,-30.129081164812252,L, + 67354813750,-30.582967725726458,L, + 69279237000,-31.042250136084963,L, + 71203660250,-31.506603961902201,L, + 73128083500,-31.975646712584641,L, + 75052506750,-32.448931010741653,L, + 76976930000,-32.925917271428808,L, + 78901353250,-33.405929305918278,L, + 80825776500,-33.888065529239611,L, + 82750199750,-34.371052111112618,L, + 84674623000,-34.852962938191347,L, + 86599046250,-35.330557085714631,L, + 88523469500,-35.797543949456902,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556459928514265,L, + 94296739250,-36.556545305878892,L, + 96221162500,-36.223027168707645,L, + 98145585750,-35.750094625292888,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709163550500683,L, + 103918855500,-34.166385492633481,L, + 105843278750,-33.614994566222897,L, + 107767702000,-33.057309620492155,L, + 109692125250,-32.494877693288267,L, + 111616548500,-31.928798445067592,L, + 113540971750,-31.359905158908877,L, + 115465395000,-30.788860363161611,L, + 117389818250,-30.216193397486467,L, + 119314241500,-29.642372129841597,L, + 121238664750,-29.067802956482609,L, + 123163088000,-28.492870075550321,L, + 125087511250,-27.917940609712616,L, + 127011934500,-27.343374851448214,L, + 128936357750,-26.769556998897926,L, + 130860781000,-26.196890033222786,L, + 132785204250,-25.625840114833643,L, + 134709627500,-25.056950243769514,L, + 136634050750,-24.490870995548839,L, + 138558474000,-23.928437360797655,L, + 140482897250,-23.370750707519623,L, + 142407320500,-22.819358073561748,L, + 144331743750,-22.276585138336419,L, + 146256167000,-21.746255100231540,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762716397487580,L, + 152029436750,-20.429199967863628,L, + 153953860000,-20.429199967863628,L, + 155878283250,-20.421562108824272,L, + 157802706500,-20.389152861212608,L, + 159727129750,-20.328217328532428,L, + 161651553000,-20.237252869166326,L, + 163575976250,-20.114739766023984,L, + 165500399500,-19.958842405765960,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537332649064862,L, + 171273669250,-19.265549176706688,L, + 173198092500,-18.947798531234398,L, + 175122515750,-18.578937580202975,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660579372708352,L, + 180895785500,-17.092459605473142,L, + 182820208750,-16.184841870448349,L, + 184744632000,-14.682717639877328,L, + 186669055250,-12.614082151620634,L, + 188593478500,-10.056814076368283,L, + 190517901750,-7.148864879220941,L, + 192442325000,-4.084527401968980,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499820243636,L, + 198215594750,3.836406266216637,L, + 200140018000,5.470570433161683,L, + 202064441250,6.454279463748071,L, + 203988864500,6.778357852599547,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713146194612120,L, + 209762134250,6.632681443547608,L, + 211686557500,6.521289595921323,L, + 213610980750,6.379743316883121,L, + 215535404000,6.208854545170587,L, + 217459827250,6.009456563862459,L, + 219384250500,5.782419368304269,L, + 221308673750,5.528640274598225,L, + 223233097000,5.249043492716392,L, + 225157520250,4.944579272727050,L, + 227081943500,4.616224758568328,L, + 229006366750,4.264978011632696,L, + 230930790000,3.891859718314245,L, + 232855213250,3.497912336235047,L, + 234779636500,3.084193050612571,L, + 236704059750,2.651776975910859,L, + 238628483000,2.201754381076171,L, + 240552906250,1.735226954277288,L, + 242477329500,1.253306522245041,L, + 244401752750,0.757112649033927,L, + 246326176000,0.247773649878319,L, + 248250599250,-0.273580879326940,L, + 250175022500,-0.805817447344748,L, + 252099445750,-1.347804537289559,L, + 254023869000,-1.898409031450239,L, + 255948292250,-2.456504855748237,L, + 257872715500,-3.020971538994555,L, + 259797138750,-3.590695333467659,L, + 261721562000,-4.164572096399537,L, + 263645985250,-4.741510918513693,L, + 265570408500,-5.320431349260795,L, + 267494831750,-5.900267879130323,L, + 269419255000,-6.479974635405622,L, + 271343678250,-7.058523247729782,L, + 273268101500,-7.634891322161418,L, + 275192524750,-8.208102995422868,L, + 277116948000,-8.777176427820940,L, + 279041371250,-9.341166491929240,L, + 280965794500,-9.899150258436167,L, + 282890217750,-10.450228703692222,L, + 284814641000,-10.993528417257290,L, + 286739064250,-11.528192210390534,L, + 288663487500,-12.053405583033433,L, + 290587910750,-12.568365134184866,L, + 292512334000,-13.072304175110499,L, + 294436757250,-13.564478215190801,L, + 296361180500,-14.044178622299388,L, + 298285603750,-14.510709570914560,L, + 300210027000,-14.963411094007769,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232349251220302,L, + 307907720000,-16.623678109526452,L, + 309832143250,-16.998281542102553,L, + 311756566500,-17.355666067781080,L, + 313680989750,-17.695350158225544,L, + 315605413000,-18.016893266234479,L, + 317529836250,-18.319865089890179,L, + 319454259500,-18.603874600862657,L, + 321378682750,-18.868541016105684,L, + 323303106000,-19.113519411066179,L, + 325227529250,-19.338469983832933,L, + 327151952500,-19.543080253251418,L, + 329076375750,-19.727087257038590,L, + 331000799000,-19.890207542343894,L, + 332925222250,-20.032212297830132,L, + 334849645500,-20.152845391403432,L, + 336774068750,-20.251939483429126,L, + 338698492000,-20.329277715401069,L, + 340622915250,-20.384706408062936,L, + 342547338500,-20.418053099138184,L, + 344471761750,-20.429201675410919,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741421658681098 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-23.741421658681098,L, + 1924423250,-23.712961967956989,L, + 3848846500,-23.630540367695268,L, + 5773269750,-23.498193499695414,L, + 7697693000,-23.319457694400192,L, + 9622116250,-23.097485084111561,L, + 11546539500,-22.835057263368999,L, + 13470962750,-22.534677496503317,L, + 15395386000,-22.198603161035201,L, + 17319809250,-21.828850870317090,L, + 19244232500,-21.427269898066768,L, + 21168655750,-20.995538763272762,L, + 23093079000,-20.535187428309147,L, + 25017502250,-20.047622912144952,L, + 26941925500,-19.534130997891424,L, + 28866348750,-18.995905261106021,L, + 30790772000,-18.434050484886995,L, + 32715195250,-17.849580952326090,L, + 34639618500,-17.243463135190858,L, + 36564041750,-16.616569590147769,L, + 38488465000,-15.969725062539105,L, + 40412888250,-15.303723561855874,L, + 42337311500,-14.619295918339267,L, + 44261734750,-13.917114051848884,L, + 46186158000,-13.197850736017969,L, + 48110581250,-12.462116419003593,L, + 50035004500,-11.710505327263546,L, + 51959427750,-10.943583512725288,L, + 53883851000,-10.161897390522425,L, + 55808274250,-9.365973738994690,L, + 57732697500,-8.556330798745359,L, + 59657120750,-7.733470588678425,L, + 61581544000,-6.897901957887054,L, + 63505967250,-6.050132047917120,L, + 65430390500,-5.190672269182724,L, + 67354813750,-4.320063914175593,L, + 69279237000,-3.438883280106943,L, + 71203660250,-2.547742522681136,L, + 73128083500,-1.647338534636924,L, + 75052506750,-0.738487416858416,L, + 76976930000,0.177850228580649,L, + 78901353250,1.100451904540547,L, + 80825776500,2.027703018334513,L, + 82750199750,2.957318231354947,L, + 84674623000,3.885835918353125,L, + 86599046250,4.807456821836894,L, + 88523469500,5.710878686277189,L, + 90447892750,6.567330193569020,L, + 92372316000,7.204924937494209,L, + 94296739250,7.229656198705144,L, + 96221162500,6.588602817738995,L, + 98145585750,5.679578063745181,L, + 100070009000,4.698155865870276,L, + 101994432250,3.678812884610336,L, + 103918855500,2.635545885121993,L, + 105843278750,1.575720479373152,L, + 107767702000,0.503790644393744,L, + 109692125250,-0.577260267891968,L, + 111616548500,-1.665315912697489,L, + 113540971750,-2.758778079117890,L, + 115465395000,-3.856386277086188,L, + 117389818250,-4.957099009475665,L, + 119314241500,-6.060041798629148,L, + 121238664750,-7.164411670432338,L, + 123163088000,-8.269486759267330,L, + 125087511250,-9.374557579234091,L, + 127011934500,-10.478928304810928,L, + 128936357750,-11.581867251983002,L, + 130860781000,-12.682582972580240,L, + 132785204250,-13.780193518426065,L, + 134709627500,-14.873653870577469,L, + 136634050750,-15.961709835548106,L, + 138558474000,-17.042758026430320,L, + 140482897250,-18.114687914770581,L, + 142407320500,-19.174516415448892,L, + 144331743750,-20.217776584748066,L, + 146256167000,-21.237124261763057,L, + 148180590250,-22.218543898317026,L, + 150105013500,-23.127573774952715,L, + 152029436750,-23.768629717239804,L, + 153953860000,-23.768631424787095,L, + 155878283250,-23.769410066352478,L, + 157802706500,-23.772721000552636,L, + 159727129750,-23.778945010433802,L, + 161651553000,-23.788227237515834,L, + 163575976250,-23.800740144075281,L, + 165500399500,-23.816664730125144,L, + 167424822750,-23.836222976813445,L, + 169349246000,-23.859706874727209,L, + 171273669250,-23.887461348419514,L, + 173198092500,-23.919909869618905,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001112281113780,L, + 178971362250,-24.051355152648320,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184120369734838,L, + 184744632000,-24.283374971206026,L, + 186669055250,-24.405345074309356,L, + 188593478500,-24.545995744792641,L, + 190517901750,-24.698665840667839,L, + 192442325000,-24.854322436757620,L, + 194366748250,-25.002756107800124,L, + 196291171500,-25.134232126680804,L, + 198215594750,-25.241155323042616,L, + 200140018000,-25.318754809750310,L, + 202064441250,-25.365073737606686,L, + 203988864500,-25.380229927374923,L, + 205913287750,-25.379258332965488,L, + 207837711000,-25.376369162946578,L, + 209762134250,-25.371605106000501,L, + 211686557500,-25.365005435714984,L, + 213610980750,-25.356621378508805,L, + 215535404000,-25.346499038158864,L, + 217459827250,-25.334684518442049,L, + 219384250500,-25.321237583513607,L, + 221308673750,-25.306207752245015,L, + 223233097000,-25.289646251055050,L, + 225157520250,-25.271609429004364,L, + 227081943500,-25.252162172890074,L, + 229006366750,-25.231355709130952,L, + 230930790000,-25.209253216976823,L, + 232855213250,-25.185922998319384,L, + 234779636500,-25.161412864482831,L, + 236704059750,-25.135796240000733,L, + 238628483000,-25.109141426764797,L, + 240552906250,-25.081511604024843,L, + 242477329500,-25.052959705746940,L, + 244401752750,-25.023574524390295,L, + 246326176000,-24.993398748637219,L, + 248250599250,-24.962517755852346,L, + 250175022500,-24.930994725285490,L, + 252099445750,-24.898889421091891,L, + 254023869000,-24.866273560257834,L, + 255948292250,-24.833213737127728,L, + 257872715500,-24.799781668687856,L, + 259797138750,-24.766033703998872,L, + 261721562000,-24.732041560047058,L, + 263645985250,-24.697870123629535,L, + 265570408500,-24.663577451354243,L, + 267494831750,-24.629233552660175,L, + 269419255000,-24.594891361513397,L, + 271343678250,-24.560624302447494,L, + 273268101500,-24.526487016975821,L, + 275192524750,-24.492530731517149,L, + 277116948000,-24.458820332868601,L, + 279041371250,-24.425417292732700,L, + 280965794500,-24.392360884697180,L, + 282890217750,-24.359722825748321,L, + 284814641000,-24.327540681926560,L, + 286739064250,-24.295869094745257,L, + 288663487500,-24.264757583075891,L, + 290587910750,-24.234253958242657,L, + 292512334000,-24.204404324022455,L, + 294436757250,-24.175251369097587,L, + 296361180500,-24.146839489697669,L, + 298285603750,-24.119204544315838,L, + 300210027000,-24.092387514087115,L, + 302134450250,-24.066427672599225,L, + 304058873500,-24.041367708534484,L, + 305983296750,-24.017224697365815,L, + 307907720000,-23.994048157964702,L, + 309832143250,-23.971855165804072,L, + 311756566500,-23.950684994471647,L, + 313680989750,-23.930563257176818,L, + 315605413000,-23.911518982223559,L, + 317529836250,-23.893576075273959,L, + 319454259500,-23.876753319348243,L, + 321378682750,-23.861074620108500,L, + 323303106000,-23.846562175669536,L, + 325227529250,-23.833239891693445,L, + 327151952500,-23.821119721011275,L, + 329076375750,-23.810218739095951,L, + 331000799000,-23.800559144062277,L, + 332925222250,-23.792142643457538,L, + 334849645500,-23.785001680680303,L, + 336774068750,-23.779129425541392,L, + 338698492000,-23.774548076155611,L, + 340622915250,-23.771267877806718,L, + 342547338500,-23.769287122947418,L, + 344471761750,-23.768634839881681,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941902161 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941902161,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853182771,L, + 5773269750,0.000044747303036,L, + 7697693000,0.000044604319555,L, + 9622116250,0.000044426742534,L, + 11546539500,0.000044216816605,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707725126,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377367208,L, + 25017502250,0.000041987466830,L, + 26941925500,0.000041576859076,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229970182,L, + 34639618500,0.000039745398681,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727204810,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647852878,L, + 44261734750,0.000037086694647,L, + 46186158000,0.000036511926737,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323548218,L, + 51959427750,0.000034710868931,L, + 53883851000,0.000034086471715,L, + 55808274250,0.000033450774936,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147159800,L, + 61581544000,0.000031480074540,L, + 63505967250,0.000030803363188,L, + 65430390500,0.000030117449569,L, + 67354813750,0.000029422772059,L, + 69279237000,0.000028719818147,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291232982,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836823625,L, + 78901353250,0.000025102159270,L, + 80825776500,0.000024364246201,L, + 82750199750,0.000023625036192,L, + 84674623000,0.000022887483283,L, + 86599046250,0.000022156533305,L, + 88523469500,0.000021441830540,L, + 90447892750,0.000020767845854,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565656304359,L, + 98145585750,0.245429649949074,L, + 100070009000,0.254731386899948,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518353700638,L, + 107767702000,0.278088837862015,L, + 109692125250,0.282116144895554,L, + 111616548500,0.285697191953659,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787832975388,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296752989292145,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840198993683,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681288242340,L, + 130860781000,0.307010561227798,L, + 132785204250,0.308217525482178,L, + 134709627500,0.309312224388123,L, + 136634050750,0.310304522514343,L, + 138558474000,0.311203896999359,L, + 140482897250,0.312020361423492,L, + 142407320500,0.312765032052994,L, + 144331743750,0.313452214002609,L, + 146256167000,0.314102530479431,L, + 148180590250,0.314752727746964,L, + 150105013500,0.315492510795593,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999149560928,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450118303299,L, + 163575976250,0.323262542486191,L, + 165500399500,0.322943359613419,L, + 167424822750,0.322556555271149,L, + 169349246000,0.322150558233261,L, + 171273669250,0.321765452623367,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198940277100,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136683225632,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961014747620,L, + 184744632000,0.351049631834030,L, + 186669055250,0.387221604585648,L, + 188593478500,0.435898840427399,L, + 190517901750,0.494094908237457,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323055267334,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784998953342438,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418446063995,L, + 209762134250,0.788208365440369,L, + 211686557500,0.785148978233337,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568055152893,L, + 217459827250,0.771091699600220,L, + 219384250500,0.764856040477753,L, + 221308673750,0.757886111736298,L, + 223233097000,0.750207066535950,L, + 225157520250,0.741845011711121,L, + 227081943500,0.732826769351959,L, + 229006366750,0.723180055618286,L, + 230930790000,0.712932407855988,L, + 232855213250,0.702112555503845,L, + 234779636500,0.690749883651733,L, + 236704059750,0.678873717784882,L, + 238628483000,0.666514039039612,L, + 240552906250,0.653700828552246,L, + 242477329500,0.640465021133423,L, + 244401752750,0.626837193965912,L, + 246326176000,0.612848341464996,L, + 248250599250,0.598529458045959,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026172161102,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523072957992554,L, + 259797138750,0.507425546646118,L, + 261721562000,0.491664171218872,L, + 263645985250,0.475818723440170,L, + 265570408500,0.459918707609177,L, + 267494831750,0.443993687629700,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182450294495,L, + 273268101500,0.396352618932724,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980071783066,L, + 279041371250,0.349490135908127,L, + 280965794500,0.334165215492249,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108381271362,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855823755264,L, + 292512334000,0.247015208005905,L, + 294436757250,0.233497723937035,L, + 296361180500,0.220322877168655,L, + 298285603750,0.207509785890579,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040380477905,L, + 304058873500,0.171418055891991,L, + 305983296750,0.160225331783295,L, + 307907720000,0.149477660655975,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373714327812,L, + 313680989750,0.120044350624084,L, + 315605413000,0.111213266849518,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091879367828,L, + 321378682750,0.087822899222374,L, + 323303106000,0.081094793975353,L, + 325227529250,0.074916541576385,L, + 327151952500,0.069296777248383,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763073921204,L, + 332925222250,0.055863022804260,L, + 334849645500,0.052549600601196,L, + 336774068750,0.049828287214041,L, + 338698492000,0.047704104334116,L, + 340622915250,0.046181917190552,L, + 342547338500,0.045265793800354,L, + 344471761750,0.044959723949432,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520822525 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520822525,L, + 1924423250,0.000028513211873,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455802749,L, + 7697693000,0.000028408023354,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278542231,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009613743,L, + 19244232500,0.000027902298825,L, + 21168655750,0.000027786925784,L, + 23093079000,0.000027663912988,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396430596,L, + 28866348750,0.000027252628570,L, + 30790772000,0.000027102521926,L, + 32715195250,0.000026946383514,L, + 34639618500,0.000026784469810,L, + 36564041750,0.000026617017284,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266374334,L, + 42337311500,0.000026083595003,L, + 44261734750,0.000025896091756,L, + 46186158000,0.000025704039217,L, + 48110581250,0.000025507604732,L, + 50035004500,0.000025306953830,L, + 51959427750,0.000025102237487,L, + 53883851000,0.000024893601221,L, + 55808274250,0.000024681188734,L, + 57732697500,0.000024465143724,L, + 59657120750,0.000024245600798,L, + 61581544000,0.000024022703656,L, + 63505967250,0.000023796586902,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100390536,L, + 71203660250,0.000022862917831,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891590222,L, + 80825776500,0.000021645024390,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151581677,L, + 86599046250,0.000020907338694,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443327230,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919052243233,L, + 98145585750,0.245930254459381,L, + 100070009000,0.255280941724777,L, + 101994432250,0.262665122747421,L, + 103918855500,0.268771350383759,L, + 105843278750,0.273961097002029,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868585109711,L, + 113540971750,0.288967877626419,L, + 115465395000,0.291741728782654,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479731798172,L, + 121238664750,0.298507720232010,L, + 123163088000,0.300342172384262,L, + 125087511250,0.302003324031830,L, + 127011934500,0.303509056568146,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115329265594,L, + 132785204250,0.307243078947067,L, + 134709627500,0.308270841836929,L, + 136634050750,0.309211075305939,L, + 138558474000,0.310076862573624,L, + 140482897250,0.310882627964020,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149780035019,L, + 148180590250,0.313986390829086,L, + 150105013500,0.315037369728088,L, + 152029436750,0.316851437091827,L, + 153953860000,0.316844671964645,L, + 155878283250,0.317553371191025,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131387233734,L, + 161651553000,0.317930340766907,L, + 163575976250,0.317365050315857,L, + 165500399500,0.316432714462280,L, + 167424822750,0.315173476934433,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128514051437,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460818767548,L, + 177046939000,0.308580935001373,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893633842468,L, + 182820208750,0.314245015382767,L, + 184744632000,0.333418756723404,L, + 186669055250,0.365034878253937,L, + 188593478500,0.407707035541534,L, + 190517901750,0.458806812763214,L, + 192442325000,0.514501214027405,L, + 194366748250,0.570195496082306,L, + 196291171500,0.621295332908630,L, + 198215594750,0.663967490196228,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757382869720,L, + 203988864500,0.721108734607697,L, + 205913287750,0.720690786838531,L, + 207837711000,0.719448924064636,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565634727478,L, + 213610980750,0.710962831974030,L, + 215535404000,0.706613302230835,L, + 217459827250,0.701538145542145,L, + 219384250500,0.695759415626526,L, + 221308673750,0.689300000667572,L, + 223233097000,0.682183504104614,L, + 225157520250,0.674434065818787,L, + 227081943500,0.666076540946960,L, + 229006366750,0.657136380672455,L, + 230930790000,0.647639513015747,L, + 232855213250,0.637612462043762,L, + 234779636500,0.627082228660583,L, + 236704059750,0.616076052188873,L, + 238628483000,0.604621708393097,L, + 240552906250,0.592747390270233,L, + 242477329500,0.580481231212616,L, + 244401752750,0.567851722240448,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617751121521,L, + 250175022500,0.528070926666260,L, + 252099445750,0.514275848865509,L, + 254023869000,0.500261485576630,L, + 255948292250,0.486056447029114,L, + 257872715500,0.471689224243164,L, + 259797138750,0.457188189029694,L, + 261721562000,0.442581474781036,L, + 263645985250,0.427896797657013,L, + 265570408500,0.413161695003510,L, + 267494831750,0.398403346538544,L, + 269419255000,0.383648246526718,L, + 271343678250,0.368922650814056,L, + 273268101500,0.354252457618713,L, + 275192524750,0.339662730693817,L, + 277116948000,0.325178265571594,L, + 279041371250,0.310823142528534,L, + 280965794500,0.296620965003967,L, + 282890217750,0.282594501972198,L, + 284814641000,0.268766105175018,L, + 286739064250,0.255157351493835,L, + 288663487500,0.241789340972900,L, + 290587910750,0.228682175278664,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328371047974,L, + 296361180500,0.191118702292442,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721793055534,L, + 302134450250,0.156567454338074,L, + 304058873500,0.145796656608582,L, + 305983296750,0.135423958301544,L, + 307907720000,0.125463604927063,L, + 309832143250,0.115928888320923,L, + 311756566500,0.106832444667816,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002477169037,L, + 317529836250,0.082290880382061,L, + 319454259500,0.075062155723572,L, + 321378682750,0.068325698375702,L, + 323303106000,0.062090396881104,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156759262085,L, + 329076375750,0.046473443508148,L, + 331000799000,0.042321562767029,L, + 332925222250,0.038707256317139,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114552497864,L, + 338698492000,0.031146049499512,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886198997498,L, + 344471761750,0.028602691367269,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378898797 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378898797,L, + 1924423250,0.000042358497012,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204526835,L, + 7697693000,0.000042076404497,L, + 9622116250,0.000041917286580,L, + 11546539500,0.000041729177610,L, + 13470962750,0.000041513874748,L, + 15395386000,0.000041272989620,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720184188,L, + 21168655750,0.000040410785004,L, + 23093079000,0.000040080889448,L, + 25017502250,0.000039731516154,L, + 26941925500,0.000039363574615,L, + 28866348750,0.000038977941585,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156671508,L, + 34639618500,0.000037722460547,L, + 36564041750,0.000037273399357,L, + 38488465000,0.000036810080928,L, + 40412888250,0.000036333080061,L, + 42337311500,0.000035842906073,L, + 44261734750,0.000035340064642,L, + 46186158000,0.000034825028706,L, + 48110581250,0.000034298253013,L, + 50035004500,0.000033760159567,L, + 51959427750,0.000033211159462,L, + 53883851000,0.000032651649235,L, + 55808274250,0.000032082018151,L, + 57732697500,0.000031502637285,L, + 59657120750,0.000030913884984,L, + 61581544000,0.000030316130506,L, + 63505967250,0.000029709744922,L, + 65430390500,0.000029095115679,L, + 67354813750,0.000028472632039,L, + 69279237000,0.000027842739655,L, + 71203660250,0.000027205891456,L, + 73128083500,0.000026562620405,L, + 75052506750,0.000025913532227,L, + 76976930000,0.000025259367249,L, + 78901353250,0.000024601054974,L, + 80825776500,0.000023939832317,L, + 82750199750,0.000023277447326,L, + 84674623000,0.000022616546630,L, + 86599046250,0.000021961561288,L, + 88523469500,0.000021321133318,L, + 90447892750,0.000020717199732,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232568249106407,L, + 98145585750,0.245435804128647,L, + 100070009000,0.254741221666336,L, + 101994432250,0.262134104967117,L, + 103918855500,0.268283218145370,L, + 105843278750,0.273539364337921,L, + 107767702000,0.278113365173340,L, + 109692125250,0.282144129276276,L, + 111616548500,0.285728603601456,L, + 113540971750,0.288937807083130,L, + 115465395000,0.291825532913208,L, + 117389818250,0.294433921575546,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940479755402,L, + 123163088000,0.300888657569885,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304271012544632,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066202163696,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369474649429,L, + 136634050750,0.310361951589584,L, + 138558474000,0.311260938644409,L, + 140482897250,0.312076270580292,L, + 142407320500,0.312819033861160,L, + 144331743750,0.313503116369247,L, + 146256167000,0.314148783683777,L, + 148180590250,0.314791977405548,L, + 150105013500,0.315520226955414,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319212585687637,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968743085861,L, + 159727129750,0.318790256977081,L, + 161651553000,0.318605095148087,L, + 163575976250,0.318420678377151,L, + 165500399500,0.318241685628891,L, + 167424822750,0.318071454763412,L, + 169349246000,0.317913055419922,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642748355865,L, + 175122515750,0.317536920309067,L, + 177046939000,0.317455202341080,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382931709290,L, + 182820208750,0.324425876140594,L, + 184744632000,0.345687240362167,L, + 186669055250,0.380745738744736,L, + 188593478500,0.428064048290253,L, + 190517901750,0.484727591276169,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244359493256,L, + 196291171500,0.664907753467560,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284650802612,L, + 202064441250,0.768545925617218,L, + 203988864500,0.775588989257812,L, + 205913287750,0.775146543979645,L, + 207837711000,0.773831605911255,L, + 209762134250,0.771663129329681,L, + 211686557500,0.768661260604858,L, + 213610980750,0.764847040176392,L, + 215535404000,0.760241806507111,L, + 217459827250,0.754868328571320,L, + 219384250500,0.748750030994415,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376311302185,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323005199432,L, + 229006366750,0.707857549190521,L, + 230930790000,0.697802543640137,L, + 232855213250,0.687186241149902,L, + 234779636500,0.676037251949310,L, + 236704059750,0.664384245872498,L, + 238628483000,0.652257084846497,L, + 240552906250,0.639684736728668,L, + 242477329500,0.626697838306427,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600374698639,L, + 248250599250,0.585550725460052,L, + 250175022500,0.571207880973816,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764199733734,L, + 255948292250,0.526724457740784,L, + 257872715500,0.511513054370880,L, + 259797138750,0.496159940958023,L, + 261721562000,0.480694830417633,L, + 263645985250,0.465147316455841,L, + 265570408500,0.449546366930008,L, + 267494831750,0.433920741081238,L, + 269419255000,0.418298542499542,L, + 271343678250,0.402707606554031,L, + 273268101500,0.387175381183624,L, + 275192524750,0.371728330850601,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194123029709,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665698289871,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103718757629,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240646004676819,L, + 294436757250,0.227382704615593,L, + 296361180500,0.214455604553223,L, + 298285603750,0.201883479952812,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874013781548,L, + 304058873500,0.166470348834991,L, + 305983296750,0.155488073825836,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847342967987,L, + 311756566500,0.125216528773308,L, + 313680989750,0.116062454879284,L, + 315605413000,0.107397489249706,L, + 317529836250,0.099232852458954,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446899592876,L, + 323303106000,0.077845327556133,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310533434153,L, + 331000799000,0.056914687156677,L, + 332925222250,0.053088188171387,L, + 334849645500,0.049837112426758,L, + 336774068750,0.047166705131531,L, + 338698492000,0.045082446187735,L, + 340622915250,0.043588876724243,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389746755362,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_041" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 132 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.012301683425903,L, + 3848846500,-0.010393142700195,L, + 5773269750,-0.008483886718750,L, + 7697693000,-0.006575345993042,L, + 9622116250,-0.004665613174438,L, + 11546539500,-0.002757072448730,L, + 13470962750,-0.000847816467285,L, + 15395386000,0.001060724258423,L, + 17319809250,0.002969980239868,L, + 19244232500,0.004878997802734,L, + 21168655750,0.006787776947021,L, + 23093079000,0.008697271347046,L, + 25017502250,0.010606050491333,L, + 26941925500,0.012515068054199,L, + 28866348750,0.014423847198486,L, + 30790772000,0.016332864761353,L, + 32715195250,0.018241643905640,L, + 36564041750,0.022060632705688,L, + 38488465000,0.023969411849976,L, + 40412888250,0.025878429412842,L, + 42337311500,0.027787208557129,L, + 44261734750,0.029696226119995,L, + 46186158000,0.031605005264282,L, + 48110581250,0.033514022827148,L, + 50035004500,0.035423755645752,L, + 51959427750,0.037332296371460,L, + 53883851000,0.039241552352905,L, + 55808274250,0.041150093078613,L, + 57732697500,0.043059349060059,L, + 59657120750,0.044967889785767,L, + 61581544000,0.046877622604370,L, + 63505967250,0.048786163330078,L, + 65430390500,0.050695419311523,L, + 67354813750,0.052604436874390,L, + 69279237000,0.054512977600098,L, + 71203660250,0.056422233581543,L, + 73128083500,0.058330774307251,L, + 75052506750,0.060240507125854,L, + 76976930000,0.062149047851562,L, + 78901353250,0.064058303833008,L, + 80825776500,0.065967321395874,L, + 82750199750,0.067876100540161,L, + 84674623000,0.069785118103027,L, + 86599046250,0.071693897247314,L, + 88523469500,0.073603391647339,L, + 90447892750,0.075512170791626,L, + 92372316000,0.077421188354492,L, + 94296739250,0.079329967498779,L, + 96221162500,0.081238985061646,L, + 98145585750,0.081239223480225,L, + 100070009000,0.081239223480225,L, + 101994432250,0.081238985061646,L, + 103918855500,0.081239461898804,L, + 105843278750,0.081239700317383,L, + 107767702000,0.081239461898804,L, + 109692125250,0.081239461898804,L, + 113540971750,0.081238985061646,L, + 115465395000,0.081239461898804,L, + 117389818250,0.081239461898804,L, + 119314241500,0.081239223480225,L, + 121238664750,0.081239461898804,L, + 123163088000,0.081239223480225,L, + 127011934500,0.081239223480225,L, + 130860781000,0.081239700317383,L, + 132785204250,0.081239223480225,L, + 134709627500,0.081238985061646,L, + 136634050750,0.081239223480225,L, + 138558474000,0.081239223480225,L, + 140482897250,0.081239461898804,L, + 142407320500,0.081239461898804,L, + 144331743750,0.081239223480225,L, + 146256167000,0.081239461898804,L, + 148180590250,0.081239461898804,L, + 150105013500,0.081239223480225,L, + 152029436750,0.081238746643066,L, + 153953860000,0.081066370010376,L, + 155878283250,0.080892562866211,L, + 157802706500,0.080720186233521,L, + 159727129750,0.080546379089355,L, + 161651553000,0.080373048782349,L, + 163575976250,0.080200195312500,L, + 165500399500,0.080026388168335,L, + 167424822750,0.079853057861328,L, + 169349246000,0.079680204391479,L, + 171273669250,0.079506874084473,L, + 173198092500,0.079334020614624,L, + 175122515750,0.079160690307617,L, + 177046939000,0.078986883163452,L, + 178971362250,0.078814506530762,L, + 180895785500,0.078640699386597,L, + 182820208750,0.078467369079590,L, + 184744632000,0.078294515609741,L, + 186669055250,0.078121185302734,L, + 188593478500,0.077947378158569,L, + 190517901750,0.077775001525879,L, + 192442325000,0.077601194381714,L, + 194366748250,0.077428817749023,L, + 196291171500,0.077255010604858,L, + 198215594750,0.077081680297852,L, + 200140018000,0.076908826828003,L, + 202064441250,0.076735496520996,L, + 203988864500,0.076561689376831,L, + 205913287750,0.076389074325562,L, + 207837711000,0.076215505599976,L, + 209762134250,0.072737455368042,L, + 211686557500,0.069260120391846,L, + 213610980750,0.065781831741333,L, + 215535404000,0.062303781509399,L, + 217459827250,0.058825492858887,L, + 219384250500,0.055348157882690,L, + 221308673750,0.051870107650757,L, + 223233097000,0.048392295837402,L, + 225157520250,0.044914007186890,L, + 227081943500,0.041436433792114,L, + 229006366750,0.037958145141602,L, + 230930790000,0.034480810165405,L, + 232855213250,0.031002521514893,L, + 234779636500,0.027523994445801,L, + 236704059750,0.024046659469604,L, + 238628483000,0.020568370819092,L, + 240552906250,0.017090797424316,L, + 242477329500,0.013612508773804,L, + 244401752750,0.010134696960449,L, + 246326176000,0.006656646728516,L, + 250175022500,-0.000298976898193,L, + 252099445750,-0.003776550292969,L, + 254023869000,-0.007255315780640,L, + 255948292250,-0.010733127593994,L, + 257872715500,-0.014211177825928,L, + 259797138750,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013481140136719 + KeyVer: 4005 + KeyCount: 102 + Key: + 0,0.013481140136719,L, + 1924423250,0.014847755432129,L, + 3848846500,0.016214847564697,L, + 5773269750,0.017581462860107,L, + 7697693000,0.018948554992676,L, + 9622116250,0.020316123962402,L, + 11546539500,0.021683216094971,L, + 13470962750,0.023049831390381,L, + 15395386000,0.024416923522949,L, + 19244232500,0.027150154113770,L, + 21168655750,0.028517246246338,L, + 23093079000,0.029883861541748,L, + 25017502250,0.031250953674316,L, + 26941925500,0.032617568969727,L, + 28866348750,0.033985137939453,L, + 30790772000,0.035351753234863,L, + 32715195250,0.036718845367432,L, + 34639618500,0.038086414337158,L, + 36564041750,0.039453029632568,L, + 38488465000,0.040820121765137,L, + 40412888250,0.042186737060547,L, + 42337311500,0.043553829193115,L, + 44261734750,0.044920444488525,L, + 48110581250,0.047654628753662,L, + 50035004500,0.049021244049072,L, + 51959427750,0.050388336181641,L, + 53883851000,0.051754951477051,L, + 57732697500,0.054489135742188,L, + 59657120750,0.055855751037598,L, + 63505967250,0.058589935302734,L, + 65430390500,0.059956550598145,L, + 69279237000,0.062690734863281,L, + 71203660250,0.064057350158691,L, + 73128083500,0.065424442291260,L, + 75052506750,0.066791057586670,L, + 76976930000,0.068158149719238,L, + 80825776500,0.070891380310059,L, + 90447892750,0.077726840972900,L, + 92372316000,0.079093456268311,L, + 94296739250,0.080460548400879,L, + 96221162500,0.081827163696289,L, + 100070009000,0.075255393981934,L, + 101994432250,0.071969032287598,L, + 105843278750,0.065397262573242,L, + 109692125250,0.058824539184570,L, + 111616548500,0.055539131164551,L, + 115465395000,0.048966407775879,L, + 117389818250,0.045680999755859,L, + 121238664750,0.039108276367188,L, + 127011934500,0.029250621795654,L, + 130860781000,0.022677898406982,L, + 134709627500,0.016106128692627,L, + 136634050750,0.012819766998291,L, + 138558474000,0.009534358978271,L, + 144331743750,-0.000324726104736,L, + 146256167000,-0.003610134124756,L, + 148180590250,-0.006896495819092,L, + 152029436750,-0.013468265533447,L, + 153953860000,-0.012369155883789,L, + 155878283250,-0.011270523071289,L, + 159727129750,-0.009072303771973,L, + 161651553000,-0.007972717285156,L, + 163575976250,-0.006874084472656,L, + 167424822750,-0.004675865173340,L, + 169349246000,-0.003577232360840,L, + 171273669250,-0.002477645874023,L, + 173198092500,-0.001379013061523,L, + 175122515750,-0.000279426574707,L, + 178971362250,0.001918792724609,L, + 180895785500,0.003017425537109,L, + 182820208750,0.004117012023926,L, + 184744632000,0.005215167999268,L, + 186669055250,0.006314754486084,L, + 194366748250,0.010711193084717,L, + 196291171500,0.011809825897217,L, + 198215594750,0.012909412384033,L, + 200140018000,0.014008045196533,L, + 202064441250,0.015107631683350,L, + 209762134250,0.019504070281982,L, + 213610980750,0.021701335906982,L, + 215535404000,0.022801399230957,L, + 217459827250,0.023900032043457,L, + 221308673750,0.026098251342773,L, + 223233097000,0.027196884155273,L, + 225157520250,0.028296947479248,L, + 227081943500,0.029396057128906,L, + 229006366750,0.030494689941406,L, + 230930790000,0.031593799591064,L, + 232855213250,0.032692432403564,L, + 234779636500,0.033791542053223,L, + 236704059750,0.034891128540039,L, + 238628483000,0.035989761352539,L, + 240552906250,0.037088871002197,L, + 242477329500,0.038187503814697,L, + 246326176000,0.040386676788330,L, + 248250599250,0.041485309600830,L, + 252099445750,0.043683528900146,L, + 254023869000,0.044782161712646,L, + 255948292250,0.045881748199463,L, + 257872715500,0.046980381011963,L, + 259797138750,0.013481140136719,L, + 344471761750,0.013481140136719,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323318481445 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323318481445,L, + 1924423250,-0.023415565490723,L, + 3848846500,-0.020337820053101,L, + 5773269750,-0.017082929611206,L, + 7697693000,-0.013643503189087,L, + 9622116250,-0.010010719299316,L, + 11546539500,-0.006175994873047,L, + 13470962750,-0.002130270004272,L, + 15395386000,0.002137422561646,L, + 17319809250,0.006637334823608,L, + 19244232500,0.011380910873413,L, + 21168655750,0.016381978988647,L, + 23093079000,0.021653175354004,L, + 25017502250,0.027209281921387,L, + 26941925500,0.033066511154175,L, + 28866348750,0.039241790771484,L, + 30790772000,0.045753955841064,L, + 32715195250,0.052623271942139,L, + 34639618500,0.059871673583984,L, + 36564041750,0.067523241043091,L, + 38488465000,0.075603961944580,L, + 40412888250,0.084141969680786,L, + 42337311500,0.093168020248413,L, + 44261734750,0.102716207504272,L, + 46186158000,0.112821340560913,L, + 48110581250,0.123523712158203,L, + 50035004500,0.134864330291748,L, + 51959427750,0.146887302398682,L, + 53883851000,0.159638881683350,L, + 55808274250,0.173166275024414,L, + 57732697500,0.187515258789062,L, + 59657120750,0.202730178833008,L, + 61581544000,0.218846321105957,L, + 63505967250,0.235886573791504,L, + 65430390500,0.253855705261230,L, + 67354813750,0.272727012634277,L, + 69279237000,0.292433738708496,L, + 71203660250,0.312859535217285,L, + 73128083500,0.333829402923584,L, + 75052506750,0.355108737945557,L, + 76976930000,0.376419067382812,L, + 78901353250,0.397454738616943,L, + 80825776500,0.417917251586914,L, + 82750199750,0.437542915344238,L, + 84674623000,0.456126213073730,L, + 86599046250,0.473530292510986,L, + 88523469500,0.489682197570801,L, + 90447892750,0.504563808441162,L, + 92372316000,0.518197536468506,L, + 94296739250,0.530634880065918,L, + 96221162500,0.541941642761230,L, + 98145585750,0.552702903747559,L, + 100070009000,0.563450336456299,L, + 101994432250,0.574181556701660,L, + 103918855500,0.584893703460693,L, + 105843278750,0.595582008361816,L, + 107767702000,0.606243133544922,L, + 109692125250,0.616872310638428,L, + 111616548500,0.627465724945068,L, + 113540971750,0.638018608093262,L, + 115465395000,0.648525238037109,L, + 117389818250,0.658982276916504,L, + 119314241500,0.669384956359863,L, + 121238664750,0.679729461669922,L, + 123163088000,0.690011978149414,L, + 125087511250,0.700230121612549,L, + 127011934500,0.710382461547852,L, + 128936357750,0.720467090606689,L, + 130860781000,0.730484485626221,L, + 132785204250,0.740435123443604,L, + 134709627500,0.750319957733154,L, + 136634050750,0.760142326354980,L, + 138558474000,0.769903659820557,L, + 140482897250,0.779606819152832,L, + 142407320500,0.789256095886230,L, + 144331743750,0.798854351043701,L, + 146256167000,0.808404922485352,L, + 148180590250,0.817911624908447,L, + 150105013500,0.827377796173096,L, + 152029436750,0.836806297302246,L, + 153953860000,0.846144676208496,L, + 155878283250,0.855336189270020,L, + 157802706500,0.864380836486816,L, + 159727129750,0.873280525207520,L, + 161651553000,0.882037162780762,L, + 163575976250,0.890656948089600,L, + 165500399500,0.899146080017090,L, + 167424822750,0.907514095306396,L, + 169349246000,0.915773391723633,L, + 171273669250,0.923939228057861,L, + 173198092500,0.932028770446777,L, + 175122515750,0.940061569213867,L, + 177046939000,0.948060035705566,L, + 178971362250,0.956048011779785,L, + 180895785500,0.964048862457275,L, + 182820208750,0.972087860107422,L, + 184744632000,0.980187892913818,L, + 186669055250,0.988371372222900,L, + 188593478500,0.996658325195312,L, + 190517901750,1.005066871643066,L, + 192442325000,1.013611793518066,L, + 194366748250,1.022304534912109,L, + 196291171500,1.031155109405518,L, + 198215594750,1.040169715881348,L, + 200140018000,1.049352169036865,L, + 202064441250,1.058705329895020,L, + 203988864500,1.068228244781494,L, + 205913287750,1.077920436859131,L, + 207837711000,1.087778091430664,L, + 209762134250,1.097881317138672,L, + 211686557500,1.108280658721924,L, + 213610980750,1.118937969207764,L, + 215535404000,1.129822254180908,L, + 217459827250,1.140905380249023,L, + 219384250500,1.152165412902832,L, + 221308673750,1.163581371307373,L, + 223233097000,1.175134181976318,L, + 225157520250,1.186808586120605,L, + 227081943500,1.198587417602539,L, + 229006366750,1.210457324981689,L, + 230930790000,1.222403526306152,L, + 232855213250,1.234411239624023,L, + 234779636500,1.246466159820557,L, + 236704059750,1.258553028106689,L, + 238628483000,1.270654678344727,L, + 240552906250,1.282752037048340,L, + 242477329500,1.294822216033936,L, + 244401752750,1.306837558746338,L, + 246326176000,1.318760871887207,L, + 248250599250,1.330542564392090,L, + 250175022500,1.342109203338623,L, + 252099445750,1.353339672088623,L, + 254023869000,1.364012241363525,L, + 255948292250,1.373597621917725,L, + 257872715500,1.379659652709961,L, + 259797138750,-0.513281345367432,L, + 261721562000,-0.026323318481445,L, + 344471761750,-0.026323318481445,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802662010048856 + KeyVer: 4005 + KeyCount: 115 + Key: + 0,34.802662010048856,L, + 3848846500,35.758840682525076,L, + 5773269750,36.236923188574018,L, + 7697693000,36.715012524812131,L, + 9622116250,37.193095030861066,L, + 13470962750,38.149266873148122,L, + 15395386000,38.627356209386228,L, + 17319809250,39.105448960718924,L, + 19244232500,39.583528051673284,L, + 21168655750,40.061617387911390,L, + 23093079000,40.539703309054921,L, + 25017502250,41.017785815103856,L, + 26941925500,41.495878566436552,L, + 28866348750,41.973957657390912,L, + 32715195250,42.930136329867132,L, + 34639618500,43.408222251010656,L, + 36564041750,43.886304757059598,L, + 38488465000,44.364390678203122,L, + 40412888250,44.842483429535818,L, + 42337311500,45.320569350679342,L, + 44261734750,45.798651856728284,L, + 48110581250,46.754823699015340,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189084877540495,L, + 57732697500,49.145256719827550,L, + 59657120750,49.623346056065657,L, + 65430390500,51.057603819496236,L, + 67354813750,51.535686325545178,L, + 69279237000,52.013775661783285,L, + 71203660250,52.491861582926816,L, + 73128083500,52.969944088975751,L, + 76976930000,53.926122761451978,L, + 78901353250,54.404205267500913,L, + 80825776500,54.882294603739027,L, + 82750199750,55.360380524882551,L, + 84674623000,55.838469861120664,L, + 86599046250,56.316552367169606,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750813545694768,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531679587319189,L, + 113540971750,63.009765508462714,L, + 115465395000,63.487844599417073,L, + 117389818250,63.965937350749769,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683052739043305,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 188593478500,65.395413981761337,L, + 190517901750,65.017725011227697,L, + 192442325000,64.640029210504863,L, + 194366748250,64.262347070160388,L, + 196291171500,63.884658099626733,L, + 198215594750,63.506975959282251,L, + 217459827250,59.730086253945728,L, + 219384250500,59.352404113601246,L, + 223233097000,58.597026172533937,L, + 225157520250,58.219330371811118,L, + 227081943500,57.841648231466635,L, + 230930790000,57.086270290399327,L, + 234779636500,56.330899179521197,L, + 236704059750,55.953206793892960,L, + 238628483000,55.575517823359306,L, + 240552906250,55.197832267920241,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442457741947514,L, + 246326176000,54.064761941224695,L, + 248250599250,53.687079800880213,L, + 250175022500,53.309384000157387,L, + 252099445750,52.931695029623739,L, + 257872715500,51.798638363306537,L, + 259797138750,34.802665425143438,L, + 261721562000,34.802662010048856,L, + 263645985250,34.802668840238027,L, + 265570408500,34.802665425143438,L, + 267494831750,34.802665425143438,L, + 269419255000,34.802668840238027,L, + 271343678250,34.802668840238027,L, + 275192524750,34.802662010048856,L, + 279041371250,34.802668840238027,L, + 280965794500,34.802665425143438,L, + 282890217750,34.802665425143438,L, + 284814641000,34.802668840238027,L, + 286739064250,34.802665425143438,L, + 292512334000,34.802665425143438,L, + 294436757250,34.802668840238027,L, + 296361180500,34.802668840238027,L, + 298285603750,34.802665425143438,L, + 300210027000,34.802665425143438,L, + 302134450250,34.802668840238027,L, + 305983296750,34.802668840238027,L, + 307907720000,34.802665425143438,L, + 309832143250,34.802668840238027,L, + 311756566500,34.802668840238027,L, + 313680989750,34.802665425143438,L, + 315605413000,34.802665425143438,L, + 317529836250,34.802662010048856,L, + 319454259500,34.802668840238027,L, + 321378682750,34.802668840238027,L, + 323303106000,34.802665425143438,L, + 332925222250,34.802665425143438,L, + 334849645500,34.802668840238027,L, + 336774068750,34.802668840238027,L, + 338698492000,34.802662010048856,L, + 340622915250,34.802662010048856,L, + 342547338500,34.802668840238027,L, + 344471761750,34.802665425143438,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132534125854483 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,-5.132534125854483,L, + 1924423250,-5.327042545490534,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716059811649459,L, + 7697693000,-5.910570365719626,L, + 9622116250,-6.105078358468854,L, + 11546539500,-6.299587631878552,L, + 13470962750,-6.494096051514603,L, + 15395386000,-6.688605751811123,L, + 17319809250,-6.883115025220820,L, + 19244232500,-7.077622591083226,L, + 21168655750,-7.272132291379746,L, + 26941925500,-7.855657550287900,L, + 28866348750,-8.050167677471244,L, + 30790772000,-8.244676950880940,L, + 32715195250,-8.439185370516991,L, + 34639618500,-8.633692936379397,L, + 36564041750,-8.828203917336387,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219902834843,L, + 42337311500,-9.411730030018186,L, + 44261734750,-9.606239303427884,L, + 46186158000,-9.800746869290288,L, + 48110581250,-9.995255288926339,L, + 50035004500,-10.189767977430622,L, + 51959427750,-10.384273835745734,L, + 53883851000,-10.578783109155431,L, + 55808274250,-10.773293236338775,L, + 57732697500,-10.967799094653888,L, + 59657120750,-11.162309221837232,L, + 63505967250,-11.551327768656627,L, + 65430390500,-11.745837895839969,L, + 67354813750,-11.940343754155082,L, + 71203660250,-12.329364008521770,L, + 73128083500,-12.523871574384174,L, + 75052506750,-12.718380847793872,L, + 76976930000,-12.912888413656276,L, + 78901353250,-13.107400248386913,L, + 80825776500,-13.301906960475671,L, + 82750199750,-13.496417941432661,L, + 86599046250,-13.885434780704763,L, + 88523469500,-14.079944054114462,L, + 90447892750,-14.274451619976865,L, + 94296739250,-14.663471874343553,L, + 96221162500,-14.857980293979605,L, + 98145585750,-15.052487006068363,L, + 100070009000,-15.246997133251707,L, + 101994432250,-15.441505552887758,L, + 103918855500,-15.636012264976516,L, + 105843278750,-15.830520684612567,L, + 109692125250,-16.219540938979254,L, + 111616548500,-16.414049358615305,L, + 113540971750,-16.608559485798651,L, + 115465395000,-16.803066197887407,L, + 117389818250,-16.997576325070753,L, + 119314241500,-17.192084744706804,L, + 121238664750,-17.386594871890146,L, + 123163088000,-17.581101583978906,L, + 125087511250,-17.775611711162249,L, + 127011934500,-17.970118423251009,L, + 128936357750,-18.164630257981646,L, + 134709627500,-18.748155516889799,L, + 136634050750,-18.942665644073141,L, + 138558474000,-19.137172356161901,L, + 140482897250,-19.331682483345244,L, + 142407320500,-19.526196025623172,L, + 144331743750,-19.720699322617346,L, + 146256167000,-19.915211157347983,L, + 148180590250,-20.109717869436739,L, + 150105013500,-20.304226289072790,L, + 152029436750,-20.498736416256136,L, + 155878283250,-20.191412054551854,L, + 157802706500,-20.037751581247004,L, + 161651553000,-19.730427219542722,L, + 163575976250,-19.576763331143290,L, + 165500399500,-19.423102857838440,L, + 169349246000,-19.115778496134158,L, + 171273669250,-18.962118022829308,L, + 173198092500,-18.808454134429876,L, + 175122515750,-18.654793661125026,L, + 177046939000,-18.501128065178300,L, + 180895785500,-18.193807118568603,L, + 182820208750,-18.040144937716462,L, + 184744632000,-17.886479341769736,L, + 186669055250,-17.732820576012180,L, + 188593478500,-17.579156687612748,L, + 190517901750,-17.425494506760607,L, + 192442325000,-17.271834033455757,L, + 196291171500,-16.964509671751475,L, + 198215594750,-16.810849198446626,L, + 200140018000,-16.657185310047193,L, + 202064441250,-16.503524836742343,L, + 205913287750,-16.196200475038061,L, + 207837711000,-16.042540001733215,L, + 209762134250,-15.888876113333779,L, + 213610980750,-15.581551751629497,L, + 215535404000,-15.427887863230065,L, + 217459827250,-15.274229097472508,L, + 219384250500,-15.120565209073074,L, + 221308673750,-14.966904735768226,L, + 223233097000,-14.813242554916085,L, + 225157520250,-14.659578666516651,L, + 227081943500,-14.505919900759096,L, + 229006366750,-14.352257719906955,L, + 230930790000,-14.198593831507521,L, + 232855213250,-14.044932504429026,L, + 234779636500,-13.891269469803239,L, + 236704059750,-13.737608142724744,L, + 238628483000,-13.583943400551664,L, + 240552906250,-13.430282927246816,L, + 242477329500,-13.276620746394675,L, + 244401752750,-13.122960273089825,L, + 246326176000,-12.969298092237684,L, + 248250599250,-12.815635057611898,L, + 250175022500,-12.661973730533402,L, + 252099445750,-12.508311549681261,L, + 254023869000,-12.354647661281827,L, + 255948292250,-12.200987187976979,L, + 257872715500,-12.047327568445777,L, + 259797138750,-5.132533698967659,L, + 261721562000,-5.132534125854483,L, + 265570408500,-5.132534125854483,L, + 267494831750,-5.132533698967659,L, + 269419255000,-5.132534125854483,L, + 271343678250,-5.132533698967659,L, + 286739064250,-5.132533698967659,L, + 288663487500,-5.132534125854483,L, + 292512334000,-5.132534125854483,L, + 294436757250,-5.132533698967659,L, + 298285603750,-5.132534552741306,L, + 300210027000,-5.132533698967659,L, + 305983296750,-5.132533698967659,L, + 307907720000,-5.132534125854483,L, + 311756566500,-5.132534125854483,L, + 313680989750,-5.132533698967659,L, + 315605413000,-5.132533698967659,L, + 319454259500,-5.132534552741306,L, + 321378682750,-5.132533698967659,L, + 323303106000,-5.132534125854483,L, + 325227529250,-5.132533698967659,L, + 327151952500,-5.132534125854483,L, + 329076375750,-5.132533272080837,L, + 331000799000,-5.132534125854483,L, + 336774068750,-5.132534125854483,L, + 338698492000,-5.132534552741306,L, + 340622915250,-5.132534125854483,L, + 342547338500,-5.132534125854483,L, + 344471761750,-5.132533698967659,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 151 + Key: + 0,33.449806441146372,L, + 3848846500,33.228118991255592,L, + 5773269750,33.117282096499366,L, + 7697693000,33.006438371553976,L, + 11546539500,32.784757751852361,L, + 13470962750,32.673910611812381,L, + 15395386000,32.563070301961574,L, + 17319809250,32.452226577016184,L, + 21168655750,32.230545957314568,L, + 23093079000,32.119702232369171,L, + 25017502250,32.008865337612953,L, + 26941925500,31.898025027762142,L, + 28866348750,31.787174472627580,L, + 30790772000,31.676337577871358,L, + 32715195250,31.565493852925965,L, + 34639618500,31.454660373264328,L, + 36564041750,31.343806403035178,L, + 38488465000,31.232969508278956,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900441748537364,L, + 46186158000,30.789604853781142,L, + 48110581250,30.678761128835749,L, + 50035004500,30.567920818984941,L, + 51959427750,30.457077094039548,L, + 53883851000,30.346236784188740,L, + 55808274250,30.235393059243346,L, + 59657120750,30.013712439541731,L, + 61581544000,29.902861884407169,L, + 63505967250,29.792024989650947,L, + 65430390500,29.681181264705554,L, + 69279237000,29.459500645003939,L, + 73128083500,29.237813195113155,L, + 75052506750,29.126972885262347,L, + 76976930000,29.016135990506122,L, + 78901353250,28.905288850466146,L, + 82750199750,28.683608230764531,L, + 84674623000,28.572766213366428,L, + 86599046250,28.461925903515620,L, + 88523469500,28.351078763475645,L, + 90447892750,28.240238453624837,L, + 92372316000,28.129396436226738,L, + 94296739250,28.018559541470513,L, + 96221162500,27.907712401430537,L, + 98145585750,27.796873799127020,L, + 100070009000,27.686030074181630,L, + 101994432250,27.575182934141651,L, + 103918855500,27.464346039385429,L, + 105843278750,27.353505729534621,L, + 107767702000,27.242658589494642,L, + 109692125250,27.131818279643834,L, + 111616548500,27.020979677340321,L, + 113540971750,26.910139367489514,L, + 115465395000,26.799293934996829,L, + 121238664750,26.466767882802525,L, + 123163088000,26.355924157857135,L, + 125087511250,26.245087263100910,L, + 127011934500,26.134245245702811,L, + 128936357750,26.023396398115541,L, + 130860781000,25.912557795812027,L, + 132785204250,25.801715778413925,L, + 134709627500,25.690878883657703,L, + 136634050750,25.580031743617724,L, + 138558474000,25.469188018672334,L, + 140482897250,25.358351123916108,L, + 144331743750,25.136670504214496,L, + 146256167000,25.025826779269103,L, + 148180590250,24.914984761871001,L, + 150105013500,24.804144452020193,L, + 152029436750,24.693299019527508,L, + 153953860000,24.780865459781531,L, + 155878283250,24.868423362299090,L, + 157802706500,24.955994925194993,L, + 159727129750,25.043559657901721,L, + 161651553000,25.131126098155743,L, + 163575976250,25.218690830862474,L, + 165500399500,25.306248733380034,L, + 167424822750,25.393820296275937,L, + 169349246000,25.481383321435374,L, + 171273669250,25.568951469236687,L, + 173198092500,25.656511079301541,L, + 175122515750,25.744082642197441,L, + 177046939000,25.831647374904172,L, + 178971362250,25.919208692516317,L, + 180895785500,26.006775132770340,L, + 182820208750,26.094336450382485,L, + 186669055250,26.269472745985116,L, + 188593478500,26.357037478691844,L, + 190517901750,26.444603918945866,L, + 192442325000,26.532163529010720,L, + 194366748250,26.619733384359328,L, + 196291171500,26.707298117066056,L, + 198215594750,26.794859434678202,L, + 200140018000,26.882430997574104,L, + 202064441250,26.969990607638955,L, + 203988864500,27.057557047892978,L, + 205913287750,27.145120073052414,L, + 207837711000,27.232689928401022,L, + 209762134250,27.320251246013168,L, + 211686557500,27.407817686267190,L, + 213610980750,27.495380711426630,L, + 215535404000,27.582945444133358,L, + 217459827250,27.670515299481966,L, + 219384250500,27.758071494452235,L, + 221308673750,27.845646472442720,L, + 223233097000,27.933209497602157,L, + 225157520250,28.020770815214302,L, + 227081943500,28.108342378110201,L, + 229006366750,28.195900280627765,L, + 230930790000,28.283470135976369,L, + 232855213250,28.371034868683100,L, + 236704059750,28.546160919001977,L, + 238628483000,28.633725651708705,L, + 240552906250,28.721293799510022,L, + 244401752750,28.896419849828895,L, + 246326176000,28.983989705177503,L, + 248250599250,29.071552730336943,L, + 252099445750,29.246685610844988,L, + 255948292250,29.421811661163861,L, + 257872715500,29.509378101417884,L, + 259797138750,33.449806441146372,L, + 261721562000,33.449806441146372,L, + 263645985250,33.449803026051789,L, + 265570408500,33.449803026051789,L, + 267494831750,33.449809856240961,L, + 269419255000,33.449806441146372,L, + 271343678250,33.449806441146372,L, + 273268101500,33.449803026051789,L, + 275192524750,33.449806441146372,L, + 282890217750,33.449806441146372,L, + 284814641000,33.449803026051789,L, + 286739064250,33.449806441146372,L, + 292512334000,33.449806441146372,L, + 294436757250,33.449809856240961,L, + 296361180500,33.449803026051789,L, + 298285603750,33.449806441146372,L, + 300210027000,33.449803026051789,L, + 304058873500,33.449803026051789,L, + 305983296750,33.449806441146372,L, + 309832143250,33.449806441146372,L, + 311756566500,33.449803026051789,L, + 313680989750,33.449806441146372,L, + 315605413000,33.449806441146372,L, + 317529836250,33.449803026051789,L, + 321378682750,33.449809856240961,L, + 323303106000,33.449803026051789,L, + 325227529250,33.449806441146372,L, + 332925222250,33.449806441146372,L, + 334849645500,33.449803026051789,L, + 338698492000,33.449809856240961,L, + 340622915250,33.449806441146372,L, + 344471761750,33.449806441146372,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420096755028 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,0.156420096755028,L, + 3848846500,0.174917474389076,L, + 5773269750,0.184166118502617,L, + 7697693000,0.193414792418480,L, + 11546539500,0.211912110447884,L, + 13470962750,0.221160799264908,L, + 17319809250,0.239658117294312,L, + 19244232500,0.248906821012497,L, + 21168655750,0.258155494928360,L, + 23093079000,0.267404139041901,L, + 26941925500,0.285901486873627,L, + 28866348750,0.295150130987167,L, + 30790772000,0.304398834705353,L, + 32715195250,0.313647478818893,L, + 34639618500,0.322896182537079,L, + 36564041750,0.332144826650620,L, + 38488465000,0.341393530368805,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139522314072,L, + 46186158000,0.378388196229935,L, + 48110581250,0.387636899948120,L, + 50035004500,0.396885514259338,L, + 51959427750,0.406134217977524,L, + 53883851000,0.415382862091064,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128883838654,L, + 61581544000,0.452377527952194,L, + 65430390500,0.470874875783920,L, + 67354813750,0.480123579502106,L, + 69279237000,0.489372193813324,L, + 71203660250,0.498620927333832,L, + 73128083500,0.507869601249695,L, + 75052506750,0.517118215560913,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615503787994,L, + 80825776500,0.544864237308502,L, + 82750199750,0.554112851619720,L, + 84674623000,0.563361644744873,L, + 86599046250,0.572610259056091,L, + 88523469500,0.581858992576599,L, + 92372316000,0.600356221199036,L, + 94296739250,0.609604895114899,L, + 96221162500,0.618853628635406,L, + 98145585750,0.628102302551270,L, + 100070009000,0.637350916862488,L, + 101994432250,0.646599650382996,L, + 103918855500,0.655848324298859,L, + 105843278750,0.665096938610077,L, + 107767702000,0.674345731735229,L, + 111616548500,0.692842960357666,L, + 115465395000,0.711340427398682,L, + 117389818250,0.720588982105255,L, + 130860781000,0.785329699516296,L, + 132785204250,0.794578433036804,L, + 134709627500,0.803827047348022,L, + 138558474000,0.822324395179749,L, + 140482897250,0.831573128700256,L, + 142407320500,0.840821683406830,L, + 144331743750,0.850070476531982,L, + 146256167000,0.859319031238556,L, + 150105013500,0.877816498279572,L, + 152029436750,0.887065112590790,L, + 161651553000,0.813680768013000,L, + 163575976250,0.799004018306732,L, + 165500399500,0.784327089786530,L, + 169349246000,0.754973351955414,L, + 171273669250,0.740296423435211,L, + 173198092500,0.725619614124298,L, + 175122515750,0.710942685604095,L, + 177046939000,0.696265876293182,L, + 178971362250,0.681589007377625,L, + 180895785500,0.666912078857422,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558519840240,L, + 186669055250,0.622881531715393,L, + 190517901750,0.593527913093567,L, + 194366748250,0.564174056053162,L, + 200140018000,0.520143449306488,L, + 202064441250,0.505466639995575,L, + 203988864500,0.490789800882339,L, + 205913287750,0.476112902164459,L, + 207837711000,0.461436063051224,L, + 209762134250,0.446759194135666,L, + 211686557500,0.432082355022430,L, + 213610980750,0.417405456304550,L, + 215535404000,0.402728617191315,L, + 217459827250,0.388051718473434,L, + 229006366750,0.299990504980087,L, + 230930790000,0.285313665866852,L, + 232855213250,0.270636796951294,L, + 234779636500,0.255959957838058,L, + 236704059750,0.241283103823662,L, + 238628483000,0.226606234908104,L, + 240552906250,0.211929380893707,L, + 244401752750,0.182575643062592,L, + 246326176000,0.167898759245872,L, + 248250599250,0.153221905231476,L, + 250175022500,0.138545036315918,L, + 252099445750,0.123868189752102,L, + 254023869000,0.109191328287125,L, + 255948292250,0.094514459371567,L, + 257872715500,0.079837583005428,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420096755028,L, + 263645985250,0.152782797813416,L, + 265570408500,0.149145469069481,L, + 267494831750,0.145508170127869,L, + 269419255000,0.141870841383934,L, + 271343678250,0.138233542442322,L, + 277116948000,0.127321600914001,L, + 279041371250,0.123684279620647,L, + 280965794500,0.120046965777874,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772352993488,L, + 286739064250,0.109135039150715,L, + 288663487500,0.105497732758522,L, + 290587910750,0.101860411465168,L, + 292512334000,0.098223097622395,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948462486267,L, + 298285603750,0.087311148643494,L, + 302134450250,0.080036535859108,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761900722980,L, + 307907720000,0.069124594330788,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212663978338,L, + 315605413000,0.054575346410275,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388777196407,L, + 329076375750,0.029114142060280,L, + 331000799000,0.025476830080152,L, + 334849645500,0.018202198669314,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927571915090,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646219254,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 142 + Key: + 0,0.156420111656189,L, + 1924423250,0.162834361195564,L, + 3848846500,0.169248625636101,L, + 5773269750,0.175662904977798,L, + 7697693000,0.182077154517174,L, + 9622116250,0.188491433858871,L, + 11546539500,0.194905683398247,L, + 13470962750,0.201319947838783,L, + 15395386000,0.207734242081642,L, + 17319809250,0.214148491621017,L, + 19244232500,0.220562770962715,L, + 21168655750,0.226977035403252,L, + 23093079000,0.233391284942627,L, + 25017502250,0.239805564284325,L, + 26941925500,0.246219828724861,L, + 28866348750,0.252634108066559,L, + 30790772000,0.259048402309418,L, + 34639618500,0.271876871585846,L, + 36564041750,0.278291165828705,L, + 38488465000,0.284705430269241,L, + 40412888250,0.291119664907455,L, + 42337311500,0.297533929347992,L, + 44261734750,0.303948223590851,L, + 46186158000,0.310362458229065,L, + 48110581250,0.316776752471924,L, + 50035004500,0.323190987110138,L, + 51959427750,0.329605281352997,L, + 53883851000,0.336019515991211,L, + 57732697500,0.348848104476929,L, + 61581544000,0.361676633358002,L, + 65430390500,0.374505102634430,L, + 69279237000,0.387333691120148,L, + 71203660250,0.393747925758362,L, + 73128083500,0.400162220001221,L, + 75052506750,0.406576454639435,L, + 76976930000,0.412990719079971,L, + 78901353250,0.419404953718185,L, + 80825776500,0.425819218158722,L, + 82750199750,0.432233572006226,L, + 86599046250,0.445062041282654,L, + 88523469500,0.451476365327835,L, + 90447892750,0.457890599966049,L, + 94296739250,0.470719128847122,L, + 96221162500,0.477133363485336,L, + 98145585750,0.483547627925873,L, + 100070009000,0.489961922168732,L, + 101994432250,0.496376186609268,L, + 103918855500,0.502790391445160,L, + 105843278750,0.509204745292664,L, + 107767702000,0.515618979930878,L, + 109692125250,0.522033274173737,L, + 111616548500,0.528447508811951,L, + 113540971750,0.534861803054810,L, + 115465395000,0.541276037693024,L, + 117389818250,0.547690331935883,L, + 121238664750,0.560518801212311,L, + 125087511250,0.573347389698029,L, + 127011934500,0.579761624336243,L, + 128936357750,0.586175918579102,L, + 130860781000,0.592590153217316,L, + 132785204250,0.599004447460175,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611833035945892,L, + 142407320500,0.631075739860535,L, + 146256167000,0.643904328346252,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175068855286,L, + 155878283250,0.641202986240387,L, + 161651553000,0.608286917209625,L, + 163575976250,0.597314834594727,L, + 169349246000,0.564398765563965,L, + 171273669250,0.553426623344421,L, + 173198092500,0.542454600334167,L, + 175122515750,0.531482636928558,L, + 177046939000,0.520510613918304,L, + 178971362250,0.509538531303406,L, + 182820208750,0.487594485282898,L, + 184744632000,0.476622432470322,L, + 186669055250,0.465650349855423,L, + 188593478500,0.454678386449814,L, + 194366748250,0.421762228012085,L, + 196291171500,0.410790205001831,L, + 198215594750,0.399818211793900,L, + 200140018000,0.388846129179001,L, + 203988864500,0.366902023553848,L, + 205913287750,0.355930030345917,L, + 209762134250,0.333985924720764,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041819095612,L, + 215535404000,0.301069825887680,L, + 217459827250,0.290097773075104,L, + 219384250500,0.279125750064850,L, + 221308673750,0.268153697252274,L, + 223233097000,0.257181674242020,L, + 225157520250,0.246209636330605,L, + 227081943500,0.235237583518028,L, + 229006366750,0.224265545606613,L, + 230930790000,0.213293522596359,L, + 232855213250,0.202321469783783,L, + 234779636500,0.191349431872368,L, + 236704059750,0.180377379059792,L, + 238628483000,0.169405356049538,L, + 240552906250,0.158433318138123,L, + 242477329500,0.147461265325546,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545166492462,L, + 252099445750,0.092601090669632,L, + 254023869000,0.081629030406475,L, + 255948292250,0.070656985044479,L, + 257872715500,0.059684958308935,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 263645985250,0.152782782912254,L, + 265570408500,0.149145483970642,L, + 277116948000,0.127321600914001,L, + 279041371250,0.123684294521809,L, + 280965794500,0.120046973228455,L, + 282890217750,0.116409666836262,L, + 284814641000,0.112772352993488,L, + 286739064250,0.109135046601295,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948462486267,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 313680989750,0.058212656527758,L, + 317529836250,0.050938036292791,L, + 319454259500,0.047300718724728,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114142060280,L, + 331000799000,0.025476828217506,L, + 332925222250,0.021839512512088,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564885757864,L, + 338698492000,0.010927573777735,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646219254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420126557350 + KeyVer: 4005 + KeyCount: 137 + Key: + 0,0.156420126557350,L, + 1924423250,0.165634125471115,L, + 5773269750,0.184062153100967,L, + 7697693000,0.193276181817055,L, + 9622116250,0.202490165829659,L, + 15395386000,0.230132207274437,L, + 19244232500,0.248560205101967,L, + 21168655750,0.257774233818054,L, + 23093079000,0.266988217830658,L, + 25017502250,0.276202261447906,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844273090363,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272270917892,L, + 36564041750,0.331486314535141,L, + 38488465000,0.340700328350067,L, + 40412888250,0.349914371967316,L, + 42337311500,0.359128326177597,L, + 44261734750,0.368342339992523,L, + 46186158000,0.377556383609772,L, + 48110581250,0.386770367622375,L, + 50035004500,0.395984441041946,L, + 51959427750,0.405198395252228,L, + 53883851000,0.414412438869476,L, + 57732697500,0.432840406894684,L, + 59657120750,0.442054450511932,L, + 61581544000,0.451268434524536,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910416364670,L, + 69279237000,0.488124489784241,L, + 71203660250,0.497338533401489,L, + 75052506750,0.515766501426697,L, + 76976930000,0.524980545043945,L, + 78901353250,0.534194529056549,L, + 80825776500,0.543408572673798,L, + 82750199750,0.552622556686401,L, + 84674623000,0.561836600303650,L, + 88523469500,0.580264568328857,L, + 92372316000,0.598692655563354,L, + 94296739250,0.607906639575958,L, + 96221162500,0.617120683193207,L, + 98145585750,0.626334607601166,L, + 101994432250,0.644762575626373,L, + 103918855500,0.653976678848267,L, + 105843278750,0.663190662860870,L, + 107767702000,0.672404766082764,L, + 109692125250,0.681618690490723,L, + 111616548500,0.690832734107971,L, + 113540971750,0.700046718120575,L, + 115465395000,0.709260642528534,L, + 121238664750,0.736902773380280,L, + 123163088000,0.746116757392883,L, + 125087511250,0.755330860614777,L, + 127011934500,0.764544785022736,L, + 130860781000,0.782972753047943,L, + 134709627500,0.801400840282440,L, + 136634050750,0.810614764690399,L, + 138558474000,0.819828808307648,L, + 140482897250,0.829042911529541,L, + 142407320500,0.838256835937500,L, + 144331743750,0.847470879554749,L, + 146256167000,0.856684863567352,L, + 148180590250,0.865898907184601,L, + 152029436750,0.884326875209808,L, + 153953860000,0.869695365428925,L, + 155878283250,0.855063796043396,L, + 157802706500,0.840432345867157,L, + 159727129750,0.825800716876984,L, + 169349246000,0.752642869949341,L, + 171273669250,0.738011360168457,L, + 173198092500,0.723379790782928,L, + 175122515750,0.708748281002045,L, + 177046939000,0.694116592407227,L, + 178971362250,0.679485023021698,L, + 182820208750,0.650222003459930,L, + 184744632000,0.635590434074402,L, + 186669055250,0.620958805084229,L, + 190517901750,0.591695785522461,L, + 192442325000,0.577064096927643,L, + 194366748250,0.562432646751404,L, + 196291171500,0.547801077365875,L, + 198215594750,0.533169448375702,L, + 202064441250,0.503906309604645,L, + 203988864500,0.489274829626083,L, + 207837711000,0.460011690855026,L, + 209762134250,0.445380181074142,L, + 211686557500,0.430748581886292,L, + 213610980750,0.416117012500763,L, + 217459827250,0.386853933334351,L, + 219384250500,0.372222334146500,L, + 221308673750,0.357590764760971,L, + 223233097000,0.342959225177765,L, + 225157520250,0.328327625989914,L, + 227081943500,0.313696116209030,L, + 229006366750,0.299064576625824,L, + 234779636500,0.255169868469238,L, + 236704059750,0.240538313984871,L, + 238628483000,0.225906744599342,L, + 240552906250,0.211275190114975,L, + 242477329500,0.196643620729446,L, + 244401752750,0.182012081146240,L, + 246326176000,0.167380481958389,L, + 248250599250,0.152748942375183,L, + 250175022500,0.138117387890816,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222724437714,L, + 257872715500,0.079591147601604,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420126557350,L, + 271343678250,0.138233557343483,L, + 273268101500,0.134596228599548,L, + 275192524750,0.130958929657936,L, + 284814641000,0.112772360444069,L, + 286739064250,0.109135039150715,L, + 288663487500,0.105497732758522,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 296361180500,0.090948484838009,L, + 298285603750,0.087311178445816,L, + 300210027000,0.083673857152462,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399229466915,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849970370531,L, + 313680989750,0.058212656527758,L, + 315605413000,0.054575346410275,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388777196407,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114156961441,L, + 334849645500,0.018202215433121,L, + 336774068750,0.014564900659025,L, + 338698492000,0.010927588678896,L, + 340622915250,0.007290273439139,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_040" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210700988770 + KeyVer: 4005 + KeyCount: 111 + Key: + 0,-0.014210700988770,L, + 1924423250,-0.014211177825928,L, + 3848846500,-0.014210700988770,L, + 5773269750,-0.014211177825928,L, + 9622116250,-0.014211177825928,L, + 11546539500,-0.014210939407349,L, + 13470962750,-0.014210462570190,L, + 15395386000,-0.014210939407349,L, + 19244232500,-0.014210939407349,L, + 21168655750,-0.014211416244507,L, + 23093079000,-0.014210462570190,L, + 25017502250,-0.014210700988770,L, + 26941925500,-0.014210700988770,L, + 28866348750,-0.014211177825928,L, + 30790772000,-0.014211177825928,L, + 32715195250,-0.014210700988770,L, + 34639618500,-0.014211177825928,L, + 36564041750,-0.014210700988770,L, + 38488465000,-0.014211177825928,L, + 40412888250,-0.014211177825928,L, + 42337311500,-0.014210700988770,L, + 44261734750,-0.014210939407349,L, + 46186158000,-0.014210939407349,L, + 48110581250,-0.014211416244507,L, + 51959427750,-0.014210462570190,L, + 53883851000,-0.014210939407349,L, + 55808274250,-0.014210939407349,L, + 57732697500,-0.014211177825928,L, + 59657120750,-0.014211177825928,L, + 61581544000,-0.014210700988770,L, + 65430390500,-0.014210700988770,L, + 67354813750,-0.014211177825928,L, + 73128083500,-0.014211177825928,L, + 75052506750,-0.014210700988770,L, + 76976930000,-0.014210939407349,L, + 84674623000,-0.014210939407349,L, + 86599046250,-0.014211416244507,L, + 88523469500,-0.014210939407349,L, + 90447892750,-0.014210700988770,L, + 92372316000,-0.014210700988770,L, + 94296739250,-0.014211177825928,L, + 98145585750,-0.014211177825928,L, + 100070009000,-0.014210700988770,L, + 101994432250,-0.014210700988770,L, + 103918855500,-0.014211177825928,L, + 105843278750,-0.014210939407349,L, + 192442325000,-0.014210939407349,L, + 194366748250,-0.014211177825928,L, + 196291171500,-0.014210700988770,L, + 198215594750,-0.014211177825928,L, + 200140018000,-0.014210939407349,L, + 202064441250,-0.014211177825928,L, + 205913287750,-0.014210700988770,L, + 207837711000,-0.014211416244507,L, + 211686557500,-0.014210939407349,L, + 213610980750,-0.014211177825928,L, + 217459827250,-0.014210700988770,L, + 219384250500,-0.014211416244507,L, + 221308673750,-0.014210700988770,L, + 225157520250,-0.014211177825928,L, + 227081943500,-0.014210939407349,L, + 229006366750,-0.014211177825928,L, + 230930790000,-0.014210939407349,L, + 232855213250,-0.014211177825928,L, + 234779636500,-0.014210462570190,L, + 236704059750,-0.014211177825928,L, + 240552906250,-0.014210700988770,L, + 242477329500,-0.014211416244507,L, + 244401752750,-0.014210700988770,L, + 246326176000,-0.014211177825928,L, + 248250599250,-0.014211177825928,L, + 250175022500,-0.014210939407349,L, + 255948292250,-0.014210939407349,L, + 257872715500,-0.014211177825928,L, + 261721562000,-0.014211177825928,L, + 263645985250,-0.014210939407349,L, + 267494831750,-0.014211416244507,L, + 269419255000,-0.014210700988770,L, + 271343678250,-0.014211416244507,L, + 273268101500,-0.014210700988770,L, + 277116948000,-0.014211177825928,L, + 279041371250,-0.014210939407349,L, + 280965794500,-0.014211177825928,L, + 282890217750,-0.014210462570190,L, + 284814641000,-0.014211177825928,L, + 288663487500,-0.014210700988770,L, + 290587910750,-0.014210939407349,L, + 292512334000,-0.014210700988770,L, + 296361180500,-0.014211177825928,L, + 298285603750,-0.014210939407349,L, + 302134450250,-0.014210939407349,L, + 304058873500,-0.014210700988770,L, + 305983296750,-0.014211177825928,L, + 307907720000,-0.014210700988770,L, + 309832143250,-0.014211177825928,L, + 311756566500,-0.014210939407349,L, + 313680989750,-0.014210939407349,L, + 315605413000,-0.014211416244507,L, + 317529836250,-0.014210700988770,L, + 319454259500,-0.014211416244507,L, + 321378682750,-0.014210700988770,L, + 323303106000,-0.014210939407349,L, + 325227529250,-0.014210700988770,L, + 329076375750,-0.014211177825928,L, + 331000799000,-0.014210939407349,L, + 332925222250,-0.014211177825928,L, + 334849645500,-0.014210462570190,L, + 336774068750,-0.014211177825928,L, + 340622915250,-0.014210700988770,L, + 342547338500,-0.014210939407349,L, + 344471761750,-0.014210700988770,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087180137634277 + KeyVer: 4005 + KeyCount: 105 + Key: + 0,0.087180137634277,L, + 1924423250,0.086435317993164,L, + 3848846500,0.085690975189209,L, + 5773269750,0.084946155548096,L, + 7697693000,0.084201812744141,L, + 9622116250,0.083457946777344,L, + 11546539500,0.082713127136230,L, + 13470962750,0.081968784332275,L, + 15395386000,0.081223964691162,L, + 17319809250,0.080480098724365,L, + 19244232500,0.079735755920410,L, + 21168655750,0.078990936279297,L, + 23093079000,0.078246593475342,L, + 25017502250,0.077501773834229,L, + 26941925500,0.076757907867432,L, + 28866348750,0.076013088226318,L, + 30790772000,0.075269222259521,L, + 34639618500,0.073779582977295,L, + 36564041750,0.073035717010498,L, + 38488465000,0.072290897369385,L, + 40412888250,0.071547031402588,L, + 42337311500,0.070802211761475,L, + 46186158000,0.069313526153564,L, + 48110581250,0.068568706512451,L, + 50035004500,0.067824840545654,L, + 51959427750,0.067080020904541,L, + 59657120750,0.064102649688721,L, + 61581544000,0.063357353210449,L, + 63505967250,0.062613487243652,L, + 69279237000,0.060380458831787,L, + 71203660250,0.059635639190674,L, + 78901353250,0.056658267974854,L, + 80825776500,0.055913448333740,L, + 82750199750,0.055169105529785,L, + 84674623000,0.054425239562988,L, + 86599046250,0.053680419921875,L, + 88523469500,0.052936077117920,L, + 90447892750,0.052191257476807,L, + 96221162500,0.049958229064941,L, + 98145585750,0.049214363098145,L, + 100070009000,0.048469066619873,L, + 103918855500,0.046980381011963,L, + 105843278750,0.013481140136719,L, + 192442325000,0.013481140136719,L, + 194366748250,0.014423847198486,L, + 196291171500,0.015365600585938,L, + 198215594750,0.016308307647705,L, + 202064441250,0.018192768096924,L, + 203988864500,0.019135475158691,L, + 209762134250,0.021962165832520,L, + 211686557500,0.022904872894287,L, + 213610980750,0.023846149444580,L, + 215535404000,0.024789333343506,L, + 223233097000,0.028558254241943,L, + 225157520250,0.029500961303711,L, + 227081943500,0.030442714691162,L, + 229006366750,0.031385421752930,L, + 230930790000,0.032327175140381,L, + 234779636500,0.034212589263916,L, + 236704059750,0.035154342651367,L, + 238628483000,0.036096572875977,L, + 240552906250,0.037039279937744,L, + 242477329500,0.037981510162354,L, + 244401752750,0.038924217224121,L, + 246326176000,0.039866447448730,L, + 248250599250,0.040808200836182,L, + 250175022500,0.041750907897949,L, + 252099445750,0.042693138122559,L, + 254023869000,0.043634891510010,L, + 257872715500,0.045520305633545,L, + 259797138750,0.046462059020996,L, + 261721562000,0.047404766082764,L, + 267494831750,0.050231456756592,L, + 269419255000,0.051174163818359,L, + 271343678250,0.052116394042969,L, + 273268101500,0.053058147430420,L, + 275192524750,0.054001331329346,L, + 277116948000,0.054943561553955,L, + 279041371250,0.055885314941406,L, + 280965794500,0.056828022003174,L, + 286739064250,0.059654712677002,L, + 288663487500,0.060597419738770,L, + 290587910750,0.061539173126221,L, + 292512334000,0.062481880187988,L, + 296361180500,0.064366340637207,L, + 298285603750,0.065309047698975,L, + 302134450250,0.067193508148193,L, + 304058873500,0.068135261535645,L, + 305983296750,0.069078445434570,L, + 307907720000,0.070019721984863,L, + 309832143250,0.070962429046631,L, + 311756566500,0.071905612945557,L, + 313680989750,0.072846889495850,L, + 315605413000,0.073790073394775,L, + 317529836250,0.074731826782227,L, + 321378682750,0.076616287231445,L, + 323303106000,0.077558994293213,L, + 327151952500,0.079443454742432,L, + 329076375750,0.080386161804199,L, + 331000799000,0.081327915191650,L, + 332925222250,0.082270622253418,L, + 338698492000,0.085097312927246,L, + 340622915250,0.086040019989014,L, + 342547338500,0.086981773376465,L, + 344471761750,0.087924003601074,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817197799682617 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817197799682617,L, + 1924423250,0.818611621856689,L, + 3848846500,0.820889949798584,L, + 5773269750,0.823977947235107,L, + 7697693000,0.827826023101807,L, + 9622116250,0.832388401031494,L, + 11546539500,0.837626457214355,L, + 13470962750,0.843501091003418,L, + 15395386000,0.849981307983398,L, + 17319809250,0.857035160064697,L, + 19244232500,0.864634990692139,L, + 21168655750,0.872755050659180,L, + 23093079000,0.881371974945068,L, + 25017502250,0.890463352203369,L, + 26941925500,0.900009155273438,L, + 28866348750,0.909990310668945,L, + 30790772000,0.920389175415039,L, + 32715195250,0.931189537048340,L, + 34639618500,0.942376136779785,L, + 36564041750,0.953934669494629,L, + 38488465000,0.965850830078125,L, + 40412888250,0.978113174438477,L, + 42337311500,0.990708827972412,L, + 44261734750,1.003626823425293,L, + 46186158000,1.016856193542480,L, + 48110581250,1.030387401580811,L, + 50035004500,1.044209957122803,L, + 51959427750,1.058314800262451,L, + 53883851000,1.072693824768066,L, + 55808274250,1.087337970733643,L, + 57732697500,1.102239131927490,L, + 59657120750,1.117389678955078,L, + 61581544000,1.132782459259033,L, + 63505967250,1.148408889770508,L, + 65430390500,1.164262771606445,L, + 67354813750,1.180336475372314,L, + 69279237000,1.196622848510742,L, + 71203660250,1.213114738464355,L, + 73128083500,1.229805469512939,L, + 75052506750,1.246686935424805,L, + 76976930000,1.263751506805420,L, + 78901353250,1.280990123748779,L, + 80825776500,1.298395156860352,L, + 82750199750,1.315954685211182,L, + 84674623000,1.333658218383789,L, + 86599046250,1.351490974426270,L, + 88523469500,1.369436264038086,L, + 90447892750,1.387471675872803,L, + 92372316000,1.405568122863770,L, + 94296739250,1.423682212829590,L, + 96221162500,1.441750526428223,L, + 98145585750,1.459661483764648,L, + 100070009000,1.477200984954834,L, + 101994432250,1.493816852569580,L, + 103918855500,1.506080150604248,L, + 105843278750,-0.513281345367432,L, + 107767702000,-0.026323318481445,L, + 109692125250,-0.023520231246948,L, + 111616548500,-0.020761489868164,L, + 113540971750,-0.018049716949463,L, + 115465395000,-0.015385389328003,L, + 117389818250,-0.012770652770996,L, + 119314241500,-0.010206937789917,L, + 121238664750,-0.007696390151978,L, + 123163088000,-0.005240678787231,L, + 125087511250,-0.002841711044312,L, + 127011934500,-0.000502109527588,L, + 128936357750,0.001775741577148,L, + 130860781000,0.003989934921265,L, + 132785204250,0.006137132644653,L, + 134709627500,0.008214712142944,L, + 136634050750,0.010219335556030,L, + 138558474000,0.012147903442383,L, + 140482897250,0.013996839523315,L, + 142407320500,0.015761137008667,L, + 144331743750,0.017437696456909,L, + 146256167000,0.019021272659302,L, + 148180590250,0.020506143569946,L, + 150105013500,0.021887302398682,L, + 152029436750,0.023157596588135,L, + 153953860000,0.024310111999512,L, + 155878283250,0.025336980819702,L, + 157802706500,0.026228904724121,L, + 159727129750,0.026976346969604,L, + 161651553000,0.027567148208618,L, + 163575976250,0.027987718582153,L, + 165500399500,0.028223037719727,L, + 167424822750,0.028254985809326,L, + 169349246000,0.028061866760254,L, + 171273669250,0.027618169784546,L, + 173198092500,0.026892900466919,L, + 175122515750,0.025846242904663,L, + 177046939000,0.024429559707642,L, + 178971362250,0.022578716278076,L, + 180895785500,0.020206928253174,L, + 182820208750,0.017192363739014,L, + 184744632000,0.013352394104004,L, + 186669055250,0.008388996124268,L, + 188593478500,0.001745462417603,L, + 190517901750,-0.007927417755127,L, + 192442325000,-0.026323318481445,L, + 194366748250,-0.023398160934448,L, + 196291171500,-0.020269632339478,L, + 198215594750,-0.016932487487793,L, + 200140018000,-0.013380527496338,L, + 202064441250,-0.009607791900635,L, + 203988864500,-0.005608320236206,L, + 205913287750,-0.001375198364258,L, + 207837711000,0.003098011016846,L, + 209762134250,0.007818222045898,L, + 211686557500,0.012793064117432,L, + 213610980750,0.018029689788818,L, + 215535404000,0.023536682128906,L, + 217459827250,0.029321432113647,L, + 219384250500,0.035392999649048,L, + 221308673750,0.041759967803955,L, + 223233097000,0.048431634902954,L, + 225157520250,0.055417060852051,L, + 227081943500,0.062726736068726,L, + 229006366750,0.070370197296143,L, + 230930790000,0.078357934951782,L, + 232855213250,0.086700916290283,L, + 234779636500,0.095410585403442,L, + 236704059750,0.104497671127319,L, + 238628483000,0.113973855972290,L, + 240552906250,0.123851537704468,L, + 242477329500,0.134141683578491,L, + 244401752750,0.144857406616211,L, + 246326176000,0.156009435653687,L, + 248250599250,0.167610406875610,L, + 250175022500,0.179671049118042,L, + 252099445750,0.192203044891357,L, + 254023869000,0.205215930938721,L, + 255948292250,0.218719482421875,L, + 257872715500,0.232721805572510,L, + 259797138750,0.247228145599365,L, + 261721562000,0.262243270874023,L, + 263645985250,0.277768135070801,L, + 265570408500,0.293801307678223,L, + 267494831750,0.310336112976074,L, + 269419255000,0.327362537384033,L, + 271343678250,0.344864368438721,L, + 273268101500,0.362818717956543,L, + 275192524750,0.381196498870850,L, + 277116948000,0.399960517883301,L, + 279041371250,0.419064521789551,L, + 280965794500,0.438453674316406,L, + 282890217750,0.458064079284668,L, + 284814641000,0.477822303771973,L, + 286739064250,0.497648239135742,L, + 288663487500,0.517453193664551,L, + 290587910750,0.537143230438232,L, + 292512334000,0.556622505187988,L, + 294436757250,0.575791358947754,L, + 296361180500,0.594553947448730,L, + 298285603750,0.612818717956543,L, + 300210027000,0.630498409271240,L, + 302134450250,0.647518157958984,L, + 304058873500,0.663808822631836,L, + 305983296750,0.679316997528076,L, + 307907720000,0.693997383117676,L, + 309832143250,0.707817554473877,L, + 311756566500,0.720757007598877,L, + 313680989750,0.732804298400879,L, + 315605413000,0.743956089019775,L, + 317529836250,0.754219055175781,L, + 319454259500,0.763603687286377,L, + 321378682750,0.772127628326416,L, + 323303106000,0.779812335968018,L, + 325227529250,0.786682128906250,L, + 327151952500,0.792763233184814,L, + 329076375750,0.798083782196045,L, + 331000799000,0.802672863006592,L, + 332925222250,0.806559085845947,L, + 334849645500,0.809772014617920,L, + 336774068750,0.812339782714844,L, + 338698492000,0.814290523529053,L, + 340622915250,0.815652370452881,L, + 342547338500,0.816451549530029,L, + 344471761750,0.816711425781250,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,72.193801790988744,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 11546539500,69.927674797975996,L, + 13470962750,69.549985827442356,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 30790772000,66.150791922828645,L, + 32715195250,65.773109782484170,L, + 34639618500,65.395413981761337,L, + 36564041750,65.017725011227697,L, + 38488465000,64.640029210504863,L, + 40412888250,64.262347070160388,L, + 42337311500,63.884658099626733,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 48110581250,62.751598018214949,L, + 63505967250,59.730086253945728,L, + 65430390500,59.352390453222903,L, + 67354813750,58.974715143067591,L, + 80825776500,56.330892349332025,L, + 82750199750,55.953206793892960,L, + 86599046250,55.197828852825651,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442457741947514,L, + 92372316000,54.064765356319278,L, + 94296739250,53.687076385785630,L, + 96221162500,53.309384000157387,L, + 98145585750,52.931698444718322,L, + 100070009000,52.554009474184667,L, + 103918855500,51.798638363306537,L, + 105843278750,34.802665425143438,L, + 107767702000,34.802662010048856,L, + 109692125250,34.802665425143438,L, + 113540971750,34.802665425143438,L, + 115465395000,34.802668840238027,L, + 117389818250,34.802668840238027,L, + 119314241500,34.802672255332610,L, + 121238664750,34.802662010048856,L, + 123163088000,34.802668840238027,L, + 125087511250,34.802668840238027,L, + 127011934500,34.802665425143438,L, + 128936357750,34.802665425143438,L, + 130860781000,34.802668840238027,L, + 132785204250,34.802668840238027,L, + 134709627500,34.802665425143438,L, + 136634050750,34.802665425143438,L, + 138558474000,34.802668840238027,L, + 140482897250,34.802665425143438,L, + 142407320500,34.802668840238027,L, + 144331743750,34.802662010048856,L, + 148180590250,34.802668840238027,L, + 152029436750,34.802668840238027,L, + 153953860000,34.802662010048856,L, + 155878283250,34.802668840238027,L, + 157802706500,34.802668840238027,L, + 159727129750,34.802665425143438,L, + 161651553000,34.802672255332610,L, + 163575976250,34.802665425143438,L, + 165500399500,34.802668840238027,L, + 167424822750,34.802668840238027,L, + 169349246000,34.802665425143438,L, + 177046939000,34.802665425143438,L, + 178971362250,34.802662010048856,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802665425143438,L, + 184744632000,34.802665425143438,L, + 186669055250,34.802668840238027,L, + 188593478500,34.802665425143438,L, + 190517901750,34.802665425143438,L, + 192442325000,34.802662010048856,L, + 194366748250,35.280751346286969,L, + 198215594750,36.236923188574018,L, + 202064441250,37.193101861050238,L, + 203988864500,37.671180952004597,L, + 205913287750,38.149270288242704,L, + 207837711000,38.627356209386228,L, + 209762134250,39.105448960718924,L, + 211686557500,39.583528051673284,L, + 213610980750,40.061613972816808,L, + 215535404000,40.539703309054921,L, + 217459827250,41.017785815103856,L, + 221308673750,41.973957657390912,L, + 223233097000,42.452046993629018,L, + 225157520250,42.930132914772550,L, + 227081943500,43.408222251010656,L, + 229006366750,43.886304757059598,L, + 232855213250,44.842483429535818,L, + 236704059750,45.798655271822874,L, + 238628483000,46.276737777871809,L, + 240552906250,46.754827114109922,L, + 242477329500,47.232909620158864,L, + 244401752750,47.711002371491560,L, + 246326176000,48.189084877540495,L, + 248250599250,48.667177628873191,L, + 252099445750,49.623342640971075,L, + 254023869000,50.101435392303770,L, + 257872715500,51.057600404401654,L, + 259797138750,51.535689740639761,L, + 261721562000,52.013772246688703,L, + 263645985250,52.491861582926816,L, + 265570408500,52.969944088975751,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926115931262807,L, + 273268101500,54.882294603739027,L, + 277116948000,55.838466446026075,L, + 279041371250,56.316555782264189,L, + 280965794500,56.794638288313131,L, + 282890217750,57.272731039645826,L, + 284814641000,57.750813545694768,L, + 294436757250,60.141243151412390,L, + 296361180500,60.619335902745085,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 304058873500,62.531679587319189,L, + 305983296750,63.009765508462714,L, + 307907720000,63.487844599417073,L, + 309832143250,63.965937350749769,L, + 311756566500,64.444023271893300,L, + 313680989750,64.922109193036817,L, + 327151952500,68.268710641041494,L, + 329076375750,68.746796562185025,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345074235403995 + KeyVer: 4005 + KeyCount: 139 + Key: + 0,-20.345074235403995,L, + 1924423250,-20.191412054551854,L, + 3848846500,-20.037753288794296,L, + 7697693000,-19.730425511995431,L, + 9622116250,-19.576763331143290,L, + 13470962750,-19.269442384533590,L, + 15395386000,-19.115778496134158,L, + 17319809250,-18.962116315282017,L, + 19244232500,-18.808452426882582,L, + 21168655750,-18.654791953577735,L, + 23093079000,-18.501128065178300,L, + 25017502250,-18.347469299420744,L, + 26941925500,-18.193807118568603,L, + 28866348750,-18.040146645263757,L, + 30790772000,-17.886481049317030,L, + 32715195250,-17.732820576012180,L, + 34639618500,-17.579158395160039,L, + 36564041750,-17.425494506760607,L, + 38488465000,-17.271835741003049,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810845783352043,L, + 48110581250,-16.503524836742343,L, + 50035004500,-16.349860948342911,L, + 51959427750,-16.196198767490770,L, + 53883851000,-16.042540001733215,L, + 57732697500,-15.735212224934347,L, + 59657120750,-15.581551751629497,L, + 67354813750,-14.966903028220933,L, + 69279237000,-14.813239139821500,L, + 75052506750,-14.352257719906955,L, + 78901353250,-14.044929943108087,L, + 80825776500,-13.891268616029592,L, + 82750199750,-13.737606435177451,L, + 84674623000,-13.583945108098957,L, + 86599046250,-13.430282927246816,L, + 88523469500,-13.276621600168321,L, + 90447892750,-13.122958565542534,L, + 92372316000,-12.969297238464039,L, + 94296739250,-12.815635057611898,L, + 96221162500,-12.661972022986109,L, + 98145585750,-12.508310695907616,L, + 100070009000,-12.354648515055475,L, + 101994432250,-12.200985480429686,L, + 103918855500,-12.047325860898484,L, + 105843278750,-5.132533698967659,L, + 107767702000,-5.132534979628129,L, + 109692125250,-5.132533698967659,L, + 111616548500,-5.132534125854483,L, + 113540971750,-5.132533698967659,L, + 121238664750,-5.132533698967659,L, + 123163088000,-5.132534125854483,L, + 125087511250,-5.132533698967659,L, + 128936357750,-5.132533698967659,L, + 130860781000,-5.132534125854483,L, + 132785204250,-5.132533698967659,L, + 134709627500,-5.132534125854483,L, + 136634050750,-5.132533698967659,L, + 138558474000,-5.132533698967659,L, + 140482897250,-5.132534552741306,L, + 144331743750,-5.132533698967659,L, + 148180590250,-5.132533698967659,L, + 150105013500,-5.132533272080837,L, + 152029436750,-5.132533698967659,L, + 153953860000,-5.132534552741306,L, + 155878283250,-5.132534552741306,L, + 157802706500,-5.132533698967659,L, + 159727129750,-5.132534125854483,L, + 163575976250,-5.132534125854483,L, + 165500399500,-5.132533698967659,L, + 171273669250,-5.132533698967659,L, + 173198092500,-5.132534552741306,L, + 175122515750,-5.132534125854483,L, + 177046939000,-5.132534552741306,L, + 178971362250,-5.132534552741306,L, + 180895785500,-5.132533698967659,L, + 182820208750,-5.132533272080837,L, + 184744632000,-5.132534552741306,L, + 186669055250,-5.132534125854483,L, + 188593478500,-5.132534125854483,L, + 190517901750,-5.132533698967659,L, + 192442325000,-5.132534979628129,L, + 194366748250,-5.327042545490534,L, + 196291171500,-5.521552245787055,L, + 198215594750,-5.716060238536283,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105077504695208,L, + 203988864500,-6.299588058765375,L, + 207837711000,-6.688604898037477,L, + 209762134250,-6.883114598333997,L, + 211686557500,-7.077622591083226,L, + 213610980750,-7.272131437606100,L, + 215535404000,-7.466639857242151,L, + 217459827250,-7.661149984425495,L, + 219384250500,-7.855657550287900,L, + 221308673750,-8.050167677471244,L, + 223233097000,-8.244676950880940,L, + 225157520250,-8.439185370516991,L, + 227081943500,-8.633692936379397,L, + 229006366750,-8.828203917336387,L, + 230930790000,-9.022713190746083,L, + 232855213250,-9.217220756608489,L, + 234779636500,-9.411730030018186,L, + 236704059750,-9.606240157201530,L, + 238628483000,-9.800746869290288,L, + 240552906250,-9.995256996473632,L, + 244401752750,-10.384275543293027,L, + 246326176000,-10.578782255381785,L, + 248250599250,-10.773293236338775,L, + 252099445750,-11.162308368063584,L, + 254023869000,-11.356818495246928,L, + 255948292250,-11.551326061109334,L, + 257872715500,-11.745838749613617,L, + 259797138750,-11.940344607928729,L, + 261721562000,-12.134855588885719,L, + 263645985250,-12.329361447200831,L, + 267494831750,-12.718381701567518,L, + 269419255000,-12.912890974977216,L, + 271343678250,-13.107399394613267,L, + 277116948000,-13.690927214842359,L, + 279041371250,-13.885437342025703,L, + 282890217750,-14.274450766203220,L, + 284814641000,-14.468960039612917,L, + 286739064250,-14.663468459248968,L, + 288663487500,-14.857982001526898,L, + 290587910750,-15.052488713615656,L, + 298285603750,-15.830522392159860,L, + 300210027000,-16.025034226890497,L, + 304058873500,-16.414047651068014,L, + 305983296750,-16.608559485798651,L, + 313680989750,-17.386593164342855,L, + 315605413000,-17.581104999073492,L, + 317529836250,-17.775610003614958,L, + 319454259500,-17.970118423251009,L, + 325227529250,-18.553648804801039,L, + 329076375750,-18.942665644073141,L, + 331000799000,-19.137172356161901,L, + 332925222250,-19.331684190892535,L, + 340622915250,-20.109717869436739,L, + 344471761750,-20.498738123803427,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551200723339925 + KeyVer: 4005 + KeyCount: 164 + Key: + 0,17.551200723339925,L, + 1924423250,17.638763748499361,L, + 3848846500,17.726328481206092,L, + 5773269750,17.813894921460115,L, + 7697693000,17.901459654166846,L, + 9622116250,17.989022679326283,L, + 13470962750,18.164155559834327,L, + 15395386000,18.251718584993768,L, + 17319809250,18.339283317700495,L, + 21168655750,18.514416198208544,L, + 23093079000,18.601974100726103,L, + 25017502250,18.689545663622003,L, + 26941925500,18.777112103876025,L, + 28866348750,18.864676836582756,L, + 30790772000,18.952239861742193,L, + 32715195250,19.039804594448924,L, + 34639618500,19.127371034702946,L, + 36564041750,19.214930644767797,L, + 38488465000,19.302505622758282,L, + 40412888250,19.390065232823137,L, + 42337311500,19.477633380624450,L, + 46186158000,19.652759430943327,L, + 48110581250,19.740324163650058,L, + 50035004500,19.827894018998663,L, + 53883851000,20.003020069317540,L, + 55808274250,20.090584802024271,L, + 59657120750,20.265721097626901,L, + 61581544000,20.353282415239047,L, + 63505967250,20.440845440398483,L, + 65430390500,20.528413588199797,L, + 67354813750,20.615976613359237,L, + 69279237000,20.703541346065965,L, + 73128083500,20.878674226574010,L, + 75052506750,20.966233836638864,L, + 76976930000,21.053803691987472,L, + 78901353250,21.141370132241494,L, + 80825776500,21.228934864948226,L, + 82750199750,21.316494475013076,L, + 84674623000,21.404066037908976,L, + 86599046250,21.491630770615707,L, + 90447892750,21.666756820934584,L, + 92372316000,21.754323261188606,L, + 96221162500,21.929452726602065,L, + 101994432250,22.192152047364132,L, + 103918855500,22.279715072523572,L, + 105843278750,26.220143412252060,L, + 107767702000,26.220141704704769,L, + 109692125250,26.220141704704769,L, + 111616548500,26.220138289610183,L, + 113540971750,26.220143412252060,L, + 115465395000,26.220141704704769,L, + 117389818250,26.220141704704769,L, + 119314241500,26.220136582062892,L, + 121238664750,26.220141704704769,L, + 123163088000,26.220145119799355,L, + 125087511250,26.220143412252060,L, + 127011934500,26.220145119799355,L, + 128936357750,26.220138289610183,L, + 130860781000,26.220145119799355,L, + 132785204250,26.220139997157474,L, + 134709627500,26.220143412252060,L, + 136634050750,26.220139997157474,L, + 138558474000,26.220146827346646,L, + 140482897250,26.220139997157474,L, + 142407320500,26.220145119799355,L, + 144331743750,26.220139997157474,L, + 146256167000,26.220139997157474,L, + 148180590250,26.220148534893937,L, + 150105013500,26.220145119799355,L, + 152029436750,26.220139997157474,L, + 153953860000,26.220143412252060,L, + 155878283250,26.220141704704769,L, + 157802706500,26.220143412252060,L, + 159727129750,26.220141704704769,L, + 161651553000,26.220143412252060,L, + 163575976250,26.220138289610183,L, + 165500399500,26.220145119799355,L, + 167424822750,26.220141704704769,L, + 169349246000,26.220141704704769,L, + 171273669250,26.220139997157474,L, + 173198092500,26.220139997157474,L, + 175122515750,26.220143412252060,L, + 177046939000,26.220138289610183,L, + 178971362250,26.220146827346646,L, + 180895785500,26.220139997157474,L, + 182820208750,26.220141704704769,L, + 184744632000,26.220141704704769,L, + 186669055250,26.220143412252060,L, + 188593478500,26.220138289610183,L, + 190517901750,26.220143412252060,L, + 192442325000,26.220141704704769,L, + 194366748250,26.109296272212084,L, + 196291171500,25.998457669908568,L, + 198215594750,25.887617360057760,L, + 200140018000,25.776775342659661,L, + 202064441250,25.665935032808854,L, + 203988864500,25.555093015410751,L, + 205913287750,25.444249290465361,L, + 207837711000,25.333407273067259,L, + 209762134250,25.222563548121865,L, + 211686557500,25.111721530723766,L, + 215535404000,24.890040911022151,L, + 217459827250,24.779197186076757,L, + 219384250500,24.668355168678659,L, + 221308673750,24.557518273922437,L, + 223233097000,24.446672841429752,L, + 225157520250,24.335837654220821,L, + 227081943500,24.224987099086256,L, + 229006366750,24.114146789235448,L, + 230930790000,24.003308186931935,L, + 234779636500,23.781620737041148,L, + 236704059750,23.670778719643049,L, + 238628483000,23.559938409792242,L, + 240552906250,23.449092977299557,L, + 242477329500,23.338249252354164,L, + 244401752750,23.227412357597942,L, + 246326176000,23.116570340199839,L, + 248250599250,23.005731737896326,L, + 250175022500,22.894886305403642,L, + 252099445750,22.784047703100125,L, + 254023869000,22.673205685702026,L, + 255948292250,22.562358545662047,L, + 257872715500,22.451521650905825,L, + 259797138750,22.340681341055017,L, + 261721562000,22.229834201015041,L, + 265570408500,22.008150166218840,L, + 267494831750,21.897314979009909,L, + 269419255000,21.786464423875348,L, + 271343678250,21.675624114024540,L, + 273268101500,21.564782096626438,L, + 277116948000,21.343101476924822,L, + 279041371250,21.232259459526723,L, + 280965794500,21.121419149675916,L, + 282890217750,21.010573717183231,L, + 284814641000,20.899731699785129,L, + 286739064250,20.788891389934321,L, + 288663487500,20.678052787630808,L, + 290587910750,20.567207355138123,L, + 292512334000,20.456367045287315,L, + 294436757250,20.345523320341922,L, + 298285603750,20.123839285545721,L, + 300210027000,20.013002390789499,L, + 302134450250,19.902155250749523,L, + 304058873500,19.791311525804129,L, + 305983296750,19.680469508406027,L, + 307907720000,19.569630906102514,L, + 309832143250,19.458790596251706,L, + 311756566500,19.347946871306313,L, + 313680989750,19.237104853908214,L, + 315605413000,19.126266251604697,L, + 319454259500,18.904578801713914,L, + 321378682750,18.793738491863106,L, + 323303106000,18.682893059370418,L, + 325227529250,18.572056164614196,L, + 327151952500,18.461215854763388,L, + 329076375750,18.350367007176118,L, + 331000799000,18.239531819967187,L, + 332925222250,18.128684679927211,L, + 334849645500,18.017844370076403,L, + 336774068750,17.907000645131010,L, + 338698492000,17.796162042827497,L, + 340622915250,17.685313195240226,L, + 342547338500,17.574476300484001,L, + 344471761750,17.463637698180488,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388243675232 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,0.872388243675232,L, + 7697693000,0.813680768013000,L, + 9622116250,0.799003958702087,L, + 11546539500,0.784327089786530,L, + 13470962750,0.769650161266327,L, + 15395386000,0.754973351955414,L, + 21168655750,0.710942745208740,L, + 23093079000,0.696265935897827,L, + 26941925500,0.666912078857422,L, + 28866348750,0.652235209941864,L, + 30790772000,0.637558460235596,L, + 32715195250,0.622881531715393,L, + 34639618500,0.608204722404480,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578850924968719,L, + 40412888250,0.564174115657806,L, + 42337311500,0.549497246742249,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143508911133,L, + 48110581250,0.505466639995575,L, + 50035004500,0.490789741277695,L, + 51959427750,0.476112931966782,L, + 53883851000,0.461436063051224,L, + 55808274250,0.446759164333344,L, + 57732697500,0.432082355022430,L, + 59657120750,0.417405456304550,L, + 61581544000,0.402728587388992,L, + 63505967250,0.388051778078079,L, + 65430390500,0.373374849557877,L, + 67354813750,0.358698010444641,L, + 69279237000,0.344021201133728,L, + 71203660250,0.329344332218170,L, + 73128083500,0.314667373895645,L, + 75052506750,0.299990534782410,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636856555939,L, + 80825776500,0.255959987640381,L, + 82750199750,0.241283133625984,L, + 84674623000,0.226606234908104,L, + 86599046250,0.211929365992546,L, + 88523469500,0.197252511978149,L, + 90447892750,0.182575702667236,L, + 92372316000,0.167898833751678,L, + 94296739250,0.153221949934959,L, + 96221162500,0.138545110821724,L, + 98145585750,0.123868227005005,L, + 100070009000,0.109191298484802,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837590456009,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420096755028,L, + 109692125250,0.152782797813416,L, + 121238664750,0.130958914756775,L, + 123163088000,0.127321586012840,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772345542908,L, + 132785204250,0.109135046601295,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 140482897250,0.094585783779621,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311156094074,L, + 146256167000,0.083673842251301,L, + 150105013500,0.076399229466915,L, + 153953860000,0.069124586880207,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849981546402,L, + 159727129750,0.058212660253048,L, + 161651553000,0.054575342684984,L, + 165500399500,0.047300722450018,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 171273669250,0.036388777196407,L, + 173198092500,0.032751459628344,L, + 175122515750,0.029114140197635,L, + 177046939000,0.025476828217506,L, + 178971362250,0.021839512512088,L, + 180895785500,0.018202200531960,L, + 182820208750,0.014564887620509,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290273904800,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420096755028,L, + 194366748250,0.165668785572052,L, + 196291171500,0.174917444586754,L, + 198215594750,0.184166133403778,L, + 200140018000,0.193414792418480,L, + 202064441250,0.202663481235504,L, + 203988864500,0.211912125349045,L, + 205913287750,0.221160784363747,L, + 207837711000,0.230409488081932,L, + 209762134250,0.239658132195473,L, + 211686557500,0.248906821012497,L, + 213610980750,0.258155494928360,L, + 215535404000,0.267404198646545,L, + 221308673750,0.295150130987167,L, + 223233097000,0.304398834705353,L, + 225157520250,0.313647478818893,L, + 227081943500,0.322896182537079,L, + 229006366750,0.332144826650620,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642204284668,L, + 234779636500,0.359890848398209,L, + 236704059750,0.369139522314072,L, + 238628483000,0.378388226032257,L, + 240552906250,0.387636899948120,L, + 244401752750,0.406134188175201,L, + 246326176000,0.415382921695709,L, + 248250599250,0.424631536006927,L, + 252099445750,0.443128943443298,L, + 254023869000,0.452377587556839,L, + 255948292250,0.461626261472702,L, + 257872715500,0.470874905586243,L, + 261721562000,0.489372253417969,L, + 263645985250,0.498620897531509,L, + 265570408500,0.507869601249695,L, + 267494831750,0.517118215560913,L, + 269419255000,0.526366889476776,L, + 271343678250,0.535615622997284,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361644744873,L, + 279041371250,0.572610199451447,L, + 280965794500,0.581858992576599,L, + 286739064250,0.609605014324188,L, + 288663487500,0.618853628635406,L, + 290587910750,0.628102302551270,L, + 292512334000,0.637351036071777,L, + 294436757250,0.646599650382996,L, + 296361180500,0.655848383903503,L, + 300210027000,0.674345612525940,L, + 302134450250,0.683594346046448,L, + 304058873500,0.692843019962311,L, + 305983296750,0.702091753482819,L, + 307907720000,0.711340367794037,L, + 309832143250,0.720589041709900,L, + 311756566500,0.729837775230408,L, + 313680989750,0.739086389541626,L, + 317529836250,0.757583737373352,L, + 319454259500,0.766832351684570,L, + 321378682750,0.776081085205078,L, + 323303106000,0.785329759120941,L, + 325227529250,0.794578254222870,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573069095612,L, + 336774068750,0.850070416927338,L, + 338698492000,0.859319031238556,L, + 340622915250,0.868567764759064,L, + 342547338500,0.877816379070282,L, + 344471761750,0.887065052986145,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175068855286 + KeyVer: 4005 + KeyCount: 140 + Key: + 0,0.652175068855286,L, + 1924423250,0.641203045845032,L, + 3848846500,0.630230963230133,L, + 5773269750,0.619258940219879,L, + 7697693000,0.608286976814270,L, + 9622116250,0.597314834594727,L, + 11546539500,0.586342811584473,L, + 13470962750,0.575370848178864,L, + 15395386000,0.564398765563965,L, + 17319809250,0.553426623344421,L, + 19244232500,0.542454600334167,L, + 21168655750,0.531482636928558,L, + 23093079000,0.520510613918304,L, + 25017502250,0.509538531303406,L, + 26941925500,0.498566508293152,L, + 28866348750,0.487594455480576,L, + 30790772000,0.476622462272644,L, + 32715195250,0.465650349855423,L, + 34639618500,0.454678386449814,L, + 38488465000,0.432734280824661,L, + 40412888250,0.421762287616730,L, + 42337311500,0.410790205001831,L, + 44261734750,0.399818211793900,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 51959427750,0.355930030345917,L, + 55808274250,0.333985924720764,L, + 57732697500,0.323013901710510,L, + 59657120750,0.312041848897934,L, + 63505967250,0.290097802877426,L, + 65430390500,0.279125750064850,L, + 67354813750,0.268153727054596,L, + 71203660250,0.246209621429443,L, + 73128083500,0.235237598419189,L, + 75052506750,0.224265545606613,L, + 76976930000,0.213293537497520,L, + 78901353250,0.202321514487267,L, + 80825776500,0.191349446773529,L, + 82750199750,0.180377423763275,L, + 86599046250,0.158433318138123,L, + 88523469500,0.147461295127869,L, + 90447892750,0.136489257216454,L, + 92372316000,0.125517189502716,L, + 94296739250,0.114545173943043,L, + 96221162500,0.103573143482208,L, + 98145585750,0.092601120471954,L, + 100070009000,0.081629030406475,L, + 101994432250,0.070657074451447,L, + 103918855500,0.059684958308935,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 123163088000,0.127321600914001,L, + 125087511250,0.123684294521809,L, + 127011934500,0.120046973228455,L, + 130860781000,0.112772360444069,L, + 132785204250,0.109135039150715,L, + 134709627500,0.105497732758522,L, + 138558474000,0.098223105072975,L, + 140482897250,0.094585798680782,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311156094074,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 152029436750,0.072761908173561,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849970370531,L, + 161651553000,0.054575342684984,L, + 163575976250,0.050938032567501,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290273904800,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 198215594750,0.175662904977798,L, + 200140018000,0.182077154517174,L, + 203988864500,0.194905683398247,L, + 205913287750,0.201319962739944,L, + 207837711000,0.207734227180481,L, + 209762134250,0.214148506522179,L, + 211686557500,0.220562770962715,L, + 213610980750,0.226977005600929,L, + 215535404000,0.233391299843788,L, + 217459827250,0.239805564284325,L, + 219384250500,0.246219843626022,L, + 221308673750,0.252634108066559,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 227081943500,0.271876871585846,L, + 229006366750,0.278291165828705,L, + 230930790000,0.284705400466919,L, + 232855213250,0.291119664907455,L, + 234779636500,0.297533899545670,L, + 236704059750,0.303948223590851,L, + 238628483000,0.310362458229065,L, + 240552906250,0.316776752471924,L, + 244401752750,0.329605281352997,L, + 246326176000,0.336019515991211,L, + 248250599250,0.342433780431747,L, + 250175022500,0.348848074674606,L, + 252099445750,0.355262309312820,L, + 254023869000,0.361676573753357,L, + 257872715500,0.374505162239075,L, + 259797138750,0.380919396877289,L, + 261721562000,0.387333691120148,L, + 263645985250,0.393747925758362,L, + 267494831750,0.406576454639435,L, + 269419255000,0.412990778684616,L, + 271343678250,0.419404983520508,L, + 273268101500,0.425819277763367,L, + 275192524750,0.432233542203903,L, + 277116948000,0.438647776842117,L, + 279041371250,0.445062041282654,L, + 280965794500,0.451476365327835,L, + 284814641000,0.464304834604263,L, + 286739064250,0.470719128847122,L, + 288663487500,0.477133363485336,L, + 290587910750,0.483547657728195,L, + 292512334000,0.489961892366409,L, + 294436757250,0.496376186609268,L, + 296361180500,0.502790391445160,L, + 298285603750,0.509204745292664,L, + 302134450250,0.522033214569092,L, + 305983296750,0.534861803054810,L, + 307907720000,0.541276037693024,L, + 309832143250,0.547690212726593,L, + 311756566500,0.554104566574097,L, + 313680989750,0.560518801212311,L, + 315605413000,0.566933095455170,L, + 317529836250,0.573347270488739,L, + 319454259500,0.579761624336243,L, + 323303106000,0.592590212821960,L, + 325227529250,0.599004387855530,L, + 331000799000,0.618247270584106,L, + 334849645500,0.631075739860535,L, + 336774068750,0.637490034103394,L, + 340622915250,0.650318503379822,L, + 342547338500,0.656732857227325,L, + 344471761750,0.663147032260895,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695305824280 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.869695305824280,L, + 1924423250,0.855063796043396,L, + 3848846500,0.840432226657867,L, + 5773269750,0.825800776481628,L, + 7697693000,0.811169147491455,L, + 9622116250,0.796537578105927,L, + 11546539500,0.781905949115753,L, + 15395386000,0.752642929553986,L, + 17319809250,0.738011360168457,L, + 19244232500,0.723379731178284,L, + 21168655750,0.708748161792755,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485082626343,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 30790772000,0.635590374469757,L, + 32715195250,0.620958924293518,L, + 34639618500,0.606327295303345,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064096927643,L, + 42337311500,0.547801077365875,L, + 46186158000,0.518537938594818,L, + 48110581250,0.503906309604645,L, + 50035004500,0.489274799823761,L, + 51959427750,0.474643230438232,L, + 55808274250,0.445380151271820,L, + 57732697500,0.430748552083969,L, + 59657120750,0.416116982698441,L, + 61581544000,0.401485443115234,L, + 63505967250,0.386853873729706,L, + 67354813750,0.357590794563293,L, + 69279237000,0.342959195375443,L, + 71203660250,0.328327625989914,L, + 73128083500,0.313696086406708,L, + 75052506750,0.299064576625824,L, + 76976930000,0.284433007240295,L, + 78901353250,0.269801378250122,L, + 80825776500,0.255169868469238,L, + 82750199750,0.240538284182549,L, + 86599046250,0.211275205016136,L, + 88523469500,0.196643650531769,L, + 90447892750,0.182012021541595,L, + 92372316000,0.167380511760712,L, + 94296739250,0.152748942375183,L, + 96221162500,0.138117432594299,L, + 98145585750,0.123485855758190,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222716987133,L, + 103918855500,0.079591155052185,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420141458511,L, + 109692125250,0.152782812714577,L, + 121238664750,0.130958929657936,L, + 123163088000,0.127321630716324,L, + 127011934500,0.120046988129616,L, + 128936357750,0.116409681737423,L, + 132785204250,0.109135039150715,L, + 134709627500,0.105497732758522,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 146256167000,0.083673857152462,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 159727129750,0.058212660253048,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 171273669250,0.036388777196407,L, + 173198092500,0.032751459628344,L, + 175122515750,0.029114156961441,L, + 182820208750,0.014564901590347,L, + 184744632000,0.010927588678896,L, + 186669055250,0.007290273904800,L, + 188593478500,0.003652959596366,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420141458511,L, + 196291171500,0.174848139286041,L, + 198215594750,0.184062153100967,L, + 200140018000,0.193276181817055,L, + 203988864500,0.211704179644585,L, + 205913287750,0.220918208360672,L, + 209762134250,0.239346206188202,L, + 211686557500,0.248560220003128,L, + 213610980750,0.257774204015732,L, + 215535404000,0.266988247632980,L, + 221308673750,0.294630289077759,L, + 223233097000,0.303844273090363,L, + 225157520250,0.313058316707611,L, + 227081943500,0.322272270917892,L, + 229006366750,0.331486314535141,L, + 232855213250,0.349914342164993,L, + 234779636500,0.359128326177597,L, + 236704059750,0.368342399597168,L, + 238628483000,0.377556353807449,L, + 240552906250,0.386770337820053,L, + 242477329500,0.395984441041946,L, + 244401752750,0.405198395252228,L, + 246326176000,0.414412438869476,L, + 248250599250,0.423626452684402,L, + 250175022500,0.432840406894684,L, + 252099445750,0.442054420709610,L, + 254023869000,0.451268404722214,L, + 255948292250,0.460482478141785,L, + 257872715500,0.469696462154388,L, + 259797138750,0.478910505771637,L, + 261721562000,0.488124459981918,L, + 263645985250,0.497338503599167,L, + 265570408500,0.506552517414093,L, + 267494831750,0.515766501426697,L, + 269419255000,0.524980545043945,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408572673798,L, + 275192524750,0.552622497081757,L, + 277116948000,0.561836600303650,L, + 280965794500,0.580264568328857,L, + 284814641000,0.598692655563354,L, + 286739064250,0.607906639575958,L, + 288663487500,0.617120683193207,L, + 290587910750,0.626334607601166,L, + 294436757250,0.644762694835663,L, + 296361180500,0.653976678848267,L, + 298285603750,0.663190603256226,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618690490723,L, + 304058873500,0.690832734107971,L, + 305983296750,0.700046718120575,L, + 307907720000,0.709260642528534,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688670158386,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116816997528,L, + 317529836250,0.755330681800842,L, + 319454259500,0.764544785022736,L, + 321378682750,0.773758828639984,L, + 323303106000,0.782972812652588,L, + 325227529250,0.792186856269836,L, + 327151952500,0.801400840282440,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042851924896,L, + 334849645500,0.838256835937500,L, + 338698492000,0.856684923171997,L, + 340622915250,0.865898847579956,L, + 342547338500,0.875112950801849,L, + 344471761750,0.884326934814453,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_039" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792774200439 + KeyVer: 4005 + KeyCount: 74 + Key: + 0,0.016792774200439,L, + 192442325000,0.016792774200439,L, + 194366748250,0.016793012619019,L, + 196291171500,0.016792774200439,L, + 198215594750,0.016792774200439,L, + 200140018000,0.016792535781860,L, + 202064441250,0.016792535781860,L, + 203988864500,0.016792297363281,L, + 205913287750,0.016792774200439,L, + 207837711000,0.016792774200439,L, + 209762134250,0.016793012619019,L, + 211686557500,0.016792774200439,L, + 213610980750,0.016792774200439,L, + 215535404000,0.016792535781860,L, + 217459827250,0.016792774200439,L, + 219384250500,0.016792535781860,L, + 221308673750,0.016793012619019,L, + 223233097000,0.016792774200439,L, + 225157520250,0.016793012619019,L, + 227081943500,0.016792535781860,L, + 230930790000,0.016793012619019,L, + 232855213250,0.016792535781860,L, + 234779636500,0.016792297363281,L, + 236704059750,0.016793012619019,L, + 240552906250,0.016792535781860,L, + 242477329500,0.016793251037598,L, + 244401752750,0.016793489456177,L, + 246326176000,0.016792535781860,L, + 248250599250,0.016793251037598,L, + 250175022500,0.016792774200439,L, + 252099445750,0.016792774200439,L, + 254023869000,0.016793012619019,L, + 255948292250,0.016792535781860,L, + 259797138750,0.016793012619019,L, + 261721562000,0.016792535781860,L, + 263645985250,0.016793251037598,L, + 265570408500,0.016793012619019,L, + 267494831750,0.016792535781860,L, + 271343678250,0.016793012619019,L, + 273268101500,0.016793489456177,L, + 275192524750,0.016793012619019,L, + 277116948000,0.016793012619019,L, + 279041371250,0.016792774200439,L, + 280965794500,0.016793012619019,L, + 282890217750,0.016792774200439,L, + 284814641000,0.016793012619019,L, + 286739064250,0.016793012619019,L, + 290587910750,0.016792535781860,L, + 292512334000,0.016792774200439,L, + 294436757250,0.016792535781860,L, + 296361180500,0.016792774200439,L, + 298285603750,0.016792774200439,L, + 300210027000,0.016792535781860,L, + 302134450250,0.016792535781860,L, + 304058873500,0.016792774200439,L, + 305983296750,0.016792774200439,L, + 307907720000,0.016793012619019,L, + 309832143250,0.016792535781860,L, + 311756566500,0.016792774200439,L, + 315605413000,0.016792774200439,L, + 317529836250,0.016793251037598,L, + 319454259500,0.016792774200439,L, + 321378682750,0.016793012619019,L, + 325227529250,0.016792535781860,L, + 327151952500,0.016793251037598,L, + 329076375750,0.016792774200439,L, + 331000799000,0.016792535781860,L, + 332925222250,0.016792535781860,L, + 334849645500,0.016793012619019,L, + 336774068750,0.016792774200439,L, + 338698492000,0.016793012619019,L, + 340622915250,0.016793012619019,L, + 342547338500,0.016793251037598,L, + 344471761750,0.016792774200439,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058501720428467 + KeyVer: 4005 + KeyCount: 74 + Key: + 0,-0.058501720428467,L, + 190517901750,-0.058501720428467,L, + 192442325000,-0.058537483215332,L, + 194366748250,-0.059147834777832,L, + 196291171500,-0.059921264648438,L, + 198215594750,-0.060734748840332,L, + 200140018000,-0.061569213867188,L, + 202064441250,-0.062417030334473,L, + 203988864500,-0.063274383544922,L, + 205913287750,-0.064138412475586,L, + 207837711000,-0.065008163452148,L, + 209762134250,-0.065882205963135,L, + 211686557500,-0.066759586334229,L, + 213610980750,-0.067639827728271,L, + 215535404000,-0.068522453308105,L, + 219384250500,-0.070294380187988,L, + 221308673750,-0.071183204650879,L, + 223233097000,-0.072072982788086,L, + 225157520250,-0.072963237762451,L, + 227081943500,-0.073854923248291,L, + 229006366750,-0.074747085571289,L, + 230930790000,-0.075639724731445,L, + 232855213250,-0.076533317565918,L, + 242477329500,-0.081003665924072,L, + 246326176000,-0.082790851593018,L, + 248250599250,-0.083683967590332,L, + 252099445750,-0.085468292236328,L, + 254023869000,-0.086359024047852,L, + 257872715500,-0.088136672973633,L, + 259797138750,-0.089023113250732,L, + 261721562000,-0.089908599853516,L, + 263645985250,-0.090791702270508,L, + 265570408500,-0.091671943664551,L, + 267494831750,-0.092548847198486,L, + 269419255000,-0.093423843383789,L, + 271343678250,-0.094292640686035,L, + 273268101500,-0.095157146453857,L, + 275192524750,-0.096014022827148,L, + 277116948000,-0.096862316131592,L, + 279041371250,-0.097697257995605,L, + 280965794500,-0.098510265350342,L, + 282890217750,-0.099283695220947,L, + 284814641000,-0.099894046783447,L, + 286739064250,-0.099931240081787,L, + 288663487500,-0.099073886871338,L, + 290587910750,-0.097858905792236,L, + 292512334000,-0.096547126770020,L, + 294436757250,-0.095184803009033,L, + 296361180500,-0.093791007995605,L, + 298285603750,-0.092374324798584,L, + 300210027000,-0.090941429138184,L, + 302134450250,-0.089496612548828,L, + 304058873500,-0.088041782379150,L, + 305983296750,-0.086581230163574,L, + 307907720000,-0.085114002227783,L, + 309832143250,-0.083642959594727,L, + 311756566500,-0.082169055938721,L, + 313680989750,-0.080692768096924,L, + 315605413000,-0.079215526580811,L, + 317529836250,-0.077739238739014,L, + 319454259500,-0.076263427734375,L, + 321378682750,-0.074789047241211,L, + 323303106000,-0.073317527770996,L, + 325227529250,-0.071850776672363,L, + 327151952500,-0.070389747619629,L, + 329076375750,-0.068935871124268,L, + 331000799000,-0.067490577697754,L, + 332925222250,-0.066058158874512,L, + 334849645500,-0.064641952514648,L, + 336774068750,-0.063247203826904,L, + 338698492000,-0.061884403228760,L, + 340622915250,-0.060573101043701,L, + 342547338500,-0.059358596801758,L, + 344471761750,-0.058501720428467,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288229942321777 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.288229942321777,L, + 1924423250,0.298518657684326,L, + 3848846500,0.310405731201172,L, + 5773269750,0.323110580444336,L, + 7697693000,0.336395263671875,L, + 9622116250,0.350153923034668,L, + 11546539500,0.364335060119629,L, + 13470962750,0.378912925720215,L, + 15395386000,0.393878936767578,L, + 17319809250,0.409237384796143,L, + 19244232500,0.425002098083496,L, + 21168655750,0.441198348999023,L, + 23093079000,0.457860946655273,L, + 25017502250,0.475040912628174,L, + 26941925500,0.492805004119873,L, + 28866348750,0.511790275573730,L, + 30790772000,0.532561779022217,L, + 32715195250,0.555003166198730,L, + 34639618500,0.578838348388672,L, + 36564041750,0.603604793548584,L, + 38488465000,0.628665924072266,L, + 40412888250,0.653296947479248,L, + 42337311500,0.676801204681396,L, + 44261734750,0.698627471923828,L, + 46186158000,0.718426704406738,L, + 48110581250,0.736045360565186,L, + 50035004500,0.751482009887695,L, + 51959427750,0.765871047973633,L, + 53883851000,0.780288219451904,L, + 55808274250,0.794722080230713,L, + 57732697500,0.809162139892578,L, + 59657120750,0.823595523834229,L, + 61581544000,0.838007926940918,L, + 63505967250,0.852384567260742,L, + 65430390500,0.866709232330322,L, + 67354813750,0.880964279174805,L, + 69279237000,0.895131111145020,L, + 71203660250,0.909190177917480,L, + 73128083500,0.923121929168701,L, + 75052506750,0.936904907226562,L, + 76976930000,0.950517654418945,L, + 78901353250,0.963939666748047,L, + 80825776500,0.977149009704590,L, + 82750199750,0.990124702453613,L, + 84674623000,1.002847671508789,L, + 86599046250,1.015297412872314,L, + 88523469500,1.027457237243652,L, + 90447892750,1.039310455322266,L, + 92372316000,1.050842761993408,L, + 94296739250,1.062042236328125,L, + 96221162500,1.072897434234619,L, + 98145585750,1.083401203155518,L, + 100070009000,1.093547344207764,L, + 101994432250,1.103331565856934,L, + 103918855500,1.112752437591553,L, + 105843278750,1.121810913085938,L, + 107767702000,1.130506992340088,L, + 109692125250,1.138845920562744,L, + 111616548500,1.146831989288330,L, + 113540971750,1.154471874237061,L, + 115465395000,1.161772727966309,L, + 117389818250,1.168742656707764,L, + 119314241500,1.175390720367432,L, + 121238664750,1.181726455688477,L, + 123163088000,1.187759399414062,L, + 125087511250,1.193499565124512,L, + 127011934500,1.198957920074463,L, + 128936357750,1.204144001007080,L, + 130860781000,1.209068298339844,L, + 132785204250,1.213741302490234,L, + 134709627500,1.218172550201416,L, + 136634050750,1.222372055053711,L, + 138558474000,1.226348876953125,L, + 140482897250,1.230113029479980,L, + 142407320500,1.233672142028809,L, + 144331743750,1.237036228179932,L, + 146256167000,1.240212917327881,L, + 148180590250,1.243210315704346,L, + 150105013500,1.246036052703857,L, + 152029436750,1.248697280883789,L, + 153953860000,1.251201152801514,L, + 155878283250,1.253554344177246,L, + 157802706500,1.255763053894043,L, + 159727129750,1.257833480834961,L, + 161651553000,1.259771823883057,L, + 163575976250,1.261582851409912,L, + 165500399500,1.263272285461426,L, + 167424822750,1.264845371246338,L, + 169349246000,1.266306877136230,L, + 171273669250,1.267661094665527,L, + 173198092500,1.268911361694336,L, + 175122515750,1.270063877105713,L, + 177046939000,1.271121501922607,L, + 178971362250,1.272087574005127,L, + 180895785500,1.272965908050537,L, + 182820208750,1.273760318756104,L, + 184744632000,1.274474143981934,L, + 186669055250,1.275109767913818,L, + 188593478500,1.275670528411865,L, + 190517901750,1.276159763336182,L, + 192442325000,-0.578061103820801,L, + 282890217750,-0.578061103820801,L, + 284814641000,-0.557460546493530,L, + 286739064250,0.000370740890503,L, + 290587910750,0.015030145645142,L, + 292512334000,0.022360086441040,L, + 294436757250,0.029689788818359,L, + 296361180500,0.037019729614258,L, + 300210027000,0.051679134368896,L, + 302134450250,0.059009075164795,L, + 305983296750,0.073668479919434,L, + 307907720000,0.080998420715332,L, + 311756566500,0.095657825469971,L, + 313680989750,0.102987766265869,L, + 315605413000,0.110317468643188,L, + 317529836250,0.121187925338745,L, + 319454259500,0.134479522705078,L, + 321378682750,0.150350332260132,L, + 323303106000,0.168187618255615,L, + 325227529250,0.186523437500000,L, + 327151952500,0.203898429870605,L, + 329076375750,0.219612121582031,L, + 331000799000,0.233596324920654,L, + 332925222250,0.246043682098389,L, + 334849645500,0.257195472717285,L, + 336774068750,0.267271518707275,L, + 338698492000,0.276450157165527,L, + 340622915250,0.284874916076660,L, + 342547338500,0.292658805847168,L, + 344471761750,0.299891948699951,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467529284443565,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568996409327795,L, + 21168655750,66.372998467096352,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237300935935750,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348818600705343,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527321096856127,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098543889902942,L, + 196291171500,42.441668521185200,L, + 198215594750,38.276933354019228,L, + 200140018000,34.902164205877462,L, + 202064441250,32.037839000072104,L, + 203988864500,29.538737669565144,L, + 205913287750,27.317942642073707,L, + 207837711000,25.318527705960410,L, + 209762134250,23.500829952715037,L, + 211686557500,21.835862059500101,L, + 213610980750,20.301712779458231,L, + 215535404000,18.881328837779222,L, + 217459827250,17.561152308960619,L, + 219384250500,16.330167805418501,L, + 221308673750,15.179289468009468,L, + 223233097000,14.100946885812220,L, + 225157520250,13.088719681006955,L, + 227081943500,12.137130895652975,L, + 229006366750,11.241469406770273,L, + 230930790000,10.397630270667674,L, + 232855213250,9.602035321993746,L, + 234779636500,8.851522183162777,L, + 236704059750,8.143320358692682,L, + 238628483000,7.474937683310058,L, + 240552906250,6.844174409215341,L, + 242477329500,6.249050208436054,L, + 244401752750,5.687783682259293,L, + 246326176000,5.158796203213144,L, + 248250599250,4.660632514117572,L, + 250175022500,4.191997867238038,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776399093383,L, + 255948292250,2.952192387826271,L, + 257872715500,2.591109101268777,L, + 259797138750,2.254808942671227,L, + 261721562000,1.942610173777090,L, + 263645985250,1.653947382989136,L, + 265570408500,1.388353769566280,L, + 267494831750,1.145431261545955,L, + 269419255000,0.924908465630361,L, + 271343678250,0.726609077561547,L, + 273268101500,0.550526907480577,L, + 275192524750,0.396816941984672,L, + 277116948000,0.265868555217376,L, + 279041371250,0.158436469741760,L, + 280965794500,0.075941458286678,L, + 282890217750,0.021060888305704,L, + 284814641000,0.000309185366264,L, + 286739064250,0.000001885382944,L, + 288663487500,1.237622486920010,L, + 290587910750,2.992587834124961,L, + 292512334000,4.887326065783146,L, + 294436757250,6.855267063314249,L, + 296361180500,8.869395934447027,L, + 298285603750,10.915502897500113,L, + 300210027000,12.984964838646379,L, + 302134450250,15.072043545209374,L, + 304058873500,17.172644318781682,L, + 305983296750,19.283681621405755,L, + 307907720000,21.402723905737073,L, + 309832143250,23.527764803706944,L, + 311756566500,25.657098475570162,L, + 313680989750,27.789201789141817,L, + 315605413000,29.922655772621837,L, + 317529836250,32.056113171196444,L, + 319454259500,34.188211362126225,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442592762148479,L, + 325227529250,40.561631631385211,L, + 327151952500,42.672668934009288,L, + 329076375750,44.773269707581598,L, + 331000799000,46.860346706597298,L, + 332925222250,48.929815477932735,L, + 334849645500,50.975918172117588,L, + 336774068750,52.990038505513901,L, + 338698492000,54.957990175215585,L, + 340622915250,56.852725632109419,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429199967863628 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429199967863628,L, + 1924423250,-20.421560401276981,L, + 3848846500,-20.389152861212608,L, + 5773269750,-20.328219036079719,L, + 7697693000,-20.237252869166326,L, + 9622116250,-20.114739766023984,L, + 11546539500,-19.958842405765960,L, + 13470962750,-19.767296580682398,L, + 15395386000,-19.537332649064862,L, + 17319809250,-19.265550884253983,L, + 19244232500,-18.947800238781692,L, + 21168655750,-18.578939287750266,L, + 23093079000,-18.152574974096588,L, + 25017502250,-17.660581080255646,L, + 26941925500,-17.092461313020433,L, + 28866348750,-16.398734366948869,L, + 30790772000,-15.538794767425280,L, + 32715195250,-14.521077798074625,L, + 34639618500,-13.368169186934809,L, + 36564041750,-12.119607191563686,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565860078828472,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346956159963482,L, + 46186158000,-6.476726026681639,L, + 48110581250,-5.792768385557293,L, + 50035004500,-5.297142538625200,L, + 51959427750,-4.905136637817575,L, + 53883851000,-4.534031115870159,L, + 55808274250,-4.181762828766789,L, + 57732697500,-3.846592212703227,L, + 59657120750,-3.527032420874531,L, + 61581544000,-3.221807702009790,L, + 63505967250,-2.929808577255702,L, + 65430390500,-2.650062811872600,L, + 67354813750,-2.381716418770820,L, + 69279237000,-2.124010820065670,L, + 71203660250,-1.876271748020024,L, + 73128083500,-1.637894304005514,L, + 75052506750,-1.408334954374594,L, + 76976930000,-1.187101925507026,L, + 78901353250,-0.973750508054817,L, + 80825776500,-0.767873932236384,L, + 82750199750,-0.569102940949722,L, + 84674623000,-0.377098105809594,L, + 86599046250,-0.191548373064288,L, + 88523469500,-0.012166515416669,L, + 90447892750,0.161312539671287,L, + 92372316000,0.329133022321969,L, + 94296739250,0.491522877592478,L, + 96221162500,0.648692200500857,L, + 98145585750,0.800838399522375,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779182737059,L, + 103918855500,1.228905137826677,L, + 105843278750,1.362670764183188,L, + 107767702000,1.492215867241166,L, + 109692125250,1.617674596184778,L, + 111616548500,1.739167653263263,L, + 113540971750,1.856813819735155,L, + 115465395000,1.970721951740352,L, + 117389818250,2.080994929003226,L, + 119314241500,2.187729227945804,L, + 121238664750,2.291019617442820,L, + 123163088000,2.390948486651137,L, + 125087511250,2.487600786048556,L, + 127011934500,2.581052714933005,L, + 128936357750,2.671375776847359,L, + 130860781000,2.758639981230609,L, + 132785204250,2.842909787993047,L, + 134709627500,2.924244747846500,L, + 136634050750,3.002705051833028,L, + 138558474000,3.078340432267525,L, + 140482897250,3.151206384436997,L, + 142407320500,3.221346450797403,L, + 144331743750,3.288805027578349,L, + 146256167000,3.353623309358265,L, + 148180590250,3.415842490715584,L, + 150105013500,3.475492667171335,L, + 152029436750,3.532608843445015,L, + 153953860000,3.587218767180127,L, + 155878283250,3.639347624699236,L, + 157802706500,3.689017614117144,L, + 159727129750,3.736245810906775,L, + 161651553000,3.781050571201525,L, + 163575976250,3.823441713398326,L, + 165500399500,3.863419237497176,L, + 167424822750,3.900994669442301,L, + 169349246000,3.936156483289476,L, + 171273669250,3.968897421962708,L, + 173198092500,3.999195714234018,L, + 175122515750,4.027024039346726,L, + 177046939000,4.052339281731695,L, + 178971362250,4.075087226762390,L, + 180895785500,4.095180789526892,L, + 182820208750,4.112515809640360,L, + 184744632000,4.126921105486719,L, + 186669055250,4.138140544972095,L, + 188593478500,4.145734434668669,L, + 190517901750,4.148650071670614,L, + 192442325000,-20.443357242465751,L, + 194366748250,-23.594763836822793,L, + 196291171500,-25.119202295412212,L, + 198215594750,-26.241532149637926,L, + 200140018000,-27.150973545171109,L, + 202064441250,-27.922868591198775,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194803493909646,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223450473479598,L, + 211686557500,-30.672132430246261,L, + 213610980750,-31.085563780706536,L, + 215535404000,-31.468330996888088,L, + 217459827250,-31.824101890375200,L, + 219384250500,-32.155830517983901,L, + 221308673750,-32.465979162909981,L, + 223233097000,-32.756566146053174,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285789693512513,L, + 229006366750,-33.527151503307486,L, + 230930790000,-33.754555821533565,L, + 232855213250,-33.968952044485370,L, + 234779636500,-34.171207606187501,L, + 236704059750,-34.362060167070304,L, + 238628483000,-34.542175670577869,L, + 240552906250,-34.712155173357147,L, + 242477329500,-34.872531430163399,L, + 244401752750,-35.023782554238529,L, + 246326176000,-35.166338847500249,L, + 248250599250,-35.300586215636656,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656801071419821,L, + 255948292250,-35.760985361924462,L, + 257872715500,-35.858288236840323,L, + 259797138750,-35.948911186747921,L, + 261721562000,-36.033048872038599,L, + 263645985250,-36.110837896495767,L, + 265570408500,-36.182408033713642,L, + 267494831750,-36.247865151624360,L, + 269419255000,-36.307298042687144,L, + 271343678250,-36.360734027658658,L, + 273268101500,-36.408186766917254,L, + 275192524750,-36.449615279327908,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513856623566369,L, + 280965794500,-36.536088889314733,L, + 282890217750,-36.550879663962377,L, + 284814641000,-36.556463343608854,L, + 286739064250,-36.556545305878892,L, + 288663487500,-36.223027168707645,L, + 290587910750,-35.750087795103717,L, + 292512334000,-35.239490173510980,L, + 294436757250,-34.709163550500683,L, + 296361180500,-34.166388907728063,L, + 298285603750,-33.614994566222897,L, + 300210027000,-33.057309620492155,L, + 302134450250,-32.494877693288267,L, + 304058873500,-31.928795029973006,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788853532972439,L, + 309832143250,-30.216193397486467,L, + 311756566500,-29.642368714747011,L, + 313680989750,-29.067802956482609,L, + 315605413000,-28.492875198192198,L, + 317529836250,-27.917938902165325,L, + 319454259500,-27.343373143900923,L, + 321378682750,-26.769551876256049,L, + 323303106000,-26.196888325675491,L, + 325227529250,-25.625841822380934,L, + 327151952500,-25.056950243769514,L, + 329076375750,-24.490870995548839,L, + 331000799000,-23.928439068344947,L, + 332925222250,-23.370750707519623,L, + 334849645500,-22.819359781109039,L, + 336774068750,-22.276583430789124,L, + 338698492000,-21.746256807778831,L, + 340622915250,-21.235650648449628,L, + 342547338500,-20.762718105034871,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998294453681410 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-30.998294453681410,L, + 1924423250,-30.999069680152207,L, + 3848846500,-31.002389152088828,L, + 5773269750,-31.008608039328116,L, + 7697693000,-31.017900511693902,L, + 9622116250,-31.030403172969596,L, + 11546539500,-31.046327759019455,L, + 13470962750,-31.065882590613175,L, + 15395386000,-31.089368196074229,L, + 17319809250,-31.117122669766538,L, + 19244232500,-31.149569483418635,L, + 21168655750,-31.187237976691200,L, + 23093079000,-31.230783847744554,L, + 25017502250,-31.281016473995344,L, + 26941925500,-31.339035515899933,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526640321832403,L, + 32715195250,-31.666020577130066,L, + 34639618500,-31.831027702193584,L, + 36564041750,-32.014206545543892,L, + 38488465000,-32.205117163034643,L, + 40412888250,-32.391635968889084,L, + 42337311500,-32.561905754708086,L, + 44261734750,-32.706350595275310,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895960061729177,L, + 50035004500,-32.937726668503743,L, + 51959427750,-32.961393273977805,L, + 53883851000,-32.983809954833752,L, + 55808274250,-33.005079163909144,L, + 57732697500,-33.025320429514444,L, + 59657120750,-33.044619129014293,L, + 61581544000,-33.063050394489544,L, + 63505967250,-33.080682527831904,L, + 65430390500,-33.097573585649322,L, + 67354813750,-33.113781624549738,L, + 69279237000,-33.129340795479010,L, + 71203660250,-33.144302324855900,L, + 73128083500,-33.158696948531677,L, + 75052506750,-33.172555402357617,L, + 76976930000,-33.185918667468727,L, + 78901353250,-33.198793574054179,L, + 80825776500,-33.211234763627346,L, + 82750199750,-33.223235405999034,L, + 84674623000,-33.234829652115117,L, + 86599046250,-33.246034577448505,L, + 88523469500,-33.256867257472130,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287278674751569,L, + 96221162500,-33.296776052792460,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314852148430873,L, + 101994432250,-33.323475262258000,L, + 103918855500,-33.331814923234575,L, + 105843278750,-33.339895037022686,L, + 107767702000,-33.347712188527758,L, + 109692125250,-33.355290283411875,L, + 111616548500,-33.362619076391290,L, + 113540971750,-33.369732718411846,L, + 115465395000,-33.376610718906036,L, + 117389818250,-33.383266738252203,L, + 119314241500,-33.389714436828690,L, + 121238664750,-33.395946984446319,L, + 123163088000,-33.401981456578014,L, + 125087511250,-33.407817853223783,L, + 127011934500,-33.413466419667373,L, + 128936357750,-33.418920325719618,L, + 130860781000,-33.424182986475110,L, + 132785204250,-33.429271477406758,L, + 134709627500,-33.434185798514577,L, + 136634050750,-33.438929364893148,L, + 138558474000,-33.443491931258706,L, + 140482897250,-33.447890573084187,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456199498209500,L, + 146256167000,-33.460113196603906,L, + 148180590250,-33.463873215741998,L, + 150105013500,-33.467472725434590,L, + 152029436750,-33.470921970965442,L, + 153953860000,-33.474224367429137,L, + 155878283250,-33.477366254447340,L, + 157802706500,-33.480368122587549,L, + 159727129750,-33.483226556755199,L, + 161651553000,-33.485931311666519,L, + 163575976250,-33.488485802416101,L, + 165500399500,-33.490900274287696,L, + 167424822750,-33.493171312186725,L, + 169349246000,-33.495295501018596,L, + 171273669250,-33.497269425688728,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500783558016693,L, + 177046939000,-33.502306690201600,L, + 178971362250,-33.503682973319357,L, + 180895785500,-33.504895331897032,L, + 182820208750,-33.505943765934632,L, + 184744632000,-33.506814615053806,L, + 186669055250,-33.507487388687046,L, + 188593478500,-33.507948426456025,L, + 190517901750,-33.508122596279861,L, + 192442325000,-30.971082980028118,L, + 194366748250,-29.975504361324735,L, + 196291171500,-29.170225058181391,L, + 198215594750,-28.412331899952232,L, + 200140018000,-27.679725809577715,L, + 202064441250,-26.963589012839371,L, + 203988864500,-26.259338452804123,L, + 205913287750,-25.564248883993141,L, + 207837711000,-24.876535919485764,L, + 209762134250,-24.194927436549076,L, + 211686557500,-23.518532095496390,L, + 213610980750,-22.846663462316126,L, + 215535404000,-22.178802442631362,L, + 217459827250,-21.514520442071678,L, + 219384250500,-20.853481073820454,L, + 221308673750,-20.195419668047354,L, + 223233097000,-19.540112536057052,L, + 225157520250,-18.887361602363626,L, + 227081943500,-18.237021725447214,L, + 229006366750,-17.588964839260871,L, + 230930790000,-16.943081660777885,L, + 232855213250,-16.299278274897162,L, + 234779636500,-15.657491502368883,L, + 236704059750,-15.017656456395933,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743677619575937,L, + 242477329500,-13.109487724951995,L, + 244401752750,-12.477132589893845,L, + 246326176000,-11.846631851195349,L, + 248250599250,-11.217985508856511,L, + 250175022500,-10.591220029860361,L, + 252099445750,-9.966385786852030,L, + 254023869000,-9.343522053419244,L, + 255948292250,-8.722710791832045,L, + 257872715500,-8.104038233228703,L, + 259797138750,-7.487617075730522,L, + 261721562000,-6.873606975009354,L, + 263645985250,-6.262181674002207,L, + 265570408500,-5.653578094895919,L, + 267494831750,-5.048104449976784,L, + 269419255000,-4.446152621348432,L, + 271343678250,-3.848251948671538,L, + 273268101500,-3.255132408413646,L, + 275192524750,-2.667855241217045,L, + 277116948000,-2.088028529744449,L, + 279041371250,-1.518360123836644,L, + 280965794500,-0.964057402405525,L, + 282890217750,-0.438162158103963,L, + 284814641000,-0.024736082030488,L, + 286739064250,-0.000005139521921,L, + 288663487500,-0.641060211155319,L, + 290587910750,-1.550085498757662,L, + 292512334000,-2.531510151231800,L, + 294436757250,-3.550848863623508,L, + 296361180500,-4.594117997545967,L, + 298285603750,-5.653946498224276,L, + 300210027000,-6.725873398356775,L, + 302134450250,-7.806925858107221,L, + 304058873500,-8.894982676851505,L, + 305983296750,-9.988442175229261,L, + 307907720000,-11.086049305980502,L, + 309832143250,-12.186762465256802,L, + 311756566500,-13.289703973749814,L, + 313680989750,-14.394073845553004,L, + 315605413000,-15.499152349482582,L, + 317529836250,-16.604218900581113,L, + 319454259500,-17.708592187478889,L, + 321378682750,-18.811532842198254,L, + 323303106000,-19.912250270342785,L, + 325227529250,-21.009863377509550,L, + 327151952500,-22.103316899471782,L, + 329076375750,-23.191374571989712,L, + 331000799000,-24.272424470419221,L, + 332925222250,-25.344345821023019,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447439613642377,L, + 338698492000,-28.466795828393835,L, + 340622915250,-29.448210342305924,L, + 342547338500,-30.357243634036198,L, + 344471761750,-30.998294453681410,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344967603683 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344967603683,L, + 1924423250,0.321910470724106,L, + 3848846500,0.322999179363251,L, + 5773269750,0.323413103818893,L, + 7697693000,0.323450118303299,L, + 9622116250,0.323262542486191,L, + 11546539500,0.322943389415741,L, + 13470962750,0.322556555271149,L, + 15395386000,0.322150558233261,L, + 17319809250,0.321765422821045,L, + 19244232500,0.321436852216721,L, + 21168655750,0.321198970079422,L, + 23093079000,0.321086376905441,L, + 25017502250,0.321136653423309,L, + 26941925500,0.321392446756363,L, + 28866348750,0.326478928327560,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890545606613,L, + 34639618500,0.396891295909882,L, + 36564041750,0.435117304325104,L, + 38488465000,0.476715832948685,L, + 40412888250,0.518270969390869,L, + 42337311500,0.556369721889496,L, + 44261734750,0.588167726993561,L, + 46186158000,0.611717283725739,L, + 48110581250,0.625994682312012,L, + 50035004500,0.630722999572754,L, + 51959427750,0.630567133426666,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406332969666,L, + 57732697500,0.628449499607086,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877737998962,L, + 63505967250,0.624292552471161,L, + 65430390500,0.622524559497833,L, + 67354813750,0.620584428310394,L, + 69279237000,0.618481397628784,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818407058716,L, + 75052506750,0.611272275447845,L, + 76976930000,0.608591020107269,L, + 78901353250,0.605779826641083,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610069274902,L, + 86599046250,0.593320608139038,L, + 88523469500,0.589919924736023,L, + 90447892750,0.586410522460938,L, + 92372316000,0.582794845104218,L, + 94296739250,0.579075157642365,L, + 96221162500,0.575252950191498,L, + 98145585750,0.571330070495605,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187062740326,L, + 103918855500,0.558969020843506,L, + 105843278750,0.554654419422150,L, + 107767702000,0.550243735313416,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135489940643,L, + 113540971750,0.536438047885895,L, + 115465395000,0.531644940376282,L, + 117389818250,0.526755750179291,L, + 119314241500,0.521769940853119,L, + 121238664750,0.516686499118805,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223499774933,L, + 127011934500,0.500841140747070,L, + 128936357750,0.495356053113937,L, + 130860781000,0.489766418933868,L, + 132785204250,0.484069973230362,L, + 134709627500,0.478264302015305,L, + 136634050750,0.472346335649490,L, + 138558474000,0.466313093900681,L, + 140482897250,0.460160881280899,L, + 142407320500,0.453885614871979,L, + 144331743750,0.447482675313950,L, + 146256167000,0.440946996212006,L, + 148180590250,0.434272557497025,L, + 150105013500,0.427452981472015,L, + 152029436750,0.420480549335480,L, + 153953860000,0.413346797227859,L, + 155878283250,0.406042069196701,L, + 157802706500,0.398555040359497,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979869842529,L, + 163575976250,0.374858796596527,L, + 165500399500,0.366488575935364,L, + 167424822750,0.357843667268753,L, + 169349246000,0.348893433809280,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915612936020,L, + 175122515750,0.319778919219971,L, + 177046939000,0.309108704328537,L, + 178971362250,0.297793805599213,L, + 180895785500,0.285674840211868,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887274026871,L, + 186669055250,0.241029411554337,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769341230392,L, + 192442325000,0.000044941902161,L, + 194366748250,0.000040118600737,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067653127,L, + 200140018000,0.000034675722418,L, + 202064441250,0.000033494314266,L, + 203988864500,0.000032463547541,L, + 205913287750,0.000031547569961,L, + 207837711000,0.000030722902011,L, + 209762134250,0.000029973180062,L, + 211686557500,0.000029286449717,L, + 213610980750,0.000028653677873,L, + 215535404000,0.000028067830499,L, + 217459827250,0.000027523312383,L, + 219384250500,0.000027015581509,L, + 221308673750,0.000026540890758,L, + 223233097000,0.000026096122383,L, + 225157520250,0.000025678618840,L, + 227081943500,0.000025286124583,L, + 229006366750,0.000024916706025,L, + 230930790000,0.000024568653316,L, + 232855213250,0.000024240500352,L, + 234779636500,0.000023930948373,L, + 236704059750,0.000023638838684,L, + 238628483000,0.000023363156288,L, + 240552906250,0.000023102995328,L, + 242477329500,0.000022857526346,L, + 244401752750,0.000022626027203,L, + 246326176000,0.000022407835786,L, + 248250599250,0.000022202364562,L, + 250175022500,0.000022009071472,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497706257,L, + 257872715500,0.000021348780137,L, + 259797138750,0.000021210073101,L, + 261721562000,0.000021081305022,L, + 263645985250,0.000020962252165,L, + 265570408500,0.000020852705347,L, + 267494831750,0.000020752522687,L, + 269419255000,0.000020661569579,L, + 271343678250,0.000020579791453,L, + 273268101500,0.000020507177396,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389799829,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311521439,L, + 282890217750,0.000020288927772,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803917884827,L, + 288663487500,0.232565656304359,L, + 290587910750,0.245429664850235,L, + 292512334000,0.254731386899948,L, + 294436757250,0.262120455503464,L, + 296361180500,0.268265932798386,L, + 298285603750,0.273518383502960,L, + 300210027000,0.278088837862015,L, + 302134450250,0.282116144895554,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903206586838,L, + 307907720000,0.291787892580032,L, + 309832143250,0.294393241405487,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894405364990,L, + 315605413000,0.300840169191360,L, + 317529836250,0.302609384059906,L, + 319454259500,0.304218381643295,L, + 321378682750,0.305681318044662,L, + 323303106000,0.307010591030121,L, + 325227529250,0.308217525482178,L, + 327151952500,0.309312224388123,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203867197037,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452214002609,L, + 338698492000,0.314102500677109,L, + 340622915250,0.314752757549286,L, + 342547338500,0.315492510795593,L, + 344471761750,0.316851437091827,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844642162323 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.316844642162323,L, + 1924423250,0.317553371191025,L, + 3848846500,0.317994207143784,L, + 5773269750,0.318131417036057,L, + 7697693000,0.317930310964584,L, + 9622116250,0.317365050315857,L, + 11546539500,0.316432714462280,L, + 13470962750,0.315173506736755,L, + 15395386000,0.313687086105347,L, + 17319809250,0.312128514051437,L, + 19244232500,0.310671806335449,L, + 21168655750,0.309460848569870,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061331510544,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985641717911,L, + 30790772000,0.324338674545288,L, + 32715195250,0.344708025455475,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122399330139,L, + 38488465000,0.441004604101181,L, + 40412888250,0.476886868476868,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301301956177,L, + 46186158000,0.557670593261719,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115633964539,L, + 51959427750,0.573916792869568,L, + 53883851000,0.573346614837646,L, + 55808274250,0.572440505027771,L, + 57732697500,0.571227669715881,L, + 59657120750,0.569733500480652,L, + 61581544000,0.567979454994202,L, + 63505967250,0.565984308719635,L, + 65430390500,0.563764512538910,L, + 67354813750,0.561334133148193,L, + 69279237000,0.558706104755402,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900791168213,L, + 75052506750,0.549742400646210,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954802513123,L, + 80825776500,0.539339423179626,L, + 82750199750,0.535584449768066,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676761150360,L, + 88523469500,0.523533463478088,L, + 90447892750,0.519269347190857,L, + 92372316000,0.514888167381287,L, + 94296739250,0.510393202304840,L, + 96221162500,0.505787551403046,L, + 98145585750,0.501074135303497,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333335638046,L, + 103918855500,0.486310392618179,L, + 105843278750,0.481188237667084,L, + 107767702000,0.475968480110168,L, + 109692125250,0.470652639865875,L, + 111616548500,0.465241938829422,L, + 113540971750,0.459737360477448,L, + 115465395000,0.454140007495880,L, + 117389818250,0.448450416326523,L, + 119314241500,0.442669242620468,L, + 121238664750,0.436796784400940,L, + 123163088000,0.430833280086517,L, + 125087511250,0.424778819084167,L, + 127011934500,0.418633222579956,L, + 128936357750,0.412396073341370,L, + 130860781000,0.406066954135895,L, + 132785204250,0.399645000696182,L, + 134709627500,0.393129348754883,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811823368073,L, + 140482897250,0.373006761074066,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093695878983,L, + 146256167000,0.351980537176132,L, + 148180590250,0.344758927822113,L, + 150105013500,0.337425053119659,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402834892273,L, + 155878283250,0.314703822135925,L, + 157802706500,0.306871086359024,L, + 159727129750,0.298896700143814,L, + 161651553000,0.290771842002869,L, + 163575976250,0.282485574483871,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375286340714,L, + 169349246000,0.256517112255096,L, + 171273669250,0.247427478432655,L, + 173198092500,0.238077074289322,L, + 175122515750,0.228428348898888,L, + 177046939000,0.218431457877159,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090566158295,L, + 182820208750,0.185499250888824,L, + 184744632000,0.172995254397392,L, + 186669055250,0.159099221229553,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520822525,L, + 194366748250,0.000026909168810,L, + 196291171500,0.000026129555408,L, + 198215594750,0.000025555591492,L, + 200140018000,0.000025090486815,L, + 202064441250,0.000024695737011,L, + 203988864500,0.000024351316824,L, + 205913287750,0.000024045253667,L, + 207837711000,0.000023769704057,L, + 209762134250,0.000023519189199,L, + 211686557500,0.000023289725505,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882539270,L, + 217459827250,0.000022700593036,L, + 219384250500,0.000022530939532,L, + 221308673750,0.000022372329113,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084206648,L, + 227081943500,0.000021953059331,L, + 229006366750,0.000021829620891,L, + 230930790000,0.000021713325623,L, + 232855213250,0.000021603678761,L, + 234779636500,0.000021500243747,L, + 236704059750,0.000021402636776,L, + 238628483000,0.000021310521333,L, + 240552906250,0.000021223591830,L, + 242477329500,0.000021141569960,L, + 244401752750,0.000021064222892,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922658223,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797393518,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687202777,L, + 257872715500,0.000020637440684,L, + 259797138750,0.000020591092834,L, + 261721562000,0.000020548066459,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471683456,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407816919,L, + 271343678250,0.000020380492060,L, + 273268101500,0.000020356226742,L, + 275192524750,0.000020335046429,L, + 277116948000,0.000020317003873,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290850443,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803917884827,L, + 288663487500,0.232919037342072,L, + 290587910750,0.245930254459381,L, + 292512334000,0.255280971527100,L, + 294436757250,0.262665152549744,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961126804352,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234037399292,L, + 311756566500,0.296479731798172,L, + 313680989750,0.298507750034332,L, + 315605413000,0.300342142581940,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509086370468,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115329265594,L, + 325227529250,0.307243049144745,L, + 327151952500,0.308270871639252,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076862573624,L, + 332925222250,0.310882598161697,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149780035019,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037369728088,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212555885315 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212555885315,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968743085861,L, + 5773269750,0.318790256977081,L, + 7697693000,0.318605095148087,L, + 9622116250,0.318420678377151,L, + 11546539500,0.318241685628891,L, + 13470962750,0.318071484565735,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769199609756,L, + 19244232500,0.317642778158188,L, + 21168655750,0.317536890506744,L, + 23093079000,0.317455232143402,L, + 25017502250,0.317402094602585,L, + 26941925500,0.317382901906967,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921138525009,L, + 32715195250,0.358883112668991,L, + 34639618500,0.389874786138535,L, + 36564041750,0.426987260580063,L, + 38488465000,0.467436671257019,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998466968536,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952174186707,L, + 48110581250,0.612877547740936,L, + 50035004500,0.617490351200104,L, + 51959427750,0.617330253124237,L, + 53883851000,0.616870641708374,L, + 55808274250,0.616138517856598,L, + 57732697500,0.615156650543213,L, + 59657120750,0.613944590091705,L, + 61581544000,0.612519025802612,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082639217377,L, + 67354813750,0.607095479965210,L, + 69279237000,0.604942381381989,L, + 71203660250,0.602631568908691,L, + 73128083500,0.600171148777008,L, + 75052506750,0.597567439079285,L, + 76976930000,0.594826757907867,L, + 78901353250,0.591954112052917,L, + 80825776500,0.588954746723175,L, + 82750199750,0.585832893848419,L, + 84674623000,0.582592248916626,L, + 86599046250,0.579236507415771,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191834449768,L, + 92372316000,0.568508327007294,L, + 94296739250,0.564720094203949,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837916374207,L, + 100070009000,0.552747130393982,L, + 101994432250,0.548558294773102,L, + 103918855500,0.544272601604462,L, + 105843278750,0.539890706539154,L, + 107767702000,0.535413563251495,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174783706665,L, + 113540971750,0.521413743495941,L, + 115465395000,0.516558229923248,L, + 117389818250,0.511608004570007,L, + 119314241500,0.506562650203705,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183931827545,L, + 125087511250,0.490848749876022,L, + 127011934500,0.485414773225784,L, + 128936357750,0.479880541563034,L, + 130860781000,0.474244326353073,L, + 132785204250,0.468504101037979,L, + 134709627500,0.462657660245895,L, + 136634050750,0.456702321767807,L, + 138558474000,0.450635224580765,L, + 140482897250,0.444453001022339,L, + 142407320500,0.438151895999908,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175309181213,L, + 148180590250,0.418489575386047,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692530632019,L, + 153953860000,0.397566080093384,L, + 155878283250,0.390275985002518,L, + 157802706500,0.382811635732651,L, + 159727129750,0.375160872936249,L, + 161651553000,0.367309540510178,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935161113739,L, + 167424822750,0.342368513345718,L, + 169349246000,0.333512187004089,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778625965118,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371424198151,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325131177902,L, + 186669055250,0.228012204170227,L, + 188593478500,0.207745239138603,L, + 190517901750,0.171379089355469,L, + 192442325000,0.000042378902435,L, + 194366748250,0.000038056878111,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426928323,L, + 200140018000,0.000033179661841,L, + 202064441250,0.000032121028198,L, + 203988864500,0.000031197389035,L, + 205913287750,0.000030376604627,L, + 207837711000,0.000029637647458,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350481443,L, + 213610980750,0.000027783471523,L, + 215535404000,0.000027258513001,L, + 217459827250,0.000026770583645,L, + 219384250500,0.000026315621653,L, + 221308673750,0.000025890267352,L, + 223233097000,0.000025491717679,L, + 225157520250,0.000025117604309,L, + 227081943500,0.000024765902708,L, + 229006366750,0.000024434873922,L, + 230930790000,0.000024122995455,L, + 232855213250,0.000023828946723,L, + 234779636500,0.000023551563572,L, + 236704059750,0.000023289810997,L, + 238628483000,0.000023042783141,L, + 240552906250,0.000022809657821,L, + 242477329500,0.000022589701985,L, + 244401752750,0.000022382260795,L, + 246326176000,0.000022186750357,L, + 248250599250,0.000022002628612,L, + 250175022500,0.000021829426260,L, + 252099445750,0.000021666706743,L, + 254023869000,0.000021514082619,L, + 255948292250,0.000021371204639,L, + 257872715500,0.000021237752662,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998080799,L, + 263645985250,0.000020891398890,L, + 265570408500,0.000020793238946,L, + 267494831750,0.000020703464543,L, + 269419255000,0.000020621968361,L, + 271343678250,0.000020548684915,L, + 273268101500,0.000020483617845,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378432964,L, + 279041371250,0.000020338751710,L, + 280965794500,0.000020308292733,L, + 282890217750,0.000020288054657,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435804128647,L, + 292512334000,0.254741251468658,L, + 294436757250,0.262134104967117,L, + 296361180500,0.268283218145370,L, + 298285603750,0.273539364337921,L, + 300210027000,0.278113365173340,L, + 302134450250,0.282144129276276,L, + 304058873500,0.285728603601456,L, + 305983296750,0.288937807083130,L, + 307907720000,0.291825532913208,L, + 309832143250,0.294433921575546,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940449953079,L, + 315605413000,0.300888627767563,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304271012544632,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066202163696,L, + 325227529250,0.308274149894714,L, + 327151952500,0.309369504451752,L, + 329076375750,0.310361951589584,L, + 331000799000,0.311260908842087,L, + 332925222250,0.312076300382614,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503086566925,L, + 338698492000,0.314148783683777,L, + 340622915250,0.314791977405548,L, + 342547338500,0.315520226955414,L, + 344471761750,0.316851437091827,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_038" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 124 + Key: + 0,-0.063678026199341,L, + 51959427750,-0.063678026199341,L, + 53883851000,0.011904954910278,L, + 55808274250,0.011490821838379,L, + 57732697500,0.011004209518433,L, + 59657120750,0.010502338409424,L, + 61581544000,0.009992361068726,L, + 63505967250,0.009477853775024,L, + 65430390500,0.008960008621216,L, + 67354813750,0.008439302444458,L, + 69279237000,0.007916212081909,L, + 71203660250,0.007391452789307,L, + 73128083500,0.006865739822388,L, + 75052506750,0.006338357925415,L, + 76976930000,0.005810022354126,L, + 78901353250,0.005280494689941,L, + 80825776500,0.004750490188599,L, + 82750199750,0.004220008850098,L, + 84674623000,0.003688097000122,L, + 86599046250,0.003156423568726,L, + 88523469500,0.002623558044434,L, + 92372316000,0.001557350158691,L, + 94296739250,0.001023292541504,L, + 96221162500,0.000488996505737,L, + 98145585750,-0.000045537948608,L, + 103918855500,-0.001651287078857,L, + 105843278750,-0.002187252044678,L, + 107767702000,-0.002722978591919,L, + 109692125250,-0.003260135650635,L, + 111616548500,-0.003796100616455,L, + 113540971750,-0.004332780838013,L, + 117389818250,-0.005407094955444,L, + 119314241500,-0.005944013595581,L, + 121238664750,-0.006481409072876,L, + 125087511250,-0.007556676864624,L, + 127011934500,-0.008094549179077,L, + 128936357750,-0.008632898330688,L, + 130860781000,-0.009170770645142,L, + 132785204250,-0.009709358215332,L, + 138558474000,-0.011324405670166,L, + 142407320500,-0.012402057647705,L, + 144331743750,-0.012940645217896,L, + 148180590250,-0.014018297195435,L, + 150105013500,-0.014557361602783,L, + 152029436750,-0.015096664428711,L, + 153953860000,-0.015635490417480,L, + 155878283250,-0.016174793243408,L, + 157802706500,-0.016713619232178,L, + 159727129750,-0.017253398895264,L, + 161651553000,-0.017792701721191,L, + 163575976250,-0.018332242965698,L, + 167424822750,-0.019410848617554,L, + 169349246000,-0.019950628280640,L, + 171273669250,-0.020490169525146,L, + 173198092500,-0.021029472351074,L, + 175122515750,-0.021569252014160,L, + 177046939000,-0.022109508514404,L, + 178971362250,-0.022648334503174,L, + 180895785500,-0.023188352584839,L, + 182820208750,-0.023727655410767,L, + 184744632000,-0.024267435073853,L, + 186669055250,-0.024807453155518,L, + 188593478500,-0.025346755981445,L, + 190517901750,-0.025886535644531,L, + 192442325000,-0.026426792144775,L, + 194366748250,-0.026965856552124,L, + 196291171500,-0.027506113052368,L, + 198215594750,-0.028044939041138,L, + 200140018000,-0.028584957122803,L, + 202064441250,-0.029125213623047,L, + 203988864500,-0.029664039611816,L, + 205913287750,-0.030204057693481,L, + 207837711000,-0.030743360519409,L, + 211686557500,-0.031822919845581,L, + 213610980750,-0.032361745834351,L, + 215535404000,-0.032901763916016,L, + 219384250500,-0.033980369567871,L, + 221308673750,-0.034520149230957,L, + 223233097000,-0.035059452056885,L, + 225157520250,-0.035598516464233,L, + 227081943500,-0.036137819290161,L, + 229006366750,-0.036676645278931,L, + 230930790000,-0.037215948104858,L, + 232855213250,-0.037754297256470,L, + 234779636500,-0.038293600082397,L, + 242477329500,-0.040448904037476,L, + 244401752750,-0.040987253189087,L, + 246326176000,-0.041525840759277,L, + 250175022500,-0.042602539062500,L, + 252099445750,-0.043140411376953,L, + 254023869000,-0.043678522109985,L, + 255948292250,-0.044216394424438,L, + 257872715500,-0.044754028320312,L, + 261721562000,-0.045828819274902,L, + 263645985250,-0.046365976333618,L, + 265570408500,-0.046903610229492,L, + 267494831750,-0.047440052032471,L, + 271343678250,-0.048513412475586,L, + 273268101500,-0.049049615859985,L, + 275192524750,-0.049586296081543,L, + 277116948000,-0.050121545791626,L, + 279041371250,-0.050657272338867,L, + 280965794500,-0.051192760467529,L, + 284814641000,-0.052262306213379,L, + 286739064250,-0.052796363830566,L, + 292512334000,-0.054397106170654,L, + 294436757250,-0.054929256439209,L, + 296361180500,-0.055461645126343,L, + 298285603750,-0.055993080139160,L, + 300210027000,-0.056523799896240,L, + 302134450250,-0.057054042816162,L, + 304058873500,-0.057583570480347,L, + 307907720000,-0.058639287948608,L, + 309832143250,-0.059165000915527,L, + 311756566500,-0.059689521789551,L, + 313680989750,-0.060212135314941,L, + 315605413000,-0.060733556747437,L, + 317529836250,-0.061251163482666,L, + 319454259500,-0.061765909194946,L, + 321378682750,-0.062275409698486,L, + 323303106000,-0.062777280807495,L, + 325227529250,-0.063263893127441,L, + 327151952500,-0.063678026199341,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339878082275 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,-0.087339878082275,L, + 53883851000,-0.087339878082275,L, + 55808274250,-0.087340831756592,L, + 59657120750,-0.087340831756592,L, + 61581544000,-0.087339878082275,L, + 63505967250,-0.087340831756592,L, + 65430390500,-0.087340354919434,L, + 67354813750,-0.087340831756592,L, + 69279237000,-0.087339878082275,L, + 71203660250,-0.087340831756592,L, + 73128083500,-0.087340354919434,L, + 75052506750,-0.087340831756592,L, + 76976930000,-0.087340354919434,L, + 78901353250,-0.087340354919434,L, + 80825776500,-0.087340831756592,L, + 82750199750,-0.087339878082275,L, + 86599046250,-0.087340831756592,L, + 88523469500,-0.087340354919434,L, + 90447892750,-0.087340354919434,L, + 92372316000,-0.087340831756592,L, + 94296739250,-0.087339878082275,L, + 96221162500,-0.087340354919434,L, + 98145585750,-0.087339878082275,L, + 101994432250,-0.087340831756592,L, + 105843278750,-0.087340831756592,L, + 107767702000,-0.087340354919434,L, + 109692125250,-0.087340354919434,L, + 111616548500,-0.087340831756592,L, + 113540971750,-0.087340831756592,L, + 115465395000,-0.087339878082275,L, + 117389818250,-0.087339878082275,L, + 121238664750,-0.087340831756592,L, + 123163088000,-0.087340354919434,L, + 125087511250,-0.087340354919434,L, + 127011934500,-0.087339878082275,L, + 128936357750,-0.087340354919434,L, + 138558474000,-0.087340354919434,L, + 140482897250,-0.087340831756592,L, + 142407320500,-0.087340831756592,L, + 144331743750,-0.087339878082275,L, + 148180590250,-0.087339878082275,L, + 150105013500,-0.087340354919434,L, + 155878283250,-0.087340354919434,L, + 157802706500,-0.087339878082275,L, + 159727129750,-0.087340354919434,L, + 167424822750,-0.087340354919434,L, + 169349246000,-0.087339878082275,L, + 171273669250,-0.087340354919434,L, + 173198092500,-0.087339878082275,L, + 175122515750,-0.087340354919434,L, + 177046939000,-0.087340354919434,L, + 178971362250,-0.087339878082275,L, + 180895785500,-0.087339878082275,L, + 182820208750,-0.087340831756592,L, + 184744632000,-0.087340354919434,L, + 186669055250,-0.087340354919434,L, + 188593478500,-0.087340831756592,L, + 190517901750,-0.087340354919434,L, + 192442325000,-0.087340354919434,L, + 194366748250,-0.087340831756592,L, + 196291171500,-0.087340831756592,L, + 198215594750,-0.087340354919434,L, + 217459827250,-0.087340354919434,L, + 219384250500,-0.087340831756592,L, + 223233097000,-0.087339878082275,L, + 225157520250,-0.087340354919434,L, + 229006366750,-0.087340354919434,L, + 230930790000,-0.087339878082275,L, + 232855213250,-0.087340354919434,L, + 242477329500,-0.087340354919434,L, + 244401752750,-0.087340831756592,L, + 246326176000,-0.087340354919434,L, + 250175022500,-0.087340354919434,L, + 252099445750,-0.087339878082275,L, + 255948292250,-0.087340831756592,L, + 257872715500,-0.087340354919434,L, + 261721562000,-0.087340354919434,L, + 263645985250,-0.087339878082275,L, + 265570408500,-0.087340831756592,L, + 267494831750,-0.087340831756592,L, + 269419255000,-0.087340354919434,L, + 271343678250,-0.087340354919434,L, + 273268101500,-0.087340831756592,L, + 275192524750,-0.087339878082275,L, + 277116948000,-0.087340354919434,L, + 280965794500,-0.087340354919434,L, + 282890217750,-0.087339878082275,L, + 284814641000,-0.087340831756592,L, + 286739064250,-0.087340354919434,L, + 292512334000,-0.087340354919434,L, + 294436757250,-0.087340831756592,L, + 298285603750,-0.087339878082275,L, + 300210027000,-0.087339878082275,L, + 302134450250,-0.087340354919434,L, + 323303106000,-0.087340354919434,L, + 325227529250,-0.087340831756592,L, + 327151952500,-0.087339878082275,L, + 344471761750,-0.087339878082275,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241689682007 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241689682007,L, + 51959427750,-0.570241689682007,L, + 53883851000,0.020681858062744,L, + 55808274250,0.022182703018188,L, + 57732697500,0.023703336715698,L, + 59657120750,0.025243759155273,L, + 61581544000,0.026805162429810,L, + 63505967250,0.028388023376465,L, + 65430390500,0.029992818832397,L, + 67354813750,0.031620502471924,L, + 69279237000,0.033271789550781,L, + 71203660250,0.034947633743286,L, + 73128083500,0.036648511886597,L, + 75052506750,0.038375854492188,L, + 76976930000,0.040130138397217,L, + 78901353250,0.041912555694580,L, + 80825776500,0.043724298477173,L, + 82750199750,0.045566558837891,L, + 84674623000,0.047439813613892,L, + 86599046250,0.049346446990967,L, + 88523469500,0.051286935806274,L, + 90447892750,0.053263425827026,L, + 92372316000,0.055277347564697,L, + 94296739250,0.057329654693604,L, + 96221162500,0.059422969818115,L, + 98145585750,0.061559200286865,L, + 100070009000,0.063740015029907,L, + 101994432250,0.065968036651611,L, + 103918855500,0.068245649337769,L, + 105843278750,0.070575237274170,L, + 107767702000,0.072960138320923,L, + 109692125250,0.075402975082397,L, + 111616548500,0.077907562255859,L, + 113540971750,0.080477476119995,L, + 115465395000,0.083117008209229,L, + 117389818250,0.085830211639404,L, + 119314241500,0.088622808456421,L, + 121238664750,0.091500043869019,L, + 123163088000,0.094467878341675,L, + 125087511250,0.097533941268921,L, + 127011934500,0.100704908370972,L, + 128936357750,0.103990316390991,L, + 130860781000,0.107399940490723,L, + 132785204250,0.110944747924805,L, + 134709627500,0.114637374877930,L, + 136634050750,0.118492603302002,L, + 138558474000,0.122527599334717,L, + 140482897250,0.126760721206665,L, + 142407320500,0.131215333938599,L, + 144331743750,0.135916709899902,L, + 146256167000,0.140894889831543,L, + 148180590250,0.146184444427490,L, + 150105013500,0.151823759078979,L, + 152029436750,0.157855510711670,L, + 153953860000,0.164322853088379,L, + 155878283250,0.171265840530396,L, + 157802706500,0.178704738616943,L, + 159727129750,0.186625480651855,L, + 161651553000,0.194945812225342,L, + 163575976250,0.203496932983398,L, + 165500399500,0.212026596069336,L, + 167424822750,0.220256805419922,L, + 169349246000,0.227962970733643,L, + 171273669250,0.235020637512207,L, + 173198092500,0.241793632507324,L, + 175122515750,0.248681545257568,L, + 177046939000,0.255688190460205,L, + 178971362250,0.262816905975342,L, + 180895785500,0.270072460174561,L, + 182820208750,0.277458190917969,L, + 184744632000,0.284978389739990,L, + 186669055250,0.292636871337891,L, + 188593478500,0.300436496734619,L, + 190517901750,0.308382034301758,L, + 192442325000,0.316475391387939,L, + 194366748250,0.324720859527588,L, + 196291171500,0.333119869232178,L, + 198215594750,0.341675758361816,L, + 200140018000,0.350389003753662,L, + 202064441250,0.359262466430664,L, + 203988864500,0.368295669555664,L, + 205913287750,0.377489566802979,L, + 207837711000,0.386842727661133,L, + 209762134250,0.396355152130127,L, + 211686557500,0.406024456024170,L, + 213610980750,0.415848255157471,L, + 215535404000,0.425822734832764,L, + 217459827250,0.435945034027100,L, + 219384250500,0.446209907531738,L, + 221308673750,0.456612586975098,L, + 223233097000,0.467146396636963,L, + 225157520250,0.477806091308594,L, + 227081943500,0.488584041595459,L, + 229006366750,0.499473571777344,L, + 230930790000,0.510467052459717,L, + 232855213250,0.521556377410889,L, + 234779636500,0.532734870910645,L, + 236704059750,0.543993473052979,L, + 238628483000,0.555325508117676,L, + 240552906250,0.566721916198730,L, + 242477329500,0.578175544738770,L, + 244401752750,0.589679718017578,L, + 246326176000,0.601226806640625,L, + 248250599250,0.612809658050537,L, + 250175022500,0.624422550201416,L, + 252099445750,0.636058807373047,L, + 254023869000,0.647712230682373,L, + 255948292250,0.659378528594971,L, + 257872715500,0.671051502227783,L, + 259797138750,0.682727336883545,L, + 261721562000,0.694401264190674,L, + 263645985250,0.706069469451904,L, + 265570408500,0.717728137969971,L, + 267494831750,0.729374885559082,L, + 269419255000,0.741005420684814,L, + 271343678250,0.752798557281494,L, + 273268101500,0.764907360076904,L, + 275192524750,0.777295589447021,L, + 277116948000,0.789932727813721,L, + 279041371250,0.802792549133301,L, + 280965794500,0.815853118896484,L, + 282890217750,0.829093933105469,L, + 284814641000,0.842497348785400,L, + 286739064250,0.856047153472900,L, + 288663487500,0.869729518890381,L, + 290587910750,0.883530616760254,L, + 292512334000,0.897437572479248,L, + 294436757250,0.911438465118408,L, + 296361180500,0.925521850585938,L, + 298285603750,0.939675331115723,L, + 300210027000,0.953887462615967,L, + 302134450250,0.968146324157715,L, + 304058873500,0.982438564300537,L, + 305983296750,0.996749401092529,L, + 307907720000,1.011063575744629,L, + 309832143250,1.025361537933350,L, + 311756566500,1.039621829986572,L, + 313680989750,1.053814411163330,L, + 315605413000,1.067902565002441,L, + 317529836250,1.081833362579346,L, + 319454259500,1.095528602600098,L, + 321378682750,1.108861446380615,L, + 323303106000,1.121590614318848,L, + 325227529250,1.133138656616211,L, + 327151952500,1.140674114227295,L, + 329076375750,-0.570241689682007,L, + 344471761750,-0.570241689682007,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670455618805025 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,30.670455618805025,L, + 51959427750,30.670455618805025,L, + 53883851000,33.480952103761588,L, + 55808274250,33.465543196994062,L, + 57732697500,33.447453440977306,L, + 59657120750,33.428789949070278,L, + 61581544000,33.409846419407273,L, + 63505967250,33.390711644447507,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352080094501972,L, + 69279237000,33.332634545934972,L, + 71203660250,33.313124110570861,L, + 73128083500,33.293559033693384,L, + 75052506750,33.273959805870064,L, + 76976930000,33.254309351627967,L, + 78901353250,33.234634991723773,L, + 80825776500,33.214923065779146,L, + 82750199750,33.195183819077833,L, + 84674623000,33.175417251619848,L, + 86599046250,33.155633608688930,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116008266219161,L, + 92372316000,33.096169981774885,L, + 94296739250,33.076318036952273,L, + 96221162500,33.056445601562153,L, + 98145585750,33.036566335982855,L, + 100070009000,33.016680240214392,L, + 101994432250,32.996773653878421,L, + 105843278750,32.956939990638965,L, + 107767702000,32.937002668451726,L, + 109692125250,32.917061931169897,L, + 111616548500,32.897110948604322,L, + 113540971750,32.877149720754986,L, + 115465395000,32.857191908000239,L, + 117389818250,32.837220434867149,L, + 119314241500,32.817245546639477,L, + 121238664750,32.797260413128051,L, + 123163088000,32.777268449427453,L, + 125087511250,32.757273070632266,L, + 127011934500,32.737270861647914,L, + 128936357750,32.717272067758145,L, + 132785204250,32.677247159221928,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617189305850090,L, + 144331743750,32.557090471343237,L, + 146256167000,32.537054111413035,L, + 148180590250,32.517007506199072,L, + 150105013500,32.496974561363452,L, + 152029436750,32.476927956149495,L, + 153953860000,32.456874520746368,L, + 155878283250,32.436827915532412,L, + 161651553000,32.376667609323022,L, + 163575976250,32.356607343730722,L, + 165500399500,32.336543663043841,L, + 167424822750,32.316490227640713,L, + 169349246000,32.296433377142996,L, + 171273669250,32.276366281361533,L, + 173198092500,32.256306015769233,L, + 175122515750,32.236238919987763,L, + 177046939000,32.216178654395463,L, + 178971362250,32.196108143519410,L, + 180895785500,32.176044462832529,L, + 182820208750,32.155973951956476,L, + 184744632000,32.135910271269587,L, + 186669055250,32.115839760393534,L, + 190517901750,32.075705568830600,L, + 194366748250,32.035564547078494,L, + 196291171500,32.015497451297023,L, + 198215594750,31.995433770610138,L, + 200140018000,31.975363259734085,L, + 202064441250,31.955302994141785,L, + 207837711000,31.895101706797380,L, + 209762134250,31.875038026110499,L, + 211686557500,31.854977760518199,L, + 213610980750,31.834920910020486,L, + 215535404000,31.814853814239015,L, + 219384250500,31.774740113243588,L, + 223233097000,31.734633242437333,L, + 225157520250,31.714576391939620,L, + 229006366750,31.674483181511700,L, + 230930790000,31.654433161203158,L, + 232855213250,31.634396801272953,L, + 234779636500,31.614353611153579,L, + 236704059750,31.594317251223377,L, + 242477329500,31.534218416716520,L, + 244401752750,31.514195717164657,L, + 246326176000,31.494176432707377,L, + 248250599250,31.474160563344686,L, + 250175022500,31.454141278887406,L, + 254023869000,31.414130030729531,L, + 255948292250,31.394134651934344,L, + 259797138750,31.354150724533149,L, + 261721562000,31.334169006116305,L, + 263645985250,31.314183872604875,L, + 267494831750,31.274254586717039,L, + 269419255000,31.254293358867706,L, + 271343678250,31.234349206491299,L, + 273268101500,31.214408469209474,L, + 275192524750,31.194471147022234,L, + 277116948000,31.174550900307921,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134730897446804,L, + 282890217750,31.114844801678341,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075093100708923,L, + 288663487500,31.055237740791725,L, + 290587910750,31.035396041252866,L, + 292512334000,31.015578247376101,L, + 294436757250,30.995774113877680,L, + 296361180500,30.975990470946765,L, + 298285603750,30.956227318583363,L, + 300210027000,30.936488071882053,L, + 302134450250,30.916782976126594,L, + 304058873500,30.897098370938647,L, + 305983296750,30.877451331791132,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838280196901167,L, + 311756566500,30.818776591726223,L, + 313680989750,30.799327628064638,L, + 315605413000,30.779967456862266,L, + 317529836250,30.760696078119103,L, + 319454259500,30.741557888064754,L, + 321378682750,30.722614358401753,L, + 323303106000,30.703957696683890,L, + 325227529250,30.685864525572551,L, + 327151952500,30.670459033899608,L, + 329076375750,30.670455618805025,L, + 344471761750,30.670455618805025,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044319683403476,L, + 57732697500,-30.232848813777522,L, + 59657120750,-29.396270168762637,L, + 61581544000,-28.546645862433046,L, + 63505967250,-27.688690432863346,L, + 65430390500,-26.824818351925128,L, + 67354813750,-25.956479327269729,L, + 69279237000,-25.084612509908023,L, + 71203660250,-24.209870182905750,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572628276435481,L, + 78901353250,-20.690157590387344,L, + 80825776500,-19.806337941978136,L, + 82750199750,-18.921307642538540,L, + 84674623000,-18.035196465662796,L, + 86599046250,-17.148110279283031,L, + 88523469500,-16.260136168311167,L, + 90447892750,-15.371359510111828,L, + 92372316000,-14.481834946198372,L, + 94296739250,-13.591632486009795,L, + 96221162500,-12.700801648417578,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917433279714286,L, + 101994432250,-10.024976003325961,L, + 103918855500,-9.132050005205844,L, + 105843278750,-8.238685167431555,L, + 107767702000,-7.344909664533420,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556226554882221,L, + 113540971750,-4.661365905679701,L, + 115465395000,-3.766180822491606,L, + 117389818250,-2.870696491640500,L, + 119314241500,-1.974926360061312,L, + 121238664750,-1.078885582236263,L, + 123163088000,-0.182591447081689,L, + 125087511250,0.713942651828335,L, + 127011934500,1.610706309127494,L, + 128936357750,2.507684530416126,L, + 130860781000,3.404866376719389,L, + 132785204250,4.302234132234124,L, + 134709627500,5.199795267479733,L, + 136634050750,6.097521181039069,L, + 138558474000,6.995414861119893,L, + 140482897250,7.893458378475635,L, + 142407320500,8.791656428861346,L, + 144331743750,9.689991936804105,L, + 146256167000,10.588454657020156,L, + 148180590250,11.487041174414912,L, + 150105013500,12.385742951251913,L, + 152029436750,13.284553157341987,L, + 153953860000,14.183469231364196,L, + 155878283250,15.082476659166554,L, + 157802706500,15.981583978485522,L, + 159727129750,16.880766429885362,L, + 161651553000,17.780032551102533,L, + 163575976250,18.679370389305991,L, + 165500399500,19.578773114306561,L, + 167424822750,20.478247556293418,L, + 169349246000,21.377764686962589,L, + 171273669250,22.277348411976167,L, + 173198092500,23.176973118124764,L, + 175122515750,24.076635390313793,L, + 177046939000,24.976333520995968,L, + 178971362250,25.876064095076700,L, + 180895785500,26.775830527650573,L, + 182820208750,27.675612328150081,L, + 184744632000,28.575423156953562,L, + 186669055250,29.475230570662454,L, + 188593478500,30.375056767391566,L, + 190517901750,31.274889794309850,L, + 192442325000,32.174726236322719,L, + 194366748250,33.074552433051828,L, + 196291171500,33.974368384497183,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773955891158295,L, + 202064441250,36.673717201090291,L, + 203988864500,37.573444360076437,L, + 205913287750,38.473151028495074,L, + 207837711000,39.372820130873279,L, + 209762134250,40.272434591738119,L, + 211686557500,41.172025146940868,L, + 213610980750,42.071543985157327,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870414321955586,L, + 219384250500,44.769748745064454,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568199025228758,L, + 225157520250,47.467287561527513,L, + 227081943500,48.366311211029149,L, + 229006366750,49.265218747314897,L, + 230930790000,50.164034076046846,L, + 232855213250,51.062753782130422,L, + 234779636500,51.961323224052251,L, + 236704059750,52.859797043325699,L, + 238628483000,53.758117183342826,L, + 240552906250,54.656324625238646,L, + 242477329500,55.554371557688974,L, + 244401752750,56.452261395788391,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144923457184063,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939077548360437,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106008704822855,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955196176957192 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-2.955196176957192,L, + 51959427750,-2.955196176957192,L, + 53883851000,0.259471576131566,L, + 55808274250,0.257314303570902,L, + 57732697500,0.254980379906745,L, + 59657120750,0.252467270498580,L, + 61581544000,0.249781005122786,L, + 63505967250,0.246915847487675,L, + 65430390500,0.243862806289537,L, + 67354813750,0.240633220709610,L, + 69279237000,0.237225436561454,L, + 71203660250,0.233622858619822,L, + 73128083500,0.229844830193884,L, + 75052506750,0.225877023894642,L, + 76976930000,0.221724122136934,L, + 78901353250,0.217376973534492,L, + 80825776500,0.212845129679982,L, + 82750199750,0.208119292444788,L, + 84674623000,0.203200769169805,L, + 86599046250,0.198087959029448,L, + 88523469500,0.192774258618171,L, + 90447892750,0.187268018909451,L, + 92372316000,0.181562316332626,L, + 94296739250,0.175655243237205,L, + 96221162500,0.169547253190437,L, + 98145585750,0.163238519615095,L, + 100070009000,0.156722012218810,L, + 101994432250,0.149997811042861,L, + 103918855500,0.143068010500724,L, + 105843278750,0.135929955889969,L, + 107767702000,0.128574028916861,L, + 109692125250,0.121015437424474,L, + 111616548500,0.113237519486494,L, + 113540971750,0.105239361298314,L, + 115465395000,0.097030801267186,L, + 117389818250,0.088599379633960,L, + 119314241500,0.079945696708232,L, + 121238664750,0.071072247109873,L, + 123163088000,0.061968372008519,L, + 125087511250,0.052638230215643,L, + 127011934500,0.043083462577470,L, + 128936357750,0.033294937718050,L, + 130860781000,0.023275860623608,L, + 132785204250,0.013018735761842,L, + 134709627500,0.002526121118636,L, + 136634050750,-0.008203911800583,L, + 138558474000,-0.019175636032864,L, + 140482897250,-0.030391613732909,L, + 142407320500,-0.041852757871560,L, + 144331743750,-0.053558391432996,L, + 146256167000,-0.065518162726430,L, + 148180590250,-0.077726252083844,L, + 150105013500,-0.090193048196285,L, + 152029436750,-0.102915642897271,L, + 153953860000,-0.115893569279339,L, + 155878283250,-0.129138506699165,L, + 157802706500,-0.142641310440584,L, + 159727129750,-0.156416481315371,L, + 161651553000,-0.170459897197639,L, + 163575976250,-0.184777467801846,L, + 165500399500,-0.199366191580017,L, + 167424822750,-0.214229536987590,L, + 169349246000,-0.229378883226443,L, + 171273669250,-0.244811402171374,L, + 173198092500,-0.260528494544771,L, + 175122515750,-0.276538084433287,L, + 177046939000,-0.292841132332276,L, + 178971362250,-0.309435743931459,L, + 180895785500,-0.326330243523888,L, + 182820208750,-0.343526098533017,L, + 184744632000,-0.361029472137354,L, + 186669055250,-0.378843485946794,L, + 188593478500,-0.396967046063853,L, + 190517901750,-0.415408796946699,L, + 192442325000,-0.434165643665865,L, + 194366748250,-0.453252153734188,L, + 196291171500,-0.472661523642927,L, + 198215594750,-0.492403278304321,L, + 200140018000,-0.512485848733128,L, + 202064441250,-0.532900483749474,L, + 203988864500,-0.553665592847605,L, + 205913287750,-0.574772905095324,L, + 207837711000,-0.596238161944233,L, + 209762134250,-0.618059549125335,L, + 211686557500,-0.640242242641359,L, + 213610980750,-0.662790991608213,L, + 215535404000,-0.685714440484065,L, + 217459827250,-0.709015043868148,L, + 219384250500,-0.732696910546135,L, + 221308673750,-0.756765696768432,L, + 223233097000,-0.781231754540500,L, + 225157520250,-0.806094550253810,L, + 227081943500,-0.831358886385122,L, + 229006366750,-0.857043866119771,L, + 230930790000,-0.883142926072851,L, + 232855213250,-0.909660922081976,L, + 234779636500,-0.936612314938278,L, + 236704059750,-0.963999986127815,L, + 238628483000,-0.991836208646750,L, + 240552906250,-1.020120982495085,L, + 242477329500,-1.048870209206979,L, + 244401752750,-1.078081220739789,L, + 246326176000,-1.107773547165673,L, + 248250599250,-1.137949643083863,L, + 250175022500,-1.168620500830055,L, + 252099445750,-1.199789642220541,L, + 254023869000,-1.231470620911953,L, + 255948292250,-1.263681152707452,L, + 257872715500,-1.296417609069042,L, + 259797138750,-1.329695784809177,L, + 261721562000,-1.363529126862786,L, + 263645985250,-1.397932256103562,L, + 265570408500,-1.432912643050909,L, + 267494831750,-1.468482240535875,L, + 269419255000,-1.504655135823622,L, + 271343678250,-1.541445949787843,L, + 273268101500,-1.578870263797581,L, + 275192524750,-1.616938536580004,L, + 277116948000,-1.655674353632089,L, + 279041371250,-1.695091802218999,L, + 280965794500,-1.735204009110546,L, + 282890217750,-1.776038721950231,L, + 284814641000,-1.817605332248165,L, + 286739064250,-1.859936496846316,L, + 288663487500,-1.903045876123024,L, + 290587910750,-1.946958229514031,L, + 292512334000,-1.991701731549662,L, + 294436757250,-2.037301141665660,L, + 296361180500,-2.083784634392349,L, + 298285603750,-2.131183799354643,L, + 300210027000,-2.179529799290628,L, + 302134450250,-2.228861907788032,L, + 304058873500,-2.279208299377181,L, + 305983296750,-2.330613370287681,L, + 307907720000,-2.383120236088667,L, + 309832143250,-2.436766035933751,L, + 311756566500,-2.491598581147123,L, + 313680989750,-2.547655651212630,L, + 315605413000,-2.604978867595526,L, + 317529836250,-2.663576981475685,L, + 319454259500,-2.723436972805002,L, + 321378682750,-2.784437819169121,L, + 323303106000,-2.846170562991489,L, + 325227529250,-2.907191046149472,L, + 327151952500,-2.955199805495188,L, + 329076375750,-2.955196176957192,L, + 344471761750,-2.955196176957192,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380201451 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380201451,L, + 51959427750,0.000075380201451,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152128458023,L, + 57732697500,0.163903713226318,L, + 59657120750,0.164672181010246,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260391473770,L, + 65430390500,0.167080491781235,L, + 67354813750,0.167918175458908,L, + 69279237000,0.168773517012596,L, + 71203660250,0.169646814465523,L, + 73128083500,0.170538201928139,L, + 75052506750,0.171447858214378,L, + 76976930000,0.172375947237015,L, + 78901353250,0.173322722315788,L, + 80825776500,0.174288332462311,L, + 82750199750,0.175273016095161,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300289273262,L, + 88523469500,0.178343340754509,L, + 90447892750,0.179406240582466,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716533541679,L, + 98145585750,0.183861196041107,L, + 100070009000,0.185026884078979,L, + 101994432250,0.186213836073875,L, + 103918855500,0.187422275543213,L, + 105843278750,0.188652470707893,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179171204567,L, + 111616548500,0.192476168274879,L, + 113540971750,0.193795979022980,L, + 115465395000,0.195138886570930,L, + 117389818250,0.196505174040794,L, + 119314241500,0.197895124554634,L, + 121238664750,0.199309006333351,L, + 123163088000,0.200747177004814,L, + 125087511250,0.202209874987602,L, + 127011934500,0.203697487711906,L, + 128936357750,0.205210268497467,L, + 130860781000,0.206748619675636,L, + 132785204250,0.208312824368477,L, + 134709627500,0.209903270006180,L, + 136634050750,0.211520299315453,L, + 138558474000,0.213164269924164,L, + 140482897250,0.214835539460182,L, + 142407320500,0.216534480452538,L, + 144331743750,0.218261525034904,L, + 146256167000,0.220017045736313,L, + 148180590250,0.221801459789276,L, + 150105013500,0.223615199327469,L, + 152029436750,0.225458666682243,L, + 153953860000,0.227332338690758,L, + 155878283250,0.229236662387848,L, + 157802706500,0.231172040104866,L, + 159727129750,0.233139067888260,L, + 161651553000,0.235138088464737,L, + 163575976250,0.237169742584229,L, + 165500399500,0.239234521985054,L, + 167424822750,0.241332858800888,L, + 169349246000,0.243465438485146,L, + 171273669250,0.245632752776146,L, + 173198092500,0.247835353016853,L, + 175122515750,0.250073879957199,L, + 177046939000,0.252348989248276,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011353969574,L, + 182820208750,0.259399920701981,L, + 184744632000,0.261827737092972,L, + 186669055250,0.264295488595963,L, + 188593478500,0.266803830862045,L, + 190517901750,0.269353598356247,L, + 192442325000,0.271945595741272,L, + 194366748250,0.274580597877502,L, + 196291171500,0.277259558439255,L, + 198215594750,0.279983162879944,L, + 200140018000,0.282752484083176,L, + 202064441250,0.285568356513977,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305473566055,L, + 209762134250,0.297317802906036,L, + 211686557500,0.300381958484650,L, + 213610980750,0.303499162197113,L, + 215535404000,0.306670516729355,L, + 217459827250,0.309897452592850,L, + 219384250500,0.313181132078171,L, + 221308673750,0.316523045301437,L, + 223233097000,0.319924533367157,L, + 225157520250,0.323387145996094,L, + 227081943500,0.326912462711334,L, + 229006366750,0.330502152442932,L, + 230930790000,0.334157824516296,L, + 232855213250,0.337881326675415,L, + 234779636500,0.341674566268921,L, + 236704059750,0.345539510250092,L, + 238628483000,0.349478155374527,L, + 240552906250,0.353492766618729,L, + 242477329500,0.357585668563843,L, + 244401752750,0.361759155988693,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358556509018,L, + 250175022500,0.374789923429489,L, + 252099445750,0.379313111305237,L, + 254023869000,0.383931249380112,L, + 255948292250,0.388647735118866,L, + 257872715500,0.393466204404831,L, + 259797138750,0.398390650749207,L, + 261721562000,0.403425037860870,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841634988785,L, + 267494831750,0.419233679771423,L, + 269419255000,0.424755424261093,L, + 271343678250,0.430412709712982,L, + 273268101500,0.436212003231049,L, + 275192524750,0.442160099744797,L, + 277116948000,0.448264598846436,L, + 279041371250,0.454533755779266,L, + 280965794500,0.460976541042328,L, + 282890217750,0.467602849006653,L, + 284814641000,0.474423587322235,L, + 286739064250,0.481450825929642,L, + 288663487500,0.488698214292526,L, + 290587910750,0.496180593967438,L, + 292512334000,0.503915071487427,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219922065735,L, + 298285603750,0.528837561607361,L, + 300210027000,0.537802517414093,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918561458588,L, + 305983296750,0.567158579826355,L, + 307907720000,0.577928602695465,L, + 309832143250,0.589301943778992,L, + 311756566500,0.601371288299561,L, + 313680989750,0.614257514476776,L, + 315605413000,0.628122687339783,L, + 317529836250,0.643193602561951,L, + 319454259500,0.659806013107300,L, + 321378682750,0.678495049476624,L, + 323303106000,0.700209677219391,L, + 325227529250,0.726849436759949,L, + 327151952500,0.753802001476288,L, + 329076375750,0.000075380201451,L, + 344471761750,0.000075380201451,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696838140488,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424389243126,L, + 67354813750,0.237333670258522,L, + 69279237000,0.243925213813782,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297689914703,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571647644043,L, + 84674623000,0.289855509996414,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141175985336,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019333124161,L, + 103918855500,0.338638782501221,L, + 105843278750,0.343213111162186,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352236002683640,L, + 111616548500,0.356688827276230,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150633811951,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298123359680,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677918672562,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817111730576,L, + 140482897250,0.419854879379272,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869707345963,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807734727859,L, + 150105013500,0.439749240875244,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580128908157,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202438592911,L, + 161651553000,0.463045090436935,L, + 163575976250,0.466872811317444,L, + 165500399500,0.470685720443726,L, + 167424822750,0.474484264850616,L, + 169349246000,0.478268861770630,L, + 171273669250,0.482039660215378,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541292190552,L, + 177046939000,0.493272602558136,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074641227722,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404760837555,L, + 190517901750,0.519052684307098,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931485652924,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715515613556,L, + 203988864500,0.544289946556091,L, + 205913287750,0.547854542732239,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533936023712,L, + 217459827250,0.569041907787323,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512596130371,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904725551605,L, + 230930790000,0.593351840972900,L, + 232855213250,0.596790611743927,L, + 234779636500,0.600221037864685,L, + 236704059750,0.603643238544464,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463201999664,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633006095886,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086956977844,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650718033313751,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317996025085,L, + 269419255000,0.660606265068054,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159378528595,L, + 275192524750,0.670423924922943,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676928997039795,L, + 280965794500,0.680169284343719,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840435981750,L, + 288663487500,0.693046927452087,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433028697968,L, + 294436757250,0.702612340450287,L, + 296361180500,0.705781936645508,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090611457825,L, + 302134450250,0.715228915214539,L, + 304058873500,0.718355715274811,L, + 305983296750,0.721470296382904,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659165859222,L, + 311756566500,0.730730950832367,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819624900818,L, + 317529836250,0.739830851554871,L, + 319454259500,0.742812931537628,L, + 321378682750,0.745757281780243,L, + 323303106000,0.748646736145020,L, + 325227529250,0.751438617706299,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008198022842,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696793437004,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333640456200,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256717205048,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687750101089,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571617841721,L, + 84674623000,0.289855480194092,L, + 86599046250,0.295046925544739,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141146183014,L, + 94296739250,0.315032541751862,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634134769440,L, + 100070009000,0.329352051019669,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638782501221,L, + 105843278750,0.343213081359863,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834393262863,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122639179230,L, + 128936357750,0.395298093557358,L, + 130860781000,0.399448513984680,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758333444595,L, + 138558474000,0.415817111730576,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872113227844,L, + 144331743750,0.427869647741318,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807675123215,L, + 150105013500,0.439749270677567,L, + 152029436750,0.443673282861710,L, + 153953860000,0.447580158710480,L, + 155878283250,0.451470345258713,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045090436935,L, + 163575976250,0.466872721910477,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484264850616,L, + 169349246000,0.478268802165985,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485797047615051,L, + 175122515750,0.489541202783585,L, + 177046939000,0.493272662162781,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392087459564,L, + 184744632000,0.508074581623077,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404701232910,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854423522949,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954469203949,L, + 211686557500,0.558490216732025,L, + 213610980750,0.562016785144806,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449265480042,L, + 229006366750,0.589904725551605,L, + 230930790000,0.593351900577545,L, + 232855213250,0.596790552139282,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643119335175,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861024379730,L, + 244401752750,0.617250978946686,L, + 246326176000,0.620632946491241,L, + 248250599250,0.624006927013397,L, + 250175022500,0.627373218536377,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634081959724426,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317936420441,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159259319305,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680484294891,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169403553009,L, + 282890217750,0.683401584625244,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046987056732,L, + 290587910750,0.696244537830353,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612221240997,L, + 296361180500,0.705781877040863,L, + 298285603750,0.708941400051117,L, + 300210027000,0.712090671062469,L, + 302134450250,0.715228855609894,L, + 304058873500,0.718355774879456,L, + 305983296750,0.721470355987549,L, + 307907720000,0.724571824073792,L, + 309832143250,0.727659165859222,L, + 311756566500,0.730730891227722,L, + 313680989750,0.733785331249237,L, + 315605413000,0.736819863319397,L, + 317529836250,0.739830732345581,L, + 319454259500,0.742812871932983,L, + 321378682750,0.745757341384888,L, + 323303106000,0.748646914958954,L, + 325227529250,0.751438498497009,L, + 327151952500,0.753801822662354,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_024" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.127271384000778 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.127271384000778,L, + 1924423250,0.127283006906509,L, + 3848846500,0.127316176891327,L, + 5773269750,0.127368569374084,L, + 7697693000,0.127438485622406,L, + 9622116250,0.127524197101593,L, + 11546539500,0.127624601125717,L, + 13470962750,0.127738475799561,L, + 15395386000,0.127864837646484,L, + 17319809250,0.128002792596817,L, + 19244232500,0.128151684999466,L, + 21168655750,0.128310948610306,L, + 23093079000,0.128479868173599,L, + 25017502250,0.128657966852188,L, + 26941925500,0.128844827413559,L, + 28866348750,0.129040122032166,L, + 30790772000,0.129243522882462,L, + 32715195250,0.129454612731934,L, + 34639618500,0.129673212766647,L, + 36564041750,0.129899144172668,L, + 38488465000,0.130132198333740,L, + 40412888250,0.130372256040573,L, + 42337311500,0.130619406700134,L, + 44261734750,0.130873441696167,L, + 46186158000,0.131134569644928,L, + 48110581250,0.131403028964996,L, + 50035004500,0.131679117679596,L, + 51959427750,0.131963938474655,L, + 53883851000,0.132259190082550,L, + 55808274250,0.132572799921036,L, + 57732697500,0.133061707019806,L, + 59657120750,0.035243153572083,L, + 61581544000,0.040747404098511,L, + 63505967250,0.050898104906082,L, + 65430390500,0.062528550624847,L, + 67354813750,0.074592530727386,L, + 69279237000,0.086557924747467,L, + 71203660250,0.098081827163696,L, + 73128083500,0.108901977539062,L, + 75052506750,0.118788838386536,L, + 76976930000,0.127518743276596,L, + 78901353250,0.134855449199677,L, + 80825776500,0.140533238649368,L, + 82750199750,0.144236564636230,L, + 84674623000,0.145575165748596,L, + 86599046250,0.144330352544785,L, + 88523469500,0.140567183494568,L, + 90447892750,0.134305566549301,L, + 92372316000,0.125675827264786,L, + 94296739250,0.114950358867645,L, + 96221162500,0.102562516927719,L, + 98145585750,0.089100629091263,L, + 100070009000,0.075266629457474,L, + 101994432250,0.061804682016373,L, + 103918855500,0.049416989088058,L, + 105843278750,0.038691461086273,L, + 107767702000,0.030061691999435,L, + 109692125250,0.023800075054169,L, + 111616548500,0.020036906003952,L, + 113540971750,0.018792062997818,L, + 115465395000,0.018847554922104,L, + 117389818250,0.019014596939087,L, + 119314241500,0.019294112920761,L, + 121238664750,0.019686669111252,L, + 123163088000,0.020192623138428,L, + 125087511250,0.020811885595322,L, + 127011934500,0.021544367074966,L, + 128936357750,0.022389143705368,L, + 130860781000,0.023345261812210,L, + 132785204250,0.024411112070084,L, + 134709627500,0.025584638118744,L, + 136634050750,0.026863366365433,L, + 138558474000,0.028244018554688,L, + 140482897250,0.029722958803177,L, + 142407320500,0.031295895576477,L, + 144331743750,0.032957792282104,L, + 146256167000,0.034703284502029,L, + 148180590250,0.036526024341583,L, + 150105013500,0.038419246673584,L, + 152029436750,0.040375739336014,L, + 153953860000,0.042387425899506,L, + 155878283250,0.044446051120758,L, + 157802706500,0.046542674303055,L, + 159727129750,0.048668175935745,L, + 161651553000,0.050813078880310,L, + 165500399500,0.055122375488281,L, + 167424822750,0.057267278432846,L, + 169349246000,0.059392869472504,L, + 171273669250,0.061489492654800,L, + 173198092500,0.063548088073730,L, + 175122515750,0.065559774637222,L, + 177046939000,0.067516237497330,L, + 178971362250,0.069409519433975,L, + 180895785500,0.071232259273529,L, + 182820208750,0.072977691888809,L, + 184744632000,0.074639618396759,L, + 186669055250,0.076212584972382,L, + 188593478500,0.077691525220871,L, + 190517901750,0.079072177410126,L, + 192442325000,0.080350846052170,L, + 194366748250,0.081524401903152,L, + 196291171500,0.082590252161026,L, + 198215594750,0.083546370267868,L, + 200140018000,0.084391176700592,L, + 202064441250,0.085123658180237,L, + 203988864500,0.085742920637131,L, + 205913287750,0.086248874664307,L, + 207837711000,0.086641401052475,L, + 209762134250,0.086920946836472,L, + 211686557500,0.087087959051132,L, + 213610980750,0.087143421173096,L, + 215535404000,0.087070375680923,L, + 217459827250,0.086849778890610,L, + 219384250500,0.086480528116226,L, + 221308673750,0.085962235927582,L, + 223233097000,0.085295915603638,L, + 225157520250,0.084484070539474,L, + 227081943500,0.083530902862549,L, + 229006366750,0.082442671060562,L, + 230930790000,0.081227570772171,L, + 232855213250,0.079896301031113,L, + 234779636500,0.078461587429047,L, + 236704059750,0.076938420534134,L, + 238628483000,0.075344234704971,L, + 240552906250,0.073697686195374,L, + 242477329500,0.072019308805466,L, + 244401752750,0.070330142974854,L, + 246326176000,0.068651676177979,L, + 248250599250,0.067005217075348,L, + 250175022500,0.065410912036896,L, + 252099445750,0.063887864351273,L, + 254023869000,0.062453120946884,L, + 255948292250,0.061121851205826,L, + 257872715500,0.059906810522079,L, + 259797138750,0.058818489313126,L, + 261721562000,0.057865381240845,L, + 263645985250,0.057053565979004,L, + 265570408500,0.056387186050415,L, + 267494831750,0.055868893861771,L, + 269419255000,0.055499643087387,L, + 271343678250,0.055279076099396,L, + 273268101500,0.055205941200256,L, + 275192524750,0.055221527814865,L, + 277116948000,0.055275171995163,L, + 279041371250,0.055379390716553,L, + 280965794500,0.055548071861267,L, + 282890217750,0.055796980857849,L, + 284814641000,0.056142598390579,L, + 286739064250,0.056601464748383,L, + 288663487500,0.057188630104065,L, + 290587910750,0.057916462421417,L, + 292512334000,0.058793306350708,L, + 294436757250,0.059822410345078,L, + 296361180500,0.061002492904663,L, + 298285603750,0.062327504158020,L, + 300210027000,0.063788056373596,L, + 302134450250,0.065372437238693,L, + 304058873500,0.067068070173264,L, + 305983296750,0.068862050771713,L, + 307907720000,0.070742100477219,L, + 309832143250,0.072869449853897,L, + 311756566500,0.075411736965179,L, + 313680989750,0.078359574079514,L, + 315605413000,0.081691086292267,L, + 317529836250,0.085369229316711,L, + 319454259500,0.089339792728424,L, + 321378682750,0.093530118465424,L, + 323303106000,0.097850382328033,L, + 325227529250,0.102196872234344,L, + 327151952500,0.106458365917206,L, + 329076375750,0.110523551702499,L, + 331000799000,0.114289462566376,L, + 332925222250,0.117667406797409,L, + 334849645500,0.120588630437851,L, + 336774068750,0.123004138469696,L, + 338698492000,0.124885261058807,L, + 340622915250,0.126220464706421,L, + 342547338500,0.127011656761169,L, + 344471761750,0.127271384000778,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.056042917072773 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.056042917072773,L, + 1924423250,-0.055359676480293,L, + 3848846500,-0.053412869572639,L, + 5773269750,-0.050337389111519,L, + 7697693000,-0.046246312558651,L, + 9622116250,-0.041234262287617,L, + 11546539500,-0.035381831228733,L, + 13470962750,-0.028759382665157,L, + 15395386000,-0.021428540349007,L, + 17319809250,-0.013441734015942,L, + 19244232500,-0.004847019910812,L, + 21168655750,0.004313848912716,L, + 23093079000,0.014001093804836,L, + 25017502250,0.024181187152863,L, + 26941925500,0.034821629524231,L, + 28866348750,0.045893251895905,L, + 30790772000,0.057367891073227,L, + 32715195250,0.069219321012497,L, + 34639618500,0.081420831382275,L, + 36564041750,0.093947120010853,L, + 38488465000,0.106770500540733,L, + 40412888250,0.119863703846931,L, + 42337311500,0.133193671703339,L, + 44261734750,0.146721422672272,L, + 46186158000,0.160396844148636,L, + 48110581250,0.174149304628372,L, + 50035004500,0.187865301966667,L, + 51959427750,0.201334893703461,L, + 53883851000,0.214051485061646,L, + 55808274250,0.223492279648781,L, + 57732697500,0.224631011486053,L, + 59657120750,-0.027528814971447,L, + 61581544000,-0.048187002539635,L, + 63505967250,-0.058934025466442,L, + 65430390500,-0.066519342362881,L, + 67354813750,-0.072370216250420,L, + 69279237000,-0.077085971832275,L, + 71203660250,-0.080986045300961,L, + 73128083500,-0.084263950586319,L, + 75052506750,-0.087048575282097,L, + 76976930000,-0.089430972933769,L, + 78901353250,-0.091477490961552,L, + 80825776500,-0.093239337205887,L, + 82750199750,-0.094756230711937,L, + 84674623000,-0.096059553325176,L, + 86599046250,-0.097176983952522,L, + 88523469500,-0.098130643367767,L, + 90447892750,-0.098938763141632,L, + 92372316000,-0.099617391824722,L, + 94296739250,-0.100181251764297,L, + 96221162500,-0.100643806159496,L, + 98145585750,-0.101015239953995,L, + 100070009000,-0.101306982338428,L, + 101994432250,-0.101528972387314,L, + 103918855500,-0.101690247654915,L, + 105843278750,-0.101800918579102,L, + 107767702000,-0.101869642734528,L, + 109692125250,-0.101905770599842,L, + 111616548500,-0.101919509470463,L, + 113540971750,-0.101921774446964,L, + 115465395000,-0.101845748722553,L, + 117389818250,-0.101616837084293,L, + 119314241500,-0.101233243942261,L, + 121238664750,-0.100695550441742,L, + 123163088000,-0.100001893937588,L, + 125087511250,-0.099153235554695,L, + 127011934500,-0.098149046301842,L, + 128936357750,-0.096990652382374,L, + 130860781000,-0.095680274069309,L, + 132785204250,-0.094219580292702,L, + 134709627500,-0.092610649764538,L, + 136634050750,-0.090857863426208,L, + 138558474000,-0.088965028524399,L, + 140482897250,-0.086937800049782,L, + 142407320500,-0.084782198071480,L, + 144331743750,-0.082504138350487,L, + 146256167000,-0.080110907554626,L, + 148180590250,-0.077612526714802,L, + 150105013500,-0.075017504394054,L, + 152029436750,-0.072335727512836,L, + 153953860000,-0.069577880203724,L, + 155878283250,-0.066756077110767,L, + 157802706500,-0.063882321119308,L, + 159727129750,-0.060968585312366,L, + 161651553000,-0.058028213679790,L, + 163575976250,-0.055075012147427,L, + 165500399500,-0.052121326327324,L, + 167424822750,-0.049180954694748,L, + 169349246000,-0.046267218887806,L, + 171273669250,-0.043393462896347,L, + 173198092500,-0.040571659803391,L, + 175122515750,-0.037813812494278,L, + 177046939000,-0.035132028162479,L, + 178971362250,-0.032537013292313,L, + 180895785500,-0.030038155615330,L, + 182820208750,-0.027645878493786,L, + 184744632000,-0.025367341935635,L, + 186669055250,-0.023211739957333,L, + 188593478500,-0.021184034645557,L, + 190517901750,-0.019291676580906,L, + 192442325000,-0.017538882791996,L, + 194366748250,-0.015929952263832,L, + 196291171500,-0.014469265937805,L, + 198215594750,-0.013158410787582,L, + 200140018000,-0.012000501155853,L, + 202064441250,-0.010996304452419,L, + 203988864500,-0.010147646069527,L, + 205913287750,-0.009453989565372,L, + 207837711000,-0.008915811777115,L, + 209762134250,-0.008532702922821,L, + 211686557500,-0.008303791284561,L, + 213610980750,-0.008227765560150,L, + 215535404000,-0.008358977735043,L, + 217459827250,-0.008757241070271,L, + 219384250500,-0.009429149329662,L, + 221308673750,-0.010381445288658,L, + 223233097000,-0.011617250740528,L, + 225157520250,-0.013138957321644,L, + 227081943500,-0.014946848154068,L, + 229006366750,-0.017036713659763,L, + 230930790000,-0.019402757287025,L, + 232855213250,-0.022034265100956,L, + 234779636500,-0.024918474256992,L, + 236704059750,-0.028035759925842,L, + 238628483000,-0.031365901231766,L, + 240552906250,-0.034883134067059,L, + 242477329500,-0.038558103144169,L, + 244401752750,-0.042361535131931,L, + 246326176000,-0.046258941292763,L, + 248250599250,-0.050217673182487,L, + 250175022500,-0.054204441606998,L, + 252099445750,-0.058186694979668,L, + 254023869000,-0.062133990228176,L, + 255948292250,-0.066018402576447,L, + 257872715500,-0.069815032184124,L, + 259797138750,-0.073501452803612,L, + 261721562000,-0.077058754861355,L, + 263645985250,-0.080471038818359,L, + 265570408500,-0.083727352321148,L, + 267494831750,-0.086816512048244,L, + 269419255000,-0.089731402695179,L, + 271343678250,-0.092468045651913,L, + 273268101500,-0.095022812485695,L, + 275192524750,-0.097560197114944,L, + 277116948000,-0.100240349769592,L, + 279041371250,-0.103046566247940,L, + 280965794500,-0.105957046151161,L, + 282890217750,-0.108938656747341,L, + 284814641000,-0.111952044069767,L, + 286739064250,-0.114946223795414,L, + 288663487500,-0.117866002023220,L, + 290587910750,-0.120651833713055,L, + 292512334000,-0.123246826231480,L, + 294436757250,-0.125599026679993,L, + 296361180500,-0.127667754888535,L, + 298285603750,-0.129423692822456,L, + 300210027000,-0.130850523710251,L, + 302134450250,-0.131944179534912,L, + 304058873500,-0.132708191871643,L, + 305983296750,-0.133154302835464,L, + 307907720000,-0.133299276232719,L, + 309832143250,-0.132826954126358,L, + 311756566500,-0.131400480866432,L, + 313680989750,-0.129016667604446,L, + 315605413000,-0.125694423913956,L, + 317529836250,-0.121483922004700,L, + 319454259500,-0.116468213498592,L, + 321378682750,-0.110770314931870,L, + 323303106000,-0.104550011456013,L, + 325227529250,-0.098001554608345,L, + 327151952500,-0.091340705752373,L, + 329076375750,-0.084791973233223,L, + 331000799000,-0.078571610152721,L, + 332925222250,-0.072873726487160,L, + 334849645500,-0.067858025431633,L, + 336774068750,-0.063647501170635,L, + 338698492000,-0.060325972735882,L, + 340622915250,-0.057941481471062,L, + 342547338500,-0.056514821946621,L, + 344471761750,-0.056042917072773,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.238480925559998 + KeyVer: 4005 + KeyCount: 103 + Key: + 0,0.238480925559998,L, + 1924423250,0.239219307899475,L, + 3848846500,0.241324067115784,L, + 5773269750,0.244650721549988,L, + 7697693000,0.249079346656799,L, + 9622116250,0.254508852958679,L, + 11546539500,0.260852694511414,L, + 13470962750,0.268036961555481,L, + 15395386000,0.275996565818787,L, + 17319809250,0.284675240516663,L, + 19244232500,0.294023394584656,L, + 21168655750,0.303996205329895,L, + 23093079000,0.314554572105408,L, + 25017502250,0.325662493705750,L, + 26941925500,0.337287545204163,L, + 28866348750,0.349400401115417,L, + 30790772000,0.361973643302917,L, + 32715195250,0.374981760978699,L, + 34639618500,0.388400673866272,L, + 36564041750,0.402207255363464,L, + 38488465000,0.416379094123840,L, + 40412888250,0.430892348289490,L, + 42337311500,0.445721983909607,L, + 44261734750,0.460840344429016,L, + 46186158000,0.476212143898010,L, + 48110581250,0.491790413856506,L, + 50035004500,0.507501721382141,L, + 51959427750,0.523209929466248,L, + 53883851000,0.538583397865295,L, + 55808274250,0.551941514015198,L, + 57732697500,0.559229969978333,L, + 59657120750,0.034106016159058,L, + 111616548500,0.034106016159058,L, + 113540971750,0.007775783538818,L, + 211686557500,0.007775783538818,L, + 213610980750,-0.003737330436707,L, + 215535404000,-0.003504514694214,L, + 217459827250,-0.002799868583679,L, + 219384250500,-0.001614928245544,L, + 221308673750,0.000055074691772,L, + 223233097000,0.002212405204773,L, + 225157520250,0.004854083061218,L, + 227081943500,0.007973194122314,L, + 229006366750,0.011556506156921,L, + 230930790000,0.015584588050842,L, + 232855213250,0.020031452178955,L, + 234779636500,0.024863958358765,L, + 236704059750,0.030041813850403,L, + 238628483000,0.035517692565918,L, + 240552906250,0.041238784790039,L, + 242477329500,0.047146916389465,L, + 244401752750,0.053180336952209,L, + 246326176000,0.059275865554810,L, + 248250599250,0.065369606018066,L, + 250175022500,0.071399450302124,L, + 252099445750,0.077306747436523,L, + 254023869000,0.083036780357361,L, + 255948292250,0.088540911674500,L, + 257872715500,0.093776345252991,L, + 259797138750,0.098706483840942,L, + 261721562000,0.103302121162415,L, + 263645985250,0.107539534568787,L, + 265570408500,0.111401200294495,L, + 267494831750,0.114874720573425,L, + 269419255000,0.117951989173889,L, + 271343678250,0.120629787445068,L, + 273268101500,0.122907876968384,L, + 275192524750,0.124830961227417,L, + 277116948000,0.126440048217773,L, + 279041371250,0.127734422683716,L, + 280965794500,0.128722548484802,L, + 282890217750,0.129423618316650,L, + 284814641000,0.129869580268860,L, + 286739064250,0.130107998847961,L, + 288663487500,0.130197882652283,L, + 292512334000,0.130224108695984,L, + 294436757250,0.130313992500305,L, + 296361180500,0.130552411079407,L, + 298285603750,0.130998492240906,L, + 300210027000,0.131699442863464,L, + 302134450250,0.132687687873840,L, + 304058873500,0.133982062339783,L, + 305983296750,0.135590910911560,L, + 307907720000,0.137514472007751,L, + 309832143250,0.140061020851135,L, + 311756566500,0.143548369407654,L, + 313680989750,0.147967457771301,L, + 315605413000,0.153284430503845,L, + 317529836250,0.159434199333191,L, + 319454259500,0.166314482688904,L, + 321378682750,0.173784136772156,L, + 323303106000,0.181663155555725,L, + 325227529250,0.189739108085632,L, + 327151952500,0.197780966758728,L, + 329076375750,0.205552697181702,L, + 331000799000,0.212831139564514,L, + 332925222250,0.219421029090881,L, + 334849645500,0.225164771080017,L, + 336774068750,0.229946970939636,L, + 338698492000,0.233693242073059,L, + 340622915250,0.236365914344788,L, + 342547338500,0.237956643104553,L, + 344471761750,0.238480925559998,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.865117763194306 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,-93.865117763194306,L, + 1924423250,-93.859045725022170,L, + 3848846500,-93.838657610349713,L, + 5773269750,-93.800873003861255,L, + 7697693000,-93.742720773267848,L, + 9622116250,-93.661325408928931,L, + 11546539500,-93.553749929501379,L, + 13470962750,-93.416995881939584,L, + 15395386000,-93.247921379225332,L, + 17319809250,-93.043179628665328,L, + 19244232500,-92.799150629999460,L, + 21168655750,-92.511866043319969,L, + 23093079000,-92.176913566423025,L, + 25017502250,-91.789354972538717,L, + 26941925500,-91.343548525412615,L, + 28866348750,-90.832991884954907,L, + 30790772000,-90.250110371376024,L, + 32715195250,-89.585908625539091,L, + 34639618500,-88.829608608933825,L, + 36564041750,-87.968014396083817,L, + 38488465000,-86.984644740521802,L, + 40412888250,-85.858489980360886,L, + 42337311500,-84.561935660786745,L, + 44261734750,-83.057436231931860,L, + 46186158000,-81.291552293730135,L, + 48110581250,-79.183537349813776,L, + 50035004500,-76.600489579312907,L, + 51959427750,-73.292601643523795,L, + 53883851000,-68.662464216502997,L, + 55808274250,-59.846629771753484,L, + 57732697500,-28.335756941620037,L, + 59657120750,-93.865117763194306,L, + 61581544000,-93.154375108352966,L, + 63505967250,-91.780079575645843,L, + 65430390500,-90.120712437550310,L, + 67354813750,-88.299538118017409,L, + 69279237000,-86.376054394907030,L, + 71203660250,-84.385102063175367,L, + 73128083500,-82.349862784865408,L, + 75052506750,-80.287336900821273,L, + 76976930000,-78.211150638437147,L, + 78901353250,-76.133147545733792,L, + 80825776500,-74.064494982004177,L, + 82750199750,-72.016537891459663,L, + 84674623000,-70.001768690092192,L, + 86599046250,-67.872682612586388,L, + 88523469500,-65.479999044442664,L, + 90447892750,-62.845369685329914,L, + 92372316000,-60.007344122923655,L, + 94296739250,-57.024293153870723,L, + 96221162500,-53.974921047977062,L, + 98145585750,-50.954788981920181,L, + 100070009000,-48.068166623569354,L, + 101994432250,-45.416728168909231,L, + 103918855500,-43.087992246869653,L, + 105843278750,-41.147101786659526,L, + 107767702000,-39.633784583586163,L, + 109692125250,-38.564084752009911,L, + 111616548500,-37.935072140776832,L, + 113540971750,-37.730525050608165,L, + 115465395000,-37.776078997277502,L, + 117389818250,-37.913280422229931,L, + 119314241500,-38.142819174571635,L, + 121238664750,-38.465207518490359,L, + 123163088000,-38.880705001174569,L, + 125087511250,-39.389332113191756,L, + 127011934500,-39.990842967731822,L, + 128936357750,-40.684667243999058,L, + 130860781000,-41.469899941928446,L, + 132785204250,-42.345250155766855,L, + 134709627500,-43.309051319356797,L, + 136634050750,-44.359172413677243,L, + 138558474000,-45.493065778167768,L, + 140482897250,-46.707678318269394,L, + 142407320500,-47.999451505424538,L, + 144331743750,-49.364355528022905,L, + 146256167000,-50.797824404604349,L, + 148180590250,-52.294776474426378,L, + 150105013500,-53.849662208788381,L, + 152029436750,-55.456416399707379,L, + 153953860000,-57.108570858039386,L, + 155878283250,-58.799220262533538,L, + 157802706500,-60.521124612669617,L, + 159727129750,-62.266729719225609,L, + 161651553000,-64.028269657115217,L, + 165500399500,-67.567373156687253,L, + 167424822750,-69.328913094576862,L, + 169349246000,-71.074525031322025,L, + 171273669250,-72.796415721079768,L, + 173198092500,-74.487071955763085,L, + 175122515750,-76.139219583905927,L, + 177046939000,-77.745980605014097,L, + 178971362250,-79.300873169565264,L, + 180895785500,-80.797818409198129,L, + 182820208750,-82.231297531063319,L, + 184744632000,-83.596201553661686,L, + 186669055250,-84.887967910627665,L, + 188593478500,-86.102573620540113,L, + 190517901750,-87.236473815219810,L, + 192442325000,-88.286601739729420,L, + 194366748250,-89.250396073130204,L, + 196291171500,-90.125746286968607,L, + 198215594750,-90.910965324519651,L, + 200140018000,-91.604796430976066,L, + 202064441250,-92.206303870421536,L, + 203988864500,-92.714941227722491,L, + 205913287750,-93.130442125501276,L, + 207837711000,-93.452820224136246,L, + 209762134250,-93.682369221761704,L, + 211686557500,-93.819567231619558,L, + 213610980750,-93.865117763194306,L, + 273268101500,-93.865117763194306,L, + 275192524750,-93.636873331700315,L, + 277116948000,-92.946826150044089,L, + 279041371250,-91.794395652146179,L, + 280965794500,-90.191664442648303,L, + 282890217750,-88.166923165092641,L, + 284814641000,-85.767778237994079,L, + 286739064250,-83.062668156836082,L, + 288663487500,-80.140009720424317,L, + 290587910750,-77.104120407952237,L, + 292512334000,-74.068244755858501,L, + 294436757250,-71.145586319446736,L, + 296361180500,-68.440483068477903,L, + 298285603750,-66.041324481001013,L, + 300210027000,-64.016590033634515,L, + 302134450250,-62.413858824136639,L, + 304058873500,-61.261428326238722,L, + 305983296750,-60.571387974771667,L, + 307907720000,-60.343136713088512,L, + 309832143250,-60.547912614594367,L, + 311756566500,-61.166939489260905,L, + 313680989750,-62.201460431517056,L, + 315605413000,-63.642883063386968,L, + 317529836250,-65.469897194660220,L, + 319454259500,-67.646138898195730,L, + 321378682750,-70.118564924899246,L, + 323303106000,-72.817534665993421,L, + 325227529250,-75.659036794687211,L, + 327151952500,-78.549217681595607,L, + 329076375750,-81.390719810289397,L, + 331000799000,-84.089689551383572,L, + 332925222250,-86.562122408276252,L, + 334849645500,-88.738357281622598,L, + 336774068750,-90.565364582706678,L, + 338698492000,-92.006773554198247,L, + 340622915250,-93.041308156832741,L, + 342547338500,-93.660355522066794,L, + 344471761750,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.719932675361633 + KeyVer: 4005 + KeyCount: 137 + Key: + 0,0.719932675361633,L, + 1924423250,0.718646585941315,L, + 3848846500,0.714981675148010,L, + 5773269750,0.709188997745514,L, + 7697693000,0.701477766036987,L, + 9622116250,0.692024409770966,L, + 11546539500,0.680979371070862,L, + 13470962750,0.668471932411194,L, + 15395386000,0.654614984989166,L, + 17319809250,0.639506936073303,L, + 19244232500,0.623234689235687,L, + 21168655750,0.605875730514526,L, + 23093079000,0.587499082088470,L, + 25017502250,0.568167030811310,L, + 26941925500,0.547936201095581,L, + 28866348750,0.526858508586884,L, + 30790772000,0.504981577396393,L, + 32715195250,0.482350140810013,L, + 34639618500,0.459006458520889,L, + 36564041750,0.434991419315338,L, + 38488465000,0.410345315933228,L, + 40412888250,0.385109633207321,L, + 42337311500,0.359328687191010,L, + 44261734750,0.333053112030029,L, + 46186158000,0.306345403194427,L, + 48110581250,0.279291063547134,L, + 50035004500,0.252022832632065,L, + 51959427750,0.224786654114723,L, + 53883851000,0.198181629180908,L, + 55808274250,0.175241708755493,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401899456978,L, + 65430390500,0.232390195131302,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703390836716,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612936973572,L, + 76976930000,0.390101283788681,L, + 78901353250,0.415048331022263,L, + 80825776500,0.439390122890472,L, + 82750199750,0.463067084550858,L, + 84674623000,0.486021518707275,L, + 86599046250,0.508195459842682,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960136413574,L, + 92372316000,0.569421589374542,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605140030384064,L, + 98145585750,0.621230363845825,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381995201111,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671347022056580,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869157314301,L, + 111616548500,0.689822614192963,L, + 113540971750,0.691212654113770,L, + 115465395000,0.691212713718414,L, + 121238664750,0.691212713718414,L, + 123163088000,0.691212654113770,L, + 125087511250,0.691212654113770,L, + 127011934500,0.691212594509125,L, + 128936357750,0.691212713718414,L, + 130860781000,0.691212713718414,L, + 132785204250,0.691212654113770,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212654113770,L, + 138558474000,0.691212713718414,L, + 146256167000,0.691212713718414,L, + 148180590250,0.691212654113770,L, + 150105013500,0.691212713718414,L, + 157802706500,0.691212713718414,L, + 159727129750,0.691212654113770,L, + 161651553000,0.691212713718414,L, + 171273669250,0.691212713718414,L, + 173198092500,0.691212654113770,L, + 175122515750,0.691212713718414,L, + 177046939000,0.691212713718414,L, + 178971362250,0.691212654113770,L, + 180895785500,0.691212713718414,L, + 182820208750,0.691212654113770,L, + 184744632000,0.691212713718414,L, + 186669055250,0.691212713718414,L, + 188593478500,0.691212594509125,L, + 190517901750,0.691212713718414,L, + 194366748250,0.691212594509125,L, + 196291171500,0.691212713718414,L, + 198215594750,0.691212713718414,L, + 200140018000,0.691212773323059,L, + 202064441250,0.691212713718414,L, + 203988864500,0.691212773323059,L, + 205913287750,0.691212594509125,L, + 207837711000,0.691212713718414,L, + 209762134250,0.691212713718414,L, + 211686557500,0.691212654113770,L, + 213610980750,0.691212713718414,L, + 273268101500,0.691212713718414,L, + 275192524750,0.691269636154175,L, + 277116948000,0.691444575786591,L, + 279041371250,0.691742539405823,L, + 280965794500,0.692166566848755,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389177322388,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061564445496,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123395442963,L, + 296361180500,0.699201107025146,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309382915497,L, + 302134450250,0.702305734157562,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125583171844,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748260021210,L, + 311756566500,0.706631004810333,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589196205139,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062869548798,L, + 327151952500,0.715108275413513,L, + 329076375750,0.716085731983185,L, + 331000799000,0.716975510120392,L, + 332925222250,0.717761754989624,L, + 334849645500,0.718432545661926,L, + 336774068750,0.718980908393860,L, + 338698492000,0.719403564929962,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932675361633,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.719932675361633 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.719932675361633,L, + 1924423250,0.718646645545959,L, + 3848846500,0.714981675148010,L, + 5773269750,0.709188997745514,L, + 7697693000,0.701477706432343,L, + 9622116250,0.692024469375610,L, + 11546539500,0.680979311466217,L, + 13470962750,0.668471992015839,L, + 15395386000,0.654614984989166,L, + 17319809250,0.639506936073303,L, + 19244232500,0.623234689235687,L, + 21168655750,0.605875670909882,L, + 23093079000,0.587499082088470,L, + 25017502250,0.568167030811310,L, + 26941925500,0.547936201095581,L, + 28866348750,0.526858448982239,L, + 30790772000,0.504981577396393,L, + 32715195250,0.482350140810013,L, + 34639618500,0.459006488323212,L, + 36564041750,0.434991389513016,L, + 38488465000,0.410345345735550,L, + 40412888250,0.385109633207321,L, + 42337311500,0.359328687191010,L, + 44261734750,0.333053082227707,L, + 46186158000,0.306345343589783,L, + 48110581250,0.279291063547134,L, + 50035004500,0.252022832632065,L, + 51959427750,0.224786639213562,L, + 53883851000,0.198181629180908,L, + 55808274250,0.175241723656654,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128444314003,L, + 63505967250,0.206401899456978,L, + 65430390500,0.232390165328979,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703361034393,L, + 71203660250,0.312314957380295,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612936973572,L, + 76976930000,0.390101283788681,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390122890472,L, + 82750199750,0.463067144155502,L, + 84674623000,0.486021548509598,L, + 86599046250,0.508195400238037,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960076808929,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605140030384064,L, + 98145585750,0.621230363845825,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381995201111,L, + 103918855500,0.661207377910614,L, + 105843278750,0.671346962451935,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869157314301,L, + 111616548500,0.689822614192963,L, + 113540971750,0.691212654113770,L, + 115465395000,0.691212654113770,L, + 117389818250,0.691212713718414,L, + 121238664750,0.691212713718414,L, + 123163088000,0.691212654113770,L, + 125087511250,0.691212713718414,L, + 127011934500,0.691212594509125,L, + 130860781000,0.691212713718414,L, + 132785204250,0.691212654113770,L, + 134709627500,0.691212713718414,L, + 136634050750,0.691212654113770,L, + 138558474000,0.691212713718414,L, + 140482897250,0.691212713718414,L, + 142407320500,0.691212654113770,L, + 144331743750,0.691212713718414,L, + 146256167000,0.691212654113770,L, + 148180590250,0.691212713718414,L, + 153953860000,0.691212713718414,L, + 155878283250,0.691212654113770,L, + 157802706500,0.691212654113770,L, + 159727129750,0.691212713718414,L, + 161651553000,0.691212654113770,L, + 163575976250,0.691212713718414,L, + 169349246000,0.691212713718414,L, + 171273669250,0.691212654113770,L, + 175122515750,0.691212654113770,L, + 177046939000,0.691212713718414,L, + 178971362250,0.691212713718414,L, + 180895785500,0.691212594509125,L, + 182820208750,0.691212654113770,L, + 184744632000,0.691212654113770,L, + 186669055250,0.691212713718414,L, + 190517901750,0.691212713718414,L, + 192442325000,0.691212654113770,L, + 194366748250,0.691212713718414,L, + 196291171500,0.691212654113770,L, + 198215594750,0.691212713718414,L, + 207837711000,0.691212713718414,L, + 209762134250,0.691212654113770,L, + 211686557500,0.691212654113770,L, + 213610980750,0.691212713718414,L, + 273268101500,0.691212713718414,L, + 275192524750,0.691269636154175,L, + 277116948000,0.691444516181946,L, + 279041371250,0.691742479801178,L, + 280965794500,0.692166507244110,L, + 282890217750,0.692716658115387,L, + 284814641000,0.693389236927032,L, + 286739064250,0.694175243377686,L, + 288663487500,0.695061624050140,L, + 290587910750,0.696029841899872,L, + 292512334000,0.697058379650116,L, + 294436757250,0.698123455047607,L, + 296361180500,0.699201107025146,L, + 298285603750,0.700269281864166,L, + 300210027000,0.701309382915497,L, + 302134450250,0.702305793762207,L, + 304058873500,0.703247010707855,L, + 305983296750,0.704125523567200,L, + 307907720000,0.704936206340790,L, + 309832143250,0.705748260021210,L, + 311756566500,0.706630945205688,L, + 313680989750,0.707580208778381,L, + 315605413000,0.708589196205139,L, + 317529836250,0.709647953510284,L, + 319454259500,0.710743069648743,L, + 321378682750,0.711857676506042,L, + 323303106000,0.712971568107605,L, + 325227529250,0.714062809944153,L, + 327151952500,0.715108275413513,L, + 329076375750,0.716085672378540,L, + 331000799000,0.716975450515747,L, + 332925222250,0.717761695384979,L, + 334849645500,0.718432664871216,L, + 336774068750,0.718980848789215,L, + 338698492000,0.719403564929962,L, + 340622915250,0.719700872898102,L, + 342547338500,0.719875633716583,L, + 344471761750,0.719932675361633,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.443951517343521 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.443951517343521,L, + 1924423250,0.443145304918289,L, + 3848846500,0.440847545862198,L, + 5773269750,0.437215417623520,L, + 7697693000,0.432379722595215,L, + 9622116250,0.426450699567795,L, + 11546539500,0.419522404670715,L, + 13470962750,0.411675721406937,L, + 15395386000,0.402980923652649,L, + 17319809250,0.393499493598938,L, + 19244232500,0.383285641670227,L, + 21168655750,0.372387528419495,L, + 23093079000,0.360848069190979,L, + 25017502250,0.348706007003784,L, + 26941925500,0.335996240377426,L, + 28866348750,0.322750836610794,L, + 30790772000,0.308999031782150,L, + 32715195250,0.294768124818802,L, + 34639618500,0.280083805322647,L, + 36564041750,0.264970570802689,L, + 38488465000,0.249452456831932,L, + 40412888250,0.233553767204285,L, + 42337311500,0.217300117015839,L, + 44261734750,0.200720265507698,L, + 46186158000,0.183849230408669,L, + 48110581250,0.166734203696251,L, + 50035004500,0.149447962641716,L, + 51959427750,0.132124871015549,L, + 53883851000,0.115093745291233,L, + 55808274250,0.100030787289143,L, + 57732697500,0.090337850153446,L, + 59657120750,0.090913213789463,L, + 61581544000,0.096882529556751,L, + 63505967250,0.105280600488186,L, + 65430390500,0.114354141056538,L, + 67354813750,0.123738184571266,L, + 69279237000,0.133280396461487,L, + 71203660250,0.142899036407471,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323528289795,L, + 80825776500,0.190795257687569,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626782298088,L, + 88523469500,0.227664560079575,L, + 90447892750,0.236560583114624,L, + 92372316000,0.245301187038422,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441085100174,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126047372818,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750583410263,L, + 107767702000,0.307596176862717,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813770294189,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296081542969,L, + 119314241500,0.341301560401917,L, + 121238664750,0.346146166324615,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342239141464,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872476577759,L, + 132785204250,0.371706485748291,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857374191284,L, + 138558474000,0.382175177335739,L, + 140482897250,0.385322958230972,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117721796036,L, + 146256167000,0.393771350383759,L, + 148180590250,0.396268159151077,L, + 150105013500,0.398613542318344,L, + 152029436750,0.400813639163971,L, + 153953860000,0.402875483036041,L, + 155878283250,0.404806733131409,L, + 157802706500,0.406615972518921,L, + 159727129750,0.408312380313873,L, + 161651553000,0.409905701875687,L, + 163575976250,0.411406368017197,L, + 165500399500,0.412825047969818,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701346635818,L, + 173198092500,0.417904645204544,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245915651321,L, + 178971362250,0.421405643224716,L, + 180895785500,0.422571867704391,L, + 182820208750,0.423754543066025,L, + 184744632000,0.424963086843491,L, + 186669055250,0.426206111907959,L, + 188593478500,0.427491813898087,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220574140549,L, + 194366748250,0.431676834821701,L, + 196291171500,0.433201938867569,L, + 198215594750,0.434800893068314,L, + 200140018000,0.436478048563004,L, + 202064441250,0.438237339258194,L, + 203988864500,0.440081924200058,L, + 205913287750,0.442014724016190,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153610944748,L, + 211686557500,0.448363035917282,L, + 213610980750,0.450667619705200,L, + 215535404000,0.453080952167511,L, + 217459827250,0.455614894628525,L, + 219384250500,0.458266019821167,L, + 221308673750,0.461029738187790,L, + 223233097000,0.463899433612823,L, + 225157520250,0.466866880655289,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050683736801,L, + 230930790000,0.476239502429962,L, + 232855213250,0.479470670223236,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214509725571,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522111654282,L, + 244401752750,0.498546630144119,L, + 246326176000,0.501453399658203,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257495403290,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530492782593,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519503057003021,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166861057281,L, + 269419255000,0.521676123142242,L, + 271343678250,0.521977186203003,L, + 273268101500,0.522076010704041,L, + 275192524750,0.522074997425079,L, + 277116948000,0.522067368030548,L, + 279041371250,0.522045075893402,L, + 280965794500,0.521998286247253,L, + 282890217750,0.521915435791016,L, + 284814641000,0.521783769130707,L, + 286739064250,0.521589636802673,L, + 288663487500,0.521319270133972,L, + 290587910750,0.520960390567780,L, + 292512334000,0.520503044128418,L, + 294436757250,0.519940197467804,L, + 296361180500,0.519268691539764,L, + 298285603750,0.518488943576813,L, + 300210027000,0.517604291439056,L, + 302134450250,0.516620695590973,L, + 304058873500,0.515545248985291,L, + 305983296750,0.514385938644409,L, + 307907720000,0.513151049613953,L, + 309832143250,0.511548995971680,L, + 311756566500,0.509279608726501,L, + 313680989750,0.506347775459290,L, + 315605413000,0.502776086330414,L, + 317529836250,0.498609393835068,L, + 319454259500,0.493918031454086,L, + 321378682750,0.488800227642059,L, + 323303106000,0.483381718397141,L, + 325227529250,0.477810591459274,L, + 327151952500,0.472249627113342,L, + 329076375750,0.466864705085754,L, + 331000799000,0.461813002824783,L, + 332925222250,0.457232862710953,L, + 334849645500,0.453235894441605,L, + 336774068750,0.449904799461365,L, + 338698492000,0.447292953729630,L, + 340622915250,0.445428282022476,L, + 342547338500,0.444317579269409,L, + 344471761750,0.443951517343521,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_032" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.151618093252182 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,0.151618093252182,L, + 1924423250,0.151618123054504,L, + 3848846500,0.151618123054504,L, + 5773269750,0.151618152856827,L, + 7697693000,0.151618212461472,L, + 9622116250,0.151618152856827,L, + 13470962750,0.151618152856827,L, + 15395386000,0.151618123054504,L, + 17319809250,0.151618182659149,L, + 19244232500,0.151618152856827,L, + 21168655750,0.151618182659149,L, + 23093079000,0.151618152856827,L, + 25017502250,0.151618182659149,L, + 26941925500,0.151618123054504,L, + 28866348750,0.151618123054504,L, + 30790772000,0.151618152856827,L, + 32715195250,0.151618123054504,L, + 34639618500,0.151618182659149,L, + 36564041750,0.151618152856827,L, + 38488465000,0.151618152856827,L, + 40412888250,0.151618182659149,L, + 42337311500,0.151618123054504,L, + 44261734750,0.151618123054504,L, + 46186158000,0.151618152856827,L, + 48110581250,0.151618123054504,L, + 50035004500,0.151618123054504,L, + 51959427750,0.151618152856827,L, + 53883851000,0.151618123054504,L, + 55808274250,0.151618152856827,L, + 57732697500,0.145533472299576,L, + 59657120750,0.145822733640671,L, + 61581544000,0.146344304084778,L, + 63505967250,0.146937906742096,L, + 65430390500,0.147553622722626,L, + 67354813750,0.148166865110397,L, + 69279237000,0.148762285709381,L, + 71203660250,0.149328321218491,L, + 73128083500,0.149855136871338,L, + 75052506750,0.150333523750305,L, + 76976930000,0.150754004716873,L, + 78901353250,0.151106059551239,L, + 80825776500,0.151377677917480,L, + 82750199750,0.151554405689240,L, + 84674623000,0.151618182659149,L, + 86599046250,0.151618152856827,L, + 92372316000,0.151618152856827,L, + 94296739250,0.151618182659149,L, + 96221162500,0.151618123054504,L, + 98145585750,0.151618152856827,L, + 113540971750,0.151618152856827,L, + 115465395000,0.151639580726624,L, + 117389818250,0.151703953742981,L, + 119314241500,0.151811748743057,L, + 121238664750,0.151962965726852,L, + 123163088000,0.152157962322235,L, + 125087511250,0.152396678924561,L, + 127011934500,0.152679234743118,L, + 128936357750,0.153005540370941,L, + 130860781000,0.153375506401062,L, + 132785204250,0.153788715600967,L, + 134709627500,0.154244929552078,L, + 136634050750,0.154743671417236,L, + 138558474000,0.155284315347672,L, + 140482897250,0.155866205692291,L, + 142407320500,0.156488448381424,L, + 144331743750,0.157150179147720,L, + 146256167000,0.157850116491318,L, + 148180590250,0.158587038516998,L, + 150105013500,0.159359514713287,L, + 152029436750,0.160166025161743,L, + 153953860000,0.161004722118378,L, + 155878283250,0.161873817443848,L, + 157802706500,0.162771224975586,L, + 159727129750,0.163694739341736,L, + 161651553000,0.164642155170441,L, + 163575976250,0.165610849857330,L, + 165500399500,0.166598260402679,L, + 167424822750,0.167601853609085,L, + 169349246000,0.168618679046631,L, + 171273669250,0.169645965099335,L, + 173198092500,0.170680671930313,L, + 175122515750,0.171719968318939,L, + 177046939000,0.172760754823685,L, + 178971362250,0.173800021409988,L, + 180895785500,0.174834787845612,L, + 182820208750,0.175862103700638,L, + 184744632000,0.176878869533539,L, + 186669055250,0.177882432937622,L, + 188593478500,0.178869962692261,L, + 190517901750,0.179838657379150,L, + 192442325000,0.180785953998566,L, + 194366748250,0.181709527969360,L, + 196291171500,0.182606875896454,L, + 198215594750,0.183475971221924,L, + 200140018000,0.184314727783203,L, + 202064441250,0.185121178627014,L, + 203988864500,0.185893714427948,L, + 205913287750,0.186630606651306,L, + 207837711000,0.187330543994904,L, + 209762134250,0.187992215156555,L, + 211686557500,0.188614547252655,L, + 213610980750,0.189196467399597,L, + 215535404000,0.189737141132355,L, + 217459827250,0.190235853195190,L, + 219384250500,0.190692067146301,L, + 221308673750,0.191105306148529,L, + 223233097000,0.191475212574005,L, + 225157520250,0.191801428794861,L, + 227081943500,0.192084014415741,L, + 229006366750,0.192322731018066,L, + 230930790000,0.192517757415771,L, + 232855213250,0.192669034004211,L, + 234779636500,0.192776739597321,L, + 236704059750,0.192841112613678,L, + 238628483000,0.192862570285797,L, + 240552906250,0.192671835422516,L, + 242477329500,0.192116260528564,L, + 244401752750,0.191219270229340,L, + 246326176000,0.190002202987671,L, + 248250599250,0.188484966754913,L, + 250175022500,0.186686277389526,L, + 252099445750,0.184623181819916,L, + 254023869000,0.182312190532684,L, + 255948292250,0.179768621921539,L, + 257872715500,0.177007198333740,L, + 259797138750,0.174042046070099,L, + 261721562000,0.170886754989624,L, + 263645985250,0.167554676532745,L, + 265570408500,0.164058983325958,L, + 267494831750,0.160412400960922,L, + 269419255000,0.156628251075745,L, + 271343678250,0.152719408273697,L, + 273268101500,0.148699671030045,L, + 275192524750,0.144582957029343,L, + 277116948000,0.140384167432785,L, + 279041371250,0.136119067668915,L, + 280965794500,0.131805151700974,L, + 282890217750,0.127461403608322,L, + 284814641000,0.123109519481659,L, + 286739064250,0.118774473667145,L, + 288663487500,0.114485621452332,L, + 290587910750,0.110278278589249,L, + 292512334000,0.106196403503418,L, + 294436757250,0.102296352386475,L, + 296361180500,0.098652690649033,L, + 298285603750,0.095369011163712,L, + 300210027000,0.092597782611847,L, + 302134450250,0.090581357479095,L, + 304058873500,0.089751482009888,L, + 307907720000,0.089751482009888,L, + 309832143250,0.151618093252182,L, + 344471761750,0.151618093252182,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.236506327986717 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-0.236506327986717,L, + 1924423250,-0.236609518527985,L, + 3848846500,-0.236903518438339,L, + 5773269750,-0.237367883324623,L, + 7697693000,-0.237984627485275,L, + 9622116250,-0.238740563392639,L, + 11546539500,-0.239623039960861,L, + 13470962750,-0.240620404481888,L, + 15395386000,-0.241724371910095,L, + 17319809250,-0.242927134037018,L, + 19244232500,-0.244220450520515,L, + 21168655750,-0.245597496628761,L, + 23093079000,-0.247053876519203,L, + 25017502250,-0.248582780361176,L, + 26941925500,-0.250180304050446,L, + 28866348750,-0.251840651035309,L, + 30790772000,-0.253560334444046,L, + 32715195250,-0.255334585905075,L, + 34639618500,-0.257158964872360,L, + 36564041750,-0.259030520915985,L, + 38488465000,-0.260943472385406,L, + 40412888250,-0.262892961502075,L, + 42337311500,-0.264874041080475,L, + 44261734750,-0.266878992319107,L, + 46186158000,-0.268899530172348,L, + 48110581250,-0.270922482013702,L, + 50035004500,-0.272926956415176,L, + 51959427750,-0.274874955415726,L, + 53883851000,-0.276673018932343,L, + 55808274250,-0.277862668037415,L, + 57732697500,0.222100749611855,L, + 59657120750,0.221731007099152,L, + 61581544000,0.221064239740372,L, + 63505967250,0.220305457711220,L, + 65430390500,0.219518303871155,L, + 67354813750,0.218734502792358,L, + 69279237000,0.217973455786705,L, + 71203660250,0.217249900102615,L, + 73128083500,0.216576337814331,L, + 75052506750,0.215965151786804,L, + 76976930000,0.215427353978157,L, + 78901353250,0.214977025985718,L, + 80825776500,0.214629977941513,L, + 82750199750,0.214404433965683,L, + 84674623000,0.214322686195374,L, + 86599046250,0.214806035161018,L, + 88523469500,0.216266304254532,L, + 90447892750,0.218696683645248,L, + 92372316000,0.222046077251434,L, + 94296739250,0.226208806037903,L, + 96221162500,0.231016516685486,L, + 98145585750,0.236241847276688,L, + 100070009000,0.241610780358315,L, + 101994432250,0.246835619211197,L, + 103918855500,0.251643329858780,L, + 105843278750,0.255806565284729,L, + 107767702000,0.259155929088593,L, + 109692125250,0.261585831642151,L, + 111616548500,0.263046592473984,L, + 113540971750,0.263529926538467,L, + 115465395000,0.263269990682602,L, + 117389818250,0.262489140033722,L, + 119314241500,0.261183440685272,L, + 121238664750,0.259349435567856,L, + 123163088000,0.256986141204834,L, + 125087511250,0.254091590642929,L, + 127011934500,0.250666230916977,L, + 128936357750,0.246710121631622,L, + 130860781000,0.242226645350456,L, + 132785204250,0.237216413021088,L, + 134709627500,0.231686204671860,L, + 136634050750,0.225640088319778,L, + 138558474000,0.219085425138474,L, + 140482897250,0.212031126022339,L, + 142407320500,0.204487070441246,L, + 144331743750,0.196465596556664,L, + 146256167000,0.187980562448502,L, + 148180590250,0.179047256708145,L, + 150105013500,0.169682532548904,L, + 152029436750,0.159905642271042,L, + 153953860000,0.149737358093262,L, + 155878283250,0.139201849699020,L, + 157802706500,0.128322392702103,L, + 159727129750,0.117126636207104,L, + 161651553000,0.105642721056938,L, + 163575976250,0.093899384140968,L, + 165500399500,0.081927746534348,L, + 167424822750,0.069761857390404,L, + 169349246000,0.057435333728790,L, + 171273669250,0.044981814920902,L, + 173198092500,0.032437376677990,L, + 175122515750,0.019838549196720,L, + 177046939000,0.007220968604088,L, + 178971362250,-0.005377851426601,L, + 180895785500,-0.017922297120094,L, + 182820208750,-0.030375815927982,L, + 184744632000,-0.042702801525593,L, + 186669055250,-0.054868690669537,L, + 188593478500,-0.066839382052422,L, + 190517901750,-0.078582726418972,L, + 192442325000,-0.090067580342293,L, + 194366748250,-0.101263351738453,L, + 196291171500,-0.112142316997051,L, + 198215594750,-0.122678309679031,L, + 200140018000,-0.132845640182495,L, + 202064441250,-0.142622530460358,L, + 203988864500,-0.151987254619598,L, + 205913287750,-0.160921514034271,L, + 207837711000,-0.169406533241272,L, + 209762134250,-0.177427530288696,L, + 211686557500,-0.184971600770950,L, + 213610980750,-0.192025423049927,L, + 215535404000,-0.198580086231232,L, + 217459827250,-0.204626202583313,L, + 219384250500,-0.210157364606857,L, + 221308673750,-0.215166643261909,L, + 223233097000,-0.219651073217392,L, + 225157520250,-0.223606705665588,L, + 227081943500,-0.227032050490379,L, + 229006366750,-0.229926139116287,L, + 230930790000,-0.232289910316467,L, + 232855213250,-0.234123438596725,L, + 234779636500,-0.235429614782333,L, + 236704059750,-0.236210942268372,L, + 238628483000,-0.236470401287079,L, + 240552906250,-0.236272007226944,L, + 242477329500,-0.235694438219070,L, + 244401752750,-0.234761416912079,L, + 246326176000,-0.233495414257050,L, + 248250599250,-0.231917560100555,L, + 250175022500,-0.230046808719635,L, + 252099445750,-0.227901399135590,L, + 254023869000,-0.225497990846634,L, + 255948292250,-0.222852498292923,L, + 257872715500,-0.219980776309967,L, + 259797138750,-0.216896593570709,L, + 261721562000,-0.213615089654922,L, + 263645985250,-0.210149884223938,L, + 265570408500,-0.206514596939087,L, + 267494831750,-0.202722281217575,L, + 269419255000,-0.198786526918411,L, + 271343678250,-0.194721385836601,L, + 273268101500,-0.190541058778763,L, + 275192524750,-0.186259776353836,L, + 277116948000,-0.181892901659012,L, + 279041371250,-0.177456974983215,L, + 280965794500,-0.172970265150070,L, + 282890217750,-0.168452799320221,L, + 284814641000,-0.163927018642426,L, + 286739064250,-0.159418925642967,L, + 288663487500,-0.154957741498947,L, + 290587910750,-0.150582492351532,L, + 292512334000,-0.146337762475014,L, + 294436757250,-0.142281532287598,L, + 296361180500,-0.138492166996002,L, + 298285603750,-0.135077178478241,L, + 300210027000,-0.132194906473160,L, + 302134450250,-0.130097463726997,L, + 304058873500,-0.129234671592712,L, + 307907720000,-0.129234671592712,L, + 309832143250,-0.236506327986717,L, + 344471761750,-0.236506327986717,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608260154724 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.093608260154724,L, + 53883851000,0.093608260154724,L, + 55808274250,0.114208459854126,L, + 57732697500,0.572039961814880,L, + 59657120750,0.580274701118469,L, + 61581544000,0.588509202003479,L, + 63505967250,0.596743941307068,L, + 65430390500,0.604978203773499,L, + 67354813750,0.613212943077087,L, + 69279237000,0.621447443962097,L, + 71203660250,0.629682183265686,L, + 75052506750,0.646151185035706,L, + 76976930000,0.654385924339294,L, + 78901353250,0.662620186805725,L, + 80825776500,0.670854926109314,L, + 82750199750,0.679089426994324,L, + 84674623000,0.687324166297913,L, + 86599046250,0.697948336601257,L, + 88523469500,0.709304451942444,L, + 90447892750,0.721375346183777,L, + 92372316000,0.734108328819275,L, + 94296739250,0.747405886650085,L, + 96221162500,0.761123061180115,L, + 98145585750,0.775068163871765,L, + 100070009000,0.789018511772156,L, + 101994432250,0.802744030952454,L, + 103918855500,0.816031813621521,L, + 105843278750,0.828709483146667,L, + 107767702000,0.840653300285339,L, + 109692125250,0.851792693138123,L, + 111616548500,0.862098813056946,L, + 113540971750,0.871577143669128,L, + 115465395000,0.880583882331848,L, + 117389818250,0.889458060264587,L, + 119314241500,0.898198008537292,L, + 121238664750,0.906801104545593,L, + 123163088000,0.915266156196594,L, + 125087511250,0.923591017723083,L, + 127011934500,0.931773781776428,L, + 128936357750,0.939813256263733,L, + 130860781000,0.947708249092102,L, + 132785204250,0.955457329750061,L, + 134709627500,0.963059067726135,L, + 136634050750,0.970514178276062,L, + 138558474000,0.977821230888367,L, + 140482897250,0.984980463981628,L, + 142407320500,0.991991877555847,L, + 144331743750,0.998856663703918,L, + 146256167000,1.005574822425842,L, + 148180590250,1.012148499488831,L, + 150105013500,1.018579125404358,L, + 152029436750,1.024868369102478,L, + 153953860000,1.031019568443298,L, + 155878283250,1.037035346031189,L, + 157802706500,1.042919516563416,L, + 159727129750,1.048675656318665,L, + 161651553000,1.054308056831360,L, + 163575976250,1.059821963310242,L, + 165500399500,1.065222144126892,L, + 167424822750,1.070514798164368,L, + 169349246000,1.075705885887146,L, + 171273669250,1.080801367759705,L, + 173198092500,1.085808396339417,L, + 175122515750,1.090734124183655,L, + 177046939000,1.095585465431213,L, + 178971362250,1.100370287895203,L, + 180895785500,1.105095982551575,L, + 182820208750,1.109770417213440,L, + 184744632000,1.114401221275330,L, + 186669055250,1.118996500968933,L, + 188593478500,1.123564124107361,L, + 190517901750,1.128111481666565,L, + 192442325000,1.132645964622498,L, + 194366748250,1.137175440788269,L, + 196291171500,1.141706824302673,L, + 198215594750,1.146247029304504,L, + 200140018000,1.150802731513977,L, + 202064441250,1.155380368232727,L, + 203988864500,1.159985661506653,L, + 205913287750,1.164625048637390,L, + 207837711000,1.169303059577942,L, + 209762134250,1.174025177955627,L, + 211686557500,1.178796172142029,L, + 213610980750,1.183619618415833,L, + 215535404000,1.188500523567200,L, + 217459827250,1.193441748619080,L, + 219384250500,1.198447108268738,L, + 221308673750,1.203519463539124,L, + 223233097000,1.208661437034607,L, + 225157520250,1.213874697685242,L, + 227081943500,1.219162106513977,L, + 229006366750,1.224525570869446,L, + 230930790000,1.229966521263123,L, + 232855213250,1.235485672950745,L, + 234779636500,1.241085410118103,L, + 236704059750,1.246765255928040,L, + 238628483000,1.252526640892029,L, + 240552906250,1.258973956108093,L, + 242477329500,1.266791939735413,L, + 244401752750,1.276044011116028,L, + 246326176000,1.286670088768005,L, + 248250599250,1.298424124717712,L, + 250175022500,1.310874819755554,L, + 252099445750,1.323491215705872,L, + 254023869000,1.335781216621399,L, + 255948292250,1.347393393516541,L, + 257872715500,1.358136296272278,L, + 259797138750,1.367945790290833,L, + 261721562000,1.376836180686951,L, + 263645985250,1.384863257408142,L, + 265570408500,1.392098784446716,L, + 267494831750,1.398617863655090,L, + 269419255000,1.404492497444153,L, + 271343678250,1.409787058830261,L, + 273268101500,1.414560437202454,L, + 275192524750,1.418863415718079,L, + 277116948000,1.422741055488586,L, + 279041371250,1.426232695579529,L, + 280965794500,1.429372906684875,L, + 282890217750,1.432191491127014,L, + 284814641000,1.434714913368225,L, + 286739064250,1.436967492103577,L, + 288663487500,1.438969016075134,L, + 290587910750,1.440738081932068,L, + 292512334000,1.442292094230652,L, + 294436757250,1.443644642829895,L, + 296361180500,1.444810032844543,L, + 298285603750,1.445799708366394,L, + 300210027000,1.446624398231506,L, + 302134450250,1.447294354438782,L, + 304058873500,1.447818160057068,L, + 307907720000,1.447818160057068,L, + 309832143250,0.093608260154724,L, + 344471761750,0.093608260154724,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,59.792780560337185,L, + 1924423250,59.643588738296806,L, + 3848846500,59.218750971922624,L, + 5773269750,58.547869301077426,L, + 7697693000,57.655648519989114,L, + 9622116250,56.562937781099116,L, + 11546539500,55.287587783803247,L, + 13470962750,53.845017680152779,L, + 15395386000,52.248682942812614,L, + 17319809250,50.510406629236037,L, + 19244232500,48.640744796785285,L, + 21168655750,46.649112861231202,L, + 23093079000,44.544055389225463,L, + 25017502250,42.333362211516466,L, + 26941925500,40.024246007867724,L, + 28866348750,37.623424269327934,L, + 30790772000,35.137310543527732,L, + 32715195250,32.572048585625545,L, + 34639618500,29.933751414928508,L, + 36564041750,27.228598645088191,L, + 38488465000,24.463077248268807,L, + 40412888250,21.644275253281517,L, + 42337311500,18.780339368258851,L, + 44261734750,15.881241669389009,L, + 46186158000,12.960020134023882,L, + 48110581250,10.035368136148120,L, + 50035004500,7.137103720357019,L, + 51959427750,4.320859631213898,L, + 53883851000,1.720995828254764,L, + 55808274250,0.000309066112053,L, + 57732697500,0.000001707547293,L, + 59657120750,0.911452992965455,L, + 61581544000,2.618167749439390,L, + 63505967250,4.641807658991397,L, + 65430390500,6.834830283543954,L, + 67354813750,9.127107509567701,L, + 69279237000,11.477623197323124,L, + 71203660250,13.858857660870637,L, + 73128083500,16.250228978920077,L, + 75052506750,18.634856338937787,L, + 76976930000,20.997623678516906,L, + 78901353250,23.323924638117376,L, + 80825776500,25.598572292119698,L, + 82750199750,27.804754129881911,L, + 84674623000,29.922662602811009,L, + 86599046250,32.005108733569450,L, + 88523469500,34.118123375958234,L, + 90447892750,36.256761473018294,L, + 92372316000,38.413502986473439,L, + 94296739250,40.577897726893575,L, + 96221162500,42.736725863140158,L, + 98145585750,44.874694601661552,L, + 100070009000,46.975937413015842,L, + 101994432250,49.025748899920011,L, + 103918855500,51.012244533218244,L, + 105843278750,52.927426161392489,L, + 107767702000,54.767390331332066,L, + 109692125250,56.531819439240586,L, + 111616548500,58.223066485287106,L, + 113540971750,59.845311545243675,L, + 115465395000,61.436103584072377,L, + 117389818250,63.029450113650668,L, + 119314241500,64.624954983006674,L, + 121238664750,66.222140078898505,L, + 123163088000,67.820540948462579,L, + 125087511250,69.419604346376161,L, + 127011934500,71.018783857505625,L, + 128936357750,72.617471595014862,L, + 130860781000,74.215032351311038,L, + 132785204250,75.810783107477164,L, + 134709627500,77.403993033272044,L, + 136634050750,78.993910807886991,L, + 138558474000,80.579716808621598,L, + 140482897250,82.160584582586281,L, + 142407320500,83.735605714621443,L, + 144331743750,85.303878619756659,L, + 146256167000,86.864426580940588,L, + 148180590250,88.416266050932762,L, + 150105013500,89.958372501357687,L, + 152029436750,91.489687252894001,L, + 153953860000,93.009144796031194,L, + 155878283250,94.515638640123726,L, + 157802706500,96.008089615282728,L, + 159727129750,97.485350249727645,L, + 161651553000,98.946327713191266,L, + 163575976250,100.389922345217244,L, + 165500399500,101.815027655160009,L, + 167424822750,103.220564473130736,L, + 169349246000,104.605487780186380,L, + 171273669250,105.968779878140623,L, + 173198092500,107.309477710320493,L, + 175122515750,108.626672861566391,L, + 177046939000,109.919456916718701,L, + 178971362250,111.187051234212035,L, + 180895785500,112.428704493237703,L, + 182820208750,113.643754165446197,L, + 184744632000,114.831571873433901,L, + 186669055250,115.991638522823877,L, + 188593478500,117.123551132455106,L, + 190517901750,118.226899890977379,L, + 192442325000,119.301425251202247,L, + 194366748250,120.346881326319576,L, + 196291171500,121.363172493680992,L, + 198215594750,122.350203130638121,L, + 200140018000,123.308014218325965,L, + 202064441250,124.236687719014583,L, + 203988864500,125.136360236487377,L, + 205913287750,126.007223016041081,L, + 207837711000,126.849549265242530,L, + 209762134250,127.663639512415173,L, + 211686557500,128.449862587774220,L, + 213610980750,129.208600981913150,L, + 215535404000,129.940291826938903,L, + 217459827250,130.645413236093333,L, + 219384250500,131.324429662239993,L, + 221308673750,131.977887520512525,L, + 223233097000,132.606278584531140,L, + 225157520250,133.210190250564438,L, + 227081943500,133.790155273367731,L, + 229006366750,134.346761049209618,L, + 230930790000,134.880553993223685,L, + 232855213250,135.392135162056917,L, + 234779636500,135.882078291599555,L, + 236704059750,136.350957117741928,L, + 238628483000,136.799331715995919,L, + 240552906250,137.225549180582448,L, + 242477329500,137.628462039720915,L, + 244401752750,138.009327048218637,L, + 246326176000,138.369250696721110,L, + 248250599250,138.709257513603859,L, + 250175022500,139.030344706485693,L, + 252099445750,139.333290916931986,L, + 254023869000,139.618929428021517,L, + 255948292250,139.888011560562944,L, + 257872715500,140.141179352338298,L, + 259797138750,140.379074841129494,L, + 261721562000,140.602258102448502,L, + 263645985250,140.811275551428935,L, + 265570408500,141.006618961691032,L, + 267494831750,141.188780106855006,L, + 269419255000,141.358182458649424,L, + 271343678250,141.515222168046108,L, + 273268101500,141.660309046395327,L, + 275192524750,141.793743622020486,L, + 277116948000,141.915935706271853,L, + 279041371250,142.027172167094506,L, + 280965794500,142.127739872433636,L, + 282890217750,142.217980331747725,L, + 284814641000,142.298125771468534,L, + 286739064250,142.368463059541227,L, + 288663487500,142.429279063910940,L, + 290587910750,142.480819671387763,L, + 292512334000,142.523399070673577,L, + 294436757250,142.557358771226831,L, + 296361180500,142.583040282506033,L, + 298285603750,142.600962698888111,L, + 300210027000,142.611795378911751,L, + 302134450250,142.616631152844121,L, + 304058873500,142.617478096301198,L, + 307907720000,142.617478096301198,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443357242465751 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,-20.443357242465751,L, + 1924423250,-20.483561443467682,L, + 3848846500,-20.598047366787977,L, + 5773269750,-20.778844181665249,L, + 7697693000,-21.019280500827691,L, + 9622116250,-21.313745323872151,L, + 11546539500,-21.657430197622944,L, + 13470962750,-22.046182367064709,L, + 15395386000,-22.476368171559002,L, + 17319809250,-22.944803035405315,L, + 19244232500,-23.448647307456213,L, + 21168655750,-23.985363572435045,L, + 23093079000,-24.552644933949640,L, + 25017502250,-25.148387693735636,L, + 26941925500,-25.770662323352507,L, + 28866348750,-26.417643454744574,L, + 30790772000,-27.087609880240990,L, + 32715195250,-27.778906986515327,L, + 34639618500,-28.489883575335735,L, + 36564041750,-29.218876495639321,L, + 38488465000,-29.964145756735022,L, + 40412888250,-30.723772075466066,L, + 42337311500,-31.495549300730548,L, + 44261734750,-32.276813658752168,L, + 46186158000,-33.064027111540852,L, + 48110581250,-33.852179715340419,L, + 50035004500,-34.633211846930251,L, + 51959427750,-35.392148316555129,L, + 53883851000,-36.092772046141107,L, + 55808274250,-36.556463343608854,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.310928288230997,L, + 61581544000,-35.850990179712170,L, + 63505967250,-35.305654216000796,L, + 65430390500,-34.714672098066295,L, + 67354813750,-34.096936129152887,L, + 69279237000,-33.463511215715982,L, + 71203660250,-32.821808113005041,L, + 73128083500,-32.177369519531510,L, + 75052506750,-31.534758001660951,L, + 76976930000,-30.898027276665768,L, + 78901353250,-30.271128608980803,L, + 80825776500,-29.658143036635135,L, + 82750199750,-29.063616050521400,L, + 84674623000,-28.492871783097613,L, + 86599046250,-27.936701431815322,L, + 88523469500,-27.381963712711439,L, + 90447892750,-26.829035993737605,L, + 92372316000,-26.278334916433192,L, + 94296739250,-25.730304443094251,L, + 96221162500,-25.185344139787230,L, + 98145585750,-24.643804053707083,L, + 100070009000,-24.105889090528915,L, + 101994432250,-23.571643646482332,L, + 103918855500,-23.040949900804154,L, + 105843278750,-22.513543183664037,L, + 107767702000,-21.989064910130558,L, + 109692125250,-21.467112099042691,L, + 111616548500,-20.947281769239400,L, + 113540971750,-20.429199967863628,L, + 115465395000,-19.914850864869265,L, + 117389818250,-19.406430366074463,L, + 119314241500,-18.903911150722543,L, + 121238664750,-18.407250530131197,L, + 123163088000,-17.916398985428934,L, + 125087511250,-17.431286507176768,L, + 127011934500,-16.951832840651949,L, + 128936357750,-16.477938948111515,L, + 130860781000,-16.009483593697691,L, + 132785204250,-15.546337003816255,L, + 134709627500,-15.088340376569001,L, + 136634050750,-14.635317834584802,L, + 138558474000,-14.187069594830433,L, + 140482897250,-13.743384775215274,L, + 142407320500,-13.304009804966386,L, + 144331743750,-12.868684283121665,L, + 146256167000,-12.437117926641383,L, + 148180590250,-12.008991424181843,L, + 150105013500,-11.583970096473717,L, + 152029436750,-11.161691089717346,L, + 153953860000,-10.741765083130042,L, + 155878283250,-10.323787388003481,L, + 157802706500,-9.907323433551722,L, + 159727129750,-9.491924988610483,L, + 161651553000,-9.077125038995266,L, + 163575976250,-8.662436933727708,L, + 165500399500,-8.247368045413921,L, + 167424822750,-7.831400987224280,L, + 169349246000,-7.414025202518326,L, + 171273669250,-6.994713486069498,L, + 173198092500,-6.572941620859001,L, + 175122515750,-6.148190512509912,L, + 177046939000,-5.719936797777082,L, + 178971362250,-5.287667358699113,L, + 180895785500,-4.850889140995296,L, + 182820208750,-4.409113786139976,L, + 184744632000,-3.961870864854068,L, + 186669055250,-3.508714066963995,L, + 188593478500,-3.049213090552047,L, + 190517901750,-2.582972424976599,L, + 192442325000,-2.109612781295304,L, + 194366748250,-1.628785072808551,L, + 196291171500,-1.140172976380405,L, + 198215594750,-0.643481459855233,L, + 200140018000,-0.138451362910758,L, + 202064441250,0.375144751748253,L, + 203988864500,0.897511616374127,L, + 205913287750,1.428822747120253,L, + 207837711000,1.969219310122952,L, + 209762134250,2.518821794188051,L, + 211686557500,3.077719311939878,L, + 213610980750,3.645977177062370,L, + 215535404000,4.223646829417715,L, + 217459827250,4.810734458864848,L, + 219384250500,5.407257994650341,L, + 221308673750,6.013191823564805,L, + 223233097000,6.628497952680982,L, + 225157520250,7.253127290014213,L, + 227081943500,7.887023486503845,L, + 229006366750,8.530092627048791,L, + 230930790000,9.182259579568182,L, + 232855213250,9.843418476129882,L, + 234779636500,10.513454911065292,L, + 236704059750,11.192265577763218,L, + 238628483000,11.879718141308491,L, + 240552906250,12.591125032046609,L, + 242477329500,13.339909279243921,L, + 244401752750,14.123281604398130,L, + 246326176000,14.938656780908387,L, + 248250599250,15.783617775582158,L, + 250175022500,16.655884159010309,L, + 252099445750,17.553290761225945,L, + 254023869000,18.473785110383488,L, + 255948292250,19.415383036529043,L, + 257872715500,20.376146473485630,L, + 259797138750,21.354207364515247,L, + 261721562000,22.347694237785319,L, + 263645985250,23.354757819578062,L, + 265570408500,24.373523222966313,L, + 267494831750,25.402100193097272,L, + 269419255000,26.438523343037271,L, + 271343678250,27.480767521697409,L, + 273268101500,28.526677804394541,L, + 275192524750,29.573967785304017,L, + 277116948000,30.620147860473367,L, + 279041371250,31.662506444802101,L, + 280965794500,32.697990443731229,L, + 282890217750,33.723177932486571,L, + 284814641000,34.734114231538705,L, + 286739064250,35.726165057535781,L, + 288663487500,36.693787711966344,L, + 290587910750,37.630227137741258,L, + 292512334000,38.527007070100545,L, + 294436757250,39.373206036561385,L, + 296361180500,40.154272319097068,L, + 298285603750,40.849910010588943,L, + 300210027000,41.430216542850729,L, + 302134450250,41.847670874732138,L, + 304058873500,42.017670868078930,L, + 307907720000,42.017670868078930,L, + 309832143250,-20.443357242465751,L, + 344471761750,-20.443357242465751,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 19.353269296217039 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,19.353269296217039,L, + 1924423250,19.353627881148462,L, + 3848846500,19.356083334155080,L, + 5773269750,19.362517372353221,L, + 7697693000,19.374697307190630,L, + 9622116250,19.394289704824782,L, + 11546539500,19.422926980467313,L, + 13470962750,19.462236426687973,L, + 15395386000,19.513879487002363,L, + 17319809250,19.579587614365085,L, + 19244232500,19.661182761737233,L, + 21168655750,19.760652514167276,L, + 23093079000,19.880153503885648,L, + 25017502250,20.022083127291019,L, + 26941925500,20.189134186463658,L, + 28866348750,20.384424662759674,L, + 30790772000,20.611518207378516,L, + 32715195250,20.874635877227249,L, + 34639618500,21.178847380217299,L, + 36564041750,21.530293056412511,L, + 38488465000,21.936641500703495,L, + 40412888250,22.407656468508772,L, + 42337311500,22.956141149427520,L, + 44261734750,23.599488620181145,L, + 46186158000,24.362436118396104,L, + 48110581250,25.282346486379609,L, + 50035004500,26.420701671945441,L, + 51959427750,27.893049692829834,L, + 53883851000,29.975750248134855,L, + 55808274250,33.993735385888726,L, + 57732697500,65.529353991385094,L, + 59657120750,64.716800536775708,L, + 61581544000,63.208619635958179,L, + 63505967250,61.436971018096969,L, + 65430390500,59.535419032411475,L, + 67354813750,57.568037683505487,L, + 69279237000,55.572983823177232,L, + 71203660250,53.576649302379607,L, + 73128083500,51.599538349000952,L, + 75052506750,49.659313832234893,L, + 76976930000,47.772610677804984,L, + 78901353250,45.956333603906970,L, + 80825776500,44.228808008083980,L, + 82750199750,42.611156250344237,L, + 84674623000,41.128882257048545,L, + 86599046250,39.695047965346504,L, + 88523469500,38.209474990681699,L, + 90447892750,36.686332560487287,L, + 92372316000,35.145865355463165,L, + 94296739250,33.614687207710247,L, + 96221162500,32.125217610123947,L, + 98145585750,30.713465320008535,L, + 100070009000,29.415592773924576,L, + 101994432250,28.263604530775417,L, + 103918855500,27.281845092310242,L, + 105843278750,26.484927648258271,L, + 107767702000,25.877769934821909,L, + 109692125250,25.457183961206052,L, + 111616548500,25.214198273935907,L, + 113540971750,25.136294843810145,L, + 115465395000,25.136433155140836,L, + 117389818250,25.136842966491038,L, + 119314241500,25.137525985408036,L, + 121238664750,25.138483919439132,L, + 123163088000,25.139720183678900,L, + 125087511250,25.141231363032766,L, + 127011934500,25.143024287689890,L, + 128936357750,25.145090419913817,L, + 130860781000,25.147433174799126,L, + 132785204250,25.150059382534995,L, + 134709627500,25.152950260101196,L, + 136634050750,25.156114345234201,L, + 138558474000,25.159534562461079,L, + 140482897250,25.163222864612880,L, + 142407320500,25.167170713953144,L, + 144331743750,25.171367865198111,L, + 146256167000,25.175804073064025,L, + 148180590250,25.180474214909015,L, + 150105013500,25.185369752996614,L, + 152029436750,25.190480442043071,L, + 153953860000,25.195796036764627,L, + 155878283250,25.201309706972111,L, + 157802706500,25.206994131908846,L, + 159727129750,25.212847604027537,L, + 161651553000,25.218858170497139,L, + 163575976250,25.224995095466387,L, + 165500399500,25.231256671387989,L, + 167424822750,25.237615577505260,L, + 169349246000,25.244066691176329,L, + 171273669250,25.250574153908047,L, + 173198092500,25.257132843058542,L, + 175122515750,25.263718852965720,L, + 177046939000,25.270315108156648,L, + 178971362250,25.276906240705703,L, + 180895785500,25.283464929856198,L, + 182820208750,25.289977515229797,L, + 184744632000,25.296421798711695,L, + 186669055250,25.302789242565428,L, + 188593478500,25.309043988297859,L, + 190517901750,25.315180913267106,L, + 192442325000,25.321189772189417,L, + 194366748250,25.327044951855402,L, + 196291171500,25.332734499434014,L, + 198215594750,25.338239631905036,L, + 200140018000,25.343560349268468,L, + 202064441250,25.348674453409508,L, + 203988864500,25.353568283949816,L, + 205913287750,25.358240133342097,L, + 207837711000,25.362674633660721,L, + 209762134250,25.366870077358396,L, + 211686557500,25.370816219151365,L, + 213610980750,25.374506228850461,L, + 215535404000,25.377928153624630,L, + 217459827250,25.381092238757635,L, + 219384250500,25.383984823871131,L, + 221308673750,25.386604201417828,L, + 223233097000,25.388948663850432,L, + 225157520250,25.391014796074355,L, + 227081943500,25.392809428278774,L, + 229006366750,25.394318900085345,L, + 230930790000,25.395556871872408,L, + 232855213250,25.396511390808918,L, + 234779636500,25.397201239915088,L, + 236704059750,25.397604221076119,L, + 238628483000,25.397742532406809,L, + 240552906250,25.371019417279172,L, + 242477329500,25.293156968288432,L, + 244401752750,25.167443921519943,L, + 246326176000,24.996882145113922,L, + 248250599250,24.784268601535487,L, + 250175022500,24.532183394743601,L, + 252099445750,24.243058072082793,L, + 254023869000,23.919185869566885,L, + 255948292250,23.562723419426309,L, + 257872715500,23.175724901053943,L, + 259797138750,22.760183022140136,L, + 261721562000,22.317996575274144,L, + 263645985250,21.851040447383138,L, + 265570408500,21.361141714070094,L, + 267494831750,20.850112083012352,L, + 269419255000,20.319787167549350,L, + 271343678250,19.772002581020530,L, + 273268101500,19.208660531109736,L, + 275192524750,18.631733234939805,L, + 277116948000,18.043302192660295,L, + 279041371250,17.445590630846048,L, + 280965794500,16.841014728915944,L, + 282890217750,16.232280949328604,L, + 284814641000,15.622401405507993,L, + 286739064250,15.014874861856450,L, + 288663487500,14.413818214896191,L, + 290587910750,13.824199573474749,L, + 292512334000,13.252160131429601,L, + 294436757250,12.705596441214919,L, + 296361180500,12.194966376223622,L, + 298285603750,11.734787503536552,L, + 300210027000,11.346420386009246,L, + 302134450250,11.063827285515897,L, + 304058873500,10.947536484707427,L, + 307907720000,10.947536484707427,L, + 309832143250,19.353269296217039,L, + 344471761750,19.353269296217039,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941902161 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000044941902161,L, + 1924423250,0.000044880405767,L, + 3848846500,0.000044705280743,L, + 5773269750,0.000044428736146,L, + 7697693000,0.000044060954679,L, + 9622116250,0.000043610525609,L, + 11546539500,0.000043084812205,L, + 13470962750,0.000042490173655,L, + 15395386000,0.000041832146962,L, + 17319809250,0.000041115614295,L, + 19244232500,0.000040344919398,L, + 21168655750,0.000039523951273,L, + 23093079000,0.000038656220568,L, + 25017502250,0.000037744954170,L, + 26941925500,0.000036793117033,L, + 28866348750,0.000035803481296,L, + 30790772000,0.000034778688132,L, + 32715195250,0.000033721269574,L, + 34639618500,0.000032633746741,L, + 36564041750,0.000031518662581,L, + 38488465000,0.000030378698284,L, + 40412888250,0.000029216775147,L, + 42337311500,0.000028036254662,L, + 44261734750,0.000026841240469,L, + 46186158000,0.000025637113140,L, + 48110581250,0.000024431576094,L, + 50035004500,0.000023236923880,L, + 51959427750,0.000022076101232,L, + 53883851000,0.000021004498194,L, + 55808274250,0.000020295383365,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238624915480614,L, + 61581544000,0.255922913551331,L, + 63505967250,0.267170011997223,L, + 65430390500,0.274974435567856,L, + 67354813750,0.280564635992050,L, + 69279237000,0.284645706415176,L, + 71203660250,0.287676155567169,L, + 73128083500,0.289983630180359,L, + 75052506750,0.291821181774139,L, + 76976930000,0.293399423360825,L, + 78901353250,0.294906288385391,L, + 80825776500,0.296521931886673,L, + 82750199750,0.298431724309921,L, + 84674623000,0.300840198993683,L, + 86599046250,0.303359419107437,L, + 88523469500,0.305441111326218,L, + 90447892750,0.307083338499069,L, + 92372316000,0.308302015066147,L, + 94296739250,0.309136211872101,L, + 96221162500,0.309652298688889,L, + 98145585750,0.309943139553070,L, + 100070009000,0.310122251510620,L, + 101994432250,0.310312658548355,L, + 103918855500,0.310632348060608,L, + 105843278750,0.311182528734207,L, + 107767702000,0.312040090560913,L, + 109692125250,0.313255786895752,L, + 111616548500,0.314856797456741,L, + 113540971750,0.316851466894150,L, + 115465395000,0.319108784198761,L, + 117389818250,0.321499556303024,L, + 119314241500,0.324023634195328,L, + 121238664750,0.326680988073349,L, + 123163088000,0.329471141099930,L, + 125087511250,0.332393348217010,L, + 127011934500,0.335446596145630,L, + 128936357750,0.338629513978958,L, + 130860781000,0.341940551996231,L, + 132785204250,0.345377415418625,L, + 134709627500,0.348937988281250,L, + 136634050750,0.352619230747223,L, + 138558474000,0.356417983770370,L, + 140482897250,0.360330253839493,L, + 142407320500,0.364352107048035,L, + 144331743750,0.368478715419769,L, + 146256167000,0.372704952955246,L, + 148180590250,0.377025067806244,L, + 150105013500,0.381432861089706,L, + 152029436750,0.385921627283096,L, + 153953860000,0.390484124422073,L, + 155878283250,0.395112574100494,L, + 157802706500,0.399798959493637,L, + 159727129750,0.404534429311752,L, + 161651553000,0.409310013055801,L, + 163575976250,0.414116293191910,L, + 165500399500,0.418943405151367,L, + 167424822750,0.423781335353851,L, + 169349246000,0.428619712591171,L, + 171273669250,0.433448106050491,L, + 173198092500,0.438255846500397,L, + 175122515750,0.443032294511795,L, + 177046939000,0.447766870260239,L, + 178971362250,0.452448993921280,L, + 180895785500,0.457068175077438,L, + 182820208750,0.461614370346069,L, + 184744632000,0.466077655553818,L, + 186669055250,0.470448434352875,L, + 188593478500,0.474717557430267,L, + 190517901750,0.478876262903214,L, + 192442325000,0.482916355133057,L, + 194366748250,0.486829966306686,L, + 196291171500,0.490610063076019,L, + 198215594750,0.494249910116196,L, + 200140018000,0.497743427753448,L, + 202064441250,0.501085221767426,L, + 203988864500,0.504270315170288,L, + 205913287750,0.507294356822968,L, + 207837711000,0.510153710842133,L, + 209762134250,0.512844979763031,L, + 211686557500,0.515365481376648,L, + 213610980750,0.517713189125061,L, + 215535404000,0.519886255264282,L, + 217459827250,0.521883606910706,L, + 219384250500,0.523704171180725,L, + 221308673750,0.525347709655762,L, + 223233097000,0.526814281940460,L, + 225157520250,0.528103828430176,L, + 227081943500,0.529217302799225,L, + 229006366750,0.530155479907990,L, + 230930790000,0.530919373035431,L, + 232855213250,0.531510651111603,L, + 234779636500,0.531930744647980,L, + 236704059750,0.532181203365326,L, + 238628483000,0.532264292240143,L, + 240552906250,0.531710803508759,L, + 242477329500,0.530089914798737,L, + 244401752750,0.527456998825073,L, + 246326176000,0.523862004280090,L, + 248250599250,0.519350528717041,L, + 250175022500,0.513963997364044,L, + 252099445750,0.507740318775177,L, + 254023869000,0.500714004039764,L, + 255948292250,0.492916971445084,L, + 257872715500,0.484378278255463,L, + 259797138750,0.475124597549438,L, + 261721562000,0.465180724859238,L, + 263645985250,0.454568952322006,L, + 265570408500,0.443310111761093,L, + 267494831750,0.431423276662827,L, + 269419255000,0.418925642967224,L, + 271343678250,0.405833214521408,L, + 273268101500,0.392160177230835,L, + 275192524750,0.377919465303421,L, + 277116948000,0.363122642040253,L, + 279041371250,0.347779721021652,L, + 280965794500,0.331899434328079,L, + 282890217750,0.315489023923874,L, + 284814641000,0.298553884029388,L, + 286739064250,0.281097948551178,L, + 288663487500,0.263123184442520,L, + 290587910750,0.244629070162773,L, + 292512334000,0.225612521171570,L, + 294436757250,0.206066742539406,L, + 296361180500,0.185980319976807,L, + 298285603750,0.165335193276405,L, + 300210027000,0.144103288650513,L, + 302134450250,0.122239686548710,L, + 304058873500,0.099668011069298,L, + 307907720000,0.099668011069298,L, + 309832143250,0.000044941902161,L, + 344471761750,0.000044941902161,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520824344 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000028520824344,L, + 1924423250,0.000028500298868,L, + 3848846500,0.000028441854738,L, + 5773269750,0.000028349559216,L, + 7697693000,0.000028226819268,L, + 9622116250,0.000028076496164,L, + 11546539500,0.000027901049179,L, + 13470962750,0.000027702595617,L, + 15395386000,0.000027482983569,L, + 17319809250,0.000027243851946,L, + 19244232500,0.000026986643206,L, + 21168655750,0.000026712652470,L, + 23093079000,0.000026423063900,L, + 25017502250,0.000026118943424,L, + 26941925500,0.000025801276934,L, + 28866348750,0.000025471001209,L, + 30790772000,0.000025128987545,L, + 32715195250,0.000024776090868,L, + 34639618500,0.000024413144274,L, + 36564041750,0.000024041000870,L, + 38488465000,0.000023660553779,L, + 40412888250,0.000023272777980,L, + 42337311500,0.000022878797608,L, + 44261734750,0.000022479973268,L, + 46186158000,0.000022078113034,L, + 48110581250,0.000021675781682,L, + 50035004500,0.000021277084670,L, + 51959427750,0.000020889672669,L, + 53883851000,0.000020532039343,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.238431811332703,L, + 61581544000,0.255596786737442,L, + 63505967250,0.266741216182709,L, + 65430390500,0.274464070796967,L, + 67354813750,0.279989838600159,L, + 69279237000,0.284021466970444,L, + 71203660250,0.287016540765762,L, + 73128083500,0.289302170276642,L, + 75052506750,0.291131556034088,L, + 76976930000,0.292715609073639,L, + 78901353250,0.294243127107620,L, + 80825776500,0.295895487070084,L, + 82750199750,0.297859519720078,L, + 84674623000,0.300342172384262,L, + 86599046250,0.302909761667252,L, + 88523469500,0.305016666650772,L, + 90447892750,0.306721061468124,L, + 92372316000,0.308075636625290,L, + 94296739250,0.309129238128662,L, + 96221162500,0.309929013252258,L, + 98145585750,0.310521721839905,L, + 100070009000,0.310956478118896,L, + 101994432250,0.311287313699722,L, + 103918855500,0.311576694250107,L, + 105843278750,0.311902999877930,L, + 107767702000,0.312371432781219,L, + 109692125250,0.313137203454971,L, + 111616548500,0.314459145069122,L, + 113540971750,0.316851407289505,L, + 115465395000,0.319951832294464,L, + 117389818250,0.322982698678970,L, + 119314241500,0.325968474149704,L, + 121238664750,0.328915953636169,L, + 123163088000,0.331828624010086,L, + 125087511250,0.334708720445633,L, + 127011934500,0.337557792663574,L, + 128936357750,0.340376853942871,L, + 130860781000,0.343166679143906,L, + 132785204250,0.345927804708481,L, + 134709627500,0.348660618066788,L, + 136634050750,0.351365327835083,L, + 138558474000,0.354042202234268,L, + 140482897250,0.356691271066666,L, + 142407320500,0.359312534332275,L, + 144331743750,0.361905902624130,L, + 146256167000,0.364471405744553,L, + 148180590250,0.367008745670319,L, + 150105013500,0.369517743587494,L, + 152029436750,0.371998310089111,L, + 153953860000,0.374449968338013,L, + 155878283250,0.376872539520264,L, + 157802706500,0.379265695810318,L, + 159727129750,0.381628870964050,L, + 161651553000,0.383961826562881,L, + 163575976250,0.386263996362686,L, + 165500399500,0.388534963130951,L, + 167424822750,0.390774130821228,L, + 169349246000,0.392980992794037,L, + 171273669250,0.395154923200607,L, + 173198092500,0.397295236587524,L, + 175122515750,0.399401307106018,L, + 177046939000,0.401472449302673,L, + 178971362250,0.403507858514786,L, + 180895785500,0.405506640672684,L, + 182820208750,0.407468020915985,L, + 184744632000,0.409391045570374,L, + 186669055250,0.411274760961533,L, + 188593478500,0.413118124008179,L, + 190517901750,0.414920091629028,L, + 192442325000,0.416679471731186,L, + 194366748250,0.418394982814789,L, + 196291171500,0.420065373182297,L, + 198215594750,0.421689361333847,L, + 200140018000,0.423265278339386,L, + 202064441250,0.424791753292084,L, + 203988864500,0.426266908645630,L, + 205913287750,0.427689194679260,L, + 207837711000,0.429056525230408,L, + 209762134250,0.430366933345795,L, + 211686557500,0.431618332862854,L, + 213610980750,0.432808220386505,L, + 215535404000,0.433934032917023,L, + 217459827250,0.434993296861649,L, + 219384250500,0.435982972383499,L, + 221308673750,0.436899751424789,L, + 223233097000,0.437740385532379,L, + 225157520250,0.438501089811325,L, + 227081943500,0.439177840948105,L, + 229006366750,0.439766079187393,L, + 230930790000,0.440260916948318,L, + 232855213250,0.440657198429108,L, + 234779636500,0.440948724746704,L, + 236704059750,0.441129148006439,L, + 238628483000,0.441191077232361,L, + 240552906250,0.440665453672409,L, + 242477329500,0.439128190279007,L, + 244401752750,0.436635076999664,L, + 246326176000,0.433236539363861,L, + 248250599250,0.428978979587555,L, + 250175022500,0.423904627561569,L, + 252099445750,0.418052643537521,L, + 254023869000,0.411458998918533,L, + 255948292250,0.404157102108002,L, + 257872715500,0.396177977323532,L, + 259797138750,0.387550562620163,L, + 261721562000,0.378301948308945,L, + 263645985250,0.368457496166229,L, + 265570408500,0.358041137456894,L, + 267494831750,0.347075521945953,L, + 269419255000,0.335582226514816,L, + 271343678250,0.323581844568253,L, + 273268101500,0.311094135046005,L, + 275192524750,0.298138201236725,L, + 277116948000,0.284732937812805,L, + 279041371250,0.270896792411804,L, + 280965794500,0.256648302078247,L, + 282890217750,0.242006242275238,L, + 284814641000,0.226990118622780,L, + 286739064250,0.211620569229126,L, + 288663487500,0.195920035243034,L, + 290587910750,0.179913684725761,L, + 292512334000,0.163630872964859,L, + 294436757250,0.147107377648354,L, + 296361180500,0.130388826131821,L, + 298285603750,0.113537013530731,L, + 300210027000,0.096641965210438,L, + 302134450250,0.079846367239952,L, + 304058873500,0.063407212495804,L, + 307907720000,0.063407212495804,L, + 309832143250,0.000028520824344,L, + 344471761750,0.000028520824344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378906073 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.000042378906073,L, + 1924423250,0.000042323797970,L, + 3848846500,0.000042166888306,L, + 5773269750,0.000041919105570,L, + 7697693000,0.000041589559260,L, + 9622116250,0.000041185983719,L, + 11546539500,0.000040714927309,L, + 13470962750,0.000040182130761,L, + 15395386000,0.000039592530811,L, + 17319809250,0.000038950511225,L, + 19244232500,0.000038259961002,L, + 21168655750,0.000037524365325,L, + 23093079000,0.000036746871046,L, + 25017502250,0.000035930373997,L, + 26941925500,0.000035077511711,L, + 28866348750,0.000034190790757,L, + 30790772000,0.000033272561268,L, + 32715195250,0.000032325100619,L, + 34639618500,0.000031350671634,L, + 36564041750,0.000030351548048,L, + 38488465000,0.000029330132747,L, + 40412888250,0.000028289035981,L, + 42337311500,0.000027231279091,L, + 44261734750,0.000026160534617,L, + 46186158000,0.000025081622880,L, + 48110581250,0.000024001452402,L, + 50035004500,0.000022931033527,L, + 51959427750,0.000021890924472,L, + 53883851000,0.000020930756364,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803947687149,L, + 59657120750,0.238643720746040,L, + 61581544000,0.255954653024673,L, + 63505967250,0.267211735248566,L, + 65430390500,0.275024116039276,L, + 67354813750,0.280620634555817,L, + 69279237000,0.284706443548203,L, + 71203660250,0.287740379571915,L, + 73128083500,0.290049970149994,L, + 75052506750,0.291888386011124,L, + 76976930000,0.293466001749039,L, + 78901353250,0.294970840215683,L, + 80825776500,0.296582967042923,L, + 82750199750,0.298487454652786,L, + 84674623000,0.300888717174530,L, + 86599046250,0.303409337997437,L, + 88523469500,0.305511325597763,L, + 90447892750,0.307190895080566,L, + 92372316000,0.308461010456085,L, + 94296739250,0.309356480836868,L, + 96221162500,0.309937566518784,L, + 98145585750,0.310290127992630,L, + 100070009000,0.310519993305206,L, + 101994432250,0.310742646455765,L, + 103918855500,0.311069726943970,L, + 105843278750,0.311597794294357,L, + 107767702000,0.312401026487350,L, + 109692125250,0.313528925180435,L, + 111616548500,0.315009176731110,L, + 113540971750,0.316851437091827,L, + 115465395000,0.318933427333832,L, + 117389818250,0.321133255958557,L, + 119314241500,0.323450922966003,L, + 121238664750,0.325886219739914,L, + 123163088000,0.328438729047775,L, + 125087511250,0.331107795238495,L, + 127011934500,0.333892434835434,L, + 128936357750,0.336791485548019,L, + 130860781000,0.339803367853165,L, + 132785204250,0.342926234006882,L, + 134709627500,0.346157908439636,L, + 136634050750,0.349495738744736,L, + 138558474000,0.352936953306198,L, + 140482897250,0.356477946043015,L, + 142407320500,0.360115051269531,L, + 144331743750,0.363844096660614,L, + 146256167000,0.367660343647003,L, + 148180590250,0.371558845043182,L, + 150105013500,0.375533789396286,L, + 152029436750,0.379579335451126,L, + 153953860000,0.383689016103745,L, + 155878283250,0.387855887413025,L, + 157802706500,0.392072647809982,L, + 159727129750,0.396331578493118,L, + 161651553000,0.400624573230743,L, + 163575976250,0.404943317174911,L, + 165500399500,0.409278959035873,L, + 167424822750,0.413622617721558,L, + 169349246000,0.417964994907379,L, + 171273669250,0.422296911478043,L, + 173198092500,0.426608800888062,L, + 175122515750,0.430891335010529,L, + 177046939000,0.435134857892990,L, + 178971362250,0.439330220222473,L, + 180895785500,0.443468004465103,L, + 182820208750,0.447539269924164,L, + 184744632000,0.451535284519196,L, + 186669055250,0.455447584390640,L, + 188593478500,0.459267914295197,L, + 190517901750,0.462988615036011,L, + 192442325000,0.466602355241776,L, + 194366748250,0.470102399587631,L, + 196291171500,0.473482251167297,L, + 198215594750,0.476736128330231,L, + 200140018000,0.479858666658401,L, + 202064441250,0.482845008373260,L, + 203988864500,0.485690891742706,L, + 205913287750,0.488392442464828,L, + 207837711000,0.490946352481842,L, + 209762134250,0.493349850177765,L, + 211686557500,0.495600610971451,L, + 213610980750,0.497696697711945,L, + 215535404000,0.499636650085449,L, + 217459827250,0.501419425010681,L, + 219384250500,0.503044307231903,L, + 221308673750,0.504511058330536,L, + 223233097000,0.505819499492645,L, + 225157520250,0.506970167160034,L, + 227081943500,0.507963478565216,L, + 229006366750,0.508800327777863,L, + 230930790000,0.509481787681580,L, + 232855213250,0.510008931159973,L, + 234779636500,0.510383605957031,L, + 236704059750,0.510607004165649,L, + 238628483000,0.510681092739105,L, + 240552906250,0.510144233703613,L, + 242477329500,0.508572399616241,L, + 244401752750,0.506019532680511,L, + 246326176000,0.502534151077271,L, + 248250599250,0.498161017894745,L, + 250175022500,0.492940276861191,L, + 252099445750,0.486909180879593,L, + 254023869000,0.480101466178894,L, + 255948292250,0.472548335790634,L, + 257872715500,0.464278131723404,L, + 259797138750,0.455317229032516,L, + 261721562000,0.445689767599106,L, + 263645985250,0.435417920351028,L, + 265570408500,0.424522310495377,L, + 267494831750,0.413021475076675,L, + 269419255000,0.400932937860489,L, + 271343678250,0.388272374868393,L, + 273268101500,0.375054240226746,L, + 275192524750,0.361291736364365,L, + 277116948000,0.346996665000916,L, + 279041371250,0.332179456949234,L, + 280965794500,0.316849559545517,L, + 282890217750,0.301014959812164,L, + 284814641000,0.284682154655457,L, + 286739064250,0.267856478691101,L, + 288663487500,0.250541478395462,L, + 290587910750,0.232739001512527,L, + 292512334000,0.214448705315590,L, + 294436757250,0.195667758584023,L, + 296361180500,0.176389932632446,L, + 298285603750,0.156604379415512,L, + 300210027000,0.136294111609459,L, + 302134450250,0.115431457757950,L, + 304058873500,0.093970775604248,L, + 307907720000,0.093970775604248,L, + 309832143250,0.000042378906073,L, + 344471761750,0.000042378906073,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_023" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.032782137393951 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.032782137393951,L, + 157802706500,0.032782137393951,L, + 159727129750,0.015258610248566,L, + 161651553000,0.014781296253204,L, + 163575976250,0.014308661222458,L, + 165500399500,0.013841092586517,L, + 167424822750,0.013378739356995,L, + 169349246000,0.012921988964081,L, + 171273669250,0.012470930814743,L, + 173198092500,0.012025892734528,L, + 175122515750,0.011587262153625,L, + 177046939000,0.011155217885971,L, + 178971362250,0.010729998350143,L, + 180895785500,0.010312080383301,L, + 182820208750,0.009901583194733,L, + 184744632000,0.009498894214630,L, + 186669055250,0.009104311466217,L, + 188593478500,0.008718073368073,L, + 190517901750,0.008340448141098,L, + 192442325000,0.007971823215485,L, + 194366748250,0.007612407207489,L, + 196291171500,0.007262408733368,L, + 198215594750,0.006922245025635,L, + 200140018000,0.006592035293579,L, + 202064441250,0.006272017955780,L, + 203988864500,0.005962342023849,L, + 205913287750,0.005663305521011,L, + 207837711000,0.005374908447266,L, + 209762134250,0.005097478628159,L, + 211686557500,0.004830986261368,L, + 213610980750,0.004575401544571,L, + 215535404000,0.004330962896347,L, + 217459827250,0.004097580909729,L, + 219384250500,0.003875225782394,L, + 221308673750,0.003663867712021,L, + 223233097000,0.003463357686996,L, + 225157520250,0.003273665904999,L, + 227081943500,0.003094524145126,L, + 229006366750,0.002925902605057,L, + 230930790000,0.002767473459244,L, + 232855213250,0.002619087696075,L, + 234779636500,0.002480506896973,L, + 236704059750,0.002351343631744,L, + 238628483000,0.002231419086456,L, + 240552906250,0.002120405435562,L, + 242477329500,0.002018034458160,L, + 244401752750,0.001923829317093,L, + 246326176000,0.001837641000748,L, + 248250599250,0.001759171485901,L, + 250175022500,0.001687854528427,L, + 252099445750,0.001623570919037,L, + 254023869000,0.001565933227539,L, + 255948292250,0.001514554023743,L, + 257872715500,0.001469135284424,L, + 259797138750,0.001429378986359,L, + 261721562000,0.001395046710968,L, + 263645985250,0.001365751028061,L, + 265570408500,0.001341193914413,L, + 267494831750,0.001321077346802,L, + 269419255000,0.001305222511292,L, + 271343678250,0.001293301582336,L, + 273268101500,0.001285076141357,L, + 275192524750,0.001280337572098,L, + 277116948000,0.001278787851334,L, + 279041371250,0.001351296901703,L, + 280965794500,0.001558125019073,L, + 282890217750,0.001885175704956,L, + 284814641000,0.002320706844330,L, + 286739064250,0.002854764461517,L, + 288663487500,0.003478735685349,L, + 290587910750,0.004185348749161,L, + 292512334000,0.004968017339706,L, + 294436757250,0.005821168422699,L, + 296361180500,0.006739735603333,L, + 298285603750,0.007719099521637,L, + 300210027000,0.008755356073380,L, + 302134450250,0.009844660758972,L, + 304058873500,0.010983675718307,L, + 305983296750,0.012169212102890,L, + 307907720000,0.013398379087448,L, + 309832143250,0.014668285846710,L, + 311756566500,0.015976309776306,L, + 313680989750,0.017319709062576,L, + 315605413000,0.018695712089539,L, + 317529836250,0.020101577043533,L, + 319454259500,0.021534055471420,L, + 321378682750,0.022989720106125,L, + 323303106000,0.024464160203934,L, + 325227529250,0.025951653718948,L, + 327151952500,0.027444064617157,L, + 329076375750,0.028928369283676,L, + 331000799000,0.030380129814148,L, + 332925222250,0.031739979982376,L, + 334849645500,0.032710015773773,L, + 336774068750,0.032782137393951,L, + 344471761750,0.032782137393951,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.028244383633137 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,-0.028244383633137,L, + 157802706500,-0.028244383633137,L, + 159727129750,-0.062223061919212,L, + 161651553000,-0.063217893242836,L, + 163575976250,-0.064210668206215,L, + 165500399500,-0.065199978649616,L, + 167424822750,-0.066185876727104,L, + 169349246000,-0.067167416214943,L, + 171273669250,-0.068144664168358,L, + 173198092500,-0.069116681814194,L, + 175122515750,-0.070083051919937,L, + 177046939000,-0.071042835712433,L, + 178971362250,-0.071995608508587,L, + 180895785500,-0.072940930724144,L, + 182820208750,-0.073877409100533,L, + 184744632000,-0.074805073440075,L, + 186669055250,-0.075722537934780,L, + 188593478500,-0.076629370450974,L, + 190517901750,-0.077524632215500,L, + 192442325000,-0.078407898545265,L, + 194366748250,-0.079277761280537,L, + 196291171500,-0.080133780837059,L, + 198215594750,-0.080974549055099,L, + 200140018000,-0.081799626350403,L, + 202064441250,-0.082608543336391,L, + 203988864500,-0.083399891853333,L, + 205913287750,-0.084173694252968,L, + 207837711000,-0.084928050637245,L, + 209762134250,-0.085662961006165,L, + 211686557500,-0.086377009749413,L, + 213610980750,-0.087070673704147,L, + 215535404000,-0.087742500007153,L, + 217459827250,-0.088391542434692,L, + 219384250500,-0.089019209146500,L, + 221308673750,-0.089622631669044,L, + 223233097000,-0.090203195810318,L, + 225157520250,-0.090759932994843,L, + 227081943500,-0.091292820870876,L, + 229006366750,-0.091801807284355,L, + 230930790000,-0.092285916209221,L, + 232855213250,-0.092746518552303,L, + 234779636500,-0.093182638287544,L, + 236704059750,-0.093595169484615,L, + 238628483000,-0.093983590602875,L, + 240552906250,-0.094348341226578,L, + 242477329500,-0.094690307974815,L, + 244401752750,-0.095009446144104,L, + 246326176000,-0.095305711030960,L, + 248250599250,-0.095580011606216,L, + 250175022500,-0.095832750201225,L, + 252099445750,-0.096063904464245,L, + 254023869000,-0.096274837851524,L, + 255948292250,-0.096465989947319,L, + 257872715500,-0.096637308597565,L, + 259797138750,-0.096789702773094,L, + 261721562000,-0.096923127770424,L, + 263645985250,-0.097039937973022,L, + 265570408500,-0.097138643264771,L, + 267494831750,-0.097220644354820,L, + 269419255000,-0.097286388278008,L, + 271343678250,-0.097336769104004,L, + 273268101500,-0.097372263669968,L, + 275192524750,-0.097392812371254,L, + 277116948000,-0.097399830818176,L, + 279041371250,-0.097240291535854,L, + 280965794500,-0.096786454319954,L, + 282890217750,-0.096068866550922,L, + 284814641000,-0.095112636685371,L, + 286739064250,-0.093939803540707,L, + 288663487500,-0.092570677399635,L, + 290587910750,-0.091019511222839,L, + 292512334000,-0.089301183819771,L, + 294436757250,-0.087428286671638,L, + 296361180500,-0.085412055253983,L, + 298285603750,-0.083262383937836,L, + 300210027000,-0.080987304449081,L, + 302134450250,-0.078596323728561,L, + 304058873500,-0.076095670461655,L, + 305983296750,-0.073493510484695,L, + 307907720000,-0.070795148611069,L, + 309832143250,-0.068007379770279,L, + 311756566500,-0.065136022865772,L, + 313680989750,-0.062186930328608,L, + 315605413000,-0.059166401624680,L, + 317529836250,-0.056080263108015,L, + 319454259500,-0.052935712039471,L, + 321378682750,-0.049740396440029,L, + 323303106000,-0.046503722667694,L, + 325227529250,-0.043238289654255,L, + 327151952500,-0.039962075650692,L, + 329076375750,-0.036703839898109,L, + 331000799000,-0.033517047762871,L, + 332925222250,-0.030532501637936,L, + 334849645500,-0.028402544558048,L, + 336774068750,-0.028244383633137,L, + 344471761750,-0.028244383633137,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775783538818 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.007775783538818,L, + 157802706500,0.007775783538818,L, + 159727129750,0.003469109535217,L, + 161651553000,0.003611803054810,L, + 163575976250,0.004034876823425,L, + 165500399500,0.004729628562927,L, + 167424822750,0.005688548088074,L, + 169349246000,0.006904125213623,L, + 171273669250,0.008369088172913,L, + 173198092500,0.010076522827148,L, + 175122515750,0.012019753456116,L, + 177046939000,0.014192461967468,L, + 178971362250,0.016588211059570,L, + 180895785500,0.019201159477234,L, + 182820208750,0.022025585174561,L, + 184744632000,0.025055885314941,L, + 186669055250,0.028286337852478,L, + 188593478500,0.031711935997009,L, + 190517901750,0.035327553749084,L, + 192442325000,0.039127826690674,L, + 194366748250,0.043108344078064,L, + 196291171500,0.047263979911804,L, + 198215594750,0.051590085029602,L, + 200140018000,0.056082487106323,L, + 202064441250,0.060736179351807,L, + 203988864500,0.065547108650208,L, + 205913287750,0.070510864257812,L, + 207837711000,0.075622797012329,L, + 209762134250,0.080879330635071,L, + 211686557500,0.086275696754456,L, + 213610980750,0.091807723045349,L, + 215535404000,0.097471117973328,L, + 217459827250,0.103262186050415,L, + 219384250500,0.109176158905029,L, + 221308673750,0.115209341049194,L, + 223233097000,0.121356844902039,L, + 225157520250,0.127614736557007,L, + 227081943500,0.133978486061096,L, + 229006366750,0.140443444252014,L, + 230930790000,0.147005200386047,L, + 232855213250,0.153658509254456,L, + 234779636500,0.160398602485657,L, + 236704059750,0.167220711708069,L, + 238628483000,0.174118876457214,L, + 240552906250,0.181087136268616,L, + 242477329500,0.188120245933533,L, + 244401752750,0.195211052894592,L, + 246326176000,0.202352881431580,L, + 248250599250,0.209538102149963,L, + 250175022500,0.216758131980896,L, + 252099445750,0.224004626274109,L, + 254023869000,0.231267094612122,L, + 255948292250,0.238534569740295,L, + 257872715500,0.245794892311096,L, + 259797138750,0.253032803535461,L, + 261721562000,0.260232567787170,L, + 263645985250,0.267374634742737,L, + 265570408500,0.274436831474304,L, + 267494831750,0.281391263008118,L, + 269419255000,0.288205742835999,L, + 271343678250,0.294838786125183,L, + 273268101500,0.301238656044006,L, + 275192524750,0.307337164878845,L, + 277116948000,0.313043475151062,L, + 279041371250,0.318903088569641,L, + 280965794500,0.325497508049011,L, + 282890217750,0.332769513130188,L, + 284814641000,0.340668559074402,L, + 286739064250,0.349150300025940,L, + 288663487500,0.358174443244934,L, + 290587910750,0.367705225944519,L, + 292512334000,0.377710223197937,L, + 294436757250,0.388159394264221,L, + 296361180500,0.399025559425354,L, + 298285603750,0.410283684730530,L, + 300210027000,0.421909928321838,L, + 302134450250,0.433882355690002,L, + 304058873500,0.446179986000061,L, + 305983296750,0.458782315254211,L, + 307907720000,0.471669793128967,L, + 309832143250,0.484822154045105,L, + 311756566500,0.498220086097717,L, + 313680989750,0.511842370033264,L, + 315605413000,0.525666832923889,L, + 317529836250,0.539668917655945,L, + 319454259500,0.553820252418518,L, + 321378682750,0.568086266517639,L, + 323303106000,0.582422852516174,L, + 325227529250,0.596771121025085,L, + 327151952500,0.611042857170105,L, + 329076375750,0.625095725059509,L, + 331000799000,0.638661742210388,L, + 332925222250,0.651092648506165,L, + 334849645500,0.659229874610901,L, + 336774068750,0.007775783538818,L, + 344471761750,0.007775783538818,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 69.452218499662933 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,69.452218499662933,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.846882879734039 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882879734039,L, + 159727129750,0.846882879734039,L, + 161651553000,0.846929728984833,L, + 163575976250,0.847067415714264,L, + 165500399500,0.847291707992554,L, + 167424822750,0.847599029541016,L, + 169349246000,0.847985327243805,L, + 171273669250,0.848446726799011,L, + 173198092500,0.848979830741882,L, + 175122515750,0.849581122398376,L, + 177046939000,0.850246787071228,L, + 178971362250,0.850973665714264,L, + 180895785500,0.851758062839508,L, + 182820208750,0.852596938610077,L, + 184744632000,0.853486955165863,L, + 186669055250,0.854424655437469,L, + 188593478500,0.855406999588013,L, + 190517901750,0.856430709362030,L, + 192442325000,0.857492506504059,L, + 194366748250,0.858589351177216,L, + 196291171500,0.859717607498169,L, + 198215594750,0.860874414443970,L, + 200140018000,0.862056314945221,L, + 202064441250,0.863259971141815,L, + 203988864500,0.864481985569000,L, + 205913287750,0.865718960762024,L, + 207837711000,0.866967499256134,L, + 209762134250,0.868223965167999,L, + 211686557500,0.869484603404999,L, + 213610980750,0.870745718479156,L, + 215535404000,0.872003376483917,L, + 217459827250,0.873253524303436,L, + 219384250500,0.874492049217224,L, + 221308673750,0.875714421272278,L, + 223233097000,0.876916170120239,L, + 225157520250,0.878092408180237,L, + 227081943500,0.879238247871399,L, + 229006366750,0.880348086357117,L, + 230930790000,0.881416320800781,L, + 232855213250,0.882436871528625,L, + 234779636500,0.883403420448303,L, + 236704059750,0.884308934211731,L, + 238628483000,0.885145962238312,L, + 240552906250,0.885906219482422,L, + 242477329500,0.886581361293793,L, + 244401752750,0.887161254882812,L, + 246326176000,0.887635588645935,L, + 248250599250,0.887992620468140,L, + 250175022500,0.888219654560089,L, + 252099445750,0.888302028179169,L, + 254023869000,0.888223528862000,L, + 255948292250,0.887965917587280,L, + 257872715500,0.887508332729340,L, + 259797138750,0.886826753616333,L, + 261721562000,0.885892927646637,L, + 263645985250,0.884674668312073,L, + 265570408500,0.883132994174957,L, + 267494831750,0.881221473217010,L, + 269419255000,0.878883004188538,L, + 271343678250,0.876047194004059,L, + 273268101500,0.872624278068542,L, + 275192524750,0.868497788906097,L, + 277116948000,0.863510549068451,L, + 279041371250,0.857115924358368,L, + 280965794500,0.849036335945129,L, + 282890217750,0.839450120925903,L, + 284814641000,0.828506529331207,L, + 286739064250,0.816332340240479,L, + 288663487500,0.803036808967590,L, + 290587910750,0.788713753223419,L, + 292512334000,0.773446023464203,L, + 294436757250,0.757306635379791,L, + 296361180500,0.740360498428345,L, + 298285603750,0.722666263580322,L, + 300210027000,0.704276978969574,L, + 302134450250,0.685241520404816,L, + 304058873500,0.665604770183563,L, + 305983296750,0.645409166812897,L, + 307907720000,0.624695003032684,L, + 309832143250,0.603500962257385,L, + 311756566500,0.581865608692169,L, + 313680989750,0.559827744960785,L, + 315605413000,0.537427783012390,L, + 317529836250,0.514709472656250,L, + 319454259500,0.491721630096436,L, + 321378682750,0.468522161245346,L, + 323303106000,0.445183336734772,L, + 325227529250,0.421802133321762,L, + 327151952500,0.398518770933151,L, + 329076375750,0.375560164451599,L, + 331000799000,0.353350818157196,L, + 332925222250,0.332918882369995,L, + 334849645500,0.319382160902023,L, + 336774068750,0.846882879734039,L, + 344471761750,0.846882879734039,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.846882879734039 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.846882879734039,L, + 159727129750,0.846882879734039,L, + 161651553000,0.846939265727997,L, + 163575976250,0.847105264663696,L, + 165500399500,0.847375869750977,L, + 167424822750,0.847746133804321,L, + 169349246000,0.848211586475372,L, + 171273669250,0.848767459392548,L, + 173198092500,0.849409461021423,L, + 175122515750,0.850133001804352,L, + 177046939000,0.850934088230133,L, + 178971362250,0.851808130741119,L, + 180895785500,0.852751493453979,L, + 182820208750,0.853759706020355,L, + 184744632000,0.854828953742981,L, + 186669055250,0.855955123901367,L, + 188593478500,0.857134401798248,L, + 190517901750,0.858362615108490,L, + 192442325000,0.859635710716248,L, + 194366748250,0.860950231552124,L, + 196291171500,0.862301588058472,L, + 198215594750,0.863686263561249,L, + 200140018000,0.865099906921387,L, + 202064441250,0.866538703441620,L, + 203988864500,0.867998301982880,L, + 205913287750,0.869474530220032,L, + 207837711000,0.870963037014008,L, + 209762134250,0.872459650039673,L, + 211686557500,0.873959660530090,L, + 213610980750,0.875458419322968,L, + 215535404000,0.876951098442078,L, + 217459827250,0.878432691097260,L, + 219384250500,0.879898130893707,L, + 221308673750,0.881341993808746,L, + 223233097000,0.882758677005768,L, + 225157520250,0.884141921997070,L, + 227081943500,0.885485768318176,L, + 229006366750,0.886783540248871,L, + 230930790000,0.888028442859650,L, + 232855213250,0.889212548732758,L, + 234779636500,0.890328168869019,L, + 236704059750,0.891366541385651,L, + 238628483000,0.892318427562714,L, + 240552906250,0.893174111843109,L, + 242477329500,0.893922269344330,L, + 244401752750,0.894551336765289,L, + 246326176000,0.895048022270203,L, + 248250599250,0.895398020744324,L, + 250175022500,0.895585358142853,L, + 252099445750,0.895592093467712,L, + 254023869000,0.895398139953613,L, + 255948292250,0.894980788230896,L, + 257872715500,0.894314348697662,L, + 259797138750,0.893368780612946,L, + 261721562000,0.892109513282776,L, + 263645985250,0.890496492385864,L, + 265570408500,0.888481318950653,L, + 267494831750,0.886006355285645,L, + 269419255000,0.883001208305359,L, + 271343678250,0.879378557205200,L, + 273268101500,0.875027120113373,L, + 275192524750,0.869802713394165,L, + 277116948000,0.863510608673096,L, + 279041371250,0.855368971824646,L, + 280965794500,0.845141410827637,L, + 282890217750,0.833256542682648,L, + 284814641000,0.820015251636505,L, + 286739064250,0.805638790130615,L, + 288663487500,0.790295660495758,L, + 290587910750,0.774118125438690,L, + 292512334000,0.757212162017822,L, + 294436757250,0.739664852619171,L, + 296361180500,0.721548795700073,L, + 298285603750,0.702925801277161,L, + 300210027000,0.683849453926086,L, + 302134450250,0.664366185665131,L, + 304058873500,0.644518256187439,L, + 305983296750,0.624343276023865,L, + 307907720000,0.603876411914825,L, + 309832143250,0.583151102066040,L, + 311756566500,0.562199354171753,L, + 313680989750,0.541053533554077,L, + 315605413000,0.519746959209442,L, + 317529836250,0.498315334320068,L, + 319454259500,0.476799100637436,L, + 321378682750,0.455245763063431,L, + 323303106000,0.433715045452118,L, + 325227529250,0.412287116050720,L, + 327151952500,0.391078352928162,L, + 329076375750,0.370276451110840,L, + 331000799000,0.350232958793640,L, + 332925222250,0.331800162792206,L, + 334849645500,0.319382160902023,L, + 336774068750,0.846882879734039,L, + 344471761750,0.846882879734039,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.481483966112137 + KeyVer: 4005 + KeyCount: 96 + Key: + 0,0.481483966112137,L, + 157802706500,0.481483966112137,L, + 159727129750,0.624619901180267,L, + 161651553000,0.624619841575623,L, + 163575976250,0.624619305133820,L, + 165500399500,0.624617874622345,L, + 167424822750,0.624615013599396,L, + 169349246000,0.624610185623169,L, + 171273669250,0.624602854251862,L, + 173198092500,0.624592363834381,L, + 175122515750,0.624577999114990,L, + 177046939000,0.624559223651886,L, + 178971362250,0.624535083770752,L, + 180895785500,0.624505102634430,L, + 182820208750,0.624468207359314,L, + 184744632000,0.624423742294312,L, + 186669055250,0.624370753765106,L, + 188593478500,0.624308228492737,L, + 190517901750,0.624235451221466,L, + 192442325000,0.624151289463043,L, + 194366748250,0.624054849147797,L, + 196291171500,0.623944997787476,L, + 198215594750,0.623820841312408,L, + 200140018000,0.623681247234344,L, + 202064441250,0.623525321483612,L, + 203988864500,0.623351931571960,L, + 205913287750,0.623160064220428,L, + 207837711000,0.622948765754700,L, + 209762134250,0.622717082500458,L, + 211686557500,0.622464060783386,L, + 213610980750,0.622188866138458,L, + 215535404000,0.621890604496002,L, + 217459827250,0.621568560600281,L, + 219384250500,0.621222019195557,L, + 221308673750,0.620850265026093,L, + 223233097000,0.620452761650085,L, + 225157520250,0.620029211044312,L, + 227081943500,0.619578897953033,L, + 229006366750,0.619101643562317,L, + 230930790000,0.618597269058228,L, + 232855213250,0.618065476417542,L, + 234779636500,0.617506206035614,L, + 236704059750,0.616919636726379,L, + 238628483000,0.616305649280548,L, + 240552906250,0.615664303302765,L, + 242477329500,0.614996135234833,L, + 244401752750,0.614301085472107,L, + 246326176000,0.613579630851746,L, + 248250599250,0.612832188606262,L, + 250175022500,0.612059056758881,L, + 252099445750,0.611260771751404,L, + 254023869000,0.610437870025635,L, + 255948292250,0.609590828418732,L, + 257872715500,0.608720183372498,L, + 259797138750,0.607826590538025,L, + 261721562000,0.606910526752472,L, + 263645985250,0.605972647666931,L, + 265570408500,0.605013608932495,L, + 267494831750,0.604033946990967,L, + 269419255000,0.603034257888794,L, + 271343678250,0.602015256881714,L, + 273268101500,0.600977420806885,L, + 275192524750,0.599921464920044,L, + 277116948000,0.598847925662994,L, + 279041371250,0.597013056278229,L, + 280965794500,0.593785166740417,L, + 282890217750,0.589310705661774,L, + 284814641000,0.583712577819824,L, + 286739064250,0.577094614505768,L, + 288663487500,0.569546163082123,L, + 290587910750,0.561144649982452,L, + 292512334000,0.551957368850708,L, + 294436757250,0.542044043540955,L, + 296361180500,0.531457841396332,L, + 298285603750,0.520245969295502,L, + 300210027000,0.508451819419861,L, + 302134450250,0.496114492416382,L, + 304058873500,0.483270257711411,L, + 305983296750,0.469952762126923,L, + 307907720000,0.456193953752518,L, + 309832143250,0.442024469375610,L, + 311756566500,0.427473992109299,L, + 313680989750,0.412572503089905,L, + 315605413000,0.397350490093231,L, + 317529836250,0.381840646266937,L, + 319454259500,0.366079062223434,L, + 321378682750,0.350107759237289,L, + 323303106000,0.333978682756424,L, + 325227529250,0.317760646343231,L, + 327151952500,0.301552981138229,L, + 329076375750,0.285515278577805,L, + 331000799000,0.269946247339249,L, + 332925222250,0.255570203065872,L, + 334849645500,0.246008023619652,L, + 336774068750,0.481483966112137,L, + 344471761750,0.481483966112137,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_031" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.039614260196686 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,0.039614260196686,L, + 1924423250,0.039593398571014,L, + 3848846500,0.039530396461487,L, + 5773269750,0.039424747228622,L, + 7697693000,0.039275914430618,L, + 9622116250,0.039083212614059,L, + 11546539500,0.038846433162689,L, + 13470962750,0.038565009832382,L, + 15395386000,0.038238704204559,L, + 17319809250,0.037867486476898,L, + 19244232500,0.037450939416885,L, + 21168655750,0.036989361047745,L, + 23093079000,0.036482602357864,L, + 25017502250,0.035931020975113,L, + 26941925500,0.035335063934326,L, + 28866348750,0.034695088863373,L, + 30790772000,0.034011930227280,L, + 32715195250,0.033286273479462,L, + 34639618500,0.032519161701202,L, + 36564041750,0.031711757183075,L, + 38488465000,0.030865520238876,L, + 40412888250,0.029981851577759,L, + 42337311500,0.029062449932098,L, + 44261734750,0.028109163045883,L, + 46186158000,0.027124077081680,L, + 48110581250,0.026109337806702,L, + 50035004500,0.025067389011383,L, + 51959427750,0.024000555276871,L, + 53883851000,0.022911459207535,L, + 55808274250,0.021802783012390,L, + 57732697500,0.020677357912064,L, + 59657120750,0.019537866115570,L, + 61581544000,0.018387287855148,L, + 63505967250,0.017228335142136,L, + 65430390500,0.016064107418060,L, + 67354813750,0.014897257089615,L, + 69279237000,0.013730555772781,L, + 71203660250,0.012566894292831,L, + 73128083500,0.011408686637878,L, + 75052506750,0.010258525609970,L, + 76976930000,0.009118944406509,L, + 78901353250,0.007992088794708,L, + 80825776500,0.006880104541779,L, + 82750199750,0.005785077810287,L, + 84674623000,0.004708915948868,L, + 86599046250,0.003653198480606,L, + 88523469500,0.002619534730911,L, + 90447892750,0.001609385013580,L, + 92372316000,0.000624060630798,L, + 94296739250,-0.000335365533829,L, + 96221162500,-0.001267939805984,L, + 98145585750,-0.002172768115997,L, + 100070009000,-0.003049045801163,L, + 101994432250,-0.003896147012711,L, + 103918855500,-0.004713624715805,L, + 105843278750,-0.005500972270966,L, + 107767702000,-0.006257891654968,L, + 109692125250,-0.006984233856201,L, + 111616548500,-0.007679700851440,L, + 113540971750,-0.008344292640686,L, + 115465395000,-0.008990496397018,L, + 117389818250,-0.009631097316742,L, + 119314241500,-0.010266244411469,L, + 121238664750,-0.010896116495132,L, + 123163088000,-0.011520892381668,L, + 125087511250,-0.012140870094299,L, + 127011934500,-0.012755990028381,L, + 128936357750,-0.013366580009460,L, + 130860781000,-0.013972669839859,L, + 132785204250,-0.014574438333511,L, + 134709627500,-0.015171945095062,L, + 136634050750,-0.015765488147736,L, + 138558474000,-0.016354918479919,L, + 140482897250,-0.016940593719482,L, + 142407320500,-0.017522454261780,L, + 144331743750,-0.018100708723068,L, + 146256167000,-0.018675416707993,L, + 148180590250,-0.019246518611908,L, + 150105013500,-0.019814372062683,L, + 152029436750,-0.020378828048706,L, + 153953860000,-0.020940095186234,L, + 155878283250,-0.021498233079910,L, + 157802706500,-0.022053182125092,L, + 159727129750,-0.022605270147324,L, + 161651553000,-0.023154258728027,L, + 163575976250,-0.023700445890427,L, + 165500399500,-0.024243742227554,L, + 167424822750,-0.024784296751022,L, + 169349246000,-0.025322139263153,L, + 171273669250,-0.025857359170914,L, + 173198092500,-0.026389926671982,L, + 175122515750,-0.026919931173325,L, + 177046939000,-0.027447432279587,L, + 178971362250,-0.027972459793091,L, + 180895785500,-0.028495073318481,L, + 182820208750,-0.029015272855759,L, + 184744632000,-0.029533147811890,L, + 186669055250,-0.030048757791519,L, + 188593478500,-0.030562102794647,L, + 190517901750,-0.031073182821274,L, + 192442325000,-0.031582057476044,L, + 194366748250,-0.032088816165924,L, + 196291171500,-0.032593458890915,L, + 198215594750,-0.033095985651016,L, + 200140018000,-0.033596396446228,L, + 202064441250,-0.034094840288162,L, + 203988864500,-0.034591227769852,L, + 205913287750,-0.035085707902908,L, + 207837711000,-0.035578131675720,L, + 209762134250,-0.036068707704544,L, + 211686557500,-0.036557346582413,L, + 213610980750,-0.037044107913971,L, + 215535404000,-0.037528991699219,L, + 217459827250,-0.038012087345123,L, + 219384250500,-0.038493335247040,L, + 221308673750,-0.038972824811935,L, + 223233097000,-0.039450436830521,L, + 225157520250,-0.039926409721375,L, + 227081943500,-0.040400564670563,L, + 229006366750,-0.040873050689697,L, + 230930790000,-0.041343748569489,L, + 232855213250,-0.041812807321548,L, + 234779636500,-0.042280167341232,L, + 236704059750,-0.042745888233185,L, + 238628483000,-0.043209880590439,L, + 240552906250,-0.043672353029251,L, + 242477329500,-0.044133096933365,L, + 244401752750,-0.044592231512070,L, + 246326176000,-0.045049786567688,L, + 248250599250,-0.045505672693253,L, + 250175022500,-0.045960038900375,L, + 252099445750,-0.046412825584412,L, + 254023869000,-0.046863973140717,L, + 255948292250,-0.047313600778580,L, + 257872715500,-0.047761678695679,L, + 259797138750,-0.048208147287369,L, + 261721562000,-0.048653095960617,L, + 263645985250,-0.049096375703812,L, + 265570408500,-0.049538195133209,L, + 267494831750,-0.049978435039520,L, + 269419255000,-0.050417155027390,L, + 271343678250,-0.050854295492172,L, + 273268101500,-0.051289796829224,L, + 275192524750,-0.051723778247833,L, + 277116948000,-0.052156180143356,L, + 279041371250,-0.052587002515793,L, + 280965794500,-0.053016245365143,L, + 282890217750,-0.053443878889084,L, + 284814641000,-0.053869843482971,L, + 286739064250,-0.054294168949127,L, + 288663487500,-0.054716825485229,L, + 290587910750,-0.055137842893600,L, + 292512334000,-0.055557101964951,L, + 294436757250,-0.055974662303925,L, + 296361180500,-0.056390374898911,L, + 298285603750,-0.056804299354553,L, + 300210027000,-0.057216405868530,L, + 302134450250,-0.057626515626907,L, + 304058873500,-0.058034598827362,L, + 305983296750,-0.058440715074539,L, + 307907720000,-0.058844596147537,L, + 309832143250,-0.059246182441711,L, + 311756566500,-0.059645444154739,L, + 313680989750,-0.060041993856430,L, + 315605413000,-0.060435861349106,L, + 317529836250,-0.060826689004898,L, + 319454259500,-0.061214119195938,L, + 321378682750,-0.061597675085068,L, + 323303106000,-0.061976760625839,L, + 325227529250,-0.062350273132324,L, + 327151952500,-0.062716633081436,L, + 329076375750,-0.063072770833969,L, + 331000799000,-0.063410937786102,L, + 332925222250,-0.063678205013275,L, + 334849645500,0.039614260196686,L, + 344471761750,0.039614260196686,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.016422979533672 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,-0.016422979533672,L, + 1924423250,-0.016437180340290,L, + 3848846500,-0.016480669379234,L, + 5773269750,-0.016553364694118,L, + 7697693000,-0.016655147075653,L, + 9622116250,-0.016787387430668,L, + 11546539500,-0.016950011253357,L, + 13470962750,-0.017143420875072,L, + 15395386000,-0.017367579042912,L, + 17319809250,-0.017622448503971,L, + 19244232500,-0.017908483743668,L, + 21168655750,-0.018225215375423,L, + 23093079000,-0.018573127686977,L, + 25017502250,-0.018951788544655,L, + 26941925500,-0.019360795617104,L, + 28866348750,-0.019800208508968,L, + 30790772000,-0.020269207656384,L, + 32715195250,-0.020767435431480,L, + 34639618500,-0.021294116973877,L, + 36564041750,-0.021848961710930,L, + 38488465000,-0.022429801523685,L, + 40412888250,-0.023036420345306,L, + 42337311500,-0.023667655885220,L, + 44261734750,-0.024321928620338,L, + 46186158000,-0.024998120963573,L, + 48110581250,-0.025695174932480,L, + 50035004500,-0.026410132646561,L, + 51959427750,-0.027142927050591,L, + 53883851000,-0.027890652418137,L, + 55808274250,-0.028651356697083,L, + 57732697500,-0.029424067586660,L, + 59657120750,-0.030206866562366,L, + 61581544000,-0.030996419489384,L, + 63505967250,-0.031792223453522,L, + 65430390500,-0.032591432332993,L, + 67354813750,-0.033393081277609,L, + 69279237000,-0.034193806350231,L, + 71203660250,-0.034992627799511,L, + 73128083500,-0.035788074135780,L, + 75052506750,-0.036577697843313,L, + 76976930000,-0.037359993904829,L, + 78901353250,-0.038133434951305,L, + 80825776500,-0.038896933197975,L, + 82750199750,-0.039648920297623,L, + 84674623000,-0.040387801826000,L, + 86599046250,-0.041112419217825,L, + 88523469500,-0.041822563856840,L, + 90447892750,-0.042516082525253,L, + 92372316000,-0.043192226439714,L, + 94296739250,-0.043850716203451,L, + 96221162500,-0.044491227716208,L, + 98145585750,-0.045112483203411,L, + 100070009000,-0.045714125037193,L, + 101994432250,-0.046295784413815,L, + 103918855500,-0.046857066452503,L, + 105843278750,-0.047397565096617,L, + 107767702000,-0.047916859388351,L, + 109692125250,-0.048415932804346,L, + 111616548500,-0.048893392086029,L, + 113540971750,-0.049349252134562,L, + 115465395000,-0.049792878329754,L, + 117389818250,-0.050233144313097,L, + 119314241500,-0.050669062882662,L, + 121238664750,-0.051101557910442,L, + 123163088000,-0.051530119031668,L, + 125087511250,-0.051956154406071,L, + 127011934500,-0.052378207445145,L, + 128936357750,-0.052797682583332,L, + 130860781000,-0.053213600069284,L, + 132785204250,-0.053626894950867,L, + 134709627500,-0.054037544876337,L, + 136634050750,-0.054444577544928,L, + 138558474000,-0.054849404841661,L, + 140482897250,-0.055251531302929,L, + 142407320500,-0.055650938302279,L, + 144331743750,-0.056048087775707,L, + 146256167000,-0.056442487984896,L, + 148180590250,-0.056834604591131,L, + 150105013500,-0.057224415242672,L, + 152029436750,-0.057611912488937,L, + 153953860000,-0.057997558265924,L, + 155878283250,-0.058380864560604,L, + 157802706500,-0.058761343359947,L, + 159727129750,-0.059140887111425,L, + 161651553000,-0.059517581015825,L, + 163575976250,-0.059892844408751,L, + 165500399500,-0.060265712440014,L, + 167424822750,-0.060636654496193,L, + 169349246000,-0.061006136238575,L, + 171273669250,-0.061373677104712,L, + 173198092500,-0.061738781630993,L, + 175122515750,-0.062102880328894,L, + 177046939000,-0.062465012073517,L, + 178971362250,-0.062825165688992,L, + 180895785500,-0.063184291124344,L, + 182820208750,-0.063541419804096,L, + 184744632000,-0.063897028565407,L, + 186669055250,-0.064251109957695,L, + 188593478500,-0.064603656530380,L, + 190517901750,-0.064954668283463,L, + 192442325000,-0.065303660929203,L, + 194366748250,-0.065651565790176,L, + 196291171500,-0.065998405218124,L, + 198215594750,-0.066343203186989,L, + 200140018000,-0.066686421632767,L, + 202064441250,-0.067029036581516,L, + 203988864500,-0.067369595170021,L, + 205913287750,-0.067709043622017,L, + 207837711000,-0.068046912550926,L, + 209762134250,-0.068384140729904,L, + 211686557500,-0.068719789385796,L, + 213610980750,-0.069053828716278,L, + 215535404000,-0.069386273622513,L, + 217459827250,-0.069718062877655,L, + 219384250500,-0.070048727095127,L, + 221308673750,-0.070378251373768,L, + 223233097000,-0.070705696940422,L, + 225157520250,-0.071032941341400,L, + 227081943500,-0.071358099579811,L, + 229006366750,-0.071682579815388,L, + 230930790000,-0.072005435824394,L, + 232855213250,-0.072327628731728,L, + 234779636500,-0.072648659348488,L, + 236704059750,-0.072968535125256,L, + 238628483000,-0.073287248611450,L, + 240552906250,-0.073604330420494,L, + 242477329500,-0.073920726776123,L, + 244401752750,-0.074235968291759,L, + 246326176000,-0.074550032615662,L, + 248250599250,-0.074862942099571,L, + 250175022500,-0.075175151228905,L, + 252099445750,-0.075486198067665,L, + 254023869000,-0.075795590877533,L, + 255948292250,-0.076104775071144,L, + 257872715500,-0.076412305235863,L, + 259797138750,-0.076718673110008,L, + 261721562000,-0.077024325728416,L, + 263645985250,-0.077328339219093,L, + 265570408500,-0.077631659805775,L, + 267494831750,-0.077933803200722,L, + 269419255000,-0.078235253691673,L, + 271343678250,-0.078535526990891,L, + 273268101500,-0.078834623098373,L, + 275192524750,-0.079132556915283,L, + 277116948000,-0.079429313540459,L, + 279041371250,-0.079724907875061,L, + 280965794500,-0.080019809305668,L, + 282890217750,-0.080313071608543,L, + 284814641000,-0.080605648458004,L, + 286739064250,-0.080897063016891,L, + 288663487500,-0.081187322735786,L, + 290587910750,-0.081476435065269,L, + 292512334000,-0.081763915717602,L, + 294436757250,-0.082050725817680,L, + 296361180500,-0.082336410880089,L, + 298285603750,-0.082620486617088,L, + 300210027000,-0.082903444766998,L, + 302134450250,-0.083184808492661,L, + 304058873500,-0.083465069532394,L, + 305983296750,-0.083743765950203,L, + 307907720000,-0.084020912647247,L, + 309832143250,-0.084297001361847,L, + 311756566500,-0.084571108222008,L, + 313680989750,-0.084843263030052,L, + 315605413000,-0.085113480687141,L, + 317529836250,-0.085381820797920,L, + 319454259500,-0.085647851228714,L, + 321378682750,-0.085911668837070,L, + 323303106000,-0.086171463131905,L, + 325227529250,-0.086427867412567,L, + 327151952500,-0.086679734289646,L, + 329076375750,-0.086924225091934,L, + 331000799000,-0.087155953049660,L, + 332925222250,-0.087339788675308,L, + 334849645500,-0.016422979533672,L, + 344471761750,-0.016422979533672,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.750929474830627 + KeyVer: 4005 + KeyCount: 95 + Key: + 0,0.750929474830627,L, + 7697693000,0.783230423927307,L, + 9622116250,0.791305422782898,L, + 28866348750,0.872057795524597,L, + 30790772000,0.880132794380188,L, + 42337311500,0.928584218025208,L, + 44261734750,0.936659216880798,L, + 53883851000,0.977035403251648,L, + 55808274250,0.985110402107239,L, + 57732697500,0.993185877799988,L, + 59657120750,1.001260876655579,L, + 61581544000,1.009336352348328,L, + 63505967250,1.017411351203918,L, + 65430390500,1.025486826896667,L, + 67354813750,1.033561825752258,L, + 76976930000,1.073938012123108,L, + 78901353250,1.082013010978699,L, + 86599046250,1.114313960075378,L, + 88523469500,1.122388958930969,L, + 90447892750,1.130464434623718,L, + 94296739250,1.146614909172058,L, + 96221162500,1.154689908027649,L, + 98145585750,1.162765383720398,L, + 100070009000,1.170840382575989,L, + 101994432250,1.178915858268738,L, + 103918855500,1.186990857124329,L, + 111616548500,1.219291806221008,L, + 113540971750,1.227366805076599,L, + 115465395000,1.231255173683167,L, + 117389818250,1.235143065452576,L, + 125087511250,1.250695586204529,L, + 127011934500,1.254583477973938,L, + 128936357750,1.258471846580505,L, + 130860781000,1.262359738349915,L, + 140482897250,1.281800389289856,L, + 142407320500,1.285688757896423,L, + 144331743750,1.289576411247253,L, + 153953860000,1.309017062187195,L, + 155878283250,1.312905430793762,L, + 157802706500,1.316793322563171,L, + 159727129750,1.320681452751160,L, + 161651553000,1.324569344520569,L, + 167424822750,1.336233735084534,L, + 169349246000,1.340122103691101,L, + 171273669250,1.344009995460510,L, + 177046939000,1.355674386024475,L, + 178971362250,1.359562277793884,L, + 180895785500,1.363450407981873,L, + 182820208750,1.367338776588440,L, + 188593478500,1.379003167152405,L, + 192442325000,1.386778950691223,L, + 194366748250,1.390667080879211,L, + 196291171500,1.394555449485779,L, + 205913287750,1.413996100425720,L, + 207837711000,1.417883753776550,L, + 209762134250,1.421772122383118,L, + 219384250500,1.441212773323059,L, + 221308673750,1.445100665092468,L, + 232855213250,1.468429446220398,L, + 234779636500,1.472317337989807,L, + 236704059750,1.476205468177795,L, + 238628483000,1.480093836784363,L, + 240552906250,1.483981966972351,L, + 242477329500,1.487869858741760,L, + 248250599250,1.499534249305725,L, + 250175022500,1.503422141075134,L, + 252099445750,1.507310509681702,L, + 254023869000,1.511198639869690,L, + 255948292250,1.515086531639099,L, + 267494831750,1.538415312767029,L, + 269419255000,1.542303204536438,L, + 279041371250,1.561743855476379,L, + 280965794500,1.565632224082947,L, + 282890217750,1.569520354270935,L, + 284814641000,1.573408007621765,L, + 292512334000,1.588960528373718,L, + 294436757250,1.592848896980286,L, + 296361180500,1.596737027168274,L, + 298285603750,1.600624918937683,L, + 300210027000,1.604513049125671,L, + 302134450250,1.608400940895081,L, + 305983296750,1.616177201271057,L, + 307907720000,1.620065569877625,L, + 311756566500,1.627841830253601,L, + 313680989750,1.631729722023010,L, + 317529836250,1.639505982398987,L, + 319454259500,1.643393874168396,L, + 321378682750,1.647282242774963,L, + 327151952500,1.658946633338928,L, + 329076375750,1.662834525108337,L, + 331000799000,1.666722655296326,L, + 332925222250,1.670610547065735,L, + 334849645500,0.738551020622253,L, + 336774068750,0.750929474830627,L, + 344471761750,0.750929474830627,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 33.480952103761588 + KeyVer: 4005 + KeyCount: 176 + Key: + 0,33.480952103761588,L, + 1924423250,33.480125650872019,L, + 3848846500,33.477649707297893,L, + 5773269750,33.473510612660867,L, + 7697693000,33.467698121677195,L, + 9622116250,33.460205404157705,L, + 11546539500,33.451025629913218,L, + 13470962750,33.440169044227503,L, + 15395386000,33.427635647100544,L, + 17319809250,33.413439098910693,L, + 19244232500,33.397589644941704,L, + 21168655750,33.380107775761083,L, + 23093079000,33.361017397030921,L, + 25017502250,33.340345829507910,L, + 26941925500,33.318144299610815,L, + 28866348750,33.294436713001730,L, + 30790772000,33.269291371572365,L, + 32715195250,33.242762916836078,L, + 34639618500,33.214909405400803,L, + 36564041750,33.185799139158249,L, + 38488465000,33.155527740756796,L, + 40412888250,33.124166927182728,L, + 42337311500,33.091812321084426,L, + 44261734750,33.058576620583189,L, + 46186158000,33.024541787949069,L, + 48110581250,32.989841011870865,L, + 50035004500,32.954573330091556,L, + 51959427750,32.918865101110782,L, + 53883851000,32.882849513617359,L, + 55808274250,32.846635850638002,L, + 57732697500,32.810360715956115,L, + 59657120750,32.774147052976758,L, + 61581544000,32.738121220199581,L, + 63505967250,32.702419821407972,L, + 65430390500,32.667152139628662,L, + 67354813750,32.632444533361294,L, + 69279237000,32.598419946010921,L, + 71203660250,32.565177415320520,L, + 73128083500,32.532819394127628,L, + 75052506750,32.501458580553560,L, + 76976930000,32.471187182152107,L, + 78901353250,32.442083746098724,L, + 80825776500,32.414230234663457,L, + 82750199750,32.387694949737991,L, + 84674623000,32.362546193214044,L, + 86599046250,32.338855682077885,L, + 88523469500,32.316643906897035,L, + 90447892750,32.295972339374025,L, + 92372316000,32.276881960643863,L, + 94296739250,32.259410336746996,L, + 96221162500,32.243550637494252,L, + 98145585750,32.229350674209812,L, + 100070009000,32.216820692177443,L, + 101994432250,32.205964106491727,L, + 103918855500,32.196784332247240,L, + 105843278750,32.189295029822333,L, + 107767702000,32.183479123744078,L, + 109692125250,32.179333198917881,L, + 111616548500,32.176864085532927,L, + 113540971750,32.176044462832529,L, + 115465395000,32.189629709091662,L, + 117389818250,32.229739994992507,L, + 119314241500,32.295402018578329,L, + 121238664750,32.385727855257031,L, + 123163088000,32.499863731382369,L, + 125087511250,32.637020760105194,L, + 127011934500,32.796420299860138,L, + 128936357750,32.977389577013952,L, + 130860781000,33.179221666987537,L, + 132785204250,33.401295022566430,L, + 134709627500,33.642994926725322,L, + 136634050750,33.903754473763108,L, + 138558474000,34.183027248546189,L, + 140482897250,34.480290741603056,L, + 142407320500,34.795046349124306,L, + 144331743750,35.126836448435533,L, + 146256167000,35.475186341389438,L, + 148180590250,35.839693046824991,L, + 150105013500,36.219926262824465,L, + 152029436750,36.615510328983525,L, + 153953860000,37.026049094330311,L, + 155878283250,37.451201049406308,L, + 157802706500,37.890600779090938,L, + 159727129750,38.343954585249882,L, + 161651553000,38.810907298046303,L, + 163575976250,39.291168634440474,L, + 165500399500,39.784448311392673,L, + 167424822750,40.290456045863174,L, + 169349246000,40.808928875568924,L, + 171273669250,41.339603838226886,L, + 173198092500,41.882224801743185,L, + 175122515750,42.436562954780626,L, + 177046939000,43.002375825623666,L, + 178971362250,43.579431187840534,L, + 180895785500,44.167517305566960,L, + 182820208750,44.766436103317005,L, + 184744632000,45.375972430131824,L, + 186669055250,45.995945285998403,L, + 188593478500,46.626142935052478,L, + 190517901750,47.266384377281049,L, + 192442325000,47.916512518333192,L, + 194366748250,48.576336112912152,L, + 196291171500,49.245725387423711,L, + 198215594750,49.924472021098161,L, + 200140018000,50.612449655435881,L, + 202064441250,51.309494365896775,L, + 203988864500,52.015469548697446,L, + 205913287750,52.730242015149088,L, + 207837711000,53.453647840711604,L, + 209762134250,54.185564081979955,L, + 211686557500,54.925867795549060,L, + 213610980750,55.674436038013873,L, + 215535404000,56.431139035780156,L, + 217459827250,57.195850430348273,L, + 219384250500,57.968478014164418,L, + 221308673750,58.748888598539786,L, + 223233097000,59.536996806109741,L, + 225157520250,60.332659202901723,L, + 227081943500,61.135800656834860,L, + 229006366750,61.946318715071598,L, + 230930790000,62.764110924774393,L, + 232855213250,63.589074833105684,L, + 234779636500,64.421142138173778,L, + 236704059750,65.260183066384457,L, + 238628483000,66.106142976224334,L, + 240552906250,66.958926245045049,L, + 242477329500,67.818444080387394,L, + 244401752750,68.684621350170488,L, + 246326176000,69.557376092124287,L, + 248250599250,70.436626343978773,L, + 250175022500,71.322303803842217,L, + 252099445750,72.214319679255439,L, + 254023869000,73.112605668326708,L, + 255948292250,74.017100299353515,L, + 257872715500,74.927735270444160,L, + 259797138750,75.844428619328596,L, + 261721562000,76.767118874304288,L, + 263645985250,77.695737733479547,L, + 265570408500,78.630216894962672,L, + 267494831750,79.570515377618634,L, + 269419255000,80.516523898420729,L, + 271343678250,81.468215136612258,L, + 273268101500,82.425534450679862,L, + 275192524750,83.388372557596838,L, + 277116948000,84.356715796984830,L, + 279041371250,85.330489036762984,L, + 280965794500,86.309603484472078,L, + 282890217750,87.294024989166260,L, + 284814641000,88.283678418764666,L, + 286739064250,89.278488641186428,L, + 288663487500,90.278401014918174,L, + 290587910750,91.283333577689874,L, + 292512334000,92.293245348366511,L, + 294436757250,93.307992892975506,L, + 296361180500,94.327548890760184,L, + 298285603750,95.351790398315487,L, + 300210027000,96.380635453371369,L, + 302134450250,97.413954282333606,L, + 304058873500,98.451623941797124,L, + 305983296750,99.493507827978547,L, + 307907720000,100.539421525770265,L, + 309832143250,101.589160129497188,L, + 311756566500,102.642491412727537,L, + 313680989750,103.699087526381135,L, + 315605413000,104.758552319486142,L, + 317529836250,105.820380358043963,L, + 319454259500,106.883861302380936,L, + 321378682750,107.948011605256568,L, + 323303106000,109.011376436377645,L, + 325227529250,110.071640361615536,L, + 327151952500,111.124835041062482,L, + 329076375750,112.162935002443717,L, + 331000799000,113.164828131034767,L, + 332925222250,113.973590830654814,L, + 334849645500,33.480952103761588,L, + 344471761750,33.480952103761588,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -31.734862053774528 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-31.734862053774528,L, + 1924423250,-31.708927825496026,L, + 3848846500,-31.631275404822262,L, + 5773269750,-31.502160923847111,L, + 7697693000,-31.321864420326545,L, + 9622116250,-31.090713743340721,L, + 11546539500,-30.809077723104821,L, + 13470962750,-30.477362755874456,L, + 15395386000,-30.096009388851098,L, + 17319809250,-29.665523056033322,L, + 19244232500,-29.186426266892635,L, + 21168655750,-28.659323493170586,L, + 23093079000,-28.084834574534344,L, + 25017502250,-27.463661312921136,L, + 26941925500,-26.796522585741098,L, + 28866348750,-26.084229477958171,L, + 30790772000,-25.327632348124023,L, + 32715195250,-24.527622535925332,L, + 34639618500,-23.685171635771539,L, + 36564041750,-22.801309298680014,L, + 38488465000,-21.877121524728796,L, + 40412888250,-20.913754078151147,L, + 42337311500,-19.912424440166621,L, + 44261734750,-18.874409856150010,L, + 46186158000,-17.801069533746144,L, + 48110581250,-16.693800246640286,L, + 50035004500,-15.554087560976916,L, + 51959427750,-14.383485344792208,L, + 53883851000,-13.183613206693098,L, + 55808274250,-11.956153080762700,L, + 57732697500,-10.702873985996046,L, + 59657120750,-9.425594460259646,L, + 61581544000,-8.126211588595471,L, + 63505967250,-6.806691611710835,L, + 65430390500,-5.469069925978398,L, + 67354813750,-4.115437423057829,L, + 69279237000,-2.747967170322244,L, + 71203660250,-1.368879192695309,L, + 73128083500,0.019532636813969,L, + 75052506750,1.414926407088764,L, + 76976930000,2.814881679847117,L, + 78901353250,4.216945133181474,L, + 80825776500,5.618607099458680,L, + 82750199750,7.017292810805059,L, + 84674623000,8.410413198638354,L, + 86599046250,9.795299793427212,L, + 88523469500,11.169283698753450,L, + 90447892750,12.529630277628133,L, + 92372316000,13.873602331741379,L, + 94296739250,15.198424242969232,L, + 96221162500,16.501291364883755,L, + 98145585750,17.779404173698893,L, + 100070009000,19.029953754118488,L, + 101994432250,20.250114115373442,L, + 103918855500,21.437071219525723,L, + 105843278750,22.587997368258947,L, + 107767702000,23.700116089675504,L, + 109692125250,24.770621883573821,L, + 111616548500,25.796765598812968,L, + 113540971750,26.775825405008696,L, + 115465395000,27.729666445241484,L, + 117389818250,28.682149985376736,L, + 119314241500,29.633458732974745,L, + 121238664750,30.583766857859349,L, + 123163088000,31.533173397773510,L, + 125087511250,32.481787635743956,L, + 127011934500,33.429677873662378,L, + 128936357750,34.376898753042141,L, + 130860781000,35.323521990869523,L, + 132785204250,36.269581738090388,L, + 134709627500,37.215108730555990,L, + 136634050750,38.160150779590523,L, + 138558474000,39.104724960666907,L, + 140482897250,40.048862009636416,L, + 142407320500,40.992585832161133,L, + 144331743750,41.935910088619408,L, + 146256167000,42.878855269578750,L, + 148180590250,43.821428205228322,L, + 150105013500,44.763666461608572,L, + 152029436750,45.705552963246561,L, + 153953860000,46.647108200709802,L, + 155878283250,47.588352664565818,L, + 157802706500,48.529279524625423,L, + 159727129750,49.469912686550714,L, + 161651553000,50.410241905057944,L, + 163575976250,51.350287670714614,L, + 165500399500,52.290049983520738,L, + 167424822750,53.229532258570885,L, + 169349246000,54.168734495865067,L, + 171273669250,55.107684016159951,L, + 173198092500,56.046356913793460,L, + 175122515750,56.984763434049327,L, + 177046939000,57.922920652400499,L, + 178971362250,58.860821738657791,L, + 180895785500,59.798456447537454,L, + 182820208750,60.735838439417826,L, + 184744632000,61.672981374677249,L, + 186669055250,62.609864762748217,L, + 188593478500,63.546488603630721,L, + 190517901750,64.482880218081434,L, + 192442325000,65.419019115532876,L, + 194366748250,66.354912126174185,L, + 196291171500,67.290545589627044,L, + 198215594750,68.225939996458933,L, + 200140018000,69.161088516480717,L, + 202064441250,70.095970659124873,L, + 203988864500,71.030606914958909,L, + 205913287750,71.964997283982811,L, + 207837711000,72.899121275629099,L, + 209762134250,73.833006210654432,L, + 211686557500,74.766624768302137,L, + 213610980750,75.699983778761379,L, + 215535404000,76.633076411842978,L, + 217459827250,77.565909497736143,L, + 219384250500,78.498462545873323,L, + 221308673750,79.430749216632861,L, + 223233097000,80.362762679825622,L, + 225157520250,81.294489275073232,L, + 227081943500,82.225949492943215,L, + 229006366750,83.157109182489705,L, + 230930790000,84.087982004091074,L, + 232855213250,85.018540636990608,L, + 234779636500,85.948812401945005,L, + 236704059750,86.878769978197596,L, + 238628483000,87.808406535559186,L, + 240552906250,88.737735734408119,L, + 242477329500,89.666730253987737,L, + 244401752750,90.595390094298011,L, + 246326176000,91.523701594960613,L, + 248250599250,92.451657925786392,L, + 250175022500,93.379259086775320,L, + 252099445750,94.306484587359890,L, + 254023869000,95.233334427540129,L, + 255948292250,96.159774456370158,L, + 257872715500,97.085838824795829,L, + 259797138750,98.011452400736289,L, + 261721562000,98.936656165326553,L, + 263645985250,99.861422797809922,L, + 265570408500,100.785697656673065,L, + 267494831750,101.709521723050983,L, + 269419255000,102.632847185619482,L, + 271343678250,103.555626233054397,L, + 273268101500,104.477899846490715,L, + 275192524750,105.399599724036761,L, + 277116948000,106.320719035503359,L, + 279041371250,107.241223629944656,L, + 280965794500,108.161072526225638,L, + 282890217750,109.080272554535455,L, + 284814641000,109.998721262036582,L, + 286739064250,110.916480120431544,L, + 288663487500,111.833398865558578,L, + 290587910750,112.749484327606893,L, + 292512334000,113.664675034873923,L, + 294436757250,114.578895855278816,L, + 296361180500,115.492078486929870,L, + 298285603750,116.404181948692056,L, + 300210027000,117.315083297160328,L, + 302134450250,118.224673249307955,L, + 304058873500,119.132869842864906,L, + 305983296750,120.039509153291107,L, + 307907720000,120.944413595668109,L, + 309832143250,121.847405585077524,L, + 311756566500,122.748252895087546,L, + 313680989750,123.646668657753054,L, + 315605413000,124.542243061723838,L, + 317529836250,125.434538974893016,L, + 319454259500,126.322941680235303,L, + 321378682750,127.206549592780249,L, + 323303106000,128.084160599233911,L, + 325227529250,128.953875907007074,L, + 327151952500,129.812512647946477,L, + 329076375750,130.653978293312520,L, + 331000799000,131.462645370284179,L, + 332925222250,132.123192964915148,L, + 334849645500,-31.734862053774528,L, + 336774068750,-31.734858638679942,L, + 338698492000,-31.734862053774528,L, + 340622915250,-31.734858638679942,L, + 342547338500,-31.734858638679942,L, + 344471761750,-31.734862053774528,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 64.711684725087366 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,64.711684725087366,L, + 1924423250,64.711322725061365,L, + 3848846500,64.710209404226646,L, + 5773269750,64.708351592772402,L, + 7697693000,64.705742460509470,L, + 9622116250,64.702375177248655,L, + 11546539500,64.698263403368315,L, + 13470962750,64.693386648300930,L, + 15395386000,64.687758572424855,L, + 17319809250,64.681386005929241,L, + 19244232500,64.674268948814088,L, + 21168655750,64.666421061457754,L, + 23093079000,64.657849174049403,L, + 25017502250,64.648573777156543,L, + 26941925500,64.638601700968337,L, + 28866348750,64.627960266241473,L, + 30790772000,64.616676793732623,L, + 32715195250,64.604758113630979,L, + 34639618500,64.592258867449871,L, + 36564041750,64.579192715567658,L, + 38488465000,64.565607469308517,L, + 40412888250,64.551516789050794,L, + 42337311500,64.537002637064546,L, + 44261734750,64.522078673728089,L, + 46186158000,64.506806370743959,L, + 48110581250,64.491219879058008,L, + 50035004500,64.475387500561951,L, + 51959427750,64.459357046579953,L, + 53883851000,64.443189988814552,L, + 55808274250,64.426927308400778,L, + 57732697500,64.410644137419496,L, + 59657120750,64.394395117384050,L, + 61581544000,64.378221229429485,L, + 63505967250,64.362190775447488,L, + 65430390500,64.346358396951416,L, + 67354813750,64.330771905265479,L, + 69279237000,64.315499602281349,L, + 71203660250,64.300575638944892,L, + 73128083500,64.286054656769466,L, + 75052506750,64.271977636890085,L, + 76976930000,64.258385560441781,L, + 78901353250,64.245319408559567,L, + 80825776500,64.232813332189295,L, + 82750199750,64.220901482276801,L, + 84674623000,64.209618009767965,L, + 86599046250,64.198976575041101,L, + 88523469500,64.189004498852896,L, + 90447892750,64.179729101960035,L, + 92372316000,64.171157214551670,L, + 94296739250,64.163309327195336,L, + 96221162500,64.156192270080197,L, + 98145585750,64.149819703584583,L, + 100070009000,64.144205288086837,L, + 101994432250,64.139321702830287,L, + 103918855500,64.135209928949948,L, + 105843278750,64.131835815499969,L, + 107767702000,64.129226683237022,L, + 109692125250,64.127368871782792,L, + 111616548500,64.126255550948073,L, + 113540971750,64.125886720732893,L, + 115465395000,64.137279476268461,L, + 117389818250,64.170877176795699,L, + 119314241500,64.225901180749247,L, + 121238664750,64.301586506942058,L, + 123163088000,64.397215985511266,L, + 125087511250,64.512127088107391,L, + 127011934500,64.645698267515968,L, + 128936357750,64.797321636900861,L, + 130860781000,64.966437120750143,L, + 132785204250,65.152505134119352,L, + 134709627500,65.355020243009946,L, + 136634050750,65.573504334180001,L, + 138558474000,65.807506615144305,L, + 140482897250,66.056576293417621,L, + 142407320500,66.320303557649780,L, + 144331743750,66.598299087058066,L, + 146256167000,66.890187221238151,L, + 148180590250,67.195599129974823,L, + 150105013500,67.514186473620441,L, + 152029436750,67.845635063473182,L, + 153953860000,68.189623880642031,L, + 155878283250,68.545845566614361,L, + 157802706500,68.914020083634199,L, + 159727129750,69.293874224134754,L, + 161651553000,69.685121120170862,L, + 163575976250,70.087528545310747,L, + 165500399500,70.500830122176794,L, + 167424822750,70.924814114904734,L, + 169349246000,71.359227806495255,L, + 171273669250,71.803873121462445,L, + 173198092500,72.258531493752869,L, + 175122515750,72.722991187502231,L, + 177046939000,73.197074617792140,L, + 178971362250,73.680583709136641,L, + 180895785500,74.173334046428167,L, + 182820208750,74.675154874937448,L, + 184744632000,75.185875439935259,L, + 186669055250,75.705331816881483,L, + 188593478500,76.233366911425250,L, + 190517901750,76.769823629215608,L, + 192442325000,77.314551706090853,L, + 194366748250,77.867407708078403,L, + 196291171500,78.428268691773198,L, + 198215594750,78.996977562824327,L, + 200140018000,79.573425038205059,L, + 202064441250,80.157467683942841,L, + 203988864500,80.748989386821776,L, + 205913287750,81.347880863815149,L, + 207837711000,81.954005511139542,L, + 209762134250,82.567274536335773,L, + 211686557500,83.187564995998756,L, + 213610980750,83.814774437290950,L, + 215535404000,84.448800407374819,L, + 217459827250,85.089540453412795,L, + 219384250500,85.736912613134834,L, + 221308673750,86.390800773325068,L, + 223233097000,87.051136632091783,L, + 225157520250,87.717824566786604,L, + 227081943500,88.390755294382799,L, + 229006366750,89.069874173367026,L, + 230930790000,89.755085581090881,L, + 232855213250,90.446307555284349,L, + 234779636500,91.143478624244892,L, + 236704059750,91.846503165324123,L, + 238628483000,92.555312876630353,L, + 240552906250,93.269846286461046,L, + 242477329500,93.990028262735322,L, + 244401752750,94.715783673372314,L, + 246326176000,95.447044216480350,L, + 248250599250,96.183748420356864,L, + 250175022500,96.925841643488511,L, + 252099445750,97.673241923605246,L, + 254023869000,98.425915109761235,L, + 255948292250,99.183758749118908,L, + 257872715500,99.946766011489117,L, + 259797138750,100.714854934601789,L, + 261721562000,101.487964046754428,L, + 263645985250,102.266018215866140,L, + 265570408500,103.049017441936940,L, + 267494831750,103.836866102318439,L, + 269419255000,104.629523215875608,L, + 271343678250,105.426934141095117,L, + 273268101500,106.229030576085236,L, + 275192524750,107.035798860467651,L, + 277116948000,107.847143371593958,L, + 279041371250,108.663050449085830,L, + 280965794500,109.483431300484057,L, + 282890217750,110.308258605031952,L, + 284814641000,111.137477721216158,L, + 286739064250,111.971006686766628,L, + 288663487500,112.808811350737528,L, + 290587910750,113.650837071615499,L, + 292512334000,114.497015547508823,L, + 294436757250,115.347264816147458,L, + 296361180500,116.201516575639729,L, + 298285603750,117.059716184472265,L, + 300210027000,117.921768019996676,L, + 302134450250,118.787562799186247,L, + 304058873500,119.657018559770933,L, + 305983296750,120.529998697967358,L, + 307907720000,121.406339289235405,L, + 309832143250,122.285903729791713,L, + 311756566500,123.168473453582806,L, + 313680989750,124.053775253041906,L, + 315605413000,124.941481279088848,L, + 317529836250,125.831181720373436,L, + 319454259500,126.722248199492014,L, + 321378682750,127.613874754122534,L, + 323303106000,128.504845610592753,L, + 325227529250,129.393234655556682,L, + 327151952500,130.275681435942715,L, + 329076375750,131.145465045607580,L, + 331000799000,131.984963596492634,L, + 332925222250,132.662600324426961,L, + 334849645500,64.711684725087366,L, + 336774068750,64.709772272119764,L, + 338698492000,64.708249139934864,L, + 340622915250,64.707299743640220,L, + 342547338500,64.707422687045280,L, + 344471761750,64.711684725087366,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.318087428808212 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.318087428808212,L, + 1924423250,0.318095058202744,L, + 3848846500,0.318117916584015,L, + 5773269750,0.318156152963638,L, + 7697693000,0.318209886550903,L, + 9622116250,0.318279176950455,L, + 11546539500,0.318363964557648,L, + 13470962750,0.318464249372482,L, + 15395386000,0.318580090999603,L, + 17319809250,0.318711251020432,L, + 19244232500,0.318857729434967,L, + 21168655750,0.319019287824631,L, + 23093079000,0.319195717573166,L, + 25017502250,0.319386720657349,L, + 26941925500,0.319591879844666,L, + 28866348750,0.319810897111893,L, + 30790772000,0.320043265819550,L, + 32715195250,0.320288389921188,L, + 34639618500,0.320545822381973,L, + 36564041750,0.320814728736877,L, + 38488465000,0.321094483137131,L, + 40412888250,0.321384221315384,L, + 42337311500,0.321683168411255,L, + 44261734750,0.321990370750427,L, + 46186158000,0.322304785251617,L, + 48110581250,0.322625428438187,L, + 50035004500,0.322951346635818,L, + 51959427750,0.323281288146973,L, + 53883851000,0.323614120483398,L, + 55808274250,0.323948740959167,L, + 57732697500,0.324283987283707,L, + 59657120750,0.324618637561798,L, + 61581544000,0.324951499700546,L, + 63505967250,0.325281411409378,L, + 65430390500,0.325607240200043,L, + 67354813750,0.325927942991257,L, + 69279237000,0.326242387294769,L, + 71203660250,0.326549619436264,L, + 73128083500,0.326848477125168,L, + 75052506750,0.327138304710388,L, + 76976930000,0.327418029308319,L, + 78901353250,0.327686995267868,L, + 80825776500,0.327944368124008,L, + 82750199750,0.328189522027969,L, + 84674623000,0.328421860933304,L, + 86599046250,0.328640878200531,L, + 88523469500,0.328846037387848,L, + 90447892750,0.329037070274353,L, + 92372316000,0.329213470220566,L, + 94296739250,0.329375028610229,L, + 96221162500,0.329521477222443,L, + 98145585750,0.329652696847916,L, + 100070009000,0.329768508672714,L, + 101994432250,0.329868853092194,L, + 103918855500,0.329953640699387,L, + 105843278750,0.330022871494293,L, + 107767702000,0.330076634883881,L, + 109692125250,0.330114841461182,L, + 111616548500,0.330137729644775,L, + 113540971750,0.330145299434662,L, + 115465395000,0.330100327730179,L, + 117389818250,0.329967379570007,L, + 119314241500,0.329749912023544,L, + 121238664750,0.329450666904449,L, + 123163088000,0.329072594642639,L, + 125087511250,0.328618198633194,L, + 127011934500,0.328090101480484,L, + 128936357750,0.327490627765656,L, + 130860781000,0.326822012662888,L, + 132785204250,0.326086282730103,L, + 134709627500,0.325285613536835,L, + 136634050750,0.324421733617783,L, + 138558474000,0.323496580123901,L, + 140482897250,0.322511821985245,L, + 142407320500,0.321469098329544,L, + 144331743750,0.320369958877563,L, + 146256167000,0.319215923547745,L, + 148180590250,0.318008393049240,L, + 150105013500,0.316748738288879,L, + 152029436750,0.315438270568848,L, + 153953860000,0.314078211784363,L, + 155878283250,0.312669813632965,L, + 157802706500,0.311214089393616,L, + 159727129750,0.309712290763855,L, + 161651553000,0.308165371417999,L, + 163575976250,0.306574374437332,L, + 165500399500,0.304940253496170,L, + 167424822750,0.303263872861862,L, + 169349246000,0.301546305418015,L, + 171273669250,0.299788296222687,L, + 173198092500,0.297990709543228,L, + 175122515750,0.296154290437698,L, + 177046939000,0.294279873371124,L, + 178971362250,0.292368203401566,L, + 180895785500,0.290419936180115,L, + 182820208750,0.288435876369476,L, + 184744632000,0.286416590213776,L, + 186669055250,0.284362792968750,L, + 188593478500,0.282275080680847,L, + 190517901750,0.280154049396515,L, + 192442325000,0.278000295162201,L, + 194366748250,0.275814443826675,L, + 196291171500,0.273596942424774,L, + 198215594750,0.271348357200623,L, + 200140018000,0.269069254398346,L, + 202064441250,0.266760081052780,L, + 203988864500,0.264421314001083,L, + 205913287750,0.262053459882736,L, + 207837711000,0.259656965732574,L, + 209762134250,0.257232218980789,L, + 211686557500,0.254779726266861,L, + 213610980750,0.252299904823303,L, + 215535404000,0.249793082475662,L, + 217459827250,0.247259721159935,L, + 219384250500,0.244700208306313,L, + 221308673750,0.242114827036858,L, + 223233097000,0.239504039287567,L, + 225157520250,0.236868113279343,L, + 227081943500,0.234207496047020,L, + 229006366750,0.231522396206856,L, + 230930790000,0.228813216090202,L, + 232855213250,0.226080283522606,L, + 234779636500,0.223323851823807,L, + 236704059750,0.220544248819351,L, + 238628483000,0.217741757631302,L, + 240552906250,0.214916661381721,L, + 242477329500,0.212069243192673,L, + 244401752750,0.209199801087379,L, + 246326176000,0.206308528780937,L, + 248250599250,0.203395739197731,L, + 250175022500,0.200461715459824,L, + 252099445750,0.197506636381149,L, + 254023869000,0.194530770182610,L, + 255948292250,0.191534370183945,L, + 257872715500,0.188517615199089,L, + 259797138750,0.185480803251266,L, + 261721562000,0.182424128055573,L, + 263645985250,0.179347768425941,L, + 265570408500,0.176252022385597,L, + 267494831750,0.173137024044991,L, + 269419255000,0.170003086328506,L, + 271343678250,0.166850313544273,L, + 273268101500,0.163678959012032,L, + 275192524750,0.160489201545715,L, + 277116948000,0.157281294465065,L, + 279041371250,0.154055416584015,L, + 280965794500,0.150811776518822,L, + 282890217750,0.147550612688065,L, + 284814641000,0.144272103905678,L, + 286739064250,0.140976473689079,L, + 288663487500,0.137663960456848,L, + 290587910750,0.134334817528725,L, + 292512334000,0.130989238619804,L, + 294436757250,0.127627521753311,L, + 296361180500,0.124249950051308,L, + 298285603750,0.120856828987598,L, + 300210027000,0.117448538541794,L, + 302134450250,0.114025324583054,L, + 304058873500,0.110587723553181,L, + 305983296750,0.107136175036430,L, + 307907720000,0.103671275079250,L, + 309832143250,0.100193716585636,L, + 311756566500,0.096704237163067,L, + 313680989750,0.093203969299793,L, + 315605413000,0.089694149792194,L, + 317529836250,0.086176551878452,L, + 319454259500,0.082653440535069,L, + 321378682750,0.079128116369247,L, + 323303106000,0.075605399906635,L, + 325227529250,0.072092957794666,L, + 327151952500,0.068603970110416,L, + 329076375750,0.065164923667908,L, + 331000799000,0.061845846474171,L, + 332925222250,0.059166591614485,L, + 334849645500,0.318087428808212,L, + 336774068750,0.318759977817535,L, + 338698492000,0.319297701120377,L, + 340622915250,0.319633424282074,L, + 342547338500,0.319603621959686,L, + 344471761750,0.318087428808212,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.318087458610535 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.318087458610535,L, + 1924423250,0.318217873573303,L, + 3848846500,0.318610578775406,L, + 5773269750,0.319267421960831,L, + 7697693000,0.320189744234085,L, + 9622116250,0.321378529071808,L, + 11546539500,0.322834193706512,L, + 13470962750,0.324556529521942,L, + 15395386000,0.326544731855392,L, + 17319809250,0.328797250986099,L, + 19244232500,0.331311851739883,L, + 21168655750,0.334085434675217,L, + 23093079000,0.337113916873932,L, + 25017502250,0.340392529964447,L, + 26941925500,0.343915194272995,L, + 28866348750,0.347675025463104,L, + 30790772000,0.351664066314697,L, + 32715195250,0.355873018503189,L, + 34639618500,0.360291689634323,L, + 36564041750,0.364908665418625,L, + 38488465000,0.369711339473724,L, + 40412888250,0.374686092138290,L, + 42337311500,0.379818201065063,L, + 44261734750,0.385091811418533,L, + 46186158000,0.390490204095840,L, + 48110581250,0.395995795726776,L, + 50035004500,0.401590228080750,L, + 51959427750,0.407254427671432,L, + 53883851000,0.412968814373016,L, + 55808274250,0.418713569641113,L, + 57732697500,0.424468368291855,L, + 59657120750,0.430213004350662,L, + 61581544000,0.435927480459213,L, + 63505967250,0.441591650247574,L, + 65430390500,0.447186052799225,L, + 67354813750,0.452691704034805,L, + 69279237000,0.458090126514435,L, + 71203660250,0.463363766670227,L, + 73128083500,0.468495815992355,L, + 75052506750,0.473470568656921,L, + 76976930000,0.478273332118988,L, + 78901353250,0.482890188694000,L, + 80825776500,0.487308859825134,L, + 82750199750,0.491517901420593,L, + 84674623000,0.495506882667542,L, + 86599046250,0.499266713857651,L, + 88523469500,0.502789378166199,L, + 90447892750,0.506067872047424,L, + 92372316000,0.509096503257751,L, + 94296739250,0.511870026588440,L, + 96221162500,0.514384627342224,L, + 98145585750,0.516637265682220,L, + 100070009000,0.518625438213348,L, + 101994432250,0.520347774028778,L, + 103918855500,0.521803379058838,L, + 105843278750,0.522992193698883,L, + 107767702000,0.523914456367493,L, + 109692125250,0.524571418762207,L, + 111616548500,0.524963974952698,L, + 113540971750,0.525094449520111,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788558483124,L, + 119314241500,0.524414598941803,L, + 121238664750,0.523900091648102,L, + 123163088000,0.523249983787537,L, + 125087511250,0.522468745708466,L, + 127011934500,0.521560728549957,L, + 128936357750,0.520529866218567,L, + 130860781000,0.519380211830139,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738593578339,L, + 136634050750,0.515253245830536,L, + 138558474000,0.513662457466125,L, + 140482897250,0.511969208717346,L, + 142407320500,0.510176360607147,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302118301392,L, + 148180590250,0.504225909709930,L, + 150105013500,0.502060055732727,L, + 152029436750,0.499806791543961,L, + 153953860000,0.497468262910843,L, + 155878283250,0.495046585798264,L, + 157802706500,0.492543667554855,L, + 159727129750,0.489961355924606,L, + 161651553000,0.487301528453827,L, + 163575976250,0.484565913677216,L, + 165500399500,0.481756180524826,L, + 167424822750,0.478873848915100,L, + 169349246000,0.475920647382736,L, + 171273669250,0.472897768020630,L, + 173198092500,0.469806939363480,L, + 175122515750,0.466649413108826,L, + 177046939000,0.463426470756531,L, + 178971362250,0.460139513015747,L, + 180895785500,0.456789702177048,L, + 182820208750,0.453378170728683,L, + 184744632000,0.449906200170517,L, + 186669055250,0.446374833583832,L, + 188593478500,0.442785143852234,L, + 190517901750,0.439138233661652,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676536798477,L, + 196291171500,0.427863717079163,L, + 198215594750,0.423997461795807,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108191013336,L, + 203988864500,0.412086933851242,L, + 205913287750,0.408015489578247,L, + 207837711000,0.403894871473312,L, + 209762134250,0.399725824594498,L, + 211686557500,0.395508944988251,L, + 213610980750,0.391245037317276,L, + 215535404000,0.386934787034988,L, + 217459827250,0.382578849792480,L, + 219384250500,0.378177911043167,L, + 221308673750,0.373732537031174,L, + 223233097000,0.369243502616882,L, + 225157520250,0.364711254835129,L, + 227081943500,0.360136479139328,L, + 229006366750,0.355519652366638,L, + 230930790000,0.350861519575119,L, + 232855213250,0.346162319183350,L, + 234779636500,0.341422885656357,L, + 236704059750,0.336643517017365,L, + 238628483000,0.331824868917465,L, + 240552906250,0.326967298984528,L, + 242477329500,0.322071373462677,L, + 244401752750,0.317137569189072,L, + 246326176000,0.312166273593903,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113026380539,L, + 252099445750,0.297032088041306,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763161420822,L, + 257872715500,0.281576126813889,L, + 259797138750,0.276354521512985,L, + 261721562000,0.271098792552948,L, + 263645985250,0.265809237957001,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741762876511,L, + 271343678250,0.244320809841156,L, + 273268101500,0.238867864012718,L, + 275192524750,0.233383327722549,L, + 277116948000,0.227867573499680,L, + 279041371250,0.222320914268494,L, + 280965794500,0.216743752360344,L, + 282890217750,0.211136370897293,L, + 284814641000,0.205499231815338,L, + 286739064250,0.199832588434219,L, + 288663487500,0.194137006998062,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660296559334,L, + 294436757250,0.176880091428757,L, + 296361180500,0.171072617173195,L, + 298285603750,0.165238395333290,L, + 300210027000,0.159378051757812,L, + 302134450250,0.153492093086243,L, + 304058873500,0.147581428289413,L, + 305983296750,0.141646742820740,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709675908089,L, + 311756566500,0.123709805309772,L, + 313680989750,0.117691345512867,L, + 315605413000,0.111656457185745,L, + 317529836250,0.105608187615871,L, + 319454259500,0.099550440907478,L, + 321378682750,0.093488998711109,L, + 323303106000,0.087431915104389,L, + 325227529250,0.081392467021942,L, + 327151952500,0.075393445789814,L, + 329076375750,0.069480247795582,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166587889194,L, + 334849645500,0.318087458610535,L, + 336774068750,0.318087428808212,L, + 338698492000,0.318087428808212,L, + 340622915250,0.318087458610535,L, + 344471761750,0.318087458610535,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.318087428808212 + KeyVer: 4005 + KeyCount: 178 + Key: + 0,0.318087428808212,L, + 1924423250,0.318217873573303,L, + 3848846500,0.318610578775406,L, + 5773269750,0.319267392158508,L, + 7697693000,0.320189714431763,L, + 9622116250,0.321378529071808,L, + 11546539500,0.322834163904190,L, + 13470962750,0.324556469917297,L, + 15395386000,0.326544702053070,L, + 17319809250,0.328797250986099,L, + 19244232500,0.331311881542206,L, + 21168655750,0.334085404872894,L, + 23093079000,0.337113916873932,L, + 25017502250,0.340392500162125,L, + 26941925500,0.343915194272995,L, + 28866348750,0.347675055265427,L, + 30790772000,0.351664036512375,L, + 32715195250,0.355872988700867,L, + 34639618500,0.360291689634323,L, + 36564041750,0.364908605813980,L, + 38488465000,0.369711309671402,L, + 40412888250,0.374686092138290,L, + 42337311500,0.379818171262741,L, + 44261734750,0.385091781616211,L, + 46186158000,0.390490174293518,L, + 48110581250,0.395995795726776,L, + 50035004500,0.401590198278427,L, + 51959427750,0.407254368066788,L, + 53883851000,0.412968844175339,L, + 55808274250,0.418713510036469,L, + 57732697500,0.424468398094177,L, + 59657120750,0.430213063955307,L, + 61581544000,0.435927480459213,L, + 63505967250,0.441591709852219,L, + 65430390500,0.447186082601547,L, + 67354813750,0.452691704034805,L, + 69279237000,0.458090096712112,L, + 71203660250,0.463363707065582,L, + 73128083500,0.468495815992355,L, + 75052506750,0.473470538854599,L, + 76976930000,0.478273242712021,L, + 78901353250,0.482890248298645,L, + 80825776500,0.487308859825134,L, + 82750199750,0.491517901420593,L, + 84674623000,0.495506823062897,L, + 86599046250,0.499266684055328,L, + 88523469500,0.502789378166199,L, + 90447892750,0.506067991256714,L, + 92372316000,0.509096443653107,L, + 94296739250,0.511870145797729,L, + 96221162500,0.514384627342224,L, + 98145585750,0.516637265682220,L, + 100070009000,0.518625438213348,L, + 101994432250,0.520347774028778,L, + 103918855500,0.521803379058838,L, + 105843278750,0.522992193698883,L, + 107767702000,0.523914515972137,L, + 109692125250,0.524571299552917,L, + 111616548500,0.524964034557343,L, + 113540971750,0.525094509124756,L, + 115465395000,0.525017023086548,L, + 117389818250,0.524788558483124,L, + 119314241500,0.524414539337158,L, + 121238664750,0.523900032043457,L, + 123163088000,0.523249924182892,L, + 125087511250,0.522468745708466,L, + 127011934500,0.521560728549957,L, + 128936357750,0.520529925823212,L, + 130860781000,0.519380271434784,L, + 132785204250,0.518115282058716,L, + 134709627500,0.516738533973694,L, + 136634050750,0.515253245830536,L, + 138558474000,0.513662457466125,L, + 140482897250,0.511969208717346,L, + 142407320500,0.510176360607147,L, + 144331743750,0.508286416530609,L, + 146256167000,0.506302177906036,L, + 148180590250,0.504225909709930,L, + 150105013500,0.502059996128082,L, + 152029436750,0.499806761741638,L, + 153953860000,0.497468262910843,L, + 155878283250,0.495046645402908,L, + 157802706500,0.492543607950211,L, + 159727129750,0.489961415529251,L, + 161651553000,0.487301528453827,L, + 163575976250,0.484565913677216,L, + 165500399500,0.481756150722504,L, + 167424822750,0.478873848915100,L, + 169349246000,0.475920587778091,L, + 171273669250,0.472897768020630,L, + 173198092500,0.469806939363480,L, + 175122515750,0.466649413108826,L, + 177046939000,0.463426500558853,L, + 178971362250,0.460139483213425,L, + 180895785500,0.456789672374725,L, + 182820208750,0.453378170728683,L, + 184744632000,0.449906200170517,L, + 186669055250,0.446374833583832,L, + 188593478500,0.442785173654556,L, + 190517901750,0.439138263463974,L, + 192442325000,0.435434997081757,L, + 194366748250,0.431676477193832,L, + 196291171500,0.427863717079163,L, + 198215594750,0.423997402191162,L, + 200140018000,0.420078635215759,L, + 202064441250,0.416108220815659,L, + 203988864500,0.412086904048920,L, + 205913287750,0.408015549182892,L, + 207837711000,0.403894901275635,L, + 209762134250,0.399725824594498,L, + 211686557500,0.395508915185928,L, + 213610980750,0.391245007514954,L, + 215535404000,0.386934787034988,L, + 217459827250,0.382578849792480,L, + 219384250500,0.378177911043167,L, + 221308673750,0.373732566833496,L, + 223233097000,0.369243502616882,L, + 225157520250,0.364711225032806,L, + 227081943500,0.360136419534683,L, + 229006366750,0.355519622564316,L, + 230930790000,0.350861489772797,L, + 232855213250,0.346162319183350,L, + 234779636500,0.341422885656357,L, + 236704059750,0.336643517017365,L, + 238628483000,0.331824839115143,L, + 240552906250,0.326967328786850,L, + 242477329500,0.322071403264999,L, + 244401752750,0.317137569189072,L, + 246326176000,0.312166243791580,L, + 248250599250,0.307157993316650,L, + 250175022500,0.302113085985184,L, + 252099445750,0.297032088041306,L, + 254023869000,0.291915267705917,L, + 255948292250,0.286763191223145,L, + 257872715500,0.281576126813889,L, + 259797138750,0.276354491710663,L, + 261721562000,0.271098822355270,L, + 263645985250,0.265809237957001,L, + 265570408500,0.260486304759979,L, + 267494831750,0.255130320787430,L, + 269419255000,0.249741747975349,L, + 271343678250,0.244320794939995,L, + 273268101500,0.238867849111557,L, + 275192524750,0.233383342623711,L, + 277116948000,0.227867588400841,L, + 279041371250,0.222320929169655,L, + 280965794500,0.216743737459183,L, + 282890217750,0.211136355996132,L, + 284814641000,0.205499216914177,L, + 286739064250,0.199832603335381,L, + 288663487500,0.194137021899223,L, + 290587910750,0.188412755727768,L, + 292512334000,0.182660281658173,L, + 294436757250,0.176880091428757,L, + 296361180500,0.171072587370872,L, + 298285603750,0.165238380432129,L, + 300210027000,0.159378036856651,L, + 302134450250,0.153492107987404,L, + 304058873500,0.147581443190575,L, + 305983296750,0.141646742820740,L, + 307907720000,0.135689079761505,L, + 309832143250,0.129709661006927,L, + 311756566500,0.123709805309772,L, + 313680989750,0.117691352963448,L, + 315605413000,0.111656464636326,L, + 317529836250,0.105608209967613,L, + 319454259500,0.099550448358059,L, + 321378682750,0.093488998711109,L, + 323303106000,0.087431922554970,L, + 325227529250,0.081392474472523,L, + 327151952500,0.075393445789814,L, + 329076375750,0.069480247795582,L, + 331000799000,0.063773393630981,L, + 332925222250,0.059166576713324,L, + 334849645500,0.318087428808212,L, + 336774068750,0.318087399005890,L, + 338698492000,0.318087428808212,L, + 344471761750,0.318087428808212,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_030" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.014210939407349,L, + 3848846500,-0.014210909605026,L, + 5773269750,-0.014210939407349,L, + 7697693000,-0.014210879802704,L, + 9622116250,-0.014210909605026,L, + 11546539500,-0.014210879802704,L, + 13470962750,-0.014210939407349,L, + 15395386000,-0.014210969209671,L, + 17319809250,-0.014210939407349,L, + 23093079000,-0.014210939407349,L, + 25017502250,-0.014210909605026,L, + 26941925500,-0.014210939407349,L, + 28866348750,-0.014210909605026,L, + 34639618500,-0.014210909605026,L, + 36564041750,-0.014210939407349,L, + 38488465000,-0.014210909605026,L, + 40412888250,-0.014210969209671,L, + 42337311500,-0.014210969209671,L, + 44261734750,-0.014210909605026,L, + 46186158000,-0.014210939407349,L, + 48110581250,-0.014210909605026,L, + 50035004500,-0.014210939407349,L, + 51959427750,-0.014210909605026,L, + 53883851000,-0.014210939407349,L, + 55808274250,-0.014210909605026,L, + 57732697500,-0.014210939407349,L, + 59657120750,-0.014210909605026,L, + 61581544000,-0.014210939407349,L, + 63505967250,-0.014210939407349,L, + 65430390500,-0.014210909605026,L, + 67354813750,-0.014210909605026,L, + 69279237000,-0.014210939407349,L, + 71203660250,-0.014210909605026,L, + 76976930000,-0.014210909605026,L, + 78901353250,-0.014210879802704,L, + 80825776500,-0.014210909605026,L, + 84674623000,-0.014210909605026,L, + 86599046250,-0.014210879802704,L, + 88523469500,-0.014210939407349,L, + 90447892750,-0.014210969209671,L, + 92372316000,-0.014210879802704,L, + 94296739250,-0.014210969209671,L, + 96221162500,-0.014210879802704,L, + 98145585750,-0.014210909605026,L, + 109692125250,-0.014210909605026,L, + 111616548500,-0.014210879802704,L, + 113540971750,-0.014210909605026,L, + 115465395000,-0.014210879802704,L, + 117389818250,-0.014210879802704,L, + 119314241500,-0.014210909605026,L, + 121238664750,-0.014210879802704,L, + 123163088000,-0.014210939407349,L, + 127011934500,-0.014210879802704,L, + 128936357750,-0.014210909605026,L, + 130860781000,-0.014210909605026,L, + 132785204250,-0.014210939407349,L, + 134709627500,-0.014210879802704,L, + 136634050750,-0.014210909605026,L, + 138558474000,-0.014210879802704,L, + 140482897250,-0.014210969209671,L, + 144331743750,-0.014210909605026,L, + 146256167000,-0.014210909605026,L, + 148180590250,-0.014210879802704,L, + 150105013500,-0.014210909605026,L, + 153953860000,-0.014210909605026,L, + 155878283250,-0.014210939407349,L, + 157802706500,-0.014210939407349,L, + 161651553000,-0.014210879802704,L, + 163575976250,-0.014210879802704,L, + 165500399500,-0.014210909605026,L, + 167424822750,-0.014210879802704,L, + 169349246000,-0.014210939407349,L, + 171273669250,-0.014210909605026,L, + 173198092500,-0.014210909605026,L, + 175122515750,-0.014210879802704,L, + 178971362250,-0.014210879802704,L, + 180895785500,-0.014210909605026,L, + 184744632000,-0.014210850000381,L, + 186669055250,-0.014210909605026,L, + 188593478500,-0.014210850000381,L, + 190517901750,-0.014210939407349,L, + 192442325000,-0.014210909605026,L, + 194366748250,-0.014210909605026,L, + 196291171500,-0.014210939407349,L, + 198215594750,-0.014210879802704,L, + 200140018000,-0.014210909605026,L, + 202064441250,-0.014210909605026,L, + 203988864500,-0.014210879802704,L, + 205913287750,-0.014210909605026,L, + 207837711000,-0.014210879802704,L, + 209762134250,-0.014210879802704,L, + 211686557500,-0.014210939407349,L, + 215535404000,-0.014210939407349,L, + 217459827250,-0.014210879802704,L, + 219384250500,-0.014210909605026,L, + 221308673750,-0.014210909605026,L, + 223233097000,-0.014210939407349,L, + 225157520250,-0.014210939407349,L, + 227081943500,-0.014210909605026,L, + 229006366750,-0.014210909605026,L, + 230930790000,-0.014210939407349,L, + 232855213250,-0.014210939407349,L, + 234779636500,-0.014210909605026,L, + 250175022500,-0.014210909605026,L, + 252099445750,-0.014210879802704,L, + 254023869000,-0.014210879802704,L, + 255948292250,-0.014210909605026,L, + 257872715500,-0.014210879802704,L, + 259797138750,-0.014210909605026,L, + 261721562000,-0.014210879802704,L, + 263645985250,-0.014210879802704,L, + 265570408500,-0.014210939407349,L, + 267494831750,-0.014210909605026,L, + 269419255000,-0.014210909605026,L, + 271343678250,-0.014210939407349,L, + 273268101500,-0.014210879802704,L, + 275192524750,-0.014210909605026,L, + 277116948000,-0.014210909605026,L, + 279041371250,-0.014210879802704,L, + 280965794500,-0.014210939407349,L, + 282890217750,-0.014210909605026,L, + 288663487500,-0.014210909605026,L, + 292512334000,-0.014210969209671,L, + 294436757250,-0.014210909605026,L, + 296361180500,-0.014210879802704,L, + 298285603750,-0.014210909605026,L, + 304058873500,-0.014210909605026,L, + 305983296750,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013482071459293 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.013482071459293,L, + 1924423250,0.013558983802795,L, + 3848846500,0.013791654258966,L, + 5773269750,0.014183007180691,L, + 7697693000,0.014734987169504,L, + 9622116250,0.015448573976755,L, + 11546539500,0.016325216740370,L, + 13470962750,0.017363473773003,L, + 15395386000,0.018562845885754,L, + 17319809250,0.019920419901609,L, + 19244232500,0.021433252841234,L, + 21168655750,0.023095048964024,L, + 23093079000,0.024899937212467,L, + 25017502250,0.026839174330235,L, + 26941925500,0.028903026133776,L, + 28866348750,0.031080283224583,L, + 30790772000,0.033357344567776,L, + 32715195250,0.035721514374018,L, + 34639618500,0.038156282156706,L, + 36564041750,0.040646046400070,L, + 38488465000,0.043174743652344,L, + 40412888250,0.045724377036095,L, + 42337311500,0.048278395086527,L, + 44261734750,0.050820719450712,L, + 46186158000,0.053334340453148,L, + 48110581250,0.055805116891861,L, + 50035004500,0.058218456804752,L, + 51959427750,0.060561705380678,L, + 53883851000,0.062823191285133,L, + 55808274250,0.064993634819984,L, + 57732697500,0.067063316702843,L, + 59657120750,0.069025442004204,L, + 61581544000,0.070874154567719,L, + 63505967250,0.072605051100254,L, + 65430390500,0.074213780462742,L, + 67354813750,0.075698383152485,L, + 69279237000,0.077055960893631,L, + 71203660250,0.078287452459335,L, + 73128083500,0.079391896724701,L, + 75052506750,0.080408245325089,L, + 76976930000,0.081372022628784,L, + 78901353250,0.082278855144978,L, + 80825776500,0.083123378455639,L, + 82750199750,0.083901211619377,L, + 84674623000,0.084607988595963,L, + 86599046250,0.085240773856640,L, + 88523469500,0.085797622799873,L, + 90447892750,0.086277574300766,L, + 92372316000,0.086683034896851,L, + 94296739250,0.087016463279724,L, + 96221162500,0.087283685803413,L, + 98145585750,0.087490566074848,L, + 100070009000,0.087645828723907,L, + 101994432250,0.087756812572479,L, + 103918855500,0.087832264602184,L, + 105843278750,0.087879493832588,L, + 107767702000,0.087906748056412,L, + 109692125250,0.087919883430004,L, + 111616548500,0.087924741208553,L, + 113540971750,0.087925232946873,L, + 115465395000,0.087909653782845,L, + 117389818250,0.087862938642502,L, + 119314241500,0.087787479162216,L, + 121238664750,0.087683320045471,L, + 123163088000,0.087551906704903,L, + 125087511250,0.087394677102566,L, + 127011934500,0.087212622165680,L, + 128936357750,0.087005749344826,L, + 130860781000,0.086775511503220,L, + 132785204250,0.086522407829762,L, + 134709627500,0.086247868835926,L, + 136634050750,0.085951432585716,L, + 138558474000,0.085634559392929,L, + 140482897250,0.085297733545303,L, + 142407320500,0.084941901266575,L, + 144331743750,0.084567099809647,L, + 146256167000,0.084173798561096,L, + 148180590250,0.083762973546982,L, + 150105013500,0.083334632217884,L, + 152029436750,0.082889735698700,L, + 153953860000,0.082428291440010,L, + 155878283250,0.081951260566711,L, + 157802706500,0.081458181142807,L, + 159727129750,0.080950491130352,L, + 161651553000,0.080427229404449,L, + 163575976250,0.079890340566635,L, + 165500399500,0.079338848590851,L, + 167424822750,0.078773722052574,L, + 169349246000,0.078195452690125,L, + 171273669250,0.077603548765182,L, + 173198092500,0.076999008655548,L, + 175122515750,0.076382271945477,L, + 177046939000,0.075752414762974,L, + 178971362250,0.075110867619514,L, + 180895785500,0.074457168579102,L, + 182820208750,0.073792725801468,L, + 184744632000,0.073116615414619,L, + 186669055250,0.072428837418556,L, + 188593478500,0.071730345487595,L, + 190517901750,0.071021139621735,L, + 192442325000,0.070301234722137,L, + 194366748250,0.069571577012539,L, + 196291171500,0.068831220269203,L, + 198215594750,0.068081602454185,L, + 200140018000,0.067321777343750,L, + 202064441250,0.066551737487316,L, + 203988864500,0.065772920846939,L, + 205913287750,0.064984381198883,L, + 207837711000,0.064187072217464,L, + 209762134250,0.063380517065525,L, + 211686557500,0.062565192580223,L, + 213610980750,0.061741117388010,L, + 215535404000,0.060908757150173,L, + 217459827250,0.060067638754845,L, + 219384250500,0.059217769652605,L, + 221308673750,0.058360099792480,L, + 223233097000,0.057494167238474,L, + 225157520250,0.056620433926582,L, + 227081943500,0.055738918483257,L, + 229006366750,0.054849609732628,L, + 230930790000,0.053952518850565,L, + 232855213250,0.053047642111778,L, + 234779636500,0.052135940641165,L, + 236704059750,0.051216937601566,L, + 238628483000,0.050290156155825,L, + 240552906250,0.049356553703547,L, + 242477329500,0.048415657132864,L, + 244401752750,0.047467939555645,L, + 246326176000,0.046513408422470,L, + 248250599250,0.045552063733339,L, + 250175022500,0.044583905488253,L, + 252099445750,0.043609414249659,L, + 254023869000,0.042628116905689,L, + 255948292250,0.041640963405371,L, + 257872715500,0.040647011250257,L, + 259797138750,0.039646726101637,L, + 261721562000,0.038640595972538,L, + 263645985250,0.037628147751093,L, + 265570408500,0.036609854549170,L, + 267494831750,0.035585712641478,L, + 269419255000,0.034556213766336,L, + 271343678250,0.033520400524139,L, + 273268101500,0.032479230314493,L, + 275192524750,0.031432706862688,L, + 277116948000,0.030381303280592,L, + 279041371250,0.029324069619179,L, + 280965794500,0.028261970728636,L, + 282890217750,0.027195964008570,L, + 284814641000,0.026124615222216,L, + 286739064250,0.025049366056919,L, + 288663487500,0.023970227688551,L, + 290587910750,0.022887676954269,L, + 292512334000,0.021802213042974,L, + 294436757250,0.020714320242405,L, + 296361180500,0.019626408815384,L, + 298285603750,0.018538504838943,L, + 300210027000,0.017454009503126,L, + 302134450250,0.016377300024033,L, + 304058873500,0.015316657721996,L, + 305983296750,0.014295447617769,L, + 307907720000,0.013482071459293,L, + 344471761750,0.013482071459293,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.645346045494080 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.645346045494080,L, + 1924423250,0.645657420158386,L, + 3848846500,0.646601796150208,L, + 5773269750,0.648193955421448,L, + 7697693000,0.650445818901062,L, + 9622116250,0.653368353843689,L, + 11546539500,0.656969428062439,L, + 13470962750,0.661253333091736,L, + 15395386000,0.666221022605896,L, + 17319809250,0.671869158744812,L, + 19244232500,0.678189635276794,L, + 21168655750,0.685168147087097,L, + 23093079000,0.692786097526550,L, + 25017502250,0.701017737388611,L, + 26941925500,0.709831118583679,L, + 28866348750,0.719188570976257,L, + 30790772000,0.729045987129211,L, + 32715195250,0.739353299140930,L, + 34639618500,0.750056385993958,L, + 36564041750,0.761096119880676,L, + 38488465000,0.772410750389099,L, + 40412888250,0.783935904502869,L, + 42337311500,0.795606732368469,L, + 44261734750,0.807358860969543,L, + 46186158000,0.819129109382629,L, + 48110581250,0.830857396125793,L, + 50035004500,0.842486023902893,L, + 51959427750,0.853962063789368,L, + 53883851000,0.865237355232239,L, + 55808274250,0.876268506050110,L, + 57732697500,0.887016892433167,L, + 59657120750,0.897449374198914,L, + 61581544000,0.907537817955017,L, + 63505967250,0.917258381843567,L, + 65430390500,0.926592469215393,L, + 67354813750,0.935524106025696,L, + 69279237000,0.944042801856995,L, + 71203660250,0.952139973640442,L, + 73128083500,0.959810614585876,L, + 75052506750,0.967482447624207,L, + 76976930000,0.975569844245911,L, + 78901353250,0.984042525291443,L, + 80825776500,0.992854714393616,L, + 82750199750,1.001944661140442,L, + 84674623000,1.011231064796448,L, + 86599046250,1.020614981651306,L, + 88523469500,1.029979109764099,L, + 90447892750,1.039192557334900,L, + 92372316000,1.048116564750671,L, + 94296739250,1.056611180305481,L, + 96221162500,1.064545512199402,L, + 98145585750,1.071802973747253,L, + 100070009000,1.078289389610291,L, + 101994432250,1.083935618400574,L, + 103918855500,1.088698506355286,L, + 105843278750,1.092557072639465,L, + 107767702000,1.095512986183167,L, + 109692125250,1.097583174705505,L, + 111616548500,1.098797202110291,L, + 113540971750,1.099192738533020,L, + 115465395000,1.098993897438049,L, + 117389818250,1.098408102989197,L, + 119314241500,1.097451329231262,L, + 121238664750,1.096137642860413,L, + 123163088000,1.094480872154236,L, + 125087511250,1.092493414878845,L, + 127011934500,1.090187668800354,L, + 128936357750,1.087574601173401,L, + 130860781000,1.084664702415466,L, + 132785204250,1.081467986106873,L, + 134709627500,1.077993273735046,L, + 136634050750,1.074250578880310,L, + 138558474000,1.070247292518616,L, + 140482897250,1.065991759300232,L, + 142407320500,1.061491370201111,L, + 144331743750,1.056753516197205,L, + 146256167000,1.051784634590149,L, + 148180590250,1.046591639518738,L, + 150105013500,1.041180014610291,L, + 152029436750,1.035556435585022,L, + 153953860000,1.029725670814514,L, + 155878283250,1.023693442344666,L, + 157802706500,1.017465233802795,L, + 159727129750,1.011045098304749,L, + 161651553000,1.004438281059265,L, + 163575976250,0.997649073600769,L, + 165500399500,0.990681767463684,L, + 167424822750,0.983540415763855,L, + 169349246000,0.976229071617126,L, + 171273669250,0.968751549720764,L, + 173198092500,0.961110949516296,L, + 175122515750,0.953311562538147,L, + 177046939000,0.945356249809265,L, + 178971362250,0.937248587608337,L, + 180895785500,0.928991198539734,L, + 182820208750,0.920587182044983,L, + 184744632000,0.912040114402771,L, + 186669055250,0.903351902961731,L, + 188593478500,0.894525408744812,L, + 190517901750,0.885563492774963,L, + 192442325000,0.876468539237976,L, + 194366748250,0.867243170738220,L, + 196291171500,0.857889294624329,L, + 198215594750,0.848409533500671,L, + 200140018000,0.838806033134460,L, + 202064441250,0.829080700874329,L, + 203988864500,0.819235920906067,L, + 205913287750,0.809273123741150,L, + 207837711000,0.799194693565369,L, + 209762134250,0.789002299308777,L, + 211686557500,0.778698086738586,L, + 213610980750,0.768283486366272,L, + 215535404000,0.757759928703308,L, + 217459827250,0.747129797935486,L, + 219384250500,0.736394047737122,L, + 221308673750,0.725554585456848,L, + 223233097000,0.714612841606140,L, + 225157520250,0.703570246696472,L, + 227081943500,0.692428231239319,L, + 229006366750,0.681188464164734,L, + 230930790000,0.669851899147034,L, + 232855213250,0.658420205116272,L, + 234779636500,0.646894335746765,L, + 236704059750,0.635275959968567,L, + 238628483000,0.623566031455994,L, + 240552906250,0.611765980720520,L, + 242477329500,0.599876761436462,L, + 244401752750,0.587899565696716,L, + 246326176000,0.575836062431335,L, + 248250599250,0.563686490058899,L, + 250175022500,0.551452994346619,L, + 252099445750,0.539136052131653,L, + 254023869000,0.526736617088318,L, + 255948292250,0.514256358146667,L, + 257872715500,0.501695990562439,L, + 259797138750,0.489056944847107,L, + 261721562000,0.476339936256409,L, + 263645985250,0.463546633720398,L, + 265570408500,0.450677990913391,L, + 267494831750,0.437734961509705,L, + 269419255000,0.424719214439392,L, + 271343678250,0.411632180213928,L, + 273268101500,0.398475050926208,L, + 275192524750,0.385249495506287,L, + 277116948000,0.371957421302795,L, + 279041371250,0.358600258827209,L, + 280965794500,0.345181107521057,L, + 282890217750,0.331701636314392,L, + 284814641000,0.318165421485901,L, + 286739064250,0.304575562477112,L, + 288663487500,0.290937304496765,L, + 290587910750,0.277255892753601,L, + 292512334000,0.263538479804993,L, + 294436757250,0.249795079231262,L, + 296361180500,0.236039757728577,L, + 298285603750,0.222292780876160,L, + 300210027000,0.208586096763611,L, + 302134450250,0.194976449012756,L, + 304058873500,0.181573510169983,L, + 305983296750,0.168670535087585,L, + 307907720000,0.158388018608093,L, + 309832143250,0.645346045494080,L, + 311756566500,0.648109793663025,L, + 313680989750,0.650742650032043,L, + 315605413000,0.653231263160706,L, + 317529836250,0.655560612678528,L, + 319454259500,0.657711386680603,L, + 321378682750,0.659661889076233,L, + 323303106000,0.661383748054504,L, + 325227529250,0.662843346595764,L, + 327151952500,0.663996577262878,L, + 329076375750,0.664786934852600,L, + 331000799000,0.665137887001038,L, + 332925222250,0.664943575859070,L, + 334849645500,0.664053082466125,L, + 336774068750,0.662239193916321,L, + 338698492000,0.659160733222961,L, + 340622915250,0.654392123222351,L, + 342547338500,0.648368000984192,L, + 344471761750,0.645346045494080,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802668840238027 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,34.802668840238027,L, + 1924423250,34.834808295377478,L, + 3848846500,34.931745755172741,L, + 5773269750,35.094024219662842,L, + 7697693000,35.321937386982086,L, + 9622116250,35.615420370333354,L, + 11546539500,35.974042867798943,L, + 13470962750,36.396896464219239,L, + 15395386000,36.882611706665664,L, + 17319809250,37.429235161035578,L, + 19244232500,38.034239657336101,L, + 21168655750,38.694438912319413,L, + 23093079000,39.406001189861151,L, + 25017502250,40.164401489636184,L, + 26941925500,40.964452282969894,L, + 28866348750,41.800358154351528,L, + 30790772000,42.665712386339635,L, + 32715195250,43.553623318061682,L, + 34639618500,44.456809967862434,L, + 36564041750,45.367697655952362,L, + 38488465000,46.278588759136881,L, + 40412888250,47.181771993843050,L, + 42337311500,48.069689755754261,L, + 44261734750,48.935040572647786,L, + 46186158000,49.770949859124009,L, + 48110581250,50.571000652457720,L, + 50035004500,51.329397537138163,L, + 51959427750,52.040959814679901,L, + 53883851000,52.701152239474041,L, + 55808274250,53.306166981058318,L, + 57732697500,53.852787020333651,L, + 59657120750,54.338502262780075,L, + 61581544000,54.761352444105782,L, + 63505967250,55.119978356665960,L, + 65430390500,55.413457924922646,L, + 67354813750,55.641371092241890,L, + 69279237000,55.803659802015744,L, + 71203660250,55.900587016527254,L, + 73128083500,55.932733301855876,L, + 75052506750,55.855944900112114,L, + 76976930000,55.623564789075694,L, + 78901353250,55.234199610155919,L, + 80825776500,54.689225646470554,L, + 82750199750,53.993550388938246,L, + 84674623000,53.156384347654736,L, + 86599046250,52.191780636837322,L, + 88523469500,51.118955993715787,L, + 90447892750,49.962106363424880,L, + 92372316000,48.749645332911811,L, + 94296739250,47.512892734615619,L, + 96221162500,46.284319287850515,L, + 98145585750,45.095654636405733,L, + 100070009000,43.976012461618417,L, + 101994432250,42.950602991715044,L, + 103918855500,42.039834831935586,L, + 105843278750,41.259058832439628,L, + 107767702000,40.618813975116481,L, + 109692125250,40.125281581164991,L, + 111616548500,39.781074197942694,L, + 113540971750,39.585915202788200,L, + 115465395000,39.466144420597615,L, + 117389818250,39.349337940506807,L, + 119314241500,39.235396724772819,L, + 121238664750,39.124184169612242,L, + 123163088000,39.015631973133388,L, + 125087511250,38.909617191931190,L, + 127011934500,38.806044203357260,L, + 128936357750,38.704851535709082,L, + 130860781000,38.605940151243686,L, + 132785204250,38.509241748069371,L, + 134709627500,38.414691439389017,L, + 136634050750,38.322200432743422,L, + 138558474000,38.231720916808399,L, + 140482897250,38.143191419881404,L, + 142407320500,38.056553885354504,L, + 144331743750,37.971757086808914,L, + 146256167000,37.888739552542113,L, + 148180590250,37.807460301419077,L, + 150105013500,37.727871522115620,L, + 152029436750,37.649925403307549,L, + 153953860000,37.573580963859840,L, + 155878283250,37.498800637732060,L, + 157802706500,37.425536613600023,L, + 159727129750,37.353768400896222,L, + 161651553000,37.283448188296454,L, + 163575976250,37.214541824854876,L, + 165500399500,37.147021989814817,L, + 167424822750,37.080861362419583,L, + 169349246000,37.016018961534158,L, + 171273669250,36.952474296591035,L, + 173198092500,36.890193216644363,L, + 175122515750,36.829162061315806,L, + 177046939000,36.769350094754088,L, + 178971362250,36.710719750918784,L, + 180895785500,36.653271029809886,L, + 182820208750,36.596966365386969,L, + 184744632000,36.541781851987928,L, + 186669055250,36.487717489612770,L, + 188593478500,36.434725466937302,L, + 190517901750,36.382802368866940,L, + 192442325000,36.331927704834172,L, + 194366748250,36.282080984271495,L, + 196291171500,36.233258792084314,L, + 198215594750,36.185413316948441,L, + 200140018000,36.138561634336803,L, + 202064441250,36.092676423492726,L, + 203988864500,36.047737193848690,L, + 205913287750,36.003737115215536,L, + 207837711000,35.960648866836571,L, + 209762134250,35.918482693995557,L, + 211686557500,35.877207860841231,L, + 213610980750,35.836817537184416,L, + 215535404000,35.797301477741364,L, + 217459827250,35.758646022133732,L, + 219384250500,35.720837509983184,L, + 221308673750,35.683865696005952,L, + 223233097000,35.647730580202058,L, + 225157520250,35.612411672003972,L, + 227081943500,35.577898726127948,L, + 229006366750,35.544191742573979,L, + 230930790000,35.511280476058324,L, + 232855213250,35.479154681297210,L, + 234779636500,35.447797282817731,L, + 236704059750,35.417211695714457,L, + 238628483000,35.387391089798221,L, + 240552906250,35.358318389596107,L, + 242477329500,35.330003840391861,L, + 244401752750,35.302423536523385,L, + 246326176000,35.275587723274448,L, + 248250599250,35.249479325172111,L, + 250175022500,35.224101757310962,L, + 252099445750,35.199444774407254,L, + 254023869000,35.175504961366393,L, + 255948292250,35.152278903093794,L, + 257872715500,35.129759769400295,L, + 259797138750,35.107950975380476,L, + 261721562000,35.086855936128927,L, + 263645985250,35.066464406361881,L, + 265570408500,35.046762725701008,L, + 267494831750,35.027767969619227,L, + 269419255000,35.009476723021962,L, + 271343678250,34.991885570814617,L, + 273268101500,34.974991097902617,L, + 275192524750,34.958806964664291,L, + 277116948000,34.943329756005070,L, + 279041371250,34.928556056830352,L, + 280965794500,34.914502942613069,L, + 282890217750,34.901177243542392,L, + 284814641000,34.888578959618322,L, + 286739064250,34.876708090840857,L, + 288663487500,34.865605618345022,L, + 290587910750,34.855261296847047,L, + 292512334000,34.845688786725290,L, + 294436757250,34.836932484209349,L, + 296361180500,34.829009464772142,L, + 298285603750,34.821943634075772,L, + 300210027000,34.815810124201114,L, + 302134450250,34.810653331377758,L, + 304058873500,34.806592783916194,L, + 305983296750,34.803785576167321,L, + 307907720000,34.802665425143438,L, + 309832143250,34.802668840238027,L, + 344471761750,34.802668840238027,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132534125854483 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-5.132534125854483,L, + 1924423250,-5.150080028058574,L, + 3848846500,-5.203164685174660,L, + 5773269750,-5.292375493471360,L, + 7697693000,-5.418176478925414,L, + 9622116250,-5.580883537785931,L, + 11546539500,-5.780637115817721,L, + 13470962750,-6.017366776694969,L, + 15395386000,-6.290766015678670,L, + 17319809250,-6.600258108670782,L, + 19244232500,-6.944973487212598,L, + 21168655750,-7.323715587538901,L, + 23093079000,-7.734948470860084,L, + 25017502250,-8.176784870531112,L, + 26941925500,-8.646976800541406,L, + 28866348750,-9.142926227685429,L, + 30790772000,-9.661706415903831,L, + 32715195250,-10.200095223455666,L, + 34639618500,-10.754610961411524,L, + 36564041750,-11.321586671960761,L, + 38488465000,-11.897202571810052,L, + 40412888250,-12.477603019172928,L, + 42337311500,-13.058905905279891,L, + 44261734750,-13.637332427972638,L, + 46186158000,-14.209236973781678,L, + 48110581250,-14.771173712270745,L, + 50035004500,-15.319940138492754,L, + 51959427750,-15.852623176766697,L, + 53883851000,-16.366615402376929,L, + 55808274250,-16.859615041573154,L, + 57732697500,-17.329654999874418,L, + 59657120750,-17.775072126217818,L, + 61581544000,-18.194515750694993,L, + 63505967250,-18.586904995869784,L, + 65430390500,-18.951423654136377,L, + 67354813750,-19.287496282057202,L, + 69279237000,-19.594736973944151,L, + 71203660250,-19.872974975067976,L, + 73128083500,-20.122171011840948,L, + 75052506750,-20.351346056609348,L, + 76976930000,-20.568725364681157,L, + 78901353250,-20.773199030316242,L, + 80825776500,-20.963663977963652,L, + 82750199750,-21.139068358491205,L, + 84674623000,-21.298478143529902,L, + 86599046250,-21.441177870764189,L, + 88523469500,-21.566708209972379,L, + 90447892750,-21.674999151715483,L, + 92372316000,-21.766364884695321,L, + 94296739250,-21.841572097646221,L, + 96221162500,-21.901787045368970,L, + 98145585750,-21.948502124197205,L, + 100070009000,-21.983457324821988,L, + 101994432250,-22.008507043602972,L, + 103918855500,-22.025509091994401,L, + 105843278750,-22.036254687106108,L, + 107767702000,-22.042369413960554,L, + 109692125250,-22.045309810398241,L, + 111616548500,-22.046329216131863,L, + 113540971750,-22.046465819915262,L, + 115465395000,-22.042885093242891,L, + 117389818250,-22.032358064184621,L, + 119314241500,-22.015154525212676,L, + 121238664750,-21.991537438610099,L, + 123163088000,-21.961750983639718,L, + 125087511250,-21.926023971638724,L, + 127011934500,-21.884568138471391,L, + 128936357750,-21.837590097360110,L, + 130860781000,-21.785272555865181,L, + 132785204250,-21.727801636641484,L, + 134709627500,-21.665341264229099,L, + 136634050750,-21.598050240526231,L, + 138558474000,-21.526077122147324,L, + 140482897250,-21.449570465706831,L, + 142407320500,-21.368665167440852,L, + 144331743750,-21.283489293396329,L, + 146256167000,-21.194155541694570,L, + 148180590250,-21.100791978382507,L, + 150105013500,-21.003506178939571,L, + 152029436750,-20.902395473561430,L, + 153953860000,-20.797575975463982,L, + 155878283250,-20.689126231822673,L, + 157802706500,-20.577153818116940,L, + 159727129750,-20.461730451333061,L, + 161651553000,-20.342953461666710,L, + 163575976250,-20.220897981198757,L, + 165500399500,-20.095637434462780,L, + 167424822750,-19.967250368634232,L, + 169349246000,-19.835805085604822,L, + 171273669250,-19.701369887266239,L, + 173198092500,-19.564013075510186,L, + 175122515750,-19.423794414491901,L, + 177046939000,-19.280768545724747,L, + 178971362250,-19.135007186195008,L, + 180895785500,-18.986553024584996,L, + 182820208750,-18.835469240144530,L, + 184744632000,-18.681803644197803,L, + 186669055250,-18.525604048069006,L, + 188593478500,-18.366919970629620,L, + 190517901750,-18.205807760940299,L, + 192442325000,-18.042296447305013,L, + 194366748250,-17.876438963689832,L, + 196291171500,-17.708276291229776,L, + 198215594750,-17.537844288417986,L, + 200140018000,-17.365190766578650,L, + 202064441250,-17.190346461563038,L, + 203988864500,-17.013352354506168,L, + 205913287750,-16.834244303901180,L, + 207837711000,-16.653051338052048,L, + 209762134250,-16.469816145641087,L, + 211686557500,-16.284560924783097,L, + 213610980750,-16.097323241518517,L, + 215535404000,-15.908133831698603,L, + 217459827250,-15.717023431174630,L, + 219384250500,-15.524012530514101,L, + 221308673750,-15.329138695757454,L, + 223233097000,-15.132427540114078,L, + 225157520250,-14.933902969246065,L, + 227081943500,-14.733592303910097,L, + 229006366750,-14.531516034673682,L, + 230930790000,-14.327708312482672,L, + 232855213250,-14.122189627904575,L, + 234779636500,-13.914975348865026,L, + 236704059750,-13.706098772536228,L, + 238628483000,-13.495576120617459,L, + 240552906250,-13.283430444997167,L, + 242477329500,-13.069684797563802,L, + 244401752750,-12.854361376432168,L, + 246326176000,-12.637478110848834,L, + 248250599250,-12.419054637607664,L, + 250175022500,-12.199114862370752,L, + 252099445750,-11.977678421931964,L, + 254023869000,-11.754763245537871,L, + 255948292250,-11.530389823755982,L, + 257872715500,-11.304576939606514,L, + 259797138750,-11.077349352525211,L, + 261721562000,-10.848723284211349,L, + 263645985250,-10.618722640327023,L, + 265570408500,-10.387367911439746,L, + 267494831750,-10.154677026796085,L, + 269419255000,-9.920679014700017,L, + 271343678250,-9.685395219492694,L, + 273268101500,-9.448856377025383,L, + 275192524750,-9.211083831639241,L, + 277116948000,-8.972116003148349,L, + 279041371250,-8.731984481177616,L, + 280965794500,-8.490729393088419,L, + 282890217750,-8.248395988884008,L, + 284814641000,-8.005036348756802,L, + 286739064250,-7.760722189693090,L, + 288663487500,-7.515528643773740,L, + 290587910750,-7.269559017609947,L, + 292512334000,-7.022946073003705,L, + 294436757250,-6.775865260439319,L, + 296361180500,-6.528571431350192,L, + 298285603750,-6.281425731988691,L, + 300210027000,-6.035010009094733,L, + 302134450250,-5.790323604721255,L, + 304058873500,-5.549368191181891,L, + 305983296750,-5.317397464608844,L, + 307907720000,-5.132534552741306,L, + 309832143250,-5.132534125854483,L, + 344471761750,-5.132534125854483,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 26.220143412252060 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,26.220143412252060,L, + 1924423250,26.216224591215770,L, + 3848846500,26.204418609235422,L, + 5773269750,26.184657164419310,L, + 7697693000,26.156902690727005,L, + 9622116250,26.121151773063914,L, + 11546539500,26.077481251058209,L, + 13470962750,26.025979917169096,L, + 15395386000,25.966827063862283,L, + 17319809250,25.900251502474973,L, + 19244232500,25.826569129256274,L, + 21168655750,25.746162434799707,L, + 23093079000,25.659504409705296,L, + 25017502250,25.567136346464761,L, + 26941925500,25.469701990407376,L, + 28866348750,25.367894605733898,L, + 30790772000,25.262509909482628,L, + 32715195250,25.154364109259387,L, + 34639618500,25.044370742865659,L, + 36564041750,24.933429687724594,L, + 38488465000,24.822493755225405,L, + 40412888250,24.712500388831678,L, + 42337311500,24.604358003703023,L, + 44261734750,24.498961354620707,L, + 46186158000,24.397160800136398,L, + 48110581250,24.299723028984431,L, + 50035004500,24.207358380838482,L, + 51959427750,24.120698648196775,L, + 53883851000,24.040288538645623,L, + 55808274250,23.966611288068801,L, + 57732697500,23.900037434228782,L, + 59657120750,23.840881165827387,L, + 61581544000,23.789383247032859,L, + 63505967250,23.745707602385274,L, + 65430390500,23.709961807364063,L, + 67354813750,23.682207333671755,L, + 69279237000,23.662442473761061,L, + 71203660250,23.650638199328004,L, + 73128083500,23.646721085839008,L, + 75052506750,23.691460532449817,L, + 76976930000,23.826667542164611,L, + 78901353250,24.052840718792798,L, + 80825776500,24.368803562249841,L, + 82750199750,24.771248553430169,L, + 84674623000,25.254320512667796,L, + 86599046250,25.809287043108874,L, + 88523469500,26.424378021266197,L, + 90447892750,27.084920493255304,L, + 92372316000,27.773825325772847,L, + 94296739250,28.472382923134898,L, + 96221162500,29.161284340557856,L, + 98145585750,29.821831935188840,L, + 100070009000,30.436917790704285,L, + 101994432250,30.991877490956192,L, + 103918855500,31.474959695477576,L, + 105843278750,31.877401271563318,L, + 107767702000,32.193369237662239,L, + 109692125250,32.419540706743135,L, + 111616548500,32.554751131552507,L, + 113540971750,32.599488870616028,L, + 115465395000,32.598139908254950,L, + 117389818250,32.594171568347178,L, + 119314241500,32.587679473541094,L, + 121238664750,32.578766076674242,L, + 123163088000,32.567533830584168,L, + 125087511250,32.554051037162587,L, + 127011934500,32.538423564341620,L, + 128936357750,32.520709468729216,L, + 130860781000,32.500977052217074,L, + 132785204250,32.479301446886069,L, + 134709627500,32.455740709344148,L, + 136634050750,32.430363141482999,L, + 138558474000,32.403209724437652,L, + 140482897250,32.374359005383560,L, + 142407320500,32.343841720171987,L, + 144331743750,32.311719340505462,L, + 146256167000,32.278022602235254,L, + 148180590250,32.242816392158474,L, + 150105013500,32.206117785748049,L, + 152029436750,32.167981424517336,L, + 153953860000,32.128448289601359,L, + 155878283250,32.087542286662213,L, + 157802706500,32.045311227024087,L, + 159727129750,32.001779016349069,L, + 161651553000,31.956986635772193,L, + 163575976250,31.910947745671788,L, + 165500399500,31.863699912088293,L, + 167424822750,31.815280701062143,L, + 169349246000,31.765696942782505,L, + 171273669250,31.714996448573572,L, + 173198092500,31.663182633529932,L, + 175122515750,31.610306724070355,L, + 177046939000,31.556361890005672,L, + 178971362250,31.501389112470903,L, + 180895785500,31.445391806560632,L, + 182820208750,31.388417783599053,L, + 184744632000,31.330453383207825,L, + 186669055250,31.271539586521964,L, + 188593478500,31.211686638825228,L, + 190517901750,31.150925275968881,L, + 192442325000,31.089252082858341,L, + 194366748250,31.026701210439452,L, + 196291171500,30.963276073806806,L, + 198215594750,30.898990333338737,L, + 200140018000,30.833871309791931,L, + 202064441250,30.767925833355552,L, + 203988864500,30.701167564407942,L, + 205913287750,30.633613578422029,L, + 207837711000,30.565280950870733,L, + 209762134250,30.496173096848644,L, + 211686557500,30.426300261639515,L, + 213610980750,30.355676105621683,L, + 215535404000,30.284327949551834,L, + 217459827250,30.212242133051621,L, + 219384250500,30.139445976877731,L, + 221308673750,30.065942896124746,L, + 223233097000,29.991749966265587,L, + 225157520250,29.916880847678602,L, + 227081943500,29.841328710174611,L, + 229006366750,29.765110629226552,L, + 230930790000,29.688240265212752,L, + 232855213250,29.610727863416972,L, + 234779636500,29.532576838933799,L, + 236704059750,29.453787191763233,L, + 238628483000,29.374386242661949,L, + 240552906250,29.294370576535364,L, + 242477329500,29.213757268856401,L, + 244401752750,29.132542904530482,L, + 246326176000,29.050741143935944,L, + 248250599250,28.968362232356537,L, + 250175022500,28.885412999981437,L, + 252099445750,28.801890031716056,L, + 254023869000,28.717810403033319,L, + 255948292250,28.633189481858860,L, + 257872715500,28.548018730456217,L, + 259797138750,28.462320346940189,L, + 261721562000,28.376082378479733,L, + 263645985250,28.289335560926112,L, + 265570408500,28.202081601826617,L, + 267494831750,28.114317086086661,L, + 269419255000,28.026065919368346,L, + 271343678250,27.937321271482499,L, + 273268101500,27.848108755638506,L, + 275192524750,27.758428371836366,L, + 277116948000,27.668295488001714,L, + 279041371250,27.577730594702061,L, + 280965794500,27.486733691937406,L, + 282890217750,27.395335515559012,L, + 284814641000,27.303549725945221,L, + 286739064250,27.211401936305418,L, + 288663487500,27.118929712680039,L, + 290587910750,27.026148422994719,L, + 292512334000,26.933138321972205,L, + 294436757250,26.839947220936686,L, + 296361180500,26.746680987820294,L, + 298285603750,26.653462566028093,L, + 300210027000,26.560520766897280,L, + 302134450250,26.468234665926786,L, + 304058873500,26.377357291472602,L, + 305983296750,26.289862568204864,L, + 307907720000,26.220139997157474,L, + 309832143250,26.220143412252060,L, + 344471761750,26.220143412252060,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.156420111656189,L, + 1924423250,0.157220616936684,L, + 3848846500,0.159634500741959,L, + 5773269750,0.163675814867020,L, + 7697693000,0.169351518154144,L, + 9622116250,0.176660269498825,L, + 11546539500,0.185590922832489,L, + 13470962750,0.196121424436569,L, + 15395386000,0.208217129111290,L, + 17319809250,0.221829831600189,L, + 19244232500,0.236896216869354,L, + 21168655750,0.253337264060974,L, + 23093079000,0.271057248115540,L, + 25017502250,0.289943695068359,L, + 26941925500,0.309867560863495,L, + 28866348750,0.330684185028076,L, + 30790772000,0.352234095335007,L, + 32715195250,0.374345898628235,L, + 34639618500,0.396837949752808,L, + 36564041750,0.419521898031235,L, + 38488465000,0.442205905914307,L, + 40412888250,0.464698016643524,L, + 42337311500,0.486809700727463,L, + 44261734750,0.508359730243683,L, + 46186158000,0.529176175594330,L, + 48110581250,0.549100160598755,L, + 50035004500,0.567986667156219,L, + 51959427750,0.585706472396851,L, + 53883851000,0.602147519588470,L, + 55808274250,0.617214024066925,L, + 57732697500,0.630826652050018,L, + 59657120750,0.642922461032867,L, + 61581544000,0.653452873229980,L, + 63505967250,0.662383615970612,L, + 65430390500,0.669692277908325,L, + 67354813750,0.675368010997772,L, + 69279237000,0.679409384727478,L, + 71203660250,0.681823372840881,L, + 73128083500,0.682623744010925,L, + 75052506750,0.679885923862457,L, + 76976930000,0.671603977680206,L, + 78901353250,0.657734990119934,L, + 80825776500,0.638336062431335,L, + 82750199750,0.613591670989990,L, + 84674623000,0.583840370178223,L, + 86599046250,0.549594640731812,L, + 88523469500,0.511552155017853,L, + 90447892750,0.470587283372879,L, + 92372316000,0.427724748849869,L, + 94296739250,0.384091168642044,L, + 96221162500,0.340852290391922,L, + 98145585750,0.299143671989441,L, + 100070009000,0.260007023811340,L, + 101994432250,0.224340260028839,L, + 103918855500,0.192868664860725,L, + 105843278750,0.166135370731354,L, + 107767702000,0.144509688019753,L, + 109692125250,0.128206327557564,L, + 111616548500,0.117311000823975,L, + 113540971750,0.111806564033031,L, + 115465395000,0.109007239341736,L, + 117389818250,0.106277406215668,L, + 119314241500,0.103614322841167,L, + 121238664750,0.101015381515026,L, + 123163088000,0.098478160798550,L, + 125087511250,0.096000403165817,L, + 127011934500,0.093579947948456,L, + 128936357750,0.091214843094349,L, + 130860781000,0.088903203606606,L, + 132785204250,0.086643248796463,L, + 134709627500,0.084433302283287,L, + 136634050750,0.082271791994572,L, + 138558474000,0.080157242715359,L, + 140482897250,0.078088209033012,L, + 142407320500,0.076063372194767,L, + 144331743750,0.074081458151340,L, + 146256167000,0.072141282260418,L, + 148180590250,0.070241652429104,L, + 150105013500,0.068381503224373,L, + 152029436750,0.066559813916683,L, + 153953860000,0.064775556325912,L, + 155878283250,0.063027799129486,L, + 157802706500,0.061315655708313,L, + 159727129750,0.059638239443302,L, + 161651553000,0.057994738221169,L, + 163575976250,0.056384369730949,L, + 165500399500,0.054806359112263,L, + 167424822750,0.053260002285242,L, + 169349246000,0.051744591444731,L, + 171273669250,0.050259478390217,L, + 173198092500,0.048804014921188,L, + 175122515750,0.047377575188875,L, + 177046939000,0.045979604125023,L, + 178971362250,0.044609509408474,L, + 180895785500,0.043266769498587,L, + 182820208750,0.041950829327106,L, + 184744632000,0.040661215782166,L, + 186669055250,0.039397440850735,L, + 188593478500,0.038159023970366,L, + 190517901750,0.036945536732674,L, + 192442325000,0.035756528377533,L, + 194366748250,0.034591600298882,L, + 196291171500,0.033450353890657,L, + 198215594750,0.032332383096218,L, + 200140018000,0.031237345188856,L, + 202064441250,0.030164843425155,L, + 203988864500,0.029114564880729,L, + 205913287750,0.028086170554161,L, + 207837711000,0.027079319581389,L, + 209762134250,0.026093728840351,L, + 211686557500,0.025129094719887,L, + 213610980750,0.024185117334127,L, + 215535404000,0.023261530324817,L, + 217459827250,0.022358063608408,L, + 219384250500,0.021474469453096,L, + 221308673750,0.020610488951206,L, + 223233097000,0.019765874370933,L, + 225157520250,0.018940441310406,L, + 227081943500,0.018133927136660,L, + 229006366750,0.017346151173115,L, + 230930790000,0.016576893627644,L, + 232855213250,0.015825973823667,L, + 234779636500,0.015093198977411,L, + 236704059750,0.014378395862877,L, + 238628483000,0.013681413605809,L, + 240552906250,0.013002069666982,L, + 242477329500,0.012340231798589,L, + 244401752750,0.011695742607117,L, + 246326176000,0.011068484745920,L, + 248250599250,0.010458332486451,L, + 250175022500,0.009865163825452,L, + 252099445750,0.009288885630667,L, + 254023869000,0.008729373104870,L, + 255948292250,0.008186543360353,L, + 257872715500,0.007660348434001,L, + 259797138750,0.007150694727898,L, + 261721562000,0.006657535675913,L, + 263645985250,0.006180821452290,L, + 265570408500,0.005720509216189,L, + 267494831750,0.005276594310999,L, + 269419255000,0.004849053919315,L, + 271343678250,0.004437931347638,L, + 273268101500,0.004043191671371,L, + 275192524750,0.003664918476716,L, + 277116948000,0.003303185338154,L, + 279041371250,0.002958052093163,L, + 280965794500,0.002629611641169,L, + 282890217750,0.002318069338799,L, + 284814641000,0.002023555338383,L, + 286739064250,0.001746304449625,L, + 288663487500,0.001486603170633,L, + 290587910750,0.001244787126780,L, + 292512334000,0.001021225005388,L, + 294436757250,0.000816494226456,L, + 296361180500,0.000631231814623,L, + 298285603750,0.000466294557555,L, + 300210027000,0.000322781503201,L, + 302134450250,0.000202372684726,L, + 304058873500,0.000107310712337,L, + 305983296750,0.000041827563109,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420111656189,L, + 344471761750,0.156420111656189,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420126557350 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.156420126557350,L, + 1924423250,0.156797766685486,L, + 3848846500,0.157936587929726,L, + 5773269750,0.159843206405640,L, + 7697693000,0.162520900368690,L, + 9622116250,0.165968984365463,L, + 11546539500,0.170182257890701,L, + 13470962750,0.175150334835052,L, + 15395386000,0.180856838822365,L, + 17319809250,0.187279000878334,L, + 19244232500,0.194387018680573,L, + 21168655750,0.202143549919128,L, + 23093079000,0.210503458976746,L, + 25017502250,0.219413667917252,L, + 26941925500,0.228813350200653,L, + 28866348750,0.238634139299393,L, + 30790772000,0.248800948262215,L, + 32715195250,0.259232819080353,L, + 34639618500,0.269844055175781,L, + 36564041750,0.280545890331268,L, + 38488465000,0.291247755289078,L, + 40412888250,0.301858991384506,L, + 42337311500,0.312290817499161,L, + 44261734750,0.322457641363144,L, + 46186158000,0.332278460264206,L, + 48110581250,0.341678082942963,L, + 50035004500,0.350588381290436,L, + 51959427750,0.358948260545731,L, + 53883851000,0.366704732179642,L, + 55808274250,0.373812735080719,L, + 57732697500,0.380234956741333,L, + 59657120750,0.385941445827484,L, + 61581544000,0.390909552574158,L, + 63505967250,0.395122855901718,L, + 65430390500,0.398570924997330,L, + 67354813750,0.401248604059219,L, + 69279237000,0.403155207633972,L, + 71203660250,0.404294013977051,L, + 73128083500,0.404671698808670,L, + 75052506750,0.403030931949615,L, + 76976930000,0.398067951202393,L, + 78901353250,0.389757364988327,L, + 80825776500,0.378134012222290,L, + 82750199750,0.363308906555176,L, + 84674623000,0.345485538244247,L, + 86599046250,0.324972003698349,L, + 88523469500,0.302186906337738,L, + 90447892750,0.277655124664307,L, + 92372316000,0.251991361379623,L, + 94296739250,0.225871473550797,L, + 96221162500,0.199994519352913,L, + 98145585750,0.175041422247887,L, + 100070009000,0.151636525988579,L, + 101994432250,0.130317971110344,L, + 103918855500,0.111520141363144,L, + 105843278750,0.095568396151066,L, + 107767702000,0.082683600485325,L, + 109692125250,0.072994053363800,L, + 111616548500,0.066550619900227,L, + 113540971750,0.063342668116093,L, + 115465395000,0.061756893992424,L, + 117389818250,0.060210525989532,L, + 119314241500,0.058701943606138,L, + 121238664750,0.057229693979025,L, + 123163088000,0.055792413651943,L, + 125087511250,0.054388817399740,L, + 127011934500,0.053017694503069,L, + 128936357750,0.051677919924259,L, + 130860781000,0.050368424504995,L, + 132785204250,0.049088209867477,L, + 134709627500,0.047836322337389,L, + 136634050750,0.046611882746220,L, + 138558474000,0.045414030551910,L, + 140482897250,0.044241975992918,L, + 142407320500,0.043094955384731,L, + 144331743750,0.041972249746323,L, + 146256167000,0.040873173624277,L, + 148180590250,0.039797082543373,L, + 150105013500,0.038743350654840,L, + 152029436750,0.037711404263973,L, + 153953860000,0.036700658500195,L, + 155878283250,0.035710599273443,L, + 157802706500,0.034740708768368,L, + 159727129750,0.033790487796068,L, + 161651553000,0.032859481871128,L, + 163575976250,0.031947243958712,L, + 165500399500,0.031053340062499,L, + 167424822750,0.030177360400558,L, + 169349246000,0.029318917542696,L, + 171273669250,0.028477631509304,L, + 173198092500,0.027653148397803,L, + 175122515750,0.026845106855035,L, + 177046939000,0.026053182780743,L, + 178971362250,0.025277055799961,L, + 180895785500,0.024516422301531,L, + 182820208750,0.023770974949002,L, + 184744632000,0.023040436208248,L, + 186669055250,0.022324532270432,L, + 188593478500,0.021623002365232,L, + 190517901750,0.020935587584972,L, + 192442325000,0.020262043923140,L, + 194366748250,0.019602142274380,L, + 196291171500,0.018955646082759,L, + 198215594750,0.018322343006730,L, + 200140018000,0.017702026292682,L, + 202064441250,0.017094476148486,L, + 203988864500,0.016499519348145,L, + 205913287750,0.015916956588626,L, + 207837711000,0.015346605330706,L, + 209762134250,0.014788288623095,L, + 211686557500,0.014241841621697,L, + 213610980750,0.013707104139030,L, + 215535404000,0.013183909468353,L, + 217459827250,0.012672120705247,L, + 219384250500,0.012171579524875,L, + 221308673750,0.011682149954140,L, + 223233097000,0.011203704401851,L, + 225157520250,0.010736116208136,L, + 227081943500,0.010279246605933,L, + 229006366750,0.009832984767854,L, + 230930790000,0.009397214278579,L, + 232855213250,0.008971835486591,L, + 234779636500,0.008556738495827,L, + 236704059750,0.008151824586093,L, + 238628483000,0.007756992708892,L, + 240552906250,0.007372155785561,L, + 242477329500,0.006997235585004,L, + 244401752750,0.006632155738771,L, + 246326176000,0.006276829633862,L, + 248250599250,0.005931196734309,L, + 250175022500,0.005595171358436,L, + 252099445750,0.005268726032227,L, + 254023869000,0.004951776005328,L, + 255948292250,0.004644275642931,L, + 257872715500,0.004346197005361,L, + 259797138750,0.004057491198182,L, + 261721562000,0.003778120735660,L, + 263645985250,0.003508080029860,L, + 265570408500,0.003247328335419,L, + 267494831750,0.002995860064402,L, + 269419255000,0.002753669396043,L, + 271343678250,0.002520769834518,L, + 273268101500,0.002297163242474,L, + 275192524750,0.002082871505991,L, + 277116948000,0.001877963775769,L, + 279041371250,0.001682449132204,L, + 280965794500,0.001496408251114,L, + 282890217750,0.001319905859418,L, + 284814641000,0.001153077930212,L, + 286739064250,0.000996021670289,L, + 288663487500,0.000848902389407,L, + 290587910750,0.000711929111276,L, + 292512334000,0.000585284142289,L, + 294436757250,0.000469312130008,L, + 296361180500,0.000364359497325,L, + 298285603750,0.000270944117801,L, + 300210027000,0.000189643367776,L, + 302134450250,0.000121410936117,L, + 304058873500,0.000067595399742,L, + 305983296750,0.000030472876460,L, + 307907720000,0.000015646219254,L, + 309832143250,0.156420126557350,L, + 344471761750,0.156420126557350,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420156359673 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.156420156359673,L, + 1924423250,0.157241925597191,L, + 3848846500,0.159719988703728,L, + 5773269750,0.163868770003319,L, + 7697693000,0.169695422053337,L, + 9622116250,0.177198499441147,L, + 11546539500,0.186366632580757,L, + 13470962750,0.197177127003670,L, + 15395386000,0.209594488143921,L, + 17319809250,0.223569139838219,L, + 19244232500,0.239036217331886,L, + 21168655750,0.255914449691772,L, + 23093079000,0.274105608463287,L, + 25017502250,0.293494313955307,L, + 26941925500,0.313947945833206,L, + 28866348750,0.335318088531494,L, + 30790772000,0.357441037893295,L, + 32715195250,0.380140781402588,L, + 34639618500,0.403230994939804,L, + 36564041750,0.426518172025681,L, + 38488465000,0.449805319309235,L, + 40412888250,0.472895562648773,L, + 42337311500,0.495595246553421,L, + 44261734750,0.517718255519867,L, + 46186158000,0.539088428020477,L, + 48110581250,0.559542119503021,L, + 50035004500,0.578930735588074,L, + 51959427750,0.597121894359589,L, + 53883851000,0.614000201225281,L, + 55808274250,0.629467189311981,L, + 57732697500,0.643441796302795,L, + 59657120750,0.655859291553497,L, + 61581544000,0.666669726371765,L, + 63505967250,0.675837874412537,L, + 65430390500,0.683340907096863,L, + 67354813750,0.689167678356171,L, + 69279237000,0.693316459655762,L, + 71203660250,0.695794641971588,L, + 73128083500,0.696616351604462,L, + 75052506750,0.693823158740997,L, + 76976930000,0.685374200344086,L, + 78901353250,0.671225309371948,L, + 80825776500,0.651434957981110,L, + 82750199750,0.626191258430481,L, + 84674623000,0.595839440822601,L, + 86599046250,0.560902416706085,L, + 88523469500,0.522091805934906,L, + 90447892750,0.480299741029739,L, + 92372316000,0.436571389436722,L, + 94296739250,0.392056137323380,L, + 96221162500,0.347943186759949,L, + 98145585750,0.305391132831573,L, + 100070009000,0.265462517738342,L, + 101994432250,0.229073464870453,L, + 103918855500,0.196963846683502,L, + 105843278750,0.169687882065773,L, + 107767702000,0.147622182965279,L, + 109692125250,0.130985915660858,L, + 111616548500,0.119866319000721,L, + 113540971750,0.114246286451817,L, + 115465395000,0.111385859549046,L, + 117389818250,0.108596459031105,L, + 119314241500,0.105875253677368,L, + 121238664750,0.103219568729401,L, + 123163088000,0.100626982748508,L, + 125087511250,0.098095148801804,L, + 127011934500,0.095621883869171,L, + 128936357750,0.093205168843269,L, + 130860781000,0.090843074023724,L, + 132785204250,0.088533803820610,L, + 134709627500,0.086275622248650,L, + 136634050750,0.084066942334175,L, + 138558474000,0.081906229257584,L, + 140482897250,0.079792045056820,L, + 142407320500,0.077723026275635,L, + 144331743750,0.075697861611843,L, + 146256167000,0.073715336620808,L, + 148180590250,0.071774251759052,L, + 150105013500,0.069873526692390,L, + 152029436750,0.068012066185474,L, + 153953860000,0.066188856959343,L, + 155878283250,0.064402975142002,L, + 157802706500,0.062653452157974,L, + 159727129750,0.060939434915781,L, + 161651553000,0.059260070323944,L, + 163575976250,0.057614546269178,L, + 165500399500,0.056002110242844,L, + 167424822750,0.054422002285719,L, + 169349246000,0.052873514592648,L, + 171273669250,0.051355998963118,L, + 173198092500,0.049868758767843,L, + 175122515750,0.048411197960377,L, + 177046939000,0.046982709318399,L, + 178971362250,0.045582722872496,L, + 180895785500,0.044210661202669,L, + 182820208750,0.042866013944149,L, + 184744632000,0.041548259556293,L, + 186669055250,0.040256898850203,L, + 188593478500,0.038991454988718,L, + 190517901750,0.037751488387585,L, + 192442325000,0.036536529660225,L, + 194366748250,0.035346183925867,L, + 196291171500,0.034180026501417,L, + 198215594750,0.033037658780813,L, + 200140018000,0.031918719410896,L, + 202064441250,0.030822817236185,L, + 203988864500,0.029749618843198,L, + 205913287750,0.028698777779937,L, + 207837711000,0.027669964358211,L, + 209762134250,0.026662854477763,L, + 211686557500,0.025677168741822,L, + 213610980750,0.024712590500712,L, + 215535404000,0.023768849670887,L, + 217459827250,0.022845659404993,L, + 219384250500,0.021942779421806,L, + 221308673750,0.021059939637780,L, + 223233097000,0.020196910947561,L, + 225157520250,0.019353451207280,L, + 227081943500,0.018529340624809,L, + 229006366750,0.017724366858602,L, + 230930790000,0.016938325017691,L, + 232855213250,0.016171021386981,L, + 234779636500,0.015422251075506,L, + 236704059750,0.014691856689751,L, + 238628483000,0.013979658484459,L, + 240552906250,0.013285490684211,L, + 242477329500,0.012609186582267,L, + 244401752750,0.011950651183724,L, + 246326176000,0.011309704743326,L, + 248250599250,0.010686242021620,L, + 250175022500,0.010080109350383,L, + 252099445750,0.009491251781583,L, + 254023869000,0.008919535204768,L, + 255948292250,0.008364863693714,L, + 257872715500,0.007827192544937,L, + 259797138750,0.007306414190680,L, + 261721562000,0.006802480667830,L, + 263645985250,0.006315364036709,L, + 265570408500,0.005845021922141,L, + 267494831750,0.005391402635723,L, + 269419255000,0.004954552743584,L, + 271343678250,0.004534445703030,L, + 273268101500,0.004131082445383,L, + 275192524750,0.003744557499886,L, + 277116948000,0.003374934196472,L, + 279041371250,0.003022246062756,L, + 280965794500,0.002686660969630,L, + 282890217750,0.002368312561885,L, + 284814641000,0.002067398279905,L, + 286739064250,0.001784086343832,L, + 288663487500,0.001518689328805,L, + 290587910750,0.001271605491638,L, + 292512334000,0.001043181982823,L, + 294436757250,0.000833991973195,L, + 296361180500,0.000644661602564,L, + 298285603750,0.000476144312415,L, + 300210027000,0.000329509406583,L, + 302134450250,0.000206448123208,L, + 304058873500,0.000109314925794,L, + 305983296750,0.000042423609557,L, + 307907720000,0.000015646221073,L, + 309832143250,0.156420156359673,L, + 344471761750,0.156420156359673,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_029" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.039614260196686 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,0.039614260196686,L, + 1924423250,0.038137733936310,L, + 3848846500,0.033668905496597,L, + 5773269750,0.026343762874603,L, + 7697693000,0.016655623912811,L, + 9622116250,0.005506217479706,L, + 11546539500,-0.005905896425247,L, + 13470962750,-0.016355484724045,L, + 15395386000,-0.024872034788132,L, + 17319809250,-0.030874431133270,L, + 19244232500,-0.034140259027481,L, + 21168655750,-0.035975456237793,L, + 23093079000,-0.037705004215240,L, + 25017502250,-0.039337605237961,L, + 26941925500,-0.040881037712097,L, + 28866348750,-0.042341768741608,L, + 30790772000,-0.043725818395615,L, + 32715195250,-0.045038133859634,L, + 34639618500,-0.046283394098282,L, + 36564041750,-0.047465562820435,L, + 38488465000,-0.048588335514069,L, + 40412888250,-0.049654901027679,L, + 42337311500,-0.050668150186539,L, + 44261734750,-0.051630824804306,L, + 46186158000,-0.052545219659805,L, + 48110581250,-0.053413629531860,L, + 50035004500,-0.054237961769104,L, + 51959427750,-0.055019974708557,L, + 53883851000,-0.055761456489563,L, + 55808274250,-0.056463867425919,L, + 57732697500,-0.057128578424454,L, + 59657120750,-0.057756841182709,L, + 61581544000,-0.058349788188934,L, + 63505967250,-0.058908522129059,L, + 65430390500,-0.059433966875076,L, + 67354813750,-0.059926927089691,L, + 69279237000,-0.060388267040253,L, + 71203660250,-0.060818642377853,L, + 73128083500,-0.061218559741974,L, + 75052506750,-0.061588615179062,L, + 76976930000,-0.061929166316986,L, + 78901353250,-0.062240451574326,L, + 80825776500,-0.062522709369659,L, + 82750199750,-0.062775999307632,L, + 84674623000,-0.063000172376633,L, + 86599046250,-0.063194811344147,L, + 88523469500,-0.063359379768372,L, + 90447892750,-0.063492715358734,L, + 92372316000,-0.063592940568924,L, + 94296739250,-0.063656836748123,L, + 96221162500,-0.063678205013275,L, + 169349246000,-0.063678205013275,L, + 171273669250,0.039614260196686,L, + 344471761750,0.039614260196686,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.016422979533672 + KeyVer: 4005 + KeyCount: 54 + Key: + 0,-0.016422979533672,L, + 1924423250,-0.017436735332012,L, + 3848846500,-0.020504899322987,L, + 5773269750,-0.025534056127071,L, + 7697693000,-0.032185509800911,L, + 9622116250,-0.039840355515480,L, + 11546539500,-0.047675020992756,L, + 13470962750,-0.054849792271852,L, + 15395386000,-0.060697037726641,L, + 17319809250,-0.064817711710930,L, + 19244232500,-0.067060165107250,L, + 21168655750,-0.068319901823997,L, + 23093079000,-0.069507434964180,L, + 25017502250,-0.070628464221954,L, + 26941925500,-0.071688413619995,L, + 28866348750,-0.072690941393375,L, + 30790772000,-0.073641285300255,L, + 32715195250,-0.074541941285133,L, + 34639618500,-0.075396925210953,L, + 36564041750,-0.076208919286728,L, + 38488465000,-0.076979696750641,L, + 40412888250,-0.077712059020996,L, + 42337311500,-0.078407451510429,L, + 44261734750,-0.079068273305893,L, + 46186158000,-0.079696044325829,L, + 48110581250,-0.080292314291000,L, + 50035004500,-0.080858662724495,L, + 51959427750,-0.081395268440247,L, + 53883851000,-0.081904232501984,L, + 55808274250,-0.082386761903763,L, + 57732697500,-0.082843065261841,L, + 59657120750,-0.083274401724339,L, + 61581544000,-0.083681516349316,L, + 63505967250,-0.084065198898315,L, + 65430390500,-0.084425762295723,L, + 67354813750,-0.084764018654823,L, + 69279237000,-0.085080802440643,L, + 71203660250,-0.085376471281052,L, + 73128083500,-0.085650935769081,L, + 75052506750,-0.085905060172081,L, + 76976930000,-0.086138777434826,L, + 78901353250,-0.086352527141571,L, + 80825776500,-0.086546264588833,L, + 82750199750,-0.086720481514931,L, + 84674623000,-0.086874216794968,L, + 86599046250,-0.087007552385330,L, + 88523469500,-0.087121069431305,L, + 90447892750,-0.087212078273296,L, + 92372316000,-0.087281368672848,L, + 94296739250,-0.087325185537338,L, + 96221162500,-0.087339788675308,L, + 169349246000,-0.087339788675308,L, + 171273669250,-0.016422979533672,L, + 344471761750,-0.016422979533672,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.692347168922424 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.692347168922424,L, + 1924423250,0.697547078132629,L, + 3848846500,0.713490605354309,L, + 5773269750,0.740104317665100,L, + 7697693000,0.776168465614319,L, + 9622116250,0.819063067436218,L, + 11546539500,0.865029931068420,L, + 13470962750,0.910002112388611,L, + 15395386000,0.950554966926575,L, + 17319809250,0.984439253807068,L, + 19244232500,1.010571360588074,L, + 21168655750,1.032242655754089,L, + 23093079000,1.053054451942444,L, + 25017502250,1.073078036308289,L, + 26941925500,1.092374682426453,L, + 28866348750,1.110998034477234,L, + 30790772000,1.128994822502136,L, + 32715195250,1.146406054496765,L, + 34639618500,1.163267731666565,L, + 36564041750,1.179612755775452,L, + 38488465000,1.195469737052917,L, + 40412888250,1.210864186286926,L, + 42337311500,1.225819706916809,L, + 44261734750,1.240357041358948,L, + 46186158000,1.254495024681091,L, + 48110581250,1.268250823020935,L, + 50035004500,1.281639695167542,L, + 51959427750,1.294676184654236,L, + 53883851000,1.307371973991394,L, + 55808274250,1.319738984107971,L, + 57732697500,1.331787705421448,L, + 59657120750,1.343526721000671,L, + 61581544000,1.354963898658752,L, + 63505967250,1.366107344627380,L, + 65430390500,1.376962542533875,L, + 67354813750,1.387534499168396,L, + 69279237000,1.397827506065369,L, + 71203660250,1.407844424247742,L, + 73128083500,1.417587399482727,L, + 75052506750,1.427056670188904,L, + 76976930000,1.436250805854797,L, + 78901353250,1.445167183876038,L, + 80825776500,1.453799366950989,L, + 82750199750,1.462139010429382,L, + 84674623000,1.470172047615051,L, + 86599046250,1.477877974510193,L, + 88523469500,1.485222697257996,L, + 90447892750,1.492151856422424,L, + 92372316000,1.498564362525940,L, + 94296739250,1.504218459129333,L, + 96221162500,1.507913231849670,L, + 98145585750,0.101423859596252,L, + 169349246000,0.101423859596252,L, + 171273669250,0.692347168922424,L, + 173198092500,0.693831801414490,L, + 175122515750,0.695301890373230,L, + 177046939000,0.696757912635803,L, + 178971362250,0.698199629783630,L, + 180895785500,0.699625849723816,L, + 182820208750,0.701037049293518,L, + 184744632000,0.702432990074158,L, + 186669055250,0.703812479972839,L, + 188593478500,0.705176472663879,L, + 190517901750,0.706523299217224,L, + 192442325000,0.707853198051453,L, + 194366748250,0.709165930747986,L, + 196291171500,0.710461020469666,L, + 198215594750,0.711737751960754,L, + 200140018000,0.712995886802673,L, + 202064441250,0.714234948158264,L, + 203988864500,0.715454936027527,L, + 205913287750,0.716654419898987,L, + 207837711000,0.717833876609802,L, + 209762134250,0.718992114067078,L, + 211686557500,0.720128893852234,L, + 213610980750,0.721243739128113,L, + 215535404000,0.722335696220398,L, + 217459827250,0.723404526710510,L, + 219384250500,0.724449276924133,L, + 221308673750,0.725469470024109,L, + 223233097000,0.726464390754700,L, + 225157520250,0.727433323860168,L, + 227081943500,0.728375315666199,L, + 229006366750,0.729290366172791,L, + 230930790000,0.730176568031311,L, + 232855213250,0.731033444404602,L, + 234779636500,0.731860280036926,L, + 236704059750,0.732656359672546,L, + 238628483000,0.733419775962830,L, + 240552906250,0.734150528907776,L, + 242477329500,0.734846711158752,L, + 244401752750,0.735507607460022,L, + 246326176000,0.736131548881531,L, + 248250599250,0.736717820167542,L, + 250175022500,0.737264752388000,L, + 252099445750,0.737770676612854,L, + 254023869000,0.738234400749207,L, + 255948292250,0.738654494285583,L, + 257872715500,0.739028811454773,L, + 259797138750,0.739355683326721,L, + 261721562000,0.739633440971375,L, + 263645985250,0.739859938621521,L, + 265570408500,0.740033030509949,L, + 267494831750,0.740150570869446,L, + 269419255000,0.740209937095642,L, + 271343678250,0.740208745002747,L, + 273268101500,0.740144133567810,L, + 275192524750,0.740013480186462,L, + 277116948000,0.739813685417175,L, + 279041371250,0.739541649818420,L, + 280965794500,0.739193797111511,L, + 282890217750,0.738766789436340,L, + 284814641000,0.738256812095642,L, + 286739064250,0.737660050392151,L, + 288663487500,0.736972451210022,L, + 290587910750,0.736189246177673,L, + 292512334000,0.735307097434998,L, + 294436757250,0.734320998191833,L, + 296361180500,0.733226656913757,L, + 298285603750,0.732020497322083,L, + 300210027000,0.730698227882385,L, + 302134450250,0.729256749153137,L, + 304058873500,0.727693915367126,L, + 305983296750,0.726008296012878,L, + 307907720000,0.724200844764709,L, + 309832143250,0.722274661064148,L, + 311756566500,0.720235943794250,L, + 313680989750,0.718094229698181,L, + 315605413000,0.715864539146423,L, + 317529836250,0.713567137718201,L, + 319454259500,0.711228013038635,L, + 321378682750,0.708879113197327,L, + 323303106000,0.706556916236877,L, + 325227529250,0.704302430152893,L, + 327151952500,0.702156901359558,L, + 329076375750,0.700160622596741,L, + 331000799000,0.698349118232727,L, + 332925222250,0.696751713752747,L, + 334849645500,0.695390343666077,L, + 336774068750,0.694278120994568,L, + 338698492000,0.693420767784119,L, + 340622915250,0.692817568778992,L, + 342547338500,0.692462801933289,L, + 344471761750,0.692347168922424,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 33.480952103761588 + KeyVer: 4005 + KeyCount: 75 + Key: + 0,33.480952103761588,L, + 1924423250,33.440770100874460,L, + 3848846500,33.319182488364653,L, + 5773269750,33.119870738194798,L, + 7697693000,32.856266417367706,L, + 9622116250,32.552896735192853,L, + 11546539500,32.242389505335353,L, + 13470962750,31.958065805661054,L, + 15395386000,31.726337977690363,L, + 17319809250,31.563017909351839,L, + 19244232500,31.474160563344686,L, + 21168655750,31.424225050322793,L, + 23093079000,31.377161631846889,L, + 25017502250,31.332748326768943,L, + 26941925500,31.290752908657183,L, + 28866348750,31.251004622782350,L, + 30790772000,31.213339544604366,L, + 32715195250,31.177634730718179,L, + 34639618500,31.143756992434962,L, + 36564041750,31.111586801444250,L, + 38488465000,31.081038780381412,L, + 40412888250,31.052017306598067,L, + 42337311500,31.024450663107938,L, + 44261734750,30.998256887640977,L, + 46186158000,30.973374508494654,L, + 48110581250,30.949748884155614,L, + 50035004500,30.927315127826741,L, + 51959427750,30.906035673467596,L, + 53883851000,30.885862709753994,L, + 55808274250,30.866755255550910,L, + 57732697500,30.848665499534157,L, + 59657120750,30.831572951136224,L, + 61581544000,30.815446874505845,L, + 63505967250,30.800239458318835,L, + 65430390500,30.785943872386021,L, + 67354813750,30.772529380856135,L, + 69279237000,30.759975493161669,L, + 71203660250,30.748265133829698,L, + 73128083500,30.737381227387299,L, + 75052506750,30.727310113456127,L, + 76976930000,30.718055207130774,L, + 78901353250,30.709578942370801,L, + 80825776500,30.701898394649135,L, + 82750199750,30.695006733776601,L, + 84674623000,30.688903959753201,L, + 86599046250,30.683610563146448,L, + 88523469500,30.679133374145515,L, + 90447892750,30.675506543696240,L, + 92372316000,30.672781298217412,L, + 94296739250,30.671043015073646,L, + 96221162500,30.670455618805025,L, + 98145585750,30.670459033899608,L, + 167424822750,30.670459033899608,L, + 169349246000,30.670455618805025,L, + 171273669250,33.480952103761588,L, + 175122515750,33.480952103761588,L, + 177046939000,33.480948688667006,L, + 178971362250,33.480952103761588,L, + 215535404000,33.480952103761588,L, + 217459827250,33.480948688667006,L, + 219384250500,33.480952103761588,L, + 246326176000,33.480952103761588,L, + 248250599250,33.480948688667006,L, + 250175022500,33.480952103761588,L, + 257872715500,33.480952103761588,L, + 259797138750,33.480948688667006,L, + 261721562000,33.480948688667006,L, + 263645985250,33.480952103761588,L, + 282890217750,33.480952103761588,L, + 284814641000,33.480948688667006,L, + 286739064250,33.480952103761588,L, + 294436757250,33.480952103761588,L, + 296361180500,33.480948688667006,L, + 298285603750,33.480952103761588,L, + 344471761750,33.480952103761588,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -31.734858638679942 + KeyVer: 4005 + KeyCount: 124 + Key: + 0,-31.734858638679942,L, + 1924423250,-29.933491867740049,L, + 3848846500,-24.481353126940441,L, + 5773269750,-15.544525296138913,L, + 7697693000,-3.724754871401892,L, + 9622116250,9.877857997472329,L, + 11546539500,23.800886993142434,L, + 13470962750,36.549657060100941,L, + 15395386000,46.940116485913762,L, + 17319809250,54.263185766802451,L, + 19244232500,58.247532222894058,L, + 21168655750,60.486611666793593,L, + 23093079000,62.596655176893428,L, + 25017502250,64.588488603028026,L, + 26941925500,66.471448813792776,L, + 28866348750,68.253643243732469,L, + 30790772000,69.942168459394750,L, + 32715195250,71.543287744248502,L, + 34639618500,73.062533551521426,L, + 36564041750,74.504837277794266,L, + 38488465000,75.874624885649183,L, + 40412888250,77.175830564048098,L, + 42337311500,78.412053822683603,L, + 44261734750,79.586511680654780,L, + 46186158000,80.702134289115548,L, + 48110581250,81.761578591653048,L, + 50035004500,82.767262475233451,L, + 51959427750,83.721412581526181,L, + 53883851000,84.626036986147227,L, + 55808274250,85.482973009983297,L, + 57732697500,86.293921370137753,L, + 59657120750,87.060405198795479,L, + 61581544000,87.783852005493017,L, + 63505967250,88.465511714848489,L, + 65430390500,89.106565949588273,L, + 67354813750,89.708046068277085,L, + 69279237000,90.270894637020334,L, + 71203660250,90.795910787950959,L, + 73128083500,91.283866332445129,L, + 75052506750,91.735314515825650,L, + 76976930000,92.150767602280254,L, + 78901353250,92.530580761645766,L, + 80825776500,92.874958899597317,L, + 82750199750,93.183990808594103,L, + 84674623000,93.457464752771855,L, + 86599046250,93.694970920780364,L, + 88523469500,93.895730671054253,L, + 90447892750,94.058371135570368,L, + 92372316000,94.180679333037617,L, + 94296739250,94.258645942413196,L, + 96221162500,94.284634812205056,L, + 169349246000,94.284634812205056,L, + 171273669250,-31.734858638679942,L, + 173198092500,-31.734858638679942,L, + 175122515750,-31.734862053774528,L, + 177046939000,-31.734858638679942,L, + 178971362250,-31.734858638679942,L, + 180895785500,-31.734865468869113,L, + 186669055250,-31.734865468869113,L, + 190517901750,-31.734858638679942,L, + 192442325000,-31.734865468869113,L, + 196291171500,-31.734858638679942,L, + 198215594750,-31.734862053774528,L, + 200140018000,-31.734862053774528,L, + 202064441250,-31.734858638679942,L, + 203988864500,-31.734865468869113,L, + 205913287750,-31.734862053774528,L, + 209762134250,-31.734862053774528,L, + 211686557500,-31.734858638679942,L, + 213610980750,-31.734858638679942,L, + 215535404000,-31.734862053774528,L, + 217459827250,-31.734858638679942,L, + 219384250500,-31.734865468869113,L, + 221308673750,-31.734858638679942,L, + 223233097000,-31.734858638679942,L, + 225157520250,-31.734862053774528,L, + 227081943500,-31.734862053774528,L, + 229006366750,-31.734865468869113,L, + 230930790000,-31.734858638679942,L, + 234779636500,-31.734865468869113,L, + 236704059750,-31.734858638679942,L, + 238628483000,-31.734862053774528,L, + 240552906250,-31.734862053774528,L, + 242477329500,-31.734865468869113,L, + 244401752750,-31.734858638679942,L, + 246326176000,-31.734865468869113,L, + 248250599250,-31.734865468869113,L, + 250175022500,-31.734862053774528,L, + 257872715500,-31.734862053774528,L, + 259797138750,-31.734865468869113,L, + 263645985250,-31.734858638679942,L, + 267494831750,-31.734865468869113,L, + 271343678250,-31.734865468869113,L, + 273268101500,-31.734862053774528,L, + 279041371250,-31.734862053774528,L, + 280965794500,-31.734865468869113,L, + 282890217750,-31.734858638679942,L, + 284814641000,-31.734862053774528,L, + 286739064250,-31.734862053774528,L, + 288663487500,-31.734865468869113,L, + 290587910750,-31.734862053774528,L, + 292512334000,-31.734862053774528,L, + 294436757250,-31.734865468869113,L, + 296361180500,-31.734865468869113,L, + 298285603750,-31.734862053774528,L, + 302134450250,-31.734862053774528,L, + 304058873500,-31.734858638679942,L, + 305983296750,-31.734862053774528,L, + 311756566500,-31.734862053774528,L, + 313680989750,-31.734865468869113,L, + 315605413000,-31.734862053774528,L, + 317529836250,-31.734865468869113,L, + 319454259500,-31.734865468869113,L, + 321378682750,-31.734862053774528,L, + 323303106000,-31.734865468869113,L, + 325227529250,-31.734862053774528,L, + 329076375750,-31.734862053774528,L, + 331000799000,-31.734865468869113,L, + 332925222250,-31.734858638679942,L, + 336774068750,-31.734858638679942,L, + 338698492000,-31.734865468869113,L, + 340622915250,-31.734862053774528,L, + 342547338500,-31.734865468869113,L, + 344471761750,-31.734858638679942,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.259470802399199 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,0.259470802399199,L, + 1924423250,0.236252561491552,L, + 3848846500,0.165142808372204,L, + 5773269750,0.046635697889454,L, + 7697693000,-0.113615874613915,L, + 9622116250,-0.303688566631725,L, + 11546539500,-0.506619463288036,L, + 13470962750,-0.704143358081791,L, + 15395386000,-0.880973167072611,L, + 17319809250,-1.027148500099077,L, + 19244232500,-1.137950923744332,L, + 21168655750,-1.228277934361800,L, + 23093079000,-1.314352298447294,L, + 25017502250,-1.396527585012069,L, + 26941925500,-1.475114247498242,L, + 28866348750,-1.550371299485744,L, + 30790772000,-1.622535876604822,L, + 32715195250,-1.691810750096459,L, + 34639618500,-1.758377773747308,L, + 36564041750,-1.822398844385038,L, + 38488465000,-1.884017182538808,L, + 40412888250,-1.943362348359436,L, + 42337311500,-2.000550241619401,L, + 44261734750,-2.055686089920604,L, + 46186158000,-2.108864021807543,L, + 48110581250,-2.160170695305312,L, + 50035004500,-2.209686365136660,L, + 51959427750,-2.257478692863051,L, + 53883851000,-2.303612778725013,L, + 55808274250,-2.348148386877783,L, + 57732697500,-2.391137597513781,L, + 59657120750,-2.432629929504491,L, + 61581544000,-2.472667858088814,L, + 63505967250,-2.511288949307183,L, + 65430390500,-2.548528207879098,L, + 67354813750,-2.584416369655820,L, + 69279237000,-2.618979047846739,L, + 71203660250,-2.652234598585249,L, + 73128083500,-2.684202018334978,L, + 75052506750,-2.714891979266505,L, + 76976930000,-2.744310457795354,L, + 78901353250,-2.772452971609882,L, + 80825776500,-2.799311409860449,L, + 82750199750,-2.824864641649311,L, + 84674623000,-2.849075954709679,L, + 86599046250,-2.871886225216550,L, + 88523469500,-2.893202178399072,L, + 90447892750,-2.912867573679979,L, + 92372316000,-2.930593195236606,L, + 94296739250,-2.945726546559805,L, + 96221162500,-2.955200445825423,L, + 98145585750,-2.955199378608365,L, + 169349246000,-2.955199378608365,L, + 171273669250,0.259470802399199,L, + 173198092500,0.257409712775871,L, + 175122515750,0.255370314339243,L, + 177046939000,0.253350659418185,L, + 178971362250,0.251355070241781,L, + 180895785500,0.249380905447812,L, + 182820208750,0.247429365655469,L, + 184744632000,0.245500904432001,L, + 186669055250,0.243596615674892,L, + 188593478500,0.241716285940731,L, + 190517901750,0.239861035807429,L, + 192442325000,0.238032119255029,L, + 194366748250,0.236229056035854,L, + 196291171500,0.234454594233828,L, + 198215594750,0.232705452156499,L, + 200140018000,0.230985765269966,L, + 202064441250,0.229295827058919,L, + 203988864500,0.227634036697772,L, + 205913287750,0.226004342889639,L, + 207837711000,0.224405811819594,L, + 209762134250,0.222838790333180,L, + 211686557500,0.221305919792617,L, + 213610980750,0.219806933393640,L, + 215535404000,0.218343005075011,L, + 217459827250,0.216915935765517,L, + 219384250500,0.215526979445200,L, + 221308673750,0.214173721535466,L, + 223233097000,0.212862338555039,L, + 225157520250,0.211592590380080,L, + 227081943500,0.210361422101760,L, + 229006366750,0.209177838364006,L, + 230930790000,0.208035969472999,L, + 232855213250,0.206942045308314,L, + 234779636500,0.205897319849995,L, + 236704059750,0.204900178932240,L, + 238628483000,0.203954184391982,L, + 240552906250,0.203062604581458,L, + 242477329500,0.202225492861523,L, + 244401752750,0.201444196593711,L, + 246326176000,0.200724291987150,L, + 248250599250,0.200064445020518,L, + 250175022500,0.199468951242472,L, + 252099445750,0.198937357085762,L, + 254023869000,0.198478093565145,L, + 255948292250,0.198087332039427,L, + 257872715500,0.197770955542638,L, + 259797138750,0.197533473066848,L, + 261721562000,0.197374124219904,L, + 263645985250,0.197298298447946,L, + 265570408500,0.197311558619889,L, + 267494831750,0.197414024797653,L, + 269419255000,0.197610192633092,L, + 271343678250,0.197904531097637,L, + 273268101500,0.198302482998282,L, + 275192524750,0.198804248438226,L, + 277116948000,0.199417604761778,L, + 279041371250,0.200145913702669,L, + 280965794500,0.200992056746956,L, + 282890217750,0.201961836887390,L, + 284814641000,0.203058896002182,L, + 286739064250,0.204284834916919,L, + 288663487500,0.205647404295481,L, + 290587910750,0.207144242920130,L, + 292512334000,0.208779059370141,L, + 294436757250,0.210553894698137,L, + 296361180500,0.212467094717678,L, + 298285603750,0.214515391076525,L, + 300210027000,0.216694568267300,L, + 302134450250,0.218999997236014,L, + 304058873500,0.221414082241427,L, + 305983296750,0.223930393300764,L, + 307907720000,0.226525971907071,L, + 309832143250,0.229181448070748,L, + 311756566500,0.231874703718271,L, + 313680989750,0.234576683865242,L, + 315605413000,0.237256519258263,L, + 317529836250,0.239884087695878,L, + 319454259500,0.242430360874114,L, + 321378682750,0.244864336137442,L, + 323303106000,0.247158666048754,L, + 325227529250,0.249289685069795,L, + 327151952500,0.251242345440049,L, + 329076375750,0.252997410572049,L, + 331000799000,0.254545115429716,L, + 332925222250,0.255881751433774,L, + 334849645500,0.257002035859786,L, + 336774068750,0.257908423306987,L, + 338698492000,0.258602781405226,L, + 340622915250,0.259089218940178,L, + 342547338500,0.259376647174273,L, + 344471761750,0.259470802399199,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.162417262792587 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,0.162417262792587,L, + 1924423250,0.168850347399712,L, + 3848846500,0.188211292028427,L, + 5773269750,0.219691038131714,L, + 7697693000,0.260865062475204,L, + 9622116250,0.307508558034897,L, + 11546539500,0.354152083396912,L, + 13470962750,0.395326107740402,L, + 15395386000,0.426805824041367,L, + 17319809250,0.446166753768921,L, + 19244232500,0.452599883079529,L, + 21168655750,0.452372878789902,L, + 23093079000,0.451713860034943,L, + 25017502250,0.450651973485947,L, + 26941925500,0.449212014675140,L, + 28866348750,0.447414934635162,L, + 30790772000,0.445278704166412,L, + 32715195250,0.442818790674210,L, + 34639618500,0.440048128366470,L, + 36564041750,0.436977863311768,L, + 38488465000,0.433617293834686,L, + 40412888250,0.429974079132080,L, + 42337311500,0.426054567098618,L, + 44261734750,0.421863585710526,L, + 46186158000,0.417404860258102,L, + 48110581250,0.412680685520172,L, + 50035004500,0.407692223787308,L, + 51959427750,0.402439355850220,L, + 53883851000,0.396920770406723,L, + 55808274250,0.391133695840836,L, + 57732697500,0.385074079036713,L, + 59657120750,0.378736257553101,L, + 61581544000,0.372112810611725,L, + 63505967250,0.365194171667099,L, + 65430390500,0.357968926429749,L, + 67354813750,0.350422501564026,L, + 69279237000,0.342537194490433,L, + 71203660250,0.334291517734528,L, + 73128083500,0.325658708810806,L, + 75052506750,0.316605776548386,L, + 76976930000,0.307091414928436,L, + 78901353250,0.297062933444977,L, + 80825776500,0.286452144384384,L, + 82750199750,0.275168478488922,L, + 84674623000,0.263087540864944,L, + 86599046250,0.250031024217606,L, + 88523469500,0.235727399587631,L, + 90447892750,0.219726905226707,L, + 92372316000,0.201174855232239,L, + 94296739250,0.177984803915024,L, + 96221162500,0.138935759663582,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380201451,L, + 171273669250,0.162417262792587,L, + 173198092500,0.163140550255775,L, + 175122515750,0.163857191801071,L, + 177046939000,0.164567098021507,L, + 178971362250,0.165270060300827,L, + 180895785500,0.165966004133224,L, + 182820208750,0.166654780507088,L, + 184744632000,0.167336210608482,L, + 186669055250,0.168010205030441,L, + 188593478500,0.168676555156708,L, + 190517901750,0.169335111975670,L, + 192442325000,0.169985681772232,L, + 194366748250,0.170628160238266,L, + 196291171500,0.171262308955193,L, + 198215594750,0.171887949109077,L, + 200140018000,0.172504901885986,L, + 202064441250,0.173112988471985,L, + 203988864500,0.173711970448494,L, + 205913287750,0.174301639199257,L, + 207837711000,0.174881756305695,L, + 209762134250,0.175452128052711,L, + 211686557500,0.176012471318245,L, + 213610980750,0.176562562584877,L, + 215535404000,0.177102133631706,L, + 217459827250,0.177630916237831,L, + 219384250500,0.178148597478867,L, + 221308673750,0.178654938936234,L, + 223233097000,0.179149568080902,L, + 225157520250,0.179632186889648,L, + 227081943500,0.180102497339249,L, + 229006366750,0.180560082197189,L, + 230930790000,0.181004628539085,L, + 232855213250,0.181435748934746,L, + 234779636500,0.181852951645851,L, + 236704059750,0.182255938649178,L, + 238628483000,0.182644173502922,L, + 240552906250,0.183017238974571,L, + 242477329500,0.183374613523483,L, + 244401752750,0.183715805411339,L, + 246326176000,0.184040263295174,L, + 248250599250,0.184347435832024,L, + 250175022500,0.184636712074280,L, + 252099445750,0.184907436370850,L, + 254023869000,0.185158923268318,L, + 255948292250,0.185390517115593,L, + 257872715500,0.185601428151131,L, + 259797138750,0.185790896415710,L, + 261721562000,0.185958057641983,L, + 263645985250,0.186102002859116,L, + 265570408500,0.186221808195114,L, + 267494831750,0.186316460371017,L, + 269419255000,0.186384871602058,L, + 271343678250,0.186425983905792,L, + 273268101500,0.186438485980034,L, + 275192524750,0.186421111226082,L, + 277116948000,0.186372533440590,L, + 279041371250,0.186291202902794,L, + 280965794500,0.186175599694252,L, + 282890217750,0.186024084687233,L, + 284814641000,0.185834795236588,L, + 286739064250,0.185605958104134,L, + 288663487500,0.185335382819176,L, + 290587910750,0.185021102428436,L, + 292512334000,0.184660792350769,L, + 294436757250,0.184252053499222,L, + 296361180500,0.183792427182198,L, + 298285603750,0.183279365301132,L, + 300210027000,0.182710200548172,L, + 302134450250,0.182082325220108,L, + 304058873500,0.181393191218376,L, + 305983296750,0.180640384554863,L, + 307907720000,0.179821938276291,L, + 309832143250,0.178936377167702,L, + 311756566500,0.177983090281487,L, + 313680989750,0.176962763071060,L, + 315605413000,0.175877869129181,L, + 317529836250,0.174733445048332,L, + 319454259500,0.173537448048592,L, + 321378682750,0.172301873564720,L, + 323303106000,0.171043112874031,L, + 325227529250,0.169782340526581,L, + 327151952500,0.168544694781303,L, + 329076375750,0.167358621954918,L, + 331000799000,0.166253298521042,L, + 332925222250,0.165256366133690,L, + 334849645500,0.164390996098518,L, + 336774068750,0.163674592971802,L, + 338698492000,0.163117706775665,L, + 340622915250,0.162724286317825,L, + 342547338500,0.162492677569389,L, + 344471761750,0.162417262792587,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.162417262792587 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,0.162417262792587,L, + 1924423250,0.175722196698189,L, + 3848846500,0.215764462947845,L, + 5773269750,0.280870914459229,L, + 7697693000,0.366027086973190,L, + 9622116250,0.462495118379593,L, + 11546539500,0.558963239192963,L, + 13470962750,0.644119381904602,L, + 15395386000,0.709225714206696,L, + 17319809250,0.749268114566803,L, + 19244232500,0.762573063373566,L, + 21168655750,0.761945545673370,L, + 23093079000,0.760133504867554,L, + 25017502250,0.757229864597321,L, + 26941925500,0.753314912319183,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742719054222107,L, + 32715195250,0.736150979995728,L, + 34639618500,0.728799939155579,L, + 36564041750,0.720706403255463,L, + 38488465000,0.711906492710114,L, + 40412888250,0.702431678771973,L, + 42337311500,0.692309975624084,L, + 44261734750,0.681565880775452,L, + 46186158000,0.670221090316772,L, + 48110581250,0.658294439315796,L, + 50035004500,0.645802259445190,L, + 51959427750,0.632758259773254,L, + 53883851000,0.619174420833588,L, + 55808274250,0.605059623718262,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591293334961,L, + 63505967250,0.543402016162872,L, + 65430390500,0.526694059371948,L, + 67354813750,0.509461700916290,L, + 69279237000,0.491695642471313,L, + 71203660250,0.473382741212845,L, + 73128083500,0.454504787921906,L, + 75052506750,0.435037344694138,L, + 76976930000,0.414948314428329,L, + 78901353250,0.394194841384888,L, + 80825776500,0.372720152139664,L, + 82750199750,0.350447207689285,L, + 84674623000,0.327268719673157,L, + 86599046250,0.303029805421829,L, + 88523469500,0.277493625879288,L, + 90447892750,0.250267535448074,L, + 92372316000,0.220607593655586,L, + 94296739250,0.186706781387329,L, + 96221162500,0.138935759663582,L, + 98145585750,0.000075370080594,L, + 167424822750,0.000075370080594,L, + 169349246000,0.000075380201451,L, + 171273669250,0.162417262792587,L, + 173198092500,0.162417277693748,L, + 175122515750,0.162417262792587,L, + 177046939000,0.162417292594910,L, + 180895785500,0.162417262792587,L, + 182820208750,0.162417262792587,L, + 184744632000,0.162417277693748,L, + 186669055250,0.162417277693748,L, + 188593478500,0.162417262792587,L, + 190517901750,0.162417262792587,L, + 192442325000,0.162417277693748,L, + 194366748250,0.162417262792587,L, + 196291171500,0.162417262792587,L, + 198215594750,0.162417277693748,L, + 202064441250,0.162417277693748,L, + 203988864500,0.162417262792587,L, + 205913287750,0.162417277693748,L, + 207837711000,0.162417277693748,L, + 209762134250,0.162417262792587,L, + 211686557500,0.162417277693748,L, + 213610980750,0.162417262792587,L, + 217459827250,0.162417292594910,L, + 219384250500,0.162417262792587,L, + 227081943500,0.162417262792587,L, + 229006366750,0.162417277693748,L, + 232855213250,0.162417277693748,L, + 234779636500,0.162417262792587,L, + 236704059750,0.162417277693748,L, + 238628483000,0.162417277693748,L, + 240552906250,0.162417262792587,L, + 242477329500,0.162417277693748,L, + 246326176000,0.162417277693748,L, + 248250599250,0.162417292594910,L, + 250175022500,0.162417262792587,L, + 252099445750,0.162417277693748,L, + 254023869000,0.162417262792587,L, + 257872715500,0.162417262792587,L, + 259797138750,0.162417292594910,L, + 261721562000,0.162417292594910,L, + 263645985250,0.162417277693748,L, + 265570408500,0.162417277693748,L, + 267494831750,0.162417262792587,L, + 269419255000,0.162417262792587,L, + 271343678250,0.162417277693748,L, + 273268101500,0.162417277693748,L, + 275192524750,0.162417262792587,L, + 279041371250,0.162417262792587,L, + 280965794500,0.162417277693748,L, + 282890217750,0.162417262792587,L, + 284814641000,0.162417292594910,L, + 286739064250,0.162417262792587,L, + 288663487500,0.162417262792587,L, + 290587910750,0.162417277693748,L, + 292512334000,0.162417277693748,L, + 294436757250,0.162417262792587,L, + 296361180500,0.162417292594910,L, + 298285603750,0.162417262792587,L, + 300210027000,0.162417277693748,L, + 302134450250,0.162417262792587,L, + 304058873500,0.162417277693748,L, + 305983296750,0.162417277693748,L, + 307907720000,0.162417262792587,L, + 309832143250,0.162417277693748,L, + 311756566500,0.162417277693748,L, + 313680989750,0.162417262792587,L, + 315605413000,0.162417262792587,L, + 317529836250,0.162417277693748,L, + 319454259500,0.162417262792587,L, + 321378682750,0.162417277693748,L, + 323303106000,0.162417277693748,L, + 325227529250,0.162417262792587,L, + 332925222250,0.162417262792587,L, + 334849645500,0.162417277693748,L, + 338698492000,0.162417277693748,L, + 340622915250,0.162417262792587,L, + 344471761750,0.162417262792587,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.162417247891426 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.162417247891426,L, + 1924423250,0.175722181797028,L, + 3848846500,0.215764418244362,L, + 5773269750,0.280870914459229,L, + 7697693000,0.366027027368546,L, + 9622116250,0.462495148181915,L, + 11546539500,0.558963298797607,L, + 13470962750,0.644119381904602,L, + 15395386000,0.709225893020630,L, + 17319809250,0.749268174171448,L, + 19244232500,0.762573063373566,L, + 21168655750,0.761945664882660,L, + 23093079000,0.760133445262909,L, + 25017502250,0.757229864597321,L, + 26941925500,0.753314852714539,L, + 28866348750,0.748457849025726,L, + 30790772000,0.742719054222107,L, + 32715195250,0.736150920391083,L, + 34639618500,0.728799939155579,L, + 36564041750,0.720706343650818,L, + 38488465000,0.711906433105469,L, + 40412888250,0.702431738376617,L, + 42337311500,0.692309975624084,L, + 44261734750,0.681565940380096,L, + 46186158000,0.670221090316772,L, + 48110581250,0.658294498920441,L, + 50035004500,0.645802199840546,L, + 51959427750,0.632758200168610,L, + 53883851000,0.619174420833588,L, + 55808274250,0.605059623718262,L, + 57732697500,0.590421378612518,L, + 59657120750,0.575264334678650,L, + 61581544000,0.559591293334961,L, + 63505967250,0.543402075767517,L, + 65430390500,0.526694118976593,L, + 67354813750,0.509461700916290,L, + 69279237000,0.491695702075958,L, + 71203660250,0.473382771015167,L, + 73128083500,0.454504787921906,L, + 75052506750,0.435037314891815,L, + 76976930000,0.414948284626007,L, + 78901353250,0.394194811582565,L, + 80825776500,0.372720152139664,L, + 82750199750,0.350447177886963,L, + 84674623000,0.327268719673157,L, + 86599046250,0.303029835224152,L, + 88523469500,0.277493596076965,L, + 90447892750,0.250267535448074,L, + 92372316000,0.220607593655586,L, + 94296739250,0.186706796288490,L, + 96221162500,0.138935744762421,L, + 98145585750,0.000075370073318,L, + 167424822750,0.000075370073318,L, + 169349246000,0.000075380194176,L, + 171273669250,0.162417247891426,L, + 175122515750,0.162417247891426,L, + 177046939000,0.162417232990265,L, + 178971362250,0.162417247891426,L, + 194366748250,0.162417247891426,L, + 196291171500,0.162417262792587,L, + 198215594750,0.162417247891426,L, + 209762134250,0.162417247891426,L, + 211686557500,0.162417262792587,L, + 213610980750,0.162417247891426,L, + 229006366750,0.162417247891426,L, + 230930790000,0.162417262792587,L, + 232855213250,0.162417247891426,L, + 242477329500,0.162417247891426,L, + 244401752750,0.162417262792587,L, + 246326176000,0.162417247891426,L, + 248250599250,0.162417262792587,L, + 250175022500,0.162417247891426,L, + 254023869000,0.162417247891426,L, + 255948292250,0.162417262792587,L, + 259797138750,0.162417262792587,L, + 261721562000,0.162417247891426,L, + 263645985250,0.162417247891426,L, + 265570408500,0.162417262792587,L, + 267494831750,0.162417262792587,L, + 269419255000,0.162417247891426,L, + 280965794500,0.162417247891426,L, + 282890217750,0.162417262792587,L, + 284814641000,0.162417262792587,L, + 286739064250,0.162417247891426,L, + 298285603750,0.162417247891426,L, + 300210027000,0.162417262792587,L, + 302134450250,0.162417262792587,L, + 304058873500,0.162417247891426,L, + 321378682750,0.162417247891426,L, + 323303106000,0.162417262792587,L, + 325227529250,0.162417247891426,L, + 327151952500,0.162417262792587,L, + 329076375750,0.162417262792587,L, + 331000799000,0.162417247891426,L, + 332925222250,0.162417247891426,L, + 334849645500,0.162417262792587,L, + 336774068750,0.162417247891426,L, + 344471761750,0.162417247891426,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_028" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016792863607407 + KeyVer: 4005 + KeyCount: 48 + Key: + 0,0.016792863607407,L, + 3848846500,0.016792923212051,L, + 5773269750,0.016792893409729,L, + 7697693000,0.016792953014374,L, + 9622116250,0.016792893409729,L, + 11546539500,0.016792863607407,L, + 13470962750,0.016792923212051,L, + 15395386000,0.016792923212051,L, + 17319809250,0.016792863607407,L, + 19244232500,0.016792923212051,L, + 23093079000,0.016792863607407,L, + 25017502250,0.016792923212051,L, + 28866348750,0.016792923212051,L, + 30790772000,0.016792893409729,L, + 32715195250,0.016792893409729,L, + 36564041750,0.016792953014374,L, + 38488465000,0.016792923212051,L, + 40412888250,0.016792923212051,L, + 42337311500,0.016792953014374,L, + 44261734750,0.016792923212051,L, + 46186158000,0.016792923212051,L, + 48110581250,0.016792833805084,L, + 51959427750,0.016792953014374,L, + 53883851000,0.016792893409729,L, + 59657120750,0.016792893409729,L, + 61581544000,0.016792953014374,L, + 63505967250,0.016792893409729,L, + 65430390500,0.016792863607407,L, + 67354813750,0.016792893409729,L, + 69279237000,0.016792893409729,L, + 71203660250,0.016792863607407,L, + 73128083500,0.016792893409729,L, + 76976930000,0.016792833805084,L, + 78901353250,0.016792893409729,L, + 80825776500,0.016792893409729,L, + 82750199750,0.016792923212051,L, + 86599046250,0.016792863607407,L, + 88523469500,0.016792893409729,L, + 92372316000,0.016792893409729,L, + 94296739250,0.016792863607407,L, + 96221162500,0.016792923212051,L, + 98145585750,0.016792893409729,L, + 101994432250,0.016792893409729,L, + 103918855500,0.016792923212051,L, + 105843278750,0.016792893409729,L, + 107767702000,0.016792833805084,L, + 109692125250,0.016792863607407,L, + 344471761750,0.016792863607407,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058537334203720 + KeyVer: 4005 + KeyCount: 63 + Key: + 0,-0.058537334203720,L, + 1924423250,-0.058640040457249,L, + 3848846500,-0.058932583779097,L, + 5773269750,-0.059394519776106,L, + 7697693000,-0.060008812695742,L, + 9622116250,-0.060761816799641,L, + 11546539500,-0.061640411615372,L, + 13470962750,-0.062634371221066,L, + 15395386000,-0.063733965158463,L, + 17319809250,-0.064931869506836,L, + 19244232500,-0.066220313310623,L, + 21168655750,-0.067593455314636,L, + 23093079000,-0.069044470787048,L, + 25017502250,-0.070568509399891,L, + 26941925500,-0.072160691022873,L, + 28866348750,-0.073816642165184,L, + 30790772000,-0.075531482696533,L, + 32715195250,-0.077300846576691,L, + 34639618500,-0.079121798276901,L, + 36564041750,-0.080988526344299,L, + 38488465000,-0.082898065447807,L, + 40412888250,-0.084845095872879,L, + 42337311500,-0.086823768913746,L, + 44261734750,-0.088828235864639,L, + 46186158000,-0.090849250555038,L, + 48110581250,-0.092875123023987,L, + 50035004500,-0.094884946942329,L, + 51959427750,-0.096842207014561,L, + 53883851000,-0.098658770322800,L, + 55808274250,-0.099893666803837,L, + 57732697500,-0.099929697811604,L, + 59657120750,-0.098738111555576,L, + 61581544000,-0.096936628222466,L, + 63505967250,-0.094985224306583,L, + 65430390500,-0.092977344989777,L, + 67354813750,-0.090950973331928,L, + 69279237000,-0.088927030563354,L, + 71203660250,-0.086918190121651,L, + 73128083500,-0.084933683276176,L, + 75052506750,-0.082980334758759,L, + 76976930000,-0.081064447760582,L, + 78901353250,-0.079189948737621,L, + 80825776500,-0.077361695468426,L, + 82750199750,-0.075584538280964,L, + 84674623000,-0.073861904442310,L, + 86599046250,-0.072198174893856,L, + 88523469500,-0.070598199963570,L, + 90447892750,-0.069066375494003,L, + 92372316000,-0.067608051002026,L, + 94296739250,-0.066228091716766,L, + 96221162500,-0.064932353794575,L, + 98145585750,-0.063728109002113,L, + 100070009000,-0.062621712684631,L, + 101994432250,-0.061622403562069,L, + 103918855500,-0.060738455504179,L, + 105843278750,-0.059981543570757,L, + 107767702000,-0.059363361448050,L, + 109692125250,-0.058898512274027,L, + 111616548500,-0.058604024350643,L, + 113540971750,-0.058500830084085,L, + 307907720000,-0.058500830084085,L, + 309832143250,-0.058537334203720,L, + 344471761750,-0.058537334203720,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.093608260154724 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,0.093608260154724,L, + 53883851000,0.093608260154724,L, + 55808274250,0.114208459854126,L, + 57732697500,0.672040104866028,L, + 63505967250,0.695599913597107,L, + 65430390500,0.703453421592712,L, + 71203660250,0.727013230323792,L, + 73128083500,0.734866738319397,L, + 76976930000,0.750573277473450,L, + 78901353250,0.758426785469055,L, + 84674623000,0.781986594200134,L, + 86599046250,0.794582247734070,L, + 88523469500,0.809109568595886,L, + 90447892750,0.825344681739807,L, + 92372316000,0.842669129371643,L, + 94296739250,0.860135197639465,L, + 96221162500,0.876772046089172,L, + 98145585750,0.891909956932068,L, + 100070009000,0.905265450477600,L, + 101994432250,0.917443871498108,L, + 103918855500,0.928918719291687,L, + 105843278750,0.939439415931702,L, + 107767702000,0.948849081993103,L, + 109692125250,0.957195639610291,L, + 111616548500,0.964709877967834,L, + 113540971750,0.971674799919128,L, + 115465395000,0.978411078453064,L, + 117389818250,0.985077023506165,L, + 119314241500,0.991678357124329,L, + 121238664750,0.998218655586243,L, + 123163088000,1.004701256752014,L, + 125087511250,1.011128544807434,L, + 127011934500,1.017501950263977,L, + 128936357750,1.023823380470276,L, + 130860781000,1.030094027519226,L, + 132785204250,1.036315321922302,L, + 134709627500,1.042487502098083,L, + 136634050750,1.048611521720886,L, + 138558474000,1.054687857627869,L, + 140482897250,1.060717463493347,L, + 142407320500,1.066700339317322,L, + 144331743750,1.072636961936951,L, + 146256167000,1.078528046607971,L, + 148180590250,1.084372878074646,L, + 150105013500,1.090172648429871,L, + 152029436750,1.095926880836487,L, + 153953860000,1.101636052131653,L, + 155878283250,1.107300400733948,L, + 157802706500,1.112919449806213,L, + 159727129750,1.118493676185608,L, + 161651553000,1.124022364616394,L, + 163575976250,1.129506468772888,L, + 165500399500,1.134944796562195,L, + 167424822750,1.140338540077209,L, + 169349246000,1.145686745643616,L, + 171273669250,1.150989413261414,L, + 173198092500,1.156246304512024,L, + 175122515750,1.161457657814026,L, + 177046939000,1.166622996330261,L, + 178971362250,1.171742081642151,L, + 180895785500,1.176814675331116,L, + 182820208750,1.181840777397156,L, + 184744632000,1.186819672584534,L, + 186669055250,1.191751599311829,L, + 188593478500,1.196635842323303,L, + 190517901750,1.201472163200378,L, + 192442325000,1.206260561943054,L, + 194366748250,1.211000800132751,L, + 196291171500,1.215691685676575,L, + 198215594750,1.220333933830261,L, + 200140018000,1.224925875663757,L, + 202064441250,1.229468226432800,L, + 203988864500,1.233960270881653,L, + 205913287750,1.238401293754578,L, + 207837711000,1.242791056632996,L, + 209762134250,1.247129082679749,L, + 211686557500,1.251414895057678,L, + 213610980750,1.255647778511047,L, + 215535404000,1.259827733039856,L, + 217459827250,1.263953566551208,L, + 219384250500,1.268025040626526,L, + 221308673750,1.272041440010071,L, + 223233097000,1.276002764701843,L, + 225157520250,1.279907584190369,L, + 227081943500,1.283755898475647,L, + 229006366750,1.287546515464783,L, + 230930790000,1.291279196739197,L, + 232855213250,1.294953227043152,L, + 234779636500,1.298567652702332,L, + 236704059750,1.302121520042419,L, + 238628483000,1.305614829063416,L, + 240552906250,1.309046149253845,L, + 242477329500,1.312415242195129,L, + 244401752750,1.315720438957214,L, + 246326176000,1.318961739540100,L, + 248250599250,1.322137713432312,L, + 250175022500,1.325247645378113,L, + 252099445750,1.328290581703186,L, + 254023869000,1.331265568733215,L, + 255948292250,1.334171652793884,L, + 257872715500,1.337007641792297,L, + 259797138750,1.339772820472717,L, + 261721562000,1.342465519905090,L, + 263645985250,1.345085263252258,L, + 265570408500,1.347630381584167,L, + 267494831750,1.350099682807922,L, + 269419255000,1.352492451667786,L, + 271343678250,1.354806542396545,L, + 273268101500,1.357041478157043,L, + 275192524750,1.359195351600647,L, + 277116948000,1.361266732215881,L, + 279041371250,1.363254427909851,L, + 280965794500,1.365156769752502,L, + 282890217750,1.366972327232361,L, + 284814641000,1.368698954582214,L, + 286739064250,1.370335936546326,L, + 288663487500,1.371880412101746,L, + 290587910750,1.373330950737000,L, + 292512334000,1.374686121940613,L, + 294436757250,1.375943541526794,L, + 296361180500,1.377100825309753,L, + 298285603750,1.378156542778015,L, + 300210027000,1.379108548164368,L, + 302134450250,1.379953742027283,L, + 304058873500,1.380690217018127,L, + 305983296750,1.381315350532532,L, + 307907720000,1.381826996803284,L, + 309832143250,0.093608260154724,L, + 344471761750,0.093608260154724,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,59.792780560337185,L, + 1924423250,59.643588738296806,L, + 3848846500,59.218750971922624,L, + 5773269750,58.547869301077426,L, + 7697693000,57.655648519989114,L, + 9622116250,56.562937781099116,L, + 11546539500,55.287594613992418,L, + 13470962750,53.845014265058190,L, + 15395386000,52.248682942812614,L, + 17319809250,50.510410044330619,L, + 19244232500,48.640741381690695,L, + 21168655750,46.649109446136613,L, + 23093079000,44.544055389225463,L, + 25017502250,42.333365626611048,L, + 26941925500,40.024239177678552,L, + 28866348750,37.623424269327934,L, + 30790772000,35.137310543527732,L, + 32715195250,32.572048585625545,L, + 34639618500,29.933751414928508,L, + 36564041750,27.228602060182777,L, + 38488465000,24.463077248268807,L, + 40412888250,21.644273545734226,L, + 42337311500,18.780342783353436,L, + 44261734750,15.881239961841716,L, + 46186158000,12.960021841571175,L, + 48110581250,10.035368989921766,L, + 50035004500,7.137104147243843,L, + 51959427750,4.320859631213898,L, + 53883851000,1.720995614811353,L, + 55808274250,0.000309066085998,L, + 57732697500,0.000001707547293,L, + 59657120750,1.292893338179026,L, + 61581544000,3.274988622104491,L, + 63505967250,5.451133422331147,L, + 65430390500,7.719538710318911,L, + 67354813750,10.037850056137771,L, + 69279237000,12.383445446369853,L, + 71203660250,14.742369096993549,L, + 73128083500,17.105114238457862,L, + 75052506750,19.464698709883759,L, + 76976930000,21.815666897671694,L, + 78901353250,24.153538197726149,L, + 80825776500,26.474422817314807,L, + 82750199750,28.774825407129921,L, + 84674623000,31.051491382031980,L, + 86599046250,33.301311298401338,L, + 88523469500,35.521170589976485,L, + 90447892750,37.707923954644627,L, + 92372316000,39.858327052550010,L, + 94296739250,41.968961374013055,L, + 96221162500,44.036159107449464,L, + 98145585750,46.055948497856882,L, + 100070009000,48.023975299639432,L, + 101994432250,49.935379833202660,L, + 103918855500,51.784711607588896,L, + 105843278750,53.565772226126377,L, + 107767702000,55.271437801510771,L, + 109692125250,56.893423314278884,L, + 111616548500,58.421927442971743,L, + 113540971750,59.845311545243675,L, + 115465395000,61.197306510310739,L, + 117389818250,62.521447963942528,L, + 119314241500,63.818828736406246,L, + 121238664750,65.090487016455725,L, + 123163088000,66.337379030574795,L, + 125087511250,67.560454175058041,L, + 127011934500,68.760511582038390,L, + 128936357750,69.938391364783740,L, + 130860781000,71.094824353535273,L, + 132785204250,72.230520887966676,L, + 134709627500,73.346157156805788,L, + 136634050750,74.442354707267071,L, + 138558474000,75.519721426186663,L, + 140482897250,76.578810558887312,L, + 142407320500,77.620168520502645,L, + 144331743750,78.644293914842052,L, + 146256167000,79.651671685336609,L, + 148180590250,80.642766284849884,L, + 150105013500,81.618021675677923,L, + 152029436750,82.577840838981757,L, + 153953860000,83.522613095544074,L, + 155878283250,84.452734596336740,L, + 157802706500,85.368546850818248,L, + 159727129750,86.270411859014601,L, + 161651553000,87.158657470005977,L, + 163575976250,88.033577381926662,L, + 165500399500,88.895506274046014,L, + 167424822750,89.744717353930824,L, + 169349246000,90.581476998958721,L, + 171273669250,91.406058416696482,L, + 173198092500,92.218727984521777,L, + 175122515750,93.019711098677192,L, + 177046939000,93.809253645972845,L, + 178971362250,94.587581022651364,L, + 180895785500,95.354898134387838,L, + 182820208750,96.111430377424867,L, + 184744632000,96.857368997059226,L, + 186669055250,97.592905238587676,L, + 188593478500,98.318237177496144,L, + 190517901750,99.033508247757183,L, + 192442325000,99.738937015424256,L, + 194366748250,100.434639593713257,L, + 196291171500,101.120814058110085,L, + 198215594750,101.797603842587336,L, + 200140018000,102.465152381117576,L, + 202064441250,103.123603107673361,L, + 203988864500,103.773078965659778,L, + 205913287750,104.413730219238545,L, + 207837711000,105.045672981625557,L, + 209762134250,105.669023366036697,L, + 211686557500,106.283924806444560,L, + 213610980750,106.890466095308327,L, + 215535404000,107.488763345843907,L, + 217459827250,108.078925841078004,L, + 219384250500,108.661035543280676,L, + 221308673750,109.235208565667804,L, + 223233097000,109.801533700698599,L, + 225157520250,110.360079250264761,L, + 227081943500,110.910974987960515,L, + 229006366750,111.454248234542547,L, + 230930790000,111.990015103226753,L, + 232855213250,112.518302914769791,L, + 234779636500,113.039248272955092,L, + 236704059750,113.552851177782628,L, + 238628483000,114.059207251900801,L, + 240552906250,114.558398457579628,L, + 242477329500,115.050424794819136,L, + 244401752750,115.535368225889343,L, + 246326176000,116.013290222492785,L, + 248250599250,116.484190784629476,L, + 250175022500,116.948151874569433,L, + 252099445750,117.405173492312670,L, + 254023869000,117.855323939750889,L, + 255948292250,118.298603216884075,L, + 257872715500,118.735024984090586,L, + 259797138750,119.164630222505423,L, + 261721562000,119.587418932128614,L, + 263645985250,120.003404773338460,L, + 265570408500,120.412574085756660,L, + 267494831750,120.814899548626514,L, + 269419255000,121.210408482704707,L, + 271343678250,121.599073567234555,L, + 273268101500,121.980812839946012,L, + 275192524750,122.355653621595778,L, + 277116948000,122.723486629157122,L, + 279041371250,123.084243560738329,L, + 280965794500,123.437883435204398,L, + 282890217750,123.784228667636910,L, + 284814641000,124.123210956144163,L, + 286739064250,124.454652715807725,L, + 288663487500,124.778335380574163,L, + 290587910750,125.094040384390041,L, + 292512334000,125.401453538553525,L, + 294436757250,125.700178692092777,L, + 296361180500,125.989710411009199,L, + 298285603750,126.269297374494101,L, + 300210027000,126.537983356063677,L, + 302134450250,126.794156431073802,L, + 304058873500,127.035043542721468,L, + 305983296750,127.254429218861958,L, + 307907720000,127.416728173919580,L, + 309832143250,59.792780560337185,L, + 344471761750,59.792780560337185,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443355534918460 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-20.443355534918460,L, + 1924423250,-20.483563151014973,L, + 3848846500,-20.598045659240686,L, + 5773269750,-20.778842474117955,L, + 7697693000,-21.019282208374985,L, + 9622116250,-21.313743616324857,L, + 11546539500,-21.657428490075652,L, + 13470962750,-22.046180659517415,L, + 15395386000,-22.476369879106297,L, + 17319809250,-22.944803035405315,L, + 19244232500,-23.448649015003507,L, + 21168655750,-23.985365279982336,L, + 23093079000,-24.552644933949640,L, + 25017502250,-25.148385986188341,L, + 26941925500,-25.770662323352507,L, + 28866348750,-26.417643454744574,L, + 30790772000,-27.087608172693699,L, + 32715195250,-27.778908694062622,L, + 34639618500,-28.489881867788444,L, + 36564041750,-29.218876495639321,L, + 38488465000,-29.964142341640436,L, + 40412888250,-30.723768660371483,L, + 42337311500,-31.495545885635963,L, + 44261734750,-32.276806828562997,L, + 46186158000,-33.064030526635442,L, + 48110581250,-33.852176300245830,L, + 50035004500,-34.633211846930251,L, + 51959427750,-35.392144901460547,L, + 53883851000,-36.092772046141107,L, + 55808274250,-36.556466758703436,L, + 57732697500,-36.556545305878892,L, + 59657120750,-36.269346096564021,L, + 61581544000,-35.796154005960801,L, + 63505967250,-35.261442401503366,L, + 65430390500,-34.694464983406839,L, + 67354813750,-34.107826865784460,L, + 69279237000,-33.508395803846660,L, + 71203660250,-32.900461156392211,L, + 73128083500,-32.286949659480449,L, + 75052506750,-31.670046973645785,L, + 76976930000,-31.051429910329450,L, + 78901353250,-30.432498658311292,L, + 80825776500,-29.814479236547331,L, + 82750199750,-29.198461060210182,L, + 84674623000,-28.585494270884730,L, + 86599046250,-27.976589736568137,L, + 88523469500,-27.372801013939878,L, + 90447892750,-26.775226055909030,L, + 92372316000,-26.185055022938464,L, + 94296739250,-25.603623217010917,L, + 96221162500,-25.032455477858591,L, + 98145585750,-24.473336192402151,L, + 100070009000,-23.928437360797655,L, + 101994432250,-23.383724651848045,L, + 103918855500,-22.828904970474120,L, + 105843278750,-22.277666015772571,L, + 107767702000,-21.749337223094503,L, + 109692125250,-21.261449980492024,L, + 111616548500,-20.822017807408837,L, + 113540971750,-20.429199967863628,L, + 115465395000,-20.074950499014133,L, + 117389818250,-19.744429107341229,L, + 119314241500,-19.428729226167231,L, + 121238664750,-19.123440260835608,L, + 123163088000,-18.825975277198225,L, + 125087511250,-18.534691614759694,L, + 127011934500,-18.248434971550289,L, + 128936357750,-17.966394262606062,L, + 130860781000,-17.687939402976092,L, + 132785204250,-17.412593986965764,L, + 134709627500,-17.139980646623435,L, + 136634050750,-16.869788608341874,L, + 138558474000,-16.601765155121790,L, + 140482897250,-16.335707088835374,L, + 142407320500,-16.071428286827743,L, + 144331743750,-15.808781900031741,L, + 146256167000,-15.547636447305848,L, + 148180590250,-15.287877522981466,L, + 150105013500,-15.029409504410216,L, + 152029436750,-14.772138476491008,L, + 153953860000,-14.515991014690265,L, + 155878283250,-14.260901378437227,L, + 157802706500,-14.006804680934778,L, + 159727129750,-13.753642011801325,L, + 161651553000,-13.501368121033622,L, + 163575976250,-13.249940319949351,L, + 165500399500,-12.999308235903385,L, + 167424822750,-12.749440279270814,L, + 169349246000,-12.500307421747664,L, + 171273669250,-12.251866974651623,L, + 173198092500,-12.004096739867890,L, + 175122515750,-11.756968542866137,L, + 177046939000,-11.510456770436974,L, + 178971362250,-11.264541785786543,L, + 180895785500,-11.019197975705453,L, + 182820208750,-10.774409972268071,L, + 184744632000,-10.530156431133243,L, + 186669055250,-10.286426253243565,L, + 188593478500,-10.043194679163298,L, + 190517901750,-9.800452317382332,L, + 192442325000,-9.558187215069621,L, + 194366748250,-9.316382296752238,L, + 196291171500,-9.075029024693722,L, + 198215594750,-8.834112884742085,L, + 200140018000,-8.593627900481806,L, + 202064441250,-8.353561265308189,L, + 203988864500,-8.113906149032065,L, + 205913287750,-7.874651452596032,L, + 207837711000,-7.635791199584566,L, + 209762134250,-7.397317706034852,L, + 211686557500,-7.159225422418189,L, + 213610980750,-6.921506237884937,L, + 215535404000,-6.684156737340513,L, + 217459827250,-6.447169663708920,L, + 219384250500,-6.210539467461461,L, + 221308673750,-5.974265721711312,L, + 223233097000,-5.738340315608832,L, + 225157520250,-5.502762822267200,L, + 227081943500,-5.267525130836774,L, + 229006366750,-5.032634498393550,L, + 230930790000,-4.798076410785541,L, + 232855213250,-4.563859405749208,L, + 234779636500,-4.329975372434913,L, + 236704059750,-4.096426445276772,L, + 238628483000,-3.863211770501137,L, + 240552906250,-3.630331774994832,L, + 242477329500,-3.397786885644681,L, + 244401752750,-3.165574968016568,L, + 246326176000,-2.933701144752369,L, + 248250599250,-2.702167550286201,L, + 250175022500,-2.470976319052180,L, + 252099445750,-2.240127664493717,L, + 254023869000,-2.009630551234097,L, + 255948292250,-1.779485406160144,L, + 257872715500,-1.549700873730026,L, + 259797138750,-1.320284104298030,L, + 261721562000,-1.091241394444798,L, + 263645985250,-0.862581228545939,L, + 265570408500,-0.634315399349942,L, + 267494831750,-0.406451750902181,L, + 269419255000,-0.179011587523174,L, + 271343678250,0.047996593071257,L, + 273268101500,0.274551406519316,L, + 275192524750,0.500630614685560,L, + 277116948000,0.726212179537746,L, + 279041371250,0.951265311863756,L, + 280965794500,1.175759009008061,L, + 282890217750,1.399647487358879,L, + 284814641000,1.622885710356373,L, + 286739064250,1.845412953349951,L, + 288663487500,2.067156752301389,L, + 290587910750,2.288017962746015,L, + 292512334000,2.507890076421461,L, + 294436757250,2.726604473032591,L, + 296361180500,2.943950270488782,L, + 298285603750,3.159609438106805,L, + 300210027000,3.373119870900627,L, + 302134450250,3.583685424945120,L, + 304058873500,3.789772722771619,L, + 305983296750,3.987535300660353,L, + 307907720000,4.148650071670614,L, + 309832143250,-20.443355534918460,L, + 344471761750,-20.443355534918460,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.971082980028118 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,-30.971082980028118,L, + 1924423250,-30.894171634879299,L, + 3848846500,-30.675144543670232,L, + 5773269750,-30.329246688628359,L, + 7697693000,-29.869199297082808,L, + 9622116250,-29.305732596219663,L, + 11546539500,-28.648036605567153,L, + 13470962750,-27.904054835130001,L, + 15395386000,-27.080694313706363,L, + 17319809250,-26.184056107772349,L, + 19244232500,-25.219548019603309,L, + 21168655750,-24.192007530678900,L, + 23093079000,-23.105834990371889,L, + 25017502250,-21.965014106515685,L, + 26941925500,-20.773245134093138,L, + 28866348750,-19.533965365804050,L, + 30790772000,-18.250446462260854,L, + 32715195250,-16.925823480292578,L, + 34639618500,-15.563210986160747,L, + 36564041750,-14.165735498957929,L, + 38488465000,-12.736678924580310,L, + 40412888250,-11.279610890642862,L, + 42337311500,-9.798626949326648,L, + 44261734750,-8.298720822688589,L, + 46186158000,-6.786408938083688,L, + 48110581250,-5.271003404671599,L, + 50035004500,-3.767375678709533,L, + 51959427750,-2.303217908413622,L, + 53883851000,-0.945492841519752,L, + 55808274250,-0.024738695044753,L, + 57732697500,-0.000005139521921,L, + 59657120750,-0.871885120134246,L, + 61581544000,-2.190781255287738,L, + 63505967250,-3.620836104501236,L, + 65430390500,-5.093903856569415,L, + 67354813750,-6.581760248851121,L, + 69279237000,-8.069275131674326,L, + 71203660250,-9.546978020868000,L, + 73128083500,-11.008270526807094,L, + 75052506750,-12.448126484036134,L, + 76976930000,-13.862451194147704,L, + 78901353250,-15.247681859716000,L, + 80825776500,-16.600578409753503,L, + 82750199750,-17.918062136491830,L, + 84674623000,-19.197103851034090,L, + 86599046250,-20.434647043726706,L, + 88523469500,-21.627536167173133,L, + 90447892750,-22.772438089058411,L, + 92372316000,-23.865814771392483,L, + 94296739250,-24.903815695030755,L, + 96221162500,-25.882253954012015,L, + 98145585750,-26.796491849889833,L, + 100070009000,-27.641355514367930,L, + 101994432250,-28.411020503631590,L, + 103918855500,-29.098900807773635,L, + 105843278750,-29.697423454551821,L, + 107767702000,-30.197847509375841,L, + 109692125250,-30.589948179058201,L, + 111616548500,-30.861591632538385,L, + 113540971750,-30.998294453681410,L, + 115465395000,-31.061142439329192,L, + 117389818250,-31.122426311657044,L, + 119314241500,-31.182224617840419,L, + 121238664750,-31.240568093730584,L, + 123163088000,-31.297531871408410,L, + 125087511250,-31.353160347103497,L, + 127011934500,-31.407504747234626,L, + 128936357750,-31.460606052936814,L, + 130860781000,-31.512505245345082,L, + 132785204250,-31.563239890499862,L, + 134709627500,-31.612854384630765,L, + 136634050750,-31.661382878683636,L, + 138558474000,-31.708856108509742,L, + 140482897250,-31.755311640149515,L, + 142407320500,-31.800766549075885,L, + 144331743750,-31.845258401329286,L, + 146256167000,-31.888824762950147,L, + 148180590250,-31.931475879222234,L, + 150105013500,-31.973235655807631,L, + 152029436750,-32.014138243652191,L, + 153953860000,-32.054190472945088,L, + 155878283250,-32.093429909726758,L, + 157802706500,-32.131873629470121,L, + 159727129750,-32.169535292553512,L, + 161651553000,-32.206431974449870,L, + 163575976250,-32.242584165726697,L, + 165500399500,-32.278008941856918,L, + 167424822750,-32.312726793408039,L, + 169349246000,-32.346751380758413,L, + 171273669250,-32.380092949191777,L, + 173198092500,-32.412775404370244,L, + 175122515750,-32.444798746293806,L, + 177046939000,-32.476183465529964,L, + 178971362250,-32.506946637551657,L, + 180895785500,-32.537088262358886,L, + 182820208750,-32.566639075802897,L, + 184744632000,-32.595588832599958,L, + 186669055250,-32.623961438412152,L, + 188593478500,-32.651763723428644,L, + 190517901750,-32.679012763122373,L, + 192442325000,-32.705705142398742,L, + 194366748250,-32.731854521636102,L, + 196291171500,-32.757477976307364,L, + 198215594750,-32.782582336601713,L, + 200140018000,-32.807164187424554,L, + 202064441250,-32.831244019343401,L, + 203988864500,-32.854821832358247,L, + 205913287750,-32.877911286847443,L, + 207837711000,-32.900522628094741,L, + 209762134250,-32.922645610816375,L, + 211686557500,-32.944297310485290,L, + 213610980750,-32.965491387479808,L, + 215535404000,-32.986231256894520,L, + 217459827250,-33.006510088540260,L, + 219384250500,-33.026355203173701,L, + 221308673750,-33.045746110227341,L, + 223233097000,-33.064710130457854,L, + 225157520250,-33.083240433676075,L, + 227081943500,-33.101350680260332,L, + 229006366750,-33.119037455116057,L, + 230930790000,-33.136304173337827,L, + 232855213250,-33.153167910398565,L, + 234779636500,-33.169618421014512,L, + 236704059750,-33.185669365564024,L, + 238628483000,-33.201310498763327,L, + 240552906250,-33.216569141369114,L, + 242477329500,-33.231421387719287,L, + 244401752750,-33.245891143475937,L, + 246326176000,-33.259974993544482,L, + 248250599250,-33.273676353019511,L, + 250175022500,-33.286991806806427,L, + 252099445750,-33.299935015283587,L, + 254023869000,-33.312499148261807,L, + 255948292250,-33.324687620835675,L, + 257872715500,-33.336497017910609,L, + 259797138750,-33.347937584770364,L, + 261721562000,-33.359009321414938,L, + 263645985250,-33.369712227844339,L, + 265570408500,-33.380046304058553,L, + 267494831750,-33.390008134962997,L, + 269419255000,-33.399611380936022,L, + 271343678250,-33.408842381599285,L, + 273268101500,-33.417704552047361,L, + 275192524750,-33.426197892280257,L, + 277116948000,-33.434322402297980,L, + 279041371250,-33.442067836816761,L, + 280965794500,-33.449437610931192,L, + 282890217750,-33.456431724641277,L, + 284814641000,-33.463046762852429,L, + 286739064250,-33.469275895375468,L, + 288663487500,-33.475098631642894,L, + 290587910750,-33.480525216938460,L, + 292512334000,-33.485548821073003,L, + 294436757250,-33.490145538384411,L, + 296361180500,-33.494305123588944,L, + 298285603750,-33.498007086119088,L, + 300210027000,-33.501234350501910,L, + 302134450250,-33.503935690318649,L, + 304058873500,-33.506073539528856,L, + 305983296750,-33.507531784916658,L, + 307907720000,-33.508122596279861,L, + 309832143250,-30.971082980028118,L, + 344471761750,-30.971082980028118,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941905799 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000044941905799,L, + 1924423250,0.000044880402129,L, + 3848846500,0.000044705280743,L, + 5773269750,0.000044428739784,L, + 7697693000,0.000044060951041,L, + 9622116250,0.000043610529247,L, + 11546539500,0.000043084815843,L, + 13470962750,0.000042490177293,L, + 15395386000,0.000041832146962,L, + 17319809250,0.000041115610657,L, + 19244232500,0.000040344915760,L, + 21168655750,0.000039523951273,L, + 23093079000,0.000038656220568,L, + 25017502250,0.000037744954170,L, + 26941925500,0.000036793117033,L, + 28866348750,0.000035803484934,L, + 30790772000,0.000034778688132,L, + 32715195250,0.000033721265936,L, + 34639618500,0.000032633743103,L, + 36564041750,0.000031518662581,L, + 38488465000,0.000030378700103,L, + 40412888250,0.000029216778785,L, + 42337311500,0.000028036258300,L, + 44261734750,0.000026841240469,L, + 46186158000,0.000025637111321,L, + 48110581250,0.000024431574275,L, + 50035004500,0.000023236925699,L, + 51959427750,0.000022076101232,L, + 53883851000,0.000021004496375,L, + 55808274250,0.000020295383365,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005785107613,L, + 61581544000,0.252660751342773,L, + 63505967250,0.263727933168411,L, + 65430390500,0.272284567356110,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934103488922,L, + 71203660250,0.289769858121872,L, + 73128083500,0.293892651796341,L, + 75052506750,0.297433108091354,L, + 76976930000,0.300487458705902,L, + 78901353250,0.303129196166992,L, + 80825776500,0.305415809154510,L, + 82750199750,0.307393640279770,L, + 84674623000,0.309100568294525,L, + 86599046250,0.310568511486053,L, + 88523469500,0.311824232339859,L, + 90447892750,0.312891036272049,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536929130554,L, + 96221162500,0.315150290727615,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327780485153,L, + 103918855500,0.316543072462082,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781908273697,L, + 109692125250,0.316830277442932,L, + 111616548500,0.316848725080490,L, + 113540971750,0.316851466894150,L, + 115465395000,0.316829293966293,L, + 117389818250,0.316763699054718,L, + 119314241500,0.316656172275543,L, + 121238664750,0.316507935523987,L, + 123163088000,0.316320121288300,L, + 125087511250,0.316093772649765,L, + 127011934500,0.315830141305923,L, + 128936357750,0.315529942512512,L, + 130860781000,0.315194189548492,L, + 132785204250,0.314823657274246,L, + 134709627500,0.314419180154800,L, + 136634050750,0.313981384038925,L, + 138558474000,0.313510954380035,L, + 140482897250,0.313008576631546,L, + 142407320500,0.312474876642227,L, + 144331743750,0.311910241842270,L, + 146256167000,0.311315298080444,L, + 148180590250,0.310690492391586,L, + 150105013500,0.310036271810532,L, + 152029436750,0.309352993965149,L, + 153953860000,0.308641105890274,L, + 155878283250,0.307900905609131,L, + 157802706500,0.307132720947266,L, + 159727129750,0.306336849927902,L, + 161651553000,0.305513560771942,L, + 163575976250,0.304663121700287,L, + 165500399500,0.303785741329193,L, + 167424822750,0.302881598472595,L, + 169349246000,0.301950842142105,L, + 171273669250,0.300993680953979,L, + 173198092500,0.300010204315186,L, + 175122515750,0.299000561237335,L, + 177046939000,0.297964870929718,L, + 178971362250,0.296903133392334,L, + 180895785500,0.295815408229828,L, + 182820208750,0.294701695442200,L, + 184744632000,0.293562144041061,L, + 186669055250,0.292396575212479,L, + 188593478500,0.291205018758774,L, + 190517901750,0.289987534284592,L, + 192442325000,0.288743883371353,L, + 194366748250,0.287474036216736,L, + 196291171500,0.286177933216095,L, + 198215594750,0.284855365753174,L, + 200140018000,0.283506155014038,L, + 202064441250,0.282130211591721,L, + 203988864500,0.280727237462997,L, + 205913287750,0.279297113418579,L, + 207837711000,0.277839392423630,L, + 209762134250,0.276354074478149,L, + 211686557500,0.274840563535690,L, + 213610980750,0.273298650979996,L, + 215535404000,0.271727979183197,L, + 217459827250,0.270128130912781,L, + 219384250500,0.268498688936234,L, + 221308673750,0.266839027404785,L, + 223233097000,0.265148818492889,L, + 225157520250,0.263427436351776,L, + 227081943500,0.261674255132675,L, + 229006366750,0.259888648986816,L, + 230930790000,0.258069962263107,L, + 232855213250,0.256217271089554,L, + 234779636500,0.254330039024353,L, + 236704059750,0.252407133579254,L, + 238628483000,0.250447750091553,L, + 240552906250,0.248450756072998,L, + 242477329500,0.246415153145790,L, + 244401752750,0.244339644908905,L, + 246326176000,0.242222949862480,L, + 248250599250,0.240063667297363,L, + 250175022500,0.237860262393951,L, + 252099445750,0.235611021518707,L, + 254023869000,0.233314052224159,L, + 255948292250,0.230967447161674,L, + 257872715500,0.228568956255913,L, + 259797138750,0.226116061210632,L, + 261721562000,0.223606184124947,L, + 263645985250,0.221036270260811,L, + 265570408500,0.218403011560440,L, + 267494831750,0.215702697634697,L, + 269419255000,0.212931141257286,L, + 271343678250,0.210083693265915,L, + 273268101500,0.207154974341393,L, + 275192524750,0.204138904809952,L, + 277116948000,0.201028436422348,L, + 279041371250,0.197815433144569,L, + 280965794500,0.194490507245064,L, + 282890217750,0.191042274236679,L, + 284814641000,0.187457352876663,L, + 286739064250,0.183719441294670,L, + 288663487500,0.179808437824249,L, + 290587910750,0.175699129700661,L, + 292512334000,0.171359077095985,L, + 294436757250,0.166745439171791,L, + 296361180500,0.161799460649490,L, + 298285603750,0.156436964869499,L, + 300210027000,0.150529175996780,L, + 302134450250,0.143860831856728,L, + 304058873500,0.136016339063644,L, + 305983296750,0.125945433974266,L, + 307907720000,0.106410607695580,L, + 309832143250,0.000044941905799,L, + 344471761750,0.000044941905799,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520824344 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000028520824344,L, + 1924423250,0.000028500298868,L, + 3848846500,0.000028441854738,L, + 5773269750,0.000028349559216,L, + 7697693000,0.000028226821087,L, + 9622116250,0.000028076496164,L, + 11546539500,0.000027901047361,L, + 13470962750,0.000027702595617,L, + 15395386000,0.000027482983569,L, + 17319809250,0.000027243851946,L, + 19244232500,0.000026986643206,L, + 21168655750,0.000026712654289,L, + 23093079000,0.000026423062081,L, + 25017502250,0.000026118941605,L, + 26941925500,0.000025801280572,L, + 28866348750,0.000025471003028,L, + 30790772000,0.000025128987545,L, + 32715195250,0.000024776090868,L, + 34639618500,0.000024413144274,L, + 36564041750,0.000024040999051,L, + 38488465000,0.000023660553779,L, + 40412888250,0.000023272779799,L, + 42337311500,0.000022878793970,L, + 44261734750,0.000022479975087,L, + 46186158000,0.000022078111215,L, + 48110581250,0.000021675778044,L, + 50035004500,0.000021277082851,L, + 51959427750,0.000020889672669,L, + 53883851000,0.000020532042981,L, + 55808274250,0.000020295383365,L, + 57732697500,0.206803947687149,L, + 59657120750,0.233176037669182,L, + 61581544000,0.246348872780800,L, + 63505967250,0.255807816982269,L, + 65430390500,0.263269245624542,L, + 67354813750,0.269431859254837,L, + 69279237000,0.274662703275681,L, + 71203660250,0.279183030128479,L, + 73128083500,0.283138453960419,L, + 75052506750,0.286631107330322,L, + 76976930000,0.289735913276672,L, + 78901353250,0.292509585618973,L, + 80825776500,0.294996857643127,L, + 82750199750,0.297233581542969,L, + 84674623000,0.299249082803726,L, + 86599046250,0.301067918539047,L, + 88523469500,0.302711218595505,L, + 90447892750,0.304197102785110,L, + 92372316000,0.305541962385178,L, + 94296739250,0.306760549545288,L, + 96221162500,0.307866960763931,L, + 98145585750,0.308874785900116,L, + 100070009000,0.309798091650009,L, + 101994432250,0.310652315616608,L, + 103918855500,0.311455816030502,L, + 105843278750,0.312232613563538,L, + 107767702000,0.313018739223480,L, + 109692125250,0.313877284526825,L, + 111616548500,0.314952105283737,L, + 113540971750,0.316851407289505,L, + 115465395000,0.315495818853378,L, + 117389818250,0.313827008008957,L, + 119314241500,0.312095224857330,L, + 121238664750,0.310327827930450,L, + 123163088000,0.308535665273666,L, + 125087511250,0.306724458932877,L, + 127011934500,0.304897457361221,L, + 128936357750,0.303057044744492,L, + 130860781000,0.301204711198807,L, + 132785204250,0.299341619014740,L, + 134709627500,0.297468632459641,L, + 136634050750,0.295586407184601,L, + 138558474000,0.293695479631424,L, + 140482897250,0.291796296834946,L, + 142407320500,0.289889127016068,L, + 144331743750,0.287974327802658,L, + 146256167000,0.286052197217941,L, + 148180590250,0.284122705459595,L, + 150105013500,0.282186120748520,L, + 152029436750,0.280242651700974,L, + 153953860000,0.278292268514633,L, + 155878283250,0.276335090398788,L, + 157802706500,0.274371176958084,L, + 159727129750,0.272400647401810,L, + 161651553000,0.270423412322998,L, + 163575976250,0.268439590930939,L, + 165500399500,0.266449123620987,L, + 167424822750,0.264452040195465,L, + 169349246000,0.262448251247406,L, + 171273669250,0.260437905788422,L, + 173198092500,0.258420735597610,L, + 175122515750,0.256396919488907,L, + 177046939000,0.254366308450699,L, + 178971362250,0.252328783273697,L, + 180895785500,0.250284403562546,L, + 182820208750,0.248233005404472,L, + 184744632000,0.246174588799477,L, + 186669055250,0.244108974933624,L, + 188593478500,0.242036119103432,L, + 190517901750,0.239955917000771,L, + 192442325000,0.237868234515190,L, + 194366748250,0.235772982239723,L, + 196291171500,0.233670040965080,L, + 198215594750,0.231559231877327,L, + 200140018000,0.229440450668335,L, + 202064441250,0.227313473820686,L, + 203988864500,0.225178241729736,L, + 205913287750,0.223034486174583,L, + 207837711000,0.220882087945938,L, + 209762134250,0.218720823526382,L, + 211686557500,0.216550454497337,L, + 213610980750,0.214370831847191,L, + 215535404000,0.212181672453880,L, + 217459827250,0.209982752799988,L, + 219384250500,0.207773789763451,L, + 221308673750,0.205554515123367,L, + 223233097000,0.203324615955353,L, + 225157520250,0.201083853840828,L, + 227081943500,0.198831796646118,L, + 229006366750,0.196568161249161,L, + 230930790000,0.194292485713959,L, + 232855213250,0.192004472017288,L, + 234779636500,0.189703628420830,L, + 236704059750,0.187389507889748,L, + 238628483000,0.185061618685722,L, + 240552906250,0.182719439268112,L, + 242477329500,0.180362343788147,L, + 244401752750,0.177989825606346,L, + 246326176000,0.175601139664650,L, + 248250599250,0.173195615410805,L, + 250175022500,0.170772492885590,L, + 252099445750,0.168330863118172,L, + 254023869000,0.165869891643524,L, + 255948292250,0.163388565182686,L, + 257872715500,0.160885766148567,L, + 259797138750,0.158360362052917,L, + 261721562000,0.155810996890068,L, + 263645985250,0.153236195445061,L, + 265570408500,0.150634393095970,L, + 267494831750,0.148003742098808,L, + 269419255000,0.145342260599136,L, + 271343678250,0.142647653818130,L, + 273268101500,0.139917388558388,L, + 275192524750,0.137148454785347,L, + 277116948000,0.134337484836578,L, + 279041371250,0.131480589509010,L, + 280965794500,0.128573119640350,L, + 282890217750,0.125609740614891,L, + 284814641000,0.122583888471127,L, + 286739064250,0.119487755000591,L, + 288663487500,0.116311676800251,L, + 290587910750,0.113043375313282,L, + 292512334000,0.109667293727398,L, + 294436757250,0.106162600219250,L, + 296361180500,0.102501012384892,L, + 298285603750,0.098641544580460,L, + 300210027000,0.094521671533585,L, + 302134450250,0.090036526322365,L, + 304058873500,0.084982626140118,L, + 305983296750,0.078841231763363,L, + 307907720000,0.067696750164032,L, + 309832143250,0.000028520824344,L, + 344471761750,0.000028520824344,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378906073 + KeyVer: 4005 + KeyCount: 163 + Key: + 0,0.000042378906073,L, + 1924423250,0.000042323801608,L, + 3848846500,0.000042166888306,L, + 5773269750,0.000041919105570,L, + 7697693000,0.000041589562898,L, + 9622116250,0.000041185980081,L, + 11546539500,0.000040714934585,L, + 13470962750,0.000040182127123,L, + 15395386000,0.000039592530811,L, + 17319809250,0.000038950514863,L, + 19244232500,0.000038259957364,L, + 21168655750,0.000037524365325,L, + 23093079000,0.000036746871046,L, + 25017502250,0.000035930373997,L, + 26941925500,0.000035077515349,L, + 28866348750,0.000034190794395,L, + 30790772000,0.000033272561268,L, + 32715195250,0.000032325100619,L, + 34639618500,0.000031350671634,L, + 36564041750,0.000030351548048,L, + 38488465000,0.000029330134566,L, + 40412888250,0.000028289035981,L, + 42337311500,0.000027231279091,L, + 44261734750,0.000026160534617,L, + 46186158000,0.000025081624699,L, + 48110581250,0.000024001452402,L, + 50035004500,0.000022931033527,L, + 51959427750,0.000021890924472,L, + 53883851000,0.000020930756364,L, + 55808274250,0.000020295381546,L, + 57732697500,0.206803932785988,L, + 59657120750,0.237005800008774,L, + 61581544000,0.252660751342773,L, + 63505967250,0.263727933168411,L, + 65430390500,0.272284537553787,L, + 67354813750,0.279199182987213,L, + 69279237000,0.284934103488922,L, + 71203660250,0.289769887924194,L, + 73128083500,0.293892681598663,L, + 75052506750,0.297433078289032,L, + 76976930000,0.300487488508224,L, + 78901353250,0.303129166364670,L, + 80825776500,0.305415809154510,L, + 82750199750,0.307393640279770,L, + 84674623000,0.309100598096848,L, + 86599046250,0.310568451881409,L, + 88523469500,0.311824202537537,L, + 90447892750,0.312891006469727,L, + 92372316000,0.313789248466492,L, + 94296739250,0.314536869525909,L, + 96221162500,0.315150290727615,L, + 98145585750,0.315644174814224,L, + 100070009000,0.316032320261002,L, + 101994432250,0.316327780485153,L, + 103918855500,0.316543042659760,L, + 105843278750,0.316690355539322,L, + 107767702000,0.316781878471375,L, + 109692125250,0.316830307245255,L, + 111616548500,0.316848695278168,L, + 113540971750,0.316851466894150,L, + 115465395000,0.316826790571213,L, + 117389818250,0.316753804683685,L, + 119314241500,0.316634118556976,L, + 121238664750,0.316469341516495,L, + 123163088000,0.316260606050491,L, + 125087511250,0.316009372472763,L, + 127011934500,0.315716773271561,L, + 128936357750,0.315383911132812,L, + 130860781000,0.315011829137802,L, + 132785204250,0.314601510763168,L, + 134709627500,0.314153879880905,L, + 136634050750,0.313669681549072,L, + 138558474000,0.313149839639664,L, + 140482897250,0.312595009803772,L, + 142407320500,0.312005907297134,L, + 144331743750,0.311383187770844,L, + 146256167000,0.310727447271347,L, + 148180590250,0.310039311647415,L, + 150105013500,0.309319168329239,L, + 152029436750,0.308567702770233,L, + 153953860000,0.307785183191299,L, + 155878283250,0.306972205638885,L, + 157802706500,0.306129008531570,L, + 159727129750,0.305256158113480,L, + 161651553000,0.304353803396225,L, + 163575976250,0.303422361612320,L, + 165500399500,0.302462100982666,L, + 167424822750,0.301473319530487,L, + 169349246000,0.300456196069717,L, + 171273669250,0.299410969018936,L, + 173198092500,0.298337846994400,L, + 175122515750,0.297237008810043,L, + 177046939000,0.296108514070511,L, + 178971362250,0.294952630996704,L, + 180895785500,0.293769359588623,L, + 182820208750,0.292558848857880,L, + 184744632000,0.291321128606796,L, + 186669055250,0.290056228637695,L, + 188593478500,0.288764208555222,L, + 190517901750,0.287445008754730,L, + 192442325000,0.286098718643188,L, + 194366748250,0.284725189208984,L, + 196291171500,0.283324360847473,L, + 198215594750,0.281896233558655,L, + 200140018000,0.280440598726273,L, + 202064441250,0.278957366943359,L, + 203988864500,0.277446419000626,L, + 205913287750,0.275907576084137,L, + 207837711000,0.274340540170670,L, + 209762134250,0.272745102643967,L, + 211686557500,0.271121084690094,L, + 213610980750,0.269468128681183,L, + 215535404000,0.267785966396332,L, + 217459827250,0.266074180603027,L, + 219384250500,0.264332443475723,L, + 221308673750,0.262560248374939,L, + 223233097000,0.260757267475128,L, + 225157520250,0.258922934532166,L, + 227081943500,0.257056713104248,L, + 229006366750,0.255158007144928,L, + 230930790000,0.253226161003113,L, + 232855213250,0.251260548830032,L, + 234779636500,0.249260380864143,L, + 236704059750,0.247224897146225,L, + 238628483000,0.245153144001961,L, + 240552906250,0.243044227361679,L, + 242477329500,0.240897089242935,L, + 244401752750,0.238710626959801,L, + 246326176000,0.236483678221703,L, + 248250599250,0.234214842319489,L, + 250175022500,0.231902778148651,L, + 252099445750,0.229545772075653,L, + 254023869000,0.227142244577408,L, + 255948292250,0.224690228700638,L, + 257872715500,0.222187697887421,L, + 259797138750,0.219632342457771,L, + 261721562000,0.217021659016609,L, + 263645985250,0.214352816343307,L, + 265570408500,0.211622774600983,L, + 267494831750,0.208827942609787,L, + 269419255000,0.205964520573616,L, + 271343678250,0.203028008341789,L, + 273268101500,0.200013428926468,L, + 275192524750,0.196915015578270,L, + 277116948000,0.193726226687431,L, + 279041371250,0.190439403057098,L, + 280965794500,0.187045633792877,L, + 282890217750,0.183534324169159,L, + 284814641000,0.179892778396606,L, + 286739064250,0.176105767488480,L, + 288663487500,0.172154352068901,L, + 290587910750,0.168014809489250,L, + 292512334000,0.163656651973724,L, + 294436757250,0.159039616584778,L, + 296361180500,0.154108494520187,L, + 298285603750,0.148784086108208,L, + 300210027000,0.142945423722267,L, + 302134450250,0.136390239000320,L, + 304058873500,0.128728121519089,L, + 305983296750,0.118972592055798,L, + 307907720000,0.100327976047993,L, + 309832143250,0.000042378906073,L, + 344471761750,0.000042378906073,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_022" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.005302101373672 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,-0.005302101373672,L, + 1924423250,-0.004970312118530,L, + 3848846500,-0.003962457180023,L, + 5773269750,-0.002267867326736,L, + 7697693000,0.000109821557999,L, + 9622116250,0.003148317337036,L, + 11546539500,0.006802558898926,L, + 13470962750,0.011001527309418,L, + 15395386000,0.015647530555725,L, + 17319809250,0.020618975162506,L, + 19244232500,0.025776475667953,L, + 21168655750,0.030972033739090,L, + 23093079000,0.036059737205505,L, + 25017502250,0.040905863046646,L, + 26941925500,0.045396268367767,L, + 28866348750,0.049440771341324,L, + 30790772000,0.052973896265030,L, + 32715195250,0.055953353643417,L, + 34639618500,0.058356344699860,L, + 36564041750,0.060176074504852,L, + 38488465000,0.061686486005783,L, + 40412888250,0.063158303499222,L, + 42337311500,0.064589679241180,L, + 44261734750,0.065978437662125,L, + 46186158000,0.067322731018066,L, + 48110581250,0.068620532751083,L, + 50035004500,0.069869816303253,L, + 51959427750,0.071068704128265,L, + 53883851000,0.072215437889099,L, + 55808274250,0.073308140039444,L, + 57732697500,0.074345499277115,L, + 59657120750,0.075326144695282,L, + 61581544000,0.076248914003372,L, + 63505967250,0.077113062143326,L, + 65430390500,0.077918201684952,L, + 67354813750,0.078664273023605,L, + 69279237000,0.079351514577866,L, + 71203660250,0.079980671405792,L, + 73128083500,0.080552816390991,L, + 75052506750,0.081069588661194,L, + 76976930000,0.081532895565033,L, + 78901353250,0.081944853067398,L, + 80825776500,0.082308202981949,L, + 82750199750,0.082625716924667,L, + 84674623000,0.082900583744049,L, + 86599046250,0.083135932683945,L, + 88523469500,0.083335161209106,L, + 90447892750,0.083501636981964,L, + 92372316000,0.083638757467270,L, + 94296739250,0.083749741315842,L, + 96221162500,0.083837896585464,L, + 98145585750,0.083906233310699,L, + 100070009000,0.083957731723785,L, + 101994432250,0.083995163440704,L, + 103918855500,0.084021091461182,L, + 105843278750,0.084037810564041,L, + 107767702000,0.084047585725784,L, + 109692125250,0.084052473306656,L, + 111616548500,0.084054201841354,L, + 113540971750,0.084054380655289,L, + 140482897250,0.084054380655289,L, + 142407320500,0.084131300449371,L, + 144331743750,0.084363579750061,L, + 146256167000,0.084748029708862,L, + 148180590250,0.085271745920181,L, + 150105013500,0.085909187793732,L, + 152029436750,0.086621791124344,L, + 153953860000,0.087360799312592,L, + 155878283250,0.088073402643204,L, + 157802706500,0.088710784912109,L, + 159727129750,0.089234530925751,L, + 161651553000,0.089619070291519,L, + 163575976250,0.089851349592209,L, + 165500399500,0.089928150177002,L, + 167424822750,0.089921772480011,L, + 169349246000,0.089902609586716,L, + 171273669250,0.089870482683182,L, + 173198092500,0.089825391769409,L, + 175122515750,0.089767247438431,L, + 177046939000,0.089696168899536,L, + 178971362250,0.089612126350403,L, + 180895785500,0.089515358209610,L, + 182820208750,0.089406102895737,L, + 184744632000,0.089284509420395,L, + 186669055250,0.089151114225388,L, + 188593478500,0.089006245136261,L, + 190517901750,0.088850528001785,L, + 192442325000,0.088684707880020,L, + 194366748250,0.088509321212769,L, + 196291171500,0.088325351476669,L, + 198215594750,0.088133722543716,L, + 200140018000,0.087935388088226,L, + 202064441250,0.087731570005417,L, + 203988864500,0.087523221969604,L, + 205913287750,0.087311714887619,L, + 207837711000,0.087098300457001,L, + 209762134250,0.086884289979935,L, + 211686557500,0.086670815944672,L, + 213610980750,0.086459308862686,L, + 215535404000,0.086251020431519,L, + 217459827250,0.086047202348709,L, + 219384250500,0.085848867893219,L, + 221308673750,0.085657179355621,L, + 223233097000,0.085473209619522,L, + 225157520250,0.085297882556915,L, + 227081943500,0.085132002830505,L, + 229006366750,0.084976345300674,L, + 230930790000,0.084831476211548,L, + 232855213250,0.084698081016541,L, + 234779636500,0.084576547145844,L, + 236704059750,0.084467232227325,L, + 238628483000,0.084370464086533,L, + 240552906250,0.084286451339722,L, + 242477329500,0.084215342998505,L, + 244401752750,0.084157198667526,L, + 246326176000,0.084112107753754,L, + 248250599250,0.084079980850220,L, + 250175022500,0.084060817956924,L, + 252099445750,0.084054380655289,L, + 282890217750,0.084054380655289,L, + 284814641000,0.083739757537842,L, + 286739064250,0.082789033651352,L, + 288663487500,0.081197530031204,L, + 290587910750,0.078967720270157,L, + 292512334000,0.076111584901810,L, + 294436757250,0.072652727365494,L, + 296361180500,0.068627566099167,L, + 298285603750,0.064087092876434,L, + 300210027000,0.059097319841385,L, + 302134450250,0.053739219903946,L, + 304058873500,0.048106908798218,L, + 305983296750,0.042305529117584,L, + 307907720000,0.036446899175644,L, + 309832143250,0.030645430088043,L, + 311756566500,0.025013178586960,L, + 313680989750,0.019654989242554,L, + 315605413000,0.014665246009827,L, + 317529836250,0.010124772787094,L, + 319454259500,0.006099581718445,L, + 321378682750,0.002640694379807,L, + 323303106000,-0.000215351581573,L, + 325227529250,-0.002445220947266,L, + 327151952500,-0.004036724567413,L, + 329076375750,-0.004987329244614,L, + 331000799000,-0.005302101373672,L, + 344471761750,-0.005302101373672,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.114762783050537 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,0.114762783050537,L, + 1924423250,0.114140436053276,L, + 3848846500,0.112246274948120,L, + 5773269750,0.109052091836929,L, + 7697693000,0.104556582868099,L, + 9622116250,0.098791070282459,L, + 11546539500,0.091828547418118,L, + 13470962750,0.083789557218552,L, + 15395386000,0.074844308197498,L, + 17319809250,0.065207786858082,L, + 19244232500,0.055131793022156,L, + 21168655750,0.044885292649269,L, + 23093079000,0.034736387431622,L, + 25017502250,0.024934865534306,L, + 26941925500,0.015694849193096,L, + 28866348750,0.007189065217972,L, + 30790772000,-0.000453233718872,L, + 32715195250,-0.007146418094635,L, + 34639618500,-0.012841053307056,L, + 36564041750,-0.017516434192657,L, + 38488465000,-0.021630056202412,L, + 40412888250,-0.025639250874519,L, + 42337311500,-0.029537387192249,L, + 44261734750,-0.033320158720016,L, + 46186158000,-0.036981396377087,L, + 48110581250,-0.040516331791878,L, + 50035004500,-0.043919250369072,L, + 51959427750,-0.047184467315674,L, + 53883851000,-0.050307743251324,L, + 55808274250,-0.053284376859665,L, + 57732697500,-0.056109726428986,L, + 59657120750,-0.058780163526535,L, + 61581544000,-0.061293497681618,L, + 63505967250,-0.063647665083408,L, + 65430390500,-0.065840631723404,L, + 67354813750,-0.067872881889343,L, + 69279237000,-0.069744475185871,L, + 71203660250,-0.071457959711552,L, + 73128083500,-0.073016464710236,L, + 75052506750,-0.074424155056477,L, + 76976930000,-0.075685322284698,L, + 78901353250,-0.076807618141174,L, + 80825776500,-0.077797390520573,L, + 82750199750,-0.078661978244781,L, + 84674623000,-0.079411178827286,L, + 86599046250,-0.080051936209202,L, + 88523469500,-0.080594569444656,L, + 90447892750,-0.081048466265202,L, + 92372316000,-0.081421546638012,L, + 94296739250,-0.081724151968956,L, + 96221162500,-0.081963688135147,L, + 98145585750,-0.082150422036648,L, + 100070009000,-0.082290299236774,L, + 101994432250,-0.082392059266567,L, + 103918855500,-0.082462497055531,L, + 105843278750,-0.082508385181427,L, + 107767702000,-0.082535475492477,L, + 109692125250,-0.082548066973686,L, + 111616548500,-0.082552760839462,L, + 113540971750,-0.082553766667843,L, + 140482897250,-0.082553766667843,L, + 142407320500,-0.082717254757881,L, + 144331743750,-0.083210922777653,L, + 146256167000,-0.084028355777264,L, + 148180590250,-0.085142351686954,L, + 150105013500,-0.086497157812119,L, + 152029436750,-0.088012680411339,L, + 153953860000,-0.089583657681942,L, + 155878283250,-0.091098710894585,L, + 157802706500,-0.092454470694065,L, + 159727129750,-0.093567512929440,L, + 161651553000,-0.094385430216789,L, + 163575976250,-0.094879090785980,L, + 165500399500,-0.095042571425438,L, + 167424822750,-0.095029234886169,L, + 169349246000,-0.094988256692886,L, + 171273669250,-0.094920076429844,L, + 173198092500,-0.094824217259884,L, + 175122515750,-0.094700187444687,L, + 177046939000,-0.094549432396889,L, + 178971362250,-0.094370536506176,L, + 180895785500,-0.094164960086346,L, + 182820208750,-0.093932278454304,L, + 184744632000,-0.093673981726170,L, + 186669055250,-0.093390166759491,L, + 188593478500,-0.093082346022129,L, + 190517901750,-0.092751614749432,L, + 192442325000,-0.092398591339588,L, + 194366748250,-0.092025816440582,L, + 196291171500,-0.091634914278984,L, + 198215594750,-0.091227047145367,L, + 200140018000,-0.090805292129517,L, + 202064441250,-0.090371817350388,L, + 203988864500,-0.089929245412350,L, + 205913287750,-0.089479774236679,L, + 207837711000,-0.089025579392910,L, + 209762134250,-0.088570281863213,L, + 211686557500,-0.088117048144341,L, + 213610980750,-0.087667092680931,L, + 215535404000,-0.087224043905735,L, + 217459827250,-0.086790569126606,L, + 219384250500,-0.086368814110756,L, + 221308673750,-0.085961900651455,L, + 223233097000,-0.085570529103279,L, + 225157520250,-0.085197277367115,L, + 227081943500,-0.084845200181007,L, + 229006366750,-0.084513999521732,L, + 230930790000,-0.084206178784370,L, + 232855213250,-0.083922356367111,L, + 234779636500,-0.083663590252399,L, + 236704059750,-0.083431385457516,L, + 238628483000,-0.083225324749947,L, + 240552906250,-0.083046913146973,L, + 242477329500,-0.082895673811436,L, + 244401752750,-0.082772128283978,L, + 246326176000,-0.082676269114017,L, + 248250599250,-0.082608088850975,L, + 250175022500,-0.082567110657692,L, + 252099445750,-0.082553766667843,L, + 282890217750,-0.082553766667843,L, + 284814641000,-0.081858612596989,L, + 286739064250,-0.079759769141674,L, + 288663487500,-0.076245136559010,L, + 290587910750,-0.071321040391922,L, + 292512334000,-0.065014488995075,L, + 294436757250,-0.057376518845558,L, + 296361180500,-0.048488266766071,L, + 298285603750,-0.038461744785309,L, + 300210027000,-0.027443856000900,L, + 302134450250,-0.015611492097378,L, + 304058873500,-0.003174595534801,L, + 305983296750,0.009636357426643,L, + 307907720000,0.022573128342628,L, + 309832143250,0.035383611917496,L, + 311756566500,0.047820981591940,L, + 313680989750,0.059652868658304,L, + 315605413000,0.070671245455742,L, + 317529836250,0.080697752535343,L, + 319454259500,0.089585527777672,L, + 321378682750,0.097223505377769,L, + 323303106000,0.103530526161194,L, + 325227529250,0.108454152941704,L, + 327151952500,0.111968770623207,L, + 329076375750,0.114068105816841,L, + 331000799000,0.114762783050537,L, + 344471761750,0.114762783050537,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.078732252120972 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.078732252120972,L, + 1924423250,0.079246044158936,L, + 3848846500,0.080799102783203,L, + 5773269750,0.083394885063171,L, + 7697693000,0.087011456489563,L, + 9622116250,0.091595530509949,L, + 11546539500,0.097056031227112,L, + 13470962750,0.103259563446045,L, + 15395386000,0.110031485557556,L, + 17319809250,0.117161035537720,L, + 19244232500,0.124412655830383,L, + 21168655750,0.131542086601257,L, + 23093079000,0.138314366340637,L, + 25017502250,0.144517779350281,L, + 26941925500,0.149978041648865,L, + 28866348750,0.154562115669250,L, + 30790772000,0.158178687095642,L, + 32715195250,0.160774588584900,L, + 34639618500,0.162327885627747,L, + 36564041750,0.162841439247131,L, + 38488465000,0.162282109260559,L, + 40412888250,0.160591721534729,L, + 42337311500,0.157763123512268,L, + 44261734750,0.153807759284973,L, + 46186158000,0.148760676383972,L, + 48110581250,0.142685055732727,L, + 50035004500,0.135676503181458,L, + 51959427750,0.127864718437195,L, + 53883851000,0.119413495063782,L, + 55808274250,0.110516667366028,L, + 57732697500,0.101390957832336,L, + 59657120750,0.092265367507935,L, + 61581544000,0.083368659019470,L, + 63505967250,0.074917316436768,L, + 65430390500,0.067105531692505,L, + 67354813750,0.060096979141235,L, + 69279237000,0.054021358489990,L, + 71203660250,0.048974275588989,L, + 73128083500,0.045019030570984,L, + 75052506750,0.042190194129944,L, + 76976930000,0.040499925613403,L, + 78901353250,0.039940357208252,L, + 80825776500,0.039941906929016,L, + 82750199750,0.039951920509338,L, + 84674623000,0.039981603622437,L, + 86599046250,0.040044069290161,L, + 88523469500,0.040154457092285,L, + 90447892750,0.040329933166504,L, + 92372316000,0.040588617324829,L, + 94296739250,0.040948867797852,L, + 96221162500,0.041427016258240,L, + 98145585750,0.042036414146423,L, + 100070009000,0.042786359786987,L, + 101994432250,0.043681144714355,L, + 103918855500,0.044719934463501,L, + 105843278750,0.045898675918579,L, + 107767702000,0.047209262847900,L, + 109692125250,0.048642277717590,L, + 111616548500,0.050186753273010,L, + 113540971750,0.051832199096680,L, + 115465395000,0.054098725318909,L, + 117389818250,0.057515978813171,L, + 119314241500,0.062049508094788,L, + 121238664750,0.067598462104797,L, + 123163088000,0.073979854583740,L, + 125087511250,0.080923080444336,L, + 127011934500,0.088082790374756,L, + 128936357750,0.095074057579041,L, + 130860781000,0.101520657539368,L, + 132785204250,0.107101798057556,L, + 134709627500,0.111583232879639,L, + 136634050750,0.114822387695312,L, + 138558474000,0.116759181022644,L, + 140482897250,0.117396712303162,L, + 142407320500,0.117056608200073,L, + 144331743750,0.116026520729065,L, + 146256167000,0.114315390586853,L, + 148180590250,0.111974239349365,L, + 150105013500,0.109108686447144,L, + 152029436750,0.105882048606873,L, + 153953860000,0.102502822875977,L, + 155878283250,0.099199414253235,L, + 157802706500,0.096185326576233,L, + 159727129750,0.093631863594055,L, + 161651553000,0.091653823852539,L, + 163575976250,0.090313196182251,L, + 165500399500,0.089627742767334,L, + 167424822750,0.089275240898132,L, + 169349246000,0.088938236236572,L, + 171273669250,0.088618159294128,L, + 173198092500,0.088316559791565,L, + 175122515750,0.088034272193909,L, + 177046939000,0.087772727012634,L, + 178971362250,0.087532997131348,L, + 180895785500,0.087315797805786,L, + 182820208750,0.087121725082397,L, + 184744632000,0.086950659751892,L, + 186669055250,0.086802482604980,L, + 188593478500,0.086676478385925,L, + 190517901750,0.086571574211121,L, + 192442325000,0.086485862731934,L, + 194366748250,0.086417913436890,L, + 196291171500,0.086365342140198,L, + 198215594750,0.086326122283936,L, + 200140018000,0.086297869682312,L, + 202064441250,0.086278915405273,L, + 203988864500,0.086266636848450,L, + 205913287750,0.086259603500366,L, + 207837711000,0.086256265640259,L, + 209762134250,0.086255192756653,L, + 211686557500,0.086254954338074,L, + 213610980750,0.086338877677917,L, + 215535404000,0.086592316627502,L, + 217459827250,0.087016582489014,L, + 219384250500,0.087609052658081,L, + 221308673750,0.088364005088806,L, + 223233097000,0.089269876480103,L, + 225157520250,0.090310573577881,L, + 227081943500,0.091464161872864,L, + 229006366750,0.092702984809875,L, + 230930790000,0.093994975090027,L, + 232855213250,0.095304846763611,L, + 234779636500,0.096596837043762,L, + 236704059750,0.097835659980774,L, + 238628483000,0.098989248275757,L, + 240552906250,0.100029945373535,L, + 242477329500,0.100935816764832,L, + 244401752750,0.101690649986267,L, + 246326176000,0.102283120155334,L, + 248250599250,0.102707266807556,L, + 250175022500,0.102960944175720,L, + 252099445750,0.103044867515564,L, + 254023869000,0.102550029754639,L, + 255948292250,0.101054191589355,L, + 257872715500,0.098561406135559,L, + 259797138750,0.095112562179565,L, + 261721562000,0.090796828269958,L, + 263645985250,0.085758566856384,L, + 265570408500,0.080198407173157,L, + 267494831750,0.074363946914673,L, + 269419255000,0.068529367446899,L, + 271343678250,0.062969326972961,L, + 273268101500,0.057931065559387,L, + 275192524750,0.053615331649780,L, + 277116948000,0.050166487693787,L, + 279041371250,0.047673702239990,L, + 280965794500,0.046177983283997,L, + 282890217750,0.045683145523071,L, + 284814641000,0.045799493789673,L, + 286739064250,0.046151280403137,L, + 288663487500,0.046739816665649,L, + 290587910750,0.047564625740051,L, + 292512334000,0.048620939254761,L, + 294436757250,0.049900054931641,L, + 296361180500,0.051388859748840,L, + 298285603750,0.053068161010742,L, + 300210027000,0.054913520812988,L, + 302134450250,0.056895494461060,L, + 304058873500,0.058978676795959,L, + 305983296750,0.061124205589294,L, + 307907720000,0.063291072845459,L, + 309832143250,0.065436720848083,L, + 311756566500,0.067519903182983,L, + 313680989750,0.069501757621765,L, + 315605413000,0.071347117424011,L, + 317529836250,0.073026537895203,L, + 319454259500,0.074515223503113,L, + 321378682750,0.075794458389282,L, + 323303106000,0.076850771903992,L, + 325227529250,0.077675461769104,L, + 327151952500,0.078264117240906,L, + 329076375750,0.078615784645081,L, + 331000799000,0.078732252120972,L, + 344471761750,0.078732252120972,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -4.750567749353116 + KeyVer: 4005 + KeyCount: 144 + Key: + 0,-4.750567749353116,L, + 1924423250,-4.750567322466293,L, + 3848846500,-4.750567749353116,L, + 5773269750,-4.750566895579470,L, + 7697693000,-4.750566468692647,L, + 9622116250,-4.750566895579470,L, + 11546539500,-4.750566895579470,L, + 13470962750,-4.750567322466293,L, + 15395386000,-4.750566895579470,L, + 17319809250,-4.750566895579470,L, + 19244232500,-4.750566468692647,L, + 23093079000,-4.750568176239939,L, + 25017502250,-4.750567322466293,L, + 26941925500,-4.750567322466293,L, + 30790772000,-4.750568176239939,L, + 32715195250,-4.750567749353116,L, + 34639618500,-4.750567749353116,L, + 36564041750,-4.750566041805824,L, + 38488465000,-4.750565614919000,L, + 40412888250,-4.750566468692647,L, + 42337311500,-4.750566468692647,L, + 44261734750,-4.750565614919000,L, + 46186158000,-4.750566041805824,L, + 48110581250,-4.750565614919000,L, + 50035004500,-4.750566041805824,L, + 53883851000,-4.750565188032177,L, + 55808274250,-4.750565614919000,L, + 57732697500,-4.750566895579470,L, + 59657120750,-4.750566041805824,L, + 65430390500,-4.750566041805824,L, + 67354813750,-4.750565188032177,L, + 69279237000,-4.750566041805824,L, + 75052506750,-4.750564761145355,L, + 76976930000,-4.750566468692647,L, + 78901353250,-4.750565188032177,L, + 80825776500,-4.750566468692647,L, + 84674623000,-4.750565614919000,L, + 86599046250,-4.750565614919000,L, + 90447892750,-4.750566468692647,L, + 92372316000,-4.750566468692647,L, + 94296739250,-4.750565614919000,L, + 98145585750,-4.750565614919000,L, + 100070009000,-4.750565188032177,L, + 103918855500,-4.750566041805824,L, + 105843278750,-4.750565614919000,L, + 107767702000,-4.750566041805824,L, + 109692125250,-4.750565188032177,L, + 111616548500,-4.750565188032177,L, + 113540971750,-4.750566468692647,L, + 115465395000,-4.750566468692647,L, + 117389818250,-4.750566041805824,L, + 119314241500,-4.750566041805824,L, + 121238664750,-4.750566468692647,L, + 123163088000,-4.750565614919000,L, + 127011934500,-4.750565614919000,L, + 128936357750,-4.750566041805824,L, + 130860781000,-4.750566041805824,L, + 132785204250,-4.750565614919000,L, + 134709627500,-4.750566468692647,L, + 136634050750,-4.750565188032177,L, + 138558474000,-4.750566468692647,L, + 140482897250,-4.750567322466293,L, + 142407320500,-4.750566895579470,L, + 144331743750,-4.750567749353116,L, + 146256167000,-4.750567322466293,L, + 148180590250,-4.750567322466293,L, + 150105013500,-4.750567749353116,L, + 152029436750,-4.750567322466293,L, + 153953860000,-4.750567749353116,L, + 155878283250,-4.750566468692647,L, + 159727129750,-4.750567322466293,L, + 161651553000,-4.750566468692647,L, + 165500399500,-4.750568176239939,L, + 169349246000,-4.750566468692647,L, + 171273669250,-4.750567322466293,L, + 173198092500,-4.750566895579470,L, + 175122515750,-4.750567749353116,L, + 177046939000,-4.750567749353116,L, + 178971362250,-4.750566468692647,L, + 180895785500,-4.750567322466293,L, + 182820208750,-4.750567322466293,L, + 184744632000,-4.750566895579470,L, + 186669055250,-4.750567322466293,L, + 188593478500,-4.750567322466293,L, + 190517901750,-4.750566468692647,L, + 192442325000,-4.750567322466293,L, + 194366748250,-4.750566895579470,L, + 196291171500,-4.750567749353116,L, + 198215594750,-4.750567322466293,L, + 200140018000,-4.750567322466293,L, + 202064441250,-4.750566895579470,L, + 203988864500,-4.750567749353116,L, + 205913287750,-4.750567322466293,L, + 207837711000,-4.750566041805824,L, + 209762134250,-4.750567322466293,L, + 211686557500,-4.750566468692647,L, + 213610980750,-4.750567322466293,L, + 215535404000,-4.750567322466293,L, + 217459827250,-4.750568176239939,L, + 221308673750,-4.750567322466293,L, + 225157520250,-4.750567322466293,L, + 227081943500,-4.750566895579470,L, + 230930790000,-4.750566895579470,L, + 232855213250,-4.750567749353116,L, + 236704059750,-4.750567749353116,L, + 238628483000,-4.750567322466293,L, + 242477329500,-4.750567322466293,L, + 244401752750,-4.750566041805824,L, + 246326176000,-4.750566041805824,L, + 248250599250,-4.750567322466293,L, + 250175022500,-4.750567322466293,L, + 252099445750,-4.750566895579470,L, + 254023869000,-4.750567322466293,L, + 255948292250,-4.750566468692647,L, + 261721562000,-4.750567749353116,L, + 263645985250,-4.750566895579470,L, + 265570408500,-4.750566895579470,L, + 269419255000,-4.750567749353116,L, + 271343678250,-4.750567322466293,L, + 273268101500,-4.750567749353116,L, + 277116948000,-4.750566041805824,L, + 279041371250,-4.750567749353116,L, + 280965794500,-4.750567322466293,L, + 282890217750,-4.750567322466293,L, + 284814641000,-4.750566468692647,L, + 286739064250,-4.750567749353116,L, + 294436757250,-4.750567749353116,L, + 298285603750,-4.750566895579470,L, + 300210027000,-4.750567322466293,L, + 302134450250,-4.750567322466293,L, + 304058873500,-4.750566895579470,L, + 307907720000,-4.750566895579470,L, + 309832143250,-4.750567749353116,L, + 311756566500,-4.750568176239939,L, + 313680989750,-4.750566895579470,L, + 315605413000,-4.750567749353116,L, + 317529836250,-4.750567322466293,L, + 319454259500,-4.750567749353116,L, + 323303106000,-4.750567749353116,L, + 325227529250,-4.750566895579470,L, + 327151952500,-4.750568176239939,L, + 329076375750,-4.750566895579470,L, + 331000799000,-4.750567749353116,L, + 344471761750,-4.750567749353116,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -1.754853823022409 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,-1.754853823022409,L, + 1924423250,-1.754853823022409,L, + 3848846500,-1.754853929744115,L, + 7697693000,-1.754853716300704,L, + 9622116250,-1.754853929744115,L, + 11546539500,-1.754853929744115,L, + 13470962750,-1.754854143187527,L, + 15395386000,-1.754853929744115,L, + 17319809250,-1.754854036465821,L, + 19244232500,-1.754853929744115,L, + 23093079000,-1.754853929744115,L, + 25017502250,-1.754854143187527,L, + 26941925500,-1.754854143187527,L, + 28866348750,-1.754854036465821,L, + 30790772000,-1.754854036465821,L, + 32715195250,-1.754853823022409,L, + 34639618500,-1.754853823022409,L, + 36564041750,-1.754853289413880,L, + 38488465000,-1.754853075970469,L, + 40412888250,-1.754853182692175,L, + 42337311500,-1.754853396135586,L, + 48110581250,-1.754853075970469,L, + 50035004500,-1.754853289413880,L, + 51959427750,-1.754853075970469,L, + 53883851000,-1.754853075970469,L, + 59657120750,-1.754853396135586,L, + 61581544000,-1.754853182692175,L, + 63505967250,-1.754853075970469,L, + 65430390500,-1.754853182692175,L, + 67354813750,-1.754853075970469,L, + 71203660250,-1.754853075970469,L, + 73128083500,-1.754852969248763,L, + 75052506750,-1.754852969248763,L, + 76976930000,-1.754853182692175,L, + 78901353250,-1.754852862527057,L, + 80825776500,-1.754853182692175,L, + 82750199750,-1.754853182692175,L, + 86599046250,-1.754853396135586,L, + 90447892750,-1.754853182692175,L, + 92372316000,-1.754853289413880,L, + 94296739250,-1.754852969248763,L, + 96221162500,-1.754853289413880,L, + 98145585750,-1.754853289413880,L, + 100070009000,-1.754852969248763,L, + 101994432250,-1.754853075970469,L, + 103918855500,-1.754853396135586,L, + 107767702000,-1.754853182692175,L, + 109692125250,-1.754852969248763,L, + 113540971750,-1.754853182692175,L, + 119314241500,-1.754853182692175,L, + 121238664750,-1.754853075970469,L, + 123163088000,-1.754853182692175,L, + 127011934500,-1.754852969248763,L, + 128936357750,-1.754853396135586,L, + 130860781000,-1.754853182692175,L, + 132785204250,-1.754852862527057,L, + 134709627500,-1.754853396135586,L, + 136634050750,-1.754853289413880,L, + 138558474000,-1.754853396135586,L, + 140482897250,-1.754853929744115,L, + 142407320500,-1.754853502857292,L, + 146256167000,-1.754853929744115,L, + 148180590250,-1.754853929744115,L, + 150105013500,-1.754853502857292,L, + 153953860000,-1.754854143187527,L, + 155878283250,-1.754853823022409,L, + 157802706500,-1.754853716300704,L, + 159727129750,-1.754854036465821,L, + 161651553000,-1.754854036465821,L, + 163575976250,-1.754853823022409,L, + 165500399500,-1.754853823022409,L, + 169349246000,-1.754854036465821,L, + 173198092500,-1.754854036465821,L, + 175122515750,-1.754853823022409,L, + 177046939000,-1.754853823022409,L, + 178971362250,-1.754853929744115,L, + 180895785500,-1.754853716300704,L, + 182820208750,-1.754854143187527,L, + 184744632000,-1.754853716300704,L, + 186669055250,-1.754853929744115,L, + 188593478500,-1.754853609578998,L, + 190517901750,-1.754854036465821,L, + 192442325000,-1.754853929744115,L, + 194366748250,-1.754854036465821,L, + 196291171500,-1.754853929744115,L, + 198215594750,-1.754853929744115,L, + 200140018000,-1.754853609578998,L, + 202064441250,-1.754853929744115,L, + 203988864500,-1.754854036465821,L, + 205913287750,-1.754853823022409,L, + 207837711000,-1.754854036465821,L, + 209762134250,-1.754853823022409,L, + 211686557500,-1.754853929744115,L, + 213610980750,-1.754853929744115,L, + 215535404000,-1.754853823022409,L, + 217459827250,-1.754854143187527,L, + 221308673750,-1.754853716300704,L, + 223233097000,-1.754853929744115,L, + 225157520250,-1.754853716300704,L, + 227081943500,-1.754853929744115,L, + 229006366750,-1.754853929744115,L, + 230930790000,-1.754853716300704,L, + 232855213250,-1.754853823022409,L, + 234779636500,-1.754853823022409,L, + 236704059750,-1.754854036465821,L, + 240552906250,-1.754854036465821,L, + 242477329500,-1.754853716300704,L, + 244401752750,-1.754853929744115,L, + 246326176000,-1.754853823022409,L, + 248250599250,-1.754854036465821,L, + 250175022500,-1.754853823022409,L, + 252099445750,-1.754853716300704,L, + 254023869000,-1.754854036465821,L, + 255948292250,-1.754853823022409,L, + 257872715500,-1.754853929744115,L, + 261721562000,-1.754853716300704,L, + 265570408500,-1.754853716300704,L, + 267494831750,-1.754853929744115,L, + 271343678250,-1.754853929744115,L, + 275192524750,-1.754853716300704,L, + 277116948000,-1.754854249909233,L, + 279041371250,-1.754853609578998,L, + 280965794500,-1.754853716300704,L, + 282890217750,-1.754853716300704,L, + 288663487500,-1.754854036465821,L, + 290587910750,-1.754854036465821,L, + 292512334000,-1.754853716300704,L, + 294436757250,-1.754854036465821,L, + 296361180500,-1.754853823022409,L, + 298285603750,-1.754853716300704,L, + 300210027000,-1.754853929744115,L, + 302134450250,-1.754853716300704,L, + 305983296750,-1.754854143187527,L, + 307907720000,-1.754854143187527,L, + 309832143250,-1.754853929744115,L, + 311756566500,-1.754854143187527,L, + 313680989750,-1.754853823022409,L, + 315605413000,-1.754853716300704,L, + 319454259500,-1.754853929744115,L, + 321378682750,-1.754853823022409,L, + 323303106000,-1.754853609578998,L, + 327151952500,-1.754853823022409,L, + 329076375750,-1.754854143187527,L, + 331000799000,-1.754853823022409,L, + 344471761750,-1.754853823022409,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 81.823767464045929 + KeyVer: 4005 + KeyCount: 115 + Key: + 0,81.823767464045929,L, + 1924423250,81.559787482814485,L, + 3848846500,80.761775500948019,L, + 5773269750,79.428126423991586,L, + 7697693000,77.569959799913946,L, + 9622116250,75.214692008043500,L, + 11546539500,72.409239617788984,L, + 13470962750,69.221959162363788,L, + 15395386000,65.742626648218447,L, + 17319809250,62.079555215210846,L, + 19244232500,58.353728004109264,L, + 21168655750,54.690656571101670,L, + 23093079000,51.211320641861739,L, + 25017502250,48.024043601531133,L, + 26941925500,45.218587796182028,L, + 28866348750,42.863323419406164,L, + 30790772000,41.005160210423107,L, + 32715195250,39.671500888182919,L, + 34639618500,38.873485491221871,L, + 36564041750,38.609519170368770,L, + 38488465000,38.609519170368770,L, + 40412888250,38.609570396787547,L, + 42337311500,38.609700170381771,L, + 44261734750,38.609966547759406,L, + 46186158000,38.610420755339206,L, + 48110581250,38.611131095012887,L, + 50035004500,38.612148793199218,L, + 51959427750,38.613542151789900,L, + 53883851000,38.615403378338726,L, + 55808274250,38.617800774737397,L, + 57732697500,38.620819718350539,L, + 59657120750,38.624545586542773,L, + 61581544000,38.629074001962486,L, + 63505967250,38.634490341974299,L, + 65430390500,38.640890229226592,L, + 67354813750,38.648365871273157,L, + 69279237000,38.656995815289456,L, + 71203660250,38.666879099018452,L, + 73128083500,38.678084024351840,L, + 75052506750,38.690682308275910,L, + 76976930000,38.704732007398611,L, + 78901353250,38.720287763233294,L, + 80825776500,38.737400802198735,L, + 82750199750,38.756081369578695,L, + 84674623000,38.776373861602771,L, + 86599046250,38.798264617892627,L, + 88523469500,38.821763883732025,L, + 90447892750,38.846857998742614,L, + 92372316000,38.873519642167722,L, + 94296739250,38.901724908345251,L, + 96221162500,38.931443061423934,L, + 98145585750,38.962626290079584,L, + 100070009000,38.995230198082588,L, + 101994432250,39.029189898635842,L, + 103918855500,39.064481486077248,L, + 105843278750,39.101036658515106,L, + 107767702000,39.138800774436049,L, + 109692125250,39.177726022515898,L, + 111616548500,39.217750931052116,L, + 113540971750,39.258824273625926,L, + 115465395000,39.526082745658975,L, + 117389818250,40.249481741032326,L, + 119314241500,41.422570146074911,L, + 121238664750,43.014840920858923,L, + 123163088000,44.965013608151089,L, + 125087511250,47.178141748299197,L, + 127011934500,49.529512917248162,L, + 128936357750,51.876727916087177,L, + 130860781000,54.077664168566834,L, + 132785204250,56.008172741238553,L, + 134709627500,57.574198514136832,L, + 136634050750,58.715502633876810,L, + 138558474000,59.402517211541557,L, + 140482897250,59.629757605227553,L, + 150105013500,59.629757605227553,L, + 152029436750,59.629764435416725,L, + 153953860000,59.629757605227553,L, + 192442325000,59.629757605227553,L, + 194366748250,59.629764435416725,L, + 196291171500,59.629757605227553,L, + 198215594750,59.629764435416725,L, + 200140018000,59.629757605227553,L, + 246326176000,59.629757605227553,L, + 248250599250,59.629764435416725,L, + 250175022500,59.629757605227553,L, + 259797138750,59.629757605227553,L, + 261721562000,59.629750775038382,L, + 263645985250,59.629757605227553,L, + 282890217750,59.629757605227553,L, + 284814641000,59.707922290089066,L, + 286739064250,59.944035099506898,L, + 288663487500,60.339339127909987,L, + 290587910750,60.893178677138017,L, + 292512334000,61.602562124334519,L, + 294436757250,62.461656487948318,L, + 296361180500,63.461418597518332,L, + 298285603750,64.589164791755863,L, + 300210027000,65.828495786463719,L, + 302134450250,67.159337655671280,L, + 304058873500,68.558262850525438,L, + 305983296750,69.999186878585931,L, + 307907720000,71.454331360498372,L, + 309832143250,72.895269048937223,L, + 311756566500,74.294187413602202,L, + 313680989750,75.625036112998927,L, + 315605413000,76.864360277517619,L, + 317529836250,77.992113301944315,L, + 319454259500,78.991861751135986,L, + 321378682750,79.850969775128135,L, + 323303106000,80.560353222324636,L, + 325227529250,81.114179111174323,L, + 327151952500,81.509483139577412,L, + 329076375750,81.745602779184409,L, + 331000799000,81.823767464045929,L, + 344471761750,81.823767464045929,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.591715931892395 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.591715931892395,L, + 1924423250,0.593357324600220,L, + 3848846500,0.598319113254547,L, + 5773269750,0.606611430644989,L, + 7697693000,0.618165016174316,L, + 9622116250,0.632809281349182,L, + 11546539500,0.650252997875214,L, + 13470962750,0.670070528984070,L, + 15395386000,0.691704154014587,L, + 17319809250,0.714480161666870,L, + 19244232500,0.737646281719208,L, + 21168655750,0.760422289371490,L, + 23093079000,0.782055854797363,L, + 25017502250,0.801873385906219,L, + 26941925500,0.819316983222961,L, + 28866348750,0.833961308002472,L, + 30790772000,0.845515131950378,L, + 32715195250,0.853807389736176,L, + 34639618500,0.858769178390503,L, + 36564041750,0.860410511493683,L, + 38488465000,0.859652578830719,L, + 40412888250,0.857360005378723,L, + 42337311500,0.853519797325134,L, + 44261734750,0.848143517971039,L, + 46186158000,0.841273784637451,L, + 48110581250,0.832990884780884,L, + 50035004500,0.823418200016022,L, + 51959427750,0.812725484371185,L, + 53883851000,0.801128268241882,L, + 55808274250,0.788883030414581,L, + 57732697500,0.776278018951416,L, + 59657120750,0.763618707656860,L, + 61581544000,0.751211762428284,L, + 63505967250,0.739348471164703,L, + 65430390500,0.728291034698486,L, + 67354813750,0.718262076377869,L, + 69279237000,0.709438860416412,L, + 71203660250,0.701953589916229,L, + 73128083500,0.695894896984100,L, + 75052506750,0.691313683986664,L, + 76976930000,0.688229262828827,L, + 78901353250,0.686635613441467,L, + 80825776500,0.685843944549561,L, + 82750199750,0.685181915760040,L, + 84674623000,0.684649169445038,L, + 86599046250,0.684242486953735,L, + 88523469500,0.683954119682312,L, + 90447892750,0.683770477771759,L, + 92372316000,0.683672428131104,L, + 94296739250,0.683635354042053,L, + 96221162500,0.683629989624023,L, + 98145585750,0.683624565601349,L, + 100070009000,0.683587610721588,L, + 101994432250,0.683489561080933,L, + 103918855500,0.683305799961090,L, + 105843278750,0.683017373085022,L, + 107767702000,0.682610809803009,L, + 109692125250,0.682078123092651,L, + 111616548500,0.681415975093842,L, + 113540971750,0.680624485015869,L, + 115465395000,0.679479658603668,L, + 117389818250,0.677726149559021,L, + 119314241500,0.675328254699707,L, + 121238664750,0.672270417213440,L, + 123163088000,0.668566107749939,L, + 125087511250,0.664267420768738,L, + 127011934500,0.659467458724976,L, + 128936357750,0.654294431209564,L, + 130860781000,0.648896217346191,L, + 132785204250,0.643420815467834,L, + 134709627500,0.637999475002289,L, + 136634050750,0.632736384868622,L, + 138558474000,0.627705812454224,L, + 140482897250,0.622954726219177,L, + 142407320500,0.617973029613495,L, + 144331743750,0.612256169319153,L, + 146256167000,0.605882942676544,L, + 148180590250,0.598998367786407,L, + 150105013500,0.591822206974030,L, + 152029436750,0.584643363952637,L, + 153953860000,0.577791452407837,L, + 155878283250,0.571591496467590,L, + 157802706500,0.566314458847046,L, + 159727129750,0.562146842479706,L, + 161651553000,0.559182584285736,L, + 163575976250,0.557437539100647,L, + 165500399500,0.556871175765991,L, + 167424822750,0.557141363620758,L, + 169349246000,0.557957410812378,L, + 171273669250,0.559323668479919,L, + 173198092500,0.561236917972565,L, + 175122515750,0.563684940338135,L, + 177046939000,0.566644549369812,L, + 178971362250,0.570080280303955,L, + 180895785500,0.573943078517914,L, + 182820208750,0.578169584274292,L, + 184744632000,0.582683145999908,L, + 186669055250,0.587395250797272,L, + 188593478500,0.592208981513977,L, + 190517901750,0.597022652626038,L, + 192442325000,0.601734876632690,L, + 194366748250,0.606248319149017,L, + 196291171500,0.610474824905396,L, + 198215594750,0.614337623119354,L, + 200140018000,0.617773473262787,L, + 202064441250,0.620733022689819,L, + 203988864500,0.623181045055389,L, + 205913287750,0.625094175338745,L, + 207837711000,0.626460373401642,L, + 209762134250,0.627276539802551,L, + 211686557500,0.627546727657318,L, + 213610980750,0.626874744892120,L, + 215535404000,0.624843537807465,L, + 217459827250,0.621445775032043,L, + 219384250500,0.616699218750000,L, + 221308673750,0.610653579235077,L, + 223233097000,0.603396534919739,L, + 225157520250,0.595059454441071,L, + 227081943500,0.585819303989410,L, + 229006366750,0.575896263122559,L, + 230930790000,0.565547168254852,L, + 232855213250,0.555053114891052,L, + 234779636500,0.544703960418701,L, + 236704059750,0.534781038761139,L, + 238628483000,0.525540888309479,L, + 240552906250,0.517203807830811,L, + 242477329500,0.509946882724762,L, + 244401752750,0.503901064395905,L, + 246326176000,0.499154537916183,L, + 248250599250,0.495756775140762,L, + 250175022500,0.493725627660751,L, + 252099445750,0.493053555488586,L, + 254023869000,0.493055433034897,L, + 255948292250,0.493070006370544,L, + 257872715500,0.493113011121750,L, + 259797138750,0.493203878402710,L, + 261721562000,0.493365377187729,L, + 263645985250,0.493622720241547,L, + 265570408500,0.494001686573029,L, + 267494831750,0.494525939226151,L, + 269419255000,0.495214700698853,L, + 271343678250,0.496080487966537,L, + 273268101500,0.497127979993820,L, + 275192524750,0.498354583978653,L, + 277116948000,0.499751716852188,L, + 279041371250,0.501307129859924,L, + 280965794500,0.503005743026733,L, + 282890217750,0.504832506179810,L, + 284814641000,0.506922185420990,L, + 286739064250,0.509420812129974,L, + 288663487500,0.512325823307037,L, + 290587910750,0.515629112720490,L, + 292512334000,0.519315183162689,L, + 294436757250,0.523360133171082,L, + 296361180500,0.527730762958527,L, + 298285603750,0.532384276390076,L, + 300210027000,0.537266612052917,L, + 302134450250,0.542314827442169,L, + 304058873500,0.547457098960876,L, + 305983296750,0.552615761756897,L, + 307907720000,0.557709634304047,L, + 309832143250,0.562657773494720,L, + 311756566500,0.567382454872131,L, + 313680989750,0.571812987327576,L, + 315605413000,0.575887143611908,L, + 317529836250,0.579553723335266,L, + 319454259500,0.582772552967072,L, + 321378682750,0.585514783859253,L, + 323303106000,0.587761759757996,L, + 325227529250,0.589504003524780,L, + 327151952500,0.590739786624908,L, + 329076375750,0.591473937034607,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.591715931892395 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.591715931892395,L, + 1924423250,0.593344092369080,L, + 3848846500,0.598265767097473,L, + 5773269750,0.606491029262543,L, + 7697693000,0.617951333522797,L, + 9622116250,0.632477402687073,L, + 11546539500,0.649780035018921,L, + 13470962750,0.669437706470490,L, + 15395386000,0.690896451473236,L, + 17319809250,0.713488519191742,L, + 19244232500,0.736467480659485,L, + 21168655750,0.759059488773346,L, + 23093079000,0.780518174171448,L, + 25017502250,0.800175905227661,L, + 26941925500,0.817478358745575,L, + 28866348750,0.832004606723785,L, + 30790772000,0.843464851379395,L, + 32715195250,0.851690113544464,L, + 34639618500,0.856611788272858,L, + 36564041750,0.858239948749542,L, + 38488465000,0.857487201690674,L, + 40412888250,0.855210900306702,L, + 42337311500,0.851398229598999,L, + 44261734750,0.846060633659363,L, + 46186158000,0.839241147041321,L, + 48110581250,0.831019818782806,L, + 50035004500,0.821519255638123,L, + 51959427750,0.810908794403076,L, + 53883851000,0.799402832984924,L, + 55808274250,0.787256479263306,L, + 57732697500,0.774756193161011,L, + 59657120750,0.762205660343170,L, + 61581544000,0.749909698963165,L, + 63505967250,0.738157927989960,L, + 65430390500,0.727210402488708,L, + 67354813750,0.717288255691528,L, + 69279237000,0.708567500114441,L, + 71203660250,0.701179146766663,L, + 73128083500,0.695210874080658,L, + 75052506750,0.690713226795197,L, + 76976930000,0.687704980373383,L, + 78901353250,0.686179995536804,L, + 80825776500,0.685448527336121,L, + 82750199750,0.684836566448212,L, + 84674623000,0.684344172477722,L, + 86599046250,0.683968245983124,L, + 88523469500,0.683701753616333,L, + 90447892750,0.683531939983368,L, + 92372316000,0.683441400527954,L, + 94296739250,0.683407127857208,L, + 96221162500,0.683402240276337,L, + 98145585750,0.683397293090820,L, + 100070009000,0.683363020420074,L, + 101994432250,0.683272421360016,L, + 103918855500,0.683102667331696,L, + 105843278750,0.682836234569550,L, + 107767702000,0.682460308074951,L, + 109692125250,0.681967973709106,L, + 111616548500,0.681355953216553,L, + 113540971750,0.680624425411224,L, + 115465395000,0.679548859596252,L, + 117389818250,0.677873134613037,L, + 119314241500,0.675560891628265,L, + 121238664750,0.672594547271729,L, + 123163088000,0.668985664844513,L, + 125087511250,0.664782881736755,L, + 127011934500,0.660076081752777,L, + 128936357750,0.654989480972290,L, + 130860781000,0.649667263031006,L, + 132785204250,0.644255399703979,L, + 134709627500,0.638883173465729,L, + 136634050750,0.633654236793518,L, + 138558474000,0.628642320632935,L, + 140482897250,0.623895585536957,L, + 142407320500,0.618899226188660,L, + 144331743750,0.613143444061279,L, + 146256167000,0.606707513332367,L, + 148180590250,0.599738419055939,L, + 150105013500,0.592460095882416,L, + 152029436750,0.585167646408081,L, + 153953860000,0.578198254108429,L, + 155878283250,0.571885168552399,L, + 157802706500,0.566507101058960,L, + 159727129750,0.562256574630737,L, + 161651553000,0.559231579303741,L, + 163575976250,0.557449817657471,L, + 165500399500,0.556871175765991,L, + 167424822750,0.557139098644257,L, + 169349246000,0.557948350906372,L, + 171273669250,0.559303164482117,L, + 173198092500,0.561200320720673,L, + 175122515750,0.563627719879150,L, + 177046939000,0.566562473773956,L, + 178971362250,0.569969534873962,L, + 180895785500,0.573799848556519,L, + 182820208750,0.577990889549255,L, + 184744632000,0.582466602325439,L, + 186669055250,0.587139129638672,L, + 188593478500,0.591912448406219,L, + 190517901750,0.596685826778412,L, + 192442325000,0.601358413696289,L, + 194366748250,0.605834126472473,L, + 196291171500,0.610025048255920,L, + 198215594750,0.613855421543121,L, + 200140018000,0.617262423038483,L, + 202064441250,0.620197176933289,L, + 203988864500,0.622624635696411,L, + 205913287750,0.624521732330322,L, + 207837711000,0.625876545906067,L, + 209762134250,0.626685857772827,L, + 211686557500,0.626953780651093,L, + 213610980750,0.626342177391052,L, + 215535404000,0.624493777751923,L, + 217459827250,0.621401667594910,L, + 219384250500,0.617082297801971,L, + 221308673750,0.611580669879913,L, + 223233097000,0.604976594448090,L, + 225157520250,0.597389817237854,L, + 227081943500,0.588981151580811,L, + 229006366750,0.579950928688049,L, + 230930790000,0.570533037185669,L, + 232855213250,0.560983300209045,L, + 234779636500,0.551565468311310,L, + 236704059750,0.542535364627838,L, + 238628483000,0.534126639366150,L, + 240552906250,0.526539802551270,L, + 242477329500,0.519935846328735,L, + 244401752750,0.514434099197388,L, + 246326176000,0.510114729404449,L, + 248250599250,0.507022738456726,L, + 250175022500,0.505174279212952,L, + 252099445750,0.504562675952911,L, + 254023869000,0.506176292896271,L, + 255948292250,0.511054813861847,L, + 257872715500,0.519185185432434,L, + 259797138750,0.530433237552643,L, + 261721562000,0.544508755207062,L, + 263645985250,0.560940802097321,L, + 265570408500,0.579074800014496,L, + 267494831750,0.598103761672974,L, + 269419255000,0.617132663726807,L, + 271343678250,0.635266721248627,L, + 273268101500,0.651698708534241,L, + 275192524750,0.665774345397949,L, + 277116948000,0.677022337913513,L, + 279041371250,0.685152590274811,L, + 280965794500,0.690031170845032,L, + 282890217750,0.691644787788391,L, + 284814641000,0.691292881965637,L, + 286739064250,0.690229833126068,L, + 288663487500,0.688449919223785,L, + 290587910750,0.685956239700317,L, + 292512334000,0.682762205600739,L, + 294436757250,0.678894102573395,L, + 296361180500,0.674392759799957,L, + 298285603750,0.669315040111542,L, + 300210027000,0.663734912872314,L, + 302134450250,0.657742857933044,L, + 304058873500,0.651444137096405,L, + 305983296750,0.644956290721893,L, + 307907720000,0.638404548168182,L, + 309832143250,0.631916642189026,L, + 311756566500,0.625617861747742,L, + 313680989750,0.619625866413116,L, + 315605413000,0.614045739173889,L, + 317529836250,0.608967959880829,L, + 319454259500,0.604466617107391,L, + 321378682750,0.600598454475403,L, + 323303106000,0.597404479980469,L, + 325227529250,0.594910919666290,L, + 327151952500,0.593130946159363,L, + 329076375750,0.592067956924438,L, + 331000799000,0.591715931892395,L, + 344471761750,0.591715931892395,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.749072313308716 + KeyVer: 4005 + KeyCount: 174 + Key: + 0,0.749072313308716,L, + 1924423250,0.748247385025024,L, + 3848846500,0.745753586292267,L, + 5773269750,0.741585910320282,L, + 7697693000,0.735779225826263,L, + 9622116250,0.728419065475464,L, + 11546539500,0.719652175903320,L, + 13470962750,0.709692001342773,L, + 15395386000,0.698819160461426,L, + 17319809250,0.687372267246246,L, + 19244232500,0.675729095935822,L, + 21168655750,0.664282143115997,L, + 23093079000,0.653409361839294,L, + 25017502250,0.643449187278748,L, + 26941925500,0.634682178497314,L, + 28866348750,0.627322077751160,L, + 30790772000,0.621515333652496,L, + 32715195250,0.617347717285156,L, + 34639618500,0.614853858947754,L, + 36564041750,0.614029109477997,L, + 38488465000,0.614427208900452,L, + 40412888250,0.615644693374634,L, + 42337311500,0.617711424827576,L, + 44261734750,0.620648682117462,L, + 46186158000,0.624465584754944,L, + 48110581250,0.629155874252319,L, + 50035004500,0.634694337844849,L, + 51959427750,0.641033411026001,L, + 53883851000,0.648102521896362,L, + 55808274250,0.655807554721832,L, + 57732697500,0.664034485816956,L, + 59657120750,0.672653555870056,L, + 61581544000,0.681526839733124,L, + 63505967250,0.690515041351318,L, + 65430390500,0.699485123157501,L, + 67354813750,0.708316326141357,L, + 69279237000,0.716904222965240,L, + 71203660250,0.725162625312805,L, + 73128083500,0.733023762702942,L, + 75052506750,0.740437448024750,L, + 76976930000,0.747368991374969,L, + 78901353250,0.753796935081482,L, + 80825776500,0.760236918926239,L, + 82750199750,0.767197191715240,L, + 84674623000,0.774639368057251,L, + 86599046250,0.782501161098480,L, + 88523469500,0.790693104267120,L, + 90447892750,0.799095451831818,L, + 92372316000,0.807559847831726,L, + 94296739250,0.815914690494537,L, + 96221162500,0.823974907398224,L, + 98145585750,0.831556200981140,L, + 100070009000,0.838489651679993,L, + 101994432250,0.844634771347046,L, + 103918855500,0.849887728691101,L, + 105843278750,0.854183316230774,L, + 107767702000,0.857492506504059,L, + 109692125250,0.859816789627075,L, + 111616548500,0.861180543899536,L, + 113540971750,0.861624360084534,L, + 115465395000,0.861622571945190,L, + 117389818250,0.861608862876892,L, + 119314241500,0.861567914485931,L, + 121238664750,0.861480593681335,L, + 123163088000,0.861324608325958,L, + 125087511250,0.861076176166534,L, + 127011934500,0.860712945461273,L, + 128936357750,0.860216856002808,L, + 130860781000,0.859576880931854,L, + 132785204250,0.858790159225464,L, + 134709627500,0.857861220836639,L, + 136634050750,0.856799781322479,L, + 138558474000,0.855619013309479,L, + 140482897250,0.854332983493805,L, + 142407320500,0.851194858551025,L, + 144331743750,0.844419121742249,L, + 146256167000,0.834095060825348,L, + 148180590250,0.820548593997955,L, + 150105013500,0.804402291774750,L, + 152029436750,0.786586582660675,L, + 153953860000,0.768268942832947,L, + 155878283250,0.750702917575836,L, + 157802706500,0.735041439533234,L, + 159727129750,0.722188353538513,L, + 161651553000,0.712734341621399,L, + 163575976250,0.706972360610962,L, + 165500399500,0.704961061477661,L, + 167424822750,0.704804599285126,L, + 169349246000,0.704655170440674,L, + 171273669250,0.704513251781464,L, + 173198092500,0.704379379749298,L, + 175122515750,0.704254150390625,L, + 177046939000,0.704138219356537,L, + 178971362250,0.704031825065613,L, + 180895785500,0.703935444355011,L, + 182820208750,0.703849315643311,L, + 184744632000,0.703773498535156,L, + 186669055250,0.703707754611969,L, + 188593478500,0.703651964664459,L, + 190517901750,0.703605353832245,L, + 192442325000,0.703567385673523,L, + 194366748250,0.703537166118622,L, + 196291171500,0.703513920307159,L, + 198215594750,0.703496456146240,L, + 200140018000,0.703484058380127,L, + 202064441250,0.703475475311279,L, + 203988864500,0.703470110893250,L, + 205913287750,0.703467071056366,L, + 207837711000,0.703465461730957,L, + 209762134250,0.703464984893799,L, + 211686557500,0.703464865684509,L, + 213610980750,0.704842209815979,L, + 215535404000,0.709004700183868,L, + 217459827250,0.715967833995819,L, + 219384250500,0.725694954395294,L, + 221308673750,0.738084554672241,L, + 223233097000,0.752956509590149,L, + 225157520250,0.770041763782501,L, + 227081943500,0.788977742195129,L, + 229006366750,0.809313297271729,L, + 230930790000,0.830522000789642,L, + 232855213250,0.852027535438538,L, + 234779636500,0.873236238956451,L, + 236704059750,0.893571674823761,L, + 238628483000,0.912507891654968,L, + 240552906250,0.929592967033386,L, + 242477329500,0.944464802742004,L, + 244401752750,0.956854581832886,L, + 246326176000,0.966581881046295,L, + 248250599250,0.973544955253601,L, + 250175022500,0.977707326412201,L, + 252099445750,0.979084610939026,L, + 254023869000,0.979084312915802,L, + 255948292250,0.979081809520721,L, + 257872715500,0.979074180126190,L, + 259797138750,0.979058384895325,L, + 261721562000,0.979030072689056,L, + 263645985250,0.978984832763672,L, + 265570408500,0.978918492794037,L, + 267494831750,0.978826582431793,L, + 269419255000,0.978705883026123,L, + 271343678250,0.978554129600525,L, + 273268101500,0.978370726108551,L, + 275192524750,0.978155732154846,L, + 277116948000,0.977910876274109,L, + 279041371250,0.977638363838196,L, + 280965794500,0.977340638637543,L, + 282890217750,0.977020621299744,L, + 284814641000,0.975905239582062,L, + 286739064250,0.973204314708710,L, + 288663487500,0.968906402587891,L, + 290587910750,0.963019073009491,L, + 292512334000,0.955573976039886,L, + 294436757250,0.946630895137787,L, + 296361180500,0.936282694339752,L, + 298285603750,0.924658060073853,L, + 300210027000,0.911923944950104,L, + 302134450250,0.898283600807190,L, + 304058873500,0.883974075317383,L, + 305983296750,0.869259238243103,L, + 307907720000,0.854419469833374,L, + 309832143250,0.839741408824921,L, + 311756566500,0.825505077838898,L, + 313680989750,0.811973035335541,L, + 315605413000,0.799380600452423,L, + 317529836250,0.787928879261017,L, + 319454259500,0.777782499790192,L, + 321378682750,0.769067704677582,L, + 323303106000,0.761874794960022,L, + 325227529250,0.756260991096497,L, + 327151952500,0.752255618572235,L, + 329076375750,0.749863862991333,L, + 331000799000,0.749072313308716,L, + 344471761750,0.749072313308716,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_021" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.011030614376068 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,0.011030614376068,L, + 34639618500,0.011030614376068,L, + 36564041750,0.011641800403595,L, + 38488465000,0.013489395380020,L, + 40412888250,0.016563773155212,L, + 42337311500,0.020800828933716,L, + 44261734750,0.026066899299622,L, + 46186158000,0.032149046659470,L, + 48110581250,0.038758635520935,L, + 50035004500,0.045550912618637,L, + 51959427750,0.052160441875458,L, + 53883851000,0.058242738246918,L, + 55808274250,0.063508749008179,L, + 57732697500,0.067745774984360,L, + 59657120750,0.070820122957230,L, + 61581544000,0.072667837142944,L, + 63505967250,0.073279023170471,L, + 65430390500,0.072955131530762,L, + 67354813750,0.071976959705353,L, + 69279237000,0.070339232683182,L, + 71203660250,0.068043649196625,L, + 73128083500,0.065100640058517,L, + 75052506750,0.061531633138657,L, + 76976930000,0.057369560003281,L, + 78901353250,0.052661299705505,L, + 80825776500,0.047468006610870,L, + 82750199750,0.041864782571793,L, + 84674623000,0.035940617322922,L, + 86599046250,0.029795467853546,L, + 88523469500,0.023537665605545,L, + 90447892750,0.017279714345932,L, + 92372316000,0.011134564876556,L, + 94296739250,0.005210369825363,L, + 96221162500,-0.000392705202103,L, + 98145585750,-0.005586117506027,L, + 100070009000,-0.010294318199158,L, + 101994432250,-0.014456301927567,L, + 103918855500,-0.018025457859039,L, + 105843278750,-0.020968317985535,L, + 107767702000,-0.023263931274414,L, + 109692125250,-0.024901717901230,L, + 111616548500,-0.025879830121994,L, + 113540971750,-0.026203721761703,L, + 115465395000,-0.025465607643127,L, + 117389818250,-0.023234784603119,L, + 119314241500,-0.019503146409988,L, + 121238664750,-0.014290094375610,L, + 123163088000,-0.007650136947632,L, + 125087511250,0.000320106744766,L, + 127011934500,0.009476542472839,L, + 128936357750,0.019624859094620,L, + 130860781000,0.030523240566254,L, + 132785204250,0.041889458894730,L, + 134709627500,0.053414940834045,L, + 136634050750,0.064781218767166,L, + 138558474000,0.075679481029510,L, + 140482897250,0.085827827453613,L, + 142407320500,0.094984203577042,L, + 144331743750,0.102954477071762,L, + 146256167000,0.109594464302063,L, + 148180590250,0.114807546138763,L, + 150105013500,0.118539184331894,L, + 152029436750,0.120770066976547,L, + 153953860000,0.121508121490479,L, + 155878283250,0.121178150177002,L, + 157802706500,0.120169997215271,L, + 159727129750,0.118463307619095,L, + 161651553000,0.116049051284790,L, + 163575976250,0.112935334444046,L, + 165500399500,0.109150707721710,L, + 167424822750,0.104748517274857,L, + 169349246000,0.099807828664780,L, + 171273669250,0.094432622194290,L, + 173198092500,0.088746726512909,L, + 175122515750,0.082886010408401,L, + 177046939000,0.076988130807877,L, + 178971362250,0.071183502674103,L, + 180895785500,0.065586984157562,L, + 182820208750,0.060293346643448,L, + 184744632000,0.055375248193741,L, + 186669055250,0.050884187221527,L, + 188593478500,0.046852856874466,L, + 190517901750,0.043298453092575,L, + 192442325000,0.039924323558807,L, + 194366748250,0.036440670490265,L, + 196291171500,0.032871872186661,L, + 198215594750,0.029251545667648,L, + 200140018000,0.025623649358749,L, + 202064441250,0.022042363882065,L, + 203988864500,0.018570035696030,L, + 205913287750,0.015273541212082,L, + 207837711000,0.012218594551086,L, + 209762134250,0.009463965892792,L, + 211686557500,0.007056027650833,L, + 213610980750,0.005025714635849,L, + 215535404000,0.003387898206711,L, + 217459827250,0.002142995595932,L, + 219384250500,0.001279979944229,L, + 221308673750,0.000779837369919,L, + 223233097000,0.000618904829025,L, + 225157520250,0.000987380743027,L, + 227081943500,0.002109408378601,L, + 229006366750,0.004002332687378,L, + 230930790000,0.006670892238617,L, + 232855213250,0.010102689266205,L, + 234779636500,0.014264374971390,L, + 236704059750,0.019097685813904,L, + 238628483000,0.024517893791199,L, + 240552906250,0.030414730310440,L, + 242477329500,0.036656320095062,L, + 244401752750,0.043095976114273,L, + 246326176000,0.049582213163376,L, + 248250599250,0.055967807769775,L, + 250175022500,0.062119036912918,L, + 252099445750,0.067921906709671,L, + 254023869000,0.073285251855850,L, + 255948292250,0.078141659498215,L, + 257872715500,0.082445085048676,L, + 259797138750,0.086168646812439,L, + 261721562000,0.089300930500031,L, + 263645985250,0.092061102390289,L, + 265570408500,0.094653129577637,L, + 267494831750,0.097050547599792,L, + 269419255000,0.099226474761963,L, + 271343678250,0.101156860589981,L, + 273268101500,0.102822989225388,L, + 275192524750,0.104215830564499,L, + 277116948000,0.105338633060455,L, + 279041371250,0.106207102537155,L, + 280965794500,0.106848090887070,L, + 282890217750,0.107295900583267,L, + 284814641000,0.107587486505508,L, + 286739064250,0.107758730649948,L, + 288663487500,0.107841938734055,L, + 290587910750,0.107864469289780,L, + 292512334000,0.107411742210388,L, + 294436757250,0.106044322252274,L, + 296361180500,0.103780388832092,L, + 298285603750,0.100696623325348,L, + 300210027000,0.096943229436874,L, + 302134450250,0.092747300863266,L, + 304058873500,0.088396161794662,L, + 305983296750,0.084200203418732,L, + 307907720000,0.080446779727936,L, + 309832143250,0.077362984418869,L, + 311756566500,0.075099110603333,L, + 313680989750,0.073731631040573,L, + 315605413000,0.073279023170471,L, + 344471761750,0.073279023170471,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.029604826122522 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,-0.029604826122522,L, + 34639618500,-0.029604826122522,L, + 36564041750,-0.029313970357180,L, + 38488465000,-0.028435204178095,L, + 40412888250,-0.026973079890013,L, + 42337311500,-0.024958241730928,L, + 44261734750,-0.022453397512436,L, + 46186158000,-0.019560799002647,L, + 48110581250,-0.016417510807514,L, + 50035004500,-0.013186916708946,L, + 51959427750,-0.010043628513813,L, + 53883851000,-0.007151030004025,L, + 55808274250,-0.004646182060242,L, + 57732697500,-0.002631828188896,L, + 59657120750,-0.001169227063656,L, + 61581544000,-0.000290460884571,L, + 63505967250,0.000000402331352,L, + 65430390500,-0.000331766903400,L, + 67354813750,-0.001333892345428,L, + 69279237000,-0.003011815249920,L, + 71203660250,-0.005363903939724,L, + 73128083500,-0.008378952741623,L, + 75052506750,-0.012035511434078,L, + 76976930000,-0.016300208866596,L, + 78901353250,-0.021124169230461,L, + 80825776500,-0.026444569230080,L, + 82750199750,-0.032185591757298,L, + 84674623000,-0.038255408406258,L, + 86599046250,-0.044551104307175,L, + 88523469500,-0.050962500274181,L, + 90447892750,-0.057374365627766,L, + 92372316000,-0.063670545816422,L, + 94296739250,-0.069740355014801,L, + 96221162500,-0.075480900704861,L, + 98145585750,-0.080801784992218,L, + 100070009000,-0.085625737905502,L, + 101994432250,-0.089889965951443,L, + 103918855500,-0.093546524643898,L, + 105843278750,-0.096561565995216,L, + 107767702000,-0.098913654685020,L, + 109692125250,-0.100591585040092,L, + 111616548500,-0.101593710482121,L, + 113540971750,-0.101925872266293,L, + 115465395000,-0.101464480161667,L, + 117389818250,-0.100069187581539,L, + 119314241500,-0.097731284797192,L, + 121238664750,-0.094460815191269,L, + 123163088000,-0.090286776423454,L, + 125087511250,-0.085265994071960,L, + 127011934500,-0.079483106732368,L, + 128936357750,-0.073054961860180,L, + 130860781000,-0.066127687692642,L, + 132785204250,-0.058872662484646,L, + 134709627500,-0.051479272544384,L, + 136634050750,-0.044141992926598,L, + 138558474000,-0.037053100764751,L, + 140482897250,-0.030386455357075,L, + 142407320500,-0.024293981492519,L, + 144331743750,-0.018898390233517,L, + 146256167000,-0.014291144907475,L, + 148180590250,-0.010534904897213,L, + 150105013500,-0.007666908204556,L, + 152029436750,-0.005701638758183,L, + 153953860000,-0.004637636244297,L, + 155878283250,-0.004036054015160,L, + 157802706500,-0.003469243645668,L, + 159727129750,-0.002940259873867,L, + 161651553000,-0.002453327178955,L, + 163575976250,-0.002011358737946,L, + 165500399500,-0.001617170870304,L, + 167424822750,-0.001272194087505,L, + 169349246000,-0.000977300107479,L, + 171273669250,-0.000732466578484,L, + 173198092500,-0.000534541904926,L, + 175122515750,-0.000379629433155,L, + 177046939000,-0.000264152884483,L, + 178971362250,-0.000180810689926,L, + 180895785500,-0.000124312937260,L, + 182820208750,-0.000088594853878,L, + 184744632000,-0.000068455934525,L, + 186669055250,-0.000058703124523,L, + 188593478500,-0.000055074691772,L, + 190517901750,-0.000054873526096,L, + 192442325000,-0.000303246080875,L, + 194366748250,-0.001054868102074,L, + 196291171500,-0.002307869493961,L, + 198215594750,-0.004046492278576,L, + 200140018000,-0.006234463304281,L, + 202064441250,-0.008809652179480,L, + 203988864500,-0.011686094105244,L, + 205913287750,-0.014753837138414,L, + 207837711000,-0.017888102680445,L, + 209762134250,-0.020956054329872,L, + 211686557500,-0.023832306265831,L, + 213610980750,-0.026407625526190,L, + 215535404000,-0.028595175594091,L, + 217459827250,-0.030334174633026,L, + 219384250500,-0.031587570905685,L, + 221308673750,-0.032338753342628,L, + 223233097000,-0.032587274909019,L, + 225157520250,-0.032586481422186,L, + 227081943500,-0.032583177089691,L, + 229006366750,-0.032572302967310,L, + 230930790000,-0.032550320029259,L, + 232855213250,-0.032511573284864,L, + 234779636500,-0.032449468970299,L, + 236704059750,-0.032358705997467,L, + 238628483000,-0.032232090830803,L, + 240552906250,-0.032063104212284,L, + 242477329500,-0.031845636665821,L, + 244401752750,-0.031575299799442,L, + 246326176000,-0.031248241662979,L, + 248250599250,-0.030862405896187,L, + 250175022500,-0.030418634414673,L, + 252099445750,-0.029917530715466,L, + 254023869000,-0.029360957443714,L, + 255948292250,-0.028752140700817,L, + 257872715500,-0.028095796704292,L, + 259797138750,-0.027395308017731,L, + 261721562000,-0.026654422283173,L, + 263645985250,-0.025344684720039,L, + 265570408500,-0.022926531732082,L, + 267494831750,-0.019416064023972,L, + 269419255000,-0.014880418777466,L, + 271343678250,-0.009450495243073,L, + 273268101500,-0.003330260515213,L, + 275192524750,0.003208868205547,L, + 277116948000,0.009846039116383,L, + 279041371250,0.016244925558567,L, + 280965794500,0.022090554237366,L, + 282890217750,0.027123078703880,L, + 284814641000,0.031153693795204,L, + 286739064250,0.034067280590534,L, + 288663487500,0.035813651978970,L, + 290587910750,0.036389753222466,L, + 292512334000,0.035913668572903,L, + 294436757250,0.034474998712540,L, + 296361180500,0.032092779874802,L, + 298285603750,0.028848402202129,L, + 300210027000,0.024898923933506,L, + 302134450250,0.020484164357185,L, + 304058873500,0.015905506908894,L, + 305983296750,0.011491224169731,L, + 307907720000,0.007541745901108,L, + 309832143250,0.004296891391277,L, + 311756566500,0.001915156841278,L, + 313680989750,0.000476002693176,L, + 315605413000,0.000000402331352,L, + 344471761750,0.000000402331352,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.104662656784058 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,0.104662656784058,L, + 34639618500,0.104662656784058,L, + 36564041750,0.104861974716187,L, + 38488465000,0.105464339256287,L, + 40412888250,0.106466412544250,L, + 42337311500,0.107847690582275,L, + 44261734750,0.109564185142517,L, + 46186158000,0.111546754837036,L, + 48110581250,0.113701343536377,L, + 50035004500,0.115915417671204,L, + 51959427750,0.118070006370544,L, + 53883851000,0.120052456855774,L, + 55808274250,0.121769070625305,L, + 57732697500,0.123150348663330,L, + 59657120750,0.124152421951294,L, + 61581544000,0.124754667282104,L, + 63505967250,0.124953985214233,L, + 65430390500,0.124948263168335,L, + 67354813750,0.124930500984192,L, + 69279237000,0.124900460243225,L, + 71203660250,0.124857425689697,L, + 73128083500,0.124801039695740,L, + 75052506750,0.124730944633484,L, + 76976930000,0.124646782875061,L, + 78901353250,0.124548673629761,L, + 80825776500,0.124437212944031,L, + 82750199750,0.124312162399292,L, + 84674623000,0.124174356460571,L, + 86599046250,0.124025225639343,L, + 88523469500,0.123865485191345,L, + 90447892750,0.123696446418762,L, + 92372316000,0.123519778251648,L, + 94296739250,0.123337030410767,L, + 96221162500,0.123149871826172,L, + 98145585750,0.122959733009338,L, + 100070009000,0.122768282890320,L, + 101994432250,0.122576713562012,L, + 103918855500,0.122386097908020,L, + 105843278750,0.122197628021240,L, + 107767702000,0.122012376785278,L, + 109692125250,0.121830582618713,L, + 111616548500,0.121653199195862,L, + 113540971750,0.121480345726013,L, + 115465395000,0.121299386024475,L, + 117389818250,0.121097087860107,L, + 119314241500,0.120874285697937,L, + 121238664750,0.120631933212280,L, + 123163088000,0.120372176170349,L, + 125087511250,0.120097160339355,L, + 127011934500,0.119810581207275,L, + 128936357750,0.119516849517822,L, + 130860781000,0.119220733642578,L, + 132785204250,0.118927359580994,L, + 134709627500,0.118642568588257,L, + 136634050750,0.118371844291687,L, + 138558474000,0.118120193481445,L, + 140482897250,0.117892146110535,L, + 142407320500,0.117691159248352,L, + 144331743750,0.117519617080688,L, + 146256167000,0.117379188537598,L, + 148180590250,0.117270708084106,L, + 150105013500,0.117193937301636,L, + 152029436750,0.117148637771606,L, + 153953860000,0.117133736610413,L, + 155878283250,0.117528080940247,L, + 157802706500,0.118720293045044,L, + 159727129750,0.120712757110596,L, + 161651553000,0.123488783836365,L, + 163575976250,0.127007484436035,L, + 165500399500,0.131198525428772,L, + 167424822750,0.135960459709167,L, + 169349246000,0.141158223152161,L, + 171273669250,0.146630644798279,L, + 173198092500,0.152197241783142,L, + 175122515750,0.157669663429260,L, + 177046939000,0.162867426872253,L, + 178971362250,0.167629361152649,L, + 180895785500,0.171820521354675,L, + 182820208750,0.175339102745056,L, + 184744632000,0.178115248680115,L, + 186669055250,0.180107712745667,L, + 188593478500,0.181299805641174,L, + 190517901750,0.181694149971008,L, + 192442325000,0.180961966514587,L, + 194366748250,0.178748726844788,L, + 196291171500,0.175055623054504,L, + 198215594750,0.169931292533875,L, + 200140018000,0.163484454154968,L, + 202064441250,0.155895829200745,L, + 203988864500,0.147420048713684,L, + 205913287750,0.138379693031311,L, + 207837711000,0.129145622253418,L, + 209762134250,0.120105266571045,L, + 211686557500,0.111629486083984,L, + 213610980750,0.104040741920471,L, + 215535404000,0.097594022750854,L, + 217459827250,0.092469573020935,L, + 219384250500,0.088776469230652,L, + 221308673750,0.086563229560852,L, + 223233097000,0.085831046104431,L, + 225157520250,0.085921883583069,L, + 227081943500,0.086199164390564,L, + 229006366750,0.086668729782104,L, + 230930790000,0.087333917617798,L, + 232855213250,0.088193893432617,L, + 234779636500,0.089242935180664,L, + 236704059750,0.090469598770142,L, + 238628483000,0.091856241226196,L, + 240552906250,0.093378067016602,L, + 242477329500,0.095005750656128,L, + 244401752750,0.096704959869385,L, + 246326176000,0.098440051078796,L, + 248250599250,0.100175857543945,L, + 250175022500,0.101879358291626,L, + 252099445750,0.103522419929504,L, + 254023869000,0.105080962181091,L, + 255948292250,0.106537699699402,L, + 257872715500,0.107879281044006,L, + 259797138750,0.109097838401794,L, + 261721562000,0.110188484191895,L, + 263645985250,0.111123442649841,L, + 265570408500,0.111880898475647,L, + 267494831750,0.112472772598267,L, + 269419255000,0.112922310829163,L, + 271343678250,0.113265037536621,L, + 273268101500,0.113550662994385,L, + 275192524750,0.113839149475098,L, + 277116948000,0.114197611808777,L, + 279041371250,0.114691376686096,L, + 280965794500,0.115378260612488,L, + 282890217750,0.116301774978638,L, + 284814641000,0.117488980293274,L, + 286739064250,0.118952631950378,L, + 288663487500,0.120692133903503,L, + 290587910750,0.122699260711670,L, + 292512334000,0.125839233398438,L, + 294436757250,0.130990862846375,L, + 296361180500,0.138085007667542,L, + 298285603750,0.146914124488831,L, + 300210027000,0.157101511955261,L, + 302134450250,0.168098330497742,L, + 304058873500,0.179226756095886,L, + 305983296750,0.189769148826599,L, + 307907720000,0.199074625968933,L, + 309832143250,0.206642270088196,L, + 311756566500,0.212153315544128,L, + 313680989750,0.215461373329163,L, + 315605413000,0.216550946235657,L, + 344471761750,0.216550946235657,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 38 + Key: + 0,0.000000000000000,L, + 223233097000,0.000000000000000,L, + 225157520250,0.002965836641184,L, + 227081943500,0.011930552057660,L, + 229006366750,0.026920536943119,L, + 230930790000,0.047836550533225,L, + 232855213250,0.074419313277545,L, + 234779636500,0.106217639154571,L, + 236704059750,0.142565778153318,L, + 238628483000,0.182577386496952,L, + 240552906250,0.225163802734905,L, + 242477329500,0.269080505035423,L, + 244401752750,0.312997180655513,L, + 246326176000,0.355583623573893,L, + 248250599250,0.395595165216461,L, + 250175022500,0.431943270864675,L, + 252099445750,0.463741616752020,L, + 254023869000,0.490324286114849,L, + 255948292250,0.511240459787513,L, + 257872715500,0.526230377138142,L, + 259797138750,0.535195160506330,L, + 261721562000,0.538160956709992,L, + 263645985250,0.532876898252496,L, + 265570408500,0.516903380300533,L, + 267494831750,0.490324392836554,L, + 269419255000,0.453693447987594,L, + 271343678250,0.408166555270675,L, + 273268101500,0.355583650254320,L, + 275192524750,0.298441300482297,L, + 277116948000,0.239719629547269,L, + 279041371250,0.182577399837165,L, + 280965794500,0.129994561521876,L, + 282890217750,0.084467568753358,L, + 284814641000,0.047836603894078,L, + 286739064250,0.021257521381079,L, + 288663487500,0.005284005513525,L, + 290587910750,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 38 + Key: + 0,-0.000000000000000,L, + 223233097000,-0.000000000000000,L, + 225157520250,0.002351647804951,L, + 227081943500,0.009459879535284,L, + 229006366750,0.021345623484255,L, + 230930790000,0.037930184900302,L, + 232855213250,0.059007971921106,L, + 234779636500,0.084221255056415,L, + 236704059750,0.113042165404061,L, + 238628483000,0.144767793789130,L, + 240552906250,0.178535101787287,L, + 242477329500,0.213357207104747,L, + 244401752750,0.248179219040714,L, + 246326176000,0.281946553719298,L, + 248250599250,0.313672222125007,L, + 250175022500,0.342493112462333,L, + 252099445750,0.367706435618282,L, + 254023869000,0.388784159273073,L, + 255948292250,0.405368819073192,L, + 257872715500,0.417254442126481,L, + 259797138750,0.424362721381324,L, + 261721562000,0.426714360848641,L, + 263645985250,0.422524680123079,L, + 265570408500,0.409859001441808,L, + 267494831750,0.388784265994778,L, + 269419255000,0.359739046631900,L, + 271343678250,0.323640162847112,L, + 273268101500,0.281946527038872,L, + 275192524750,0.236637800168996,L, + 277116948000,0.190076627380711,L, + 279041371250,0.144767847149982,L, + 280965794500,0.103074224681956,L, + 282890217750,0.066975367577594,L, + 284814641000,0.037930231591048,L, + 286739064250,0.016855414435213,L, + 288663487500,0.004189734086415,L, + 290587910750,-0.000000000000000,L, + 344471761750,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 25.435356384166017 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,25.435356384166017,L, + 36564041750,25.435356384166017,L, + 40412888250,25.435352969071431,L, + 42337311500,25.435352969071431,L, + 44261734750,25.435354676618722,L, + 46186158000,25.435352969071431,L, + 48110581250,25.435356384166017,L, + 50035004500,25.435352969071431,L, + 51959427750,25.435358091713308,L, + 53883851000,25.435352969071431,L, + 55808274250,25.435352969071431,L, + 57732697500,25.435354676618722,L, + 61581544000,25.435354676618722,L, + 63505967250,25.435358091713308,L, + 65430390500,25.435354676618722,L, + 67354813750,25.435352969071431,L, + 69279237000,25.435356384166017,L, + 71203660250,25.435352969071431,L, + 75052506750,25.435356384166017,L, + 76976930000,25.435352969071431,L, + 78901353250,25.435351261524140,L, + 80825776500,25.435352969071431,L, + 82750199750,25.435352969071431,L, + 84674623000,25.435356384166017,L, + 86599046250,25.435349553976845,L, + 88523469500,25.435352969071431,L, + 90447892750,25.435351261524140,L, + 92372316000,25.435352969071431,L, + 94296739250,25.435358091713308,L, + 96221162500,25.435359799260599,L, + 98145585750,25.435352969071431,L, + 100070009000,25.435358091713308,L, + 101994432250,25.435356384166017,L, + 103918855500,25.435358091713308,L, + 105843278750,25.435352969071431,L, + 107767702000,25.435354676618722,L, + 113540971750,25.435354676618722,L, + 115465395000,25.435352969071431,L, + 117389818250,25.435352969071431,L, + 119314241500,25.435359799260599,L, + 121238664750,25.435359799260599,L, + 123163088000,25.435356384166017,L, + 125087511250,25.435354676618722,L, + 127011934500,25.435358091713308,L, + 128936357750,25.435354676618722,L, + 130860781000,25.435358091713308,L, + 132785204250,25.435356384166017,L, + 134709627500,25.435356384166017,L, + 136634050750,25.435354676618722,L, + 138558474000,25.435354676618722,L, + 140482897250,25.435352969071431,L, + 142407320500,25.435359799260599,L, + 144331743750,25.435356384166017,L, + 146256167000,25.435356384166017,L, + 150105013500,25.435352969071431,L, + 152029436750,25.435354676618722,L, + 153953860000,25.435352969071431,L, + 159727129750,25.435352969071431,L, + 161651553000,25.435354676618722,L, + 163575976250,25.435352969071431,L, + 165500399500,25.435354676618722,L, + 169349246000,25.435354676618722,L, + 171273669250,25.435356384166017,L, + 173198092500,25.435352969071431,L, + 178971362250,25.435358091713308,L, + 180895785500,25.435352969071431,L, + 182820208750,25.435352969071431,L, + 184744632000,25.435354676618722,L, + 186669055250,25.435354676618722,L, + 188593478500,25.435358091713308,L, + 192442325000,25.435351261524140,L, + 194366748250,25.435354676618722,L, + 196291171500,25.435352969071431,L, + 198215594750,25.435358091713308,L, + 200140018000,25.435352969071431,L, + 202064441250,25.435354676618722,L, + 203988864500,25.435354676618722,L, + 205913287750,25.435358091713308,L, + 209762134250,25.435354676618722,L, + 211686557500,25.435354676618722,L, + 213610980750,25.435352969071431,L, + 215535404000,25.435356384166017,L, + 217459827250,25.435352969071431,L, + 221308673750,25.435356384166017,L, + 223233097000,25.435356384166017,L, + 225157520250,25.282546269412833,L, + 227081943500,24.819397971984102,L, + 229006366750,24.042329057660162,L, + 230930790000,22.953764243596357,L, + 232855213250,21.563945398453114,L, + 234779636500,19.892567372702128,L, + 236704059750,17.970084272305158,L, + 238628483000,15.838155128557338,L, + 240552906250,13.548958317849262,L, + 242477329500,11.163050297362176,L, + 244401752750,8.746015397280095,L, + 246326176000,6.364253301619200,L, + 248250599250,4.080702922920602,L, + 250175022500,1.951207460951419,L, + 252099445750,0.022048455952944,L, + 254023869000,-1.671163194957246,L, + 255948292250,-3.103361549631361,L, + 257872715500,-4.259060933377357,L, + 259797138750,-5.130838104506206,L, + 261721562000,-5.717734915543403,L, + 263645985250,-6.148261375722551,L, + 265570408500,-6.546274001018371,L, + 267494831750,-6.907652052927233,L, + 269419255000,-7.228518118434692,L, + 271343678250,-7.505718784578323,L, + 273268101500,-7.737396239903884,L, + 275192524750,-7.923551338185021,L, + 277116948000,-8.066369739956137,L, + 279041371250,-8.170145072884223,L, + 280965794500,-8.240808502489781,L, + 282890217750,-8.285149236807793,L, + 284814641000,-8.310029908406822,L, + 286739064250,-8.321749659248900,L, + 288663487500,-8.325694947268223,L, + 290587910750,-8.326215749192436,L, + 292512334000,-7.884349467443790,L, + 294436757250,-6.549473517757694,L, + 296361180500,-4.339479580664972,L, + 298285603750,-1.329169646799675,L, + 300210027000,2.334840830497090,L, + 302134450250,6.430833131874743,L, + 304058873500,10.678306649325190,L, + 305983296750,14.774295108721436,L, + 307907720000,18.438314230476369,L, + 309832143250,21.448619361864907,L, + 311756566500,23.658622690467737,L, + 313680989750,24.993497786380185,L, + 315605413000,25.435352969071431,L, + 344471761750,25.435352969071431,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.622548878192902 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,0.622548878192902,L, + 34639618500,0.622548878192902,L, + 36564041750,0.621571600437164,L, + 38488465000,0.618617177009583,L, + 40412888250,0.613701343536377,L, + 42337311500,0.606926262378693,L, + 44261734750,0.598505854606628,L, + 46186158000,0.588780462741852,L, + 48110581250,0.578211724758148,L, + 50035004500,0.567350804805756,L, + 51959427750,0.556782186031342,L, + 53883851000,0.547056794166565,L, + 55808274250,0.538636445999146,L, + 57732697500,0.531861364841461,L, + 59657120750,0.526945531368256,L, + 61581544000,0.523991107940674,L, + 63505967250,0.523013770580292,L, + 65430390500,0.523223757743835,L, + 67354813750,0.523866593837738,L, + 69279237000,0.524960398674011,L, + 71203660250,0.526521146297455,L, + 73128083500,0.528561413288116,L, + 75052506750,0.531089425086975,L, + 76976930000,0.534108102321625,L, + 78901353250,0.537613213062286,L, + 80825776500,0.541592836380005,L, + 82750199750,0.546026289463043,L, + 84674623000,0.550884127616882,L, + 86599046250,0.556127607822418,L, + 88523469500,0.561710298061371,L, + 90447892750,0.567579567432404,L, + 92372316000,0.573677599430084,L, + 94296739250,0.579945087432861,L, + 96221162500,0.586322188377380,L, + 98145585750,0.592751920223236,L, + 100070009000,0.599180877208710,L, + 101994432250,0.605561316013336,L, + 103918855500,0.611851572990417,L, + 105843278750,0.618016421794891,L, + 107767702000,0.624026715755463,L, + 109692125250,0.629859507083893,L, + 111616548500,0.635497152805328,L, + 113540971750,0.640926837921143,L, + 115465395000,0.646343648433685,L, + 117389818250,0.651950299739838,L, + 119314241500,0.657746553421021,L, + 121238664750,0.663728475570679,L, + 123163088000,0.669887423515320,L, + 125087511250,0.676208734512329,L, + 127011934500,0.682672023773193,L, + 128936357750,0.689249992370605,L, + 130860781000,0.695909500122070,L, + 132785204250,0.702612280845642,L, + 134709627500,0.709316968917847,L, + 136634050750,0.715981543064117,L, + 138558474000,0.722565293312073,L, + 140482897250,0.729031801223755,L, + 142407320500,0.735350370407104,L, + 144331743750,0.741496682167053,L, + 146256167000,0.747453153133392,L, + 148180590250,0.753208398818970,L, + 150105013500,0.758756875991821,L, + 152029436750,0.764097452163696,L, + 153953860000,0.769232511520386,L, + 155878283250,0.774366021156311,L, + 157802706500,0.779684960842133,L, + 159727129750,0.785161733627319,L, + 161651553000,0.790758073329926,L, + 163575976250,0.796423077583313,L, + 165500399500,0.802093744277954,L, + 167424822750,0.807695209980011,L, + 169349246000,0.813143610954285,L, + 171273669250,0.818350136280060,L, + 173198092500,0.823227465152740,L, + 175122515750,0.827696144580841,L, + 177046939000,0.831690371036530,L, + 178971362250,0.835161328315735,L, + 180895785500,0.838079392910004,L, + 182820208750,0.840432524681091,L, + 184744632000,0.842224776744843,L, + 186669055250,0.843471646308899,L, + 188593478500,0.844197571277618,L, + 190517901750,0.844432532787323,L, + 192442325000,0.842794179916382,L, + 194366748250,0.837840676307678,L, + 196291171500,0.829575538635254,L, + 198215594750,0.818107247352600,L, + 200140018000,0.803679883480072,L, + 202064441250,0.786696374416351,L, + 203988864500,0.767727553844452,L, + 205913287750,0.747495353221893,L, + 207837711000,0.726829588413239,L, + 209762134250,0.706597506999969,L, + 211686557500,0.687628686428070,L, + 213610980750,0.670645177364349,L, + 215535404000,0.656217753887177,L, + 217459827250,0.644749462604523,L, + 219384250500,0.636484265327454,L, + 221308673750,0.631530940532684,L, + 223233097000,0.629892468452454,L, + 225157520250,0.630257427692413,L, + 227081943500,0.631360471248627,L, + 229006366750,0.633204936981201,L, + 230930790000,0.635778546333313,L, + 232855213250,0.639049291610718,L, + 234779636500,0.642961978912354,L, + 236704059750,0.647434353828430,L, + 238628483000,0.652357637882233,L, + 240552906250,0.657597601413727,L, + 242477329500,0.663001298904419,L, + 244401752750,0.668404936790466,L, + 246326176000,0.673645019531250,L, + 248250599250,0.678568124771118,L, + 250175022500,0.683040618896484,L, + 252099445750,0.686953186988831,L, + 254023869000,0.690224051475525,L, + 255948292250,0.692797660827637,L, + 257872715500,0.694642126560211,L, + 259797138750,0.695745229721069,L, + 261721562000,0.696110129356384,L, + 263645985250,0.695350885391235,L, + 265570408500,0.693055927753448,L, + 267494831750,0.689237177371979,L, + 269419255000,0.683974325656891,L, + 271343678250,0.677433431148529,L, + 273268101500,0.669878542423248,L, + 275192524750,0.661668777465820,L, + 277116948000,0.653232038021088,L, + 279041371250,0.645022213459015,L, + 280965794500,0.637467563152313,L, + 282890217750,0.630926549434662,L, + 284814641000,0.625663638114929,L, + 286739064250,0.621844887733459,L, + 288663487500,0.619549930095673,L, + 290587910750,0.618790745735168,L, + 292512334000,0.618999838829041,L, + 294436757250,0.619631469249725,L, + 296361180500,0.620677053928375,L, + 298285603750,0.622101426124573,L, + 300210027000,0.623835027217865,L, + 302134450250,0.625773072242737,L, + 304058873500,0.627782881259918,L, + 305983296750,0.629720807075500,L, + 307907720000,0.631454467773438,L, + 309832143250,0.632878780364990,L, + 311756566500,0.633924484252930,L, + 313680989750,0.634556114673615,L, + 315605413000,0.634765207767487,L, + 344471761750,0.634765207767487,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.622548878192902 + KeyVer: 4005 + KeyCount: 148 + Key: + 0,0.622548878192902,L, + 34639618500,0.622548878192902,L, + 36564041750,0.623327374458313,L, + 38488465000,0.625680983066559,L, + 40412888250,0.629597067832947,L, + 42337311500,0.634994208812714,L, + 44261734750,0.641702055931091,L, + 46186158000,0.649449527263641,L, + 48110581250,0.657868802547455,L, + 50035004500,0.666520833969116,L, + 51959427750,0.674940109252930,L, + 53883851000,0.682687580585480,L, + 55808274250,0.689395546913147,L, + 57732697500,0.694792747497559,L, + 59657120750,0.698708772659302,L, + 61581544000,0.701062381267548,L, + 63505967250,0.701840877532959,L, + 65430390500,0.701642572879791,L, + 67354813750,0.701043605804443,L, + 69279237000,0.700040876865387,L, + 71203660250,0.698635280132294,L, + 73128083500,0.696833193302155,L, + 75052506750,0.694647848606110,L, + 76976930000,0.692099452018738,L, + 78901353250,0.689216613769531,L, + 80825776500,0.686036527156830,L, + 82750199750,0.682605803012848,L, + 84674623000,0.678978323936462,L, + 86599046250,0.675215661525726,L, + 90447892750,0.667552173137665,L, + 92372316000,0.663789331912994,L, + 94296739250,0.660162031650543,L, + 96221162500,0.656731247901917,L, + 98145585750,0.653551220893860,L, + 100070009000,0.650668323040009,L, + 101994432250,0.648119866847992,L, + 103918855500,0.645934522151947,L, + 105843278750,0.644132614135742,L, + 107767702000,0.642726898193359,L, + 109692125250,0.641724050045013,L, + 111616548500,0.641125142574310,L, + 113540971750,0.640926957130432,L, + 115465395000,0.641364753246307,L, + 117389818250,0.642700850963593,L, + 119314241500,0.644962728023529,L, + 121238664750,0.648165702819824,L, + 123163088000,0.652308523654938,L, + 125087511250,0.657369434833527,L, + 127011934500,0.663301706314087,L, + 128936357750,0.670031070709229,L, + 130860781000,0.677454471588135,L, + 132785204250,0.685443103313446,L, + 134709627500,0.693847298622131,L, + 136634050750,0.702503979206085,L, + 138558474000,0.711248040199280,L, + 140482897250,0.719919979572296,L, + 142407320500,0.728375554084778,L, + 144331743750,0.736490786075592,L, + 146256167000,0.744165182113647,L, + 148180590250,0.751321732997894,L, + 150105013500,0.757905840873718,L, + 152029436750,0.763882458209991,L, + 153953860000,0.769232630729675,L, + 155878283250,0.774365961551666,L, + 157802706500,0.779684901237488,L, + 159727129750,0.785161793231964,L, + 161651553000,0.790758073329926,L, + 163575976250,0.796423017978668,L, + 165500399500,0.802093744277954,L, + 167424822750,0.807695209980011,L, + 169349246000,0.813143610954285,L, + 171273669250,0.818350076675415,L, + 173198092500,0.823227524757385,L, + 175122515750,0.827696204185486,L, + 177046939000,0.831690371036530,L, + 178971362250,0.835161328315735,L, + 180895785500,0.838079392910004,L, + 182820208750,0.840432584285736,L, + 184744632000,0.842224776744843,L, + 186669055250,0.843471646308899,L, + 188593478500,0.844197690486908,L, + 190517901750,0.844432473182678,L, + 192442325000,0.842648863792419,L, + 194366748250,0.837256193161011,L, + 196291171500,0.828258097171783,L, + 198215594750,0.815772950649261,L, + 200140018000,0.800066113471985,L, + 202064441250,0.781576573848724,L, + 203988864500,0.760925531387329,L, + 205913287750,0.738899469375610,L, + 207837711000,0.716400921344757,L, + 209762134250,0.694374799728394,L, + 211686557500,0.673723876476288,L, + 213610980750,0.655234277248383,L, + 215535404000,0.639527499675751,L, + 217459827250,0.627042233943939,L, + 219384250500,0.618044197559357,L, + 221308673750,0.612651526927948,L, + 223233097000,0.610867857933044,L, + 225157520250,0.611337602138519,L, + 227081943500,0.612757503986359,L, + 229006366750,0.615131974220276,L, + 230930790000,0.618444979190826,L, + 232855213250,0.622655570507050,L, + 234779636500,0.627692282199860,L, + 236704059750,0.633449614048004,L, + 238628483000,0.639787197113037,L, + 240552906250,0.646532714366913,L, + 242477329500,0.653488934040070,L, + 244401752750,0.660445094108582,L, + 246326176000,0.667190730571747,L, + 248250599250,0.673528313636780,L, + 250175022500,0.679285764694214,L, + 252099445750,0.684322535991669,L, + 254023869000,0.688533008098602,L, + 255948292250,0.691845953464508,L, + 257872715500,0.694220304489136,L, + 259797138750,0.695640265941620,L, + 261721562000,0.696110069751740,L, + 263645985250,0.695740282535553,L, + 265570408500,0.694585621356964,L, + 267494831750,0.692584276199341,L, + 269419255000,0.689690589904785,L, + 271343678250,0.685885846614838,L, + 273268101500,0.681189715862274,L, + 275192524750,0.675667703151703,L, + 277116948000,0.669431507587433,L, + 279041371250,0.662630975246429,L, + 280965794500,0.655436098575592,L, + 282890217750,0.648017883300781,L, + 284814641000,0.640531063079834,L, + 286739064250,0.633103489875793,L, + 288663487500,0.625833570957184,L, + 290587910750,0.618790805339813,L, + 292512334000,0.611131191253662,L, + 294436757250,0.602011919021606,L, + 296361180500,0.591558516025543,L, + 298285603750,0.580018162727356,L, + 300210027000,0.567779779434204,L, + 302134450250,0.555365383625031,L, + 304058873500,0.543382346630096,L, + 305983296750,0.532438516616821,L, + 307907720000,0.523053050041199,L, + 309832143250,0.515594303607941,L, + 311756566500,0.510262072086334,L, + 313680989750,0.507109403610229,L, + 315605413000,0.506082653999329,L, + 344471761750,0.506082653999329,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.682452797889709 + KeyVer: 4005 + KeyCount: 149 + Key: + 0,0.682452797889709,L, + 34639618500,0.682452797889709,L, + 36564041750,0.687106251716614,L, + 38488465000,0.701173424720764,L, + 40412888250,0.724580526351929,L, + 42337311500,0.756839931011200,L, + 44261734750,0.796933591365814,L, + 46186158000,0.843241214752197,L, + 48110581250,0.893564105033875,L, + 50035004500,0.945277929306030,L, + 51959427750,0.995600819587708,L, + 53883851000,1.041908383369446,L, + 55808274250,1.082001924514771,L, + 57732697500,1.114261388778687,L, + 59657120750,1.137668728828430,L, + 61581544000,1.151735782623291,L, + 63505967250,1.156389355659485,L, + 65430390500,1.155352473258972,L, + 67354813750,1.152211666107178,L, + 69279237000,1.146934628486633,L, + 71203660250,1.139508724212646,L, + 73128083500,1.129947423934937,L, + 75052506750,1.118295192718506,L, + 76976930000,1.104632854461670,L, + 78901353250,1.089082479476929,L, + 80825776500,1.071810603141785,L, + 82750199750,1.053028464317322,L, + 84674623000,1.032991051673889,L, + 86599046250,1.011990904808044,L, + 88523469500,0.990349531173706,L, + 90447892750,0.968406796455383,L, + 92372316000,0.946506798267365,L, + 94296739250,0.924985229969025,L, + 96221162500,0.904157042503357,L, + 98145585750,0.884305596351624,L, + 100070009000,0.865676999092102,L, + 101994432250,0.848475396633148,L, + 103918855500,0.832862257957458,L, + 105843278750,0.818958699703217,L, + 107767702000,0.806848466396332,L, + 109692125250,0.796582043170929,L, + 111616548500,0.788182795047760,L, + 113540971750,0.781650602817535,L, + 115465395000,0.776405513286591,L, + 117389818250,0.771885514259338,L, + 119314241500,0.768094241619110,L, + 121238664750,0.765022337436676,L, + 123163088000,0.762643337249756,L, + 125087511250,0.760910391807556,L, + 127011934500,0.759753525257111,L, + 128936357750,0.759078264236450,L, + 130860781000,0.758767247200012,L, + 132785204250,0.758683502674103,L, + 134709627500,0.758677065372467,L, + 136634050750,0.758593320846558,L, + 138558474000,0.758282244205475,L, + 140482897250,0.757606983184814,L, + 142407320500,0.756450116634369,L, + 144331743750,0.754717171192169,L, + 146256167000,0.752338171005249,L, + 148180590250,0.749266326427460,L, + 150105013500,0.745474994182587,L, + 152029436750,0.740954935550690,L, + 153953860000,0.735709905624390,L, + 155878283250,0.728996455669403,L, + 157802706500,0.720055401325226,L, + 159727129750,0.708911418914795,L, + 161651553000,0.695649325847626,L, + 163575976250,0.680429339408875,L, + 165500399500,0.663499176502228,L, + 167424822750,0.645200967788696,L, + 169349246000,0.625967860221863,L, + 171273669250,0.606308519840240,L, + 173198092500,0.586778163909912,L, + 175122515750,0.567939996719360,L, + 177046939000,0.550325572490692,L, + 178971362250,0.534398972988129,L, + 180895785500,0.520533025264740,L, + 182820208750,0.508999586105347,L, + 184744632000,0.499972105026245,L, + 186669055250,0.493536531925201,L, + 188593478500,0.489708155393600,L, + 190517901750,0.488447666168213,L, + 192442325000,0.492785811424255,L, + 194366748250,0.505901575088501,L, + 196291171500,0.527786076068878,L, + 198215594750,0.558151841163635,L, + 200140018000,0.596352875232697,L, + 202064441250,0.641321897506714,L, + 203988864500,0.691547751426697,L, + 205913287750,0.745118200778961,L, + 207837711000,0.799837648868561,L, + 209762134250,0.853408157825470,L, + 211686557500,0.903634011745453,L, + 213610980750,0.948603034019470,L, + 215535404000,0.986804068088531,L, + 217459827250,1.017169833183289,L, + 219384250500,1.039054393768311,L, + 221308673750,1.052170157432556,L, + 223233097000,1.056508302688599,L, + 225157520250,1.055786013603210,L, + 227081943500,1.053581476211548,L, + 229006366750,1.049851894378662,L, + 230930790000,1.044576883316040,L, + 232855213250,1.037767529487610,L, + 234779636500,1.029475569725037,L, + 236704059750,1.019798755645752,L, + 238628483000,1.008886933326721,L, + 240552906250,0.996940374374390,L, + 242477329500,0.984203100204468,L, + 244401752750,0.970950067043304,L, + 246326176000,0.957470059394836,L, + 248250599250,0.944046437740326,L, + 250175022500,0.930940330028534,L, + 252099445750,0.918377757072449,L, + 254023869000,0.906542658805847,L, + 255948292250,0.895574867725372,L, + 257872715500,0.885573089122772,L, + 259797138750,0.876599371433258,L, + 261721562000,0.868685841560364,L, + 263645985250,0.861448347568512,L, + 265570408500,0.854511380195618,L, + 267494831750,0.847899556159973,L, + 269419255000,0.841631948947906,L, + 271343678250,0.835717082023621,L, + 273268101500,0.830149233341217,L, + 275192524750,0.824905097484589,L, + 277116948000,0.819943606853485,L, + 279041371250,0.815208554267883,L, + 280965794500,0.810635507106781,L, + 282890217750,0.806159317493439,L, + 284814641000,0.801720499992371,L, + 286739064250,0.797269105911255,L, + 288663487500,0.792766988277435,L, + 290587910750,0.788186311721802,L, + 292512334000,0.783385336399078,L, + 294436757250,0.778266251087189,L, + 296361180500,0.772899806499481,L, + 298285603750,0.767396509647369,L, + 300210027000,0.761908233165741,L, + 302134450250,0.756621003150940,L, + 304058873500,0.751734077930450,L, + 305983296750,0.747431039810181,L, + 307907720000,0.743852496147156,L, + 309832143250,0.741081237792969,L, + 311756566500,0.739142775535583,L, + 313680989750,0.738017439842224,L, + 315605413000,0.737656235694885,L, + 344471761750,0.737656235694885,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_020" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.015258610248566 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.015258610248566,L, + 1924423250,0.015249818563461,L, + 3848846500,0.015223354101181,L, + 5773269750,0.015178948640823,L, + 7697693000,0.015116691589355,L, + 9622116250,0.015036344528198,L, + 11546539500,0.014938086271286,L, + 13470962750,0.014821738004684,L, + 15395386000,0.014687448740005,L, + 17319809250,0.014535367488861,L, + 19244232500,0.014365494251251,L, + 21168655750,0.014178186655045,L, + 23093079000,0.013973742723465,L, + 25017502250,0.013752311468124,L, + 26941925500,0.013514429330826,L, + 28866348750,0.013260483741760,L, + 30790772000,0.012991130352020,L, + 32715195250,0.012706816196442,L, + 34639618500,0.012408465147018,L, + 36564041750,0.012096643447876,L, + 38488465000,0.011772304773331,L, + 40412888250,0.011436372995377,L, + 42337311500,0.011089742183685,L, + 44261734750,0.010733604431152,L, + 46186158000,0.010369062423706,L, + 48110581250,0.009997218847275,L, + 50035004500,0.009619385004044,L, + 51959427750,0.009236901998520,L, + 53883851000,0.008850991725922,L, + 55808274250,0.008463054895401,L, + 57732697500,0.008074373006821,L, + 59657120750,0.007686436176300,L, + 61581544000,0.007300496101379,L, + 63505967250,0.006918013095856,L, + 65430390500,0.006540209054947,L, + 67354813750,0.006168365478516,L, + 69279237000,0.005803793668747,L, + 71203660250,0.005447685718536,L, + 73128083500,0.005101054906845,L, + 75052506750,0.004765123128891,L, + 76976930000,0.004440784454346,L, + 78901353250,0.004128932952881,L, + 80825776500,0.003830611705780,L, + 82750199750,0.003546327352524,L, + 84674623000,0.003276944160461,L, + 86599046250,0.003022998571396,L, + 88523469500,0.002785116434097,L, + 90447892750,0.002563714981079,L, + 92372316000,0.002359151840210,L, + 94296739250,0.002171903848648,L, + 96221162500,0.002002090215683,L, + 98145585750,0.001849949359894,L, + 100070009000,0.001715689897537,L, + 101994432250,0.001599341630936,L, + 103918855500,0.001501053571701,L, + 105843278750,0.001420736312866,L, + 107767702000,0.001358479261398,L, + 109692125250,0.001314133405685,L, + 111616548500,0.001287609338760,L, + 113540971750,0.001278787851334,L, + 115465395000,0.001350849866867,L, + 117389818250,0.001568406820297,L, + 119314241500,0.001932680606842,L, + 121238664750,0.002443939447403,L, + 123163088000,0.003101259469986,L, + 125087511250,0.003902047872543,L, + 127011934500,0.004842251539230,L, + 128936357750,0.005915641784668,L, + 130860781000,0.007114142179489,L, + 132785204250,0.008427381515503,L, + 134709627500,0.009842634201050,L, + 136634050750,0.011344999074936,L, + 138558474000,0.012917608022690,L, + 140482897250,0.014541745185852,L, + 142407320500,0.016197353601456,L, + 144331743750,0.017863541841507,L, + 146256167000,0.019519150257111,L, + 148180590250,0.021143257617950,L, + 150105013500,0.022715866565704,L, + 152029436750,0.024218261241913,L, + 153953860000,0.025633454322815,L, + 155878283250,0.026946693658829,L, + 157802706500,0.028145223855972,L, + 159727129750,0.029218703508377,L, + 161651553000,0.030158907175064,L, + 163575976250,0.030959725379944,L, + 165500399500,0.031616985797882,L, + 167424822750,0.032128274440765,L, + 169349246000,0.032492518424988,L, + 171273669250,0.032710015773773,L, + 173198092500,0.032782137393951,L, + 342547338500,0.032782137393951,L, + 344471761750,0.015258610248566,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.062223061919212 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,-0.062223061919212,L, + 1924423250,-0.062245301902294,L, + 3848846500,-0.062311530113220,L, + 5773269750,-0.062423642724752,L, + 7697693000,-0.062580198049545,L, + 9622116250,-0.062782131135464,L, + 11546539500,-0.063029453158379,L, + 13470962750,-0.063322633504868,L, + 15395386000,-0.063660249114037,L, + 17319809250,-0.064042791724205,L, + 19244232500,-0.064470276236534,L, + 21168655750,-0.064941786229610,L, + 23093079000,-0.065455913543701,L, + 25017502250,-0.066013187170029,L, + 26941925500,-0.066611751914024,L, + 28866348750,-0.067250698804855,L, + 30790772000,-0.067928686738014,L, + 32715195250,-0.068643867969513,L, + 34639618500,-0.069394439458847,L, + 36564041750,-0.070179067552090,L, + 38488465000,-0.070995464920998,L, + 40412888250,-0.071840897202492,L, + 42337311500,-0.072713106870651,L, + 44261734750,-0.073608890175819,L, + 46186158000,-0.074526011943817,L, + 48110581250,-0.075462237000465,L, + 50035004500,-0.076412945985794,L, + 51959427750,-0.077374979853630,L, + 53883851000,-0.078346118330956,L, + 55808274250,-0.079322710633278,L, + 57732697500,-0.080300174653530,L, + 59657120750,-0.081276774406433,L, + 61581544000,-0.082247436046600,L, + 63505967250,-0.083209939301014,L, + 65430390500,-0.084160655736923,L, + 67354813750,-0.085096396505833,L, + 69279237000,-0.086013995110989,L, + 71203660250,-0.086909778416157,L, + 73128083500,-0.087781988084316,L, + 75052506750,-0.088627420365810,L, + 76976930000,-0.089443340897560,L, + 78901353250,-0.090227961540222,L, + 80825776500,-0.090978540480137,L, + 82750199750,-0.091693729162216,L, + 84674623000,-0.092371709644794,L, + 86599046250,-0.093011140823364,L, + 88523469500,-0.093609698116779,L, + 90447892750,-0.094166494905949,L, + 92372316000,-0.094681575894356,L, + 94296739250,-0.095152132213116,L, + 96221162500,-0.095579624176025,L, + 98145585750,-0.095962643623352,L, + 100070009000,-0.096300259232521,L, + 101994432250,-0.096593439579010,L, + 103918855500,-0.096840277314186,L, + 105843278750,-0.097042694687843,L, + 107767702000,-0.097199246287346,L, + 109692125250,-0.097310878336430,L, + 111616548500,-0.097377113997936,L, + 113540971750,-0.097399830818176,L, + 115465395000,-0.097241654992104,L, + 117389818250,-0.096763990819454,L, + 119314241500,-0.095964133739471,L, + 121238664750,-0.094842128455639,L, + 123163088000,-0.093399263918400,L, + 125087511250,-0.091640934348106,L, + 127011934500,-0.089577540755272,L, + 128936357750,-0.087221153080463,L, + 130860781000,-0.084590211510658,L, + 132785204250,-0.081707164645195,L, + 134709627500,-0.078600823879242,L, + 136634050750,-0.075302578508854,L, + 138558474000,-0.071850687265396,L, + 140482897250,-0.068285062909126,L, + 142407320500,-0.064651206135750,L, + 144331743750,-0.060993485152721,L, + 146256167000,-0.057359144091606,L, + 148180590250,-0.053794004023075,L, + 150105013500,-0.050341628491879,L, + 152029436750,-0.047043859958649,L, + 153953860000,-0.043937049806118,L, + 155878283250,-0.041054479777813,L, + 157802706500,-0.038423538208008,L, + 159727129750,-0.036066666245461,L, + 161651553000,-0.034002803266048,L, + 163575976250,-0.032244950532913,L, + 165500399500,-0.030802078545094,L, + 167424822750,-0.029679596424103,L, + 169349246000,-0.028880223631859,L, + 171273669250,-0.028402544558048,L, + 173198092500,-0.028244383633137,L, + 342547338500,-0.028244383633137,L, + 344471761750,-0.062223061919212,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.003469109535217 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.003469109535217,L, + 1924423250,0.003725886344910,L, + 3848846500,0.004515767097473,L, + 5773269750,0.005865931510925,L, + 7697693000,0.007800340652466,L, + 9622116250,0.010337352752686,L, + 11546539500,0.013488888740540,L, + 13470962750,0.017256021499634,L, + 15395386000,0.021629810333252,L, + 17319809250,0.026586771011353,L, + 19244232500,0.032089710235596,L, + 21168655750,0.038087964057922,L, + 23093079000,0.044517636299133,L, + 25017502250,0.051306009292603,L, + 26941925500,0.058373570442200,L, + 28866348750,0.065639495849609,L, + 30790772000,0.073024392127991,L, + 32715195250,0.080454349517822,L, + 34639618500,0.087862968444824,L, + 36564041750,0.095192670822144,L, + 38488465000,0.102396368980408,L, + 40412888250,0.109435200691223,L, + 42337311500,0.116279721260071,L, + 44261734750,0.122907876968384,L, + 46186158000,0.129718899726868,L, + 48110581250,0.137122273445129,L, + 50035004500,0.145088076591492,L, + 51959427750,0.153535246849060,L, + 53883851000,0.162322163581848,L, + 55808274250,0.171250939369202,L, + 57732697500,0.180091738700867,L, + 59657120750,0.188621163368225,L, + 61581544000,0.196658253669739,L, + 63505967250,0.204084992408752,L, + 65430390500,0.210845112800598,L, + 67354813750,0.216932177543640,L, + 69279237000,0.222473740577698,L, + 71203660250,0.227625966072083,L, + 73128083500,0.232439398765564,L, + 75052506750,0.236955761909485,L, + 76976930000,0.241209864616394,L, + 78901353250,0.245230793952942,L, + 80825776500,0.249043583869934,L, + 82750199750,0.252670884132385,L, + 84674623000,0.256132245063782,L, + 86599046250,0.259445548057556,L, + 88523469500,0.262627482414246,L, + 90447892750,0.265694022178650,L, + 92372316000,0.268660664558411,L, + 94296739250,0.271543622016907,L, + 96221162500,0.274359345436096,L, + 98145585750,0.277126431465149,L, + 100070009000,0.279866576194763,L, + 101994432250,0.282606244087219,L, + 103918855500,0.285380959510803,L, + 105843278750,0.288242220878601,L, + 107767702000,0.291270613670349,L, + 109692125250,0.294619441032410,L, + 111616548500,0.298653483390808,L, + 113540971750,0.305199742317200,L, + 115465395000,0.316694378852844,L, + 117389818250,0.328217148780823,L, + 119314241500,0.339770197868347,L, + 121238664750,0.351354002952576,L, + 123163088000,0.362970471382141,L, + 125087511250,0.374620556831360,L, + 127011934500,0.386306405067444,L, + 128936357750,0.398029685020447,L, + 130860781000,0.409792065620422,L, + 132785204250,0.421595454216003,L, + 134709627500,0.433442711830139,L, + 136634050750,0.445335745811462,L, + 138558474000,0.457277894020081,L, + 140482897250,0.469271540641785,L, + 142407320500,0.481320500373840,L, + 144331743750,0.493427872657776,L, + 146256167000,0.505598187446594,L, + 148180590250,0.517835974693298,L, + 150105013500,0.530146241188049,L, + 152029436750,0.542534232139587,L, + 153953860000,0.555005192756653,L, + 155878283250,0.567565798759460,L, + 157802706500,0.580220341682434,L, + 159727129750,0.592971205711365,L, + 161651553000,0.605812668800354,L, + 163575976250,0.618718266487122,L, + 165500399500,0.631595492362976,L, + 167424822750,0.644122719764709,L, + 169349246000,0.654923319816589,L, + 171273669250,0.659229874610901,L, + 173198092500,0.007775783538818,L, + 342547338500,0.007775783538818,L, + 344471761750,0.003469109535217,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 4.999998573878807 + KeyVer: 4005 + KeyCount: 68 + Key: + 0,4.999998573878807,L, + 42337311500,4.999998573878807,L, + 44261734750,5.000001135199746,L, + 46186158000,5.000001988973392,L, + 48110581250,5.000000708312923,L, + 50035004500,5.000002415860215,L, + 51959427750,5.000001562086569,L, + 53883851000,5.000002415860215,L, + 55808274250,5.000001988973392,L, + 57732697500,4.999998573878807,L, + 59657120750,4.999998146991984,L, + 61581544000,4.999998573878807,L, + 63505967250,4.999997720105161,L, + 65430390500,5.000000281426099,L, + 67354813750,5.000001562086569,L, + 69279237000,5.000001562086569,L, + 71203660250,5.000003269633861,L, + 73128083500,5.000001988973392,L, + 75052506750,5.000003269633861,L, + 76976930000,5.000001135199746,L, + 78901353250,5.000001562086569,L, + 80825776500,5.000000281426099,L, + 82750199750,5.000002842747039,L, + 84674623000,5.000001135199746,L, + 86599046250,5.000003696520684,L, + 88523469500,5.000001562086569,L, + 92372316000,5.000002415860215,L, + 94296739250,5.000001988973392,L, + 96221162500,5.000001135199746,L, + 100070009000,5.000002842747039,L, + 101994432250,5.000001562086569,L, + 103918855500,5.000001135199746,L, + 105843278750,5.000001988973392,L, + 107767702000,5.000002415860215,L, + 109692125250,5.000001562086569,L, + 111616548500,5.000001988973392,L, + 113540971750,4.999997720105161,L, + 115465395000,4.999998573878807,L, + 117389818250,4.999999854539277,L, + 119314241500,4.999999854539277,L, + 121238664750,4.999996012557868,L, + 123163088000,4.999999854539277,L, + 125087511250,4.999997720105161,L, + 127011934500,4.999999000765630,L, + 128936357750,4.999997720105161,L, + 130860781000,4.999999000765630,L, + 132785204250,4.999999000765630,L, + 134709627500,4.999997720105161,L, + 136634050750,4.999999427652454,L, + 138558474000,4.999997293218338,L, + 140482897250,4.999999000765630,L, + 142407320500,4.999999000765630,L, + 146256167000,4.999999854539277,L, + 148180590250,5.000000708312923,L, + 150105013500,4.999998573878807,L, + 152029436750,4.999999854539277,L, + 153953860000,4.999999000765630,L, + 155878283250,4.999999000765630,L, + 157802706500,4.999996866331514,L, + 159727129750,4.999998573878807,L, + 161651553000,4.999997293218338,L, + 163575976250,5.000000281426099,L, + 165500399500,5.000000281426099,L, + 169349246000,4.999997720105161,L, + 171273669250,5.000001562086569,L, + 173198092500,5.000001135199746,L, + 342547338500,5.000001135199746,L, + 344471761750,4.999998573878807,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.691212713718414 + KeyVer: 4005 + KeyCount: 70 + Key: + 0,0.691212713718414,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603754043579,L, + 48110581250,0.700822055339813,L, + 50035004500,0.712724566459656,L, + 51959427750,0.728789329528809,L, + 53883851000,0.748026609420776,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789961040019989,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263261795044,L, + 63505967250,0.837165832519531,L, + 65430390500,0.844384014606476,L, + 67354813750,0.846775114536285,L, + 69279237000,0.846711695194244,L, + 71203660250,0.846496939659119,L, + 73128083500,0.846091032028198,L, + 75052506750,0.845448076725006,L, + 76976930000,0.844518005847931,L, + 78901353250,0.843246281147003,L, + 80825776500,0.841574728488922,L, + 82750199750,0.839443862438202,L, + 84674623000,0.836794734001160,L, + 86599046250,0.833571314811707,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006072521210,L, + 94296739250,0.814088940620422,L, + 96221162500,0.807457327842712,L, + 98145585750,0.800120651721954,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425211906433,L, + 103918855500,0.774133503437042,L, + 105843278750,0.764266669750214,L, + 107767702000,0.753869056701660,L, + 109692125250,0.742985129356384,L, + 111616548500,0.731659054756165,L, + 113540971750,0.719932675361633,L, + 115465395000,0.707502007484436,L, + 117389818250,0.694114685058594,L, + 119314241500,0.679874181747437,L, + 121238664750,0.664867818355560,L, + 123163088000,0.649168848991394,L, + 125087511250,0.632841408252716,L, + 127011934500,0.615940690040588,L, + 128936357750,0.598515510559082,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260448932648,L, + 134709627500,0.543504953384399,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900395870209,L, + 140482897250,0.485109925270081,L, + 142407320500,0.465030580759048,L, + 144331743750,0.444688647985458,L, + 146256167000,0.424110591411591,L, + 148180590250,0.403322815895081,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232250928879,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674534559250,L, + 157802706500,0.297324597835541,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796832799911,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288977742195,L, + 167424822750,0.193562686443329,L, + 169349246000,0.175549939274788,L, + 171273669250,0.163711965084076,L, + 173198092500,0.691212713718414,L, + 344471761750,0.691212713718414,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.691212773323059 + KeyVer: 4005 + KeyCount: 72 + Key: + 0,0.691212773323059,L, + 42337311500,0.691212773323059,L, + 44261734750,0.691212713718414,L, + 46186158000,0.693603813648224,L, + 48110581250,0.700822114944458,L, + 50035004500,0.712724447250366,L, + 51959427750,0.728789329528809,L, + 53883851000,0.748026728630066,L, + 55808274250,0.768993854522705,L, + 57732697500,0.789961040019989,L, + 59657120750,0.809198498725891,L, + 61581544000,0.825263381004333,L, + 63505967250,0.837165832519531,L, + 65430390500,0.844384014606476,L, + 67354813750,0.846775114536285,L, + 69279237000,0.846711695194244,L, + 71203660250,0.846496999263763,L, + 73128083500,0.846090972423553,L, + 75052506750,0.845448136329651,L, + 76976930000,0.844518065452576,L, + 78901353250,0.843246221542358,L, + 80825776500,0.841574788093567,L, + 82750199750,0.839443922042847,L, + 84674623000,0.836794734001160,L, + 86599046250,0.833571434020996,L, + 88523469500,0.829724252223969,L, + 90447892750,0.825212299823761,L, + 92372316000,0.820006132125854,L, + 94296739250,0.814088940620422,L, + 96221162500,0.807457447052002,L, + 98145585750,0.800120711326599,L, + 100070009000,0.792099893093109,L, + 101994432250,0.783425211906433,L, + 103918855500,0.774133503437042,L, + 105843278750,0.764266788959503,L, + 107767702000,0.753868997097015,L, + 109692125250,0.742985129356384,L, + 111616548500,0.731659054756165,L, + 113540971750,0.719932734966278,L, + 115465395000,0.707501947879791,L, + 117389818250,0.694114685058594,L, + 119314241500,0.679874181747437,L, + 121238664750,0.664867818355560,L, + 123163088000,0.649168908596039,L, + 125087511250,0.632841467857361,L, + 127011934500,0.615940690040588,L, + 128936357750,0.598515570163727,L, + 130860781000,0.580609083175659,L, + 132785204250,0.562260508537292,L, + 134709627500,0.543505012989044,L, + 136634050750,0.524374783039093,L, + 138558474000,0.504900336265564,L, + 140482897250,0.485109925270081,L, + 142407320500,0.465030580759048,L, + 144331743750,0.444688647985458,L, + 146256167000,0.424110591411591,L, + 148180590250,0.403322875499725,L, + 150105013500,0.382353454828262,L, + 152029436750,0.361232250928879,L, + 153953860000,0.339992880821228,L, + 155878283250,0.318674534559250,L, + 157802706500,0.297324597835541,L, + 159727129750,0.276004165410995,L, + 161651553000,0.254796832799911,L, + 163575976250,0.233825176954269,L, + 165500399500,0.213288977742195,L, + 167424822750,0.193562701344490,L, + 169349246000,0.175549924373627,L, + 171273669250,0.163711950182915,L, + 173198092500,0.691212713718414,L, + 342547338500,0.691212713718414,L, + 344471761750,0.691212773323059,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.468949735164642 + KeyVer: 4005 + KeyCount: 93 + Key: + 0,0.468949735164642,L, + 1924423250,0.469170928001404,L, + 3848846500,0.469839185476303,L, + 5773269750,0.470957756042480,L, + 7697693000,0.472522974014282,L, + 9622116250,0.474523246288300,L, + 11546539500,0.476936817169189,L, + 13470962750,0.479730665683746,L, + 15395386000,0.482859343290329,L, + 17319809250,0.486265003681183,L, + 19244232500,0.489878237247467,L, + 21168655750,0.493620127439499,L, + 23093079000,0.497405618429184,L, + 25017502250,0.501147568225861,L, + 26941925500,0.504760742187500,L, + 28866348750,0.508166372776031,L, + 30790772000,0.511295080184937,L, + 32715195250,0.514088928699493,L, + 34639618500,0.516502559185028,L, + 36564041750,0.518502831459045,L, + 38488465000,0.520068049430847,L, + 40412888250,0.521186590194702,L, + 42337311500,0.521854817867279,L, + 44261734750,0.522076010704041,L, + 46186158000,0.519478380680084,L, + 48110581250,0.511636435985565,L, + 50035004500,0.498705625534058,L, + 51959427750,0.481252938508987,L, + 53883851000,0.460353463888168,L, + 55808274250,0.437574833631516,L, + 57732697500,0.414796143770218,L, + 59657120750,0.393896669149399,L, + 61581544000,0.376443982124329,L, + 63505967250,0.363513171672821,L, + 65430390500,0.355671256780624,L, + 67354813750,0.353073537349701,L, + 69279237000,0.353420943021774,L, + 71203660250,0.354470431804657,L, + 73128083500,0.356227189302444,L, + 75052506750,0.358687251806259,L, + 76976930000,0.361834943294525,L, + 78901353250,0.365640580654144,L, + 80825776500,0.370058476924896,L, + 82750199750,0.375025421380997,L, + 84674623000,0.380460053682327,L, + 86599046250,0.386263698339462,L, + 88523469500,0.392322838306427,L, + 90447892750,0.398512512445450,L, + 92372316000,0.404702275991440,L, + 94296739250,0.410761356353760,L, + 96221162500,0.416565001010895,L, + 98145585750,0.421999663114548,L, + 100070009000,0.426966577768326,L, + 101994432250,0.431384503841400,L, + 103918855500,0.435190171003342,L, + 105843278750,0.438337832689285,L, + 107767702000,0.440797865390778,L, + 109692125250,0.442554652690887,L, + 111616548500,0.443604081869125,L, + 113540971750,0.443951517343521,L, + 115465395000,0.443126142024994,L, + 117389818250,0.440772950649261,L, + 119314241500,0.437052369117737,L, + 121238664750,0.432098716497421,L, + 123163088000,0.426025837659836,L, + 125087511250,0.418931424617767,L, + 127011934500,0.410899877548218,L, + 128936357750,0.402005106210709,L, + 130860781000,0.392312258481979,L, + 132785204250,0.381879150867462,L, + 134709627500,0.370757699012756,L, + 136634050750,0.358994781970978,L, + 138558474000,0.346633106470108,L, + 140482897250,0.333712041378021,L, + 142407320500,0.320268243551254,L, + 144331743750,0.306336075067520,L, + 146256167000,0.291948586702347,L, + 148180590250,0.277137786149979,L, + 150105013500,0.261935681104660,L, + 152029436750,0.246374815702438,L, + 153953860000,0.230489864945412,L, + 155878283250,0.214318782091141,L, + 157802706500,0.197905778884888,L, + 159727129750,0.181305050849915,L, + 161651553000,0.164588317275047,L, + 163575976250,0.147858664393425,L, + 165500399500,0.131281480193138,L, + 167424822750,0.115166492760181,L, + 169349246000,0.100264914333820,L, + 171273669250,0.090337857604027,L, + 173198092500,0.325813770294189,L, + 342547338500,0.325813770294189,L, + 344471761750,0.468949735164642,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_019" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.083612263202667 + KeyVer: 4005 + KeyCount: 168 + Key: + 0,-0.083612263202667,L, + 1924423250,-0.083425834774971,L, + 3848846500,-0.082893997430801,L, + 5773269750,-0.082052364945412,L, + 7697693000,-0.080930605530739,L, + 9622116250,-0.079553931951523,L, + 11546539500,-0.077943891286850,L, + 13470962750,-0.076119005680084,L, + 15395386000,-0.074095427989960,L, + 17319809250,-0.071887344121933,L, + 19244232500,-0.069507211446762,L, + 21168655750,-0.066966205835342,L, + 23093079000,-0.064274251461029,L, + 25017502250,-0.061440259218216,L, + 26941925500,-0.058472275733948,L, + 28866348750,-0.055377662181854,L, + 30790772000,-0.052163213491440,L, + 32715195250,-0.048835128545761,L, + 34639618500,-0.045399188995361,L, + 36564041750,-0.041860878467560,L, + 38488465000,-0.038225591182709,L, + 40412888250,-0.034498333930969,L, + 42337311500,-0.030684649944305,L, + 44261734750,-0.026789903640747,L, + 46186158000,-0.022820651531219,L, + 48110581250,-0.018784463405609,L, + 50035004500,-0.014692038297653,L, + 51959427750,-0.010559767484665,L, + 53883851000,-0.006418049335480,L, + 55808274250,-0.002341985702515,L, + 57732697500,0.001278787851334,L, + 59657120750,0.003661811351776,L, + 61581544000,0.006383031606674,L, + 63505967250,0.009332895278931,L, + 65430390500,0.012299180030823,L, + 67354813750,0.015240460634232,L, + 69279237000,0.018139839172363,L, + 71203660250,0.020988017320633,L, + 73128083500,0.023778647184372,L, + 75052506750,0.026506960391998,L, + 76976930000,0.029168695211411,L, + 78901353250,0.031759947538376,L, + 80825776500,0.034276813268661,L, + 82750199750,0.036715328693390,L, + 84674623000,0.039071232080460,L, + 86599046250,0.041340053081512,L, + 88523469500,0.043517023324966,L, + 90447892750,0.045596688985825,L, + 92372316000,0.047573208808899,L, + 94296739250,0.049440115690231,L, + 96221162500,0.051190137863159,L, + 98145585750,0.052814960479736,L, + 100070009000,0.054305553436279,L, + 101994432250,0.055651187896729,L, + 103918855500,0.056839972734451,L, + 105843278750,0.057857811450958,L, + 107767702000,0.058688521385193,L, + 109692125250,0.059313029050827,L, + 111616548500,0.059708505868912,L, + 113540971750,0.059847414493561,L, + 115465395000,0.059847384691238,L, + 117389818250,0.059846967458725,L, + 119314241500,0.059845715761185,L, + 121238664750,0.059843361377716,L, + 123163088000,0.059839308261871,L, + 125087511250,0.059833168983459,L, + 127011934500,0.059824287891388,L, + 128936357750,0.059812098741531,L, + 130860781000,0.059796124696732,L, + 132785204250,0.059775650501251,L, + 134709627500,0.059749901294708,L, + 136634050750,0.059718310832977,L, + 138558474000,0.059680074453354,L, + 140482897250,0.059634357690811,L, + 142407320500,0.059580445289612,L, + 144331743750,0.059517413377762,L, + 146256167000,0.059444576501846,L, + 148180590250,0.059360891580582,L, + 150105013500,0.059265702962875,L, + 152029436750,0.059158086776733,L, + 153953860000,0.059037208557129,L, + 155878283250,0.058902323246002,L, + 157802706500,0.058752596378326,L, + 159727129750,0.058587342500687,L, + 161651553000,0.058405876159668,L, + 163575976250,0.058207571506500,L, + 165500399500,0.057991832494736,L, + 167424822750,0.057758241891861,L, + 169349246000,0.057506322860718,L, + 171273669250,0.057235747575760,L, + 173198092500,0.056946218013763,L, + 175122515750,0.056637644767761,L, + 177046939000,0.056309878826141,L, + 178971362250,0.055962860584259,L, + 180895785500,0.055596739053726,L, + 182820208750,0.055211424827576,L, + 184744632000,0.054807305335999,L, + 186669055250,0.054384559392929,L, + 188593478500,0.053943395614624,L, + 190517901750,0.053484201431274,L, + 192442325000,0.053007453680038,L, + 194366748250,0.052513390779495,L, + 196291171500,0.052002549171448,L, + 198215594750,0.051475316286087,L, + 200140018000,0.050932288169861,L, + 202064441250,0.050373882055283,L, + 203988864500,0.049800574779510,L, + 205913287750,0.049212962388992,L, + 207837711000,0.048611432313919,L, + 209762134250,0.047996461391449,L, + 211686557500,0.047368764877319,L, + 213610980750,0.046728551387787,L, + 215535404000,0.046006470918655,L, + 217459827250,0.045132040977478,L, + 219384250500,0.044104993343353,L, + 221308673750,0.042926549911499,L, + 223233097000,0.041599214076996,L, + 225157520250,0.040127307176590,L, + 227081943500,0.038517236709595,L, + 229006366750,0.036777317523956,L, + 230930790000,0.034918546676636,L, + 232855213250,0.032954066991806,L, + 234779636500,0.030899614095688,L, + 236704059750,0.028773307800293,L, + 238628483000,0.026595264673233,L, + 240552906250,0.024387449026108,L, + 242477329500,0.022173106670380,L, + 244401752750,0.019975900650024,L, + 246326176000,0.017819821834564,L, + 248250599250,0.015727907419205,L, + 250175022500,0.013722121715546,L, + 252099445750,0.011822640895844,L, + 254023869000,0.010047256946564,L, + 255948292250,0.008411407470703,L, + 257872715500,0.006927907466888,L, + 259797138750,0.005606800317764,L, + 261721562000,0.004455804824829,L, + 263645985250,0.003479987382889,L, + 265570408500,0.002682536840439,L, + 267494831750,0.002064764499664,L, + 269419255000,0.001626104116440,L, + 271343678250,0.001365005970001,L, + 273268101500,0.001278787851334,L, + 298285603750,0.001278787851334,L, + 300210027000,0.000954270362854,L, + 302134450250,-0.000026047229767,L, + 304058873500,-0.001667112112045,L, + 305983296750,-0.003965109586716,L, + 307907720000,-0.006905436515808,L, + 309832143250,-0.010460376739502,L, + 311756566500,-0.014587163925171,L, + 313680989750,-0.019226908683777,L, + 315605413000,-0.024303555488586,L, + 317529836250,-0.029724866151810,L, + 319454259500,-0.035384804010391,L, + 321378682750,-0.041166692972183,L, + 323303106000,-0.046948701143265,L, + 325227529250,-0.052608639001846,L, + 327151952500,-0.058029949665070,L, + 329076375750,-0.063106536865234,L, + 331000799000,-0.067746341228485,L, + 332925222250,-0.071873158216476,L, + 334849645500,-0.075428068637848,L, + 336774068750,-0.078368395566940,L, + 338698492000,-0.080666363239288,L, + 340622915250,-0.082307413220406,L, + 342547338500,-0.083287715911865,L, + 344471761750,-0.083612263202667,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.122761704027653 + KeyVer: 4005 + KeyCount: 167 + Key: + 0,-0.122761704027653,L, + 1924423250,-0.122706688940525,L, + 3848846500,-0.122550271451473,L, + 5773269750,-0.122302502393723,L, + 7697693000,-0.121971577405930,L, + 9622116250,-0.121566027402878,L, + 11546539500,-0.121091663837433,L, + 13470962750,-0.120553359389305,L, + 15395386000,-0.119956448674202,L, + 17319809250,-0.119304671883583,L, + 19244232500,-0.118602059781551,L, + 21168655750,-0.117851465940475,L, + 23093079000,-0.117056407034397,L, + 25017502250,-0.116218678653240,L, + 26941925500,-0.115341179072857,L, + 28866348750,-0.114425495266914,L, + 30790772000,-0.113474264740944,L, + 32715195250,-0.112488314509392,L, + 34639618500,-0.111469991505146,L, + 36564041750,-0.110420241951942,L, + 38488465000,-0.109341472387314,L, + 40412888250,-0.108233273029327,L, + 42337311500,-0.107099011540413,L, + 44261734750,-0.105938181281090,L, + 46186158000,-0.104753494262695,L, + 48110581250,-0.103545986115932,L, + 50035004500,-0.102318093180656,L, + 51959427750,-0.101073153316975,L, + 53883851000,-0.099817268550396,L, + 55808274250,-0.098565936088562,L, + 57732697500,-0.097399830818176,L, + 59657120750,-0.096333168447018,L, + 61581544000,-0.095028966665268,L, + 63505967250,-0.093658477067947,L, + 65430390500,-0.092274442315102,L, + 67354813750,-0.090887784957886,L, + 69279237000,-0.089502230286598,L, + 71203660250,-0.088119976222515,L, + 73128083500,-0.086743265390396,L, + 75052506750,-0.085372693836689,L, + 76976930000,-0.084009423851967,L, + 78901353250,-0.082654200494289,L, + 80825776500,-0.081307299435139,L, + 82750199750,-0.079970404505730,L, + 84674623000,-0.078642763197422,L, + 86599046250,-0.077326461672783,L, + 88523469500,-0.076021119952202,L, + 90447892750,-0.074728175997734,L, + 92372316000,-0.073448501527309,L, + 94296739250,-0.072181917726994,L, + 96221162500,-0.070930942893028,L, + 98145585750,-0.069695562124252,L, + 100070009000,-0.068477496504784,L, + 101994432250,-0.067278221249580,L, + 103918855500,-0.066098950803280,L, + 105843278750,-0.064941994845867,L, + 107767702000,-0.063809737563133,L, + 109692125250,-0.062703557312489,L, + 111616548500,-0.061627559363842,L, + 113540971750,-0.060584530234337,L, + 115465395000,-0.059554047882557,L, + 117389818250,-0.058511815965176,L, + 119314241500,-0.057457774877548,L, + 121238664750,-0.056392803788185,L, + 123163088000,-0.055317789316177,L, + 125087511250,-0.054233625531197,L, + 127011934500,-0.053140699863434,L, + 128936357750,-0.052040837705135,L, + 130860781000,-0.050934426486492,L, + 132785204250,-0.049822345376015,L, + 134709627500,-0.048706382513046,L, + 136634050750,-0.047588847577572,L, + 138558474000,-0.046469621360302,L, + 140482897250,-0.045350983738899,L, + 142407320500,-0.044235691428185,L, + 144331743750,-0.043124109506607,L, + 146256167000,-0.042018994688988,L, + 148180590250,-0.040922135114670,L, + 150105013500,-0.039835825562477,L, + 152029436750,-0.038762323558331,L, + 153953860000,-0.037702962756157,L, + 155878283250,-0.036660991609097,L, + 157802706500,-0.035638213157654,L, + 159727129750,-0.034636937081814,L, + 161651553000,-0.033659450709820,L, + 163575976250,-0.032706655561924,L, + 165500399500,-0.031782306730747,L, + 167424822750,-0.030886828899384,L, + 169349246000,-0.030023030936718,L, + 171273669250,-0.029191859066486,L, + 173198092500,-0.028395183384418,L, + 175122515750,-0.027633488178253,L, + 177046939000,-0.026909157633781,L, + 178971362250,-0.026221729815006,L, + 180895785500,-0.025572665035725,L, + 182820208750,-0.024962924420834,L, + 184744632000,-0.024392575025558,L, + 186669055250,-0.023861184716225,L, + 188593478500,-0.023370221257210,L, + 190517901750,-0.022918328642845,L, + 192442325000,-0.022506050765514,L, + 194366748250,-0.022132962942123,L, + 196291171500,-0.021798178553581,L, + 198215594750,-0.021502748131752,L, + 200140018000,-0.021243862807751,L, + 202064441250,-0.021022558212280,L, + 203988864500,-0.020837478339672,L, + 205913287750,-0.020687744021416,L, + 207837711000,-0.020572476089001,L, + 209762134250,-0.020491734147072,L, + 211686557500,-0.020443223416805,L, + 213610980750,-0.020427964627743,L, + 215535404000,-0.020603641867638,L, + 217459827250,-0.021135039627552,L, + 219384250500,-0.022025518119335,L, + 221308673750,-0.023274816572666,L, + 223233097000,-0.024880476295948,L, + 225157520250,-0.026836961507797,L, + 227081943500,-0.029134228825569,L, + 229006366750,-0.031757257878780,L, + 230930790000,-0.034685187041759,L, + 232855213250,-0.037893645465374,L, + 234779636500,-0.041351899504662,L, + 236704059750,-0.045022405683994,L, + 238628483000,-0.048865012824535,L, + 240552906250,-0.052833124995232,L, + 242477329500,-0.056877925992012,L, + 244401752750,-0.060949217528105,L, + 246326176000,-0.064994424581528,L, + 248250599250,-0.068962305784225,L, + 250175022500,-0.072804749011993,L, + 252099445750,-0.076475813984871,L, + 254023869000,-0.079933479428291,L, + 255948292250,-0.083142116665840,L, + 257872715500,-0.086070477962494,L, + 259797138750,-0.088693618774414,L, + 261721562000,-0.090990088880062,L, + 263645985250,-0.092946685850620,L, + 265570408500,-0.094553276896477,L, + 267494831750,-0.095801845192909,L, + 269419255000,-0.096692271530628,L, + 271343678250,-0.097223326563835,L, + 273268101500,-0.097399830818176,L, + 298285603750,-0.097399830818176,L, + 300210027000,-0.097496300935745,L, + 302134450250,-0.097789779305458,L, + 304058873500,-0.098279908299446,L, + 305983296750,-0.098966367542744,L, + 307907720000,-0.099845021963120,L, + 309832143250,-0.100906834006310,L, + 311756566500,-0.102139636874199,L, + 313680989750,-0.103525981307030,L, + 315605413000,-0.105042770504951,L, + 317529836250,-0.106662541627884,L, + 319454259500,-0.108353123068810,L, + 323303106000,-0.111808404326439,L, + 325227529250,-0.113498985767365,L, + 327151952500,-0.115118756890297,L, + 329076375750,-0.116635546088219,L, + 331000799000,-0.118021890521049,L, + 332925222250,-0.119254685938358,L, + 334849645500,-0.120316982269287,L, + 336774068750,-0.121195159852505,L, + 338698492000,-0.121881626546383,L, + 340622915250,-0.122372224926949,L, + 342547338500,-0.122664749622345,L, + 344471761750,-0.122761704027653,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.305199742317200 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.305199742317200,L, + 1924423250,0.306026101112366,L, + 3848846500,0.308382153511047,L, + 5773269750,0.312107205390930,L, + 7697693000,0.317066550254822,L, + 9622116250,0.323146700859070,L, + 11546539500,0.330249190330505,L, + 13470962750,0.338290333747864,L, + 15395386000,0.347195506095886,L, + 17319809250,0.356900095939636,L, + 19244232500,0.367345213890076,L, + 21168655750,0.378479599952698,L, + 23093079000,0.390256524085999,L, + 25017502250,0.402632832527161,L, + 26941925500,0.415569186210632,L, + 28866348750,0.429028868675232,L, + 30790772000,0.442977309226990,L, + 32715195250,0.457381606101990,L, + 34639618500,0.472210049629211,L, + 36564041750,0.487429976463318,L, + 38488465000,0.503009200096130,L, + 40412888250,0.518912911415100,L, + 42337311500,0.535102963447571,L, + 44261734750,0.551535487174988,L, + 46186158000,0.568155407905579,L, + 48110581250,0.584891915321350,L, + 50035004500,0.601641297340393,L, + 51959427750,0.618238091468811,L, + 53883851000,0.634372115135193,L, + 55808274250,0.649291157722473,L, + 57732697500,0.659229874610901,L, + 59657120750,0.034106016159058,L, + 111616548500,0.034106016159058,L, + 113540971750,0.007775783538818,L, + 211686557500,0.007775783538818,L, + 213610980750,-0.003737330436707,L, + 215535404000,-0.003602743148804,L, + 217459827250,-0.003190398216248,L, + 219384250500,-0.002487301826477,L, + 221308673750,-0.001480698585510,L, + 223233097000,-0.000159263610840,L, + 225157520250,0.001487851142883,L, + 227081943500,0.003469109535217,L, + 229006366750,0.005791306495667,L, + 230930790000,0.008458614349365,L, + 232855213250,0.011471867561340,L, + 234779636500,0.014828443527222,L, + 236704059750,0.018521308898926,L, + 238628483000,0.022540092468262,L, + 240552906250,0.026869177818298,L, + 242477329500,0.031489372253418,L, + 244401752750,0.036377906799316,L, + 246326176000,0.041508436203003,L, + 248250599250,0.046852469444275,L, + 250175022500,0.052379608154297,L, + 252099445750,0.058058619499207,L, + 254023869000,0.063858985900879,L, + 255948292250,0.069750428199768,L, + 257872715500,0.075704216957092,L, + 259797138750,0.081694126129150,L, + 261721562000,0.087695360183716,L, + 263645985250,0.093686580657959,L, + 265570408500,0.099648714065552,L, + 267494831750,0.105564713478088,L, + 269419255000,0.111420869827271,L, + 271343678250,0.117205023765564,L, + 273268101500,0.122907876968384,L, + 275192524750,0.128847718238831,L, + 277116948000,0.135353922843933,L, + 279041371250,0.142412304878235,L, + 280965794500,0.149971842765808,L, + 282890217750,0.157934784889221,L, + 284814641000,0.166156172752380,L, + 286739064250,0.174453616142273,L, + 288663487500,0.182631850242615,L, + 290587910750,0.190510630607605,L, + 292512334000,0.197949767112732,L, + 294436757250,0.204857230186462,L, + 296361180500,0.211187720298767,L, + 298285603750,0.216932177543640,L, + 300210027000,0.222417235374451,L, + 302134450250,0.227952361106873,L, + 304058873500,0.233519911766052,L, + 305983296750,0.239098429679871,L, + 307907720000,0.244661927223206,L, + 309832143250,0.250180840492249,L, + 311756566500,0.255620598793030,L, + 313680989750,0.260943293571472,L, + 315605413000,0.266107678413391,L, + 317529836250,0.271072030067444,L, + 319454259500,0.275794148445129,L, + 321378682750,0.280233979225159,L, + 323303106000,0.284355998039246,L, + 325227529250,0.288130164146423,L, + 327151952500,0.291533827781677,L, + 329076375750,0.294551968574524,L, + 331000799000,0.297177433967590,L, + 332925222250,0.299409985542297,L, + 334849645500,0.301256537437439,L, + 336774068750,0.302727818489075,L, + 338698492000,0.303839087486267,L, + 340622915250,0.304608464241028,L, + 342547338500,0.305055260658264,L, + 344471761750,0.305199742317200,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -93.865117763194306 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-93.865117763194306,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.719932675361633 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.719932675361633,L, + 1924423250,0.718634366989136,L, + 3848846500,0.714932918548584,L, + 5773269750,0.709080517292023,L, + 7697693000,0.701288759708405,L, + 9622116250,0.691736340522766,L, + 11546539500,0.680577039718628,L, + 13470962750,0.667943835258484,L, + 15395386000,0.653952598571777,L, + 17319809250,0.638706088066101,L, + 19244232500,0.622295320034027,L, + 21168655750,0.604801654815674,L, + 23093079000,0.586299061775208,L, + 25017502250,0.566854596138000,L, + 26941925500,0.546530306339264,L, + 28866348750,0.525383651256561,L, + 30790772000,0.503468930721283,L, + 32715195250,0.480837911367416,L, + 34639618500,0.457541167736053,L, + 36564041750,0.433628797531128,L, + 38488465000,0.409152179956436,L, + 40412888250,0.384165644645691,L, + 42337311500,0.358729213476181,L, + 44261734750,0.332912176847458,L, + 46186158000,0.306799918413162,L, + 48110581250,0.280505120754242,L, + 50035004500,0.254189968109131,L, + 51959427750,0.228114709258080,L, + 53883851000,0.202766388654709,L, + 55808274250,0.179326727986336,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128429412842,L, + 63505967250,0.206401899456978,L, + 65430390500,0.232390180230141,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703420639038,L, + 71203660250,0.312314987182617,L, + 73128083500,0.338655352592468,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101253986359,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390152692795,L, + 82750199750,0.463067144155502,L, + 84674623000,0.486021548509598,L, + 86599046250,0.508195459842682,L, + 88523469500,0.529529035091400,L, + 90447892750,0.549960136413574,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605140030384064,L, + 98145585750,0.621230304241180,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381935596466,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869038105011,L, + 111616548500,0.689822554588318,L, + 113540971750,0.691212713718414,L, + 273268101500,0.691212713718414,L, + 275192524750,0.693248748779297,L, + 277116948000,0.699399292469025,L, + 279041371250,0.709582269191742,L, + 280965794500,0.723452806472778,L, + 282890217750,0.740335345268250,L, + 284814641000,0.759208321571350,L, + 286739064250,0.778779387474060,L, + 288663487500,0.797652423381805,L, + 290587910750,0.814534962177277,L, + 292512334000,0.828405499458313,L, + 294436757250,0.838588476181030,L, + 296361180500,0.844739139080048,L, + 298285603750,0.846775054931641,L, + 300210027000,0.846290230751038,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546387195587,L, + 309832143250,0.829234778881073,L, + 311756566500,0.823068499565125,L, + 313680989750,0.816135883331299,L, + 315605413000,0.808550536632538,L, + 317529836250,0.800450205802917,L, + 319454259500,0.791993141174316,L, + 321378682750,0.783353984355927,L, + 323303106000,0.774714648723602,L, + 325227529250,0.766257703304291,L, + 327151952500,0.758157253265381,L, + 329076375750,0.750571846961975,L, + 331000799000,0.743639290332794,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161283493042,L, + 336774068750,0.727767944335938,L, + 338698492000,0.724334359169006,L, + 340622915250,0.721882343292236,L, + 342547338500,0.720417618751526,L, + 344471761750,0.719932675361633,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.719932675361633 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.719932675361633,L, + 1924423250,0.718634366989136,L, + 3848846500,0.714932918548584,L, + 5773269750,0.709080517292023,L, + 7697693000,0.701288700103760,L, + 9622116250,0.691736340522766,L, + 11546539500,0.680577099323273,L, + 13470962750,0.667943835258484,L, + 15395386000,0.653952598571777,L, + 17319809250,0.638706088066101,L, + 19244232500,0.622295320034027,L, + 21168655750,0.604801654815674,L, + 23093079000,0.586299002170563,L, + 25017502250,0.566854596138000,L, + 26941925500,0.546530246734619,L, + 28866348750,0.525383591651917,L, + 30790772000,0.503468930721283,L, + 32715195250,0.480837911367416,L, + 34639618500,0.457541108131409,L, + 36564041750,0.433628797531128,L, + 38488465000,0.409152150154114,L, + 40412888250,0.384165674448013,L, + 42337311500,0.358729213476181,L, + 44261734750,0.332912176847458,L, + 46186158000,0.306799888610840,L, + 48110581250,0.280505090951920,L, + 50035004500,0.254189968109131,L, + 51959427750,0.228114724159241,L, + 53883851000,0.202766358852386,L, + 55808274250,0.179326698184013,L, + 57732697500,0.163711935281754,L, + 59657120750,0.165000885725021,L, + 61581544000,0.182128444314003,L, + 63505967250,0.206401869654655,L, + 65430390500,0.232390180230141,L, + 67354813750,0.258978486061096,L, + 69279237000,0.285703420639038,L, + 71203660250,0.312314987182617,L, + 73128083500,0.338655382394791,L, + 75052506750,0.364612907171249,L, + 76976930000,0.390101253986359,L, + 78901353250,0.415048301219940,L, + 80825776500,0.439390122890472,L, + 82750199750,0.463067144155502,L, + 84674623000,0.486021578311920,L, + 86599046250,0.508195459842682,L, + 88523469500,0.529529094696045,L, + 90447892750,0.549960136413574,L, + 92372316000,0.569421529769897,L, + 94296739250,0.587841212749481,L, + 96221162500,0.605139970779419,L, + 98145585750,0.621230363845825,L, + 100070009000,0.636014461517334,L, + 101994432250,0.649381995201111,L, + 103918855500,0.661207437515259,L, + 105843278750,0.671346902847290,L, + 107767702000,0.679632842540741,L, + 109692125250,0.685869097709656,L, + 111616548500,0.689822554588318,L, + 113540971750,0.691212713718414,L, + 273268101500,0.691212713718414,L, + 275192524750,0.693248689174652,L, + 277116948000,0.699399352073669,L, + 279041371250,0.709582209587097,L, + 280965794500,0.723452746868134,L, + 282890217750,0.740335404872894,L, + 284814641000,0.759208381175995,L, + 286739064250,0.778779447078705,L, + 288663487500,0.797652482986450,L, + 290587910750,0.814535021781921,L, + 292512334000,0.828405499458313,L, + 294436757250,0.838588356971741,L, + 296361180500,0.844739139080048,L, + 298285603750,0.846775114536285,L, + 300210027000,0.846290171146393,L, + 302134450250,0.844825387001038,L, + 304058873500,0.842373371124268,L, + 305983296750,0.838939666748047,L, + 307907720000,0.834546446800232,L, + 309832143250,0.829234719276428,L, + 311756566500,0.823068499565125,L, + 313680989750,0.816135942935944,L, + 315605413000,0.808550477027893,L, + 317529836250,0.800450086593628,L, + 319454259500,0.791993200778961,L, + 321378682750,0.783353924751282,L, + 323303106000,0.774714708328247,L, + 325227529250,0.766257643699646,L, + 327151952500,0.758157312870026,L, + 329076375750,0.750571966171265,L, + 331000799000,0.743639290332794,L, + 332925222250,0.737472951412201,L, + 334849645500,0.732161283493042,L, + 336774068750,0.727767884731293,L, + 338698492000,0.724334239959717,L, + 340622915250,0.721882402896881,L, + 342547338500,0.720417559146881,L, + 344471761750,0.719932675361633,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.443951517343521 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.443951517343521,L, + 1924423250,0.443126142024994,L, + 3848846500,0.440772950649261,L, + 5773269750,0.437052369117737,L, + 7697693000,0.432098716497421,L, + 9622116250,0.426025897264481,L, + 11546539500,0.418931454420090,L, + 13470962750,0.410899907350540,L, + 15395386000,0.402005136013031,L, + 17319809250,0.392312288284302,L, + 19244232500,0.381879180669785,L, + 21168655750,0.370757728815079,L, + 23093079000,0.358994781970978,L, + 25017502250,0.346633136272430,L, + 26941925500,0.333712071180344,L, + 28866348750,0.320268243551254,L, + 30790772000,0.306336104869843,L, + 32715195250,0.291948616504669,L, + 34639618500,0.277137815952301,L, + 36564041750,0.261935710906982,L, + 38488465000,0.246374875307083,L, + 40412888250,0.230489864945412,L, + 42337311500,0.214318782091141,L, + 44261734750,0.197905778884888,L, + 46186158000,0.181305065751076,L, + 48110581250,0.164588317275047,L, + 50035004500,0.147858694195747,L, + 51959427750,0.131281480193138,L, + 53883851000,0.115166492760181,L, + 55808274250,0.100264914333820,L, + 57732697500,0.090337850153446,L, + 59657120750,0.090913213789463,L, + 61581544000,0.096882529556751,L, + 63505967250,0.105280600488186,L, + 65430390500,0.114354141056538,L, + 67354813750,0.123738184571266,L, + 69279237000,0.133280396461487,L, + 71203660250,0.142899036407471,L, + 73128083500,0.152543425559998,L, + 75052506750,0.162178665399551,L, + 76976930000,0.171778887510300,L, + 78901353250,0.181323528289795,L, + 80825776500,0.190795257687569,L, + 82750199750,0.200178921222687,L, + 84674623000,0.209460556507111,L, + 86599046250,0.218626782298088,L, + 88523469500,0.227664560079575,L, + 90447892750,0.236560583114624,L, + 92372316000,0.245301187038422,L, + 94296739250,0.253871947526932,L, + 96221162500,0.262257516384125,L, + 98145585750,0.270441085100174,L, + 100070009000,0.278404057025909,L, + 101994432250,0.286126047372818,L, + 103918855500,0.293583691120148,L, + 105843278750,0.300750583410263,L, + 107767702000,0.307596176862717,L, + 109692125250,0.314084708690643,L, + 111616548500,0.320174157619476,L, + 113540971750,0.325813770294189,L, + 115465395000,0.331132441759109,L, + 117389818250,0.336296081542969,L, + 119314241500,0.341301560401917,L, + 121238664750,0.346146166324615,L, + 123163088000,0.350827127695084,L, + 125087511250,0.355342239141464,L, + 127011934500,0.359689205884933,L, + 128936357750,0.363866388797760,L, + 130860781000,0.367872476577759,L, + 132785204250,0.371706485748291,L, + 134709627500,0.375367999076843,L, + 136634050750,0.378857374191284,L, + 138558474000,0.382175177335739,L, + 140482897250,0.385322958230972,L, + 142407320500,0.388302803039551,L, + 144331743750,0.391117721796036,L, + 146256167000,0.393771350383759,L, + 148180590250,0.396268159151077,L, + 150105013500,0.398613542318344,L, + 152029436750,0.400813639163971,L, + 153953860000,0.402875483036041,L, + 155878283250,0.404806733131409,L, + 157802706500,0.406615972518921,L, + 159727129750,0.408312380313873,L, + 161651553000,0.409905701875687,L, + 163575976250,0.411406368017197,L, + 165500399500,0.412825047969818,L, + 167424822750,0.414172917604446,L, + 169349246000,0.415461182594299,L, + 171273669250,0.416701346635818,L, + 173198092500,0.417904645204544,L, + 175122515750,0.419082581996918,L, + 177046939000,0.420245915651321,L, + 178971362250,0.421405643224716,L, + 180895785500,0.422571867704391,L, + 182820208750,0.423754543066025,L, + 184744632000,0.424963086843491,L, + 186669055250,0.426206111907959,L, + 188593478500,0.427491813898087,L, + 190517901750,0.428827702999115,L, + 192442325000,0.430220574140549,L, + 194366748250,0.431676834821701,L, + 196291171500,0.433201938867569,L, + 198215594750,0.434800893068314,L, + 200140018000,0.436478048563004,L, + 202064441250,0.438237339258194,L, + 203988864500,0.440081924200058,L, + 205913287750,0.442014724016190,L, + 207837711000,0.444037944078445,L, + 209762134250,0.446153610944748,L, + 211686557500,0.448363035917282,L, + 213610980750,0.450667619705200,L, + 215535404000,0.453080952167511,L, + 217459827250,0.455614894628525,L, + 219384250500,0.458266019821167,L, + 221308673750,0.461029738187790,L, + 223233097000,0.463899433612823,L, + 225157520250,0.466866880655289,L, + 227081943500,0.469921499490738,L, + 229006366750,0.473050683736801,L, + 230930790000,0.476239502429962,L, + 232855213250,0.479470670223236,L, + 234779636500,0.482724666595459,L, + 236704059750,0.485980302095413,L, + 238628483000,0.489214509725571,L, + 240552906250,0.492403239011765,L, + 242477329500,0.495522111654282,L, + 244401752750,0.498546630144119,L, + 246326176000,0.501453399658203,L, + 248250599250,0.504220247268677,L, + 250175022500,0.506827414035797,L, + 252099445750,0.509257495403290,L, + 254023869000,0.511495649814606,L, + 255948292250,0.513530492782593,L, + 257872715500,0.515353083610535,L, + 259797138750,0.516957819461823,L, + 261721562000,0.518341481685638,L, + 263645985250,0.519503057003021,L, + 265570408500,0.520443916320801,L, + 267494831750,0.521166861057281,L, + 269419255000,0.521676123142242,L, + 271343678250,0.521977186203003,L, + 273268101500,0.522076010704041,L, + 275192524750,0.519864201545715,L, + 277116948000,0.513182044029236,L, + 279041371250,0.502119421958923,L, + 280965794500,0.487050443887711,L, + 282890217750,0.468709319829941,L, + 284814641000,0.448205739259720,L, + 286739064250,0.426943868398666,L, + 288663487500,0.406440317630768,L, + 290587910750,0.388099133968353,L, + 292512334000,0.373030245304108,L, + 294436757250,0.361967504024506,L, + 296361180500,0.355285406112671,L, + 298285603750,0.353073537349701,L, + 300210027000,0.353420943021774,L, + 302134450250,0.354470431804657,L, + 304058873500,0.356227189302444,L, + 305983296750,0.358687251806259,L, + 307907720000,0.361834943294525,L, + 309832143250,0.365640580654144,L, + 311756566500,0.370058476924896,L, + 313680989750,0.375025421380997,L, + 315605413000,0.380460053682327,L, + 317529836250,0.386263698339462,L, + 319454259500,0.392322808504105,L, + 321378682750,0.398512512445450,L, + 323303106000,0.404702275991440,L, + 325227529250,0.410761326551437,L, + 327151952500,0.416565030813217,L, + 329076375750,0.421999663114548,L, + 331000799000,0.426966607570648,L, + 332925222250,0.431384503841400,L, + 334849645500,0.435190171003342,L, + 336774068750,0.438337832689285,L, + 338698492000,0.440797865390778,L, + 340622915250,0.442554682493210,L, + 342547338500,0.443604081869125,L, + 344471761750,0.443951517343521,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_018" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.112119138240814 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.112119138240814,L, + 1924423250,0.112092494964600,L, + 3848846500,0.112012535333633,L, + 5773269750,0.111878722906113,L, + 7697693000,0.111690759658813,L, + 9622116250,0.111448526382446,L, + 11546539500,0.111151933670044,L, + 13470962750,0.110800921916962,L, + 15395386000,0.110395759344101,L, + 17319809250,0.109936535358429,L, + 19244232500,0.109423816204071,L, + 21168655750,0.108857959508896,L, + 23093079000,0.108239889144897,L, + 25017502250,0.107570499181747,L, + 26941925500,0.106850773096085,L, + 28866348750,0.106081992387772,L, + 30790772000,0.105265706777573,L, + 32715195250,0.104403525590897,L, + 34639618500,0.103497475385666,L, + 36564041750,0.102549612522125,L, + 38488465000,0.101562201976776,L, + 40412888250,0.100537955760956,L, + 42337311500,0.099479436874390,L, + 44261734750,0.098389774560928,L, + 46186158000,0.097272098064423,L, + 48110581250,0.096129804849625,L, + 50035004500,0.094966232776642,L, + 51959427750,0.093785136938095,L, + 53883851000,0.092590302228928,L, + 55808274250,0.091385513544083,L, + 57732697500,0.090174764394760,L, + 59657120750,0.088962048292160,L, + 61581544000,0.087751358747482,L, + 63505967250,0.086546570062637,L, + 65430390500,0.085351675748825,L, + 67354813750,0.084170639514923,L, + 69279237000,0.083007067441940,L, + 71203660250,0.081864774227142,L, + 73128083500,0.080747038125992,L, + 75052506750,0.079657375812531,L, + 76976930000,0.078598976135254,L, + 78901353250,0.077574640512466,L, + 80825776500,0.076587289571762,L, + 82750199750,0.075639337301254,L, + 84674623000,0.074733287096024,L, + 86599046250,0.073871105909348,L, + 88523469500,0.073054850101471,L, + 90447892750,0.072286099195480,L, + 92372316000,0.071566343307495,L, + 94296739250,0.070896923542023,L, + 96221162500,0.070278882980347,L, + 98145585750,0.069713115692139,L, + 100070009000,0.069200336933136,L, + 101994432250,0.068741172552109,L, + 103918855500,0.068335920572281,L, + 105843278750,0.067984938621521,L, + 107767702000,0.067688286304474,L, + 109692125250,0.067446082830429,L, + 111616548500,0.067258179187775,L, + 113540971750,0.067124396562576,L, + 115465395000,0.067044317722321,L, + 117389818250,0.067017763853073,L, + 119314241500,0.067049503326416,L, + 121238664750,0.067146360874176,L, + 123163088000,0.067310303449631,L, + 125087511250,0.067541956901550,L, + 127011934500,0.067840546369553,L, + 128936357750,0.068203091621399,L, + 130860781000,0.068624198436737,L, + 132785204250,0.069096177816391,L, + 134709627500,0.069608837366104,L, + 136634050750,0.070150226354599,L, + 138558474000,0.070706993341446,L, + 140482897250,0.071265935897827,L, + 142407320500,0.071814477443695,L, + 144331743750,0.072341501712799,L, + 146256167000,0.072838097810745,L, + 148180590250,0.073297232389450,L, + 150105013500,0.073714047670364,L, + 152029436750,0.074085503816605,L, + 153953860000,0.074410140514374,L, + 155878283250,0.074677705764771,L, + 157802706500,0.074880003929138,L, + 159727129750,0.075023144483566,L, + 161651553000,0.075119584798813,L, + 163575976250,0.075189262628555,L, + 165500399500,0.075258105993271,L, + 167424822750,0.075355350971222,L, + 169349246000,0.075507938861847,L, + 171273669250,0.075736522674561,L, + 173198092500,0.076053500175476,L, + 175122515750,0.076463192701340,L, + 177046939000,0.076964139938354,L, + 178971362250,0.077580571174622,L, + 180895785500,0.078346878290176,L, + 182820208750,0.079273551702499,L, + 184744632000,0.080369859933853,L, + 186669055250,0.081642717123032,L, + 188593478500,0.083095878362656,L, + 190517901750,0.084728300571442,L, + 192442325000,0.086533546447754,L, + 194366748250,0.088499665260315,L, + 196291171500,0.090608775615692,L, + 198215594750,0.092838555574417,L, + 200140018000,0.095163524150848,L, + 202064441250,0.097557276487350,L, + 203988864500,0.099994152784348,L, + 205913287750,0.102450489997864,L, + 207837711000,0.104906260967255,L, + 209762134250,0.107344537973404,L, + 211686557500,0.109752207994461,L, + 213610980750,0.112119138240814,L, + 215535404000,0.114429146051407,L, + 217459827250,0.116683751344681,L, + 219384250500,0.118909358978271,L, + 221308673750,0.121143549680710,L, + 223233097000,0.123434752225876,L, + 225157520250,0.125838637351990,L, + 227081943500,0.128411948680878,L, + 229006366750,0.131203174591064,L, + 230930790000,0.134245634078979,L, + 232855213250,0.137554734945297,L, + 234779636500,0.141129016876221,L, + 236704059750,0.144954890012741,L, + 238628483000,0.149011641740799,L, + 240552906250,0.154437839984894,L, + 242477329500,0.161862164735794,L, + 244401752750,0.169423490762711,L, + 246326176000,0.174698054790497,L, + 248250599250,0.176466286182404,L, + 250175022500,0.176398873329163,L, + 252099445750,0.176190912723541,L, + 254023869000,0.175834476947784,L, + 255948292250,0.175323545932770,L, + 257872715500,0.174654483795166,L, + 259797138750,0.173827230930328,L, + 261721562000,0.172846645116806,L, + 263645985250,0.171722114086151,L, + 265570408500,0.170469075441360,L, + 267494831750,0.169107407331467,L, + 269419255000,0.167660564184189,L, + 271343678250,0.166154175996780,L, + 273268101500,0.164613902568817,L, + 275192524750,0.163063675165176,L, + 277116948000,0.161524802446365,L, + 279041371250,0.160014688968658,L, + 280965794500,0.158547341823578,L, + 282890217750,0.157132983207703,L, + 284814641000,0.155778914690018,L, + 286739064250,0.154421776533127,L, + 288663487500,0.152992695569992,L, + 290587910750,0.151491999626160,L, + 292512334000,0.149924874305725,L, + 294436757250,0.148303151130676,L, + 296361180500,0.146645158529282,L, + 298285603750,0.144974082708359,L, + 300210027000,0.143313825130463,L, + 302134450250,0.141685366630554,L, + 304058873500,0.140103965997696,L, + 305983296750,0.138578712940216,L, + 307907720000,0.137113153934479,L, + 309832143250,0.135627597570419,L, + 311756566500,0.134045243263245,L, + 313680989750,0.132373899221420,L, + 315605413000,0.130625456571579,L, + 317529836250,0.128816545009613,L, + 319454259500,0.126969009637833,L, + 321378682750,0.125109821557999,L, + 323303106000,0.123270422220230,L, + 325227529250,0.121484786272049,L, + 327151952500,0.119787871837616,L, + 329076375750,0.118212640285492,L, + 331000799000,0.116787821054459,L, + 332925222250,0.115536212921143,L, + 334849645500,0.114473730325699,L, + 336774068750,0.113609224557877,L, + 338698492000,0.112945556640625,L, + 340622915250,0.112480342388153,L, + 342547338500,0.112207770347595,L, + 344471761750,0.112119138240814,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.123124100267887 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-0.123124100267887,L, + 1924423250,-0.123087108135223,L, + 3848846500,-0.122974172234535,L, + 5773269750,-0.122785679996014,L, + 7697693000,-0.122521579265594,L, + 9622116250,-0.122180394828320,L, + 11546539500,-0.121763072907925,L, + 13470962750,-0.121269613504410,L, + 15395386000,-0.120699554681778,L, + 17319809250,-0.120052956044674,L, + 19244232500,-0.119331337511539,L, + 21168655750,-0.118535771965981,L, + 23093079000,-0.117665916681290,L, + 25017502250,-0.116723410785198,L, + 26941925500,-0.115710854530334,L, + 28866348750,-0.114628985524178,L, + 30790772000,-0.113480493426323,L, + 32715195250,-0.112267643213272,L, + 34639618500,-0.110992759466171,L, + 36564041750,-0.109658621251583,L, + 38488465000,-0.108269087970257,L, + 40412888250,-0.106828019022942,L, + 42337311500,-0.105338841676712,L, + 44261734750,-0.103805519640446,L, + 46186158000,-0.102232515811920,L, + 48110581250,-0.100625306367874,L, + 50035004500,-0.098987936973572,L, + 51959427750,-0.097325958311558,L, + 53883851000,-0.095644414424896,L, + 55808274250,-0.093949384987354,L, + 57732697500,-0.092245467007160,L, + 59657120750,-0.090539246797562,L, + 61581544000,-0.088835336267948,L, + 63505967250,-0.087140299379826,L, + 65430390500,-0.085458762943745,L, + 67354813750,-0.083797253668308,L, + 69279237000,-0.082159891724586,L, + 71203660250,-0.080552197992802,L, + 73128083500,-0.078979678452015,L, + 75052506750,-0.077446348965168,L, + 76976930000,-0.075957179069519,L, + 78901353250,-0.074515633285046,L, + 80825776500,-0.073126576840878,L, + 82750199750,-0.071792922914028,L, + 84674623000,-0.070517547428608,L, + 86599046250,-0.069304697215557,L, + 88523469500,-0.068155743181705,L, + 90447892750,-0.067074351012707,L, + 92372316000,-0.066061310470104,L, + 94296739250,-0.065119273960590,L, + 96221162500,-0.064249433577061,L, + 98145585750,-0.063453383743763,L, + 100070009000,-0.062732249498367,L, + 101994432250,-0.062085643410683,L, + 103918855500,-0.061515592038631,L, + 105843278750,-0.061021640896797,L, + 107767702000,-0.060604318976402,L, + 109692125250,-0.060263618826866,L, + 111616548500,-0.059999041259289,L, + 113540971750,-0.059810556471348,L, + 115465395000,-0.059698082506657,L, + 117389818250,-0.059660613536835,L, + 119314241500,-0.059695616364479,L, + 121238664750,-0.059802398085594,L, + 123163088000,-0.059984721243382,L, + 125087511250,-0.060247063636780,L, + 127011934500,-0.060589298605919,L, + 128936357750,-0.061011373996735,L, + 130860781000,-0.061511799693108,L, + 132785204250,-0.062083847820759,L, + 134709627500,-0.062720745801926,L, + 136634050750,-0.063410602509975,L, + 138558474000,-0.064142689108849,L, + 140482897250,-0.064901955425739,L, + 142407320500,-0.065675869584084,L, + 144331743750,-0.066453151404858,L, + 146256167000,-0.067220985889435,L, + 148180590250,-0.067972712218761,L, + 150105013500,-0.068699680268764,L, + 152029436750,-0.069397427141666,L, + 153953860000,-0.070062756538391,L, + 155878283250,-0.070666566491127,L, + 157802706500,-0.071190766990185,L, + 159727129750,-0.071651600301266,L, + 161651553000,-0.072077617049217,L, + 163575976250,-0.072509437799454,L, + 165500399500,-0.072994664311409,L, + 167424822750,-0.073582425713539,L, + 169349246000,-0.074315130710602,L, + 171273669250,-0.075221382081509,L, + 173198092500,-0.076312698423862,L, + 175122515750,-0.077589362859726,L, + 177046939000,-0.079040907323360,L, + 178971362250,-0.080668345093727,L, + 180895785500,-0.082484774291515,L, + 182820208750,-0.084490641951561,L, + 184744632000,-0.086681336164474,L, + 186669055250,-0.089047394692898,L, + 188593478500,-0.091571010649204,L, + 190517901750,-0.094227172434330,L, + 192442325000,-0.096985012292862,L, + 194366748250,-0.099803887307644,L, + 196291171500,-0.102642074227333,L, + 198215594750,-0.105453640222549,L, + 200140018000,-0.108196444809437,L, + 202064441250,-0.110831588506699,L, + 203988864500,-0.113327123224735,L, + 205913287750,-0.115659758448601,L, + 207837711000,-0.117812171578407,L, + 209762134250,-0.119775928556919,L, + 211686557500,-0.121545739471912,L, + 213610980750,-0.123124100267887,L, + 215535404000,-0.124561615288258,L, + 217459827250,-0.125894576311111,L, + 219384250500,-0.127105385065079,L, + 221308673750,-0.128175169229507,L, + 223233097000,-0.129088908433914,L, + 225157520250,-0.129839226603508,L, + 227081943500,-0.130425333976746,L, + 229006366750,-0.130859464406967,L, + 230930790000,-0.131161361932755,L, + 232855213250,-0.131354749202728,L, + 234779636500,-0.131466165184975,L, + 236704059750,-0.131518900394440,L, + 238628483000,-0.131533011794090,L, + 240552906250,-0.131093531847000,L, + 242477329500,-0.129856333136559,L, + 244401752750,-0.128267407417297,L, + 246326176000,-0.127030178904533,L, + 248250599250,-0.126590564846992,L, + 250175022500,-0.126703828573227,L, + 252099445750,-0.127049863338470,L, + 254023869000,-0.127633586525917,L, + 255948292250,-0.128457278013229,L, + 257872715500,-0.129516363143921,L, + 259797138750,-0.130798697471619,L, + 261721562000,-0.132284700870514,L, + 263645985250,-0.133945435285568,L, + 265570408500,-0.135741844773293,L, + 267494831750,-0.137630835175514,L, + 269419255000,-0.139564156532288,L, + 271343678250,-0.141493394970894,L, + 273268101500,-0.143373608589172,L, + 275192524750,-0.145166337490082,L, + 277116948000,-0.146838486194611,L, + 279041371250,-0.148365467786789,L, + 280965794500,-0.149732351303101,L, + 282890217750,-0.150928318500519,L, + 284814641000,-0.151948392391205,L, + 286739064250,-0.152871027588844,L, + 288663487500,-0.153767377138138,L, + 290587910750,-0.154622912406921,L, + 292512334000,-0.155418604612350,L, + 294436757250,-0.156136631965637,L, + 296361180500,-0.156758487224579,L, + 298285603750,-0.157271355390549,L, + 300210027000,-0.157672792673111,L, + 302134450250,-0.157964661717415,L, + 304058873500,-0.158157080411911,L, + 305983296750,-0.158261924982071,L, + 307907720000,-0.158294424414635,L, + 309832143250,-0.158079415559769,L, + 311756566500,-0.157430052757263,L, + 313680989750,-0.156344383955002,L, + 315605413000,-0.154832303524017,L, + 317529836250,-0.152915388345718,L, + 319454259500,-0.150632202625275,L, + 321378682750,-0.148038297891617,L, + 323303106000,-0.145206540822983,L, + 325227529250,-0.142225474119186,L, + 327151952500,-0.139192938804626,L, + 329076375750,-0.136211857199669,L, + 331000799000,-0.133380427956581,L, + 332925222250,-0.130786553025246,L, + 334849645500,-0.128503233194351,L, + 336774068750,-0.126586109399796,L, + 338698492000,-0.125073686242104,L, + 340622915250,-0.123988397419453,L, + 342547338500,-0.123338900506496,L, + 344471761750,-0.123124100267887,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.593029618263245 + KeyVer: 4005 + KeyCount: 121 + Key: + 0,0.593029618263245,L, + 115465395000,0.593029618263245,L, + 117389818250,0.011369585990906,L, + 119314241500,0.011369585990906,L, + 121238664750,0.011369705200195,L, + 123163088000,0.011370182037354,L, + 125087511250,0.011371254920959,L, + 127011934500,0.011373162269592,L, + 128936357750,0.011376142501831,L, + 130860781000,0.011380434036255,L, + 132785204250,0.011386632919312,L, + 134709627500,0.011394500732422,L, + 136634050750,0.011404991149902,L, + 138558474000,0.011417865753174,L, + 140482897250,0.011433243751526,L, + 142407320500,0.011451125144958,L, + 144331743750,0.011471867561340,L, + 146256167000,0.011494994163513,L, + 148180590250,0.011520385742188,L, + 150105013500,0.011548161506653,L, + 152029436750,0.011577844619751,L, + 153953860000,0.011609315872192,L, + 155878283250,0.011643052101135,L, + 157802706500,0.011705040931702,L, + 159727129750,0.011841535568237,L, + 161651553000,0.012112617492676,L, + 163575976250,0.012586593627930,L, + 165500399500,0.013331413269043,L, + 167424822750,0.014402270317078,L, + 169349246000,0.015831351280212,L, + 171273669250,0.017623782157898,L, + 173198092500,0.019761204719543,L, + 175122515750,0.022210359573364,L, + 177046939000,0.024931550025940,L, + 178971362250,0.027828097343445,L, + 180895785500,0.030847311019897,L, + 182820208750,0.034016251564026,L, + 184744632000,0.037366032600403,L, + 186669055250,0.040929436683655,L, + 188593478500,0.044740676879883,L, + 190517901750,0.048833250999451,L, + 192442325000,0.053237438201904,L, + 194366748250,0.057976961135864,L, + 196291171500,0.063067674636841,L, + 198215594750,0.068515539169312,L, + 200140018000,0.074315428733826,L, + 202064441250,0.080453276634216,L, + 203988864500,0.086907029151917,L, + 205913287750,0.093649625778198,L, + 207837711000,0.100651025772095,L, + 209762134250,0.107880592346191,L, + 211686557500,0.115308642387390,L, + 213610980750,0.122907876968384,L, + 215535404000,0.131041884422302,L, + 217459827250,0.140097975730896,L, + 219384250500,0.150052189826965,L, + 221308673750,0.160818219184875,L, + 223233097000,0.172235131263733,L, + 225157520250,0.184063553810120,L, + 227081943500,0.196003794670105,L, + 229006366750,0.207735657691956,L, + 230930790000,0.218965411186218,L, + 232855213250,0.229463696479797,L, + 234779636500,0.239081740379333,L, + 236704059750,0.247746586799622,L, + 238628483000,0.255445361137390,L, + 240552906250,0.262040257453918,L, + 242477329500,0.267191767692566,L, + 244401752750,0.270941138267517,L, + 246326176000,0.273873686790466,L, + 248250599250,0.276693224906921,L, + 250175022500,0.279411435127258,L, + 252099445750,0.281716465950012,L, + 254023869000,0.283613562583923,L, + 255948292250,0.285119652748108,L, + 257872715500,0.286265492439270,L, + 259797138750,0.287098050117493,L, + 261721562000,0.287681937217712,L, + 263645985250,0.288099408149719,L, + 265570408500,0.288445830345154,L, + 267494831750,0.288824915885925,L, + 269419255000,0.289342999458313,L, + 271343678250,0.290098309516907,L, + 273268101500,0.291178107261658,L, + 275192524750,0.292650818824768,L, + 277116948000,0.294566750526428,L, + 279041371250,0.296957612037659,L, + 280965794500,0.299838900566101,L, + 282890217750,0.303212046623230,L, + 284814641000,0.307069659233093,L, + 286739064250,0.311380743980408,L, + 288663487500,0.316169381141663,L, + 290587910750,0.321501851081848,L, + 292512334000,0.327432036399841,L, + 294436757250,0.333986639976501,L, + 296361180500,0.341151356697083,L, + 298285603750,0.348865151405334,L, + 300210027000,0.357027649879456,L, + 302134450250,0.365518450737000,L, + 304058873500,0.374218583106995,L, + 305983296750,0.383025527000427,L, + 307907720000,0.391859412193298,L, + 309832143250,0.401284337043762,L, + 311756566500,0.411891102790833,L, + 313680989750,0.423633694648743,L, + 315605413000,0.436426758766174,L, + 317529836250,0.450137495994568,L, + 319454259500,0.464580416679382,L, + 321378682750,0.479514479637146,L, + 323303106000,0.494648098945618,L, + 325227529250,0.509652733802795,L, + 327151952500,0.524180769920349,L, + 329076375750,0.537891507148743,L, + 331000799000,0.550475716590881,L, + 332925222250,0.561673521995544,L, + 334849645500,0.571289420127869,L, + 336774068750,0.579193234443665,L, + 338698492000,0.585315823554993,L, + 340622915250,0.589641451835632,L, + 342547338500,0.592194199562073,L, + 344471761750,0.593029618263245,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -1.077437155245399 + KeyVer: 4005 + KeyCount: 127 + Key: + 0,-1.077437155245399,L, + 1924423250,-1.077437048523693,L, + 3848846500,-1.077437261967105,L, + 11546539500,-1.077437261967105,L, + 15395386000,-1.077437048523693,L, + 17319809250,-1.077437155245399,L, + 21168655750,-1.077437155245399,L, + 23093079000,-1.077437261967105,L, + 25017502250,-1.077437475410516,L, + 28866348750,-1.077437048523693,L, + 30790772000,-1.077437261967105,L, + 32715195250,-1.077437261967105,L, + 34639618500,-1.077437155245399,L, + 36564041750,-1.077437155245399,L, + 38488465000,-1.077437048523693,L, + 40412888250,-1.077437155245399,L, + 44261734750,-1.077437155245399,L, + 46186158000,-1.077437048523693,L, + 50035004500,-1.077437048523693,L, + 53883851000,-1.077437261967105,L, + 55808274250,-1.077437261967105,L, + 57732697500,-1.077437155245399,L, + 61581544000,-1.077437155245399,L, + 63505967250,-1.077437261967105,L, + 67354813750,-1.077437048523693,L, + 69279237000,-1.077437368688811,L, + 71203660250,-1.077437155245399,L, + 73128083500,-1.077437261967105,L, + 76976930000,-1.077437048523693,L, + 78901353250,-1.077437261967105,L, + 80825776500,-1.077437261967105,L, + 84674623000,-1.077437048523693,L, + 86599046250,-1.077437261967105,L, + 88523469500,-1.077437048523693,L, + 92372316000,-1.077437048523693,L, + 94296739250,-1.077437261967105,L, + 96221162500,-1.077437048523693,L, + 98145585750,-1.077437261967105,L, + 100070009000,-1.077437368688811,L, + 101994432250,-1.077437048523693,L, + 103918855500,-1.077437261967105,L, + 105843278750,-1.077437261967105,L, + 107767702000,-1.077437155245399,L, + 109692125250,-1.077437261967105,L, + 111616548500,-1.077437155245399,L, + 113540971750,-1.077437155245399,L, + 115465395000,-1.077436941801987,L, + 117389818250,-1.077437368688811,L, + 153953860000,-1.077437368688811,L, + 155878283250,-1.077437048523693,L, + 157802706500,-1.077437261967105,L, + 159727129750,-1.077437155245399,L, + 161651553000,-1.077437368688811,L, + 163575976250,-1.077437155245399,L, + 167424822750,-1.077437155245399,L, + 169349246000,-1.077437261967105,L, + 173198092500,-1.077437048523693,L, + 175122515750,-1.077437155245399,L, + 177046939000,-1.077437155245399,L, + 178971362250,-1.077437368688811,L, + 182820208750,-1.077437155245399,L, + 184744632000,-1.077437261967105,L, + 186669055250,-1.077437155245399,L, + 190517901750,-1.077437155245399,L, + 192442325000,-1.077437261967105,L, + 194366748250,-1.077437155245399,L, + 196291171500,-1.077437155245399,L, + 198215594750,-1.077437261967105,L, + 200140018000,-1.077437155245399,L, + 202064441250,-1.077437368688811,L, + 203988864500,-1.077437155245399,L, + 205913287750,-1.077437261967105,L, + 207837711000,-1.077437261967105,L, + 209762134250,-1.077437368688811,L, + 211686557500,-1.077437155245399,L, + 213610980750,-1.077437261967105,L, + 215535404000,-1.077437155245399,L, + 217459827250,-1.077437155245399,L, + 219384250500,-1.077437048523693,L, + 221308673750,-1.077437261967105,L, + 223233097000,-1.077437048523693,L, + 225157520250,-1.077437048523693,L, + 227081943500,-1.077437155245399,L, + 229006366750,-1.077437368688811,L, + 230930790000,-1.077437155245399,L, + 238628483000,-1.077437155245399,L, + 240552906250,-1.077437261967105,L, + 242477329500,-1.077437155245399,L, + 246326176000,-1.077437368688811,L, + 248250599250,-1.077437155245399,L, + 250175022500,-1.077437155245399,L, + 252099445750,-1.077437261967105,L, + 254023869000,-1.077437048523693,L, + 257872715500,-1.077437261967105,L, + 259797138750,-1.077437155245399,L, + 261721562000,-1.077437155245399,L, + 263645985250,-1.077437261967105,L, + 265570408500,-1.077437155245399,L, + 279041371250,-1.077437155245399,L, + 280965794500,-1.077437261967105,L, + 282890217750,-1.077437155245399,L, + 284814641000,-1.077437155245399,L, + 286739064250,-1.077437048523693,L, + 290587910750,-1.077437261967105,L, + 292512334000,-1.077437048523693,L, + 294436757250,-1.077437261967105,L, + 296361180500,-1.077437261967105,L, + 298285603750,-1.077437155245399,L, + 302134450250,-1.077437155245399,L, + 304058873500,-1.077437261967105,L, + 305983296750,-1.077437155245399,L, + 307907720000,-1.077437155245399,L, + 309832143250,-1.077437261967105,L, + 313680989750,-1.077437048523693,L, + 315605413000,-1.077437261967105,L, + 319454259500,-1.077437261967105,L, + 321378682750,-1.077437048523693,L, + 323303106000,-1.077437261967105,L, + 325227529250,-1.077437261967105,L, + 329076375750,-1.077437048523693,L, + 331000799000,-1.077437155245399,L, + 332925222250,-1.077437155245399,L, + 334849645500,-1.077436941801987,L, + 336774068750,-1.077437155245399,L, + 338698492000,-1.077437261967105,L, + 342547338500,-1.077437048523693,L, + 344471761750,-1.077437155245399,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -2.888269928044683 + KeyVer: 4005 + KeyCount: 141 + Key: + 0,-2.888269928044683,L, + 3848846500,-2.888270354931506,L, + 5773269750,-2.888269928044683,L, + 9622116250,-2.888269928044683,L, + 11546539500,-2.888270141488094,L, + 15395386000,-2.888270141488094,L, + 17319809250,-2.888270354931506,L, + 19244232500,-2.888269928044683,L, + 21168655750,-2.888269928044683,L, + 23093079000,-2.888270354931506,L, + 25017502250,-2.888270141488094,L, + 26941925500,-2.888270568374918,L, + 28866348750,-2.888269928044683,L, + 30790772000,-2.888270141488094,L, + 32715195250,-2.888270141488094,L, + 34639618500,-2.888269928044683,L, + 36564041750,-2.888269928044683,L, + 38488465000,-2.888270141488094,L, + 40412888250,-2.888269928044683,L, + 44261734750,-2.888270354931506,L, + 46186158000,-2.888270354931506,L, + 48110581250,-2.888270141488094,L, + 50035004500,-2.888269714601271,L, + 51959427750,-2.888270354931506,L, + 53883851000,-2.888269928044683,L, + 55808274250,-2.888269714601271,L, + 57732697500,-2.888269928044683,L, + 59657120750,-2.888270354931506,L, + 61581544000,-2.888270354931506,L, + 63505967250,-2.888269928044683,L, + 65430390500,-2.888270141488094,L, + 67354813750,-2.888269928044683,L, + 69279237000,-2.888270141488094,L, + 71203660250,-2.888269928044683,L, + 75052506750,-2.888269928044683,L, + 76976930000,-2.888270354931506,L, + 78901353250,-2.888269714601271,L, + 80825776500,-2.888270141488094,L, + 82750199750,-2.888269714601271,L, + 84674623000,-2.888270141488094,L, + 86599046250,-2.888270354931506,L, + 88523469500,-2.888270141488094,L, + 90447892750,-2.888270141488094,L, + 92372316000,-2.888270568374918,L, + 96221162500,-2.888270141488094,L, + 100070009000,-2.888270141488094,L, + 101994432250,-2.888269928044683,L, + 103918855500,-2.888270354931506,L, + 105843278750,-2.888269928044683,L, + 107767702000,-2.888269928044683,L, + 109692125250,-2.888270354931506,L, + 111616548500,-2.888269714601271,L, + 113540971750,-2.888270141488094,L, + 115465395000,-2.888269928044683,L, + 117389818250,-2.888270141488094,L, + 155878283250,-2.888270141488094,L, + 157802706500,-2.888270354931506,L, + 159727129750,-2.888270141488094,L, + 161651553000,-2.888270354931506,L, + 163575976250,-2.888269928044683,L, + 165500399500,-2.888270141488094,L, + 167424822750,-2.888269928044683,L, + 169349246000,-2.888270141488094,L, + 171273669250,-2.888270141488094,L, + 173198092500,-2.888269714601271,L, + 175122515750,-2.888269714601271,L, + 177046939000,-2.888270141488094,L, + 178971362250,-2.888269928044683,L, + 180895785500,-2.888270141488094,L, + 182820208750,-2.888270141488094,L, + 184744632000,-2.888270354931506,L, + 186669055250,-2.888270141488094,L, + 188593478500,-2.888270141488094,L, + 190517901750,-2.888270354931506,L, + 192442325000,-2.888270354931506,L, + 194366748250,-2.888269928044683,L, + 196291171500,-2.888269928044683,L, + 198215594750,-2.888270141488094,L, + 200140018000,-2.888269714601271,L, + 202064441250,-2.888269928044683,L, + 203988864500,-2.888270354931506,L, + 205913287750,-2.888270141488094,L, + 207837711000,-2.888269714601271,L, + 209762134250,-2.888269928044683,L, + 211686557500,-2.888270354931506,L, + 213610980750,-2.888269714601271,L, + 215535404000,-2.888270141488094,L, + 217459827250,-2.888269714601271,L, + 223233097000,-2.888270354931506,L, + 225157520250,-2.888270141488094,L, + 227081943500,-2.888269501157860,L, + 229006366750,-2.888269928044683,L, + 230930790000,-2.888270568374918,L, + 232855213250,-2.888269501157860,L, + 234779636500,-2.888270141488094,L, + 238628483000,-2.888270141488094,L, + 240552906250,-2.888270354931506,L, + 242477329500,-2.888270354931506,L, + 244401752750,-2.888269714601271,L, + 246326176000,-2.888270354931506,L, + 248250599250,-2.888270354931506,L, + 250175022500,-2.888269928044683,L, + 252099445750,-2.888270141488094,L, + 254023869000,-2.888269928044683,L, + 255948292250,-2.888269928044683,L, + 257872715500,-2.888270354931506,L, + 259797138750,-2.888270568374918,L, + 261721562000,-2.888269928044683,L, + 263645985250,-2.888270141488094,L, + 267494831750,-2.888269714601271,L, + 269419255000,-2.888269928044683,L, + 271343678250,-2.888270354931506,L, + 273268101500,-2.888269714601271,L, + 275192524750,-2.888269928044683,L, + 277116948000,-2.888269928044683,L, + 279041371250,-2.888270568374918,L, + 280965794500,-2.888270354931506,L, + 282890217750,-2.888269928044683,L, + 286739064250,-2.888270354931506,L, + 290587910750,-2.888270354931506,L, + 296361180500,-2.888269714601271,L, + 300210027000,-2.888270141488094,L, + 305983296750,-2.888270141488094,L, + 307907720000,-2.888270354931506,L, + 309832143250,-2.888270354931506,L, + 311756566500,-2.888269928044683,L, + 313680989750,-2.888269928044683,L, + 315605413000,-2.888270354931506,L, + 321378682750,-2.888269714601271,L, + 323303106000,-2.888269928044683,L, + 325227529250,-2.888270354931506,L, + 327151952500,-2.888269928044683,L, + 329076375750,-2.888270141488094,L, + 331000799000,-2.888270141488094,L, + 332925222250,-2.888269928044683,L, + 334849645500,-2.888269928044683,L, + 336774068750,-2.888270141488094,L, + 338698492000,-2.888269928044683,L, + 340622915250,-2.888269928044683,L, + 342547338500,-2.888270141488094,L, + 344471761750,-2.888269928044683,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 35.454415736123465 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,35.454415736123465,L, + 1924423250,35.454412321028876,L, + 3848846500,35.454415736123465,L, + 5773269750,35.454415736123465,L, + 7697693000,35.454419151218048,L, + 9622116250,35.454415736123465,L, + 11546539500,35.454419151218048,L, + 13470962750,35.454415736123465,L, + 15395386000,35.454415736123465,L, + 17319809250,35.454419151218048,L, + 19244232500,35.454415736123465,L, + 23093079000,35.454415736123465,L, + 25017502250,35.454412321028876,L, + 26941925500,35.454412321028876,L, + 28866348750,35.454419151218048,L, + 30790772000,35.454415736123465,L, + 32715195250,35.454419151218048,L, + 34639618500,35.454415736123465,L, + 36564041750,35.454415736123465,L, + 38488465000,35.454412321028876,L, + 40412888250,35.454419151218048,L, + 42337311500,35.454415736123465,L, + 50035004500,35.454415736123465,L, + 51959427750,35.454419151218048,L, + 53883851000,35.454412321028876,L, + 55808274250,35.454415736123465,L, + 57732697500,35.454415736123465,L, + 59657120750,35.454412321028876,L, + 61581544000,35.454412321028876,L, + 65430390500,35.454419151218048,L, + 69279237000,35.454412321028876,L, + 73128083500,35.454419151218048,L, + 75052506750,35.454415736123465,L, + 78901353250,35.454415736123465,L, + 80825776500,35.454412321028876,L, + 82750199750,35.454419151218048,L, + 84674623000,35.454422566312630,L, + 88523469500,35.454415736123465,L, + 92372316000,35.454415736123465,L, + 94296739250,35.454422566312630,L, + 96221162500,35.454419151218048,L, + 98145585750,35.454412321028876,L, + 101994432250,35.454412321028876,L, + 103918855500,35.454415736123465,L, + 105843278750,35.454412321028876,L, + 107767702000,35.454422566312630,L, + 109692125250,35.454412321028876,L, + 111616548500,35.454412321028876,L, + 113540971750,35.454415736123465,L, + 115465395000,35.454415736123465,L, + 117389818250,35.454412321028876,L, + 155878283250,35.454412321028876,L, + 157802706500,35.454422566312630,L, + 159727129750,35.454412321028876,L, + 161651553000,35.454422566312630,L, + 163575976250,35.454419151218048,L, + 165500399500,35.454412321028876,L, + 167424822750,35.454415736123465,L, + 169349246000,35.454415736123465,L, + 171273669250,35.454412321028876,L, + 175122515750,35.454419151218048,L, + 177046939000,35.454419151218048,L, + 180895785500,35.454412321028876,L, + 182820208750,35.454415736123465,L, + 184744632000,35.454415736123465,L, + 186669055250,35.454412321028876,L, + 188593478500,35.454415736123465,L, + 190517901750,35.454412321028876,L, + 192442325000,35.454412321028876,L, + 194366748250,35.454419151218048,L, + 196291171500,35.454412321028876,L, + 198215594750,35.454415736123465,L, + 200140018000,35.454415736123465,L, + 202064441250,35.454419151218048,L, + 203988864500,35.454412321028876,L, + 205913287750,35.454415736123465,L, + 207837711000,35.454412321028876,L, + 209762134250,35.454415736123465,L, + 213610980750,35.454415736123465,L, + 215535404000,35.454412321028876,L, + 217459827250,35.454419151218048,L, + 225157520250,35.454419151218048,L, + 227081943500,35.454415736123465,L, + 230930790000,35.454422566312630,L, + 232855213250,35.454415736123465,L, + 234779636500,35.454419151218048,L, + 236704059750,35.454415736123465,L, + 238628483000,35.454415736123465,L, + 240552906250,35.454419151218048,L, + 242477329500,35.454415736123465,L, + 244401752750,35.454415736123465,L, + 246326176000,35.454422566312630,L, + 248250599250,35.454419151218048,L, + 254023869000,35.454419151218048,L, + 255948292250,35.454412321028876,L, + 257872715500,35.454419151218048,L, + 259797138750,35.454419151218048,L, + 261721562000,35.454415736123465,L, + 263645985250,35.454415736123465,L, + 265570408500,35.454412321028876,L, + 267494831750,35.454415736123465,L, + 269419255000,35.454412321028876,L, + 271343678250,35.454419151218048,L, + 275192524750,35.454412321028876,L, + 277116948000,35.454419151218048,L, + 279041371250,35.454422566312630,L, + 280965794500,35.454415736123465,L, + 284814641000,35.454415736123465,L, + 286739064250,35.454419151218048,L, + 288663487500,35.454415736123465,L, + 294436757250,35.454415736123465,L, + 296361180500,35.454419151218048,L, + 298285603750,35.454415736123465,L, + 302134450250,35.454415736123465,L, + 304058873500,35.454412321028876,L, + 307907720000,35.454419151218048,L, + 311756566500,35.454412321028876,L, + 315605413000,35.454419151218048,L, + 317529836250,35.454419151218048,L, + 319454259500,35.454415736123465,L, + 321378682750,35.454419151218048,L, + 323303106000,35.454419151218048,L, + 325227529250,35.454415736123465,L, + 327151952500,35.454415736123465,L, + 329076375750,35.454419151218048,L, + 331000799000,35.454419151218048,L, + 332925222250,35.454412321028876,L, + 334849645500,35.454419151218048,L, + 336774068750,35.454419151218048,L, + 338698492000,35.454412321028876,L, + 340622915250,35.454419151218048,L, + 342547338500,35.454412321028876,L, + 344471761750,35.454415736123465,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.176242396235466 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.176242396235466,L, + 1924423250,0.176436796784401,L, + 3848846500,0.177022069692612,L, + 5773269750,0.178000882267952,L, + 7697693000,0.179375320672989,L, + 9622116250,0.181146815419197,L, + 11546539500,0.183316037058830,L, + 13470962750,0.185882925987244,L, + 15395386000,0.188846528530121,L, + 17319809250,0.192204877734184,L, + 19244232500,0.195954993367195,L, + 21168655750,0.200092762708664,L, + 23093079000,0.204612925648689,L, + 25017502250,0.209508910775185,L, + 26941925500,0.214772701263428,L, + 28866348750,0.220395028591156,L, + 30790772000,0.226365000009537,L, + 32715195250,0.232670247554779,L, + 34639618500,0.239296838641167,L, + 36564041750,0.246229276061058,L, + 38488465000,0.253450423479080,L, + 40412888250,0.260941654443741,L, + 42337311500,0.268682658672333,L, + 44261734750,0.276651799678802,L, + 46186158000,0.284825921058655,L, + 48110581250,0.293180614709854,L, + 50035004500,0.301690161228180,L, + 51959427750,0.310328006744385,L, + 53883851000,0.319066613912582,L, + 55808274250,0.327877640724182,L, + 57732697500,0.336732268333435,L, + 59657120750,0.345601618289948,L, + 61581544000,0.354456365108490,L, + 63505967250,0.363267332315445,L, + 65430390500,0.372005879878998,L, + 67354813750,0.380643725395203,L, + 69279237000,0.389153361320496,L, + 71203660250,0.397507995367050,L, + 73128083500,0.405682176351547,L, + 75052506750,0.413651257753372,L, + 76976930000,0.421392232179642,L, + 78901353250,0.428883463144302,L, + 80825776500,0.436104625463486,L, + 82750199750,0.443037033081055,L, + 84674623000,0.449663668870926,L, + 86599046250,0.455968886613846,L, + 88523469500,0.461938917636871,L, + 90447892750,0.467561155557632,L, + 92372316000,0.472824990749359,L, + 94296739250,0.477720946073532,L, + 96221162500,0.482241123914719,L, + 98145585750,0.486378937959671,L, + 100070009000,0.490129113197327,L, + 101994432250,0.493487387895584,L, + 103918855500,0.496450960636139,L, + 105843278750,0.499017924070358,L, + 107767702000,0.501187205314636,L, + 109692125250,0.502958536148071,L, + 111616548500,0.504333078861237,L, + 113540971750,0.505311727523804,L, + 115465395000,0.505897164344788,L, + 117389818250,0.506091535091400,L, + 153953860000,0.506091535091400,L, + 155878283250,0.506617724895477,L, + 157802706500,0.508259236812592,L, + 159727129750,0.511085748672485,L, + 161651553000,0.515110909938812,L, + 163575976250,0.520265460014343,L, + 165500399500,0.526379704475403,L, + 167424822750,0.533194541931152,L, + 169349246000,0.540400505065918,L, + 171273669250,0.547693014144897,L, + 173198092500,0.554816246032715,L, + 175122515750,0.561584651470184,L, + 177046939000,0.567881822586060,L, + 178971362250,0.574291646480560,L, + 180895785500,0.581435561180115,L, + 182820208750,0.589281737804413,L, + 184744632000,0.597773671150208,L, + 186669055250,0.606824219226837,L, + 188593478500,0.616312921047211,L, + 190517901750,0.626084446907043,L, + 192442325000,0.635951936244965,L, + 194366748250,0.645705342292786,L, + 196291171500,0.655124366283417,L, + 198215594750,0.663993000984192,L, + 200140018000,0.672116458415985,L, + 202064441250,0.679332554340363,L, + 203988864500,0.685519754886627,L, + 205913287750,0.690598249435425,L, + 207837711000,0.694527685642242,L, + 209762134250,0.697300672531128,L, + 211686557500,0.698935806751251,L, + 213610980750,0.699470520019531,L, + 215535404000,0.699465990066528,L, + 217459827250,0.699452638626099,L, + 219384250500,0.699430584907532,L, + 221308673750,0.699400484561920,L, + 223233097000,0.699363827705383,L, + 225157520250,0.699322938919067,L, + 227081943500,0.699280500411987,L, + 229006366750,0.699239492416382,L, + 230930790000,0.699202835559845,L, + 232855213250,0.699172794818878,L, + 234779636500,0.699150621891022,L, + 236704059750,0.699137330055237,L, + 238628483000,0.699132859706879,L, + 240552906250,0.699135184288025,L, + 242477329500,0.699143409729004,L, + 244401752750,0.699158608913422,L, + 246326176000,0.699179410934448,L, + 248250599250,0.699203073978424,L, + 250175022500,0.699229776859283,L, + 252099445750,0.699260950088501,L, + 254023869000,0.699296474456787,L, + 255948292250,0.699336290359497,L, + 257872715500,0.699379682540894,L, + 259797138750,0.699426114559174,L, + 261721562000,0.699474990367889,L, + 263645985250,0.699525058269501,L, + 265570408500,0.699575304985046,L, + 267494831750,0.699624300003052,L, + 269419255000,0.699670910835266,L, + 271343678250,0.699713885784149,L, + 273268101500,0.699752509593964,L, + 275192524750,0.699785709381104,L, + 277116948000,0.699813127517700,L, + 279041371250,0.699834406375885,L, + 280965794500,0.699849605560303,L, + 282890217750,0.699858486652374,L, + 284814641000,0.699861466884613,L, + 286739064250,0.699283123016357,L, + 288663487500,0.697401344776154,L, + 290587910750,0.693992674350739,L, + 292512334000,0.688853681087494,L, + 294436757250,0.681844890117645,L, + 296361180500,0.672936797142029,L, + 298285603750,0.662237524986267,L, + 300210027000,0.649982869625092,L, + 302134450250,0.636489212512970,L, + 304058873500,0.622092783451080,L, + 305983296750,0.607100546360016,L, + 307907720000,0.591764688491821,L, + 309832143250,0.574890971183777,L, + 311756566500,0.555163502693176,L, + 313680989750,0.532660305500031,L, + 315605413000,0.507547020912170,L, + 317529836250,0.480095863342285,L, + 319454259500,0.450701296329498,L, + 321378682750,0.419885277748108,L, + 323303106000,0.388289630413055,L, + 325227529250,0.356649398803711,L, + 327151952500,0.325750201940536,L, + 329076375750,0.296372592449188,L, + 331000799000,0.269236773252487,L, + 332925222250,0.244955152273178,L, + 334849645500,0.224003151059151,L, + 336774068750,0.206709384918213,L, + 338698492000,0.193263024091721,L, + 340622915250,0.183732926845551,L, + 342547338500,0.178092062473297,L, + 344471761750,0.176242396235466,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.175835654139519 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.175835654139519,L, + 1924423250,0.176030561327934,L, + 3848846500,0.176617264747620,L, + 5773269750,0.177598506212234,L, + 7697693000,0.178976342082024,L, + 9622116250,0.180752247571945,L, + 11546539500,0.182926848530769,L, + 13470962750,0.185500130057335,L, + 15395386000,0.188471063971519,L, + 17319809250,0.191837713122368,L, + 19244232500,0.195597156882286,L, + 21168655750,0.199745208024979,L, + 23093079000,0.204276621341705,L, + 25017502250,0.209184706211090,L, + 26941925500,0.214461594820023,L, + 28866348750,0.220097854733467,L, + 30790772000,0.226082623004913,L, + 32715195250,0.232403531670570,L, + 34639618500,0.239046588540077,L, + 36564041750,0.245996192097664,L, + 38488465000,0.253235310316086,L, + 40412888250,0.260745048522949,L, + 42337311500,0.268505305051804,L, + 44261734750,0.276494234800339,L, + 46186158000,0.284688621759415,L, + 48110581250,0.293064028024673,L, + 50035004500,0.301594734191895,L, + 51959427750,0.310253977775574,L, + 53883851000,0.319014221429825,L, + 55808274250,0.327847093343735,L, + 57732697500,0.336723804473877,L, + 59657120750,0.345615088939667,L, + 61581544000,0.354491800069809,L, + 63505967250,0.363324642181396,L, + 65430390500,0.372084915637970,L, + 67354813750,0.380744218826294,L, + 69279237000,0.389274924993515,L, + 71203660250,0.397650271654129,L, + 73128083500,0.405844688415527,L, + 75052506750,0.413833618164062,L, + 76976930000,0.421593755483627,L, + 78901353250,0.429103553295135,L, + 80825776500,0.436342656612396,L, + 82750199750,0.443292349576950,L, + 84674623000,0.449935436248779,L, + 86599046250,0.456256210803986,L, + 88523469500,0.462241023778915,L, + 90447892750,0.467877358198166,L, + 92372316000,0.473154187202454,L, + 94296739250,0.478062301874161,L, + 96221162500,0.482593685388565,L, + 98145585750,0.486741721630096,L, + 100070009000,0.490501165390015,L, + 101994432250,0.493867844343185,L, + 103918855500,0.496838718652725,L, + 105843278750,0.499412089586258,L, + 107767702000,0.501586616039276,L, + 109692125250,0.503362596035004,L, + 111616548500,0.504740417003632,L, + 113540971750,0.505721628665924,L, + 115465395000,0.506308376789093,L, + 117389818250,0.506503224372864,L, + 153953860000,0.506503224372864,L, + 155878283250,0.507024824619293,L, + 157802706500,0.508651971817017,L, + 159727129750,0.511453747749329,L, + 161651553000,0.515443742275238,L, + 163575976250,0.520553290843964,L, + 165500399500,0.526614129543304,L, + 167424822750,0.533369421958923,L, + 169349246000,0.540512323379517,L, + 171273669250,0.547741115093231,L, + 173198092500,0.554802000522614,L, + 175122515750,0.561511337757111,L, + 177046939000,0.567753553390503,L, + 178971362250,0.574107289314270,L, + 180895785500,0.581188797950745,L, + 182820208750,0.588966369628906,L, + 184744632000,0.597384035587311,L, + 186669055250,0.606355607509613,L, + 188593478500,0.615761399269104,L, + 190517901750,0.625447392463684,L, + 192442325000,0.635228574275970,L, + 194366748250,0.644896924495697,L, + 196291171500,0.654233396053314,L, + 198215594750,0.663024604320526,L, + 200140018000,0.671077072620392,L, + 202064441250,0.678230047225952,L, + 203988864500,0.684363245964050,L, + 205913287750,0.689397335052490,L, + 207837711000,0.693292438983917,L, + 209762134250,0.696041107177734,L, + 211686557500,0.697662174701691,L, + 213610980750,0.698192000389099,L, + 215535404000,0.698191404342651,L, + 217459827250,0.698189556598663,L, + 219384250500,0.698186516761780,L, + 221308673750,0.698182284832001,L, + 223233097000,0.698177278041840,L, + 225157520250,0.698171675205231,L, + 227081943500,0.698165655136108,L, + 229006366750,0.698159992694855,L, + 230930790000,0.698154985904694,L, + 232855213250,0.698150813579559,L, + 234779636500,0.698147654533386,L, + 236704059750,0.698145925998688,L, + 238628483000,0.698145270347595,L, + 240552906250,0.698145508766174,L, + 242477329500,0.698146700859070,L, + 244401752750,0.698148787021637,L, + 246326176000,0.698151648044586,L, + 248250599250,0.698154985904694,L, + 250175022500,0.698158681392670,L, + 252099445750,0.698162972927094,L, + 254023869000,0.698167920112610,L, + 255948292250,0.698173463344574,L, + 257872715500,0.698179483413696,L, + 259797138750,0.698185980319977,L, + 261721562000,0.698192715644836,L, + 263645985250,0.698199629783630,L, + 265570408500,0.698206603527069,L, + 267494831750,0.698213338851929,L, + 269419255000,0.698219835758209,L, + 271343678250,0.698225855827332,L, + 273268101500,0.698231160640717,L, + 275192524750,0.698235750198364,L, + 277116948000,0.698239564895630,L, + 279041371250,0.698242485523224,L, + 280965794500,0.698244571685791,L, + 282890217750,0.698245882987976,L, + 284814641000,0.698246300220490,L, + 286739064250,0.697669267654419,L, + 288663487500,0.695791900157928,L, + 290587910750,0.692390978336334,L, + 292512334000,0.687263906002045,L, + 294436757250,0.680271267890930,L, + 296361180500,0.671383738517761,L, + 298285603750,0.660709202289581,L, + 300210027000,0.648482859134674,L, + 302134450250,0.635020256042480,L, + 304058873500,0.620657086372375,L, + 305983296750,0.605699479579926,L, + 307907720000,0.590398967266083,L, + 309832143250,0.573564112186432,L, + 311756566500,0.553882300853729,L, + 313680989750,0.531431019306183,L, + 315605413000,0.506375610828400,L, + 317529836250,0.478987872600555,L, + 319454259500,0.449661135673523,L, + 321378682750,0.418916255235672,L, + 323303106000,0.387393474578857,L, + 325227529250,0.355826348066330,L, + 327151952500,0.324998438358307,L, + 329076375750,0.295688629150391,L, + 331000799000,0.268615394830704,L, + 332925222250,0.244389832019806,L, + 334849645500,0.223486244678497,L, + 336774068750,0.206232354044914,L, + 338698492000,0.192817032337189,L, + 340622915250,0.183308944106102,L, + 342547338500,0.177681133151054,L, + 344471761750,0.175835654139519,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.142116501927376 + KeyVer: 4005 + KeyCount: 162 + Key: + 0,0.142116501927376,L, + 1924423250,0.142184764146805,L, + 3848846500,0.142390191555023,L, + 5773269750,0.142733797430992,L, + 7697693000,0.143216237425804,L, + 9622116250,0.143838077783585,L, + 11546539500,0.144599527120590,L, + 13470962750,0.145500600337982,L, + 15395386000,0.146540865302086,L, + 17319809250,0.147719725966454,L, + 19244232500,0.149036124348640,L, + 21168655750,0.150488585233688,L, + 23093079000,0.152075290679932,L, + 25017502250,0.153793916106224,L, + 26941925500,0.155641615390778,L, + 28866348750,0.157615199685097,L, + 30790772000,0.159710809588432,L, + 32715195250,0.161924108862877,L, + 34639618500,0.164250180125237,L, + 36564041750,0.166683658957481,L, + 38488465000,0.169218465685844,L, + 40412888250,0.171848058700562,L, + 42337311500,0.174565345048904,L, + 44261734750,0.177362710237503,L, + 46186158000,0.180232018232346,L, + 48110581250,0.183164745569229,L, + 50035004500,0.186151817440987,L, + 51959427750,0.189183935523033,L, + 53883851000,0.192251339554787,L, + 55808274250,0.195344269275665,L, + 57732697500,0.198452472686768,L, + 59657120750,0.201565831899643,L, + 61581544000,0.204674035310745,L, + 63505967250,0.207766920328140,L, + 65430390500,0.210834383964539,L, + 67354813750,0.213866487145424,L, + 69279237000,0.216853603720665,L, + 71203660250,0.219786286354065,L, + 73128083500,0.222655579447746,L, + 75052506750,0.225452944636345,L, + 76976930000,0.228170245885849,L, + 78901353250,0.230799868702888,L, + 80825776500,0.233334690332413,L, + 82750199750,0.235768094658852,L, + 84674623000,0.238094225525856,L, + 86599046250,0.240307494997978,L, + 88523469500,0.242403134703636,L, + 90447892750,0.244376659393311,L, + 92372316000,0.246224418282509,L, + 94296739250,0.247943028807640,L, + 96221162500,0.249529734253883,L, + 98145585750,0.250982165336609,L, + 100070009000,0.252298533916473,L, + 101994432250,0.253477483987808,L, + 103918855500,0.254517704248428,L, + 105843278750,0.255418747663498,L, + 107767702000,0.256180197000504,L, + 109692125250,0.256802082061768,L, + 111616548500,0.257284522056580,L, + 113540971750,0.257628083229065,L, + 115465395000,0.257833540439606,L, + 117389818250,0.257901787757874,L, + 153953860000,0.257901787757874,L, + 155878283250,0.258644849061966,L, + 157802706500,0.260962992906570,L, + 159727129750,0.264954507350922,L, + 161651553000,0.270639032125473,L, + 163575976250,0.277918308973312,L, + 165500399500,0.286552935838699,L, + 167424822750,0.296176761388779,L, + 169349246000,0.306353062391281,L, + 171273669250,0.316651463508606,L, + 173198092500,0.326710879802704,L, + 175122515750,0.336269348859787,L, + 177046939000,0.345162242650986,L, + 178971362250,0.354214251041412,L, + 180895785500,0.364302873611450,L, + 182820208750,0.375383347272873,L, + 184744632000,0.387375652790070,L, + 186669055250,0.400156915187836,L, + 188593478500,0.413556873798370,L, + 190517901750,0.427356183528900,L, + 192442325000,0.441291034221649,L, + 194366748250,0.455065011978149,L, + 196291171500,0.468366414308548,L, + 198215594750,0.480890810489655,L, + 200140018000,0.492362827062607,L, + 202064441250,0.502553582191467,L, + 203988864500,0.511290967464447,L, + 205913287750,0.518462896347046,L, + 207837711000,0.524011969566345,L, + 209762134250,0.527928173542023,L, + 211686557500,0.530237317085266,L, + 213610980750,0.530992329120636,L, + 215535404000,0.529519200325012,L, + 217459827250,0.525068879127502,L, + 219384250500,0.517701148986816,L, + 221308673750,0.507665216922760,L, + 223233097000,0.495449900627136,L, + 225157520250,0.481794446706772,L, + 227081943500,0.467633992433548,L, + 229006366750,0.453978568315506,L, + 230930790000,0.441763252019882,L, + 232855213250,0.431727319955826,L, + 234779636500,0.424359500408173,L, + 236704059750,0.419909268617630,L, + 238628483000,0.418436139822006,L, + 240552906250,0.418899506330490,L, + 242477329500,0.420548677444458,L, + 244401752750,0.423590034246445,L, + 246326176000,0.427756667137146,L, + 248250599250,0.432503163814545,L, + 250175022500,0.437836349010468,L, + 252099445750,0.444078296422958,L, + 254023869000,0.451204359531403,L, + 255948292250,0.459162354469299,L, + 257872715500,0.467865467071533,L, + 259797138750,0.477188766002655,L, + 261721562000,0.486966371536255,L, + 263645985250,0.496994316577911,L, + 265570408500,0.507038891315460,L, + 267494831750,0.516850233078003,L, + 269419255000,0.526180207729340,L, + 271343678250,0.534799396991730,L, + 273268101500,0.542513132095337,L, + 275192524750,0.549169957637787,L, + 277116948000,0.554665029048920,L, + 279041371250,0.558937966823578,L, + 280965794500,0.561966598033905,L, + 282890217750,0.563759326934814,L, + 284814641000,0.564347088336945,L, + 286739064250,0.563880860805511,L, + 288663487500,0.562363445758820,L, + 290587910750,0.559614837169647,L, + 292512334000,0.555470764636993,L, + 294436757250,0.549819171428680,L, + 296361180500,0.542635917663574,L, + 298285603750,0.534008443355560,L, + 300210027000,0.524126648902893,L, + 302134450250,0.513245642185211,L, + 304058873500,0.501636803150177,L, + 305983296750,0.489547580480576,L, + 307907720000,0.477181196212769,L, + 309832143250,0.463574677705765,L, + 311756566500,0.447667092084885,L, + 313680989750,0.429521203041077,L, + 315605413000,0.409270554780960,L, + 317529836250,0.387134850025177,L, + 319454259500,0.363431900739670,L, + 321378682750,0.338582813739777,L, + 323303106000,0.313105016946793,L, + 325227529250,0.287591308355331,L, + 327151952500,0.262675076723099,L, + 329076375750,0.238985866308212,L, + 331000799000,0.217104390263557,L, + 332925222250,0.197524413466454,L, + 334849645500,0.180629357695580,L, + 336774068750,0.166684195399284,L, + 338698492000,0.155841439962387,L, + 340622915250,0.148156717419624,L, + 342547338500,0.143608078360558,L, + 344471761750,0.142116501927376,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireB_017" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.006819307804108 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.006819307804108,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000365078449 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000365078449,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.007775783538818 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.007775783538818,L, + 115465395000,0.007775783538818,L, + 117389818250,-0.003737330436707,L, + 119314241500,-0.003602743148804,L, + 121238664750,-0.003190398216248,L, + 123163088000,-0.002487301826477,L, + 125087511250,-0.001480698585510,L, + 127011934500,-0.000159263610840,L, + 128936357750,0.001487851142883,L, + 130860781000,0.003469109535217,L, + 132785204250,0.005791306495667,L, + 134709627500,0.008458614349365,L, + 136634050750,0.011471867561340,L, + 138558474000,0.014828443527222,L, + 140482897250,0.018521308898926,L, + 142407320500,0.022540092468262,L, + 144331743750,0.026869177818298,L, + 146256167000,0.031489372253418,L, + 148180590250,0.036377906799316,L, + 150105013500,0.041508436203003,L, + 152029436750,0.046852469444275,L, + 153953860000,0.052379608154297,L, + 155878283250,0.058058619499207,L, + 157802706500,0.063858985900879,L, + 159727129750,0.069750428199768,L, + 161651553000,0.075704216957092,L, + 163575976250,0.081694126129150,L, + 165500399500,0.087695360183716,L, + 167424822750,0.093686580657959,L, + 169349246000,0.099648714065552,L, + 171273669250,0.105564713478088,L, + 173198092500,0.111420869827271,L, + 175122515750,0.117205023765564,L, + 177046939000,0.122907876968384,L, + 178971362250,0.128847718238831,L, + 180895785500,0.135353922843933,L, + 182820208750,0.142412304878235,L, + 184744632000,0.149971842765808,L, + 186669055250,0.157934784889221,L, + 188593478500,0.166156172752380,L, + 190517901750,0.174453616142273,L, + 192442325000,0.182631850242615,L, + 194366748250,0.190510630607605,L, + 196291171500,0.197949767112732,L, + 198215594750,0.204857230186462,L, + 200140018000,0.211187720298767,L, + 202064441250,0.216932177543640,L, + 203988864500,0.222187876701355,L, + 205913287750,0.227042794227600,L, + 207837711000,0.231497168540955,L, + 209762134250,0.235557436943054,L, + 211686557500,0.239236712455750,L, + 213610980750,0.242557644844055,L, + 215535404000,0.245552182197571,L, + 217459827250,0.248262286186218,L, + 219384250500,0.250741124153137,L, + 221308673750,0.253052115440369,L, + 223233097000,0.255266308784485,L, + 225157520250,0.257460474967957,L, + 227081943500,0.259714722633362,L, + 229006366750,0.262107014656067,L, + 230930790000,0.264711499214172,L, + 232855213250,0.267594456672668,L, + 234779636500,0.270811915397644,L, + 236704059750,0.274409413337708,L, + 238628483000,0.278421044349670,L, + 240552906250,0.282870173454285,L, + 242477329500,0.287770628929138,L, + 244401752750,0.293127417564392,L, + 246326176000,0.298939347267151,L, + 248250599250,0.305199742317200,L, + 250175022500,0.311898827552795,L, + 252099445750,0.319000124931335,L, + 254023869000,0.326461434364319,L, + 255948292250,0.334246039390564,L, + 257872715500,0.342323422431946,L, + 259797138750,0.350666642189026,L, + 261721562000,0.359253048896790,L, + 263645985250,0.368061661720276,L, + 265570408500,0.377074599266052,L, + 267494831750,0.386274933815002,L, + 269419255000,0.395648121833801,L, + 271343678250,0.405179858207703,L, + 273268101500,0.414858460426331,L, + 275192524750,0.424671053886414,L, + 277116948000,0.434606432914734,L, + 279041371250,0.444653630256653,L, + 280965794500,0.454801440238953,L, + 282890217750,0.465038895606995,L, + 284814641000,0.475354552268982,L, + 286739064250,0.485736489295959,L, + 288663487500,0.496170878410339,L, + 290587910750,0.506643176078796,L, + 292512334000,0.517135024070740,L, + 294436757250,0.527625203132629,L, + 296361180500,0.538084149360657,L, + 298285603750,0.548473238945007,L, + 300210027000,0.558734297752380,L, + 302134450250,0.568772673606873,L, + 304058873500,0.578409790992737,L, + 305983296750,0.587214350700378,L, + 307907720000,0.593029618263245,L, + 309832143250,0.007775783538818,L, + 344471761750,0.007775783538818,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 65 + Key: + 0,0.000000000000000,L, + 115465395000,0.000000000000000,L, + 117389818250,0.000000842701296,L, + 119314241500,0.000000000000000,L, + 121238664750,-0.000000827536564,L, + 123163088000,-0.000000819022855,L, + 125087511250,0.000000000000000,L, + 128936357750,0.000000000000000,L, + 130860781000,-0.000000780109659,L, + 132785204250,0.000000000000000,L, + 136634050750,0.000000000000000,L, + 138558474000,-0.000000737132223,L, + 140482897250,-0.000000726419250,L, + 142407320500,-0.000000715902453,L, + 144331743750,-0.000000705667835,L, + 146256167000,0.000000000000000,L, + 148180590250,0.000000000000000,L, + 150105013500,-0.000000677418606,L, + 152029436750,0.000000000000000,L, + 153953860000,-0.000000661231161,L, + 155878283250,-0.000000654057254,L, + 157802706500,0.000000000000000,L, + 159727129750,0.000000000000000,L, + 161651553000,-0.000000636449653,L, + 163575976250,-0.000000631902070,L, + 165500399500,0.000000000000000,L, + 167424822750,0.000000000000000,L, + 169349246000,-0.000000622132169,L, + 171273669250,0.000000000000000,L, + 173198092500,-0.000000618704448,L, + 175122515750,-0.000000617866766,L, + 177046939000,-0.000000617591152,L, + 248250599250,-0.000000617591152,L, + 250175022500,0.000000000000000,L, + 252099445750,-0.000000621556515,L, + 254023869000,-0.000000626270198,L, + 255948292250,0.000000632665047,L, + 257872715500,-0.000000640693072,L, + 259797138750,0.000000000000000,L, + 263645985250,0.000000000000000,L, + 265570408500,-0.000000689359528,L, + 267494831750,-0.000000705983092,L, + 269419255000,0.000000000000000,L, + 271343678250,-0.000000745451842,L, + 273268101500,-0.000000768687702,L, + 275192524750,-0.000000794592378,L, + 277116948000,-0.000000823485453,L, + 279041371250,0.000000000000000,L, + 280965794500,-0.000000891872010,L, + 282890217750,-0.000000932414260,L, + 284814641000,0.000000000000000,L, + 286739064250,0.000000000000000,L, + 288663487500,-0.000001088575322,L, + 290587910750,0.000000000000000,L, + 292512334000,0.000000616689503,L, + 294436757250,-0.000001323380459,L, + 296361180500,0.000000000000000,L, + 298285603750,-0.000000776608861,L, + 300210027000,-0.000000850753239,L, + 302134450250,0.000000000000000,L, + 304058873500,0.000000000000000,L, + 305983296750,-0.000001168298241,L, + 307907720000,-0.000000633874319,L, + 309832143250,0.000000000000000,L, + 344471761750,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.362565249204636 + KeyVer: 4005 + KeyCount: 68 + Key: + 0,0.362565249204636,L, + 115465395000,0.362565249204636,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852510929108,L, + 123163088000,0.521214783191681,L, + 125087511250,0.527048408985138,L, + 127011934500,0.533340215682983,L, + 128936357750,0.540070772171021,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735898971558,L, + 134709627500,0.562595188617706,L, + 136634050750,0.570741891860962,L, + 138558474000,0.579118371009827,L, + 140482897250,0.587659001350403,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166947841644,L, + 152029436750,0.638069391250610,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652675032615662,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287315845490,L, + 161651553000,0.670731484889984,L, + 163575976250,0.675558507442474,L, + 165500399500,0.679747402667999,L, + 167424822750,0.683285653591156,L, + 169349246000,0.686167418956757,L, + 171273669250,0.688393294811249,L, + 173198092500,0.689968883991241,L, + 175122515750,0.690904319286346,L, + 177046939000,0.691212654113770,L, + 248250599250,0.691212654113770,L, + 250175022500,0.690068662166595,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633651256561,L, + 255948292250,0.674743831157684,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403481960297,L, + 261721562000,0.645202815532684,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251370429993,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655141353607,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537240028381348,L, + 277116948000,0.518390238285065,L, + 279041371250,0.498842507600784,L, + 280965794500,0.478641360998154,L, + 282890217750,0.457829594612122,L, + 284814641000,0.436449170112610,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151862382889,L, + 290587910750,0.369324505329132,L, + 292512334000,0.346111625432968,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887572765350,L, + 302134450250,0.227154567837715,L, + 304058873500,0.204073265194893,L, + 305983296750,0.182695999741554,L, + 307907720000,0.168364137411118,L, + 309832143250,0.362565249204636,L, + 344471761750,0.362565249204636,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.362565249204636 + KeyVer: 4005 + KeyCount: 68 + Key: + 0,0.362565249204636,L, + 115465395000,0.362565249204636,L, + 117389818250,0.506569564342499,L, + 119314241500,0.510969638824463,L, + 121238664750,0.515852510929108,L, + 123163088000,0.521214783191681,L, + 125087511250,0.527048408985138,L, + 127011934500,0.533340215682983,L, + 128936357750,0.540070831775665,L, + 130860781000,0.547213852405548,L, + 132785204250,0.554735958576202,L, + 134709627500,0.562595188617706,L, + 136634050750,0.570741951465607,L, + 138558474000,0.579118371009827,L, + 140482897250,0.587659001350403,L, + 142407320500,0.596291899681091,L, + 144331743750,0.604940176010132,L, + 146256167000,0.613523066043854,L, + 148180590250,0.621958971023560,L, + 150105013500,0.630166947841644,L, + 152029436750,0.638069391250610,L, + 153953860000,0.645593941211700,L, + 155878283250,0.652675032615662,L, + 157802706500,0.659255504608154,L, + 159727129750,0.665287315845490,L, + 161651553000,0.670731425285339,L, + 163575976250,0.675558507442474,L, + 165500399500,0.679747402667999,L, + 167424822750,0.683285653591156,L, + 169349246000,0.686167418956757,L, + 171273669250,0.688393294811249,L, + 173198092500,0.689968883991241,L, + 175122515750,0.690904319286346,L, + 177046939000,0.691212713718414,L, + 248250599250,0.691212713718414,L, + 250175022500,0.690068662166595,L, + 252099445750,0.686802923679352,L, + 254023869000,0.681633710861206,L, + 255948292250,0.674743831157684,L, + 257872715500,0.666289150714874,L, + 259797138750,0.656403481960297,L, + 261721562000,0.645202875137329,L, + 263645985250,0.632788896560669,L, + 265570408500,0.619251370429993,L, + 267494831750,0.604670047760010,L, + 269419255000,0.589116394519806,L, + 271343678250,0.572655141353607,L, + 273268101500,0.555344939231873,L, + 275192524750,0.537240028381348,L, + 277116948000,0.518390238285065,L, + 279041371250,0.498842477798462,L, + 280965794500,0.478641360998154,L, + 282890217750,0.457829594612122,L, + 284814641000,0.436449170112610,L, + 286739064250,0.414542078971863,L, + 288663487500,0.392151862382889,L, + 290587910750,0.369324535131454,L, + 292512334000,0.346111625432968,L, + 294436757250,0.322573006153107,L, + 296361180500,0.298783004283905,L, + 298285603750,0.274840295314789,L, + 300210027000,0.250887572765350,L, + 302134450250,0.227154567837715,L, + 304058873500,0.204073265194893,L, + 305983296750,0.182695984840393,L, + 307907720000,0.168364122509956,L, + 309832143250,0.362565249204636,L, + 344471761750,0.362565249204636,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.370854914188385 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,0.370854914188385,L, + 115465395000,0.370854914188385,L, + 117389818250,0.506569623947144,L, + 119314241500,0.510674118995667,L, + 121238664750,0.514811515808105,L, + 123163088000,0.518990337848663,L, + 125087511250,0.523219585418701,L, + 127011934500,0.527509510517120,L, + 128936357750,0.531871080398560,L, + 130860781000,0.536316335201263,L, + 132785204250,0.540857553482056,L, + 134709627500,0.545508146286011,L, + 136634050750,0.550281524658203,L, + 138558474000,0.555191099643707,L, + 140482897250,0.560250222682953,L, + 142407320500,0.565471231937408,L, + 144331743750,0.570865809917450,L, + 146256167000,0.576443612575531,L, + 148180590250,0.582212865352631,L, + 150105013500,0.588179945945740,L, + 152029436750,0.594348430633545,L, + 153953860000,0.600719749927521,L, + 155878283250,0.607293665409088,L, + 157802706500,0.614067077636719,L, + 159727129750,0.621035397052765,L, + 161651553000,0.628192424774170,L, + 163575976250,0.635530650615692,L, + 165500399500,0.643041729927063,L, + 167424822750,0.650716364383698,L, + 169349246000,0.658545434474945,L, + 171273669250,0.666518926620483,L, + 173198092500,0.674627482891083,L, + 175122515750,0.682861864566803,L, + 177046939000,0.691212713718414,L, + 178971362250,0.700581073760986,L, + 180895785500,0.711831986904144,L, + 182820208750,0.724810838699341,L, + 184744632000,0.739207923412323,L, + 186669055250,0.754532516002655,L, + 188593478500,0.770123064517975,L, + 190517901750,0.785207569599152,L, + 192442325000,0.799009859561920,L, + 194366748250,0.810864806175232,L, + 196291171500,0.820297896862030,L, + 198215594750,0.827048718929291,L, + 200140018000,0.831043481826782,L, + 202064441250,0.832345366477966,L, + 203988864500,0.831680715084076,L, + 205913287750,0.829649686813354,L, + 207837711000,0.826202630996704,L, + 209762134250,0.821301102638245,L, + 211686557500,0.814921379089355,L, + 213610980750,0.807059824466705,L, + 215535404000,0.797737002372742,L, + 217459827250,0.787002563476562,L, + 219384250500,0.774937629699707,L, + 221308673750,0.761656641960144,L, + 223233097000,0.747306287288666,L, + 225157520250,0.732061088085175,L, + 227081943500,0.716117262840271,L, + 229006366750,0.699684023857117,L, + 230930790000,0.682973563671112,L, + 232855213250,0.666191995143890,L, + 234779636500,0.649530827999115,L, + 236704059750,0.633161187171936,L, + 238628483000,0.617229819297791,L, + 240552906250,0.601857602596283,L, + 242477329500,0.587140500545502,L, + 244401752750,0.573150455951691,L, + 246326176000,0.559938669204712,L, + 248250599250,0.547538518905640,L, + 250175022500,0.535492420196533,L, + 252099445750,0.523339152336121,L, + 254023869000,0.511092364788055,L, + 255948292250,0.498763859272003,L, + 257872715500,0.486363798379898,L, + 259797138750,0.473901391029358,L, + 261721562000,0.461384683847427,L, + 263645985250,0.448821127414703,L, + 265570408500,0.436217576265335,L, + 267494831750,0.423580378293991,L, + 269419255000,0.410915702581406,L, + 271343678250,0.398229509592056,L, + 273268101500,0.385527759790421,L, + 275192524750,0.372816413640976,L, + 277116948000,0.360101610422134,L, + 279041371250,0.347389757633209,L, + 280965794500,0.334687918424606,L, + 282890217750,0.322003602981567,L, + 284814641000,0.309345334768295,L, + 286739064250,0.296723097562790,L, + 288663487500,0.284148395061493,L, + 290587910750,0.271635323762894,L, + 292512334000,0.259201407432556,L, + 294436757250,0.246869251132011,L, + 296361180500,0.234669402241707,L, + 298285603750,0.222644746303558,L, + 300210027000,0.210859894752502,L, + 302134450250,0.199421212077141,L, + 304058873500,0.188528925180435,L, + 305983296750,0.178665339946747,L, + 307907720000,0.172213599085808,L, + 309832143250,0.370854914188385,L, + 344471761750,0.370854914188385,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::fireA_002" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.014073014259338 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.014073014259338,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000122934580 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000122934580,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000119209290,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000000794129646 + KeyVer: 4005 + KeyCount: 157 + Key: + 0,-0.000000794129646,L, + 1924423250,0.000000000000000,L, + 3848846500,-0.000000794524747,L, + 5773269750,0.000000000000000,L, + 7697693000,0.000000795784908,L, + 9622116250,0.000000000000000,L, + 11546539500,-0.000000797997251,L, + 13470962750,0.000000000000000,L, + 15395386000,0.000000000000000,L, + 17319809250,-0.000000803114993,L, + 19244232500,0.000000000000000,L, + 21168655750,-0.000000807554131,L, + 23093079000,0.000000000000000,L, + 25017502250,-0.000000812543632,L, + 26941925500,-0.000000815157896,L, + 28866348750,-0.000000817808087,L, + 30790772000,0.000000000000000,L, + 34639618500,0.000000000000000,L, + 36564041750,-0.000000828270432,L, + 38488465000,-0.000000830939248,L, + 40412888250,0.000000000000000,L, + 42337311500,-0.000000837133798,L, + 44261734750,-0.000000840659889,L, + 46186158000,-0.000000844465359,L, + 48110581250,0.000000000000000,L, + 50035004500,0.000000000000000,L, + 51959427750,-0.000000857421259,L, + 53883851000,0.000000000000000,L, + 55808274250,0.000000867087295,L, + 57732697500,0.000000000000000,L, + 59657120750,0.000000000000000,L, + 61581544000,-0.000000882288922,L, + 63505967250,-0.000000887317252,L, + 65430390500,-0.000000892220904,L, + 67354813750,-0.000000896936470,L, + 69279237000,-0.000000901403496,L, + 71203660250,-0.000000905566816,L, + 73128083500,0.000000000000000,L, + 75052506750,-0.000000912796701,L, + 76976930000,0.000000000000000,L, + 78901353250,0.000000000000000,L, + 80825776500,-0.000000920422806,L, + 82750199750,0.000000000000000,L, + 84674623000,0.000000000000000,L, + 86599046250,-0.000000923861571,L, + 88523469500,-0.000000924085176,L, + 90447892750,0.000000000000000,L, + 96221162500,0.000000000000000,L, + 98145585750,-0.000000915621135,L, + 100070009000,0.000000000000000,L, + 103918855500,0.000000000000000,L, + 105843278750,-0.000000897637210,L, + 107767702000,-0.000000891957503,L, + 109692125250,-0.000000885952616,L, + 111616548500,0.000000000000000,L, + 115465395000,0.000000000000000,L, + 117389818250,-0.000000860517236,L, + 119314241500,0.000000000000000,L, + 123163088000,0.000000000000000,L, + 125087511250,-0.000000837171049,L, + 127011934500,-0.000000832228569,L, + 128936357750,-0.000000827746531,L, + 130860781000,-0.000000823757861,L, + 132785204250,-0.000000820285561,L, + 134709627500,-0.000000817344642,L, + 136634050750,0.000000000000000,L, + 140482897250,0.000000000000000,L, + 142407320500,-0.000000810976306,L, + 144331743750,-0.000000810716009,L, + 146256167000,0.000000000000000,L, + 148180590250,-0.000000812210259,L, + 150105013500,-0.000000814091316,L, + 152029436750,-0.000000816715960,L, + 153953860000,-0.000000820042057,L, + 155878283250,0.000000000000000,L, + 157802706500,-0.000000828449408,L, + 159727129750,0.000000833257033,L, + 161651553000,0.000000000000000,L, + 163575976250,0.000000000000000,L, + 165500399500,-0.000000847814915,L, + 167424822750,-0.000000852037878,L, + 169349246000,-0.000000855658672,L, + 171273669250,0.000000000000000,L, + 173198092500,0.000000000000000,L, + 175122515750,-0.000000861925739,L, + 177046939000,0.000000000000000,L, + 178971362250,-0.000000862076675,L, + 180895785500,0.000000000000000,L, + 186669055250,0.000000000000000,L, + 188593478500,-0.000000852400614,L, + 190517901750,-0.000000848958083,L, + 192442325000,0.000000000000000,L, + 203988864500,0.000000000000000,L, + 205913287750,-0.000000818443587,L, + 207837711000,-0.000000815581953,L, + 209762134250,0.000000000000000,L, + 211686557500,0.000000000000000,L, + 213610980750,-0.000000808028466,L, + 215535404000,0.000000000000000,L, + 217459827250,-0.000000802659028,L, + 219384250500,-0.000000800162369,L, + 221308673750,0.000000000000000,L, + 223233097000,-0.000000796270897,L, + 225157520250,0.000000000000000,L, + 227081943500,-0.000000794353099,L, + 229006366750,-0.000000794129646,L, + 230930790000,-0.000000794475995,L, + 232855213250,0.000000000000000,L, + 238628483000,0.000000000000000,L, + 240552906250,-0.000000806725100,L, + 242477329500,-0.000000811127548,L, + 244401752750,0.000000000000000,L, + 246326176000,-0.000000821312600,L, + 248250599250,-0.000000826832771,L, + 250175022500,0.000000000000000,L, + 252099445750,-0.000000837925833,L, + 254023869000,0.000000000000000,L, + 255948292250,0.000000000000000,L, + 257872715500,-0.000000852221739,L, + 259797138750,-0.000000855810423,L, + 261721562000,0.000000000000000,L, + 263645985250,-0.000000860705831,L, + 265570408500,0.000000000000000,L, + 267494831750,0.000000000000000,L, + 269419255000,-0.000000862272801,L, + 271343678250,0.000000000000000,L, + 273268101500,-0.000000861680251,L, + 275192524750,0.000000000000000,L, + 284814641000,0.000000000000000,L, + 286739064250,-0.000000854589293,L, + 288663487500,0.000000000000000,L, + 290587910750,-0.000000851181520,L, + 292512334000,0.000000000000000,L, + 294436757250,0.000000000000000,L, + 296361180500,-0.000001690358761,L, + 298285603750,-0.000000843002151,L, + 300210027000,0.000000000000000,L, + 302134450250,-0.000000838487850,L, + 304058873500,0.000000000000000,L, + 307907720000,0.000000000000000,L, + 309832143250,-0.000000829304392,L, + 311756566500,0.000000000000000,L, + 313680989750,-0.000000824870954,L, + 315605413000,0.000000000000000,L, + 317529836250,-0.000000820656642,L, + 319454259500,-0.000000818648974,L, + 321378682750,-0.000000816713416,L, + 323303106000,0.000000000000000,L, + 329076375750,0.000000000000000,L, + 331000799000,0.000000806323282,L, + 332925222250,0.000000000000000,L, + 334849645500,-0.000000801002697,L, + 336774068750,0.000000798616213,L, + 338698492000,0.000000000000000,L, + 340622915250,-0.000000795238565,L, + 342547338500,0.000000000000000,L, + 344471761750,-0.000000794129646,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.075106143951416 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,1.075106143951416,L, + 1924423250,1.074975728988647,L, + 3848846500,1.074571490287781,L, + 5773269750,1.073874711990356,L, + 7697693000,1.072869896888733,L, + 9622116250,1.071545243263245,L, + 11546539500,1.069895505905151,L, + 13470962750,1.067923903465271,L, + 15395386000,1.065643429756165,L, + 17319809250,1.063077688217163,L, + 19244232500,1.060260653495789,L, + 21168655750,1.057233929634094,L, + 23093079000,1.054044723510742,L, + 25017502250,1.050741910934448,L, + 26941925500,1.047372102737427,L, + 28866348750,1.043977975845337,L, + 30790772000,1.040596246719360,L, + 32715195250,1.037256479263306,L, + 34639618500,1.033982396125793,L, + 36564041750,1.030790925025940,L, + 38488465000,1.027480244636536,L, + 40412888250,1.023840665817261,L, + 42337311500,1.019877195358276,L, + 44261734750,1.015599370002747,L, + 46186158000,1.011022686958313,L, + 48110581250,1.006168365478516,L, + 50035004500,1.001064062118530,L, + 51959427750,0.995745897293091,L, + 53883851000,0.990256190299988,L, + 55808274250,0.984645545482635,L, + 57732697500,0.978970825672150,L, + 59657120750,0.973293840885162,L, + 61581544000,0.967680394649506,L, + 63505967250,0.962196648120880,L, + 65430390500,0.956908404827118,L, + 67354813750,0.951877474784851,L, + 69279237000,0.947160422801971,L, + 71203660250,0.942805826663971,L, + 73128083500,0.938854515552521,L, + 75052506750,0.935338258743286,L, + 76976930000,0.932279884815216,L, + 78901353250,0.929694175720215,L, + 80825776500,0.927588582038879,L, + 82750199750,0.925963878631592,L, + 84674623000,0.924815893173218,L, + 86599046250,0.924135923385620,L, + 88523469500,0.923912346363068,L, + 90447892750,0.924250185489655,L, + 92372316000,0.925270199775696,L, + 94296739250,0.926978349685669,L, + 96221162500,0.929374933242798,L, + 98145585750,0.932452976703644,L, + 100070009000,0.936197876930237,L, + 101994432250,0.940585136413574,L, + 103918855500,0.945579469203949,L, + 105843278750,0.951134443283081,L, + 107767702000,0.957190990447998,L, + 109692125250,0.963678658008575,L, + 111616548500,0.970515072345734,L, + 113540971750,0.977608501911163,L, + 115465395000,0.984859347343445,L, + 117389818250,0.992163360118866,L, + 119314241500,0.999414384365082,L, + 121238664750,1.006507754325867,L, + 123163088000,1.013344168663025,L, + 125087511250,1.019831776618958,L, + 127011934500,1.025888442993164,L, + 128936357750,1.031443357467651,L, + 130860781000,1.036437630653381,L, + 132785204250,1.040824890136719,L, + 134709627500,1.044569969177246,L, + 136634050750,1.047647953033447,L, + 138558474000,1.050044655799866,L, + 140482897250,1.051752567291260,L, + 142407320500,1.052772641181946,L, + 144331743750,1.053110599517822,L, + 146256167000,1.052628993988037,L, + 148180590250,1.051173210144043,L, + 150105013500,1.048744320869446,L, + 152029436750,1.045374035835266,L, + 153953860000,1.041133999824524,L, + 155878283250,1.036142826080322,L, + 157802706500,1.030568242073059,L, + 159727129750,1.024622201919556,L, + 161651553000,1.018548846244812,L, + 163575976250,1.012602925300598,L, + 165500399500,1.007028341293335,L, + 167424822750,1.002037167549133,L, + 169349246000,0.997797071933746,L, + 171273669250,0.994426786899567,L, + 173198092500,0.991997778415680,L, + 175122515750,0.990542054176331,L, + 177046939000,0.990060567855835,L, + 178971362250,0.990368604660034,L, + 180895785500,0.991312026977539,L, + 182820208750,0.992912232875824,L, + 184744632000,0.995175778865814,L, + 186669055250,0.998088717460632,L, + 188593478500,1.001610755920410,L, + 190517901750,1.005672335624695,L, + 192442325000,1.010174036026001,L, + 194366748250,1.014992117881775,L, + 196291171500,1.019987106323242,L, + 198215594750,1.025017738342285,L, + 200140018000,1.029952287673950,L, + 202064441250,1.034677028656006,L, + 203988864500,1.039103388786316,L, + 205913287750,1.043167352676392,L, + 207837711000,1.046827554702759,L, + 209762134250,1.050061106681824,L, + 211686557500,1.053217411041260,L, + 213610980750,1.056613326072693,L, + 215535404000,1.060152769088745,L, + 217459827250,1.063681602478027,L, + 219384250500,1.067000508308411,L, + 221308673750,1.069900512695312,L, + 223233097000,1.072215080261230,L, + 225157520250,1.073853850364685,L, + 227081943500,1.074803709983826,L, + 229006366750,1.075106143951416,L, + 230930790000,1.074637413024902,L, + 232855213250,1.073220729827881,L, + 234779636500,1.070851802825928,L, + 236704059750,1.067546486854553,L, + 238628483000,1.063345551490784,L, + 240552906250,1.058320403099060,L, + 242477329500,1.052576303482056,L, + 244401752750,1.046253323554993,L, + 246326176000,1.039523363113403,L, + 250175022500,1.025643110275269,L, + 252099445750,1.018913149833679,L, + 254023869000,1.012590169906616,L, + 255948292250,1.006846070289612,L, + 257872715500,1.001821041107178,L, + 259797138750,0.997620105743408,L, + 261721562000,0.994314789772034,L, + 263645985250,0.991945981979370,L, + 265570408500,0.990529179573059,L, + 267494831750,0.990060567855835,L, + 269419255000,0.990143358707428,L, + 271343678250,0.990395903587341,L, + 273268101500,0.990824282169342,L, + 275192524750,0.991433739662170,L, + 277116948000,0.992228806018829,L, + 279041371250,0.993212819099426,L, + 280965794500,0.994387447834015,L, + 282890217750,0.995752930641174,L, + 284814641000,0.997307062149048,L, + 286739064250,0.999045550823212,L, + 288663487500,1.000961542129517,L, + 290587910750,1.003045320510864,L, + 292512334000,1.005284667015076,L, + 294436757250,1.007664799690247,L, + 296361180500,1.010168552398682,L, + 298285603750,1.012777566909790,L, + 300210027000,1.015471816062927,L, + 302134450250,1.018230199813843,L, + 304058873500,1.021032333374023,L, + 305983296750,1.023858189582825,L, + 307907720000,1.026688575744629,L, + 309832143250,1.029505729675293,L, + 311756566500,1.032293796539307,L, + 313680989750,1.035039067268372,L, + 315605413000,1.037729263305664,L, + 317529836250,1.040354251861572,L, + 319454259500,1.042905688285828,L, + 321378682750,1.045377254486084,L, + 323303106000,1.047763586044312,L, + 325227529250,1.050061106681824,L, + 327151952500,1.052558183670044,L, + 329076375750,1.055516958236694,L, + 331000799000,1.058847784996033,L, + 332925222250,1.062382936477661,L, + 334849645500,1.065881133079529,L, + 336774068750,1.069066286087036,L, + 338698492000,1.071694850921631,L, + 340622915250,1.073606967926025,L, + 342547338500,1.074739575386047,L, + 344471761750,1.075106143951416,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.075106143951416 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,1.075106143951416,L, + 1924423250,1.074952483177185,L, + 3848846500,1.074479937553406,L, + 5773269750,1.073672413825989,L, + 7697693000,1.072519063949585,L, + 9622116250,1.071014285087585,L, + 11546539500,1.069162011146545,L, + 13470962750,1.066976189613342,L, + 15395386000,1.064483284950256,L, + 17319809250,1.061721205711365,L, + 19244232500,1.058738231658936,L, + 21168655750,1.055591344833374,L, + 23093079000,1.052339434623718,L, + 25017502250,1.049042224884033,L, + 26941925500,1.045753955841064,L, + 28866348750,1.042521357536316,L, + 30790772000,1.039383172988892,L, + 32715195250,1.036369085311890,L, + 34639618500,1.033500313758850,L, + 36564041750,1.030791044235229,L, + 38488465000,1.028058290481567,L, + 40412888250,1.025113940238953,L, + 42337311500,1.021963357925415,L, + 44261734750,1.018614292144775,L, + 46186158000,1.015078306198120,L, + 48110581250,1.011371612548828,L, + 50035004500,1.007514715194702,L, + 51959427750,1.003533244132996,L, + 53883851000,0.999457657337189,L, + 55808274250,0.995323538780212,L, + 57732697500,0.991170108318329,L, + 59657120750,0.987040400505066,L, + 61581544000,0.982979059219360,L, + 63505967250,0.979031801223755,L, + 65430390500,0.975242078304291,L, + 67354813750,0.971651852130890,L, + 69279237000,0.968298017978668,L, + 71203660250,0.965212464332581,L, + 73128083500,0.962421298027039,L, + 75052506750,0.959944486618042,L, + 76976930000,0.957795739173889,L, + 78901353250,0.955983281135559,L, + 80825776500,0.954510629177094,L, + 82750199750,0.953376531600952,L, + 84674623000,0.952576696872711,L, + 86599046250,0.952103674411774,L, + 88523469500,0.951948344707489,L, + 90447892750,0.952212989330292,L, + 92372316000,0.953011631965637,L, + 94296739250,0.954349160194397,L, + 96221162500,0.956225454807281,L, + 98145585750,0.958635747432709,L, + 100070009000,0.961568057537079,L, + 101994432250,0.965003132820129,L, + 103918855500,0.968913733959198,L, + 105843278750,0.973263323307037,L, + 107767702000,0.978005528450012,L, + 109692125250,0.983085393905640,L, + 111616548500,0.988438367843628,L, + 113540971750,0.993992507457733,L, + 115465395000,0.999669849872589,L, + 117389818250,1.005388855934143,L, + 119314241500,1.011066317558289,L, + 121238664750,1.016620635986328,L, + 123163088000,1.021973490715027,L, + 125087511250,1.027053236961365,L, + 127011934500,1.031795740127563,L, + 128936357750,1.036144971847534,L, + 130860781000,1.040055751800537,L, + 132785204250,1.043490886688232,L, + 134709627500,1.046423196792603,L, + 136634050750,1.048833370208740,L, + 138558474000,1.050709843635559,L, + 140482897250,1.052047252655029,L, + 142407320500,1.052845835685730,L, + 144331743750,1.053110599517822,L, + 146256167000,1.052628993988037,L, + 148180590250,1.051173090934753,L, + 150105013500,1.048744320869446,L, + 152029436750,1.045373916625977,L, + 153953860000,1.041134119033813,L, + 155878283250,1.036142706871033,L, + 157802706500,1.030568122863770,L, + 159727129750,1.024622201919556,L, + 161651553000,1.018548846244812,L, + 163575976250,1.012602925300598,L, + 165500399500,1.007028222084045,L, + 167424822750,1.002037048339844,L, + 169349246000,0.997797071933746,L, + 171273669250,0.994426727294922,L, + 173198092500,0.991997778415680,L, + 175122515750,0.990541994571686,L, + 177046939000,0.990060567855835,L, + 178971362250,0.990368604660034,L, + 180895785500,0.991312086582184,L, + 182820208750,0.992912173271179,L, + 184744632000,0.995175778865814,L, + 186669055250,0.998088777065277,L, + 188593478500,1.001610755920410,L, + 190517901750,1.005672335624695,L, + 192442325000,1.010174036026001,L, + 194366748250,1.014992117881775,L, + 196291171500,1.019987225532532,L, + 198215594750,1.025017857551575,L, + 200140018000,1.029952287673950,L, + 202064441250,1.034677028656006,L, + 203988864500,1.039103388786316,L, + 205913287750,1.043167352676392,L, + 207837711000,1.046827435493469,L, + 209762134250,1.050061106681824,L, + 211686557500,1.053217530250549,L, + 213610980750,1.056613445281982,L, + 215535404000,1.060152769088745,L, + 217459827250,1.063681721687317,L, + 219384250500,1.067000508308411,L, + 221308673750,1.069900512695312,L, + 223233097000,1.072214961051941,L, + 225157520250,1.073853850364685,L, + 227081943500,1.074803709983826,L, + 229006366750,1.075106143951416,L, + 230930790000,1.074637413024902,L, + 232855213250,1.073220610618591,L, + 234779636500,1.070851922035217,L, + 236704059750,1.067546367645264,L, + 238628483000,1.063345551490784,L, + 240552906250,1.058320403099060,L, + 242477329500,1.052576303482056,L, + 244401752750,1.046253323554993,L, + 246326176000,1.039523363113403,L, + 248250599250,1.032583236694336,L, + 250175022500,1.025643229484558,L, + 252099445750,1.018913269042969,L, + 254023869000,1.012590169906616,L, + 255948292250,1.006846070289612,L, + 257872715500,1.001821041107178,L, + 259797138750,0.997620224952698,L, + 261721562000,0.994314789772034,L, + 263645985250,0.991945922374725,L, + 265570408500,0.990529179573059,L, + 267494831750,0.990060567855835,L, + 269419255000,0.990143358707428,L, + 271343678250,0.990395903587341,L, + 273268101500,0.990824282169342,L, + 275192524750,0.991433799266815,L, + 277116948000,0.992228865623474,L, + 279041371250,0.993212819099426,L, + 280965794500,0.994387507438660,L, + 282890217750,0.995752930641174,L, + 284814641000,0.997307062149048,L, + 286739064250,0.999045610427856,L, + 288663487500,1.000961661338806,L, + 290587910750,1.003045201301575,L, + 292512334000,1.005284667015076,L, + 294436757250,1.007664680480957,L, + 296361180500,1.010168552398682,L, + 298285603750,1.012777566909790,L, + 300210027000,1.015471696853638,L, + 302134450250,1.018230080604553,L, + 304058873500,1.021032452583313,L, + 305983296750,1.023858189582825,L, + 307907720000,1.026688575744629,L, + 309832143250,1.029505729675293,L, + 311756566500,1.032293796539307,L, + 313680989750,1.035039067268372,L, + 315605413000,1.037729263305664,L, + 317529836250,1.040354132652283,L, + 319454259500,1.042905688285828,L, + 321378682750,1.045377254486084,L, + 323303106000,1.047763705253601,L, + 325227529250,1.050061106681824,L, + 327151952500,1.052558183670044,L, + 329076375750,1.055517077445984,L, + 331000799000,1.058847784996033,L, + 332925222250,1.062383055686951,L, + 334849645500,1.065881013870239,L, + 336774068750,1.069066286087036,L, + 338698492000,1.071694731712341,L, + 340622915250,1.073606967926025,L, + 342547338500,1.074739575386047,L, + 344471761750,1.075106143951416,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.075106024742126 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,1.075106024742126,L, + 1924423250,1.074835419654846,L, + 3848846500,1.074017047882080,L, + 5773269750,1.072649359703064,L, + 7697693000,1.070743918418884,L, + 9622116250,1.068328738212585,L, + 11546539500,1.065451622009277,L, + 13470962750,1.062183260917664,L, + 15395386000,1.058615207672119,L, + 17319809250,1.054858922958374,L, + 19244232500,1.051038026809692,L, + 21168655750,1.047281861305237,L, + 23093079000,1.043713808059692,L, + 25017502250,1.040445446968079,L, + 26941925500,1.037568330764771,L, + 28866348750,1.035153031349182,L, + 30790772000,1.033247709274292,L, + 32715195250,1.031880021095276,L, + 34639618500,1.031061768531799,L, + 36564041750,1.030791044235229,L, + 38488465000,1.031750202178955,L, + 40412888250,1.034646511077881,L, + 42337311500,1.039496183395386,L, + 44261734750,1.046296596527100,L, + 46186158000,1.055021047592163,L, + 48110581250,1.065614700317383,L, + 50035004500,1.077990174293518,L, + 51959427750,1.092023491859436,L, + 53883851000,1.107552170753479,L, + 55808274250,1.124374151229858,L, + 57732697500,1.142248868942261,L, + 59657120750,1.160902500152588,L, + 61581544000,1.180035114288330,L, + 63505967250,1.199329257011414,L, + 65430390500,1.218461751937866,L, + 67354813750,1.237115621566772,L, + 69279237000,1.254990100860596,L, + 71203660250,1.271812081336975,L, + 73128083500,1.287340760231018,L, + 75052506750,1.301374077796936,L, + 76976930000,1.313749670982361,L, + 78901353250,1.324343323707581,L, + 80825776500,1.333067655563354,L, + 82750199750,1.339867949485779,L, + 84674623000,1.344717860221863,L, + 86599046250,1.347614049911499,L, + 88523469500,1.348573327064514,L, + 90447892750,1.348004102706909,L, + 92372316000,1.346277475357056,L, + 94296739250,1.343367695808411,L, + 96221162500,1.339257597923279,L, + 98145585750,1.333938598632812,L, + 100070009000,1.327414035797119,L, + 101994432250,1.319701313972473,L, + 103918855500,1.310832738876343,L, + 105843278750,1.300859689712524,L, + 107767702000,1.289851784706116,L, + 109692125250,1.277898430824280,L, + 111616548500,1.265108942985535,L, + 113540971750,1.251609802246094,L, + 115465395000,1.237542748451233,L, + 117389818250,1.223061084747314,L, + 119314241500,1.208324313163757,L, + 121238664750,1.193494677543640,L, + 123163088000,1.178729891777039,L, + 125087511250,1.164180278778076,L, + 127011934500,1.149984478950500,L, + 128936357750,1.136265873908997,L, + 130860781000,1.123132109642029,L, + 132785204250,1.110672950744629,L, + 134709627500,1.098961234092712,L, + 136634050750,1.088053703308105,L, + 138558474000,1.077992200851440,L, + 140482897250,1.068804860115051,L, + 142407320500,1.060508608818054,L, + 144331743750,1.053110599517822,L, + 146256167000,1.046236634254456,L, + 148180590250,1.039541721343994,L, + 150105013500,1.033077001571655,L, + 152029436750,1.026898741722107,L, + 153953860000,1.021069526672363,L, + 155878283250,1.015653491020203,L, + 157802706500,1.010710477828979,L, + 159727129750,1.006292104721069,L, + 161651553000,1.002433776855469,L, + 163575976250,0.999151647090912,L, + 165500399500,0.996440947055817,L, + 167424822750,0.994277238845825,L, + 169349246000,0.992621481418610,L, + 171273669250,0.991424858570099,L, + 173198092500,0.990634143352509,L, + 175122515750,0.990196108818054,L, + 177046939000,0.990060567855835,L, + 178971362250,0.992901921272278,L, + 180895785500,1.001492381095886,L, + 182820208750,1.015825867652893,L, + 184744632000,1.035714268684387,L, + 186669055250,1.060734629631042,L, + 188593478500,1.090187668800354,L, + 190517901750,1.123083949089050,L, + 192442325000,1.158170461654663,L, + 194366748250,1.194009900093079,L, + 196291171500,1.229096412658691,L, + 198215594750,1.261992692947388,L, + 200140018000,1.291445732116699,L, + 202064441250,1.316465973854065,L, + 203988864500,1.336354374885559,L, + 205913287750,1.350688099861145,L, + 207837711000,1.359278559684753,L, + 209762134250,1.362119793891907,L, + 211686557500,1.356670141220093,L, + 213610980750,1.340123295783997,L, + 215535404000,1.312879800796509,L, + 217459827250,1.276629209518433,L, + 219384250500,1.234558820724487,L, + 221308673750,1.190976500511169,L, + 223233097000,1.150340914726257,L, + 225157520250,1.116236329078674,L, + 227081943500,1.090859174728394,L, + 229006366750,1.075106024742126,L, + 230930790000,1.064484477043152,L, + 232855213250,1.054440140724182,L, + 234779636500,1.045030236244202,L, + 236704059750,1.036310553550720,L, + 238628483000,1.028334617614746,L, + 240552906250,1.021147608757019,L, + 242477329500,1.014783024787903,L, + 244401752750,1.009258151054382,L, + 246326176000,1.004569530487061,L, + 248250599250,1.000691294670105,L, + 250175022500,0.997574090957642,L, + 252099445750,0.995148956775665,L, + 254023869000,0.993331789970398,L, + 255948292250,0.992029190063477,L, + 257872715500,0.991145610809326,L, + 259797138750,0.990588188171387,L, + 261721562000,0.990271687507629,L, + 263645985250,0.990119755268097,L, + 265570408500,0.990067601203918,L, + 267494831750,0.990060567855835,L, + 269419255000,0.990969657897949,L, + 271343678250,0.993713676929474,L, + 273268101500,0.998308718204498,L, + 275192524750,1.004756927490234,L, + 277116948000,1.013043522834778,L, + 279041371250,1.023132562637329,L, + 280965794500,1.034965634346008,L, + 282890217750,1.048457503318787,L, + 284814641000,1.063494563102722,L, + 286739064250,1.079932570457458,L, + 288663487500,1.097597718238831,L, + 290587910750,1.116285920143127,L, + 292512334000,1.135767698287964,L, + 294436757250,1.155791521072388,L, + 298285603750,1.196388959884644,L, + 300210027000,1.216412544250488,L, + 302134450250,1.235894322395325,L, + 304058873500,1.254582643508911,L, + 305983296750,1.272247672080994,L, + 307907720000,1.288685917854309,L, + 309832143250,1.303722977638245,L, + 311756566500,1.317214727401733,L, + 313680989750,1.329047918319702,L, + 315605413000,1.339136838912964,L, + 317529836250,1.347423434257507,L, + 319454259500,1.353871464729309,L, + 321378682750,1.358466625213623,L, + 323303106000,1.361210823059082,L, + 325227529250,1.362119793891907,L, + 327151952500,1.355756878852844,L, + 329076375750,1.336607336997986,L, + 331000799000,1.305471420288086,L, + 332925222250,1.264747023582458,L, + 334849645500,1.218612909317017,L, + 336774068750,1.172478914260864,L, + 338698492000,1.131754517555237,L, + 340622915250,1.100618481636047,L, + 342547338500,1.081469058990479,L, + 344471761750,1.075106024742126,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_022" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 103 + Key: + 0,-0.063678026199341,L, + 51959427750,-0.063678026199341,L, + 53883851000,0.011905193328857,L, + 55808274250,0.011491060256958,L, + 57732697500,0.011004209518433,L, + 59657120750,0.010502576828003,L, + 61581544000,0.009993076324463,L, + 63505967250,0.009478330612183,L, + 65430390500,0.008960247039795,L, + 67354813750,0.008439540863037,L, + 69279237000,0.007916450500488,L, + 71203660250,0.007391929626465,L, + 73128083500,0.006865739822388,L, + 75052506750,0.006338357925415,L, + 76976930000,0.005810022354126,L, + 78901353250,0.005280733108521,L, + 80825776500,0.004750728607178,L, + 82750199750,0.004220008850098,L, + 84674623000,0.003688573837280,L, + 86599046250,0.003156423568726,L, + 88523469500,0.002624034881592,L, + 92372316000,0.001557350158691,L, + 94296739250,0.001023530960083,L, + 98145585750,-0.000045537948608,L, + 100070009000,-0.000580549240112,L, + 101994432250,-0.001115798950195,L, + 103918855500,-0.001651287078857,L, + 107767702000,-0.002723217010498,L, + 109692125250,-0.003259420394897,L, + 113540971750,-0.004332780838013,L, + 115465395000,-0.004869699478149,L, + 119314241500,-0.005944013595581,L, + 121238664750,-0.006481409072876,L, + 125087511250,-0.007556676864624,L, + 127011934500,-0.008094549179077,L, + 132785204250,-0.009708881378174,L, + 136634050750,-0.010785579681396,L, + 140482897250,-0.011862754821777,L, + 142407320500,-0.012401580810547,L, + 144331743750,-0.012940168380737,L, + 148180590250,-0.014018297195435,L, + 150105013500,-0.014557123184204,L, + 152029436750,-0.015096426010132,L, + 153953860000,-0.015635251998901,L, + 155878283250,-0.016174793243408,L, + 157802706500,-0.016713857650757,L, + 163575976250,-0.018331766128540,L, + 175122515750,-0.021569013595581,L, + 177046939000,-0.022108793258667,L, + 180895785500,-0.023187875747681,L, + 184744632000,-0.024267435073853,L, + 186669055250,-0.024806976318359,L, + 188593478500,-0.025346755981445,L, + 190517901750,-0.025886297225952,L, + 194366748250,-0.026965856552124,L, + 196291171500,-0.027505397796631,L, + 200140018000,-0.028584957122803,L, + 203988864500,-0.029664039611816,L, + 205913287750,-0.030203819274902,L, + 217459827250,-0.033441066741943,L, + 225157520250,-0.035598278045654,L, + 229006366750,-0.036676406860352,L, + 230930790000,-0.037215709686279,L, + 232855213250,-0.037754535675049,L, + 236704059750,-0.038832664489746,L, + 238628483000,-0.039371252059937,L, + 240552906250,-0.039910078048706,L, + 244401752750,-0.040987253189087,L, + 248250599250,-0.042063951492310,L, + 254023869000,-0.043678283691406,L, + 255948292250,-0.044216156005859,L, + 259797138750,-0.045291423797607,L, + 261721562000,-0.045828819274902,L, + 265570408500,-0.046903133392334,L, + 267494831750,-0.047440052032471,L, + 271343678250,-0.048513412475586,L, + 273268101500,-0.049049615859985,L, + 277116948000,-0.050121545791626,L, + 279041371250,-0.050657033920288,L, + 280965794500,-0.051192283630371,L, + 282890217750,-0.051727294921875,L, + 286739064250,-0.052796363830566,L, + 288663487500,-0.053330183029175,L, + 292512334000,-0.054396867752075,L, + 294436757250,-0.054929256439209,L, + 296361180500,-0.055461406707764,L, + 298285603750,-0.055992841720581,L, + 300210027000,-0.056523561477661,L, + 302134450250,-0.057053565979004,L, + 304058873500,-0.057582855224609,L, + 305983296750,-0.058111190795898,L, + 307907720000,-0.058638572692871,L, + 309832143250,-0.059164762496948,L, + 311756566500,-0.059689283370972,L, + 313680989750,-0.060212373733521,L, + 315605413000,-0.060733079910278,L, + 317529836250,-0.061251163482666,L, + 319454259500,-0.061765909194946,L, + 321378682750,-0.062275409698486,L, + 323303106000,-0.062777042388916,L, + 325227529250,-0.063263893127441,L, + 327151952500,-0.063678026199341,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339401245117 + KeyVer: 4005 + KeyCount: 6 + Key: + 0,-0.087339401245117,L, + 51959427750,-0.087339401245117,L, + 53883851000,-0.087339162826538,L, + 325227529250,-0.087339162826538,L, + 327151952500,-0.087339401245117,L, + 344471761750,-0.087339401245117,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.570241451263428 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,-0.570241451263428,L, + 51959427750,-0.570241451263428,L, + 53883851000,0.020681977272034,L, + 55808274250,0.022182822227478,L, + 57732697500,0.023703336715698,L, + 59657120750,0.025243878364563,L, + 61581544000,0.026805162429810,L, + 63505967250,0.028388023376465,L, + 65430390500,0.029992818832397,L, + 67354813750,0.031620621681213,L, + 69279237000,0.033271908760071,L, + 71203660250,0.034947752952576,L, + 73128083500,0.036648750305176,L, + 75052506750,0.038375973701477,L, + 76976930000,0.040130257606506,L, + 78901353250,0.041912794113159,L, + 80825776500,0.043724417686462,L, + 82750199750,0.045566439628601,L, + 84674623000,0.047440052032471,L, + 86599046250,0.049346566200256,L, + 88523469500,0.051287174224854,L, + 90447892750,0.053263545036316,L, + 92372316000,0.055277228355408,L, + 94296739250,0.057329773902893,L, + 96221162500,0.059423208236694,L, + 98145585750,0.061559319496155,L, + 100070009000,0.063740253448486,L, + 101994432250,0.065968155860901,L, + 103918855500,0.068245768547058,L, + 105843278750,0.070575356483459,L, + 107767702000,0.072960138320923,L, + 109692125250,0.075403094291687,L, + 111616548500,0.077907562255859,L, + 113540971750,0.080477476119995,L, + 115465395000,0.083116888999939,L, + 117389818250,0.085830450057983,L, + 119314241500,0.088622927665710,L, + 121238664750,0.091500043869019,L, + 123163088000,0.094468116760254,L, + 125087511250,0.097533822059631,L, + 127011934500,0.100705146789551,L, + 128936357750,0.103990554809570,L, + 130860781000,0.107400059700012,L, + 132785204250,0.110944747924805,L, + 134709627500,0.114637613296509,L, + 136634050750,0.118492960929871,L, + 138558474000,0.122527599334717,L, + 140482897250,0.126760959625244,L, + 142407320500,0.131215453147888,L, + 144331743750,0.135916829109192,L, + 146256167000,0.140895009040833,L, + 148180590250,0.146184444427490,L, + 150105013500,0.151823759078979,L, + 152029436750,0.157855510711670,L, + 153953860000,0.164323210716248,L, + 155878283250,0.171265721321106,L, + 157802706500,0.178704977035522,L, + 159727129750,0.186625361442566,L, + 161651553000,0.194946169853210,L, + 163575976250,0.203497052192688,L, + 165500399500,0.212026596069336,L, + 167424822750,0.220256924629211,L, + 169349246000,0.227962851524353,L, + 171273669250,0.235020399093628,L, + 173198092500,0.241793870925903,L, + 175122515750,0.248681783676147,L, + 177046939000,0.255688309669495,L, + 178971362250,0.262817144393921,L, + 180895785500,0.270072460174561,L, + 182820208750,0.277458429336548,L, + 184744632000,0.284978508949280,L, + 186669055250,0.292636752128601,L, + 188593478500,0.300436615943909,L, + 190517901750,0.308381915092468,L, + 192442325000,0.316475629806519,L, + 194366748250,0.324720859527588,L, + 196291171500,0.333120226860046,L, + 198215594750,0.341675639152527,L, + 200140018000,0.350389480590820,L, + 202064441250,0.359262347221375,L, + 203988864500,0.368295788764954,L, + 205913287750,0.377489328384399,L, + 207837711000,0.386842846870422,L, + 209762134250,0.396355152130127,L, + 211686557500,0.406024336814880,L, + 213610980750,0.415848135948181,L, + 215535404000,0.425822973251343,L, + 217459827250,0.435945272445679,L, + 219384250500,0.446210145950317,L, + 221308673750,0.456612586975098,L, + 223233097000,0.467146515846252,L, + 225157520250,0.477805972099304,L, + 227081943500,0.488584160804749,L, + 229006366750,0.499473690986633,L, + 230930790000,0.510467052459717,L, + 232855213250,0.521556854248047,L, + 234779636500,0.532734990119934,L, + 236704059750,0.543993711471558,L, + 238628483000,0.555325269699097,L, + 240552906250,0.566721796989441,L, + 242477329500,0.578175783157349,L, + 244401752750,0.589679837226868,L, + 246326176000,0.601227045059204,L, + 248250599250,0.612810015678406,L, + 250175022500,0.624422550201416,L, + 252099445750,0.636058807373047,L, + 254023869000,0.647712469100952,L, + 255948292250,0.659378647804260,L, + 257872715500,0.671051740646362,L, + 259797138750,0.682727575302124,L, + 261721562000,0.694401383399963,L, + 263645985250,0.706069827079773,L, + 265570408500,0.717728614807129,L, + 267494831750,0.729374647140503,L, + 269419255000,0.741005063056946,L, + 271343678250,0.752798676490784,L, + 273268101500,0.764907240867615,L, + 275192524750,0.777295708656311,L, + 277116948000,0.789932847023010,L, + 279041371250,0.802792906761169,L, + 280965794500,0.815852999687195,L, + 282890217750,0.829093813896179,L, + 284814641000,0.842497229576111,L, + 286739064250,0.856047511100769,L, + 288663487500,0.869729638099670,L, + 290587910750,0.883530974388123,L, + 292512334000,0.897437691688538,L, + 294436757250,0.911438822746277,L, + 296361180500,0.925521969795227,L, + 298285603750,0.939675688743591,L, + 300210027000,0.953887820243835,L, + 302134450250,0.968146443367004,L, + 304058873500,0.982438206672668,L, + 305983296750,0.996749520301819,L, + 307907720000,1.011063456535339,L, + 309832143250,1.025361657142639,L, + 311756566500,1.039621710777283,L, + 313680989750,1.053814291954041,L, + 315605413000,1.067902445793152,L, + 317529836250,1.081833481788635,L, + 319454259500,1.095528960227966,L, + 321378682750,1.108861327171326,L, + 323303106000,1.121590733528137,L, + 325227529250,1.133138775825500,L, + 327151952500,1.140673995018005,L, + 329076375750,-0.570241451263428,L, + 344471761750,-0.570241451263428,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670459033899608 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,30.670459033899608,L, + 51959427750,30.670459033899608,L, + 53883851000,33.480948688667006,L, + 55808274250,33.465543196994062,L, + 57732697500,33.447453440977306,L, + 59657120750,33.428793364164861,L, + 61581544000,33.409846419407273,L, + 63505967250,33.390708229352924,L, + 65430390500,33.371440265704344,L, + 67354813750,33.352080094501972,L, + 69279237000,33.332634545934972,L, + 71203660250,33.313124110570861,L, + 73128083500,33.293559033693384,L, + 75052506750,33.273956390775481,L, + 76976930000,33.254312766722549,L, + 78901353250,33.234634991723773,L, + 80825776500,33.214919650684557,L, + 82750199750,33.195183819077833,L, + 84674623000,33.175417251619848,L, + 86599046250,33.155633608688930,L, + 88523469500,33.135826060095923,L, + 90447892750,33.116008266219161,L, + 92372316000,33.096169981774885,L, + 94296739250,33.076321452046862,L, + 96221162500,33.056445601562153,L, + 98145585750,33.036566335982855,L, + 100070009000,33.016680240214392,L, + 101994432250,32.996773653878421,L, + 103918855500,32.976860237353279,L, + 105843278750,32.956936575544376,L, + 107767702000,32.937002668451726,L, + 109692125250,32.917061931169897,L, + 111616548500,32.897110948604322,L, + 113540971750,32.877149720754986,L, + 115465395000,32.857191908000239,L, + 117389818250,32.837220434867149,L, + 119314241500,32.817245546639477,L, + 121238664750,32.797260413128051,L, + 123163088000,32.777265034332864,L, + 125087511250,32.757273070632266,L, + 127011934500,32.737270861647914,L, + 128936357750,32.717272067758145,L, + 130860781000,32.697263028584622,L, + 134709627500,32.657231289859233,L, + 136634050750,32.637212005401956,L, + 138558474000,32.617185890755508,L, + 140482897250,32.597156361014470,L, + 144331743750,32.557090471343237,L, + 146256167000,32.537054111413035,L, + 148180590250,32.517010921293661,L, + 150105013500,32.496971146268869,L, + 152029436750,32.476927956149495,L, + 153953860000,32.456881350935539,L, + 155878283250,32.436824500437822,L, + 157802706500,32.416777895223866,L, + 159727129750,32.396717629631567,L, + 161651553000,32.376664194228439,L, + 165500399500,32.336550493233013,L, + 167424822750,32.316490227640713,L, + 171273669250,32.276362866266943,L, + 173198092500,32.256302600674644,L, + 177046939000,32.216175239300881,L, + 178971362250,32.196104728424828,L, + 180895785500,32.176041047737939,L, + 188593478500,32.095772664612070,L, + 190517901750,32.075702153736010,L, + 192442325000,32.055635057954547,L, + 194366748250,32.035564547078494,L, + 196291171500,32.015497451297023,L, + 198215594750,31.995433770610138,L, + 200140018000,31.975363259734085,L, + 202064441250,31.955299579047203,L, + 203988864500,31.935232483265732,L, + 205913287750,31.915168802578851,L, + 207837711000,31.895101706797380,L, + 213610980750,31.834920910020486,L, + 215535404000,31.814853814239015,L, + 219384250500,31.774740113243588,L, + 223233097000,31.734633242437333,L, + 225157520250,31.714576391939620,L, + 230930790000,31.654436576297744,L, + 232855213250,31.634396801272953,L, + 234779636500,31.614353611153579,L, + 236704059750,31.594317251223377,L, + 240552906250,31.554251361552140,L, + 242477329500,31.534221831811106,L, + 244401752750,31.514199132259243,L, + 246326176000,31.494179847801963,L, + 248250599250,31.474157148250100,L, + 250175022500,31.454141278887406,L, + 254023869000,31.414130030729531,L, + 255948292250,31.394134651934344,L, + 257872715500,31.374142688233746,L, + 259797138750,31.354147309438563,L, + 261721562000,31.334169006116305,L, + 263645985250,31.314183872604875,L, + 265570408500,31.294215814566371,L, + 269419255000,31.254293358867706,L, + 271343678250,31.234349206491299,L, + 273268101500,31.214408469209474,L, + 275192524750,31.194471147022234,L, + 277116948000,31.174554315402506,L, + 279041371250,31.154634068688193,L, + 280965794500,31.134727482352218,L, + 282890217750,31.114837971489170,L, + 284814641000,31.094955290815292,L, + 286739064250,31.075089685614337,L, + 288663487500,31.055237740791725,L, + 290587910750,31.035396041252866,L, + 292512334000,31.015574832281519,L, + 294436757250,30.995774113877680,L, + 296361180500,30.975987055852180,L, + 298285603750,30.956230733677948,L, + 300210027000,30.936491486976639,L, + 302134450250,30.916779561032012,L, + 304058873500,30.897098370938647,L, + 305983296750,30.877458161980304,L, + 307907720000,30.857845273778640,L, + 309832143250,30.838276781806581,L, + 311756566500,30.818773176631638,L, + 313680989750,30.799331043159224,L, + 315605413000,30.779960626673098,L, + 317529836250,30.760699493213689,L, + 319454259500,30.741551057875586,L, + 321378682750,30.722614358401753,L, + 323303106000,30.703957696683890,L, + 325227529250,30.685864525572551,L, + 327151952500,30.670462448994193,L, + 329076375750,30.670459033899608,L, + 344471761750,30.670459033899608,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,94.284634812205056,L, + 51959427750,94.284634812205056,L, + 53883851000,-31.734858638679942,L, + 55808274250,-31.044319683403476,L, + 57732697500,-30.232848813777522,L, + 59657120750,-29.396270168762637,L, + 61581544000,-28.546645862433046,L, + 63505967250,-27.688688725316052,L, + 65430390500,-26.824818351925128,L, + 67354813750,-25.956479327269729,L, + 69279237000,-25.084610802360732,L, + 71203660250,-24.209870182905750,L, + 73128083500,-23.332733874599388,L, + 75052506750,-22.453560462373069,L, + 76976930000,-21.572626568888186,L, + 78901353250,-20.690157590387344,L, + 80825776500,-19.806336234430841,L, + 82750199750,-18.921305934991249,L, + 84674623000,-18.035196465662796,L, + 86599046250,-17.148108571735740,L, + 88523469500,-16.260137875858462,L, + 90447892750,-15.371357802564535,L, + 92372316000,-14.481834946198372,L, + 94296739250,-13.591632486009795,L, + 96221162500,-12.700801648417578,L, + 98145585750,-11.809388537198616,L, + 100070009000,-10.917433279714286,L, + 101994432250,-10.024976003325961,L, + 103918855500,-9.132050005205844,L, + 105843278750,-8.238686021205202,L, + 107767702000,-7.344908810759773,L, + 109692125250,-6.450745694626240,L, + 111616548500,-5.556226554882221,L, + 113540971750,-4.661365478792877,L, + 115465395000,-3.766180822491606,L, + 117389818250,-2.870696064753677,L, + 119314241500,-1.974926360061312,L, + 121238664750,-1.078885688957969,L, + 123163088000,-0.182591460421902,L, + 125087511250,0.713942651828335,L, + 127011934500,1.610706202405788,L, + 128936357750,2.507684530416126,L, + 130860781000,3.404866376719389,L, + 132785204250,4.302234132234124,L, + 134709627500,5.199795267479733,L, + 136634050750,6.097521181039069,L, + 138558474000,6.995414861119893,L, + 140482897250,7.893458378475635,L, + 142407320500,8.791656428861346,L, + 144331743750,9.689991083030460,L, + 146256167000,10.588455510793802,L, + 148180590250,11.487041174414912,L, + 150105013500,12.385743805025559,L, + 152029436750,13.284552303568340,L, + 153953860000,14.183468377590549,L, + 155878283250,15.082476659166554,L, + 157802706500,15.981583978485522,L, + 159727129750,16.880766429885362,L, + 161651553000,17.780032551102533,L, + 163575976250,18.679370389305991,L, + 165500399500,19.578774821853855,L, + 167424822750,20.478245848746127,L, + 169349246000,21.377764686962589,L, + 171273669250,22.277348411976167,L, + 173198092500,23.176971410577469,L, + 175122515750,24.076635390313793,L, + 177046939000,24.976331813448677,L, + 178971362250,25.876064095076700,L, + 180895785500,26.775828820103282,L, + 182820208750,27.675612328150081,L, + 186669055250,29.475230570662454,L, + 188593478500,30.375056767391566,L, + 190517901750,31.274889794309850,L, + 192442325000,32.174726236322719,L, + 194366748250,33.074552433051828,L, + 196291171500,33.974368384497183,L, + 198215594750,34.874167260469619,L, + 200140018000,35.773955891158295,L, + 202064441250,36.673717201090291,L, + 203988864500,37.573447775171026,L, + 205913287750,38.473154443589657,L, + 207837711000,39.372823545967861,L, + 209762134250,40.272431176643536,L, + 211686557500,41.172021731846279,L, + 213610980750,42.071543985157327,L, + 215535404000,42.971001351671262,L, + 217459827250,43.870410906861004,L, + 219384250500,44.769752160159044,L, + 221308673750,45.669008036092457,L, + 223233097000,46.568195610134175,L, + 225157520250,47.467294391716685,L, + 227081943500,48.366311211029149,L, + 229006366750,49.265218747314897,L, + 230930790000,50.164034076046846,L, + 232855213250,51.062753782130422,L, + 234779636500,51.961319808957668,L, + 236704059750,52.859797043325699,L, + 238628483000,53.758120598437415,L, + 240552906250,54.656324625238646,L, + 242477329500,55.554368142594392,L, + 244401752750,56.452257980693808,L, + 246326176000,57.349983894253143,L, + 248250599250,58.247552713461566,L, + 250175022500,59.144923457184063,L, + 252099445750,60.042102955609799,L, + 254023869000,60.939077548360437,L, + 255948292250,61.835847235435971,L, + 257872715500,62.732364205512219,L, + 259797138750,63.628676269913363,L, + 261721562000,64.524708296558543,L, + 263645985250,65.420473945826089,L, + 265570408500,66.315959557337663,L, + 267494831750,67.211144640525760,L, + 269419255000,68.106008704822855,L, + 271343678250,69.000524429472293,L, + 273268101500,69.894691814474058,L, + 275192524750,70.788456218314792,L, + 277116948000,71.681824471183660,L, + 279041371250,72.574755591945660,L, + 280965794500,73.467208599465749,L, + 282890217750,74.359163003176434,L, + 284814641000,75.250577821942684,L, + 286739064250,76.141418904818664,L, + 288663487500,77.031611119723493,L, + 290587910750,77.921133976089649,L, + 292512334000,78.809905511647116,L, + 294436757250,79.697884745260851,L, + 296361180500,80.584962393904149,L, + 298285603750,81.471097476441997,L, + 300210027000,82.356112407955962,L, + 302134450250,83.239938886554341,L, + 304058873500,84.122399327318718,L, + 305983296750,85.003357126465701,L, + 307907720000,85.882511755671800,L, + 309832143250,86.759644648883565,L, + 311756566500,87.634414296642532,L, + 313680989750,88.506246963058388,L, + 315605413000,89.374596232997533,L, + 317529836250,90.238478559219502,L, + 319454259500,91.096418620863574,L, + 321378682750,91.946053172476923,L, + 323303106000,92.782628402397222,L, + 325227529250,93.594095856928590,L, + 327151952500,94.284634812205056,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -2.955199165164953 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,-2.955199165164953,L, + 51959427750,-2.955199165164953,L, + 53883851000,0.259470989162184,L, + 55808274250,0.257312622704036,L, + 57732697500,0.254978618998599,L, + 59657120750,0.252467937509242,L, + 61581544000,0.249779430977626,L, + 63505967250,0.246911845423709,L, + 65430390500,0.243864113630433,L, + 67354813750,0.240634768174344,L, + 69279237000,0.237222848560089,L, + 71203660250,0.233627020766347,L, + 73128083500,0.229845977452222,L, + 75052506750,0.225878437957243,L, + 76976930000,0.221723268363288,L, + 78901353250,0.217378987906689,L, + 80825776500,0.212844289246549,L, + 82750199750,0.208117905062613,L, + 84674623000,0.203198381271639,L, + 86599046250,0.198084383852305,L, + 88523469500,0.192774485401796,L, + 90447892750,0.187267298537937,L, + 92372316000,0.181561355837274,L, + 94296739250,0.175655149855713,L, + 96221162500,0.169547253190437,L, + 98145585750,0.163236105036502,L, + 100070009000,0.156720211290025,L, + 101994432250,0.149998024486273,L, + 103918855500,0.143067957139871,L, + 105843278750,0.135928341724169,L, + 107767702000,0.128577657454857,L, + 109692125250,0.121014196784644,L, + 111616548500,0.113236265506451,L, + 113540971750,0.105242189423517,L, + 115465395000,0.097030274328763,L, + 117389818250,0.088598685942872,L, + 119314241500,0.079945690038125,L, + 121238664750,0.071069438994990,L, + 123163088000,0.061968125214575,L, + 125087511250,0.052639844381443,L, + 127011934500,0.043082698850263,L, + 128936357750,0.033294770965384,L, + 130860781000,0.023274083040197,L, + 132785204250,0.013018644047876,L, + 134709627500,0.002526374791129,L, + 136634050750,-0.008204798090999,L, + 138558474000,-0.019176916693334,L, + 140482897250,-0.030392187362078,L, + 142407320500,-0.041852761206613,L, + 144331743750,-0.053560852702335,L, + 146256167000,-0.065518816396878,L, + 148180590250,-0.077728800064570,L, + 150105013500,-0.090193328340763,L, + 152029436750,-0.102914629041066,L, + 153953860000,-0.115895210125565,L, + 155878283250,-0.129137572884239,L, + 157802706500,-0.142644258627707,L, + 159727129750,-0.156417761975841,L, + 161651553000,-0.170460790991925,L, + 163575976250,-0.184775960357752,L, + 165500399500,-0.199366031497459,L, + 167424822750,-0.214233899237314,L, + 169349246000,-0.229382244960175,L, + 171273669250,-0.244814043533592,L, + 173198092500,-0.260532229804473,L, + 175122515750,-0.276539952063138,L, + 177046939000,-0.292840225197777,L, + 178971362250,-0.309436090777003,L, + 180895785500,-0.326330990575828,L, + 182820208750,-0.343528019523721,L, + 184744632000,-0.361030672756544,L, + 186669055250,-0.378842445410163,L, + 188593478500,-0.396966699218310,L, + 190517901750,-0.415407116079833,L, + 192442325000,-0.434167564656569,L, + 194366748250,-0.453251566764806,L, + 196291171500,-0.472663177829366,L, + 198215594750,-0.492406106429524,L, + 200140018000,-0.512484781516070,L, + 202064441250,-0.532902991709559,L, + 203988864500,-0.553665379404193,L, + 205913287750,-0.574776213468203,L, + 207837711000,-0.596239656048114,L, + 209762134250,-0.618060723064098,L, + 211686557500,-0.640243950188651,L, + 213610980750,-0.662794353341945,L, + 215535404000,-0.685716735000739,L, + 217459827250,-0.709016324528617,L, + 219384250500,-0.732698671454280,L, + 221308673750,-0.756768524893635,L, + 223233097000,-0.781232074705617,L, + 225157520250,-0.806095083862339,L, + 227081943500,-0.831362995170794,L, + 229006366750,-0.857042211933331,L, + 230930790000,-0.883139084091443,L, + 232855213250,-0.909660068308329,L, + 234779636500,-0.936612314938278,L, + 236704059750,-0.964001480231696,L, + 238628483000,-0.991836315368456,L, + 240552906250,-1.020123010207495,L, + 242477329500,-1.048869889041862,L, + 244401752750,-1.078084422390962,L, + 246326176000,-1.107775147991259,L, + 248250599250,-1.137950710300921,L, + 250175022500,-1.168619113447880,L, + 252099445750,-1.199790709437599,L, + 254023869000,-1.231473822563127,L, + 255948292250,-1.263679231716748,L, + 257872715500,-1.296417075460513,L, + 259797138750,-1.329697705799881,L, + 261721562000,-1.363532541957372,L, + 263645985250,-1.397933003155503,L, + 265570408500,-1.432911575833852,L, + 267494831750,-1.468481066597111,L, + 269419255000,-1.504653961884858,L, + 271343678250,-1.541445202735902,L, + 273268101500,-1.578868556250289,L, + 275192524750,-1.616939497075356,L, + 277116948000,-1.655675100684030,L, + 279041371250,-1.695091268610470,L, + 280965794500,-1.735205716657838,L, + 282890217750,-1.776037974898291,L, + 284814641000,-1.817607893569104,L, + 286739064250,-1.859935643072670,L, + 288663487500,-1.903044808905967,L, + 290587910750,-1.946958229514031,L, + 292512334000,-1.991701304662839,L, + 294436757250,-2.037300714778837,L, + 296361180500,-2.083785274722584,L, + 298285603750,-2.131184866571700,L, + 300210027000,-2.179531720281332,L, + 302134450250,-2.228861267457797,L, + 304058873500,-2.279210006924473,L, + 305983296750,-2.330616145052031,L, + 307907720000,-2.383121303305725,L, + 309832143250,-2.436767743481044,L, + 311756566500,-2.491600288694416,L, + 313680989750,-2.547658852863803,L, + 315605413000,-2.604978867595526,L, + 317529836250,-2.663579115909800,L, + 319454259500,-2.723438893795706,L, + 321378682750,-2.784437392282298,L, + 323303106000,-2.846172483982193,L, + 325227529250,-2.907192540253353,L, + 327151952500,-2.955199165164953,L, + 344471761750,-2.955199165164953,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000075380201451 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380201451,L, + 51959427750,0.000075380201451,L, + 53883851000,0.162417262792587,L, + 55808274250,0.163152128458023,L, + 57732697500,0.163903713226318,L, + 59657120750,0.164672181010246,L, + 61581544000,0.165457695722580,L, + 63505967250,0.166260406374931,L, + 65430390500,0.167080491781235,L, + 67354813750,0.167918175458908,L, + 69279237000,0.168773531913757,L, + 71203660250,0.169646814465523,L, + 73128083500,0.170538201928139,L, + 75052506750,0.171447858214378,L, + 76976930000,0.172375962138176,L, + 78901353250,0.173322722315788,L, + 80825776500,0.174288347363472,L, + 82750199750,0.175273016095161,L, + 84674623000,0.176276907324791,L, + 86599046250,0.177300304174423,L, + 88523469500,0.178343340754509,L, + 90447892750,0.179406270384789,L, + 92372316000,0.180489271879196,L, + 94296739250,0.181592628359795,L, + 96221162500,0.182716533541679,L, + 98145585750,0.183861196041107,L, + 100070009000,0.185026884078979,L, + 101994432250,0.186213836073875,L, + 103918855500,0.187422245740891,L, + 105843278750,0.188652470707893,L, + 107767702000,0.189904674887657,L, + 109692125250,0.191179171204567,L, + 111616548500,0.192476168274879,L, + 113540971750,0.193796008825302,L, + 115465395000,0.195138916373253,L, + 117389818250,0.196505188941956,L, + 119314241500,0.197895124554634,L, + 121238664750,0.199308991432190,L, + 123163088000,0.200747147202492,L, + 125087511250,0.202209874987602,L, + 127011934500,0.203697502613068,L, + 128936357750,0.205210268497467,L, + 130860781000,0.206748619675636,L, + 132785204250,0.208312824368477,L, + 134709627500,0.209903270006180,L, + 136634050750,0.211520299315453,L, + 138558474000,0.213164255023003,L, + 140482897250,0.214835539460182,L, + 142407320500,0.216534480452538,L, + 144331743750,0.218261539936066,L, + 146256167000,0.220017030835152,L, + 148180590250,0.221801459789276,L, + 150105013500,0.223615184426308,L, + 152029436750,0.225458666682243,L, + 153953860000,0.227332383394241,L, + 155878283250,0.229236677289009,L, + 157802706500,0.231172040104866,L, + 159727129750,0.233139067888260,L, + 161651553000,0.235138118267059,L, + 163575976250,0.237169742584229,L, + 165500399500,0.239234507083893,L, + 167424822750,0.241332873702049,L, + 169349246000,0.243465438485146,L, + 171273669250,0.245632752776146,L, + 173198092500,0.247835367918015,L, + 175122515750,0.250073909759521,L, + 177046939000,0.252348989248276,L, + 178971362250,0.254661291837692,L, + 180895785500,0.257011383771896,L, + 182820208750,0.259399950504303,L, + 184744632000,0.261827766895294,L, + 186669055250,0.264295488595963,L, + 188593478500,0.266803830862045,L, + 190517901750,0.269353598356247,L, + 192442325000,0.271945595741272,L, + 194366748250,0.274580627679825,L, + 196291171500,0.277259558439255,L, + 198215594750,0.279983162879944,L, + 200140018000,0.282752484083176,L, + 202064441250,0.285568356513977,L, + 203988864500,0.288431793451309,L, + 205913287750,0.291343837976456,L, + 207837711000,0.294305473566055,L, + 209762134250,0.297317802906036,L, + 211686557500,0.300381988286972,L, + 213610980750,0.303499162197113,L, + 215535404000,0.306670546531677,L, + 217459827250,0.309897452592850,L, + 219384250500,0.313181132078171,L, + 221308673750,0.316523045301437,L, + 223233097000,0.319924533367157,L, + 225157520250,0.323387145996094,L, + 227081943500,0.326912462711334,L, + 229006366750,0.330502152442932,L, + 230930790000,0.334157824516296,L, + 232855213250,0.337881326675415,L, + 234779636500,0.341674596071243,L, + 236704059750,0.345539510250092,L, + 238628483000,0.349478155374527,L, + 240552906250,0.353492766618729,L, + 242477329500,0.357585668563843,L, + 244401752750,0.361759185791016,L, + 246326176000,0.366015911102295,L, + 248250599250,0.370358556509018,L, + 250175022500,0.374789923429489,L, + 252099445750,0.379313081502914,L, + 254023869000,0.383931249380112,L, + 255948292250,0.388647735118866,L, + 257872715500,0.393466234207153,L, + 259797138750,0.398390620946884,L, + 261721562000,0.403425037860870,L, + 263645985250,0.408573716878891,L, + 265570408500,0.413841634988785,L, + 267494831750,0.419233649969101,L, + 269419255000,0.424755424261093,L, + 271343678250,0.430412739515305,L, + 273268101500,0.436212003231049,L, + 275192524750,0.442160099744797,L, + 277116948000,0.448264598846436,L, + 279041371250,0.454533755779266,L, + 280965794500,0.460976511240005,L, + 282890217750,0.467602819204330,L, + 284814641000,0.474423587322235,L, + 286739064250,0.481450825929642,L, + 288663487500,0.488698214292526,L, + 290587910750,0.496180623769760,L, + 292512334000,0.503915131092072,L, + 294436757250,0.511920928955078,L, + 296361180500,0.520219922065735,L, + 298285603750,0.528837561607361,L, + 300210027000,0.537802517414093,L, + 302134450250,0.547149419784546,L, + 304058873500,0.556918561458588,L, + 305983296750,0.567158579826355,L, + 307907720000,0.577928602695465,L, + 309832143250,0.589301943778992,L, + 311756566500,0.601371288299561,L, + 313680989750,0.614257514476776,L, + 315605413000,0.628122687339783,L, + 317529836250,0.643193602561951,L, + 319454259500,0.659806013107300,L, + 321378682750,0.678495049476624,L, + 323303106000,0.700209736824036,L, + 325227529250,0.726849555969238,L, + 327151952500,0.753802001476288,L, + 329076375750,0.000075380201451,L, + 344471761750,0.000075380201451,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417262792587,L, + 55808274250,0.185008227825165,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696838140488,L, + 61581544000,0.215276315808296,L, + 63505967250,0.223114326596260,L, + 65430390500,0.230424374341965,L, + 67354813750,0.237333700060844,L, + 69279237000,0.243925228714943,L, + 71203660250,0.250256747007370,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063664436340,L, + 78901353250,0.273687779903412,L, + 80825776500,0.279186069965363,L, + 82750199750,0.284571647644043,L, + 84674623000,0.289855509996414,L, + 86599046250,0.295046985149384,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141175985336,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862186908722,L, + 98145585750,0.324634194374084,L, + 100070009000,0.329352080821991,L, + 101994432250,0.334019333124161,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213140964508,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352236002683640,L, + 111616548500,0.356688827276230,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834363460541,L, + 119314241500,0.374150633811951,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692784070969,L, + 125087511250,0.386921197175980,L, + 127011934500,0.391122609376907,L, + 128936357750,0.395298123359680,L, + 130860781000,0.399448543787003,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854879379272,L, + 142407320500,0.423872172832489,L, + 144331743750,0.427869707345963,L, + 146256167000,0.431847989559174,L, + 148180590250,0.435807704925537,L, + 150105013500,0.439749270677567,L, + 152029436750,0.443673253059387,L, + 153953860000,0.447580099105835,L, + 155878283250,0.451470375061035,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202468395233,L, + 161651553000,0.463045120239258,L, + 163575976250,0.466872811317444,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484294652939,L, + 169349246000,0.478268891572952,L, + 171273669250,0.482039690017700,L, + 173198092500,0.485797107219696,L, + 175122515750,0.489541292190552,L, + 177046939000,0.493272662162781,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697910785675,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074700832367,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404760837555,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931485652924,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131130695343,L, + 202064441250,0.540715575218201,L, + 203988864500,0.544289946556091,L, + 205913287750,0.547854542732239,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490335941315,L, + 213610980750,0.562016725540161,L, + 215535404000,0.565533936023712,L, + 217459827250,0.569041907787323,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512596130371,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449325084686,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351840972900,L, + 232855213250,0.596790611743927,L, + 234779636500,0.600221037864685,L, + 236704059750,0.603643238544464,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463261604309,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617251038551331,L, + 246326176000,0.620633006095886,L, + 248250599250,0.624006986618042,L, + 250175022500,0.627373158931732,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634082019329071,L, + 255948292250,0.637424767017365,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086897373199,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650718033313751,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317996025085,L, + 269419255000,0.660606205463409,L, + 271343678250,0.663886725902557,L, + 273268101500,0.667159318923950,L, + 275192524750,0.670423865318298,L, + 277116948000,0.673680543899536,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401584625244,L, + 284814641000,0.686625361442566,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693046987056732,L, + 290587910750,0.696244597434998,L, + 292512334000,0.699433088302612,L, + 294436757250,0.702612400054932,L, + 296361180500,0.705781936645508,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228915214539,L, + 304058873500,0.718355655670166,L, + 305983296750,0.721470177173615,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659165859222,L, + 311756566500,0.730731010437012,L, + 313680989750,0.733785331249237,L, + 315605413000,0.736819744110107,L, + 317529836250,0.739830851554871,L, + 319454259500,0.742812991142273,L, + 321378682750,0.745757281780243,L, + 323303106000,0.748646795749664,L, + 325227529250,0.751438677310944,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000075380194176 + KeyVer: 4005 + KeyCount: 147 + Key: + 0,0.000075380194176,L, + 51959427750,0.000075380194176,L, + 53883851000,0.162417247891426,L, + 55808274250,0.185008212924004,L, + 57732697500,0.196961209177971,L, + 59657120750,0.206696808338165,L, + 61581544000,0.215276300907135,L, + 63505967250,0.223114296793938,L, + 65430390500,0.230424344539642,L, + 67354813750,0.237333655357361,L, + 69279237000,0.243925198912621,L, + 71203660250,0.250256717205048,L, + 73128083500,0.256370306015015,L, + 75052506750,0.262297719717026,L, + 76976930000,0.268063694238663,L, + 78901353250,0.273687750101089,L, + 80825776500,0.279186040163040,L, + 82750199750,0.284571617841721,L, + 84674623000,0.289855480194092,L, + 86599046250,0.295046925544739,L, + 88523469500,0.300153970718384,L, + 90447892750,0.305183380842209,L, + 92372316000,0.310141146183014,L, + 94296739250,0.315032571554184,L, + 96221162500,0.319862127304077,L, + 98145585750,0.324634134769440,L, + 100070009000,0.329352051019669,L, + 101994432250,0.334019303321838,L, + 103918855500,0.338638812303543,L, + 105843278750,0.343213081359863,L, + 107767702000,0.347744822502136,L, + 109692125250,0.352235972881317,L, + 111616548500,0.356688797473907,L, + 113540971750,0.361104995012283,L, + 115465395000,0.365486353635788,L, + 117389818250,0.369834393262863,L, + 119314241500,0.374150574207306,L, + 121238664750,0.378436326980591,L, + 123163088000,0.382692754268646,L, + 125087511250,0.386921226978302,L, + 127011934500,0.391122639179230,L, + 128936357750,0.395298093557358,L, + 130860781000,0.399448513984680,L, + 132785204250,0.403574824333191,L, + 134709627500,0.407677859067917,L, + 136634050750,0.411758393049240,L, + 138558474000,0.415817141532898,L, + 140482897250,0.419854849576950,L, + 142407320500,0.423872113227844,L, + 144331743750,0.427869647741318,L, + 146256167000,0.431848019361496,L, + 148180590250,0.435807675123215,L, + 150105013500,0.439749270677567,L, + 152029436750,0.443673282861710,L, + 153953860000,0.447580158710480,L, + 155878283250,0.451470345258713,L, + 157802706500,0.455344319343567,L, + 159727129750,0.459202498197556,L, + 161651553000,0.463045060634613,L, + 163575976250,0.466872721910477,L, + 165500399500,0.470685690641403,L, + 167424822750,0.474484264850616,L, + 169349246000,0.478268802165985,L, + 171273669250,0.482039630413055,L, + 173198092500,0.485797017812729,L, + 175122515750,0.489541232585907,L, + 177046939000,0.493272691965103,L, + 178971362250,0.496991425752640,L, + 180895785500,0.500697851181030,L, + 182820208750,0.504392147064209,L, + 184744632000,0.508074581623077,L, + 186669055250,0.511745393276215,L, + 188593478500,0.515404701232910,L, + 190517901750,0.519052743911743,L, + 192442325000,0.522689819335938,L, + 194366748250,0.526315987110138,L, + 196291171500,0.529931426048279,L, + 198215594750,0.533536434173584,L, + 200140018000,0.537131071090698,L, + 202064441250,0.540715456008911,L, + 203988864500,0.544290006160736,L, + 205913287750,0.547854483127594,L, + 207837711000,0.551409363746643,L, + 209762134250,0.554954528808594,L, + 211686557500,0.558490276336670,L, + 213610980750,0.562016785144806,L, + 215535404000,0.565533876419067,L, + 217459827250,0.569041967391968,L, + 219384250500,0.572540998458862,L, + 221308673750,0.576031148433685,L, + 223233097000,0.579512536525726,L, + 225157520250,0.582985162734985,L, + 227081943500,0.586449265480042,L, + 229006366750,0.589904785156250,L, + 230930790000,0.593351900577545,L, + 232855213250,0.596790552139282,L, + 234779636500,0.600220978260040,L, + 236704059750,0.603643119335175,L, + 238628483000,0.607057273387909,L, + 240552906250,0.610463142395020,L, + 242477329500,0.613861083984375,L, + 244401752750,0.617250978946686,L, + 246326176000,0.620632946491241,L, + 248250599250,0.624006867408752,L, + 250175022500,0.627373218536377,L, + 252099445750,0.630731523036957,L, + 254023869000,0.634081959724426,L, + 255948292250,0.637424707412720,L, + 257872715500,0.640759706497192,L, + 259797138750,0.644086837768555,L, + 261721562000,0.647406280040741,L, + 263645985250,0.650717914104462,L, + 265570408500,0.654021859169006,L, + 267494831750,0.657317936420441,L, + 269419255000,0.660606145858765,L, + 271343678250,0.663886666297913,L, + 273268101500,0.667159259319305,L, + 275192524750,0.670423686504364,L, + 277116948000,0.673680484294891,L, + 279041371250,0.676929056644440,L, + 280965794500,0.680169343948364,L, + 282890217750,0.683401525020599,L, + 284814641000,0.686625301837921,L, + 286739064250,0.689840555191040,L, + 288663487500,0.693047046661377,L, + 290587910750,0.696244537830353,L, + 292512334000,0.699433207511902,L, + 294436757250,0.702612280845642,L, + 296361180500,0.705781877040863,L, + 298285603750,0.708941459655762,L, + 300210027000,0.712090551853180,L, + 302134450250,0.715228855609894,L, + 304058873500,0.718355774879456,L, + 305983296750,0.721470355987549,L, + 307907720000,0.724571764469147,L, + 309832143250,0.727659046649933,L, + 311756566500,0.730730891227722,L, + 313680989750,0.733785390853882,L, + 315605413000,0.736819863319397,L, + 317529836250,0.739830791950226,L, + 319454259500,0.742812871932983,L, + 321378682750,0.745757341384888,L, + 323303106000,0.748646974563599,L, + 325227529250,0.751438558101654,L, + 327151952500,0.753801882266998,L, + 329076375750,0.000075380194176,L, + 344471761750,0.000075380194176,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_021" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058500528335571 + KeyVer: 4005 + KeyCount: 81 + Key: + 0,-0.058500528335571,L, + 190517901750,-0.058500528335571,L, + 192442325000,-0.058536529541016,L, + 194366748250,-0.059146404266357,L, + 196291171500,-0.059920072555542,L, + 198215594750,-0.060733795166016,L, + 200140018000,-0.061568260192871,L, + 202064441250,-0.062416076660156,L, + 203988864500,-0.063273191452026,L, + 205913287750,-0.064137220382690,L, + 207837711000,-0.065006971359253,L, + 209762134250,-0.065881013870239,L, + 211686557500,-0.066758632659912,L, + 213610980750,-0.067638635635376,L, + 215535404000,-0.068521976470947,L, + 217459827250,-0.069406747817993,L, + 219384250500,-0.070293664932251,L, + 221308673750,-0.071181774139404,L, + 223233097000,-0.072071552276611,L, + 225157520250,-0.072962284088135,L, + 227081943500,-0.073853969573975,L, + 229006366750,-0.074746131896973,L, + 230930790000,-0.075639247894287,L, + 232855213250,-0.076532602310181,L, + 234779636500,-0.077426195144653,L, + 238628483000,-0.079214334487915,L, + 240552906250,-0.080108642578125,L, + 242477329500,-0.081002712249756,L, + 244401752750,-0.081896305084229,L, + 246326176000,-0.082790136337280,L, + 248250599250,-0.083683013916016,L, + 250175022500,-0.084575414657593,L, + 252099445750,-0.085466861724854,L, + 254023869000,-0.086357593536377,L, + 255948292250,-0.087246894836426,L, + 257872715500,-0.088135719299316,L, + 259797138750,-0.089022397994995,L, + 261721562000,-0.089907407760620,L, + 263645985250,-0.090790510177612,L, + 265570408500,-0.091670751571655,L, + 267494831750,-0.092548370361328,L, + 269419255000,-0.093422412872314,L, + 271343678250,-0.094291925430298,L, + 273268101500,-0.095155954360962,L, + 275192524750,-0.096013307571411,L, + 277116948000,-0.096861362457275,L, + 279041371250,-0.097695827484131,L, + 280965794500,-0.098509550094604,L, + 282890217750,-0.099283218383789,L, + 284814641000,-0.099893093109131,L, + 286739064250,-0.099929571151733,L, + 288663487500,-0.099072694778442,L, + 290587910750,-0.097857713699341,L, + 292512334000,-0.096546173095703,L, + 294436757250,-0.095183849334717,L, + 296361180500,-0.093789577484131,L, + 298285603750,-0.092372894287109,L, + 300210027000,-0.090940237045288,L, + 302134450250,-0.089495420455933,L, + 304058873500,-0.088041305541992,L, + 305983296750,-0.086579799652100,L, + 307907720000,-0.085113048553467,L, + 309832143250,-0.083641767501831,L, + 311756566500,-0.082167863845825,L, + 313680989750,-0.080691814422607,L, + 315605413000,-0.079214811325073,L, + 317529836250,-0.077738046646118,L, + 319454259500,-0.076261997222900,L, + 321378682750,-0.074787855148315,L, + 323303106000,-0.073316812515259,L, + 325227529250,-0.071850061416626,L, + 327151952500,-0.070388555526733,L, + 329076375750,-0.068934202194214,L, + 331000799000,-0.067489624023438,L, + 332925222250,-0.066056728363037,L, + 334849645500,-0.064640283584595,L, + 336774068750,-0.063246250152588,L, + 338698492000,-0.061883687973022,L, + 340622915250,-0.060571908950806,L, + 342547338500,-0.059357166290283,L, + 344471761750,-0.058500528335571,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.288230299949646 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,0.288230299949646,L, + 1924423250,0.298518538475037,L, + 3848846500,0.310405969619751,L, + 5773269750,0.323110818862915,L, + 7697693000,0.336395382881165,L, + 9622116250,0.350154161453247,L, + 11546539500,0.364335179328918,L, + 13470962750,0.378912806510925,L, + 15395386000,0.393878817558289,L, + 17319809250,0.409237265586853,L, + 19244232500,0.425002098083496,L, + 21168655750,0.441198348999023,L, + 23093079000,0.457861304283142,L, + 25017502250,0.475041151046753,L, + 26941925500,0.492805123329163,L, + 28866348750,0.511790275573730,L, + 30790772000,0.532561659812927,L, + 32715195250,0.555003166198730,L, + 34639618500,0.578838825225830,L, + 36564041750,0.603604793548584,L, + 38488465000,0.628666043281555,L, + 40412888250,0.653296709060669,L, + 42337311500,0.676801204681396,L, + 44261734750,0.698627710342407,L, + 46186158000,0.718426942825317,L, + 48110581250,0.736045598983765,L, + 50035004500,0.751482367515564,L, + 51959427750,0.765871167182922,L, + 53883851000,0.780288338661194,L, + 55808274250,0.794722437858582,L, + 57732697500,0.809162259101868,L, + 59657120750,0.823595643043518,L, + 61581544000,0.838008284568787,L, + 63505967250,0.852384686470032,L, + 65430390500,0.866709351539612,L, + 67354813750,0.880964398384094,L, + 69279237000,0.895131230354309,L, + 71203660250,0.909190297126770,L, + 73128083500,0.923121809959412,L, + 75052506750,0.936904788017273,L, + 76976930000,0.950517773628235,L, + 78901353250,0.963939785957336,L, + 80825776500,0.977149128913879,L, + 82750199750,0.990125060081482,L, + 84674623000,1.002847552299500,L, + 86599046250,1.015297532081604,L, + 88523469500,1.027457356452942,L, + 90447892750,1.039310336112976,L, + 92372316000,1.050842881202698,L, + 94296739250,1.062042117118835,L, + 96221162500,1.072897315025330,L, + 98145585750,1.083401322364807,L, + 100070009000,1.093547463417053,L, + 101994432250,1.103331923484802,L, + 103918855500,1.112752795219421,L, + 105843278750,1.121810793876648,L, + 107767702000,1.130507111549377,L, + 109692125250,1.138846039772034,L, + 111616548500,1.146832108497620,L, + 113540971750,1.154471993446350,L, + 115465395000,1.161773085594177,L, + 117389818250,1.168743014335632,L, + 119314241500,1.175390839576721,L, + 121238664750,1.181726336479187,L, + 123163088000,1.187759518623352,L, + 125087511250,1.193499684333801,L, + 127011934500,1.198958039283752,L, + 128936357750,1.204144120216370,L, + 130860781000,1.209068655967712,L, + 132785204250,1.213741421699524,L, + 134709627500,1.218172907829285,L, + 136634050750,1.222372174263000,L, + 138558474000,1.226348996162415,L, + 140482897250,1.230113148689270,L, + 142407320500,1.233672499656677,L, + 144331743750,1.237036585807800,L, + 146256167000,1.240213274955750,L, + 148180590250,1.243210434913635,L, + 150105013500,1.246036171913147,L, + 152029436750,1.248697400093079,L, + 153953860000,1.251201272010803,L, + 155878283250,1.253554463386536,L, + 157802706500,1.255763173103333,L, + 159727129750,1.257833838462830,L, + 161651553000,1.259771943092346,L, + 163575976250,1.261583209037781,L, + 165500399500,1.263272643089294,L, + 167424822750,1.264845728874207,L, + 169349246000,1.266306996345520,L, + 171273669250,1.267660737037659,L, + 173198092500,1.268911719322205,L, + 175122515750,1.270063757896423,L, + 177046939000,1.271121382713318,L, + 178971362250,1.272087454795837,L, + 180895785500,1.272966265678406,L, + 182820208750,1.273760437965393,L, + 184744632000,1.274474263191223,L, + 186669055250,1.275109887123108,L, + 188593478500,1.275670886039734,L, + 190517901750,1.276159882545471,L, + 192442325000,-0.578060865402222,L, + 282890217750,-0.578060865402222,L, + 284814641000,-0.557460606098175,L, + 286739064250,0.000370860099792,L, + 288663487500,0.007700681686401,L, + 290587910750,0.015030384063721,L, + 294436757250,0.029690027236938,L, + 296361180500,0.037019729614258,L, + 300210027000,0.051679372787476,L, + 302134450250,0.059009075164795,L, + 305983296750,0.073668718338013,L, + 309832143250,0.088328123092651,L, + 311756566500,0.095658063888550,L, + 315605413000,0.110317468643188,L, + 317529836250,0.121188163757324,L, + 319454259500,0.134479641914368,L, + 321378682750,0.150350332260132,L, + 323303106000,0.168187856674194,L, + 325227529250,0.186523318290710,L, + 327151952500,0.203898549079895,L, + 329076375750,0.219612240791321,L, + 331000799000,0.233596324920654,L, + 332925222250,0.246043443679810,L, + 334849645500,0.257195830345154,L, + 336774068750,0.267271757125854,L, + 338698492000,0.276450634002686,L, + 340622915250,0.284875035285950,L, + 342547338500,0.292658805847168,L, + 344471761750,0.299892425537109,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.845311545243675 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.845311545243675,L, + 1924423250,60.046740654056229,L, + 3848846500,60.438943776576139,L, + 5773269750,60.922650943406580,L, + 7697693000,61.467529284443565,L, + 9622116250,62.059836459077047,L, + 11546539500,62.692318806408487,L, + 13470962750,63.360953345016760,L, + 15395386000,64.063636376637490,L, + 17319809250,64.799582429516136,L, + 19244232500,65.568996409327795,L, + 21168655750,66.372998467096352,L, + 23093079000,67.213692301086169,L, + 25017502250,68.094178817180406,L, + 26941925500,69.018945449663789,L, + 28866348750,70.024007786029728,L, + 30790772000,71.142335149401816,L, + 32715195250,72.370088973466522,L, + 34639618500,73.694319219557528,L, + 36564041750,75.091051923688099,L, + 38488465000,76.525603385252992,L, + 40412888250,77.956712431476191,L, + 42337311500,79.343336455635168,L, + 44261734750,80.651461115663309,L, + 46186158000,81.858034523111826,L, + 48110581250,82.951090186554907,L, + 50035004500,83.927704785027785,L, + 51959427750,84.834009416184642,L, + 53883851000,85.716565479597406,L, + 55808274250,86.577708899962204,L, + 57732697500,87.419393111381666,L, + 59657120750,88.243291510202440,L, + 61581544000,89.050872587096080,L, + 63505967250,89.843358945924010,L, + 65430390500,90.621870737710111,L, + 67354813750,91.387357358749014,L, + 69279237000,92.140672582686989,L, + 71203660250,92.882581390711039,L, + 73128083500,93.613766801738194,L, + 75052506750,94.334836702604576,L, + 76976930000,95.046351168822127,L, + 78901353250,95.748801974011073,L, + 80825776500,96.442653571034995,L, + 82750199750,97.128315771244075,L, + 84674623000,97.806164235042687,L, + 86599046250,98.476547302078473,L, + 88523469500,99.139799651620777,L, + 90447892750,99.796201321425571,L, + 92372316000,100.446039179437989,L, + 94296739250,101.089552282278987,L, + 96221162500,101.726972856380343,L, + 98145585750,102.358539958362996,L, + 100070009000,102.984431173145381,L, + 101994432250,103.604844576213438,L, + 103918855500,104.219950922296391,L, + 105843278750,104.829907305745166,L, + 107767702000,105.434891311478168,L, + 109692125250,106.035025882900484,L, + 111616548500,106.630447623795490,L, + 113540971750,107.221272647379081,L, + 115465395000,107.807623897056317,L, + 117389818250,108.389603825664764,L, + 119314241500,108.967328546420291,L, + 121238664750,109.540866361214611,L, + 123163088000,110.110326553074430,L, + 125087511250,110.675777423891461,L, + 127011934500,111.237300935935750,L, + 128936357750,111.794958560909805,L, + 130860781000,112.348811770516178,L, + 132785204250,112.898942527024886,L, + 134709627500,113.445357660625120,L, + 136634050750,113.988145963776091,L, + 138558474000,114.527321096856127,L, + 140482897250,115.062937701378587,L, + 142407320500,115.595009437721814,L, + 144331743750,116.123556796453315,L, + 146256167000,116.648607098329776,L, + 148180590250,117.170174003729542,L, + 150105013500,117.688243852274269,L, + 152029436750,118.202816643963956,L, + 153953860000,118.713906039176933,L, + 155878283250,119.221443736021513,L, + 157802706500,119.725429734497681,L, + 159727129750,120.225782072335420,L, + 161651553000,120.722473428778031,L, + 163575976250,121.215394520798810,L, + 165500399500,121.704463386127699,L, + 167424822750,122.189529760602966,L, + 169349246000,122.670443380062878,L, + 171273669250,123.146985678453973,L, + 173198092500,123.618897108587817,L, + 175122515750,124.085822500627557,L, + 177046939000,124.547270080952956,L, + 178971362250,125.002638792917054,L, + 180895785500,125.450999730792731,L, + 182820208750,125.890959535989296,L, + 184744632000,126.320195944188967,L, + 186669055250,126.734378615457942,L, + 188593478500,127.122756832042654,L, + 190517901750,127.416728173919580,L, + 192442325000,59.792780560337185,L, + 194366748250,48.098540474808352,L, + 196291171500,42.441658275901446,L, + 198215594750,38.276929938924646,L, + 200140018000,34.902164205877462,L, + 202064441250,32.037839000072104,L, + 203988864500,29.538737669565144,L, + 205913287750,27.317942642073707,L, + 207837711000,25.318529413507701,L, + 209762134250,23.500828245167742,L, + 211686557500,21.835862059500101,L, + 213610980750,20.301711071910937,L, + 215535404000,18.881330545326513,L, + 217459827250,17.561152308960619,L, + 219384250500,16.330166097871206,L, + 221308673750,15.179289468009468,L, + 223233097000,14.100946885812220,L, + 225157520250,13.088719681006955,L, + 227081943500,12.137130041879329,L, + 229006366750,11.241467699222980,L, + 230930790000,10.397629416894029,L, + 232855213250,9.602035321993746,L, + 234779636500,8.851522183162777,L, + 236704059750,8.143318651145389,L, + 238628483000,7.474936829536412,L, + 240552906250,6.844173982328519,L, + 242477329500,6.249049781549230,L, + 244401752750,5.687784536032940,L, + 246326176000,5.158796630099967,L, + 248250599250,4.660632514117572,L, + 250175022500,4.191998294124861,L, + 252099445750,3.751726434660587,L, + 254023869000,3.338776612536794,L, + 255948292250,2.952192387826271,L, + 257872715500,2.591109101268777,L, + 259797138750,2.254809369558050,L, + 261721562000,1.942610173777090,L, + 263645985250,1.653947382989136,L, + 265570408500,1.388353769566280,L, + 267494831750,1.145431368267661,L, + 269419255000,0.924908252186949,L, + 271343678250,0.726609130922400,L, + 273268101500,0.550526907480577,L, + 275192524750,0.396816941984672,L, + 277116948000,0.265868555217376,L, + 279041371250,0.158436483081973,L, + 280965794500,0.075941458286678,L, + 282890217750,0.021060888305704,L, + 284814641000,0.000309185366264,L, + 286739064250,0.000001885382944,L, + 288663487500,1.237622273476599,L, + 290587910750,2.992587620681550,L, + 292512334000,4.887326065783146,L, + 294436757250,6.855266636427426,L, + 296361180500,8.869395934447027,L, + 298285603750,10.915502043726468,L, + 300210027000,12.984963131099086,L, + 302134450250,15.072043545209374,L, + 304058873500,17.172642611234391,L, + 305983296750,19.283683328953046,L, + 307907720000,21.402723905737073,L, + 309832143250,23.527764803706944,L, + 311756566500,25.657098475570162,L, + 313680989750,27.789203496689108,L, + 315605413000,29.922655772621837,L, + 317529836250,32.056113171196444,L, + 319454259500,34.188211362126225,L, + 321378682750,36.317546741536731,L, + 323303106000,38.442592762148479,L, + 325227529250,40.561631631385211,L, + 327151952500,42.672668934009288,L, + 329076375750,44.773273122676180,L, + 331000799000,46.860350121691880,L, + 332925222250,48.929808647743563,L, + 334849645500,50.975918172117588,L, + 336774068750,52.990041920608490,L, + 338698492000,54.957990175215585,L, + 340622915250,56.852725632109419,L, + 342547338500,58.607681267639144,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.429199967863628 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.429199967863628,L, + 1924423250,-20.421562108824272,L, + 3848846500,-20.389151153665317,L, + 5773269750,-20.328215620985134,L, + 7697693000,-20.237252869166326,L, + 9622116250,-20.114739766023984,L, + 11546539500,-19.958842405765960,L, + 13470962750,-19.767298288229689,L, + 15395386000,-19.537330941517570,L, + 17319809250,-19.265549176706688,L, + 19244232500,-18.947798531234398,L, + 21168655750,-18.578939287750266,L, + 23093079000,-18.152573266549297,L, + 25017502250,-17.660579372708352,L, + 26941925500,-17.092459605473142,L, + 28866348750,-16.398737782043451,L, + 30790772000,-15.538796474972573,L, + 32715195250,-14.521076090527332,L, + 34639618500,-13.368169186934809,L, + 36564041750,-12.119607191563686,L, + 38488465000,-10.830711221596404,L, + 40412888250,-9.565860078828472,L, + 42337311500,-8.387716480026434,L, + 44261734750,-7.346956159963482,L, + 46186158000,-6.476726026681639,L, + 48110581250,-5.792768385557293,L, + 50035004500,-5.297142111738377,L, + 51959427750,-4.905137491591221,L, + 53883851000,-4.534031115870159,L, + 55808274250,-4.181762828766789,L, + 57732697500,-3.846591358929581,L, + 59657120750,-3.527032420874531,L, + 61581544000,-3.221807702009790,L, + 63505967250,-2.929808363812290,L, + 65430390500,-2.650062598429188,L, + 67354813750,-2.381716205327408,L, + 69279237000,-2.124010820065670,L, + 71203660250,-1.876271748020024,L, + 73128083500,-1.637894197283808,L, + 75052506750,-1.408334954374594,L, + 76976930000,-1.187102138950437,L, + 78901353250,-0.973750508054817,L, + 80825776500,-0.767873932236384,L, + 82750199750,-0.569102887588869,L, + 84674623000,-0.377098105809594,L, + 86599046250,-0.191548373064288,L, + 88523469500,-0.012166515416669,L, + 90447892750,0.161312526331073,L, + 92372316000,0.329133022321969,L, + 94296739250,0.491522877592478,L, + 96221162500,0.648692147140004,L, + 98145585750,0.800838346161522,L, + 100070009000,0.948143595247947,L, + 101994432250,1.090779182737059,L, + 103918855500,1.228905137826677,L, + 105843278750,1.362670764183188,L, + 107767702000,1.492215867241166,L, + 109692125250,1.617674596184778,L, + 111616548500,1.739167759984969,L, + 113540971750,1.856814033178567,L, + 115465395000,1.970721738296941,L, + 117389818250,2.080994929003226,L, + 119314241500,2.187729441389216,L, + 121238664750,2.291019403999409,L, + 123163088000,2.390948486651137,L, + 125087511250,2.487600572605144,L, + 127011934500,2.581052714933005,L, + 128936357750,2.671375990290771,L, + 130860781000,2.758639981230609,L, + 132785204250,2.842909361106224,L, + 134709627500,2.924245174733323,L, + 136634050750,3.002705051833028,L, + 138558474000,3.078340218824113,L, + 140482897250,3.151206597880408,L, + 142407320500,3.221346450797403,L, + 144331743750,3.288804814134938,L, + 146256167000,3.353623095914854,L, + 148180590250,3.415842277272172,L, + 150105013500,3.475492667171335,L, + 152029436750,3.532608843445015,L, + 153953860000,3.587218767180127,L, + 155878283250,3.639348051586059,L, + 157802706500,3.689017614117144,L, + 159727129750,3.736245384019953,L, + 161651553000,3.781050571201525,L, + 163575976250,3.823440859624679,L, + 165500399500,3.863419237497176,L, + 167424822750,3.900994669442301,L, + 169349246000,3.936156056402653,L, + 171273669250,3.968897421962708,L, + 173198092500,3.999194860460372,L, + 175122515750,4.027024466233549,L, + 177046939000,4.052339708618518,L, + 178971362250,4.075087226762390,L, + 180895785500,4.095180789526892,L, + 182820208750,4.112515809640360,L, + 184744632000,4.126920678599896,L, + 186669055250,4.138140971858919,L, + 188593478500,4.145734434668669,L, + 190517901750,4.148650071670614,L, + 192442325000,-20.443357242465751,L, + 194366748250,-23.594763836822793,L, + 196291171500,-25.119202295412212,L, + 198215594750,-26.241532149637926,L, + 200140018000,-27.150971837623818,L, + 202064441250,-27.922868591198775,L, + 203988864500,-28.596335488644819,L, + 205913287750,-29.194803493909646,L, + 207837711000,-29.733613211869081,L, + 209762134250,-30.223453888574181,L, + 211686557500,-30.672135845340843,L, + 213610980750,-31.085563780706536,L, + 215535404000,-31.468327581793503,L, + 217459827250,-31.824098475280614,L, + 219384250500,-32.155827102889319,L, + 221308673750,-32.465975747815399,L, + 223233097000,-32.756566146053174,L, + 225157520250,-33.029350241124746,L, + 227081943500,-33.285786278417923,L, + 229006366750,-33.527151503307486,L, + 230930790000,-33.754555821533565,L, + 232855213250,-33.968952044485370,L, + 234779636500,-34.171207606187501,L, + 236704059750,-34.362063582164893,L, + 238628483000,-34.542172255483287,L, + 240552906250,-34.712151758262564,L, + 242477329500,-34.872534845257988,L, + 244401752750,-35.023782554238529,L, + 246326176000,-35.166335432405660,L, + 248250599250,-35.300582800542074,L, + 250175022500,-35.426872998295423,L, + 252099445750,-35.545516799272960,L, + 254023869000,-35.656801071419821,L, + 255948292250,-35.760985361924462,L, + 257872715500,-35.858284821745734,L, + 259797138750,-35.948914601842503,L, + 261721562000,-36.033042041849427,L, + 263645985250,-36.110841311590349,L, + 265570408500,-36.182408033713642,L, + 267494831750,-36.247868566718950,L, + 269419255000,-36.307298042687144,L, + 271343678250,-36.360737442753248,L, + 273268101500,-36.408186766917254,L, + 275192524750,-36.449615279327908,L, + 277116948000,-36.484903451674732,L, + 279041371250,-36.513856623566369,L, + 280965794500,-36.536088889314733,L, + 282890217750,-36.550879663962377,L, + 284814641000,-36.556463343608854,L, + 286739064250,-36.556541890784302,L, + 288663487500,-36.223027168707645,L, + 290587910750,-35.750087795103717,L, + 292512334000,-35.239490173510980,L, + 294436757250,-34.709160135406101,L, + 296361180500,-34.166388907728063,L, + 298285603750,-33.614994566222897,L, + 300210027000,-33.057309620492155,L, + 302134450250,-32.494874278193677,L, + 304058873500,-31.928795029973006,L, + 305983296750,-31.359905158908877,L, + 307907720000,-30.788853532972439,L, + 309832143250,-30.216193397486467,L, + 311756566500,-29.642368714747011,L, + 313680989750,-29.067802956482609,L, + 315605413000,-28.492875198192198,L, + 317529836250,-27.917938902165325,L, + 319454259500,-27.343373143900923,L, + 321378682750,-26.769551876256049,L, + 323303106000,-26.196886618128200,L, + 325227529250,-25.625841822380934,L, + 327151952500,-25.056950243769514,L, + 329076375750,-24.490870995548839,L, + 331000799000,-23.928439068344947,L, + 332925222250,-23.370750707519623,L, + 334849645500,-22.819361488656334,L, + 336774068750,-22.276580015694538,L, + 338698492000,-21.746255100231540,L, + 340622915250,-21.235650648449628,L, + 342547338500,-20.762718105034871,L, + 344471761750,-20.429199967863628,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -30.998294453681410 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-30.998294453681410,L, + 1924423250,-30.999073095246789,L, + 3848846500,-31.002385736994242,L, + 5773269750,-31.008604624233531,L, + 7697693000,-31.017900511693902,L, + 9622116250,-31.030403172969596,L, + 11546539500,-31.046327759019455,L, + 13470962750,-31.065886005707760,L, + 15395386000,-31.089371611168815,L, + 17319809250,-31.117122669766538,L, + 19244232500,-31.149569483418635,L, + 21168655750,-31.187237976691200,L, + 23093079000,-31.230783847744554,L, + 25017502250,-31.281016473995344,L, + 26941925500,-31.339038930994516,L, + 28866348750,-31.417114823396819,L, + 30790772000,-31.526640321832403,L, + 32715195250,-31.666023992224652,L, + 34639618500,-31.831027702193584,L, + 36564041750,-32.014206545543892,L, + 38488465000,-32.205117163034643,L, + 40412888250,-32.391635968889084,L, + 42337311500,-32.561905754708086,L, + 44261734750,-32.706350595275310,L, + 46186158000,-32.818696961838100,L, + 48110581250,-32.895960061729177,L, + 50035004500,-32.937726668503743,L, + 51959427750,-32.961396689072387,L, + 53883851000,-32.983809954833752,L, + 55808274250,-33.005082579003727,L, + 57732697500,-33.025320429514444,L, + 59657120750,-33.044619129014293,L, + 61581544000,-33.063050394489544,L, + 63505967250,-33.080682527831904,L, + 65430390500,-33.097577000743911,L, + 67354813750,-33.113781624549738,L, + 69279237000,-33.129340795479010,L, + 71203660250,-33.144302324855900,L, + 73128083500,-33.158696948531677,L, + 75052506750,-33.172558817452199,L, + 76976930000,-33.185918667468727,L, + 78901353250,-33.198796989148768,L, + 80825776500,-33.211234763627346,L, + 82750199750,-33.223238821093624,L, + 84674623000,-33.234833067209699,L, + 86599046250,-33.246034577448505,L, + 88523469500,-33.256870672566720,L, + 90447892750,-33.267341352564330,L, + 92372316000,-33.277477353292618,L, + 94296739250,-33.287282089846158,L, + 96221162500,-33.296776052792460,L, + 98145585750,-33.305962657226111,L, + 100070009000,-33.314855563525455,L, + 101994432250,-33.323475262258000,L, + 103918855500,-33.331814923234575,L, + 105843278750,-33.339895037022686,L, + 107767702000,-33.347712188527758,L, + 109692125250,-33.355290283411875,L, + 111616548500,-33.362622491485872,L, + 113540971750,-33.369729303317257,L, + 115465395000,-33.376610718906036,L, + 117389818250,-33.383270153346793,L, + 119314241500,-33.389714436828690,L, + 121238664750,-33.395946984446319,L, + 123163088000,-33.401988286767185,L, + 125087511250,-33.407821268318365,L, + 127011934500,-33.413466419667373,L, + 128936357750,-33.418920325719618,L, + 130860781000,-33.424186401569692,L, + 132785204250,-33.429271477406758,L, + 134709627500,-33.434185798514577,L, + 136634050750,-33.438929364893148,L, + 138558474000,-33.443491931258706,L, + 140482897250,-33.447893988178777,L, + 142407320500,-33.452128705464176,L, + 144331743750,-33.456199498209500,L, + 146256167000,-33.460116611698496,L, + 148180590250,-33.463869800647409,L, + 150105013500,-33.467469310340000,L, + 152029436750,-33.470925386060024,L, + 153953860000,-33.474224367429137,L, + 155878283250,-33.477369669541922,L, + 157802706500,-33.480368122587549,L, + 159727129750,-33.483223141660616,L, + 161651553000,-33.485927896571937,L, + 163575976250,-33.488485802416101,L, + 165500399500,-33.490900274287696,L, + 167424822750,-33.493171312186725,L, + 169349246000,-33.495295501018596,L, + 171273669250,-33.497269425688728,L, + 173198092500,-33.499099916386285,L, + 175122515750,-33.500783558016693,L, + 177046939000,-33.502306690201600,L, + 178971362250,-33.503682973319357,L, + 180895785500,-33.504895331897032,L, + 182820208750,-33.505943765934632,L, + 184744632000,-33.506818030148388,L, + 186669055250,-33.507490803781636,L, + 188593478500,-33.507948426456025,L, + 190517901750,-33.508126011374443,L, + 192442325000,-30.971082980028118,L, + 194366748250,-29.975504361324735,L, + 196291171500,-29.170225058181391,L, + 198215594750,-28.412335315046818,L, + 200140018000,-27.679722394483132,L, + 202064441250,-26.963589012839371,L, + 203988864500,-26.259340160351414,L, + 205913287750,-25.564250591540432,L, + 207837711000,-24.876532504391179,L, + 209762134250,-24.194927436549076,L, + 211686557500,-23.518533803043685,L, + 213610980750,-22.846663462316126,L, + 215535404000,-22.178802442631362,L, + 217459827250,-21.514520442071678,L, + 219384250500,-20.853484488915040,L, + 221308673750,-20.195421375594645,L, + 223233097000,-19.540112536057052,L, + 225157520250,-18.887361602363626,L, + 227081943500,-18.237021725447214,L, + 229006366750,-17.588964839260871,L, + 230930790000,-16.943079953230590,L, + 232855213250,-16.299278274897162,L, + 234779636500,-15.657493209916176,L, + 236704059750,-15.017656456395933,L, + 238628483000,-14.379730448295998,L, + 240552906250,-13.743681888444168,L, + 242477329500,-13.109488578725641,L, + 244401752750,-12.477132589893845,L, + 246326176000,-11.846629289874411,L, + 248250599250,-11.217985508856511,L, + 250175022500,-10.591220029860361,L, + 252099445750,-9.966384079304737,L, + 254023869000,-9.343520345871951,L, + 255948292250,-8.722710791832045,L, + 257872715500,-8.104037379455056,L, + 259797138750,-7.487619637051461,L, + 261721562000,-6.873606975009354,L, + 263645985250,-6.262181247115384,L, + 265570408500,-5.653580229330035,L, + 267494831750,-5.048106157524076,L, + 269419255000,-4.446152621348432,L, + 271343678250,-3.848253229332007,L, + 273268101500,-3.255132835300469,L, + 275192524750,-2.667856521877515,L, + 277116948000,-2.088029810404918,L, + 279041371250,-1.518364819591699,L, + 280965794500,-0.964060710778405,L, + 282890217750,-0.438163465444858,L, + 284814641000,-0.024738926830957,L, + 286739064250,-0.000005708130189,L, + 288663487500,-0.641060264516172,L, + 290587910750,-1.550085818922779,L, + 292512334000,-2.531510578118624,L, + 294436757250,-3.550851638387859,L, + 296361180500,-4.594117570659145,L, + 298285603750,-5.653946498224276,L, + 300210027000,-6.725873825243598,L, + 302134450250,-7.806925004333575,L, + 304058873500,-8.894980969304212,L, + 305983296750,-9.988442175229261,L, + 307907720000,-11.086050159754148,L, + 309832143250,-12.186765026577740,L, + 311756566500,-13.289703973749814,L, + 313680989750,-14.394073845553004,L, + 315605413000,-15.499150641935291,L, + 317529836250,-16.604220608128404,L, + 319454259500,-17.708592187478889,L, + 321378682750,-18.811532842198254,L, + 323303106000,-19.912251977890080,L, + 325227529250,-21.009863377509550,L, + 327151952500,-22.103316899471782,L, + 329076375750,-23.191374571989712,L, + 331000799000,-24.272424470419221,L, + 332925222250,-25.344347528570310,L, + 334849645500,-26.404184566985084,L, + 336774068750,-27.447441321189672,L, + 338698492000,-28.466794120846540,L, + 340622915250,-29.448210342305924,L, + 342547338500,-30.357243634036198,L, + 344471761750,-30.998294453681410,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.319344967603683 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319344967603683,L, + 1924423250,0.321910500526428,L, + 3848846500,0.322999149560928,L, + 5773269750,0.323413133621216,L, + 7697693000,0.323450118303299,L, + 9622116250,0.323262542486191,L, + 11546539500,0.322943389415741,L, + 13470962750,0.322556585073471,L, + 15395386000,0.322150558233261,L, + 17319809250,0.321765452623367,L, + 19244232500,0.321436882019043,L, + 21168655750,0.321198970079422,L, + 23093079000,0.321086376905441,L, + 25017502250,0.321136683225632,L, + 26941925500,0.321392476558685,L, + 28866348750,0.326478868722916,L, + 30790772000,0.341074317693710,L, + 32715195250,0.364890575408936,L, + 34639618500,0.396891295909882,L, + 36564041750,0.435117304325104,L, + 38488465000,0.476715832948685,L, + 40412888250,0.518270969390869,L, + 42337311500,0.556369721889496,L, + 44261734750,0.588167726993561,L, + 46186158000,0.611717343330383,L, + 48110581250,0.625994682312012,L, + 50035004500,0.630722999572754,L, + 51959427750,0.630567073822021,L, + 53883851000,0.630119562149048,L, + 55808274250,0.629406332969666,L, + 57732697500,0.628449618816376,L, + 59657120750,0.627268075942993,L, + 61581544000,0.625877737998962,L, + 63505967250,0.624292612075806,L, + 65430390500,0.622524619102478,L, + 67354813750,0.620584428310394,L, + 69279237000,0.618481397628784,L, + 71203660250,0.616223633289337,L, + 73128083500,0.613818466663361,L, + 75052506750,0.611272275447845,L, + 76976930000,0.608591020107269,L, + 78901353250,0.605779826641083,L, + 80825776500,0.602843225002289,L, + 82750199750,0.599785447120667,L, + 84674623000,0.596610128879547,L, + 86599046250,0.593320608139038,L, + 88523469500,0.589919865131378,L, + 90447892750,0.586410522460938,L, + 92372316000,0.582794904708862,L, + 94296739250,0.579075157642365,L, + 96221162500,0.575253009796143,L, + 98145585750,0.571330070495605,L, + 100070009000,0.567307710647583,L, + 101994432250,0.563187062740326,L, + 103918855500,0.558969020843506,L, + 105843278750,0.554654419422150,L, + 107767702000,0.550243794918060,L, + 109692125250,0.545737445354462,L, + 111616548500,0.541135489940643,L, + 113540971750,0.536438107490540,L, + 115465395000,0.531644940376282,L, + 117389818250,0.526755750179291,L, + 119314241500,0.521769881248474,L, + 121238664750,0.516686558723450,L, + 123163088000,0.511504769325256,L, + 125087511250,0.506223499774933,L, + 127011934500,0.500841140747070,L, + 128936357750,0.495356053113937,L, + 130860781000,0.489766448736191,L, + 132785204250,0.484070003032684,L, + 134709627500,0.478264242410660,L, + 136634050750,0.472346335649490,L, + 138558474000,0.466313123703003,L, + 140482897250,0.460160881280899,L, + 142407320500,0.453885614871979,L, + 144331743750,0.447482705116272,L, + 146256167000,0.440947026014328,L, + 148180590250,0.434272557497025,L, + 150105013500,0.427452981472015,L, + 152029436750,0.420480549335480,L, + 153953860000,0.413346827030182,L, + 155878283250,0.406042069196701,L, + 157802706500,0.398555040359497,L, + 159727129750,0.390872597694397,L, + 161651553000,0.382979869842529,L, + 163575976250,0.374858856201172,L, + 165500399500,0.366488575935364,L, + 167424822750,0.357843667268753,L, + 169349246000,0.348893463611603,L, + 171273669250,0.339600056409836,L, + 173198092500,0.329915642738342,L, + 175122515750,0.319778919219971,L, + 177046939000,0.309108704328537,L, + 178971362250,0.297793805599213,L, + 180895785500,0.285674840211868,L, + 182820208750,0.272508144378662,L, + 184744632000,0.257887303829193,L, + 186669055250,0.241029396653175,L, + 188593478500,0.219966560602188,L, + 190517901750,0.181769341230392,L, + 192442325000,0.000044941902161,L, + 194366748250,0.000040118600737,L, + 196291171500,0.000037785404857,L, + 198215594750,0.000036067656765,L, + 200140018000,0.000034675722418,L, + 202064441250,0.000033494310628,L, + 203988864500,0.000032463547541,L, + 205913287750,0.000031547566323,L, + 207837711000,0.000030722902011,L, + 209762134250,0.000029973178243,L, + 211686557500,0.000029286447898,L, + 213610980750,0.000028653679692,L, + 215535404000,0.000028067830499,L, + 217459827250,0.000027523314202,L, + 219384250500,0.000027015581509,L, + 221308673750,0.000026540892577,L, + 223233097000,0.000026096122383,L, + 225157520250,0.000025678618840,L, + 227081943500,0.000025286126402,L, + 229006366750,0.000024916706025,L, + 230930790000,0.000024568653316,L, + 232855213250,0.000024240500352,L, + 234779636500,0.000023930946554,L, + 236704059750,0.000023638838684,L, + 238628483000,0.000023363158107,L, + 240552906250,0.000023102995328,L, + 242477329500,0.000022857526346,L, + 244401752750,0.000022626027203,L, + 246326176000,0.000022407839424,L, + 248250599250,0.000022202366381,L, + 250175022500,0.000022009071472,L, + 252099445750,0.000021827481760,L, + 254023869000,0.000021657157049,L, + 255948292250,0.000021497706257,L, + 257872715500,0.000021348780137,L, + 259797138750,0.000021210074920,L, + 261721562000,0.000021081306841,L, + 263645985250,0.000020962252165,L, + 265570408500,0.000020852705347,L, + 267494831750,0.000020752522687,L, + 269419255000,0.000020661569579,L, + 271343678250,0.000020579791453,L, + 273268101500,0.000020507177396,L, + 275192524750,0.000020443789253,L, + 277116948000,0.000020389799829,L, + 279041371250,0.000020345514713,L, + 280965794500,0.000020311521439,L, + 282890217750,0.000020288927772,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232565656304359,L, + 290587910750,0.245429664850235,L, + 292512334000,0.254731386899948,L, + 294436757250,0.262120485305786,L, + 296361180500,0.268265932798386,L, + 298285603750,0.273518353700638,L, + 300210027000,0.278088837862015,L, + 302134450250,0.282116144895554,L, + 304058873500,0.285697221755981,L, + 305983296750,0.288903206586838,L, + 307907720000,0.291787892580032,L, + 309832143250,0.294393241405487,L, + 311756566500,0.296753019094467,L, + 313680989750,0.298894405364990,L, + 315605413000,0.300840169191360,L, + 317529836250,0.302609384059906,L, + 319454259500,0.304218381643295,L, + 321378682750,0.305681318044662,L, + 323303106000,0.307010591030121,L, + 325227529250,0.308217525482178,L, + 327151952500,0.309312224388123,L, + 329076375750,0.310304522514343,L, + 331000799000,0.311203867197037,L, + 332925222250,0.312020361423492,L, + 334849645500,0.312765032052994,L, + 336774068750,0.313452214002609,L, + 338698492000,0.314102530479431,L, + 340622915250,0.314752757549286,L, + 342547338500,0.315492510795593,L, + 344471761750,0.316851437091827,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.316844671964645 + KeyVer: 4005 + KeyCount: 179 + Key: + 0,0.316844671964645,L, + 1924423250,0.317553371191025,L, + 3848846500,0.317994207143784,L, + 5773269750,0.318131417036057,L, + 7697693000,0.317930310964584,L, + 9622116250,0.317365050315857,L, + 11546539500,0.316432714462280,L, + 13470962750,0.315173506736755,L, + 15395386000,0.313687086105347,L, + 17319809250,0.312128514051437,L, + 19244232500,0.310671806335449,L, + 21168655750,0.309460848569870,L, + 23093079000,0.308580964803696,L, + 25017502250,0.308061331510544,L, + 26941925500,0.307893633842468,L, + 28866348750,0.311985641717911,L, + 30790772000,0.324338674545288,L, + 32715195250,0.344708025455475,L, + 34639618500,0.372200399637222,L, + 36564041750,0.405122399330139,L, + 40412888250,0.476886868476868,L, + 42337311500,0.509808897972107,L, + 44261734750,0.537301301956177,L, + 46186158000,0.557670593261719,L, + 48110581250,0.570023655891418,L, + 50035004500,0.574115633964539,L, + 51959427750,0.573916792869568,L, + 53883851000,0.573346614837646,L, + 55808274250,0.572440505027771,L, + 57732697500,0.571227669715881,L, + 59657120750,0.569733500480652,L, + 61581544000,0.567979454994202,L, + 63505967250,0.565984308719635,L, + 65430390500,0.563764512538910,L, + 67354813750,0.561334133148193,L, + 69279237000,0.558706104755402,L, + 71203660250,0.555891692638397,L, + 73128083500,0.552900791168213,L, + 75052506750,0.549742400646210,L, + 76976930000,0.546424627304077,L, + 78901353250,0.542954802513123,L, + 80825776500,0.539339423179626,L, + 82750199750,0.535584449768066,L, + 84674623000,0.531695187091827,L, + 86599046250,0.527676761150360,L, + 88523469500,0.523533463478088,L, + 90447892750,0.519269347190857,L, + 92372316000,0.514888167381287,L, + 94296739250,0.510393202304840,L, + 96221162500,0.505787611007690,L, + 98145585750,0.501074135303497,L, + 100070009000,0.496255278587341,L, + 101994432250,0.491333335638046,L, + 103918855500,0.486310392618179,L, + 105843278750,0.481188237667084,L, + 107767702000,0.475968480110168,L, + 109692125250,0.470652639865875,L, + 111616548500,0.465241938829422,L, + 113540971750,0.459737360477448,L, + 115465395000,0.454139977693558,L, + 117389818250,0.448450416326523,L, + 119314241500,0.442669242620468,L, + 121238664750,0.436796814203262,L, + 123163088000,0.430833250284195,L, + 125087511250,0.424778819084167,L, + 127011934500,0.418633252382278,L, + 128936357750,0.412396103143692,L, + 130860781000,0.406066954135895,L, + 132785204250,0.399645000696182,L, + 134709627500,0.393129348754883,L, + 136634050750,0.386518746614456,L, + 138558474000,0.379811793565750,L, + 140482897250,0.373006761074066,L, + 142407320500,0.366101503372192,L, + 144331743750,0.359093695878983,L, + 146256167000,0.351980537176132,L, + 148180590250,0.344758927822113,L, + 150105013500,0.337425053119659,L, + 152029436750,0.329974651336670,L, + 153953860000,0.322402834892273,L, + 155878283250,0.314703822135925,L, + 157802706500,0.306871086359024,L, + 159727129750,0.298896700143814,L, + 161651553000,0.290771842002869,L, + 163575976250,0.282485574483871,L, + 165500399500,0.274025201797485,L, + 167424822750,0.265375286340714,L, + 169349246000,0.256517112255096,L, + 171273669250,0.247427478432655,L, + 173198092500,0.238077089190483,L, + 175122515750,0.228428348898888,L, + 177046939000,0.218431472778320,L, + 178971362250,0.208018124103546,L, + 180895785500,0.197090551257133,L, + 182820208750,0.185499250888824,L, + 184744632000,0.172995239496231,L, + 186669055250,0.159099221229553,L, + 188593478500,0.142608553171158,L, + 190517901750,0.115638822317123,L, + 192442325000,0.000028520822525,L, + 194366748250,0.000026909170629,L, + 196291171500,0.000026129557227,L, + 198215594750,0.000025555591492,L, + 200140018000,0.000025090486815,L, + 202064441250,0.000024695737011,L, + 203988864500,0.000024351316824,L, + 205913287750,0.000024045253667,L, + 207837711000,0.000023769702238,L, + 209762134250,0.000023519189199,L, + 211686557500,0.000023289725505,L, + 213610980750,0.000023078291633,L, + 215535404000,0.000022882537451,L, + 217459827250,0.000022700593036,L, + 219384250500,0.000022530941351,L, + 221308673750,0.000022372329113,L, + 223233097000,0.000022223712222,L, + 225157520250,0.000022084206648,L, + 227081943500,0.000021953061150,L, + 229006366750,0.000021829624529,L, + 230930790000,0.000021713325623,L, + 232855213250,0.000021603678761,L, + 234779636500,0.000021500243747,L, + 236704059750,0.000021402640414,L, + 238628483000,0.000021310523152,L, + 240552906250,0.000021223593649,L, + 242477329500,0.000021141571779,L, + 244401752750,0.000021064221073,L, + 246326176000,0.000020991314159,L, + 248250599250,0.000020922658223,L, + 250175022500,0.000020858071366,L, + 252099445750,0.000020797395337,L, + 254023869000,0.000020740482796,L, + 255948292250,0.000020687202777,L, + 257872715500,0.000020637440684,L, + 259797138750,0.000020591092834,L, + 261721562000,0.000020548066459,L, + 263645985250,0.000020508286980,L, + 265570408500,0.000020471683456,L, + 267494831750,0.000020438206775,L, + 269419255000,0.000020407818738,L, + 271343678250,0.000020380492060,L, + 273268101500,0.000020356226742,L, + 275192524750,0.000020335046429,L, + 277116948000,0.000020317005692,L, + 279041371250,0.000020302211851,L, + 280965794500,0.000020290852262,L, + 282890217750,0.000020283303456,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803917884827,L, + 288663487500,0.232919052243233,L, + 290587910750,0.245930269360542,L, + 292512334000,0.255280971527100,L, + 294436757250,0.262665152549744,L, + 296361180500,0.268771380186081,L, + 298285603750,0.273961156606674,L, + 300210027000,0.278452187776566,L, + 302134450250,0.282387882471085,L, + 304058873500,0.285868585109711,L, + 305983296750,0.288967907428741,L, + 307907720000,0.291741788387299,L, + 309832143250,0.294234037399292,L, + 311756566500,0.296479731798172,L, + 313680989750,0.298507750034332,L, + 315605413000,0.300342172384262,L, + 317529836250,0.302003324031830,L, + 319454259500,0.303509086370468,L, + 321378682750,0.304874986410141,L, + 323303106000,0.306115329265594,L, + 325227529250,0.307243049144745,L, + 327151952500,0.308270871639252,L, + 329076375750,0.309211075305939,L, + 331000799000,0.310076832771301,L, + 332925222250,0.310882627964020,L, + 334849645500,0.311645925045013,L, + 336774068750,0.312390059232712,L, + 338698492000,0.313149780035019,L, + 340622915250,0.313986390829086,L, + 342547338500,0.315037369728088,L, + 344471761750,0.316851407289505,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.319212555885315 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.319212555885315,L, + 1924423250,0.319125592708588,L, + 3848846500,0.318968743085861,L, + 5773269750,0.318790227174759,L, + 7697693000,0.318605095148087,L, + 9622116250,0.318420708179474,L, + 11546539500,0.318241685628891,L, + 13470962750,0.318071484565735,L, + 15395386000,0.317913055419922,L, + 17319809250,0.317769199609756,L, + 19244232500,0.317642778158188,L, + 21168655750,0.317536890506744,L, + 23093079000,0.317455232143402,L, + 25017502250,0.317402094602585,L, + 26941925500,0.317382931709290,L, + 28866348750,0.321995794773102,L, + 30790772000,0.335921168327332,L, + 32715195250,0.358883082866669,L, + 34639618500,0.389874815940857,L, + 36564041750,0.426987290382385,L, + 38488465000,0.467436671257019,L, + 40412888250,0.507885992527008,L, + 42337311500,0.544998407363892,L, + 44261734750,0.575990200042725,L, + 46186158000,0.598952174186707,L, + 48110581250,0.612877607345581,L, + 50035004500,0.617490410804749,L, + 51959427750,0.617330253124237,L, + 53883851000,0.616870701313019,L, + 55808274250,0.616138458251953,L, + 57732697500,0.615156650543213,L, + 59657120750,0.613944590091705,L, + 61581544000,0.612519085407257,L, + 63505967250,0.610894143581390,L, + 65430390500,0.609082698822021,L, + 67354813750,0.607095539569855,L, + 69279237000,0.604942381381989,L, + 71203660250,0.602631688117981,L, + 73128083500,0.600171148777008,L, + 75052506750,0.597567498683929,L, + 76976930000,0.594826757907867,L, + 78901353250,0.591954112052917,L, + 80825776500,0.588954746723175,L, + 82750199750,0.585832834243774,L, + 84674623000,0.582592248916626,L, + 86599046250,0.579236567020416,L, + 88523469500,0.575768887996674,L, + 90447892750,0.572191894054413,L, + 92372316000,0.568508327007294,L, + 94296739250,0.564720034599304,L, + 96221162500,0.560829401016235,L, + 98145585750,0.556837916374207,L, + 100070009000,0.552747130393982,L, + 101994432250,0.548558294773102,L, + 103918855500,0.544272601604462,L, + 105843278750,0.539890766143799,L, + 107767702000,0.535413503646851,L, + 109692125250,0.530841529369354,L, + 111616548500,0.526174783706665,L, + 113540971750,0.521413743495941,L, + 115465395000,0.516558229923248,L, + 117389818250,0.511608004570007,L, + 119314241500,0.506562650203705,L, + 121238664750,0.501421570777893,L, + 123163088000,0.496183931827545,L, + 125087511250,0.490848749876022,L, + 127011934500,0.485414803028107,L, + 128936357750,0.479880541563034,L, + 130860781000,0.474244356155396,L, + 132785204250,0.468504130840302,L, + 134709627500,0.462657690048218,L, + 136634050750,0.456702321767807,L, + 138558474000,0.450635254383087,L, + 140482897250,0.444453001022339,L, + 142407320500,0.438151895999908,L, + 144331743750,0.431727617979050,L, + 146256167000,0.425175309181213,L, + 148180590250,0.418489575386047,L, + 150105013500,0.411664366722107,L, + 152029436750,0.404692530632019,L, + 153953860000,0.397566080093384,L, + 155878283250,0.390275955200195,L, + 157802706500,0.382811665534973,L, + 159727129750,0.375160872936249,L, + 161651553000,0.367309570312500,L, + 163575976250,0.359240889549255,L, + 165500399500,0.350935161113739,L, + 167424822750,0.342368543148041,L, + 169349246000,0.333512216806412,L, + 171273669250,0.324330538511276,L, + 173198092500,0.314778625965118,L, + 175122515750,0.304798901081085,L, + 177046939000,0.294315040111542,L, + 178971362250,0.283222436904907,L, + 180895785500,0.271371424198151,L, + 182820208750,0.258532971143723,L, + 184744632000,0.244325146079063,L, + 186669055250,0.228012204170227,L, + 188593478500,0.207745254039764,L, + 190517901750,0.171379089355469,L, + 192442325000,0.000042378902435,L, + 194366748250,0.000038056878111,L, + 196291171500,0.000035966164432,L, + 198215594750,0.000034426931961,L, + 200140018000,0.000033179661841,L, + 202064441250,0.000032121028198,L, + 203988864500,0.000031197389035,L, + 205913287750,0.000030376604627,L, + 207837711000,0.000029637647458,L, + 209762134250,0.000028965838283,L, + 211686557500,0.000028350481443,L, + 213610980750,0.000027783473342,L, + 215535404000,0.000027258514820,L, + 217459827250,0.000026770583645,L, + 219384250500,0.000026315621653,L, + 221308673750,0.000025890267352,L, + 223233097000,0.000025491717679,L, + 225157520250,0.000025117604309,L, + 227081943500,0.000024765902708,L, + 229006366750,0.000024434873922,L, + 230930790000,0.000024122995455,L, + 232855213250,0.000023828946723,L, + 234779636500,0.000023551561753,L, + 236704059750,0.000023289810997,L, + 238628483000,0.000023042783141,L, + 240552906250,0.000022809657821,L, + 242477329500,0.000022589701985,L, + 244401752750,0.000022382260795,L, + 246326176000,0.000022186750357,L, + 248250599250,0.000022002630431,L, + 250175022500,0.000021829428078,L, + 252099445750,0.000021666708562,L, + 254023869000,0.000021514084438,L, + 255948292250,0.000021371204639,L, + 257872715500,0.000021237752662,L, + 259797138750,0.000021113459297,L, + 261721562000,0.000020998080799,L, + 263645985250,0.000020891398890,L, + 265570408500,0.000020793238946,L, + 267494831750,0.000020703466362,L, + 269419255000,0.000020621966542,L, + 271343678250,0.000020548684915,L, + 273268101500,0.000020483617845,L, + 275192524750,0.000020426818082,L, + 277116948000,0.000020378432964,L, + 279041371250,0.000020338753529,L, + 280965794500,0.000020308292733,L, + 282890217750,0.000020288054657,L, + 284814641000,0.000020280480385,L, + 286739064250,0.206803932785988,L, + 288663487500,0.232568234205246,L, + 290587910750,0.245435804128647,L, + 292512334000,0.254741251468658,L, + 294436757250,0.262134104967117,L, + 296361180500,0.268283247947693,L, + 298285603750,0.273539364337921,L, + 300210027000,0.278113365173340,L, + 302134450250,0.282144129276276,L, + 304058873500,0.285728573799133,L, + 305983296750,0.288937807083130,L, + 307907720000,0.291825562715530,L, + 309832143250,0.294433921575546,L, + 311756566500,0.296796500682831,L, + 313680989750,0.298940479755402,L, + 315605413000,0.300888627767563,L, + 317529836250,0.302660077810287,L, + 319454259500,0.304271012544632,L, + 321378682750,0.305735558271408,L, + 323303106000,0.307066231966019,L, + 325227529250,0.308274149894714,L, + 327151952500,0.309369504451752,L, + 329076375750,0.310361951589584,L, + 331000799000,0.311260938644409,L, + 332925222250,0.312076270580292,L, + 334849645500,0.312819033861160,L, + 336774068750,0.313503116369247,L, + 338698492000,0.314148783683777,L, + 340622915250,0.314791977405548,L, + 342547338500,0.315520226955414,L, + 344471761750,0.316851407289505,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_020" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.087181329727173 + KeyVer: 4005 + KeyCount: 102 + Key: + 0,0.087181329727173,L, + 1924423250,0.086436510086060,L, + 5773269750,0.084947824478149,L, + 7697693000,0.084203004837036,L, + 17319809250,0.080481290817261,L, + 19244232500,0.079736471176147,L, + 26941925500,0.076759099960327,L, + 28866348750,0.076014280319214,L, + 30790772000,0.075270414352417,L, + 32715195250,0.074525594711304,L, + 36564041750,0.073036909103394,L, + 38488465000,0.072292089462280,L, + 40412888250,0.071548223495483,L, + 42337311500,0.070803403854370,L, + 48110581250,0.068570375442505,L, + 50035004500,0.067825555801392,L, + 57732697500,0.064848184585571,L, + 59657120750,0.064103364944458,L, + 61581544000,0.063359498977661,L, + 63505967250,0.062614679336548,L, + 65430390500,0.061870574951172,L, + 69279237000,0.060381412506104,L, + 71203660250,0.059637069702148,L, + 73128083500,0.058892488479614,L, + 75052506750,0.058148384094238,L, + 76976930000,0.057403802871704,L, + 78901353250,0.056659460067749,L, + 82750199750,0.055170297622681,L, + 84674623000,0.054426193237305,L, + 86599046250,0.053681612014771,L, + 88523469500,0.052937269210815,L, + 90447892750,0.052192687988281,L, + 92372316000,0.051448345184326,L, + 96221162500,0.049959182739258,L, + 98145585750,0.049215078353882,L, + 100070009000,0.048470497131348,L, + 101994432250,0.047726154327393,L, + 103918855500,0.046981573104858,L, + 105843278750,0.013482332229614,L, + 192442325000,0.013482332229614,L, + 194366748250,0.014424800872803,L, + 196291171500,0.015367031097412,L, + 198215594750,0.016309499740601,L, + 200140018000,0.017251729965210,L, + 202064441250,0.018193721771240,L, + 203988864500,0.019136190414429,L, + 205913287750,0.020078420639038,L, + 207837711000,0.021020889282227,L, + 209762134250,0.021963119506836,L, + 211686557500,0.022905588150024,L, + 213610980750,0.023847818374634,L, + 215535404000,0.024790287017822,L, + 219384250500,0.026674747467041,L, + 221308673750,0.027617216110229,L, + 223233097000,0.028559446334839,L, + 225157520250,0.029501914978027,L, + 227081943500,0.030444145202637,L, + 229006366750,0.031386137008667,L, + 230930790000,0.032328605651855,L, + 232855213250,0.033270835876465,L, + 234779636500,0.034213304519653,L, + 236704059750,0.035155534744263,L, + 238628483000,0.036098003387451,L, + 240552906250,0.037040233612061,L, + 242477329500,0.037982702255249,L, + 244401752750,0.038924932479858,L, + 246326176000,0.039867401123047,L, + 248250599250,0.040809631347656,L, + 250175022500,0.041752099990845,L, + 254023869000,0.043636560440063,L, + 255948292250,0.044578552246094,L, + 257872715500,0.045521020889282,L, + 259797138750,0.046463251113892,L, + 261721562000,0.047405719757080,L, + 263645985250,0.048347949981689,L, + 265570408500,0.049290418624878,L, + 267494831750,0.050232648849487,L, + 269419255000,0.051175117492676,L, + 271343678250,0.052117347717285,L, + 273268101500,0.053059816360474,L, + 275192524750,0.054002046585083,L, + 277116948000,0.054944515228271,L, + 279041371250,0.055886745452881,L, + 280965794500,0.056829214096069,L, + 282890217750,0.057771444320679,L, + 284814641000,0.058713436126709,L, + 286739064250,0.059655666351318,L, + 288663487500,0.060598134994507,L, + 290587910750,0.061540365219116,L, + 294436757250,0.063425302505493,L, + 300210027000,0.066251993179321,L, + 302134450250,0.067194700241089,L, + 307907720000,0.070021390914917,L, + 309832143250,0.070964097976685,L, + 311756566500,0.071905851364136,L, + 315605413000,0.073790311813354,L, + 317529836250,0.074733018875122,L, + 323303106000,0.077559709548950,L, + 325227529250,0.078502416610718,L, + 331000799000,0.081329107284546,L, + 332925222250,0.082271814346313,L, + 344471761750,0.087925195693970,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.817198157310486 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.817198157310486,L, + 1924423250,0.818611741065979,L, + 3848846500,0.820890069007874,L, + 5773269750,0.823978066444397,L, + 7697693000,0.827826142311096,L, + 9622116250,0.832388758659363,L, + 11546539500,0.837626099586487,L, + 13470962750,0.843501687049866,L, + 15395386000,0.849981427192688,L, + 17319809250,0.857035279273987,L, + 19244232500,0.864635109901428,L, + 21168655750,0.872755169868469,L, + 23093079000,0.881372094154358,L, + 25017502250,0.890463471412659,L, + 26941925500,0.900009036064148,L, + 28866348750,0.909990191459656,L, + 30790772000,0.920389294624329,L, + 32715195250,0.931189656257629,L, + 34639618500,0.942376255989075,L, + 36564041750,0.953934550285339,L, + 38488465000,0.965851187705994,L, + 40412888250,0.978113293647766,L, + 42337311500,0.990708947181702,L, + 44261734750,1.003626704216003,L, + 46186158000,1.016856551170349,L, + 48110581250,1.030387282371521,L, + 50035004500,1.044210076332092,L, + 51959427750,1.058314919471741,L, + 53883851000,1.072693705558777,L, + 55808274250,1.087337851524353,L, + 57732697500,1.102239012718201,L, + 59657120750,1.117389798164368,L, + 61581544000,1.132782340049744,L, + 63505967250,1.148409008979797,L, + 65430390500,1.164262890815735,L, + 67354813750,1.180336594581604,L, + 69279237000,1.196622967720032,L, + 71203660250,1.213115096092224,L, + 73128083500,1.229805588722229,L, + 75052506750,1.246686816215515,L, + 76976930000,1.263751387596130,L, + 78901353250,1.280990242958069,L, + 80825776500,1.298395037651062,L, + 82750199750,1.315954804420471,L, + 84674623000,1.333658099174500,L, + 86599046250,1.351490855216980,L, + 88523469500,1.369436383247375,L, + 90447892750,1.387471795082092,L, + 92372316000,1.405567765235901,L, + 94296739250,1.423682570457458,L, + 96221162500,1.441750407218933,L, + 98145585750,1.459661602973938,L, + 100070009000,1.477201104164124,L, + 101994432250,1.493816971778870,L, + 103918855500,1.506080508232117,L, + 105843278750,-0.513281106948853,L, + 107767702000,-0.026323080062866,L, + 109692125250,-0.023519873619080,L, + 111616548500,-0.020761489868164,L, + 113540971750,-0.018049478530884,L, + 115465395000,-0.015385150909424,L, + 117389818250,-0.012770414352417,L, + 119314241500,-0.010206818580627,L, + 121238664750,-0.007696270942688,L, + 123163088000,-0.005240440368652,L, + 125087511250,-0.002841711044312,L, + 127011934500,-0.000502109527588,L, + 128936357750,0.001775979995728,L, + 130860781000,0.003989934921265,L, + 132785204250,0.006137132644653,L, + 134709627500,0.008214831352234,L, + 136634050750,0.010219573974609,L, + 138558474000,0.012148141860962,L, + 140482897250,0.013996720314026,L, + 142407320500,0.015761494636536,L, + 144331743750,0.017437934875488,L, + 146256167000,0.019021272659302,L, + 148180590250,0.020506381988525,L, + 150105013500,0.021887302398682,L, + 152029436750,0.023157596588135,L, + 153953860000,0.024310231208801,L, + 155878283250,0.025337100028992,L, + 157802706500,0.026229262351990,L, + 159727129750,0.026976346969604,L, + 161651553000,0.027567028999329,L, + 163575976250,0.027987837791443,L, + 165500399500,0.028223156929016,L, + 167424822750,0.028255105018616,L, + 169349246000,0.028062105178833,L, + 171273669250,0.027618527412415,L, + 173198092500,0.026892900466919,L, + 175122515750,0.025846481323242,L, + 177046939000,0.024429917335510,L, + 178971362250,0.022578954696655,L, + 180895785500,0.020207166671753,L, + 182820208750,0.017192482948303,L, + 184744632000,0.013352394104004,L, + 186669055250,0.008389234542847,L, + 188593478500,0.001745700836182,L, + 190517901750,-0.007927298545837,L, + 192442325000,-0.026323080062866,L, + 194366748250,-0.023398041725159,L, + 196291171500,-0.020269632339478,L, + 198215594750,-0.016932249069214,L, + 200140018000,-0.013380289077759,L, + 202064441250,-0.009607791900635,L, + 203988864500,-0.005608201026917,L, + 205913287750,-0.001375198364258,L, + 207837711000,0.003098011016846,L, + 209762134250,0.007818222045898,L, + 211686557500,0.012793064117432,L, + 213610980750,0.018029928207397,L, + 215535404000,0.023536682128906,L, + 217459827250,0.029321670532227,L, + 219384250500,0.035393118858337,L, + 221308673750,0.041760087013245,L, + 223233097000,0.048431634902954,L, + 225157520250,0.055417180061340,L, + 227081943500,0.062726616859436,L, + 229006366750,0.070370078086853,L, + 230930790000,0.078358054161072,L, + 232855213250,0.086701154708862,L, + 234779636500,0.095410704612732,L, + 236704059750,0.104497790336609,L, + 238628483000,0.113974213600159,L, + 240552906250,0.123851656913757,L, + 242477329500,0.134142041206360,L, + 244401752750,0.144857287406921,L, + 246326176000,0.156009554862976,L, + 248250599250,0.167610406875610,L, + 250175022500,0.179671168327332,L, + 252099445750,0.192203044891357,L, + 254023869000,0.205216169357300,L, + 255948292250,0.218719840049744,L, + 257872715500,0.232721805572510,L, + 259797138750,0.247228264808655,L, + 261721562000,0.262243390083313,L, + 263645985250,0.277768373489380,L, + 265570408500,0.293801307678223,L, + 267494831750,0.310336351394653,L, + 269419255000,0.327362656593323,L, + 271343678250,0.344864368438721,L, + 273268101500,0.362818956375122,L, + 275192524750,0.381196856498718,L, + 277116948000,0.399960756301880,L, + 279041371250,0.419064640998840,L, + 280965794500,0.438453674316406,L, + 282890217750,0.458063960075378,L, + 284814641000,0.477822422981262,L, + 286739064250,0.497648239135742,L, + 288663487500,0.517453193664551,L, + 290587910750,0.537143468856812,L, + 292512334000,0.556622385978699,L, + 294436757250,0.575791358947754,L, + 296361180500,0.594554185867310,L, + 298285603750,0.612818598747253,L, + 300210027000,0.630498886108398,L, + 302134450250,0.647518038749695,L, + 304058873500,0.663809299468994,L, + 305983296750,0.679316997528076,L, + 307907720000,0.693997383117676,L, + 309832143250,0.707817912101746,L, + 311756566500,0.720757365226746,L, + 313680989750,0.732804417610168,L, + 315605413000,0.743956208229065,L, + 317529836250,0.754218697547913,L, + 319454259500,0.763603568077087,L, + 321378682750,0.772127747535706,L, + 323303106000,0.779812693595886,L, + 325227529250,0.786682009696960,L, + 327151952500,0.792763590812683,L, + 329076375750,0.798083901405334,L, + 331000799000,0.802672743797302,L, + 332925222250,0.806558966636658,L, + 334849645500,0.809772133827209,L, + 336774068750,0.812339901924133,L, + 338698492000,0.814290881156921,L, + 340622915250,0.815652489662170,L, + 342547338500,0.816451191902161,L, + 344471761750,0.816711783409119,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 72.193801790988744 + KeyVer: 4005 + KeyCount: 123 + Key: + 0,72.193801790988744,L, + 7697693000,70.683045908854140,L, + 9622116250,70.305363768509650,L, + 11546539500,69.927674797975996,L, + 13470962750,69.549985827442356,L, + 19244232500,68.416918915841393,L, + 21168655750,68.039223115118574,L, + 23093079000,67.661540974774084,L, + 25017502250,67.283852004240430,L, + 26941925500,66.906169863895954,L, + 34639618500,65.395413981761337,L, + 36564041750,65.017725011227697,L, + 38488465000,64.640029210504863,L, + 40412888250,64.262347070160388,L, + 42337311500,63.884658099626733,L, + 44261734750,63.506975959282251,L, + 46186158000,63.129280158559425,L, + 50035004500,62.373915877870466,L, + 51959427750,61.996220077147640,L, + 65430390500,59.352397283412074,L, + 67354813750,58.974715143067591,L, + 80825776500,56.330892349332025,L, + 82750199750,55.953206793892960,L, + 84674623000,55.575517823359306,L, + 88523469500,54.820146712481169,L, + 90447892750,54.442457741947514,L, + 92372316000,54.064765356319278,L, + 94296739250,53.687076385785630,L, + 96221162500,53.309384000157387,L, + 98145585750,52.931701859812911,L, + 100070009000,52.554009474184667,L, + 101994432250,52.176327333840185,L, + 103918855500,51.798638363306537,L, + 105843278750,34.802668840238027,L, + 107767702000,34.802665425143438,L, + 109692125250,34.802668840238027,L, + 119314241500,34.802668840238027,L, + 121238664750,34.802662010048856,L, + 123163088000,34.802668840238027,L, + 125087511250,34.802668840238027,L, + 127011934500,34.802665425143438,L, + 128936357750,34.802665425143438,L, + 130860781000,34.802668840238027,L, + 132785204250,34.802665425143438,L, + 134709627500,34.802668840238027,L, + 136634050750,34.802665425143438,L, + 138558474000,34.802668840238027,L, + 140482897250,34.802665425143438,L, + 142407320500,34.802668840238027,L, + 144331743750,34.802665425143438,L, + 146256167000,34.802665425143438,L, + 148180590250,34.802668840238027,L, + 150105013500,34.802665425143438,L, + 152029436750,34.802668840238027,L, + 153953860000,34.802662010048856,L, + 155878283250,34.802665425143438,L, + 159727129750,34.802665425143438,L, + 161651553000,34.802668840238027,L, + 163575976250,34.802665425143438,L, + 165500399500,34.802668840238027,L, + 167424822750,34.802668840238027,L, + 169349246000,34.802665425143438,L, + 171273669250,34.802668840238027,L, + 173198092500,34.802665425143438,L, + 178971362250,34.802665425143438,L, + 180895785500,34.802668840238027,L, + 182820208750,34.802662010048856,L, + 184744632000,34.802668840238027,L, + 186669055250,34.802665425143438,L, + 188593478500,34.802665425143438,L, + 190517901750,34.802668840238027,L, + 192442325000,34.802665425143438,L, + 194366748250,35.280751346286969,L, + 196291171500,35.758833852335904,L, + 198215594750,36.236926603668600,L, + 202064441250,37.193098445955656,L, + 203988864500,37.671180952004597,L, + 205913287750,38.149270288242704,L, + 211686557500,39.583528051673284,L, + 213610980750,40.061610557722226,L, + 215535404000,40.539703309054921,L, + 217459827250,41.017785815103856,L, + 219384250500,41.495878566436552,L, + 221308673750,41.973957657390912,L, + 223233097000,42.452046993629018,L, + 227081943500,43.408218835916074,L, + 229006366750,43.886308172154180,L, + 230930790000,44.364390678203122,L, + 232855213250,44.842483429535818,L, + 234779636500,45.320565935584760,L, + 238628483000,46.276737777871809,L, + 240552906250,46.754827114109922,L, + 242477329500,47.232909620158864,L, + 244401752750,47.711002371491560,L, + 250175022500,49.145260134922133,L, + 252099445750,49.623342640971075,L, + 254023869000,50.101431977209188,L, + 255948292250,50.579517898352712,L, + 257872715500,51.057600404401654,L, + 259797138750,51.535689740639761,L, + 261721562000,52.013772246688703,L, + 265570408500,52.969944088975751,L, + 267494831750,53.448033425213865,L, + 269419255000,53.926115931262807,L, + 271343678250,54.404201852406331,L, + 273268101500,54.882294603739027,L, + 275192524750,55.360377109787969,L, + 279041371250,56.316555782264189,L, + 280965794500,56.794641703407713,L, + 282890217750,57.272731039645826,L, + 284814641000,57.750813545694768,L, + 294436757250,60.141243151412390,L, + 296361180500,60.619335902745085,L, + 300210027000,61.575507745032141,L, + 302134450250,62.053586835986493,L, + 304058873500,62.531679587319189,L, + 331000799000,69.224882483328543,L, + 334849645500,70.181054325615605,L, + 336774068750,70.659147076948301,L, + 338698492000,71.137232998091818,L, + 340622915250,71.615312089046171,L, + 342547338500,72.093404840378867,L, + 344471761750,72.571490761522398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.345074235403995 + KeyVer: 4005 + KeyCount: 140 + Key: + 0,-20.345074235403995,L, + 1924423250,-20.191412054551854,L, + 3848846500,-20.037751581247004,L, + 5773269750,-19.884089400394863,L, + 7697693000,-19.730425511995431,L, + 9622116250,-19.576763331143290,L, + 11546539500,-19.423102857838440,L, + 17319809250,-18.962116315282017,L, + 19244232500,-18.808452426882582,L, + 21168655750,-18.654791953577735,L, + 23093079000,-18.501128065178300,L, + 25017502250,-18.347467591873453,L, + 26941925500,-18.193803703474018,L, + 32715195250,-17.732822283559472,L, + 36564041750,-17.425494506760607,L, + 38488465000,-17.271834033455757,L, + 40412888250,-17.118171852603616,L, + 42337311500,-16.964507964204184,L, + 44261734750,-16.810845783352043,L, + 48110581250,-16.503524836742343,L, + 50035004500,-16.349860948342911,L, + 57732697500,-15.735212224934347,L, + 59657120750,-15.581553459176790,L, + 61581544000,-15.427887863230065,L, + 63505967250,-15.274227389925215,L, + 71203660250,-14.659578666516651,L, + 75052506750,-14.352257719906955,L, + 78901353250,-14.044929943108087,L, + 80825776500,-13.891268616029592,L, + 82750199750,-13.737605581403805,L, + 84674623000,-13.583945961872603,L, + 88523469500,-13.276619892621028,L, + 90447892750,-13.122958565542534,L, + 92372316000,-12.969298092237684,L, + 94296739250,-12.815634203838250,L, + 96221162500,-12.661972022986109,L, + 98145585750,-12.508311549681261,L, + 100070009000,-12.354649368829120,L, + 101994432250,-12.200986334203334,L, + 103918855500,-12.047325860898484,L, + 105843278750,-5.132533698967659,L, + 109692125250,-5.132533698967659,L, + 111616548500,-5.132534552741306,L, + 113540971750,-5.132533698967659,L, + 117389818250,-5.132533698967659,L, + 119314241500,-5.132533272080837,L, + 121238664750,-5.132533698967659,L, + 123163088000,-5.132534552741306,L, + 125087511250,-5.132534125854483,L, + 127011934500,-5.132534125854483,L, + 128936357750,-5.132533698967659,L, + 130860781000,-5.132534125854483,L, + 132785204250,-5.132533698967659,L, + 134709627500,-5.132534125854483,L, + 136634050750,-5.132533698967659,L, + 138558474000,-5.132533698967659,L, + 140482897250,-5.132534125854483,L, + 142407320500,-5.132533698967659,L, + 152029436750,-5.132533698967659,L, + 153953860000,-5.132534552741306,L, + 157802706500,-5.132533698967659,L, + 159727129750,-5.132534552741306,L, + 161651553000,-5.132533698967659,L, + 163575976250,-5.132533698967659,L, + 165500399500,-5.132534125854483,L, + 167424822750,-5.132533698967659,L, + 175122515750,-5.132533698967659,L, + 178971362250,-5.132534552741306,L, + 182820208750,-5.132533698967659,L, + 184744632000,-5.132534552741306,L, + 186669055250,-5.132533698967659,L, + 188593478500,-5.132534125854483,L, + 190517901750,-5.132533698967659,L, + 192442325000,-5.132533698967659,L, + 194366748250,-5.327042972377357,L, + 196291171500,-5.521551818900232,L, + 198215594750,-5.716060238536283,L, + 200140018000,-5.910570365719626,L, + 202064441250,-6.105077931582031,L, + 203988864500,-6.299588058765375,L, + 205913287750,-6.494096051514603,L, + 207837711000,-6.688604898037477,L, + 209762134250,-6.883115452107644,L, + 211686557500,-7.077623017970049,L, + 215535404000,-7.466641564789444,L, + 217459827250,-7.661149984425495,L, + 219384250500,-7.855657550287900,L, + 223233097000,-8.244677804654588,L, + 225157520250,-8.439185370516991,L, + 227081943500,-8.633693790153043,L, + 229006366750,-8.828203063562741,L, + 230930790000,-9.022713190746083,L, + 232855213250,-9.217220756608489,L, + 234779636500,-9.411729176244540,L, + 236704059750,-9.606240157201530,L, + 238628483000,-9.800746869290288,L, + 240552906250,-9.995256996473632,L, + 242477329500,-10.189765416109683,L, + 244401752750,-10.384274689519380,L, + 246326176000,-10.578782255381785,L, + 248250599250,-10.773292382565129,L, + 252099445750,-11.162309221837232,L, + 254023869000,-11.356818495246928,L, + 255948292250,-11.551328622430272,L, + 257872715500,-11.745839603387262,L, + 259797138750,-11.940344607928729,L, + 263645985250,-12.329363154748123,L, + 265570408500,-12.523871574384174,L, + 267494831750,-12.718381701567518,L, + 269419255000,-12.912888413656276,L, + 271343678250,-13.107399394613267,L, + 273268101500,-13.301907814249319,L, + 275192524750,-13.496417941432661,L, + 277116948000,-13.690925507295066,L, + 280965794500,-14.079944054114462,L, + 282890217750,-14.274450766203220,L, + 284814641000,-14.468960039612917,L, + 286739064250,-14.663468459248968,L, + 288663487500,-14.857980293979605,L, + 292512334000,-15.246997133251707,L, + 294436757250,-15.441507260435051,L, + 296361180500,-15.636013972523809,L, + 298285603750,-15.830522392159860,L, + 300210027000,-16.025032519343203,L, + 302134450250,-16.219540938979254,L, + 304058873500,-16.414047651068014,L, + 305983296750,-16.608559485798651,L, + 313680989750,-17.386593164342855,L, + 315605413000,-17.581103291526198,L, + 317529836250,-17.775611711162249,L, + 319454259500,-17.970118423251009,L, + 323303106000,-18.359138677617697,L, + 325227529250,-18.553650512348330,L, + 327151952500,-18.748155516889799,L, + 329076375750,-18.942665644073141,L, + 331000799000,-19.137174063709192,L, + 332925222250,-19.331684190892535,L, + 340622915250,-20.109717869436739,L, + 342547338500,-20.304229704167376,L, + 344471761750,-20.498736416256136,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 17.551200723339925 + KeyVer: 4005 + KeyCount: 151 + Key: + 0,17.551200723339925,L, + 1924423250,17.638762040952070,L, + 3848846500,17.726330188753387,L, + 5773269750,17.813896629007409,L, + 7697693000,17.901457946619555,L, + 9622116250,17.989024386873577,L, + 11546539500,18.076589119580305,L, + 13470962750,18.164157267381622,L, + 15395386000,18.251718584993768,L, + 17319809250,18.339283317700495,L, + 19244232500,18.426849757954518,L, + 21168655750,18.514414490661249,L, + 25017502250,18.689547371169294,L, + 28866348750,18.864673421488170,L, + 30790772000,18.952239861742193,L, + 32715195250,19.039804594448924,L, + 34639618500,19.127371034702946,L, + 36564041750,19.214934059862383,L, + 38488465000,19.302502207663700,L, + 40412888250,19.390065232823137,L, + 42337311500,19.477631673077159,L, + 48110581250,19.740325871197349,L, + 50035004500,19.827892311451372,L, + 51959427750,19.915457044158103,L, + 53883851000,20.003020069317540,L, + 55808274250,20.090589924666148,L, + 57732697500,20.178151242278293,L, + 59657120750,20.265717682532316,L, + 61581544000,20.353282415239047,L, + 63505967250,20.440845440398483,L, + 65430390500,20.528411880652506,L, + 71203660250,20.791106078772696,L, + 73128083500,20.878674226574010,L, + 75052506750,20.966235544186155,L, + 76976930000,21.053801984440177,L, + 78901353250,21.141366717146909,L, + 80825776500,21.228933157400931,L, + 82750199750,21.316494475013076,L, + 84674623000,21.404064330361685,L, + 86599046250,21.491627355521121,L, + 88523469500,21.579193795775144,L, + 90447892750,21.666756820934584,L, + 94296739250,21.841886286348043,L, + 96221162500,21.929452726602065,L, + 98145585750,22.017017459308796,L, + 100070009000,22.104583899562819,L, + 101994432250,22.192146924722255,L, + 103918855500,22.279715072523572,L, + 105843278750,26.220141704704769,L, + 107767702000,26.220141704704769,L, + 109692125250,26.220138289610183,L, + 111616548500,26.220143412252060,L, + 113540971750,26.220143412252060,L, + 115465395000,26.220141704704769,L, + 117389818250,26.220143412252060,L, + 119314241500,26.220139997157474,L, + 121238664750,26.220141704704769,L, + 123163088000,26.220139997157474,L, + 125087511250,26.220139997157474,L, + 127011934500,26.220143412252060,L, + 128936357750,26.220138289610183,L, + 130860781000,26.220145119799355,L, + 132785204250,26.220139997157474,L, + 134709627500,26.220143412252060,L, + 136634050750,26.220139997157474,L, + 138558474000,26.220143412252060,L, + 142407320500,26.220143412252060,L, + 144331743750,26.220139997157474,L, + 146256167000,26.220141704704769,L, + 148180590250,26.220141704704769,L, + 150105013500,26.220139997157474,L, + 152029436750,26.220141704704769,L, + 153953860000,26.220141704704769,L, + 155878283250,26.220143412252060,L, + 161651553000,26.220138289610183,L, + 163575976250,26.220141704704769,L, + 165500399500,26.220139997157474,L, + 167424822750,26.220139997157474,L, + 169349246000,26.220141704704769,L, + 171273669250,26.220139997157474,L, + 175122515750,26.220143412252060,L, + 177046939000,26.220141704704769,L, + 178971362250,26.220141704704769,L, + 182820208750,26.220138289610183,L, + 184744632000,26.220141704704769,L, + 188593478500,26.220138289610183,L, + 190517901750,26.220141704704769,L, + 192442325000,26.220141704704769,L, + 194366748250,26.109297979759376,L, + 196291171500,25.998457669908568,L, + 198215594750,25.887615652510469,L, + 200140018000,25.776775342659661,L, + 202064441250,25.665931617714268,L, + 203988864500,25.555091307863460,L, + 213610980750,25.000881220872959,L, + 215535404000,24.890042618569442,L, + 217459827250,24.779198893624052,L, + 219384250500,24.668356876225950,L, + 221308673750,24.557516566375142,L, + 223233097000,24.446672841429752,L, + 225157520250,24.335830824031650,L, + 227081943500,24.224987099086256,L, + 229006366750,24.114145081688157,L, + 230930790000,24.003308186931935,L, + 234779636500,23.781620737041148,L, + 242477329500,23.338252667448749,L, + 244401752750,23.227408942503356,L, + 246326176000,23.116570340199839,L, + 252099445750,22.784044288005539,L, + 254023869000,22.673203978154731,L, + 257872715500,22.451519943358534,L, + 259797138750,22.340676218413140,L, + 261721562000,22.229834201015041,L, + 263645985250,22.118993891164234,L, + 265570408500,22.008150166218840,L, + 267494831750,21.897311563915324,L, + 269419255000,21.786467838969930,L, + 271343678250,21.675625821571831,L, + 273268101500,21.564782096626438,L, + 275192524750,21.453940079228339,L, + 279041371250,21.232259459526723,L, + 282890217750,21.010572009635936,L, + 284814641000,20.899731699785129,L, + 286739064250,20.788887974839739,L, + 288663487500,20.678049372536222,L, + 290587910750,20.567205647590828,L, + 292512334000,20.456367045287315,L, + 294436757250,20.345521612794631,L, + 296361180500,20.234681302943823,L, + 298285603750,20.123839285545721,L, + 300210027000,20.012998975694913,L, + 302134450250,19.902155250749523,L, + 304058873500,19.791314940898715,L, + 307907720000,19.569627491007928,L, + 309832143250,19.458787181157120,L, + 311756566500,19.347945163759022,L, + 313680989750,19.237104853908214,L, + 317529836250,19.015420819112013,L, + 319454259500,18.904575386619328,L, + 321378682750,18.793736784315811,L, + 323303106000,18.682896474465004,L, + 327151952500,18.461212439668802,L, + 329076375750,18.350368714723412,L, + 331000799000,18.239528404872605,L, + 332925222250,18.128684679927211,L, + 334849645500,18.017844370076403,L, + 336774068750,17.907000645131010,L, + 338698492000,17.796160335280202,L, + 340622915250,17.685314902787518,L, + 342547338500,17.574476300484001,L, + 344471761750,17.463634283085902,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.872388243675232 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,0.872388243675232,L, + 7697693000,0.813680768013000,L, + 9622116250,0.799003958702087,L, + 11546539500,0.784327089786530,L, + 13470962750,0.769650161266327,L, + 15395386000,0.754973351955414,L, + 17319809250,0.740296483039856,L, + 19244232500,0.725619673728943,L, + 21168655750,0.710942745208740,L, + 28866348750,0.652235269546509,L, + 30790772000,0.637558460235596,L, + 32715195250,0.622881531715393,L, + 34639618500,0.608204722404480,L, + 36564041750,0.593527793884277,L, + 38488465000,0.578850984573364,L, + 42337311500,0.549497246742249,L, + 44261734750,0.534820437431335,L, + 46186158000,0.520143508911133,L, + 48110581250,0.505466699600220,L, + 50035004500,0.490789741277695,L, + 51959427750,0.476112931966782,L, + 53883851000,0.461436092853546,L, + 55808274250,0.446759164333344,L, + 57732697500,0.432082355022430,L, + 59657120750,0.417405456304550,L, + 63505967250,0.388051778078079,L, + 65430390500,0.373374879360199,L, + 67354813750,0.358698010444641,L, + 69279237000,0.344021201133728,L, + 71203660250,0.329344332218170,L, + 73128083500,0.314667373895645,L, + 75052506750,0.299990534782410,L, + 76976930000,0.285313665866852,L, + 78901353250,0.270636856555939,L, + 80825776500,0.255959987640381,L, + 82750199750,0.241283148527145,L, + 84674623000,0.226606249809265,L, + 88523469500,0.197252511978149,L, + 90447892750,0.182575702667236,L, + 94296739250,0.153221964836121,L, + 96221162500,0.138545110821724,L, + 98145585750,0.123868227005005,L, + 100070009000,0.109191291034222,L, + 101994432250,0.094514429569244,L, + 103918855500,0.079837590456009,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 117389818250,0.138233542442322,L, + 119314241500,0.134596243500710,L, + 121238664750,0.130958914756775,L, + 127011934500,0.120046973228455,L, + 128936357750,0.116409666836262,L, + 130860781000,0.112772345542908,L, + 132785204250,0.109135046601295,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 142407320500,0.090948469936848,L, + 146256167000,0.083673842251301,L, + 148180590250,0.080036535859108,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849974095821,L, + 159727129750,0.058212656527758,L, + 161651553000,0.054575346410275,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290274370462,L, + 188593478500,0.003652960062027,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 198215594750,0.184166133403778,L, + 200140018000,0.193414792418480,L, + 202064441250,0.202663466334343,L, + 203988864500,0.211912125349045,L, + 205913287750,0.221160799264908,L, + 207837711000,0.230409488081932,L, + 209762134250,0.239658132195473,L, + 211686557500,0.248906821012497,L, + 217459827250,0.276652842760086,L, + 221308673750,0.295150130987167,L, + 223233097000,0.304398834705353,L, + 229006366750,0.332144856452942,L, + 230930790000,0.341393500566483,L, + 232855213250,0.350642204284668,L, + 234779636500,0.359890848398209,L, + 236704059750,0.369139522314072,L, + 238628483000,0.378388226032257,L, + 242477329500,0.396885573863983,L, + 244401752750,0.406134217977524,L, + 246326176000,0.415382921695709,L, + 248250599250,0.424631536006927,L, + 250175022500,0.433880239725113,L, + 254023869000,0.452377587556839,L, + 255948292250,0.461626201868057,L, + 259797138750,0.480123549699783,L, + 261721562000,0.489372283220291,L, + 263645985250,0.498620897531509,L, + 265570408500,0.507869601249695,L, + 273268101500,0.544864296913147,L, + 275192524750,0.554112851619720,L, + 277116948000,0.563361644744873,L, + 279041371250,0.572610259056091,L, + 280965794500,0.581858992576599,L, + 284814641000,0.600356340408325,L, + 286739064250,0.609604954719543,L, + 288663487500,0.618853688240051,L, + 290587910750,0.628102302551270,L, + 292512334000,0.637351036071777,L, + 294436757250,0.646599650382996,L, + 296361180500,0.655848383903503,L, + 298285603750,0.665096998214722,L, + 317529836250,0.757583737373352,L, + 319454259500,0.766832351684570,L, + 321378682750,0.776081085205078,L, + 323303106000,0.785329759120941,L, + 325227529250,0.794578254222870,L, + 327151952500,0.803827047348022,L, + 329076375750,0.813075721263885,L, + 331000799000,0.822324454784393,L, + 332925222250,0.831573069095612,L, + 336774068750,0.850070416927338,L, + 338698492000,0.859319031238556,L, + 340622915250,0.868567764759064,L, + 342547338500,0.877816379070282,L, + 344471761750,0.887065112590790,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.652175068855286 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,0.652175068855286,L, + 1924423250,0.641203045845032,L, + 3848846500,0.630230963230133,L, + 5773269750,0.619258940219879,L, + 7697693000,0.608286976814270,L, + 9622116250,0.597314834594727,L, + 11546539500,0.586342811584473,L, + 13470962750,0.575370848178864,L, + 17319809250,0.553426682949066,L, + 23093079000,0.520510613918304,L, + 25017502250,0.509538531303406,L, + 26941925500,0.498566538095474,L, + 28866348750,0.487594485282898,L, + 30790772000,0.476622492074966,L, + 32715195250,0.465650349855423,L, + 34639618500,0.454678386449814,L, + 36564041750,0.443706333637238,L, + 38488465000,0.432734310626984,L, + 42337311500,0.410790205001831,L, + 44261734750,0.399818211793900,L, + 46186158000,0.388846129179001,L, + 48110581250,0.377874076366425,L, + 51959427750,0.355930030345917,L, + 55808274250,0.333985924720764,L, + 59657120750,0.312041878700256,L, + 61581544000,0.301069825887680,L, + 63505967250,0.290097802877426,L, + 65430390500,0.279125720262527,L, + 69279237000,0.257181674242020,L, + 71203660250,0.246209606528282,L, + 73128083500,0.235237598419189,L, + 75052506750,0.224265545606613,L, + 76976930000,0.213293552398682,L, + 78901353250,0.202321514487267,L, + 80825776500,0.191349446773529,L, + 82750199750,0.180377423763275,L, + 84674623000,0.169405356049538,L, + 86599046250,0.158433318138123,L, + 90447892750,0.136489272117615,L, + 92372316000,0.125517189502716,L, + 94296739250,0.114545173943043,L, + 96221162500,0.103573143482208,L, + 98145585750,0.092601120471954,L, + 100070009000,0.081629030406475,L, + 101994432250,0.070657074451447,L, + 103918855500,0.059684958308935,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420111656189,L, + 123163088000,0.127321600914001,L, + 125087511250,0.123684294521809,L, + 127011934500,0.120046973228455,L, + 130860781000,0.112772360444069,L, + 138558474000,0.098223105072975,L, + 140482897250,0.094585798680782,L, + 142407320500,0.090948462486267,L, + 144331743750,0.087311156094074,L, + 148180590250,0.080036528408527,L, + 150105013500,0.076399222016335,L, + 152029436750,0.072761908173561,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487280488014,L, + 157802706500,0.061849974095821,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114142060280,L, + 184744632000,0.010927572846413,L, + 186669055250,0.007290274370462,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420111656189,L, + 198215594750,0.175662904977798,L, + 200140018000,0.182077154517174,L, + 202064441250,0.188491433858871,L, + 203988864500,0.194905698299408,L, + 205913287750,0.201319947838783,L, + 207837711000,0.207734227180481,L, + 209762134250,0.214148521423340,L, + 213610980750,0.226977020502090,L, + 215535404000,0.233391299843788,L, + 219384250500,0.246219828724861,L, + 221308673750,0.252634108066559,L, + 223233097000,0.259048342704773,L, + 225157520250,0.265462636947632,L, + 230930790000,0.284705430269241,L, + 234779636500,0.297533899545670,L, + 236704059750,0.303948223590851,L, + 240552906250,0.316776752471924,L, + 242477329500,0.323191046714783,L, + 246326176000,0.336019515991211,L, + 248250599250,0.342433810234070,L, + 250175022500,0.348848074674606,L, + 252099445750,0.355262309312820,L, + 254023869000,0.361676603555679,L, + 255948292250,0.368090867996216,L, + 257872715500,0.374505162239075,L, + 259797138750,0.380919396877289,L, + 261721562000,0.387333691120148,L, + 263645985250,0.393747955560684,L, + 265570408500,0.400162190198898,L, + 267494831750,0.406576454639435,L, + 269419255000,0.412990748882294,L, + 273268101500,0.425819277763367,L, + 275192524750,0.432233572006226,L, + 277116948000,0.438647776842117,L, + 279041371250,0.445062041282654,L, + 280965794500,0.451476365327835,L, + 284814641000,0.464304834604263,L, + 286739064250,0.470719128847122,L, + 288663487500,0.477133363485336,L, + 290587910750,0.483547657728195,L, + 296361180500,0.502790451049805,L, + 300210027000,0.515619039535522,L, + 302134450250,0.522033214569092,L, + 304058873500,0.528447508811951,L, + 305983296750,0.534861743450165,L, + 307907720000,0.541276037693024,L, + 309832143250,0.547690272331238,L, + 313680989750,0.560518860816956,L, + 317529836250,0.573347330093384,L, + 323303106000,0.592590212821960,L, + 325227529250,0.599004387855530,L, + 327151952500,0.605418682098389,L, + 329076375750,0.611833035945892,L, + 334849645500,0.631075739860535,L, + 336774068750,0.637490034103394,L, + 340622915250,0.650318503379822,L, + 342547338500,0.656732857227325,L, + 344471761750,0.663147032260895,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.869695305824280 + KeyVer: 4005 + KeyCount: 145 + Key: + 0,0.869695305824280,L, + 1924423250,0.855063796043396,L, + 3848846500,0.840432226657867,L, + 5773269750,0.825800776481628,L, + 7697693000,0.811169147491455,L, + 13470962750,0.767274439334869,L, + 15395386000,0.752642929553986,L, + 19244232500,0.723379790782928,L, + 21168655750,0.708748161792755,L, + 23093079000,0.694116652011871,L, + 25017502250,0.679485082626343,L, + 26941925500,0.664853572845459,L, + 28866348750,0.650221943855286,L, + 30790772000,0.635590374469757,L, + 32715195250,0.620958924293518,L, + 36564041750,0.591695785522461,L, + 38488465000,0.577064096927643,L, + 42337311500,0.547801077365875,L, + 46186158000,0.518537938594818,L, + 48110581250,0.503906309604645,L, + 50035004500,0.489274799823761,L, + 51959427750,0.474643230438232,L, + 53883851000,0.460011690855026,L, + 55808274250,0.445380121469498,L, + 57732697500,0.430748581886292,L, + 61581544000,0.401485443115234,L, + 65430390500,0.372222363948822,L, + 67354813750,0.357590794563293,L, + 69279237000,0.342959254980087,L, + 71203660250,0.328327625989914,L, + 73128083500,0.313696086406708,L, + 75052506750,0.299064576625824,L, + 76976930000,0.284433007240295,L, + 78901353250,0.269801378250122,L, + 80825776500,0.255169868469238,L, + 82750199750,0.240538284182549,L, + 84674623000,0.225906729698181,L, + 86599046250,0.211275219917297,L, + 88523469500,0.196643665432930,L, + 90447892750,0.182012021541595,L, + 92372316000,0.167380511760712,L, + 94296739250,0.152748957276344,L, + 96221162500,0.138117432594299,L, + 98145585750,0.123485870659351,L, + 100070009000,0.108854234218597,L, + 101994432250,0.094222724437714,L, + 103918855500,0.079591155052185,L, + 105843278750,0.000015646219254,L, + 107767702000,0.156420141458511,L, + 109692125250,0.152782812714577,L, + 121238664750,0.130958929657936,L, + 123163088000,0.127321630716324,L, + 127011934500,0.120046988129616,L, + 128936357750,0.116409681737423,L, + 130860781000,0.112772367894650,L, + 132785204250,0.109135046601295,L, + 136634050750,0.101860418915749,L, + 138558474000,0.098223112523556,L, + 146256167000,0.083673857152462,L, + 148180590250,0.080036550760269,L, + 150105013500,0.076399229466915,L, + 153953860000,0.069124601781368,L, + 155878283250,0.065487295389175,L, + 157802706500,0.061849981546402,L, + 159727129750,0.058212660253048,L, + 161651553000,0.054575350135565,L, + 163575976250,0.050938032567501,L, + 165500399500,0.047300718724728,L, + 167424822750,0.043663408607244,L, + 169349246000,0.040026091039181,L, + 173198092500,0.032751463353634,L, + 175122515750,0.029114156961441,L, + 180895785500,0.018202215433121,L, + 182820208750,0.014564902521670,L, + 184744632000,0.010927588678896,L, + 188593478500,0.003652960062027,L, + 190517901750,0.000015646219254,L, + 192442325000,0.156420141458511,L, + 194366748250,0.165634140372276,L, + 196291171500,0.174848124384880,L, + 200140018000,0.193276181817055,L, + 203988864500,0.211704179644585,L, + 205913287750,0.220918208360672,L, + 207837711000,0.230132207274437,L, + 209762134250,0.239346221089363,L, + 211686557500,0.248560220003128,L, + 221308673750,0.294630289077759,L, + 223233097000,0.303844273090363,L, + 225157520250,0.313058316707611,L, + 227081943500,0.322272300720215,L, + 229006366750,0.331486344337463,L, + 230930790000,0.340700328350067,L, + 234779636500,0.359128355979919,L, + 236704059750,0.368342399597168,L, + 238628483000,0.377556383609772,L, + 240552906250,0.386770337820053,L, + 242477329500,0.395984441041946,L, + 244401752750,0.405198395252228,L, + 246326176000,0.414412438869476,L, + 248250599250,0.423626452684402,L, + 250175022500,0.432840406894684,L, + 252099445750,0.442054450511932,L, + 254023869000,0.451268434524536,L, + 255948292250,0.460482478141785,L, + 257872715500,0.469696462154388,L, + 259797138750,0.478910505771637,L, + 261721562000,0.488124459981918,L, + 263645985250,0.497338533401489,L, + 267494831750,0.515766501426697,L, + 269419255000,0.524980545043945,L, + 271343678250,0.534194529056549,L, + 273268101500,0.543408572673798,L, + 275192524750,0.552622497081757,L, + 277116948000,0.561836600303650,L, + 279041371250,0.571050584316254,L, + 280965794500,0.580264627933502,L, + 282890217750,0.589478611946106,L, + 284814641000,0.598692655563354,L, + 286739064250,0.607906639575958,L, + 288663487500,0.617120683193207,L, + 292512334000,0.635548651218414,L, + 294436757250,0.644762694835663,L, + 296361180500,0.653976678848267,L, + 298285603750,0.663190603256226,L, + 300210027000,0.672404706478119,L, + 302134450250,0.681618690490723,L, + 304058873500,0.690832734107971,L, + 307907720000,0.709260702133179,L, + 309832143250,0.718474745750427,L, + 311756566500,0.727688670158386,L, + 313680989750,0.736902773380280,L, + 315605413000,0.746116816997528,L, + 317529836250,0.755330741405487,L, + 321378682750,0.773758828639984,L, + 323303106000,0.782972812652588,L, + 325227529250,0.792186856269836,L, + 327151952500,0.801400840282440,L, + 329076375750,0.810614883899689,L, + 331000799000,0.819828808307648,L, + 332925222250,0.829042911529541,L, + 334849645500,0.838256835937500,L, + 336774068750,0.847470819950104,L, + 338698492000,0.856684923171997,L, + 340622915250,0.865898966789246,L, + 344471761750,0.884326934814453,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_019" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.014210939407349 + KeyVer: 4005 + KeyCount: 53 + Key: + 0,-0.014210939407349,L, + 1924423250,-0.012301921844482,L, + 3848846500,-0.010392665863037,L, + 11546539500,-0.002756595611572,L, + 13470962750,-0.000847816467285,L, + 46186158000,0.031605482101440,L, + 48110581250,0.033514261245728,L, + 78901353250,0.064058542251587,L, + 80825776500,0.065967321395874,L, + 88523469500,0.073603391647339,L, + 90447892750,0.075512647628784,L, + 94296739250,0.079330682754517,L, + 96221162500,0.081239461898804,L, + 152029436750,0.081239461898804,L, + 153953860000,0.081066370010376,L, + 157802706500,0.080719709396362,L, + 161651553000,0.080373525619507,L, + 167424822750,0.079853534698486,L, + 169349246000,0.079680442810059,L, + 171273669250,0.079507112503052,L, + 173198092500,0.079334020614624,L, + 175122515750,0.079160690307617,L, + 177046939000,0.078987598419189,L, + 180895785500,0.078640937805176,L, + 184744632000,0.078294754028320,L, + 190517901750,0.077774763107300,L, + 194366748250,0.077428579330444,L, + 198215594750,0.077081918716431,L, + 200140018000,0.076908826828003,L, + 203988864500,0.076562166213989,L, + 207837711000,0.076215982437134,L, + 213610980750,0.065781831741333,L, + 215535404000,0.062304019927979,L, + 217459827250,0.058825969696045,L, + 219384250500,0.055348157882690,L, + 221308673750,0.051870107650757,L, + 223233097000,0.048392295837402,L, + 225157520250,0.044914245605469,L, + 227081943500,0.041436433792114,L, + 229006366750,0.037958383560181,L, + 230930790000,0.034480571746826,L, + 234779636500,0.027524471282959,L, + 236704059750,0.024046659469604,L, + 238628483000,0.020568609237671,L, + 240552906250,0.017090797424316,L, + 242477329500,0.013612747192383,L, + 244401752750,0.010134935379028,L, + 246326176000,0.006656885147095,L, + 248250599250,0.003179073333740,L, + 250175022500,-0.000298976898193,L, + 252099445750,-0.003776788711548,L, + 257872715500,-0.014210939407349,L, + 344471761750,-0.014210939407349,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.013482332229614 + KeyVer: 4005 + KeyCount: 97 + Key: + 0,0.013482332229614,L, + 1924423250,0.014849185943604,L, + 3848846500,0.016216278076172,L, + 5773269750,0.017582893371582,L, + 7697693000,0.018949985504150,L, + 9622116250,0.020316839218140,L, + 13470962750,0.023051023483276,L, + 15395386000,0.024417638778687,L, + 17319809250,0.025784730911255,L, + 19244232500,0.027151584625244,L, + 21168655750,0.028518676757812,L, + 23093079000,0.029885292053223,L, + 25017502250,0.031252384185791,L, + 26941925500,0.032619237899780,L, + 28866348750,0.033986330032349,L, + 30790772000,0.035352945327759,L, + 32715195250,0.036720037460327,L, + 34639618500,0.038086891174316,L, + 38488465000,0.040821075439453,L, + 40412888250,0.042187690734863,L, + 42337311500,0.043554782867432,L, + 44261734750,0.044921398162842,L, + 46186158000,0.046288490295410,L, + 48110581250,0.047655344009399,L, + 50035004500,0.049022436141968,L, + 51959427750,0.050389051437378,L, + 53883851000,0.051756143569946,L, + 55808274250,0.053122997283936,L, + 57732697500,0.054490089416504,L, + 59657120750,0.055856704711914,L, + 61581544000,0.057223796844482,L, + 63505967250,0.058590650558472,L, + 67354813750,0.061324834823608,L, + 69279237000,0.062691450119019,L, + 71203660250,0.064058542251587,L, + 73128083500,0.065425157546997,L, + 78901353250,0.069526433944702,L, + 80825776500,0.070893049240112,L, + 82750199750,0.072260141372681,L, + 84674623000,0.073626756668091,L, + 86599046250,0.074993848800659,L, + 88523469500,0.076360464096069,L, + 96221162500,0.081828832626343,L, + 100070009000,0.075256109237671,L, + 101994432250,0.071970224380493,L, + 103918855500,0.068683862686157,L, + 105843278750,0.065398454666138,L, + 107767702000,0.062112092971802,L, + 113540971750,0.052253723144531,L, + 115465395000,0.048968076705933,L, + 117389818250,0.045681715011597,L, + 123163088000,0.035823345184326,L, + 125087511250,0.032537698745728,L, + 132785204250,0.019393205642700,L, + 134709627500,0.016107320785522,L, + 142407320500,0.002962827682495,L, + 144331743750,-0.000323057174683,L, + 152029436750,-0.013467550277710,L, + 155878283250,-0.011269330978394,L, + 157802706500,-0.010169982910156,L, + 159727129750,-0.009070873260498,L, + 161651553000,-0.007972240447998,L, + 163575976250,-0.006872892379761,L, + 167424822750,-0.004674673080444,L, + 169349246000,-0.003575801849365,L, + 177046939000,0.000820636749268,L, + 178971362250,0.001919507980347,L, + 180895785500,0.003018617630005,L, + 182820208750,0.004117965698242,L, + 184744632000,0.005217075347900,L, + 186669055250,0.006315708160400,L, + 188593478500,0.007415056228638,L, + 194366748250,0.010712385177612,L, + 196291171500,0.011811256408691,L, + 202064441250,0.015108585357666,L, + 203988864500,0.016207456588745,L, + 207837711000,0.018405675888062,L, + 209762134250,0.019505023956299,L, + 211686557500,0.020604133605957,L, + 213610980750,0.021703004837036,L, + 219384250500,0.025000333786011,L, + 221308673750,0.026099205017090,L, + 227081943500,0.029396533966064,L, + 229006366750,0.030495882034302,L, + 230930790000,0.031594514846802,L, + 232855213250,0.032693624496460,L, + 234779636500,0.033792972564697,L, + 236704059750,0.034892082214355,L, + 238628483000,0.035990715026855,L, + 240552906250,0.037090063095093,L, + 246326176000,0.040387392044067,L, + 248250599250,0.041486263275146,L, + 254023869000,0.044783592224121,L, + 255948292250,0.045882463455200,L, + 257872715500,0.046981573104858,L, + 259797138750,0.013482332229614,L, + 344471761750,0.013482332229614,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.026323080062866 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,-0.026323080062866,L, + 1924423250,-0.023415207862854,L, + 3848846500,-0.020337462425232,L, + 5773269750,-0.017082691192627,L, + 7697693000,-0.013643145561218,L, + 9622116250,-0.010010600090027,L, + 11546539500,-0.006175994873047,L, + 13470962750,-0.002130031585693,L, + 15395386000,0.002137422561646,L, + 17319809250,0.006637215614319,L, + 19244232500,0.011381268501282,L, + 21168655750,0.016382098197937,L, + 23093079000,0.021653175354004,L, + 25017502250,0.027209281921387,L, + 26941925500,0.033066511154175,L, + 28866348750,0.039241909980774,L, + 30790772000,0.045754075050354,L, + 32715195250,0.052623391151428,L, + 34639618500,0.059871912002563,L, + 36564041750,0.067523479461670,L, + 38488465000,0.075604081153870,L, + 40412888250,0.084142088890076,L, + 42337311500,0.093168258666992,L, + 44261734750,0.102716088294983,L, + 46186158000,0.112821578979492,L, + 48110581250,0.123523831367493,L, + 50035004500,0.134864330291748,L, + 51959427750,0.146887183189392,L, + 53883851000,0.159638881683350,L, + 55808274250,0.173166155815125,L, + 57732697500,0.187515497207642,L, + 59657120750,0.202730178833008,L, + 61581544000,0.218846201896667,L, + 63505967250,0.235886931419373,L, + 65430390500,0.253855824470520,L, + 67354813750,0.272726893424988,L, + 69279237000,0.292434096336365,L, + 71203660250,0.312859892845154,L, + 73128083500,0.333829164505005,L, + 75052506750,0.355108976364136,L, + 76976930000,0.376419186592102,L, + 78901353250,0.397454977035522,L, + 80825776500,0.417917132377625,L, + 82750199750,0.437543034553528,L, + 84674623000,0.456126689910889,L, + 86599046250,0.473530769348145,L, + 88523469500,0.489682555198669,L, + 90447892750,0.504563927650452,L, + 92372316000,0.518197774887085,L, + 94296739250,0.530634999275208,L, + 96221162500,0.541942000389099,L, + 98145585750,0.552702784538269,L, + 100070009000,0.563450336456299,L, + 101994432250,0.574181795120239,L, + 103918855500,0.584893584251404,L, + 105843278750,0.595582127571106,L, + 107767702000,0.606243014335632,L, + 109692125250,0.616872549057007,L, + 111616548500,0.627465963363647,L, + 113540971750,0.638018608093262,L, + 115465395000,0.648525595664978,L, + 117389818250,0.658982634544373,L, + 119314241500,0.669385313987732,L, + 121238664750,0.679729461669922,L, + 123163088000,0.690012335777283,L, + 125087511250,0.700230360031128,L, + 127011934500,0.710382461547852,L, + 128936357750,0.720467329025269,L, + 130860781000,0.730484604835510,L, + 132785204250,0.740435004234314,L, + 134709627500,0.750320315361023,L, + 136634050750,0.760142207145691,L, + 138558474000,0.769903540611267,L, + 140482897250,0.779606938362122,L, + 142407320500,0.789256215095520,L, + 144331743750,0.798854470252991,L, + 146256167000,0.808405280113220,L, + 148180590250,0.817911744117737,L, + 150105013500,0.827377915382385,L, + 152029436750,0.836806416511536,L, + 153953860000,0.846144556999207,L, + 155878283250,0.855336070060730,L, + 157802706500,0.864381194114685,L, + 159727129750,0.873280405998230,L, + 161651553000,0.882037758827209,L, + 163575976250,0.890657067298889,L, + 165500399500,0.899146199226379,L, + 167424822750,0.907514452934265,L, + 169349246000,0.915773510932922,L, + 171273669250,0.923939347267151,L, + 173198092500,0.932028889656067,L, + 175122515750,0.940061688423157,L, + 177046939000,0.948060393333435,L, + 178971362250,0.956048130989075,L, + 180895785500,0.964049220085144,L, + 182820208750,0.972087979316711,L, + 184744632000,0.980188012123108,L, + 186669055250,0.988371253013611,L, + 188593478500,0.996658682823181,L, + 190517901750,1.005066990852356,L, + 192442325000,1.013611674308777,L, + 194366748250,1.022304654121399,L, + 196291171500,1.031154990196228,L, + 198215594750,1.040169835090637,L, + 200140018000,1.049352288246155,L, + 202064441250,1.058705210685730,L, + 203988864500,1.068228363990784,L, + 205913287750,1.077920079231262,L, + 207837711000,1.087778210639954,L, + 209762134250,1.097881197929382,L, + 211686557500,1.108280539512634,L, + 213610980750,1.118938088417053,L, + 215535404000,1.129822134971619,L, + 217459827250,1.140905737876892,L, + 219384250500,1.152165770530701,L, + 221308673750,1.163581728935242,L, + 223233097000,1.175134539604187,L, + 225157520250,1.186808705329895,L, + 227081943500,1.198588013648987,L, + 229006366750,1.210457444190979,L, + 230930790000,1.222403407096863,L, + 232855213250,1.234411120414734,L, + 234779636500,1.246466279029846,L, + 236704059750,1.258553147315979,L, + 238628483000,1.270654797554016,L, + 240552906250,1.282752394676208,L, + 242477329500,1.294822573661804,L, + 244401752750,1.306837916374207,L, + 246326176000,1.318761229515076,L, + 248250599250,1.330542922019958,L, + 250175022500,1.342109084129333,L, + 252099445750,1.353340029716492,L, + 254023869000,1.364012360572815,L, + 255948292250,1.373597741127014,L, + 257872715500,1.379659533500671,L, + 259797138750,-0.513281106948853,L, + 261721562000,-0.026323080062866,L, + 344471761750,-0.026323080062866,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 34.802665425143438 + KeyVer: 4005 + KeyCount: 109 + Key: + 0,34.802665425143438,L, + 3848846500,35.758837267430494,L, + 5773269750,36.236926603668600,L, + 7697693000,36.715012524812131,L, + 9622116250,37.193095030861066,L, + 11546539500,37.671184367099180,L, + 13470962750,38.149270288242704,L, + 15395386000,38.627352794291646,L, + 17319809250,39.105445545624342,L, + 19244232500,39.583528051673284,L, + 21168655750,40.061617387911390,L, + 23093079000,40.539699893960332,L, + 25017502250,41.017792645293028,L, + 26941925500,41.495878566436552,L, + 28866348750,41.973957657390912,L, + 32715195250,42.930136329867132,L, + 34639618500,43.408215420821485,L, + 36564041750,43.886308172154180,L, + 38488465000,44.364390678203122,L, + 40412888250,44.842480014441236,L, + 42337311500,45.320565935584760,L, + 44261734750,45.798648441633702,L, + 46186158000,46.276737777871809,L, + 48110581250,46.754823699015340,L, + 51959427750,47.711002371491560,L, + 53883851000,48.189084877540495,L, + 57732697500,49.145256719827550,L, + 59657120750,49.623346056065657,L, + 65430390500,51.057603819496236,L, + 67354813750,51.535686325545178,L, + 71203660250,52.491864998021398,L, + 73128083500,52.969944088975751,L, + 76976930000,53.926122761451978,L, + 78901353250,54.404205267500913,L, + 82750199750,55.360383939977140,L, + 84674623000,55.838466446026075,L, + 86599046250,56.316552367169606,L, + 90447892750,57.272731039645826,L, + 92372316000,57.750806715505597,L, + 94296739250,58.228899466838293,L, + 101994432250,60.141243151412390,L, + 103918855500,60.619335902745085,L, + 105843278750,61.097414993699445,L, + 109692125250,62.053586835986493,L, + 111616548500,62.531679587319189,L, + 140482897250,69.702968404472074,L, + 142407320500,70.181061155804770,L, + 146256167000,71.137232998091818,L, + 148180590250,71.615318919235349,L, + 150105013500,72.093398010189702,L, + 152029436750,72.571490761522398,L, + 159727129750,71.060734879387795,L, + 161651553000,70.683052739043305,L, + 165500399500,69.927674797975996,L, + 167424822750,69.549985827442356,L, + 169349246000,69.172290026719523,L, + 171273669250,68.794607886375047,L, + 178971362250,67.283852004240430,L, + 180895785500,66.906169863895954,L, + 188593478500,65.395413981761337,L, + 190517901750,65.017725011227697,L, + 192442325000,64.640029210504863,L, + 194366748250,64.262347070160388,L, + 196291171500,63.884658099626733,L, + 198215594750,63.506975959282251,L, + 217459827250,59.730086253945728,L, + 219384250500,59.352404113601246,L, + 230930790000,57.086270290399327,L, + 234779636500,56.330899179521197,L, + 236704059750,55.953206793892960,L, + 238628483000,55.575517823359306,L, + 240552906250,55.197832267920241,L, + 242477329500,54.820139882291997,L, + 244401752750,54.442454326852932,L, + 246326176000,54.064765356319278,L, + 248250599250,53.687072970691041,L, + 254023869000,52.554006059090085,L, + 255948292250,52.176327333840185,L, + 257872715500,51.798631533117366,L, + 259797138750,34.802668840238027,L, + 261721562000,34.802665425143438,L, + 263645985250,34.802668840238027,L, + 273268101500,34.802668840238027,L, + 275192524750,34.802662010048856,L, + 279041371250,34.802668840238027,L, + 280965794500,34.802665425143438,L, + 286739064250,34.802665425143438,L, + 288663487500,34.802668840238027,L, + 290587910750,34.802665425143438,L, + 292512334000,34.802665425143438,L, + 294436757250,34.802668840238027,L, + 296361180500,34.802665425143438,L, + 304058873500,34.802665425143438,L, + 305983296750,34.802668840238027,L, + 307907720000,34.802662010048856,L, + 309832143250,34.802665425143438,L, + 317529836250,34.802665425143438,L, + 319454259500,34.802668840238027,L, + 321378682750,34.802668840238027,L, + 323303106000,34.802665425143438,L, + 325227529250,34.802668840238027,L, + 327151952500,34.802665425143438,L, + 331000799000,34.802665425143438,L, + 332925222250,34.802662010048856,L, + 334849645500,34.802668840238027,L, + 336774068750,34.802662010048856,L, + 338698492000,34.802665425143438,L, + 342547338500,34.802665425143438,L, + 344471761750,34.802668840238027,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -5.132533698967659 + KeyVer: 4005 + KeyCount: 143 + Key: + 0,-5.132533698967659,L, + 1924423250,-5.327042972377357,L, + 3848846500,-5.521551818900232,L, + 5773269750,-5.716059811649459,L, + 7697693000,-5.910570365719626,L, + 9622116250,-6.105077931582031,L, + 11546539500,-6.299587631878552,L, + 13470962750,-6.494096051514603,L, + 15395386000,-6.688605324924300,L, + 17319809250,-6.883115025220820,L, + 19244232500,-7.077623017970049,L, + 23093079000,-7.466641564789444,L, + 25017502250,-7.661149984425495,L, + 26941925500,-7.855657550287900,L, + 30790772000,-8.244677804654588,L, + 32715195250,-8.439185370516991,L, + 34639618500,-8.633694643926690,L, + 36564041750,-8.828203063562741,L, + 38488465000,-9.022712336972438,L, + 40412888250,-9.217219902834843,L, + 46186158000,-9.800747723063935,L, + 48110581250,-9.995255288926339,L, + 50035004500,-10.189767123656976,L, + 51959427750,-10.384274689519380,L, + 53883851000,-10.578783109155431,L, + 55808274250,-10.773293236338775,L, + 57732697500,-10.967799948427533,L, + 59657120750,-11.162309221837232,L, + 61581544000,-11.356817641473283,L, + 63505967250,-11.551327768656627,L, + 65430390500,-11.745837042066324,L, + 67354813750,-11.940344607928729,L, + 71203660250,-12.329363154748123,L, + 73128083500,-12.523873281931467,L, + 76976930000,-12.912888413656276,L, + 78901353250,-13.107400248386913,L, + 80825776500,-13.301906960475671,L, + 82750199750,-13.496417087659015,L, + 84674623000,-13.690926361068712,L, + 86599046250,-13.885434780704763,L, + 88523469500,-14.079944054114462,L, + 90447892750,-14.274451619976865,L, + 92372316000,-14.468961747160209,L, + 94296739250,-14.663470166796261,L, + 96221162500,-14.857980293979605,L, + 98145585750,-15.052487006068363,L, + 101994432250,-15.441507260435051,L, + 103918855500,-15.636012264976516,L, + 107767702000,-16.025032519343203,L, + 109692125250,-16.219540938979254,L, + 111616548500,-16.414047651068014,L, + 113540971750,-16.608557778251356,L, + 115465395000,-16.803066197887407,L, + 117389818250,-16.997578032618044,L, + 119314241500,-17.192081329612218,L, + 121238664750,-17.386594871890146,L, + 123163088000,-17.581101583978906,L, + 125087511250,-17.775611711162249,L, + 127011934500,-17.970118423251009,L, + 128936357750,-18.164630257981646,L, + 134709627500,-18.748155516889799,L, + 136634050750,-18.942665644073141,L, + 138558474000,-19.137172356161901,L, + 140482897250,-19.331682483345244,L, + 142407320500,-19.526194318075881,L, + 144331743750,-19.720699322617346,L, + 146256167000,-19.915207742253397,L, + 148180590250,-20.109717869436739,L, + 150105013500,-20.304229704167376,L, + 152029436750,-20.498736416256136,L, + 155878283250,-20.191412054551854,L, + 157802706500,-20.037751581247004,L, + 161651553000,-19.730427219542722,L, + 163575976250,-19.576763331143290,L, + 165500399500,-19.423102857838440,L, + 171273669250,-18.962116315282017,L, + 173198092500,-18.808452426882582,L, + 175122515750,-18.654791953577735,L, + 184744632000,-17.886481049317030,L, + 186669055250,-17.732822283559472,L, + 190517901750,-17.425494506760607,L, + 192442325000,-17.271834033455757,L, + 200140018000,-16.657185310047193,L, + 202064441250,-16.503524836742343,L, + 207837711000,-16.042538294185920,L, + 209762134250,-15.888872698239195,L, + 211686557500,-15.735213932481638,L, + 213610980750,-15.581551751629497,L, + 215535404000,-15.427887863230065,L, + 217459827250,-15.274225682377924,L, + 221308673750,-14.966904735768226,L, + 223233097000,-14.813242554916085,L, + 225157520250,-14.659578666516651,L, + 227081943500,-14.505916485664510,L, + 229006366750,-14.352256012359662,L, + 230930790000,-14.198594685281167,L, + 232855213250,-14.044932504429026,L, + 234779636500,-13.891269469803239,L, + 236704059750,-13.737607288951098,L, + 238628483000,-13.583944254325310,L, + 240552906250,-13.430282927246816,L, + 242477329500,-13.276619038847382,L, + 244401752750,-13.122960273089825,L, + 246326176000,-12.969298092237684,L, + 248250599250,-12.815635057611898,L, + 250175022500,-12.661973730533402,L, + 255948292250,-12.200987187976979,L, + 257872715500,-12.047325860898484,L, + 259797138750,-5.132533698967659,L, + 261721562000,-5.132533698967659,L, + 263645985250,-5.132534125854483,L, + 265570408500,-5.132534979628129,L, + 267494831750,-5.132534125854483,L, + 271343678250,-5.132533272080837,L, + 273268101500,-5.132533272080837,L, + 277116948000,-5.132534125854483,L, + 282890217750,-5.132534125854483,L, + 284814641000,-5.132533698967659,L, + 286739064250,-5.132533698967659,L, + 288663487500,-5.132534125854483,L, + 290587910750,-5.132534125854483,L, + 292512334000,-5.132533698967659,L, + 294436757250,-5.132533698967659,L, + 296361180500,-5.132534125854483,L, + 298285603750,-5.132533698967659,L, + 305983296750,-5.132533698967659,L, + 307907720000,-5.132534125854483,L, + 309832143250,-5.132533698967659,L, + 311756566500,-5.132534125854483,L, + 313680989750,-5.132533698967659,L, + 317529836250,-5.132533698967659,L, + 319454259500,-5.132534552741306,L, + 321378682750,-5.132533698967659,L, + 323303106000,-5.132533698967659,L, + 325227529250,-5.132534125854483,L, + 327151952500,-5.132534125854483,L, + 329076375750,-5.132533272080837,L, + 331000799000,-5.132534125854483,L, + 334849645500,-5.132534125854483,L, + 336774068750,-5.132533272080837,L, + 338698492000,-5.132534125854483,L, + 342547338500,-5.132534125854483,L, + 344471761750,-5.132533698967659,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 33.449806441146372 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,33.449806441146372,L, + 1924423250,33.338966131295564,L, + 3848846500,33.228118991255592,L, + 5773269750,33.117282096499366,L, + 7697693000,33.006441786648558,L, + 11546539500,32.784754336757771,L, + 13470962750,32.673914026906964,L, + 15395386000,32.563070301961574,L, + 17319809250,32.452229992110766,L, + 19244232500,32.341386267165376,L, + 25017502250,32.008865337612953,L, + 28866348750,31.787177887722166,L, + 30790772000,31.676337577871358,L, + 32715195250,31.565493852925965,L, + 34639618500,31.454656958169743,L, + 36564041750,31.343809818129763,L, + 38488465000,31.232969508278956,L, + 40412888250,31.122125783333562,L, + 42337311500,31.011288888577340,L, + 44261734750,30.900441748537364,L, + 46186158000,30.789601438686557,L, + 48110581250,30.678757713741163,L, + 50035004500,30.567920818984941,L, + 53883851000,30.346233369094154,L, + 55808274250,30.235393059243346,L, + 57732697500,30.124545919203371,L, + 59657120750,30.013709024447149,L, + 61581544000,29.902865299501755,L, + 63505967250,29.792024989650947,L, + 65430390500,29.681181264705554,L, + 69279237000,29.459500645003939,L, + 73128083500,29.237813195113155,L, + 76976930000,29.016132575411540,L, + 78901353250,28.905288850466146,L, + 80825776500,28.794448540615338,L, + 82750199750,28.683604815669945,L, + 84674623000,28.572767920913723,L, + 86599046250,28.461925903515620,L, + 88523469500,28.351080471022936,L, + 92372316000,28.129396436226738,L, + 94296739250,28.018557833923222,L, + 98145585750,27.796870384032434,L, + 100070009000,27.686030074181630,L, + 101994432250,27.575186349236237,L, + 103918855500,27.464346039385429,L, + 105843278750,27.353507437081912,L, + 109692125250,27.131819987191129,L, + 111616548500,27.020977969793027,L, + 113540971750,26.910132537300342,L, + 115465395000,26.799293934996829,L, + 117389818250,26.688453625146021,L, + 119314241500,26.577608192653333,L, + 121238664750,26.466769590349820,L, + 123163088000,26.355925865404426,L, + 125087511250,26.245087263100910,L, + 128936357750,26.023399813210126,L, + 130860781000,25.912557795812027,L, + 134709627500,25.690877176110412,L, + 136634050750,25.580031743617724,L, + 138558474000,25.469191433766916,L, + 140482897250,25.358349416368817,L, + 142407320500,25.247509106518010,L, + 144331743750,25.136665381572616,L, + 146256167000,25.025825071721808,L, + 148180590250,24.914983054323709,L, + 150105013500,24.804144452020193,L, + 152029436750,24.693299019527508,L, + 153953860000,24.780865459781531,L, + 155878283250,24.868425069846385,L, + 157802706500,24.955993217647698,L, + 161651553000,25.131126098155743,L, + 165500399500,25.306252148474620,L, + 167424822750,25.393820296275937,L, + 169349246000,25.481385028982665,L, + 171273669250,25.568951469236687,L, + 173198092500,25.656514494396127,L, + 175122515750,25.744080934650150,L, + 177046939000,25.831643959809586,L, + 182820208750,26.094338157929776,L, + 184744632000,26.181904598183799,L, + 186669055250,26.269472745985116,L, + 188593478500,26.357034063597261,L, + 190517901750,26.444600503851284,L, + 192442325000,26.532163529010720,L, + 196291171500,26.707296409518765,L, + 198215594750,26.794859434678202,L, + 200140018000,26.882429290026810,L, + 202064441250,26.969994022733541,L, + 203988864500,27.057557047892978,L, + 205913287750,27.145121780599709,L, + 207837711000,27.232688220853731,L, + 209762134250,27.320247830918582,L, + 211686557500,27.407815978719899,L, + 215535404000,27.582945444133358,L, + 217459827250,27.670511884387381,L, + 221308673750,27.845641349800843,L, + 225157520250,28.020774230308888,L, + 229006366750,28.195900280627765,L, + 230930790000,28.283466720881787,L, + 232855213250,28.371034868683100,L, + 236704059750,28.546160919001977,L, + 238628483000,28.633725651708705,L, + 240552906250,28.721293799510022,L, + 242477329500,28.808856824669459,L, + 244401752750,28.896423264923481,L, + 246326176000,28.983986290082917,L, + 250175022500,29.159119170590966,L, + 252099445750,29.246682195750402,L, + 254023869000,29.334248636004425,L, + 255948292250,29.421811661163861,L, + 257872715500,29.509378101417884,L, + 259797138750,33.449806441146372,L, + 261721562000,33.449806441146372,L, + 263645985250,33.449803026051789,L, + 265570408500,33.449806441146372,L, + 282890217750,33.449806441146372,L, + 284814641000,33.449803026051789,L, + 286739064250,33.449806441146372,L, + 288663487500,33.449806441146372,L, + 290587910750,33.449809856240961,L, + 292512334000,33.449806441146372,L, + 294436757250,33.449806441146372,L, + 296361180500,33.449803026051789,L, + 298285603750,33.449806441146372,L, + 300210027000,33.449806441146372,L, + 302134450250,33.449803026051789,L, + 304058873500,33.449803026051789,L, + 305983296750,33.449806441146372,L, + 329076375750,33.449806441146372,L, + 331000799000,33.449799610957207,L, + 332925222250,33.449809856240961,L, + 334849645500,33.449803026051789,L, + 336774068750,33.449799610957207,L, + 338698492000,33.449806441146372,L, + 344471761750,33.449806441146372,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 117 + Key: + 0,0.156420111656189,L, + 1924423250,0.165668785572052,L, + 3848846500,0.174917474389076,L, + 5773269750,0.184166118502617,L, + 9622116250,0.202663466334343,L, + 11546539500,0.211912125349045,L, + 15395386000,0.230409473180771,L, + 17319809250,0.239658132195473,L, + 19244232500,0.248906821012497,L, + 23093079000,0.267404109239578,L, + 25017502250,0.276652783155441,L, + 26941925500,0.285901486873627,L, + 38488465000,0.341393530368805,L, + 40412888250,0.350642174482346,L, + 42337311500,0.359890878200531,L, + 44261734750,0.369139522314072,L, + 51959427750,0.406134217977524,L, + 53883851000,0.415382862091064,L, + 57732697500,0.433880269527435,L, + 59657120750,0.443128883838654,L, + 61581544000,0.452377527952194,L, + 63505967250,0.461626201868057,L, + 65430390500,0.470874905586243,L, + 67354813750,0.480123579502106,L, + 69279237000,0.489372223615646,L, + 71203660250,0.498620927333832,L, + 73128083500,0.507869541645050,L, + 75052506750,0.517118215560913,L, + 76976930000,0.526366949081421,L, + 78901353250,0.535615563392639,L, + 82750199750,0.554112911224365,L, + 84674623000,0.563361644744873,L, + 86599046250,0.572610259056091,L, + 88523469500,0.581858992576599,L, + 92372316000,0.600356221199036,L, + 94296739250,0.609604954719543,L, + 111616548500,0.692843019962311,L, + 113540971750,0.702091753482819,L, + 115465395000,0.711340427398682,L, + 117389818250,0.720589041709900,L, + 119314241500,0.729837715625763,L, + 121238664750,0.739086329936981,L, + 123163088000,0.748335003852844,L, + 125087511250,0.757583737373352,L, + 127011934500,0.766832351684570,L, + 128936357750,0.776081025600433,L, + 130860781000,0.785329759120941,L, + 132785204250,0.794578433036804,L, + 134709627500,0.803827047348022,L, + 138558474000,0.822324395179749,L, + 140482897250,0.831573128700256,L, + 142407320500,0.840821743011475,L, + 144331743750,0.850070476531982,L, + 148180590250,0.868567705154419,L, + 150105013500,0.877816379070282,L, + 152029436750,0.887065112590790,L, + 153953860000,0.872388243675232,L, + 155878283250,0.857711434364319,L, + 157802706500,0.843034505844116,L, + 161651553000,0.813680768013000,L, + 163575976250,0.799003958702087,L, + 182820208750,0.652235269546509,L, + 184744632000,0.637558519840240,L, + 186669055250,0.622881531715393,L, + 188593478500,0.608204722404480,L, + 192442325000,0.578850984573364,L, + 194366748250,0.564174056053162,L, + 196291171500,0.549497246742249,L, + 202064441250,0.505466639995575,L, + 203988864500,0.490789800882339,L, + 205913287750,0.476112931966782,L, + 207837711000,0.461436033248901,L, + 209762134250,0.446759194135666,L, + 211686557500,0.432082325220108,L, + 213610980750,0.417405515909195,L, + 215535404000,0.402728617191315,L, + 223233097000,0.344021141529083,L, + 225157520250,0.329344242811203,L, + 227081943500,0.314667403697968,L, + 232855213250,0.270636796951294,L, + 236704059750,0.241283118724823,L, + 238628483000,0.226606234908104,L, + 240552906250,0.211929380893707,L, + 250175022500,0.138545036315918,L, + 252099445750,0.123868197202682,L, + 257872715500,0.079837590456009,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 280965794500,0.120046973228455,L, + 282890217750,0.116409674286842,L, + 284814641000,0.112772352993488,L, + 286739064250,0.109135046601295,L, + 288663487500,0.105497732758522,L, + 290587910750,0.101860411465168,L, + 292512334000,0.098223105072975,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948462486267,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 304058873500,0.076399222016335,L, + 305983296750,0.072761915624142,L, + 307907720000,0.069124594330788,L, + 309832143250,0.065487287938595,L, + 311756566500,0.061849977821112,L, + 313680989750,0.058212663978338,L, + 315605413000,0.054575346410275,L, + 323303106000,0.040026091039181,L, + 325227529250,0.036388780921698,L, + 327151952500,0.032751459628344,L, + 329076375750,0.029114142060280,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564887620509,L, + 338698492000,0.010927571915090,L, + 340622915250,0.007290273904800,L, + 342547338500,0.003652960294858,L, + 344471761750,0.000015646219254,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.156420111656189 + KeyVer: 4005 + KeyCount: 116 + Key: + 0,0.156420111656189,L, + 5773269750,0.175662904977798,L, + 7697693000,0.182077154517174,L, + 9622116250,0.188491433858871,L, + 11546539500,0.194905683398247,L, + 15395386000,0.207734242081642,L, + 23093079000,0.233391299843788,L, + 25017502250,0.239805549383163,L, + 28866348750,0.252634108066559,L, + 48110581250,0.316776752471924,L, + 50035004500,0.323190987110138,L, + 51959427750,0.329605281352997,L, + 55808274250,0.342433810234070,L, + 57732697500,0.348848104476929,L, + 61581544000,0.361676633358002,L, + 65430390500,0.374505102634430,L, + 69279237000,0.387333691120148,L, + 71203660250,0.393747925758362,L, + 73128083500,0.400162249803543,L, + 75052506750,0.406576454639435,L, + 76976930000,0.412990719079971,L, + 78901353250,0.419404953718185,L, + 80825776500,0.425819218158722,L, + 82750199750,0.432233542203903,L, + 86599046250,0.445062071084976,L, + 88523469500,0.451476365327835,L, + 90447892750,0.457890599966049,L, + 94296739250,0.470719128847122,L, + 96221162500,0.477133363485336,L, + 98145585750,0.483547657728195,L, + 103918855500,0.502790451049805,L, + 105843278750,0.509204745292664,L, + 107767702000,0.515618979930878,L, + 111616548500,0.528447568416595,L, + 113540971750,0.534861743450165,L, + 115465395000,0.541275978088379,L, + 121238664750,0.560518860816956,L, + 123163088000,0.566933095455170,L, + 125087511250,0.573347389698029,L, + 127011934500,0.579761624336243,L, + 128936357750,0.586175918579102,L, + 130860781000,0.592590153217316,L, + 132785204250,0.599004447460175,L, + 134709627500,0.605418682098389,L, + 136634050750,0.611833035945892,L, + 142407320500,0.631075739860535,L, + 146256167000,0.643904328346252,L, + 148180590250,0.650318562984467,L, + 150105013500,0.656732857227325,L, + 152029436750,0.663147032260895,L, + 153953860000,0.652175068855286,L, + 155878283250,0.641202986240387,L, + 161651553000,0.608286917209625,L, + 163575976250,0.597314834594727,L, + 165500399500,0.586342811584473,L, + 167424822750,0.575370848178864,L, + 171273669250,0.553426682949066,L, + 173198092500,0.542454659938812,L, + 175122515750,0.531482577323914,L, + 177046939000,0.520510613918304,L, + 178971362250,0.509538590908051,L, + 184744632000,0.476622432470322,L, + 186669055250,0.465650349855423,L, + 188593478500,0.454678386449814,L, + 194366748250,0.421762228012085,L, + 196291171500,0.410790205001831,L, + 198215594750,0.399818211793900,L, + 200140018000,0.388846129179001,L, + 202064441250,0.377874076366425,L, + 205913287750,0.355930030345917,L, + 209762134250,0.333985924720764,L, + 211686557500,0.323013901710510,L, + 213610980750,0.312041848897934,L, + 215535404000,0.301069825887680,L, + 217459827250,0.290097743272781,L, + 223233097000,0.257181674242020,L, + 225157520250,0.246209606528282,L, + 227081943500,0.235237568616867,L, + 230930790000,0.213293522596359,L, + 232855213250,0.202321469783783,L, + 234779636500,0.191349431872368,L, + 236704059750,0.180377379059792,L, + 238628483000,0.169405356049538,L, + 240552906250,0.158433318138123,L, + 242477329500,0.147461265325546,L, + 246326176000,0.125517189502716,L, + 248250599250,0.114545173943043,L, + 250175022500,0.103573128581047,L, + 252099445750,0.092601090669632,L, + 254023869000,0.081629037857056,L, + 255948292250,0.070656977593899,L, + 257872715500,0.059684962034225,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420111656189,L, + 280965794500,0.120046973228455,L, + 284814641000,0.112772360444069,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 294436757250,0.094585791230202,L, + 296361180500,0.090948477387428,L, + 298285603750,0.087311156094074,L, + 300210027000,0.083673842251301,L, + 302134450250,0.080036535859108,L, + 305983296750,0.072761908173561,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487280488014,L, + 311756566500,0.061849974095821,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114143922925,L, + 331000799000,0.025476828217506,L, + 332925222250,0.021839516237378,L, + 334849645500,0.018202200531960,L, + 336774068750,0.014564886689186,L, + 338698492000,0.010927573777735,L, + 340622915250,0.007290274370462,L, + 344471761750,0.000015646219254,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.156420126557350 + KeyVer: 4005 + KeyCount: 128 + Key: + 0,0.156420126557350,L, + 1924423250,0.165634140372276,L, + 3848846500,0.174848139286041,L, + 5773269750,0.184062153100967,L, + 7697693000,0.193276181817055,L, + 9622116250,0.202490165829659,L, + 11546539500,0.211704179644585,L, + 13470962750,0.220918208360672,L, + 15395386000,0.230132192373276,L, + 17319809250,0.239346221089363,L, + 19244232500,0.248560205101967,L, + 21168655750,0.257774233818054,L, + 23093079000,0.266988217830658,L, + 25017502250,0.276202261447906,L, + 28866348750,0.294630289077759,L, + 30790772000,0.303844273090363,L, + 32715195250,0.313058316707611,L, + 34639618500,0.322272270917892,L, + 36564041750,0.331486284732819,L, + 40412888250,0.349914371967316,L, + 44261734750,0.368342339992523,L, + 46186158000,0.377556383609772,L, + 48110581250,0.386770367622375,L, + 50035004500,0.395984441041946,L, + 51959427750,0.405198395252228,L, + 53883851000,0.414412468671799,L, + 55808274250,0.423626422882080,L, + 57732697500,0.432840406894684,L, + 59657120750,0.442054450511932,L, + 61581544000,0.451268434524536,L, + 63505967250,0.460482478141785,L, + 65430390500,0.469696462154388,L, + 67354813750,0.478910416364670,L, + 69279237000,0.488124519586563,L, + 71203660250,0.497338563203812,L, + 73128083500,0.506552517414093,L, + 75052506750,0.515766501426697,L, + 76976930000,0.524980545043945,L, + 78901353250,0.534194529056549,L, + 80825776500,0.543408572673798,L, + 84674623000,0.561836540699005,L, + 86599046250,0.571050584316254,L, + 88523469500,0.580264568328857,L, + 90447892750,0.589478671550751,L, + 92372316000,0.598692595958710,L, + 96221162500,0.617120683193207,L, + 98145585750,0.626334547996521,L, + 100070009000,0.635548651218414,L, + 101994432250,0.644762575626373,L, + 103918855500,0.653976678848267,L, + 105843278750,0.663190662860870,L, + 107767702000,0.672404706478119,L, + 109692125250,0.681618690490723,L, + 111616548500,0.690832734107971,L, + 113540971750,0.700046718120575,L, + 115465395000,0.709260642528534,L, + 125087511250,0.755330860614777,L, + 127011934500,0.764544785022736,L, + 128936357750,0.773758769035339,L, + 130860781000,0.782972812652588,L, + 132785204250,0.792186796665192,L, + 134709627500,0.801400899887085,L, + 136634050750,0.810614764690399,L, + 138558474000,0.819828867912292,L, + 140482897250,0.829042911529541,L, + 142407320500,0.838256835937500,L, + 144331743750,0.847470879554749,L, + 146256167000,0.856684863567352,L, + 148180590250,0.865898907184601,L, + 150105013500,0.875112771987915,L, + 152029436750,0.884326875209808,L, + 153953860000,0.869695365428925,L, + 155878283250,0.855063796043396,L, + 157802706500,0.840432345867157,L, + 159727129750,0.825800657272339,L, + 161651553000,0.811169207096100,L, + 163575976250,0.796537578105927,L, + 169349246000,0.752642869949341,L, + 171273669250,0.738011360168457,L, + 175122515750,0.708748221397400,L, + 177046939000,0.694116592407227,L, + 178971362250,0.679485142230988,L, + 188593478500,0.606327295303345,L, + 190517901750,0.591695785522461,L, + 192442325000,0.577064096927643,L, + 194366748250,0.562432646751404,L, + 200140018000,0.518537938594818,L, + 202064441250,0.503906309604645,L, + 203988864500,0.489274859428406,L, + 207837711000,0.460011720657349,L, + 209762134250,0.445380181074142,L, + 215535404000,0.401485472917557,L, + 217459827250,0.386853933334351,L, + 225157520250,0.328327655792236,L, + 229006366750,0.299064576625824,L, + 234779636500,0.255169868469238,L, + 240552906250,0.211275205016136,L, + 242477329500,0.196643620729446,L, + 244401752750,0.182012081146240,L, + 248250599250,0.152748942375183,L, + 250175022500,0.138117387890816,L, + 254023869000,0.108854264020920,L, + 255948292250,0.094222724437714,L, + 257872715500,0.079591147601604,L, + 259797138750,0.000015646219254,L, + 261721562000,0.156420126557350,L, + 277116948000,0.127321615815163,L, + 279041371250,0.123684309422970,L, + 280965794500,0.120046988129616,L, + 290587910750,0.101860418915749,L, + 292512334000,0.098223112523556,L, + 300210027000,0.083673857152462,L, + 302134450250,0.080036550760269,L, + 304058873500,0.076399229466915,L, + 307907720000,0.069124601781368,L, + 309832143250,0.065487295389175,L, + 311756566500,0.061849981546402,L, + 313680989750,0.058212660253048,L, + 319454259500,0.047300718724728,L, + 321378682750,0.043663408607244,L, + 323303106000,0.040026091039181,L, + 327151952500,0.032751463353634,L, + 329076375750,0.029114156961441,L, + 334849645500,0.018202215433121,L, + 336774068750,0.014564902521670,L, + 338698492000,0.010927588678896,L, + 340622915250,0.007290273904800,L, + 344471761750,0.000015646219254,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_018" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.058536529541016 + KeyVer: 4005 + KeyCount: 166 + Key: + 0,-0.058536529541016,L, + 1924423250,-0.058574676513672,L, + 3848846500,-0.058685064315796,L, + 5773269750,-0.058861494064331,L, + 7697693000,-0.059100389480591,L, + 9622116250,-0.059396982192993,L, + 11546539500,-0.059747695922852,L, + 13470962750,-0.060148715972900,L, + 15395386000,-0.060597896575928,L, + 17319809250,-0.061091661453247,L, + 19244232500,-0.061627864837646,L, + 21168655750,-0.062204837799072,L, + 23093079000,-0.062819957733154,L, + 25017502250,-0.063471317291260,L, + 26941925500,-0.064157009124756,L, + 28866348750,-0.064876079559326,L, + 30790772000,-0.065626859664917,L, + 32715195250,-0.066407680511475,L, + 34639618500,-0.067217350006104,L, + 36564041750,-0.068054676055908,L, + 38488465000,-0.068918943405151,L, + 40412888250,-0.069808483123779,L, + 42337311500,-0.070723056793213,L, + 44261734750,-0.071660995483398,L, + 46186158000,-0.072622060775757,L, + 48110581250,-0.073605060577393,L, + 50035004500,-0.074609041213989,L, + 51959427750,-0.075634002685547,L, + 53883851000,-0.076678276062012,L, + 55808274250,-0.077741622924805,L, + 57732697500,-0.078823328018188,L, + 59657120750,-0.079922914505005,L, + 61581544000,-0.081039190292358,L, + 63505967250,-0.082171916961670,L, + 65430390500,-0.083320379257202,L, + 67354813750,-0.084483623504639,L, + 69279237000,-0.085661411285400,L, + 71203660250,-0.086851835250854,L, + 73128083500,-0.088055133819580,L, + 75052506750,-0.089269876480103,L, + 76976930000,-0.090494394302368,L, + 78901353250,-0.091727256774902,L, + 80825776500,-0.092966794967651,L, + 82750199750,-0.094209194183350,L, + 84674623000,-0.095450639724731,L, + 86599046250,-0.096682786941528,L, + 88523469500,-0.097891330718994,L, + 90447892750,-0.099037170410156,L, + 92372316000,-0.099893093109131,L, + 94296739250,-0.099929571151733,L, + 96221162500,-0.099072694778442,L, + 98145585750,-0.097857713699341,L, + 100070009000,-0.096546173095703,L, + 101994432250,-0.095183849334717,L, + 103918855500,-0.093789577484131,L, + 105843278750,-0.092372894287109,L, + 107767702000,-0.090940237045288,L, + 109692125250,-0.089495420455933,L, + 111616548500,-0.088041305541992,L, + 113540971750,-0.086579799652100,L, + 115465395000,-0.085113048553467,L, + 117389818250,-0.083641767501831,L, + 119314241500,-0.082167863845825,L, + 121238664750,-0.080691814422607,L, + 123163088000,-0.079214811325073,L, + 125087511250,-0.077738046646118,L, + 127011934500,-0.076261997222900,L, + 128936357750,-0.074787855148315,L, + 130860781000,-0.073316812515259,L, + 132785204250,-0.071850061416626,L, + 134709627500,-0.070388555526733,L, + 136634050750,-0.068934202194214,L, + 138558474000,-0.067489624023438,L, + 140482897250,-0.066056728363037,L, + 142407320500,-0.064640283584595,L, + 144331743750,-0.063246250152588,L, + 146256167000,-0.061883687973022,L, + 148180590250,-0.060571908950806,L, + 150105013500,-0.059357166290283,L, + 152029436750,-0.058500528335571,L, + 180895785500,-0.058500528335571,L, + 182820208750,-0.057608604431152,L, + 184744632000,-0.054915666580200,L, + 186669055250,-0.050475597381592,L, + 188593478500,-0.044482707977295,L, + 190517901750,-0.037306547164917,L, + 192442325000,-0.029484748840332,L, + 194366748250,-0.021663188934326,L, + 196291171500,-0.014487028121948,L, + 198215594750,-0.008494138717651,L, + 200140018000,-0.004054069519043,L, + 202064441250,-0.001361131668091,L, + 203988864500,-0.000469207763672,L, + 205913287750,-0.000504255294800,L, + 207837711000,-0.000608444213867,L, + 209762134250,-0.000779867172241,L, + 211686557500,-0.001017570495605,L, + 213610980750,-0.001319408416748,L, + 215535404000,-0.001683950424194,L, + 217459827250,-0.002109289169312,L, + 219384250500,-0.002593755722046,L, + 221308673750,-0.003134727478027,L, + 223233097000,-0.003731250762939,L, + 225157520250,-0.004380464553833,L, + 227081943500,-0.005080699920654,L, + 229006366750,-0.005830049514771,L, + 230930790000,-0.006625890731812,L, + 232855213250,-0.007466316223145,L, + 234779636500,-0.008348703384399,L, + 236704059750,-0.009270906448364,L, + 238628483000,-0.010230779647827,L, + 240552906250,-0.011225700378418,L, + 242477329500,-0.012253522872925,L, + 244401752750,-0.013312101364136,L, + 246326176000,-0.014398574829102,L, + 248250599250,-0.015510559082031,L, + 250175022500,-0.016645431518555,L, + 252099445750,-0.017801761627197,L, + 254023869000,-0.018976211547852,L, + 255948292250,-0.020166397094727,L, + 257872715500,-0.021370410919189,L, + 259797138750,-0.022585391998291,L, + 261721562000,-0.023809671401978,L, + 263645985250,-0.025039911270142,L, + 265570408500,-0.026274681091309,L, + 267494831750,-0.027511596679688,L, + 269419255000,-0.028747797012329,L, + 271343678250,-0.029981851577759,L, + 273268101500,-0.031211137771606,L, + 275192524750,-0.032433986663818,L, + 277116948000,-0.033647775650024,L, + 279041371250,-0.034850835800171,L, + 280965794500,-0.036040544509888,L, + 282890217750,-0.037216186523438,L, + 284814641000,-0.038374900817871,L, + 286739064250,-0.039515495300293,L, + 288663487500,-0.040635824203491,L, + 290587910750,-0.041733741760254,L, + 292512334000,-0.042808771133423,L, + 294436757250,-0.043858766555786,L, + 296361180500,-0.044881820678711,L, + 298285603750,-0.045876741409302,L, + 300210027000,-0.046842575073242,L, + 302134450250,-0.047777175903320,L, + 304058873500,-0.048679590225220,L, + 305983296750,-0.049548864364624,L, + 307907720000,-0.050383329391479,L, + 309832143250,-0.051182508468628,L, + 311756566500,-0.051944971084595,L, + 313680989750,-0.052669525146484,L, + 315605413000,-0.053355216979980,L, + 317529836250,-0.054001569747925,L, + 319454259500,-0.054607152938843,L, + 321378682750,-0.055171489715576,L, + 323303106000,-0.055694341659546,L, + 325227529250,-0.056173801422119,L, + 327151952500,-0.056610345840454,L, + 329076375750,-0.057002782821655,L, + 331000799000,-0.057350873947144,L, + 332925222250,-0.057653427124023,L, + 334849645500,-0.057910919189453,L, + 336774068750,-0.058122158050537,L, + 338698492000,-0.058287382125854,L, + 340622915250,-0.058405399322510,L, + 342547338500,-0.058476686477661,L, + 344471761750,-0.058500528335571,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.578060865402222 + KeyVer: 4005 + KeyCount: 129 + Key: + 0,-0.578060865402222,L, + 90447892750,-0.578060865402222,L, + 92372316000,-0.557460606098175,L, + 94296739250,0.000370860099792,L, + 96221162500,0.007700681686401,L, + 98145585750,0.015030384063721,L, + 101994432250,0.029690027236938,L, + 103918855500,0.037019729614258,L, + 107767702000,0.051679372787476,L, + 109692125250,0.059009075164795,L, + 113540971750,0.073668718338013,L, + 117389818250,0.088328123092651,L, + 119314241500,0.095658063888550,L, + 123163088000,0.110317468643188,L, + 125087511250,0.119968891143799,L, + 127011934500,0.129930138587952,L, + 128936357750,0.140169143676758,L, + 130860781000,0.150662660598755,L, + 132785204250,0.161394834518433,L, + 134709627500,0.172355532646179,L, + 136634050750,0.183540463447571,L, + 138558474000,0.194950699806213,L, + 140482897250,0.206594824790955,L, + 142407320500,0.218489885330200,L, + 144331743750,0.230666875839233,L, + 146256167000,0.243180871009827,L, + 148180590250,0.256135821342468,L, + 150105013500,0.269762396812439,L, + 152029436750,0.284850955009460,L, + 153953860000,0.306648492813110,L, + 155878283250,0.313348889350891,L, + 157802706500,0.320404767990112,L, + 159727129750,0.327870368957520,L, + 161651553000,0.335815072059631,L, + 163575976250,0.344329476356506,L, + 165500399500,0.353533387184143,L, + 167424822750,0.363593697547913,L, + 169349246000,0.374749422073364,L, + 171273669250,0.387361168861389,L, + 173198092500,0.402003884315491,L, + 175122515750,0.419637322425842,L, + 177046939000,0.441746950149536,L, + 178971362250,0.468574166297913,L, + 180895785500,0.492805123329163,L, + 182820208750,0.514571666717529,L, + 184744632000,0.539781212806702,L, + 186669055250,0.568211555480957,L, + 188593478500,0.599333882331848,L, + 190517901750,0.632257223129272,L, + 192442325000,0.665760874748230,L, + 194366748250,0.698447465896606,L, + 196291171500,0.728978276252747,L, + 198215594750,0.756290555000305,L, + 200140018000,0.779710412025452,L, + 202064441250,0.798940539360046,L, + 203988864500,0.813977122306824,L, + 205913287750,0.826800942420959,L, + 207837711000,0.839292407035828,L, + 209762134250,0.851451992988586,L, + 211686557500,0.863280653953552,L, + 213610980750,0.874779820442200,L, + 215535404000,0.885950446128845,L, + 217459827250,0.896793961524963,L, + 219384250500,0.907312512397766,L, + 221308673750,0.917508482933044,L, + 223233097000,0.927383303642273,L, + 225157520250,0.936940073966980,L, + 227081943500,0.946181893348694,L, + 229006366750,0.955111384391785,L, + 230930790000,0.963732123374939,L, + 232855213250,0.972047686576843,L, + 234779636500,0.980061411857605,L, + 236704059750,0.987778067588806,L, + 238628483000,0.995201230049133,L, + 240552906250,1.002335667610168,L, + 242477329500,1.009186148643494,L, + 244401752750,1.015757441520691,L, + 246326176000,1.022054076194763,L, + 248250599250,1.028082013130188,L, + 250175022500,1.033846020698547,L, + 252099445750,1.039352059364319,L, + 254023869000,1.044605612754822,L, + 255948292250,1.049612164497375,L, + 257872715500,1.054378151893616,L, + 259797138750,1.058909535408020,L, + 261721562000,1.063211798667908,L, + 263645985250,1.067291855812073,L, + 265570408500,1.071155905723572,L, + 267494831750,1.074810147285461,L, + 269419255000,1.078260779380798,L, + 271343678250,1.081514000892639,L, + 273268101500,1.084576964378357,L, + 275192524750,1.087455391883850,L, + 277116948000,1.090156435966492,L, + 279041371250,1.092685818672180,L, + 280965794500,1.095050215721130,L, + 282890217750,1.097256064414978,L, + 284814641000,1.099310040473938,L, + 286739064250,1.101217627525330,L, + 288663487500,1.102985739707947,L, + 290587910750,1.104620575904846,L, + 292512334000,1.106127858161926,L, + 294436757250,1.107513785362244,L, + 296361180500,1.108784079551697,L, + 298285603750,1.109944939613342,L, + 300210027000,1.111002326011658,L, + 302134450250,1.111961483955383,L, + 304058873500,1.112827897071838,L, + 305983296750,1.113607048988342,L, + 307907720000,1.114304900169373,L, + 309832143250,1.114925980567932,L, + 311756566500,1.115475773811340,L, + 313680989750,1.115959048271179,L, + 315605413000,1.116380572319031,L, + 317529836250,1.116745591163635,L, + 319454259500,1.117058396339417,L, + 321378682750,1.117323517799377,L, + 323303106000,1.117545008659363,L, + 325227529250,1.117727875709534,L, + 327151952500,1.117875695228577,L, + 329076375750,1.117992758750916,L, + 331000799000,1.118083119392395,L, + 332925222250,1.118149876594543,L, + 334849645500,1.118197321891785,L, + 336774068750,1.118228554725647,L, + 338698492000,1.118247389793396,L, + 340622915250,1.118256926536560,L, + 342547338500,1.118260264396667,L, + 344471761750,1.118260979652405,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 59.792780560337185 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,59.792780560337185,L, + 1924423250,59.737565311086883,L, + 3848846500,59.577697903373789,L, + 5773269750,59.320985243419230,L, + 7697693000,58.974318992095732,L, + 9622116250,58.543791678142938,L, + 11546539500,58.034833301950997,L, + 13470962750,57.452300128019786,L, + 15395386000,56.800556647228937,L, + 17319809250,56.083540463634954,L, + 19244232500,55.304837426552091,L, + 21168655750,54.467708951309021,L, + 23093079000,53.575115924910939,L, + 25017502250,52.629821158877121,L, + 26941925500,51.634304011876267,L, + 28866348750,50.590890163320765,L, + 30790772000,49.501724292610000,L, + 32715195250,48.368804230076201,L, + 34639618500,47.193970711700672,L, + 36564041750,45.978948360248850,L, + 38488465000,44.725369590932367,L, + 40412888250,43.434733630274025,L, + 42337311500,42.108488478377872,L, + 44261734750,40.747969437226651,L, + 46186158000,39.354446922005970,L, + 48110581250,37.929140121482682,L, + 50035004500,36.473230658383194,L, + 51959427750,34.987787457312614,L, + 53883851000,33.473937499483995,L, + 55808274250,31.932691652894491,L, + 57732697500,30.365067615730439,L, + 59657120750,28.772083086178164,L, + 61581544000,27.154728441667316,L, + 63505967250,25.514028210573404,L, + 65430390500,23.851013751461085,L, + 67354813750,22.166765941766524,L, + 69279237000,20.462445913648619,L, + 71203660250,18.739315544556522,L, + 73128083500,16.998795513837596,L, + 75052506750,15.242531897081818,L, + 76976930000,13.472537038773392,L, + 78901353250,11.691309080601252,L, + 80825776500,9.902204206768804,L, + 82750199750,8.109934394029708,L, + 84674623000,6.321668779691525,L, + 86599046250,4.549404591031366,L, + 88523469500,2.816497233029234,L, + 90447892750,1.182278531292534,L, + 92372316000,0.000309185366264,L, + 94296739250,0.000001885382741,L, + 96221162500,1.237622273476599,L, + 98145585750,2.992587620681550,L, + 100070009000,4.887326065783146,L, + 101994432250,6.855265782653780,L, + 103918855500,8.869396788220675,L, + 105843278750,10.915502897500113,L, + 107767702000,12.984963131099086,L, + 109692125250,15.072043545209374,L, + 111616548500,17.172642611234391,L, + 113540971750,19.283683328953046,L, + 115465395000,21.402729028378950,L, + 117389818250,23.527766511254235,L, + 119314241500,25.657098475570162,L, + 121238664750,27.789203496689108,L, + 123163088000,29.922662602811009,L, + 125087511250,32.056113171196444,L, + 127011934500,34.188211362126225,L, + 128936357750,36.317546741536731,L, + 130860781000,38.442589347053897,L, + 132785204250,40.561628216290629,L, + 134709627500,42.672668934009288,L, + 136634050750,44.773273122676180,L, + 138558474000,46.860350121691880,L, + 140482897250,48.929808647743563,L, + 142407320500,50.975918172117588,L, + 144331743750,52.990041920608490,L, + 146256167000,54.957990175215585,L, + 148180590250,56.852725632109419,L, + 150105013500,58.607681267639144,L, + 152029436750,59.845311545243675,L, + 153953860000,59.845311545243675,L, + 155878283250,59.866314376941432,L, + 157802706500,59.955414194664122,L, + 159727129750,60.122938244436789,L, + 161651553000,60.373025620896442,L, + 163575976250,60.709849569625966,L, + 165500399500,61.138457600421994,L, + 167424822750,61.665065185429221,L, + 169349246000,62.297308476139712,L, + 171273669250,63.044510680770522,L, + 173198092500,63.918105535992240,L, + 175122515750,64.932197382440918,L, + 177046939000,66.104394447796821,L, + 178971362250,67.457017790267514,L, + 180895785500,69.018945449663789,L, + 182820208750,71.116257487150747,L, + 184744632000,74.044557659816931,L, + 186669055250,77.750713926108901,L, + 188593478500,82.107466201411171,L, + 190517901750,86.900250923137250,L, + 192442325000,91.835089919221048,L, + 194366748250,96.575213882446405,L, + 196291171500,100.797705129233933,L, + 198215594750,104.246206169465879,L, + 200140018000,106.757885293329394,L, + 202064441250,108.260916231512738,L, + 203988864500,108.753912455614383,L, + 205913287750,108.724399208210798,L, + 207837711000,108.636685918889611,L, + 209762134250,108.492043002836468,L, + 211686557500,108.291802346939491,L, + 213610980750,108.037364139978536,L, + 215535404000,107.730162721679321,L, + 217459827250,107.371721224226732,L, + 219384250500,106.963603760940714,L, + 221308673750,106.507401765897882,L, + 223233097000,106.004802295823211,L, + 225157520250,105.457492407441705,L, + 227081943500,104.867234289559221,L, + 229006366750,104.235831112116642,L, + 230930790000,103.565113365811527,L, + 232855213250,102.856945692287283,L, + 234779636500,102.113240544511513,L, + 236704059750,101.335924035830161,L, + 238628483000,100.526963260724187,L, + 240552906250,99.688325313674540,L, + 242477329500,98.822025100486385,L, + 244401752750,97.930057036397358,L, + 246326176000,97.014463347969297,L, + 248250599250,96.077265771196522,L, + 250175022500,95.120520193019189,L, + 252099445750,94.146234689053287,L, + 254023869000,93.156465146238986,L, + 255948292250,92.153219640192276,L, + 257872715500,91.138533567285819,L, + 259797138750,90.114394512568069,L, + 261721562000,89.082776400709164,L, + 263645985250,88.045673646946739,L, + 265570408500,87.004998704248422,L, + 267494831750,85.962677685960116,L, + 269419255000,84.920588894103602,L, + 271343678250,83.880590140133108,L, + 273268101500,82.844498254367849,L, + 275192524750,81.814095916181202,L, + 277116948000,80.791124823811529,L, + 279041371250,79.777278864172970,L, + 280965794500,78.774245093990530,L, + 282890217750,77.783614947340808,L, + 284814641000,76.806979858300423,L, + 286739064250,75.845856128865123,L, + 288663487500,74.901732740273957,L, + 290587910750,73.976030371874288,L, + 292512334000,73.070142382256805,L, + 294436757250,72.185407488498811,L, + 296361180500,71.323089275596772,L, + 298285603750,70.484464988925467,L, + 300210027000,69.670675270076302,L, + 302134450250,68.882894911586504,L, + 304058873500,68.122203083344928,L, + 305983296750,67.389617483537933,L, + 307907720000,66.686162640540985,L, + 309832143250,66.012767460081221,L, + 311756566500,65.370333527129091,L, + 313680989750,64.759714615330836,L, + 315605413000,64.181703026630160,L, + 317529836250,63.637077402592467,L, + 319454259500,63.126541252702253,L, + 321378682750,62.650770765687362,L, + 323303106000,62.210401149140594,L, + 325227529250,61.806033459708907,L, + 327151952500,61.438207282336741,L, + 329076375750,61.107441711401009,L, + 331000799000,60.814208029954443,L, + 332925222250,60.558963860671433,L, + 334849645500,60.342091694145502,L, + 336774068750,60.163974020970166,L, + 338698492000,60.024931860036411,L, + 340622915250,59.925299890613580,L, + 342547338500,59.865351320268466,L, + 344471761750,59.845311545243675,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -20.443355534918460 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-20.443355534918460,L, + 1924423250,-20.458233394478018,L, + 3848846500,-20.501318227762397,L, + 5773269750,-20.570497798770770,L, + 7697693000,-20.663914296048901,L, + 9622116250,-20.779935304385155,L, + 11546539500,-20.917094040655279,L, + 13470962750,-21.074077400991332,L, + 15395386000,-21.249710592856079,L, + 17319809250,-21.442934936928172,L, + 19244232500,-21.652782253892756,L, + 21168655750,-21.878376571988785,L, + 23093079000,-22.118911928894192,L, + 25017502250,-22.373659201915086,L, + 26941925500,-22.641935372134459,L, + 28866348750,-22.923117184790556,L, + 30790772000,-23.216630903993092,L, + 32715195250,-23.521933529703052,L, + 34639618500,-23.838533288300198,L, + 36564041750,-24.165962311826384,L, + 38488465000,-24.503780053080146,L, + 40412888250,-24.851585238447743,L, + 42337311500,-25.208988547146486,L, + 44261734750,-25.575627979150365,L, + 46186158000,-25.951160317453589,L, + 48110581250,-26.335254297881413,L, + 50035004500,-26.727602561921184,L, + 51959427750,-27.127902873702130,L, + 53883851000,-27.535859827542652,L, + 55808274250,-27.951201923423238,L, + 57732697500,-28.373654246229798,L, + 59657120750,-28.802935050659066,L, + 61581544000,-29.238786497069878,L, + 63505967250,-29.680931962800848,L, + 65430390500,-30.129081164812252,L, + 67354813750,-30.582960895537287,L, + 69279237000,-31.042246720990381,L, + 71203660250,-31.506603961902201,L, + 73128083500,-31.975650127679227,L, + 75052506750,-32.448927595647071,L, + 76976930000,-32.925917271428808,L, + 78901353250,-33.405925890823688,L, + 80825776500,-33.888062114145029,L, + 82750199750,-34.371048696018029,L, + 84674623000,-34.852962938191347,L, + 86599046250,-35.330557085714631,L, + 88523469500,-35.797543949456902,L, + 90447892750,-36.237947716949520,L, + 92372316000,-36.556459928514265,L, + 94296739250,-36.556541890784302,L, + 96221162500,-36.223027168707645,L, + 98145585750,-35.750091210198306,L, + 100070009000,-35.239490173510980,L, + 101994432250,-34.709163550500683,L, + 103918855500,-34.166385492633481,L, + 105843278750,-33.614994566222897,L, + 107767702000,-33.057306205397573,L, + 109692125250,-32.494877693288267,L, + 111616548500,-31.928795029973006,L, + 113540971750,-31.359905158908877,L, + 115465395000,-30.788856948067025,L, + 117389818250,-30.216193397486467,L, + 119314241500,-29.642372129841597,L, + 121238664750,-29.067802956482609,L, + 123163088000,-28.492870075550321,L, + 125087511250,-27.917940609712616,L, + 127011934500,-27.343374851448214,L, + 128936357750,-26.769551876256049,L, + 130860781000,-26.196886618128200,L, + 132785204250,-25.625840114833643,L, + 134709627500,-25.056950243769514,L, + 136634050750,-24.490870995548839,L, + 138558474000,-23.928437360797655,L, + 140482897250,-23.370750707519623,L, + 142407320500,-22.819359781109039,L, + 144331743750,-22.276583430789124,L, + 146256167000,-21.746255100231540,L, + 148180590250,-21.235652355996923,L, + 150105013500,-20.762716397487580,L, + 152029436750,-20.429199967863628,L, + 153953860000,-20.429199967863628,L, + 155878283250,-20.421562108824272,L, + 157802706500,-20.389151153665317,L, + 159727129750,-20.328217328532428,L, + 161651553000,-20.237252869166326,L, + 163575976250,-20.114739766023984,L, + 165500399500,-19.958842405765960,L, + 167424822750,-19.767298288229689,L, + 169349246000,-19.537332649064862,L, + 171273669250,-19.265549176706688,L, + 173198092500,-18.947798531234398,L, + 175122515750,-18.578937580202975,L, + 177046939000,-18.152571559002002,L, + 178971362250,-17.660579372708352,L, + 180895785500,-17.092459605473142,L, + 182820208750,-16.184840162901054,L, + 184744632000,-14.682714224782744,L, + 186669055250,-12.614081297846989,L, + 188593478500,-10.056814076368283,L, + 190517901750,-7.148864452334118,L, + 192442325000,-4.084527401968980,L, + 194366748250,-1.091016745254128,L, + 196291171500,1.609499820243636,L, + 198215594750,3.836406266216637,L, + 200140018000,5.470570006274860,L, + 202064441250,6.454279463748071,L, + 203988864500,6.778357852599547,L, + 205913287750,6.761941919816268,L, + 207837711000,6.713146194612120,L, + 209762134250,6.632681016660785,L, + 211686557500,6.521288742147677,L, + 213610980750,6.379744170656767,L, + 215535404000,6.208854545170587,L, + 217459827250,6.009455710088813,L, + 219384250500,5.782418941417446,L, + 221308673750,5.528639420824579,L, + 223233097000,5.249043065829570,L, + 225157520250,4.944578845840226,L, + 227081943500,4.616224758568328,L, + 229006366750,4.264977584745873,L, + 230930790000,3.891859718314245,L, + 232855213250,3.497912122791635,L, + 234779636500,3.084192837169160,L, + 236704059750,2.651776762467447,L, + 238628483000,2.201754167632759,L, + 240552906250,1.735226954277288,L, + 242477329500,1.253306522245041,L, + 244401752750,0.757112595673074,L, + 246326176000,0.247773649878319,L, + 248250599250,-0.273580879326940,L, + 250175022500,-0.805817500705601,L, + 252099445750,-1.347804430567853,L, + 254023869000,-1.898409031450239,L, + 255948292250,-2.456505069191648,L, + 257872715500,-3.020971538994555,L, + 259797138750,-3.590694906580836,L, + 261721562000,-4.164572096399537,L, + 263645985250,-4.741511345400515,L, + 265570408500,-5.320430922373971,L, + 267494831750,-5.900269159790792,L, + 269419255000,-6.479974208518798,L, + 271343678250,-7.058522393956135,L, + 273268101500,-7.634890468387772,L, + 275192524750,-8.208102995422868,L, + 277116948000,-8.777176427820940,L, + 279041371250,-9.341165638155593,L, + 280965794500,-9.899148550888874,L, + 282890217750,-10.450229557465867,L, + 284814641000,-10.993527563483642,L, + 286739064250,-11.528193064164180,L, + 288663487500,-12.053404729259787,L, + 290587910750,-12.568365987958513,L, + 292512334000,-13.072305028884145,L, + 294436757250,-13.564478215190801,L, + 296361180500,-14.044177768525740,L, + 298285603750,-14.510706155819975,L, + 300210027000,-14.963412801555062,L, + 302134450250,-15.401649691533498,L, + 304058873500,-15.824817476655616,L, + 305983296750,-16.232349251220302,L, + 307907720000,-16.623678109526452,L, + 309832143250,-16.998281542102553,L, + 311756566500,-17.355664360233789,L, + 313680989750,-17.695351865772839,L, + 315605413000,-18.016893266234479,L, + 317529836250,-18.319865089890179,L, + 319454259500,-18.603874600862657,L, + 321378682750,-18.868539308558393,L, + 323303106000,-19.113519411066179,L, + 325227529250,-19.338469983832933,L, + 327151952500,-19.543083668346004,L, + 329076375750,-19.727088964585885,L, + 331000799000,-19.890207542343894,L, + 332925222250,-20.032210590282840,L, + 334849645500,-20.152845391403432,L, + 336774068750,-20.251939483429126,L, + 338698492000,-20.329277715401069,L, + 340622915250,-20.384706408062936,L, + 342547338500,-20.418053099138184,L, + 344471761750,-20.429201675410919,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -23.741421658681098 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,-23.741421658681098,L, + 1924423250,-23.712960260409695,L, + 3848846500,-23.630542075242563,L, + 5773269750,-23.498191792148123,L, + 7697693000,-23.319462817042069,L, + 9622116250,-23.097483376564266,L, + 11546539500,-22.835058970916293,L, + 13470962750,-22.534679204050612,L, + 15395386000,-22.198603161035201,L, + 17319809250,-21.828850870317090,L, + 19244232500,-21.427271605614063,L, + 21168655750,-20.995542178367348,L, + 23093079000,-20.535187428309147,L, + 25017502250,-20.047624619692243,L, + 26941925500,-19.534132705438715,L, + 28866348750,-18.995905261106021,L, + 30790772000,-18.434052192434287,L, + 32715195250,-17.849584367420672,L, + 34639618500,-17.243461427643567,L, + 36564041750,-16.616567882600478,L, + 38488465000,-15.969726770086398,L, + 40412888250,-15.303723561855874,L, + 42337311500,-14.619294210791974,L, + 44261734750,-13.917114905622530,L, + 46186158000,-13.197851589791616,L, + 48110581250,-12.462115565229947,L, + 50035004500,-11.710505327263546,L, + 51959427750,-10.943583512725288,L, + 53883851000,-10.161899951843363,L, + 55808274250,-9.365973738994690,L, + 57732697500,-8.556330798745359,L, + 59657120750,-7.733473149999363,L, + 61581544000,-6.897902384773877,L, + 63505967250,-6.050132474803942,L, + 65430390500,-5.190670988522255,L, + 67354813750,-4.320064767949239,L, + 69279237000,-3.438882212889885,L, + 71203660250,-2.547742309237724,L, + 73128083500,-1.647339388410570,L, + 75052506750,-0.738486829889035,L, + 76976930000,0.177849601590627,L, + 78901353250,1.100452758314193,L, + 80825776500,2.027703872108159,L, + 82750199750,2.957316523807654,L, + 84674623000,3.885835064579479,L, + 86599046250,4.807455114289601,L, + 88523469500,5.710877405616720,L, + 90447892750,6.567328912908551,L, + 92372316000,7.204924937494209,L, + 94296739250,7.229657052478791,L, + 96221162500,6.588604098399464,L, + 98145585750,5.679577636858358,L, + 100070009000,4.698153731436160,L, + 101994432250,3.678812030836690,L, + 103918855500,2.635546312008816,L, + 105843278750,1.575717064278567,L, + 107767702000,0.503790377589480,L, + 109692125250,-0.577260961583056,L, + 111616548500,-1.665316446306018,L, + 113540971750,-2.758778932891536,L, + 115465395000,-3.856385850199365,L, + 117389818250,-4.957101997683427,L, + 119314241500,-6.060041798629148,L, + 121238664750,-7.164412524205983,L, + 123163088000,-8.269485905493683,L, + 125087511250,-9.374560140555030,L, + 127011934500,-10.478928304810928,L, + 128936357750,-11.581866398209355,L, + 130860781000,-12.682583826353886,L, + 132785204250,-13.780195225973358,L, + 134709627500,-14.873652163030176,L, + 136634050750,-15.961714958189985,L, + 138558474000,-17.042761441524906,L, + 140482897250,-18.114689622317876,L, + 142407320500,-19.174518122996183,L, + 144331743750,-20.217776584748066,L, + 146256167000,-21.237125969310352,L, + 148180590250,-22.218543898317026,L, + 150105013500,-23.127573774952715,L, + 152029436750,-23.768629717239804,L, + 153953860000,-23.768631424787095,L, + 155878283250,-23.769410066352478,L, + 157802706500,-23.772722708099927,L, + 159727129750,-23.778943302886507,L, + 161651553000,-23.788228945063128,L, + 163575976250,-23.800740144075281,L, + 165500399500,-23.816663022577849,L, + 167424822750,-23.836222976813445,L, + 169349246000,-23.859706874727209,L, + 171273669250,-23.887461348419514,L, + 173198092500,-23.919911577166200,L, + 175122515750,-23.957578362891471,L, + 177046939000,-24.001113988661071,L, + 178971362250,-24.051356860195614,L, + 180895785500,-24.109372487005619,L, + 182820208750,-24.184122077282129,L, + 184744632000,-24.283374971206026,L, + 186669055250,-24.405346781856647,L, + 188593478500,-24.545999159887227,L, + 190517901750,-24.698664133120545,L, + 192442325000,-24.854322436757620,L, + 194366748250,-25.002756107800124,L, + 196291171500,-25.134235541775389,L, + 198215594750,-25.241153615495321,L, + 200140018000,-25.318758224844895,L, + 202064441250,-25.365073737606686,L, + 203988864500,-25.380231634922215,L, + 205913287750,-25.379258332965488,L, + 207837711000,-25.376367455399286,L, + 209762134250,-25.371606813547793,L, + 211686557500,-25.365005435714984,L, + 213610980750,-25.356621378508805,L, + 215535404000,-25.346500745706155,L, + 217459827250,-25.334684518442049,L, + 219384250500,-25.321237583513607,L, + 221308673750,-25.306206044697724,L, + 223233097000,-25.289646251055050,L, + 225157520250,-25.271611136551659,L, + 227081943500,-25.252160465342783,L, + 229006366750,-25.231355709130952,L, + 230930790000,-25.209254924524117,L, + 232855213250,-25.185921290772093,L, + 234779636500,-25.161412864482831,L, + 236704059750,-25.135797947548028,L, + 238628483000,-25.109144841859383,L, + 240552906250,-25.081511604024843,L, + 242477329500,-25.052961413294231,L, + 244401752750,-25.023571109295709,L, + 246326176000,-24.993402163731805,L, + 248250599250,-24.962519463399637,L, + 250175022500,-24.930993017738196,L, + 252099445750,-24.898886005997305,L, + 254023869000,-24.866275267805126,L, + 255948292250,-24.833217152222311,L, + 257872715500,-24.799783376235148,L, + 259797138750,-24.766033703998872,L, + 261721562000,-24.732041560047058,L, + 263645985250,-24.697870123629535,L, + 265570408500,-24.663579158901534,L, + 267494831750,-24.629236967754760,L, + 269419255000,-24.594893069060692,L, + 271343678250,-24.560626009994788,L, + 273268101500,-24.526487016975821,L, + 275192524750,-24.492532439064444,L, + 277116948000,-24.458822040415892,L, + 279041371250,-24.425415585185409,L, + 280965794500,-24.392360884697180,L, + 282890217750,-24.359722825748321,L, + 284814641000,-24.327540681926560,L, + 286739064250,-24.295870802292548,L, + 288663487500,-24.264757583075891,L, + 290587910750,-24.234255665789952,L, + 292512334000,-24.204407739117038,L, + 294436757250,-24.175254784192173,L, + 296361180500,-24.146836074603083,L, + 298285603750,-24.119204544315838,L, + 300210027000,-24.092387514087115,L, + 302134450250,-24.066431087693811,L, + 304058873500,-24.041366000987193,L, + 305983296750,-24.017224697365815,L, + 307907720000,-23.994048157964702,L, + 309832143250,-23.971858580898655,L, + 311756566500,-23.950688409566233,L, + 313680989750,-23.930566672271404,L, + 315605413000,-23.911520689770850,L, + 317529836250,-23.893576075273959,L, + 319454259500,-23.876753319348243,L, + 321378682750,-23.861074620108500,L, + 323303106000,-23.846563883216831,L, + 325227529250,-23.833239891693445,L, + 327151952500,-23.821119721011275,L, + 329076375750,-23.810220446643243,L, + 331000799000,-23.800559144062277,L, + 332925222250,-23.792146058552124,L, + 334849645500,-23.785001680680303,L, + 336774068750,-23.779131133088683,L, + 338698492000,-23.774551491250197,L, + 340622915250,-23.771267877806718,L, + 342547338500,-23.769287122947418,L, + 344471761750,-23.768631424787095,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.000044941902161 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000044941902161,L, + 1924423250,0.000044919135689,L, + 3848846500,0.000044853182771,L, + 5773269750,0.000044747306674,L, + 7697693000,0.000044604319555,L, + 9622116250,0.000044426746172,L, + 11546539500,0.000044216820243,L, + 13470962750,0.000043976546294,L, + 15395386000,0.000043707725126,L, + 17319809250,0.000043411986553,L, + 19244232500,0.000043090803956,L, + 21168655750,0.000042745519750,L, + 23093079000,0.000042377367208,L, + 25017502250,0.000041987466830,L, + 26941925500,0.000041576859076,L, + 28866348750,0.000041146493459,L, + 30790772000,0.000040697254008,L, + 32715195250,0.000040229973820,L, + 34639618500,0.000039745402319,L, + 36564041750,0.000039244259824,L, + 38488465000,0.000038727204810,L, + 40412888250,0.000038194873923,L, + 42337311500,0.000037647852878,L, + 44261734750,0.000037086694647,L, + 46186158000,0.000036511926737,L, + 48110581250,0.000035924051190,L, + 50035004500,0.000035323548218,L, + 51959427750,0.000034710872569,L, + 53883851000,0.000034086471715,L, + 55808274250,0.000033450774936,L, + 57732697500,0.000032804200600,L, + 59657120750,0.000032147163438,L, + 61581544000,0.000031480078178,L, + 63505967250,0.000030803363188,L, + 65430390500,0.000030117447750,L, + 67354813750,0.000029422772059,L, + 69279237000,0.000028719819966,L, + 71203660250,0.000028009113521,L, + 73128083500,0.000027291232982,L, + 75052506750,0.000026566860470,L, + 76976930000,0.000025836823625,L, + 78901353250,0.000025102159270,L, + 80825776500,0.000024364246201,L, + 82750199750,0.000023625038011,L, + 84674623000,0.000022887485102,L, + 86599046250,0.000022156533305,L, + 88523469500,0.000021441830540,L, + 90447892750,0.000020767845854,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232565656304359,L, + 98145585750,0.245429664850235,L, + 100070009000,0.254731386899948,L, + 101994432250,0.262120455503464,L, + 103918855500,0.268265932798386,L, + 105843278750,0.273518383502960,L, + 107767702000,0.278088837862015,L, + 109692125250,0.282116144895554,L, + 111616548500,0.285697221755981,L, + 113540971750,0.288903206586838,L, + 115465395000,0.291787862777710,L, + 117389818250,0.294393241405487,L, + 119314241500,0.296753019094467,L, + 121238664750,0.298894405364990,L, + 123163088000,0.300840198993683,L, + 125087511250,0.302609384059906,L, + 127011934500,0.304218381643295,L, + 128936357750,0.305681318044662,L, + 130860781000,0.307010620832443,L, + 132785204250,0.308217525482178,L, + 134709627500,0.309312224388123,L, + 136634050750,0.310304522514343,L, + 138558474000,0.311203896999359,L, + 140482897250,0.312020361423492,L, + 142407320500,0.312765061855316,L, + 144331743750,0.313452214002609,L, + 146256167000,0.314102530479431,L, + 148180590250,0.314752757549286,L, + 150105013500,0.315492510795593,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319344967603683,L, + 155878283250,0.321910500526428,L, + 157802706500,0.322999179363251,L, + 159727129750,0.323413103818893,L, + 161651553000,0.323450118303299,L, + 163575976250,0.323262542486191,L, + 165500399500,0.322943389415741,L, + 167424822750,0.322556555271149,L, + 169349246000,0.322150558233261,L, + 171273669250,0.321765452623367,L, + 173198092500,0.321436882019043,L, + 175122515750,0.321198940277100,L, + 177046939000,0.321086406707764,L, + 178971362250,0.321136683225632,L, + 180895785500,0.321392476558685,L, + 182820208750,0.328961044549942,L, + 184744632000,0.351049661636353,L, + 186669055250,0.387221634387970,L, + 188593478500,0.435898840427399,L, + 190517901750,0.494094938039780,L, + 192442325000,0.557459115982056,L, + 194366748250,0.620779812335968,L, + 196291171500,0.678848505020142,L, + 198215594750,0.727323055267334,L, + 200140018000,0.763228476047516,L, + 202064441250,0.784998953342438,L, + 203988864500,0.792209446430206,L, + 205913287750,0.791758537292480,L, + 207837711000,0.790418446063995,L, + 209762134250,0.788208425045013,L, + 211686557500,0.785149037837982,L, + 213610980750,0.781261622905731,L, + 215535404000,0.776568055152893,L, + 217459827250,0.771091759204865,L, + 219384250500,0.764856100082397,L, + 221308673750,0.757886171340942,L, + 223233097000,0.750207185745239,L, + 225157520250,0.741845130920410,L, + 227081943500,0.732826828956604,L, + 229006366750,0.723180055618286,L, + 230930790000,0.712932407855988,L, + 232855213250,0.702112674713135,L, + 234779636500,0.690750002861023,L, + 236704059750,0.678873777389526,L, + 238628483000,0.666514039039612,L, + 240552906250,0.653700828552246,L, + 242477329500,0.640465080738068,L, + 244401752750,0.626837253570557,L, + 246326176000,0.612848401069641,L, + 248250599250,0.598529458045959,L, + 250175022500,0.583911657333374,L, + 252099445750,0.569026112556458,L, + 254023869000,0.553903877735138,L, + 255948292250,0.538575887680054,L, + 257872715500,0.523072957992554,L, + 259797138750,0.507425606250763,L, + 261721562000,0.491664171218872,L, + 263645985250,0.475818663835526,L, + 265570408500,0.459918737411499,L, + 267494831750,0.443993628025055,L, + 269419255000,0.428072154521942,L, + 271343678250,0.412182480096817,L, + 273268101500,0.396352618932724,L, + 275192524750,0.380609512329102,L, + 277116948000,0.364980071783066,L, + 279041371250,0.349490165710449,L, + 280965794500,0.334165275096893,L, + 282890217750,0.319029957056046,L, + 284814641000,0.304108411073685,L, + 286739064250,0.289423882961273,L, + 288663487500,0.274999111890793,L, + 290587910750,0.260855823755264,L, + 292512334000,0.247015193104744,L, + 294436757250,0.233497738838196,L, + 296361180500,0.220322877168655,L, + 298285603750,0.207509815692902,L, + 300210027000,0.195076465606689,L, + 302134450250,0.183040380477905,L, + 304058873500,0.171418070793152,L, + 305983296750,0.160225331783295,L, + 307907720000,0.149477660655975,L, + 309832143250,0.139189064502716,L, + 311756566500,0.129373729228973,L, + 313680989750,0.120044350624084,L, + 315605413000,0.111213266849518,L, + 317529836250,0.102892160415649,L, + 319454259500,0.095091879367828,L, + 321378682750,0.087822906672955,L, + 323303106000,0.081094801425934,L, + 325227529250,0.074916541576385,L, + 327151952500,0.069296769797802,L, + 329076375750,0.064243078231812,L, + 331000799000,0.059763073921204,L, + 332925222250,0.055863026529551,L, + 334849645500,0.052549600601196,L, + 336774068750,0.049828290939331,L, + 338698492000,0.047704104334116,L, + 340622915250,0.046181917190552,L, + 342547338500,0.045265793800354,L, + 344471761750,0.044959723949432,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000028520822525 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000028520822525,L, + 1924423250,0.000028513213692,L, + 3848846500,0.000028491180274,L, + 5773269750,0.000028455800930,L, + 7697693000,0.000028408023354,L, + 9622116250,0.000028348687920,L, + 11546539500,0.000028278542231,L, + 13470962750,0.000028198259315,L, + 15395386000,0.000028108437618,L, + 17319809250,0.000028009615562,L, + 19244232500,0.000027902298825,L, + 21168655750,0.000027786925784,L, + 23093079000,0.000027663912988,L, + 25017502250,0.000027533629691,L, + 26941925500,0.000027396430596,L, + 28866348750,0.000027252628570,L, + 30790772000,0.000027102521926,L, + 32715195250,0.000026946383514,L, + 34639618500,0.000026784469810,L, + 36564041750,0.000026617017284,L, + 38488465000,0.000026444247851,L, + 40412888250,0.000026266374334,L, + 42337311500,0.000026083595003,L, + 44261734750,0.000025896091756,L, + 46186158000,0.000025704037398,L, + 48110581250,0.000025507606551,L, + 50035004500,0.000025306955649,L, + 51959427750,0.000025102237487,L, + 53883851000,0.000024893601221,L, + 55808274250,0.000024681188734,L, + 57732697500,0.000024465143724,L, + 59657120750,0.000024245600798,L, + 61581544000,0.000024022701837,L, + 63505967250,0.000023796586902,L, + 65430390500,0.000023567394237,L, + 67354813750,0.000023335274818,L, + 69279237000,0.000023100392355,L, + 71203660250,0.000022862917831,L, + 73128083500,0.000022623047698,L, + 75052506750,0.000022381007511,L, + 76976930000,0.000022137073756,L, + 78901353250,0.000021891592041,L, + 80825776500,0.000021645026209,L, + 82750199750,0.000021398027457,L, + 84674623000,0.000021151583496,L, + 86599046250,0.000020907342332,L, + 88523469500,0.000020668530851,L, + 90447892750,0.000020443329049,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232919067144394,L, + 98145585750,0.245930269360542,L, + 100070009000,0.255280971527100,L, + 101994432250,0.262665182352066,L, + 103918855500,0.268771350383759,L, + 105843278750,0.273961126804352,L, + 107767702000,0.278452187776566,L, + 109692125250,0.282387882471085,L, + 111616548500,0.285868585109711,L, + 113540971750,0.288967907428741,L, + 115465395000,0.291741728782654,L, + 117389818250,0.294234007596970,L, + 119314241500,0.296479731798172,L, + 121238664750,0.298507750034332,L, + 123163088000,0.300342172384262,L, + 125087511250,0.302003324031830,L, + 127011934500,0.303509086370468,L, + 128936357750,0.304874986410141,L, + 130860781000,0.306115359067917,L, + 132785204250,0.307243078947067,L, + 134709627500,0.308270871639252,L, + 136634050750,0.309211075305939,L, + 138558474000,0.310076832771301,L, + 140482897250,0.310882627964020,L, + 142407320500,0.311645925045013,L, + 144331743750,0.312390059232712,L, + 146256167000,0.313149750232697,L, + 148180590250,0.313986390829086,L, + 150105013500,0.315037369728088,L, + 152029436750,0.316851437091827,L, + 153953860000,0.316844671964645,L, + 155878283250,0.317553400993347,L, + 157802706500,0.317994207143784,L, + 159727129750,0.318131387233734,L, + 161651553000,0.317930340766907,L, + 163575976250,0.317365050315857,L, + 165500399500,0.316432714462280,L, + 167424822750,0.315173506736755,L, + 169349246000,0.313687086105347,L, + 171273669250,0.312128514051437,L, + 173198092500,0.310671806335449,L, + 175122515750,0.309460818767548,L, + 177046939000,0.308580935001373,L, + 178971362250,0.308061331510544,L, + 180895785500,0.307893633842468,L, + 182820208750,0.314245015382767,L, + 184744632000,0.333418756723404,L, + 186669055250,0.365034878253937,L, + 188593478500,0.407707035541534,L, + 190517901750,0.458806842565536,L, + 192442325000,0.514501214027405,L, + 194366748250,0.570195496082306,L, + 196291171500,0.621295332908630,L, + 198215594750,0.663967490196228,L, + 200140018000,0.695583522319794,L, + 202064441250,0.714757382869720,L, + 203988864500,0.721108734607697,L, + 205913287750,0.720690786838531,L, + 207837711000,0.719448924064636,L, + 209762134250,0.717400908470154,L, + 211686557500,0.714565634727478,L, + 213610980750,0.710962831974030,L, + 215535404000,0.706613302230835,L, + 217459827250,0.701538145542145,L, + 219384250500,0.695759415626526,L, + 221308673750,0.689300000667572,L, + 223233097000,0.682183504104614,L, + 225157520250,0.674434065818787,L, + 227081943500,0.666076540946960,L, + 229006366750,0.657136380672455,L, + 230930790000,0.647639513015747,L, + 232855213250,0.637612462043762,L, + 234779636500,0.627082228660583,L, + 236704059750,0.616076052188873,L, + 238628483000,0.604621708393097,L, + 240552906250,0.592747390270233,L, + 242477329500,0.580481231212616,L, + 244401752750,0.567851722240448,L, + 246326176000,0.554887652397156,L, + 248250599250,0.541617751121521,L, + 250175022500,0.528070926666260,L, + 252099445750,0.514275848865509,L, + 254023869000,0.500261485576630,L, + 255948292250,0.486056447029114,L, + 257872715500,0.471689224243164,L, + 259797138750,0.457188218832016,L, + 261721562000,0.442581444978714,L, + 263645985250,0.427896797657013,L, + 265570408500,0.413161724805832,L, + 267494831750,0.398403316736221,L, + 269419255000,0.383648246526718,L, + 271343678250,0.368922650814056,L, + 273268101500,0.354252517223358,L, + 275192524750,0.339662730693817,L, + 277116948000,0.325178265571594,L, + 279041371250,0.310823142528534,L, + 280965794500,0.296620965003967,L, + 282890217750,0.282594501972198,L, + 284814641000,0.268766105175018,L, + 286739064250,0.255157381296158,L, + 288663487500,0.241789326071739,L, + 290587910750,0.228682175278664,L, + 292512334000,0.215855568647385,L, + 294436757250,0.203328356146812,L, + 296361180500,0.191118702292442,L, + 298285603750,0.179244309663773,L, + 300210027000,0.167721807956696,L, + 302134450250,0.156567454338074,L, + 304058873500,0.145796656608582,L, + 305983296750,0.135423958301544,L, + 307907720000,0.125463604927063,L, + 309832143250,0.115928888320923,L, + 311756566500,0.106832437217236,L, + 313680989750,0.098186552524567,L, + 315605413000,0.090002477169037,L, + 317529836250,0.082290887832642,L, + 319454259500,0.075062155723572,L, + 321378682750,0.068325698375702,L, + 323303106000,0.062090393155813,L, + 325227529250,0.056364953517914,L, + 327151952500,0.051156759262085,L, + 329076375750,0.046473443508148,L, + 331000799000,0.042321562767029,L, + 332925222250,0.038707256317139,L, + 334849645500,0.035636544227600,L, + 336774068750,0.033114552497864,L, + 338698492000,0.031146049499512,L, + 340622915250,0.029735086485744,L, + 342547338500,0.028886198997498,L, + 344471761750,0.028602691367269,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000042378902435 + KeyVer: 4005 + KeyCount: 180 + Key: + 0,0.000042378902435,L, + 1924423250,0.000042358497012,L, + 3848846500,0.000042299408960,L, + 5773269750,0.000042204526835,L, + 7697693000,0.000042076404497,L, + 9622116250,0.000041917282942,L, + 11546539500,0.000041729177610,L, + 13470962750,0.000041513874748,L, + 15395386000,0.000041272989620,L, + 17319809250,0.000041007988330,L, + 19244232500,0.000040720187826,L, + 21168655750,0.000040410785004,L, + 23093079000,0.000040080889448,L, + 25017502250,0.000039731516154,L, + 26941925500,0.000039363574615,L, + 28866348750,0.000038977941585,L, + 30790772000,0.000038575395592,L, + 32715195250,0.000038156671508,L, + 34639618500,0.000037722460547,L, + 36564041750,0.000037273399357,L, + 38488465000,0.000036810080928,L, + 40412888250,0.000036333076423,L, + 42337311500,0.000035842902435,L, + 44261734750,0.000035340068280,L, + 46186158000,0.000034825028706,L, + 48110581250,0.000034298253013,L, + 50035004500,0.000033760159567,L, + 51959427750,0.000033211159462,L, + 53883851000,0.000032651645597,L, + 55808274250,0.000032082021789,L, + 57732697500,0.000031502640923,L, + 59657120750,0.000030913884984,L, + 61581544000,0.000030316130506,L, + 63505967250,0.000029709746741,L, + 65430390500,0.000029095113860,L, + 67354813750,0.000028472633858,L, + 69279237000,0.000027842741474,L, + 71203660250,0.000027205893275,L, + 73128083500,0.000026562620405,L, + 75052506750,0.000025913532227,L, + 76976930000,0.000025259367249,L, + 78901353250,0.000024601054974,L, + 80825776500,0.000023939832317,L, + 82750199750,0.000023277447326,L, + 84674623000,0.000022616546630,L, + 86599046250,0.000021961561288,L, + 88523469500,0.000021321133318,L, + 90447892750,0.000020717199732,L, + 92372316000,0.000020280480385,L, + 94296739250,0.206803932785988,L, + 96221162500,0.232568249106407,L, + 98145585750,0.245435804128647,L, + 100070009000,0.254741251468658,L, + 101994432250,0.262134104967117,L, + 103918855500,0.268283247947693,L, + 105843278750,0.273539364337921,L, + 107767702000,0.278113365173340,L, + 109692125250,0.282144129276276,L, + 111616548500,0.285728573799133,L, + 113540971750,0.288937807083130,L, + 115465395000,0.291825562715530,L, + 117389818250,0.294433921575546,L, + 119314241500,0.296796500682831,L, + 121238664750,0.298940479755402,L, + 123163088000,0.300888657569885,L, + 125087511250,0.302660077810287,L, + 127011934500,0.304271012544632,L, + 128936357750,0.305735558271408,L, + 130860781000,0.307066231966019,L, + 132785204250,0.308274149894714,L, + 134709627500,0.309369504451752,L, + 136634050750,0.310361951589584,L, + 138558474000,0.311260938644409,L, + 140482897250,0.312076270580292,L, + 142407320500,0.312819033861160,L, + 144331743750,0.313503116369247,L, + 146256167000,0.314148783683777,L, + 148180590250,0.314791977405548,L, + 150105013500,0.315520226955414,L, + 152029436750,0.316851437091827,L, + 153953860000,0.319212585687637,L, + 155878283250,0.319125592708588,L, + 157802706500,0.318968743085861,L, + 159727129750,0.318790256977081,L, + 161651553000,0.318605095148087,L, + 163575976250,0.318420708179474,L, + 165500399500,0.318241685628891,L, + 167424822750,0.318071484565735,L, + 169349246000,0.317913055419922,L, + 171273669250,0.317769199609756,L, + 173198092500,0.317642778158188,L, + 175122515750,0.317536920309067,L, + 177046939000,0.317455232143402,L, + 178971362250,0.317402094602585,L, + 180895785500,0.317382931709290,L, + 182820208750,0.324425876140594,L, + 184744632000,0.345687240362167,L, + 186669055250,0.380745738744736,L, + 188593478500,0.428064048290253,L, + 190517901750,0.484727561473846,L, + 192442325000,0.546485900878906,L, + 194366748250,0.608244359493256,L, + 196291171500,0.664907813072205,L, + 198215594750,0.712226152420044,L, + 200140018000,0.747284650802612,L, + 202064441250,0.768545985221863,L, + 203988864500,0.775588989257812,L, + 205913287750,0.775146543979645,L, + 207837711000,0.773831605911255,L, + 209762134250,0.771663188934326,L, + 211686557500,0.768661379814148,L, + 213610980750,0.764847040176392,L, + 215535404000,0.760241806507111,L, + 217459827250,0.754868328571320,L, + 219384250500,0.748750090599060,L, + 221308673750,0.741911172866821,L, + 223233097000,0.734376430511475,L, + 225157520250,0.726171672344208,L, + 227081943500,0.717323005199432,L, + 229006366750,0.707857489585876,L, + 230930790000,0.697802543640137,L, + 232855213250,0.687186300754547,L, + 234779636500,0.676037251949310,L, + 236704059750,0.664384245872498,L, + 238628483000,0.652257084846497,L, + 240552906250,0.639684796333313,L, + 242477329500,0.626697897911072,L, + 244401752750,0.613326311111450,L, + 246326176000,0.599600434303284,L, + 248250599250,0.585550725460052,L, + 250175022500,0.571207880973816,L, + 252099445750,0.556602180004120,L, + 254023869000,0.541764259338379,L, + 255948292250,0.526724457740784,L, + 257872715500,0.511513054370880,L, + 259797138750,0.496159911155701,L, + 261721562000,0.480694860219955,L, + 263645985250,0.465147316455841,L, + 265570408500,0.449546366930008,L, + 267494831750,0.433920711278915,L, + 269419255000,0.418298542499542,L, + 271343678250,0.402707636356354,L, + 273268101500,0.387175410985947,L, + 275192524750,0.371728330850601,L, + 277116948000,0.356392771005630,L, + 279041371250,0.341194123029709,L, + 280965794500,0.326157361268997,L, + 282890217750,0.311306715011597,L, + 284814641000,0.296665698289871,L, + 286739064250,0.282257318496704,L, + 288663487500,0.268103718757629,L, + 290587910750,0.254226356744766,L, + 292512334000,0.240646004676819,L, + 294436757250,0.227382719516754,L, + 296361180500,0.214455604553223,L, + 298285603750,0.201883494853973,L, + 300210027000,0.189683914184570,L, + 302134450250,0.177874028682709,L, + 304058873500,0.166470348834991,L, + 305983296750,0.155488073825836,L, + 307907720000,0.144942402839661,L, + 309832143250,0.134847328066826,L, + 311756566500,0.125216528773308,L, + 313680989750,0.116062462329865,L, + 315605413000,0.107397496700287,L, + 317529836250,0.099232852458954,L, + 319454259500,0.091579385101795,L, + 321378682750,0.084446907043457,L, + 323303106000,0.077845335006714,L, + 325227529250,0.071783304214478,L, + 327151952500,0.066269040107727,L, + 329076375750,0.061310533434153,L, + 331000799000,0.056914687156677,L, + 332925222250,0.053088188171387,L, + 334849645500,0.049837112426758,L, + 336774068750,0.047166705131531,L, + 338698492000,0.045082446187735,L, + 340622915250,0.043588876724243,L, + 342547338500,0.042690157890320,L, + 344471761750,0.042389750480652,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_017" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.063678026199341 + KeyVer: 4005 + KeyCount: 45 + Key: + 0,-0.063678026199341,L, + 209762134250,-0.063678026199341,L, + 213610980750,-0.063371896743774,L, + 215535404000,-0.063218593597412,L, + 223233097000,-0.062606334686279,L, + 225157520250,-0.062453031539917,L, + 232855213250,-0.061840772628784,L, + 234779636500,-0.061687469482422,L, + 240552906250,-0.061228275299072,L, + 242477329500,-0.061074972152710,L, + 250175022500,-0.060462713241577,L, + 252099445750,-0.060309410095215,L, + 257872715500,-0.059850215911865,L, + 259797138750,-0.059696912765503,L, + 261721562000,-0.059544086456299,L, + 263645985250,-0.059390783309937,L, + 267494831750,-0.059084653854370,L, + 269419255000,-0.058931350708008,L, + 271343678250,-0.058778524398804,L, + 273268101500,-0.058625221252441,L, + 275192524750,-0.058472156524658,L, + 277116948000,-0.058318853378296,L, + 279041371250,-0.058166027069092,L, + 280965794500,-0.058012723922729,L, + 282890217750,-0.057859659194946,L, + 284814641000,-0.058243513107300,L, + 290587910750,-0.058769226074219,L, + 292512334000,-0.058944702148438,L, + 296361180500,-0.059295177459717,L, + 298285603750,-0.059470653533936,L, + 300210027000,-0.059645891189575,L, + 302134450250,-0.059821367263794,L, + 309832143250,-0.060522317886353,L, + 311756566500,-0.060697793960571,L, + 315605413000,-0.061048269271851,L, + 317529836250,-0.061223745346069,L, + 319454259500,-0.061398983001709,L, + 321378682750,-0.061574459075928,L, + 327151952500,-0.062100172042847,L, + 329076375750,-0.062275648117065,L, + 334849645500,-0.062801361083984,L, + 336774068750,-0.062976837158203,L, + 338698492000,-0.063152074813843,L, + 340622915250,-0.063327550888062,L, + 344471761750,-0.063678026199341,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.087339401245117 + KeyVer: 4005 + KeyCount: 46 + Key: + 0,-0.087339401245117,L, + 207837711000,-0.087339401245117,L, + 209762134250,-0.167690038681030,L, + 211686557500,-0.165458202362061,L, + 213610980750,-0.163226127624512,L, + 217459827250,-0.158762454986572,L, + 219384250500,-0.156530380249023,L, + 221308673750,-0.154298543930054,L, + 223233097000,-0.152066469192505,L, + 225157520250,-0.149834632873535,L, + 227081943500,-0.147602558135986,L, + 229006366750,-0.145370721817017,L, + 230930790000,-0.143138647079468,L, + 234779636500,-0.138674974441528,L, + 236704059750,-0.136442899703979,L, + 238628483000,-0.134211063385010,L, + 240552906250,-0.131978988647461,L, + 242477329500,-0.129747152328491,L, + 244401752750,-0.127515077590942,L, + 246326176000,-0.125283241271973,L, + 248250599250,-0.123050928115845,L, + 250175022500,-0.120819091796875,L, + 252099445750,-0.118587017059326,L, + 254023869000,-0.116355180740356,L, + 255948292250,-0.114123106002808,L, + 257872715500,-0.111891269683838,L, + 259797138750,-0.109659194946289,L, + 261721562000,-0.107427358627319,L, + 263645985250,-0.105195283889771,L, + 267494831750,-0.100731611251831,L, + 269419255000,-0.098499536514282,L, + 271343678250,-0.096267700195312,L, + 273268101500,-0.094035625457764,L, + 275192524750,-0.091803789138794,L, + 277116948000,-0.089571714401245,L, + 279041371250,-0.087339878082275,L, + 280965794500,-0.085107803344727,L, + 282890217750,-0.082875967025757,L, + 284814641000,-0.082875251770020,L, + 300210027000,-0.084027290344238,L, + 302134450250,-0.084171533584595,L, + 311756566500,-0.084891557693481,L, + 313680989750,-0.085035085678101,L, + 317529836250,-0.085323095321655,L, + 319454259500,-0.085467338562012,L, + 344471761750,-0.087339401245117,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.415138363838196 + KeyVer: 4005 + KeyCount: 126 + Key: + 0,0.415138363838196,L, + 1924423250,0.421364545822144,L, + 3848846500,0.427590847015381,L, + 5773269750,0.433816909790039,L, + 7697693000,0.440043091773987,L, + 11546539500,0.452495217323303,L, + 13470962750,0.458721399307251,L, + 15395386000,0.464947462081909,L, + 17319809250,0.471173644065857,L, + 19244232500,0.477399945259094,L, + 21168655750,0.483626008033752,L, + 23093079000,0.489852190017700,L, + 25017502250,0.496078252792358,L, + 26941925500,0.502304434776306,L, + 30790772000,0.514756560325623,L, + 32715195250,0.520982742309570,L, + 34639618500,0.527208805084229,L, + 36564041750,0.533434987068176,L, + 38488465000,0.539661049842834,L, + 40412888250,0.545887231826782,L, + 42337311500,0.552113294601440,L, + 44261734750,0.558339595794678,L, + 46186158000,0.564565777778625,L, + 50035004500,0.577017903327942,L, + 51959427750,0.583244085311890,L, + 53883851000,0.589470148086548,L, + 55808274250,0.595696330070496,L, + 57732697500,0.601922392845154,L, + 59657120750,0.608148694038391,L, + 61581544000,0.614374876022339,L, + 63505967250,0.620600938796997,L, + 65430390500,0.626827120780945,L, + 69279237000,0.639279246330261,L, + 71203660250,0.645505428314209,L, + 73128083500,0.651731491088867,L, + 75052506750,0.657957673072815,L, + 76976930000,0.664183735847473,L, + 78901353250,0.670409917831421,L, + 80825776500,0.676635980606079,L, + 82750199750,0.682862281799316,L, + 84674623000,0.689088463783264,L, + 88523469500,0.701540589332581,L, + 90447892750,0.707766771316528,L, + 92372316000,0.713992834091187,L, + 94296739250,0.720219016075134,L, + 96221162500,0.726445078849792,L, + 100070009000,0.738897442817688,L, + 101994432250,0.745123744010925,L, + 103918855500,0.751349568367004,L, + 105843278750,0.757575869560242,L, + 109692125250,0.770027995109558,L, + 111616548500,0.776254296302795,L, + 117389818250,0.794932484626770,L, + 119314241500,0.801158785820007,L, + 127011934500,0.826063036918640,L, + 130860781000,0.838515639305115,L, + 136634050750,0.857193827629089,L, + 138558474000,0.863420128822327,L, + 140482897250,0.869646191596985,L, + 142407320500,0.875872492790222,L, + 148180590250,0.894550681114197,L, + 150105013500,0.900776982307434,L, + 155878283250,0.919455170631409,L, + 157802706500,0.925681471824646,L, + 165500399500,0.950585722923279,L, + 169349246000,0.963038325309753,L, + 175122515750,0.981716513633728,L, + 177046939000,0.987942814826965,L, + 178971362250,0.994168877601624,L, + 180895785500,1.000395178794861,L, + 186669055250,1.019073367118835,L, + 188593478500,1.025299668312073,L, + 196291171500,1.050203919410706,L, + 198215594750,1.056430220603943,L, + 200140018000,1.062656283378601,L, + 202064441250,1.068882584571838,L, + 203988864500,1.075108408927917,L, + 205913287750,1.081334710121155,L, + 207837711000,1.087560772895813,L, + 209762134250,-0.038915753364563,L, + 211686557500,-0.038899064064026,L, + 215535404000,-0.038865923881531,L, + 217459827250,-0.038849234580994,L, + 223233097000,-0.038799524307251,L, + 225157520250,-0.038782835006714,L, + 229006366750,-0.038749694824219,L, + 230930790000,-0.038733005523682,L, + 234779636500,-0.038699865341187,L, + 236704059750,-0.038683176040649,L, + 242477329500,-0.038633465766907,L, + 244401752750,-0.038616776466370,L, + 248250599250,-0.038583636283875,L, + 250175022500,-0.038566946983337,L, + 255948292250,-0.038517236709595,L, + 257872715500,-0.038500547409058,L, + 261721562000,-0.038467407226562,L, + 263645985250,-0.038450717926025,L, + 265570408500,-0.038434267044067,L, + 269419255000,-0.038400888442993,L, + 275192524750,-0.038351178169250,L, + 277116948000,-0.038334488868713,L, + 280965794500,-0.038301348686218,L, + 282890217750,-0.038284659385681,L, + 284814641000,0.028068184852600,L, + 290587910750,0.065526485443115,L, + 294436757250,0.090498924255371,L, + 296361180500,0.102984905242920,L, + 300210027000,0.127957344055176,L, + 305983296750,0.165415644645691,L, + 307907720000,0.177901864051819,L, + 311756566500,0.202874064445496,L, + 313680989750,0.215360283851624,L, + 317529836250,0.240332484245300,L, + 319454259500,0.252818703651428,L, + 321378682750,0.265304803848267,L, + 323303106000,0.277791023254395,L, + 325227529250,0.290277004241943,L, + 327151952500,0.302763223648071,L, + 329076375750,0.315249323844910,L, + 331000799000,0.327735543251038,L, + 332925222250,0.340221643447876,L, + 334849645500,0.352707862854004,L, + 336774068750,0.365193843841553,L, + 340622915250,0.390166282653809,L, + 342547338500,0.402652382850647,L, + 344471761750,0.415138363838196,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 30.670462448994193 + KeyVer: 4005 + KeyCount: 152 + Key: + 0,30.670462448994193,L, + 1924423250,29.595230164190237,L, + 3848846500,28.520004709575449,L, + 5773269750,27.444772424771493,L, + 7697693000,26.369543555062119,L, + 9622116250,25.294318100447331,L, + 11546539500,24.219082400548789,L, + 13470962750,23.143856945934004,L, + 15395386000,22.068629783771922,L, + 17319809250,20.993399206515257,L, + 19244232500,19.918170336805886,L, + 25017502250,16.692488850319645,L, + 26941925500,15.617256565515689,L, + 30790772000,13.466802241191528,L, + 32715195250,12.391573371482156,L, + 34639618500,11.316345355546430,L, + 36564041750,10.241116485837058,L, + 38488465000,9.165886762354040,L, + 40412888250,8.090659600191959,L, + 42337311500,7.015429022935295,L, + 44261734750,5.940200580112745,L, + 46186158000,4.864972991063842,L, + 48110581250,3.789744121354470,L, + 50035004500,2.714515891975332,L, + 51959427750,1.639286275214019,L, + 55808274250,-0.511171357483020,L, + 57732697500,-1.586400440635804,L, + 59657120750,-2.661629096901764,L, + 61581544000,-3.736857112837491,L, + 63505967250,-4.812082567452278,L, + 65430390500,-5.887311864048474,L, + 67354813750,-6.962543721965608,L, + 69279237000,-8.037770884127688,L, + 71203660250,-9.112996338742475,L, + 73128083500,-10.188231184867371,L, + 75052506750,-11.263456639482159,L, + 76976930000,-12.338683801644239,L, + 78901353250,-13.413915232674549,L, + 80825776500,-14.489141541062983,L, + 82750199750,-15.564375533414234,L, + 84674623000,-16.639599280481729,L, + 86599046250,-17.714829857738394,L, + 88523469500,-18.790057019900473,L, + 90447892750,-19.865291012251724,L, + 92372316000,-20.940514759319218,L, + 96221162500,-23.090969083643376,L, + 98145585750,-24.166204783541922,L, + 100070009000,-25.241428530609415,L, + 101994432250,-26.316659107866080,L, + 107767702000,-29.542340594352318,L, + 109692125250,-30.617576294250863,L, + 113540971750,-32.768034033669608,L, + 115465395000,-33.843259488284396,L, + 125087511250,-39.219403836831255,L, + 127011934500,-40.294625876351461,L, + 128936357750,-41.369864991344585,L, + 130860781000,-42.445083615770201,L, + 132785204250,-43.520309070384990,L, + 134709627500,-44.595544770283531,L, + 136634050750,-45.670766809803737,L, + 138558474000,-46.745995679513108,L, + 140482897250,-47.821234794506232,L, + 142407320500,-48.896456834026438,L, + 144331743750,-49.971682288641226,L, + 146256167000,-51.046921403634350,L, + 148180590250,-52.122150273343728,L, + 150105013500,-53.197372312863926,L, + 153953860000,-55.347830052282674,L, + 155878283250,-56.423055506897462,L, + 157802706500,-57.498287791701415,L, + 159727129750,-58.573516661410785,L, + 161651553000,-59.648738700930991,L, + 163575976250,-60.723974400829533,L, + 165500399500,-61.799203270538904,L, + 167424822750,-62.874425310059110,L, + 169349246000,-63.949661009957651,L, + 171273669250,-65.024889879667029,L, + 173198092500,-66.100111919187228,L, + 175122515750,-67.175347619085770,L, + 177046939000,-68.250576488795147,L, + 178971362250,-69.325798528315346,L, + 180895785500,-70.401034228213888,L, + 182820208750,-71.476256267734087,L, + 184744632000,-72.551485137443464,L, + 186669055250,-73.626720837342006,L, + 188593478500,-74.701942876862205,L, + 192442325000,-76.852400616280946,L, + 194366748250,-77.927629485990323,L, + 196291171500,-79.002865185888865,L, + 198215594750,-80.078087225409064,L, + 200140018000,-81.153316095118441,L, + 202064441250,-82.228551795016983,L, + 203988864500,-83.303773834537182,L, + 205913287750,-84.379009534435724,L, + 207837711000,-85.454231573955923,L, + 209762134250,-85.454231573955923,L, + 213610980750,-79.331021624561657,L, + 215535404000,-76.269409819675346,L, + 223233097000,-64.022989920886801,L, + 225157520250,-60.961378116000496,L, + 227081943500,-57.899773141303356,L, + 229006366750,-54.838161336417052,L, + 230930790000,-51.776563191909084,L, + 232855213250,-48.714951387022779,L, + 234779636500,-45.653342997231057,L, + 236704059750,-42.591741437628507,L, + 238628483000,-39.530136462931367,L, + 240552906250,-36.468528073139645,L, + 244401752750,-30.345318123745376,L, + 246326176000,-27.283711441500945,L, + 248250599250,-24.222099636614640,L, + 250175022500,-21.160489539275623,L, + 252099445750,-18.098894809862244,L, + 254023869000,-15.037281297428644,L, + 255948292250,-11.975678030278800,L, + 257872715500,-8.914072201808017,L, + 259797138750,-5.852461677582180,L, + 261721562000,-2.790856062554809,L, + 263645985250,0.270741841829320,L, + 265570408500,3.332353246509230,L, + 267494831750,6.393959074980013,L, + 269419255000,9.455569599205850,L, + 271343678250,12.517174573902986,L, + 273268101500,15.578780402373770,L, + 275192524750,18.640387084618197,L, + 277116948000,21.701997181957214,L, + 279041371250,24.763603864201642,L, + 280965794500,27.825205423804192,L, + 282890217750,30.886805275859452,L, + 284814641000,30.872540425777903,L, + 286739064250,30.866021010215135,L, + 288663487500,30.859498179557782,L, + 290587910750,30.852985594184183,L, + 298285603750,30.826907931933111,L, + 300210027000,30.820391931464929,L, + 302134450250,30.813872515902162,L, + 304058873500,30.807356515433977,L, + 305983296750,30.800833684776627,L, + 307907720000,30.794314269213857,L, + 309832143250,30.787805098934847,L, + 313680989750,30.774759437620141,L, + 315605413000,30.768240022057373,L, + 317529836250,30.761717191400020,L, + 319454259500,30.755197775837249,L, + 321378682750,30.748685190463654,L, + 323303106000,30.742162359806301,L, + 325227529250,30.735649774432702,L, + 327151952500,30.729126943775348,L, + 334849645500,30.703049281524279,L, + 338698492000,30.690017280587913,L, + 342547338500,30.676978449462379,L, + 344471761750,30.670462448994193,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 94.284634812205056 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,94.284634812205056,L, + 1924423250,95.218984200093942,L, + 5773269750,97.087682975871729,L, + 7697693000,98.022025533571451,L, + 9622116250,98.956374921460352,L, + 13470962750,100.825073697238125,L, + 15395386000,101.759423085127025,L, + 17319809250,102.693765642826747,L, + 19244232500,103.628121860904798,L, + 21168655750,104.562464418604520,L, + 23093079000,105.496813806493421,L, + 25017502250,106.431163194382307,L, + 28866348750,108.299861970160094,L, + 30790772000,109.234204527859816,L, + 42337311500,114.840300855193163,L, + 44261734750,115.774643412892885,L, + 46186158000,116.708999630970951,L, + 50035004500,118.577684746370394,L, + 51959427750,119.512040964448460,L, + 53883851000,120.446383522148182,L, + 55808274250,121.380739740226232,L, + 59657120750,123.249424855625676,L, + 61581544000,124.183781073703742,L, + 63505967250,125.118123631403463,L, + 65430390500,126.052479849481529,L, + 69279237000,127.921164964880973,L, + 73128083500,129.789877401037103,L, + 76976930000,131.658562516436547,L, + 78901353250,132.592918734514598,L, + 80825776500,133.527261292214320,L, + 82750199750,134.461617510292371,L, + 86599046250,136.330302625691814,L, + 90447892750,138.199015061847945,L, + 94296739250,140.067700177247389,L, + 96221162500,141.002056395325468,L, + 98145585750,141.936398953025190,L, + 100070009000,142.870755171103241,L, + 103918855500,144.739440286502685,L, + 105843278750,145.673796504580736,L, + 107767702000,146.608139062280458,L, + 109692125250,147.542495280358537,L, + 113540971750,149.411180395757981,L, + 115465395000,150.345536613836032,L, + 117389818250,151.279879171535754,L, + 119314241500,152.214235389613805,L, + 123163088000,154.082920505013249,L, + 125087511250,155.017276723091328,L, + 127011934500,155.951619280791050,L, + 128936357750,156.885975498869101,L, + 132785204250,158.754660614268545,L, + 136634050750,160.623373050424675,L, + 140482897250,162.492058165824119,L, + 142407320500,163.426414383902170,L, + 144331743750,164.360756941601892,L, + 146256167000,165.295113159679971,L, + 150105013500,167.163798275079415,L, + 153953860000,169.032510711235517,L, + 159727129750,171.835538384334683,L, + 163575976250,173.704250820490813,L, + 167424822750,175.572935935890257,L, + 169349246000,176.507292153968336,L, + 171273669250,177.441634711668058,L, + 173198092500,178.375990929746109,L, + 175122515750,179.310333487445831,L, + 177046939000,180.244689705523882,L, + 178971362250,181.179032263223604,L, + 180895785500,182.113402141680012,L, + 186669055250,184.916429814779178,L, + 188593478500,185.850786032857229,L, + 190517901750,186.785128590556951,L, + 192442325000,187.719484808635031,L, + 196291171500,189.588169924034474,L, + 198215594750,190.522526142112525,L, + 200140018000,191.456882360190605,L, + 205913287750,194.259910033289771,L, + 207837711000,195.194266251367821,L, + 209762134250,195.194266251367821,L, + 211686557500,192.283458193166013,L, + 213610980750,189.372663795342532,L, + 219384250500,180.640239620737105,L, + 221308673750,177.729417902156939,L, + 223233097000,174.818623504333488,L, + 227081943500,168.997007387929841,L, + 229006366750,166.086212990106389,L, + 236704059750,154.442980757299125,L, + 238628483000,151.532186359475673,L, + 240552906250,148.621378301273865,L, + 242477329500,145.710583903450384,L, + 254023869000,128.245735554239502,L, + 255948292250,125.334941156416036,L, + 257872715500,122.424133098214227,L, + 259797138750,119.513338700390761,L, + 261721562000,116.602530642188938,L, + 263645985250,113.691722583987129,L, + 265570408500,110.780921355974485,L, + 267494831750,107.870113297772676,L, + 269419255000,104.959312069760031,L, + 273268101500,99.137695953356413,L, + 275192524750,96.226901555532947,L, + 277116948000,93.316093497331124,L, + 279041371250,90.405292269318494,L, + 280965794500,87.494484211116671,L, + 282890217750,84.583676152914862,L, + 284814641000,85.223480463036552,L, + 286739064250,85.515778408566831,L, + 288663487500,85.808069523907932,L, + 290587910750,86.100367469438211,L, + 292512334000,86.392658584779312,L, + 296361180500,86.977254475839857,L, + 298285603750,87.269545591180972,L, + 302134450250,87.854141482241516,L, + 304058873500,88.146432597582631,L, + 305983296750,88.438730543112896,L, + 307907720000,88.731021658454011,L, + 311756566500,89.315617549514556,L, + 313680989750,89.607908664855671,L, + 315605413000,89.900206610385936,L, + 317529836250,90.192497725727051,L, + 319454259500,90.484795671257316,L, + 321378682750,90.777093616787596,L, + 323303106000,91.069384732128697,L, + 327151952500,91.653980623189256,L, + 329076375750,91.946271738530356,L, + 331000799000,92.238569684060636,L, + 332925222250,92.530860799401736,L, + 336774068750,93.115456690462295,L, + 338698492000,93.407747805803396,L, + 340622915250,93.700045751333676,L, + 342547338500,93.992336866674776,L, + 344471761750,94.284634812205056,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.489135939047202 + KeyVer: 4005 + KeyCount: 146 + Key: + 0,7.489135939047202,L, + 1924423250,6.812487027221582,L, + 5773269750,5.459191764891282,L, + 7697693000,4.782543706839308,L, + 9622116250,4.105896075674157,L, + 11546539500,3.429248657952419,L, + 13470962750,2.752600386457034,L, + 15395386000,2.075953182178707,L, + 17319809250,1.399305657735262,L, + 19244232500,0.722657866487553,L, + 21168655750,0.046009858461379,L, + 23093079000,-0.630638196255541,L, + 25017502250,-1.307285293812163,L, + 26941925500,-1.983933245142430,L, + 28866348750,-2.660580449420757,L, + 30790772000,-3.337228507472731,L, + 32715195250,-4.013876778968116,L, + 36564041750,-5.367171187524771,L, + 38488465000,-6.043819672463568,L, + 40412888250,-6.720466876741894,L, + 42337311500,-7.397115361680691,L, + 44261734750,-8.073763419732664,L, + 46186158000,-8.750412331558284,L, + 48110581250,-9.427059535836612,L, + 50035004500,-10.103705886341292,L, + 55808274250,-12.133650060497214,L, + 57732697500,-12.810296411001893,L, + 59657120750,-13.486943615280222,L, + 61581544000,-14.163594234653134,L, + 63505967250,-14.840242292705106,L, + 65430390500,-15.516886935662495,L, + 67354813750,-16.193533286167177,L, + 69279237000,-16.870183051766443,L, + 71203660250,-17.546829402271122,L, + 73128083500,-18.223479167870391,L, + 76976930000,-19.576771868879753,L, + 78901353250,-20.253419926931723,L, + 80825776500,-20.930066277436406,L, + 82750199750,-21.606719458130257,L, + 84674623000,-22.283365808634937,L, + 86599046250,-22.960015574234205,L, + 88523469500,-23.636663632286176,L, + 90447892750,-24.313309982790859,L, + 92372316000,-24.989958040842833,L, + 94296739250,-25.666607806442098,L, + 96221162500,-26.343252449399486,L, + 98145585750,-27.019898799904166,L, + 100070009000,-27.696546857956140,L, + 103918855500,-29.049846389154673,L, + 105843278750,-29.726492739659353,L, + 107767702000,-30.403135675069450,L, + 109692125250,-31.079788855763301,L, + 111616548500,-31.756435206267980,L, + 113540971750,-32.433078141678081,L, + 115465395000,-33.109731322371928,L, + 117389818250,-33.786374257782022,L, + 119314241500,-34.463020608286705,L, + 121238664750,-35.139677204075142,L, + 127011934500,-37.169616255589183,L, + 128936357750,-37.846266021188448,L, + 130860781000,-38.522912371693131,L, + 132785204250,-39.199562137292396,L, + 136634050750,-40.552848008112591,L, + 138558474000,-41.229501188806438,L, + 144331743750,-43.259450485604241,L, + 146256167000,-43.936093421014334,L, + 148180590250,-44.612739771519017,L, + 150105013500,-45.289396367307454,L, + 152029436750,-45.966035887622965,L, + 153953860000,-46.642678823033059,L, + 155878283250,-47.319332003726906,L, + 157802706500,-47.995978354231589,L, + 159727129750,-48.672628119830854,L, + 163575976250,-50.025920820840220,L, + 167424822750,-51.379220352038750,L, + 169349246000,-52.055866702543433,L, + 173198092500,-53.409166233741963,L, + 175122515750,-54.085805754057475,L, + 177046939000,-54.762458934751322,L, + 178971362250,-55.439105285256005,L, + 180895785500,-56.115758465949860,L, + 182820208750,-56.792397986265371,L, + 184744632000,-57.469047751864636,L, + 186669055250,-58.145700932558483,L, + 188593478500,-58.822340452873995,L, + 192442325000,-60.175646814261697,L, + 194366748250,-60.852286334577208,L, + 196291171500,-61.528939515271063,L, + 198215594750,-62.205579035586574,L, + 200140018000,-62.882232216280421,L, + 202064441250,-63.558871736595933,L, + 205913287750,-64.912178097983642,L, + 207837711000,-65.588817618299146,L, + 209762134250,-64.256090616880670,L, + 215535404000,-58.594915644080409,L, + 217459827250,-56.707860734908245,L, + 219384250500,-54.820802410641491,L, + 221308673750,-52.933740671280155,L, + 223233097000,-51.046689177202573,L, + 230930790000,-43.498455880135566,L, + 234779636500,-39.724346061791231,L, + 236704059750,-37.837284322429895,L, + 238628483000,-35.950232828352313,L, + 240552906250,-34.063167673896395,L, + 242477329500,-32.176112764724230,L, + 244401752750,-30.289054440457477,L, + 246326176000,-28.401997823738018,L, + 248250599250,-26.514939499471264,L, + 250175022500,-24.627879467657220,L, + 252099445750,-22.740826266032347,L, + 254023869000,-20.853764526671011,L, + 257872715500,-17.079651293232093,L, + 259797138750,-15.192589553870755,L, + 261721562000,-13.305535498472235,L, + 263645985250,-11.418478027979130,L, + 265570408500,-9.531419703712379,L, + 267494831750,-7.644364794540213,L, + 269419255000,-5.757302628292052,L, + 271343678250,-3.870245157798947,L, + 275192524750,-0.096128082378621,L, + 277116948000,1.790923411698960,L, + 279041371250,3.677981735965712,L, + 280965794500,5.565040487119286,L, + 282890217750,7.452098384499215,L, + 284814641000,7.454200375216283,L, + 288663487500,7.456456045189676,L, + 290587910750,7.457583026402727,L, + 292512334000,7.458709153842131,L, + 294436757250,7.459836988828828,L, + 298285603750,7.462089243707636,L, + 304058873500,7.465470187346788,L, + 305983296750,7.466596314786192,L, + 307907720000,7.467724149772889,L, + 309832143250,7.468851130985939,L, + 311756566500,7.469977258425343,L, + 319454259500,7.474485183277546,L, + 321378682750,7.475613018264243,L, + 325227529250,7.477865273143051,L, + 327151952500,7.478993961903393,L, + 331000799000,7.481246216782202,L, + 332925222250,7.482374051768899,L, + 336774068750,7.484626306647708,L, + 338698492000,7.485753287860758,L, + 340622915250,7.486881122847454,L, + 342547338500,7.488008104060505,L, + 344471761750,7.489135939047202,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 136 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672845840454,L, + 13470962750,0.715156376361847,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507256984711,L, + 32715195250,0.659990608692169,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 38488465000,0.643440902233124,L, + 40412888250,0.637924253940582,L, + 42337311500,0.632407724857330,L, + 44261734750,0.626891255378723,L, + 46186158000,0.621374547481537,L, + 48110581250,0.615858078002930,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 84674623000,0.511043310165405,L, + 86599046250,0.505526721477509,L, + 88523469500,0.500010073184967,L, + 90447892750,0.494493573904037,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910690069199,L, + 101994432250,0.461394160985947,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261630296707,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195305347443,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162217378616,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513098001480,L, + 148180590250,0.328996568918228,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731462836266,L, + 180895785500,0.235214903950691,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181756377220,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148638606071,L, + 190517901750,0.207632049918175,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.015925440937281,L, + 213610980750,0.016052583232522,L, + 215535404000,0.016179721802473,L, + 217459827250,0.016306862235069,L, + 219384250500,0.016434004530311,L, + 221308673750,0.016561141237617,L, + 223233097000,0.016688283532858,L, + 229006366750,0.017069704830647,L, + 230930790000,0.017196843400598,L, + 232855213250,0.017323983833194,L, + 234779636500,0.017451122403145,L, + 236704059750,0.017578264698386,L, + 257872715500,0.018976809456944,L, + 259797138750,0.019103948026896,L, + 261721562000,0.019231090322137,L, + 265570408500,0.019485367462039,L, + 267494831750,0.019612509757280,L, + 269419255000,0.019739650189877,L, + 271343678250,0.019866792485118,L, + 273268101500,0.019993929192424,L, + 275192524750,0.020121069625020,L, + 277116948000,0.020248211920261,L, + 279041371250,0.020375350490212,L, + 282890217750,0.020629635080695,L, + 284814641000,0.207228913903236,L, + 288663487500,0.242489770054817,L, + 290587910750,0.260120213031769,L, + 292512334000,0.277750670909882,L, + 294436757250,0.295381069183350,L, + 298285603750,0.330641984939575,L, + 302134450250,0.365902781486511,L, + 305983296750,0.401163697242737,L, + 307907720000,0.418794035911560,L, + 309832143250,0.436424553394318,L, + 311756566500,0.454054921865463,L, + 313680989750,0.471685349941254,L, + 315605413000,0.489315867424011,L, + 317529836250,0.506946206092834,L, + 319454259500,0.524576663970947,L, + 321378682750,0.542207062244415,L, + 323303106000,0.559837579727173,L, + 325227529250,0.577467978000641,L, + 327151952500,0.595098435878754,L, + 329076375750,0.612728774547577,L, + 331000799000,0.630359292030334,L, + 332925222250,0.647989690303802,L, + 334849645500,0.665620148181915,L, + 336774068750,0.683250546455383,L, + 338698492000,0.700881004333496,L, + 340622915250,0.718511521816254,L, + 342547338500,0.736141920089722,L, + 344471761750,0.753772258758545,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 138 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739140987396,L, + 7697693000,0.731705963611603,L, + 11546539500,0.720672905445099,L, + 13470962750,0.715156257152557,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123139381409,L, + 19244232500,0.698606669902802,L, + 21168655750,0.693090081214905,L, + 23093079000,0.687573432922363,L, + 26941925500,0.676540374755859,L, + 28866348750,0.671023726463318,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407844066620,L, + 44261734750,0.626891136169434,L, + 48110581250,0.615858078002930,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 55808274250,0.593791782855988,L, + 57732697500,0.588275134563446,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 71203660250,0.549659311771393,L, + 75052506750,0.538626134395599,L, + 76976930000,0.533109605312347,L, + 78901353250,0.527592957019806,L, + 82750199750,0.516559779644012,L, + 84674623000,0.511043310165405,L, + 86599046250,0.505526661872864,L, + 88523469500,0.500010132789612,L, + 90447892750,0.494493544101715,L, + 96221162500,0.477943867444992,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910749673843,L, + 101994432250,0.461394101381302,L, + 103918855500,0.455877631902695,L, + 105843278750,0.450361043214798,L, + 107767702000,0.444844514131546,L, + 109692125250,0.439327865839005,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261600494385,L, + 123163088000,0.400711923837662,L, + 125087511250,0.395195335149765,L, + 132785204250,0.373129099607468,L, + 134709627500,0.367612510919571,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996509313583,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830831050873,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 175122515750,0.251764595508575,L, + 177046939000,0.246247991919518,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214874148369,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181771278381,L, + 186669055250,0.218665167689323,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115461230278,L, + 194366748250,0.196598932147026,L, + 196291171500,0.191082358360291,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008628532290,L, + 213610980750,0.016218958422542,L, + 215535404000,0.016429286450148,L, + 217459827250,0.016639616340399,L, + 219384250500,0.016849942505360,L, + 221308673750,0.017060274258256,L, + 225157520250,0.017480930313468,L, + 230930790000,0.018111919984221,L, + 234779636500,0.018532576039433,L, + 236704059750,0.018742907792330,L, + 238628483000,0.018953233957291,L, + 240552906250,0.019163563847542,L, + 244401752750,0.019584219902754,L, + 250175022500,0.020215209573507,L, + 252099445750,0.020425533875823,L, + 254023869000,0.020635865628719,L, + 255948292250,0.020846193656325,L, + 257872715500,0.021056523546576,L, + 259797138750,0.021266851574183,L, + 261721562000,0.021477183327079,L, + 263645985250,0.021687509492040,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108167409897,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528827190399,L, + 273268101500,0.022739153355360,L, + 277116948000,0.023159813135862,L, + 279041371250,0.023370141163468,L, + 280965794500,0.023580471053720,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524737000465,L, + 286739064250,0.256113380193710,L, + 290587910750,0.289290636777878,L, + 292512334000,0.305879235267639,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645120143890,L, + 300210027000,0.372233778238297,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999692916870,L, + 307907720000,0.438588351011276,L, + 309832143250,0.455176919698715,L, + 311756566500,0.471765577793121,L, + 313680989750,0.488354176282883,L, + 315605413000,0.504942834377289,L, + 321378682750,0.554708719253540,L, + 323303106000,0.571297407150269,L, + 325227529250,0.587885975837708,L, + 331000799000,0.637651860713959,L, + 332925222250,0.654240548610687,L, + 334849645500,0.670829117298126,L, + 344471761750,0.753772258758545,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.753772258758545 + KeyVer: 4005 + KeyCount: 134 + Key: + 0,0.753772258758545,L, + 1924423250,0.748255670070648,L, + 3848846500,0.742739200592041,L, + 5773269750,0.737222611904144,L, + 7697693000,0.731705963611603,L, + 9622116250,0.726189434528351,L, + 11546539500,0.720672786235809,L, + 15395386000,0.709639728069305,L, + 17319809250,0.704123079776764,L, + 19244232500,0.698606610298157,L, + 23093079000,0.687573432922363,L, + 25017502250,0.682056903839111,L, + 26941925500,0.676540315151215,L, + 28866348750,0.671023666858673,L, + 30790772000,0.665507197380066,L, + 34639618500,0.654474020004272,L, + 36564041750,0.648957490921021,L, + 40412888250,0.637924313545227,L, + 42337311500,0.632407784461975,L, + 46186158000,0.621374607086182,L, + 50035004500,0.610341548919678,L, + 51959427750,0.604824900627136,L, + 53883851000,0.599308371543884,L, + 57732697500,0.588275194168091,L, + 59657120750,0.582758665084839,L, + 61581544000,0.577242076396942,L, + 63505967250,0.571725547313690,L, + 69279237000,0.555175781250000,L, + 73128083500,0.544142723083496,L, + 78901353250,0.527592957019806,L, + 80825776500,0.522076427936554,L, + 82750199750,0.516559839248657,L, + 86599046250,0.505526781082153,L, + 88523469500,0.500010132789612,L, + 92372316000,0.488977015018463,L, + 94296739250,0.483460426330566,L, + 96221162500,0.477943897247314,L, + 98145585750,0.472427338361740,L, + 100070009000,0.466910719871521,L, + 103918855500,0.455877602100372,L, + 105843278750,0.450361013412476,L, + 113540971750,0.428294777870178,L, + 115465395000,0.422778189182281,L, + 117389818250,0.417261660099030,L, + 119314241500,0.411745041608810,L, + 121238664750,0.406228512525558,L, + 123163088000,0.400711923837662,L, + 127011934500,0.389678806066513,L, + 128936357750,0.384162217378616,L, + 130860781000,0.378645658493042,L, + 134709627500,0.367612481117249,L, + 136634050750,0.362095952033997,L, + 138558474000,0.356579363346100,L, + 140482897250,0.351062834262848,L, + 144331743750,0.340029656887054,L, + 146256167000,0.334513127803802,L, + 148180590250,0.328996539115906,L, + 150105013500,0.323479980230331,L, + 152029436750,0.317963391542435,L, + 155878283250,0.306930273771286,L, + 157802706500,0.301413685083389,L, + 159727129750,0.295897156000137,L, + 161651553000,0.290380567312241,L, + 165500399500,0.279347449541092,L, + 167424822750,0.273830860853195,L, + 169349246000,0.268314301967621,L, + 171273669250,0.262797713279724,L, + 173198092500,0.257281184196472,L, + 177046939000,0.246248006820679,L, + 178971362250,0.240731477737427,L, + 180895785500,0.235214903950691,L, + 182820208750,0.229698359966278,L, + 184744632000,0.224181786179543,L, + 186669055250,0.218665197491646,L, + 188593478500,0.213148653507233,L, + 190517901750,0.207632049918175,L, + 192442325000,0.202115476131439,L, + 194366748250,0.196598947048187,L, + 196291171500,0.191082343459129,L, + 198215594750,0.185565769672394,L, + 200140018000,0.180049180984497,L, + 202064441250,0.174532651901245,L, + 205913287750,0.163499474525452,L, + 207837711000,0.157982945442200,L, + 209762134250,0.015798300504684,L, + 211686557500,0.016008630394936,L, + 215535404000,0.016429286450148,L, + 219384250500,0.016849946230650,L, + 223233097000,0.017270602285862,L, + 225157520250,0.017480932176113,L, + 227081943500,0.017691260203719,L, + 229006366750,0.017901590093970,L, + 230930790000,0.018111918121576,L, + 234779636500,0.018532577902079,L, + 236704059750,0.018742905929685,L, + 238628483000,0.018953232094646,L, + 240552906250,0.019163563847542,L, + 242477329500,0.019373893737793,L, + 246326176000,0.019794549793005,L, + 250175022500,0.020215209573507,L, + 254023869000,0.020635865628719,L, + 257872715500,0.021056525409222,L, + 261721562000,0.021477181464434,L, + 265570408500,0.021897841244936,L, + 267494831750,0.022108169272542,L, + 269419255000,0.022318499162793,L, + 271343678250,0.022528827190399,L, + 275192524750,0.022949486970901,L, + 277116948000,0.023159813135862,L, + 280965794500,0.023580472916365,L, + 282890217750,0.023790799081326,L, + 284814641000,0.239524751901627,L, + 286739064250,0.256113380193710,L, + 288663487500,0.272701978683472,L, + 290587910750,0.289290636777878,L, + 294436757250,0.322467893362045,L, + 296361180500,0.339056491851807,L, + 298285603750,0.355645149946213,L, + 300210027000,0.372233748435974,L, + 302134450250,0.388822406530380,L, + 304058873500,0.405411005020142,L, + 305983296750,0.421999692916870,L, + 309832143250,0.455176949501038,L, + 311756566500,0.471765607595444,L, + 313680989750,0.488354176282883,L, + 315605413000,0.504942834377289,L, + 319454259500,0.538120090961456,L, + 321378682750,0.554708778858185,L, + 323303106000,0.571297347545624,L, + 336774068750,0.687417745590210,L, + 338698492000,0.704006433486938,L, + 340622915250,0.720595061779022,L, + 342547338500,0.737183570861816,L, + 344471761750,0.753772258758545,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_016" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 133 + Key: + 0,0.016793012619019,L, + 3848846500,0.013911485671997,L, + 7697693000,0.011029481887817,L, + 11546539500,0.008147954940796,L, + 13470962750,0.006706953048706,L, + 15395386000,0.005266189575195,L, + 17319809250,0.003825187683105,L, + 21168655750,0.000943660736084,L, + 23093079000,-0.000497341156006,L, + 25017502250,-0.001938104629517,L, + 26941925500,-0.003379106521606,L, + 30790772000,-0.006260633468628,L, + 32715195250,-0.007701635360718,L, + 34639618500,-0.009142398834229,L, + 36564041750,-0.010583400726318,L, + 40412888250,-0.013464927673340,L, + 44261734750,-0.016346931457520,L, + 50035004500,-0.020669221878052,L, + 53883851000,-0.023551225662231,L, + 55808274250,-0.024991750717163,L, + 59657120750,-0.027873754501343,L, + 61581544000,-0.029314517974854,L, + 63505967250,-0.030755519866943,L, + 65430390500,-0.032196044921875,L, + 69279237000,-0.035078048706055,L, + 73128083500,-0.037959575653076,L, + 75052506750,-0.039400577545166,L, + 76976930000,-0.040841341018677,L, + 78901353250,-0.042282342910767,L, + 82750199750,-0.045163869857788,L, + 84674623000,-0.046604871749878,L, + 86599046250,-0.048045635223389,L, + 88523469500,-0.049486637115479,L, + 92372316000,-0.052368164062500,L, + 94296739250,-0.053809165954590,L, + 96221162500,-0.055249929428101,L, + 98145585750,-0.056690931320190,L, + 101994432250,-0.059572458267212,L, + 105843278750,-0.062454462051392,L, + 111616548500,-0.066776752471924,L, + 115465395000,-0.069658756256104,L, + 119314241500,-0.072540283203125,L, + 121238664750,-0.073981285095215,L, + 123163088000,-0.075422048568726,L, + 125087511250,-0.076863050460815,L, + 128936357750,-0.079744577407837,L, + 130860781000,-0.081185579299927,L, + 132785204250,-0.082626342773438,L, + 134709627500,-0.084067344665527,L, + 138558474000,-0.086948871612549,L, + 142407320500,-0.089830875396729,L, + 144331743750,-0.091271400451660,L, + 146256167000,-0.092712402343750,L, + 148180590250,-0.094153165817261,L, + 150105013500,-0.095594167709351,L, + 153953860000,-0.098475694656372,L, + 157802706500,-0.101357698440552,L, + 163575976250,-0.105679988861084,L, + 167424822750,-0.108561992645264,L, + 171273669250,-0.111443519592285,L, + 173198092500,-0.112884521484375,L, + 175122515750,-0.114325284957886,L, + 177046939000,-0.115766286849976,L, + 180895785500,-0.118647813796997,L, + 182820208750,-0.120088815689087,L, + 184744632000,-0.121529579162598,L, + 190517901750,-0.115975618362427,L, + 192442325000,-0.114124536514282,L, + 194366748250,-0.112272977828979,L, + 203988864500,-0.103016376495361,L, + 205913287750,-0.101165294647217,L, + 207837711000,-0.099313735961914,L, + 217459827250,-0.090057134628296,L, + 219384250500,-0.088206052780151,L, + 221308673750,-0.086354494094849,L, + 223233097000,-0.084503412246704,L, + 225157520250,-0.082651853561401,L, + 234779636500,-0.073395252227783,L, + 236704059750,-0.071544170379639,L, + 238628483000,-0.069692611694336,L, + 240552906250,-0.067841529846191,L, + 242477329500,-0.065989971160889,L, + 248250599250,-0.060436010360718,L, + 250175022500,-0.058584928512573,L, + 252099445750,-0.056733369827271,L, + 254023869000,-0.054882287979126,L, + 255948292250,-0.053030729293823,L, + 257872715500,-0.051179647445679,L, + 259797138750,-0.049328088760376,L, + 261721562000,-0.047476768493652,L, + 263645985250,-0.045625686645508,L, + 265570408500,-0.043774127960205,L, + 267494831750,-0.041923046112061,L, + 269419255000,-0.040071487426758,L, + 271343678250,-0.038220405578613,L, + 273268101500,-0.036368846893311,L, + 275192524750,-0.034517526626587,L, + 277116948000,-0.032666444778442,L, + 279041371250,-0.030814886093140,L, + 280965794500,-0.028963804244995,L, + 282890217750,-0.027112245559692,L, + 284814641000,-0.025261163711548,L, + 286739064250,-0.023409605026245,L, + 288663487500,-0.021558523178101,L, + 290587910750,-0.019707202911377,L, + 292512334000,-0.017855644226074,L, + 294436757250,-0.016004562377930,L, + 296361180500,-0.014153003692627,L, + 298285603750,-0.012301921844482,L, + 300210027000,-0.010450363159180,L, + 302134450250,-0.008599281311035,L, + 304058873500,-0.008604049682617,L, + 305983296750,-0.007685661315918,L, + 307907720000,-0.006197214126587,L, + 309832143250,-0.004554986953735,L, + 311756566500,-0.002857685089111,L, + 313680989750,-0.001148462295532,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215623855591,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934881210327,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009754180908203,L, + 329076375750,0.011039972305298,L, + 331000799000,0.012230873107910,L, + 332925222250,0.013316154479980,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015121459960938,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469207763672 + KeyVer: 4005 + KeyCount: 158 + Key: + 0,-0.000469207763672,L, + 1924423250,-0.000807046890259,L, + 3848846500,-0.001145124435425,L, + 5773269750,-0.001482725143433,L, + 9622116250,-0.002158403396606,L, + 11546539500,-0.002496480941772,L, + 13470962750,-0.002834320068359,L, + 15395386000,-0.003171920776367,L, + 17319809250,-0.003509759902954,L, + 19244232500,-0.003847837448120,L, + 21168655750,-0.004185676574707,L, + 23093079000,-0.004523277282715,L, + 26941925500,-0.005198955535889,L, + 28866348750,-0.005537033081055,L, + 30790772000,-0.005874633789062,L, + 34639618500,-0.006550312042236,L, + 36564041750,-0.006888389587402,L, + 38488465000,-0.007225990295410,L, + 42337311500,-0.007901668548584,L, + 44261734750,-0.008239746093750,L, + 46186158000,-0.008577346801758,L, + 50035004500,-0.009253025054932,L, + 51959427750,-0.009590625762939,L, + 53883851000,-0.009928941726685,L, + 55808274250,-0.010266542434692,L, + 57732697500,-0.010604381561279,L, + 59657120750,-0.010941982269287,L, + 61581544000,-0.011280298233032,L, + 63505967250,-0.011617898941040,L, + 67354813750,-0.012293577194214,L, + 69279237000,-0.012631654739380,L, + 71203660250,-0.012969255447388,L, + 75052506750,-0.013644933700562,L, + 76976930000,-0.013982534408569,L, + 78901353250,-0.014320611953735,L, + 82750199750,-0.014996290206909,L, + 84674623000,-0.015333890914917,L, + 86599046250,-0.015671968460083,L, + 90447892750,-0.016347646713257,L, + 92372316000,-0.016685247421265,L, + 94296739250,-0.017023086547852,L, + 96221162500,-0.017361164093018,L, + 98145585750,-0.017699003219604,L, + 100070009000,-0.018036603927612,L, + 101994432250,-0.018374443054199,L, + 103918855500,-0.018712520599365,L, + 107767702000,-0.019388198852539,L, + 109692125250,-0.019725799560547,L, + 111616548500,-0.020063877105713,L, + 115465395000,-0.020739555358887,L, + 117389818250,-0.021077156066895,L, + 119314241500,-0.021414995193481,L, + 121238664750,-0.021753072738647,L, + 123163088000,-0.022090911865234,L, + 125087511250,-0.022428512573242,L, + 127011934500,-0.022766351699829,L, + 128936357750,-0.023104429244995,L, + 130860781000,-0.023442268371582,L, + 132785204250,-0.023779869079590,L, + 134709627500,-0.024117708206177,L, + 136634050750,-0.024455785751343,L, + 138558474000,-0.024793624877930,L, + 140482897250,-0.025131225585938,L, + 144331743750,-0.025806903839111,L, + 146256167000,-0.026144981384277,L, + 148180590250,-0.026482820510864,L, + 150105013500,-0.026820421218872,L, + 152029436750,-0.027158260345459,L, + 153953860000,-0.027496337890625,L, + 155878283250,-0.027834177017212,L, + 157802706500,-0.028171777725220,L, + 159727129750,-0.028509616851807,L, + 161651553000,-0.028847694396973,L, + 163575976250,-0.029185533523560,L, + 165500399500,-0.029523134231567,L, + 169349246000,-0.030198812484741,L, + 171273669250,-0.030536890029907,L, + 173198092500,-0.030874490737915,L, + 177046939000,-0.031550168991089,L, + 178971362250,-0.031888246536255,L, + 180895785500,-0.032225847244263,L, + 184744632000,-0.032901525497437,L, + 186669055250,-0.033520221710205,L, + 188593478500,-0.034138679504395,L, + 190517901750,-0.034757614135742,L, + 192442325000,-0.035376071929932,L, + 194366748250,-0.035995006561279,L, + 198215594750,-0.037231922149658,L, + 200140018000,-0.037850856781006,L, + 202064441250,-0.038469314575195,L, + 203988864500,-0.039088010787964,L, + 205913287750,-0.039706468582153,L, + 207837711000,-0.040325403213501,L, + 209762134250,-0.040943861007690,L, + 211686557500,-0.041562795639038,L, + 213610980750,-0.042181253433228,L, + 215535404000,-0.042800188064575,L, + 217459827250,-0.043418645858765,L, + 219384250500,-0.044037342071533,L, + 223233097000,-0.045274257659912,L, + 225157520250,-0.045893192291260,L, + 227081943500,-0.046511650085449,L, + 229006366750,-0.047130584716797,L, + 230930790000,-0.047749042510986,L, + 232855213250,-0.048367977142334,L, + 234779636500,-0.048986434936523,L, + 236704059750,-0.049605131149292,L, + 238628483000,-0.050223588943481,L, + 240552906250,-0.050842523574829,L, + 244401752750,-0.052079439163208,L, + 246326176000,-0.052698373794556,L, + 248250599250,-0.053316831588745,L, + 250175022500,-0.053935766220093,L, + 252099445750,-0.054554224014282,L, + 254023869000,-0.055172920227051,L, + 255948292250,-0.055791378021240,L, + 257872715500,-0.056410312652588,L, + 259797138750,-0.057028770446777,L, + 261721562000,-0.057647705078125,L, + 265570408500,-0.058884620666504,L, + 267494831750,-0.059503555297852,L, + 269419255000,-0.060122013092041,L, + 271343678250,-0.060740709304810,L, + 273268101500,-0.061359167098999,L, + 275192524750,-0.061978101730347,L, + 277116948000,-0.062596559524536,L, + 279041371250,-0.063215494155884,L, + 280965794500,-0.063833951950073,L, + 286739064250,-0.065690040588379,L, + 290587910750,-0.066926956176758,L, + 292512334000,-0.067545890808105,L, + 294436757250,-0.068164348602295,L, + 296361180500,-0.068783283233643,L, + 298285603750,-0.069401741027832,L, + 300210027000,-0.070020675659180,L, + 302134450250,-0.070639133453369,L, + 304058873500,-0.070652961730957,L, + 305983296750,-0.068114757537842,L, + 307907720000,-0.064001798629761,L, + 309832143250,-0.059463262557983,L, + 311756566500,-0.054772615432739,L, + 313680989750,-0.050049781799316,L, + 315605413000,-0.045361280441284,L, + 317529836250,-0.040752649307251,L, + 319454259500,-0.036257028579712,L, + 321378682750,-0.031902074813843,L, + 323303106000,-0.027712106704712,L, + 325227529250,-0.023710489273071,L, + 327151952500,-0.019920587539673,L, + 329076375750,-0.016367435455322,L, + 331000799000,-0.013076782226562,L, + 332925222250,-0.010077714920044,L, + 334849645500,-0.007402181625366,L, + 336774068750,-0.005088567733765,L, + 338698492000,-0.003180265426636,L, + 340622915250,-0.001729488372803,L, + 342547338500,-0.000800132751465,L, + 344471761750,-0.000469207763672,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 98 + Key: + 0,0.062097311019897,L, + 36564041750,0.161645293235779,L, + 38488465000,0.166884541511536,L, + 42337311500,0.177363276481628,L, + 44261734750,0.182602763175964,L, + 46186158000,0.187842011451721,L, + 48110581250,0.193081378936768,L, + 50035004500,0.198320865631104,L, + 61581544000,0.229757070541382,L, + 63505967250,0.234996318817139,L, + 69279237000,0.250714421272278,L, + 71203660250,0.255953907966614,L, + 73128083500,0.261193156242371,L, + 75052506750,0.266432523727417,L, + 76976930000,0.271672010421753,L, + 88523469500,0.303108215332031,L, + 90447892750,0.308347463607788,L, + 121238664750,0.392177343368530,L, + 123163088000,0.397416591644287,L, + 125087511250,0.402656197547913,L, + 127011934500,0.407895326614380,L, + 128936357750,0.413134932518005,L, + 130860781000,0.418374061584473,L, + 132785204250,0.423613667488098,L, + 134709627500,0.428852796554565,L, + 136634050750,0.434092402458191,L, + 140482897250,0.444571137428284,L, + 142407320500,0.449810385704041,L, + 173198092500,0.533640265464783,L, + 175122515750,0.538879513740540,L, + 184744632000,0.565076351165771,L, + 186669055250,0.574657320976257,L, + 188593478500,0.584238171577454,L, + 194366748250,0.612981081008911,L, + 196291171500,0.622561812400818,L, + 200140018000,0.641723752021790,L, + 202064441250,0.651304602622986,L, + 207837711000,0.680047512054443,L, + 209762134250,0.689628243446350,L, + 211686557500,0.699209213256836,L, + 213610980750,0.708790063858032,L, + 219384250500,0.737532973289490,L, + 225157520250,0.766275525093079,L, + 227081943500,0.775856614112854,L, + 229006366750,0.785437464714050,L, + 230930790000,0.795018553733826,L, + 232855213250,0.804599165916443,L, + 234779636500,0.814180254936218,L, + 238628483000,0.833341956138611,L, + 240552906250,0.842923045158386,L, + 242477329500,0.852503895759583,L, + 244401752750,0.862084984779358,L, + 246326176000,0.871665596961975,L, + 248250599250,0.881246685981750,L, + 252099445750,0.900408387184143,L, + 254023869000,0.909989476203918,L, + 261721562000,0.948312878608704,L, + 263645985250,0.957893967628479,L, + 265570408500,0.967474818229675,L, + 267494831750,0.977055907249451,L, + 269419255000,0.986636757850647,L, + 271343678250,0.996217370033264,L, + 273268101500,1.005798459053040,L, + 275192524750,1.015379309654236,L, + 277116948000,1.024960398674011,L, + 280965794500,1.044122099876404,L, + 282890217750,1.053703188896179,L, + 284814641000,1.063283801078796,L, + 286739064250,1.072864890098572,L, + 288663487500,1.082445740699768,L, + 290587910750,1.092026829719543,L, + 294436757250,1.111188530921936,L, + 296361180500,1.120769619941711,L, + 298285603750,1.130350232124329,L, + 300210027000,1.139931321144104,L, + 302134450250,1.149512171745300,L, + 304058873500,0.047215819358826,L, + 305983296750,0.047753930091858,L, + 307907720000,0.048626065254211,L, + 309832143250,0.049588441848755,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584362983704,L, + 315605413000,0.052578449249268,L, + 317529836250,0.053555727005005,L, + 319454259500,0.054508924484253,L, + 321378682750,0.055432438850403,L, + 323303106000,0.056320905685425,L, + 325227529250,0.057169318199158,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059424042701721,L, + 332925222250,0.060060024261475,L, + 334849645500,0.060627341270447,L, + 336774068750,0.061117887496948,L, + 338698492000,0.061522483825684,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062027215957642,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 125 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816736533094897,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326703444902080,L, + 28866348750,65.581686900805664,L, + 30790772000,64.836663526520084,L, + 32715195250,64.091646982423669,L, + 34639618500,63.346623608138088,L, + 36564041750,62.601607064041680,L, + 38488465000,61.856583689756100,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366543771374111,L, + 44261734750,59.621527227277703,L, + 48110581250,58.131480478706536,L, + 50035004500,57.386463934610127,L, + 51959427750,56.641440560324547,L, + 53883851000,55.896424016228138,L, + 57732697500,54.406384097846150,L, + 59657120750,53.661360723560570,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426307676176748,L, + 67354813750,50.681280886796586,L, + 69279237000,49.936264342700177,L, + 73128083500,48.446217594129017,L, + 75052506750,47.701201050032601,L, + 76976930000,46.956181090841611,L, + 78901353250,46.211154301461441,L, + 80825776500,45.466141172459615,L, + 82750199750,44.721117798174035,L, + 84674623000,43.976101254077626,L, + 86599046250,43.231074464697464,L, + 88523469500,42.486057920601048,L, + 90447892750,41.741034546315468,L, + 92372316000,40.996021417313642,L, + 94296739250,40.251001458122651,L, + 96221162500,39.505978083837071,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270914791169496,L, + 103918855500,36.525894831978505,L, + 105843278750,35.780878287882089,L, + 107767702000,35.035851498501927,L, + 109692125250,34.290831539310929,L, + 113540971750,32.800798451118112,L, + 115465395000,32.055775076832532,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565731743355954,L, + 121238664750,29.820711784164960,L, + 123163088000,29.075695240068548,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585651906591973,L, + 128936357750,26.840635362495561,L, + 130860781000,26.095613695757276,L, + 132785204250,25.350593736566278,L, + 134709627500,24.605575484922575,L, + 136634050750,23.860552110636995,L, + 138558474000,23.115535566540586,L, + 140482897250,22.370512192255006,L, + 142407320500,21.625490525516717,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135448899587434,L, + 148180590250,19.390430647943731,L, + 150105013500,18.645414103847322,L, + 152029436750,17.900385606919862,L, + 153953860000,17.155375893012621,L, + 155878283250,16.410350811179750,L, + 157802706500,15.665327436894168,L, + 159727129750,14.920309185250467,L, + 161651553000,14.175292641154057,L, + 163575976250,13.430268413094829,L, + 165500399500,12.685245038809249,L, + 167424822750,11.940229348486485,L, + 169349246000,11.195205974200904,L, + 171273669250,10.450191137651787,L, + 173198092500,9.705167763366205,L, + 175122515750,8.960150365496149,L, + 177046939000,8.215126137436922,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725085792168109,L, + 182820208750,5.980062844769352,L, + 184744632000,5.235048008220234,L, + 186669055250,6.407539198597271,L, + 188593478500,7.580029535200662,L, + 190517901750,8.752520298690877,L, + 192442325000,9.925011915954737,L, + 194366748250,11.097501825671305,L, + 196291171500,12.269996004256104,L, + 198215594750,13.442483352651733,L, + 200140018000,14.614975823689241,L, + 211686557500,21.649920404630524,L, + 213610980750,22.822412875668032,L, + 215535404000,23.994903639158245,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339880043496798,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684864985571810,L, + 225157520250,29.857355749062023,L, + 229006366750,32.202344106231621,L, + 230930790000,33.374831454627255,L, + 238628483000,38.064794508588108,L, + 240552906250,39.237288687172907,L, + 242477329500,40.409779450663123,L, + 244401752750,41.582273629247922,L, + 248250599250,43.927248326039184,L, + 254023869000,47.444720616509827,L, + 255948292250,48.617214795094625,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134683670470679,L, + 265570408500,54.479665197451105,L, + 267494831750,55.652152545846739,L, + 269419255000,56.824646724431538,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -47.817949473515462 + KeyVer: 4005 + KeyCount: 139 + Key: + 0,-47.817949473515462,L, + 1924423250,-47.567626455529442,L, + 3848846500,-47.317313682827177,L, + 9622116250,-46.566354874152857,L, + 11546539500,-46.316038686356009,L, + 13470962750,-46.065715668369982,L, + 15395386000,-45.815402895667717,L, + 19244232500,-45.314763689884842,L, + 21168655750,-45.064447502087987,L, + 23093079000,-44.814127899196549,L, + 25017502250,-44.563804881210530,L, + 26941925500,-44.313492108508264,L, + 28866348750,-44.063172505616826,L, + 30790772000,-43.812856317819971,L, + 34639618500,-43.312217112037096,L, + 36564041750,-43.061894094051070,L, + 42337311500,-42.310945530660518,L, + 50035004500,-41.309667119094762,L, + 51959427750,-41.059354346392496,L, + 53883851000,-40.809031328406476,L, + 55808274250,-40.558718555704203,L, + 57732697500,-40.308398952812766,L, + 59657120750,-40.058075934826746,L, + 61581544000,-39.807759747029891,L, + 69279237000,-38.806481335464142,L, + 75052506750,-38.055532772073583,L, + 76976930000,-37.805209754087564,L, + 78901353250,-37.554890151196126,L, + 80825776500,-37.304577378493860,L, + 82750199750,-37.054254360507834,L, + 86599046250,-36.553615154724959,L, + 88523469500,-36.303298966928104,L, + 90447892750,-36.052975948942084,L, + 92372316000,-35.802666591334400,L, + 94296739250,-35.552343573348381,L, + 98145585750,-35.051711197754670,L, + 101994432250,-34.551071991971796,L, + 103918855500,-34.300755804174948,L, + 105843278750,-34.050425955999756,L, + 109692125250,-33.549800410595218,L, + 111616548500,-33.299477392609198,L, + 113540971750,-33.049164619906925,L, + 115465395000,-32.798845017015488,L, + 117389818250,-32.548518583934879,L, + 119314241500,-32.298202396138031,L, + 121238664750,-32.047879378152004,L, + 123163088000,-31.797566605449738,L, + 125087511250,-31.547250417652887,L, + 130860781000,-30.796291608978574,L, + 134709627500,-30.295659233384868,L, + 136634050750,-30.045339630493430,L, + 138558474000,-29.795016612507407,L, + 140482897250,-29.544703839805141,L, + 142407320500,-29.294384236913704,L, + 144331743750,-29.044061218927681,L, + 146256167000,-28.793745031130829,L, + 150105013500,-28.293109240442536,L, + 152029436750,-28.042789637551099,L, + 153953860000,-27.792471742206953,L, + 155878283250,-27.542152139315515,L, + 159727129750,-27.041516348627226,L, + 161651553000,-26.791195038188498,L, + 163575976250,-26.540878850391643,L, + 165500399500,-26.290559247500205,L, + 167424822750,-26.040243059703354,L, + 169349246000,-25.789921749264622,L, + 171273669250,-25.539603853920479,L, + 173198092500,-25.289282543481747,L, + 175122515750,-25.038968063232186,L, + 177046939000,-24.788648460340749,L, + 178971362250,-24.538327149902020,L, + 180895785500,-24.288010962105169,L, + 182820208750,-24.037693066761022,L, + 184744632000,-23.787376878964171,L, + 186669055250,-24.181318284627842,L, + 192442325000,-25.363152746902621,L, + 194366748250,-25.757092445019005,L, + 198215594750,-26.544982086535523,L, + 202064441250,-27.332868312957455,L, + 203988864500,-27.726813133715716,L, + 205913287750,-28.120754539379391,L, + 207837711000,-28.514701067684943,L, + 209762134250,-28.908649303537786,L, + 211686557500,-29.302587294106875,L, + 217459827250,-30.484421756381654,L, + 219384250500,-30.878359746950743,L, + 221308673750,-31.272307982803589,L, + 225157520250,-32.060197624320104,L, + 227081943500,-32.454135614889196,L, + 229006366750,-32.848080435647454,L, + 230930790000,-33.242028671500300,L, + 234779636500,-34.029911482827650,L, + 236704059750,-34.423859718680497,L, + 240552906250,-35.211742530007839,L, + 242477329500,-35.605690765860686,L, + 244401752750,-35.999632171524361,L, + 248250599250,-36.787521813040883,L, + 250175022500,-37.181470048893722,L, + 252099445750,-37.575411454557397,L, + 254023869000,-37.969349445126490,L, + 255948292250,-38.363297680979336,L, + 257872715500,-38.757235671548422,L, + 259797138750,-39.151180492306679,L, + 261721562000,-39.545128728159526,L, + 263645985250,-39.939073548917783,L, + 265570408500,-40.333021784770629,L, + 267494831750,-40.726963190434304,L, + 269419255000,-41.120901181003397,L, + 271343678250,-41.514849416856237,L, + 273268101500,-41.908790822519912,L, + 280965794500,-43.484570105552947,L, + 282890217750,-43.878511511216622,L, + 284814641000,-44.272456331974887,L, + 286739064250,-44.666394322543972,L, + 288663487500,-45.060345973491401,L, + 290587910750,-45.454283964060494,L, + 292512334000,-45.848232199913333,L, + 294436757250,-46.242173605577008,L, + 296361180500,-46.636118426335273,L, + 298285603750,-47.030059831998948,L, + 300210027000,-47.424008067851787,L, + 302134450250,-47.817949473515462,L, + 304058873500,-47.817952888610051,L, + 305983296750,-47.817952888610051,L, + 307907720000,-47.817949473515462,L, + 313680989750,-47.817949473515462,L, + 315605413000,-47.817952888610051,L, + 319454259500,-47.817952888610051,L, + 321378682750,-47.817949473515462,L, + 323303106000,-47.817952888610051,L, + 325227529250,-47.817949473515462,L, + 327151952500,-47.817952888610051,L, + 329076375750,-47.817949473515462,L, + 331000799000,-47.817952888610051,L, + 332925222250,-47.817949473515462,L, + 338698492000,-47.817949473515462,L, + 340622915250,-47.817956303704634,L, + 342547338500,-47.817949473515462,L, + 344471761750,-47.817949473515462,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -21.887855167009455 + KeyVer: 4005 + KeyCount: 151 + Key: + 0,-21.887855167009455,L, + 1924423250,-21.456002796357680,L, + 3848846500,-21.024152133253196,L, + 5773269750,-20.592298055054130,L, + 7697693000,-20.160447391949646,L, + 13470962750,-18.864890279994317,L, + 15395386000,-18.433043031984418,L, + 17319809250,-18.001188953785352,L, + 21168655750,-17.137484212481798,L, + 25017502250,-16.273776056083662,L, + 26941925500,-15.841928808073765,L, + 28866348750,-15.410078144969281,L, + 30790772000,-14.978224066770213,L, + 32715195250,-14.546373403665731,L, + 34639618500,-14.114521033013954,L, + 36564041750,-13.682666954814886,L, + 38488465000,-13.250815437936756,L, + 40412888250,-12.818965628605920,L, + 42337311500,-12.387112404180499,L, + 50035004500,-10.659702921573395,L, + 51959427750,-10.227852258468912,L, + 53883851000,-9.796000741590783,L, + 55808274250,-9.364148370939008,L, + 57732697500,-8.932295146513585,L, + 59657120750,-8.500444483409101,L, + 61581544000,-8.068591258983680,L, + 63505967250,-7.636738888331904,L, + 65430390500,-7.204888225227421,L, + 67354813750,-6.773035427688822,L, + 69279237000,-6.341183910810693,L, + 71203660250,-5.909331113272094,L, + 75052506750,-5.045626371968543,L, + 76976930000,-4.613774428203589,L, + 78901353250,-4.181923338212283,L, + 80825776500,-3.750071394447331,L, + 82750199750,-3.318218383465320,L, + 84674623000,-2.886366226256956,L, + 86599046250,-2.454513642161769,L, + 88523469500,-2.022661484953405,L, + 90447892750,-1.590810821848922,L, + 92372316000,-1.158958557918852,L, + 94296739250,-0.727106027184517,L, + 96221162500,-0.295253736574021,L, + 100070009000,0.568451084770810,L, + 101994432250,1.000303402061733,L, + 103918855500,1.432152464340629,L, + 105843278750,1.864004514827287,L, + 109692125250,2.727709683017662,L, + 111616548500,3.159561413339203,L, + 115465395000,4.023267008416401,L, + 117389818250,4.455116817747237,L, + 119314241500,4.886969615285836,L, + 121238664750,5.318821559050789,L, + 125087511250,6.182527154127987,L, + 127011934500,6.614379097892940,L, + 128936357750,7.046231468544715,L, + 130860781000,7.478079570328259,L, + 132785204250,7.909932794753682,L, + 136634050750,8.773637536057233,L, + 138558474000,9.205489052935363,L, + 142407320500,10.069195501786206,L, + 144331743750,10.501047872437983,L, + 146256167000,10.932901096863404,L, + 148180590250,11.364750906194240,L, + 150105013500,11.796605838166956,L, + 152029436750,12.228455647497793,L, + 153953860000,12.660308871923215,L, + 155878283250,13.092161242574990,L, + 157802706500,13.524010198132181,L, + 161651553000,14.387714939435732,L, + 163575976250,14.819569017634800,L, + 165500399500,15.251419680739284,L, + 169349246000,16.115124422042836,L, + 171273669250,16.546973377600025,L, + 173198092500,16.978829163346386,L, + 175122515750,17.410678118903576,L, + 177046939000,17.842532197102646,L, + 178971362250,18.274381152659835,L, + 180895785500,18.706235230858905,L, + 182820208750,19.138085893963389,L, + 184744632000,19.569939972162455,L, + 188593478500,18.210667440534756,L, + 190517901750,17.531034589815491,L, + 192442325000,16.851396616454348,L, + 194366748250,16.171760350640501,L, + 196291171500,15.492125792373942,L, + 198215594750,14.812489526560093,L, + 202064441250,13.453215287385101,L, + 203988864500,12.773579021571251,L, + 205913287750,12.093941048210109,L, + 207837711000,11.414309051264491,L, + 209762134250,10.734672785450639,L, + 213610980750,9.375398546275648,L, + 215535404000,8.695763988009091,L, + 217459827250,8.016127722195241,L, + 219384250500,7.336490602607745,L, + 221308673750,6.656855617454364,L, + 223233097000,5.977219778527338,L, + 225157520250,5.297583085826665,L, + 227081943500,4.617946820012815,L, + 229006366750,3.938310981085789,L, + 230930790000,3.258676636262643,L, + 232855213250,2.579039943561970,L, + 234779636500,1.899403677748120,L, + 236704059750,1.219767625377682,L, + 238628483000,0.540131306202979,L, + 240552906250,-0.139504866229378,L, + 242477329500,-0.819141065342161,L, + 244401752750,-1.498775623608719,L, + 246326176000,-2.178411996144274,L, + 248250599250,-2.858048261958124,L, + 252099445750,-4.217321220472646,L, + 255948292250,-5.576592898326700,L, + 257872715500,-6.256227456593257,L, + 259797138750,-6.935863722407107,L, + 261721562000,-7.615501268881427,L, + 263645985250,-8.295134973374337,L, + 265570408500,-8.974772946735479,L, + 267494831750,-9.654408358775683,L, + 271343678250,-11.013682597950675,L, + 273268101500,-11.693318863764524,L, + 275192524750,-12.372952568257436,L, + 277116948000,-13.052587126523994,L, + 280965794500,-14.411859658151693,L, + 282890217750,-15.091494216418250,L, + 286739064250,-16.450770163140536,L, + 290587910750,-17.810039279673649,L, + 292512334000,-18.489678960582083,L, + 294436757250,-19.169308396206763,L, + 296361180500,-19.848948077115200,L, + 300210027000,-21.208224023837484,L, + 302134450250,-21.887853459462164,L, + 304058873500,-21.887855167009455,L, + 307907720000,-21.887855167009455,L, + 309832143250,-21.887853459462164,L, + 311756566500,-21.887858582104041,L, + 313680989750,-21.887855167009455,L, + 315605413000,-21.887856874556746,L, + 317529836250,-21.887855167009455,L, + 319454259500,-21.887856874556746,L, + 321378682750,-21.887853459462164,L, + 323303106000,-21.887856874556746,L, + 325227529250,-21.887855167009455,L, + 327151952500,-21.887856874556746,L, + 329076375750,-21.887855167009455,L, + 332925222250,-21.887855167009455,L, + 334849645500,-21.887853459462164,L, + 336774068750,-21.887853459462164,L, + 340622915250,-21.887856874556746,L, + 342547338500,-21.887853459462164,L, + 344471761750,-21.887855167009455,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 104 + Key: + 0,1.000000000000000,L, + 15395386000,1.008432388305664,L, + 17319809250,1.009486556053162,L, + 19244232500,1.010540485382080,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 109692125250,1.060080766677856,L, + 111616548500,1.061134934425354,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837684631348,L, + 140482897250,1.076945781707764,L, + 142407320500,1.077999711036682,L, + 144331743750,1.079053878784180,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026871681213,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 188593478500,1.070281028747559,L, + 190517901750,1.054826974868774,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557301521301,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 248250599250,0.591208517551422,L, + 250175022500,0.575754642486572,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123045921326,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399408102036,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037604093552,L, + 284814641000,0.297583550214767,L, + 286739064250,0.282129645347595,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405962824821,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915089368820,L, + 305983296750,0.368794679641724,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341700017452240,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373822987079620,L, + 329076375750,0.396345824003220,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833498001099,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605781078339,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 107 + Key: + 0,1.000000000000000,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351332664490,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042162179946899,L, + 78901353250,1.043216228485107,L, + 80825776500,1.044270157814026,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 113540971750,1.062188982963562,L, + 115465395000,1.063242912292480,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621252059937,L, + 130860781000,1.071675419807434,L, + 132785204250,1.072729468345642,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837684631348,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 169349246000,1.092756509780884,L, + 171273669250,1.093810439109802,L, + 173198092500,1.094864487648010,L, + 175122515750,1.095918655395508,L, + 177046939000,1.096972703933716,L, + 178971362250,1.098026633262634,L, + 180895785500,1.099080801010132,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 196291171500,1.008465051651001,L, + 198215594750,0.993011176586151,L, + 200140018000,0.977557361125946,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287508964539,L, + 211686557500,0.884833633899689,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471710681915,L, + 219384250500,0.823017835617065,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748043060303,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024315834045,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945354223251,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831872045993805,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756719589233,L, + 344471761750,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 109 + Key: + 0,1.000000000000000,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 46186158000,1.025297164916992,L, + 48110581250,1.026351332664490,L, + 50035004500,1.027405381202698,L, + 51959427750,1.028459310531616,L, + 53883851000,1.029513478279114,L, + 59657120750,1.032675623893738,L, + 61581544000,1.033729553222656,L, + 63505967250,1.034783720970154,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 121238664750,1.066405296325684,L, + 123163088000,1.067459225654602,L, + 134709627500,1.073783516883850,L, + 136634050750,1.074837684631348,L, + 142407320500,1.077999830245972,L, + 144331743750,1.079053997993469,L, + 146256167000,1.080107927322388,L, + 152029436750,1.083270072937012,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540315628052,L, + 163575976250,1.089594244956970,L, + 167424822750,1.091702580451965,L, + 169349246000,1.092756509780884,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833574295044,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925645351410,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840114116669,L, + 234779636500,0.699386239051819,L, + 236704059750,0.683932244777679,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116565704346,L, + 246326176000,0.606662511825562,L, + 250175022500,0.575754642486572,L, + 252099445750,0.560300767421722,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483031004667282,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221746206284,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290799379349,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525786876678,L, + 329076375750,0.886940360069275,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690739631653,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073904514313,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396248340607,L, + 342547338500,0.997756659984589,L, + 344471761750,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::smoke_015" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.016793012619019 + KeyVer: 4005 + KeyCount: 86 + Key: + 0,0.016793012619019,L, + 1924423250,0.016670703887939,L, + 3848846500,0.016548633575439,L, + 11546539500,0.016059398651123,L, + 13470962750,0.015937328338623,L, + 17319809250,0.015692710876465,L, + 19244232500,0.015570640563965,L, + 28866348750,0.014959096908569,L, + 30790772000,0.014837026596069,L, + 32715195250,0.014714717864990,L, + 34639618500,0.014592647552490,L, + 44261734750,0.013981103897095,L, + 46186158000,0.013859033584595,L, + 50035004500,0.013614416122437,L, + 51959427750,0.013492345809937,L, + 59657120750,0.013003110885620,L, + 61581544000,0.012881040573120,L, + 69279237000,0.012391805648804,L, + 71203660250,0.012269735336304,L, + 73128083500,0.012147426605225,L, + 75052506750,0.012025356292725,L, + 84674623000,0.011413812637329,L, + 86599046250,0.011291742324829,L, + 88523469500,0.011169433593750,L, + 90447892750,0.011047363281250,L, + 96221162500,0.010680437088013,L, + 98145585750,0.001452684402466,L, + 100070009000,-0.007774829864502,L, + 101994432250,-0.017002582550049,L, + 103918855500,-0.026230573654175,L, + 105843278750,-0.035458087921143,L, + 109692125250,-0.053913593292236,L, + 111616548500,-0.063141107559204,L, + 123163088000,-0.118507623672485,L, + 125087511250,-0.127735137939453,L, + 127011934500,-0.136962890625000,L, + 132785204250,-0.122760772705078,L, + 134709627500,-0.118026971817017,L, + 138558474000,-0.108558893203735,L, + 140482897250,-0.103825092315674,L, + 150105013500,-0.080154895782471,L, + 152029436750,-0.075421094894409,L, + 159727129750,-0.056484937667847,L, + 161651553000,-0.051751136779785,L, + 167424822750,-0.037549018859863,L, + 169349246000,-0.032815217971802,L, + 178971362250,-0.009145021438599,L, + 180895785500,-0.004411220550537,L, + 184744632000,0.005056858062744,L, + 219384250500,0.001027107238770,L, + 221308673750,0.000803470611572,L, + 227081943500,0.000131845474243,L, + 229006366750,-0.000092267990112,L, + 236704059750,-0.000987768173218,L, + 238628483000,-0.001211404800415,L, + 252099445750,-0.002778530120850,L, + 254023869000,-0.003002643585205,L, + 255948292250,-0.003226518630981,L, + 257872715500,-0.003450155258179,L, + 290587910750,-0.007256031036377,L, + 292512334000,-0.007479667663574,L, + 296361180500,-0.007927417755127,L, + 298285603750,-0.008151531219482,L, + 302134450250,-0.008599281311035,L, + 304058873500,-0.008604049682617,L, + 305983296750,-0.007685661315918,L, + 307907720000,-0.006197214126587,L, + 309832143250,-0.004554986953735,L, + 311756566500,-0.002857685089111,L, + 313680989750,-0.001148462295532,L, + 315605413000,0.000547885894775,L, + 317529836250,0.002215623855591,L, + 319454259500,0.003842592239380,L, + 321378682750,0.005418539047241,L, + 323303106000,0.006934881210327,L, + 325227529250,0.008382797241211,L, + 327151952500,0.009754180908203,L, + 329076375750,0.011039972305298,L, + 331000799000,0.012230873107910,L, + 332925222250,0.013316154479980,L, + 334849645500,0.014284133911133,L, + 336774068750,0.015121459960938,L, + 338698492000,0.015811920166016,L, + 340622915250,0.016336917877197,L, + 342547338500,0.016673326492310,L, + 344471761750,0.016793012619019,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000469207763672 + KeyVer: 4005 + KeyCount: 135 + Key: + 0,-0.000469207763672,L, + 1924423250,-0.003365993499756,L, + 5773269750,-0.009159088134766,L, + 7697693000,-0.012055873870850,L, + 9622116250,-0.014952421188354,L, + 11546539500,-0.017849206924438,L, + 13470962750,-0.020745754241943,L, + 15395386000,-0.023642539978027,L, + 17319809250,-0.026539087295532,L, + 19244232500,-0.029435396194458,L, + 21168655750,-0.032332420349121,L, + 23093079000,-0.035228729248047,L, + 25017502250,-0.038125753402710,L, + 26941925500,-0.041022062301636,L, + 28866348750,-0.043919086456299,L, + 30790772000,-0.046815395355225,L, + 32715195250,-0.049711942672729,L, + 34639618500,-0.052608728408813,L, + 36564041750,-0.055505275726318,L, + 38488465000,-0.058402061462402,L, + 42337311500,-0.064195156097412,L, + 44261734750,-0.067091941833496,L, + 46186158000,-0.069988489151001,L, + 48110581250,-0.072885274887085,L, + 50035004500,-0.075781822204590,L, + 51959427750,-0.078678607940674,L, + 53883851000,-0.081575155258179,L, + 55808274250,-0.084471464157104,L, + 57732697500,-0.087368249893188,L, + 59657120750,-0.090264797210693,L, + 61581544000,-0.093161582946777,L, + 65430390500,-0.098954677581787,L, + 67354813750,-0.101851463317871,L, + 69279237000,-0.104748010635376,L, + 71203660250,-0.107644796371460,L, + 73128083500,-0.110541343688965,L, + 75052506750,-0.113438129425049,L, + 78901353250,-0.119231224060059,L, + 80825776500,-0.122128009796143,L, + 82750199750,-0.125024318695068,L, + 84674623000,-0.127921342849731,L, + 86599046250,-0.130817651748657,L, + 88523469500,-0.133714675903320,L, + 90447892750,-0.136610984802246,L, + 92372316000,-0.139507532119751,L, + 94296739250,-0.142404317855835,L, + 96221162500,-0.145300865173340,L, + 101994432250,-0.143926143646240,L, + 103918855500,-0.143467664718628,L, + 105843278750,-0.143009424209595,L, + 107767702000,-0.142550945281982,L, + 109692125250,-0.142092704772949,L, + 111616548500,-0.141634225845337,L, + 113540971750,-0.141176223754883,L, + 115465395000,-0.140717744827271,L, + 117389818250,-0.140259504318237,L, + 119314241500,-0.139801025390625,L, + 121238664750,-0.139342784881592,L, + 123163088000,-0.138884305953979,L, + 128936357750,-0.137509584426880,L, + 130860781000,-0.137051105499268,L, + 132785204250,-0.136592864990234,L, + 134709627500,-0.136134386062622,L, + 136634050750,-0.135676145553589,L, + 138558474000,-0.135217666625977,L, + 140482897250,-0.134759664535522,L, + 142407320500,-0.134301185607910,L, + 144331743750,-0.133842945098877,L, + 146256167000,-0.133384466171265,L, + 148180590250,-0.132926225662231,L, + 150105013500,-0.132467746734619,L, + 155878283250,-0.131093025207520,L, + 157802706500,-0.130634546279907,L, + 159727129750,-0.130176305770874,L, + 161651553000,-0.129717826843262,L, + 163575976250,-0.129259586334229,L, + 165500399500,-0.128801107406616,L, + 167424822750,-0.128343105316162,L, + 169349246000,-0.127884626388550,L, + 171273669250,-0.127426385879517,L, + 173198092500,-0.126967906951904,L, + 175122515750,-0.126509666442871,L, + 177046939000,-0.126051187515259,L, + 182820208750,-0.124676465988159,L, + 184744632000,-0.124217987060547,L, + 192442325000,-0.120704650878906,L, + 194366748250,-0.119826078414917,L, + 198215594750,-0.118069410324097,L, + 200140018000,-0.117191553115845,L, + 202064441250,-0.116312980651855,L, + 209762134250,-0.112799644470215,L, + 211686557500,-0.111921072006226,L, + 221308673750,-0.107529401779175,L, + 223233097000,-0.106651306152344,L, + 227081943500,-0.104894638061523,L, + 229006366750,-0.104016065597534,L, + 238628483000,-0.099624395370483,L, + 240552906250,-0.098745822906494,L, + 242477329500,-0.097867488861084,L, + 244401752750,-0.096989631652832,L, + 246326176000,-0.096111059188843,L, + 255948292250,-0.091719388961792,L, + 257872715500,-0.090840816497803,L, + 263645985250,-0.088205814361572,L, + 265570408500,-0.087327718734741,L, + 273268101500,-0.083814382553101,L, + 275192524750,-0.082935810089111,L, + 284814641000,-0.078544139862061,L, + 286739064250,-0.077665567398071,L, + 288663487500,-0.076787710189819,L, + 290587910750,-0.075909376144409,L, + 292512334000,-0.075030803680420,L, + 302134450250,-0.070639133453369,L, + 304058873500,-0.070652961730957,L, + 305983296750,-0.068114757537842,L, + 307907720000,-0.064001798629761,L, + 309832143250,-0.059463262557983,L, + 311756566500,-0.054772615432739,L, + 313680989750,-0.050049781799316,L, + 315605413000,-0.045361280441284,L, + 317529836250,-0.040752649307251,L, + 319454259500,-0.036257028579712,L, + 321378682750,-0.031902074813843,L, + 323303106000,-0.027712106704712,L, + 325227529250,-0.023710489273071,L, + 327151952500,-0.019920587539673,L, + 329076375750,-0.016367435455322,L, + 331000799000,-0.013076782226562,L, + 332925222250,-0.010077714920044,L, + 334849645500,-0.007402181625366,L, + 336774068750,-0.005088567733765,L, + 338698492000,-0.003180265426636,L, + 340622915250,-0.001729488372803,L, + 342547338500,-0.000800132751465,L, + 344471761750,-0.000469207763672,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.062097311019897 + KeyVer: 4005 + KeyCount: 143 + Key: + 0,0.062097311019897,L, + 3848846500,0.078604459762573,L, + 5773269750,0.086858153343201,L, + 7697693000,0.095111608505249,L, + 9622116250,0.103365302085876,L, + 28866348750,0.185901045799255,L, + 30790772000,0.194154739379883,L, + 32715195250,0.202408194541931,L, + 34639618500,0.210661888122559,L, + 44261734750,0.251929759979248,L, + 46186158000,0.260183453559875,L, + 48110581250,0.268436908721924,L, + 50035004500,0.276690602302551,L, + 51959427750,0.284944057464600,L, + 55808274250,0.301451206207275,L, + 57732697500,0.309704899787903,L, + 61581544000,0.326212048530579,L, + 63505967250,0.334465742111206,L, + 65430390500,0.342719316482544,L, + 67354813750,0.350972771644592,L, + 71203660250,0.367479920387268,L, + 73128083500,0.375733613967896,L, + 76976930000,0.392240762710571,L, + 78901353250,0.400494217872620,L, + 80825776500,0.408747792243958,L, + 82750199750,0.417001485824585,L, + 86599046250,0.433508634567261,L, + 88523469500,0.441762328147888,L, + 90447892750,0.450015902519226,L, + 92372316000,0.458269357681274,L, + 96221162500,0.474776506423950,L, + 98145585750,0.478309512138367,L, + 100070009000,0.481842398643494,L, + 101994432250,0.485375523567200,L, + 103918855500,0.488908290863037,L, + 105843278750,0.492441177368164,L, + 107767702000,0.495974302291870,L, + 109692125250,0.499507188796997,L, + 111616548500,0.503040194511414,L, + 115465395000,0.510105967521667,L, + 117389818250,0.513638973236084,L, + 119314241500,0.517171859741211,L, + 121238664750,0.520704984664917,L, + 123163088000,0.524237751960754,L, + 125087511250,0.527770638465881,L, + 127011934500,0.531303763389587,L, + 128936357750,0.532429337501526,L, + 130860781000,0.533555269241333,L, + 132785204250,0.534681081771851,L, + 134709627500,0.535806775093079,L, + 136634050750,0.536932349205017,L, + 138558474000,0.538058161735535,L, + 140482897250,0.539184093475342,L, + 142407320500,0.540309906005859,L, + 144331743750,0.541435599327087,L, + 146256167000,0.542561173439026,L, + 148180590250,0.543687105178833,L, + 150105013500,0.544812917709351,L, + 152029436750,0.545938611030579,L, + 153953860000,0.547064185142517,L, + 155878283250,0.548189997673035,L, + 157802706500,0.549315929412842,L, + 159727129750,0.550441503524780,L, + 161651553000,0.551567435264587,L, + 163575976250,0.552693009376526,L, + 165500399500,0.553818941116333,L, + 167424822750,0.554944515228271,L, + 169349246000,0.556070327758789,L, + 171273669250,0.557196021080017,L, + 173198092500,0.558321833610535,L, + 175122515750,0.559447765350342,L, + 177046939000,0.560573339462280,L, + 178971362250,0.561699271202087,L, + 180895785500,0.562824845314026,L, + 182820208750,0.563950777053833,L, + 184744632000,0.565076351165771,L, + 186669055250,0.574657320976257,L, + 188593478500,0.584238171577454,L, + 194366748250,0.612981081008911,L, + 196291171500,0.622561812400818,L, + 200140018000,0.641723752021790,L, + 202064441250,0.651304602622986,L, + 207837711000,0.680047512054443,L, + 209762134250,0.689628243446350,L, + 211686557500,0.699209213256836,L, + 213610980750,0.708790063858032,L, + 219384250500,0.737532973289490,L, + 225157520250,0.766275525093079,L, + 227081943500,0.775856614112854,L, + 229006366750,0.785437464714050,L, + 230930790000,0.795018553733826,L, + 232855213250,0.804599165916443,L, + 234779636500,0.814180254936218,L, + 238628483000,0.833341956138611,L, + 240552906250,0.842923045158386,L, + 242477329500,0.852503895759583,L, + 244401752750,0.862084984779358,L, + 246326176000,0.871665596961975,L, + 248250599250,0.881246685981750,L, + 252099445750,0.900408387184143,L, + 254023869000,0.909989476203918,L, + 261721562000,0.948312878608704,L, + 263645985250,0.957893967628479,L, + 265570408500,0.967474818229675,L, + 267494831750,0.977055907249451,L, + 269419255000,0.986636757850647,L, + 271343678250,0.996217370033264,L, + 273268101500,1.005798459053040,L, + 275192524750,1.015379309654236,L, + 277116948000,1.024960398674011,L, + 280965794500,1.044122099876404,L, + 282890217750,1.053703188896179,L, + 284814641000,1.063283801078796,L, + 286739064250,1.072864890098572,L, + 288663487500,1.082445740699768,L, + 290587910750,1.092026829719543,L, + 294436757250,1.111188530921936,L, + 296361180500,1.120769619941711,L, + 298285603750,1.130350232124329,L, + 300210027000,1.139931321144104,L, + 302134450250,1.149512171745300,L, + 304058873500,0.047215819358826,L, + 305983296750,0.047753930091858,L, + 307907720000,0.048626065254211,L, + 309832143250,0.049588441848755,L, + 311756566500,0.050582885742188,L, + 313680989750,0.051584362983704,L, + 315605413000,0.052578449249268,L, + 317529836250,0.053555727005005,L, + 319454259500,0.054508924484253,L, + 321378682750,0.055432438850403,L, + 323303106000,0.056320905685425,L, + 325227529250,0.057169318199158,L, + 327151952500,0.057972908020020,L, + 329076375750,0.058726310729980,L, + 331000799000,0.059424042701721,L, + 332925222250,0.060060024261475,L, + 334849645500,0.060627341270447,L, + 336774068750,0.061117887496948,L, + 338698492000,0.061522483825684,L, + 340622915250,0.061830043792725,L, + 342547338500,0.062027215957642,L, + 344471761750,0.062097311019897,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 76.756989703765171 + KeyVer: 4005 + KeyCount: 130 + Key: + 0,76.756989703765171,L, + 1924423250,76.011966329479591,L, + 3848846500,75.266949785383190,L, + 5773269750,74.521926411097610,L, + 7697693000,73.776909867001194,L, + 9622116250,73.031886492715614,L, + 11546539500,72.286869948619213,L, + 13470962750,71.541846574333633,L, + 15395386000,70.796830030237217,L, + 17319809250,70.051806655951637,L, + 19244232500,69.306790111855221,L, + 21168655750,68.561766737569641,L, + 23093079000,67.816750193473240,L, + 25017502250,67.071726819187660,L, + 26941925500,66.326710275091244,L, + 30790772000,64.836663526520084,L, + 34639618500,63.346630438327260,L, + 36564041750,62.601600233852508,L, + 38488465000,61.856590519945271,L, + 40412888250,61.111567145659691,L, + 42337311500,60.366550601563283,L, + 46186158000,58.876503852992116,L, + 48110581250,58.131494139084879,L, + 50035004500,57.386463934610127,L, + 51959427750,56.641447390513719,L, + 53883851000,55.896424016228138,L, + 55808274250,55.151407472131730,L, + 57732697500,54.406384097846150,L, + 59657120750,53.661364138655152,L, + 61581544000,52.916347594558744,L, + 63505967250,52.171320805178574,L, + 65430390500,51.426311091271337,L, + 67354813750,50.681284301891168,L, + 69279237000,49.936260927605588,L, + 73128083500,48.446221009223599,L, + 75052506750,47.701207880221773,L, + 76976930000,46.956181090841611,L, + 78901353250,46.211161131650613,L, + 80825776500,45.466144587554204,L, + 82750199750,44.721117798174035,L, + 84674623000,43.976101254077626,L, + 90447892750,41.741041376504640,L, + 92372316000,40.996024832408231,L, + 94296739250,40.250998043028062,L, + 96221162500,39.505984914026236,L, + 100070009000,38.015938165455076,L, + 101994432250,37.270925036453249,L, + 103918855500,36.525898247073087,L, + 105843278750,35.780881702976679,L, + 109692125250,34.290834954405518,L, + 111616548500,33.545818410309103,L, + 115465395000,32.055778491927114,L, + 117389818250,31.310755117641534,L, + 119314241500,30.565741988639708,L, + 121238664750,29.820718614354128,L, + 123163088000,29.075698655163134,L, + 125087511250,28.330675280877553,L, + 127011934500,27.585655321686559,L, + 128936357750,26.840637070042856,L, + 130860781000,26.095611988209981,L, + 132785204250,25.350592029018987,L, + 134709627500,24.605577192469870,L, + 136634050750,23.860555525731581,L, + 138558474000,23.115537274087878,L, + 140482897250,22.370513899802297,L, + 142407320500,21.625497355705889,L, + 144331743750,20.880473981420305,L, + 146256167000,20.135455729776606,L, + 148180590250,19.390432355491022,L, + 150105013500,18.645410688752737,L, + 152029436750,17.900392437109033,L, + 153953860000,17.155372477918039,L, + 155878283250,16.410354226274336,L, + 159727129750,14.920310892797758,L, + 161651553000,14.175290933606764,L, + 163575976250,13.430271828189415,L, + 165500399500,12.685251015224773,L, + 167424822750,11.940231056033777,L, + 173198092500,9.705168617139853,L, + 175122515750,8.960148657948857,L, + 177046939000,8.215130406305153,L, + 178971362250,7.470109593340513,L, + 180895785500,6.725088353489047,L, + 182820208750,5.980067967411229,L, + 184744632000,5.235048435107057,L, + 186669055250,6.407537064163155,L, + 188593478500,7.580028681427016,L, + 192442325000,9.925010208407445,L, + 194366748250,11.097502679444951,L, + 196291171500,12.269992589161520,L, + 198215594750,13.442485060199026,L, + 200140018000,14.614975823689241,L, + 202064441250,15.787468294726747,L, + 203988864500,16.959959058216960,L, + 205913287750,18.132446406612591,L, + 207837711000,19.304940585197389,L, + 209762134250,20.477427933593020,L, + 211686557500,21.649922112177819,L, + 215535404000,23.994900224063660,L, + 217459827250,25.167392695101167,L, + 219384250500,26.339881751044089,L, + 221308673750,27.512377637176183,L, + 223233097000,28.684868400666396,L, + 225157520250,29.857352333967441,L, + 227081943500,31.029849927646826,L, + 229006366750,32.202337276042456,L, + 230930790000,33.374834869721838,L, + 232855213250,34.547325633212054,L, + 236704059750,36.892300330003309,L, + 238628483000,38.064797923682697,L, + 242477329500,40.409772620473952,L, + 244401752750,41.582266799058750,L, + 246326176000,42.754754147454378,L, + 248250599250,43.927248326039184,L, + 252099445750,46.272229853019610,L, + 254023869000,47.444717201415237,L, + 255948292250,48.617214795094625,L, + 257872715500,49.789702143490253,L, + 259797138750,50.962196322075052,L, + 261721562000,52.134683670470679,L, + 263645985250,53.307174433960895,L, + 265570408500,54.479668612545694,L, + 267494831750,55.652155960941322,L, + 275192524750,60.342119014902181,L, + 277116948000,61.514602948203226,L, + 279041371250,62.687100541882607,L, + 292512334000,70.894535886314102,L, + 300210027000,75.584498940274969,L, + 302134450250,76.756989703765171,L, + 344471761750,76.756989703765171,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -132.125214700909481 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-132.125214700909481,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 39.466885496122558 + KeyVer: 4005 + KeyCount: 103 + Key: + 0,39.466885496122558,L, + 3848846500,40.330590237426108,L, + 5773269750,40.762439192983301,L, + 7697693000,41.194294978729658,L, + 9622116250,41.626147349381434,L, + 11546539500,42.057996304938627,L, + 17319809250,43.353553416893952,L, + 19244232500,43.785409202640317,L, + 21168655750,44.217254743102920,L, + 23093079000,44.649110528849278,L, + 28866348750,45.944667640804610,L, + 30790772000,46.376516596361796,L, + 34639618500,47.240221337665353,L, + 36564041750,47.672070293222539,L, + 38488465000,48.103926078968904,L, + 40412888250,48.535778449620679,L, + 42337311500,48.967634235367036,L, + 44261734750,49.399483190924229,L, + 50035004500,50.695040302879555,L, + 51959427750,51.126889258436748,L, + 53883851000,51.558745044183105,L, + 55808274250,51.990597414834880,L, + 57732697500,52.422442955297491,L, + 61581544000,53.286154526790213,L, + 65430390500,54.149859268093763,L, + 67354813750,54.581708223650949,L, + 69279237000,55.013560594302731,L, + 71203660250,55.445409549859917,L, + 73128083500,55.877268750700864,L, + 75052506750,56.309114291163468,L, + 76976930000,56.740966661815243,L, + 78901353250,57.172815617372436,L, + 111616548500,64.514305918452621,L, + 113540971750,64.946151458915224,L, + 121238664750,66.673560941522325,L, + 125087511250,67.537265682825890,L, + 134709627500,69.696527536084758,L, + 136634050750,70.128379906736541,L, + 142407320500,71.423937018691859,L, + 155878283250,74.446903613254293,L, + 157802706500,74.878749153716896,L, + 159727129750,75.310601524368678,L, + 165500399500,76.606158636323997,L, + 173198092500,78.333568118931112,L, + 178971362250,79.629125230886430,L, + 184744632000,80.924682342841763,L, + 186669055250,80.245044369480624,L, + 188593478500,79.565413226308650,L, + 190517901750,78.885775252947511,L, + 194366748250,77.526499306225219,L, + 196291171500,76.846868163053244,L, + 200140018000,75.487592216330967,L, + 202064441250,74.807961073158992,L, + 205913287750,73.448685126436700,L, + 207837711000,72.769053983264740,L, + 209762134250,72.089416009903587,L, + 213610980750,70.730140063181310,L, + 215535404000,70.050508920009335,L, + 217459827250,69.370870946648196,L, + 221308673750,68.011594999925904,L, + 223233097000,67.331963856753930,L, + 227081943500,65.972687910031652,L, + 229006366750,65.293056766859678,L, + 232855213250,63.933780820137393,L, + 234779636500,63.254149676965419,L, + 242477329500,60.535597783520849,L, + 244401752750,59.855966640348882,L, + 250175022500,57.817052720265451,L, + 252099445750,57.137424992188066,L, + 254023869000,56.457783603732338,L, + 255948292250,55.778145630371199,L, + 257872715500,55.098514487199225,L, + 259797138750,54.418876513838079,L, + 265570408500,52.379972839038409,L, + 269419255000,51.020696892316124,L, + 271343678250,50.341055503860396,L, + 273268101500,49.661424360688429,L, + 277116948000,48.302155244155308,L, + 279041371250,47.622513855699587,L, + 280965794500,46.942882712527613,L, + 282890217750,46.263244739166467,L, + 284814641000,45.583613595994500,L, + 286739064250,44.903972207538771,L, + 288663487500,44.224341064366797,L, + 292512334000,42.865065117644512,L, + 294436757250,42.185433974472538,L, + 298285603750,40.826158027750260,L, + 300210027000,40.146523469483697,L, + 302134450250,39.466885496122558,L, + 307907720000,39.466885496122558,L, + 309832143250,39.466882081027975,L, + 311756566500,39.466885496122558,L, + 319454259500,39.466885496122558,L, + 321378682750,39.466888911217140,L, + 323303106000,39.466885496122558,L, + 325227529250,39.466885496122558,L, + 327151952500,39.466888911217140,L, + 332925222250,39.466888911217140,L, + 334849645500,39.466885496122558,L, + 338698492000,39.466885496122558,L, + 340622915250,39.466888911217140,L, + 342547338500,39.466885496122558,L, + 344471761750,39.466885496122558,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 100 + Key: + 0,1.000000000000000,L, + 23093079000,1.012648582458496,L, + 25017502250,1.013702511787415,L, + 26941925500,1.014756679534912,L, + 48110581250,1.026351213455200,L, + 50035004500,1.027405381202698,L, + 63505967250,1.034783720970154,L, + 65430390500,1.035837650299072,L, + 67354813750,1.036891818046570,L, + 84674623000,1.046378254890442,L, + 86599046250,1.047432422637939,L, + 88523469500,1.048486351966858,L, + 90447892750,1.049540400505066,L, + 92372316000,1.050594329833984,L, + 94296739250,1.051648378372192,L, + 96221162500,1.052702546119690,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864572525024,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432099342346,L, + 161651553000,1.088540196418762,L, + 163575976250,1.089594364166260,L, + 167424822750,1.091702461242676,L, + 169349246000,1.092756628990173,L, + 171273669250,1.093810558319092,L, + 182820208750,1.100134849548340,L, + 184744632000,1.101189017295837,L, + 186669055250,1.085734963417053,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373278617859,L, + 194366748250,1.023919105529785,L, + 202064441250,0.962103366851807,L, + 203988864500,0.946649491786957,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287628173828,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 215535404000,0.853925704956055,L, + 217459827250,0.838471829891205,L, + 219384250500,0.823017835617065,L, + 221308673750,0.807563960552216,L, + 227081943500,0.761201977729797,L, + 229006366750,0.745748102664948,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840233325958,L, + 234779636500,0.699386239051819,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 246326176000,0.606662511825562,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576950788498,L, + 265570408500,0.452123045921326,L, + 269419255000,0.421215176582336,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859852790833,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.368794709444046,L, + 307907720000,0.373544424772263,L, + 309832143250,0.369308948516846,L, + 311756566500,0.361978083848953,L, + 313680989750,0.354132533073425,L, + 315605413000,0.347257256507874,L, + 317529836250,0.342373549938202,L, + 319454259500,0.340285867452621,L, + 321378682750,0.341699987649918,L, + 323303106000,0.347291231155396,L, + 325227529250,0.357750535011292,L, + 327151952500,0.373823016881943,L, + 329076375750,0.396345853805542,L, + 331000799000,0.426293253898621,L, + 332925222250,0.464833527803421,L, + 334849645500,0.513409137725830,L, + 336774068750,0.573855280876160,L, + 338698492000,0.648587882518768,L, + 340622915250,0.740915894508362,L, + 342547338500,0.855605721473694,L, + 344471761750,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.999999940395355 + KeyVer: 4005 + KeyCount: 110 + Key: + 0,0.999999940395355,L, + 1924423250,1.001054048538208,L, + 21168655750,1.011594533920288,L, + 23093079000,1.012648463249207,L, + 26941925500,1.014756560325623,L, + 28866348750,1.015810728073120,L, + 38488465000,1.021080970764160,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 50035004500,1.027405381202698,L, + 75052506750,1.041108012199402,L, + 76976930000,1.042162179946899,L, + 80825776500,1.044270038604736,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918859481812,L, + 105843278750,1.057972788810730,L, + 115465395000,1.063243031501770,L, + 117389818250,1.064296960830688,L, + 119314241500,1.065351128578186,L, + 123163088000,1.067459225654602,L, + 125087511250,1.068513393402100,L, + 127011934500,1.069567322731018,L, + 128936357750,1.070621371269226,L, + 130860781000,1.071675539016724,L, + 134709627500,1.073783397674561,L, + 136634050750,1.074837565422058,L, + 155878283250,1.085378050804138,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486267089844,L, + 161651553000,1.088540434837341,L, + 163575976250,1.089594364166260,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085735082626343,L, + 188593478500,1.070281147956848,L, + 190517901750,1.054827094078064,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 200140018000,0.977557301521301,L, + 202064441250,0.962103307247162,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195497512817,L, + 207837711000,0.915741503238678,L, + 209762134250,0.900287568569183,L, + 211686557500,0.884833574295044,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017776012421,L, + 221308673750,0.807563841342926,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748162269592,L, + 230930790000,0.730294048786163,L, + 232855213250,0.714840173721313,L, + 234779636500,0.699386179447174,L, + 236704059750,0.683932304382324,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570500373840,L, + 244401752750,0.622116446495056,L, + 254023869000,0.544846773147583,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 265570408500,0.452123016119003,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853283166885,L, + 277116948000,0.359399378299713,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037544488907,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675710678101,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767781734467,L, + 294436757250,0.220313847064972,L, + 296361180500,0.204859867691994,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290769577026,L, + 307907720000,0.466422319412231,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338112831116,L, + 315605413000,0.655649304389954,L, + 317529836250,0.695418119430542,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031351089478,L, + 325227529250,0.831871986389160,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940300464630,L, + 331000799000,0.911032915115356,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380581855774,L, + 340622915250,0.991396307945251,L, + 342547338500,0.997756779193878,L, + 344471761750,0.999999940395355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.999999880790710 + KeyVer: 4005 + KeyCount: 112 + Key: + 0,0.999999880790710,L, + 1924423250,1.001054048538208,L, + 5773269750,1.003162145614624,L, + 7697693000,1.004216074943542,L, + 9622116250,1.005270242691040,L, + 26941925500,1.014756679534912,L, + 28866348750,1.015810847282410,L, + 30790772000,1.016864776611328,L, + 34639618500,1.018972873687744,L, + 36564041750,1.020026803016663,L, + 38488465000,1.021081089973450,L, + 40412888250,1.022134900093079,L, + 42337311500,1.023189067840576,L, + 44261734750,1.024243116378784,L, + 46186158000,1.025297045707703,L, + 48110581250,1.026351332664490,L, + 82750199750,1.045324206352234,L, + 84674623000,1.046378135681152,L, + 86599046250,1.047432303428650,L, + 98145585750,1.053756594657898,L, + 100070009000,1.054810523986816,L, + 101994432250,1.055864691734314,L, + 103918855500,1.056918740272522,L, + 105843278750,1.057972908020020,L, + 107767702000,1.059026837348938,L, + 117389818250,1.064297080039978,L, + 119314241500,1.065351247787476,L, + 121238664750,1.066405177116394,L, + 136634050750,1.074837565422058,L, + 138558474000,1.075891733169556,L, + 140482897250,1.076945543289185,L, + 142407320500,1.077999711036682,L, + 153953860000,1.084324002265930,L, + 155878283250,1.085378170013428,L, + 157802706500,1.086432218551636,L, + 159727129750,1.087486147880554,L, + 161651553000,1.088540315628052,L, + 184744632000,1.101188898086548,L, + 186669055250,1.085734844207764,L, + 188593478500,1.070281028747559,L, + 192442325000,1.039373159408569,L, + 194366748250,1.023919105529785,L, + 196291171500,1.008465170860291,L, + 198215594750,0.993011176586151,L, + 202064441250,0.962103426456451,L, + 203988864500,0.946649432182312,L, + 205913287750,0.931195557117462,L, + 207837711000,0.915741562843323,L, + 211686557500,0.884833693504333,L, + 213610980750,0.869379639625549,L, + 217459827250,0.838471770286560,L, + 219384250500,0.823017895221710,L, + 221308673750,0.807563900947571,L, + 223233097000,0.792109966278076,L, + 225157520250,0.776655972003937,L, + 227081943500,0.761202037334442,L, + 229006366750,0.745748043060303,L, + 230930790000,0.730294108390808,L, + 232855213250,0.714840233325958,L, + 236704059750,0.683932244777679,L, + 238628483000,0.668478369712830,L, + 240552906250,0.653024375438690,L, + 242477329500,0.637570440769196,L, + 244401752750,0.622116446495056,L, + 252099445750,0.560300707817078,L, + 254023869000,0.544846713542938,L, + 255948292250,0.529392778873444,L, + 257872715500,0.513938903808594,L, + 259797138750,0.498484909534454,L, + 261721562000,0.483030974864960,L, + 263645985250,0.467576980590820,L, + 267494831750,0.436669111251831,L, + 269419255000,0.421215206384659,L, + 271343678250,0.405761182308197,L, + 273268101500,0.390307307243347,L, + 275192524750,0.374853312969208,L, + 277116948000,0.359399378299713,L, + 279041371250,0.343945384025574,L, + 280965794500,0.328491449356079,L, + 282890217750,0.313037574291229,L, + 284814641000,0.297583580017090,L, + 286739064250,0.282129675149918,L, + 288663487500,0.266675680875778,L, + 290587910750,0.251221776008606,L, + 292512334000,0.235767766833305,L, + 294436757250,0.220313861966133,L, + 296361180500,0.204859837889671,L, + 298285603750,0.189405977725983,L, + 300210027000,0.173951983451843,L, + 302134450250,0.158498063683510,L, + 304058873500,0.328915059566498,L, + 305983296750,0.406290739774704,L, + 307907720000,0.466422289609909,L, + 309832143250,0.519544839859009,L, + 311756566500,0.568158447742462,L, + 313680989750,0.613338053226471,L, + 315605413000,0.655649244785309,L, + 317529836250,0.695418059825897,L, + 319454259500,0.732839167118073,L, + 321378682750,0.768024981021881,L, + 323303106000,0.801031291484833,L, + 325227529250,0.831871926784515,L, + 327151952500,0.860525727272034,L, + 329076375750,0.886940240859985,L, + 331000799000,0.911032855510712,L, + 332925222250,0.932690680027008,L, + 334849645500,0.951766371726990,L, + 336774068750,0.968073844909668,L, + 338698492000,0.981380462646484,L, + 340622915250,0.991396188735962,L, + 342547338500,0.997756659984589,L, + 344471761750,0.999999880790710,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_fire_1_003" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.544200599193573 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.544200599193573,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 4.196186542510986 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,4.196186542510986,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -14.220603942871094 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-14.220603942871094,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -49.263548766062833 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-49.263548766062833,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.448109865188599 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109865188599,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.448109865188599 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109865188599,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.448109626770020 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109626770020,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_fire_1_002" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -2.597117662429810 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-2.597117662429810,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.685384750366211 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.685384750366211,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 7.254366397857666 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,7.254366397857666,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -49.263548766062833 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-49.263548766062833,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.448109865188599 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109865188599,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.448109865188599 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109865188599,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.448109626770020 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.448109626770020,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_fire_1_001" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 5.515228271484375 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,5.515228271484375,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.202894210815430 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.202894210815430,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -4.253108978271484 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-4.253108978271484,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.904528617858887 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.904528617858887,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.904528617858887 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.904528617858887,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.904528617858887 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.904528617858887,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_006" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -2.954452276229858 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-2.954452276229858,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 4.319375514984131 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,4.319375514984131,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 8.154943466186523 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,8.154943466186523,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -32.626775476350190 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-32.626775476350190,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.600598692893982 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.600598692893982,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.600598692893982 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.600598692893982,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.600598692893982 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.600598692893982,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_005" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -3.166412353515625 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-3.166412353515625,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 4.319375514984131 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,4.319375514984131,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 8.486035346984863 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,8.486035346984863,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -54.238607331074192 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-54.238607331074192,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.492693424224854 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.492693424224854,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.492693424224854 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.492693424224854,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.492693185806274 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.492693185806274,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_004" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 5.948089599609375 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,5.948089599609375,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.959203004837036 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.959203004837036,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -3.643865108489990 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-3.643865108489990,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -134.193081792884556 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-134.193081792884556,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.829584956169128 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.829584956169128,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.829584956169128 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.829584956169128,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.829584956169128 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.829584956169128,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_003" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 5.043613910675049 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,5.043613910675049,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 3.468612670898438 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,3.468612670898438,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -11.242835044860840 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-11.242835044860840,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -100.379840986002321 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-100.379840986002321,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.276839375495911 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.276839375495911,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.276839375495911 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.276839375495911,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.276839375495911 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.276839375495911,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_002" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 9.313110351562500 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,9.313110351562500,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 5.581695079803467 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,5.581695079803467,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -11.004759788513184 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-11.004759788513184,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -54.238603915979610 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-54.238603915979610,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.462559223175049 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.462559223175049,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.462559223175049 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.462559223175049,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.462559223175049 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.462559223175049,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_fire_2_002" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.901066601276398 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.901066601276398,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 4.174376964569092 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,4.174376964569092,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -13.516775131225586 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-13.516775131225586,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 8.207412292543051 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,8.207412292543051,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.827595472335815 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.827595472335815,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.231772422790527 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.231772422790527,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.231772661209106 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.231772661209106,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::gt_smoke_1_001" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 5.988043785095215 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,5.988043785095215,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 3.293737173080444 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,3.293737173080444,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -10.272465705871582 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-10.272465705871582,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 2.608999729156494 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.608999729156494,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 2.608999729156494 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.608999729156494,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 2.608999729156494 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,2.608999729156494,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.2,0.1,0.4,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 344471761750 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/demo/assets/city/textures/daa_a.png b/demo/assets/city/textures/daa_a.png new file mode 100644 index 0000000..0c92b57 Binary files /dev/null and b/demo/assets/city/textures/daa_a.png differ diff --git a/demo/assets/city/textures/daa_e.png b/demo/assets/city/textures/daa_e.png new file mode 100644 index 0000000..40ef40f Binary files /dev/null and b/demo/assets/city/textures/daa_e.png differ diff --git a/demo/assets/city/textures/daa_m.png b/demo/assets/city/textures/daa_m.png new file mode 100644 index 0000000..2657be9 Binary files /dev/null and b/demo/assets/city/textures/daa_m.png differ diff --git a/demo/assets/city/textures/daa_r.png b/demo/assets/city/textures/daa_r.png new file mode 100644 index 0000000..69440f1 Binary files /dev/null and b/demo/assets/city/textures/daa_r.png differ diff --git a/demo/assets/city/textures/fire1.png b/demo/assets/city/textures/fire1.png new file mode 100644 index 0000000..d4f8c9d Binary files /dev/null and b/demo/assets/city/textures/fire1.png differ diff --git a/demo/assets/city/textures/fire1_E2.png b/demo/assets/city/textures/fire1_E2.png new file mode 100644 index 0000000..b9100a6 Binary files /dev/null and b/demo/assets/city/textures/fire1_E2.png differ diff --git a/demo/assets/house/house.glb b/demo/assets/house/house.glb new file mode 100644 index 0000000..893b285 Binary files /dev/null and b/demo/assets/house/house.glb differ diff --git a/demo/assets/man/license.txt b/demo/assets/man/license.txt new file mode 100644 index 0000000..46b9d6e --- /dev/null +++ b/demo/assets/man/license.txt @@ -0,0 +1,11 @@ +Model Information: +* title: CR1CK3T, UoN Games Art, lowpoly character +* source: https://sketchfab.com/3d-models/cr1ck3t-uon-games-art-lowpoly-character-114452f775024dd3836aa88358ffbdbc +* author: Mizzle0 (https://sketchfab.com/maxrosier99) + +Model License: +* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) +* requirements: Author must be credited. Commercial use is allowed. + +If you use this 3D model in your project be sure to copy paste this credit wherever you share it: +This work is based on "CR1CK3T, UoN Games Art, lowpoly character" (https://sketchfab.com/3d-models/cr1ck3t-uon-games-art-lowpoly-character-114452f775024dd3836aa88358ffbdbc) by Mizzle0 (https://sketchfab.com/maxrosier99) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/demo/assets/man/scene.bin b/demo/assets/man/scene.bin new file mode 100644 index 0000000..1cf475a Binary files /dev/null and b/demo/assets/man/scene.bin differ diff --git a/demo/assets/man/scene.gltf b/demo/assets/man/scene.gltf new file mode 100644 index 0000000..c34dc17 --- /dev/null +++ b/demo/assets/man/scene.gltf @@ -0,0 +1,8324 @@ +{ + "accessors": [ + { + "bufferView": 3, + "componentType": 5126, + "count": 4601, + "max": [ + 23.750917434692383, + 82.996795654296875, + 21.12620735168457 + ], + "min": [ + -23.750917434692383, + -0.043308783322572708, + -21.12620735168457 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 55212, + "componentType": 5126, + "count": 4601, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "componentType": 5126, + "count": 4601, + "max": [ + 0.99985182285308838, + 0.99974137544631958, + 0.99999904632568359, + 1 + ], + "min": [ + -0.99998903274536133, + -0.99932253360748291, + -0.99999803304672241, + -1 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 4601, + "max": [ + 0.99595266580581665, + 0.99468064308166504 + ], + "min": [ + 0.00044465833343565464, + 0.0020656827837228775 + ], + "type": "VEC2" + }, + { + "bufferView": 2, + "byteOffset": 36808, + "componentType": 5126, + "count": 4601, + "max": [ + 0.99595266580581665, + 0.99468064308166504 + ], + "min": [ + 0.00044465833343565464, + 0.0020656827837228775 + ], + "type": "VEC2" + }, + { + "bufferView": 2, + "byteOffset": 73616, + "componentType": 5126, + "count": 4601, + "max": [ + 1.6836422681808472, + 0.67561614513397217 + ], + "min": [ + -23.500690460205078, + -53.715732574462891 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "componentType": 5125, + "count": 14811, + "max": [ + 4600 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 5, + "componentType": 5126, + "count": 54, + "max": [ + 1, + 0.99797391891479492, + 1, + 0, + 1, + 1, + 0.99999988079071045, + 0, + 1, + 1, + 1, + 0, + 63.229183197021484, + 54.753280639648438, + 23.612985610961914, + 1 + ], + "min": [ + -0.91119015216827393, + -0.98817622661590576, + -1, + 0, + -0.9970051646232605, + -0.81915229558944702, + -0.45148447155952454, + 0, + -0.98874640464782715, + -0.99924135208129883, + -0.99945223331451416, + 0, + -66.6209716796875, + -76.733367919921875, + -55.697460174560547, + 1 + ], + "type": "MAT4" + }, + { + "bufferView": 0, + "componentType": 5123, + "count": 4601, + "max": [ + 51, + 51, + 51, + 43 + ], + "min": [ + 1, + 1, + 1, + 1 + ], + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 73616, + "componentType": 5126, + "count": 4601, + "max": [ + 1, + 0.5, + 0.31343787908554077, + 0.25 + ], + "min": [ + 0.25, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "componentType": 5126, + "count": 106, + "max": [ + 6.4965171813964844, + 4.7683749926363816e-07, + 4.7683795401098905e-07 + ], + "min": [ + 6.4965124130249023, + -9.5367431640625e-07, + -9.5367431640625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 424, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1272, + "componentType": 5126, + "count": 106, + "max": [ + 0.99998319149017334, + 1.0000492334365845, + 1.0000004768371582 + ], + "min": [ + 0.99995189905166626, + 1.0000177621841431, + 0.99999898672103882 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 848, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "componentType": 5126, + "count": 106, + "max": [ + 0.0075317895971238613, + 0.051534812897443771, + 0.51560753583908081, + 0.99997013807296753 + ], + "min": [ + -0.075826644897460938, + -0.098618783056735992, + 0.0076595544815063477, + 0.85613006353378296 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1272, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2544, + "componentType": 5126, + "count": 106, + "max": [ + 17.328296661376953, + 1.907350679175579e-06, + 9.5367465746676316e-07 + ], + "min": [ + 17.328292846679688, + -1.9073486328125e-06, + -9.5367431640625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1696, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 3816, + "componentType": 5126, + "count": 106, + "max": [ + 0.99997407197952271, + 1.0000381469726562, + 1.0000002384185791 + ], + "min": [ + 0.99996191263198853, + 1.0000259876251221, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2120, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1696, + "componentType": 5126, + "count": 106, + "max": [ + 0.0017734899884089828, + 0.038277417421340942, + 0.86715042591094971, + 0.71260946989059448 + ], + "min": [ + -0.028021134436130524, + -0.11036410182714462, + 0.70156008005142212, + 0.49335533380508423 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2544, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 5088, + "componentType": 5126, + "count": 106, + "max": [ + 21.861812591552734, + 2.7320368189975852e-12, + 8.106231689453125e-06 + ], + "min": [ + 21.86180305480957, + -5.7220458984375e-06, + 3.3378589705534978e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2968, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 6360, + "componentType": 5126, + "count": 106, + "max": [ + 0.99998408555984497, + 1.0000205039978027, + 0.9999995231628418 + ], + "min": [ + 0.99998080730438232, + 1.0000165700912476, + 0.99999892711639404 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3392, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 3392, + "componentType": 5126, + "count": 106, + "max": [ + 0.0087029449641704559, + 0.0046659479849040508, + -0.34214836359024048, + 0.9396020770072937 + ], + "min": [ + 0.0073927240446209908, + 0.0025800955481827259, + -0.62405288219451904, + 0.78133326768875122 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 3816, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 7632, + "componentType": 5126, + "count": 106, + "max": [ + 7.6293954407447018e-06, + 2.86102294921875e-06, + 4.3934774398803711 + ], + "min": [ + -7.62939453125e-06, + -4.645173135031655e-13, + 4.3934731483459473 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4240, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 8904, + "componentType": 5126, + "count": 106, + "max": [ + 0.99999821186065674, + 1.0000032186508179, + 1.0000004768371582 + ], + "min": [ + 0.99999648332595825, + 1.0000016689300537, + 1 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4664, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 5088, + "componentType": 5126, + "count": 106, + "max": [ + 0.37668392062187195, + 0.9947737455368042, + 0.072381913661956787, + 0.043122533708810806 + ], + "min": [ + 0.097897164523601532, + 0.92455917596817017, + -0.067628301680088043, + -0.089893676340579987 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 5088, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 10176, + "componentType": 5126, + "count": 106, + "max": [ + 6.4965152740478516, + 4.7683732873338158e-07, + 4.7683761295047589e-07 + ], + "min": [ + 6.4965105056762695, + -1.9073486328125e-06, + -2.3841903384891339e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5512, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 11448, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000017881393433, + 1.0000001192092896, + 1.0000007152557373 + ], + "min": [ + 0.99999934434890747, + 0.99999713897705078, + 0.99999946355819702 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5936, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 6784, + "componentType": 5126, + "count": 106, + "max": [ + 0.071350090205669403, + 0.096097767353057861, + 0.51555204391479492, + 0.99996703863143921 + ], + "min": [ + -0.012597798369824886, + -0.052322901785373688, + 0.0080198301002383232, + 0.85670459270477295 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 6360, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 12720, + "componentType": 5126, + "count": 106, + "max": [ + 17.261421203613281, + 1.9073502244282281e-06, + 4.7683749926363816e-07 + ], + "min": [ + 17.26141357421875, + -1.430511474609375e-06, + -4.7683806769782677e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6784, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 13992, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000022649765015, + 0.99999994039535522, + 1.0000002384185791 + ], + "min": [ + 1.0000002384185791, + 0.99999815225601196, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 7208, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 8480, + "componentType": 5126, + "count": 106, + "max": [ + 0.025244837626814842, + 0.10570942610502243, + 0.86357581615447998, + 0.71275430917739868 + ], + "min": [ + -0.0045955800451338291, + -0.041128762066364288, + 0.7014126181602478, + 0.50165116786956787 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7632, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 15264, + "componentType": 5126, + "count": 106, + "max": [ + 21.834896087646484, + 1.9073486328125e-05, + 5.245208740234375e-06 + ], + "min": [ + 21.834884643554688, + 1.1444091796875e-05, + 1.1920928955078125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8056, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 16536, + "componentType": 5126, + "count": 106, + "max": [ + 1.000001072883606, + 1, + 1.0000004768371582 + ], + "min": [ + 0.99999970197677612, + 0.99999850988388062, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8480, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 10176, + "componentType": 5126, + "count": 106, + "max": [ + -0.0082118893042206764, + 0.0054064732976257801, + -0.32563880085945129, + 0.94545012712478638 + ], + "min": [ + -0.0096972743049263954, + 0.0012864551972597837, + -0.62123918533325195, + 0.78356969356536865 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 8904, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 17808, + "componentType": 5126, + "count": 106, + "max": [ + 7.62939453125e-06, + 2.384185791015625e-06, + -3.9695959091186523 + ], + "min": [ + -7.6294072641758248e-06, + -4.76837158203125e-07, + -3.9695985317230225 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9328, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 19080, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000002384185791, + 1.0000004768371582 + ], + "min": [ + 0.99999970197677612, + 0.99999958276748657, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9752, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 11872, + "componentType": 5126, + "count": 106, + "max": [ + 0.36911353468894958, + 0.9946628212928772, + 0.067053794860839844, + 0.079945877194404602 + ], + "min": [ + 0.10019034892320633, + 0.92781949043273926, + -0.076348811388015747, + -0.05404379591345787 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10176, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 20352, + "componentType": 5126, + "count": 106, + "max": [ + 12.986026763916016, + 1.9073486328125e-06, + 1.9073518160439562e-06 + ], + "min": [ + 12.986015319824219, + -1.9073518160439562e-06, + -1.9073486328125e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 10600, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 21624, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000072717666626, + 1, + 0.99999797344207764 + ], + "min": [ + 1.0000069141387939, + 0.99999749660491943, + 0.99999523162841797 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 11024, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 13568, + "componentType": 5126, + "count": 106, + "max": [ + 0.78017103672027588, + 0.019641637802124023, + 0.071017198264598846, + 0.6690947413444519 + ], + "min": [ + 0.74111288785934448, + -0.0022494085133075714, + 0.051750365644693375, + 0.62153887748718262 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 11448, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 22896, + "componentType": 5126, + "count": 106, + "max": [ + 11.723823547363281, + 9.536759080219781e-07, + 1.9073486328125e-06 + ], + "min": [ + 11.723812103271484, + -9.5367499852727633e-07, + -1.907350679175579e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 11872, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 24168, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000026226043701, + 0.99999946355819702, + 1.000001072883606 + ], + "min": [ + 1.0000015497207642, + 0.99999809265136719, + 1 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 12296, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 15264, + "componentType": 5126, + "count": 106, + "max": [ + 0.01003335602581501, + 0.037916317582130432, + 0.24521219730377197, + 0.99465197324752808 + ], + "min": [ + 0.0043523148633539677, + 0.036822833120822906, + 0.095973238348960876, + 0.96871793270111084 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 12720, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 25440, + "componentType": 5126, + "count": 106, + "max": [ + 7.8402290344238281, + 2.384185791015625e-07, + 3.8147036320879124e-06 + ], + "min": [ + 7.8402261734008789, + -2.3841917595746054e-07, + -3.8146986298670527e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 13144, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 26712, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000002384185791, + 1.0000002384185791 + ], + "min": [ + 0.99999988079071045, + 0.99999964237213135, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 13568, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 16960, + "componentType": 5126, + "count": 106, + "max": [ + 0.019413061439990997, + -0.6131930947303772, + 0.058653209358453751, + 0.78822988271713257 + ], + "min": [ + -0.065637491643428802, + -0.63476818799972534, + -0.01524554006755352, + 0.77180463075637817 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 13992, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 27984, + "componentType": 5126, + "count": 106, + "max": [ + 2.8251571655273438, + -1.0633151531219482, + 3.4756348133087158 + ], + "min": [ + 2.8251419067382812, + -1.0633163452148438, + 3.4756321907043457 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 14416, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 29256, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000002384185791 + ], + "min": [ + 0.99999982118606567, + 0.99999970197677612, + 0.99999988079071045 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 14840, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 18656, + "componentType": 5126, + "count": 106, + "max": [ + 0.0072076478973031044, + -0.76246881484985352, + -0.0073050418868660927, + 0.64694356918334961 + ], + "min": [ + -0.0050209779292345047, + -0.76806318759918213, + -0.008364538662135601, + 0.64029973745346069 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 15264, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 30528, + "componentType": 5126, + "count": 106, + "max": [ + 2.4999618530273438, + 0.48956489562988281, + -7.1475028991699219 + ], + "min": [ + 2.4999561309814453, + 0.48956203460693359, + -7.1475143432617188 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 15688, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 31800, + "componentType": 5126, + "count": 106, + "max": [ + 0.99997401237487793, + 1.0000052452087402, + 1.0000228881835938 + ], + "min": [ + 0.99997180700302124, + 1.0000017881393433, + 1.0000207424163818 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 16112, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 20352, + "componentType": 5126, + "count": 106, + "max": [ + -0.096663787961006165, + 0.0039769960567355156, + -2.3337042875937186e-06, + 0.99531710147857666 + ], + "min": [ + -0.11681576073169708, + 6.2003246057429351e-06, + -0.0012619805056601763, + 0.99314498901367188 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 16536, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 33072, + "componentType": 5126, + "count": 106, + "max": [ + 10.52235221862793, + 3.814701358351158e-06, + 1.9073486328125e-06 + ], + "min": [ + 10.522346496582031, + -7.62939453125e-06, + -1.9073486328125e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 16960, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 34344, + "componentType": 5126, + "count": 106, + "max": [ + 0.99998849630355835, + 1.0000056028366089, + 1.0000088214874268 + ], + "min": [ + 0.99998807907104492, + 1.0000017881393433, + 1.0000048875808716 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 17384, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 22048, + "componentType": 5126, + "count": 106, + "max": [ + -0.70127278566360474, + 0.030955784022808075, + 0.026485953480005264, + 0.71176367998123169 + ], + "min": [ + -0.70914840698242188, + -0.021881056949496269, + -0.016764247789978981, + 0.7049747109413147 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 17808, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 35616, + "componentType": 5126, + "count": 106, + "max": [ + 9.0047988891601562, + 9.5367431640625e-07, + 1.430511474609375e-06 + ], + "min": [ + 9.0047874450683594, + -7.1525641942571383e-07, + -1.9073486328125e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 18232, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 36888, + "componentType": 5126, + "count": 106, + "max": [ + 0.99999696016311646, + 1.0000056028366089, + 1.0000007152557373 + ], + "min": [ + 0.99999511241912842, + 1.0000025033950806, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 18656, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 23744, + "componentType": 5126, + "count": 106, + "max": [ + 0.0035203387960791588, + -0.11883562803268433, + 0.80243134498596191, + 0.69941473007202148 + ], + "min": [ + -0.014649889431893826, + -0.11973489820957184, + 0.70461511611938477, + 0.58460873365402222 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 19080, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 38160, + "componentType": 5126, + "count": 106, + "max": [ + 7.5190963745117188, + 9.5367499852727633e-07, + 7.62939453125e-06 + ], + "min": [ + 7.5190896987915039, + -9.5367431640625e-07, + -3.8147036320879124e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 19504, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 39432, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000005960464478, + 1 + ], + "min": [ + 0.99999946355819702, + 1, + 0.99999958276748657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 19928, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 25440, + "componentType": 5126, + "count": 106, + "max": [ + 0.0067225052043795586, + 0.60377007722854614, + 0.017088623717427254, + 0.81436616182327271 + ], + "min": [ + -0.090410567820072174, + 0.57814598083496094, + -0.039754554629325867, + 0.79272651672363281 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 20352, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 40704, + "componentType": 5126, + "count": 106, + "max": [ + 2.8251571655273438, + 0.83216953277587891, + -3.4756307601928711 + ], + "min": [ + 2.8251419067382812, + 0.8321681022644043, + -3.475632905960083 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 20776, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 41976, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.99999994039535522, + 0.99999964237213135, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 21200, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 27136, + "componentType": 5126, + "count": 106, + "max": [ + 0.070861935615539551, + 0.83176690340042114, + 0.063574634492397308, + 0.55550163984298706 + ], + "min": [ + 0.059491094201803207, + 0.82694435119628906, + 0.061746548861265182, + 0.54711037874221802 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 21624, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 43248, + "componentType": 5126, + "count": 106, + "max": [ + 5.3837127685546875, + 7.62939453125e-06, + 9.536759080219781e-07 + ], + "min": [ + 5.3837013244628906, + -7.62939453125e-06, + -9.5367613539565355e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 22048, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 44520, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000065565109253, + 1.0000131130218506, + 1.0000039339065552 + ], + "min": [ + 0.99999839067459106, + 0.99999856948852539, + 0.99999582767486572 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 22472, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 28832, + "componentType": 5126, + "count": 106, + "max": [ + 0.0431932732462883, + 0.069236055016517639, + 0.17506712675094604, + 0.98453670740127563 + ], + "min": [ + -0.050013881176710129, + -0.056889284402132034, + 0.17072883248329163, + 0.98275071382522583 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 22896, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 45792, + "componentType": 5126, + "count": 106, + "max": [ + 9.0574226379394531, + 7.62939453125e-06, + 9.5367499852727633e-07 + ], + "min": [ + 9.0574073791503906, + -3.814697265625e-06, + -9.536759080219781e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 23320, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 47064, + "componentType": 5126, + "count": 106, + "max": [ + 1.000003457069397, + 1.0000067949295044, + 1.0000019073486328 + ], + "min": [ + 0.99999940395355225, + 0.9999995231628418, + 0.99999779462814331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 23744, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 30528, + "componentType": 5126, + "count": 106, + "max": [ + -0.040183823555707932, + 0.11810252070426941, + 0.1545318216085434, + 0.98645174503326416 + ], + "min": [ + -0.10594840347766876, + 0.025113567709922791, + 0.14064289629459381, + 0.98035269975662231 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 24168, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 48336, + "componentType": 5126, + "count": 106, + "max": [ + 7.3813648223876953, + 7.6294018072076142e-06, + 4.7683749926363816e-07 + ], + "min": [ + 7.3813624382019043, + -1.52587890625e-05, + -9.5367477115360089e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 24592, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 49608, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000030994415283, + 1.0000032186508179, + 1.0000007152557373 + ], + "min": [ + 1.0000002384185791, + 0.99999821186065674, + 0.99999856948852539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 25016, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 32224, + "componentType": 5126, + "count": 106, + "max": [ + 0.061529844999313354, + -0.034227974712848663, + -0.49059247970581055, + 0.86892706155776978 + ], + "min": [ + 0.010350955650210381, + -0.072621658444404602, + -0.49477744102478027, + 0.86655110120773315 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 25440, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 50880, + "componentType": 5126, + "count": 106, + "max": [ + 9.3143653869628906, + 7.6293954407447018e-06, + 4.76837158203125e-07 + ], + "min": [ + 9.3143539428710938, + -7.62939453125e-06, + -4.7683749926363816e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 25864, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 52152, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000009536743164, + 1.0000016689300537, + 1.0000009536743164 + ], + "min": [ + 0.9999995231628418, + 0.99999916553497314, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 26288, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 33920, + "componentType": 5126, + "count": 106, + "max": [ + -0.029768895357847214, + -0.032925430685281754, + -0.42081409692764282, + 0.90559566020965576 + ], + "min": [ + -0.053417786955833435, + -0.051848553121089935, + -0.42187556624412537, + 0.90421992540359497 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 26712, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 53424, + "componentType": 5126, + "count": 106, + "max": [ + 2.3673553466796875, + -0.87353706359863281, + 2.3262026309967041 + ], + "min": [ + 2.3673248291015625, + -0.87354278564453125, + 2.3262004852294922 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 27136, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 54696, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000009536743164, + 1.0000004768371582 + ], + "min": [ + 0.9999997615814209, + 0.99999964237213135, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 27560, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 35616, + "componentType": 5126, + "count": 106, + "max": [ + -0.0096892099827528, + -0.016792448237538338, + -0.48625290393829346, + 0.87358719110488892 + ], + "min": [ + -0.01284039206802845, + -0.019380975514650345, + -0.48630297183990479, + 0.87351781129837036 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 27984, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 55968, + "componentType": 5126, + "count": 106, + "max": [ + 4.7111854553222656, + 7.6293972597341053e-06, + 9.5367465746676316e-07 + ], + "min": [ + 4.7111740112304688, + -7.6293918027658947e-06, + -9.5367465746676316e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 28408, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 57240, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000035762786865, + 1.0000202655792236, + 1.0000015497207642 + ], + "min": [ + 0.99999445676803589, + 1.0000039339065552, + 0.99999350309371948 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 28832, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 37312, + "componentType": 5126, + "count": 106, + "max": [ + 0.025502711534500122, + 0.076684281229972839, + 0.21734724938869476, + 0.97699642181396484 + ], + "min": [ + -0.12147817760705948, + -0.093372926115989685, + 0.20757602155208588, + 0.97038918733596802 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 29256, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 58512, + "componentType": 5126, + "count": 106, + "max": [ + 9.455841064453125, + 3.814697265625e-06, + 9.5367522590095177e-07 + ], + "min": [ + 9.4558219909667969, + -7.62939453125e-06, + -1.9073482917519868e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 29680, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 59784, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000019073486328, + 1.0000084638595581, + 1.0000015497207642 + ], + "min": [ + 0.99999779462814331, + 1.000001072883606, + 0.99999773502349854 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 30104, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 39008, + "componentType": 5126, + "count": 106, + "max": [ + 0.033704463392496109, + 0.033473096787929535, + 0.10208963602781296, + 0.99492216110229492 + ], + "min": [ + -0.07339102029800415, + -0.086843430995941162, + 0.096299983561038971, + 0.99129617214202881 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 30528, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 61056, + "componentType": 5126, + "count": 106, + "max": [ + 7.5212583541870117, + 7.6294090831652284e-06, + 4.7683732873338158e-07 + ], + "min": [ + 7.5212554931640625, + -7.629402716702316e-06, + -4.76837158203125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 30952, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 62328, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000008344650269, + 1.0000056028366089, + 1.0000007152557373 + ], + "min": [ + 0.99999767541885376, + 1.0000002384185791, + 0.99999868869781494 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 31376, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 40704, + "componentType": 5126, + "count": 106, + "max": [ + 0.076667584478855133, + 0.015440498478710651, + -0.48621121048927307, + 0.87210500240325928 + ], + "min": [ + 0.042487792670726776, + -0.050965093076229095, + -0.49164199829101562, + 0.86784982681274414 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 31800, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 63600, + "componentType": 5126, + "count": 106, + "max": [ + 9.1424293518066406, + 7.6294054451864213e-06, + 2.3841874963181908e-07 + ], + "min": [ + 9.1424179077148438, + -7.62939453125e-06, + -2.3841874963181908e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 32224, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 64872, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000009536743164, + 1.0000020265579224, + 1.0000007152557373 + ], + "min": [ + 0.99999946355819702, + 0.99999982118606567, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 32648, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 42400, + "componentType": 5126, + "count": 106, + "max": [ + 0.05825917050242424, + 0.053241509944200516, + -0.40527716279029846, + 0.91198205947875977 + ], + "min": [ + 0.035085238516330719, + 0.023467913269996643, + -0.40775060653686523, + 0.91084921360015869 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 33072, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 66144, + "componentType": 5126, + "count": 106, + "max": [ + 2.367340087890625, + -0.87353897094726562, + -2.2562093734741211 + ], + "min": [ + 2.3673095703125, + -0.87354660034179688, + -2.256211519241333 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 33496, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 67416, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000005960464478, + 1.0000009536743164, + 1.0000003576278687 + ], + "min": [ + 0.99999970197677612, + 0.99999964237213135, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 33920, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 44096, + "componentType": 5126, + "count": 106, + "max": [ + 0.016270555555820465, + 0.032411821186542511, + -0.49221509695053101, + 0.86983209848403931 + ], + "min": [ + 0.013102984987199306, + 0.028122629970312119, + -0.49238833785057068, + 0.86971133947372437 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 34344, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 68688, + "componentType": 5126, + "count": 106, + "max": [ + 11.854930877685547, + 1.9073486328125e-06, + 2.384185791015625e-07 + ], + "min": [ + 11.854915618896484, + -1.9073486328125e-06, + -3.5762786865234375e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 34768, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 69960, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000002384185791, + 1.0000003576278687, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.99999964237213135, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 35192, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 45792, + "componentType": 5126, + "count": 106, + "max": [ + 0.030322734266519547, + -0.0020987330935895443, + 0.0082754064351320267, + 0.99995410442352295 + ], + "min": [ + -0.023032566532492638, + -0.026660248637199402, + -0.024563875049352646, + 0.99928468465805054 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 35616, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 71232, + "componentType": 5126, + "count": 106, + "max": [ + 3.814697265625e-06, + 4.7683732873338158e-07, + 0.59894275665283203 + ], + "min": [ + -7.62939453125e-06, + -4.76837158203125e-07, + 0.59894227981567383 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 36040, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 72504, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000002384185791, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.99999964237213135, + 0.99999964237213135, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 36464, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 47488, + "componentType": 5126, + "count": 106, + "max": [ + 0.012190875597298145, + 0.011397884227335453, + 0.15442162752151489, + 0.99225902557373047 + ], + "min": [ + -0.040083039551973343, + -0.02291562594473362, + 0.12177041918039322, + 0.98715978860855103 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 36888, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 73776, + "componentType": 5126, + "count": 106, + "max": [ + 7.9516620635986328, + 1.9073490875598509e-06, + 4.7683784032415133e-07 + ], + "min": [ + 7.951657772064209, + -1.9073499970545527e-06, + -4.76837158203125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 37312, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 75048, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000054836273193, + 1.0000096559524536, + 1.0000060796737671 + ], + "min": [ + 0.99999785423278809, + 0.99999558925628662, + 0.99999696016311646 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 37736, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 49184, + "componentType": 5126, + "count": 106, + "max": [ + 0.039675112813711166, + 0.091269142925739288, + -0.24631290137767792, + 0.96811050176620483 + ], + "min": [ + -0.046538975089788437, + -0.051142234355211258, + -0.32009291648864746, + 0.94626748561859131 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 38160, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 76320, + "componentType": 5126, + "count": 106, + "max": [ + 9.3780517578125, + 3.8146918086567894e-06, + 4.76837158203125e-07 + ], + "min": [ + 9.3780450820922852, + -1.9073522707913071e-06, + -4.7683749926363816e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 38584, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 77592, + "componentType": 5126, + "count": 106, + "max": [ + 1.000002384185791, + 1.0000038146972656, + 1.0000029802322388 + ], + "min": [ + 0.99999886751174927, + 0.99999827146530151, + 0.99999856948852539 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 39008, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 50880, + "componentType": 5126, + "count": 106, + "max": [ + 0.028514249250292778, + 0.078643381595611572, + -0.025265885517001152, + 0.99934214353561401 + ], + "min": [ + -0.033962100744247437, + -0.034603968262672424, + -0.085266850888729095, + 0.995697021484375 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 39432, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 78864, + "componentType": 5126, + "count": 106, + "max": [ + 11.554523468017578, + 3.814697265625e-06, + 2.384185791015625e-07 + ], + "min": [ + 11.554513931274414, + -3.8146990846144035e-06, + -4.7683749926363816e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 39856, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 80136, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000013113021851, + 1.0000021457672119, + 1.0000014305114746 + ], + "min": [ + 0.99999958276748657, + 0.99999916553497314, + 0.99999922513961792 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 40280, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 52576, + "componentType": 5126, + "count": 106, + "max": [ + 0.028231261298060417, + 0.045008920133113861, + 0.076716698706150055, + 0.99911695718765259 + ], + "min": [ + -0.026719026267528534, + -0.023732224479317665, + 0.03831617534160614, + 0.99607861042022705 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 40704, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 81408, + "componentType": 5126, + "count": 106, + "max": [ + 13.060184478759766, + 1.9073513612966053e-06, + 2.3841883489694737e-07 + ], + "min": [ + 13.060173034667969, + -1.907350679175579e-06, + -4.76837158203125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41128, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 82680, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000009536743164, + 1.0000011920928955, + 1.0000008344650269 + ], + "min": [ + 0.99999982118606567, + 0.99999970197677612, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 41552, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 54272, + "componentType": 5126, + "count": 106, + "max": [ + 0.016292603686451912, + 0.017517285421490669, + 0.018749674782156944, + 0.99997764825820923 + ], + "min": [ + -0.014090023003518581, + -0.015668937936425209, + 0.001386499498039484, + 0.99960249662399292 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 41976, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 83952, + "componentType": 5126, + "count": 106, + "max": [ + -2.4738883972167969, + -3.5492687225341797, + 1.1920928955078125e-06 + ], + "min": [ + -2.4739036560058594, + -3.5492711067199707, + 0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42400, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 85224, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 0.99999964237213135, + 0.99999970197677612, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 42824, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 55968, + "componentType": 5126, + "count": 106, + "max": [ + 0.0023869376163929701, + 0.0023209862411022186, + 0.98134446144104004, + -0.19223563373088837 + ], + "min": [ + -0.0029592723585665226, + -0.0018493912648409605, + 0.9808925986289978, + -0.19452486932277679 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 43248, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 86496, + "componentType": 5126, + "count": 106, + "max": [ + 12.257850646972656, + 3.814697265625e-06, + 2.86102294921875e-06 + ], + "min": [ + 12.257845878601074, + -1.907350679175579e-06, + -2.86102294921875e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 43672, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 87768, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000145435333252, + 0.99999737739562988, + 1.0000066757202148 + ], + "min": [ + 1.0000084638595581, + 0.99998438358306885, + 0.99999731779098511 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 44096, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 57664, + "componentType": 5126, + "count": 106, + "max": [ + 0.96936285495758057, + -0.21079136431217194, + 0.089623816311359406, + -0.077992245554924011 + ], + "min": [ + 0.9561348557472229, + -0.23527608811855316, + -0.15855331718921661, + -0.12327392399311066 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 44520, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 89040, + "componentType": 5126, + "count": 106, + "max": [ + 11.664706230163574, + 3.8146986298670527e-06, + 9.5367465746676316e-07 + ], + "min": [ + 11.664699554443359, + -1.9073499970545527e-06, + -9.5367477115360089e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 44944, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 90312, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000038146972656, + 0.99999904632568359, + 1.0000070333480835 + ], + "min": [ + 1.0000005960464478, + 0.99999326467514038, + 1.0000007152557373 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 45368, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 59360, + "componentType": 5126, + "count": 106, + "max": [ + -0.10462547093629837, + 0.46479594707489014, + 0.017172470688819885, + 0.93561553955078125 + ], + "min": [ + -0.12933893501758575, + 0.33560675382614136, + -0.0078530404716730118, + 0.87598681449890137 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 45792, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 91584, + "componentType": 5126, + "count": 106, + "max": [ + 10.986049652099609, + 3.814697265625e-06, + 2.384185791015625e-07 + ], + "min": [ + 10.986042022705078, + -3.814697265625e-06, + -3.5762795391747204e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 46216, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 92856, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 0.99999880790710449, + 1.000005841255188 + ], + "min": [ + 0.99999868869781494, + 0.99999558925628662, + 1.000003457069397 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 46640, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 61056, + "componentType": 5126, + "count": 106, + "max": [ + -0.20350219309329987, + 0.1305793821811676, + 0.0015040754806250334, + 0.97818028926849365 + ], + "min": [ + -0.22761115431785583, + 0.041762635111808777, + -0.018659550696611404, + 0.96626794338226318 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 47064, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 94128, + "componentType": 5126, + "count": 106, + "max": [ + 8.0772266387939453, + 3.8146986298670527e-06, + 9.5367431640625e-07 + ], + "min": [ + 8.0772171020507812, + -3.814697265625e-06, + -9.5367499852727633e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 47488, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 95400, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000002384185791, + 1.0000007152557373, + 1.0000013113021851 + ], + "min": [ + 0.99999958276748657, + 0.99999886751174927, + 1.0000002384185791 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 47912, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 62752, + "componentType": 5126, + "count": 106, + "max": [ + -0.20163530111312866, + 0.090481691062450409, + -0.06206062063574791, + 0.97544598579406738 + ], + "min": [ + -0.218184694647789, + 0.052674226462841034, + -0.070478253066539764, + 0.97065174579620361 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 48336, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 96672, + "componentType": 5126, + "count": 106, + "max": [ + -4.4538154602050781, + -3.5552477836608887, + -4.9024381637573242 + ], + "min": [ + -4.4538307189941406, + -3.5552504062652588, + -4.9024419784545898 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 48760, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 97944, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.000001072883606, + 1.0000007152557373 + ], + "min": [ + 0.99999982118606567, + 0.99999964237213135, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 49184, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 64448, + "componentType": 5126, + "count": 106, + "max": [ + -0.2390572726726532, + -0.47268083691596985, + 0.81057459115982056, + -0.24757847189903259 + ], + "min": [ + -0.24244996905326843, + -0.47514519095420837, + 0.80908000469207764, + -0.24982409179210663 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 49608, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 99216, + "componentType": 5126, + "count": 106, + "max": [ + 5.7627487182617188, + 1.4305121567304013e-06, + 2.3841937490942655e-07 + ], + "min": [ + 5.7627372741699219, + -9.5367443009308772e-07, + -4.76837158203125e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 50032, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 100488, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000017881393433, + 1.0000025033950806, + 1.0000014305114746 + ], + "min": [ + 0.99999850988388062, + 0.99999797344207764, + 0.99999934434890747 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 50456, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 66144, + "componentType": 5126, + "count": 106, + "max": [ + 0.044572960585355759, + 0.024731406942009926, + 0.58858650922775269, + 0.85773015022277832 + ], + "min": [ + -0.041963379830121994, + -0.041272126138210297, + 0.51297974586486816, + 0.80746036767959595 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 50880, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 101760, + "componentType": 5126, + "count": 106, + "max": [ + 6.8101539611816406, + 3.8147009036038071e-06, + 4.7683732873338158e-07 + ], + "min": [ + 6.8101482391357422, + -3.8146999941091053e-06, + -4.7683755610705703e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51304, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 103032, + "componentType": 5126, + "count": 106, + "max": [ + 1.000001072883606, + 1.0000014305114746, + 1.0000005960464478 + ], + "min": [ + 0.99999910593032837, + 0.99999880790710449, + 0.99999964237213135 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 51728, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 67840, + "componentType": 5126, + "count": 106, + "max": [ + 0.029279287904500961, + 0.010316913016140461, + 0.78799605369567871, + 0.64617133140563965 + ], + "min": [ + -0.026514982804656029, + -0.014380862936377525, + 0.76305985450744629, + 0.61505782604217529 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 52152, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 104304, + "componentType": 5126, + "count": 106, + "max": [ + 0.48115921020507812, + -4.7985196113586426, + 1.1920928955078125e-06 + ], + "min": [ + 0.48114395141601562, + -4.79852294921875, + 4.7683681714261184e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 52576, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 105576, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000007152557373, + 1.0000003576278687 + ], + "min": [ + 0.9999995231628418, + 0.99999946355819702, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 53000, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 69536, + "componentType": 5126, + "count": 106, + "max": [ + 0.0026838255580514669, + 0.003048610407859087, + -0.83126735687255859, + 0.55587005615234375 + ], + "min": [ + -0.0017565356101840734, + -0.0031547569669783115, + -0.83438819646835327, + 0.5511665940284729 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 53424, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 106848, + "componentType": 5126, + "count": 106, + "max": [ + 13.224605560302734, + 9.5367568064830266e-07, + 1.9073486328125e-06 + ], + "min": [ + 13.224599838256836, + -1.9073486328125e-06, + -1.9073504518019035e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 53848, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 108120, + "componentType": 5126, + "count": 106, + "max": [ + 1.000005841255188, + 1.000004768371582, + 1.000005841255188 + ], + "min": [ + 0.99999785423278809, + 0.99999344348907471, + 0.99999576807022095 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 54272, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 71232, + "componentType": 5126, + "count": 106, + "max": [ + 0.10516224801540375, + 0.30709117650985718, + 0.066545888781547546, + 0.99085772037506104 + ], + "min": [ + 0.07731512188911438, + 0.085674881935119629, + 0.045547857880592346, + 0.94492954015731812 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 54696, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 109392, + "componentType": 5126, + "count": 106, + "max": [ + 15.001644134521484, + 9.536759080219781e-07, + 1.9073493149335263e-06 + ], + "min": [ + 15.001632690429688, + -1.9073486328125e-06, + -1.9073499970545527e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 55120, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 110664, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000028610229492, + 1.0000021457672119, + 1.0000022649765015 + ], + "min": [ + 0.99999934434890747, + 0.9999968409538269, + 0.99999779462814331 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 55544, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 72928, + "componentType": 5126, + "count": 106, + "max": [ + 0.018044717609882355, + 0.11875999718904495, + 0.067437805235385895, + 0.99783045053482056 + ], + "min": [ + -0.016400784254074097, + -0.043583516031503677, + 0.063646353781223297, + 0.99072706699371338 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 55968, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 111936, + "componentType": 5126, + "count": 106, + "max": [ + 7.73394775390625, + 1.9073518160439562e-06, + 1.9073504518019035e-06 + ], + "min": [ + 7.7339324951171875, + -1.9073486328125e-06, + -1.9073486328125e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56392, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 113208, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000013113021851, + 1.000001072883606, + 1.000001072883606 + ], + "min": [ + 0.9999995231628418, + 0.99999827146530151, + 0.99999880790710449 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 56816, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 74624, + "componentType": 5126, + "count": 106, + "max": [ + 0.016662390902638435, + 0.085614681243896484, + 0.0284709632396698, + 0.99963176250457764 + ], + "min": [ + -0.013476744294166565, + -0.0061872126534581184, + 0.024923903867602348, + 0.99590891599655151 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 57240, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 114480, + "componentType": 5126, + "count": 106, + "max": [ + 8.3165626525878906, + 3.814697265625e-06, + 1.9073499970545527e-06 + ], + "min": [ + 8.3165550231933594, + -3.814697265625e-06, + -1.9073513612966053e-06 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 57664, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 115752, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000009536743164, + 1.0000007152557373, + 1.0000008344650269 + ], + "min": [ + 0.9999997615814209, + 0.9999992847442627, + 0.9999995231628418 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 58088, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 76320, + "componentType": 5126, + "count": 106, + "max": [ + 0.013566242530941963, + 0.068628564476966858, + 0.10767020285129547, + 0.99370664358139038 + ], + "min": [ + -0.0071345800533890724, + 0.033336658030748367, + 0.10436790436506271, + 0.99180173873901367 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 58512, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 117024, + "componentType": 5126, + "count": 106, + "max": [ + 7.6293981692288071e-06, + 5.1173439025878906, + 7.5198769569396973 + ], + "min": [ + -7.6293972597341053e-06, + 5.1173396110534668, + 7.519871711730957 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 58936, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 118296, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000002384185791, + 1.0000004768371582, + 1.0000004768371582 + ], + "min": [ + 0.99999964237213135, + 0.99999958276748657, + 0.9999997615814209 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 59360, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 78016, + "componentType": 5126, + "count": 106, + "max": [ + 0.11171979457139969, + 0.0047352099791169167, + 0.98005032539367676, + 0.16783221065998077 + ], + "min": [ + 0.10694146901369095, + 0.0014402723172679543, + 0.97951507568359375, + 0.1675114631652832 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 59784, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 119568, + "componentType": 5126, + "count": 106, + "max": [ + 8.3362159729003906, + 1.9073486328125e-06, + 1.1920950271360198e-07 + ], + "min": [ + 8.3362083435058594, + -9.5367568064830266e-07, + -2.3841883489694737e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 60208, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 120840, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000003576278687, + 1.0000004768371582 + ], + "min": [ + 0.99999940395355225, + 0.9999995231628418, + 0.99999958276748657 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 60632, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 79712, + "componentType": 5126, + "count": 106, + "max": [ + 0.011618900112807751, + 0.011968532577157021, + 0.10847625881433487, + 0.99429470300674438 + ], + "min": [ + -0.012245784513652325, + -0.010249201208353043, + 0.10555188357830048, + 0.99406957626342773 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 61056, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 122112, + "componentType": 5126, + "count": 106, + "max": [ + 8.3330268859863281, + 9.5367431640625e-07, + 2.3841874963181908e-07 + ], + "min": [ + 8.3330192565917969, + -9.5367454377992544e-07, + -2.384185791015625e-07 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 61480, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 123384, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000004768371582, + 1.0000005960464478, + 1.0000004768371582 + ], + "min": [ + 0.99999988079071045, + 0.9999997615814209, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 61904, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 81408, + "componentType": 5126, + "count": 106, + "max": [ + 0.047586988657712936, + 0.025342503562569618, + -0.059557687491178513, + 0.99818509817123413 + ], + "min": [ + -0.048164393752813339, + -0.0049708918668329716, + -0.060441479086875916, + 0.99703317880630493 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 62328, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 124656, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000003576278687, + 1.0000005960464478, + 1.0000003576278687 + ], + "min": [ + 0.99999982118606567, + 0.99999958276748657, + 0.99999970197677612 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 62752, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 83104, + "componentType": 5126, + "count": 106, + "max": [ + 0.010625775903463364, + 0.0046071158722043037, + -0.13300476968288422, + 0.99105739593505859 + ], + "min": [ + -0.01071105245500803, + -0.0020856307819485664, + -0.1354985386133194, + 0.99076604843139648 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 63176, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 125928, + "componentType": 5126, + "count": 106, + "max": [ + 2.1455690860748291, + 40.497932434082031, + 6.4269061088562012 + ], + "min": [ + -0.17771261930465698, + 37.798416137695312, + 6.426905632019043 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 63600, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 127200, + "componentType": 5126, + "count": 106, + "max": [ + 1.0000001192092896, + 1.0000002384185791, + 1.0000002384185791 + ], + "min": [ + 0.99999982118606567, + 0.99999964237213135, + 0.99999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 64024, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 84800, + "componentType": 5126, + "count": 106, + "max": [ + 0.55308645963668823, + 0.46261239051818848, + 0.55264651775360107, + 0.46765923500061035 + ], + "min": [ + 0.53064864873886108, + 0.44138923287391663, + 0.5302392840385437, + 0.44627988338470459 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 64448, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 128472, + "componentType": 5126, + "count": 106, + "max": [ + 7.6449017524719238, + 4.4145441055297852, + 17.90252685546875 + ], + "min": [ + 4.2320146560668945, + 1.8217180297597224e-07, + -9.3909797668457031 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 64872, + "componentType": 5126, + "count": 73, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 129744, + "componentType": 5126, + "count": 73, + "max": [ + 1.0000002384185791, + 1.0000002384185791, + 1.0000002384185791 + ], + "min": [ + 0.99999994039535522, + 0.9999997615814209, + 0.99999994039535522 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65164, + "componentType": 5126, + "count": 89, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 86496, + "componentType": 5126, + "count": 89, + "max": [ + 0.64185446500778198, + 0.53253293037414551, + 0.51129299402236938, + 0.59172558784484863 + ], + "min": [ + 0.45420116186141968, + 0.35612696409225464, + 0.40621006488800049, + 0.44740262627601624 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 65520, + "componentType": 5126, + "count": 106, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 130620, + "componentType": 5126, + "count": 106, + "max": [ + -1.936396598815918, + 4.4497413635253906, + 18.200170516967773 + ], + "min": [ + -5.3485760688781738, + 2.9986824756633723e-07, + -9.0663280487060547 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 65944, + "componentType": 5126, + "count": 77, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 131892, + "componentType": 5126, + "count": 77, + "max": [ + 1.0000002384185791, + 1.0000002384185791, + 1.0000001192092896 + ], + "min": [ + 0.9999997615814209, + 0.9999997615814209, + 0.99999982118606567 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 66252, + "componentType": 5126, + "count": 91, + "max": [ + 3.5 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 87920, + "componentType": 5126, + "count": 91, + "max": [ + 0.51128476858139038, + 0.59318894147872925, + 0.64142972230911255, + 0.53361588716506958 + ], + "min": [ + 0.40514960885047913, + 0.44797226786613464, + 0.45130345225334167, + 0.35665643215179443 + ], + "type": "VEC4" + } + ], + "animations": [ + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 2, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 3, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 4, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 5, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 8, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 9, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 11, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 12, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 14, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 17, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 20, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 23, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 24, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 26, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 29, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 32, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 35, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 36, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 38, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 41, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 42, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 44, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 47, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 50, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 51, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 53, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 56, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 57, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 59, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 60, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 62, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 65, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 68, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 69, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 71, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 72, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 74, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 75, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 77, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 78, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 80, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 81, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 83, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 84, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 86, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 87, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 89, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 90, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 92, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 93, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 95, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 96, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 98, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 99, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 101, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 102, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 104, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 105, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 107, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 108, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 110, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 111, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 113, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 114, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 116, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 117, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 119, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 120, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 122, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 123, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 125, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 126, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 128, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 129, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 131, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 132, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 134, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 135, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 137, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 138, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 140, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 141, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 143, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 144, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 146, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 147, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 148, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 150, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 151, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 153, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 154, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 156, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 157, + "target": { + "node": 61, + "path": "rotation" + } + } + ], + "name": "Take 001", + "samplers": [ + { + "input": 10, + "interpolation": "LINEAR", + "output": 11 + }, + { + "input": 12, + "interpolation": "LINEAR", + "output": 13 + }, + { + "input": 14, + "interpolation": "LINEAR", + "output": 15 + }, + { + "input": 16, + "interpolation": "LINEAR", + "output": 17 + }, + { + "input": 18, + "interpolation": "LINEAR", + "output": 19 + }, + { + "input": 20, + "interpolation": "LINEAR", + "output": 21 + }, + { + "input": 22, + "interpolation": "LINEAR", + "output": 23 + }, + { + "input": 24, + "interpolation": "LINEAR", + "output": 25 + }, + { + "input": 26, + "interpolation": "LINEAR", + "output": 27 + }, + { + "input": 28, + "interpolation": "LINEAR", + "output": 29 + }, + { + "input": 30, + "interpolation": "LINEAR", + "output": 31 + }, + { + "input": 32, + "interpolation": "LINEAR", + "output": 33 + }, + { + "input": 34, + "interpolation": "LINEAR", + "output": 35 + }, + { + "input": 36, + "interpolation": "LINEAR", + "output": 37 + }, + { + "input": 38, + "interpolation": "LINEAR", + "output": 39 + }, + { + "input": 40, + "interpolation": "LINEAR", + "output": 41 + }, + { + "input": 42, + "interpolation": "LINEAR", + "output": 43 + }, + { + "input": 44, + "interpolation": "LINEAR", + "output": 45 + }, + { + "input": 46, + "interpolation": "LINEAR", + "output": 47 + }, + { + "input": 48, + "interpolation": "LINEAR", + "output": 49 + }, + { + "input": 50, + "interpolation": "LINEAR", + "output": 51 + }, + { + "input": 52, + "interpolation": "LINEAR", + "output": 53 + }, + { + "input": 54, + "interpolation": "LINEAR", + "output": 55 + }, + { + "input": 56, + "interpolation": "LINEAR", + "output": 57 + }, + { + "input": 58, + "interpolation": "LINEAR", + "output": 59 + }, + { + "input": 60, + "interpolation": "LINEAR", + "output": 61 + }, + { + "input": 62, + "interpolation": "LINEAR", + "output": 63 + }, + { + "input": 64, + "interpolation": "LINEAR", + "output": 65 + }, + { + "input": 66, + "interpolation": "LINEAR", + "output": 67 + }, + { + "input": 68, + "interpolation": "LINEAR", + "output": 69 + }, + { + "input": 70, + "interpolation": "LINEAR", + "output": 71 + }, + { + "input": 72, + "interpolation": "LINEAR", + "output": 73 + }, + { + "input": 74, + "interpolation": "LINEAR", + "output": 75 + }, + { + "input": 76, + "interpolation": "LINEAR", + "output": 77 + }, + { + "input": 78, + "interpolation": "LINEAR", + "output": 79 + }, + { + "input": 80, + "interpolation": "LINEAR", + "output": 81 + }, + { + "input": 82, + "interpolation": "LINEAR", + "output": 83 + }, + { + "input": 84, + "interpolation": "LINEAR", + "output": 85 + }, + { + "input": 86, + "interpolation": "LINEAR", + "output": 87 + }, + { + "input": 88, + "interpolation": "LINEAR", + "output": 89 + }, + { + "input": 90, + "interpolation": "LINEAR", + "output": 91 + }, + { + "input": 92, + "interpolation": "LINEAR", + "output": 93 + }, + { + "input": 94, + "interpolation": "LINEAR", + "output": 95 + }, + { + "input": 96, + "interpolation": "LINEAR", + "output": 97 + }, + { + "input": 98, + "interpolation": "LINEAR", + "output": 99 + }, + { + "input": 100, + "interpolation": "LINEAR", + "output": 101 + }, + { + "input": 102, + "interpolation": "LINEAR", + "output": 103 + }, + { + "input": 104, + "interpolation": "LINEAR", + "output": 105 + }, + { + "input": 106, + "interpolation": "LINEAR", + "output": 107 + }, + { + "input": 108, + "interpolation": "LINEAR", + "output": 109 + }, + { + "input": 110, + "interpolation": "LINEAR", + "output": 111 + }, + { + "input": 112, + "interpolation": "LINEAR", + "output": 113 + }, + { + "input": 114, + "interpolation": "LINEAR", + "output": 115 + }, + { + "input": 116, + "interpolation": "LINEAR", + "output": 117 + }, + { + "input": 118, + "interpolation": "LINEAR", + "output": 119 + }, + { + "input": 120, + "interpolation": "LINEAR", + "output": 121 + }, + { + "input": 122, + "interpolation": "LINEAR", + "output": 123 + }, + { + "input": 124, + "interpolation": "LINEAR", + "output": 125 + }, + { + "input": 126, + "interpolation": "LINEAR", + "output": 127 + }, + { + "input": 128, + "interpolation": "LINEAR", + "output": 129 + }, + { + "input": 130, + "interpolation": "LINEAR", + "output": 131 + }, + { + "input": 132, + "interpolation": "LINEAR", + "output": 133 + }, + { + "input": 134, + "interpolation": "LINEAR", + "output": 135 + }, + { + "input": 136, + "interpolation": "LINEAR", + "output": 137 + }, + { + "input": 138, + "interpolation": "LINEAR", + "output": 139 + }, + { + "input": 140, + "interpolation": "LINEAR", + "output": 141 + }, + { + "input": 142, + "interpolation": "LINEAR", + "output": 143 + }, + { + "input": 144, + "interpolation": "LINEAR", + "output": 145 + }, + { + "input": 146, + "interpolation": "LINEAR", + "output": 147 + }, + { + "input": 148, + "interpolation": "LINEAR", + "output": 149 + }, + { + "input": 150, + "interpolation": "LINEAR", + "output": 151 + }, + { + "input": 152, + "interpolation": "LINEAR", + "output": 153 + }, + { + "input": 154, + "interpolation": "LINEAR", + "output": 155 + }, + { + "input": 156, + "interpolation": "LINEAR", + "output": 157 + }, + { + "input": 158, + "interpolation": "LINEAR", + "output": 159 + }, + { + "input": 160, + "interpolation": "LINEAR", + "output": 161 + }, + { + "input": 162, + "interpolation": "LINEAR", + "output": 163 + }, + { + "input": 164, + "interpolation": "LINEAR", + "output": 165 + }, + { + "input": 166, + "interpolation": "LINEAR", + "output": 167 + }, + { + "input": 168, + "interpolation": "LINEAR", + "output": 169 + }, + { + "input": 170, + "interpolation": "LINEAR", + "output": 171 + }, + { + "input": 172, + "interpolation": "LINEAR", + "output": 173 + }, + { + "input": 174, + "interpolation": "LINEAR", + "output": 175 + }, + { + "input": 176, + "interpolation": "LINEAR", + "output": 177 + }, + { + "input": 178, + "interpolation": "LINEAR", + "output": 179 + }, + { + "input": 180, + "interpolation": "LINEAR", + "output": 181 + }, + { + "input": 182, + "interpolation": "LINEAR", + "output": 183 + }, + { + "input": 184, + "interpolation": "LINEAR", + "output": 185 + }, + { + "input": 186, + "interpolation": "LINEAR", + "output": 187 + }, + { + "input": 188, + "interpolation": "LINEAR", + "output": 189 + }, + { + "input": 190, + "interpolation": "LINEAR", + "output": 191 + }, + { + "input": 192, + "interpolation": "LINEAR", + "output": 193 + }, + { + "input": 194, + "interpolation": "LINEAR", + "output": 195 + }, + { + "input": 196, + "interpolation": "LINEAR", + "output": 197 + }, + { + "input": 198, + "interpolation": "LINEAR", + "output": 199 + }, + { + "input": 200, + "interpolation": "LINEAR", + "output": 201 + }, + { + "input": 202, + "interpolation": "LINEAR", + "output": 203 + }, + { + "input": 204, + "interpolation": "LINEAR", + "output": 205 + }, + { + "input": 206, + "interpolation": "LINEAR", + "output": 207 + }, + { + "input": 208, + "interpolation": "LINEAR", + "output": 209 + }, + { + "input": 210, + "interpolation": "LINEAR", + "output": 211 + }, + { + "input": 212, + "interpolation": "LINEAR", + "output": 213 + }, + { + "input": 214, + "interpolation": "LINEAR", + "output": 215 + }, + { + "input": 216, + "interpolation": "LINEAR", + "output": 217 + }, + { + "input": 218, + "interpolation": "LINEAR", + "output": 219 + }, + { + "input": 220, + "interpolation": "LINEAR", + "output": 221 + }, + { + "input": 222, + "interpolation": "LINEAR", + "output": 223 + }, + { + "input": 224, + "interpolation": "LINEAR", + "output": 225 + }, + { + "input": 226, + "interpolation": "LINEAR", + "output": 227 + }, + { + "input": 228, + "interpolation": "LINEAR", + "output": 229 + }, + { + "input": 230, + "interpolation": "LINEAR", + "output": 231 + }, + { + "input": 232, + "interpolation": "LINEAR", + "output": 233 + }, + { + "input": 234, + "interpolation": "LINEAR", + "output": 235 + }, + { + "input": 236, + "interpolation": "LINEAR", + "output": 237 + }, + { + "input": 238, + "interpolation": "LINEAR", + "output": 239 + }, + { + "input": 240, + "interpolation": "LINEAR", + "output": 241 + }, + { + "input": 242, + "interpolation": "LINEAR", + "output": 243 + }, + { + "input": 244, + "interpolation": "LINEAR", + "output": 245 + }, + { + "input": 246, + "interpolation": "LINEAR", + "output": 247 + }, + { + "input": 248, + "interpolation": "LINEAR", + "output": 249 + }, + { + "input": 250, + "interpolation": "LINEAR", + "output": 251 + }, + { + "input": 252, + "interpolation": "LINEAR", + "output": 253 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 255 + }, + { + "input": 256, + "interpolation": "LINEAR", + "output": 257 + }, + { + "input": 258, + "interpolation": "LINEAR", + "output": 259 + }, + { + "input": 260, + "interpolation": "LINEAR", + "output": 261 + }, + { + "input": 262, + "interpolation": "LINEAR", + "output": 263 + }, + { + "input": 264, + "interpolation": "LINEAR", + "output": 265 + }, + { + "input": 266, + "interpolation": "LINEAR", + "output": 267 + }, + { + "input": 268, + "interpolation": "LINEAR", + "output": 269 + }, + { + "input": 270, + "interpolation": "LINEAR", + "output": 271 + }, + { + "input": 272, + "interpolation": "LINEAR", + "output": 273 + }, + { + "input": 274, + "interpolation": "LINEAR", + "output": 275 + }, + { + "input": 276, + "interpolation": "LINEAR", + "output": 277 + }, + { + "input": 278, + "interpolation": "LINEAR", + "output": 279 + }, + { + "input": 280, + "interpolation": "LINEAR", + "output": 281 + }, + { + "input": 282, + "interpolation": "LINEAR", + "output": 283 + }, + { + "input": 284, + "interpolation": "LINEAR", + "output": 285 + }, + { + "input": 286, + "interpolation": "LINEAR", + "output": 287 + }, + { + "input": 288, + "interpolation": "LINEAR", + "output": 289 + }, + { + "input": 290, + "interpolation": "LINEAR", + "output": 291 + }, + { + "input": 292, + "interpolation": "LINEAR", + "output": 293 + }, + { + "input": 294, + "interpolation": "LINEAR", + "output": 295 + }, + { + "input": 296, + "interpolation": "LINEAR", + "output": 297 + }, + { + "input": 298, + "interpolation": "LINEAR", + "output": 299 + }, + { + "input": 300, + "interpolation": "LINEAR", + "output": 301 + }, + { + "input": 302, + "interpolation": "LINEAR", + "output": 303 + }, + { + "input": 304, + "interpolation": "LINEAR", + "output": 305 + }, + { + "input": 306, + "interpolation": "LINEAR", + "output": 307 + }, + { + "input": 308, + "interpolation": "LINEAR", + "output": 309 + }, + { + "input": 310, + "interpolation": "LINEAR", + "output": 311 + }, + { + "input": 312, + "interpolation": "LINEAR", + "output": 313 + }, + { + "input": 314, + "interpolation": "LINEAR", + "output": 315 + }, + { + "input": 316, + "interpolation": "LINEAR", + "output": 317 + }, + { + "input": 318, + "interpolation": "LINEAR", + "output": 319 + }, + { + "input": 320, + "interpolation": "LINEAR", + "output": 321 + }, + { + "input": 322, + "interpolation": "LINEAR", + "output": 323 + }, + { + "input": 324, + "interpolation": "LINEAR", + "output": 325 + } + ] + } + ], + "asset": { + "extras": { + "author": "Mizzle0 (https://sketchfab.com/maxrosier99)", + "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)", + "source": "https://sketchfab.com/3d-models/cr1ck3t-uon-games-art-lowpoly-character-114452f775024dd3836aa88358ffbdbc", + "title": "CR1CK3T, UoN Games Art, lowpoly character" + }, + "generator": "Sketchfab-9.94.0", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 36808, + "byteOffset": 0, + "byteStride": 8, + "name": "shortBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 59244, + "byteOffset": 36808, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 110424, + "byteOffset": 96052, + "byteStride": 8, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 110424, + "byteOffset": 206476, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 147232, + "byteOffset": 316900, + "byteStride": 16, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 3456, + "byteOffset": 464132, + "byteStride": 64, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 66616, + "byteOffset": 467588, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 132816, + "byteOffset": 534204, + "byteStride": 12, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 89376, + "byteOffset": 667020, + "byteStride": 16, + "name": "floatBufferViews" + } + ], + "buffers": [ + { + "byteLength": 756396, + "uri": "scene.bin" + } + ], + "images": [ + { + "uri": "textures/01_-_Default_baseColor.png" + }, + { + "uri": "textures/01_-_Default_metallicRoughness.png" + }, + { + "uri": "textures/01_-_Default_normal.png" + } + ], + "materials": [ + { + "alphaMode": "BLEND", + "doubleSided": true, + "name": "01_-_Default", + "normalTexture": { + "index": 2, + "scale": 1, + "texCoord": 0 + }, + "occlusionTexture": { + "index": 1, + "strength": 1, + "texCoord": 0 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, + 1, + 1, + 1 + ], + "baseColorTexture": { + "index": 0, + "texCoord": 0 + }, + "metallicFactor": 1, + "metallicRoughnessTexture": { + "index": 1, + "texCoord": 0 + }, + "roughnessFactor": 1 + } + } + ], + "meshes": [ + { + "name": "character_01 - Default_0", + "primitives": [ + { + "attributes": { + "JOINTS_0": 8, + "NORMAL": 1, + "POSITION": 0, + "TANGENT": 2, + "TEXCOORD_0": 3, + "TEXCOORD_1": 4, + "TEXCOORD_2": 5, + "WEIGHTS_0": 9 + }, + "indices": 6, + "material": 0, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [ + 1 + ], + "name": "RootNode (gltf orientation matrix)", + "rotation": [ + -0.70710678118654746, + -0, + -0, + 0.70710678118654757 + ] + }, + { + "children": [ + 2 + ], + "matrix": [ + 0.029370997101068497, + 0, + 0, + 0, + 0, + 0.029370997101068497, + 0, + 0, + 0, + 0, + 0.029370997101068497, + 0, + 0, + 0, + 0, + 1 + ], + "name": "RootNode (model correction matrix)" + }, + { + "children": [ + 3 + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "4f249577952342c6a2b0bbe09a16ca6e.fbx" + }, + { + "children": [ + 4 + ], + "name": "" + }, + { + "children": [ + 5 + ], + "name": "RootNode" + }, + { + "children": [ + 6, + 8, + 7, + 62 + ], + "name": "" + }, + { + "children": [ + 9, + 60, + 61 + ], + "name": "_rootJoint" + }, + { + "matrix": [ + 1.5708249807357788, + 0, + 0, + 0, + 0, + 9.6185289233938717e-17, + -1.5708249807357788, + 0, + 0, + 1.570824980735779, + 9.6185289233938729e-17, + 0, + 0, + 40.069693282150645, + -1.9873310174605267e-15, + 1 + ], + "name": "" + }, + { + "mesh": 0, + "name": "", + "skin": 0 + }, + { + "children": [ + 10, + 14, + 18 + ], + "name": "cricket custom rigHub001_01", + "rotation": [ + 0.55131989717483521, + 0.46261245012283325, + 0.53185570240020752, + 0.44627997279167175 + ], + "translation": [ + 0.9837607741355896, + 37.800971984863281, + 6.4269061088562012 + ] + }, + { + "children": [ + 11 + ], + "name": "cricket custom rigLLeg1_02", + "rotation": [ + 0.14017549157142639, + 0.99009370803833008, + -0.0014719717437401414, + 0.0079607851803302765 + ], + "scale": [ + 0.99999701976776123, + 1.0000029802322388, + 1 + ], + "translation": [ + 7.1054273576010019e-15, + 1.9073486328125e-06, + 4.3934745788574219 + ] + }, + { + "children": [ + 12 + ], + "name": "cricket custom rigLLeg2_03", + "rotation": [ + 0.0076321489177644253, + 0.0039290864951908588, + -0.58204472064971924, + 0.81311148405075073 + ], + "scale": [ + 0.99998098611831665, + 1.0000209808349609, + 0.99999898672103882 + ], + "translation": [ + 21.861808776855469, + -2.86102294921875e-06, + 4.291534423828125e-06 + ] + }, + { + "children": [ + 13 + ], + "name": "cricket custom rigLLegAnkle_04", + "rotation": [ + 0.0007803614716976881, + -0.00079223938519135118, + 0.70156013965606689, + 0.71260946989059448 + ], + "scale": [ + 0.9999619722366333, + 1.0000380277633667, + 1 + ], + "translation": [ + 17.32829475402832, + 0, + 8.8817841970012523e-16 + ] + }, + { + "name": "cricket custom rigLLegDigit11_05", + "rotation": [ + -0.025256939232349396, + -0.023500595241785049, + 0.51560753583908081, + 0.85613006353378296 + ], + "scale": [ + 0.99995201826095581, + 1.0000489950180054, + 0.99999898672103882 + ], + "translation": [ + 6.4965143203735352, + 2.384185791015625e-07, + 4.76837158203125e-07 + ] + }, + { + "children": [ + 15 + ], + "name": "cricket custom rigRLeg1_06", + "rotation": [ + 0.34685716032981873, + 0.93732351064682007, + -0.031196555122733116, + -0.011898834258317947 + ], + "translation": [ + 7.1054273576010019e-15, + 4.76837158203125e-07, + -3.9695968627929688 + ] + }, + { + "children": [ + 16 + ], + "name": "cricket custom rigRLeg2_07", + "rotation": [ + -0.0093741947785019875, + 0.0020189119968563318, + -0.42772197723388672, + 0.90385949611663818 + ], + "scale": [ + 1.0000009536743164, + 1, + 1 + ], + "translation": [ + 21.834896087646484, + 1.52587890625e-05, + 3.2186508178710938e-06 + ] + }, + { + "children": [ + 17 + ], + "name": "cricket custom rigRLegAnkle_08", + "rotation": [ + -0.0030205657240003347, + 0.0034865753259509802, + 0.84551882743835449, + 0.53392589092254639 + ], + "scale": [ + 1.0000009536743164, + 0.99999898672103882, + 1 + ], + "translation": [ + 17.261417388916016, + 0, + -2.384185791015625e-07 + ] + }, + { + "name": "cricket custom rigRLegDigit11_00", + "rotation": [ + -9.4611377789988182e-06, + -0.0012808303581550717, + 0.0080198301002383232, + 0.99996703863143921 + ], + "translation": [ + 6.4965152740478516, + 2.2204460492503131e-16, + 1.1920928955078125e-07 + ] + }, + { + "children": [ + 19 + ], + "name": "cricket custom rigSpine1_09", + "rotation": [ + -0.01071105245500803, + -0.0020856307819485664, + -0.13304583728313446, + 0.99104982614517212 + ] + }, + { + "children": [ + 20 + ], + "name": "cricket custom rigSpine2_010", + "rotation": [ + -0.048164393752813339, + 0.0042163706384599209, + -0.059893295168876648, + 0.99703317880630493 + ], + "translation": [ + 8.3330268859863281, + -1.7763568394002505e-15, + -2.2204460492503131e-16 + ] + }, + { + "children": [ + 21, + 25, + 30, + 42, + 47, + 52, + 55 + ], + "name": "cricket custom rigribs_011", + "rotation": [ + -0.011704700067639351, + -0.010249201208353043, + 0.10558278113603592, + 0.99428880214691162 + ], + "translation": [ + 8.3362083435058594, + -3.5527136788005009e-15, + 0 + ] + }, + { + "children": [ + 22 + ], + "name": "cricket custom rigLArmCollarbone_012", + "rotation": [ + 0.00080009474186226726, + -0.76539736986160278, + -0.0078602433204650879, + 0.64350944757461548 + ], + "translation": [ + 2.8251495361328125, + -1.0633158683776855, + 3.475632905960083 + ] + }, + { + "children": [ + 23 + ], + "name": "cricket custom rigLArm1_013", + "rotation": [ + -0.06415577232837677, + -0.61475783586502075, + -0.01524554006755352, + 0.78595447540283203 + ], + "translation": [ + 7.8402266502380371, + 0, + 0 + ] + }, + { + "children": [ + 24 + ], + "name": "cricket custom rigLArm2_014", + "rotation": [ + 0.0094887185841798782, + 0.036966942250728607, + 0.23088580369949341, + 0.9722321629524231 + ], + "scale": [ + 1.0000020265579224, + 0.99999898672103882, + 1 + ], + "translation": [ + 11.72381591796875, + 0, + 9.5367431640625e-07 + ] + }, + { + "name": "cricket custom rigLArmPalm_015", + "rotation": [ + 0.76786226034164429, + 0.0068880398757755756, + 0.061787601560354233, + 0.63759112358093262 + ], + "scale": [ + 1.0000070333480835, + 1, + 0.99999600648880005 + ], + "translation": [ + 12.98602294921875, + -1.9073486328125e-06, + 1.9073486328125e-06 + ] + }, + { + "children": [ + 26 + ], + "name": "cricket custom rigRArmCollarbone_016", + "rotation": [ + 0.064876385033130646, + 0.82922881841659546, + 0.06270889937877655, + 0.55157798528671265 + ], + "translation": [ + 2.8251495361328125, + 0.8321688175201416, + -3.475632905960083 + ] + }, + { + "children": [ + 27 + ], + "name": "cricket custom rigRArm1_017", + "rotation": [ + -0.088259637355804443, + 0.60291200876235962, + 0.017087867483496666, + 0.79272651672363281 + ], + "translation": [ + 7.5190944671630859, + 0, + 7.1054273576010019e-15 + ] + }, + { + "children": [ + 28 + ], + "name": "cricket custom rigRArm2_018", + "rotation": [ + -0.0013353975955396891, + -0.11972784996032715, + 0.7323949933052063, + 0.67026937007904053 + ], + "scale": [ + 0.99999600648880005, + 1.0000040531158447, + 1 + ], + "translation": [ + 9.0047950744628906, + -1.1920928955078125e-07, + -4.76837158203125e-07 + ] + }, + { + "children": [ + 29 + ], + "name": "cricket custom rigRArmPalm_019", + "rotation": [ + -0.70805531740188599, + 0.0019733719527721405, + 0.0015794528881087899, + 0.70615243911743164 + ], + "scale": [ + 0.99998801946640015, + 1.0000040531158447, + 1.0000070333480835 + ], + "translation": [ + 10.522348403930664, + -3.814697265625e-06, + -1.7763568394002505e-15 + ] + }, + { + "name": "cricket custom rigRArmDigit11_020", + "rotation": [ + -0.10632894933223724, + 0.0017251417739316821, + -0.00061581324553117156, + 0.99432933330535889 + ], + "scale": [ + 0.99997299909591675, + 1.0000029802322388, + 1.0000220537185669 + ], + "translation": [ + 2.4999580383300781, + 0.48956298828125, + -7.1475143432617188 + ] + }, + { + "children": [ + 31 + ], + "name": "cricket custom rigSpine_021", + "rotation": [ + 0.012190877459943295, + -0.012768669985234737, + 0.15162576735019684, + 0.98828041553497314 + ], + "translation": [ + 7.1054273576010019e-15, + 0, + 0.59894275665283203 + ] + }, + { + "children": [ + 32, + 37 + ], + "name": "cricket custom rigribs001_022", + "rotation": [ + 0.030322734266519547, + -0.0046432954259216785, + -0.022116266191005707, + 0.99928468465805054 + ], + "translation": [ + 11.854915618896484, + -9.5367431640625e-07, + -1.1920928955078125e-07 + ] + }, + { + "children": [ + 33 + ], + "name": "cricket custom rigTail1_023", + "rotation": [ + -0.011798499152064323, + -0.018803523853421211, + -0.48626971244812012, + 0.87352675199508667 + ], + "translation": [ + 2.3673477172851562, + -0.87353897094726562, + 2.3262012004852295 + ] + }, + { + "children": [ + 34 + ], + "name": "cricket custom rigTail2_024", + "rotation": [ + -0.036419220268726349, + -0.040302567183971405, + -0.42143604159355164, + 0.90522980690002441 + ], + "translation": [ + 9.3143653869628906, + 3.814697265625e-06, + -2.2204460492503131e-16 + ] + }, + { + "children": [ + 35 + ], + "name": "cricket custom rigTail3_025", + "rotation": [ + 0.061529837548732758, + -0.037169467657804489, + -0.4909331202507019, + 0.86822658777236938 + ], + "scale": [ + 1.0000009536743164, + 1.0000009536743164, + 0.99999898672103882 + ], + "translation": [ + 7.3813629150390625, + 0, + 0 + ] + }, + { + "children": [ + 36 + ], + "name": "cricket custom rigTail4_026", + "rotation": [ + -0.092499017715454102, + 0.066440403461456299, + 0.14361724257469177, + 0.98305833339691162 + ], + "scale": [ + 1, + 1.0000020265579224, + 0.99999898672103882 + ], + "translation": [ + 9.0574111938476562, + -7.1054273576010019e-15, + -8.8817841970012523e-16 + ] + }, + { + "name": "cricket custom rigTail5_027", + "rotation": [ + -0.047998148947954178, + -0.040583603084087372, + 0.17344069480895996, + 0.98283654451370239 + ], + "scale": [ + 1, + 1.0000050067901611, + 0.99999797344207764 + ], + "translation": [ + 5.3837051391601562, + 3.814697265625e-06, + 0 + ] + }, + { + "children": [ + 38 + ], + "name": "cricket custom rigTail1_028", + "rotation": [ + 0.013470723293721676, + 0.031730972230434418, + -0.49223804473876953, + 0.86977779865264893 + ], + "translation": [ + 2.3673324584960938, + -0.87353897094726562, + -2.2562105655670166 + ] + }, + { + "children": [ + 39 + ], + "name": "cricket custom rigTail2_029", + "rotation": [ + 0.045507017523050308, + 0.040613789111375809, + -0.40637880563735962, + 0.91166657209396362 + ], + "scale": [ + 1, + 1.0000009536743164, + 1 + ], + "translation": [ + 9.1424293518066406, + 0, + 1.1920928955078125e-07 + ] + }, + { + "children": [ + 40 + ], + "name": "cricket custom rigTail3_030", + "rotation": [ + 0.04714178666472435, + -0.047021657228469849, + -0.49155831336975098, + 0.86829549074172974 + ], + "scale": [ + 0.99999797344207764, + 1.0000029802322388, + 0.99999898672103882 + ], + "translation": [ + 7.5212574005126953, + 0, + -4.4408920985006262e-16 + ] + }, + { + "children": [ + 41 + ], + "name": "cricket custom rigTail4_031", + "rotation": [ + 0.016235396265983582, + -0.025909077376127243, + 0.10106116533279419, + 0.99441027641296387 + ], + "scale": [ + 0.99999898672103882, + 1.0000040531158447, + 0.99999898672103882 + ], + "translation": [ + 9.4558296203613281, + 3.814697265625e-06, + 8.8817841970012523e-16 + ] + }, + { + "name": "cricket custom rigTail5_032", + "rotation": [ + 0.023893743753433228, + 0.029283367097377777, + 0.21487985551357269, + 0.97590893507003784 + ], + "scale": [ + 0.99999600648880005, + 1.0000100135803223, + 0.99999600648880005 + ], + "translation": [ + 4.711181640625, + 0, + 0 + ] + }, + { + "children": [ + 43 + ], + "name": "cricket custom rigTail1_033", + "rotation": [ + -0.001148593844845891, + -0.0016685578739270568, + 0.98123598098754883, + -0.19280005991458893 + ], + "translation": [ + -2.4738960266113281, + -3.5492708683013916, + 1.1920928955078125e-06 + ] + }, + { + "children": [ + 44 + ], + "name": "cricket custom rigTail2_034", + "rotation": [ + -0.012354318052530289, + 0.010491875000298023, + 0.01459771953523159, + 0.99976205825805664 + ], + "translation": [ + 13.060176849365234, + 0, + 0 + ] + }, + { + "children": [ + 45 + ], + "name": "cricket custom rigTail3_035", + "rotation": [ + -0.026343060657382011, + -0.0018499759025871754, + 0.070745117962360382, + 0.99714481830596924 + ], + "scale": [ + 1.0000009536743164, + 1, + 1 + ], + "translation": [ + 11.554519653320312, + -1.9073486328125e-06, + -1.1920928955078125e-07 + ] + }, + { + "children": [ + 46 + ], + "name": "cricket custom rigTail4_036", + "rotation": [ + -0.033856619149446487, + -0.025687204673886299, + -0.071125708520412445, + 0.99656170606613159 + ], + "scale": [ + 1.0000009536743164, + 1.0000009536743164, + 1 + ], + "translation": [ + 9.3780460357666016, + 1.9073486328125e-06, + 0 + ] + }, + { + "name": "cricket custom rigTail5_037", + "rotation": [ + -0.030358090996742249, + -0.019582834094762802, + -0.31922405958175659, + 0.94699054956436157 + ], + "scale": [ + 1.0000020265579224, + 1.0000009536743164, + 1 + ], + "translation": [ + 7.9516596794128418, + 1.9073486328125e-06, + 8.8817841970012523e-16 + ] + }, + { + "children": [ + 48 + ], + "name": "cricket custom rigTail1_038", + "rotation": [ + -0.24089249968528748, + -0.47510159015655518, + 0.80912864208221436, + -0.24811318516731262 + ], + "scale": [ + 1, + 1.0000009536743164, + 1 + ], + "translation": [ + -4.4538230895996094, + -3.5552504062652588, + -4.9024395942687988 + ] + }, + { + "children": [ + 49 + ], + "name": "cricket custom rigTail2_039", + "rotation": [ + -0.21803741157054901, + 0.068862840533256531, + -0.067016288638114929, + 0.9711984395980835 + ], + "scale": [ + 1, + 1, + 1.0000009536743164 + ], + "translation": [ + 8.0772228240966797, + -3.814697265625e-06, + 0 + ] + }, + { + "children": [ + 50 + ], + "name": "cricket custom rigTail3_040", + "rotation": [ + -0.22761116921901703, + 0.06338287889957428, + 0.0015040719881653786, + 0.97168600559234619 + ], + "scale": [ + 1, + 0.99999701976776123, + 1.0000050067901611 + ], + "translation": [ + 10.986042022705078, + 1.9073486328125e-06, + -1.1920928955078125e-07 + ] + }, + { + "children": [ + 51 + ], + "name": "cricket custom rigTail4_041", + "rotation": [ + -0.12923005223274231, + 0.43138894438743591, + 0.007534579373896122, + 0.89283055067062378 + ], + "scale": [ + 1.0000020265579224, + 0.99999600648880005, + 1.0000050067901611 + ], + "translation": [ + 11.664699554443359, + -1.9073486328125e-06, + 0 + ] + }, + { + "name": "cricket custom rigTail5_042", + "rotation": [ + 0.96826517581939697, + -0.23490461707115173, + 0.031672876328229904, + -0.079241625964641571 + ], + "scale": [ + 1.0000120401382446, + 0.99998998641967773, + 1.0000020265579224 + ], + "translation": [ + 12.257848739624023, + 7.1054273576010019e-15, + -9.5367431640625e-07 + ] + }, + { + "children": [ + 53 + ], + "name": "cricket custom rigTail1_043", + "rotation": [ + 0.001271055662073195, + 0.0026488748844712973, + -0.83272862434387207, + 0.55367374420166016 + ], + "translation": [ + 0.48115158081054688, + -4.79852294921875, + 4.76837158203125e-07 + ] + }, + { + "children": [ + 54 + ], + "name": "cricket custom rigTail2_044", + "rotation": [ + 0.029217235743999481, + 0.0062671322375535965, + 0.78428614139556885, + 0.61967921257019043 + ], + "translation": [ + 6.810150146484375, + -3.814697265625e-06, + 2.2204460492503131e-16 + ] + }, + { + "name": "cricket custom rigTail3_045", + "rotation": [ + 0.037106841802597046, + 0.0029180485289543867, + 0.51547032594680786, + 0.85609865188598633 + ], + "translation": [ + 5.7627449035644531, + 4.76837158203125e-07, + 1.1920928955078125e-07 + ] + }, + { + "children": [ + 56 + ], + "name": "cricket custom rigTail1_046", + "rotation": [ + 0.10805501788854599, + 0.0019905988592654467, + 0.97992861270904541, + 0.16751198470592499 + ], + "translation": [ + -3.814697265625e-06, + 5.1173439025878906, + 7.5198736190795898 + ] + }, + { + "children": [ + 57 + ], + "name": "cricket custom rigTail2_047", + "rotation": [ + -0.0066293263807892799, + 0.055314552038908005, + 0.10764819383621216, + 0.99262702465057373 + ], + "translation": [ + 8.3165550231933594, + 0, + 0 + ] + }, + { + "children": [ + 58 + ], + "name": "cricket custom rigTail3_048", + "rotation": [ + -0.013284390792250633, + -0.00015508805518038571, + 0.028410714119672775, + 0.99950814247131348 + ], + "translation": [ + 7.7339401245117188, + 0, + 9.5367431640625e-07 + ] + }, + { + "children": [ + 59 + ], + "name": "cricket custom rigTail4_049", + "rotation": [ + -0.016071684658527374, + 0.013756162486970425, + 0.067385554313659668, + 0.99750268459320068 + ], + "scale": [ + 1.0000009536743164, + 0.99999898672103882, + 1 + ], + "translation": [ + 15.001640319824219, + 9.5367431640625e-07, + 0 + ] + }, + { + "name": "cricket custom rigTail5_050", + "rotation": [ + 0.07790982723236084, + 0.17978379130363464, + 0.058403149247169495, + 0.97887533903121948 + ], + "scale": [ + 1.0000009536743164, + 0.99999898672103882, + 1 + ], + "translation": [ + 13.224603652954102, + 0, + 0 + ] + }, + { + "name": "cricket custom rigLLegPlatform_051", + "rotation": [ + 0.53828495740890503, + 0.46165972948074341, + 0.49326294660568237, + 0.50379687547683716 + ], + "translation": [ + 4.2467174530029297, + 0.81430345773696899, + -7.0610976219177246 + ] + }, + { + "name": "cricket custom rigRLegPlatform_052", + "rotation": [ + 0.46228981018066406, + 0.53707391023635864, + 0.48076543211936951, + 0.51643431186676025 + ], + "translation": [ + -1.9393627643585205, + 0.94821536540985107, + 16.033504486083984 + ] + }, + { + "name": "character", + "rotation": [ + -0.7071068286895752, + -0, + 0, + 0.7071068286895752 + ], + "scale": [ + 1.5708249807357788, + 1.5708249807357788, + 1.5708249807357788 + ] + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + ], + "scene": 0, + "scenes": [ + { + "name": "OSG_Scene", + "nodes": [ + 0 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 7, + "joints": [ + 6, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61 + ], + "skeleton": 6 + } + ], + "textures": [ + { + "sampler": 0, + "source": 0 + }, + { + "sampler": 0, + "source": 1 + }, + { + "sampler": 0, + "source": 2 + } + ] +} + diff --git a/demo/assets/man/textures/01_-_Default_baseColor.png b/demo/assets/man/textures/01_-_Default_baseColor.png new file mode 100644 index 0000000..3403e68 Binary files /dev/null and b/demo/assets/man/textures/01_-_Default_baseColor.png differ diff --git a/demo/assets/man/textures/01_-_Default_metallicRoughness.png b/demo/assets/man/textures/01_-_Default_metallicRoughness.png new file mode 100644 index 0000000..4e69fb2 Binary files /dev/null and b/demo/assets/man/textures/01_-_Default_metallicRoughness.png differ diff --git a/demo/assets/man/textures/01_-_Default_normal.png b/demo/assets/man/textures/01_-_Default_normal.png new file mode 100644 index 0000000..dcf28ab Binary files /dev/null and b/demo/assets/man/textures/01_-_Default_normal.png differ diff --git a/demo/assets/scarecrow/license.txt b/demo/assets/scarecrow/license.txt new file mode 100644 index 0000000..5390846 --- /dev/null +++ b/demo/assets/scarecrow/license.txt @@ -0,0 +1,11 @@ +Model Information: +* title: Scary Pumpkin Scarecrow Character +* source: https://sketchfab.com/3d-models/scary-pumpkin-scarecrow-character-66c2b6c9fb134e47af22d1ae88cb8fa9 +* author: Charles Smith (Blitz Mobile Apps) (https://sketchfab.com/BlitzMobileApp) + +Model License: +* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) +* requirements: Author must be credited. Commercial use is allowed. + +If you use this 3D model in your project be sure to copy paste this credit wherever you share it: +This work is based on "Scary Pumpkin Scarecrow Character" (https://sketchfab.com/3d-models/scary-pumpkin-scarecrow-character-66c2b6c9fb134e47af22d1ae88cb8fa9) by Charles Smith (Blitz Mobile Apps) (https://sketchfab.com/BlitzMobileApp) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/demo/assets/scarecrow/scene.bin b/demo/assets/scarecrow/scene.bin new file mode 100644 index 0000000..9e434cf Binary files /dev/null and b/demo/assets/scarecrow/scene.bin differ diff --git a/demo/assets/scarecrow/scene.gltf b/demo/assets/scarecrow/scene.gltf new file mode 100644 index 0000000..d04afbb --- /dev/null +++ b/demo/assets/scarecrow/scene.gltf @@ -0,0 +1,4366 @@ +{ + "accessors": [ + { + "bufferView": 3, + "componentType": 5126, + "count": 19549, + "max": [ + 0.7072995901107788, + 2.137218475341797, + 0.23967638611793518 + ], + "min": [ + -0.7068507075309753, + -0.01703166402876377, + -0.22737278044223785 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 234588, + "componentType": 5126, + "count": 19549, + "max": [ + 0.9998775124549866, + 0.999995231628418, + 0.9999996423721313 + ], + "min": [ + -0.9998774528503418, + -0.9999381899833679, + -0.9999967217445374 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "componentType": 5126, + "count": 19549, + "max": [ + 1.0, + 0.9999802112579346, + 0.9998781085014343, + 1.0 + ], + "min": [ + -1.0, + -0.9999428987503052, + -0.9999808073043823, + -1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 19549, + "max": [ + 0.995932400226593, + 0.9981390833854675 + ], + "min": [ + 0.003310426138341427, + 0.004980926867574453 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "componentType": 5125, + "count": 106620, + "type": "SCALAR" + }, + { + "bufferView": 3, + "byteOffset": 469176, + "componentType": 5126, + "count": 258, + "max": [ + 0.3234143555164337, + 0.033597927540540695, + 0.3167285919189453 + ], + "min": [ + -0.14697688817977905, + -0.03359798714518547, + -0.574262261390686 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 472272, + "componentType": 5126, + "count": 258, + "max": [ + 0.9843676090240479, + 0.9999583959579468, + 0.9966270327568054 + ], + "min": [ + -0.9984391927719116, + -0.9999583959579468, + -0.9996117353439331 + ], + "type": "VEC3" + }, + { + "bufferView": 4, + "byteOffset": 312784, + "componentType": 5126, + "count": 258, + "max": [ + 0.9963166117668152, + 0.9999988079071045, + 0.9858912825584412, + 1.0 + ], + "min": [ + -0.9999812245368958, + -0.9984964728355408, + -0.9890265464782715, + -1.0 + ], + "type": "VEC4" + }, + { + "bufferView": 2, + "byteOffset": 156392, + "componentType": 5126, + "count": 258, + "max": [ + 0.495692640542984, + 0.8779385089874268 + ], + "min": [ + 0.008218199014663696, + 0.21768447756767273 + ], + "type": "VEC2" + }, + { + "bufferView": 1, + "byteOffset": 426480, + "componentType": 5125, + "count": 1230, + "type": "SCALAR" + }, + { + "bufferView": 5, + "componentType": 5126, + "count": 50, + "max": [ + 100.0, + 90.60250854492188, + 90.58002471923828, + 0.0, + 26.598064422607422, + 100.0, + 99.98699951171875, + 0.0, + 99.86730194091797, + 97.9468994140625, + 100.0, + 0.0, + 16.180953979492188, + 88.42463684082031, + 132.89080810546875, + 1.0 + ], + "min": [ + -99.87030029296875, + -90.60260772705078, + -88.69515228271484, + 0.0, + -27.624069213867188, + -99.22699737548828, + -90.47412109375, + 0.0, + -99.92739868164063, + -16.898807525634766, + -24.73973846435547, + 0.0, + -16.086488723754883, + -155.02931213378906, + -7.383644104003906, + 1.0 + ], + "type": "MAT4" + }, + { + "bufferView": 0, + "componentType": 5123, + "count": 19549, + "type": "VEC4" + }, + { + "bufferView": 4, + "byteOffset": 316912, + "componentType": 5126, + "count": 19549, + "max": [ + 1.0, + 0.49989375472068787, + 0.32615041732788086, + 0.2268158346414566 + ], + "min": [ + 0.2852780222892761, + 0.0, + 0.0, + 0.0 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "componentType": 5126, + "count": 42, + "max": [ + -10.18967342376709, + 101.2292251586914, + 76.56241607666016 + ], + "min": [ + -59.301849365234375, + 64.43588256835938, + 7.456771373748779 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 168, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "componentType": 5126, + "count": 42, + "max": [ + 0.33248332142829895, + 0.04314306005835533, + -0.5993743538856506, + 0.7664303779602051 + ], + "min": [ + -0.2277866154909134, + -0.14248916506767273, + -0.7409956455230713, + 0.6109089255332947 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 336, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 504, + "componentType": 5126, + "count": 41, + "max": [ + 1.7763568394002505e-15, + 8.271438598632813, + 0.9316272139549255 + ], + "min": [ + -3.552713678800501e-15, + 8.271438598632813, + 0.9316272139549255 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 500, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 672, + "componentType": 5126, + "count": 42, + "max": [ + -0.0038784141652286053, + 0.013005576096475124, + 0.026644393801689148, + 0.9999547004699707 + ], + "min": [ + -0.0814572125673294, + -0.059479281306266785, + -0.04156494140625, + 0.9955182671546936 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 668, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 996, + "componentType": 5126, + "count": 42, + "max": [ + 1.7763568394002505e-15, + 15.49619197845459, + 3.093019529387675e-08 + ], + "min": [ + -1.7763568394002505e-15, + 15.49619197845459, + 3.093017397759468e-08 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 836, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 1344, + "componentType": 5126, + "count": 42, + "max": [ + 0.06084757670760155, + 0.02623291313648224, + 0.047220755368471146, + 0.9999476075172424 + ], + "min": [ + -0.06751001626253128, + -0.06982934474945068, + -0.02823808416724205, + 0.9945816993713379 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1004, + "componentType": 5126, + "count": 35, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1500, + "componentType": 5126, + "count": 35, + "max": [ + -0.8736374974250793, + 3.5532031059265137, + 4.263256414560601e-14 + ], + "min": [ + -0.8736374974250793, + 3.5532031059265137, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1144, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 2016, + "componentType": 5126, + "count": 42, + "max": [ + -0.0063991728238761425, + 0.07360507547855377, + 0.13275423645973206, + 0.9914660453796387 + ], + "min": [ + -0.0145235825330019, + 0.05388061702251434, + 0.11853545159101486, + 0.9883058667182922 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1312, + "componentType": 5126, + "count": 35, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 1920, + "componentType": 5126, + "count": 35, + "max": [ + 0.09473636001348495, + 5.557535648345947, + 2.842170943040401e-14 + ], + "min": [ + 0.09473636001348495, + 5.557535648345947, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1452, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 2688, + "componentType": 5126, + "count": 42, + "max": [ + 0.15175937116146088, + 0.019023697823286057, + -0.3225249946117401, + 0.9402356743812561 + ], + "min": [ + 0.07327743619680405, + -0.02437889762222767, + -0.33165204524993896, + 0.9341224431991577 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1620, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 3360, + "componentType": 5126, + "count": 42, + "max": [ + 0.138444721698761, + 0.13621966540813446, + 0.3922174572944641, + 0.9171305894851685 + ], + "min": [ + 0.1161763146519661, + 0.053209904581308365, + 0.36996379494667053, + 0.9022819399833679 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 1788, + "componentType": 5126, + "count": 38, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2340, + "componentType": 5126, + "count": 38, + "max": [ + -0.000969763146713376, + 2.2755703926086426, + 2.842170943040401e-14 + ], + "min": [ + -0.000969763146713376, + 2.2755703926086426, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 1940, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 4032, + "componentType": 5126, + "count": 42, + "max": [ + 0.2600424587726593, + 0.06341278553009033, + 0.028932863846421242, + 0.9960939288139343 + ], + "min": [ + 0.07844366878271103, + 0.0381758026778698, + 0.013629301451146603, + 0.9630782008171082 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2108, + "componentType": 5126, + "count": 40, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 2796, + "componentType": 5126, + "count": 40, + "max": [ + 0.008284694515168667, + 2.2794647216796875, + 2.842170943040401e-14 + ], + "min": [ + 0.008284694515168667, + 2.2794647216796875, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2268, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 4704, + "componentType": 5126, + "count": 42, + "max": [ + 0.3811834156513214, + 0.09508644789457321, + 0.04266743361949921, + 0.9859992265701294 + ], + "min": [ + 0.15204228460788727, + 0.0635533332824707, + 0.02548757568001747, + 0.918606162071228 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2436, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 5376, + "componentType": 5126, + "count": 42, + "max": [ + 0.19506999850273132, + -0.0125849274918437, + 0.05124259740114212, + 0.9939300417900085 + ], + "min": [ + 0.0777410939335823, + -0.07637904584407806, + 0.0150248222053051, + 0.9793689250946045 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2604, + "componentType": 5126, + "count": 39, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 3276, + "componentType": 5126, + "count": 39, + "max": [ + -0.007093431428074837, + 2.732807159423828, + 2.842170943040401e-14 + ], + "min": [ + -0.007093431428074837, + 2.732807159423828, + 7.105427357601002e-15 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 2760, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 6048, + "componentType": 5126, + "count": 42, + "max": [ + 0.35442301630973816, + -0.05525526776909828, + -0.010538293048739433, + 0.9838804006576538 + ], + "min": [ + 0.1697504073381424, + -0.09202402830123901, + -0.01947708986699581, + 0.9303421974182129 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 2928, + "componentType": 5126, + "count": 32, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 3744, + "componentType": 5126, + "count": 32, + "max": [ + 0.008780521340668201, + 3.015723705291748, + 1.4210854715202004e-14 + ], + "min": [ + 0.008780521340668201, + 3.015723705291748, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3056, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 6720, + "componentType": 5126, + "count": 42, + "max": [ + 0.4603099226951599, + -0.0889662504196167, + -0.02175242453813553, + 0.9519984126091003 + ], + "min": [ + 0.29208025336265564, + -0.12155213207006454, + -0.030868250876665115, + 0.8788555860519409 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 3224, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 7392, + "componentType": 5126, + "count": 42, + "max": [ + 0.2747448980808258, + -0.002909577451646328, + 0.11637266725301743, + 0.9746183156967163 + ], + "min": [ + 0.21269355714321136, + -0.05489366501569748, + 0.043212369084358215, + 0.9544444680213928 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 3392, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 4128, + "componentType": 5126, + "count": 42, + "max": [ + 1.4210854715202004e-14, + 24.154508590698242, + 0.0 + ], + "min": [ + -1.4210854715202004e-14, + 24.154508590698242, + -2.842170943040401e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3560, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 8064, + "componentType": 5126, + "count": 42, + "max": [ + -0.0693855732679367, + -0.08693989366292953, + 0.30316486954689026, + 0.9918754696846008 + ], + "min": [ + -0.15532805025577545, + -0.25364184379577637, + -0.05820674076676369, + 0.9239783883094788 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 3728, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 4632, + "componentType": 5126, + "count": 42, + "max": [ + 3.552713678800501e-15, + 16.788631439208984, + 2.842170943040401e-14 + ], + "min": [ + -7.105427357601002e-15, + 16.788631439208984, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 3896, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 8736, + "componentType": 5126, + "count": 42, + "max": [ + 0.056436195969581604, + 0.39452293515205383, + 0.3967853784561157, + 0.9347142577171326 + ], + "min": [ + -0.04403553530573845, + 0.1360589861869812, + 0.2154255360364914, + 0.8409834504127502 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 4064, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 5136, + "componentType": 5126, + "count": 42, + "max": [ + 1.0658141036401503e-14, + 12.513853073120117, + 2.842170943040401e-14 + ], + "min": [ + -7.105427357601002e-15, + 12.513853073120117, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4232, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 9408, + "componentType": 5126, + "count": 42, + "max": [ + 0.2666359543800354, + 0.1454543173313141, + 0.15005919337272644, + 0.9822462797164917 + ], + "min": [ + 0.1208985224366188, + -0.13094407320022583, + -0.14582088589668274, + 0.943524181842804 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 4400, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 10080, + "componentType": 5126, + "count": 42, + "max": [ + 0.6762659549713135, + 0.3852999806404114, + 0.6008180975914001, + 0.43133923411369324 + ], + "min": [ + -0.5909268856048584, + -0.40946903824806213, + -0.5835015177726746, + -0.39286231994628906 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 4568, + "componentType": 5126, + "count": 36, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 5640, + "componentType": 5126, + "count": 36, + "max": [ + 0.4246775209903717, + 5.939361572265625, + 1.4210854715202004e-14 + ], + "min": [ + 0.4246775209903717, + 5.939361572265625, + -2.842170943040401e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 4712, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 10752, + "componentType": 5126, + "count": 42, + "max": [ + 0.14623324573040009, + 0.02935168333351612, + 0.2479219138622284, + 0.9666675329208374 + ], + "min": [ + 0.05680731311440468, + -0.020404091104865074, + 0.2412542849779129, + 0.9591640830039978 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 4880, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 11424, + "componentType": 5126, + "count": 42, + "max": [ + 0.14994826912879944, + -0.04849013686180115, + -0.3224448263645172, + 0.9333775043487549 + ], + "min": [ + 0.12103013694286346, + -0.1416473239660263, + -0.3492412269115448, + 0.9183236360549927 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 5048, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 6072, + "componentType": 5126, + "count": 42, + "max": [ + -0.006493204738944769, + 2.0914220809936523, + 4.263256414560601e-14 + ], + "min": [ + -0.006493204738944769, + 2.0914220809936523, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5216, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 12096, + "componentType": 5126, + "count": 42, + "max": [ + 0.2609192430973053, + -0.03285086154937744, + -0.00904161762446165, + 0.9961115121841431 + ], + "min": [ + 0.07891305536031723, + -0.06304419040679932, + -0.019210075959563255, + 0.9631083011627197 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 5384, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 6576, + "componentType": 5126, + "count": 41, + "max": [ + -0.002129864413291216, + 2.322136878967285, + 1.4210854715202004e-14 + ], + "min": [ + -0.002129864413291216, + 2.322136878967285, + -2.1316282072803006e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5548, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 12768, + "componentType": 5126, + "count": 42, + "max": [ + 0.3823706805706024, + -0.05674903094768524, + -0.022357484325766563, + 0.9859227538108826 + ], + "min": [ + 0.15281365811824799, + -0.09487609565258026, + -0.03429006412625313, + 0.9184854030609131 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 5716, + "componentType": 5126, + "count": 34, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 7068, + "componentType": 5126, + "count": 34, + "max": [ + 0.019236959517002106, + 2.6516599655151367, + 2.842170943040401e-14 + ], + "min": [ + 0.019236959517002106, + 2.6516599655151367, + -2.842170943040401e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 5852, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 13440, + "componentType": 5126, + "count": 42, + "max": [ + 0.35300755500793457, + 0.09356170892715454, + 0.023541763424873352, + 0.9840158224105835 + ], + "min": [ + 0.1689540445804596, + 0.050364598631858826, + 0.007415063679218292, + 0.9306329488754272 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 6020, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 7476, + "componentType": 5126, + "count": 41, + "max": [ + 0.01832844875752926, + 2.8985605239868164, + 2.4868995751603507e-14 + ], + "min": [ + 0.01832844875752926, + 2.8985605239868164, + 0.0 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6184, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 14112, + "componentType": 5126, + "count": 42, + "max": [ + 0.45979976654052734, + 0.11833631247282028, + 0.045604757964611053, + 0.9520547389984131 + ], + "min": [ + 0.2917894423007965, + 0.08102789521217346, + 0.030197834596037865, + 0.878920316696167 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 6352, + "componentType": 5126, + "count": 37, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 7968, + "componentType": 5126, + "count": 37, + "max": [ + 7.105427357601002e-15, + 24.155540466308594, + 1.4210854715202004e-14 + ], + "min": [ + -7.105427357601002e-15, + 24.155540466308594, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6500, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 14784, + "componentType": 5126, + "count": 42, + "max": [ + 0.013247703202068806, + 0.29604849219322205, + 0.19686786830425262, + 0.9912223815917969 + ], + "min": [ + -0.1050492525100708, + 0.09696351736783981, + -0.006501981522887945, + 0.9485992193222046 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 6668, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 8412, + "componentType": 5126, + "count": 41, + "max": [ + 1.4210854715202004e-14, + 16.79725456237793, + 0.0 + ], + "min": [ + -1.4210854715202004e-14, + 16.79725456237793, + -4.263256414560601e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 6832, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 15456, + "componentType": 5126, + "count": 42, + "max": [ + 0.08123710006475449, + 0.07251865416765213, + -0.0849742442369461, + 0.9962702989578247 + ], + "min": [ + -0.019500166177749634, + -0.11421241611242294, + -0.4416033625602722, + 0.8927398324012756 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7000, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 8904, + "componentType": 5126, + "count": 41, + "max": [ + 1.4210854715202004e-14, + 12.5138521194458, + -1.4210854715202004e-14 + ], + "min": [ + -1.4210854715202004e-14, + 12.5138521194458, + -5.684341886080802e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 7164, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 16128, + "componentType": 5126, + "count": 42, + "max": [ + 0.2007187008857727, + 0.19609631597995758, + -0.13332979381084442, + 0.9834079742431641 + ], + "min": [ + 0.09646662324666977, + -0.27709484100341797, + -0.21665790677070618, + 0.9317367076873779 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7332, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 16800, + "componentType": 5126, + "count": 42, + "max": [ + 0.6438778042793274, + -0.3664626181125641, + 0.662450909614563, + 0.3163932263851166 + ], + "min": [ + 0.5413287878036499, + -0.47667133808135986, + 0.5848992466926575, + 0.22568778693675995 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7500, + "componentType": 5126, + "count": 41, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 9396, + "componentType": 5126, + "count": 41, + "max": [ + 1.7763568394002505e-15, + 13.774395942687988, + 1.4210854715202004e-14 + ], + "min": [ + -8.881784197001252e-16, + 13.774395942687988, + -7.105427357601002e-15 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 7664, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 17472, + "componentType": 5126, + "count": 42, + "max": [ + -0.021151842549443245, + 0.06595087051391602, + 0.00044606527080759406, + 0.9994556903839111 + ], + "min": [ + -0.05095425620675087, + -0.03799109160900116, + -0.00903741642832756, + 0.9968738555908203 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 7832, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 9888, + "componentType": 5126, + "count": 42, + "max": [ + 1.7763568394002505e-15, + 12.052593231201172, + 3.552713678800501e-15 + ], + "min": [ + -1.7763568394002505e-15, + 12.052593231201172, + -1.0658141036401503e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8000, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 18144, + "componentType": 5126, + "count": 42, + "max": [ + 0.0655292198061943, + 0.06530967354774475, + 0.002752360887825489, + 0.9990749955177307 + ], + "min": [ + 0.03540936857461929, + -0.038508620113134384, + -0.015250125899910927, + 0.996144711971283 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 8168, + "componentType": 5126, + "count": 40, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 10392, + "componentType": 5126, + "count": 40, + "max": [ + 2.6645352591003757e-15, + 10.31866455078125, + -0.500691294670105 + ], + "min": [ + -1.7763568394002505e-15, + 10.31866455078125, + -0.500691294670105 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8328, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 18816, + "componentType": 5126, + "count": 42, + "max": [ + 0.0856044813990593, + 0.039842162281274796, + 0.008954658173024654, + 0.997607946395874 + ], + "min": [ + 0.06656093895435333, + -0.023874353617429733, + -0.01420692540705204, + 0.9955107569694519 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 8496, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 10872, + "componentType": 5126, + "count": 42, + "max": [ + 1.0658141036401503e-14, + 25.665178298950195, + 3.552713678800501e-15 + ], + "min": [ + 0.0, + 25.665178298950195, + -3.552713678800501e-15 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 8664, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 19488, + "componentType": 5126, + "count": 42, + "max": [ + 0.8382641673088074, + 0.1027611643075943, + 0.13446471095085144, + 0.9821090698242188 + ], + "min": [ + 0.11990635097026825, + -0.2736794054508209, + -0.029550446197390556, + 0.47101521492004395 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 8832, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 11376, + "componentType": 5126, + "count": 42, + "max": [ + 3.552713678800501e-15, + 34.41109085083008, + 1.0658141036401503e-14 + ], + "min": [ + -3.552713678800501e-15, + 34.41109085083008, + -1.0658141036401503e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9000, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 20160, + "componentType": 5126, + "count": 42, + "max": [ + 0.741920530796051, + -0.0753803476691246, + 0.06690389662981033, + 0.9779868721961975 + ], + "min": [ + 0.19120575487613678, + -0.10585268586874008, + -0.05620145797729492, + 0.6611079573631287 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 9168, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 11880, + "componentType": 5126, + "count": 42, + "max": [ + 3.552713678800501e-15, + 41.200828552246094, + 7.105427357601002e-15 + ], + "min": [ + -7.105427357601002e-15, + 41.200828552246094, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9336, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 20832, + "componentType": 5126, + "count": 42, + "max": [ + -0.13350285589694977, + 0.11538141220808029, + 0.036939460784196854, + 0.9908240437507629 + ], + "min": [ + -0.6956350207328796, + -0.059724584221839905, + -0.059010814875364304, + 0.7066093683242798 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 9504, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 21504, + "componentType": 5126, + "count": 42, + "max": [ + 0.0893285870552063, + 0.3842543959617615, + 0.9943482279777527, + -0.015042382292449474 + ], + "min": [ + -0.0033360642846673727, + 0.05758016183972359, + 0.9214043021202087, + -0.07316506654024124 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 9672, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 12384, + "componentType": 5126, + "count": 42, + "max": [ + 3.552713678800501e-15, + 24.9217529296875, + 1.7763568394002505e-15 + ], + "min": [ + -3.552713678800501e-15, + 24.9217529296875, + -7.105427357601002e-15 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 9840, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 22176, + "componentType": 5126, + "count": 42, + "max": [ + 0.6498925089836121, + 0.29913195967674255, + -0.03056410327553749, + 0.9872372150421143 + ], + "min": [ + 0.11184754222631454, + 0.030732527375221252, + -0.11699402332305908, + 0.7072783708572388 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10008, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 12888, + "componentType": 5126, + "count": 42, + "max": [ + 2.6645352591003757e-15, + 34.316062927246094, + 7.105427357601002e-15 + ], + "min": [ + -1.7763568394002505e-15, + 34.316062927246094, + -7.105427357601002e-15 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 10176, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 22848, + "componentType": 5126, + "count": 42, + "max": [ + 0.724912166595459, + 0.13559260964393616, + -0.016424765810370445, + 0.8806470632553101 + ], + "min": [ + 0.4604892134666443, + 0.06292586028575897, + -0.11707037687301636, + 0.67808997631073 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10344, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 13392, + "componentType": 5126, + "count": 42, + "max": [ + 3.552713678800501e-15, + 41.213890075683594, + 7.105427357601002e-15 + ], + "min": [ + -5.3290705182007514e-15, + 41.213890075683594, + -1.4210854715202004e-14 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 10512, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 23520, + "componentType": 5126, + "count": 42, + "max": [ + -0.22592681646347046, + -0.02290210872888565, + 0.07733310759067535, + 0.9725161194801331 + ], + "min": [ + -0.6400826573371887, + -0.1125984936952591, + 0.03854509815573692, + 0.7659068703651428 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10680, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 24192, + "componentType": 5126, + "count": 42, + "max": [ + -0.020102426409721375, + 0.4161621034145355, + 0.9965490102767944, + 0.09763146191835403 + ], + "min": [ + -0.08943261206150055, + -0.05077045038342476, + 0.9045336842536926, + 0.04249916598200798 + ], + "type": "VEC4" + }, + { + "bufferView": 6, + "byteOffset": 10848, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 7, + "byteOffset": 13896, + "componentType": 5126, + "count": 42, + "max": [ + 8.836053848266602, + 93.8922348022461, + 4.568533420562744 + ], + "min": [ + -0.15407869219779968, + 84.68858337402344, + -3.5478339195251465 + ], + "type": "VEC3" + }, + { + "bufferView": 6, + "byteOffset": 11016, + "componentType": 5126, + "count": 42, + "max": [ + 1.3666666746139526 + ], + "min": [ + 0.0 + ], + "type": "SCALAR" + }, + { + "bufferView": 8, + "byteOffset": 24864, + "componentType": 5126, + "count": 42, + "max": [ + 0.05723710358142853, + 0.0013769519282504916, + 0.020769217982888222, + 0.999254047870636 + ], + "min": [ + 0.01099975686520338, + -0.05038484185934067, + -0.01920136623084545, + 0.998175859451294 + ], + "type": "VEC4" + } + ], + "animations": [ + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 3, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 4, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 5, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 6, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 9, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 10, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 12, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 13, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 14, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 15, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 16, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 17, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 18, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 21, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 24, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 25, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 26, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 27, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 28, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 29, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 30, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 31, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 32, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 33, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 36, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 37, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 38, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 39, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 42, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 43, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 44, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 45, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 46, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 47, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 48, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 51, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 52, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 53, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 54, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 57, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 58, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 60, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 61, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 62, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 63, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 66, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 8, + "path": "rotation" + } + } + ], + "name": "Take 001", + "samplers": [ + { + "input": 13, + "interpolation": "LINEAR", + "output": 14 + }, + { + "input": 15, + "interpolation": "LINEAR", + "output": 16 + }, + { + "input": 17, + "interpolation": "LINEAR", + "output": 18 + }, + { + "input": 19, + "interpolation": "LINEAR", + "output": 20 + }, + { + "input": 21, + "interpolation": "LINEAR", + "output": 22 + }, + { + "input": 23, + "interpolation": "LINEAR", + "output": 24 + }, + { + "input": 25, + "interpolation": "LINEAR", + "output": 26 + }, + { + "input": 27, + "interpolation": "LINEAR", + "output": 28 + }, + { + "input": 29, + "interpolation": "LINEAR", + "output": 30 + }, + { + "input": 31, + "interpolation": "LINEAR", + "output": 32 + }, + { + "input": 33, + "interpolation": "LINEAR", + "output": 34 + }, + { + "input": 35, + "interpolation": "LINEAR", + "output": 36 + }, + { + "input": 37, + "interpolation": "LINEAR", + "output": 38 + }, + { + "input": 39, + "interpolation": "LINEAR", + "output": 40 + }, + { + "input": 41, + "interpolation": "LINEAR", + "output": 42 + }, + { + "input": 43, + "interpolation": "LINEAR", + "output": 44 + }, + { + "input": 45, + "interpolation": "LINEAR", + "output": 46 + }, + { + "input": 47, + "interpolation": "LINEAR", + "output": 48 + }, + { + "input": 49, + "interpolation": "LINEAR", + "output": 50 + }, + { + "input": 51, + "interpolation": "LINEAR", + "output": 52 + }, + { + "input": 53, + "interpolation": "LINEAR", + "output": 54 + }, + { + "input": 55, + "interpolation": "LINEAR", + "output": 56 + }, + { + "input": 57, + "interpolation": "LINEAR", + "output": 58 + }, + { + "input": 59, + "interpolation": "LINEAR", + "output": 60 + }, + { + "input": 61, + "interpolation": "LINEAR", + "output": 62 + }, + { + "input": 63, + "interpolation": "LINEAR", + "output": 64 + }, + { + "input": 65, + "interpolation": "LINEAR", + "output": 66 + }, + { + "input": 67, + "interpolation": "LINEAR", + "output": 68 + }, + { + "input": 69, + "interpolation": "LINEAR", + "output": 70 + }, + { + "input": 71, + "interpolation": "LINEAR", + "output": 72 + }, + { + "input": 73, + "interpolation": "LINEAR", + "output": 74 + }, + { + "input": 75, + "interpolation": "LINEAR", + "output": 76 + }, + { + "input": 77, + "interpolation": "LINEAR", + "output": 78 + }, + { + "input": 79, + "interpolation": "LINEAR", + "output": 80 + }, + { + "input": 81, + "interpolation": "LINEAR", + "output": 82 + }, + { + "input": 83, + "interpolation": "LINEAR", + "output": 84 + }, + { + "input": 85, + "interpolation": "LINEAR", + "output": 86 + }, + { + "input": 87, + "interpolation": "LINEAR", + "output": 88 + }, + { + "input": 89, + "interpolation": "LINEAR", + "output": 90 + }, + { + "input": 91, + "interpolation": "LINEAR", + "output": 92 + }, + { + "input": 93, + "interpolation": "LINEAR", + "output": 94 + }, + { + "input": 95, + "interpolation": "LINEAR", + "output": 96 + }, + { + "input": 97, + "interpolation": "LINEAR", + "output": 98 + }, + { + "input": 99, + "interpolation": "LINEAR", + "output": 100 + }, + { + "input": 101, + "interpolation": "LINEAR", + "output": 102 + }, + { + "input": 103, + "interpolation": "LINEAR", + "output": 104 + }, + { + "input": 105, + "interpolation": "LINEAR", + "output": 106 + }, + { + "input": 107, + "interpolation": "LINEAR", + "output": 108 + }, + { + "input": 109, + "interpolation": "LINEAR", + "output": 110 + }, + { + "input": 111, + "interpolation": "LINEAR", + "output": 112 + }, + { + "input": 113, + "interpolation": "LINEAR", + "output": 114 + }, + { + "input": 115, + "interpolation": "LINEAR", + "output": 116 + }, + { + "input": 117, + "interpolation": "LINEAR", + "output": 118 + }, + { + "input": 119, + "interpolation": "LINEAR", + "output": 120 + }, + { + "input": 121, + "interpolation": "LINEAR", + "output": 122 + }, + { + "input": 123, + "interpolation": "LINEAR", + "output": 124 + }, + { + "input": 125, + "interpolation": "LINEAR", + "output": 126 + }, + { + "input": 127, + "interpolation": "LINEAR", + "output": 128 + }, + { + "input": 129, + "interpolation": "LINEAR", + "output": 130 + }, + { + "input": 131, + "interpolation": "LINEAR", + "output": 132 + }, + { + "input": 133, + "interpolation": "LINEAR", + "output": 134 + }, + { + "input": 135, + "interpolation": "LINEAR", + "output": 136 + }, + { + "input": 137, + "interpolation": "LINEAR", + "output": 138 + }, + { + "input": 139, + "interpolation": "LINEAR", + "output": 140 + }, + { + "input": 141, + "interpolation": "LINEAR", + "output": 142 + }, + { + "input": 143, + "interpolation": "LINEAR", + "output": 144 + }, + { + "input": 145, + "interpolation": "LINEAR", + "output": 146 + }, + { + "input": 147, + "interpolation": "LINEAR", + "output": 148 + } + ] + } + ], + "asset": { + "extras": { + "author": "Charles Smith (Blitz Mobile Apps) (https://sketchfab.com/BlitzMobileApp)", + "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)", + "source": "https://sketchfab.com/3d-models/scary-pumpkin-scarecrow-character-66c2b6c9fb134e47af22d1ae88cb8fa9", + "title": "Scary Pumpkin Scarecrow Character" + }, + "generator": "Sketchfab-11.94.0", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 156392, + "byteStride": 8, + "name": "shortBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 431400, + "byteOffset": 156392, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 158456, + "byteOffset": 587792, + "byteStride": 8, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 475368, + "byteOffset": 746248, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 629696, + "byteOffset": 1221616, + "byteStride": 16, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 3200, + "byteOffset": 1851312, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 11184, + "byteOffset": 1854512, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 14400, + "byteOffset": 1865696, + "byteStride": 12, + "name": "floatBufferViews" + }, + { + "buffer": 0, + "byteLength": 25536, + "byteOffset": 1880096, + "byteStride": 16, + "name": "floatBufferViews" + } + ], + "buffers": [ + { + "byteLength": 1905632, + "uri": "scene.bin" + } + ], + "images": [ + { + "uri": "textures/lambert1_baseColor.jpeg" + }, + { + "uri": "textures/lambert1_metallicRoughness.png" + }, + { + "uri": "textures/lambert1_emissive.jpeg" + }, + { + "uri": "textures/lambert1_normal.png" + } + ], + "materials": [ + { + "doubleSided": true, + "emissiveFactor": [ + 1.0, + 1.0, + 1.0 + ], + "emissiveTexture": { + "index": 2 + }, + "name": "lambert1", + "normalTexture": { + "index": 3 + }, + "occlusionTexture": { + "index": 1 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 0 + }, + "metallicRoughnessTexture": { + "index": 1 + } + } + } + ], + "meshes": [ + { + "name": "Pumpins_Chaarcter_LP_lambert1_0", + "primitives": [ + { + "attributes": { + "JOINTS_0": 11, + "NORMAL": 1, + "POSITION": 0, + "TANGENT": 2, + "TEXCOORD_0": 3, + "WEIGHTS_0": 12 + }, + "indices": 4, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "Pumpins_Chaarcter_LP.001_lambert1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 6, + "POSITION": 5, + "TANGENT": 7, + "TEXCOORD_0": 8 + }, + "indices": 9, + "material": 0, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [ + 1 + ], + "matrix": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.220446049250313e-16, + -1.0, + 0.0, + 0.0, + 1.0, + 2.220446049250313e-16, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ], + "name": "Sketchfab_model" + }, + { + "children": [ + 2 + ], + "matrix": [ + 0.009999999776482582, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009999999776482582, + 0.0, + 0.0, + -0.009999999776482582, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ], + "name": "77408f08e2114748940f646333c358c9.fbx" + }, + { + "children": [ + 3 + ], + "name": "Object_2" + }, + { + "children": [ + 4 + ], + "name": "RootNode" + }, + { + "children": [ + 5, + 7, + 6, + 57, + 59 + ], + "name": "Object_4" + }, + { + "children": [ + 8 + ], + "name": "_rootJoint" + }, + { + "matrix": [ + 100.00000000000001, + 4.440892098500626e-16, + -1.9671764217576996e-15, + 0.0, + -1.9671763494062414e-15, + -1.6292100040709928e-05, + -100.00000000000001, + 0.0, + -4.440895303444131e-16, + 99.99999999999999, + -1.629210004070992e-05, + 0.0, + 3.552713678800501e-15, + -1.1102230246251565e-16, + -1.7763568394002505e-15, + 1.0 + ], + "name": "Object_6" + }, + { + "mesh": 0, + "name": "Object_7", + "skin": 0 + }, + { + "children": [ + 9, + 47, + 52 + ], + "name": "mixamorig:Hips_01", + "rotation": [ + 0.04072176665067673, + -0.005145258270204067, + 0.02076921984553337, + 0.9989414811134338 + ], + "translation": [ + -0.04255756735801697, + 91.95792388916016, + -0.2504376173019409 + ] + }, + { + "children": [ + 10 + ], + "name": "mixamorig:Spine_02", + "rotation": [ + 0.0796947181224823, + 0.015119386836886406, + -0.0026637231931090355, + 0.996701180934906 + ], + "translation": [ + 4.440892098500626e-16, + 10.31866455078125, + -0.500691294670105 + ] + }, + { + "children": [ + 11 + ], + "name": "mixamorig:Spine1_03", + "rotation": [ + 0.05633101612329483, + 0.02537180297076702, + -0.007372235879302025, + 0.9980624914169312 + ], + "translation": [ + 4.440892098500626e-16, + 12.052593231201172, + 3.552713678800501e-15 + ] + }, + { + "children": [ + 12, + 15, + 31 + ], + "name": "mixamorig:Spine2_04", + "rotation": [ + -0.03039063699543476, + 0.026191160082817078, + -0.00480048730969429, + 0.9991833567619324 + ], + "translation": [ + 4.440892098500626e-16, + 13.774395942687988, + 1.4210854715202004e-14 + ] + }, + { + "children": [ + 13 + ], + "name": "mixamorig:Neck_05", + "rotation": [ + -0.019532622769474983, + -0.04967305809259415, + 0.026478691026568413, + 0.9982234835624695 + ], + "translation": [ + -8.881784197001252e-16, + 15.49619197845459, + 3.0930184635735714e-08 + ] + }, + { + "children": [ + 14 + ], + "name": "mixamorig:Head_06", + "rotation": [ + -0.05335899442434311, + -0.033445391803979874, + -0.017340555787086487, + 0.9978644847869873 + ], + "translation": [ + 0.0, + 8.271438598632813, + 0.9316272139549255 + ] + }, + { + "name": "mixamorig:HeadTop_End_07", + "rotation": [ + 0.0, + -0.0, + -2.168404344971009e-18, + 1.0 + ], + "translation": [ + 0.0, + 54.31217956542969, + 6.11728048324585 + ] + }, + { + "children": [ + 16 + ], + "name": "mixamorig:LeftShoulder_08", + "rotation": [ + 0.6468906998634338, + 0.33866819739341736, + -0.5565237998962402, + 0.39638057351112366 + ], + "translation": [ + 5.647499084472656, + 12.862173080444336, + -0.15735012292861938 + ] + }, + { + "children": [ + 17 + ], + "name": "mixamorig:LeftArm_09", + "rotation": [ + 0.20895133912563324, + -0.005851214751601219, + 0.00893735233694315, + 0.9778677225112915 + ], + "translation": [ + 3.552713678800501e-15, + 12.513853073120117, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 18 + ], + "name": "mixamorig:LeftForeArm_010", + "rotation": [ + 0.04440657049417496, + 0.29030999541282654, + 0.23612180352210999, + 0.9262800216674805 + ], + "translation": [ + 0.0, + 16.788631439208984, + 0.0 + ] + }, + { + "children": [ + 19, + 23, + 27 + ], + "name": "mixamorig:LeftHand_011", + "rotation": [ + -0.09321903437376022, + -0.08950231224298477, + 0.17740486562252045, + 0.9756162762641907 + ], + "translation": [ + 0.0, + 24.154508590698242, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 20 + ], + "name": "mixamorig:LeftHandThumb1_00", + "rotation": [ + 0.11617664247751236, + 0.13621963560581207, + 0.39221712946891785, + 0.9022820591926575 + ], + "translation": [ + -2.1282129287719727, + 6.585226535797119, + 0.6157359480857849 + ] + }, + { + "children": [ + 21 + ], + "name": "mixamorig:LeftHandThumb2_012", + "rotation": [ + 0.15175898373126984, + 0.019023269414901733, + -0.322525292634964, + 0.9341224431991577 + ], + "translation": [ + 0.09473636001348495, + 5.557535648345947, + 0.0 + ] + }, + { + "children": [ + 22 + ], + "name": "mixamorig:LeftHandThumb3_013", + "rotation": [ + -0.014507155865430832, + 0.07360292971134186, + 0.13275423645973206, + 0.9883058667182922 + ], + "translation": [ + -0.8736374974250793, + 3.5532031059265137, + 1.4210854715202004e-14 + ] + }, + { + "name": "mixamorig:LeftHandThumb4_014", + "rotation": [ + 1.1102230246251565e-16, + -1.0408340855860843e-17, + 4.5536491244391186e-17, + 1.0 + ], + "translation": [ + 0.7789011597633362, + 3.5193493366241455, + 1.4210854715202004e-14 + ] + }, + { + "children": [ + 24 + ], + "name": "mixamorig:LeftHandIndex1_015", + "rotation": [ + 0.19506976008415222, + -0.012584928423166275, + 0.05124235525727272, + 0.9793689846992493 + ], + "translation": [ + -3.0157511234283447, + 19.813142776489258, + -0.0011276163859292865 + ] + }, + { + "children": [ + 25 + ], + "name": "mixamorig:LeftHandIndex2_016", + "rotation": [ + 0.38118287920951843, + 0.09508613497018814, + 0.042667314410209656, + 0.9186064004898071 + ], + "translation": [ + 0.008284694515168667, + 2.2794647216796875, + 0.0 + ] + }, + { + "children": [ + 26 + ], + "name": "mixamorig:LeftHandIndex3_017", + "rotation": [ + 0.26004230976104736, + 0.06341278553009033, + 0.028932614251971245, + 0.9630782604217529 + ], + "translation": [ + -0.000969763146713376, + 2.2755703926086426, + 3.552713678800501e-15 + ] + }, + { + "name": "mixamorig:LeftHandIndex4_018", + "rotation": [ + -5.551115123125783e-17, + -1.5407439555097887e-33, + 2.7755575615628914e-17, + 1.0 + ], + "translation": [ + -0.007314931135624647, + 2.0876760482788086, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 28 + ], + "name": "mixamorig:LeftHandRing1_019", + "rotation": [ + 0.2747447192668915, + -0.002909630537033081, + 0.11637256294488907, + 0.9544445276260376 + ], + "translation": [ + 1.005250334739685, + 18.856908798217773, + 0.0018074512481689453 + ] + }, + { + "children": [ + 29 + ], + "name": "mixamorig:LeftHandRing2_020", + "rotation": [ + 0.4603096544742584, + -0.12155194580554962, + -0.030868250876665115, + 0.8788557052612305 + ], + "translation": [ + 0.008780521340668201, + 3.015723705291748, + 0.0 + ] + }, + { + "children": [ + 30 + ], + "name": "mixamorig:LeftHandRing3_021", + "rotation": [ + 0.3544229567050934, + -0.09202385693788528, + -0.019476843997836113, + 0.9303421974182129 + ], + "translation": [ + -0.007093431428074837, + 2.732807159423828, + 2.1316282072803006e-14 + ] + }, + { + "name": "mixamorig:LeftHandRing4_022", + "rotation": [ + 2.5760643618255585e-16, + 2.4936649967166602e-17, + -8.326672684688674e-17, + 1.0 + ], + "translation": [ + -0.0016870899125933647, + 2.9244251251220703, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 32 + ], + "name": "mixamorig:RightShoulder_023", + "rotation": [ + 0.635750412940979, + -0.39188140630722046, + 0.5849322080612183, + 0.3163932263851166 + ], + "translation": [ + -5.647499084472656, + 12.859313011169434, + -0.09840920567512512 + ] + }, + { + "children": [ + 33 + ], + "name": "mixamorig:RightArm_024", + "rotation": [ + 0.1380753517150879, + 0.19609622657299042, + -0.17957842350006104, + 0.9540613293647766 + ], + "translation": [ + 1.4210854715202004e-14, + 12.5138521194458, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 34 + ], + "name": "mixamorig:RightForeArm_025", + "rotation": [ + 0.03878013417124748, + -0.11090179532766342, + -0.280577152967453, + 0.9526140689849854 + ], + "translation": [ + 0.0, + 16.79725456237793, + -2.842170943040401e-14 + ] + }, + { + "children": [ + 35, + 39, + 43 + ], + "name": "mixamorig:RightHand_026", + "rotation": [ + 0.0051356046460568905, + 0.12595364451408386, + 0.08669638633728027, + 0.9882272481918335 + ], + "translation": [ + 0.0, + 24.155540466308594, + 0.0 + ] + }, + { + "children": [ + 36 + ], + "name": "mixamorig:RightHandThumb1_027", + "rotation": [ + 0.14635971188545227, + -0.05970194190740585, + -0.3257047235965729, + 0.9321646690368652 + ], + "translation": [ + 2.5318288803100586, + 6.945278644561768, + 0.8680182695388794 + ] + }, + { + "children": [ + 37 + ], + "name": "mixamorig:RightHandThumb2_028", + "rotation": [ + 0.06749321520328522, + 0.022879866883158684, + 0.2476014792919159, + 0.9662373661994934 + ], + "translation": [ + 0.4246775209903717, + 5.939361572265625, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 38 + ], + "name": "mixamorig:RightHandThumb3_029", + "rotation": [ + -0.010350720956921577, + -0.06359561532735825, + 0.008390220813453197, + 0.9978868961334229 + ], + "translation": [ + 0.5574973821640015, + 3.700528621673584, + 0.0 + ] + }, + { + "name": "mixamorig:RightHandThumb4_030", + "rotation": [ + -8.326672684688674e-17, + 2.7755575615628914e-17, + 2.311115933264683e-33, + 1.0 + ], + "translation": [ + -0.9821749329566956, + 3.058485984802246, + 0.0 + ] + }, + { + "children": [ + 40 + ], + "name": "mixamorig:RightHandIndex1_031", + "rotation": [ + 0.8076913356781006, + 0.04040054231882095, + -0.0661294087767601, + 0.5844908952713013 + ], + "translation": [ + 3.1155335903167725, + 20.258169174194336, + 0.09168709814548492 + ] + }, + { + "children": [ + 41 + ], + "name": "mixamorig:RightHandIndex2_032", + "rotation": [ + 0.1528146117925644, + -0.06343211978673935, + -0.024090291932225227, + 0.9859228730201721 + ], + "translation": [ + -0.002129864413291216, + 2.322136878967285, + -1.4210854715202004e-14 + ] + }, + { + "children": [ + 42 + ], + "name": "mixamorig:RightHandIndex3_033", + "rotation": [ + 0.07891305536031723, + -0.038075368851423264, + -0.00921302754431963, + 0.9961115121841431 + ], + "translation": [ + -0.006493204738944769, + 2.0914220809936523, + 7.105427357601002e-15 + ] + }, + { + "name": "mixamorig:RightHandIndex4_034", + "rotation": [ + 4.163336342344337e-17, + -2.311115933264683e-33, + -5.551115123125783e-17, + 1.0 + ], + "translation": [ + 0.008623069152235985, + 2.0762715339660645, + 2.842170943040401e-14 + ] + }, + { + "children": [ + 44 + ], + "name": "mixamorig:RightHandRing1_035", + "rotation": [ + 0.6997315287590027, + 0.03140930086374283, + -0.05813109502196312, + 0.7113438248634338 + ], + "translation": [ + -1.0385112762451172, + 19.537689208984375, + -0.024828219786286354 + ] + }, + { + "children": [ + 45 + ], + "name": "mixamorig:RightHandRing2_036", + "rotation": [ + 0.29179954528808594, + 0.08691266924142838, + 0.030197834596037865, + 0.9520437717437744 + ], + "translation": [ + 0.01832844875752926, + 2.8985605239868164, + 2.4868995751603507e-14 + ] + }, + { + "children": [ + 46 + ], + "name": "mixamorig:RightHandRing3_037", + "rotation": [ + 0.16895590722560883, + 0.05590455234050751, + 0.007415063679218292, + 0.9840089678764343 + ], + "translation": [ + 0.019236959517002106, + 2.6516599655151367, + 0.0 + ] + }, + { + "name": "mixamorig:RightHandRing4_038", + "rotation": [ + 1.0061396160665481e-16, + -5.551115123125783e-17, + -5.551115123125783e-17, + 1.0 + ], + "translation": [ + -0.037565406411886215, + 2.763094425201416, + 1.4210854715202004e-14 + ] + }, + { + "children": [ + 48 + ], + "name": "mixamorig:LeftUpLeg_039", + "rotation": [ + 0.024784982204437256, + 0.3119164705276489, + 0.9487540125846863, + -0.04426795244216919 + ], + "translation": [ + 9.388558387756348, + -5.701271057128906, + 0.5334210395812988 + ] + }, + { + "children": [ + 49 + ], + "name": "mixamorig:LeftLeg_040", + "rotation": [ + -0.5684688091278076, + 0.0552980899810791, + -0.0397309772670269, + 0.819882333278656 + ], + "translation": [ + 0.0, + 41.200828552246094, + -7.105427357601002e-15 + ] + }, + { + "children": [ + 50 + ], + "name": "mixamorig:LeftFoot_041", + "rotation": [ + 0.47544628381729126, + -0.07552933692932129, + 0.035606179386377335, + 0.875773012638092 + ], + "translation": [ + 0.0, + 34.41109085083008, + 1.7763568394002505e-15 + ] + }, + { + "children": [ + 51 + ], + "name": "mixamorig:LeftToeBase_042", + "rotation": [ + 0.5724567174911499, + -0.08758086711168289, + 0.02111128345131874, + 0.8149706721305847 + ], + "translation": [ + 0.0, + 25.665178298950195, + 0.0 + ] + }, + { + "name": "mixamorig:LeftToe_End_043", + "rotation": [ + -5.2909066017292616e-17, + -6.179952383167375e-17, + -3.269755086247275e-33, + 1.0 + ], + "translation": [ + 0.0, + 9.466764450073242, + -1.1102230246251565e-16 + ] + }, + { + "children": [ + 53 + ], + "name": "mixamorig:RightUpLeg_044", + "rotation": [ + -0.03964398428797722, + 0.14676326513290405, + 0.9872589707374573, + 0.046995364129543304 + ], + "translation": [ + -9.388558387756348, + -5.701271057128906, + 0.5890812873840332 + ] + }, + { + "children": [ + 54 + ], + "name": "mixamorig:RightLeg_045", + "rotation": [ + -0.3490195572376251, + -0.05131291225552559, + 0.05919307842850685, + 0.9338353872299194 + ], + "translation": [ + -1.7763568394002505e-15, + 41.213890075683594, + 0.0 + ] + }, + { + "children": [ + 55 + ], + "name": "mixamorig:RightFoot_046", + "rotation": [ + 0.6973168849945068, + 0.08178103715181351, + -0.10488644242286682, + 0.704315185546875 + ], + "translation": [ + 8.881784197001252e-16, + 34.316062927246094, + 0.0 + ] + }, + { + "children": [ + 56 + ], + "name": "mixamorig:RightToeBase_047", + "rotation": [ + 0.17457804083824158, + 0.039477139711380005, + -0.0797029584646225, + 0.9806179404258728 + ], + "translation": [ + -1.7763568394002505e-15, + 24.9217529296875, + -1.7763568394002505e-15 + ] + }, + { + "name": "mixamorig:RightToe_End_048", + "rotation": [ + -1.3877787807814457e-17, + 4.163336342344337e-17, + 5.7777898331617076e-34, + 1.0 + ], + "translation": [ + 1.7763568394002505e-15, + 9.378458023071289, + 0.0 + ] + }, + { + "children": [ + 58 + ], + "name": "Pumpins_Chaarcter_LP.001", + "rotation": [ + -0.05145281180739403, + -0.050973355770111084, + -0.7019407749176025, + 0.7085432410240173 + ], + "scale": [ + 100.0, + 100.0, + 100.0 + ], + "translation": [ + -39.93693161010742, + 90.01654052734375, + 67.66598510742188 + ] + }, + { + "mesh": 1, + "name": "Pumpins_Chaarcter_LP.001_lambert1_0" + }, + { + "name": "Pumpins_Chaarcter_LP", + "rotation": [ + -0.7071068286895752, + 0.0, + 0.0, + 0.7071067094802856 + ], + "scale": [ + 100.0, + 100.0, + 100.0 + ] + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + ], + "scene": 0, + "scenes": [ + { + "name": "Sketchfab_Scene", + "nodes": [ + 0 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 10, + "joints": [ + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ], + "skeleton": 5 + } + ], + "textures": [ + { + "sampler": 0, + "source": 0 + }, + { + "sampler": 0, + "source": 1 + }, + { + "sampler": 0, + "source": 2 + }, + { + "sampler": 0, + "source": 3 + } + ] +} diff --git a/demo/assets/scarecrow/textures/lambert1_baseColor.jpeg b/demo/assets/scarecrow/textures/lambert1_baseColor.jpeg new file mode 100644 index 0000000..5a6a2e2 Binary files /dev/null and b/demo/assets/scarecrow/textures/lambert1_baseColor.jpeg differ diff --git a/demo/assets/scarecrow/textures/lambert1_emissive.jpeg b/demo/assets/scarecrow/textures/lambert1_emissive.jpeg new file mode 100644 index 0000000..851d871 Binary files /dev/null and b/demo/assets/scarecrow/textures/lambert1_emissive.jpeg differ diff --git a/demo/assets/scarecrow/textures/lambert1_metallicRoughness.png b/demo/assets/scarecrow/textures/lambert1_metallicRoughness.png new file mode 100644 index 0000000..0b91318 Binary files /dev/null and b/demo/assets/scarecrow/textures/lambert1_metallicRoughness.png differ diff --git a/demo/assets/scarecrow/textures/lambert1_normal.png b/demo/assets/scarecrow/textures/lambert1_normal.png new file mode 100644 index 0000000..ff1e3b2 Binary files /dev/null and b/demo/assets/scarecrow/textures/lambert1_normal.png differ diff --git a/demo/assets/scrow/scarecrow.glb b/demo/assets/scrow/scarecrow.glb new file mode 100644 index 0000000..c99fe5d Binary files /dev/null and b/demo/assets/scrow/scarecrow.glb differ diff --git a/demo/assets/scrow/source/PC_WalkCycle_Animations.fbx b/demo/assets/scrow/source/PC_WalkCycle_Animations.fbx new file mode 100644 index 0000000..cc408a6 Binary files /dev/null and b/demo/assets/scrow/source/PC_WalkCycle_Animations.fbx differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Base_Color.jpg b/demo/assets/scrow/textures/DefaultMaterial_Base_Color.jpg new file mode 100644 index 0000000..2a2c3f9 Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Base_Color.jpg differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Emissive.jpg b/demo/assets/scrow/textures/DefaultMaterial_Emissive.jpg new file mode 100644 index 0000000..3962f60 Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Emissive.jpg differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Metallic.jpg b/demo/assets/scrow/textures/DefaultMaterial_Metallic.jpg new file mode 100644 index 0000000..ee668b5 Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Metallic.jpg differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Mixed_AO.jpg b/demo/assets/scrow/textures/DefaultMaterial_Mixed_AO.jpg new file mode 100644 index 0000000..e81d373 Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Mixed_AO.jpg differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Normal_OpenGL.jpg b/demo/assets/scrow/textures/DefaultMaterial_Normal_OpenGL.jpg new file mode 100644 index 0000000..cf6ee6a Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Normal_OpenGL.jpg differ diff --git a/demo/assets/scrow/textures/DefaultMaterial_Roughness.jpg b/demo/assets/scrow/textures/DefaultMaterial_Roughness.jpg new file mode 100644 index 0000000..6c4c429 Binary files /dev/null and b/demo/assets/scrow/textures/DefaultMaterial_Roughness.jpg differ diff --git a/demo/assets/skybox.jpg b/demo/assets/skybox.jpg new file mode 100644 index 0000000..dea9020 Binary files /dev/null and b/demo/assets/skybox.jpg differ diff --git a/demo/assets/snow-texture.jpg b/demo/assets/snow-texture.jpg new file mode 100644 index 0000000..41f7078 Binary files /dev/null and b/demo/assets/snow-texture.jpg differ diff --git a/demo/assets/source/sketchfabTest4.fbx b/demo/assets/source/sketchfabTest4.fbx new file mode 100644 index 0000000..3b0cd35 Binary files /dev/null and b/demo/assets/source/sketchfabTest4.fbx differ diff --git a/demo/assets/textures/BustM_baseColor.png b/demo/assets/textures/BustM_baseColor.png new file mode 100644 index 0000000..4eb984f Binary files /dev/null and b/demo/assets/textures/BustM_baseColor.png differ diff --git a/demo/assets/textures/BustM_emissive.jpeg b/demo/assets/textures/BustM_emissive.jpeg new file mode 100644 index 0000000..8e7111f Binary files /dev/null and b/demo/assets/textures/BustM_emissive.jpeg differ diff --git a/demo/assets/textures/Grayscale.png b/demo/assets/textures/Grayscale.png new file mode 100644 index 0000000..807c47b Binary files /dev/null and b/demo/assets/textures/Grayscale.png differ diff --git a/demo/assets/textures/RGB_Alpha.png b/demo/assets/textures/RGB_Alpha.png new file mode 100644 index 0000000..7048dfa Binary files /dev/null and b/demo/assets/textures/RGB_Alpha.png differ diff --git a/demo/assets/tree/scene.bin b/demo/assets/tree/scene.bin new file mode 100644 index 0000000..db13c20 Binary files /dev/null and b/demo/assets/tree/scene.bin differ diff --git a/demo/assets/tree/scene.gltf b/demo/assets/tree/scene.gltf new file mode 100644 index 0000000..ae246ba --- /dev/null +++ b/demo/assets/tree/scene.gltf @@ -0,0 +1,296 @@ +{ + "accessors": [ + { + "bufferView": 1, + "componentType": 5126, + "count": 188, + "max": [ + 4.8789701461791992, + 4.9574098587036133, + 26.937320709228516 + ], + "min": [ + -4.8789701461791992, + -4.9574098587036133, + 3.2858901023864746 + ], + "type": "VEC3" + }, + { + "bufferView": 1, + "byteOffset": 2256, + "componentType": 5126, + "count": 188, + "max": [ + 0.9036175012588501, + 0.91004252433776855, + 0.99285095930099487 + ], + "min": [ + -0.9344140887260437, + -0.90688866376876831, + -1 + ], + "type": "VEC3" + }, + { + "bufferView": 0, + "componentType": 5125, + "count": 312, + "max": [ + 187 + ], + "min": [ + 0 + ], + "type": "SCALAR" + }, + { + "bufferView": 1, + "byteOffset": 4512, + "componentType": 5126, + "count": 41, + "max": [ + 1.5233500003814697, + 1.5478399991989136, + 3.2858901023864746 + ], + "min": [ + -1.5233500003814697, + -1.5478399991989136, + -0.23682999610900879 + ], + "type": "VEC3" + }, + { + "bufferView": 1, + "byteOffset": 5004, + "componentType": 5126, + "count": 41, + "max": [ + 0.91974300146102905, + 0.91221827268600464, + 0.10694979876279831 + ], + "min": [ + -0.91974300146102905, + -0.91221827268600464, + -1 + ], + "type": "VEC3" + }, + { + "bufferView": 0, + "byteOffset": 1248, + "componentType": 5125, + "count": 72, + "max": [ + 40 + ], + "min": [ + 0 + ], + "type": "SCALAR" + } + ], + "asset": { + "extras": { + "author": "Kotzuo (https://sketchfab.com/Kotuzo)", + "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)", + "source": "https://sketchfab.com/models/6d986e0b24b54d85a5354e5cac6207a1", + "title": "Low poly tree" + }, + "generator": "Sketchfab-3.18.6", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 1536, + "byteOffset": 0, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 5496, + "byteOffset": 1536, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + } + ], + "buffers": [ + { + "byteLength": 7032, + "uri": "scene.bin" + } + ], + "materials": [ + { + "doubleSided": true, + "emissiveFactor": [ + 0, + 0, + 0 + ], + "name": "Material.001", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.48847666379999999, + 0.80000007149999997, + 0.17604881529999999, + 1 + ], + "metallicFactor": 0, + "roughnessFactor": 0.59999999999999998 + } + }, + { + "doubleSided": true, + "emissiveFactor": [ + 0, + 0, + 0 + ], + "name": "Material.002", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.80000007149999997, + 0.311563015, + 0.1035237759, + 1 + ], + "metallicFactor": 0, + "roughnessFactor": 0.59999999999999998 + } + } + ], + "meshes": [ + { + "name": "Plane_0", + "primitives": [ + { + "attributes": { + "NORMAL": 1, + "POSITION": 0 + }, + "indices": 2, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "Plane_1", + "primitives": [ + { + "attributes": { + "NORMAL": 4, + "POSITION": 3 + }, + "indices": 5, + "material": 1, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [ + 1 + ], + "name": "RootNode (gltf orientation matrix)", + "rotation": [ + -0.70710678118654746, + -0, + -0, + 0.70710678118654757 + ] + }, + { + "children": [ + 2 + ], + "name": "RootNode (model correction matrix)" + }, + { + "children": [ + 3, + 5 + ], + "name": "Root" + }, + { + "children": [ + 4 + ], + "matrix": [ + -0.29086000000000006, + 0.95517000000000007, + -0.05519000000000001, + 0, + -0.77110000000000001, + -0.19988000000000003, + 0.60452000000000006, + 0, + 0.56639000000000006, + 0.21839000000000003, + 0.7946700000000001, + 0, + 7.2691499999999998, + 2.23658, + 10.383630000000002, + 1 + ], + "name": "Lamp" + }, + { + "name": "Lamp" + }, + { + "children": [ + 6, + 7 + ], + "matrix": [ + 0.16791000000000006, + 0, + 0, + 0, + 0, + 0.16791000000000006, + 0, + 0, + 0, + 0, + 0.16791000000000006, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Plane" + }, + { + "mesh": 0, + "name": "Plane_0" + }, + { + "mesh": 1, + "name": "Plane_1" + } + ], + "scene": 0, + "scenes": [ + { + "name": "OSG_Scene", + "nodes": [ + 0 + ] + } + ] +} + diff --git a/demo/assets/tree/tree.glb b/demo/assets/tree/tree.glb new file mode 100644 index 0000000..8beec4a Binary files /dev/null and b/demo/assets/tree/tree.glb differ diff --git a/demo/assets/village/source/Snow.zip b/demo/assets/village/source/Snow.zip new file mode 100644 index 0000000..ae57321 Binary files /dev/null and b/demo/assets/village/source/Snow.zip differ diff --git a/demo/assets/village/textures/STGPV066_candle_01.png b/demo/assets/village/textures/STGPV066_candle_01.png new file mode 100644 index 0000000..4289cd1 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_candle_01.png differ diff --git a/demo/assets/village/textures/STGPV066_hill02.png b/demo/assets/village/textures/STGPV066_hill02.png new file mode 100644 index 0000000..d968071 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_hill02.png differ diff --git a/demo/assets/village/textures/STGPV066_hill_night.png b/demo/assets/village/textures/STGPV066_hill_night.png new file mode 100644 index 0000000..ac3f85c Binary files /dev/null and b/demo/assets/village/textures/STGPV066_hill_night.png differ diff --git a/demo/assets/village/textures/STGPV066_kage01.png b/demo/assets/village/textures/STGPV066_kage01.png new file mode 100644 index 0000000..555ab49 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_kage01.png differ diff --git a/demo/assets/village/textures/STGPV066_kage02.png b/demo/assets/village/textures/STGPV066_kage02.png new file mode 100644 index 0000000..192d19f Binary files /dev/null and b/demo/assets/village/textures/STGPV066_kage02.png differ diff --git a/demo/assets/village/textures/STGPV066_kage03.png b/demo/assets/village/textures/STGPV066_kage03.png new file mode 100644 index 0000000..f1534cd Binary files /dev/null and b/demo/assets/village/textures/STGPV066_kage03.png differ diff --git a/demo/assets/village/textures/STGPV066_kage04.png b/demo/assets/village/textures/STGPV066_kage04.png new file mode 100644 index 0000000..bd6ce90 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_kage04.png differ diff --git a/demo/assets/village/textures/STGPV066_light01.png b/demo/assets/village/textures/STGPV066_light01.png new file mode 100644 index 0000000..a3deca9 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_light01.png differ diff --git a/demo/assets/village/textures/STGPV066_river02.png b/demo/assets/village/textures/STGPV066_river02.png new file mode 100644 index 0000000..7242337 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_river02.png differ diff --git a/demo/assets/village/textures/STGPV066_shugan01.png b/demo/assets/village/textures/STGPV066_shugan01.png new file mode 100644 index 0000000..08a6194 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_shugan01.png differ diff --git a/demo/assets/village/textures/STGPV066_sky_night.png b/demo/assets/village/textures/STGPV066_sky_night.png new file mode 100644 index 0000000..95b83e7 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_sky_night.png differ diff --git a/demo/assets/village/textures/STGPV066_streetLamp_01.png b/demo/assets/village/textures/STGPV066_streetLamp_01.png new file mode 100644 index 0000000..496c914 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_streetLamp_01.png differ diff --git a/demo/assets/village/textures/STGPV066_tree00.png b/demo/assets/village/textures/STGPV066_tree00.png new file mode 100644 index 0000000..84840ea Binary files /dev/null and b/demo/assets/village/textures/STGPV066_tree00.png differ diff --git a/demo/assets/village/textures/STGPV066_treeleaves01.png b/demo/assets/village/textures/STGPV066_treeleaves01.png new file mode 100644 index 0000000..92ee576 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_treeleaves01.png differ diff --git a/demo/assets/village/textures/STGPV066_treexmas02.png b/demo/assets/village/textures/STGPV066_treexmas02.png new file mode 100644 index 0000000..18e0b17 Binary files /dev/null and b/demo/assets/village/textures/STGPV066_treexmas02.png differ diff --git a/demo/assets/village/textures/STGPV066_water02.png b/demo/assets/village/textures/STGPV066_water02.png new file mode 100644 index 0000000..f42f68c Binary files /dev/null and b/demo/assets/village/textures/STGPV066_water02.png differ diff --git a/demo/assets/village/textures/pv062_tunnel_wall01.png b/demo/assets/village/textures/pv062_tunnel_wall01.png new file mode 100644 index 0000000..cf34f12 Binary files /dev/null and b/demo/assets/village/textures/pv062_tunnel_wall01.png differ diff --git a/demo/clip.css b/demo/clip.css new file mode 100644 index 0000000..c11507a --- /dev/null +++ b/demo/clip.css @@ -0,0 +1,14 @@ +html, +body { + margin: 0; + background-color: #282828; + position: relative; + width: 100%; + height: 100%; +} + +#projector, +#clip { + width: 100% !important; + height: 100% !important; +} diff --git a/demo/id.js b/demo/id.js new file mode 100644 index 0000000..ab20d62 --- /dev/null +++ b/demo/id.js @@ -0,0 +1 @@ +export default "373a12d9-5234-4b74-8a16-9628e637cf0e"; \ No newline at end of file diff --git a/demo/index.html b/demo/index.html new file mode 100644 index 0000000..5c524b3 --- /dev/null +++ b/demo/index.html @@ -0,0 +1,32 @@ + + + + + + + Donkeyclip | MotorCortex + + + + + + +
+
+
+ + + diff --git a/demo/index.js b/demo/index.js new file mode 100644 index 0000000..142633a --- /dev/null +++ b/demo/index.js @@ -0,0 +1,81 @@ +import { utils } from "@donkeyclip/motorcortex"; +import Player from "@donkeyclip/motorcortex-player"; +import { clip } from "../clip/clip"; +import clipId from "./id"; +import { initParams } from "../clip/initParams"; +import initParamsApply from "./scripts/initParamsApply"; + +const liveDef = clip.exportLiveDefinition(); +liveDef.props.id = clip.id; + +const clipDef = clip.exportDefinition(); +let player; +window.addEventListener("message", (event) => { + if (event.data.what === "initParamsChange") { + const newLiveDef = initParamsApply(liveDef, event.data.initParams); + document.getElementById("projector").innerHTML = "
"; + const newClipContainer = document.getElementById("clip"); + // set clip container's dimensions + newClipContainer.style.width = clip.props.containerParams.width; + newClipContainer.style.height = clip.props.containerParams.height; + newLiveDef.props.host = newClipContainer; + const newclip = utils.clipFromDefinition(newLiveDef); + if (newclip.nonBlockingErrorClip) { + // if the initParams validation has failed + return alert("Error with init params"); + } + player = new Player({ clip: newclip }); + } +}); + +const clipContainer = document.getElementById("clip"); +// set clip container's dimensions +clipContainer.style.width = clip.props.containerParams.width; +clipContainer.style.height = clip.props.containerParams.height; + +const searchQuery = window.location.search.split("?")[1] || ""; +const params = searchQuery.split("&").map((pair) => pair.split("=")); +const searchOptions = {}; +for (const i in params) { + searchOptions[params[i][0]] = params[i][1]; +} + +let playerOptions = {}; +if (searchOptions.settings) { + try { + playerOptions = JSON.parse(atob(searchOptions.settings)); + } catch (e) { + console.error("Invalid options:", searchOptions.settings); + } +} + +window.top.postMessage( + { + what: "clipLoaded", + clipDims: clip.props.containerParams, + clipDef: JSON.parse(JSON.stringify(clipDef)), + clipId, + initParams, + selectedParamsIndex: searchOptions.initParams, + }, + "*" +); + +player = new Player({ + clip, + pointerEvents: true, + ...playerOptions, + onMillisecondChange: (ms) => { + window.top.postMessage( + { + what: "msChanged", + millisecond: ms, + }, + "*" + ); + }, +}); + +if (searchOptions.initParams) { + player.changeInitParams(initParams[searchOptions.initParams].value); +} diff --git a/demo/scripts/initParamsApply.js b/demo/scripts/initParamsApply.js new file mode 100644 index 0000000..a194c7e --- /dev/null +++ b/demo/scripts/initParamsApply.js @@ -0,0 +1,10 @@ +/** + * + * @param {object} liveDefinition - the exported live definition of the Clip + * @param {object} params - the params passed by the user + * @returns {object} - the new live definition to be used for constructing the new Clip + */ +export default function initParamsApply(liveDefinition, params) { + liveDefinition.props.initParams = params; + return liveDefinition; +} diff --git a/demo/scripts/pathHandler.js b/demo/scripts/pathHandler.js new file mode 100644 index 0000000..aeb71e8 --- /dev/null +++ b/demo/scripts/pathHandler.js @@ -0,0 +1,42 @@ +export const addToObject = function ( + currentObject, + path, + value, + replace = false +) { + const arrayPath = path.split("."); + + for (let i = 0; i < arrayPath.length - 1; i++) { + if (!Object.prototype.hasOwnProperty.call(currentObject, arrayPath[i])) { + currentObject[arrayPath[i]] = {}; + } + currentObject = currentObject[arrayPath[i]]; + } + + if ( + replace === false && + Object.prototype.hasOwnProperty.call( + currentObject, + arrayPath[arrayPath.length - 1] + ) + ) { + return false; + } + + currentObject[arrayPath[arrayPath.length - 1]] = value; + return true; +}; + +export const getFromObject = function (currentObject, path) { + const arrayPath = path.split("."); + let lastValue; + + for (let i = 0; i < arrayPath.length; i++) { + if (!Object.prototype.hasOwnProperty.call(currentObject, arrayPath[i])) { + return undefined; + } + lastValue = currentObject[arrayPath[i]]; + currentObject = currentObject[arrayPath[i]]; + } + return lastValue; +}; diff --git a/demo/webpack.config.js b/demo/webpack.config.js new file mode 100644 index 0000000..f7dfbba --- /dev/null +++ b/demo/webpack.config.js @@ -0,0 +1,48 @@ +const path = require("path"); +const webpack = require("webpack"); + +module.exports = { + context: path.resolve(__dirname), + + entry: "./index.js", + + output: { + path: path.resolve(__dirname, "./"), + // the output bundle + filename: "./bundle.js", + }, + + module: { + rules: [ + { + test: /\.css$/i, + use: ["to-string-loader", "style-loader", "css-loader"], + }, + { + test: /\.html$/i, + loader: "html-loader", + }, + { + test: /\.js$/, + use: "babel-loader", + exclude: /node_modules/, + }, + ], + }, + + plugins: [ + // enable HMR globally + new webpack.HotModuleReplacementPlugin(), + + // do not emit compiled assets that include errors + new webpack.NoEmitOnErrorsPlugin(), + ], + + devServer: { + host: "127.0.0.1", + port: 8090, + historyApiFallback: false, + hot: true, + static: path.join(__dirname), + }, +}; diff --git a/package.json b/package.json new file mode 100644 index 0000000..448f893 --- /dev/null +++ b/package.json @@ -0,0 +1,70 @@ +{ + "name": "@donkeyclip/motorcortex-clip-starter", + "version": "1.0.0", + "description": "Starter repo for creating Donkey Clips", + "author": "", + "repository": { + "type": "git", + "url": "https://github.com/donkeyclip/motorcortex-clip-starter" + }, + "engines": { + "node": ">=12" + }, + "scripts": { + "build": "webpack --mode=production --config ./demo/webpack.config.js", + "lint": "eslint -c .eslintrc src/**/*.js", + "lint:fix": "npm run lint -- --fix", + "start": "npm run build & webpack serve --mode=development --config ./demo/webpack.config.js", + "test": "HERE GOES YOUR TEST TASK", + "test:prod": "npm run lint", + "render": "node node_modules/dclip-video-renderer" + }, + "keywords": [ + "motorcortex", + "donkeyclip" + ], + "config": { + "commitizen": { + "path": "cz-conventional-changelog" + } + }, + "devDependencies": { + "@babel/core": "7.16.12", + "@babel/eslint-parser": "7.16.5", + "@babel/plugin-syntax-jsx": "7.16.7", + "@babel/plugin-transform-react-jsx": "7.16.7", + "@babel/preset-env": "7.16.11", + "@donkeyclip/motorcortex": "7.8.0", + "@donkeyclip/motorcortex-player": "2.5.0", + "@donkeyclip/video-renderer": "0.0.1", + "@rollup/plugin-babel": "5.3.0", + "@rollup/plugin-commonjs": "21.0.1", + "@rollup/plugin-json": "4.1.0", + "@rollup/plugin-node-resolve": "13.1.3", + "@size-limit/preset-big-lib": "6.0.4", + "babel-loader": "8.2.3", + "concurrently": "6.5.1", + "core-js": "3.20.3", + "css-loader": "6.5.1", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-config-standard": "16.0.3", + "eslint-plugin-babel": "5.3.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-promise": "5.2.0", + "html-loader": "3.1.0", + "prettier": "2.5.1", + "raw-loader": "4.0.2", + "rimraf": "3.0.2", + "size-limit": "6.0.4", + "style-loader": "3.3.1", + "webpack": "5.67.0", + "webpack-cli": "4.9.2", + "webpack-dev-server": "4.7.3" + }, + "dependencies": { + "@donkeyclip/motorcortex-threejs": "^2.5.0" + } +} diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..d92ce4b --- /dev/null +++ b/renovate.json @@ -0,0 +1,10 @@ +{ + "extends": [ + "config:base", + ":separateMajorReleases", + ":automergeMinor", + ":disablePeerDependencies", + ":semanticCommits", + ":automergeBranch" + ] +}